tbb-commits
Threads by month
- ----- 2025 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 1 participants
- 18730 discussions

[tor-browser/tor-browser-78.8.0esr-10.0-1] fixup! Omnibox: Add DDG, Startpage, Disconnect, Youtube, Twitter; remove Amazon, eBay, bing
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit 8ef3cafa82b4f689edd37200de2a411f887a43c8
Author: Peter Story <pstory(a)andrew.cmu.edu>
Date: Fri Jan 8 12:07:24 2021 -0500
fixup! Omnibox: Add DDG, Startpage, Disconnect, Youtube, Twitter; remove Amazon, eBay, bing
Bug 40287: Switch DDG search from POST to GET
---
browser/components/search/extensions/ddg-onion/manifest.json | 4 ++--
browser/components/search/extensions/ddg/manifest.json | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/browser/components/search/extensions/ddg-onion/manifest.json b/browser/components/search/extensions/ddg-onion/manifest.json
index 294496b78368..4aa79e4abea0 100644
--- a/browser/components/search/extensions/ddg-onion/manifest.json
+++ b/browser/components/search/extensions/ddg-onion/manifest.json
@@ -19,8 +19,8 @@
"search_provider": {
"name": "DuckDuckGoOnion",
"search_url": "https://3g2upl4pq6kufc4m.onion",
- "search_form": "https://3g2upl4pq6kufc4m.onion",
- "search_url_post_params": "q={searchTerms}"
+ "search_form": "https://3g2upl4pq6kufc4m.onion/?q={searchTerms}",
+ "search_url_get_params": "q={searchTerms}"
}
}
}
\ No newline at end of file
diff --git a/browser/components/search/extensions/ddg/manifest.json b/browser/components/search/extensions/ddg/manifest.json
index 77400611ee20..510542faa4eb 100644
--- a/browser/components/search/extensions/ddg/manifest.json
+++ b/browser/components/search/extensions/ddg/manifest.json
@@ -19,8 +19,8 @@
"search_provider": {
"name": "DuckDuckGo",
"search_url": "https://duckduckgo.com",
- "search_form": "https://duckduckgo.com",
- "search_url_post_params": "q={searchTerms}",
+ "search_form": "https://duckduckgo.com/?q={searchTerms}",
+ "search_url_get_params": "q={searchTerms}",
"suggest_url": "https://ac.duckduckgo.com/ac/",
"suggest_url_get_params": "q={searchTerms}&type=list"
}
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 40166: Disable security.certerrors.mitm.auto_enable_enterprise_roots
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit 5f4df86ec79efed4a690d26d22f0c90374e8d73a
Author: Alex Catarineu <acat(a)torproject.org>
Date: Fri Oct 9 12:55:35 2020 +0200
Bug 40166: Disable security.certerrors.mitm.auto_enable_enterprise_roots
---
browser/app/profile/000-tor-browser.js | 3 +++
browser/components/BrowserGlue.jsm | 14 ++++++++++++++
2 files changed, 17 insertions(+)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js
index 6bc759bdf30b..5c65eff70fc0 100644
--- a/browser/app/profile/000-tor-browser.js
+++ b/browser/app/profile/000-tor-browser.js
@@ -323,6 +323,9 @@ pref("security.enterprise_roots.enabled", false);
// Don't ping Mozilla for MitM detection, see bug 32321
pref("security.certerrors.mitm.priming.enabled", false);
+// Don't automatically enable enterprise roots, see bug 40166
+pref("security.certerrors.mitm.auto_enable_enterprise_roots", false);
+
// Disable the language pack signing check for now on macOS, see #31942
#ifdef XP_MACOSX
pref("extensions.langpacks.signatures.required", false);
diff --git a/browser/components/BrowserGlue.jsm b/browser/components/BrowserGlue.jsm
index 057a2121533c..3750230a250b 100644
--- a/browser/components/BrowserGlue.jsm
+++ b/browser/components/BrowserGlue.jsm
@@ -1319,6 +1319,20 @@ BrowserGlue.prototype = {
// handle any UI migration
this._migrateUI();
+ // Clear possibly auto enabled enterprise_roots prefs (see bug 40166)
+ if (
+ !Services.prefs.getBoolPref(
+ "security.certerrors.mitm.auto_enable_enterprise_roots"
+ ) &&
+ Services.prefs.getBoolPref(
+ "security.enterprise_roots.auto-enabled",
+ false
+ )
+ ) {
+ Services.prefs.clearUserPref("security.enterprise_roots.enabled");
+ Services.prefs.clearUserPref("security.enterprise_roots.auto-enabled");
+ }
+
if (!Services.prefs.prefHasUserValue(PREF_PDFJS_ISDEFAULT_CACHE_STATE)) {
PdfJs.checkIsDefault(this._isNewProfile);
}
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 40193: Add `AT_EMPTY_PATH` definition
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit 31fd18dc2eb7b209a5329c1dafc80b5c936e593e
Author: Georg Koppen <gk(a)torproject.org>
Date: Fri Oct 16 08:47:05 2020 +0000
Bug 40193: Add `AT_EMPTY_PATH` definition
`AT_EMPTY_PATH` comes with glibc 2.14. However, Debian Wheezy, which we
still use for building our stable Linux bundles, comes only with glibc
2.13 resulting in an "undeclared-identifier"-error during build time.
This problem got introduced by fixing
https://bugzilla.mozilla.org/show_bug.cgi?id=1660901.
---
security/sandbox/linux/SandboxFilter.cpp | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/security/sandbox/linux/SandboxFilter.cpp b/security/sandbox/linux/SandboxFilter.cpp
index dc5dd51a5e3e..0ffcff9b5b32 100644
--- a/security/sandbox/linux/SandboxFilter.cpp
+++ b/security/sandbox/linux/SandboxFilter.cpp
@@ -73,6 +73,10 @@ using namespace sandbox::bpf_dsl;
// Not part of UAPI, but userspace sees it in F_GETFL; see bug 1650751.
#define FMODE_NONOTIFY 0x4000000
+#ifndef AT_EMPTY_PATH
+# define AT_EMPTY_PATH 0x100 /* Allow empty relative pathname */
+#endif
+
#ifndef F_LINUX_SPECIFIC_BASE
# define F_LINUX_SPECIFIC_BASE 1024
#else
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 40091: Load HTTPS Everywhere as a builtin addon in desktop
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit ebbd1433c6226e4fe0adfeb9c3d50e6b63b0731e
Author: Alex Catarineu <acat(a)torproject.org>
Date: Fri Sep 4 12:34:35 2020 +0200
Bug 40091: Load HTTPS Everywhere as a builtin addon in desktop
This loads HTTPS Everywhere as a builtin addon from a hardcoded
resource:// URI in desktop. It also ensures that the non-builtin
HTTPS Everywhere addon is always uninstalled on browser startup.
The reason of making this desktop-only is that there are some issues
when installing a builtin extension from geckoview side, making
the extension not available on first startup. So, at least for
now we handle the Fenix case separately. See #40118 for a followup
for investigating these.
---
browser/components/BrowserGlue.jsm | 37 ++++++++++++++++++++++
.../mozapps/extensions/internal/XPIProvider.jsm | 13 ++++++++
2 files changed, 50 insertions(+)
diff --git a/browser/components/BrowserGlue.jsm b/browser/components/BrowserGlue.jsm
index ec38d0ca8b33..057a2121533c 100644
--- a/browser/components/BrowserGlue.jsm
+++ b/browser/components/BrowserGlue.jsm
@@ -56,6 +56,13 @@ XPCOMUtils.defineLazyServiceGetter(
"nsIPushService"
);
+XPCOMUtils.defineLazyServiceGetters(this, {
+ resProto: [
+ "@mozilla.org/network/protocol;1?name=resource",
+ "nsISubstitutingProtocolHandler",
+ ],
+});
+
const PREF_PDFJS_ISDEFAULT_CACHE_STATE = "pdfjs.enabledCache.state";
/**
@@ -675,6 +682,7 @@ XPCOMUtils.defineLazyModuleGetters(this, {
"resource://gre/modules/ContextualIdentityService.jsm",
Corroborate: "resource://gre/modules/Corroborate.jsm",
Discovery: "resource:///modules/Discovery.jsm",
+ ExtensionData: "resource://gre/modules/Extension.jsm",
ExtensionsUI: "resource:///modules/ExtensionsUI.jsm",
FirefoxMonitor: "resource:///modules/FirefoxMonitor.jsm",
FxAccounts: "resource://gre/modules/FxAccounts.jsm",
@@ -1330,6 +1338,35 @@ BrowserGlue.prototype = {
"resource:///modules/themes/dark/"
);
+ // Install https-everywhere builtin addon if needed.
+ (async () => {
+ const HTTPS_EVERYWHERE_ID = "https-everywhere-eff(a)eff.org";
+ const HTTPS_EVERYWHERE_BUILTIN_URL =
+ "resource://torbutton/content/extensions/https-everywhere/";
+ // This does something similar as GeckoViewWebExtension.jsm: it tries
+ // to load the manifest to retrieve the version of the builtin and
+ // compares it to the currently installed one to see whether we need
+ // to install or not. Here we delegate that to
+ // AddonManager.maybeInstallBuiltinAddon.
+ try {
+ const resolvedURI = Services.io.newURI(
+ resProto.resolveURI(Services.io.newURI(HTTPS_EVERYWHERE_BUILTIN_URL))
+ );
+ const extensionData = new ExtensionData(resolvedURI);
+ const manifest = await extensionData.loadManifest();
+
+ await AddonManager.maybeInstallBuiltinAddon(
+ HTTPS_EVERYWHERE_ID,
+ manifest.version,
+ HTTPS_EVERYWHERE_BUILTIN_URL
+ );
+ } catch (e) {
+ const log = Log.repository.getLogger("HttpsEverywhereBuiltinLoader");
+ log.addAppender(new Log.ConsoleAppender(new Log.BasicFormatter()));
+ log.error("Could not install https-everywhere extension", e);
+ }
+ })();
+
if (AppConstants.MOZ_NORMANDY) {
Normandy.init();
}
diff --git a/toolkit/mozapps/extensions/internal/XPIProvider.jsm b/toolkit/mozapps/extensions/internal/XPIProvider.jsm
index 794c206fb453..dc5362bce3d8 100644
--- a/toolkit/mozapps/extensions/internal/XPIProvider.jsm
+++ b/toolkit/mozapps/extensions/internal/XPIProvider.jsm
@@ -1491,6 +1491,19 @@ var XPIStates = {
continue;
}
+ // Uninstall HTTPS Everywhere if it is installed in the user profile.
+ if (
+ id === "https-everywhere-eff(a)eff.org" &&
+ loc.name === KEY_APP_PROFILE
+ ) {
+ logger.debug(
+ "Uninstalling the HTTPS Everywhere extension from user profile."
+ );
+ loc.installer.uninstallAddon(id);
+ changed = true;
+ continue;
+ }
+
let xpiState = loc.get(id);
if (!xpiState) {
// If the location is not supported for sideloading, skip new
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 1650281 - P1: Widen `gCombinedSizes` once the buffers grow r=gerald
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit 62ae21c25479bad95ffa23741861f7b72a3cea8a
Author: Chun-Min Chang <chun.m.chang(a)gmail.com>
Date: Tue Jul 21 23:38:57 2020 +0000
Bug 1650281 - P1: Widen `gCombinedSizes` once the buffers grow r=gerald
The `gCombinedSizes` need to be enlarged once the inner buffer within
`MemoryBlockCache` grows. Otherwise, when the `MemoryBlockCache` is
released, subtracting the buffer-size of the `MemoryBlockCache` from
`gCombinedSizes` lead to a underflow.
Differential Revision: https://phabricator.services.mozilla.com/D84273
---
dom/media/MemoryBlockCache.cpp | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dom/media/MemoryBlockCache.cpp b/dom/media/MemoryBlockCache.cpp
index 2d31119dca0a..bf073e6769d0 100644
--- a/dom/media/MemoryBlockCache.cpp
+++ b/dom/media/MemoryBlockCache.cpp
@@ -114,6 +114,10 @@ bool MemoryBlockCache::EnsureBufferCanContain(size_t aContentLength) {
// possibly bypass some future growths that would fit in this new capacity.
mBuffer.SetLength(capacity);
}
+ const size_t newSizes = gCombinedSizes += (extra + extraCapacity);
+ LOG("EnsureBufferCanContain(%zu) - buffer size %zu + requested %zu + bonus "
+ "%zu = %zu; combined sizes %zu",
+ aContentLength, initialLength, extra, extraCapacity, capacity, newSizes);
mHasGrown = true;
return true;
}
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 33852: Clean up about:logins (LockWise) to avoid mentioning sync, etc.
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit b109cf442c1f888d8ad9cacd0e9a069d95dd13c8
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Tue Jul 14 11:15:07 2020 -0400
Bug 33852: Clean up about:logins (LockWise) to avoid mentioning sync, etc.
Hide elements on about:logins that mention sync, "Firefox LockWise", and
Mozilla's LockWise mobile apps.
Disable the "Create New Login" button when security.nocertdb is true.
---
browser/components/aboutlogins/AboutLoginsParent.jsm | 2 ++
browser/components/aboutlogins/content/aboutLogins.css | 8 +++++++-
browser/components/aboutlogins/content/aboutLogins.js | 6 ++++++
.../aboutlogins/content/components/fxaccounts-button.css | 5 +++++
.../components/aboutlogins/content/components/menu-button.css | 10 ++++++++++
5 files changed, 30 insertions(+), 1 deletion(-)
diff --git a/browser/components/aboutlogins/AboutLoginsParent.jsm b/browser/components/aboutlogins/AboutLoginsParent.jsm
index a3b47f8f8527..5d0a0e4e83b9 100644
--- a/browser/components/aboutlogins/AboutLoginsParent.jsm
+++ b/browser/components/aboutlogins/AboutLoginsParent.jsm
@@ -62,6 +62,7 @@ const PASSWORD_SYNC_NOTIFICATION_ID = "enable-password-sync";
const HIDE_MOBILE_FOOTER_PREF = "signon.management.page.hideMobileFooter";
const SHOW_PASSWORD_SYNC_NOTIFICATION_PREF =
"signon.management.page.showPasswordSyncNotification";
+const NOCERTDB_PREF = "security.nocertdb";
// about:logins will always use the privileged content process,
// even if it is disabled for other consumers such as about:newtab.
@@ -431,6 +432,7 @@ class AboutLoginsParent extends JSWindowActorParent {
importVisible:
Services.policies.isAllowed("profileImport") &&
AppConstants.platform != "linux",
+ canCreateLogins: !Services.prefs.getBoolPref(NOCERTDB_PREF, false),
});
await AboutLogins._sendAllLoginRelatedObjects(
diff --git a/browser/components/aboutlogins/content/aboutLogins.css b/browser/components/aboutlogins/content/aboutLogins.css
index 7ed29bda8297..dca63da2e649 100644
--- a/browser/components/aboutlogins/content/aboutLogins.css
+++ b/browser/components/aboutlogins/content/aboutLogins.css
@@ -69,6 +69,11 @@ login-item {
grid-area: login;
}
+/* Do not promote Mozilla Sync in Tor Browser. */
+login-intro {
+ display: none !important;
+}
+
#branding-logo {
flex-basis: var(--sidebar-width);
flex-shrink: 0;
@@ -83,7 +88,8 @@ login-item {
}
}
-:root:not(.official-branding) #branding-logo {
+/* Hide "Firefox LockWise" branding in Tor Browser. */
+#branding-logo {
visibility: hidden;
}
diff --git a/browser/components/aboutlogins/content/aboutLogins.js b/browser/components/aboutlogins/content/aboutLogins.js
index da7d9016a2eb..361b2b0d02bf 100644
--- a/browser/components/aboutlogins/content/aboutLogins.js
+++ b/browser/components/aboutlogins/content/aboutLogins.js
@@ -19,6 +19,9 @@ const gElements = {
get loginFooter() {
return this.loginItem.shadowRoot.querySelector("login-footer");
},
+ get createNewLoginButton() {
+ return this.loginList.shadowRoot.querySelector(".create-login-button");
+ },
};
let numberOfLogins = 0;
@@ -100,6 +103,9 @@ window.addEventListener("AboutLoginsChromeToContent", event => {
gElements.loginList.setSortDirection(event.detail.value.selectedSort);
document.documentElement.classList.add("initialized");
gElements.loginList.classList.add("initialized");
+ if (!event.detail.value.canCreateLogins) {
+ gElements.createNewLoginButton.disabled = true;
+ }
break;
}
case "ShowLoginItemError": {
diff --git a/browser/components/aboutlogins/content/components/fxaccounts-button.css b/browser/components/aboutlogins/content/components/fxaccounts-button.css
index aefda548c84d..a02707980158 100644
--- a/browser/components/aboutlogins/content/components/fxaccounts-button.css
+++ b/browser/components/aboutlogins/content/components/fxaccounts-button.css
@@ -8,6 +8,11 @@
align-items: center;
}
+/* Do not promote Mozilla Sync in Tor Browser. */
+.logged-out-view {
+ display: none !important;
+}
+
.fxaccounts-extra-text {
/* Only show at most 3 lines of text to limit the
text from overflowing the header. */
diff --git a/browser/components/aboutlogins/content/components/menu-button.css b/browser/components/aboutlogins/content/components/menu-button.css
index 3c93d409b2c7..2d7380b2ea37 100644
--- a/browser/components/aboutlogins/content/components/menu-button.css
+++ b/browser/components/aboutlogins/content/components/menu-button.css
@@ -85,3 +85,13 @@
.menuitem-mobile-android {
background-image: url("chrome://browser/skin/logo-android.svg");
}
+
+/*
+ * Do not promote LockWise mobile apps in Tor Browser: hide the menu items
+ * and the separator line that precedes them.
+ */
+.menuitem-mobile-android,
+.menuitem-mobile-ios,
+button[data-event-name="AboutLoginsGetHelp"] + hr {
+ display: none !important;
+}
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 1585470 - Remove duplicate cpu-features.c definition when building GV without webrtc r=glandium
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit 1e230171f3830aeb58d9c395c49f265d2f7ed39e
Author: Matthew Finkel <Matthew.Finkel(a)gmail.com>
Date: Thu Jul 9 19:10:34 2020 +0000
Bug 1585470 - Remove duplicate cpu-features.c definition when building GV without webrtc r=glandium
Differential Revision: https://phabricator.services.mozilla.com/D82120
---
media/libaom/moz.build | 5 -----
1 file changed, 5 deletions(-)
diff --git a/media/libaom/moz.build b/media/libaom/moz.build
index 2dec3de4581c..0b3ba0707df9 100644
--- a/media/libaom/moz.build
+++ b/media/libaom/moz.build
@@ -84,11 +84,6 @@ if CONFIG['OS_TARGET'] == 'Android':
# the OS they're on, so do it for them.
DEFINES['__linux__'] = True
- if not CONFIG['MOZ_WEBRTC']:
- SOURCES += [
- '%%%s/sources/android/cpufeatures/cpu-features.c' % CONFIG['ANDROID_NDK'],
- ]
-
for f in SOURCES:
if f.endswith('sse2.c'):
SOURCES[f].flags += CONFIG['SSE2_FLAGS']
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 1642754 - Update prompts should not depend on how update was initiated r=bytesized
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit 19ccd9e41ce8e42b280c2bbeb174055b58c90040
Author: Mark Smith <mcs(a)pearlcrescent.com>
Date: Wed Jun 17 19:24:09 2020 +0000
Bug 1642754 - Update prompts should not depend on how update was initiated r=bytesized
Show update badge and doorhanger when entering the "pending"
state for foreground updates.
Differential Revision: https://phabricator.services.mozilla.com/D79903
---
toolkit/mozapps/update/UpdateService.jsm | 10 ++--------
.../browser/browser_aboutDialog_fc_downloadAuto.js | 18 +++++++++++++++++-
2 files changed, 19 insertions(+), 9 deletions(-)
diff --git a/toolkit/mozapps/update/UpdateService.jsm b/toolkit/mozapps/update/UpdateService.jsm
index 8dd397f628f5..1dc86a073646 100644
--- a/toolkit/mozapps/update/UpdateService.jsm
+++ b/toolkit/mozapps/update/UpdateService.jsm
@@ -5002,8 +5002,6 @@ Downloader.prototype = {
}
}
- // XXX ehsan shouldShowPrompt should always be false here.
- // But what happens when there is already a UI showing?
var state = this._patch.state;
var shouldShowPrompt = false;
var shouldRegisterOnlineObserver = false;
@@ -5044,9 +5042,7 @@ Downloader.prototype = {
} else {
state = STATE_PENDING;
}
- if (this.background) {
- shouldShowPrompt = !getCanStageUpdates();
- }
+ shouldShowPrompt = !getCanStageUpdates();
AUSTLMY.pingDownloadCode(this.isCompleteUpdate, AUSTLMY.DWNLD_SUCCESS);
// Tell the updater.exe we're ready to apply.
@@ -5329,9 +5325,7 @@ Downloader.prototype = {
LOG(
"Downloader:onStopRequest - failed to stage update. Exception: " + e
);
- if (this.background) {
- shouldShowPrompt = true;
- }
+ shouldShowPrompt = true;
}
}
}
diff --git a/toolkit/mozapps/update/tests/browser/browser_aboutDialog_fc_downloadAuto.js b/toolkit/mozapps/update/tests/browser/browser_aboutDialog_fc_downloadAuto.js
index 6a8835251dec..be65ce8ddef1 100644
--- a/toolkit/mozapps/update/tests/browser/browser_aboutDialog_fc_downloadAuto.js
+++ b/toolkit/mozapps/update/tests/browser/browser_aboutDialog_fc_downloadAuto.js
@@ -15,7 +15,7 @@ add_task(async function aboutDialog_foregroundCheck_downloadAuto() {
// Since the partial should be successful specify an invalid size for the
// complete update.
- let params = { queryString: "&invalidCompleteSize=1" };
+ let params = { queryString: "&invalidCompleteSize=1&promptWaitTime=0" };
await runAboutDialogUpdateTest(params, [
{
panelId: "checkingForUpdates",
@@ -28,6 +28,22 @@ add_task(async function aboutDialog_foregroundCheck_downloadAuto() {
continueFile: CONTINUE_DOWNLOAD,
downloadInfo,
},
+ async function aboutDialog_restart_notification() {
+ is(
+ PanelUI.notificationPanel.state,
+ "closed",
+ "The window's doorhanger is closed."
+ );
+ ok(
+ PanelUI.menuButton.hasAttribute("badge-status"),
+ "The window has a badge."
+ );
+ is(
+ PanelUI.menuButton.getAttribute("badge-status"),
+ "update-restart",
+ "The restart badge is showing for the background window"
+ );
+ },
{
panelId: "apply",
checkActiveUpdate: { state: STATE_PENDING },
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] TB3: Tor Browser's official .mozconfigs.
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit d9bd1c8593cd5182fe9ad68e90f63dd7634df0d7
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Mon May 6 15:51:06 2013 -0700
TB3: Tor Browser's official .mozconfigs.
Also:
Bug #9829.1: new .mozconfig file for the new cross-compiler and ESR24
Changes needed to build Mac in 64bit
Bug 10715: Enable Webgl for mingw-w64 again.
Disable ICU when cross-compiling; clean-up.
Bug 15773: Enable ICU on OS X
Bug 15990: Don't build the sandbox with mingw-w64
Bug 12761: Switch to ESR 38 for OS X
Updating .mozconfig-asan
Bug 12516: Compile hardenend Tor Browser with -fwrapv
Bug 18331: Switch to Mozilla's toolchain for building Tor Browser for OS X
Bug 17858: Cannot create incremental MARs for hardened builds.
Define HOST_CFLAGS, etc. to avoid compiling programs such as mbsdiff
(which is part of mar-tools and is not distributed to end-users) with
ASan.
Bug 13419: Add back ICU for Windows
Bug 21239: Use GTK2 for ESR52 Linux builds
Bug 23025: Add hardening flags for macOS
Bug 24478: Enable debug assertions and tests in our ASan builds
--enable-proxy-bypass-protection
Bug 27597: ASan build option in tor-browser-build is broken
Bug 27623 - Export MOZILLA_OFFICIAL during desktop builds
This fixes a problem where some preferences had the wrong default value.
Also see bug 27472 where we made a similar fix for Android.
Bug 30463: Explicitly disable MOZ_TELEMETRY_REPORTING
Bug 31450: Set proper BINDGEN_CFLAGS for ASan builds
Add an --enable-tor-browser-data-outside-app-dir configure option
Add --with-tor-browser-version configure option
Bug 21849: Don't allow SSL key logging.
Bug 31457: disable per-installation profiles
The dedicated profiles (per-installation) feature does not interact
well with our bundled profiles on Linux and Windows, and it also causes
multiple profiles to be created on macOS under TorBrowser-Data.
Bug 31935: Disable profile downgrade protection.
Since Tor Browser does not support more than one profile, disable
the prompt and associated code that offers to create one when a
version downgrade situation is detected.
Bug 32493: Disable MOZ_SERVICES_HEALTHREPORT
Bug 25741 - TBA: Disable features at compile-time
MOZ_NATIVE_DEVICES for casting and the media player
MOZ_TELEMETRY_REPORTING for telemetry
MOZ_DATA_REPORTING for all data reporting preferences (crashreport, telemetry, geo)
Bug 25741 - TBA: Add default configure options in dedicated file
Define MOZ_ANDROID_NETWORK_STATE and MOZ_ANDROID_LOCATION
Bug 29859: Disable HLS support for now
Add --disable-tor-launcher build option
Add --enable-tor-browser-update build option
Bug 33734: Set MOZ_NORMANDY to False
Bug 33851: Omit Parental Controls.
Bug 40061: Omit the Windows default browser agent from the build
Bug 40107: Adapt .mozconfig-asan for ESR 78
---
.mozconfig | 38 ++++++++++++++++++++++++
.mozconfig-android | 35 ++++++++++++++++++++++
.mozconfig-asan | 44 ++++++++++++++++++++++++++++
.mozconfig-mac | 55 +++++++++++++++++++++++++++++++++++
.mozconfig-mingw | 30 +++++++++++++++++++
browser/base/moz.build | 3 ++
browser/installer/Makefile.in | 8 +++++
browser/moz.configure | 8 ++---
build/moz.configure/old.configure | 6 ++++
mobile/android/confvars.sh | 9 ++++++
mobile/android/geckoview/build.gradle | 1 +
mobile/android/moz.configure | 17 +++++++++--
mobile/android/torbrowser.configure | 30 +++++++++++++++++++
old-configure.in | 49 +++++++++++++++++++++++++++++++
security/moz.build | 2 +-
security/nss/lib/ssl/Makefile | 2 +-
toolkit/modules/AppConstants.jsm | 9 ++++++
toolkit/modules/moz.build | 3 ++
18 files changed, 341 insertions(+), 8 deletions(-)
diff --git a/.mozconfig b/.mozconfig
new file mode 100755
index 000000000000..24efaea57b0b
--- /dev/null
+++ b/.mozconfig
@@ -0,0 +1,38 @@
+. $topsrcdir/browser/config/mozconfig
+
+# This mozconfig file is not used in official Tor Browser builds.
+# It is only intended to be used when doing incremental Linux builds
+# during development. The platform-specific mozconfig configuration
+# files used in official Tor Browser releases can be found in the
+# tor-browser-build repo:
+# https://gitweb.torproject.org/builders/tor-browser-build.git/
+# under:
+# tor-browser-build/projects/firefox/mozconfig-$OS-$ARCH
+
+mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-@CONFIG_GUESS@
+mk_add_options MOZ_APP_DISPLAYNAME="Tor Browser"
+export MOZILLA_OFFICIAL=1
+
+ac_add_options --enable-optimize
+ac_add_options --enable-official-branding
+
+# Let's support GTK3 for ESR60
+ac_add_options --enable-default-toolkit=cairo-gtk3
+
+ac_add_options --disable-strip
+ac_add_options --disable-install-strip
+ac_add_options --disable-tests
+ac_add_options --disable-debug
+ac_add_options --disable-crashreporter
+ac_add_options --disable-webrtc
+ac_add_options --disable-parental-controls
+# Let's make sure no preference is enabling either Adobe's or Google's CDM.
+ac_add_options --disable-eme
+ac_add_options --enable-proxy-bypass-protection
+
+# Disable telemetry
+ac_add_options MOZ_TELEMETRY_REPORTING=
+
+ac_add_options --disable-tor-launcher
+ac_add_options --with-tor-browser-version=dev-build
+ac_add_options --disable-tor-browser-update
diff --git a/.mozconfig-android b/.mozconfig-android
new file mode 100755
index 000000000000..1b5e3f3178b7
--- /dev/null
+++ b/.mozconfig-android
@@ -0,0 +1,35 @@
+mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-arm-linux-androideabi
+mk_add_options MOZ_APP_DISPLAYNAME="Tor Browser"
+export MOZILLA_OFFICIAL=1
+
+ac_add_options --enable-optimize
+ac_add_options --enable-official-branding
+
+# Android
+ac_add_options --enable-application=mobile/android
+ac_add_options --target=arm-linux-androideabi
+ac_add_options --with-android-ndk="$NDK_BASE" #Enter the android ndk location(ndk r17b)
+ac_add_options --with-android-sdk="$SDK_BASE" #Enter the android sdk location
+ac_add_options --with-branding=mobile/android/branding/alpha
+
+# Use Mozilla's Clang blobs
+CC="$HOME/.mozbuild/clang/bin/clang"
+CXX="$HOME/.mozbuild/clang/bin/clang++"
+
+#enable ccache to set amount of cache assigned for build.
+ac_add_options --with-ccache
+
+ac_add_options --enable-strip
+ac_add_options --disable-tests
+ac_add_options --disable-debug
+ac_add_options --disable-rust-debug
+
+ac_add_options --disable-updater
+ac_add_options --disable-crashreporter
+ac_add_options --disable-webrtc
+ac_add_options --disable-parental-controls
+
+ac_add_options --enable-proxy-bypass-protection
+
+# Disable telemetry
+ac_add_options MOZ_TELEMETRY_REPORTING=
diff --git a/.mozconfig-asan b/.mozconfig-asan
new file mode 100644
index 000000000000..d812a55a9cea
--- /dev/null
+++ b/.mozconfig-asan
@@ -0,0 +1,44 @@
+. $topsrcdir/browser/config/mozconfig
+
+export CFLAGS="-fsanitize=address -Dxmalloc=myxmalloc"
+export CXXFLAGS="-fsanitize=address -Dxmalloc=myxmalloc"
+# We need to add -ldl explicitely due to bug 1213698
+export LDFLAGS="-fsanitize=address -ldl"
+
+# Define HOST_CFLAGS, etc. to avoid compiling programs such as mbsdiff
+# (which is part of mar-tools and is not distributed to end-users) with
+# ASan. See bug 17858.
+export HOST_CFLAGS=""
+export HOST_CXXFLAGS=""
+export HOST_LDFLAGS="-ldl"
+
+mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-@CONFIG_GUESS@
+mk_add_options MOZ_APP_DISPLAYNAME="Tor Browser"
+export MOZILLA_OFFICIAL=1
+export BINDGEN_CFLAGS='--gcc-toolchain=/var/tmp/dist/gcc'
+
+ac_add_options --enable-address-sanitizer
+ac_add_options --disable-jemalloc
+ac_add_options --disable-elf-hack
+ac_add_options --with-clang-path=/var/tmp/dist/clang/bin/clang
+
+ac_add_options --enable-optimize
+ac_add_options --enable-official-branding
+
+# Let's support GTK3 for ESR60
+ac_add_options --enable-default-toolkit=cairo-gtk3
+
+ac_add_options --enable-tor-browser-update
+
+ac_add_options --disable-strip
+ac_add_options --disable-install-strip
+ac_add_options --disable-tests
+ac_add_options --disable-debug
+ac_add_options --disable-crashreporter
+ac_add_options --disable-webrtc
+ac_add_options --disable-parental-controls
+ac_add_options --disable-eme
+ac_add_options --enable-proxy-bypass-protection
+
+# Disable telemetry
+ac_add_options MOZ_TELEMETRY_REPORTING=
diff --git a/.mozconfig-mac b/.mozconfig-mac
new file mode 100644
index 000000000000..1f89cab30bbc
--- /dev/null
+++ b/.mozconfig-mac
@@ -0,0 +1,55 @@
+# ld needs libLTO.so from llvm
+mk_add_options "export LD_LIBRARY_PATH=$topsrcdir/clang/lib"
+
+CROSS_CCTOOLS_PATH=$topsrcdir/cctools
+CROSS_SYSROOT=$topsrcdir/MacOSX10.7.sdk
+CROSS_PRIVATE_FRAMEWORKS=$CROSS_SYSROOT/System/Library/PrivateFrameworks
+HARDENING_FLAGS="-Werror=format -Werror=format-security -fstack-protector-strong -D_FORTIFY_SOURCE=2"
+FLAGS="-target x86_64-apple-darwin10 -mlinker-version=136 -B $CROSS_CCTOOLS_PATH/bin -isysroot $CROSS_SYSROOT $HARDENING_FLAGS"
+
+export CC="$topsrcdir/clang/bin/clang $FLAGS"
+export CXX="$topsrcdir/clang/bin/clang++ $FLAGS"
+export CPP="$topsrcdir/clang/bin/clang $FLAGS -E"
+export LLVMCONFIG=$topsrcdir/clang/bin/llvm-config
+export LDFLAGS="-Wl,-syslibroot,$CROSS_SYSROOT -Wl,-dead_strip -Wl,-pie"
+export TOOLCHAIN_PREFIX=$CROSS_CCTOOLS_PATH/bin/x86_64-apple-darwin10-
+#TODO: bug 1184202 - would be nice if these could be detected with TOOLCHAIN_PREFIX automatically
+export AR=${TOOLCHAIN_PREFIX}ar
+export RANLIB=${TOOLCHAIN_PREFIX}ranlib
+export STRIP=${TOOLCHAIN_PREFIX}strip
+export OTOOL=${TOOLCHAIN_PREFIX}otool
+export DSYMUTIL=$topsrcdir/clang/bin/llvm-dsymutil
+
+export HOST_CC="$topsrcdir/clang/bin/clang"
+export HOST_CXX="$topsrcdir/clang/bin/clang++"
+export HOST_CPP="$topsrcdir/clang/bin/clang -E"
+export HOST_CFLAGS="-g"
+export HOST_CXXFLAGS="-g"
+export HOST_LDFLAGS="-g"
+
+ac_add_options --target=x86_64-apple-darwin
+ac_add_options --with-macos-private-frameworks=$CROSS_PRIVATE_FRAMEWORKS
+
+mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-macos
+mk_add_options MOZ_APP_DISPLAYNAME="Tor Browser"
+export MOZILLA_OFFICIAL=1
+
+ac_add_options --enable-application=browser
+ac_add_options --enable-strip
+ac_add_options --enable-official-branding
+ac_add_options --enable-optimize
+ac_add_options --disable-debug
+
+ac_add_options --enable-tor-browser-data-outside-app-dir
+ac_add_options --enable-tor-browser-update
+
+ac_add_options --disable-crashreporter
+ac_add_options --disable-webrtc
+ac_add_options --disable-parental-controls
+ac_add_options --disable-tests
+# Let's make sure no preference is enabling either Adobe's or Google's CDM.
+ac_add_options --disable-eme
+ac_add_options --enable-proxy-bypass-protection
+
+# Disable telemetry
+ac_add_options MOZ_TELEMETRY_REPORTING=
diff --git a/.mozconfig-mingw b/.mozconfig-mingw
new file mode 100644
index 000000000000..4fb050308060
--- /dev/null
+++ b/.mozconfig-mingw
@@ -0,0 +1,30 @@
+CROSS_COMPILE=1
+
+ac_add_options --enable-application=browser
+ac_add_options --target=i686-w64-mingw32
+ac_add_options --with-toolchain-prefix=i686-w64-mingw32-
+ac_add_options --enable-default-toolkit=cairo-windows
+mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-mingw
+mk_add_options MOZ_APP_DISPLAYNAME="Tor Browser"
+export MOZILLA_OFFICIAL=1
+
+ac_add_options --disable-debug
+ac_add_options --enable-optimize
+ac_add_options --enable-strip
+ac_add_options --enable-official-branding
+
+ac_add_options --enable-tor-browser-update
+ac_add_options --disable-bits-download
+
+# Let's make sure no preference is enabling either Adobe's or Google's CDM.
+ac_add_options --disable-eme
+ac_add_options --disable-crashreporter
+ac_add_options --disable-maintenance-service
+ac_add_options --disable-webrtc
+ac_add_options --disable-parental-controls
+ac_add_options --disable-tests
+ac_add_options --enable-proxy-bypass-protection
+
+# Disable telemetry
+ac_add_options MOZ_TELEMETRY_REPORTING=
+ac_add_options --disable-default-browser-agent
diff --git a/browser/base/moz.build b/browser/base/moz.build
index e136e0986a3c..ebb4cbf79fd0 100644
--- a/browser/base/moz.build
+++ b/browser/base/moz.build
@@ -71,4 +71,7 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'gtk', 'cocoa'):
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'gtk'):
DEFINES['MENUBAR_CAN_AUTOHIDE'] = 1
+if CONFIG['TOR_BROWSER_UPDATE']:
+ DEFINES['TOR_BROWSER_UPDATE'] = 1
+
JAR_MANIFESTS += ['jar.mn']
diff --git a/browser/installer/Makefile.in b/browser/installer/Makefile.in
index b861ad214a64..0325f0ffab9a 100644
--- a/browser/installer/Makefile.in
+++ b/browser/installer/Makefile.in
@@ -82,6 +82,14 @@ endif
endif
endif
+ifdef TOR_BROWSER_DISABLE_TOR_LAUNCHER
+DEFINES += -DTOR_BROWSER_DISABLE_TOR_LAUNCHER
+endif
+
+ifdef TOR_BROWSER_UPDATE
+DEFINES += -DTOR_BROWSER_UPDATE
+endif
+
ifneq (,$(filter WINNT Darwin Android,$(OS_TARGET)))
DEFINES += -DMOZ_SHARED_MOZGLUE=1
endif
diff --git a/browser/moz.configure b/browser/moz.configure
index a251050feb9b..3b6b377235ca 100644
--- a/browser/moz.configure
+++ b/browser/moz.configure
@@ -5,11 +5,11 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
imply_option('MOZ_PLACES', True)
-imply_option('MOZ_SERVICES_HEALTHREPORT', True)
+imply_option('MOZ_SERVICES_HEALTHREPORT', False)
imply_option('MOZ_SERVICES_SYNC', True)
-imply_option('MOZ_DEDICATED_PROFILES', True)
-imply_option('MOZ_BLOCK_PROFILE_DOWNGRADE', True)
-imply_option('MOZ_NORMANDY', True)
+imply_option('MOZ_DEDICATED_PROFILES', False)
+imply_option('MOZ_BLOCK_PROFILE_DOWNGRADE', False)
+imply_option('MOZ_NORMANDY', False)
with only_when(target_is_linux & compile_environment):
option(env='MOZ_NO_PIE_COMPAT',
diff --git a/build/moz.configure/old.configure b/build/moz.configure/old.configure
index 136abbcafa69..9b663a1bf4f1 100644
--- a/build/moz.configure/old.configure
+++ b/build/moz.configure/old.configure
@@ -248,6 +248,12 @@ def old_configure_options(*options):
'--with-user-appdir',
'--x-includes',
'--x-libraries',
+
+ # Tor additions.
+ '--with-tor-browser-version',
+ '--enable-tor-browser-update',
+ '--enable-tor-browser-data-outside-app-dir',
+ '--enable-tor-launcher',
)
def prepare_configure_options(host, target, all_options, *options):
# old-configure only supports the options listed in @old_configure_options
diff --git a/mobile/android/confvars.sh b/mobile/android/confvars.sh
index 77191834d240..47a6a8dbae1d 100644
--- a/mobile/android/confvars.sh
+++ b/mobile/android/confvars.sh
@@ -30,9 +30,18 @@ MOZ_ANDROID_BROWSER_INTENT_CLASS=org.mozilla.gecko.BrowserApp
MOZ_NO_SMART_CARDS=1
+# Adds MIME-type support for raw video
MOZ_RAW=1
# use custom widget for html:select
MOZ_USE_NATIVE_POPUP_WINDOWS=1
MOZ_APP_ID={aa3c5121-dab2-40e2-81ca-7ea25febc110}
+
+### Tor Browser for Android ###
+
+# Disable telemetry at compile-time
+unset MOZ_TELEMETRY_REPORTING
+
+# Disable data reporting at compile-time
+unset MOZ_DATA_REPORTING
diff --git a/mobile/android/geckoview/build.gradle b/mobile/android/geckoview/build.gradle
index 82d36c179c92..c1b51537031d 100644
--- a/mobile/android/geckoview/build.gradle
+++ b/mobile/android/geckoview/build.gradle
@@ -92,6 +92,7 @@ android {
buildConfigField 'String', "MOZ_APP_DISPLAYNAME", "\"${mozconfig.substs.MOZ_APP_DISPLAYNAME}\"";
buildConfigField 'String', "MOZ_APP_UA_NAME", "\"${mozconfig.substs.MOZ_APP_UA_NAME}\"";
buildConfigField 'String', "MOZ_UPDATE_CHANNEL", "\"${mozconfig.substs.MOZ_UPDATE_CHANNEL}\"";
+ buildConfigField 'String', "TOR_BROWSER_VERSION", "\"${mozconfig.substs.TOR_BROWSER_VERSION}\"";
// MOZILLA_VERSION is oddly quoted from autoconf, but we don't have to handle it specially in Gradle.
buildConfigField 'String', "MOZILLA_VERSION", "\"${mozconfig.substs.MOZILLA_VERSION}\"";
diff --git a/mobile/android/moz.configure b/mobile/android/moz.configure
index fa510f0a57d3..f7b4df4ac24a 100644
--- a/mobile/android/moz.configure
+++ b/mobile/android/moz.configure
@@ -10,7 +10,7 @@ project_flag('MOZ_ANDROID_EXCLUDE_FONTS',
project_flag('MOZ_ANDROID_HLS_SUPPORT',
help='Enable HLS (HTTP Live Streaming) support (currently using the ExoPlayer library)',
- default=True)
+ default=False)
option(env='FENNEC_NIGHTLY',
help='Enable experimental code for Fennec Nightly users. NOTE: This is *not* equivalent '
@@ -26,9 +26,12 @@ def fennec_nightly(nightly):
return bool(nightly)
imply_option('MOZ_NORMANDY', False)
-imply_option('MOZ_SERVICES_HEALTHREPORT', True)
imply_option('MOZ_ANDROID_HISTORY', True)
imply_option('--enable-small-chunk-size', True)
+# Comment this so we can imply |False| in torbrowser.configure
+# The Build system doesn't allow multiple imply_option()
+# calls with the same key.
+#imply_option('MOZ_SERVICES_HEALTHREPORT', True)
@depends(target)
def check_target(target):
@@ -39,6 +42,8 @@ def check_target(target):
'Build_Instructions/Simple_Firefox_for_Android_build '
'for more information about the necessary options.')
+include('torbrowser.configure')
+
include('../../toolkit/moz.configure')
include('../../build/moz.configure/android-sdk.configure')
include('../../build/moz.configure/java.configure')
@@ -50,3 +55,11 @@ option(env='MOZ_ANDROID_FAT_AAR_ARCHITECTURES',
help='Comma-separated list of Android CPU architectures like "armeabi-v7a,arm64-v8a,x86,x86_64"')
set_config('MOZ_ANDROID_FAT_AAR_ARCHITECTURES', depends('MOZ_ANDROID_FAT_AAR_ARCHITECTURES')(lambda x: x))
+
+project_flag('MOZ_ANDROID_NETWORK_STATE',
+ help='Include permission for accessing WiFi/network state on Android',
+ default=False)
+
+project_flag('MOZ_ANDROID_LOCATION',
+ help='Include permission for accessing fine and course-grain Location on Android',
+ default=False)
diff --git a/mobile/android/torbrowser.configure b/mobile/android/torbrowser.configure
new file mode 100644
index 000000000000..2ff6215eedc9
--- /dev/null
+++ b/mobile/android/torbrowser.configure
@@ -0,0 +1,30 @@
+# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
+# vim: set filetype=python:
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+# Set Tor Browser default config
+
+imply_option('MOZ_ANDROID_EXCLUDE_FONTS', False)
+
+# Disable uploading crash reports and dump files to an external server
+# This is still configured in old-configure. Uncomment when this moves
+# to the python config
+#imply_option('MOZ_CRASHREPORTER', False)
+
+# Disable uploading information about the browser configuration and
+# performance to an external server
+imply_option('MOZ_SERVICES_HEALTHREPORT', False)
+
+# Disable creating telemetry and data reports that are uploaded to an
+# external server
+# These aren't actually configure options. These are disabled in
+# confvars.sh, but they look like configure options so we'll document
+# them here, as well.
+#XXX: no confvars.sh here
+#imply_option('MOZ_TELEMETRY_REPORTING', False)
+#imply_option('MOZ_DATA_REPORTING', False)
+
+imply_option('MOZ_ANDROID_NETWORK_STATE', False);
+imply_option('MOZ_ANDROID_LOCATION', False);
diff --git a/old-configure.in b/old-configure.in
index dfb072b19cfb..2c3308a27657 100644
--- a/old-configure.in
+++ b/old-configure.in
@@ -1966,6 +1966,55 @@ if test -n "$MOZ_UPDATER"; then
AC_DEFINE(MOZ_UPDATER)
fi
+dnl ========================================================
+dnl Tor additions
+dnl ========================================================
+MOZ_ARG_WITH_STRING(tor-browser-version,
+[ --with-tor-browser-version=VERSION
+ Set Tor Browser version, e.g., 7.0a1],
+ TOR_BROWSER_VERSION="$withval")
+
+if test -z "$TOR_BROWSER_VERSION"; then
+ AC_MSG_ERROR([--with-tor-browser-version is required for Tor Browser.])
+fi
+
+MOZ_ARG_ENABLE_BOOL(tor-browser-update,
+[ --enable-tor-browser-update
+ Enable Tor Browser update],
+ TOR_BROWSER_UPDATE=1,
+ TOR_BROWSER_UPDATE= )
+
+if test -n "$TOR_BROWSER_UPDATE"; then
+ AC_DEFINE(TOR_BROWSER_UPDATE)
+fi
+
+MOZ_ARG_ENABLE_BOOL(tor-browser-data-outside-app-dir,
+[ --enable-tor-browser-data-outside-app-dir
+ Enable Tor Browser data outside of app directory],
+ TOR_BROWSER_DATA_OUTSIDE_APP_DIR=1,
+ TOR_BROWSER_DATA_OUTSIDE_APP_DIR= )
+
+if test -n "$TOR_BROWSER_DATA_OUTSIDE_APP_DIR"; then
+ AC_DEFINE(TOR_BROWSER_DATA_OUTSIDE_APP_DIR)
+fi
+
+AC_DEFINE_UNQUOTED(TOR_BROWSER_VERSION,$TOR_BROWSER_VERSION)
+AC_DEFINE_UNQUOTED(TOR_BROWSER_VERSION_QUOTED,"$TOR_BROWSER_VERSION")
+AC_SUBST(TOR_BROWSER_UPDATE)
+AC_SUBST(TOR_BROWSER_DATA_OUTSIDE_APP_DIR)
+
+MOZ_ARG_DISABLE_BOOL(tor-launcher,
+[ --disable-tor-launcher
+ Do not include Tor Launcher],
+ TOR_BROWSER_DISABLE_TOR_LAUNCHER=1,
+ TOR_BROWSER_DISABLE_TOR_LAUNCHER=)
+
+if test -n "$TOR_BROWSER_DISABLE_TOR_LAUNCHER"; then
+ AC_DEFINE(TOR_BROWSER_DISABLE_TOR_LAUNCHER)
+fi
+
+AC_SUBST(TOR_BROWSER_DISABLE_TOR_LAUNCHER)
+
dnl ========================================================
dnl parental controls (for Windows Vista)
dnl ========================================================
diff --git a/security/moz.build b/security/moz.build
index dec6f3ef7e21..f00f9fe5d7a7 100644
--- a/security/moz.build
+++ b/security/moz.build
@@ -85,7 +85,7 @@ gyp_vars['nss_dist_obj_dir'] = '$PRODUCT_DIR/dist/bin'
gyp_vars['disable_tests'] = 1
gyp_vars['disable_dbm'] = 1
gyp_vars['disable_libpkix'] = 1
-gyp_vars['enable_sslkeylogfile'] = 1
+gyp_vars['enable_sslkeylogfile'] = 0
# pkg-config won't reliably find zlib on our builders, so just force it.
# System zlib is only used for modutil and signtool unless
# SSL zlib is enabled, which we are disabling immediately below this.
diff --git a/security/nss/lib/ssl/Makefile b/security/nss/lib/ssl/Makefile
index 8a8b06f4b508..90571bb3e256 100644
--- a/security/nss/lib/ssl/Makefile
+++ b/security/nss/lib/ssl/Makefile
@@ -41,7 +41,7 @@ endif
# Enable key logging by default in debug builds, but not opt builds.
# Logging still needs to be enabled at runtime through env vars.
-NSS_ALLOW_SSLKEYLOGFILE ?= $(if $(BUILD_OPT),0,1)
+NSS_ALLOW_SSLKEYLOGFILE ?= 0
ifeq (1,$(NSS_ALLOW_SSLKEYLOGFILE))
DEFINES += -DNSS_ALLOW_SSLKEYLOGFILE=1
endif
diff --git a/toolkit/modules/AppConstants.jsm b/toolkit/modules/AppConstants.jsm
index 9b035435aed6..cd8ca2659626 100644
--- a/toolkit/modules/AppConstants.jsm
+++ b/toolkit/modules/AppConstants.jsm
@@ -341,6 +341,8 @@ this.AppConstants = Object.freeze({
MOZ_WIDGET_TOOLKIT: "@MOZ_WIDGET_TOOLKIT@",
ANDROID_PACKAGE_NAME: "@ANDROID_PACKAGE_NAME@",
+ TOR_BROWSER_VERSION: "@TOR_BROWSER_VERSION@",
+
DEBUG_JS_MODULES: "@DEBUG_JS_MODULES@",
MOZ_BING_API_CLIENTID: "@MOZ_BING_API_CLIENTID@",
@@ -418,4 +420,11 @@ this.AppConstants = Object.freeze({
#else
false,
#endif
+
+ TOR_BROWSER_UPDATE:
+#ifdef TOR_BROWSER_UPDATE
+ true,
+#else
+ false,
+#endif
});
diff --git a/toolkit/modules/moz.build b/toolkit/modules/moz.build
index e5858122fa1c..f000f35c126f 100644
--- a/toolkit/modules/moz.build
+++ b/toolkit/modules/moz.build
@@ -296,6 +296,9 @@ for var in ('MOZ_ALLOW_ADDON_SIDELOAD',
if CONFIG[var]:
DEFINES[var] = True
+if CONFIG['TOR_BROWSER_UPDATE']:
+ DEFINES['TOR_BROWSER_UPDATE'] = 1
+
JAR_MANIFESTS += ['jar.mn']
DEFINES['TOPOBJDIR'] = TOPOBJDIR
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 1642404 - add an option to show that an update is being downloaded r=bytesized, fluent-reviewers, flod
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit a8806f04c2f6ca1612ebc85953acd7ecdaf1a818
Author: Mark Smith <mcs(a)pearlcrescent.com>
Date: Mon Jun 22 20:24:46 2020 +0000
Bug 1642404 - add an option to show that an update is being downloaded r=bytesized,fluent-reviewers,flod
Add support for a hidden preference named app.update.notifyDuringDownload
that, when set to true, causes a "Downloading update" message to appear
in the app menu during a MAR download. Clicking the message opens the
about box so the user can see detailed progress information.
Differential Revision: https://phabricator.services.mozilla.com/D77688
---
browser/app/profile/firefox.js | 4 ++
browser/components/BrowserGlue.jsm | 1 +
.../customizableui/content/panelUI.inc.xhtml | 2 +
.../components/customizableui/content/panelUI.js | 5 ++
.../test/browser_panelUINotifications.js | 62 ++++++++++++++++++++++
browser/locales/en-US/browser/appmenu.ftl | 2 +
.../themes/shared/customizableui/panelUI.inc.css | 3 ++
browser/themes/shared/notification-icons.inc.css | 1 +
browser/themes/shared/toolbarbutton-icons.inc.css | 1 +
toolkit/mozapps/update/UpdateListener.jsm | 50 +++++++++++------
toolkit/mozapps/update/UpdateService.jsm | 27 ++++++++++
.../mozapps/update/tests/browser/browser.bits.ini | 1 +
toolkit/mozapps/update/tests/browser/browser.ini | 1 +
.../update/tests/browser/browser.legacy.bits.ini | 1 +
.../update/tests/browser/browser.legacy.ini | 1 +
.../browser/browser_aboutDialog_bc_downloading.js | 17 ++++++
.../browser_aboutDialog_bc_downloading_notify.js | 58 ++++++++++++++++++++
toolkit/mozapps/update/tests/data/shared.js | 1 +
18 files changed, 222 insertions(+), 16 deletions(-)
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
index ab9d2cdc5bcc..efee4f15c986 100644
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -131,6 +131,10 @@ pref("app.update.download.promptMaxAttempts", 2);
// download a fresh installer.
pref("app.update.elevation.promptMaxAttempts", 2);
+// If set to true, a message will be displayed in the hamburger menu while
+// an update is being downloaded.
+pref("app.update.notifyDuringDownload", false);
+
// If set to true, the Update Service will automatically download updates if the
// user can apply updates. This pref is no longer used on Windows, except as the
// default value to migrate to the new location that this data is now stored
diff --git a/browser/components/BrowserGlue.jsm b/browser/components/BrowserGlue.jsm
index 70f5ad8b85e4..0a3555f26432 100644
--- a/browser/components/BrowserGlue.jsm
+++ b/browser/components/BrowserGlue.jsm
@@ -769,6 +769,7 @@ const global = this;
const listeners = {
observers: {
+ "update-downloading": ["UpdateListener"],
"update-staged": ["UpdateListener"],
"update-downloaded": ["UpdateListener"],
"update-available": ["UpdateListener"],
diff --git a/browser/components/customizableui/content/panelUI.inc.xhtml b/browser/components/customizableui/content/panelUI.inc.xhtml
index e5c9c00c35e4..3a8b74b0a9f3 100644
--- a/browser/components/customizableui/content/panelUI.inc.xhtml
+++ b/browser/components/customizableui/content/panelUI.inc.xhtml
@@ -223,6 +223,8 @@
<vbox class="panel-subview-body">
<vbox id="appMenu-addon-banners"/>
<toolbarbutton id="appMenu-update-banner" class="panel-banner-item"
+ data-l10n-id="appmenuitem-update-banner"
+ data-l10n-attrs="label-update-downloading"
label-update-available="&updateAvailable.panelUI.label;"
label-update-manual="&updateManual.panelUI.label;"
label-update-unsupported="&updateUnsupported.panelUI.label;"
diff --git a/browser/components/customizableui/content/panelUI.js b/browser/components/customizableui/content/panelUI.js
index 1f6ed5caf839..a81be30f3ec7 100644
--- a/browser/components/customizableui/content/panelUI.js
+++ b/browser/components/customizableui/content/panelUI.js
@@ -65,6 +65,7 @@ const PanelUI = {
Services.obs.addObserver(this, "fullscreen-nav-toolbox");
Services.obs.addObserver(this, "appMenu-notifications");
+ Services.obs.addObserver(this, "show-update-progress");
XPCOMUtils.defineLazyPreferenceGetter(
this,
@@ -182,6 +183,7 @@ const PanelUI = {
Services.obs.removeObserver(this, "fullscreen-nav-toolbox");
Services.obs.removeObserver(this, "appMenu-notifications");
+ Services.obs.removeObserver(this, "show-update-progress");
window.removeEventListener("MozDOMFullscreen:Entered", this);
window.removeEventListener("MozDOMFullscreen:Exited", this);
@@ -271,6 +273,9 @@ const PanelUI = {
this._notifications = AppMenuNotifications.notifications;
this._updateNotifications(true);
break;
+ case "show-update-progress":
+ openAboutDialog();
+ break;
}
},
diff --git a/browser/components/customizableui/test/browser_panelUINotifications.js b/browser/components/customizableui/test/browser_panelUINotifications.js
index 39ae5435c453..cab471bc946f 100644
--- a/browser/components/customizableui/test/browser_panelUINotifications.js
+++ b/browser/components/customizableui/test/browser_panelUINotifications.js
@@ -156,6 +156,68 @@ add_task(async function testSecondaryActionWorkflow() {
});
});
+/**
+ * This tests that the PanelUI update downloading badge and banner
+ * notification are correctly displayed and that clicking the banner
+ * item calls the main action.
+ */
+add_task(async function testDownloadingBadge() {
+ let options = {
+ gBrowser: window.gBrowser,
+ url: "about:blank",
+ };
+
+ await BrowserTestUtils.withNewTab(options, async function(browser) {
+ let mainActionCalled = false;
+ let mainAction = {
+ callback: () => {
+ mainActionCalled = true;
+ },
+ };
+ // The downloading notification is always displayed in a dismissed state.
+ AppMenuNotifications.showNotification(
+ "update-downloading",
+ mainAction,
+ undefined,
+ { dismissed: true }
+ );
+ is(PanelUI.notificationPanel.state, "closed", "doorhanger is closed.");
+
+ is(
+ PanelUI.menuButton.getAttribute("badge-status"),
+ "update-downloading",
+ "Downloading badge is displaying on PanelUI button."
+ );
+
+ await gCUITestUtils.openMainMenu();
+ isnot(
+ PanelUI.menuButton.getAttribute("badge-status"),
+ "update-downloading",
+ "Downloading badge is hidden on PanelUI button."
+ );
+ let menuItem = PanelUI.mainView.querySelector(".panel-banner-item");
+ is(
+ menuItem.label,
+ menuItem.getAttribute("label-update-downloading"),
+ "Showing correct label (downloading)"
+ );
+ is(menuItem.hidden, false, "update-downloading menu item is showing.");
+
+ await gCUITestUtils.hideMainMenu();
+ is(
+ PanelUI.menuButton.getAttribute("badge-status"),
+ "update-downloading",
+ "Downloading badge is shown on PanelUI button."
+ );
+
+ await gCUITestUtils.openMainMenu();
+ menuItem.click();
+ ok(mainActionCalled, "Main action callback was called");
+
+ AppMenuNotifications.removeNotification(/.*/);
+ });
+});
+
/**
* We want to ensure a few things with this:
* - Adding a doorhanger will make a badge disappear
diff --git a/browser/locales/en-US/browser/appmenu.ftl b/browser/locales/en-US/browser/appmenu.ftl
index 12fd2bec3e6a..3026b2597287 100644
--- a/browser/locales/en-US/browser/appmenu.ftl
+++ b/browser/locales/en-US/browser/appmenu.ftl
@@ -4,6 +4,8 @@
## App Menu
+appmenuitem-update-banner =
+ .label-update-downloading = Downloading { -brand-shorter-name } update
appmenuitem-protection-dashboard-title = Protections Dashboard
appmenuitem-customize-mode =
.label = Customize…
diff --git a/browser/themes/shared/customizableui/panelUI.inc.css b/browser/themes/shared/customizableui/panelUI.inc.css
index 8a24f03c0ad6..c991daee0759 100644
--- a/browser/themes/shared/customizableui/panelUI.inc.css
+++ b/browser/themes/shared/customizableui/panelUI.inc.css
@@ -67,6 +67,7 @@
}
#PanelUI-menu-button[badge-status="update-available"] > .toolbarbutton-badge-stack > .toolbarbutton-badge,
+#PanelUI-menu-button[badge-status="update-downloading"] > .toolbarbutton-badge-stack > .toolbarbutton-badge,
#PanelUI-menu-button[badge-status="update-manual"] > .toolbarbutton-badge-stack > .toolbarbutton-badge,
#PanelUI-menu-button[badge-status="update-restart"] > .toolbarbutton-badge-stack > .toolbarbutton-badge,
#PanelUI-menu-button[badge-status="update-unsupported"] > .toolbarbutton-badge-stack > .toolbarbutton-badge {
@@ -80,6 +81,7 @@
}
#PanelUI-menu-button[badge-status="update-available"] > .toolbarbutton-badge-stack > .toolbarbutton-badge,
+#PanelUI-menu-button[badge-status="update-downloading"] > .toolbarbutton-badge-stack > .toolbarbutton-badge,
#PanelUI-menu-button[badge-status="update-manual"] > .toolbarbutton-badge-stack > .toolbarbutton-badge,
#PanelUI-menu-button[badge-status="update-restart"] > .toolbarbutton-badge-stack > .toolbarbutton-badge {
background: #74BF43 url(chrome://browser/skin/update-badge.svg) no-repeat center;
@@ -90,6 +92,7 @@
}
.panel-banner-item[notificationid="update-available"]::after,
+.panel-banner-item[notificationid="update-downloading"]::after,
.panel-banner-item[notificationid="update-manual"]::after,
.panel-banner-item[notificationid="update-restart"]::after {
background: #74BF43 url(chrome://browser/skin/update-badge.svg) no-repeat center;
diff --git a/browser/themes/shared/notification-icons.inc.css b/browser/themes/shared/notification-icons.inc.css
index 74d861200f45..f17ddae9dc79 100644
--- a/browser/themes/shared/notification-icons.inc.css
+++ b/browser/themes/shared/notification-icons.inc.css
@@ -401,6 +401,7 @@ html|*#webRTC-previewVideo {
/* UPDATE */
.popup-notification-icon[popupid="update-available"],
+.popup-notification-icon[popupid="update-downloading"],
.popup-notification-icon[popupid="update-manual"],
.popup-notification-icon[popupid="update-restart"] {
background: #74BF43 url(chrome://browser/skin/notification-icons/update.svg) no-repeat center;
diff --git a/browser/themes/shared/toolbarbutton-icons.inc.css b/browser/themes/shared/toolbarbutton-icons.inc.css
index 998537e1f57d..9514eb1d5338 100644
--- a/browser/themes/shared/toolbarbutton-icons.inc.css
+++ b/browser/themes/shared/toolbarbutton-icons.inc.css
@@ -290,6 +290,7 @@ toolbar[brighttext] {
}
#PanelUI-menu-button[badge-status="update-available"],
+#PanelUI-menu-button[badge-status="update-downloading"],
#PanelUI-menu-button[badge-status="update-manual"],
#PanelUI-menu-button[badge-status="update-restart"] {
list-style-image: url("chrome://browser/skin/menu-badged.svg");
diff --git a/toolkit/mozapps/update/UpdateListener.jsm b/toolkit/mozapps/update/UpdateListener.jsm
index 17919e914b11..110640628771 100644
--- a/toolkit/mozapps/update/UpdateListener.jsm
+++ b/toolkit/mozapps/update/UpdateListener.jsm
@@ -113,16 +113,18 @@ var UpdateListener = {
mainAction,
beforeShowDoorhanger
) {
+ const addTelemetry = id => {
+ // No telemetry for the "downloading" state.
+ if (type !== "downloading") {
+ Services.telemetry.getHistogramById(id).add(type);
+ }
+ };
let action = {
callback(win, fromDoorhanger) {
if (fromDoorhanger) {
- Services.telemetry
- .getHistogramById("UPDATE_NOTIFICATION_MAIN_ACTION_DOORHANGER")
- .add(type);
+ addTelemetry("UPDATE_NOTIFICATION_MAIN_ACTION_DOORHANGER");
} else {
- Services.telemetry
- .getHistogramById("UPDATE_NOTIFICATION_MAIN_ACTION_MENU")
- .add(type);
+ addTelemetry("UPDATE_NOTIFICATION_MAIN_ACTION_MENU");
}
mainAction(win);
},
@@ -131,13 +133,10 @@ var UpdateListener = {
let secondaryAction = {
callback() {
- Services.telemetry
- .getHistogramById("UPDATE_NOTIFICATION_DISMISSED")
- .add(type);
+ addTelemetry("UPDATE_NOTIFICATION_DISMISSED");
},
dismiss: true,
};
-
AppMenuNotifications.showNotification(
"update-" + type,
action,
@@ -145,13 +144,9 @@ var UpdateListener = {
{ dismissed, beforeShowDoorhanger }
);
if (dismissed) {
- Services.telemetry
- .getHistogramById("UPDATE_NOTIFICATION_BADGE_SHOWN")
- .add(type);
+ addTelemetry("UPDATE_NOTIFICATION_BADGE_SHOWN");
} else {
- Services.telemetry
- .getHistogramById("UPDATE_NOTIFICATION_SHOWN")
- .add(type);
+ addTelemetry("UPDATE_NOTIFICATION_SHOWN");
}
},
@@ -205,6 +200,15 @@ var UpdateListener = {
}
},
+ showUpdateDownloadingNotification() {
+ this.showUpdateNotification("downloading", true, true, () => {
+ // The user clicked on the "Downloading update" app menu item.
+ // Code in browser/components/customizableui/content/panelUI.js
+ // receives the following notification and opens the about dialog.
+ Services.obs.notifyObservers(null, "show-update-progress");
+ });
+ },
+
handleUpdateError(update, status) {
switch (status) {
case "download-attempt-failed":
@@ -287,6 +291,17 @@ var UpdateListener = {
}
},
+ handleUpdateDownloading(status) {
+ switch (status) {
+ case "downloading":
+ this.showUpdateDownloadingNotification();
+ break;
+ case "idle":
+ this.reset();
+ break;
+ }
+ },
+
observe(subject, topic, status) {
let update = subject && subject.QueryInterface(Ci.nsIUpdate);
@@ -299,6 +314,9 @@ var UpdateListener = {
}
this.handleUpdateAvailable(update, status);
break;
+ case "update-downloading":
+ this.handleUpdateDownloading(status);
+ break;
case "update-staged":
case "update-downloaded":
// An update check has found an update and downloaded / staged the
diff --git a/toolkit/mozapps/update/UpdateService.jsm b/toolkit/mozapps/update/UpdateService.jsm
index 0cc26f683078..8dd397f628f5 100644
--- a/toolkit/mozapps/update/UpdateService.jsm
+++ b/toolkit/mozapps/update/UpdateService.jsm
@@ -59,6 +59,7 @@ const PREF_APP_UPDATE_ELEVATE_ATTEMPTS = "app.update.elevate.attempts";
const PREF_APP_UPDATE_ELEVATE_MAXATTEMPTS = "app.update.elevate.maxAttempts";
const PREF_APP_UPDATE_LOG = "app.update.log";
const PREF_APP_UPDATE_LOG_FILE = "app.update.log.file";
+const PREF_APP_UPDATE_NOTIFYDURINGDOWNLOAD = "app.update.notifyDuringDownload";
const PREF_APP_UPDATE_PROMPTWAITTIME = "app.update.promptWaitTime";
const PREF_APP_UPDATE_SERVICE_ENABLED = "app.update.service.enabled";
const PREF_APP_UPDATE_SERVICE_ERRORS = "app.update.service.errors";
@@ -4446,6 +4447,24 @@ Downloader.prototype = {
return selectedPatch;
},
+ /**
+ * Whether or not the user wants to be notified that an update is being
+ * downloaded.
+ */
+ get _notifyDuringDownload() {
+ return Services.prefs.getBoolPref(
+ PREF_APP_UPDATE_NOTIFYDURINGDOWNLOAD,
+ false
+ );
+ },
+
+ _notifyDownloadStatusObservers: function Downloader_notifyDownloadStatusObservers() {
+ if (this._notifyDuringDownload) {
+ let status = this.updateService.isDownloading ? "downloading" : "idle";
+ Services.obs.notifyObservers(this._update, "update-downloading", status);
+ }
+ },
+
/**
* Whether or not we are currently downloading something.
*/
@@ -4687,6 +4706,9 @@ Downloader.prototype = {
.getService(Ci.nsIUpdateManager)
.saveUpdates();
}
+
+ this._notifyDownloadStatusObservers();
+
return STATE_DOWNLOADING;
},
@@ -5193,6 +5215,11 @@ Downloader.prototype = {
this._request = null;
+ // This notification must happen after _request is set to null so that
+ // the correct this.updateService.isDownloading value is available in
+ // _notifyDownloadStatusObservers().
+ this._notifyDownloadStatusObservers();
+
if (state == STATE_DOWNLOAD_FAILED) {
var allFailed = true;
// If we haven't already, attempt to download without BITS
diff --git a/toolkit/mozapps/update/tests/browser/browser.bits.ini b/toolkit/mozapps/update/tests/browser/browser.bits.ini
index 9355e22550f2..5a44d1e0f6bf 100644
--- a/toolkit/mozapps/update/tests/browser/browser.bits.ini
+++ b/toolkit/mozapps/update/tests/browser/browser.bits.ini
@@ -21,6 +21,7 @@ prefs =
# About Dialog Application Update Tests
[browser_aboutDialog_bc_downloading.js]
[browser_aboutDialog_bc_downloading_staging.js]
+[browser_aboutDialog_bc_downloading_notify.js]
[browser_aboutDialog_bc_downloaded.js]
[browser_aboutDialog_bc_downloaded_staging.js]
[browser_aboutDialog_bc_downloaded_staged.js]
diff --git a/toolkit/mozapps/update/tests/browser/browser.ini b/toolkit/mozapps/update/tests/browser/browser.ini
index 5ce14c9c2633..c4f3fd055bbf 100644
--- a/toolkit/mozapps/update/tests/browser/browser.ini
+++ b/toolkit/mozapps/update/tests/browser/browser.ini
@@ -15,6 +15,7 @@ prefs =
# About Dialog Application Update Tests
[browser_aboutDialog_bc_downloading.js]
[browser_aboutDialog_bc_downloading_staging.js]
+[browser_aboutDialog_bc_downloading_notify.js]
[browser_aboutDialog_bc_downloaded.js]
[browser_aboutDialog_bc_downloaded_staging.js]
[browser_aboutDialog_bc_downloaded_stagingFailure.js]
diff --git a/toolkit/mozapps/update/tests/browser/browser.legacy.bits.ini b/toolkit/mozapps/update/tests/browser/browser.legacy.bits.ini
index 7bf1f706a5b7..555eaea82cd6 100644
--- a/toolkit/mozapps/update/tests/browser/browser.legacy.bits.ini
+++ b/toolkit/mozapps/update/tests/browser/browser.legacy.bits.ini
@@ -20,6 +20,7 @@ prefs =
# About Dialog Application Update Tests
[browser_aboutDialog_bc_downloading.js]
[browser_aboutDialog_bc_downloading_staging.js]
+[browser_aboutDialog_bc_downloading_notify.js]
[browser_aboutDialog_bc_downloaded.js]
[browser_aboutDialog_bc_downloaded_staging.js]
[browser_aboutDialog_bc_downloaded_staged.js]
diff --git a/toolkit/mozapps/update/tests/browser/browser.legacy.ini b/toolkit/mozapps/update/tests/browser/browser.legacy.ini
index 0cf61d64f42e..e3f681f53236 100644
--- a/toolkit/mozapps/update/tests/browser/browser.legacy.ini
+++ b/toolkit/mozapps/update/tests/browser/browser.legacy.ini
@@ -14,6 +14,7 @@ prefs =
# About Dialog Application Update Tests
[browser_aboutDialog_bc_downloading.js]
[browser_aboutDialog_bc_downloading_staging.js]
+[browser_aboutDialog_bc_downloading_notify.js]
[browser_aboutDialog_bc_downloaded.js]
[browser_aboutDialog_bc_downloaded_staging.js]
[browser_aboutDialog_bc_downloaded_stagingFailure.js]
diff --git a/toolkit/mozapps/update/tests/browser/browser_aboutDialog_bc_downloading.js b/toolkit/mozapps/update/tests/browser/browser_aboutDialog_bc_downloading.js
index 776d637512ad..67ddd65205da 100644
--- a/toolkit/mozapps/update/tests/browser/browser_aboutDialog_bc_downloading.js
+++ b/toolkit/mozapps/update/tests/browser/browser_aboutDialog_bc_downloading.js
@@ -6,6 +6,10 @@
// Test for About Dialog background check for updates
// with the About Dialog opened during downloading.
add_task(async function aboutDialog_backgroundCheck_downloading() {
+ await SpecialPowers.pushPrefEnv({
+ set: [[PREF_APP_UPDATE_NOTIFYDURINGDOWNLOAD, false]],
+ });
+
let downloadInfo = [];
if (Services.prefs.getBoolPref(PREF_APP_UPDATE_BITS_ENABLED)) {
downloadInfo[0] = { patchType: "partial", bitsResult: "0" };
@@ -21,6 +25,17 @@ add_task(async function aboutDialog_backgroundCheck_downloading() {
waitForUpdateState: STATE_DOWNLOADING,
};
await runAboutDialogUpdateTest(params, [
+ async function aboutDialog_downloading() {
+ is(
+ PanelUI.notificationPanel.state,
+ "closed",
+ "The window's doorhanger is closed."
+ );
+ ok(
+ !PanelUI.menuButton.hasAttribute("badge-status"),
+ "The window does not have a badge."
+ );
+ },
{
panelId: "downloading",
checkActiveUpdate: { state: STATE_DOWNLOADING },
@@ -33,4 +48,6 @@ add_task(async function aboutDialog_backgroundCheck_downloading() {
continueFile: null,
},
]);
+
+ await SpecialPowers.popPrefEnv();
});
diff --git a/toolkit/mozapps/update/tests/browser/browser_aboutDialog_bc_downloading_notify.js b/toolkit/mozapps/update/tests/browser/browser_aboutDialog_bc_downloading_notify.js
new file mode 100644
index 000000000000..cf427b149a54
--- /dev/null
+++ b/toolkit/mozapps/update/tests/browser/browser_aboutDialog_bc_downloading_notify.js
@@ -0,0 +1,58 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+// Test for About Dialog background check for updates with the
+// "notify during download" feature turned on.
+add_task(async function aboutDialog_backgroundCheck_downloading_notify() {
+ await SpecialPowers.pushPrefEnv({
+ set: [[PREF_APP_UPDATE_NOTIFYDURINGDOWNLOAD, true]],
+ });
+
+ let downloadInfo = [];
+ if (Services.prefs.getBoolPref(PREF_APP_UPDATE_BITS_ENABLED)) {
+ downloadInfo[0] = { patchType: "partial", bitsResult: "0" };
+ } else {
+ downloadInfo[0] = { patchType: "partial", internalResult: "0" };
+ }
+
+ // Since the partial should be successful specify an invalid size for the
+ // complete update.
+ let params = {
+ queryString: "&useSlowDownloadMar=1&invalidCompleteSize=1",
+ backgroundUpdate: true,
+ waitForUpdateState: STATE_DOWNLOADING,
+ };
+ await runAboutDialogUpdateTest(params, [
+ async function aboutDialog_downloading_notification() {
+ is(
+ PanelUI.notificationPanel.state,
+ "closed",
+ "The window's doorhanger is closed."
+ );
+ ok(
+ PanelUI.menuButton.hasAttribute("badge-status"),
+ "The window has a badge."
+ );
+ is(
+ PanelUI.menuButton.getAttribute("badge-status"),
+ "update-downloading",
+ "The downloading badge is showing for the background window"
+ );
+ },
+ {
+ panelId: "downloading",
+ checkActiveUpdate: { state: STATE_DOWNLOADING },
+ continueFile: CONTINUE_DOWNLOAD,
+ downloadInfo,
+ },
+ {
+ panelId: "apply",
+ checkActiveUpdate: { state: STATE_PENDING },
+ continueFile: null,
+ },
+ ]);
+
+ await SpecialPowers.popPrefEnv();
+});
diff --git a/toolkit/mozapps/update/tests/data/shared.js b/toolkit/mozapps/update/tests/data/shared.js
index 51d9de99d7f2..5106aa5fc7a2 100644
--- a/toolkit/mozapps/update/tests/data/shared.js
+++ b/toolkit/mozapps/update/tests/data/shared.js
@@ -40,6 +40,7 @@ const PREF_APP_UPDATE_INTERVAL = "app.update.interval";
const PREF_APP_UPDATE_LASTUPDATETIME =
"app.update.lastUpdateTime.background-update-timer";
const PREF_APP_UPDATE_LOG = "app.update.log";
+const PREF_APP_UPDATE_NOTIFYDURINGDOWNLOAD = "app.update.notifyDuringDownload";
const PREF_APP_UPDATE_PROMPTWAITTIME = "app.update.promptWaitTime";
const PREF_APP_UPDATE_RETRYTIMEOUT = "app.update.socket.retryTimeout";
const PREF_APP_UPDATE_SERVICE_ENABLED = "app.update.service.enabled";
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 10760: Integrate TorButton to TorBrowser core
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit 17732a36a1e84cd9de57ab76a642d98c48471f7e
Author: Alex Catarineu <acat(a)torproject.org>
Date: Wed Feb 19 23:05:08 2020 +0100
Bug 10760: Integrate TorButton to TorBrowser core
Because of the non-restartless nature of Torbutton, it required
a two-stage installation process. On mobile, it was a problem,
because it was not loading when the user opened the browser for
the first time.
Moving it to tor-browser and making it a system extension allows it
to load when the user opens the browser for first time.
Additionally, this patch also fixes Bug 27611.
Bug 26321: New Circuit and New Identity menu items
Bug 14392: Make about:tor behave like other initial pages.
Bug 25013: Add torbutton as a tor-browser submodule
---
.gitmodules | 3 ++
browser/base/content/aboutDialog.xhtml | 38 +++++++++++------
browser/base/content/browser-doctype.inc | 6 +++
browser/base/content/browser-menubar.inc | 49 ++++++++++++++++------
browser/base/content/browser-sets.inc | 2 +
browser/base/content/browser.js | 1 +
browser/base/content/browser.xhtml | 9 ++++
.../controlcenter/content/identityPanel.inc.xhtml | 17 ++++++++
.../customizableui/content/panelUI.inc.xhtml | 17 +++++++-
browser/installer/package-manifest.in | 2 +
docshell/base/nsAboutRedirector.cpp | 6 ++-
docshell/build/components.conf | 1 +
mobile/android/installer/package-manifest.in | 4 ++
toolkit/moz.build | 1 +
.../mozapps/extensions/internal/XPIProvider.jsm | 9 ++++
toolkit/torproject/torbutton | 1 +
.../lib/environments/browser-window.js | 6 ++-
17 files changed, 142 insertions(+), 30 deletions(-)
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 000000000000..2f03bd8e22df
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "toolkit/torproject/torbutton"]
+ path = toolkit/torproject/torbutton
+ url = https://git.torproject.org/torbutton.git
diff --git a/browser/base/content/aboutDialog.xhtml b/browser/base/content/aboutDialog.xhtml
index 69cbf846bbef..5274cbc02831 100644
--- a/browser/base/content/aboutDialog.xhtml
+++ b/browser/base/content/aboutDialog.xhtml
@@ -7,11 +7,11 @@
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/content/aboutDialog.css" type="text/css"?>
<?xml-stylesheet href="chrome://branding/content/aboutDialog.css" type="text/css"?>
+<?xml-stylesheet href="chrome://torbutton/skin/aboutDialog.css" type="text/css"?>
+<!-- We need to include the localization DTDs until we migrate to Fluent -->
<!DOCTYPE window [
-#ifdef XP_MACOSX
#include browser-doctype.inc
-#endif
]>
<window xmlns:html="http://www.w3.org/1999/xhtml"
@@ -28,7 +28,7 @@
data-l10n-id="aboutDialog-title"
#endif
role="dialog"
- aria-describedby="version distribution distributionId communityDesc contributeDesc trademark"
+ aria-describedby="version distribution distributionId projectDesc helpDesc trademark trademarkTor"
>
#ifdef XP_MACOSX
#include macWindow.inc.xhtml
@@ -132,24 +132,36 @@
<label is="text-link" useoriginprincipal="true" href="about:credits" data-l10n-name="community-exp-creditsLink"></label>
</description>
</vbox>
- <description class="text-blurb" id="communityDesc" data-l10n-id="community-2">
- <label is="text-link" href="http://www.mozilla.org/" data-l10n-name="community-mozillaLink"></label>
- <label is="text-link" useoriginprincipal="true" href="about:credits" data-l10n-name="community-creditsLink"></label>
+ <!-- Keep communityDesc and contributeDesc to avoid JS errors trying to hide them -->
+ <description class="text-blurb" id="communityDesc" data-l10n-id="community-2" hidden="true"></description>
+ <description class="text-blurb" id="contributeDesc" data-l10n-id="helpus" hidden="true"></description>
+ <description class="text-blurb" id="projectDesc">
+ &project.start;
+ <label is="text-link" href="https://www.torproject.org/">
+ &project.tpoLink;
+ </label>&project.end;
</description>
- <description class="text-blurb" id="contributeDesc" data-l10n-id="helpus">
- <label is="text-link" href="https://donate.mozilla.org/?utm_source=firefox&utm_medium=referral&…" data-l10n-name="helpus-donateLink"></label>
- <label is="text-link" href="http://www.mozilla.org/contribute/" data-l10n-name="helpus-getInvolvedLink"></label>
+ <description class="text-blurb" id="helpDesc">
+ &help.start;
+ <label is="text-link" href="https://donate.torproject.org/">
+ &help.donateLink;
+ </label>
+ &help.or;
+ <label is="text-link" href="https://community.torproject.org/">
+ &help.getInvolvedLink;
+ </label>&help.end;
</description>
</vbox>
</vbox>
</hbox>
<vbox id="bottomBox">
- <hbox pack="center">
- <label is="text-link" class="bottom-link" useoriginprincipal="true" href="about:license" data-l10n-id="bottomLinks-license"></label>
- <label is="text-link" class="bottom-link" useoriginprincipal="true" href="about:rights" data-l10n-id="bottomLinks-rights"></label>
- <label is="text-link" class="bottom-link" href="https://www.mozilla.org/privacy/" data-l10n-id="bottomLinks-privacy"></label>
+ <hbox id="newBottom" pack="center" position="1">
+ <label is="text-link" class="bottom-link" href="https://support.torproject.org/">&bottomLinks.questions;</label>
+ <label is="text-link" class="bottom-link" href="https://community.torproject.org/relay/">&bottomLinks.grow;</label>
+ <label is="text-link" class="bottom-link" useoriginprincipal="true" href="about:license">&bottomLinks.license;</label>
</hbox>
<description id="trademark" data-l10n-id="trademarkInfo"></description>
+ <description id="trademarkTor">&tor.TrademarkStatement;</description>
</vbox>
</vbox>
diff --git a/browser/base/content/browser-doctype.inc b/browser/base/content/browser-doctype.inc
index 9aa278773158..48cf6cd3eda0 100644
--- a/browser/base/content/browser-doctype.inc
+++ b/browser/base/content/browser-doctype.inc
@@ -14,3 +14,9 @@
%syncBrandDTD;
<!ENTITY % brandingsDTD SYSTEM "chrome://browser/locale/brandings.dtd">
%brandingsDTD;
+<!ENTITY % torbuttonDTD SYSTEM "chrome://torbutton/locale/torbutton.dtd">
+%torbuttonDTD;
+<!ENTITY % aboutTorDTD SYSTEM "chrome://torbutton/locale/aboutTor.dtd">
+%aboutTorDTD;
+<!ENTITY % aboutDialogDTD SYSTEM "chrome://torbutton/locale/aboutDialog.dtd">
+%aboutDialogDTD;
diff --git a/browser/base/content/browser-menubar.inc b/browser/base/content/browser-menubar.inc
index 267ec91707ba..6f4aa9289c35 100644
--- a/browser/base/content/browser-menubar.inc
+++ b/browser/base/content/browser-menubar.inc
@@ -33,6 +33,18 @@
command="Tools:NonFissionWindow"
accesskey="s" label="New Non-Fission Window"/>
#endif
+ <menuseparator/>
+ <menuitem id="menu_newIdentity"
+ accesskey="&torbutton.context_menu.new_identity_key;"
+ key="torbutton-new-identity-key"
+ label="&torbutton.context_menu.new_identity;"
+ oncommand="torbutton_new_identity();"/>
+ <menuitem id="menu_newCircuit"
+ accesskey="&torbutton.context_menu.new_circuit_key;"
+ key="torbutton-new-circuit-key"
+ label="&torbutton.context_menu.new_circuit;"
+ oncommand="torbutton_new_circuit();"/>
+ <menuseparator/>
<menuitem id="menu_openLocation"
hidden="true"
command="Browser:OpenLocation"
@@ -455,17 +467,28 @@
#endif
data-l10n-id="menu-help">
<menupopup id="menu_HelpPopup" onpopupshowing="buildHelpMenu();">
- <menuitem id="menu_openHelp"
+ <!-- dummy elements to avoid 'getElementById' errors -->
+ <box id="feedbackPage"/>
+ <box id="helpSafeMode"/>
+ <box id="menu_HelpPopup_reportPhishingtoolmenu"/>
+ <box id="menu_HelpPopup_reportPhishingErrortoolmenu"/>
+ <!-- Add Tor Browser manual link -->
+ <menuitem id="torBrowserUserManual"
+ oncommand="gBrowser.selectedTab = gBrowser.addTab('https://tb-manual.torproject.org/' + Services.locale.requestedLocale, {triggeringPrincipal: Services.scriptSecurityManager.getSystemPrincipal()});"
+ label="&aboutTor.torbrowser_user_manual.label;"
+ accesskey="&aboutTor.torbrowser_user_manual.accesskey;"/>
+ <!-- Bug 18905: Hide unused help menu items -->
+ <!-- <menuitem id="menu_openHelp"
oncommand="openHelpLink('firefox-help')"
onclick="checkForMiddleClick(this, event);"
data-l10n-id="menu-help-product"
#ifdef XP_MACOSX
- key="key_openHelpMac"/>
+ key="key_openHelpMac"/> -->
#else
- />
+ /> -->
#endif
- <menuitem id="menu_openTour"
- oncommand="openTourPage();" data-l10n-id="menu-help-show-tour"/>
+ <!-- <menuitem id="menu_openTour"
+ oncommand="openTourPage();" data-l10n-id="menu-help-show-tour"/> -->
<menuitem id="help_importFromAnotherBrowser"
command="cmd_help_importFromAnotherBrowser" data-l10n-id="menu-help-import-from-another-browser"/>
<menuitem id="menu_keyboardShortcuts"
@@ -474,22 +497,22 @@
<menuitem id="troubleShooting"
oncommand="openTroubleshootingPage()"
onclick="checkForMiddleClick(this, event);" data-l10n-id="menu-help-troubleshooting-info"/>
- <menuitem id="feedbackPage"
+ <!-- <menuitem id="feedbackPage"
oncommand="openFeedbackPage()"
- onclick="checkForMiddleClick(this, event);" data-l10n-id="menu-help-feedback-page"/>
- <menuitem id="helpSafeMode"
- oncommand="safeModeRestart();" data-l10n-id="menu-help-safe-mode-without-addons"/>
- <menuitem id="menu_HelpPopup_reportPhishingtoolmenu"
+ onclick="checkForMiddleClick(this, event);" data-l10n-id="menu-help-feedback-page"/> -->
+ <!-- <menuitem id="helpSafeMode"
+ oncommand="safeModeRestart();" data-l10n-id="menu-help-safe-mode-without-addons"/> -->
+ <!-- <menuitem id="menu_HelpPopup_reportPhishingtoolmenu"
disabled="true"
oncommand="openUILink(gSafeBrowsing.getReportURL('Phish'), event, {triggeringPrincipal: Services.scriptSecurityManager.createNullPrincipal({})});"
onclick="checkForMiddleClick(this, event);"
- hidden="true" data-l10n-id="menu-help-report-deceptive-site"/>
- <menuitem id="menu_HelpPopup_reportPhishingErrortoolmenu"
+ hidden="true" data-l10n-id="menu-help-report-deceptive-site"/> -->
+ <!-- <menuitem id="menu_HelpPopup_reportPhishingErrortoolmenu"
disabled="true"
oncommand="ReportFalseDeceptiveSite();"
onclick="checkForMiddleClick(this, event);"
data-l10n-id="menu-help-not-deceptive"
- hidden="true"/>
+ hidden="true"/> -->
<menuseparator id="helpPolicySeparator"
hidden="true"/>
<menuitem id="helpPolicySupport"
diff --git a/browser/base/content/browser-sets.inc b/browser/base/content/browser-sets.inc
index aae94e8d4654..fa71bfb37a84 100644
--- a/browser/base/content/browser-sets.inc
+++ b/browser/base/content/browser-sets.inc
@@ -374,4 +374,6 @@
data-l10n-id="hide-other-apps-shortcut"
modifiers="accel,alt"/>
#endif
+ <key id="torbutton-new-identity-key" modifiers="accel shift" key="U" oncommand="torbutton_new_identity()"/>
+ <key id="torbutton-new-circuit-key" modifiers="accel shift" key="L" oncommand="torbutton_new_circuit()"/>
</keyset>
diff --git a/browser/base/content/browser.js b/browser/base/content/browser.js
index 5eb38ba78282..3c342dedd5d4 100644
--- a/browser/base/content/browser.js
+++ b/browser/base/content/browser.js
@@ -620,6 +620,7 @@ var gPageIcons = {
};
var gInitialPages = [
+ "about:tor",
"about:blank",
"about:newtab",
"about:home",
diff --git a/browser/base/content/browser.xhtml b/browser/base/content/browser.xhtml
index 62825bfd206a..229fc2a26dd2 100644
--- a/browser/base/content/browser.xhtml
+++ b/browser/base/content/browser.xhtml
@@ -29,6 +29,8 @@
<?xml-stylesheet href="chrome://browser/skin/searchbar.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/skin/places/tree-icons.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/skin/places/editBookmark.css" type="text/css"?>
+<?xml-stylesheet href="chrome://torbutton/skin/tor-circuit-display.css" type="text/css"?>
+<?xml-stylesheet href="chrome://torbutton/skin/torbutton.css" type="text/css"?>
# All DTD information is stored in a separate file so that it can be shared by
# hiddenWindowMac.xhtml.
@@ -105,11 +107,18 @@
Services.scriptloader.loadSubScript("chrome://browser/content/places/places-menupopup.js", this);
Services.scriptloader.loadSubScript("chrome://browser/content/search/autocomplete-popup.js", this);
Services.scriptloader.loadSubScript("chrome://browser/content/search/searchbar.js", this);
+ Services.scriptloader.loadSubScript("chrome://torbutton/content/tor-circuit-display.js", this);
+ Services.scriptloader.loadSubScript("chrome://torbutton/content/torbutton.js", this);
window.onload = gBrowserInit.onLoad.bind(gBrowserInit);
window.onunload = gBrowserInit.onUnload.bind(gBrowserInit);
window.onclose = WindowIsClosing;
+ //onLoad Handler
+ try {
+ window.addEventListener("load", torbutton_init, false);
+ } catch (e) {}
+
window.addEventListener("MozBeforeInitialXULLayout",
gBrowserInit.onBeforeInitialXULLayout.bind(gBrowserInit), { once: true });
diff --git a/browser/components/controlcenter/content/identityPanel.inc.xhtml b/browser/components/controlcenter/content/identityPanel.inc.xhtml
index 77c0b9b2413f..a8edda858e41 100644
--- a/browser/components/controlcenter/content/identityPanel.inc.xhtml
+++ b/browser/components/controlcenter/content/identityPanel.inc.xhtml
@@ -60,6 +60,23 @@
oncommand="gIdentityHandler.showSecuritySubView();"/>
</hbox>
+ <!-- Circuit display section -->
+ <hbox id="circuit-display-container" class="identity-popup-section">
+ <vbox id="circuit-display-content" flex="1" role="group"
+ aria-labelledby="circuit-display-headline">
+ <hbox id="circuit-display-header" align="center">
+ <label id="circuit-display-headline"
+ role="heading" aria-level="2">&torbutton.circuit_display.title;</label>
+ </hbox>
+ <html:ul id="circuit-display-nodes" dir="auto"/>
+ </vbox>
+ <vbox id="circuit-reload-content" flex="1">
+ <html:button id="circuit-reload-button"
+ onclick="torbutton_new_circuit()">&torbutton.circuit_display.new_circuit;</html:button>
+ <hbox id="circuit-guard-note-container"/>
+ </vbox>
+ </hbox>
+
<!-- Permissions Section -->
<hbox class="identity-popup-section"
when-connection="not-secure secure secure-ev secure-cert-user-overridden file extension cert-error-page">
diff --git a/browser/components/customizableui/content/panelUI.inc.xhtml b/browser/components/customizableui/content/panelUI.inc.xhtml
index 3a8b74b0a9f3..bdb8a7c227cf 100644
--- a/browser/components/customizableui/content/panelUI.inc.xhtml
+++ b/browser/components/customizableui/content/panelUI.inc.xhtml
@@ -265,7 +265,8 @@
class="subviewbutton subviewbutton-iconic"
label="&newPrivateWindow.label;"
key="key_privatebrowsing"
- command="Tools:PrivateBrowsing"/>
+ command="Tools:PrivateBrowsing"
+ hidden="true"/>
#ifdef NIGHTLY_BUILD
<toolbarbutton id="appMenu-fission-window-button"
class="subviewbutton subviewbutton-iconic"
@@ -281,7 +282,19 @@
<toolbarbutton id="appMenuRestoreLastSession"
label="&appMenuHistory.restoreSession.label;"
class="subviewbutton subviewbutton-iconic"
- command="Browser:RestoreLastSession"/>
+ command="Browser:RestoreLastSession"
+ hidden="true"/>
+ <toolbarseparator/>
+ <toolbarbutton id="appMenuNewIdentity"
+ class="subviewbutton subviewbutton-iconic"
+ key="torbutton-new-identity-key"
+ label="&torbutton.context_menu.new_identity;"
+ oncommand="torbutton_new_identity();"/>
+ <toolbarbutton id="appMenuNewCircuit"
+ class="subviewbutton subviewbutton-iconic"
+ key="torbutton-new-circuit-key"
+ label="&torbutton.context_menu.new_circuit;"
+ oncommand="torbutton_new_circuit();"/>
<toolbarseparator/>
<toolbaritem id="appMenu-zoom-controls" class="toolbaritem-combined-buttons" closemenu="none">
<!-- Use a spacer, because panel sizing code gets confused when using CSS methods. -->
diff --git a/browser/installer/package-manifest.in b/browser/installer/package-manifest.in
index 582a6e13d607..3722bf2ee22b 100644
--- a/browser/installer/package-manifest.in
+++ b/browser/installer/package-manifest.in
@@ -253,6 +253,8 @@
@RESPATH@/browser/chrome/torlauncher/*
@RESPATH@/browser/@PREF_DIR@/torlauncher-prefs.js
#endif
+@RESPATH@/chrome/torbutton.manifest
+@RESPATH@/chrome/torbutton/*
@RESPATH@/chrome/toolkit@JAREXT@
@RESPATH@/chrome/toolkit.manifest
@RESPATH@/chrome/recording.manifest
diff --git a/docshell/base/nsAboutRedirector.cpp b/docshell/base/nsAboutRedirector.cpp
index 730fd6aea654..051f239c76ac 100644
--- a/docshell/base/nsAboutRedirector.cpp
+++ b/docshell/base/nsAboutRedirector.cpp
@@ -146,7 +146,11 @@ static const RedirEntry kRedirMap[] = {
{"crashcontent", "about:blank",
nsIAboutModule::HIDE_FROM_ABOUTABOUT |
nsIAboutModule::URI_CAN_LOAD_IN_CHILD |
- nsIAboutModule::URI_MUST_LOAD_IN_CHILD}};
+ nsIAboutModule::URI_MUST_LOAD_IN_CHILD},
+ {"tor", "chrome://torbutton/content/aboutTor/aboutTor.xhtml",
+ nsIAboutModule::URI_MUST_LOAD_IN_CHILD |
+ nsIAboutModule::URI_SAFE_FOR_UNTRUSTED_CONTENT |
+ nsIAboutModule::ALLOW_SCRIPT}};
static const int kRedirTotal = mozilla::ArrayLength(kRedirMap);
NS_IMETHODIMP
diff --git a/docshell/build/components.conf b/docshell/build/components.conf
index 6d7253d01631..2d56ea33389d 100644
--- a/docshell/build/components.conf
+++ b/docshell/build/components.conf
@@ -27,6 +27,7 @@ about_pages = [
'srcdoc',
'support',
'telemetry',
+ 'tor',
'url-classifier',
'webrtc',
]
diff --git a/mobile/android/installer/package-manifest.in b/mobile/android/installer/package-manifest.in
index 17d6471c4742..055eb4717447 100644
--- a/mobile/android/installer/package-manifest.in
+++ b/mobile/android/installer/package-manifest.in
@@ -137,6 +137,10 @@
@BINPATH@/chrome/devtools@JAREXT@
@BINPATH@/chrome/devtools.manifest
+; Torbutton
+@BINPATH@/chrome/torbutton@JAREXT@
+@BINPATH@/chrome/torbutton.manifest
+
; [Default Preferences]
; All the pref files must be part of base to prevent migration bugs
#ifdef MOZ_GECKOVIEW_JAR
diff --git a/toolkit/moz.build b/toolkit/moz.build
index b6f792da7124..3451334de15c 100644
--- a/toolkit/moz.build
+++ b/toolkit/moz.build
@@ -23,6 +23,7 @@ DIRS += [
'pluginproblem',
'profile',
'themes',
+ 'torproject/torbutton',
]
if CONFIG['OS_ARCH'] == 'WINNT' and CONFIG['MOZ_DEFAULT_BROWSER_AGENT']:
diff --git a/toolkit/mozapps/extensions/internal/XPIProvider.jsm b/toolkit/mozapps/extensions/internal/XPIProvider.jsm
index bcdf6f40d5ed..bf31932b59f1 100644
--- a/toolkit/mozapps/extensions/internal/XPIProvider.jsm
+++ b/toolkit/mozapps/extensions/internal/XPIProvider.jsm
@@ -1462,6 +1462,15 @@ var XPIStates = {
for (let [id, file] of loc.readAddons()) {
knownIds.delete(id);
+ // Uninstall torbutton if it is installed in the user profile
+ if (id === "torbutton(a)torproject.org" &&
+ loc.name === KEY_APP_PROFILE) {
+ logger.debug("Uninstalling torbutton from user profile.");
+ loc.installer.uninstallAddon(id);
+ changed = true;
+ continue;
+ }
+
// Since it is now part of the browser, uninstall the Tor Launcher
// extension. This will remove the Tor Launcher .xpi from user
// profiles on macOS.
diff --git a/toolkit/torproject/torbutton b/toolkit/torproject/torbutton
new file mode 160000
index 000000000000..1138ead65a4d
--- /dev/null
+++ b/toolkit/torproject/torbutton
@@ -0,0 +1 @@
+Subproject commit 1138ead65a4d3083c9d9d9d819a5c23dd3264603
diff --git a/tools/lint/eslint/eslint-plugin-mozilla/lib/environments/browser-window.js b/tools/lint/eslint/eslint-plugin-mozilla/lib/environments/browser-window.js
index 76e03f2d49bb..2ff107b553b2 100644
--- a/tools/lint/eslint/eslint-plugin-mozilla/lib/environments/browser-window.js
+++ b/tools/lint/eslint/eslint-plugin-mozilla/lib/environments/browser-window.js
@@ -75,7 +75,11 @@ function getGlobalScriptIncludes(scriptPath) {
"browser/components/search/content/"
)
.replace("chrome://browser/content/", "browser/base/content/")
- .replace("chrome://global/content/", "toolkit/content/");
+ .replace("chrome://global/content/", "toolkit/content/")
+ .replace(
+ "chrome://torbutton/content/",
+ "toolkit/torproject/torbutton/chrome/content/"
+ );
for (let mapping of Object.getOwnPropertyNames(MAPPINGS)) {
if (sourceFile.includes(mapping)) {
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 3547: Block all plugins.
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit d910bcdfa4b5f94e9d07ff5cf16ad60b43a2da89
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Tue Dec 4 16:03:13 2012 -0800
Bug 3547: Block all plugins.
We cannot use the @mozilla.org/extensions/blocklist;1 service, because we
actually want to stop plugins from ever entering the browser's process space
and/or executing code (for example, AV plugins that collect statistics/analyse
urls, magical toolbars that phone home or "help" the user, skype buttons that
ruin our day, and censorship filters). Hence we rolled our own.
See https://trac.torproject.org/projects/tor/ticket/3547#comment:6 for musings
on a better way. Until then, it is delta-darwinism for us.
---
dom/plugins/base/PluginFinder.cpp | 3 +++
1 file changed, 3 insertions(+)
diff --git a/dom/plugins/base/PluginFinder.cpp b/dom/plugins/base/PluginFinder.cpp
index 4e1c1fd53698..cace7d4ef6ba 100644
--- a/dom/plugins/base/PluginFinder.cpp
+++ b/dom/plugins/base/PluginFinder.cpp
@@ -480,6 +480,9 @@ nsresult PluginFinder::ScanPluginsDirectory(nsIFile* pluginsDir,
*aPluginsChanged = false;
+ // Block all plugins
+ return NS_OK;
+
#ifdef PLUGIN_LOGGING
nsAutoCString dirPath;
pluginsDir->GetNativePath(dirPath);
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 16439: Remove screencasting code
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit 454c32562729a0f7f7eac9d1a62015d0b8f815a0
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Wed Jun 24 11:01:11 2015 -0400
Bug 16439: Remove screencasting code
We avoid including the screencasting code on mobile (it got ripped out
for desktop in bug 1393582) by simply excluding the related JS modules
from Tor Browser.
---
toolkit/modules/moz.build | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/toolkit/modules/moz.build b/toolkit/modules/moz.build
index f000f35c126f..e1f1eb5759c5 100644
--- a/toolkit/modules/moz.build
+++ b/toolkit/modules/moz.build
@@ -260,10 +260,11 @@ if 'Android' != CONFIG['OS_TARGET']:
]
else:
DEFINES['ANDROID'] = True
- EXTRA_JS_MODULES += [
- 'secondscreen/RokuApp.jsm',
- 'secondscreen/SimpleServiceDiscovery.jsm',
- ]
+ if not CONFIG['TOR_BROWSER_VERSION']:
+ EXTRA_JS_MODULES += [
+ 'secondscreen/RokuApp.jsm',
+ 'secondscreen/SimpleServiceDiscovery.jsm',
+ ]
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 28044: Integrate Tor Launcher into tor-browser
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit 69c02b7adccf0f7b45061cf2555a358ec257a516
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Tue Feb 26 10:07:17 2019 -0500
Bug 28044: Integrate Tor Launcher into tor-browser
Build and package Tor Launcher as part of the browser (similar to
how pdfjs is handled).
If a Tor Launcher extension is present in the user's profile, it is
removed.
---
browser/extensions/moz.build | 5 +++++
browser/installer/package-manifest.in | 5 +++++
toolkit/mozapps/extensions/internal/XPIProvider.jsm | 10 ++++++++++
3 files changed, 20 insertions(+)
diff --git a/browser/extensions/moz.build b/browser/extensions/moz.build
index 4c9fa789d12a..fd2e65d01f02 100644
--- a/browser/extensions/moz.build
+++ b/browser/extensions/moz.build
@@ -12,3 +12,8 @@ DIRS += [
'webcompat',
'report-site-issue'
]
+
+if not CONFIG['TOR_BROWSER_DISABLE_TOR_LAUNCHER']:
+ DIRS += [
+ 'tor-launcher',
+ ]
diff --git a/browser/installer/package-manifest.in b/browser/installer/package-manifest.in
index 7deaf1b51f9a..582a6e13d607 100644
--- a/browser/installer/package-manifest.in
+++ b/browser/installer/package-manifest.in
@@ -248,6 +248,11 @@
@RESPATH@/browser/chrome/browser.manifest
@RESPATH@/browser/chrome/pdfjs.manifest
@RESPATH@/browser/chrome/pdfjs/*
+#ifndef TOR_BROWSER_DISABLE_TOR_LAUNCHER
+@RESPATH@/browser/chrome/torlauncher.manifest
+@RESPATH@/browser/chrome/torlauncher/*
+@RESPATH@/browser/@PREF_DIR@/torlauncher-prefs.js
+#endif
@RESPATH@/chrome/toolkit@JAREXT@
@RESPATH@/chrome/toolkit.manifest
@RESPATH@/chrome/recording.manifest
diff --git a/toolkit/mozapps/extensions/internal/XPIProvider.jsm b/toolkit/mozapps/extensions/internal/XPIProvider.jsm
index ba67e5f6bee8..bcdf6f40d5ed 100644
--- a/toolkit/mozapps/extensions/internal/XPIProvider.jsm
+++ b/toolkit/mozapps/extensions/internal/XPIProvider.jsm
@@ -1462,6 +1462,16 @@ var XPIStates = {
for (let [id, file] of loc.readAddons()) {
knownIds.delete(id);
+ // Since it is now part of the browser, uninstall the Tor Launcher
+ // extension. This will remove the Tor Launcher .xpi from user
+ // profiles on macOS.
+ if (id === "tor-launcher(a)torproject.org") {
+ logger.debug("Uninstalling the Tor Launcher extension.");
+ loc.installer.uninstallAddon(id);
+ changed = true;
+ continue;
+ }
+
let xpiState = loc.get(id);
if (!xpiState) {
// If the location is not supported for sideloading, skip new
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 12974: Disable NTLM and Negotiate HTTP Auth
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit 1127c444ef62ab810aafedceac8e540a25f56c39
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Wed Aug 27 15:19:10 2014 -0700
Bug 12974: Disable NTLM and Negotiate HTTP Auth
This is technically an embargoed Mozilla bug, so I probably shouldn't provide
too many details.
Suffice to say that NTLM and Negotiate auth are bad for Tor users, and I doubt
very many (or any of them) actually need it.
The Mozilla bug is https://bugzilla.mozilla.org/show_bug.cgi?id=1046421
---
extensions/auth/nsHttpNegotiateAuth.cpp | 4 ++++
netwerk/protocol/http/nsHttpNTLMAuth.cpp | 3 +++
2 files changed, 7 insertions(+)
diff --git a/extensions/auth/nsHttpNegotiateAuth.cpp b/extensions/auth/nsHttpNegotiateAuth.cpp
index 99720475b9dd..1c08fcf3da7e 100644
--- a/extensions/auth/nsHttpNegotiateAuth.cpp
+++ b/extensions/auth/nsHttpNegotiateAuth.cpp
@@ -152,6 +152,10 @@ nsHttpNegotiateAuth::ChallengeReceived(nsIHttpAuthenticableChannel* authChannel,
nsIAuthModule* rawModule = (nsIAuthModule*)*continuationState;
*identityInvalid = false;
+
+ /* Always fail Negotiate auth for Tor Browser. We don't need it. */
+ return NS_ERROR_ABORT;
+
if (rawModule) {
return NS_OK;
}
diff --git a/netwerk/protocol/http/nsHttpNTLMAuth.cpp b/netwerk/protocol/http/nsHttpNTLMAuth.cpp
index 0a30de051014..891aaadfd758 100644
--- a/netwerk/protocol/http/nsHttpNTLMAuth.cpp
+++ b/netwerk/protocol/http/nsHttpNTLMAuth.cpp
@@ -168,6 +168,9 @@ nsHttpNTLMAuth::ChallengeReceived(nsIHttpAuthenticableChannel* channel,
*identityInvalid = false;
+ /* Always fail Negotiate auth for Tor Browser. We don't need it. */
+ return NS_ERROR_ABORT;
+
// Start a new auth sequence if the challenge is exactly "NTLM".
// If native NTLM auth apis are available and enabled through prefs,
// try to use them.
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 12620: TorBrowser regression tests
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit 925e1820a86233229e33cd21261c1722a7b87fd1
Author: Arthur Edelstein <arthuredelstein(a)gmail.com>
Date: Wed Aug 27 16:25:00 2014 -0700
Bug 12620: TorBrowser regression tests
Regression tests for Bug #2950: Make Permissions Manager memory-only
Regression tests for TB4: Tor Browser's Firefox preference overrides.
Note: many more functional tests could be made here
Regression tests for #2874: Block Components.interfaces from content
Bug 18923: Add a script to run all Tor Browser specific tests
Regression tests for Bug #16441: Suppress "Reset Tor Browser" prompt.
---
run-tbb-tests | 60 +++++++++++++++
tbb-tests/browser.ini | 5 ++
tbb-tests/browser_tor_TB4.js | 162 +++++++++++++++++++++++++++++++++++++++
tbb-tests/browser_tor_bug2950.js | 74 ++++++++++++++++++
tbb-tests/mochitest.ini | 3 +
tbb-tests/moz.build | 10 +++
tbb-tests/test_tor_bug2874.html | 25 ++++++
toolkit/toolkit.mozbuild | 3 +-
8 files changed, 341 insertions(+), 1 deletion(-)
diff --git a/run-tbb-tests b/run-tbb-tests
new file mode 100755
index 000000000000..5e266f9ba4cd
--- /dev/null
+++ b/run-tbb-tests
@@ -0,0 +1,60 @@
+#!/bin/bash
+
+# This script runs all the Mochitest tests that have been added or
+# modified since the last ffxbld commit.
+#
+# It does not currently run XPCShell tests. We should change this if we
+# start using this type or other types of tests.
+#
+# The logs of the tests are stored in the tbb-tests.log file.
+# Ignored tests are listed in the tbb-tests-ignore.txt file.
+#
+# https://trac.torproject.org/projects/tor/ticket/18923
+
+IFS=$'\n'
+
+if [ -n "$USE_TESTS_LIST" ] && [ -f tbb-tests-list.txt ]
+then
+ echo "Using tests list from file tbb-tests-list.txt"
+ tests=($(cat tbb-tests-list.txt))
+else
+ ffxbld_commit=$(git log -500 --format='%an %H' | grep '^ffxbld ' \
+ | head -1 | cut -d ' ' -f 2)
+
+ tests=($(git diff --name-status "$ffxbld_commit" HEAD | \
+ grep -e '^[AM].*/test_[^/]\+\.\(html\|xul\)$' \
+ -e '^[AM].*/browser_[^/]\+\.js$' \
+ | sed 's/^[AM]\s\+//'))
+fi
+
+echo 'The following tests will be run:'
+for i in "${!tests[@]}"
+do
+ if [ -z "$USE_TESTS_LIST" ] \
+ && grep -q "^${tests[$i]}$" tbb-tests-ignore.txt
+ then
+ unset "tests[$i]"
+ continue
+ fi
+ echo "- ${tests[$i]}"
+done
+
+if [ -n "$WRITE_TESTS_LIST" ]
+then
+ rm -f tbb-tests-list.txt
+ for i in "${!tests[@]}"
+ do
+ echo "${tests[$i]}" >> tbb-tests-list.txt
+ done
+ exit 0
+fi
+
+rm -f tbb-tests.log
+echo $'\n''Starting tests'
+./mach mochitest --log-tbpl tbb-tests.log --setpref security.nocertdb=false \
+ "${tests[@]}"
+
+echo "*************************"
+echo "*************************"
+echo "Summary of failed tests:"
+grep --color=never TEST-UNEXPECTED-FAIL tbb-tests.log
diff --git a/tbb-tests/browser.ini b/tbb-tests/browser.ini
new file mode 100644
index 000000000000..f481660f1417
--- /dev/null
+++ b/tbb-tests/browser.ini
@@ -0,0 +1,5 @@
+[DEFAULT]
+
+[browser_tor_bug2950.js]
+[browser_tor_omnibox.js]
+[browser_tor_TB4.js]
diff --git a/tbb-tests/browser_tor_TB4.js b/tbb-tests/browser_tor_TB4.js
new file mode 100644
index 000000000000..af688bee0226
--- /dev/null
+++ b/tbb-tests/browser_tor_TB4.js
@@ -0,0 +1,162 @@
+// # Test for TB4: Tor Browser's Firefox preference overrides
+// Simple regression tests to check the value of each pref and
+// decides if it is set as expected.
+
+// TODO: Write unit tests to check that each pref setting here
+// causes the browser to have the desired behavior (a big task).
+
+function test() {
+
+let expectedPrefs = [
+ // Disable browser auto updaters and associated homepage notifications
+ ["app.update.auto", false],
+ ["app.update.enabled", false],
+ ["browser.search.update", false],
+ ["browser.rights.3.shown", true],
+ ["browser.startup.homepage_override.mstone", "ignore"],
+ ["startup.homepage_welcome_url", ""],
+ ["startup.homepage_override_url", ""],
+
+ // Disable the "Refresh" prompt that is displayed for stale profiles.
+ ["browser.disableResetPrompt", true],
+
+ // Disk activity: Disable Browsing History Storage
+ ["browser.privatebrowsing.autostart", true],
+ ["browser.cache.disk.enable", false],
+ ["browser.cache.offline.enable", false],
+ ["dom.indexedDB.enabled", false],
+ ["permissions.memory_only", true],
+ ["network.cookie.lifetimePolicy", 2],
+ ["security.nocertdb", true],
+
+ // Disk activity: TBB Directory Isolation
+ ["browser.download.useDownloadDir", false],
+ ["browser.shell.checkDefaultBrowser", false],
+ ["browser.download.manager.addToRecentDocs", false],
+
+ // Misc privacy: Disk
+ ["signon.rememberSignons", false],
+ ["browser.formfill.enable", false],
+ ["signon.autofillForms", false],
+ ["browser.sessionstore.privacy_level", 2],
+ ["media.cache_size", 0],
+
+ // Misc privacy: Remote
+ ["browser.send_pings", false],
+ ["geo.enabled", false],
+ ["geo.wifi.uri", ""],
+ ["browser.search.suggest.enabled", false],
+ ["browser.safebrowsing.malware.enabled", false],
+ ["extensions.ui.lastCategory", "addons://list/extension"],
+ ["datareporting.healthreport.uploadEnabled", false],
+ ["datareporting.policy.dataSubmissionEnabled", false],
+ ["security.mixed_content.block_active_content", false], // Disable until https://bugzilla.mozilla.org/show_bug.cgi?id=878890 is patched
+ ["browser.syncPromoViewsLeftMap", "{\"addons\":0, \"passwords\":0, \"bookmarks\":0}"], // Don't promote sync
+ ["services.sync.engine.prefs", false], // Never sync prefs, addons, or tabs with other browsers
+ ["services.sync.engine.addons", false],
+ ["services.sync.engine.tabs", false],
+ ["extensions.getAddons.cache.enabled", false], // https://blog.mozilla.org/addons/how-to-opt-out-of-add-on-metadata-updates/
+
+ // Fingerprinting
+ ["webgl.min_capability_mode", true],
+ ["webgl.disable-extensions", true],
+ ["dom.battery.enabled", false], // fingerprinting due to differing OS implementations
+ ["browser.display.max_font_attempts",10],
+ ["browser.display.max_font_count",10],
+ ["gfx.downloadable_fonts.fallback_delay", -1],
+ ["browser.startup.homepage_override.buildID", "20100101"],
+
+ // Third party stuff
+ ["network.cookie.cookieBehavior", 1],
+ ["security.enable_tls_session_tickets", false],
+ ["network.http.spdy.enabled", false], // Stores state and may have keepalive issues (both fixable)
+ ["network.http.spdy.enabled.v2", false], // Seems redundant, but just in case
+ ["network.http.spdy.enabled.v3", false], // Seems redundant, but just in case
+
+ // Proxy and proxy security
+ ["network.proxy.socks", "127.0.0.1"],
+ ["network.proxy.socks_port", 9150],
+ ["network.proxy.socks_remote_dns", true],
+ ["network.proxy.no_proxies_on", ""], // For fingerprinting and local service vulns (#10419)
+ ["network.proxy.type", 1],
+ ["network.security.ports.banned", "9050,9051,9150,9151"],
+ ["network.dns.disablePrefetch", true],
+ ["network.protocol-handler.external-default", false],
+ ["network.protocol-handler.external.mailto", false],
+ ["network.protocol-handler.external.news", false],
+ ["network.protocol-handler.external.nntp", false],
+ ["network.protocol-handler.external.snews", false],
+ ["network.protocol-handler.warn-external.mailto", true],
+ ["network.protocol-handler.warn-external.news", true],
+ ["network.protocol-handler.warn-external.nntp", true],
+ ["network.protocol-handler.warn-external.snews", true],
+
+ // Network and performance
+ ["network.http.pipelining", true],
+ ["network.http.pipelining.aggressive", true],
+ ["network.http.pipelining.maxrequests", 12],
+ ["network.http.pipelining.ssl", true],
+ ["network.http.proxy.pipelining", true],
+ ["security.ssl.enable_false_start", true],
+ ["network.http.keep-alive.timeout", 20],
+ ["network.http.connection-retry-timeout", 0],
+ ["network.http.max-persistent-connections-per-proxy", 256],
+ ["network.http.pipelining.reschedule-timeout", 15000],
+ ["network.http.pipelining.read-timeout", 60000],
+ // Hacked pref: Now means "Attempt to pipeline at least this many requests together"
+ ["network.http.pipelining.max-optimistic-requests", 3],
+ ["security.disable_session_identifiers", true],
+
+ // Extension support
+ ["extensions.autoDisableScopes", 0],
+ ["extensions.bootstrappedAddons", "{}"],
+ ["extensions.checkCompatibility.4.*", false],
+ ["extensions.databaseSchema", 3],
+ ["extensions.enabledAddons", "https-everywhere%40eff.org:3.1.4,%7B73a6fe31-595d-460b-a920-fcc0f8843232%7D:2.6.6.1,torbutton%40torproject.org:1.5.2,ubufox%40ubuntu.com:2.6,%7B972ce4c6-7e08-4474-a285-3208198ce6fd%7D:17.0.5"],
+ ["extensions.enabledItems", "langpack-en-US@firefox.mozilla.org:,{73a6fe31-595d-460b-a920-fcc0f8843232}:1.9.9.57,{e0204bd5-9d31-402b-a99d-a6aa8ffebdca}:1.2.4,{972ce4c6-7e08-4474-a285-3208198ce6fd}:3.5.8"],
+ ["extensions.enabledScopes", 1],
+ ["extensions.pendingOperations", false],
+ ["xpinstall.whitelist.add", ""],
+ ["xpinstall.whitelist.add.36", ""],
+
+ // Omnibox settings
+ ["keyword.URL", "https://startpage.com/do/search?q="],
+
+ // Hacks/workarounds: Direct2D seems to crash w/ lots of video cards w/ MinGW?
+ // Nvida cards also experience crashes without the second pref set to disabled
+ ["gfx.direct2d.disabled", true],
+ ["layers.acceleration.disabled", true],
+
+ // Security enhancements
+ // https://trac.torproject.org/projects/tor/ticket/9387#comment:17
+ ["javascript.options.ion.content", false],
+ ["javascript.options.baselinejit.content", false],
+ ["javascript.options.asmjs", false],
+ ["javascript.options.typeinference", false],
+
+ // Enable TLS 1.1 and 1.2:
+ // https://trac.torproject.org/projects/tor/ticket/11253
+ ["security.tls.version.max", 3],
+
+ // Version placeholder
+ ["torbrowser.version", "UNKNOWN"],
+
+ ];
+
+let getPref = function (prefName) {
+ let type = gPrefService.getPrefType(prefName);
+ if (type === gPrefService.PREF_INT) return gPrefService.getIntPref(prefName);
+ if (type === gPrefService.PREF_BOOL) return gPrefService.getBoolPref(prefName);
+ if (type === gPrefService.PREF_STRING) return gPrefService.getCharPref(prefName);
+ // Something went wrong.
+ throw new Error("Can't access pref " + prefName);
+};
+
+let testPref = function([key, expectedValue]) {
+ let foundValue = getPref(key);
+ is(foundValue, expectedValue, "Pref '" + key + "' should be '" + expectedValue +"'.");
+};
+
+expectedPrefs.map(testPref);
+
+} // end function test()
diff --git a/tbb-tests/browser_tor_bug2950.js b/tbb-tests/browser_tor_bug2950.js
new file mode 100644
index 000000000000..010cc6356202
--- /dev/null
+++ b/tbb-tests/browser_tor_bug2950.js
@@ -0,0 +1,74 @@
+// # Regression tests for tor Bug #2950, Make Permissions Manager memory-only
+// Ensures that permissions.sqlite file in profile directory is not written to,
+// even when we write a value to Firefox's permissions database.
+
+// The requisite test() function.
+function test() {
+
+// Needed because of asynchronous part later in the test.
+waitForExplicitFinish();
+
+// Shortcut
+let Ci = Components.interfaces;
+
+// ## utility functions
+
+// __uri(spec)__.
+// Creates an nsIURI instance from a spec
+// (string address such as "http://torproject.org").
+let uri = spec => Services.io.newURI(spec, null, null);
+
+// __setPermission(spec, key, value)__.
+// Sets the site permission of type key to value, for the site located at address spec.
+let setPermission = (spec, key, value) => SitePermissions.set(uri(spec), key, value);
+
+// __getPermission(spec, key)__.
+// Reads the site permission value for permission type key, for the site
+// located at address spec.
+let getPermission = (spec, key) => SitePermissions.get(uri(spec), key);
+
+// __profileDirPath__.
+// The Firefox Profile directory. Expected location of various persistent files.
+let profileDirPath = Services.dirsvc.get("ProfD", Components.interfaces.nsIFile).path;
+
+// __fileInProfile(fileName)__.
+// Returns an nsIFile instance corresponding to a file in the Profile directory.
+let fileInProfile = fileName => FileUtils.File(profileDirPath + "/" + fileName);
+
+// ## Now let's run the test.
+
+let SITE = "http://torproject.org",
+ KEY = "popup";
+
+let permissionsFile = fileInProfile("permissions.sqlite"),
+ lastModifiedTime = null,
+ newModifiedTime = null;
+if (permissionsFile.exists()) {
+ lastModifiedTime = permissionsFile.lastModifiedTime;
+}
+// Read the original value of the permission.
+let originalValue = getPermission(SITE, KEY);
+
+// We need to delay by at least 1000 ms, because that's the granularity
+// of file time stamps, it seems.
+window.setTimeout(
+ function () {
+ // Set the permission to a new value.
+ setPermission(SITE, KEY, (originalValue === 0) ? 1 : 0);
+ // Now read back the permission value again.
+ let newReadValue = getPermission(SITE, KEY);
+ // Compare to confirm that the permission
+ // value was successfully changed.
+ isnot(newReadValue, originalValue, "Set a value in permissions db (perhaps in memory).");;
+ // If file existed or now exists, get the current time stamp.
+ if (permissionsFile.exists()) {
+ newModifiedTime = permissionsFile.lastModifiedTime;
+ }
+ // If file was created or modified since we began this test,
+ // then permissions db is not memory only. Complain!
+ is(lastModifiedTime, newModifiedTime, "Don't write to permissions.sqlite file on disk.");
+ // We are done with the test.
+ finish();
+ }, 1100);
+
+} // test()
diff --git a/tbb-tests/mochitest.ini b/tbb-tests/mochitest.ini
new file mode 100644
index 000000000000..cc5172733bbe
--- /dev/null
+++ b/tbb-tests/mochitest.ini
@@ -0,0 +1,3 @@
+[DEFAULT]
+
+[test_tor_bug2874.html]
diff --git a/tbb-tests/moz.build b/tbb-tests/moz.build
new file mode 100644
index 000000000000..de8a41a67a5c
--- /dev/null
+++ b/tbb-tests/moz.build
@@ -0,0 +1,10 @@
+# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
+# vim: set filetype=python:
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+MOCHITEST_MANIFESTS += ['mochitest.ini']
+
+BROWSER_CHROME_MANIFESTS += [ 'browser.ini' ]
+
diff --git a/tbb-tests/test_tor_bug2874.html b/tbb-tests/test_tor_bug2874.html
new file mode 100644
index 000000000000..c0a956e9f687
--- /dev/null
+++ b/tbb-tests/test_tor_bug2874.html
@@ -0,0 +1,25 @@
+<!DOCTYPE HTML>
+<html>
+<!--
+Tor bug
+https://trac.torproject.org/projects/tor/ticket/2874
+-->
+<head>
+ <meta charset="utf-8">
+ <title>Test for Tor Bug 2874</title>
+ <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
+ <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
+ <script type="application/javascript">
+ is(typeof Components, 'undefined', "The global window object should not expose a Components property to untrusted content.");
+ </script>
+</head>
+<body>
+<a target="_blank" href="https://trac.torproject.org/projects/tor/ticket/2874">Tor Bug 2874</a>
+<p id="display"></p>
+<div id="content" style="display: none">
+
+</div>
+<pre id="test">
+</pre>
+</body>
+</html>
diff --git a/toolkit/toolkit.mozbuild b/toolkit/toolkit.mozbuild
index d092b8b22346..6e35a4602300 100644
--- a/toolkit/toolkit.mozbuild
+++ b/toolkit/toolkit.mozbuild
@@ -96,7 +96,8 @@ if CONFIG['MOZ_WEBRTC'] and CONFIG['COMPILE_ENVIRONMENT']:
]
if CONFIG['ENABLE_TESTS']:
- DIRS += ['/testing/specialpowers']
+ DIRS += ['/testing/specialpowers',
+ '/tbb-tests']
DIRS += [
'/testing/gtest',
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 13028: Prevent potential proxy bypass cases.
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit a9785a122c93c88dc7212d88950b50ac4e3d8877
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Mon Sep 29 14:30:19 2014 -0700
Bug 13028: Prevent potential proxy bypass cases.
It looks like these cases should only be invoked in the NSS command line
tools, and not the browser, but I decided to patch them anyway because there
literally is a maze of network function pointers being passed around, and it's
very hard to tell if some random code might not pass in the proper proxied
versions of the networking code here by accident.
---
security/nss/lib/certhigh/ocsp.c | 8 ++++++++
.../lib/libpkix/pkix_pl_nss/module/pkix_pl_socket.c | 21 +++++++++++++++++++++
2 files changed, 29 insertions(+)
diff --git a/security/nss/lib/certhigh/ocsp.c b/security/nss/lib/certhigh/ocsp.c
index cea8456606bf..86fa971cfbef 100644
--- a/security/nss/lib/certhigh/ocsp.c
+++ b/security/nss/lib/certhigh/ocsp.c
@@ -2932,6 +2932,14 @@ ocsp_ConnectToHost(const char *host, PRUint16 port)
PRNetAddr addr;
char *netdbbuf = NULL;
+ // XXX: Do we need a unittest ifdef here? We don't want to break the tests, but
+ // we want to ensure nothing can ever hit this code in production.
+#if 1
+ printf("Tor Browser BUG: Attempted OSCP direct connect to %s, port %u\n", host,
+ port);
+ goto loser;
+#endif
+
sock = PR_NewTCPSocket();
if (sock == NULL)
goto loser;
diff --git a/security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_socket.c b/security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_socket.c
index e8698376b5be..85791d84a932 100644
--- a/security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_socket.c
+++ b/security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_socket.c
@@ -1334,6 +1334,13 @@ pkix_pl_Socket_Create(
plContext),
PKIX_COULDNOTCREATESOCKETOBJECT);
+ // XXX: Do we need a unittest ifdef here? We don't want to break the tests, but
+ // we want to ensure nothing can ever hit this code in production.
+#if 1
+ printf("Tor Browser BUG: Attempted pkix direct socket connect\n");
+ PKIX_ERROR(PKIX_PRNEWTCPSOCKETFAILED);
+#endif
+
socket->isServer = isServer;
socket->timeout = timeout;
socket->clientSock = NULL;
@@ -1433,6 +1440,13 @@ pkix_pl_Socket_CreateByName(
localCopyName = PL_strdup(serverName);
+ // XXX: Do we need a unittest ifdef here? We don't want to break the tests, but
+ // we want to ensure nothing can ever hit this code in production.
+#if 1
+ printf("Tor Browser BUG: Attempted pkix direct connect to %s\n", serverName);
+ PKIX_ERROR(PKIX_PRNEWTCPSOCKETFAILED);
+#endif
+
sepPtr = strchr(localCopyName, ':');
/* First strip off the portnum, if present, from the end of the name */
if (sepPtr) {
@@ -1582,6 +1596,13 @@ pkix_pl_Socket_CreateByHostAndPort(
PKIX_ENTER(SOCKET, "pkix_pl_Socket_CreateByHostAndPort");
PKIX_NULLCHECK_THREE(hostname, pStatus, pSocket);
+ // XXX: Do we need a unittest ifdef here? We don't want to break the tests, but
+ // we want to ensure nothing can ever hit this code in production.
+#if 1
+ printf("Tor Browser BUG: Attempted pkix direct connect to %s, port %u\n", hostname,
+ portnum);
+ PKIX_ERROR(PKIX_PRNEWTCPSOCKETFAILED);
+#endif
prstatus = PR_GetHostByName(hostname, buf, sizeof(buf), &hostent);
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 14631: Improve profile access error messages.
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit d313962f3ce6351ab1c7346c69d0931b1aad475b
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Tue Feb 24 13:50:23 2015 -0500
Bug 14631: Improve profile access error messages.
Instead of always reporting that the profile is locked, display specific
messages for "access denied" and "read-only file system".
To allow for localization, get profile-related error strings from Torbutton.
Use app display name ("Tor Browser") in profile-related error alerts.
---
.../mozapps/profile/profileSelection.properties | 5 +
toolkit/profile/nsToolkitProfileService.cpp | 57 +++++++-
toolkit/profile/nsToolkitProfileService.h | 13 +-
toolkit/xre/nsAppRunner.cpp | 155 ++++++++++++++++++---
4 files changed, 207 insertions(+), 23 deletions(-)
diff --git a/toolkit/locales/en-US/chrome/mozapps/profile/profileSelection.properties b/toolkit/locales/en-US/chrome/mozapps/profile/profileSelection.properties
index 2be092bf4c4b..922b52cb1385 100644
--- a/toolkit/locales/en-US/chrome/mozapps/profile/profileSelection.properties
+++ b/toolkit/locales/en-US/chrome/mozapps/profile/profileSelection.properties
@@ -12,6 +12,11 @@ restartMessageUnlocker=%S is already running, but is not responding. The old %S
restartMessageNoUnlockerMac=A copy of %S is already open. Only one copy of %S can be open at a time.
restartMessageUnlockerMac=A copy of %S is already open. The running copy of %S will quit in order to open this one.
+# LOCALIZATION NOTE (profileProblemTitle, profileReadOnly, profileReadOnlyMac, profileAccessDenied): Messages displayed when the browser profile cannot be accessed or written to. %S is the application name.
+profileProblemTitle=%S Profile Problem
+profileReadOnly=You cannot run %S from a read-only file system. Please copy %S to another location before trying to use it.
+profileReadOnlyMac=You cannot run %S from a read-only file system. Please copy %S to your Desktop or Applications folder before trying to use it.
+profileAccessDenied=%S does not have permission to access the profile. Please adjust your file system permissions and try again.
# Profile manager
# LOCALIZATION NOTE (profileTooltip): First %S is the profile name, second %S is the path to the profile folder.
profileTooltip=Profile: ‘%S’ - Path: ‘%S’
diff --git a/toolkit/profile/nsToolkitProfileService.cpp b/toolkit/profile/nsToolkitProfileService.cpp
index a3e50f8c00d3..3f32bd95f9c9 100644
--- a/toolkit/profile/nsToolkitProfileService.cpp
+++ b/toolkit/profile/nsToolkitProfileService.cpp
@@ -1161,9 +1161,10 @@ nsToolkitProfileService::SelectStartupProfile(
}
bool wasDefault;
+ ProfileStatus profileStatus;
nsresult rv =
SelectStartupProfile(&argc, argv.get(), aIsResetting, aRootDir, aLocalDir,
- aProfile, aDidCreate, &wasDefault);
+ aProfile, aDidCreate, &wasDefault, profileStatus);
// Since we were called outside of the normal startup path complete any
// startup tasks.
@@ -1196,7 +1197,8 @@ nsToolkitProfileService::SelectStartupProfile(
nsresult nsToolkitProfileService::SelectStartupProfile(
int* aArgc, char* aArgv[], bool aIsResetting, nsIFile** aRootDir,
nsIFile** aLocalDir, nsIToolkitProfile** aProfile, bool* aDidCreate,
- bool* aWasDefaultSelection) {
+ bool* aWasDefaultSelection, ProfileStatus& aProfileStatus) {
+ aProfileStatus = PROFILE_STATUS_OK;
if (mStartupProfileSelected) {
return NS_ERROR_ALREADY_INITIALIZED;
}
@@ -1290,6 +1292,13 @@ nsresult nsToolkitProfileService::SelectStartupProfile(
rv = XRE_GetFileFromPath(arg, getter_AddRefs(lf));
NS_ENSURE_SUCCESS(rv, rv);
+ aProfileStatus = CheckProfileWriteAccess(lf);
+ if (PROFILE_STATUS_OK != aProfileStatus) {
+ NS_ADDREF(*aRootDir = lf);
+ NS_ADDREF(*aLocalDir = lf);
+ return NS_ERROR_FAILURE;
+ }
+
// Make sure that the profile path exists and it's a directory.
bool exists;
rv = lf->Exists(&exists);
@@ -2079,3 +2088,47 @@ nsresult XRE_GetFileFromPath(const char* aPath, nsIFile** aResult) {
# error Platform-specific logic needed here.
#endif
}
+
+// Check for write permission to the profile directory by trying to create a
+// new file (after ensuring that no file with the same name exists).
+ProfileStatus nsToolkitProfileService::CheckProfileWriteAccess(
+ nsIFile* aProfileDir) {
+#if defined(XP_UNIX)
+ NS_NAMED_LITERAL_STRING(writeTestFileName, ".parentwritetest");
+#else
+ NS_NAMED_LITERAL_STRING(writeTestFileName, "parent.writetest");
+#endif
+
+ nsCOMPtr<nsIFile> writeTestFile;
+ nsresult rv = aProfileDir->Clone(getter_AddRefs(writeTestFile));
+ if (NS_SUCCEEDED(rv)) rv = writeTestFile->Append(writeTestFileName);
+
+ if (NS_SUCCEEDED(rv)) {
+ bool doesExist = false;
+ rv = writeTestFile->Exists(&doesExist);
+ if (NS_SUCCEEDED(rv) && doesExist) rv = writeTestFile->Remove(true);
+ }
+
+ if (NS_SUCCEEDED(rv)) {
+ rv = writeTestFile->Create(nsIFile::NORMAL_FILE_TYPE, 0666);
+ (void)writeTestFile->Remove(true);
+ }
+
+ ProfileStatus status =
+ NS_SUCCEEDED(rv) ? PROFILE_STATUS_OK : PROFILE_STATUS_OTHER_ERROR;
+ if (NS_ERROR_FILE_ACCESS_DENIED == rv)
+ status = PROFILE_STATUS_ACCESS_DENIED;
+ else if (NS_ERROR_FILE_READ_ONLY == rv)
+ status = PROFILE_STATUS_READ_ONLY;
+
+ return status;
+}
+
+ProfileStatus nsToolkitProfileService::CheckProfileWriteAccess(
+ nsIToolkitProfile* aProfile) {
+ nsCOMPtr<nsIFile> profileDir;
+ nsresult rv = aProfile->GetRootDir(getter_AddRefs(profileDir));
+ if (NS_FAILED(rv)) return PROFILE_STATUS_OTHER_ERROR;
+
+ return CheckProfileWriteAccess(profileDir);
+}
diff --git a/toolkit/profile/nsToolkitProfileService.h b/toolkit/profile/nsToolkitProfileService.h
index f2a238312b95..cfb1964ee1d7 100644
--- a/toolkit/profile/nsToolkitProfileService.h
+++ b/toolkit/profile/nsToolkitProfileService.h
@@ -15,6 +15,14 @@
#include "nsProfileLock.h"
#include "nsINIParser.h"
+enum ProfileStatus {
+ PROFILE_STATUS_OK,
+ PROFILE_STATUS_ACCESS_DENIED,
+ PROFILE_STATUS_READ_ONLY,
+ PROFILE_STATUS_IS_LOCKED,
+ PROFILE_STATUS_OTHER_ERROR
+};
+
class nsToolkitProfile final
: public nsIToolkitProfile,
public mozilla::LinkedListElement<RefPtr<nsToolkitProfile>> {
@@ -79,10 +87,13 @@ class nsToolkitProfileService final : public nsIToolkitProfileService {
nsresult SelectStartupProfile(int* aArgc, char* aArgv[], bool aIsResetting,
nsIFile** aRootDir, nsIFile** aLocalDir,
nsIToolkitProfile** aProfile, bool* aDidCreate,
- bool* aWasDefaultSelection);
+ bool* aWasDefaultSelection,
+ ProfileStatus& aProfileStatus);
nsresult CreateResetProfile(nsIToolkitProfile** aNewProfile);
nsresult ApplyResetProfile(nsIToolkitProfile* aOldProfile);
void CompleteStartup();
+ static ProfileStatus CheckProfileWriteAccess(nsIToolkitProfile* aProfile);
+ static ProfileStatus CheckProfileWriteAccess(nsIFile* aProfileDir);
private:
friend class nsToolkitProfile;
diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
index 4afec36f57bc..3ba04d2b495c 100644
--- a/toolkit/xre/nsAppRunner.cpp
+++ b/toolkit/xre/nsAppRunner.cpp
@@ -1736,6 +1736,91 @@ nsresult LaunchChild(bool aBlankCommandLine) {
return NS_ERROR_LAUNCHED_CHILD_PROCESS;
}
+static nsresult GetOverrideStringBundleForLocale(nsIStringBundleService* aSBS,
+ const char* aTorbuttonURI,
+ const char* aLocale,
+ nsIStringBundle** aResult) {
+ NS_ENSURE_ARG(aSBS);
+ NS_ENSURE_ARG(aTorbuttonURI);
+ NS_ENSURE_ARG(aLocale);
+ NS_ENSURE_ARG(aResult);
+
+ const char* kFormatStr =
+ "jar:%s!/chrome/torbutton/locale/%s/torbutton.properties";
+ nsPrintfCString strBundleURL(kFormatStr, aTorbuttonURI, aLocale);
+ nsresult rv = aSBS->CreateBundle(strBundleURL.get(), aResult);
+ NS_ENSURE_SUCCESS(rv, rv);
+
+ // To ensure that we have a valid string bundle, try to retrieve a string
+ // that we know exists.
+ nsAutoString val;
+ rv = (*aResult)->GetStringFromName("profileProblemTitle", val);
+ if (!NS_SUCCEEDED(rv)) *aResult = nullptr; // No good. Discard it.
+
+ return rv;
+}
+
+static void GetOverrideStringBundle(nsIStringBundleService* aSBS,
+ nsIStringBundle** aResult) {
+ if (!aSBS || !aResult) return;
+
+ *aResult = nullptr;
+
+ // Build Torbutton file URI string by starting from GREDir.
+ RefPtr<nsXREDirProvider> dirProvider = nsXREDirProvider::GetSingleton();
+ if (!dirProvider) return;
+
+ nsCOMPtr<nsIFile> greDir = dirProvider->GetGREDir();
+ if (!greDir) return;
+
+ // Create file URI, extract as string, and append omni.ja relative path.
+ nsCOMPtr<nsIURI> uri;
+ nsAutoCString uriString;
+ if (NS_FAILED(NS_NewFileURI(getter_AddRefs(uri), greDir)) ||
+ NS_FAILED(uri->GetSpec(uriString))) {
+ return;
+ }
+
+ uriString.Append("omni.ja");
+
+ nsAutoCString userAgentLocale;
+ if (!NS_SUCCEEDED(
+ Preferences::GetCString("intl.locale.requested", userAgentLocale))) {
+ return;
+ }
+
+ nsresult rv = GetOverrideStringBundleForLocale(
+ aSBS, uriString.get(), userAgentLocale.get(), aResult);
+ if (NS_FAILED(rv)) {
+ // Try again using base locale, e.g., "en" vs. "en-US".
+ int16_t offset = userAgentLocale.FindChar('-', 1);
+ if (offset > 0) {
+ nsAutoCString shortLocale(Substring(userAgentLocale, 0, offset));
+ rv = GetOverrideStringBundleForLocale(aSBS, uriString.get(),
+ shortLocale.get(), aResult);
+ }
+ }
+}
+
+static nsresult GetFormattedString(nsIStringBundle* aOverrideBundle,
+ nsIStringBundle* aMainBundle,
+ const char* aName,
+ const nsTArray<nsString>& aParams,
+ nsAString& aResult) {
+ NS_ENSURE_ARG(aName);
+
+ nsresult rv = NS_ERROR_FAILURE;
+ if (aOverrideBundle) {
+ rv = aOverrideBundle->FormatStringFromName(aName, aParams, aResult);
+ }
+
+ // If string was not found in override bundle, use main (browser) bundle.
+ if (NS_FAILED(rv) && aMainBundle)
+ rv = aMainBundle->FormatStringFromName(aName, aParams, aResult);
+
+ return rv;
+}
+
static const char kProfileProperties[] =
"chrome://mozapps/locale/profile/profileSelection.properties";
@@ -1784,7 +1869,7 @@ static nsresult ProfileMissingDialog(nsINativeAppSupport* aNative) {
sbs->CreateBundle(kProfileProperties, getter_AddRefs(sb));
NS_ENSURE_TRUE_LOG(sbs, NS_ERROR_FAILURE);
- NS_ConvertUTF8toUTF16 appName(gAppData->name);
+ NS_ConvertUTF8toUTF16 appName(MOZ_APP_DISPLAYNAME);
AutoTArray<nsString, 2> params = {appName, appName};
// profileMissing
@@ -1806,11 +1891,12 @@ static nsresult ProfileMissingDialog(nsINativeAppSupport* aNative) {
}
}
-static ReturnAbortOnError ProfileLockedDialog(nsIFile* aProfileDir,
- nsIFile* aProfileLocalDir,
- nsIProfileUnlocker* aUnlocker,
- nsINativeAppSupport* aNative,
- nsIProfileLock** aResult) {
+static ReturnAbortOnError ProfileErrorDialog(nsIFile* aProfileDir,
+ nsIFile* aProfileLocalDir,
+ ProfileStatus aStatus,
+ nsIProfileUnlocker* aUnlocker,
+ nsINativeAppSupport* aNative,
+ nsIProfileLock** aResult) {
nsresult rv;
bool exists;
@@ -1838,24 +1924,39 @@ static ReturnAbortOnError ProfileLockedDialog(nsIFile* aProfileDir,
sbs->CreateBundle(kProfileProperties, getter_AddRefs(sb));
NS_ENSURE_TRUE_LOG(sbs, NS_ERROR_FAILURE);
- NS_ConvertUTF8toUTF16 appName(gAppData->name);
+ nsCOMPtr<nsIStringBundle> overrideSB;
+ GetOverrideStringBundle(sbs, getter_AddRefs(overrideSB));
+
+ NS_ConvertUTF8toUTF16 appName(MOZ_APP_DISPLAYNAME);
AutoTArray<nsString, 3> params = {appName, appName, appName};
nsAutoString killMessage;
#ifndef XP_MACOSX
- rv = sb->FormatStringFromName(
- aUnlocker ? "restartMessageUnlocker" : "restartMessageNoUnlocker2",
- params, killMessage);
+ static const char kRestartUnlocker[] = "restartMessageUnlocker";
+ static const char kRestartNoUnlocker[] = "restartMessageNoUnlocker2";
+ static const char kReadOnly[] = "profileReadOnly";
#else
- rv = sb->FormatStringFromName(
- aUnlocker ? "restartMessageUnlockerMac" : "restartMessageNoUnlockerMac",
- params, killMessage);
+ static const char kRestartUnlocker[] = "restartMessageUnlockerMac";
+ static const char kRestartNoUnlocker[] = "restartMessageNoUnlockerMac";
+ static const char kReadOnly[] = "profileReadOnlyMac";
#endif
+ static const char kAccessDenied[] = "profileAccessDenied";
+
+ const char* errorKey = aUnlocker ? kRestartUnlocker : kRestartNoUnlocker;
+ if (PROFILE_STATUS_READ_ONLY == aStatus)
+ errorKey = kReadOnly;
+ else if (PROFILE_STATUS_ACCESS_DENIED == aStatus)
+ errorKey = kAccessDenied;
+ rv = GetFormattedString(overrideSB, sb, errorKey, params, killMessage);
NS_ENSURE_SUCCESS(rv, NS_ERROR_FAILURE);
+ const char* titleKey = ((PROFILE_STATUS_READ_ONLY == aStatus) ||
+ (PROFILE_STATUS_ACCESS_DENIED == aStatus))
+ ? "profileProblemTitle"
+ : "restartTitle";
params.SetLength(1);
nsAutoString killTitle;
- rv = sb->FormatStringFromName("restartTitle", params, killTitle);
+ rv = sb->FormatStringFromName(titleKey, params, killTitle);
NS_ENSURE_SUCCESS(rv, NS_ERROR_FAILURE);
if (gfxPlatform::IsHeadless()) {
@@ -2013,6 +2114,13 @@ static nsCOMPtr<nsIToolkitProfile> gResetOldProfile;
static nsresult LockProfile(nsINativeAppSupport* aNative, nsIFile* aRootDir,
nsIFile* aLocalDir, nsIToolkitProfile* aProfile,
nsIProfileLock** aResult) {
+ ProfileStatus status =
+ (aProfile ? nsToolkitProfileService::CheckProfileWriteAccess(aProfile)
+ : nsToolkitProfileService::CheckProfileWriteAccess(aRootDir));
+ if (PROFILE_STATUS_OK != status)
+ return ProfileErrorDialog(aRootDir, aLocalDir, status, nullptr, aNative,
+ aResult);
+
// If you close Firefox and very quickly reopen it, the old Firefox may
// still be closing down. Rather than immediately showing the
// "Firefox is running but is not responding" message, we spend a few
@@ -2039,7 +2147,8 @@ static nsresult LockProfile(nsINativeAppSupport* aNative, nsIFile* aRootDir,
} while (TimeStamp::Now() - start <
TimeDuration::FromSeconds(kLockRetrySeconds));
- return ProfileLockedDialog(aRootDir, aLocalDir, unlocker, aNative, aResult);
+ return ProfileErrorDialog(aRootDir, aLocalDir, PROFILE_STATUS_IS_LOCKED,
+ unlocker, aNative, aResult);
}
// Pick a profile. We need to end up with a profile root dir, local dir and
@@ -2054,7 +2163,8 @@ static nsresult LockProfile(nsINativeAppSupport* aNative, nsIFile* aRootDir,
static nsresult SelectProfile(nsToolkitProfileService* aProfileSvc,
nsINativeAppSupport* aNative, nsIFile** aRootDir,
nsIFile** aLocalDir, nsIToolkitProfile** aProfile,
- bool* aWasDefaultSelection) {
+ bool* aWasDefaultSelection,
+ nsIProfileLock** aResult) {
StartupTimeline::Record(StartupTimeline::SELECT_PROFILE);
nsresult rv;
@@ -2100,9 +2210,14 @@ static nsresult SelectProfile(nsToolkitProfileService* aProfileSvc,
// Ask the profile manager to select the profile directories to use.
bool didCreate = false;
- rv = aProfileSvc->SelectStartupProfile(&gArgc, gArgv, gDoProfileReset,
- aRootDir, aLocalDir, aProfile,
- &didCreate, aWasDefaultSelection);
+ ProfileStatus profileStatus = PROFILE_STATUS_OK;
+ rv = aProfileSvc->SelectStartupProfile(
+ &gArgc, gArgv, gDoProfileReset, aRootDir, aLocalDir, aProfile, &didCreate,
+ aWasDefaultSelection, profileStatus);
+ if (PROFILE_STATUS_OK != profileStatus) {
+ return ProfileErrorDialog(*aRootDir, *aLocalDir, profileStatus, nullptr,
+ aNative, aResult);
+ }
if (rv == NS_ERROR_SHOW_PROFILE_MANAGER) {
return ShowProfileManager(aProfileSvc, aNative);
@@ -3932,7 +4047,7 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
nsCOMPtr<nsIToolkitProfile> profile;
rv = SelectProfile(mProfileSvc, mNativeApp, getter_AddRefs(mProfD),
getter_AddRefs(mProfLD), getter_AddRefs(profile),
- &wasDefaultSelection);
+ &wasDefaultSelection, getter_AddRefs(mProfileLock));
if (rv == NS_ERROR_LAUNCHED_CHILD_PROCESS || rv == NS_ERROR_ABORT) {
*aExitFlag = true;
return 0;
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Add TorStrings module for localization
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit 126831fc909b69be10814f8d55ebc6f87fa8f78f
Author: Alex Catarineu <acat(a)torproject.org>
Date: Fri Jul 24 21:15:20 2020 +0200
Add TorStrings module for localization
---
browser/modules/TorStrings.jsm | 490 +++++++++++++++++++++++++++++++++++++++++
browser/modules/moz.build | 1 +
2 files changed, 491 insertions(+)
diff --git a/browser/modules/TorStrings.jsm b/browser/modules/TorStrings.jsm
new file mode 100644
index 000000000000..e8a8d37ae373
--- /dev/null
+++ b/browser/modules/TorStrings.jsm
@@ -0,0 +1,490 @@
+"use strict";
+
+var EXPORTED_SYMBOLS = ["TorStrings"];
+
+const { XPCOMUtils } = ChromeUtils.import(
+ "resource://gre/modules/XPCOMUtils.jsm"
+);
+const { Services } = ChromeUtils.import(
+ "resource://gre/modules/Services.jsm"
+);
+const { getLocale } = ChromeUtils.import(
+ "resource://torbutton/modules/utils.js"
+);
+
+XPCOMUtils.defineLazyGlobalGetters(this, ["DOMParser"]);
+XPCOMUtils.defineLazyGetter(this, "domParser", () => {
+ const parser = new DOMParser();
+ parser.forceEnableDTD();
+ return parser;
+});
+
+/*
+ Tor DTD String Bundle
+
+ DTD strings loaded from torbutton/tor-launcher, but provide a fallback in case they aren't available
+*/
+class TorDTDStringBundle {
+ constructor(aBundleURLs, aPrefix) {
+ let locations = [];
+ for (const [index, url] of aBundleURLs.entries()) {
+ locations.push(`<!ENTITY % dtd_${index} SYSTEM "${url}">%dtd_${index};`);
+ }
+ this._locations = locations;
+ this._prefix = aPrefix;
+ }
+
+ // copied from testing/marionette/l10n.js
+ localizeEntity(urls, id) {
+ // Use the DOM parser to resolve the entity and extract its real value
+ let header = `<?xml version="1.0"?><!DOCTYPE elem [${this._locations.join(
+ ""
+ )}]>`;
+ let elem = `<elem id="elementID">&${id};</elem>`;
+ let doc = domParser.parseFromString(header + elem, "text/xml");
+ let element = doc.querySelector("elem[id='elementID']");
+
+ if (element === null) {
+ throw new Error(`Entity with id='${id}' hasn't been found`);
+ }
+
+ return element.textContent;
+ }
+
+ getString(key, fallback) {
+ if (key) {
+ try {
+ return this.localizeEntity(this._bundleURLs, `${this._prefix}${key}`);
+ } catch (e) {}
+ }
+
+ // on failure, assign the fallback if it exists
+ if (fallback) {
+ return fallback;
+ }
+ // otherwise return string key
+ return `$(${key})`;
+ }
+}
+
+/*
+ Tor Property String Bundle
+
+ Property strings loaded from torbutton/tor-launcher, but provide a fallback in case they aren't available
+*/
+class TorPropertyStringBundle {
+ constructor(aBundleURL, aPrefix) {
+ try {
+ this._bundle = Services.strings.createBundle(aBundleURL);
+ } catch (e) {}
+
+ this._prefix = aPrefix;
+ }
+
+ getString(key, fallback) {
+ if (key) {
+ try {
+ return this._bundle.GetStringFromName(`${this._prefix}${key}`);
+ } catch (e) {}
+ }
+
+ // on failure, assign the fallback if it exists
+ if (fallback) {
+ return fallback;
+ }
+ // otherwise return string key
+ return `$(${key})`;
+ }
+}
+
+/*
+ Security Level Strings
+*/
+var TorStrings = {
+ /*
+ Tor Browser Security Level Strings
+ */
+ securityLevel: (function() {
+ let tsb = new TorDTDStringBundle(
+ ["chrome://torbutton/locale/torbutton.dtd"],
+ "torbutton.prefs.sec_"
+ );
+ let getString = function(key, fallback) {
+ return tsb.getString(key, fallback);
+ };
+
+ // read localized strings from torbutton; but use hard-coded en-US strings as fallbacks in case of error
+ let retval = {
+ securityLevel: getString("caption", "Security Level"),
+ customWarning: getString("custom_warning", "Custom"),
+ overview: getString(
+ "overview",
+ "Disable certain web features that can be used to attack your security and anonymity."
+ ),
+ standard: {
+ level: getString("standard_label", "Standard"),
+ tooltip: getString("standard_tooltip", "Security Level : Standard"),
+ summary: getString(
+ "standard_description",
+ "All Tor Browser and website features are enabled."
+ ),
+ },
+ safer: {
+ level: getString("safer_label", "Safer"),
+ tooltip: getString("safer_tooltip", "Security Level : Safer"),
+ summary: getString(
+ "safer_description",
+ "Disables website features that are often dangerous, causing some sites to lose functionality."
+ ),
+ description1: getString(
+ "js_on_https_sites_only",
+ "JavaScript is disabled on non-HTTPS sites."
+ ),
+ description2: getString(
+ "limit_typography",
+ "Some fonts and math symbols are disabled."
+ ),
+ description3: getString(
+ "click_to_play_media",
+ "Audio and video (HTML5 media), and WebGL are click-to-play."
+ ),
+ },
+ safest: {
+ level: getString("safest_label", "Safest"),
+ tooltip: getString("safest_tooltip", "Security Level : Safest"),
+ summary: getString(
+ "safest_description",
+ "Only allows website features required for static sites and basic services. These changes affect images, media, and scripts."
+ ),
+ description1: getString(
+ "js_disabled",
+ "JavaScript is disabled by default on all sites."
+ ),
+ description2: getString(
+ "limit_graphics_and_typography",
+ "Some fonts, icons, math symbols, and images are disabled."
+ ),
+ description3: getString(
+ "click_to_play_media",
+ "Audio and video (HTML5 media), and WebGL are click-to-play."
+ ),
+ },
+ custom: {
+ summary: getString(
+ "custom_summary",
+ "Your custom browser preferences have resulted in unusual security settings. For security and privacy reasons, we recommend you choose one of the default security levels."
+ ),
+ },
+ learnMore: getString("learn_more_label", "Learn more"),
+ learnMoreURL: `https://tb-manual.torproject.org/${getLocale()}/security-settings/`,
+ restoreDefaults: getString("restore_defaults", "Restore Defaults"),
+ advancedSecuritySettings: getString(
+ "advanced_security_settings",
+ "Advanced Security Settings\u2026"
+ ),
+ };
+ return retval;
+ })() /* Security Level Strings */,
+
+ /*
+ Tor about:preferences#tor Strings
+ */
+ settings: (function() {
+ let tsb = new TorDTDStringBundle(
+ ["chrome://torlauncher/locale/network-settings.dtd"],
+ ""
+ );
+ let getString = function(key, fallback) {
+ return tsb.getString(key, fallback);
+ };
+
+ let retval = {
+ categoryTitle: getString("torPreferences.categoryTitle", "Tor"),
+ torPreferencesHeading: getString(
+ "torPreferences.torSettings",
+ "Tor Settings"
+ ),
+ torPreferencesDescription: getString(
+ "torPreferences.torSettingsDescription",
+ "Tor Browser routes your traffic over the Tor Network, run by thousands of volunteers around the world."
+ ),
+ learnMore: getString("torPreferences.learnMore", "Learn More"),
+ bridgesHeading: getString("torPreferences.bridges", "Bridges"),
+ bridgesDescription: getString(
+ "torPreferences.bridgesDescription",
+ "Bridges help you access the Tor Network in places where Tor is blocked. Depending on where you are, one bridge may work better than another."
+ ),
+ useBridge: getString("torPreferences.useBridge", "Use a bridge"),
+ selectBridge: getString(
+ "torsettings.useBridges.default",
+ "Select a bridge"
+ ),
+ requestBridgeFromTorProject: getString(
+ "torsettings.useBridges.bridgeDB",
+ "Request a bridge from torproject.org"
+ ),
+ requestNewBridge: getString(
+ "torPreferences.requestNewBridge",
+ "Request a New Bridge\u2026"
+ ),
+ provideBridge: getString(
+ "torPreferences.provideBridge",
+ "Provide a bridge"
+ ),
+ provideBridgeDirections: getString(
+ "torsettings.useBridges.label",
+ "Enter bridge information from a trusted source."
+ ),
+ provideBridgePlaceholder: getString(
+ "torsettings.useBridges.placeholder",
+ "type address:port (one per line)"
+ ),
+ advancedHeading: getString("torPreferences.advanced", "Advanced"),
+ advancedDescription: getString(
+ "torPreferences.advancedDescription",
+ "Configure how Tor Browser connects to the internet."
+ ),
+ useLocalProxy: getString("torsettings.useProxy.checkbox", "I use a proxy to connect to the Internet"),
+ proxyType: getString("torsettings.useProxy.type", "Proxy Type"),
+ proxyTypeSOCKS4: getString("torsettings.useProxy.type.socks4", "SOCKS4"),
+ proxyTypeSOCKS5: getString("torsettings.useProxy.type.socks5", "SOCKS5"),
+ proxyTypeHTTP: getString("torsettings.useProxy.type.http", "HTTP/HTTPS"),
+ proxyAddress: getString("torsettings.useProxy.address", "Address"),
+ proxyAddressPlaceholder: getString(
+ "torsettings.useProxy.address.placeholder",
+ "IP address or hostname"
+ ),
+ proxyPort: getString("torsettings.useProxy.port", "Port"),
+ proxyUsername: getString("torsettings.useProxy.username", "Username"),
+ proxyPassword: getString("torsettings.useProxy.password", "Password"),
+ proxyUsernamePasswordPlaceholder: getString(
+ "torsettings.optional",
+ "Optional"
+ ),
+ useFirewall: getString(
+ "torsettings.firewall.checkbox",
+ "This computer goes through a firewall that only allows connections to certain ports"
+ ),
+ allowedPorts: getString(
+ "torsettings.firewall.allowedPorts",
+ "Allowed Ports"
+ ),
+ allowedPortsPlaceholder: getString(
+ "torPreferences.firewallPortsPlaceholder",
+ "Comma-seperated values"
+ ),
+ requestBridgeDialogTitle: getString(
+ "torPreferences.requestBridgeDialogTitle",
+ "Request Bridge"
+ ),
+ submitCaptcha: getString(
+ "torsettings.useBridges.captchaSubmit",
+ "Submit"
+ ),
+ contactingBridgeDB: getString(
+ "torPreferences.requestBridgeDialogWaitPrompt",
+ "Contacting BridgeDB. Please Wait."
+ ),
+ solveTheCaptcha: getString(
+ "torPreferences.requestBridgeDialogSolvePrompt",
+ "Solve the CAPTCHA to request a bridge."
+ ),
+ captchaTextboxPlaceholder: getString(
+ "torsettings.useBridges.captchaSolution.placeholder",
+ "Enter the characters from the image"
+ ),
+ incorrectCaptcha: getString(
+ "torPreferences.requestBridgeErrorBadSolution",
+ "The solution is not correct. Please try again."
+ ),
+ showTorDaemonLogs: getString(
+ "torPreferences.viewTorLogs",
+ "View the Tor logs."
+ ),
+ showLogs: getString("torPreferences.viewLogs", "View Logs\u2026"),
+ torLogDialogTitle: getString(
+ "torPreferences.torLogsDialogTitle",
+ "Tor Logs"
+ ),
+ copyLog: getString("torsettings.copyLog", "Copy Tor Log to Clipboard"),
+
+ learnMoreTorBrowserURL: `https://tb-manual.torproject.org/${getLocale()}/about/`,
+ learnMoreBridgesURL: `https://tb-manual.torproject.org/${getLocale()}/bridges/`,
+ learnMoreNetworkSettingsURL: `about:blank`,
+ };
+
+ return retval;
+ })() /* Tor Network Settings Strings */,
+
+ /*
+ Tor Onion Services Strings, e.g., for the authentication prompt.
+ */
+ onionServices: (function() {
+ let tsb = new TorPropertyStringBundle(
+ "chrome://torbutton/locale/torbutton.properties",
+ "onionServices."
+ );
+ let getString = function(key, fallback) {
+ return tsb.getString(key, fallback);
+ };
+
+ const kProblemLoadingSiteFallback = "Problem Loading Onionsite";
+ const kLongDescFallback = "Details: %S";
+
+ let retval = {
+ learnMore: getString("learnMore", "Learn more"),
+ learnMoreURL: `https://support.torproject.org/${getLocale()}/onionservices/client-auth/`,
+ errorPage: {
+ browser: getString("errorPage.browser", "Browser"),
+ network: getString("errorPage.network", "Network"),
+ onionSite: getString("errorPage.onionSite", "Onionsite"),
+ },
+ descNotFound: { // Tor SOCKS error 0xF0
+ pageTitle: getString("descNotFound.pageTitle", kProblemLoadingSiteFallback),
+ header: getString("descNotFound.header", "Onionsite Not Found"),
+ longDescription: getString("descNotFound.longDescription", kLongDescFallback),
+ },
+ descInvalid: { // Tor SOCKS error 0xF1
+ pageTitle: getString("descInvalid.pageTitle", kProblemLoadingSiteFallback),
+ header: getString("descInvalid.header", "Onionsite Cannot Be Reached"),
+ longDescription: getString("descInvalid.longDescription", kLongDescFallback),
+ },
+ introFailed: { // Tor SOCKS error 0xF2
+ pageTitle: getString("introFailed.pageTitle", kProblemLoadingSiteFallback),
+ header: getString("introFailed.header", "Onionsite Has Disconnected"),
+ longDescription: getString("introFailed.longDescription", kLongDescFallback),
+ },
+ rendezvousFailed: { // Tor SOCKS error 0xF3
+ pageTitle: getString("rendezvousFailed.pageTitle", kProblemLoadingSiteFallback),
+ header: getString("rendezvousFailed.header", "Unable to Connect to Onionsite"),
+ longDescription: getString("rendezvousFailed.longDescription", kLongDescFallback),
+ },
+ clientAuthMissing: { // Tor SOCKS error 0xF4
+ pageTitle: getString("clientAuthMissing.pageTitle", "Authorization Required"),
+ header: getString("clientAuthMissing.header", "Onionsite Requires Authentication"),
+ longDescription: getString("clientAuthMissing.longDescription", kLongDescFallback),
+ },
+ clientAuthIncorrect: { // Tor SOCKS error 0xF5
+ pageTitle: getString("clientAuthIncorrect.pageTitle", "Authorization Failed"),
+ header: getString("clientAuthIncorrect.header", "Onionsite Authentication Failed"),
+ longDescription: getString("clientAuthIncorrect.longDescription", kLongDescFallback),
+ },
+ badAddress: { // Tor SOCKS error 0xF6
+ pageTitle: getString("badAddress.pageTitle", kProblemLoadingSiteFallback),
+ header: getString("badAddress.header", "Invalid Onionsite Address"),
+ longDescription: getString("badAddress.longDescription", kLongDescFallback),
+ },
+ introTimedOut: { // Tor SOCKS error 0xF7
+ pageTitle: getString("introTimedOut.pageTitle", kProblemLoadingSiteFallback),
+ header: getString("introTimedOut.header", "Onionsite Circuit Creation Timed Out"),
+ longDescription: getString("introTimedOut.longDescription", kLongDescFallback),
+ },
+ authPrompt: {
+ description:
+ getString("authPrompt.description2", "%S is requesting that you authenticate."),
+ keyPlaceholder: getString("authPrompt.keyPlaceholder", "Enter your key"),
+ done: getString("authPrompt.done", "Done"),
+ doneAccessKey: getString("authPrompt.doneAccessKey", "d"),
+ invalidKey: getString("authPrompt.invalidKey", "Invalid key"),
+ failedToSetKey:
+ getString("authPrompt.failedToSetKey", "Failed to set key"),
+ },
+ authPreferences: {
+ header: getString("authPreferences.header", "Onion Services Authentication"),
+ overview: getString("authPreferences.overview", "Some onion services require that you identify yourself with a key"),
+ savedKeys: getString("authPreferences.savedKeys", "Saved Keys"),
+ dialogTitle: getString("authPreferences.dialogTitle", "Onion Services Keys"),
+ dialogIntro: getString("authPreferences.dialogIntro", "Keys for the following onionsites are stored on your computer"),
+ onionSite: getString("authPreferences.onionSite", "Onionsite"),
+ onionKey: getString("authPreferences.onionKey", "Key"),
+ remove: getString("authPreferences.remove", "Remove"),
+ removeAll: getString("authPreferences.removeAll", "Remove All"),
+ failedToGetKeys: getString("authPreferences.failedToGetKeys", "Failed to get keys"),
+ failedToRemoveKey: getString("authPreferences.failedToRemoveKey", "Failed to remove key"),
+ },
+ };
+
+ return retval;
+ })() /* Tor Onion Services Strings */,
+
+ /*
+ OnionLocation
+ */
+ onionLocation: (function() {
+ const tsb = new TorPropertyStringBundle(
+ ["chrome://torbutton/locale/torbutton.properties"],
+ "onionLocation."
+ );
+ const getString = function(key, fallback) {
+ return tsb.getString(key, fallback);
+ };
+
+ const retval = {
+ alwaysPrioritize: getString(
+ "alwaysPrioritize",
+ "Always Prioritize Onionsites"
+ ),
+ alwaysPrioritizeAccessKey: getString("alwaysPrioritizeAccessKey", "a"),
+ notNow: getString("notNow", "Not Now"),
+ notNowAccessKey: getString("notNowAccessKey", "n"),
+ description: getString(
+ "description",
+ "Website publishers can protect users by adding a security layer. This prevents eavesdroppers from knowing that you are the one visiting that website."
+ ),
+ tryThis: getString("tryThis", "Try this: Onionsite"),
+ onionAvailable: getString("onionAvailable", "Onionsite available"),
+ learnMore: getString("learnMore", "Learn more"),
+ learnMoreURL: `https://tb-manual.torproject.org/${getLocale()}/onion-services/`,
+ always: getString("always", "Always"),
+ askEverytime: getString("askEverytime", "Ask you every time"),
+ prioritizeOnionsDescription: getString(
+ "prioritizeOnionsDescription",
+ "Prioritize onionsites when they are available."
+ ),
+ onionServicesTitle: getString("onionServicesTitle", "Onion Services"),
+ };
+
+ return retval;
+ })() /* OnionLocation */,
+
+ /*
+ Tor Deamon Configuration Key Strings
+ */
+
+ // TODO: proper camel case
+ configKeys: {
+ /* Bridge Conf Settings */
+ useBridges: "UseBridges",
+ bridgeList: "Bridge",
+ /* Proxy Conf Strings */
+ socks4Proxy: "Socks4Proxy",
+ socks5Proxy: "Socks5Proxy",
+ socks5ProxyUsername: "Socks5ProxyUsername",
+ socks5ProxyPassword: "Socks5ProxyPassword",
+ httpsProxy: "HTTPSProxy",
+ httpsProxyAuthenticator: "HTTPSProxyAuthenticator",
+ /* Firewall Conf Strings */
+ reachableAddresses: "ReachableAddresses",
+
+ /* BridgeDB Strings */
+ clientTransportPlugin: "ClientTransportPlugin",
+ },
+
+ /*
+ about:config preference keys
+ */
+
+ preferenceKeys: {
+ defaultBridgeType: "extensions.torlauncher.default_bridge_type",
+ recommendedBridgeType:
+ "extensions.torlauncher.default_bridge_recommended_type",
+ },
+
+ /*
+ about:config preference branches
+ */
+ preferenceBranches: {
+ defaultBridge: "extensions.torlauncher.default_bridge.",
+ bridgeDBBridges: "extensions.torlauncher.bridgedb_bridge.",
+ },
+};
diff --git a/browser/modules/moz.build b/browser/modules/moz.build
index cbb94cf736a0..88f2a55d6f49 100644
--- a/browser/modules/moz.build
+++ b/browser/modules/moz.build
@@ -154,6 +154,7 @@ EXTRA_JS_MODULES += [
'TabUnloader.jsm',
'ThemeVariableMap.jsm',
'TopSiteAttribution.jsm',
+ 'TorStrings.jsm',
'TransientPrefs.jsm',
'webrtcUI.jsm',
'ZoomUI.jsm',
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 9173: Change the default Firefox profile directory to be TBB-relative.
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit 113ff2571c3fb595d63779a43dc4e2c7d3ce8d72
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Fri Oct 18 15:20:06 2013 -0400
Bug 9173: Change the default Firefox profile directory to be TBB-relative.
This should eliminate our need to rely on a wrapper script that
sets /Users/arthur and launches Firefox with -profile.
---
toolkit/profile/nsToolkitProfileService.cpp | 5 +-
toolkit/xre/nsAppRunner.cpp | 2 +-
toolkit/xre/nsConsoleWriter.cpp | 2 +-
toolkit/xre/nsXREDirProvider.cpp | 150 ++++++----------------------
toolkit/xre/nsXREDirProvider.h | 16 +--
xpcom/io/nsAppFileLocationProvider.cpp | 97 +++++++-----------
6 files changed, 84 insertions(+), 188 deletions(-)
diff --git a/toolkit/profile/nsToolkitProfileService.cpp b/toolkit/profile/nsToolkitProfileService.cpp
index dc4811313b5e..a3e50f8c00d3 100644
--- a/toolkit/profile/nsToolkitProfileService.cpp
+++ b/toolkit/profile/nsToolkitProfileService.cpp
@@ -723,10 +723,11 @@ nsresult nsToolkitProfileService::Init() {
NS_ASSERTION(gDirServiceProvider, "No dirserviceprovider!");
nsresult rv;
- rv = nsXREDirProvider::GetUserAppDataDirectory(getter_AddRefs(mAppData));
+ rv = gDirServiceProvider->GetUserAppDataDirectory(getter_AddRefs(mAppData));
NS_ENSURE_SUCCESS(rv, rv);
- rv = nsXREDirProvider::GetUserLocalDataDirectory(getter_AddRefs(mTempData));
+ rv =
+ gDirServiceProvider->GetUserLocalDataDirectory(getter_AddRefs(mTempData));
NS_ENSURE_SUCCESS(rv, rv);
rv = mAppData->Clone(getter_AddRefs(mProfileDBFile));
diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
index ef72d1bf4fb2..4afec36f57bc 100644
--- a/toolkit/xre/nsAppRunner.cpp
+++ b/toolkit/xre/nsAppRunner.cpp
@@ -3187,7 +3187,7 @@ int XREMain::XRE_mainInit(bool* aExitFlag) {
if ((mAppData->flags & NS_XRE_ENABLE_CRASH_REPORTER) &&
NS_SUCCEEDED(CrashReporter::SetExceptionHandler(xreBinDirectory))) {
nsCOMPtr<nsIFile> file;
- rv = nsXREDirProvider::GetUserAppDataDirectory(getter_AddRefs(file));
+ rv = mDirProvider.GetUserAppDataDirectory(getter_AddRefs(file));
if (NS_SUCCEEDED(rv)) {
CrashReporter::SetUserAppDataDirectory(file);
}
diff --git a/toolkit/xre/nsConsoleWriter.cpp b/toolkit/xre/nsConsoleWriter.cpp
index 0a2c0c342893..46735a293a00 100644
--- a/toolkit/xre/nsConsoleWriter.cpp
+++ b/toolkit/xre/nsConsoleWriter.cpp
@@ -29,7 +29,7 @@ void WriteConsoleLog() {
} else {
if (!gLogConsoleErrors) return;
- rv = nsXREDirProvider::GetUserAppDataDirectory(getter_AddRefs(lfile));
+ rv = gDirServiceProvider->GetUserAppDataDirectory(getter_AddRefs(lfile));
if (NS_FAILED(rv)) return;
lfile->AppendNative(NS_LITERAL_CSTRING("console.log"));
diff --git a/toolkit/xre/nsXREDirProvider.cpp b/toolkit/xre/nsXREDirProvider.cpp
index 62b5694e99e8..accdcfe7c0b0 100644
--- a/toolkit/xre/nsXREDirProvider.cpp
+++ b/toolkit/xre/nsXREDirProvider.cpp
@@ -32,6 +32,7 @@
#include "nsArrayEnumerator.h"
#include "nsEnumeratorUtils.h"
#include "nsReadableUtils.h"
+#include "nsXPCOMPrivate.h" // for XPCOM_FILE_PATH_SEPARATOR
#include "SpecialSystemDirectory.h"
@@ -244,9 +245,6 @@ nsresult nsXREDirProvider::GetUserProfilesRootDir(nsIFile** aResult) {
nsresult rv = GetUserDataDirectory(getter_AddRefs(file), false);
if (NS_SUCCEEDED(rv)) {
-#if !defined(XP_UNIX) || defined(XP_MACOSX)
- rv = file->AppendNative(NS_LITERAL_CSTRING("Profiles"));
-#endif
// We must create the profile directory here if it does not exist.
nsresult tmp = EnsureDirectoryExists(file);
if (NS_FAILED(tmp)) {
@@ -262,9 +260,6 @@ nsresult nsXREDirProvider::GetUserProfilesLocalDir(nsIFile** aResult) {
nsresult rv = GetUserDataDirectory(getter_AddRefs(file), true);
if (NS_SUCCEEDED(rv)) {
-#if !defined(XP_UNIX) || defined(XP_MACOSX)
- rv = file->AppendNative(NS_LITERAL_CSTRING("Profiles"));
-#endif
// We must create the profile directory here if it does not exist.
nsresult tmp = EnsureDirectoryExists(file);
if (NS_FAILED(tmp)) {
@@ -1378,7 +1373,7 @@ nsresult nsXREDirProvider::SetUserDataProfileDirectory(nsCOMPtr<nsIFile>& aFile,
nsresult nsXREDirProvider::GetUserDataDirectoryHome(nsIFile** aFile,
bool aLocal) {
// Copied from nsAppFileLocationProvider (more or less)
- nsresult rv;
+ NS_ENSURE_ARG_POINTER(aFile);
nsCOMPtr<nsIFile> localDir;
if (aLocal && gDataDirHomeLocal) {
@@ -1388,81 +1383,39 @@ nsresult nsXREDirProvider::GetUserDataDirectoryHome(nsIFile** aFile,
return gDataDirHome->Clone(aFile);
}
-#if defined(XP_MACOSX)
- FSRef fsRef;
- OSType folderType;
- if (aLocal) {
- folderType = kCachedDataFolderType;
- } else {
-# ifdef MOZ_THUNDERBIRD
- folderType = kDomainLibraryFolderType;
-# else
- folderType = kApplicationSupportFolderType;
-# endif
- }
- OSErr err = ::FSFindFolder(kUserDomain, folderType, kCreateFolder, &fsRef);
- NS_ENSURE_FALSE(err, NS_ERROR_FAILURE);
-
- rv = NS_NewNativeLocalFile(EmptyCString(), true, getter_AddRefs(localDir));
+ nsresult rv = GetAppDir()->Clone(getter_AddRefs(localDir));
NS_ENSURE_SUCCESS(rv, rv);
- nsCOMPtr<nsILocalFileMac> dirFileMac = do_QueryInterface(localDir);
- NS_ENSURE_TRUE(dirFileMac, NS_ERROR_UNEXPECTED);
-
- rv = dirFileMac->InitWithFSRef(&fsRef);
- NS_ENSURE_SUCCESS(rv, rv);
+ int levelsToRemove = 1; // In FF21+, appDir points to browser subdirectory.
+#if defined(XP_MACOSX)
+ levelsToRemove += 2;
+#endif
+ while (localDir && (levelsToRemove > 0)) {
+ // When crawling up the hierarchy, components named "." do not count.
+ nsAutoCString removedName;
+ rv = localDir->GetNativeLeafName(removedName);
+ NS_ENSURE_SUCCESS(rv, rv);
+ bool didRemove = !removedName.Equals(".");
- localDir = dirFileMac;
-#elif defined(XP_IOS)
- nsAutoCString userDir;
- if (GetUIKitDirectory(aLocal, userDir)) {
- rv = NS_NewNativeLocalFile(userDir, true, getter_AddRefs(localDir));
- } else {
- rv = NS_ERROR_FAILURE;
- }
- NS_ENSURE_SUCCESS(rv, rv);
-#elif defined(XP_WIN)
- nsString path;
- if (aLocal) {
- rv = GetShellFolderPath(FOLDERID_LocalAppData, path);
- if (NS_FAILED(rv)) rv = GetRegWindowsAppDataFolder(aLocal, path);
- }
- if (!aLocal || NS_FAILED(rv)) {
- rv = GetShellFolderPath(FOLDERID_RoamingAppData, path);
- if (NS_FAILED(rv)) {
- if (!aLocal) rv = GetRegWindowsAppDataFolder(aLocal, path);
- }
+ // Remove a directory component.
+ nsCOMPtr<nsIFile> parentDir;
+ rv = localDir->GetParent(getter_AddRefs(parentDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+ localDir = parentDir;
+ if (didRemove) --levelsToRemove;
}
- NS_ENSURE_SUCCESS(rv, rv);
- rv = NS_NewLocalFile(path, true, getter_AddRefs(localDir));
-#elif defined(XP_UNIX)
- const char* homeDir = getenv("HOME");
- if (!homeDir || !*homeDir) return NS_ERROR_FAILURE;
+ if (!localDir) return NS_ERROR_FAILURE;
-# ifdef ANDROID /* We want (ProfD == ProfLD) on Android. */
- aLocal = false;
-# endif
+ rv = localDir->AppendRelativeNativePath(
+ NS_LITERAL_CSTRING("TorBrowser" XPCOM_FILE_PATH_SEPARATOR
+ "Data" XPCOM_FILE_PATH_SEPARATOR "Browser"));
+ NS_ENSURE_SUCCESS(rv, rv);
if (aLocal) {
- // If $XDG_CACHE_HOME is defined use it, otherwise use $HOME/.cache.
- const char* cacheHome = getenv("XDG_CACHE_HOME");
- if (cacheHome && *cacheHome) {
- rv = NS_NewNativeLocalFile(nsDependentCString(cacheHome), true,
- getter_AddRefs(localDir));
- } else {
- rv = NS_NewNativeLocalFile(nsDependentCString(homeDir), true,
- getter_AddRefs(localDir));
- if (NS_SUCCEEDED(rv))
- rv = localDir->AppendNative(NS_LITERAL_CSTRING(".cache"));
- }
- } else {
- rv = NS_NewNativeLocalFile(nsDependentCString(homeDir), true,
- getter_AddRefs(localDir));
+ rv = localDir->AppendNative(NS_LITERAL_CSTRING("Caches"));
+ NS_ENSURE_SUCCESS(rv, rv);
}
-#else
-# error "Don't know how to get product dir on your platform"
-#endif
NS_IF_ADDREF(*aFile = localDir);
return rv;
@@ -1645,39 +1598,23 @@ nsresult nsXREDirProvider::AppendProfilePath(nsIFile* aFile, bool aLocal) {
}
nsAutoCString profile;
- nsAutoCString appName;
- nsAutoCString vendor;
if (gAppData->profile) {
profile = gAppData->profile;
- } else {
- appName = gAppData->name;
- vendor = gAppData->vendor;
}
- nsresult rv = NS_OK;
+ nsresult rv = NS_ERROR_FAILURE;
#if defined(XP_MACOSX)
if (!profile.IsEmpty()) {
rv = AppendProfileString(aFile, profile.get());
- } else {
- // Note that MacOS ignores the vendor when creating the profile hierarchy -
- // all application preferences directories live alongside one another in
- // ~/Library/Application Support/
- rv = aFile->AppendNative(appName);
+ NS_ENSURE_SUCCESS(rv, rv);
}
- NS_ENSURE_SUCCESS(rv, rv);
#elif defined(XP_WIN)
if (!profile.IsEmpty()) {
rv = AppendProfileString(aFile, profile.get());
- } else {
- if (!vendor.IsEmpty()) {
- rv = aFile->AppendNative(vendor);
- NS_ENSURE_SUCCESS(rv, rv);
- }
- rv = aFile->AppendNative(appName);
+ NS_ENSURE_SUCCESS(rv, rv);
}
- NS_ENSURE_SUCCESS(rv, rv);
#elif defined(ANDROID)
// The directory used for storing profiles
@@ -1687,11 +1624,6 @@ nsresult nsXREDirProvider::AppendProfilePath(nsIFile* aFile, bool aLocal) {
rv = aFile->AppendNative(nsDependentCString("mozilla"));
NS_ENSURE_SUCCESS(rv, rv);
#elif defined(XP_UNIX)
- nsAutoCString folder;
- // Make it hidden (by starting with "."), except when local (the
- // profile is already under ~/.cache or XDG_CACHE_HOME).
- if (!aLocal) folder.Assign('.');
-
if (!profile.IsEmpty()) {
// Skip any leading path characters
const char* profileStart = profile.get();
@@ -1699,32 +1631,16 @@ nsresult nsXREDirProvider::AppendProfilePath(nsIFile* aFile, bool aLocal) {
// On the off chance that someone wanted their folder to be hidden don't
// let it become ".."
- if (*profileStart == '.' && !aLocal) profileStart++;
+ if (*profileStart == '.') profileStart++;
+ // Make it hidden (by starting with ".").
+ nsAutoCString folder(".");
folder.Append(profileStart);
ToLowerCase(folder);
rv = AppendProfileString(aFile, folder.BeginReading());
- } else {
- if (!vendor.IsEmpty()) {
- folder.Append(vendor);
- ToLowerCase(folder);
-
- rv = aFile->AppendNative(folder);
- NS_ENSURE_SUCCESS(rv, rv);
-
- folder.Truncate();
- }
-
- // This can be the case in tests.
- if (!appName.IsEmpty()) {
- folder.Append(appName);
- ToLowerCase(folder);
-
- rv = aFile->AppendNative(folder);
- }
+ NS_ENSURE_SUCCESS(rv, rv);
}
- NS_ENSURE_SUCCESS(rv, rv);
#else
# error "Don't know how to get profile path on your platform"
diff --git a/toolkit/xre/nsXREDirProvider.h b/toolkit/xre/nsXREDirProvider.h
index e55b4e153c56..b9678d4ec577 100644
--- a/toolkit/xre/nsXREDirProvider.h
+++ b/toolkit/xre/nsXREDirProvider.h
@@ -63,15 +63,19 @@ class nsXREDirProvider final : public nsIDirectoryServiceProvider2,
void DoShutdown();
- static nsresult GetUserAppDataDirectory(nsIFile** aFile) {
+ nsresult GetUserAppDataDirectory(nsIFile** aFile) {
return GetUserDataDirectory(aFile, false);
}
- static nsresult GetUserLocalDataDirectory(nsIFile** aFile) {
+ nsresult GetUserLocalDataDirectory(nsIFile** aFile) {
return GetUserDataDirectory(aFile, true);
}
// GetUserDataDirectory gets the profile path from gAppData.
- static nsresult GetUserDataDirectory(nsIFile** aFile, bool aLocal);
+
+ // This function now calls GetAppDir(), so it cannot be static anymore.
+ // The same happens with all the functions (in)directly calling this one (the
+ // rest of Get*Directory functions in this file)
+ nsresult GetUserDataDirectory(nsIFile** aFile, bool aLocal);
/* make sure you clone it, if you need to do stuff to it */
nsIFile* GetGREDir() { return mGREDir; }
@@ -112,9 +116,9 @@ class nsXREDirProvider final : public nsIDirectoryServiceProvider2,
protected:
nsresult GetFilesInternal(const char* aProperty,
nsISimpleEnumerator** aResult);
- static nsresult GetUserDataDirectoryHome(nsIFile** aFile, bool aLocal);
- static nsresult GetSysUserExtensionsDirectory(nsIFile** aFile);
- static nsresult GetSysUserExtensionsDevDirectory(nsIFile** aFile);
+ nsresult GetUserDataDirectoryHome(nsIFile** aFile, bool aLocal);
+ nsresult GetSysUserExtensionsDirectory(nsIFile** aFile);
+ nsresult GetSysUserExtensionsDevDirectory(nsIFile** aFile);
#if defined(XP_UNIX) || defined(XP_MACOSX)
static nsresult GetSystemExtensionsDirectory(nsIFile** aFile);
#endif
diff --git a/xpcom/io/nsAppFileLocationProvider.cpp b/xpcom/io/nsAppFileLocationProvider.cpp
index 915e8bc7361e..81551a8e3893 100644
--- a/xpcom/io/nsAppFileLocationProvider.cpp
+++ b/xpcom/io/nsAppFileLocationProvider.cpp
@@ -15,6 +15,7 @@
#include "nsSimpleEnumerator.h"
#include "prenv.h"
#include "nsCRT.h"
+#include "nsXPCOMPrivate.h" // for XPCOM_FILE_PATH_SEPARATOR
#if defined(MOZ_WIDGET_COCOA)
# include <Carbon/Carbon.h>
# include "nsILocalFileMac.h"
@@ -233,9 +234,8 @@ nsresult nsAppFileLocationProvider::CloneMozBinDirectory(nsIFile** aLocalFile) {
// GetProductDirectory - Gets the directory which contains the application data
// folder
//
-// UNIX : ~/.mozilla/
-// WIN : <Application Data folder on user's machine>\Mozilla
-// Mac : :Documents:Mozilla:
+// UNIX and WIN : <App Folder>/TorBrowser/Data/Browser
+// Mac : <App Folder>/../../TorBrowser/Data/Browser
//----------------------------------------------------------------------------------------
nsresult nsAppFileLocationProvider::GetProductDirectory(nsIFile** aLocalFile,
bool aLocal) {
@@ -247,49 +247,45 @@ nsresult nsAppFileLocationProvider::GetProductDirectory(nsIFile** aLocalFile,
bool exists;
nsCOMPtr<nsIFile> localDir;
-#if defined(MOZ_WIDGET_COCOA)
- FSRef fsRef;
- OSType folderType =
- aLocal ? (OSType)kCachedDataFolderType : (OSType)kDomainLibraryFolderType;
- OSErr err = ::FSFindFolder(kUserDomain, folderType, kCreateFolder, &fsRef);
- if (err) {
- return NS_ERROR_FAILURE;
+ rv = CloneMozBinDirectory(getter_AddRefs(localDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+
+ int levelsToRemove = 1; // In FF21+, bin dir points to browser subdirectory.
+#if defined(XP_MACOSX)
+ levelsToRemove += 2;
+#endif
+ while (localDir && (levelsToRemove > 0)) {
+ // When crawling up the hierarchy, components named "." do not count.
+ nsAutoCString removedName;
+ rv = localDir->GetNativeLeafName(removedName);
+ NS_ENSURE_SUCCESS(rv, rv);
+ bool didRemove = !removedName.Equals(".");
+
+ // Remove a directory component.
+ nsCOMPtr<nsIFile> parentDir;
+ rv = localDir->GetParent(getter_AddRefs(parentDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+ localDir = parentDir;
+
+ if (didRemove) {
+ --levelsToRemove;
+ }
}
- NS_NewLocalFile(EmptyString(), true, getter_AddRefs(localDir));
+
if (!localDir) {
return NS_ERROR_FAILURE;
}
- nsCOMPtr<nsILocalFileMac> localDirMac(do_QueryInterface(localDir));
- rv = localDirMac->InitWithFSRef(&fsRef);
- if (NS_FAILED(rv)) {
- return rv;
- }
-#elif defined(XP_WIN)
- nsCOMPtr<nsIProperties> directoryService =
- do_GetService(NS_DIRECTORY_SERVICE_CONTRACTID, &rv);
- if (NS_FAILED(rv)) {
- return rv;
- }
- const char* prop = aLocal ? NS_WIN_LOCAL_APPDATA_DIR : NS_WIN_APPDATA_DIR;
- rv = directoryService->Get(prop, NS_GET_IID(nsIFile),
- getter_AddRefs(localDir));
- if (NS_FAILED(rv)) {
- return rv;
- }
-#elif defined(XP_UNIX)
- rv = NS_NewNativeLocalFile(nsDependentCString(PR_GetEnv("HOME")), true,
- getter_AddRefs(localDir));
- if (NS_FAILED(rv)) {
- return rv;
- }
-#else
-# error dont_know_how_to_get_product_dir_on_your_platform
-#endif
- rv = localDir->AppendRelativeNativePath(DEFAULT_PRODUCT_DIR);
- if (NS_FAILED(rv)) {
- return rv;
+ rv = localDir->AppendRelativeNativePath(
+ NS_LITERAL_CSTRING("TorBrowser" XPCOM_FILE_PATH_SEPARATOR
+ "Data" XPCOM_FILE_PATH_SEPARATOR "Browser"));
+ NS_ENSURE_SUCCESS(rv, rv);
+
+ if (aLocal) {
+ rv = localDir->AppendNative(NS_LITERAL_CSTRING("Caches"));
+ NS_ENSURE_SUCCESS(rv, rv);
}
+
rv = localDir->Exists(&exists);
if (NS_SUCCEEDED(rv) && !exists) {
@@ -308,10 +304,6 @@ nsresult nsAppFileLocationProvider::GetProductDirectory(nsIFile** aLocalFile,
//----------------------------------------------------------------------------------------
// GetDefaultUserProfileRoot - Gets the directory which contains each user
// profile dir
-//
-// UNIX : ~/.mozilla/
-// WIN : <Application Data folder on user's machine>\Mozilla\Profiles
-// Mac : :Documents:Mozilla:Profiles:
//----------------------------------------------------------------------------------------
nsresult nsAppFileLocationProvider::GetDefaultUserProfileRoot(
nsIFile** aLocalFile, bool aLocal) {
@@ -327,23 +319,6 @@ nsresult nsAppFileLocationProvider::GetDefaultUserProfileRoot(
return rv;
}
-#if defined(MOZ_WIDGET_COCOA) || defined(XP_WIN)
- // These 3 platforms share this part of the path - do them as one
- rv = localDir->AppendRelativeNativePath(NS_LITERAL_CSTRING("Profiles"));
- if (NS_FAILED(rv)) {
- return rv;
- }
-
- bool exists;
- rv = localDir->Exists(&exists);
- if (NS_SUCCEEDED(rv) && !exists) {
- rv = localDir->Create(nsIFile::DIRECTORY_TYPE, 0775);
- }
- if (NS_FAILED(rv)) {
- return rv;
- }
-#endif
-
localDir.forget(aLocalFile);
return rv;
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 13252: Do not store data in the app bundle
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit e9fcc72e0b8b24a7b3292286c88de47c5599f938
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Fri Mar 18 14:20:02 2016 -0400
Bug 13252: Do not store data in the app bundle
When --enable-tor-browser-data-outside-app-dir is enabled,
all user data is stored in a directory named
TorBrowser-Data which is located next to the application directory.
Display an informative error message if the TorBrowser-Data
directory cannot be created due to an "access denied" or a
"read only volume" error.
On Mac OS, add support for the --invisible command line option which
is used by the meek-http-helper to avoid showing an icon for the
helper browser on the dock.
---
toolkit/xre/nsAppRunner.cpp | 76 +++++++++++++++---
toolkit/xre/nsXREDirProvider.cpp | 43 +++++-----
toolkit/xre/nsXREDirProvider.h | 6 ++
xpcom/io/TorFileUtils.cpp | 142 +++++++++++++++++++++++++++++++++
xpcom/io/TorFileUtils.h | 33 ++++++++
xpcom/io/moz.build | 5 ++
xpcom/io/nsAppFileLocationProvider.cpp | 53 +++++-------
7 files changed, 290 insertions(+), 68 deletions(-)
diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
index 3ba04d2b495c..8e76213e7923 100644
--- a/toolkit/xre/nsAppRunner.cpp
+++ b/toolkit/xre/nsAppRunner.cpp
@@ -1891,6 +1891,8 @@ static nsresult ProfileMissingDialog(nsINativeAppSupport* aNative) {
}
}
+// If aUnlocker is NULL, it is also OK for the following arguments to be NULL:
+// aProfileDir, aProfileLocalDir, aResult.
static ReturnAbortOnError ProfileErrorDialog(nsIFile* aProfileDir,
nsIFile* aProfileLocalDir,
ProfileStatus aStatus,
@@ -1899,17 +1901,19 @@ static ReturnAbortOnError ProfileErrorDialog(nsIFile* aProfileDir,
nsIProfileLock** aResult) {
nsresult rv;
- bool exists;
- aProfileDir->Exists(&exists);
- if (!exists) {
- return ProfileMissingDialog(aNative);
+ if (aProfileDir) {
+ bool exists;
+ aProfileDir->Exists(&exists);
+ if (!exists) {
+ return ProfileMissingDialog(aNative);
+ }
}
ScopedXPCOMStartup xpcom;
rv = xpcom.Initialize();
NS_ENSURE_SUCCESS(rv, rv);
- mozilla::Telemetry::WriteFailedProfileLock(aProfileDir);
+ if (aProfileDir) mozilla::Telemetry::WriteFailedProfileLock(aProfileDir);
rv = xpcom.SetWindowCreator(aNative);
NS_ENSURE_SUCCESS(rv, NS_ERROR_FAILURE);
@@ -1999,7 +2003,8 @@ static ReturnAbortOnError ProfileErrorDialog(nsIFile* aProfileDir,
}
} else {
#ifdef MOZ_WIDGET_ANDROID
- if (java::GeckoAppShell::UnlockProfile()) {
+ if (aProfileDir && aProfileLocalDir && aResult &&
+ java::GeckoAppShell::UnlockProfile()) {
return NS_LockProfilePath(aProfileDir, aProfileLocalDir, nullptr,
aResult);
}
@@ -2107,6 +2112,23 @@ static ReturnAbortOnError ShowProfileManager(
return LaunchChild(false);
}
+#ifdef TOR_BROWSER_DATA_OUTSIDE_APP_DIR
+static ProfileStatus CheckTorBrowserDataWriteAccess(nsIFile* aAppDir) {
+ // Check whether we can write to the directory that will contain
+ // TorBrowser-Data.
+ nsCOMPtr<nsIFile> tbDataDir;
+ RefPtr<nsXREDirProvider> dirProvider = nsXREDirProvider::GetSingleton();
+ if (!dirProvider) return PROFILE_STATUS_OTHER_ERROR;
+ nsresult rv =
+ dirProvider->GetTorBrowserUserDataDir(getter_AddRefs(tbDataDir));
+ NS_ENSURE_SUCCESS(rv, PROFILE_STATUS_OTHER_ERROR);
+ nsCOMPtr<nsIFile> tbDataDirParent;
+ rv = tbDataDir->GetParent(getter_AddRefs(tbDataDirParent));
+ NS_ENSURE_SUCCESS(rv, PROFILE_STATUS_OTHER_ERROR);
+ return nsToolkitProfileService::CheckProfileWriteAccess(tbDataDirParent);
+}
+#endif
+
static bool gDoMigration = false;
static bool gDoProfileReset = false;
static nsCOMPtr<nsIToolkitProfile> gResetOldProfile;
@@ -3183,6 +3205,14 @@ int XREMain::XRE_mainInit(bool* aExitFlag) {
if (PR_GetEnv("XRE_MAIN_BREAK")) NS_BREAK();
#endif
+#if defined(XP_MACOSX) && defined(TOR_BROWSER_DATA_OUTSIDE_APP_DIR)
+ bool hideDockIcon = (CheckArg("invisible") == ARG_FOUND);
+ if (hideDockIcon) {
+ ProcessSerialNumber psn = {0, kCurrentProcess};
+ TransformProcessType(&psn, kProcessTransformToBackgroundApplication);
+ }
+#endif
+
IncreaseDescriptorLimits();
#ifdef USE_GLX_TEST
@@ -4031,7 +4061,34 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
return 0;
}
+#if (defined(MOZ_UPDATER) && !defined(MOZ_WIDGET_ANDROID)) || \
+ defined(TOR_BROWSER_DATA_OUTSIDE_APP_DIR)
+ nsCOMPtr<nsIFile> exeFile, exeDir;
+ bool persistent;
+ rv = mDirProvider.GetFile(XRE_EXECUTABLE_FILE, &persistent,
+ getter_AddRefs(exeFile));
+ NS_ENSURE_SUCCESS(rv, 1);
+ rv = exeFile->GetParent(getter_AddRefs(exeDir));
+ NS_ENSURE_SUCCESS(rv, 1);
+#endif
+
rv = NS_NewToolkitProfileService(getter_AddRefs(mProfileSvc));
+#ifdef TOR_BROWSER_DATA_OUTSIDE_APP_DIR
+ if (NS_FAILED(rv)) {
+ // NS_NewToolkitProfileService() returns a generic NS_ERROR_FAILURE error
+ // if creation of the TorBrowser-Data directory fails due to access denied
+ // or because of a read-only disk volume. Do an extra check here to detect
+ // these errors so we can display an informative error message.
+ ProfileStatus status = CheckTorBrowserDataWriteAccess(exeDir);
+ if ((PROFILE_STATUS_ACCESS_DENIED == status) ||
+ (PROFILE_STATUS_READ_ONLY == status)) {
+ ProfileErrorDialog(nullptr, nullptr, status, nullptr, mNativeApp,
+ nullptr);
+ return 1;
+ }
+ }
+ #endif
+
if (rv == NS_ERROR_FILE_ACCESS_DENIED) {
PR_fprintf(PR_STDERR,
"Error: Access was denied while trying to open files in "
@@ -4100,7 +4157,6 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
#if defined(MOZ_UPDATER) && !defined(MOZ_WIDGET_ANDROID)
// Check for and process any available updates
nsCOMPtr<nsIFile> updRoot;
- bool persistent;
rv = mDirProvider.GetFile(XRE_UPDATE_ROOT_DIR, &persistent,
getter_AddRefs(updRoot));
// XRE_UPDATE_ROOT_DIR may fail. Fallback to appDir if failed
@@ -4136,12 +4192,6 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
if (CheckArg("test-process-updates")) {
SaveToEnv("MOZ_TEST_PROCESS_UPDATES=1");
}
- nsCOMPtr<nsIFile> exeFile, exeDir;
- rv = mDirProvider.GetFile(XRE_EXECUTABLE_FILE, &persistent,
- getter_AddRefs(exeFile));
- NS_ENSURE_SUCCESS(rv, 1);
- rv = exeFile->GetParent(getter_AddRefs(exeDir));
- NS_ENSURE_SUCCESS(rv, 1);
ProcessUpdates(mDirProvider.GetGREDir(), exeDir, updRoot, gRestartArgc,
gRestartArgv, mAppData->version);
if (EnvHasValue("MOZ_TEST_PROCESS_UPDATES")) {
diff --git a/toolkit/xre/nsXREDirProvider.cpp b/toolkit/xre/nsXREDirProvider.cpp
index accdcfe7c0b0..09f34911d3cb 100644
--- a/toolkit/xre/nsXREDirProvider.cpp
+++ b/toolkit/xre/nsXREDirProvider.cpp
@@ -46,6 +46,8 @@
#include "mozilla/Telemetry.h"
#include "nsPrintfCString.h"
+#include "TorFileUtils.h"
+
#include <stdlib.h>
#ifdef XP_WIN
@@ -1383,34 +1385,18 @@ nsresult nsXREDirProvider::GetUserDataDirectoryHome(nsIFile** aFile,
return gDataDirHome->Clone(aFile);
}
- nsresult rv = GetAppDir()->Clone(getter_AddRefs(localDir));
+ nsresult rv = GetTorBrowserUserDataDir(getter_AddRefs(localDir));
NS_ENSURE_SUCCESS(rv, rv);
- int levelsToRemove = 1; // In FF21+, appDir points to browser subdirectory.
-#if defined(XP_MACOSX)
- levelsToRemove += 2;
-#endif
- while (localDir && (levelsToRemove > 0)) {
- // When crawling up the hierarchy, components named "." do not count.
- nsAutoCString removedName;
- rv = localDir->GetNativeLeafName(removedName);
- NS_ENSURE_SUCCESS(rv, rv);
- bool didRemove = !removedName.Equals(".");
-
- // Remove a directory component.
- nsCOMPtr<nsIFile> parentDir;
- rv = localDir->GetParent(getter_AddRefs(parentDir));
- NS_ENSURE_SUCCESS(rv, rv);
- localDir = parentDir;
- if (didRemove) --levelsToRemove;
- }
-
- if (!localDir) return NS_ERROR_FAILURE;
-
+#if !defined(ANDROID)
+#ifdef TOR_BROWSER_DATA_OUTSIDE_APP_DIR
+ rv = localDir->AppendNative(NS_LITERAL_CSTRING("Browser"));
+#else
rv = localDir->AppendRelativeNativePath(
- NS_LITERAL_CSTRING("TorBrowser" XPCOM_FILE_PATH_SEPARATOR
- "Data" XPCOM_FILE_PATH_SEPARATOR "Browser"));
+ NS_LITERAL_CSTRING("Data" XPCOM_FILE_PATH_SEPARATOR "Browser"));
+#endif
NS_ENSURE_SUCCESS(rv, rv);
+#endif
if (aLocal) {
rv = localDir->AppendNative(NS_LITERAL_CSTRING("Caches"));
@@ -1516,6 +1502,15 @@ nsresult nsXREDirProvider::GetUserDataDirectory(nsIFile** aFile, bool aLocal) {
return NS_OK;
}
+nsresult nsXREDirProvider::GetTorBrowserUserDataDir(nsIFile** aFile) {
+ NS_ENSURE_ARG_POINTER(aFile);
+ nsCOMPtr<nsIFile> exeFile;
+ bool per = false;
+ nsresult rv = GetFile(XRE_EXECUTABLE_FILE, &per, getter_AddRefs(exeFile));
+ NS_ENSURE_SUCCESS(rv, rv);
+ return TorBrowser_GetUserDataDir(exeFile, aFile);
+}
+
nsresult nsXREDirProvider::EnsureDirectoryExists(nsIFile* aDirectory) {
nsresult rv = aDirectory->Create(nsIFile::DIRECTORY_TYPE, 0700);
diff --git a/toolkit/xre/nsXREDirProvider.h b/toolkit/xre/nsXREDirProvider.h
index b9678d4ec577..2aa2face5974 100644
--- a/toolkit/xre/nsXREDirProvider.h
+++ b/toolkit/xre/nsXREDirProvider.h
@@ -113,6 +113,12 @@ class nsXREDirProvider final : public nsIDirectoryServiceProvider2,
*/
nsresult GetProfileDir(nsIFile** aResult);
+ /**
+ * Get the TorBrowser user data directory by calling the
+ * TorBrowser_GetUserDataDir() utility function.
+ */
+ nsresult GetTorBrowserUserDataDir(nsIFile** aFile);
+
protected:
nsresult GetFilesInternal(const char* aProperty,
nsISimpleEnumerator** aResult);
diff --git a/xpcom/io/TorFileUtils.cpp b/xpcom/io/TorFileUtils.cpp
new file mode 100644
index 000000000000..bddf8d7bbd95
--- /dev/null
+++ b/xpcom/io/TorFileUtils.cpp
@@ -0,0 +1,142 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set ts=8 sts=2 et sw=2 tw=80: */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#include "TorFileUtils.h"
+#include "nsString.h"
+#ifdef MOZ_WIDGET_COCOA
+#include <Carbon/Carbon.h>
+#include "nsILocalFileMac.h"
+#endif
+
+static nsresult GetAppRootDir(nsIFile *aExeFile, nsIFile** aFile);
+
+//-----------------------------------------------------------------------------
+nsresult
+TorBrowser_GetUserDataDir(nsIFile *aExeFile, nsIFile** aFile)
+{
+ NS_ENSURE_ARG_POINTER(aFile);
+ nsCOMPtr<nsIFile> tbDataDir;
+
+#ifdef TOR_BROWSER_DATA_OUTSIDE_APP_DIR
+ nsAutoCString tbDataLeafName(NS_LITERAL_CSTRING("TorBrowser-Data"));
+ nsCOMPtr<nsIFile> appRootDir;
+ nsresult rv = GetAppRootDir(aExeFile, getter_AddRefs(appRootDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+#ifndef XP_MACOSX
+ // On all platforms except Mac OS, we always operate in a "portable" mode
+ // where the TorBrowser-Data directory is located next to the application.
+ rv = appRootDir->GetParent(getter_AddRefs(tbDataDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+ rv = tbDataDir->AppendNative(tbDataLeafName);
+ NS_ENSURE_SUCCESS(rv, rv);
+#else
+ // For Mac OS, determine whether we should store user data in the OS's
+ // standard location (i.e., under ~/Library/Application Support). We use
+ // the OS location if (1) the application is installed in a directory whose
+ // path contains "/Applications" or (2) the TorBrowser-Data directory does
+ // not exist and cannot be created (which probably means we lack write
+ // permission to the directory that contains the application).
+ nsAutoString appRootPath;
+ rv = appRootDir->GetPath(appRootPath);
+ NS_ENSURE_SUCCESS(rv, rv);
+ bool useOSLocation = (appRootPath.Find("/Applications",
+ true /* ignore case */) >= 0);
+ if (!useOSLocation) {
+ // We hope to use the portable (aka side-by-side) approach, but before we
+ // commit to that, let's ensure that we can create the TorBrowser-Data
+ // directory. If it already exists, we will try to use it; if not and we
+ // fail to create it, we will switch to ~/Library/Application Support.
+ rv = appRootDir->GetParent(getter_AddRefs(tbDataDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+ rv = tbDataDir->AppendNative(tbDataLeafName);
+ NS_ENSURE_SUCCESS(rv, rv);
+ bool exists = false;
+ rv = tbDataDir->Exists(&exists);
+ if (NS_SUCCEEDED(rv) && !exists)
+ rv = tbDataDir->Create(nsIFile::DIRECTORY_TYPE, 0700);
+ useOSLocation = NS_FAILED(rv);
+ }
+
+ if (useOSLocation) {
+ // We are using ~/Library/Application Support/TorBrowser-Data. We do not
+ // need to create that directory here because the code in nsXREDirProvider
+ // will do so (and the user should always have write permission for
+ // ~/Library/Application Support; if they do not we have no more options).
+ FSRef fsRef;
+ OSErr err = ::FSFindFolder(kUserDomain, kApplicationSupportFolderType,
+ kCreateFolder, &fsRef);
+ NS_ENSURE_FALSE(err, NS_ERROR_FAILURE);
+ // To convert the FSRef returned by FSFindFolder() into an nsIFile that
+ // points to ~/Library/Application Support, we first create an empty
+ // nsIFile object (no path) and then use InitWithFSRef() to set the
+ // path.
+ rv = NS_NewNativeLocalFile(EmptyCString(), true,
+ getter_AddRefs(tbDataDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+ nsCOMPtr<nsILocalFileMac> dirFileMac = do_QueryInterface(tbDataDir);
+ if (!dirFileMac)
+ return NS_ERROR_UNEXPECTED;
+ rv = dirFileMac->InitWithFSRef(&fsRef);
+ NS_ENSURE_SUCCESS(rv, rv);
+ rv = tbDataDir->AppendNative(tbDataLeafName);
+ NS_ENSURE_SUCCESS(rv, rv);
+ }
+#endif
+
+#elif defined(ANDROID)
+ // Tor Browser Android stores data in the app home directory.
+ const char* homeDir = getenv("HOME");
+ if (!homeDir || !*homeDir)
+ return NS_ERROR_FAILURE;
+ nsresult rv = NS_NewNativeLocalFile(nsDependentCString(homeDir), true,
+ getter_AddRefs(tbDataDir));
+#else
+ // User data is embedded within the application directory (i.e.,
+ // TOR_BROWSER_DATA_OUTSIDE_APP_DIR is not defined).
+ nsresult rv = GetAppRootDir(aExeFile, getter_AddRefs(tbDataDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+ rv = tbDataDir->AppendNative(NS_LITERAL_CSTRING("TorBrowser"));
+ NS_ENSURE_SUCCESS(rv, rv);
+#endif
+
+ tbDataDir.forget(aFile);
+ return NS_OK;
+}
+
+static nsresult
+GetAppRootDir(nsIFile *aExeFile, nsIFile** aFile)
+{
+ NS_ENSURE_ARG_POINTER(aExeFile);
+ NS_ENSURE_ARG_POINTER(aFile);
+ nsCOMPtr<nsIFile> appRootDir = aExeFile;
+
+ int levelsToRemove = 1; // Remove firefox (the executable file).
+#if defined(XP_MACOSX)
+ levelsToRemove += 2; // On Mac OS, we must also remove Contents/MacOS.
+#endif
+ while (appRootDir && (levelsToRemove > 0)) {
+ // When crawling up the hierarchy, components named "." do not count.
+ nsAutoCString removedName;
+ nsresult rv = appRootDir->GetNativeLeafName(removedName);
+ NS_ENSURE_SUCCESS(rv, rv);
+ bool didRemove = !removedName.Equals(".");
+
+ // Remove a directory component.
+ nsCOMPtr<nsIFile> parentDir;
+ rv = appRootDir->GetParent(getter_AddRefs(parentDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+ appRootDir = parentDir;
+
+ if (didRemove)
+ --levelsToRemove;
+ }
+
+ if (!appRootDir)
+ return NS_ERROR_FAILURE;
+
+ appRootDir.forget(aFile);
+ return NS_OK;
+}
diff --git a/xpcom/io/TorFileUtils.h b/xpcom/io/TorFileUtils.h
new file mode 100644
index 000000000000..d5e86abf9685
--- /dev/null
+++ b/xpcom/io/TorFileUtils.h
@@ -0,0 +1,33 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set ts=8 sts=2 et sw=2 tw=80: */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#ifndef TorFileUtils_h__
+#define TorFileUtils_h__
+
+#include "nsIFile.h"
+
+/**
+ * TorBrowser_GetUserDataDir
+ *
+ * Retrieve the Tor Browser user data directory.
+ * When built with --enable-tor-browser-data-outside-app-dir, the directory
+ * is next to the application directory, except on Mac OS where it may be
+ * there or it may be at ~/Library/Application Support/TorBrowser-Data (the
+ * latter location is used if the .app bundle is in a directory whose path
+ * contains /Applications or if we lack write access to the directory that
+ * contains the .app).
+ * When built without --enable-tor-browser-data-outside-app-dir, this
+ * directory is TorBrowser.app/TorBrowser.
+ *
+ * @param aExeFile The firefox executable.
+ * @param aFile Out parameter that is set to the Tor Browser user data
+ * directory.
+ * @return NS_OK on success. Error otherwise.
+ */
+extern nsresult
+TorBrowser_GetUserDataDir(nsIFile *aExeFile, nsIFile** aFile);
+
+#endif // !TorFileUtils_h__
diff --git a/xpcom/io/moz.build b/xpcom/io/moz.build
index a165b491bc56..b0eb74f4c56d 100644
--- a/xpcom/io/moz.build
+++ b/xpcom/io/moz.build
@@ -86,6 +86,7 @@ EXPORTS += [
'nsUnicharInputStream.h',
'nsWildCard.h',
'SpecialSystemDirectory.h',
+ 'TorFileUtils.h',
]
EXPORTS.mozilla += [
@@ -135,6 +136,10 @@ UNIFIED_SOURCES += [
'SpecialSystemDirectory.cpp',
]
+SOURCES += [
+ 'TorFileUtils.cpp',
+]
+
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
SOURCES += [
'CocoaFileUtils.mm',
diff --git a/xpcom/io/nsAppFileLocationProvider.cpp b/xpcom/io/nsAppFileLocationProvider.cpp
index 81551a8e3893..9f95e5cbec2d 100644
--- a/xpcom/io/nsAppFileLocationProvider.cpp
+++ b/xpcom/io/nsAppFileLocationProvider.cpp
@@ -28,6 +28,8 @@
# include <sys/param.h>
#endif
+#include "TorFileUtils.h"
+
// WARNING: These hard coded names need to go away. They need to
// come from localizable resources
@@ -234,8 +236,14 @@ nsresult nsAppFileLocationProvider::CloneMozBinDirectory(nsIFile** aLocalFile) {
// GetProductDirectory - Gets the directory which contains the application data
// folder
//
+#ifdef TOR_BROWSER_DATA_OUTSIDE_APP_DIR
+// UNIX and WIN : <App Folder>/../TorBrowser-Data/Browser
+// Mac : <App Folder>/../../../TorBrowser-Data/Browser OR
+// ~/Library/Application Support/TorBrowser-Data/Browser
+#else
// UNIX and WIN : <App Folder>/TorBrowser/Data/Browser
// Mac : <App Folder>/../../TorBrowser/Data/Browser
+#endif
//----------------------------------------------------------------------------------------
nsresult nsAppFileLocationProvider::GetProductDirectory(nsIFile** aLocalFile,
bool aLocal) {
@@ -243,42 +251,25 @@ nsresult nsAppFileLocationProvider::GetProductDirectory(nsIFile** aLocalFile,
return NS_ERROR_INVALID_ARG;
}
- nsresult rv;
+ nsresult rv = NS_ERROR_UNEXPECTED;
bool exists;
- nsCOMPtr<nsIFile> localDir;
+ nsCOMPtr<nsIFile> localDir, exeFile;
- rv = CloneMozBinDirectory(getter_AddRefs(localDir));
+ nsCOMPtr<nsIProperties> directoryService(
+ do_GetService(NS_DIRECTORY_SERVICE_CONTRACTID, &rv));
+ NS_ENSURE_SUCCESS(rv, rv);
+ rv = directoryService->Get(XRE_EXECUTABLE_FILE, NS_GET_IID(nsIFile),
+ getter_AddRefs(exeFile));
+ NS_ENSURE_SUCCESS(rv, rv);
+ rv = TorBrowser_GetUserDataDir(exeFile, getter_AddRefs(localDir));
NS_ENSURE_SUCCESS(rv, rv);
- int levelsToRemove = 1; // In FF21+, bin dir points to browser subdirectory.
-#if defined(XP_MACOSX)
- levelsToRemove += 2;
-#endif
- while (localDir && (levelsToRemove > 0)) {
- // When crawling up the hierarchy, components named "." do not count.
- nsAutoCString removedName;
- rv = localDir->GetNativeLeafName(removedName);
- NS_ENSURE_SUCCESS(rv, rv);
- bool didRemove = !removedName.Equals(".");
-
- // Remove a directory component.
- nsCOMPtr<nsIFile> parentDir;
- rv = localDir->GetParent(getter_AddRefs(parentDir));
- NS_ENSURE_SUCCESS(rv, rv);
- localDir = parentDir;
-
- if (didRemove) {
- --levelsToRemove;
- }
- }
-
- if (!localDir) {
- return NS_ERROR_FAILURE;
- }
-
+#ifdef TOR_BROWSER_DATA_OUTSIDE_APP_DIR
+ rv = localDir->AppendNative(NS_LITERAL_CSTRING("Browser"));
+#else
rv = localDir->AppendRelativeNativePath(
- NS_LITERAL_CSTRING("TorBrowser" XPCOM_FILE_PATH_SEPARATOR
- "Data" XPCOM_FILE_PATH_SEPARATOR "Browser"));
+ NS_LITERAL_CSTRING("Data" XPCOM_FILE_PATH_SEPARATOR "Browser"));
+#endif
NS_ENSURE_SUCCESS(rv, rv);
if (aLocal) {
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] No Bug, mozilla-esr78 repo-update HSTS HPKP remote-settings tld-suffixes - a=repo-update r=jcristau
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit 5d83ea1c56d176b66075d2bc35042e02b15983b5
Author: ffxbld <ffxbld(a)mozilla.com>
Date: Mon Feb 15 14:50:19 2021 +0000
No Bug, mozilla-esr78 repo-update HSTS HPKP remote-settings tld-suffixes - a=repo-update r=jcristau
Differential Revision: https://phabricator.services.mozilla.com/D105196
---
netwerk/dns/effective_tld_names.dat | 4 +
security/manager/ssl/StaticHPKPins.h | 2 +-
security/manager/ssl/nsSTSPreloadList.inc | 1691 ++++++++++++++++----
.../dumps/blocklists/addons-bloomfilters.json | 2 +-
.../dumps/security-state/intermediates.json | 2 +-
5 files changed, 1429 insertions(+), 272 deletions(-)
diff --git a/netwerk/dns/effective_tld_names.dat b/netwerk/dns/effective_tld_names.dat
index 038b492cb487..a40cba43c31f 100644
--- a/netwerk/dns/effective_tld_names.dat
+++ b/netwerk/dns/effective_tld_names.dat
@@ -11667,6 +11667,10 @@ tr.eu.org
uk.eu.org
us.eu.org
+// Eurobyte : https://eurobyte.ru
+// Submitted by Evgeniy Subbotin <e.subbotin(a)eurobyte.ru>
+eurodir.ru
+
// Evennode : http://www.evennode.com/
// Submitted by Michal Kralik <support(a)evennode.com>
eu-1.evennode.com
diff --git a/security/manager/ssl/StaticHPKPins.h b/security/manager/ssl/StaticHPKPins.h
index 00868f4ff10d..43b6ecf5d0f9 100644
--- a/security/manager/ssl/StaticHPKPins.h
+++ b/security/manager/ssl/StaticHPKPins.h
@@ -1164,4 +1164,4 @@ static const TransportSecurityPreload kPublicKeyPinningPreloadList[] = {
static const int32_t kUnknownId = -1;
-static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1621521775744000);
+static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1621867387124000);
diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc
index 1fa0af01e9c1..42bdecaa60ab 100644
--- a/security/manager/ssl/nsSTSPreloadList.inc
+++ b/security/manager/ssl/nsSTSPreloadList.inc
@@ -8,7 +8,7 @@
/*****************************************************************************/
#include <stdint.h>
-const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
+const PRTime gPreloadListExpirationTime = INT64_C(1624286577806000);
%%
0--1.de, 1
0-1.party, 1
@@ -66,7 +66,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
0057552.com, 1
00660066.net, 1
0067552.com, 1
-006d88.com, 1
00770077.net, 1
0077552.com, 1
007d88.com, 1
@@ -181,7 +180,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
03d88.com, 1
03d88.net, 1
03region.ga, 1
-0404.co.il, 1
040552.com, 0
041552.com, 0
042552.com, 0
@@ -325,6 +323,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
0c3.de, 1
0cdn.ga, 1
0cdn.net, 1
+0cean.tk, 1
0chan.club, 1
0chan.pl, 1
0chanru.net, 1
@@ -444,7 +443,9 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
100up.de, 1
100up.org, 1
100uuuu.com, 1
+100v.org, 1
100visits.tk, 1
+100voprosov.tk, 1
100vvvv.com, 1
100words.ca, 1
100yyyy.com, 1
@@ -917,6 +918,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
123roulement.be, 1
123roulement.com, 1
123seo.ml, 1
+123site.tk, 1
123start.pl, 1
123termpapers.com, 1
123viajando.com, 1
@@ -1064,6 +1066,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
152433.com, 1
1527web.com, 1
152z6.com, 1
+1536.cf, 1
153z6.com, 1
154233.com, 1
154552.com, 0
@@ -1373,7 +1376,8 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
191090.com, 1
1911trust.com, 1
1912x.com, 1
-192.io, 0
+192.io, 1
+1920.tk, 1
1920301.com, 1
1920302.com, 1
1920303.com, 1
@@ -1612,7 +1616,10 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
2018j95.com, 1
2019j95.com, 1
2020j95.com, 1
+2021.dog, 1
2021j95.com, 1
+2021sb.com, 1
+2022.dog, 1
2022class1.ga, 1
2022j95.com, 1
2023j95.com, 1
@@ -1855,6 +1862,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
247a.co.uk, 1
247able.com, 1
247courierservices.co.in, 1
+247dns.net, 1
247healthshop.com, 1
247medplan.com, 1
247megamart.com.au, 1
@@ -2080,6 +2088,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
2nics.net, 1
2nimpresores.es, 1
2of.me, 1
+2or3.tk, 1
2pay.fr, 1
2q.ru, 1
2rsc.com, 1
@@ -2713,10 +2722,8 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
396302.com, 1
396303.com, 1
396304.com, 1
-396305.com, 1
3963aa.com, 1
3963bb.com, 1
-3963cc.com, 1
3963dd.com, 1
3963ee.com, 1
396422.com, 1
@@ -2856,6 +2863,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
3lot.ru, 1
3mediaweb.com, 1
3n5b.com, 1
+3ncompanies.com, 1
3niu10.com, 1
3niu12.com, 1
3niu13.com, 1
@@ -2893,7 +2901,6 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
3queens.cz, 1
3queens.io, 1
3r.org.uk, 1
-3ringenieria.com, 1
3rr0r.com, 1
3rr0r.net, 1
3rr0r.org, 1
@@ -2913,6 +2920,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
3smail.de, 1
3speak.co, 1
3techjournal.cf, 1
+3trees.tk, 1
3v4l.org, 1
3varta.com.ua, 1
3vlnaeet.cz, 1
@@ -3328,6 +3336,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
4seo.ml, 1
4share.tv, 1
4sics.se, 1
+4sjnc.org, 1
4smart.cz, 1
4smart.house, 1
4tgw34.tk, 1
@@ -3349,6 +3358,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
4x4tt.com, 1
4xiaomi.ru, 1
4xlabs.co, 1
+4y4.me, 1
4y4a-arts.space, 1
4yuz.net, 1
50-ottenkov.tk, 1
@@ -4151,6 +4161,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
666888bet.com, 1
66689j.com, 1
666999bet.com, 1
+666b58.com, 1
666bet86.com, 1
666btt.net, 1
666k8.com, 1
@@ -4305,7 +4316,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
67836565.com, 1
678365app.com, 1
678365cc.com, 1
-678365t.com, 1
+678365t.com, 0
678678365.com, 1
67877777.com, 1
6789666365.com, 1
@@ -4419,6 +4430,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
6thmarch.com, 1
6upagent.com, 1
6wbz.com, 1
+6yue.org, 1
7-it.ml, 1
700.az, 1
700bbbb.com, 1
@@ -4891,6 +4903,8 @@ const PRTime gPreloadListExpirationTime = INT64_C(1623940966680000);
8198d.com, 1
8198d88.com, 1
81d88.com, 1
+81sese.net, 1
+81sese.org, 1
81uc.com, 1
8200d.com, 1
8202d.com, 1
@@ -6395,6 +6409,7 @@ aajkakavi.in, 1
aakf.org.pk, 1
aalalbayt.com, 1
aalalbayt.net, 1
+aalborgroklub.dk, 1
aaliyahclothing.com, 1
aalstmotors-usedcars.be, 0
aaltocapital.com, 1
@@ -6472,6 +6487,7 @@ abandoned.photo, 1
abandoned.tk, 1
abandonedmines.gov, 1
abanilla.tk, 1
+abaranov.cf, 1
abaranov.gq, 1
abarquinha.tk, 1
abasalehngo.com, 1
@@ -6509,6 +6525,7 @@ abcdthesis.net, 1
abceducationacademy.com, 1
abcempreendimentos.com.br, 1
abcensax.tk, 1
+abcgruppen.se, 1
abcheck.se, 1
abckam.com, 1
abclyrics.tk, 1
@@ -6540,13 +6557,13 @@ abe-medical.jp, 1
abecodes.net, 1
abeilles-idapi.fr, 0
abelbarretto.tk, 1
+abelburners.co.uk, 1
abellagranitecountertops.com, 1
abellanillos.com, 1
abelles.cf, 1
abelles.gq, 1
abelles.ml, 1
abelles.tk, 1
-abelordbalagtas.com, 1
abelrubio.me, 1
abelsflooringandtile.com, 1
abemarx.hu, 1
@@ -6566,6 +6583,7 @@ abhayaranya.com, 1
abhijitvalluri.com, 1
abhisharma.me, 1
abhishekkabdijain.tk, 1
+abi-2017.tk, 1
abi-fvs.de, 1
abi95oha.de, 1
abiapp.net, 1
@@ -6650,7 +6668,9 @@ about-jewelry.tk, 1
about-sects-and-cults.tk, 1
about-ti.me, 1
aboutamit.com, 1
+aboutandroid.tk, 1
aboutassistedliving.org, 0
+aboutconstruction.ga, 1
aboutconstruction.gq, 1
aboutconstruction.ml, 1
aboutdelphi.tk, 1
@@ -6660,7 +6680,9 @@ abouthistory.tk, 1
abouthrm.nl, 1
aboutict.nl, 1
aboutlegal.nl, 1
+aboutmarketing.ga, 1
aboutmedia.nl, 1
+aboutmedicine.tk, 1
aboutmoney.tk, 1
aboutmusicals.tk, 1
aboutmyip.info, 1
@@ -6707,6 +6729,7 @@ absat.tk, 1
absb.ca, 1
abschleppdienst-hilfe.de, 1
abseits.org, 0
+absentia.cf, 1
absolem.cc, 1
absoluav.com, 1
absoluconseils.com, 1
@@ -6720,6 +6743,7 @@ absolutebritney.com, 1
absolutedouble.co.uk, 1
absoluterush.net, 1
absolutezero.tk, 1
+absolution.ga, 1
absolutperm.tk, 1
absolutviajes.com, 1
absolutweb.tk, 1
@@ -6901,6 +6925,7 @@ acerosfortuna.com.mx, 1
aceshop702.com, 1
acessoeducacao.com, 1
acetudy.com, 1
+aceweb.ga, 1
acftienda.tk, 1
acfun.eu.org, 1
acg.mn, 1
@@ -6955,6 +6980,7 @@ acluva.org, 0
acmegamer.com, 1
acmi.fr, 1
acmilan.gq, 1
+acmilan.ml, 1
acnh.info, 1
acodess.com, 1
acolle.co.jp, 1
@@ -7018,6 +7044,8 @@ actgruppe.de, 0
actheater.com, 1
acticu.com, 1
actiefgeld.nl, 0
+actievloerkleden.com, 1
+actievloerkleden.nl, 1
actilove.ch, 1
actimap.ga, 1
acting.by, 1
@@ -7071,6 +7099,7 @@ actorsroom.com, 1
actrices.tk, 1
actris.ac.cy, 1
actro.ga, 1
+actro.gq, 1
actserv.co.ke, 1
actualadmins.com, 1
actualidadblog.com, 1
@@ -7107,6 +7136,8 @@ acusticocoffeehouse.com, 1
acutane.ga, 1
acutehoest.nl, 1
acutewealthadvisors.com, 1
+acutron.net, 1
+acutron.org, 1
acuvate.com, 1
acvan.net, 1
acwcerts.co.uk, 1
@@ -7224,6 +7255,7 @@ addiko.net, 1
addiko.rs, 1
addisoncrump.info, 1
addlink.ga, 1
+addlink.gq, 1
addmefast.tk, 1
addnewsite.tk, 1
addnine.com, 1
@@ -7236,11 +7268,13 @@ addscoop.ml, 1
addstar.jp, 0
addtoany.com, 1
adduono.com, 1
+addurls.tk, 1
addydari.us, 1
addyourlink.tk, 1
adec-emsa.ae, 1
adelaidecc.com.au, 0
adelaidecoldlaser.com.au, 1
+adelaideskintherapy.com.au, 1
adelebeals.com, 1
adelgace.top, 1
adelicious.co, 1
@@ -7250,6 +7284,7 @@ adeline.mobi, 1
adelonline.tk, 1
ademaulana.tk, 1
ademy.ml, 1
+adenoma.tk, 1
adenopatia.com, 1
adenos.in, 1
adenplus1.com, 1
@@ -7297,6 +7332,7 @@ adiprospero.it, 1
adiraku.co.id, 1
adiscorduser.com, 1
aditro.com, 1
+adje-fansite.tk, 1
adlerneves.com, 1
adlerneves.com.br, 1
adlerosn.com, 1
@@ -7329,6 +7365,7 @@ adminlinux.pl, 1
adminmare.4lima.de, 1
admino.cz, 1
adminova.tk, 1
+adminresurs.tk, 1
adminrezo.fr, 1
adminton.eu, 1
admiralshipsupplier.com, 0
@@ -7409,6 +7446,7 @@ adrianwalls.tk, 1
adrianweb.ml, 1
adriarae.xyz, 1
adriatic.hr, 1
+adriatika.tk, 1
adriatrans.ga, 1
adrienjacquierbret.com, 1
adrienkohlbecker.com, 1
@@ -7462,6 +7500,8 @@ advairprice.ga, 1
advaith.fun, 1
advaith.io, 1
advaithbot.xyz, 1
+advaithnikhi.ml, 1
+advaithnikhi.tk, 1
advance.hr, 1
advanced-fleet-services.com, 1
advanced-online.eu, 1
@@ -7532,12 +7572,15 @@ adversus-web-staging.tk, 0
advertis.biz, 1
advertising-design.tk, 1
advertisingcompany.tk, 1
+advertisment.ga, 1
adveszker.hu, 1
+advice24.tk, 1
advirk.tk, 1
advisercentre.com.au, 1
adviserplus.com, 1
advmaster.cf, 1
advocatae.com, 1
+advocatburo.tk, 1
advocaten-avocats.be, 1
advocatize.com, 1
advocator.ca, 1
@@ -7651,6 +7694,7 @@ aeonct.org, 1
aepx.org, 1
aeradesign.com, 1
aerandir.fr, 1
+aeraustral.com.au, 1
aeravo.co, 1
aeravo.org, 1
aerelon.de, 1
@@ -7664,21 +7708,30 @@ aeroalbrook.com, 1
aerobasegroup.com, 1
aerobatt.com, 1
aerobotz.com, 1
+aeroexpress.tk, 1
aeroflot.gq, 1
aeroframe.tk, 1
+aeroglass.ml, 1
+aerogrill.tk, 1
+aeroklub.tk, 1
aerolineasvenezolanas.net, 1
aeronautix.com, 1
aeronote.net, 1
+aeroplan.tk, 1
aeropole.de, 1
aeropole.eu, 1
+aeroport.gq, 1
aerorecords.net, 1
aerosoul.tk, 1
aerospace-schools.com, 1
aerospacearchives.tk, 1
+aerospacescience.ml, 1
aerotechcoatings.com, 1
aerowillys.tk, 1
+aerozone.tk, 1
aertel.ie, 1
aes-freundeskreis.de, 1
+aes.org.pt, 1
aessencia.com.br, 1
aestheticsplus.xyz, 1
aesthetikpiercing.de, 1
@@ -7711,8 +7764,6 @@ afbrunswick.com, 1
afbryt.com, 1
afbtoto.com, 1
afc-capital.mx, 1
-afcmrs.org, 1
-afcmrsfeedback.org, 1
afcmrstest.org, 1
afdah.se, 1
affaire.com, 1
@@ -7720,7 +7771,13 @@ affairefacile.net, 1
affairemateriaux.fr, 1
affarsnatverk.nu, 1
affcoupon.com, 1
+affcreations.com, 1
+affectionate.tk, 1
affektblog.de, 1
+affilia.tk, 1
+affiliateprogram.ga, 1
+affiliateprograms.cf, 1
+affiliateprograms.gq, 1
affiliatetest.azurewebsites.net, 1
affilowinners.com, 1
affily.io, 1
@@ -7781,7 +7838,6 @@ africa.dating, 1
africaindemander.tk, 1
africalebanon.tk, 1
africanchildrenschoir.com, 1
-africanewstest0.ml, 1
africangreyparrotscare.com, 1
africanhosting.ml, 1
africankitchen.gallery, 1
@@ -8062,11 +8118,13 @@ aga-eiken.tk, 1
agaa41.com, 1
agaclinicaltrials.com, 1
agagent.vip, 1
+against.tk, 1
agalloch.tk, 1
agambarta.com, 0
agambition.eu, 1
agamsecurity.ch, 0
agape24-7.com, 1
+agapelove.tk, 1
agar.kr, 1
agargiulo.com, 1
agari-mj.com, 1
@@ -8105,6 +8163,7 @@ agenciadigitalbolivia.com, 1
agenciaempleo.tk, 1
agenciafiscal.pe, 1
agenciaingenium.cl, 1
+agenciarubik.com, 1
agencxy.ga, 1
agencyalacarte.com, 1
agencybeam.com, 1
@@ -8115,16 +8174,20 @@ agenda21senden.de, 1
agendadelvolo.info, 1
agendas.tk, 1
agendaspectacles.fr, 1
+agent-007.tk, 1
agent-grow.com, 1
agent-ubezpieczeniowy.com.pl, 1
+agent47.tk, 1
agentedebienes.com, 1
agenteit.com, 1
agentfirewall.com, 1
agentpoint.website, 1
agentprocessing.com, 1
agentrisk.com, 0
+agentum.ga, 1
agentur-circumplex.de, 1
agentur-pottkinder.de, 1
+agentz.ga, 1
agenux.org, 1
agenziaimmobiliarezeta.it, 1
agenziapubblicitaria.milano.it, 1
@@ -8158,6 +8221,7 @@ agiley.se, 1
agilicus.ca, 1
agilicus.com, 1
agility-westvlaanderen.tk, 1
+agill.me, 1
aging.gov, 1
agingstats.gov, 1
agingstop.net, 1
@@ -8226,6 +8290,8 @@ aglucky.com, 1
agm4545.com, 1
agnesk.blog, 1
agnesmatilda.tk, 1
+agnestakeaway.be, 1
+agneta.tk, 1
agnosia.tk, 1
agnosticism.tk, 1
agonpro.ch, 1
@@ -8235,6 +8301,7 @@ agora-soft.cf, 1
agora.ru, 1
agoradanza.tk, 1
agoradesk.com, 1
+agoravm.tk, 1
agoravox.fr, 1
agoravox.it, 1
agoravox.tv, 1
@@ -8261,6 +8328,7 @@ agptco.com, 1
agr.asia, 1
agralines.tk, 1
agrargruppe.tk, 1
+agregator.tk, 1
agrekov.ru, 1
agremo.com, 0
agreor.com, 1
@@ -8278,20 +8346,29 @@ agrisicilia.it, 1
agro-dom.solutions, 1
agro-ferma.tk, 1
agro-forestry.net, 1
+agrocare.tk, 1
+agroclan.tk, 1
agroclefic.com, 1
+agroclimat.tk, 1
agroconsultoraplus.com, 1
agrodoki.hu, 1
agrodronechile.cl, 1
agroexp.com.ua, 0
agrofetch.co.ke, 1
+agrokredit.ga, 1
agrolab.dk, 1
+agroland.tk, 1
+agrolife.tk, 1
agromotorsburzaco.com, 1
agron.tk, 1
agronomi.tk, 1
agronomict.tk, 1
+agropark.tk, 1
agroplas.cf, 1
agropool.tk, 1
agropotter.com.ua, 1
+agrospan.ga, 1
+agroteam.tk, 1
agrotek.lt, 1
agrotender.com.ua, 1
agroxxi.ru, 0
@@ -8311,7 +8388,11 @@ aguiascarecas.org, 1
aguidetolovelossanddesperation.com, 1
aguilarsoluciones.com, 1
agujetas.tk, 1
+agul.tk, 1
agung-furniture.com, 1
+agustin.cf, 1
+agustin.ml, 1
+agusto.tk, 1
agviet88.com, 1
agvip1000.com, 1
agvip168.com, 1
@@ -8389,9 +8470,12 @@ aiat.net, 1
aibaoyou.com, 1
aibiying.com, 1
aibolit-apteka.tk, 1
+aibolit.ga, 1
+aibolit.ml, 1
aibolitik.tk, 1
aibsoftware.mx, 1
aicamilwaukee.com, 1
+aiccc.com.au, 1
aicevote.com, 1
aicfb.in, 1
aicial.co.uk, 1
@@ -8461,6 +8545,7 @@ aimdigital.tk, 1
aimeeandalec.com, 1
aimgroup.co.tz, 1
aimi-salon.com, 1
+aimless.tk, 1
aimlessempire.tk, 1
aimmail.info, 1
aimotive.com, 1
@@ -8473,10 +8558,13 @@ ainvest.de, 1
ainzu.net, 1
aioboot.com, 1
aiois.com, 1
+aip.ai, 1
aipbarcelona.com, 1
aiphyron.com, 1
aipi.de, 1
aipi.tel, 1
+aiplabs.ai, 1
+aiplabs.io, 1
aipor.pt, 0
aiprecipecollection.com, 1
air-business.tk, 1
@@ -8485,9 +8573,12 @@ air-flot.tk, 1
air-planning.co.jp, 1
air-rishon.tk, 1
air-shots.ch, 0
+air-soft.ga, 1
air-techniques.fr, 1
+air-ticket.ga, 1
air-we-go.co.uk, 1
airalamo.com, 1
+airbender.tk, 1
airbnb.ae, 1
airbnb.at, 1
airbnb.be, 1
@@ -8601,6 +8692,8 @@ airfareshotels.com, 1
airfield.gq, 1
airfocused.com, 1
airfoto.tk, 1
+airfox.cf, 1
+airfox.gq, 1
airhart.me, 1
airhelp.com, 1
airhorn.de, 1
@@ -8620,6 +8713,7 @@ airlinesettlement.com, 1
airloge.com, 1
airmag.tk, 1
airmail.cc, 0
+airman.cf, 1
airmash.online, 0
airmaxinflatables.com, 1
airnode.ga, 1
@@ -8629,6 +8723,7 @@ airpbx.com, 1
airplanet.tk, 1
airplay-inflatable-hire.co.uk, 1
airplayradio.nl, 1
+airpoint-compressors.nl, 1
airport-car-rental.tk, 1
airport-charlotte.com, 1
airportal.cn, 1
@@ -8663,6 +8758,7 @@ airy.host, 1
airzone.tk, 1
ais.fashion, 1
aisanity.com, 1
+aischepervers-porn.com, 1
aisedomains.ga, 1
aisi316l.net, 1
aissel.com, 1
@@ -8682,6 +8778,8 @@ aivan.ai, 1
aivd.lol, 1
aiwosq.cn, 1
aixamfinancialservices.nl, 1
+aizxxs.com, 1
+aizxxs.net, 1
aja.de, 1
ajarope.com, 1
ajaxed.net, 1
@@ -8701,6 +8799,9 @@ ajman-realty.ga, 1
ajmara.pl, 1
ajnah.net, 1
ajnasz.hu, 1
+ajoliveira.com, 1
+ajoliveira.net, 1
+ajoliveira.org, 1
ajramos.tk, 1
ajsb85.com, 1
ajt.io, 1
@@ -8711,7 +8812,9 @@ ajwebsolutions.com, 0
ak-design.tk, 1
ak-online.tk, 1
ak-varazdin.hr, 1
+ak2000.tk, 1
ak47-miyamoto.spdns.org, 1
+ak68.tk, 1
ak96.tk, 1
aka.ms, 1
akaal.pw, 1
@@ -8835,11 +8938,13 @@ al-capone.ga, 1
al-capone.tk, 1
al-f.net, 1
al3xpro.com, 1
+alaattinkaraca.tk, 1
alab.space, 1
alabalaporto.tk, 1
alabamaag.gov, 1
alabamacoastalradiology.com, 1
alabamadebtrelief.org, 1
+alabamaonlinedivorce.com, 1
alabn.com, 1
alaboard.com, 1
alabordage.fr, 1
@@ -8902,6 +9007,7 @@ alaturkaonline.com, 1
alaundeil.xyz, 1
alaunus.com, 1
alb-flirt.de, 1
+alb-media.tk, 1
albagold.tk, 1
albagora.nl, 1
albakham.eu.org, 1
@@ -8954,6 +9060,7 @@ alcaldia.info, 1
alcamilo.cloudns.cc, 1
alcantara.cf, 1
alcapalis.tk, 1
+alcapone.gq, 1
alcar.tk, 1
alcaralifusi.tk, 1
alcasan.de, 1
@@ -9009,11 +9116,13 @@ alecrimacessorios.com.br, 1
alecrust.com, 1
aleftinka.tk, 1
alegromania.tk, 1
+alejandrocruz.es, 1
alejandrophones.com.mx, 1
alek.in, 1
aleks.com, 1
aleksandar-vukmirovic.tk, 1
aleksanders.tk, 1
+alekseevaleksandr.cf, 1
alekseevski.tk, 1
aleksejjocic.tk, 1
aleksib.fi, 1
@@ -9037,11 +9146,13 @@ alessandroonline.com.br, 1
alessandrotravel.com, 1
alessandroz.ddns.net, 1
aletm.it, 1
+alevi-forum.tk, 1
alevi.tk, 1
alex-n.net, 1
alex-ross.co.uk, 1
alex-weigle.shop, 1
alex97000.de, 1
+alexaconnect.tk, 1
alexalist.tk, 1
alexandbonnie.com, 1
alexander-beck.eu, 1
@@ -9069,6 +9180,8 @@ alexandrepedrosa.com, 1
alexandrevicente.net, 1
alexandrite.cf, 1
alexandros.io, 1
+alexarthur.net, 1
+alexauto.tk, 1
alexbaker.org, 1
alexberts.ch, 1
alexbresnahan.com, 1
@@ -9107,6 +9220,7 @@ alexlambertz.de, 1
alexlombardo.tk, 1
alexlouden.com, 1
alexmainz.com, 1
+alexmedia.tk, 1
alexmerkel.com, 1
alexmerkel.me, 1
alexmerkel.xyz, 1
@@ -9136,6 +9250,7 @@ alexwardweb.com, 1
alexweber.tk, 1
alexyang.me, 1
aleynamasajsalonu.gq, 1
+alfa-auto.tk, 1
alfa-books.ga, 1
alfa-host.ml, 1
alfa-music.tk, 1
@@ -9178,7 +9293,6 @@ algeriaweb.tk, 1
algerie-music.tk, 1
alghadpowersolutions.com, 1
alghanimcatering.com, 1
-alginformatica.es, 1
algoarmada.com, 1
algodoncotton.com, 1
algoentremanos.com, 1
@@ -9225,6 +9339,7 @@ aliexfantaisies.com, 1
alifeadjacent.com, 1
alighierirescaldina.it, 1
alignedchiro.org, 1
+alignedweb.com, 1
alignminds.com, 1
alignrs.com, 1
alignthoughts.com, 1
@@ -9283,11 +9398,13 @@ alkemi-si.fr, 1
alko-centr.ru, 1
alko-stop.cf, 1
alko-stop.ml, 1
+alkoferma.gq, 1
alkogol.ga, 1
alkopedia.tk, 1
alkor.tk, 1
alkozeroks-wiki.ru, 1
alkusin.net, 1
+all-blogs.tk, 1
all-bronza.ru, 1
all-connect.net, 0
all-credits.cf, 1
@@ -9296,16 +9413,23 @@ all-fashion-schools.com, 1
all-for-u.tk, 1
all-gsm-solutions.tk, 1
all-markup-news.com, 1
+all-music.tk, 1
+all-pics.tk, 1
all-seo.tk, 1
+all-stuff.tk, 1
all-things.tk, 1
all-top.tk, 1
all4hardware4u.de, 1
all4web.tk, 1
all878.com, 1
+alla.tk, 1
allaboutfunuk.com, 1
allaboutgreg.net, 1
allabouthome.ml, 1
allaboutmadonna.tk, 1
+allaboutnothing.cf, 1
+allaboutnothing.ga, 1
+allaboutnothing.gq, 1
allaboutreligions.tk, 1
allaboutswing.co.uk, 1
allaboutswing.com, 1
@@ -9341,11 +9465,13 @@ allcinema.net, 1
allcleanservices.ca, 1
allcloud.com, 1
allcooking.tk, 1
+allcourts.tk, 1
allcoveredbyac.com, 1
allcrimea.tk, 1
alldewall.de, 1
alldm.ru, 1
alldogs.tk, 1
+alldrives.tk, 1
alle-zonvakanties.nl, 1
alle.bg, 1
allegorymetal.tk, 1
@@ -9433,8 +9559,10 @@ allmaster.ga, 1
allmba.cf, 1
allmemy.com, 0
allmessedup.tk, 1
+allmobilenews.tk, 1
allmodern.com, 1
allmousepads.com, 1
+allmoviesonline.tk, 1
allnoticebd.com, 1
allnovosibirsk.tk, 1
allns.fr, 1
@@ -9470,9 +9598,11 @@ allroundtechnology.nl, 1
allsaints.church, 1
allsarms.com, 1
allscammers.exposed, 1
+allscience.tk, 1
allsearch.io, 1
allseasons-cleaning.co.uk, 1
allseasonswaterproofing.com, 1
+allset.ml, 1
allsoftfree.com, 1
allsoulinc.com, 1
allsoulmobile.com, 1
@@ -9500,11 +9630,13 @@ allthethings.co.nz, 1
allthetopnews.com, 1
allthewaynorth.xyz, 1
allthings.me, 1
+allthingscpap.com, 1
allthingsfpl.com, 1
allthingshealthy.org, 1
allthingssquared.com, 1
allthingswild.co.uk, 1
alltimeonline.com, 1
+alltourism.tk, 1
alltrade.ga, 1
alltubedownload.net, 1
allucinati.tk, 1
@@ -9518,11 +9650,14 @@ allvideofoot.tk, 1
allvitalconstruction.com, 1
allways.tk, 1
allweatherlandscaping.net, 1
+allwebsites.tk, 1
allwebtuts.com, 1
allwiki.tk, 1
allwordpress.tk, 1
allworld.ga, 1
allwrestling.ga, 1
+allyachts.cf, 1
+allyachts.gq, 1
alma365.it, 1
almaarkansas.gov, 1
almadeviajante.com, 1
@@ -9550,6 +9685,7 @@ almiriatechstore.co.ke, 1
almlab.tk, 1
almorafestival.com, 1
almosis.tk, 1
+almost.cf, 1
almost.fit, 1
almostobjective.com, 1
almstrom.org, 1
@@ -9622,6 +9758,7 @@ alphagames.tk, 1
alphahosting.hu, 1
alphahunks.com, 1
alphainflatablehire.com, 1
+alphalab.tk, 1
alphalibraries.com, 1
alphalight.id, 1
alphalightgear.com, 1
@@ -9703,6 +9840,7 @@ alterbaum.net, 1
altered.network, 1
altered.si, 1
alterego.tk, 1
+alterenergy.tk, 1
alterengine.tk, 1
altergalaxy.tk, 1
alterlinks.com, 1
@@ -9725,6 +9863,7 @@ alternativet.party, 1
alternativetomeds.com, 1
alternatiwa.tk, 1
alternatyv.ch, 1
+alternet.ml, 1
alterspalter.de, 1
altertek.org, 1
altes-sportamt.de, 1
@@ -9863,6 +10002,7 @@ amadvocates.com, 1
amaforro.com, 1
amagdic.com, 1
amagical.net, 0
+amaismarket.com.br, 1
amaiz.com, 1
amal2019.com, 1
amalbansode.com, 1
@@ -9902,6 +10042,7 @@ amateurplayerstour.com, 1
amateurpornhours.com, 1
amateurradionotes.com, 1
amateurs.ga, 1
+amateurs.gq, 1
amateurvoicetalent.com, 1
amati.solutions, 1
amato.tk, 1
@@ -9922,6 +10063,7 @@ amazingmalang.id, 1
amazingpetshere.com, 1
amazingraymond.com, 1
amazingraymond.com.au, 1
+amazingstore.gq, 1
amazonemotions.com, 1
amazoniacoffees.com, 1
amb.tf, 1
@@ -9931,7 +10073,9 @@ ambassify.com, 1
ambassify.eu, 1
amberalert.gov, 1
amberglowleisure.co.uk, 1
+amberhouse.cf, 1
amberhouse.ga, 1
+amberhouse.gq, 1
amberoad.tk, 1
amberonline.tk, 1
ambersoftware.co.uk, 1
@@ -9974,6 +10118,7 @@ ameeventos.pt, 1
ameho.me, 0
ameliemarieintokyo.com, 1
amello.de, 1
+amempire.tk, 1
amendine.fr, 1
ameninalaceira.com.br, 1
ameri-drain.com, 1
@@ -10034,6 +10179,7 @@ amethystcards.co.uk, 1
amethystdevelopment.co.uk, 1
amethystwebsitedesign.com, 1
amevoice.com, 1
+amexemp.com, 1
ameza.co.uk, 1
ameza.com.mx, 1
ameza.io, 1
@@ -10057,6 +10203,7 @@ amigodeltoro.tk, 1
amigosdelvalenciadeastorga.tk, 1
amigosdivecenter.com, 1
amigosencanada.com, 1
+amigosgranada4050.tk, 1
amigucrochet.com, 1
amikootours.com, 1
amilaresort.com, 1
@@ -10108,10 +10255,12 @@ amministratore.biz, 1
amministratore.roma.it, 1
amministratorecondominiale.it, 1
amministratorecondominio.roma.it, 1
+amnesty.cf, 1
amnesty.org.au, 1
amnesy.fr, 1
amniowell.com, 1
amnistiya.tk, 1
+amoatuaexistencia.com.br, 1
amobileway.co.uk, 1
amodeocarlo.com, 1
amok8.am, 1
@@ -10185,6 +10334,7 @@ amsfoodhk.com, 1
amstelland.com, 1
amstelradio.tk, 1
amstelveentje.nl, 1
+amsterdam4u.tk, 1
amsterdamian.com, 1
amsuisse.com, 1
amt-taxfrance.com, 1
@@ -10209,7 +10359,6 @@ amyrussellhair.com, 1
amytuarez.ml, 1
amyyeung.com, 1
amzik.tk, 1
-amzlive.com, 1
amzmall.com, 1
amzn.rocks, 1
an-alles-gedacht.de, 1
@@ -10236,6 +10385,7 @@ anacruz.es, 1
anadiyogacentre.com, 1
anaethelion.fr, 1
anafranil.cf, 1
+anafranil.ga, 1
anageorgia.com, 1
anagir.tk, 1
anagramma.tk, 1
@@ -10317,6 +10467,7 @@ anciens.org, 1
ancient-gates.de, 1
ancientnorth.com, 1
ancolies-andre.com, 0
+anconaswine.com, 1
ancroma.ro, 1
and-stuff.nl, 1
and.com, 0
@@ -10390,6 +10541,7 @@ andresrosa.es, 1
andressaflores.com.br, 1
andreundnina.de, 1
andrew.fi, 1
+andrew.london, 1
andrewbennett.ltd, 1
andrewbroekman.com, 1
andrewdaws.info, 1
@@ -10407,6 +10559,7 @@ andrewmcfarlane.tk, 1
andrewmichaelsmith.com, 1
andrewmichaud.com, 1
andrewmichaud.me, 1
+andrewnet.net, 1
andrewpeng.net, 1
andrewprokos.com, 1
andrewpucci.com, 0
@@ -10428,6 +10581,7 @@ andreyborisov.cf, 1
andreyjuravlev.ga, 1
andreypopp.com, 1
andreysmirnov.tk, 1
+andrian.ga, 1
andrian.tk, 1
andrianova.ml, 1
andrienko.tk, 1
@@ -10441,6 +10595,7 @@ android-club.cf, 1
android-gamers.tk, 1
android-hit.ml, 1
android-it.cf, 1
+android-soft.gq, 1
android-tv.3utilities.com, 1
android-tv.ml, 1
android.re, 1
@@ -10449,14 +10604,18 @@ android1pro.com, 1
androide.com, 1
androidgadgematic.com, 1
androidgaming.tk, 1
+androidhack.tk, 1
androidhry.cz, 1
androidhub.ru, 1
androidkatalog.cz, 1
+androidlab.tk, 1
+androidmarket.gq, 1
androidmarketturkiye.tk, 1
androidmax.tk, 1
androidmovile.com, 1
androidnovinky.cz, 1
androidphones.ga, 1
+androidplay.tk, 1
androidru.ml, 1
androidservicetool.com, 1
androidsis.com, 1
@@ -10608,8 +10767,8 @@ animalcrossingwiki.de, 1
animaletnous.be, 1
animalliberation.tk, 1
animalshelter.tk, 1
+animalsphoto.tk, 1
animalstropic.com, 1
-animaltesting.fr, 1
animalworld.club, 1
animalworld.gq, 1
animalz.tk, 1
@@ -10622,7 +10781,10 @@ anime-cafe.tk, 1
anime-culture.com, 1
anime-dragoon.tk, 1
anime-drift.tk, 1
+anime-list.ga, 1
+anime-news.tk, 1
anime-tip.com, 1
+anime-tv.tk, 1
anime.my, 0
anime1.me, 1
anime1.moe, 1
@@ -10635,6 +10797,7 @@ animeclub.in.ua, 1
animecracks.com, 1
animecreed.ga, 1
animeday.ml, 1
+animeday.tk, 1
animedescarga.ml, 1
animedon.tk, 1
animeelite.tk, 1
@@ -10659,6 +10822,7 @@ animeshka.tk, 1
animestreamingfr.fr, 1
animetosho.org, 1
animetriad.com, 1
+animewallpapers.tk, 1
animorphsfanforum.com, 1
animoxavilorza.tk, 1
aninews.tk, 1
@@ -10672,6 +10836,7 @@ anitaalbersen.nl, 1
anitahebe.com, 1
anitalk.dk, 1
anitaxcph.dk, 1
+anitklib.ml, 1
anitube-nocookie.ch, 1
anitube.ch, 1
anivar.net, 1
@@ -10757,6 +10922,7 @@ annonasoftware.com, 1
annoncer.ga, 1
annonces34.tk, 1
annotate.software, 1
+announcement.tk, 1
annoyingasfuk.com, 1
annrusnak.com, 1
anns.eu, 1
@@ -10768,6 +10934,7 @@ annual.ga, 1
annuitycommunity.com, 1
annulleret.tk, 1
annunciationbvmchurch.org, 1
+annyaurora.net, 1
annynantasiri.com, 1
anodas.lt, 1
anohana.org, 1
@@ -10869,6 +11036,7 @@ antennista.tv, 1
antennistaroma.it, 1
antennisti.milano.it, 1
antennisti.roma.it, 1
+anteny.ml, 1
anteprima.info, 1
anteroleppanen.fi, 1
antfarm.cf, 1
@@ -10948,6 +11116,7 @@ antiled.by, 1
antimateri.com, 1
antimaterie.tk, 1
antimine.me, 1
+antinazi.org, 1
antincendio.it, 1
antincendio.roma.it, 1
antipa.ch, 1
@@ -11016,7 +11185,6 @@ anukaweb.com, 1
anulowano.pl, 1
anunciosbolivia.com, 1
anunturitv.ro, 1
-anvagro.com, 1
anvilmetal.tk, 1
anvilsales.tk, 1
anvish.in, 1
@@ -11069,6 +11237,7 @@ aoadatacommunity.us, 1
aoaprograms.net, 1
aobeauty.com.au, 1
aobogo.com, 1
+aod-tech.com, 1
aodnovel.com, 1
aoe9.com, 1
aoeuaoeu.com, 1
@@ -11101,7 +11270,6 @@ apache-portal.com, 1
apachecountyaz.gov, 1
apachehaus.de, 0
apachelounge.com, 1
-apadmi.com, 1
apadrinaunolivo.org, 1
apadvantage.com, 1
apalachicolaboatslips.com, 1
@@ -11193,7 +11361,7 @@ apipsandiego.ml, 1
apirest.top, 1
apis.blue, 1
apis.google.com, 1
-apisvida.com.br, 1
+apisvida.com.br, 0
apisyouwonthate.com, 1
apitodemestre.com.br, 1
apiu.me, 1
@@ -11268,6 +11436,7 @@ apotheke.market, 1
apotheke55.de, 1
apothekeonline.tk, 1
apotom.tk, 1
+apoyoentareas.tk, 1
apozitivenergiasport.hu, 1
app, 1
app-at.work, 1
@@ -11354,6 +11523,7 @@ applytofaceblog.com, 1
appmania.cf, 1
appmania.gq, 1
appmeas.co.uk, 1
+appmedia.tk, 1
appmeucredito.com.br, 1
appmobile.io, 1
appninjas.com, 1
@@ -11415,6 +11585,7 @@ aprz.de, 1
apsa.paris, 1
apsb.cz, 1
apse.ga, 1
+apsnetwork.co.id, 1
apsnewcastle.com, 1
apsrustandtint.com, 1
apstats.tk, 1
@@ -11454,6 +11625,7 @@ aqua-fitness-nacht.de, 1
aqua-fm.tk, 1
aqua-fotowelt.de, 1
aqua-print.com.ua, 1
+aqua-richtig.de, 1
aquabio.ch, 0
aquabiodesign.tk, 1
aquablue.tk, 1
@@ -11471,6 +11643,7 @@ aquagino.nl, 1
aquaholic.tk, 1
aquahomo.com, 1
aquaist.com, 1
+aqualife.cf, 1
aqualife.com.gr, 1
aqualifeprojects.com, 1
aqualysis.nl, 0
@@ -11479,10 +11652,12 @@ aquamarinavillas.com, 1
aquamart.tk, 1
aquamixing.com, 1
aquapets.tk, 1
+aquaponics.ga, 1
aquarden.com, 1
aquariawise.com, 1
aquariu.ms, 1
aquarium-supplement.net, 1
+aquariumhobby.tk, 1
aquariumhome.tk, 1
aquariymist.tk, 1
aquaselect.eu, 1
@@ -11504,11 +11679,13 @@ ar-informatique.ch, 0
ar-oma.tk, 1
ar-vernet.fr, 1
ar.al, 1
+araadvocats.net, 1
arab.dating, 1
arab1info.cf, 1
arabakiralama.name.tr, 1
arabapps.org, 1
arabarba7.com, 1
+arabbook.ga, 1
arabearthcommunity.ml, 1
arabhardware.net, 1
arabi-news.ml, 1
@@ -11693,6 +11870,7 @@ arenda-bez-agenta.ml, 1
arenda247.by, 0
arendabotov.tk, 1
arendadoma.tk, 1
+arendakrana.tk, 1
arendaskuterov.cf, 1
arendburgers.nl, 1
arenlor.com, 1
@@ -11773,6 +11951,7 @@ arise19.com, 1
arisechurch.com, 1
ariseconference.org.nz, 1
arisevendor.net, 1
+arishastyle.tk, 1
aristocrates.co, 1
aristokratia.tk, 1
ariston-center.gq, 1
@@ -11784,6 +11963,7 @@ arivo.com.br, 1
ariyaoil.ir, 1
arizonaautomobileclub.com, 1
arizonabondedtitle.com, 1
+arizonaonlinedivorce.com, 1
arjan.nl, 1
arjandejong.eu, 1
arjanenthijs.nl, 1
@@ -11881,6 +12061,7 @@ arnaudb.net, 1
arnaudfeld.de, 1
arnaudlanna.com, 1
arnaudminable.net, 1
+arne-gammelby.dk, 1
arnesegers.be, 1
arnevankauter.com, 0
arniescastles.co.uk, 1
@@ -12168,6 +12349,7 @@ arvindhariharan.me, 1
arvutiladu.ee, 1
arvyncerezo.com, 1
arw.me, 1
+arwensiberian.tk, 1
arweth.com, 1
arx-libertatis.org, 1
arx.vg, 1
@@ -12218,6 +12400,7 @@ asaphomeinspect.com, 1
asart.bg, 1
asasesoria.cl, 1
asato-jewelry.com, 1
+asatys-partners.com, 1
asbestos-awareness.ml, 1
asbestosthedarkarts.com, 1
asbito.de, 1
@@ -12254,6 +12437,7 @@ aseoblog.com, 1
aserbx.ga, 1
aserver.co, 1
asesoramientosolay.es, 1
+asesorialigorred.es, 1
asesoriavalledor.es, 1
asexualitat.cat, 1
asfaleianet.gr, 1
@@ -12382,6 +12566,7 @@ aspatrimoine.com, 0
aspcl.ch, 1
aspectcontext.com, 1
aspectuw.com.au, 1
+aspenhillsdesign.com, 1
aspenrealestate.com, 1
asperatechnology.com, 1
asperatechnology.cz, 1
@@ -12551,6 +12736,7 @@ astuna.de, 1
astural.org, 0
astutr.co, 1
astyork.com, 1
+astypic.fr, 1
asua.ca, 1
asuclassfinder.com, 1
asucrews.com, 1
@@ -12646,6 +12832,7 @@ atheist-refugees.com, 1
atheistfrontier.com, 1
athekiu.com, 1
athemis.de, 1
+athena-garage.co.uk, 1
athena-security.net, 1
athenacle.xyz, 1
athenainvestmentsystems.com, 1
@@ -12734,6 +12921,7 @@ atlseccon.com, 1
atm.net, 1
atmalta.com, 1
atmelook.com, 1
+atmi-zo.gr, 1
atmilanomoda.com, 1
atmind.nl, 1
atmmantenimiento.co, 1
@@ -12787,6 +12975,7 @@ atspeeds.com, 1
att-lda.pt, 1
attac.us, 1
attain.com, 1
+attanasioluigi.tk, 1
attcleaning.com, 1
atte.fi, 1
attendanceondemand.com, 1
@@ -12883,6 +13072,7 @@ audiophile.ch, 0
audiophix.com, 1
audiorecording.me, 1
audiorental.net, 1
+audioscenic.com, 1
audioschoolonline.com, 1
audiotrace.tk, 1
audiovisualmurciano.tk, 1
@@ -12922,7 +13112,6 @@ augmentationx.io, 1
augmentin.ga, 1
augmentin.gq, 1
augmentines600.ga, 1
-augredutemps.ca, 1
augur.us, 1
august-don.site, 1
august-hoegn.tk, 1
@@ -12976,6 +13165,9 @@ aurorasa.com, 1
ausbildungskredit.info, 1
auscanalliancecorp.com, 1
auscube.tk, 1
+auscultador.com, 1
+auscultadores.net, 1
+auscultadores.org, 1
ausec.ch, 0
auskunftsbegehren.at, 1
ausmwoid.de, 1
@@ -13116,6 +13308,7 @@ autogarant.sk, 1
autogear.ga, 1
autoglass.com.my, 1
autohausmf-nord.de, 1
+autohaussued.gmbh, 1
autohit.ro, 1
autohomehub.com, 1
autohunt.ga, 1
@@ -13496,6 +13689,7 @@ awsnuke.com, 1
awsome-books.co.uk, 1
awsumchan.org, 1
awtogid.com, 1
+awutar.com, 1
awxg.com, 1
awxg.eu.org, 1
awxg.org, 1
@@ -13503,6 +13697,7 @@ ax25.org, 1
axa-middleeast.com, 1
axa.de, 1
axamansard.com, 1
+axavalon.tk, 1
axchap.ir, 1
axearrow.nl, 1
axel-fischer.net, 1
@@ -13537,6 +13732,7 @@ axton.ink, 0
axtux.tk, 1
axxa.one, 1
axxess-marine.com, 1
+axxial.tk, 1
axxis.co.jp, 1
ay-net.jp, 1
ayahuasca.info, 1
@@ -13552,6 +13748,7 @@ aye.sh, 1
ayecode.ca, 1
ayesh.win, 1
ayhankaraman.com, 1
+ayhosting.de, 1
ayj.solutions, 1
aykonet.de, 1
aykutcevik.com, 1
@@ -13564,8 +13761,8 @@ aymerick.fr, 1
aymericlagier.com, 1
ayoka.eu, 1
ayon-games.tk, 1
-ayon.group, 1
ayothemes.com, 1
+ayouiv.com, 1
ayrohq.com, 1
ayrshirebouncycastlehire.co.uk, 1
ayselonia.onl, 1
@@ -13675,7 +13872,7 @@ b-services.net, 0
b-techflow.com, 1
b-ticket.ch, 1
b-tree.be, 1
-b0000.co, 1
+b0000.co, 0
b00228.com, 1
b00de.ga, 1
b0305.com, 1
@@ -13687,6 +13884,7 @@ b03bb.com, 1
b03cc.com, 1
b0hr.ai, 1
b0k.org, 1
+b0r.ch, 1
b0rk.com, 1
b0x0.com, 1
b1111.co, 1
@@ -13928,6 +14126,7 @@ baazee.de, 1
babacasino.net, 1
babacloud.ddns.net, 1
babacuhocica.tk, 1
+babadag.tk, 1
babaei.net, 1
babaei.org, 1
babaganousha.net, 1
@@ -13948,6 +14147,8 @@ babki-mgnovenno.ga, 1
babkitut.ga, 1
bablodel.biz, 1
bablodel.com, 1
+babo.name.ng, 1
+babo.tk, 1
babounet.com, 1
babsbibs.com, 1
babursahvizeofisi.com, 1
@@ -14201,6 +14402,7 @@ bakeup.be, 1
bakibal.com, 1
bakkerij-janschrieks.nl, 1
bakkerinjebuurt.be, 1
+baklahu.com, 1
bakongcondo.com, 1
baks.cf, 1
baksclub.cf, 1
@@ -14308,6 +14510,7 @@ balticmed.pl, 1
balticnetworks.com, 1
baltimorecashflow.com, 1
baltimoreroofingservices.com, 1
+bam.com.gt, 1
bamahammer.com, 1
bamaland.org, 1
bamboehof.nl, 1
@@ -14382,6 +14585,7 @@ banglatypography.com, 1
banglets.com, 1
bangorfederal.com, 1
bangujero.tk, 1
+bangumi.co, 1
bangun.in, 1
bangyu.wang, 1
banham.co.uk, 0
@@ -14421,12 +14625,14 @@ bankruptcy.ky, 1
banksaround.com, 1
banksite.ga, 1
bankstownapartments.com.au, 1
+banktender.ga, 1
bankvanbreda.be, 1
bankwebinars.com, 1
banland.net, 1
banlinhdanong.com, 1
banned-bitches.tk, 1
banner-design.tk, 1
+banner.ga, 1
bannermarquees.ie, 1
bannerworld.co.uk, 1
banning.gq, 1
@@ -14509,6 +14715,7 @@ baresquare.com, 1
bargainsettelement.com, 1
barganhanaweb.ml, 1
bargest.su, 1
+bargrill.ga, 1
bargroup.ga, 1
bariatricsurgerynewjersey.com, 1
bariatricsurgerysmg.com, 1
@@ -14559,11 +14766,13 @@ barrikade.tk, 1
barriofut.com, 1
barrioitalia.com, 1
barriotoboardroom.com, 1
+barro.ga, 1
barruntos.tk, 1
barrydenicola.com, 1
barrymarkus.tk, 1
barsashop.com.br, 1
barsgroup.com, 1
+barsopen.ga, 1
barss.io, 1
barsukas.net, 1
bart-f.com, 1
@@ -14611,6 +14820,7 @@ basel-gynaekologie.ch, 1
baselang.com, 1
baselnazifrei.info, 0
basement961.co.nz, 1
+basementdefender.net, 1
basementdoctornorthwest.com, 1
basementdoctorwestvirginia.com, 1
basementdoctorwv.com, 1
@@ -14713,6 +14923,7 @@ batook.org, 1
batschu.de, 1
batten.eu.org, 1
batterijeshop.com, 0
+batterman.ch, 1
batteryboys.ca, 1
batteryboys.com, 1
batteryreconditioning.ml, 1
@@ -14760,9 +14971,11 @@ bavaroparadise.com, 1
bavaropuntacanahotels.com, 1
bavarovillage.com, 1
bavartec.de, 1
+bawamedical.com, 1
bawbby.com, 1
bayanbennett.com, 1
bayanradio.tk, 1
+bayarea.gq, 1
bayareaenergyevents.com, 1
bayareagynecology.com, 1
bayareaplasticsurgery.com, 1
@@ -14791,7 +15004,6 @@ baysidefamilydentist.com.au, 1
baystreet.com.mt, 1
bayt.com, 1
baytalebaa.com, 1
-baytobayaircon.com.au, 1
baytownent.com, 1
baytv.it, 1
baywatch.io, 1
@@ -14809,7 +15021,6 @@ bazari.com.pl, 1
bazarotehijos.com, 1
bazdell.com, 0
bazhan.me, 1
-bazinga-events.nl, 1
bazos.at, 1
bazos.cz, 1
bazos.pl, 1
@@ -14855,7 +15066,6 @@ bbk365zz.com, 1
bbka.co.uk, 1
bbka.org.uk, 1
bbkanews.co.uk, 1
-bbkanews.com, 1
bbkanews.org, 1
bbkanews.uk, 1
bbkl.org, 1
@@ -14880,6 +15090,7 @@ bbwsexclips.com, 1
bbwteens.org, 1
bbxin9.net, 1
bc-bd.org, 0
+bc-cdc.org, 1
bc-diffusion.com, 1
bcabs.com, 1
bcansw.com.au, 1
@@ -15005,6 +15216,8 @@ beasel.biz, 1
beashandmade.com, 1
beastiejob.com, 1
beastlog.tk, 1
+beastnet.works, 1
+beastnet.xyz, 1
beastowner.li, 1
beastshirt.com, 1
beatfeld.de, 1
@@ -15020,8 +15233,10 @@ beatthebastards.tk, 1
beatthecpa.com, 1
beatuprobot.net, 1
beau.pw, 1
+beaufortcastawaycharter.com, 1
beaulieu.ch, 1
beaute-eternelle.ch, 0
+beautifulart.ml, 1
beautifulreflectionsmedspa.com, 1
beautifulsouth.tk, 1
beauty-blog.gq, 1
@@ -15052,7 +15267,6 @@ beautyeyewear.ga, 1
beautyinfos.de, 1
beautyinweb.net, 1
beautyisfine.tk, 1
-beautyland.com.co, 1
beautylookz.nl, 1
beautyseasons.ru, 1
beautyspot.tk, 1
@@ -15120,7 +15334,7 @@ bee.supply, 1
bee.tools, 1
beeapro.com, 1
beebeads.ga, 1
-beecare.ch, 0
+beecare.ch, 1
beedsolyjas.tk, 1
beefclan.tk, 1
beehealthyllc.com, 1
@@ -15213,6 +15427,7 @@ behind-the-mask.tk, 1
behindenemyminds.be, 1
behindenemyminds.eu, 1
behindertenagentur.de, 1
+behlamp.ir, 1
behmmjc.com, 1
behoerden-online-dienste.de, 1
behold.gq, 1
@@ -15232,6 +15447,7 @@ beizsley.com, 1
beizsoft.co.uk, 1
bejarano.io, 1
bekabazar.cz, 1
+beklenengazete.com, 1
bekmekci.tk, 1
beko.ie, 1
bekolite.com, 1
@@ -15328,6 +15544,7 @@ belloy.net, 0
bellreguard.tk, 1
bellsweets.com, 1
bellthrogh.com, 1
+belltownfarms.com, 1
bellware.io, 0
belly-button-piercings.com, 1
belmontgoessolar.org, 1
@@ -15347,6 +15564,7 @@ beltman-shipping.tk, 1
belug.de, 1
belugadev.ml, 1
belvitajoreggelt.hu, 1
+belvo.com, 1
belvoirbouncycastles.co.uk, 1
belwederczykow.eu, 1
belzlongroup.com, 1
@@ -15418,6 +15636,7 @@ benhamplateau.tk, 1
benhaney.com, 1
benhartmann.de, 0
benhoeg.com, 1
+beniajan.tk, 1
benjamin-hering.com, 1
benjamin-horvath.com, 1
benjamin-mary.herokuapp.com, 1
@@ -15504,9 +15723,11 @@ bequ1ck.com, 1
bequiia.com, 1
berandalcorp.tk, 1
beranovi.com, 1
+beraru.tk, 1
berasavocate.com, 1
beraten-entwickeln-steuern.de, 1
beratungswelt.dvag, 1
+berbatov.ga, 1
berbervandenberg.tk, 1
berchtesgaden-hilft.de, 1
berdaguermontes.eu, 1
@@ -15692,6 +15913,7 @@ bestanswer.tech, 1
bestantidandruffshampoo.net, 1
bestappliancedoctor.com, 1
bestasquadradas.org, 1
+bestatos.com, 1
bestattungen-kammerer.de, 1
bestattungshaus-kammerer.de, 0
bestautoinsurance.com, 1
@@ -15699,6 +15921,7 @@ bestbatteriesonline.com, 1
bestbefore.com, 1
bestbestbitcoin.com, 1
bestbonuses.co.uk, 1
+bestbookmark.cf, 1
bestboot.cf, 1
bestbrakes.com, 1
bestbrokerindia.com, 1
@@ -15774,7 +15997,9 @@ bestmotorcyclehelmets.net, 1
bestnetentcasino.info, 1
bestnetflowanalyzer.com, 1
bestnewsmag.com, 1
+besto.ga, 1
bestofbooks.gq, 1
+bestofthewestmovers.com, 1
bestoldmusic.tk, 1
bestoliveoils.com, 1
bestomania.tk, 1
@@ -15801,6 +16026,7 @@ bestseries.tv, 1
bestsextoys.com, 1
bestsgadgets.com, 1
bestshoesmix.com, 1
+bestshopping.ga, 1
bestshops.ga, 1
bestsingingbowls.com, 1
bestsiteporn.com, 1
@@ -15812,13 +16038,13 @@ bestwap2.in, 1
bestwebcams.ml, 1
bestwebsite.gallery, 1
bestweleenbeetje.nl, 1
+bestwigs.ga, 1
bestwirelessdoorbell.ml, 1
bestwriterjobs.tk, 1
bestzoo.tk, 1
bet-platform.com, 1
bet031.com, 1
bet03vip.com, 0
-bet064.com, 1
bet06vip.com, 1
bet074.com, 1
bet08vip.com, 1
@@ -15923,6 +16149,7 @@ bet567555.com, 1
bet5757.com, 1
bet5868.com, 1
bet599.com, 1
+bet600.co.uk, 1
bet631.com, 1
bet66669999.com, 1
bet666888.vip, 1
@@ -16004,6 +16231,7 @@ betonbit.com, 1
betonmarkets.info, 1
betonsport.ga, 1
betor.cz, 1
+betor.sk, 1
betpamm.com, 1
betrifft-mich-dsgvo.ch, 1
betrimus.xyz, 1
@@ -16041,6 +16269,7 @@ betterscience.org, 1
bettersecurity.co, 1
betterselfbetterworld.cz, 1
bettersocialmedia.co.uk, 1
+bettertax.gov.au, 1
betterteam.com, 1
bettertest.it, 1
bettertime.jetzt, 1
@@ -16071,6 +16300,7 @@ betwinnerportugal.com, 1
betwinneruganda.com, 1
betxx1.com, 1
betxx2.com, 1
+betyetu.com.gh, 1
betza.online, 1
beulen.email, 1
beulen.link, 1
@@ -16136,6 +16366,7 @@ beyondthefive.org, 1
beyondthepitch.net, 1
beyondtodaymediagroup.com, 1
beyondtrust.com, 1
+beyondtv.ga, 1
beyondweb.net, 1
beyours.be, 1
bezagentstva.cf, 1
@@ -16211,6 +16442,8 @@ bhuntr.com, 1
bhutanonlinetravels.com, 1
bhxch.moe, 1
bhyn.ca, 1
+bi-in-beeld.nl, 1
+bi-jenny.net, 1
bi.search.yahoo.com, 0
bi1gif.radio, 1
bi8cku.club, 1
@@ -16241,6 +16474,7 @@ bibitbunga.com, 1
bible-maroc.com, 1
bible.ru, 1
bible4u.net, 1
+bibleforchildren.ru, 1
bibleonline.ru, 1
biblesignposts.com, 1
bibleversesfordailyliving.com, 1
@@ -16282,7 +16516,6 @@ bidaah.tk, 1
bidadari.my, 1
biddl.com, 1
biddle.co, 1
-bideninaugural.org, 1
bidman.cz, 1
bidman.eu, 1
bidonline.tk, 1
@@ -16302,6 +16535,7 @@ bienici.com, 1
bienoubien.org, 1
biensenvue.com, 1
bienstar.tv, 1
+biensur.ch, 1
bienvenidoamerica.com, 1
bienvenue.tk, 1
bier-brothers.tk, 1
@@ -16326,6 +16560,7 @@ big-papa.tk, 1
big-tits-video.ru, 1
bigalba.ga, 1
bigambitions.co.za, 1
+bigbade.com, 1
bigband.tk, 1
bigbangcompetitions.co.uk, 1
bigbank.ee, 1
@@ -16387,7 +16622,6 @@ bigsisterchannel.com, 1
bigskylifestylerealestate.com, 1
bigskymontanalandforsale.com, 1
bigthree.ga, 1
-bigthunder.ca, 1
bigtimeiq.com, 1
bigudi.ee, 1
bihaberkalma.com, 1
@@ -16419,6 +16653,7 @@ bikesandbits.tk, 1
bikeshopitalia.com, 1
bikesquadron.com, 1
bikestream.tk, 1
+biketalk.ga, 1
biketrainer.tk, 1
bikhof.com, 1
biki.com, 1
@@ -16581,6 +16816,7 @@ biniou.net, 1
binkanhada.biz, 1
binkconsulting.be, 1
binnenmeer.de, 1
+binoculars.ga, 1
binoqlo.com, 1
binoro.de, 1
binproz.com, 1
@@ -16695,6 +16931,7 @@ bioshome.de, 1
biosignalanalytics.com, 1
biospeak.solutions, 1
biospw.com, 1
+biosuit.ga, 1
biotal.ua, 1
biotanquesbts.com, 1
biotec.tk, 1
@@ -16754,7 +16991,6 @@ bishopp.com.au, 1
bishopscourt-hawarden.co.uk, 1
bishoptx.com, 1
bisik.ml, 1
-bisisecurity.com, 1
bisix.tk, 1
bismarck-tb.de, 1
bismi.solutions, 1
@@ -16798,7 +17034,6 @@ bitcalt.eu.org, 1
bitcalt.ga, 1
bitclusive.de, 1
bitcoin-casino-no-deposit-bonus.com, 1
-bitcoin-casino.monster, 1
bitcoin-class.com, 1
bitcoin-daijin.com, 1
bitcoin-exchange.ga, 1
@@ -16936,6 +17171,7 @@ bitsafe.com.my, 1
bitsalt.com, 1
bitsandpc.co.za, 1
bitsellx.com, 1
+bitseo.ga, 1
bitshaker.net, 1
bitsight.net, 1
bitsite.com, 1
@@ -16959,7 +17195,9 @@ bittimaatti.fi, 1
bittiraha.fi, 1
bittivarasto.fi, 1
bittounsi.com, 1
+bittrend.ga, 1
bittylicious.com, 1
+bitunit.tk, 1
bituptick.com, 0
bitvegas.com, 0
bitvest.io, 1
@@ -17008,6 +17246,8 @@ bizniskatalog.mk, 1
biznpro.ru, 1
bizor.tk, 1
bizpay.su, 1
+bizprom.ga, 1
+bizstart.ga, 1
bizstarter.cz, 1
bizsugar.ga, 1
bizteam.ga, 1
@@ -17233,7 +17473,10 @@ blastentertainment.com.au, 1
blastersklan.com, 1
blastoffbuisness.in, 1
blatnic.eu, 1
+blatnice.cf, 1
blatnice.fun, 1
+blatnice.ga, 1
+blatnice.gq, 1
blatnice.ml, 1
blatnice.online, 1
blatnice.tk, 1
@@ -17343,6 +17586,7 @@ blizko.tk, 1
blizora.com, 1
blk-booking.com, 1
blk-lunch.com, 1
+blk.me, 1
blkbx.eu, 1
bllb.ru, 1
blm.gov, 1
@@ -17364,6 +17608,7 @@ blockchainbulteni.com.tr, 1
blockchaindaigakko.jp, 1
blockchaininfo.news, 1
blockchainmagazine.net, 1
+blockchaintech.ga, 1
blockcheck.network, 1
blockclique.io, 1
blocked.icu, 1
@@ -17519,6 +17764,7 @@ bluegrottoscuba.com, 1
bluehillhosting.com, 1
blueimp.net, 1
bluekrypt.com, 1
+bluelily.ga, 1
blueliquiddesigns.com.au, 1
bluemail24.com, 1
bluemango-studios.com, 1
@@ -17533,8 +17779,6 @@ blueoakart.com, 1
blueparrotpainting.com, 1
bluepearl.tk, 1
blueperil.de, 1
-bluepoint.foundation, 1
-bluepoint.me, 1
bluepostbox.de, 1
blueprintma.com, 1
blueprintrealtytn.com, 1
@@ -17595,6 +17839,7 @@ blurt.cf, 1
blusens.com, 1
blushbymounika.com, 1
blusmurf.net, 1
+blutooth.ga, 1
blutopia.xyz, 1
bluuglass.com, 1
bluxus.com, 1
@@ -17669,6 +17914,7 @@ bobfilm.ml, 1
bobigames.com, 1
bobiji.com, 0
bobijoel.ml, 1
+bobkidbob.com, 1
bobkoetsier.nl, 1
bobnbounce.ie, 1
bobnbouncedublin.ie, 1
@@ -17714,6 +17960,7 @@ bodybuildingsupplementsexplained.com, 1
bodybuildingworld.com, 1
bodyconshop.com, 1
bodygearguide.com, 1
+bodymassage.cf, 1
bodymod.tk, 1
bodymusclejournal.com, 1
bodypainter.pl, 1
@@ -17866,6 +18113,7 @@ bongoo.fr, 1
bonic.tk, 1
bonifatius-friedrich.de, 1
bonita.com.br, 1
+bonitadesax.com, 1
bonitamacas.tk, 1
bonito.pl, 1
bonk.pw, 1
@@ -18302,6 +18550,7 @@ br3in.nl, 0
br7.city, 1
br7.ru, 1
br8.pl, 1
+bra-horapparat.se, 1
braams.nl, 1
braathe.no, 1
brabank.no, 1
@@ -18346,7 +18595,6 @@ brainburger101.tk, 1
braindiamond.com, 1
braindiamonds.com, 1
braineet.com, 1
-brainfork.org, 1
brainhealth.gov, 1
brainhub.nl, 1
brainit.at, 1
@@ -18581,7 +18829,6 @@ brest24.tk, 1
brestnews.tk, 1
brestradio.tk, 1
brestshop.tk, 1
-bret-mcgee.me.uk, 1
bretcarmichael.com, 1
breteuilcommerceartisanat.com, 1
brett.icu, 1
@@ -18636,6 +18883,7 @@ brickadia.com, 1
brickfilmfestival.tk, 1
brickheroes.com, 0
brickland.tk, 1
+bricklet.com.au, 1
bricks-clicks.com, 1
bricks4kidzelearn.com, 1
bricksandmotor.co.uk, 1
@@ -18917,8 +19165,7 @@ brunocesarlima.com.br, 1
brunodomingos.com, 1
brunolt.nl, 1
brunoproduit.ch, 0
-brunoramos.com, 1
-brunoramos.org, 1
+brunoramos.com, 0
brunoreno.be, 1
brush.ninja, 1
brushcreekdistillery.com, 1
@@ -19166,6 +19413,7 @@ bucek.cz, 1
buch-angucken.de, 1
buchangroupinc.com, 1
buchhaltung-muehelos.de, 1
+buchhammer.tk, 1
buchwegweiser.com, 1
buck-hydro.de, 1
buck.com, 1
@@ -19204,6 +19452,7 @@ buderus-family.be, 1
budgerigarbirds.com, 1
budget-cuts.tk, 1
budget.gov, 1
+budget.gov.au, 1
budgetboats.net, 1
budgetimize.com, 1
budgetlob.gov, 1
@@ -19360,8 +19609,10 @@ bune.city, 1
bungabuket.com, 1
bungaspa.com, 1
bungee.pw, 1
+bungeeireland.tk, 1
bunix.de, 0
bunker307.tk, 1
+bunkerhilltx.gov, 1
bunkyo-life.com, 1
bunlarateist.space, 1
bunniesoflasvegas.com, 0
@@ -19391,6 +19642,7 @@ buratino.tk, 1
buratiya.tk, 1
burbaguena.tk, 1
burbankdental.com, 1
+burberry-outlet.cf, 1
burcevo.info, 1
burchfabrics.com, 1
burdine-andersoninc.com, 1
@@ -19499,6 +19751,9 @@ businessanalytics24.com, 1
businesscentermarin.ch, 0
businesscircle.com.my, 0
businessconnect.ml, 1
+businesscorp.tk, 1
+businesscorporation.ga, 1
+businesscourier.ga, 1
businesscrafter.ga, 1
businessdirect.ml, 1
businessdrive.biz, 1
@@ -19509,7 +19764,9 @@ businessfactors.de, 1
businessfurs.info, 1
businessgram.eu, 1
businessgrants.gov.sg, 1
+businessgrowth.ga, 1
businessgrowthleaders.com, 1
+businesshome.ml, 1
businesshub.cz, 0
businessimmigration-eu.com, 1
businessimmigration-eu.ru, 1
@@ -19518,19 +19775,25 @@ businessinvest.cf, 1
businessinvestment.tk, 1
businessjaunt.com, 1
businessk.ml, 1
+businesslead.tk, 1
businessloanconnection.org, 0
businessmarketingblog.org, 1
businessmind.ml, 1
businessnames.ga, 1
businessnet.cf, 1
businesspartner.tk, 1
+businesspersonal.ga, 1
businessportal.tk, 1
businesspride.ga, 1
businessquality.ml, 1
businessradar.com.au, 1
businessrights.in, 1
+businesstimes.ga, 1
businesstravelmelbourne.ga, 1
+businesstrip.ml, 1
+businessup.tk, 1
businessusa.gov, 1
+businessusa.tk, 1
businesswebadmin.com, 1
businka.tk, 1
busit.be, 1
@@ -19680,12 +19943,12 @@ buyproscaronlinecanada.ga, 1
buyprovera.tk, 1
buyprozac.cf, 1
buypurenature.ga, 1
+buyr.com, 1
buyretinamicro.cf, 1
buyrimonabant.cf, 1
buyrogaine.ga, 1
buyshoe.org, 1
buysildenafil.ml, 1
-buysoft.co.uk, 1
buystromectol.cf, 1
buystromectol.ml, 1
buysuisse.shop, 1
@@ -19768,6 +20031,7 @@ bxegypt.com, 1
bxin.de, 1
bxp40.at, 1
by-robyn.nl, 1
+by-yesilbag.com, 1
by1u.com, 1
byange.pro, 1
byanjushka.com, 1
@@ -19775,7 +20039,6 @@ byatte.com, 1
byaustere.com, 1
bybet365.com, 1
bycrates.com, 1
-bydik.com, 1
bydisk.com, 0
bye-bye.us, 1
byeskille.no, 1
@@ -19789,6 +20052,7 @@ byhe.me, 1
byhenryvera.com, 1
byjamesrush.com, 1
byji.com, 1
+byjus.com, 1
byjuschennai.com, 1
byken.cn, 1
byket.lviv.ua, 1
@@ -19824,7 +20088,7 @@ bystryj-zajm.tk, 1
byte.nl, 1
byte128.com, 0
bytearts.net, 0
-bytebe.at, 1
+bytebe.at, 0
bytebucket.org, 1
bytecrafter.com, 1
bytecrafter.net, 1
@@ -19889,7 +20153,7 @@ c00ke.com, 1
c01webapp.com, 1
c057cl7.com, 1
c0rn3j.com, 1
-c0rporation.com, 1
+c0rporation.com, 0
c16t.uk, 1
c1cdn.com, 1
c2athletics.com, 1
@@ -19981,7 +20245,6 @@ cacao.supply, 1
cacaogenomedb.org, 1
cacaolalina.com, 1
cacaumidade.com.br, 1
-cachacacha.com, 1
cachacasantaterezinha.com.br, 1
cache-checker.com, 1
cachedview.nl, 1
@@ -20321,6 +20584,7 @@ campermanaustralia.com, 1
campertrailerfinance.com.au, 1
camperverzekerd.nl, 1
campfiretails.org, 1
+camping-dulac-dordogne.com, 1
camping-le-pasquier.com, 1
camping-seilershof.de, 1
campingbuffs.com, 1
@@ -20332,6 +20596,7 @@ campistry.net, 1
camplaza.tk, 1
campmackinaw.com, 1
campo-salado.com, 1
+campofant.com, 1
campona.hu, 1
campsoulfestival.com, 1
camptuk.org, 1
@@ -20409,6 +20674,7 @@ cancertherapy.tk, 1
cancunmx.com, 1
cancunsouvenirs.com, 1
candaceplayforth.com, 1
+candalgic.com.tr, 1
candas.tk, 1
candelaguatemala.tk, 1
candelec.com, 0
@@ -20425,6 +20691,7 @@ candinya.me, 1
candlcastles.co.uk, 1
candlelightediting.com, 1
candlemakingexplained.com, 1
+candlepro.cf, 1
cando.eu, 1
candylion.rocks, 1
candytip.ru, 1
@@ -20445,6 +20712,7 @@ canihavesome.coffee, 0
caniuse.email, 1
canker.org, 1
canliradyodinle.life, 1
+canlitelefonhatti.ga, 1
canlom.tk, 1
canmipai.com, 1
cannabis-marijuana.com, 1
@@ -20493,6 +20761,7 @@ canva.com, 1
canyons.media, 0
canyonshoa.com, 1
canyoupwn.me, 1
+cao.bi, 1
cao.gov, 1
cao.la, 1
caodecristachines.com.br, 0
@@ -20998,8 +21267,8 @@ casadomus.de, 1
casadopulpo.com, 1
casaessencias.com.br, 1
casafina.tk, 1
-casaformen.com.br, 1
casalborgo.it, 1
+casalcrevillent.tk, 1
casaledibuccole.it, 1
casalindamex.com, 1
casalinghedisperate.ga, 1
@@ -21058,6 +21327,7 @@ cashblog.ga, 1
cashbook.co.tz, 1
cashbot.cz, 1
cashbot.sk, 1
+cashcode.ga, 1
cashdrop.ga, 1
cashenvoy.com, 1
cashfazz.com, 1
@@ -21120,6 +21390,7 @@ casjaygames.com, 0
casjenprome.cz, 1
casko-insurance.tk, 1
casman.tk, 1
+casovi.cf, 1
casperfirm.com, 1
casperpanel.com, 1
caspi.org.il, 1
@@ -21242,10 +21513,10 @@ cathyjf.com, 1
cathyjf.net, 1
cathyjf.org, 1
cathyjfitzpatrick.com, 1
+catilmu.com, 1
cativa.net, 1
catl.st, 1
catlovingcare.com, 1
-catmash.tk, 1
catme.org, 1
catmoose.ca, 1
catmoz.fr, 1
@@ -21308,11 +21579,13 @@ cb-crochet.com, 1
cb1388.com, 1
cb1588.com, 1
cbaamaga.com, 1
+cbatcreative.com, 1
cbbank.com, 1
cbc-hire.co.uk, 1
cbca.gov, 1
cbcentelles.tk, 1
cbcf.info, 1
+cbcnet.info, 1
cbd-specialty.com, 1
cbd.casa, 1
cbd.supply, 1
@@ -21399,6 +21672,7 @@ ccnexus.global, 1
ccoooss.com, 1
ccpaas.net, 1
ccparishwilmington.org, 1
+ccpetmotel.com, 1
ccpinvestments.com, 1
ccprwebsite.org, 1
ccr.ovh, 1
@@ -21502,6 +21776,7 @@ cee-trust.org, 1
cee.io, 1
ceebee.com, 1
ceefaastresources.com, 1
+cefroht.org, 1
cegfw.com, 1
cegss.org.gt, 1
ceiba.com.co, 1
@@ -21538,6 +21813,7 @@ celebritypics.co, 1
celebrityscope.net, 1
celebritysrit.tk, 1
celebritytopnews.tk, 1
+celebronsnous.ca, 1
celebxx.com, 1
celectro-pro.com, 1
celeirorural.com.br, 0
@@ -21601,6 +21877,7 @@ centenera.tk, 1
centennialrewards.com, 1
centennialseptic.com, 1
centenodigital.es, 1
+center-elite.ml, 1
centerforamericangreatness.com, 1
centermk.ru, 1
centerpereezd.ru, 0
@@ -21808,6 +22085,7 @@ cfotech.asia, 1
cfotech.co.nz, 1
cfotech.com.au, 1
cfpa-formation.fr, 1
+cfr-culturism.tk, 1
cfrq.ca, 1
cfsh.tk, 1
cftc.gov, 1
@@ -21840,6 +22118,7 @@ cgp.moe, 1
cgpe.com, 0
cgplumbing.com, 1
cgps.xyz, 1
+cgrequinos.com, 1
cgsmart.com, 1
cgtcaixabank.es, 1
cgtx.us, 1
@@ -21882,6 +22161,7 @@ chainge-re.com, 1
chainlinkfencestlouis.com, 1
chainz.tk, 1
chaip.org, 1
+chaise-de-gamer.fr, 1
chaisystems.net, 1
chaitanyapandit.com, 1
chaitradings.com.my, 1
@@ -21935,7 +22215,6 @@ chandr1000.ga, 1
chandramani.tk, 1
chang-feng.info, 0
changan.com.co, 1
-change-coaching-gmbh.ch, 0
changeanalytics.us, 1
changemywifipassword.com, 1
changes.jp, 1
@@ -22004,6 +22283,7 @@ charlesbwise.com, 1
charlescwcooke.com, 1
charlesdickens.tk, 1
charlesdouglastec.com, 1
+charlesonrecreationarea.com, 1
charlespitonltd.com, 1
charlesrogers.co.uk, 1
charlestonfacialplastic.com, 1
@@ -22011,6 +22291,7 @@ charley.tk, 1
charlie-liveshow.com, 1
charlie.im, 1
charlie4change.com, 1
+charlieblog.tk, 1
charliedillon.com, 1
charliegarrod.com, 1
charliehr.com, 1
@@ -22114,6 +22395,7 @@ chauffage-budget.fr, 1
chaurocks.com, 1
chaussenot.net, 1
chaussurerunning.fr, 1
+chauvelcinema.com, 1
chaverde.org, 1
chazalet.fr, 0
chazay.net, 0
@@ -22201,6 +22483,7 @@ cheekboss.com, 1
cheekycharliessoftplay.co.uk, 1
cheela.org, 1
cheem.co.uk, 1
+cheerpassionallstars.com, 1
cheeseemergency.co.uk, 1
cheesefusion.com, 1
cheeseginie.com, 1
@@ -22293,6 +22576,7 @@ chestercountypediatrics.com, 1
chestercountyroboticsurgery.com, 1
chesterfieldplaceapartmentsstl.com, 1
chesterman.tk, 1
+chesterultimatefrisbee.tk, 1
chestnut.cf, 1
chetanrana.me, 1
cheto.io, 1
@@ -22353,6 +22637,7 @@ chicurrichi.com, 1
chielonline.tk, 1
chiemgauflirt.de, 1
chif16.at, 1
+chiffrer.info, 1
chifumi.net, 1
chijb.cc, 1
chika.kr, 0
@@ -22520,6 +22805,7 @@ choe.fi, 1
choesfirm.tk, 1
chofan.tk, 1
choiceautoloan.com, 1
+choicemediaworks.com, 1
choiceuniontown.org, 1
choigamevui.net, 1
chokladfantasi.net, 1
@@ -22621,6 +22907,7 @@ christianadventurecamps.org, 1
christianblog.ml, 1
christianbro.gq, 1
christianbsl.com, 1
+christianchat.ml, 1
christiancoleman.info, 1
christianconcepts.gq, 1
christiandiscourse.net, 1
@@ -22951,6 +23238,7 @@ circlelytics.com, 1
circleofhealthlongmont.com, 1
circleofleastconfusion.com, 1
circlepluscircle.me, 1
+circoeia.com, 1
circu.ml, 1
circues.com, 1
circuitcityelectricaladelaide.com.au, 1
@@ -22976,7 +23264,7 @@ cirvapp.com, 1
cisa.gov, 1
ciscoasanetflow.com, 1
ciscocyberthreatdefense.com, 1
-ciscodude.net, 1
+ciscodude.net, 0
cisconetflowleader.com, 1
cisconetflowpartners.com, 1
cisconetflowreporting.com, 1
@@ -23050,6 +23338,7 @@ citycardgante.com, 1
citycardgent.be, 1
citycardgent.com, 1
citycardghent.com, 1
+citycountrycounselling.com.au, 1
citycreek.studio, 1
citycricket.tk, 1
cityfacialplastics.com, 1
@@ -23106,6 +23395,7 @@ civicunicorn.us, 1
civil-works-sri.com, 1
civilbikes.com, 1
civilcorner.com, 1
+civilengineeringhandbook.tk, 1
civilg20.org, 1
civilhost.tk, 1
civillines.nl, 1
@@ -23234,6 +23524,7 @@ clarkelectricalservices.com.au, 1
clarkhowell.com, 1
clarksburgma.gov, 1
clarkwinkelmann.com, 1
+clarkwise.cc, 1
clasa-mea.tk, 1
clase3.tk, 1
clash-movies.de, 1
@@ -23261,7 +23552,7 @@ classicstories.tk, 1
classictheatrecumbria.co.uk, 1
classicz.xyz, 1
classificadostodaoferta.tk, 1
-classificar.com.br, 1
+classificar.com.br, 0
classifiedspoint.tk, 1
classpoint.cz, 1
classroom.google.com, 1
@@ -23319,6 +23610,7 @@ cleanshield99.com, 1
cleanvision.space, 0
cleanway.dk, 1
clear-concise.com, 1
+clear-it.ch, 1
clearance365.co.uk, 1
clearbooks.co.uk, 1
clearbookscdn.uk, 1
@@ -23362,6 +23654,7 @@ cles.jp, 1
cleveille.com, 1
clevelandokla.com, 1
clever-fit.com, 1
+clever-invest.gq, 1
cleverdarts.com, 1
cleverdeal.tk, 1
cleverinsert.com, 1
@@ -23432,6 +23725,7 @@ clicktolinkb.gq, 1
clickzone.ga, 1
clien.net, 1
client.coach, 0
+client24.tk, 1
clientboss.com, 1
clientcms.co.uk, 1
clientesal100.com, 1
@@ -23730,7 +24024,7 @@ clubfamily.de, 1
clubfunday.ga, 1
clubgalileo.com.ec, 1
clubgenesis.tk, 1
-clubhousetownhomes.com, 1
+clubhousetownhomes.com, 0
clubinhodobaby.com.br, 1
clubmania.tk, 1
clubmarina.store, 1
@@ -23809,6 +24103,7 @@ cmskeyholding.co.uk, 1
cmskeyholding.com, 1
cmskh.co.uk, 1
cmsua.ca, 1
+cmtbc.ca, 1
cmtportal.co.uk, 1
cmusical.es, 1
cmv.gr, 1
@@ -23876,6 +24171,7 @@ coalitionministries.org, 0
coalmen.ga, 1
coalpointcottage.com, 1
coalvillebasketball.tk, 1
+coaojarlos.tk, 1
coastalphysie.com, 1
coastalpowder.com.au, 1
coastalurgentcarebatonrouge.com, 1
@@ -24113,6 +24409,7 @@ cofradiaqueimada.tk, 1
cogeneration-energy.com, 1
cogent.cc, 1
coggin.church, 1
+coginti.tk, 1
cogknockers.com, 1
cognicom-gaming.com, 1
cognitip.com, 1
@@ -24125,7 +24422,6 @@ cogsys.de, 1
cogumelosmagicos.org, 1
coiffeurschnittstelle.ch, 1
coiffure-andrea.ch, 1
-coigach-assynt.org, 1
coignieresentransition.fr, 1
coimmvest.com, 1
coin-exchange.cz, 1
@@ -24140,6 +24436,7 @@ coinbit.trade, 0
coincalc.tk, 1
coinchat.im, 1
coincircle.com, 1
+coincity.ga, 1
coinclickz.fun, 1
coinclickz.xyz, 0
coincoele.com.br, 1
@@ -24216,6 +24513,7 @@ colf.online, 1
colibris.xyz, 1
colincogle.name, 1
colinespinas.com, 1
+colinhouston.com, 1
colinshark.de, 1
colinsnaith.co.uk, 1
colinstark.ca, 1
@@ -24506,6 +24804,7 @@ compare-energie.fr, 1
compareandrecycle.co.uk, 1
compareceleb.com, 1
compareicomprei.com.br, 1
+compareinsurance.com.au, 1
comparelegalforms.com, 1
comparemymobile.com, 1
comparesoft.com, 1
@@ -24519,6 +24818,7 @@ compassdirectportal.com, 1
compassfinance.com, 1
compassintladv.com, 1
compassionaterelease.com, 1
+compassleaf.com, 1
compasslos.com, 1
compassregroup.com, 1
compdermcenter.com, 1
@@ -24551,7 +24851,6 @@ complt.xyz, 1
componentshop.co.uk, 1
composersforum.org, 1
compositedevtec.tk, 1
-compostella.online, 1
compostelle-bouddha.fr, 1
compoundingrxusa.com, 1
compra-deuna.com, 1
@@ -24658,6 +24957,7 @@ concertsto.com, 1
concetrabajos.cl, 0
conciencia.fit, 1
conciencianimal.tk, 1
+concienzy.com, 1
concierge.diet, 1
conciliumnotaire.ca, 1
conclave.global, 1
@@ -24973,6 +25273,7 @@ converter.ml, 1
convertidormp3.co, 1
convertimg.com, 1
convexset.org, 1
+conveyance.pro, 1
convierteenabudancia.com, 1
convocatoriafundacionpepsicomexico.org, 0
convoluted.solutions, 1
@@ -24982,6 +25283,7 @@ coochiehacks.io, 1
coocook.org, 1
cook-maestro.com, 1
cook.gg, 1
+cookandbakecenter.com, 1
cookandgame.com, 1
cookcountyclerkil.gov, 1
cookescastles.co.uk, 1
@@ -25017,7 +25319,6 @@ cool110.tk, 1
cool110.xyz, 1
coolaser.clinic, 1
coolattractions.co.uk, 1
-coolbitx.com, 1
coolboys.ga, 1
coolcamping.com, 1
cooldan.com, 1
@@ -25028,7 +25329,6 @@ coolfilm.cf, 1
coolgifs.de, 1
coolink.pub, 1
cooljs.me, 1
-cooljv.com, 1
coolkidsbouncycastles.co.uk, 1
coolmath.cf, 1
coolmoda.com.ua, 1
@@ -25084,12 +25384,12 @@ copyright-watch.org, 1
copyrightcoins.com, 1
copyrightcoins.help, 1
copyrightcoinsnews.com, 1
+copyrightflow.com, 1
copyrightshares.com, 1
copyshrug.ca, 1
copytext.ml, 1
copywriting-on-demand.tk, 1
coqiptv.com, 1
-coral-study.eu, 1
coralcanticorumbarcelona.tk, 1
coralreef.blue, 1
corarcraft.com, 1
@@ -25124,6 +25424,7 @@ core3k.us, 1
coreapm.com, 1
coreapm.org, 1
corecdn.org, 1
+corecosmetic.com, 1
coredns.rocks, 1
corehealthberks.com, 1
coreless-initiative.net, 1
@@ -25362,6 +25663,7 @@ counterenlol.com, 1
countermats.net, 1
countersolutions.co.uk, 1
countetime.com, 1
+countingdues.com, 1
countrify.net, 1
country-creativ.de, 1
country-games.tk, 1
@@ -25371,6 +25673,7 @@ countryfrog.uk, 1
countrylife.cz, 1
countrymountaininn.com, 1
countryoutlaws.ca, 1
+countryroadsmotorinn.com, 1
countrysidebar.tk, 1
countrysidemarquees.co.uk, 1
countrysmile.org, 0
@@ -25383,6 +25686,7 @@ couplesapp.co, 1
couponbates.com, 1
couponchief.com, 1
couponcodesme.com, 1
+couponite.com, 1
coupy.net, 1
cour4g3.me, 1
couragefound.org, 1
@@ -25414,6 +25718,7 @@ coverful.io, 1
covermytrip.com.au, 1
covershousing.nl, 1
covert.sh, 1
+covid-19.nhs.uk, 1
covid-19advice.com, 1
covid-games.herokuapp.com, 1
covid-graphs.info, 1
@@ -25421,6 +25726,7 @@ covid-model.net, 1
covid19.gov.ph, 1
covid19.govt.nz, 1
covid19.melbourne, 1
+covid19.nhs.uk, 1
covid19dataportal.si, 1
covid19details.com, 1
covid19resilience.org, 1
@@ -25502,7 +25808,6 @@ cps-sante.ml, 1
cpsa.co.uk, 1
cpsc.gov, 1
cpsecureapp.com, 1
-cpshr.us, 1
cpsq.fr, 1
cpsurvey.com, 1
cptechsupport.us, 1
@@ -25633,6 +25938,7 @@ crazycraftland.net, 1
crazycube.fr, 1
crazycube.tk, 1
crazydrivers.tk, 1
+crazyfly.tk, 1
crazyfoodninja.com, 1
crazygifts.cf, 1
crazyhost.ga, 1
@@ -25664,6 +25970,7 @@ creadoc.fr, 1
creadstudy.com, 1
creafitchile.cl, 1
creaintel.net, 1
+creaketing.com, 1
crealogix-online.com, 1
creamcastles.co.uk, 1
creampiepornvids.com, 1
@@ -25802,7 +26109,6 @@ cricoff.com, 1
criena.com, 1
criena.net, 1
criktrik.com, 1
-crimeainspire.com, 1
crimean-wines.tk, 1
crimebarta.com, 1
crimefire.in, 1
@@ -25836,6 +26142,7 @@ criptomonedaz.com, 1
criptomoneylite.tk, 1
criptozoologia.tk, 1
crisantacademy.com, 1
+crisbonaldasemijoias.com.br, 1
criscitos.it, 1
criscond.co.uk, 1
crisisactual.com, 1
@@ -25855,7 +26162,6 @@ crisssmanmix.tk, 1
cristaleslitios.com.mx, 1
cristals.ga, 1
cristalva.com, 0
-cristarta.com, 1
cristau.org, 1
cristenberens.tk, 1
cristian-alexander.tk, 1
@@ -25886,6 +26192,7 @@ crlna.com, 1
crm.onlime.ch, 0
crm114d.com, 1
crmdumariage.com, 1
+crmtaxi.ml, 1
croceverdevb.it, 1
crochetkim.com, 1
crockettmyers.com, 1
@@ -25961,6 +26268,7 @@ crownmarqueehire.co.uk, 1
crownpoint.com, 1
crownsterling.io, 1
crows.io, 1
+crowter.li, 1
crox.co, 1
croxu.com, 1
croydonapartments.com.au, 1
@@ -26288,6 +26596,7 @@ cucaracha.tk, 1
cuchichi.es, 1
cuckoo.ee, 1
cuddlecat.io, 1
+cuddlecomfort.com, 1
cuddlingyaks.com, 1
cuddlybeardaycare.com.au, 1
cudesa.gq, 1
@@ -26515,6 +26824,7 @@ cuwebinars.com, 1
cuxpool.club, 1
cuxpool.net, 1
cuyahogacountyvotesoh.gov, 1
+cvazquez.es, 1
cvbp.nl, 1
cvc.digital, 1
cvdeexpo.com, 1
@@ -26593,6 +26903,7 @@ cyberarmy.cc, 1
cyberatlantis.com, 1
cyberattackincidentresponse.com, 1
cyberautomobile.tk, 1
+cyberbook.ml, 1
cyberbotx.com, 1
cyberburek.tk, 1
cybercareers.gov, 1
@@ -26624,7 +26935,10 @@ cyberianhusky.com, 0
cyberinc.nl, 1
cyberislam.tk, 1
cyberium-planet.cf, 1
+cyberlab.team, 1
cyberlin.org, 1
+cyberlounge.ga, 1
+cybermall.ga, 1
cybermaniac.tk, 1
cybermatrixone.tk, 1
cyberme.sh, 1
@@ -26638,6 +26952,7 @@ cyberoptic.de, 1
cyberpanel.cf, 1
cyberpathogen.me, 1
cyberpcforum.com, 1
+cyberpedia.wiki, 1
cyberphaze.com, 1
cyberphoenix.tk, 1
cyberplus.net.id, 1
@@ -26721,6 +27036,7 @@ cylindehea.com, 1
cylindricity.com, 1
cyllos.me, 1
cynetco.com, 1
+cynology.ga, 1
cynop.me, 1
cynthiacherry.com, 1
cyon.ch, 1
@@ -27019,6 +27335,7 @@ dailyemailinboxing.com, 1
dailyenglishchallenge.com, 1
dailyhealthylife.ml, 1
dailykos.com, 1
+dailymags.com, 1
dailynewsclubs.ga, 1
dailynewsfrommedjugorje.ml, 1
dailyphototips.com, 1
@@ -27030,6 +27347,7 @@ dailyroverr.com, 1
dailysuperheroes.com, 1
dailyw88.com, 1
dailyw88.net, 1
+dailywork.ga, 1
dailyxenang.com, 1
daim-avtoelektrika.ru, 1
daimafengzi.com, 1
@@ -27204,7 +27522,6 @@ danielehniss.de, 0
danieleluttazzi.tk, 1
danieleoneta.it, 1
danielepestilli.com, 1
-danielesalatti.com, 1
danielgaughan.com, 1
danielgorr.de, 1
danielgray.email, 1
@@ -27275,6 +27592,7 @@ danna-salary.com, 1
danndorf.com, 0
dannemora.tk, 1
dannhanks.com, 1
+dannibydesigngroup.com, 1
dannicholas.net, 1
danniellealbrechtdesigns.com, 1
danny-tittel.de, 1
@@ -27362,7 +27680,6 @@ darcymarshall.com, 1
dare.deals, 1
darenet.org, 1
daretogain.com, 1
-dareyou.be, 1
darf.nl, 1
darfurwall.org, 1
dariaburger.de, 1
@@ -27384,7 +27701,6 @@ dark.fail, 1
dark.ninja, 1
darkag.ovh, 1
darkartstudios.tk, 1
-darkcards.xyz, 1
darkcelebration.tk, 1
darkcores.net, 1
darkct.com, 1
@@ -27405,6 +27721,7 @@ darkgames.cf, 1
darkgrid.eu, 1
darkhall.tk, 1
darkhunter.eu, 1
+darkillusion.us, 1
darkishgreen.com, 1
darkknights.tk, 1
darklang.com, 1
@@ -27442,6 +27759,7 @@ darkwebkittens.xyz, 0
darkx.me, 1
darlehen-ratgeber.de, 1
darlene.hu, 1
+darlingdownscoffee.com.au, 1
darlo.co.uk, 0
darnashop.fr, 1
darom.jp, 1
@@ -27714,6 +28032,7 @@ davidgroup.co.id, 1
davidgrudl.com, 1
davidhanle.com, 1
davidje13.com, 1
+davidjktofan.com, 1
davidjusto.com, 1
davidkeane.com, 1
davidkennardphotography.com, 1
@@ -28062,6 +28381,7 @@ debuemon.com, 1
debuis.nl, 1
debut-mebel.ru, 1
debzsh.tk, 1
+dec-ced.gc.ca, 1
dec6.gc.ca, 1
decadentdvices.com, 1
decal-times.com, 1
@@ -28122,6 +28442,7 @@ decrypto.net, 1
decs.es, 1
decsys.work, 1
dedelta.net, 1
+dedeo.tk, 1
dedetizacaoinsetan.com.br, 1
dedg3.com, 1
dedge.org, 1
@@ -28216,6 +28537,7 @@ defietsambassade.gent, 1
defietsambassadegent.be, 1
defifa.ga, 1
defile.ml, 1
+defiler.tk, 1
defimetier.fr, 1
define-atheism.com, 1
define-atheist.com, 1
@@ -28313,6 +28635,8 @@ delawarenation-nsn.gov, 1
delaydengy.tk, 1
delaysoft.tk, 1
delbecqvo.be, 0
+delcan.ga, 1
+delcan.ml, 1
delcopa.gov, 1
delduca.casa, 1
deleenheir.be, 1
@@ -28500,6 +28824,7 @@ denismusic.ga, 1
denissalignat.fr, 1
denissealatinsoul.com, 1
denistruffaut.fr, 0
+denisyakovlev.ga, 1
denisyakovlev.ml, 1
denisyan.ml, 1
deniszczuk.pl, 1
@@ -28620,6 +28945,7 @@ der-gardinenmann.de, 1
der-lan.de, 1
der-rohrstock.club, 1
der-rudi.eu, 1
+der-windows-papst.de, 1
derango.tk, 1
derattizzazione.name, 1
derattizzazioni.biz, 1
@@ -28693,6 +29019,7 @@ desalas.org, 1
desanctispro.com, 1
desapego.com.br, 1
desarrollando.web.ve, 1
+desarrollowp.com, 1
descargar-apk.org, 1
descargarwhatsappplusgratis.net, 1
descobrim.com, 1
@@ -28780,7 +29107,9 @@ despertadoronline.com.es, 1
despinavandi.gr, 1
desplats.com.ar, 1
despora.de, 1
+desportvriendenoverijse.tk, 1
despotika.de, 1
+desserteagleselvenar.tk, 1
dessinemoilademocratie.ch, 0
dest-gottskar-nidingen.se, 1
destakbrasilbrindes.com.br, 1
@@ -28832,6 +29161,7 @@ deti-vse.ml, 1
deti.ga, 1
detiklife.com, 1
detiks.cf, 1
+detishki.ga, 1
detki.cf, 1
detki24.ru, 1
detodojuegos.com, 1
@@ -29162,6 +29492,7 @@ diamondcontent.com, 1
diamondgoldmarkcity.cf, 1
diamondhead-umc.org, 1
diamondpkg.org, 1
+diamondvision.ca, 1
diamondyacca.co.uk, 1
diamorphine.com, 1
diamsmedia.ch, 0
@@ -29323,6 +29654,7 @@ dieti.gq, 1
dieti.net, 1
dietlein.tech, 1
dietlin.com, 1
+dietlist.ga, 1
dietolog.gq, 1
dietpi.com, 1
dietrich.cx, 1
@@ -29342,6 +29674,7 @@ diffuzehr.com.au, 1
diflucangeneric.ml, 1
diflucanonline.tk, 1
diflucanpill.ga, 1
+difon.tk, 1
difoosion.com, 1
digazu.com, 1
digchip.com, 1
@@ -29357,7 +29690,6 @@ digiarc.net, 1
digibean.com.au, 1
digibull.email, 1
digibull.link, 1
-digicami.co.uk, 1
digicasso.nl, 1
digicelidgy.com, 1
digicert-support.com, 1
@@ -29366,10 +29698,12 @@ digicy.cloud, 1
digideli.ee, 1
digidroom.be, 1
digifloat.io, 1
+digikassa.no, 1
digikohan.com, 1
digikol.net, 1
digiland.tk, 1
digilicious.com, 1
+digilirapay.com, 1
digiloop.co, 1
digimaat.agency, 1
digimagical.com, 1
@@ -29948,6 +30282,7 @@ divjak.at, 1
divo-remont.tk, 1
divorceformsfiller.com, 1
divorcelawyer365.com, 1
+divorciarse.info, 1
divort.org, 1
divup.com, 1
diwakarlaproperties.com, 1
@@ -30005,6 +30340,7 @@ djangoproject.com, 1
djangoproject.tk, 1
djangosnippets.org, 1
djanpana.com, 1
+djattack.com, 1
djax.tk, 1
djazair.ml, 1
djazair.tk, 1
@@ -30081,6 +30417,7 @@ djsciencecollege.tk, 1
djsearch.tk, 1
djshivbabu.tk, 1
djshox.tk, 1
+djsintl.com, 1
djsk.nl, 1
djskippy.tk, 1
djslash.tk, 1
@@ -30119,7 +30456,6 @@ dlagos.com, 1
dlagoss.com, 1
dlbouncers.co.uk, 1
dlcwilson.com, 1
-dld.to, 1
dlde.ru, 1
dldl.fr, 1
dleet.com, 1
@@ -30233,6 +30569,8 @@ dnscrypt-blacklist.tk, 1
dnscrypt.info, 1
dnscrypt.nl, 1
dnscurve.io, 1
+dnsecho.net, 1
+dnsecho.org, 1
dnshallinta.fi, 1
dnsinfo.ml, 1
dnskeep.com, 1
@@ -30294,7 +30632,6 @@ dochub.com, 1
dockerbook.com, 0
dockerm.com, 1
dockerup.net, 1
-docket.systems, 1
dockflow.com, 1
dockmastersonline.com, 1
dockstarter.com, 1
@@ -30303,6 +30640,7 @@ doclassworks.com, 1
docline.gov, 1
docloudu.info, 1
docmed360.com, 1
+docogo.ga, 1
docpc86.fr, 1
docpile.cloud, 1
docplexus.com, 1
@@ -30484,6 +30822,7 @@ dollarprofit.tk, 1
dollarrp.pl, 1
dollarweb.cf, 1
dolle-shop.com.ua, 1
+dolledout.co.ke, 1
dollemore.com, 1
dollhouseaustralia.com, 1
dollhousetoyo.com, 1
@@ -30503,6 +30842,7 @@ dom-byt.tk, 1
dom-desertov.tk, 1
dom-riviere.tk, 1
dom.blog, 1
+dom2news.gq, 1
dom2news.tk, 1
dom2seychelles.tk, 1
dom2tnt.tk, 1
@@ -30622,7 +30962,6 @@ domythesis.net, 1
domyzitrka.cz, 1
domznak.ru, 1
don-news.tk, 1
-donabeneko.jp, 1
donacarlota.net.br, 1
donaciondeorganos.gov, 1
donalblaney.cf, 1
@@ -30632,6 +30971,7 @@ donaldtrump.ga, 1
donaldwarner.com, 1
donamflor.com, 1
donarmany.online, 1
+donate.lol, 1
donateabox.org, 1
donateaday.net, 1
donatellapratas.com.br, 1
@@ -30643,6 +30983,7 @@ dondepiso.shop, 1
dondiabolo.com, 1
dondibogusky.com, 1
donera.tk, 1
+doneva.ro, 1
donewhen.email, 1
donewhen.eu, 1
donewhen.net, 1
@@ -30814,7 +31155,9 @@ dostalsecurity.com, 1
dostav.tk, 1
dostavkakurierom.ru, 1
dostlar.fr, 1
+dosug.gq, 1
dosug.so, 1
+dosugru.gq, 1
dosvientoselectric.com, 1
dosvientoselectrical.com, 1
dosvientoselectrician.com, 1
@@ -30969,6 +31312,7 @@ doyoutax.com, 1
doypacky.cz, 0
doze-cloud.tech, 1
dozecloud.com, 1
+dozens.com, 1
dozor.ga, 1
dozor.gq, 1
dp.cx, 1
@@ -31107,6 +31451,7 @@ drakfot.se, 1
drakiada.tk, 1
drakoraw.my.id, 1
draliabadi.com, 1
+drama.tk, 1
dramakorea.tk, 1
dramaquarter.com, 1
dramaslayer.ga, 1
@@ -31146,6 +31491,7 @@ drcardiofit.com, 1
drcarolynquist.com, 1
drchrislivingston.com, 1
drchristophepanthier.com, 0
+drclatinoamerica.com, 1
drclub.tk, 1
drcp.tokyo, 1
drdavidricketts.com, 1
@@ -31531,6 +31877,7 @@ dsgarms.com, 1
dsgholsters.com, 1
dsgnet.hu, 1
dsgvo-addon.eu, 1
+dsgvo-analyse.de, 1
dsgvo.name, 1
dshield.org, 1
dsiteam.in, 1
@@ -31598,7 +31945,6 @@ duanre.tk, 1
duansunshinesdiamond.com, 1
duarteeleiteconsultoria.com.br, 1
dubai-company.ae, 1
-dubaibliss.com, 1
dubaizone.cf, 1
dubaosheng.com, 1
dubbingkursus.dk, 1
@@ -31669,6 +32015,7 @@ duijf.info, 1
duijf.io, 1
duijfathome.nl, 1
duitang.com, 1
+duizhangs.tk, 1
dujsq.com, 1
dukan-recepty.ru, 1
dukatek.cz, 1
@@ -31761,7 +32108,6 @@ durcal.tk, 1
durchblick-shop.de, 1
durdal.no, 1
durdle.com, 1
-duredo.com, 0
dureuil.info, 1
durexwinkel.nl, 1
durfteparticiperen.nl, 1
@@ -31832,9 +32178,11 @@ dv189.com, 1
dvbris.co.uk, 1
dvbris.com, 1
dvclub.tk, 1
+dvdforum.ga, 1
dvdinmotion.com, 1
dvdland.com.au, 1
dvdmania.ga, 1
+dvdmusic.ga, 1
dveri-lugansk.tk, 1
dvhosting.be, 1
dvipadmin.com, 1
@@ -31859,6 +32207,7 @@ dwi-sued.de, 1
dwnld.me, 1
dwood.store, 1
dworzak.ch, 1
+dwp-solutions.nl, 1
dwscdv3.com, 1
dwt-inc.com, 1
dwtf.de, 1
@@ -31955,6 +32304,7 @@ dynastyredzone.com, 1
dyncdn.me, 1
dyneco.io, 1
dynet.ru, 1
+dynhost.co.uk, 1
dynn.be, 0
dynocc.xyz, 1
dynorphin.com, 1
@@ -31984,6 +32334,7 @@ dzeina.ch, 0
dzet.de, 1
dziaduch.pl, 1
dziary.com, 1
+dziecismoka.pl, 1
dziekonski.com, 1
dzimchuk.net, 1
dziscover.com, 1
@@ -32083,7 +32434,6 @@ e-planshet.tk, 1
e-pokupki.eu, 1
e-polygraphy.tk, 1
e-privat.info, 1
-e-procurement.co.mz, 1
e-ptn.com, 1
e-receta.cl, 1
e-recruitment.tk, 1
@@ -32099,6 +32449,7 @@ e-smile.tk, 1
e-sneakers.tk, 1
e-speak24.pl, 1
e-standardstore.org, 1
+e-streams.tv, 1
e-student.tk, 1
e-styling.tk, 1
e-surety.net, 1
@@ -32139,6 +32490,7 @@ e15r.co, 1
e27.co, 1
e2ebrindes.com.br, 1
e2electric.ir, 1
+e2essentialelements.com, 1
e2feed.com, 1
e30.ee, 1
e30365.com, 0
@@ -32500,6 +32852,7 @@ eames-clayton.us, 1
eamigo.com, 1
eamproperties.com, 1
eanraig.top, 1
+eaofcarrollton.com, 1
eapcounselling.com.au, 1
earfolds.com, 1
earlybetter.com, 1
@@ -32509,6 +32862,7 @@ earlyyearshub.com, 1
earmarks.gov, 1
earn.wiki, 1
earn99.co, 1
+earningsgames.tk, 1
earningthatis.tk, 1
earth-people.org, 1
earth-quake.tk, 1
@@ -32530,6 +32884,7 @@ eastarm.net, 1
eastbaycontractor.com, 1
eastblue.org, 1
eastbourne-eip.org, 1
+eastcairo-egypt.com, 1
eastcoastbubbleandbounce.co.uk, 1
eastcoastexports.tk, 1
eastdream.tk, 1
@@ -32537,6 +32892,7 @@ eastendonline.tk, 1
eastheaven.ml, 1
eastlothianbouncycastles.co.uk, 1
eastmaintech.com, 1
+eastmedo.com, 1
eastnorschool.co.uk, 1
easton.ga, 1
eastpeoria-il.gov, 1
@@ -32578,6 +32934,7 @@ easylogics.tk, 1
easymeditation.tk, 1
easymotionskin-japan.jp, 1
easymun.com, 1
+easynotary.ch, 1
easyocm.hu, 1
easyonlinetest.tk, 1
easypay.bg, 1
@@ -32609,6 +32966,7 @@ eat-sleep-code.com, 1
eat-the-world.ch, 1
eatery.co.il, 1
eatfitoutlet.com.br, 1
+eatingasturias.com, 1
eatinghouz.com, 1
eatinglinks.tk, 1
eatingonions.com, 1
@@ -32795,6 +33153,7 @@ ecodesigns.nl, 1
ecodigital.social, 1
ecoeuropa.cf, 1
ecofac-bs.com, 1
+ecoforel.ru, 0
ecoformeurope.com, 1
ecofriendlytravels.com, 1
ecogarden.design, 1
@@ -32820,6 +33179,7 @@ ecologica.it, 1
ecologikashop.com, 1
ecologiya.tk, 1
ecombustibil.ro, 1
+ecometalsrl.com, 1
ecomia.dk, 1
ecommercefastlane.com, 1
ecomonline.ru, 1
@@ -32883,6 +33243,7 @@ ecr-test-partnapp.azurewebsites.net, 1
ecrandouble.ch, 0
ecredits-dev-app-backoffice01.azurewebsites.net, 1
ecredits-dev-app-partner01.azurewebsites.net, 1
+ecrequipamientos.com, 1
ecriminalrecords.com, 1
ecrownoffire.com, 1
ecstaticentertainment.com, 1
@@ -32944,6 +33305,7 @@ edgelogs.com, 1
edgeservices.co.uk, 1
edgetalk.net, 1
edgezzz.com, 1
+edgxr.gq, 1
edh.email, 1
edhesive.com, 1
edholm.pub, 1
@@ -33008,8 +33370,10 @@ edstep.com, 1
edtech-hub.com, 1
edtech.ee, 1
edtechwebb.com, 1
+edtravel.ga, 1
edu6.cloud, 1
eduard-dopler.de, 1
+eduardbaas.com, 1
eduardnikolenko.com, 1
eduardnikolenko.ru, 1
eduardofranco-luthier.tk, 1
@@ -33070,6 +33434,7 @@ eduschool.ml, 1
edusercontent.com, 1
edusitios.com, 0
eduson.pl, 1
+edutour.ml, 1
edutrum.com, 1
eduxpro.com, 1
edv-biela.de, 1
@@ -33078,6 +33443,7 @@ edv-ringhofer.de, 1
edv-schmittner.de, 1
edvance.co.za, 1
edvgarbe.de, 1
+edvision.ga, 1
edvmesstec.de, 1
edward-tagle.tk, 1
edwardbrowninvestment.tk, 1
@@ -33088,6 +33454,7 @@ edwardsgrounds.co.uk, 1
edwardsnowden.com, 1
edwardspeyer.com, 1
edwardwall.me, 1
+edware.ga, 1
edweb.tk, 1
edwellbrook.com, 1
edwinlugo.gq, 1
@@ -33173,6 +33540,7 @@ effex.ru, 1
effexorgeneric.ml, 1
effiasoft.com, 0
efficientsolutions.tk, 1
+effigos.com, 1
effinfun.com, 1
efflam.net, 1
effortlesshr.com, 1
@@ -33436,7 +33804,6 @@ ekspoint-mods.ru, 1
eku.com.tr, 1
ekvastra.in, 1
ekwgroup.co.uk, 1
-ekwilliamsaccountants.co.uk, 1
ekyu.moe, 1
ekz-crosstour.ch, 1
ekzarta.ru, 0
@@ -33587,7 +33954,6 @@ electricpower.tk, 1
electricsimivalley.com, 1
electricthousandoaks.com, 1
electricwestlakevillage.com, 1
-electro-pak.com.pk, 1
electrocomplect.com.ua, 1
electrodomesticos.tk, 1
electrodomesticosmiro.com, 1
@@ -33620,6 +33986,7 @@ elegance-sm.com, 1
elegancecement.com, 1
eleganceperfumes.com.br, 1
elegant-design.tk, 1
+eleganta.ga, 1
elegantlatex.tk, 1
elegantly-clean.co.uk, 1
elegro.cz, 1
@@ -33682,7 +34049,6 @@ elementarium.cf, 1
elementarium.ga, 1
elementarty.com, 1
elementarywave.com, 1
-elementblend.com, 0
elementbookings.com, 1
elementoraddons.com, 1
elementricks.com, 1
@@ -33746,8 +34112,8 @@ elevenensemble.tk, 1
elevenpaths.com, 1
elexel.ru, 1
elexprimidor.com, 1
-elexxos.com, 1
elfe.de, 1
+elfejoyeux.com, 1
elforno.gr, 1
elfranco.tk, 1
elfring.eu, 1
@@ -33781,6 +34147,7 @@ elibidore.ml, 1
elibom.com, 1
elie.net, 1
elielaloum.com, 1
+elif.sk, 1
elifesciences.org, 1
eligasht.com, 1
eligibilis.com, 1
@@ -33946,8 +34313,10 @@ elskling.no, 1
elstopstelten.nl, 0
elsuccionador.com, 1
elsvanderlugt.nl, 1
+elswickllc.com, 1
elsword.moe, 0
eltair.com, 1
+eltar.pl, 1
eltconsultants.com.mx, 1
eltd.com.vn, 1
eltern-verein.ch, 1
@@ -33996,6 +34365,7 @@ email-pipeline.xyz, 1
email-verifier.tk, 1
email.repair, 0
email24.cf, 1
+email4u.at, 1
emailadressen.nl, 1
emailalaperformance.fr, 1
emailbusters.tk, 1
@@ -34318,6 +34688,7 @@ endofinternet.goip.de, 1
endofodo.goip.de, 1
endoftenancycleaninglondon.co.uk, 1
endohaus.us, 1
+endometriu.ml, 1
endondehay.com, 1
endpaydayloandebt.net, 1
endspamwith.us, 1
@@ -34351,11 +34722,13 @@ energyaupair.dk, 1
energyaupair.nl, 1
energyaupair.no, 1
energyaupair.se, 1
+energycarriers.com, 1
energycodes.gov, 1
energydistributorsllc.com, 1
energydrinkblog.de, 1
energyefficientservices.com, 1
energyelephant.com, 1
+energyflows.ie, 1
energyforum.tk, 1
energygenie.com.au, 1
energygroup.gq, 1
@@ -34486,6 +34859,7 @@ enomada.net, 1
enoou.com, 1
enorekcah.com, 1
enot32.ru, 1
+enotar.ch, 1
enoteca.do, 1
enotecabortone.it, 1
enotecastore.it, 1
@@ -34519,6 +34893,7 @@ enskat.de, 1
enskatson-sippe.de, 1
ensley.tech, 1
ensons.de, 1
+ensonyan.com, 1
enstroga.at, 1
enstructo.net, 1
ensured.com, 1
@@ -34661,6 +35036,7 @@ epicapos.cz, 1
epicauth.azurewebsites.net, 1
epicbouncycastles.co.uk, 1
epiccdn.net, 1
+epiccraft-mc.de, 1
epicdesign1.tk, 1
epicdesign2.tk, 1
epicdowney.com, 1
@@ -34744,7 +35120,6 @@ eposzilos.nl, 1
eppelblei.lu, 1
eppelduerferjugend.lu, 1
eppelpress.lu, 1
-eppione.com, 1
epreskripce.cz, 1
eprezto.com, 1
eprojectfreetv.com, 1
@@ -34831,12 +35206,14 @@ erethon.com, 1
erevan-news.tk, 1
erfolgsmaschine.ch, 1
ergaomnes.cz, 1
+ergaran.tk, 1
ergo-open.de, 1
ergobyte.eu, 1
ergobyte.gr, 1
ergodark.com, 1
ergonomic-products.com, 1
ergovita.com.br, 1
+ergwebs.eu.org, 1
eriador.io, 1
eric-kolelas.tk, 1
eric1932.tk, 1
@@ -34864,6 +35241,7 @@ erico-hm.com, 1
ericoc.com, 1
erics.site, 1
ericsaadeonline.tk, 1
+ericseankennedy.com, 1
ericsilva.org, 1
ericspeidel.de, 1
erictgilmour.ca, 1
@@ -34875,7 +35253,6 @@ eriix.org, 1
erik-stomp.de, 1
erikaepedro.ga, 1
erikapsicologia.com, 1
-erikatanithphotography.co.uk, 1
erikbraam.com, 1
erikbraam.nl, 1
erikheemskerk.nl, 1
@@ -34911,6 +35288,7 @@ ernest.ly, 1
ernst-fuchs.tk, 1
ero-video.net, 1
ero.ink, 0
+erobook.net, 1
erodvd.com, 0
erogen.su, 1
eroimatome.com, 1
@@ -34940,6 +35318,7 @@ erperium.com, 1
erperium.nl, 1
erpollo.com, 1
erpsolutionsmart.com, 1
+errekaweb.tk, 1
errietta.me, 1
errlytics.com, 1
errolmarkland.com, 1
@@ -35158,7 +35537,7 @@ esovita.de, 1
espace-caen.fr, 0
espace-gestion.fr, 1
espace-habitat-francais.fr, 1
-espace-orenda.ch, 1
+espace-orenda.ch, 0
espace-tech.ru, 0
espace.network, 1
espace.spb.ru, 0
@@ -35418,6 +35797,7 @@ ethiobaba.com, 1
ethiopian.dating, 1
ethitter.com, 1
ethnews.today, 1
+ethnicnaaari.com, 1
ethnopsychoanalyse.tk, 1
ethosinfo.com, 1
ethotupala.tk, 1
@@ -35583,6 +35963,7 @@ euroskano.nl, 1
eurospecautowerks.com, 1
eurostrategy.vn.ua, 1
eurosun.tk, 1
+euroteam.tk, 1
eurotech-cnc.eu, 1
eurotop.net.pl, 1
eurotour.tk, 1
@@ -35711,6 +36092,7 @@ evergreenmichigan.com, 1
evergreennewsonline.com, 1
everhome.de, 1
everichspice.com, 1
+everifile.com, 1
everify.gov, 1
everitoken.io, 1
everling.lu, 1
@@ -35789,6 +36171,7 @@ evilmoisture.tk, 1
evilness.nl, 1
evilsay.com, 0
evilsite.cf, 1
+evin.ml, 1
evion.nl, 0
evisa.us.com, 1
eviz.co, 1
@@ -35895,7 +36278,6 @@ exampleessays.com, 1
examroll.fr, 1
examroll.io, 1
examroo.nl, 1
-examsexpert.in, 0
examsite.tk, 1
examsmate.in, 1
examticket.tk, 1
@@ -35975,8 +36357,10 @@ exiled.world, 1
existest.com, 1
exit9wineandliquor.com, 1
exitooutdoor.com, 1
+exitos1000.es, 1
exitoseguro.tk, 1
exitreality.tk, 1
+exizent.tk, 1
exmart.ng, 1
exmoe.com, 1
exnce.com, 1
@@ -36049,6 +36433,7 @@ explodie.org, 1
explodingcamera.com, 1
explodingearths.com, 1
exploflex.com.br, 1
+exploit-db.com, 1
exploit.cz, 0
exploit.party, 1
exploit.ph, 1
@@ -36072,6 +36457,7 @@ expo-larionov.org, 1
expo58.tk, 1
expobeds.com, 1
expody.com, 1
+expoesiavisual.tk, 1
expoexports.tk, 1
expoline.ua, 1
exponentialnews.net, 1
@@ -36100,6 +36486,7 @@ express-vyvoz.ru, 1
express1040.com, 1
expressemotion.net, 1
expresshosting.org, 1
+expressidrop.com, 1
expressinfo.cz, 1
expressinfo.sk, 1
expressmarket.ru, 1
@@ -36245,10 +36632,12 @@ ezgamble.com, 1
ezgif.com, 1
ezguamal.com, 1
ezhub.de, 1
+ezidox.com, 1
ezifin.com, 1
ezifund.com, 1
ezik-ido.tk, 1
ezinternet.com.au, 1
+ezitech.com, 1
ezmoddingz.tk, 1
eznetworks.com.br, 1
ezorgportaal.nl, 1
@@ -36259,6 +36648,7 @@ ezshopper.co.uk, 1
eztvtorrent.com, 1
ezwritingservice.com, 1
ezytrade.africa, 1
+ezz-drops.tk, 1
ezzhole.net, 1
f-401.com, 1
f-bbs.net, 1
@@ -36289,7 +36679,6 @@ f1sport.tk, 1
f1tv-streams.live, 1
f1worldwide.tk, 1
f2h.io, 1
-f30365.com, 1
f36533.com, 1
f3b.de, 1
f3nws.com, 1
@@ -36607,6 +36996,7 @@ fairr.de, 1
fairr.online, 1
fairssl.dk, 1
fairssl.se, 1
+fairtrade010.nl, 1
fairtradegemeentegent.be, 1
fairviewfarmacy.com, 1
fairviewmotel-simcoe.com, 1
@@ -36922,18 +37312,24 @@ fashion.net, 1
fashionadvice.tk, 1
fashionandbeautystyle.com, 1
fashioncatalogues.tk, 1
+fashiondaily.tk, 1
fashiondays.bg, 1
fashiondays.hu, 1
fashiondays.ro, 1
+fashiondesign.ml, 1
fashiondock.de, 0
fashioneditor.gr, 1
fashionflavorph.com, 1
+fashionforyou.ga, 1
fashionfuture.tk, 1
+fashionlink.tk, 1
fashionlistify.tk, 1
fashionmasala.tk, 1
fashionmovie.tk, 1
+fashionone.tk, 1
fashionplus.ml, 1
fashionrecovery.co.nz, 1
+fashionreview.ml, 1
fashionsuits.tk, 1
fashiontrendsetter.com, 1
fashionunited.be, 0
@@ -37050,6 +37446,7 @@ fauxcams.com, 1
favalart.com, 1
fave.ly, 1
favedog.com, 1
+favely.com, 1
favorai.com, 1
favorit-stroy-snab.ru, 1
favoritestudent.ml, 1
@@ -37068,6 +37465,7 @@ faysalabdi.fi, 1
fazal.tv, 1
fazer.ddns.net, 1
fazhion.tk, 1
+fazo.gq, 1
fazz.id, 1
fazzfinancial.com, 1
fb-lab.de, 1
@@ -37085,6 +37483,7 @@ fbhackpass.com, 1
fbi.gov, 1
fbigame.com, 1
fbiic.gov, 1
+fbijobs.gov, 1
fbo.gov, 0
fbo.network, 1
fboerman.nl, 1
@@ -37282,6 +37681,7 @@ felixqu.com, 1
felixsanchez.tk, 1
felixsanz.com, 1
felixseele.de, 1
+felixsworld.tk, 1
felixvelarde.com, 1
fellas.com.tr, 1
felsare3.com, 1
@@ -37314,6 +37714,8 @@ fena.jp, 1
fenagav.ga, 1
fence-stlouis.com, 1
fencekirkwood.com, 1
+fencestlouis.co, 1
+fencestlouis.com, 1
feng-hhcm.com, 1
feng.si, 1
fengchuiyudaqu.ml, 1
@@ -37441,6 +37843,7 @@ fetishwheels.com, 1
fetishzone.org, 1
fetlife.com, 1
fetlinks.ga, 1
+fettbrot.tk, 1
feudalisten.de, 1
feudaltactics.com, 1
feuerhaken.org, 1
@@ -37564,6 +37967,7 @@ fid-elite.ch, 1
fid.to, 1
fidanza.eu, 1
fiddlesaw.com, 1
+fidecorp.com, 1
fidelapp.com, 1
fidelis-it.ch, 1
fidelis-it.net, 1
@@ -37983,6 +38387,7 @@ firstclassnuisance.tk, 1
firstclinic.tk, 1
firstcoastteaco.com, 1
firstcolonyengraving.com, 1
+firstcontact.cf, 1
firstderm.com, 1
firstdorsal.eu, 1
firstdry.com.br, 1
@@ -38236,6 +38641,7 @@ flashigra.tk, 1
flashissue.com, 1
flashlearners.com, 1
flashlightchart.com, 1
+flashmarkets.com, 1
flashset.tk, 1
flashtek-uk.com, 1
flassetlocators.com, 1
@@ -38268,6 +38674,7 @@ flblog.top, 1
flcatering.com, 1
flconcretelifting.com, 1
flealab.it, 1
+flect.net, 1
fleeb.xyz, 1
fleep.io, 1
fleesty.dynv6.net, 1
@@ -38356,12 +38763,13 @@ flikmsg.co, 1
flimnet.tk, 1
flinch.io, 1
fling.dating, 1
+flinkthink.ch, 1
flinny.org, 1
flip.kim, 1
flip.lease, 1
flipmusic.tk, 1
flipneus.net, 1
-flipos.be, 1
+flipos.be, 0
flippery-wynajem.pl, 1
flipphotography.ga, 1
flipsidevr.com, 1
@@ -38425,6 +38833,7 @@ florenceapp.co.uk, 1
florenciaextrema.tk, 1
florenciasabio.com, 1
florent-tatard.fr, 1
+floresastrid.tk, 1
floresearranjosonline.com.br, 1
floresvilleedc.org, 0
floria.online, 1
@@ -38537,6 +38946,7 @@ flumble.nl, 1
flunschi.goip.de, 1
fluoxetin.ga, 1
fluoxetin.tk, 1
+fluoxetine.ml, 1
fluoxetine.net, 1
flurecover.com, 1
flushlife.com, 1
@@ -38545,6 +38955,7 @@ fluteandpianoteaching.co.uk, 1
flutterappdev.com, 1
flux.healthcare, 1
fluxforge.com, 1
+fluxi.fi, 1
fluxoid.com, 1
flvyingeagle.ga, 1
flwrightwichita.org, 1
@@ -38732,6 +39143,7 @@ foodclient.ga, 1
foodcollections.ga, 1
foodcollector.ga, 1
foodcowgirls.com, 1
+foodcraft.ae, 1
fooddollar.ga, 1
foodev.de, 1
foodfirefriends.com, 1
@@ -38758,6 +39170,7 @@ foodsafety.gov, 1
foodsafetyjobs.gov, 1
foodsavers.gent, 1
foodsaversgent.be, 1
+foodscovery.it, 1
foodseurope.com, 1
foodsoul.pro, 1
foodsreborn.com, 1
@@ -38974,6 +39387,7 @@ fortipartner.uk, 1
fortisadhesives.com.au, 1
fortmatic.com, 1
fortnite.ca, 1
+fortnitemagic.ga, 1
fortoglethorpega.gov, 1
fortress.no, 1
fortress.sk, 1
@@ -39009,6 +39423,7 @@ forum-tw.tk, 1
forum-washington.tk, 1
forum24.ml, 1
forumcarriocity.tk, 1
+forumdabeleza.com.br, 1
forumdimo.fr, 1
forumirc.net, 1
forumistudentore.tk, 1
@@ -39058,11 +39473,13 @@ foto-gallery.tk, 1
foto-janvanaefst.nl, 1
foto-leitner.com, 1
foto-leitner.de, 1
+foto-mario.de, 1
foto-robitsch.at, 1
foto-roma.ru, 1
foto-znakomstva.ml, 1
foto.by, 1
fotoallerlei.com, 1
+fotoars.pl, 1
fotoblog.nrw, 1
fotobodyart.nl, 1
fotoboxvysocina.cz, 1
@@ -39161,6 +39578,7 @@ foxesare.sexy, 1
foxesofleicester.com, 1
foxghoul.com, 1
foxing.club, 1
+foxly.de, 1
foxmailer.ml, 1
foxmay.co.uk, 1
foxmetrix.com, 1
@@ -39174,6 +39592,7 @@ foxstyle.gq, 1
foxterrier.com.br, 1
foxtransportables.com.au, 1
foxtrotfm.tk, 1
+foxtwomodels.com, 1
foxycredit.com, 1
foxyslut.com, 1
foyale.io, 1
@@ -39280,7 +39699,6 @@ france-hotellerie-restauration.com, 1
france-israel-fellows.org, 1
france-news.cf, 1
franceactivetravel.cf, 1
-francebattery.com, 1
francepandi.fr, 0
francesca-and-lucas.com, 1
francescopalazzo.com, 1
@@ -39384,7 +39802,7 @@ fraurichter.net, 1
fravegacatalogo.com, 1
fraye.net, 1
frazell.net, 1
-frbg.me, 1
+frbg.me, 0
frbracch.it, 1
frc.gov, 1
frccsgo.tk, 1
@@ -39487,6 +39905,7 @@ freedatingonline.ml, 1
freedeals4u.ga, 1
freedev.cz, 1
freedgb.com, 1
+freedogecrypt.tk, 1
freedom-substitute.fr, 1
freedom.nl, 1
freedom.press, 1
@@ -39510,7 +39929,6 @@ freeenglishhelp.com, 1
freeexampapers.com, 1
freefallproductions.tk, 1
freefilesync.org, 1
-freefinancialhelp.net, 1
freefincal.com, 1
freeflarum.com, 1
freefonts.ga, 1
@@ -39545,7 +39963,6 @@ freelanceunleashed.com, 0
freelansir.com, 1
freelauri.com, 1
freelifer.jp, 1
-freelyplaygames.com, 1
freemagi.ga, 1
freeman-online.tk, 1
freemania.nl, 1
@@ -39611,9 +40028,9 @@ freetelegraph.ga, 1
freetext.org, 1
freethehustle.com, 0
freethetv.ie, 1
+freethinking.co.za, 1
freeths.co.uk, 1
freetimefun.tk, 1
-freetrial.tech, 1
freetrung.tk, 1
freetsa.org, 1
freeuseporn.org, 1
@@ -39643,6 +40060,7 @@ freifunk-in-solingen.de, 1
freifunk-lindlar.net, 1
freifunk-remscheid.de, 1
freimeldungen.de, 1
+freischaffende-architekten.de, 1
freitasul.com.br, 1
freitasul.io, 1
freiwurst.net, 1
@@ -39770,7 +40188,7 @@ frikipedia.tk, 1
frikotv.tk, 1
frilima.com.br, 1
friller.com.au, 1
-frillip.com, 1
+frillip.com, 0
fringeintravel.com, 1
frinkiac.com, 1
frino.de, 1
@@ -40083,6 +40501,7 @@ funfun.com.br, 1
funfunmstdn.tokyo, 1
fungalforager.com, 1
fungame.eu, 1
+fungit.org, 1
fungomoscow.cf, 1
funhotdate.com, 1
funhouse-inflatables.co.uk, 1
@@ -40275,10 +40694,10 @@ futurefund.com, 1
futurefundapp.com, 1
futuregrowthva.com, 1
futurehack.io, 1
-futureindia.tech, 1
futurenda.com, 1
futureofyoucdc.sg, 1
futureplanet.tk, 1
+futureshock7130.com, 1
futuresonline.com, 1
futuressm.com, 1
futurestyletiling.com.au, 1
@@ -40328,7 +40747,6 @@ fxopen.co.uk, 1
fxopen.com, 1
fxopen.com.au, 1
fxopen.com.br, 1
-fxopen.com.mx, 1
fxopen.my, 1
fxopen.ru, 1
fxp.at, 1
@@ -40399,7 +40817,6 @@ g2pla.net, 1
g2price.com, 1
g2ship.com, 1
g2soft.net, 0
-g30365.com, 1
g36533.com, 1
g36594.com, 1
g3circuit.com, 1
@@ -40549,6 +40966,7 @@ gaku-architect.com, 1
gala.kiev.ua, 0
galacg.me, 1
galacticaos.tk, 1
+galacticbusiness.com, 1
galacticfederation.eu, 1
galaksidot.tk, 1
galaktika-znakomstv.tk, 1
@@ -40571,7 +40989,7 @@ galaxyplex.tk, 1
galaxyscientific.com, 1
galaxysweeper.com, 1
galefacialplastics.com, 1
-galenguyer.com, 0
+galenguyer.com, 1
galenreasoner.com, 1
galeria42.com, 1
galeriabunkers.tk, 1
@@ -40749,6 +41167,7 @@ gamesaviour.com, 1
gamesdepartment.co.uk, 1
gameserver-admin.ga, 1
gameserver-sponsor.me, 1
+gamesgalaxy.it, 1
gamesgate.tk, 1
gameshack.io, 1
gameship.ga, 1
@@ -40782,6 +41201,7 @@ gaming-lenkrad-experten.de, 1
gaming-life.tk, 1
gaming-news.tk, 1
gaming-online.tk, 1
+gamingaktier.com, 1
gamingblogx.com, 1
gamingerox.com, 1
gamingexodus.com, 1
@@ -40889,6 +41309,7 @@ garmonia.ml, 1
garmonia.tk, 1
garnertree.com, 1
garnuchbau.de, 1
+garo.directory, 0
garo.host, 1
garo.network, 0
garonna.com.ua, 1
@@ -40961,7 +41382,7 @@ gathu.co.ke, 1
gatilagata.com.br, 1
gatlink.tk, 1
gatomix.net, 1
-gatsbyjs.com, 1
+gatot.id, 1
gattomatto.tk, 1
gattschan.tk, 1
gauche.com, 1
@@ -41017,6 +41438,8 @@ gbet24.com, 1
gbhem.org, 1
gbinsta.com, 1
gbiotech.tk, 1
+gbk-host.de, 1
+gbk-teamplan.de, 1
gbl.selfip.net, 0
gbmwolverine.com, 1
gboys.net, 0
@@ -41042,6 +41465,7 @@ gcmsnotes.com, 1
gcode.space, 1
gcoded.de, 1
gconcept.tk, 1
+gconstruction.org, 1
gcs-ventures.com, 1
gcschool.tk, 1
gcsepod.com, 1
@@ -41131,6 +41555,7 @@ geeks.lgbt, 1
geeks.one, 0
geeksforrent.com, 1
geekshirts.cz, 1
+geekspace.gq, 1
geeksquadforums.tk, 1
geekstreet.fr, 1
geekstuff.tk, 1
@@ -41237,6 +41662,7 @@ gend.moe, 1
gender-summit.com, 1
genderidentiteit.nl, 1
genderreveal.nl, 1
+genderrevealshop.nl, 1
gendrin.com, 1
gendundrupa.ch, 0
gene-drive.com, 1
@@ -41248,7 +41674,6 @@ genealogiewerkbalk.nl, 1
genealorand.com, 1
geneau.net, 1
geneeskrachtig.com, 1
-genehightower.com, 1
genehome.com.au, 1
genemesservwparts.com, 1
genemon.at, 1
@@ -41342,7 +41767,6 @@ geniushost.in, 1
geniusmarketing.ro, 1
geniusteacher.in, 1
geniuszone.biz, 1
-genjer.com, 0
genkihub.com, 1
genkiwork.com, 1
genlack.com, 1
@@ -41383,7 +41807,6 @@ gentcongres.com, 1
gentcongres.eu, 1
gentcongres.org, 1
gentcreativecityofmusic.be, 1
-gentechi.com, 1
gentengarde.be, 1
gentevenement.be, 1
gentfietst.be, 1
@@ -41520,6 +41943,7 @@ georginabouzova.tk, 1
georgioskontaxis.com, 1
georgioskontaxis.net, 1
georgioskontaxis.org, 1
+georgiosnetworks.com, 1
georgiouk.gr, 1
georgmayer.eu, 1
geosales.tk, 1
@@ -41549,6 +41973,7 @@ gerbils.tk, 1
gerbyte.co.uk, 1
gerbyte.com, 1
gerbyte.uk, 1
+gereedschapmuseumdehobbyzolder.tk, 1
gerenciaconsultor.com, 1
gergoladi.me, 1
geri.be, 1
@@ -41662,7 +42087,7 @@ geterp.ru, 1
getfedora.org, 1
getfirstalert.com, 1
getfithtx.biz, 1
-getflorence.co.uk, 1
+getflorence.co.uk, 0
getfreeelectricity.tk, 1
getfreeltc.ml, 1
getgeek.dk, 1
@@ -41775,6 +42200,7 @@ gezondetips.nl, 1
gezondheidszorg-ict.nl, 1
gezondheidszorg-it.nl, 1
gf-franken.de, 1
+gf0.ltd, 1
gf5fcalc.com, 1
gfac.ru, 1
gfahnen.de, 1
@@ -41875,6 +42301,7 @@ ghostbustersuk.tk, 1
ghostcir.com, 1
ghostdog.ga, 1
ghostdragon.tk, 1
+ghostfam.com, 1
ghostnight.ga, 1
ghostpin.ga, 1
ghostridersclan.tk, 1
@@ -41894,6 +42321,7 @@ giacchettaauto.it, 1
giacomopelagatti.it, 1
giacomorosaldi.com, 1
giakki.eu, 0
+gialupa.tk, 1
giaminh.com, 0
giancarlomarino.com, 1
giannademartini.com, 1
@@ -41970,6 +42398,7 @@ giganet.tk, 1
gigantar.com, 1
gigantism.com, 1
gigaprecos.com.br, 1
+gigashopz.com, 1
gigasoft.tk, 1
gigatags.tk, 1
gigatop.ga, 1
@@ -42172,6 +42601,7 @@ gkasper.de, 1
gkb2020.ch, 1
gkconsultancy.tk, 1
gkepm.com, 1
+gklparis.fr, 1
gkmusicindia.tk, 1
gkoenig-innenausbau.de, 1
gkralik.eu, 1
@@ -42254,7 +42684,6 @@ glevolution.com, 1
glexia.com, 1
glgclan.tk, 1
gliagrumi.it, 1
-glibmarket.in, 1
glickman-consulting.com, 1
glidestep.com, 1
glidingshop.cz, 1
@@ -42279,6 +42708,7 @@ gloalerts.com, 1
global-adult-webcams.com, 1
global-business-solutions.cf, 1
global-electronic-music.tk, 1
+global-free-classified-ads.com, 1
global-monitoring.com, 1
global-office.com, 0
global-qanoon.gq, 1
@@ -42526,6 +42956,7 @@ gocardless.com, 1
gocdn.com.br, 1
gocher.me, 1
gochu.se, 1
+gockhuatsuky.tk, 1
gocleanerslondon.co.uk, 1
goclix.ml, 1
gocphongthuy.net, 1
@@ -42619,6 +43050,7 @@ goldankauf1875.at, 1
goldband.tk, 1
goldbar.com.hk, 1
goldbug.ga, 1
+goldchip.com, 1
goldclubcasino.com, 1
goldcoast-plumbing.com.au, 1
goldcoastasian.com, 1
@@ -42638,6 +43070,7 @@ goldenclub.ga, 1
goldencoffee.it, 1
goldendawnapersonalaffair.com, 1
goldeneggs.club, 1
+goldeneyesantafe.com, 1
goldengatesports.com, 1
goldenhillsoftware.com, 1
goldenhost.ca, 1
@@ -42705,6 +43138,7 @@ gomedium.com, 1
gomega.vn, 1
gomel.chat, 1
gomel.city, 1
+gomelagromashplus.by, 1
gomelchat.com, 1
gomelphoto.com, 1
gomer.tk, 1
@@ -42749,7 +43183,6 @@ goodgaminggear.com, 1
goodhealthtv.com, 1
goodhotel.co, 1
goodiesnet.ca, 0
-goodiesoft.hu, 1
goodkitchendesign.com, 1
goodleads.co.za, 1
goodlink.ml, 1
@@ -42811,7 +43244,9 @@ gopher.tk, 1
gophoto.it, 1
gopkg.link, 1
gopnikman.cf, 1
+gopornovideo.com, 1
gopostore.com, 1
+goppold.net, 1
gopri.tk, 1
goproallaccess.com, 1
gopronow.ga, 1
@@ -42867,6 +43302,7 @@ gorschenin.com, 1
gorstom.ml, 1
gosaavd.tk, 1
gosarh.tk, 1
+gosarhiv.tk, 1
goshawkdb.io, 1
goshin-group.co.jp, 1
goshow.tv, 1
@@ -42897,6 +43333,7 @@ gotajikistan.com, 1
gotepisodes.tk, 1
gotgeeks.nl, 1
gotgenes.com, 0
+gothailand.cf, 1
gothic.dating, 1
gothiclandscape.com, 1
gothicmarketing.tk, 1
@@ -42922,6 +43359,7 @@ gotorussia.tk, 1
gotovka.ga, 1
gotoxy.at, 1
gotrail.fr, 1
+gotravel.hu, 1
gotravel.us, 1
gotrek.com.au, 1
gotriage.tk, 1
@@ -42981,6 +43419,7 @@ govtjobs.blog, 1
govtrack.us, 1
govype.com, 1
gow220.ru, 1
+gowager.co.uk, 1
gowancommunications.com, 1
gowe.wang, 0
goweraesthetics.co.uk, 1
@@ -43086,6 +43525,7 @@ graffitinetwerk.nl, 1
graffitiwall.tk, 1
grafia.ink, 1
graficasantana.com.br, 1
+graficom.com.ar, 1
grafik.gq, 1
grafik.org.ru, 1
grafimagenpublicidad.com, 1
@@ -43152,6 +43592,7 @@ grandstarcourier.ml, 1
grandviewheights.gov, 1
grandwailea.com, 1
grandworldnghiduong.com, 0
+grandyolholding.com, 1
granfort.es, 0
granfutbol.com, 1
granian.pro, 1
@@ -43229,15 +43670,16 @@ gratius.tk, 1
grattan.co.uk, 1
gratuitweb.tk, 1
graumeier.de, 1
-grauwasser-blog.de, 1
gravedigger.tk, 1
gravelshooters.com, 1
gravelshooters.net, 1
gravelshooters.org, 1
gravely.com, 1
gravensteengent.be, 1
+graver-art.ru, 1
gravescountyky.gov, 1
gravilink.com, 1
+gravira.ru, 1
gravirovshik.ru, 1
gravitascreative.net, 1
gravitlauncher.ml, 1
@@ -43264,6 +43706,7 @@ grday.com, 1
great.nagoya, 1
greatagain.gov, 1
greataltrock.tk, 1
+greatbarrierisland.nz, 1
greatepier.tk, 1
greatergood.com, 0
greaterreadingyp.org, 1
@@ -43301,7 +43744,10 @@ green-care.nl, 1
green-factory.ml, 1
green-laser.ga, 1
green-laser.ml, 1
+green-light.cf, 1
green-light.co.nz, 1
+green-light.ga, 1
+green-light.gq, 1
green-light.ml, 1
green-techno.ru, 1
greenaddress.it, 1
@@ -43320,7 +43766,7 @@ greendotgames.com, 1
greendragonsearch.tk, 1
greendrive.tk, 1
greendvorik.com.ua, 1
-greenearthlawns.com, 1
+greenearthlawns.com, 0
greenecountyny.gov, 1
greenecountyohio.gov, 1
greenecountytn.gov, 1
@@ -43772,6 +44218,7 @@ guernica1913.tk, 1
guernseycounty.gov, 1
guerra24.net, 1
guerrasgalacticas.tk, 1
+guerrilla-marketing.cf, 1
guerrillaradio.tk, 1
guessmatch.com, 1
guestby.tk, 1
@@ -43823,6 +44270,7 @@ guidesorbetiere.com, 1
guidethailande.tk, 1
guidetoiceland.is, 1
guidetourism.tk, 1
+guidograuer.ch, 1
guidopedia.ga, 1
guilde-dissection.com, 1
guildgearscore.cf, 1
@@ -43840,14 +44288,17 @@ guineapigmustach.es, 1
guinguetteclovis.com, 1
guise.tk, 1
guitar-strings-online.tk, 1
+guitar.bible, 1
guitarangel.tk, 1
guitards.tk, 1
guitarefacile.tk, 1
guitarfreak.tk, 1
+guitarrabuena.nl, 1
guitarraclasica.tk, 1
guitarreria.tk, 1
guitarristaluisquintero.com, 1
gujun-sky.com, 1
+guki.me, 1
gulabovski.ga, 1
gulchuk.com, 1
gulcinulutuna.com, 1
@@ -43897,6 +44348,7 @@ guolaw.ca, 1
guoliang.me, 1
guoliangwu.com, 1
gupfen.ch, 1
+guri.ml, 1
gurkenberry.ddns.net, 0
gurleyal.gov, 1
gurmel.ru, 1
@@ -43921,6 +44373,7 @@ gustaff.de, 1
gustarfsberg.tk, 1
gustavapp.com, 1
gustavo-lima.ml, 1
+gustavo.website, 1
gustavovelasco.ml, 1
gustavscelmins.tk, 1
gustiaux.com, 0
@@ -43983,6 +44436,7 @@ gw2efficiency.com, 1
gw2treasures.com, 1
gw2zone.net, 0
gw66.cc, 1
+gwandalancobras.com.au, 1
gwbet99.cc, 1
gwennyeeckels.com, 1
gwerder.net, 1
@@ -43996,7 +44450,6 @@ gwthub.com, 1
gwy15.com, 1
gwynfryncottages.com, 1
gxgx.org, 1
-gxlrx.net, 1
gxm5.com, 1
gxmyqy.net, 1
gyannews.ga, 1
@@ -44064,10 +44517,8 @@ h2b.me, 1
h2cclipboard.com, 1
h2cdn.cloud, 1
h2orto.it, 1
-h2ox.io, 1
h2rul.eu, 1
h2u.tv, 1
-h30365.com, 1
h36533.com, 1
h3artbl33d.nl, 1
h3b.nl, 1
@@ -44179,7 +44630,6 @@ hackerchai.com, 0
hackerco.com, 1
hackercommunity.org, 1
hackereyes.com, 1
-hackerflare.com, 1
hackerforums.tk, 1
hackergateway.com, 1
hackerinfo.ml, 1
@@ -44266,6 +44716,7 @@ haibara.top, 0
haiboxu.com, 1
haidtechnology.com, 1
haigekassa.ee, 1
+haigle.com, 1
haigure.com, 1
hails.info, 1
hailstorm.nl, 1
@@ -44373,6 +44824,7 @@ halogen.vip, 1
halogenos.org, 1
halongbaybackpackertour.com, 1
haloobaloo.com, 1
+haloperidol.cf, 1
halospawns.com, 1
halotours.rs, 1
halovanic.org, 1
@@ -44418,6 +44870,7 @@ hamsterworld.tk, 1
hamsystems.eu, 1
hamu.blue, 1
hamwan.nl, 1
+han-nas.com, 1
hana-groupsac.com, 1
hana.ondemand.com, 1
hanakaraku.com, 1
@@ -44431,6 +44884,7 @@ hancockcountyia.gov, 1
hancockcountyohioelections.gov, 1
hancocklawfl.com, 1
hand-made-business.com, 1
+hand-made24.de, 1
hand2h.com, 1
handbrake.fr, 1
handcraft.eu.org, 1
@@ -44473,6 +44927,7 @@ hangryum.com, 1
hangtenseo.com, 1
hangw.xyz, 1
hanikira.com, 1
+hanimat.pl, 1
hanisirfan.cf, 1
hanjl.com, 1
hanjuapp.com, 1
@@ -44525,6 +44980,8 @@ hao-zhang.com, 1
hao.gay, 1
haocq3.com, 1
haogoodair.ca, 1
+haorenka.co, 1
+haorenka.me, 1
haorenka.org, 1
haosygt.com, 1
haoyangmao8.com, 1
@@ -44536,6 +44993,7 @@ hapivm.com, 1
haplogroup.org, 1
happicollective.com, 1
happiestoutdoors.ca, 1
+happii.dk, 1
happineo.com, 1
happist.com, 1
happu-dinero.tk, 1
@@ -44582,13 +45040,14 @@ happyindia.ml, 1
happyland.link, 1
happylearning.com, 1
happylifestyle.com, 1
+happymondayclub.com, 1
happymothersday.tk, 1
happyretail.co, 1
happyschnapper.com, 1
happyscubadiving.tk, 1
happyteamlabs.com, 1
happytestings.com, 1
-happytiger.eu, 1
+happytours.cf, 1
happyukgo.com, 1
happywater.my, 1
happyweekend.ga, 1
@@ -44597,6 +45056,7 @@ hapronailz.tk, 1
hapsana.nl, 1
hapsfordmill.co.uk, 1
haptemic.com, 1
+hapticmedia.com, 1
hapvm.com, 1
harabar.ga, 1
harabar.gq, 1
@@ -44696,12 +45156,10 @@ harrisandharris.com.au, 1
harrisconsulting.ie, 1
harrisexteriors.com, 1
harrisonm.com, 1
-harrisonsand.com, 0
harrisonswebsites.com, 1
harry-baker.com, 1
harryagustiana.tk, 1
harrychristensen.tk, 1
-harrycroose.com, 1
harrygerritstransport.nl, 1
harrymclaren.co.uk, 1
harrypotterclan.tk, 1
@@ -44732,6 +45190,7 @@ harumi-cl.jp, 1
haruue.moe, 1
harvestapp.com, 1
harvester.fr, 1
+harvestgospelministries.org, 1
harveyauzorst.com, 1
harveyplum.com, 1
harveysautoservice.net, 1
@@ -44775,6 +45234,7 @@ hasseplatslageri.se, 1
hassiba-abderaouf.tk, 1
hassmelden.de, 1
hassra.org.uk, 1
+hastadoktor.com, 1
hastavem.com, 1
hastmassage.tk, 1
hastyllc.com, 1
@@ -44805,6 +45265,7 @@ haus-henne.de, 1
haus-momo.ch, 1
hausarzt-stader-str.de, 0
hausarztpraxis-weilheim.de, 1
+haushaltsaufloesung-vor-ort.de, 1
haushaltsaufloesung-zentrum.de, 1
haushaltsaufloesunghannover.de, 1
haushenne.de, 1
@@ -44819,6 +45280,7 @@ hautzentrumwien.at, 1
havarijna-sluzba-bratislava.sk, 1
havasuinsurance.com, 1
havasutacohacienda.com, 1
+havator.fi, 1
have-it.tk, 1
have.jp, 1
haveabounce.co.uk, 1
@@ -44882,6 +45344,7 @@ haze-productions.com, 1
haze.productions, 1
hazelglow.com, 1
hazelhof.nl, 1
+hazelkid.tk, 1
hazeltime.com, 1
hazelwilks.co.uk, 1
hazeover.com, 1
@@ -44918,6 +45381,7 @@ hcaz.io, 1
hcbj.io, 1
hceu-performance.com, 1
hcfoodpantry.org, 1
+hcg-injections.com, 1
hcgallia.tk, 1
hcie.pl, 0
hclsrilanka.com, 1
@@ -44979,6 +45443,7 @@ headforcloud.com, 1
headfullofdynamite.com, 1
heading2australia.ga, 1
headjapan.com, 1
+headlineclub.gr, 1
headlinenews.co, 1
headlinepublishing.be, 1
headofhair.pl, 1
@@ -45085,6 +45550,7 @@ healthyteame.com, 1
healthyweblife.tk, 1
heanbian.com, 1
heap.zone, 1
+heapsofheaven.com, 1
heardcountyathletics.com, 1
hearfool.cc, 1
hearingshofar.com, 1
@@ -45098,8 +45564,10 @@ heartgames.pl, 1
hearthealing.ca, 1
hearthstonehungary.hu, 1
heartlandbiomed.com, 1
+heartlandtownandcountry.tk, 1
heartmdinstitute.com, 1
heartofamum.com, 1
+heartofthecontinent.org, 1
heartsintrueharmony.com, 1
heartsucker.com, 0
hearttruth.gov, 1
@@ -45194,7 +45662,9 @@ heic.nz, 1
heid.ws, 1
heiden-wir-helfen.de, 1
heidifuller.com, 1
+heidirange.tk, 1
heidisheroes.org, 1
+heigeyuan.com, 1
heightselectrical.com.au, 1
heijblok.com, 1
heijdel.nl, 1
@@ -45230,6 +45700,7 @@ heinzencastellano.tk, 1
heiraten-gardasee.de, 1
heiraten-venedig.de, 1
heisenberg.co, 1
+heisgod.org, 1
heissluft-fritteuse.com, 1
heist-clan.tk, 1
heistheguy.com, 1
@@ -45329,6 +45800,7 @@ helm-pokale.de, 1
helm-trophy.com, 1
helminger-lrs.at, 1
help-me.today, 1
+help-step.org, 1
help207.me, 1
help207.xyz, 0
helpantiaging.com, 1
@@ -45424,6 +45896,7 @@ henryocallaghan.com, 1
henryphan.com, 0
henrysautodetail.com, 1
hens.ch, 1
+hensonphotography.com.au, 1
hentai.baby, 1
hentaigogo.com, 1
hentaimaster.net, 1
@@ -45466,8 +45939,10 @@ herds.eu, 0
herdserv.de, 1
herdwilliam.tk, 1
here.ml, 1
+herealways.tk, 1
herecsrymy.cz, 1
heredapoxetine.gq, 1
+herefordlighthouse.org, 1
heren.fashion, 1
heretic-guild.com, 1
hereticle.com, 1
@@ -45479,7 +45954,6 @@ hergeandtintin.tk, 1
herila.ml, 1
heritagebaptistchurch.com.ph, 1
heritagecoffee.co.uk, 0
-heritagemachining.ca, 1
heritagereformed.tk, 1
herkam.pl, 1
herkel.email, 1
@@ -45608,6 +46082,7 @@ hexxagon.com, 1
hey.com, 1
hey.pw, 1
heyapakabar.com, 1
+heybaker.com.au, 1
heyboldface.com, 1
heybritney.tk, 1
heybyrdie.com, 1
@@ -45646,7 +46121,6 @@ hghwebs.com, 1
hgmaranatha.nl, 1
hgpowerglue.nl, 1
hgseo.net, 1
-hguandl.com, 1
hgvnet.de, 1
hgyo.me, 1
hgyoseo.com, 1
@@ -45691,6 +46165,7 @@ hicts.nl, 1
hiczp.com, 1
hidbo.de, 1
hidden.gq, 1
+hiddendragon.ml, 1
hiddenhillselectric.com, 1
hiddenhillselectrical.com, 1
hiddenhillselectrician.com, 1
@@ -45710,6 +46185,7 @@ hidedd.com, 1
hideouswebsite.com, 1
hidglobal.com, 1
hidingin.space, 1
+hidrolimpiadorasprofesionales.org, 1
hidroshop.com.br, 1
hidroshoping.com.br, 1
hieisuki.ga, 1
@@ -45740,6 +46216,7 @@ highcorkett.com, 1
highdaseo.ml, 1
highdesertroboticsurgery.com, 1
highdeserttinyhomes.com, 1
+highdonate.tk, 1
higheducation.ml, 1
highenergy.ro, 1
higherpress.org, 1
@@ -45751,6 +46228,7 @@ highland-webcams.com, 1
highlandparkcog.org, 1
highlandpublicschool.co.in, 1
highlandsfl.gov, 1
+highlandsmode.nl, 1
highlatitudestravel.com, 0
highlevelwoodlands.com, 1
highlightsfootball.net, 1
@@ -45843,6 +46321,7 @@ hinterposemuckel.de, 1
hintss.pw, 0
hinyari.net, 1
hiparish.org, 1
+hipcircles.tk, 1
hipeople.com.br, 1
hiper-humor.tk, 1
hiperbusinessblog.hu, 1
@@ -45914,6 +46393,7 @@ historiaeculturaguarani.org, 1
historiageneral.com, 1
historiasdepueblo.es, 1
historiasyrelatos.tk, 1
+historiasztuki.tk, 1
historichousesghent.be, 1
historicizam.tk, 1
historischehuizengent.be, 1
@@ -45928,6 +46408,7 @@ hitafterhitentertainment.com, 1
hitandhealth.nl, 1
hitchpin.com, 1
hitchunion.org, 1
+hitech-news.ml, 1
hitechgr.eu, 1
hitechnologystore.com, 1
hitechweirdo.com, 0
@@ -46043,6 +46524,7 @@ hledejpravnika.cz, 1
hlfh.space, 1
hlg66.cc, 1
hlg88.cc, 1
+hlidacnajemneho.cz, 1
hlidani-tornado.cz, 1
hloe0xff.ru, 1
hlpublicidad.com, 1
@@ -46056,6 +46538,7 @@ hlx66.cc, 1
hlx86.cc, 1
hly0928.com, 1
hlz.mn, 1
+hm-notes.ru, 1
hm1ch.com, 1
hm1ch.ovh, 1
hm773.net, 1
@@ -46066,6 +46549,7 @@ hmnd.io, 1
hmoegirl.com, 1
hmri.org.au, 1
hms-waldmann.de, 1
+hms-zentrum.de, 1
hmsseahawk.com, 0
hn.search.yahoo.com, 0
hn122.cc, 1
@@ -46096,6 +46580,7 @@ hobby-freizeit.de, 1
hoberg.ch, 1
hobindesign.com, 1
hobokenrecords.tk, 1
+hocgiai.com, 1
hochhaus.us, 1
hochoukikikiraku.com, 1
hochstift-party.de, 1
@@ -46119,6 +46604,7 @@ hocoma.org, 1
hocomamedical.com, 1
hoctienganhgiaotiep.ga, 1
hoctracnghiem.com, 1
+hocz.net, 1
hodeis.ga, 1
hodeys.com, 1
hodgephotography.com, 1
@@ -46155,6 +46641,7 @@ hogvorts.tk, 1
hogwarts.io, 1
hohenleimbach.de, 1
hohenpoelz.de, 1
+hohm.in, 1
hohma.tk, 1
hohnet.com, 0
hoing.io, 1
@@ -46179,6 +46666,7 @@ holdingcelebrations.tk, 1
holdmybeer.io, 1
holdport.com, 1
holebedeljek.hu, 1
+holger-schwarze.de, 1
holgerlehner.com, 1
holi-coresdaindia.com.br, 1
holidayclub.tk, 1
@@ -46195,11 +46683,14 @@ holisticacupuncture.com.au, 1
holisticdevelopmentagency.ml, 1
holistichealer.in, 1
holisticon.de, 1
+holiy.jp, 1
hollabanken.cf, 1
holland-sailing.de, 1
+hollandhouse.info, 1
hollandsewolken.nl, 1
hollermann.eu, 1
hollidays.tk, 1
+hollisters.servepics.com, 1
hollowpoint.xyz, 1
hollowrap.com, 1
hollowwinds.xyz, 1
@@ -46243,7 +46734,6 @@ holyspiritweb.org, 1
holytransaction.com, 1
holywhite.com, 1
holywr.it, 1
-holz.nu, 1
holzed.com, 1
holzschutz-holzbearbeitung.de, 1
holzspielzeug-shop.ch, 1
@@ -46287,6 +46777,7 @@ homedentist.cl, 1
homedev.cf, 1
homedeveloper.gq, 1
homedeveloper.ml, 1
+homedirectory.ml, 1
homeehome.com, 1
homefacialpro.com, 0
homefarmhealesville.com.au, 1
@@ -46295,6 +46786,7 @@ homegardendecoration.tk, 1
homegardeningforum.com, 1
homegardenresort.nl, 1
homegreenmark.com, 1
+homegreens.eu, 1
homehunting.pt, 1
homeimagician.com.au, 1
homeimprovement.ga, 1
@@ -46475,11 +46967,11 @@ horizonresourcesinc.com, 1
horizonshypnosis.ca, 0
horizontalsystems.io, 1
horkel.cf, 1
+hormigonimpreso.biz, 1
horn.co, 1
hornblower.tk, 1
hornburg.io, 1
hornertranslations.com, 1
-hornetsecurity.com, 1
horny-gay-dragons.com, 1
hornyforhanzo.com, 1
horo.me, 0
@@ -46521,6 +47013,7 @@ hosmussynergie.nl, 0
hosoi-tax.com, 1
hospitalcmq.com, 1
hospitality-colleges.com, 1
+hossleylps.com, 1
host-morezar.ml, 1
host2100.xyz, 1
host4us.cc, 1
@@ -46564,6 +47057,7 @@ hostinginnederland.nl, 1
hostinglogin.net, 1
hostingphp.ch, 1
hostingplussize.cloud, 1
+hostingsupremo.com, 1
hostingsvizzera.com, 1
hostingtg.com, 1
hostingtipps.eu, 1
@@ -46606,6 +47100,7 @@ hotel-rosner.at, 1
hotel-schiller.de, 0
hotelamgarnmarkt.at, 0
hotelarevalo.com, 1
+hotelastor.com, 1
hotelbiz.gq, 1
hotelbonacabol.com, 1
hotelbretagne.dk, 1
@@ -46709,7 +47204,6 @@ houser.lu, 1
houseracko.com, 1
housese.at, 1
housingloan.jp, 1
-housingneedz.com, 1
houstonapartmentinsiders.com, 1
houstonauthorizedrepair.com, 1
houstoncreditlaw.com, 1
@@ -46773,7 +47267,6 @@ howtogosolar.org, 0
howtohomepage.tk, 1
howtolaser.com, 1
howtomovetheneedle.com, 1
-howtopronounce.com, 1
howtorunfasterandlonger.com, 1
howtostopsnoring.tk, 1
howtoteachviolin.com, 1
@@ -46844,7 +47337,10 @@ hristijanspirovski.tk, 1
hrjfeedstock.com, 1
hrjfeedstock.org, 1
hrjob.ml, 1
+hrka.cc, 1
+hrka.me, 1
hrkfamilylaw.com, 1
+hrkgame.com, 1
hrlab.de, 1
hrlive.ga, 1
hrmafia.ga, 1
@@ -46894,6 +47390,7 @@ hspinc.ca, 1
hsr.gov, 0
hsreformas.es, 1
hsrm.cz, 1
+hsselite.com, 1
hst.tc, 1
hsts-preload-test.xyz, 1
hsts.eu, 1
@@ -46929,6 +47426,7 @@ htl.wiki, 1
htlball.at, 1
htmanager.fr, 1
htmdom.com, 1
+html-code-generator.com, 1
html-css.tk, 1
html5.org, 1
html5media.info, 1
@@ -47154,6 +47652,7 @@ humored.gq, 1
humpchies.com, 1
humpen.se, 1
humppakone.com, 1
+humuluslupulus.de, 1
humus.tk, 1
hund.io, 1
hundeformel.de, 1
@@ -47182,6 +47681,7 @@ huntertagog.de, 1
huntexpired.com, 0
huntingdonbouncers.co.uk, 1
huntingdonlifesciences.com, 1
+huntingspirits.tv, 1
huntingtonestateproperties.com, 1
huntingtonwv.gov, 1
huntsvillealtransit.gov, 1
@@ -47198,11 +47698,13 @@ hupsa-kindermode.be, 1
huracanvillegas.com, 1
hurbascooter.com, 1
hurd.is, 1
+hurinkazan2020.com, 1
hurleyhomestead.com, 1
huroji.com, 0
huron.tk, 1
hurricanecarroll.com, 1
hurricanelabs.com, 0
+hurrikane.us, 1
hurtigtinternet.dk, 1
hus.gay, 1
husakbau.at, 1
@@ -47220,6 +47722,7 @@ hustlehope.com, 1
hustlerstate.tk, 1
huto.ml, 1
hutson-foods.com, 1
+huuduc.xyz, 1
huureensite.com, 1
huurwoordenaar.nl, 1
huutonauru.net, 1
@@ -47296,6 +47799,7 @@ hydrochlorothiazide.gq, 1
hydrochlorothiazide125.ga, 1
hydrocloud.net, 1
hydrocontrolsystems-janssenwaterproofing.com, 1
+hydrocontrolsystems.com, 1
hydrogenplatform.com, 1
hydrographicsocietybenelux.eu, 1
hydroid.tk, 1
@@ -47408,6 +47912,7 @@ hzbk.org, 0
hztgzz.com, 1
hzwc.nl, 1
i--b.com, 1
+i-0v0.in, 1
i-3c.co.jp, 1
i-aloks.ru, 1
i-connect.ie, 0
@@ -47450,7 +47955,6 @@ i24.host, 1
i2capmark.com, 1
i2gether.org.uk, 1
i2verify.com, 0
-i30365.com, 1
i36533.com, 1
i365365.com, 1
i36588.com, 1
@@ -47475,7 +47979,6 @@ i9397.com, 1
i9721.com, 1
i9728.co, 1
i99win.com, 1
-i9elo.com, 1
i9s.in, 1
ia.cafe, 1
ia.net, 1
@@ -47642,7 +48145,6 @@ iceflow.tk, 1
icegate.gov.in, 1
iceheart.tk, 1
icehost.cf, 1
-icehousefit.com, 1
icelandic.cf, 1
icelandiclamb.is, 1
iceloch.com, 1
@@ -47739,6 +48241,7 @@ icze4r.net, 1
icze4r.online, 1
icze4r.org, 1
iczelion.tk, 1
+iczer.one, 1
iczer.org, 1
id-blog.ch, 0
id.atlassian.com, 0
@@ -47758,6 +48261,7 @@ idarv.com, 1
idaspis.com, 1
idatalabs.com, 0
idblab.tk, 1
+idbs.com, 1
idc-business.be, 0
idc.yn.cn, 1
idc95.com, 1
@@ -47781,6 +48285,7 @@ idealbody.gq, 1
idealimplant.com, 1
idealize.ml, 1
idealnastrona.pl, 1
+idealninajemce.cz, 1
idealog.id, 1
idealsegurancaeletronica.com.br, 1
idealtruss.com, 1
@@ -47838,6 +48343,7 @@ idfc.gov, 1
idgard.de, 0
idgateway.co.uk, 1
idgr.de, 1
+idgs.my, 1
idheastudio.com, 1
idhosts.co.id, 1
idid.tk, 1
@@ -47858,7 +48364,6 @@ idmobile.co.uk, 1
idn.gov.pt, 0
idndx.com, 1
idoc24.com, 1
-idohost.cf, 1
idohost.tk, 1
idol-bikes.ru, 1
idolf.dk, 1
@@ -47909,7 +48414,6 @@ ienekolife.net, 1
ienergizer.com, 1
ieros.eu, 1
ies-italia.it, 0
-ies911.com, 1
iesconsultores.com, 1
iesonline.co.in, 1
iesucreipi.edu.co, 1
@@ -47937,6 +48441,7 @@ ifengge.cn, 1
ifgcdn.com, 1
ifibe.com, 1
ifisher.xyz, 1
+ifiveglobal.com, 1
ifleurs.com, 1
iflyi.me, 1
ifma.edu.br, 1
@@ -47992,6 +48497,7 @@ igk.nz, 1
igkabel.cf, 1
igkabel.ga, 1
igkabel.gq, 1
+igkabel.ml, 1
igkabel.tk, 1
iglesiabelen.tk, 1
iglesiadesalvacion.org, 1
@@ -48047,6 +48553,7 @@ ihacker.ai, 1
ihacklabs.com, 0
ihakkitekin.com, 1
ihasco.co.uk, 1
+ihatereceipts.com, 1
ihatethissh.it, 1
ihcprofile.com, 1
ihcr.top, 0
@@ -48066,6 +48573,7 @@ ihorvorotnov.com, 1
ihost.md, 1
ihostup.net, 1
ihouseu.com, 1
+ihrb.com.br, 1
ihre-pflege-sachsen.de, 1
ihredls.de, 1
ihrhost.com, 1
@@ -48073,7 +48581,6 @@ ihri.ca, 1
ihsangans.my.id, 1
ihsolution.in, 1
ihtdenisjaccard.com, 1
-ihuan.me, 1
ihydra.net, 1
ihzys.com, 1
ii5197.co, 1
@@ -48139,6 +48646,7 @@ ikfloreer.nu, 1
ikigaiapp.it, 1
ikiler.com, 1
ikinokori-marketing.com, 1
+ikiroutayhtye.fi, 1
ikisser.de, 1
ikk.me, 1
ikkakujuku.work, 0
@@ -48154,6 +48662,7 @@ iknet.top, 1
iknowd.org, 1
ikonenmuseumkampen.nl, 1
ikools.com, 1
+ikootu.com, 1
ikparis.com, 1
iks.moe, 1
iksi.cc, 1
@@ -48209,6 +48718,7 @@ iligang.net.cn, 1
iligang.xin, 1
ilii.me, 1
ilikepenguins.tk, 1
+ilimitar.tk, 1
iliny.hu, 1
ilkeakyildiz.com, 0
illaadventure.com, 1
@@ -48231,7 +48741,6 @@ illogical-gaming.at, 1
illorenese.fr, 1
illsley.org, 1
illubel.com, 1
-illumed.net, 1
illumepgh.com, 1
illuminaterecovery.com, 1
illuminatiofficial.vip, 1
@@ -48244,6 +48753,7 @@ illusionsdoptique.com, 1
illusionunlimited.com, 1
illustrate.biz, 1
illuxat.com, 1
+illuzionclothing.com, 1
ilmainensanakirja.fi, 1
ilmataat.ee, 1
ilmcorp.com, 1
@@ -48356,6 +48866,7 @@ imawhale.com, 1
imbianchino.roma.it, 1
imboom.tk, 1
imbrian.org, 1
+imbunatatiri-logan.tk, 1
imcassociation.com, 1
imcreative.ro, 1
imcsi.cn, 1
@@ -48442,6 +48953,11 @@ immobilien-in-istanbul.de, 1
immobilien-wallat.de, 1
immobilien-zirm.de, 1
immobiliengutachter-holland.de, 1
+immobilienmakler-berlin-biesdorf.de, 1
+immobilienmakler-berlin-kaulsdorf.de, 1
+immobilienmakler-berlin-mahlsdorf.de, 1
+immobiliensachverstaendiger-ludwigsburg.de, 1
+immobiliensachverstaendiger-waiblingen.de, 1
immobilier-nice.fr, 0
immobilier-swiss.ch, 1
immobilier92.net, 1
@@ -48464,6 +48980,7 @@ imolights.com, 1
imolights.net, 1
imolog.cl, 1
imoner.com, 1
+imoner.ga, 1
imoney.tw, 1
imouto.my, 0
imoveisavenda.rio.br, 1
@@ -48489,6 +49006,7 @@ imperdin.com, 1
imperdintechnologies.com, 1
imperial-legrand.com, 1
imperialfenceinc.com, 1
+imperialfencestlouis.com, 1
imperialism.rip, 1
imperialmiami.com, 1
imperialteam.tk, 1
@@ -48570,6 +49088,7 @@ imrunner.ru, 1
ims-sargans.ch, 1
imscompany.com, 1
imstocker.com, 1
+imtikai.ml, 1
imtikaib.ml, 1
imwalking.de, 1
imy.rs, 1
@@ -48584,6 +49103,7 @@ in-depthgame.reviews, 1
in-depthoutdoors.com, 1
in-flames.com, 1
in-love.tk, 1
+in-ua.com, 1
in.search.yahoo.com, 0
in.xero.com, 0
in1000worten.de, 1
@@ -48600,6 +49120,7 @@ inaned.ga, 1
inanyevent.london, 1
inares.org, 0
inarizona.tk, 1
+inazuma7.jp, 1
inbitcoin.it, 1
inblank.tk, 1
inbound.menu, 1
@@ -48611,6 +49132,8 @@ inbrand.agency, 1
inbulgaria.info, 1
incarceratedwombats.com, 1
inceneritore.ga, 1
+incentea.com, 1
+incentivi.it, 1
inceptionband.tk, 1
incert.cn, 1
incertint.com, 1
@@ -48770,6 +49293,7 @@ inesfinc.es, 1
inesnutricion.com, 1
inessoftsec.be, 1
inesta.nl, 1
+inet.se, 1
inethost.eu, 1
inetserver.eu, 1
inetsoftware.de, 1
@@ -48810,7 +49334,7 @@ infinitenews.cf, 1
infinitescript.com, 1
infinitiofallentownparts.com, 1
infinitiofaugustaparts.com, 1
-infinitioflynnwoodparts.com, 1
+infinitioflynnwoodparts.com, 0
infinitiofmarinparts.com, 1
infinitomaisum.com, 1
infinity-uitvaartzorg.nl, 1
@@ -48924,7 +49448,6 @@ inforabota.tk, 1
inforge.tk, 1
informace-zbozi.cz, 1
informaciondeciclismo.com, 1
-informasi-teknologi.com, 1
informat.ga, 1
informaticapremium.com, 0
informaticmousset.tk, 1
@@ -49104,6 +49627,7 @@ inima.org, 1
inin.gq, 1
inishbofin.ie, 1
init.blog, 0
+init.de, 1
init3.cn, 1
initialization.tech, 1
initiative-3d.org, 1
@@ -49113,6 +49637,9 @@ initramfs.io, 1
initrd.net, 1
injapan.nl, 0
injigo.com, 0
+injust.cf, 1
+injust.ga, 1
+injust.gq, 1
injust.me, 1
injust.ml, 1
injust.tk, 1
@@ -49284,6 +49811,7 @@ insidebeach.com.br, 1
insidebedroom.com, 0
insidebitcoins.de, 1
insideevs.com, 1
+insideevs.com.tr, 1
insideevs.de, 1
insideevs.fr, 1
insideevs.ru, 1
@@ -49383,6 +49911,7 @@ institutogiuseppe.com, 1
institutogiuseppe.com.ar, 1
institutolancaster.com, 1
institutomaritimocolombiano.com, 1
+institutomarketingdigital.net, 1
institutosparroquiales.com, 1
instrukci.tk, 1
instrumart.ru, 0
@@ -49465,6 +49994,7 @@ intelligence-explosion.com, 1
intelligenetics.com, 1
intelligentcontacts.com, 1
intelligentrics.com, 1
+intelligentwaves.com, 1
intelligizedigital.com, 1
intellihr.io, 1
intellimatica.se, 1
@@ -49635,6 +50165,7 @@ interwebz.nz, 1
intestclub.tk, 1
intheater.de, 1
intheevent.com, 1
+inthefurrow.com, 1
inthepicture.com, 1
inthouse.cloud, 1
intim-24.tk, 1
@@ -49891,6 +50422,7 @@ ipal.im, 1
ipal.name, 1
ipal.tel, 1
ipanchev.com, 1
+iparduotuves.lt, 1
iparenda.tk, 1
iparkki.com, 1
ipass.live, 1
@@ -50037,7 +50569,6 @@ ircmett.de, 1
ircnow.org, 1
ircoholik.ml, 1
ircsapiklari.tk, 1
-ird.nz, 1
irdll.com, 1
ireaco.com, 1
iready.ro, 1
@@ -50088,6 +50619,7 @@ irlfp.com, 1
irlprable.tk, 1
irma-gadalka.tk, 1
irmag.ru, 1
+irmakprefabrik.com, 1
irmgard-woelfle.de, 1
irmgardkoch.com, 1
irmo.hr, 1
@@ -50193,6 +50725,7 @@ ishiharaken.com, 1
ishimen.co.jp, 1
ishland.com, 1
ishome.org, 1
+ishopforpowerserg.com, 1
ishtyl.com, 1
isidore.uk, 1
isif-ostewg.org, 1
@@ -50318,6 +50851,7 @@ issforum.org, 1
issho.jp, 1
issio.net, 1
isslshop.com, 1
+issoexiste.com, 1
issue.watch, 1
issuerconsulting.com, 1
issues.email, 1
@@ -50456,7 +50990,6 @@ itcbuerobedarf.de, 1
itchy.nl, 1
itchybrainscentral.com, 1
itconsulting-wolfinger.de, 1
-itconvergence.com, 1
itcoolie.in, 1
itcreative.ro, 1
itcs.services, 1
@@ -50546,6 +51079,7 @@ itrew.ru, 1
itrezzo.com, 1
itring.pl, 0
itrodeo.com, 1
+itrollskogens.tk, 1
itruss.com.tw, 1
itruth.tk, 1
its-gutachten.de, 1
@@ -50568,6 +51102,7 @@ itsaw.de, 1
itsayardlife.com, 1
itsblue.de, 1
itsburning.nl, 1
+itsch-itsche.com, 1
itsdcdn.com, 1
itsec.link, 1
itsecblog.de, 1
@@ -50597,10 +51132,12 @@ itspersonaltraining.nl, 1
itsquiet.org, 1
itsryan.com, 1
itsstefan.eu, 1
+itstartswithme.ca, 1
itstatic.tech, 1
itsuitsyou.co.za, 1
itsundef.in, 1
itsupport24.tk, 1
+itsupportguys.com, 1
itsupportnacka.se, 1
itswincer.com, 1
itsynergy.co.uk, 1
@@ -50630,6 +51167,7 @@ iv2.com, 1
ivahbbiz.tk, 1
ivampiresp.com, 1
ivan-tadej.tk, 1
+ivan-varga.tk, 1
ivan1874.cf, 1
ivan1874.dynu.net, 1
ivanaleksandrov.com, 1
@@ -50724,6 +51262,7 @@ ixquick.info, 1
ixquick.nl, 1
ixtan.ga, 1
ixuexi.tech, 1
+iyan.es, 1
iyassu.com, 1
iyc.web.tr, 1
iycharter.com, 0
@@ -50757,6 +51296,10 @@ izttech.com, 1
izuba.info, 0
izumi-ryokan.com, 1
izumi.tv, 1
+izxxs.com, 1
+izxxs.net, 1
+izxzw.net, 1
+izzymendosa.net, 1
izzyontour.tk, 1
izzys.casa, 1
j-ecolife.com, 1
@@ -50780,7 +51323,6 @@ j15h.nu, 1
j1visahealthinsurance.com, 1
j2ee.cz, 1
j2h.de, 1
-j30365.com, 1
j32662.com, 1
j32663.com, 1
j32664.com, 1
@@ -50876,6 +51418,7 @@ jabboworld.tk, 1
jaberg-rutschi.ch, 1
jabergrutschi.ch, 1
jabjab.de, 1
+jabodent.com, 1
jabsolutions.tk, 1
jacaranda-deutschland.org, 1
jaccblog.com, 1
@@ -51126,6 +51669,7 @@ janbrodda.de, 1
jandesign.at, 1
jandev.de, 1
jandj.yachts, 0
+jandonkers.com, 1
jands.co.id, 1
janduchene.ch, 1
jane.com, 1
@@ -51144,7 +51688,6 @@ janhuelsmann.com, 1
jani.media, 1
janikrabe.com, 1
janine-und-johannes.de, 1
-janitorutah.com, 0
janjoris.nl, 1
jankamp.com, 1
janker.me, 0
@@ -51171,6 +51714,7 @@ janvanmechelen.tk, 1
janvari.com, 1
janvaribalint.com, 1
janw.me, 1
+janwern.com, 1
jaot.info, 1
japanasonic.ru, 1
japanchiropractic.com.br, 1
@@ -51211,6 +51755,7 @@ jarett-lee.com, 1
jarl.ninja, 1
jarmandental.com, 1
jarmatys.pl, 1
+jarmix.fi, 1
jarniashop.se, 1
jarno.rocks, 1
jarnob.xyz, 1
@@ -51528,6 +52073,7 @@ jelmer.co.uk, 1
jelmer.uk, 1
jelmoli-shop.ch, 1
jem.gov, 1
+jem.shoes, 1
jembatankarir.com, 1
jemefaisdesamis.com, 1
jemezsprings-nm.gov, 1
@@ -51548,6 +52094,7 @@ jenniferlucia.com, 1
jennifermason.eu, 1
jennifersauer.nl, 1
jennifertilly.tk, 1
+jenningsbet.com, 1
jenniwiltz.com, 1
jennysarl.ch, 0
jennysource.tk, 1
@@ -51560,6 +52107,7 @@ jenslody.de, 1
jensrex.dk, 1
jents.ro, 1
jenyak.com, 1
+jeoffrey-sanchez.ovh, 1
jepa.si, 1
jeparamedia.com, 1
jeproteste.info, 1
@@ -51579,6 +52127,7 @@ jeremysnotes.com, 1
jeremytcd.com, 1
jeremywinn.com, 1
jeremywinn.xyz, 1
+jerevise.fr, 1
jericamacmillan.com, 1
jering.tech, 1
jerisandoval.tk, 1
@@ -51596,6 +52145,7 @@ jerridoswell.tk, 1
jerryabrams.com, 1
jerrybustillo.tk, 1
jerrysretailstores.com, 1
+jerrytindell.com, 1
jerryweb.org, 1
jerryyu.ca, 1
jerseybikehire.co.uk, 1
@@ -51697,9 +52247,11 @@ jexler.net, 1
jez.nl, 1
jezebel.com, 1
jezeravillage.com, 1
+jezura.cz, 1
jf-beco.pt, 1
jf-fotos.de, 1
jf-igrejanovadosobral.pt, 1
+jf-madalena.tk, 1
jf-projects.de, 0
jf886.cc, 1
jfbst.net, 1
@@ -51800,7 +52352,6 @@ jimmiestore.com, 1
jimmycai.com, 1
jimmycarterlibrary.gov, 1
jimmyroura.ch, 0
-jimshaver.net, 1
jimsheatandcool.com, 1
jimslop.nl, 1
jimwoodrealty.com, 1
@@ -51824,7 +52375,6 @@ jino-jossy.appspot.com, 1
jino.gq, 1
jinshuju.net, 1
jiogo.com, 1
-jiotvdth.com, 1
jiretvariedades.com, 1
jiripik.com, 1
jisai.net.cn, 1
@@ -51996,6 +52546,7 @@ jobsindemedia.nl, 1
jobsisbrown.com, 1
jobsjj.com, 1
jobskilled.co.za, 1
+jobsknowlgee.tk, 1
jobsnet.eu, 1
jobsocity.com, 1
jobsoid.com, 1
@@ -52154,6 +52705,7 @@ johyn.me, 1
joi-dhl.ch, 0
joifur.com, 1
joinamericacorps.gov, 1
+joinfear.tk, 1
joinhonor.com, 1
joinmobilizon.org, 1
joinpeertube.org, 1
@@ -52298,6 +52850,7 @@ jordibelgraver.eu, 1
jordibelgraver.xyz, 1
jordywijman.nl, 1
jorexenterprise.com, 1
+jorgelopezorquesta.tk, 1
jorgemarquez.es, 1
jorgenegrete.tk, 1
jorgvandeven.nl, 1
@@ -52331,6 +52884,7 @@ josephcz.win, 0
josephcz.xyz, 0
josephgeorge.com.au, 1
josephmarino.net, 1
+josephojo.com, 1
josephpinder.com, 1
josephrichard.com, 1
josephsniderman.com, 1
@@ -52369,12 +52923,14 @@ joshuamccracken.org, 1
joshuamessick.com, 1
joshuameunier.com, 1
joshuaschmitt.us, 1
+joshygeo.tk, 1
josien.fr, 1
josien.net, 1
josmith.co.za, 1
josoansi.de, 1
jossandmain.com, 1
jotajotapro.es, 1
+jotbe.io, 1
jotes-creations.de, 1
jottenheijm.com, 1
joubinkhorsandmd.com, 1
@@ -52424,6 +52980,7 @@ joyjohnston.ca, 0
joymaxiptv.com, 1
joyofcookingandbaking.com, 1
joyofhaskell.com, 1
+joyorganicscoupons.com, 1
joyousisle.com, 1
joyqi.com, 1
joyreactor.cf, 1
@@ -52466,6 +53023,7 @@ jpshop.ru, 1
jpsinflatables.co.uk, 1
jpslconsulting.ca, 1
jpst.it, 1
+jpvermogensregie.com, 1
jqlin.com, 1
jquery.wtf, 1
jr5devdoug.xyz, 1
@@ -52491,6 +53049,7 @@ jrtapsell.co.uk, 1
jrucomsoc.tk, 1
jrulka.ru, 1
jrxpress.com, 1
+jrzhong.com, 1
js-web.eu, 1
js-webcoding.de, 1
js0204.com, 1
@@ -52536,12 +53095,14 @@ jsvr.tk, 0
jswebbdevelopment.com, 1
jsxc.ch, 1
jt-evolution.tk, 1
+jtbservice.se, 1
jtcat.com, 1
jtconsultancy.sg, 1
jtg-inc.com, 1
jtl-software.com, 1
jtp.id, 1
jtrocinski.com, 1
+jtrojanowska.pl, 1
jts3servermod.com, 1
jtslay.com, 1
jttech.se, 1
@@ -52652,6 +53213,7 @@ julienstalder.ch, 0
julientartarin.com, 1
julienvenesson.fr, 1
juliet-squad.tk, 1
+julietous.be, 1
julietta-sanchez.org, 1
julio.jamil.nom.br, 1
juliohernandezgt.com, 1
@@ -52751,15 +53313,17 @@ juristique.fr, 1
juristique.info, 1
juristique.org, 1
juristique.us, 1
+jurjendevries.com, 1
jurnalilmiah.com, 1
jurojin.net, 1
jurposluga.tk, 1
jurquestion.tk, 1
jurriaan.ninja, 1
jusfitness.com.au, 1
+juspay.in, 1
just-a-clanpage.de, 1
just-bees.de, 1
-just-heberg.fr, 1
+just-heberg.fr, 0
just-keep-swimming.tk, 1
just-muh.de, 1
just-pools.co.za, 1
@@ -52877,7 +53441,9 @@ jxm.in, 1
jxs.ch, 1
jy11.de, 1
jybrid.com, 1
+jydemarked.dk, 1
jyk.me, 1
+jyllandsakvariet.dk, 1
jyoba.co.jp, 1
jyoti-fairworks.org, 1
jyrilaitinen.fi, 1
@@ -52885,6 +53451,7 @@ jyvaskylantykkimies.fi, 1
jzbk.org, 0
jzcapital.co, 1
jzeb.co, 1
+jzeg.net, 1
jzgj088.com, 1
jztkft.hu, 1
jzwebdesign.ie, 1
@@ -52894,6 +53461,7 @@ k-jtan.ca, 1
k-labs.be, 1
k-linkcarecenter.com, 1
k-matsudaclinic.com, 1
+k-mino.com, 1
k-netz.de, 1
k-pan.com, 1
k-plant.com, 1
@@ -52911,7 +53479,6 @@ k1yoshi.com, 0
k234234.com, 1
k258059.net, 1
k2mts.org, 1
-k30365.com, 1
k3508.com, 1
k36533.com, 1
k38.cc, 1
@@ -53065,6 +53632,8 @@ kabat-fans.cz, 1
kabataanpartylist.com.ph, 1
kabbac.com, 1
kabel.cf, 1
+kabel.ga, 1
+kabel.gq, 1
kabel.ml, 1
kabellegger.nl, 1
kabeltv.co.nz, 1
@@ -53087,6 +53656,7 @@ kachka.cf, 1
kachlikova2.cz, 1
kack.website, 1
kacperchmielowiec.pl, 1
+kadalove.net, 1
kadenba.ch, 1
kadeshfoundation.org, 1
kadet.net.ru, 1
@@ -53102,6 +53672,7 @@ kadvi.tk, 1
kadykchanskiy.ml, 1
kaeme.com, 1
kaeptns-sechser.de, 1
+kaese-journal.ch, 1
kaesehagen.nl, 1
kafeh-jazan.com, 1
kafel-ufa.tk, 1
@@ -53118,7 +53689,6 @@ kaggle.com, 1
kagicomb.org, 1
kagitreklam.com, 1
kagomesashi.tk, 1
-kagucho.net, 1
kagutech.com, 1
kahane.org, 1
kahootkings.works, 1
@@ -53262,7 +53832,6 @@ kalugadeti.ru, 1
kalugin.tk, 1
kalwak.cr, 1
kalwestelectric.com, 1
-kalyanmatka.guru, 1
kalyazin-online.tk, 1
kam-serwis.pl, 1
kamalame.co, 1
@@ -53309,11 +53878,13 @@ kana-mono.biz, 1
kana.me, 1
kanaete-uranai.com, 1
kanag.pl, 1
+kanakmetals.com, 1
kanal-schaefer.de, 1
kanal-tv-haensch.de, 1
kanapa.gq, 1
kanar.nl, 1
kanatsuki.tk, 1
+kanbanindeleble.com, 1
kancolle.me, 1
kanctovary.tk, 1
kandalife.com, 1
@@ -53463,6 +54034,7 @@ karinov.co.id, 1
karinwerner.com, 1
karit.nz, 1
karlbowden.com, 1
+karlbrandesmediation.com, 1
karlic.net, 1
karlin.run, 1
karlis-kavacis.id.lv, 1
@@ -53490,6 +54062,7 @@ karo.pc.pl, 1
karodos.pl, 1
karolak.fr, 0
karolaschinkel.de, 1
+karolinacwik.com, 1
karopapier.de, 1
karopc.pl, 1
karoverwaltung.de, 1
@@ -53528,6 +54101,7 @@ karula.org, 1
karuneshjohri.com, 1
karupp-did.net, 1
kas.ie, 1
+kasad.com, 1
kasasaprotect.com, 1
kasaysayan.tk, 1
kaseban.com, 1
@@ -53543,7 +54117,6 @@ kashifshah.tk, 1
kashinavi.com, 1
kashis.com.au, 1
kashousing.tk, 1
-kashrutbaking.com, 1
kashsports.com, 1
kasiafricagroup.org, 1
kasinobonus.com, 1
@@ -53560,6 +54133,7 @@ kasperstad.dk, 1
kassa.com, 1
kassa.expert, 1
kassa.fr, 1
+kassola.tk, 1
kastankaoffice.cz, 1
kastelruth.biz, 1
kastemperaturen.ga, 1
@@ -53571,6 +54145,7 @@ kat.marketing, 1
kat4at.tk, 1
kataiszilveszter.hu, 1
katalog-parfyum.tk, 1
+katalog-serverov.cf, 1
katalog-serverov.ga, 1
katalog-tovarov.tk, 1
katalogbajugamismu.com, 1
@@ -53666,6 +54241,7 @@ kawaiii.link, 1
kawaiiku.com, 1
kawaiiku.de, 1
kawamura-inc.jp, 1
+kawasakipartsonline.co.uk, 1
kawuk.com, 1
kay.la, 1
kay.moe, 1
@@ -53695,6 +54271,7 @@ kazard.co.za, 1
kazek.com.pl, 1
kazekprzewozy.pl, 1
kazino5.tk, 1
+kazna.ml, 1
kaznur.tk, 1
kaztest.tk, 1
kazu.click, 1
@@ -53774,6 +54351,7 @@ kcal4you.se, 1
kcam91.com, 1
kccargo.us, 1
kcire.me, 1
+kck-online.tk, 1
kcliner.com, 1
kcmicapital.com, 1
kcpromi.sk, 1
@@ -53851,6 +54429,7 @@ kefu.chat, 1
kegan.lol, 1
keganthorrez.com, 1
kegelschiene.net, 1
+kehalcpa.ca, 1
kehlenbach.net, 1
keian.tk, 1
keifel.de, 1
@@ -53874,6 +54453,7 @@ keithwillcock.com, 1
keithws.net, 1
kejadiananeh.com, 1
kejar.id, 0
+kejpop.pl, 1
kekarimi.com, 1
keke-shop.ch, 1
keke125.idv.tw, 1
@@ -53991,6 +54571,8 @@ kenzelmann.name, 1
keops-spine.fr, 1
keops-spine.us, 1
kepak.tk, 1
+kepinski.ch, 1
+kepinski.me, 1
kepkonyvtar.hu, 1
keponews.com, 1
keralit.nl, 1
@@ -54089,7 +54671,6 @@ kevinrandles.com, 0
kevinrousseeuw.be, 1
kevintolaw.com, 1
kevinvanderperren.tk, 1
-kevinwstanton.com, 1
kevyn.lu, 1
kexino.com, 1
key-form.fr, 1
@@ -54128,6 +54709,7 @@ keysofart.com, 1
keyspanish.com, 1
keysso.net, 1
keysupport.org, 1
+keyua.org, 1
keywalker.co.jp, 1
keywaysconsulting.co.uk, 1
keywebdesign.nl, 1
@@ -54363,9 +54945,9 @@ kimai.cloud, 1
kimamass.com, 1
kimbal.co.uk, 1
kimberleythomson.tk, 1
+kimbunlar.tk, 1
kimdotcom.tk, 1
kimdumaine.com, 1
-kimiadaro.ir, 1
kimicar.de, 1
kimino-school.com, 1
kimiris.com, 1
@@ -54436,6 +55018,7 @@ kingdominnergy.com, 1
kingdoms.gg, 1
kingfast.cc, 1
kingfast.eu.org, 1
+kingfin.com, 1
kingforex.co, 1
kingiescastles.co.uk, 1
kingjamesbibleonline.org, 1
@@ -54483,6 +55066,8 @@ kino-zavr.tk, 1
kino.ma, 1
kinobag.tk, 1
kinobarashka.ga, 1
+kinocheck.com, 1
+kinocheck.de, 1
kinodrom.kiev.ua, 1
kinodrom.tk, 1
kinofest.tk, 1
@@ -54634,6 +55219,7 @@ kiteschoolzandvoort.nl, 1
kitesurfen.tk, 1
kitevalley.tk, 1
kitke.de, 1
+kitpara.shop, 1
kits-graphiques-shop.tk, 1
kits-graphiques.tk, 1
kitsapsolutions.com, 1
@@ -54642,9 +55228,13 @@ kitseliit.ee, 1
kitsquid.de, 1
kitsuna.eu, 1
kitten-advice-forum.cf, 1
+kittmedia.com, 0
kittpress.com, 0
+kitty-core.org, 1
+kittybot.de, 1
kittyhacker101.tk, 0
kittymagician.com, 1
+kittywilder.com, 1
kivitelezesbiztositas.hu, 1
kiwee.eu, 1
kiweeagentur.de, 1
@@ -54765,6 +55355,7 @@ klebeband.eu, 1
kleberstoff.xyz, 1
klebetape.de, 1
kleebauerhof.com, 1
+kleemans.nl, 1
kleen.tk, 1
kleidertauschpartys.de, 1
kleim.fr, 1
@@ -54951,6 +55542,7 @@ knoxcountytn.gov, 1
knoxvilleimplants.com, 1
knrt.de, 1
knrt.eu, 1
+knsrv.ml, 1
knthost.com, 1
knuckles.tk, 1
knulla.me, 1
@@ -54968,7 +55560,6 @@ koalas.org, 1
kob-one.com, 1
koba.jp, 1
kobar.id, 1
-kobejet.com, 1
kobezda.net, 1
kobieta.guru, 1
kobietydokodu.pl, 1
@@ -55006,7 +55597,7 @@ kodexplorer.ml, 1
kodifirestick.info, 1
kodify.net, 1
kodikom.de, 1
-kodineuerleben.eu, 1
+kodineuerleben.eu, 0
kodioso.com, 1
kodkollen.com, 1
kodkollen.se, 1
@@ -55085,10 +55676,12 @@ kokomo.xyz, 1
kokomu.com, 1
kokona.ch, 1
kokoro-singsong.com, 1
+kokoroheart.cf, 1
kokotaru.com, 1
kokteili.tk, 1
koktelparty.tk, 1
kokumoto.com, 1
+kokuryu.ch, 1
kokyu-caba.com, 1
kolaci.tech, 1
kolaczek.cz, 1
@@ -55131,6 +55724,7 @@ koluke.com, 1
kolyapetrov.tk, 1
kom.pe, 1
komall.net, 1
+komarex.pl, 1
komarh.tk, 1
komehyo.co.jp, 1
komelin.com, 0
@@ -55149,6 +55743,7 @@ komintern43.tk, 1
komischkeszeug.de, 1
komisjon.ee, 1
komitur.tk, 1
+komlangs.nl, 1
kommaer.dk, 1
komment.ml, 1
kommotiv.nl, 0
@@ -55250,7 +55845,7 @@ koobin.com, 1
koobin.es, 1
kood13.com, 1
koodaklife.com, 1
-koode.mx, 1
+koode.mx, 0
koodimasin.ee, 1
koodimasin.eu, 1
kooer.org, 1
@@ -55286,6 +55881,7 @@ kopfsalat.eu, 0
kopfschaschlik.de, 1
kopfundseele.de, 1
kopieid.be, 1
+kopipasta.cf, 1
kopjethee.nl, 1
kopker.hu, 1
koplancpa.com, 1
@@ -55386,6 +55982,7 @@ kotly-marten.com.ua, 1
kotmale.com, 1
kotobox.net, 1
kotois.com, 1
+kotoishihear.tk, 1
kotomei.moe, 1
kotonoha.cafe, 1
kotonozaka.xyz, 1
@@ -55467,6 +56064,7 @@ krajzlinsky.info, 1
kraken-ttt.com, 1
kraken.io, 1
kraken.site, 1
+krakenrobotik.de, 1
krakozyabra.ga, 1
krakozyabra.gq, 1
krakozyabra.tk, 1
@@ -55523,11 +56121,14 @@ kreatywni.co, 1
krechka.ru, 1
kredigram.com, 1
kredit-abzocke.com, 1
+kredit-galerie.de, 1
kredit-kenntnis.de, 1
kredit-mit-negativer-schufa.com, 1
kredit-negative-schufa.de, 1
kredit-ohne-schufa.at, 1
+kredit-ohne-schufa.de, 1
kredit-online.ru, 1
+kredit-schule.de, 1
kredit-zeit.de, 1
kredit24.de, 1
kredita.dk, 1
@@ -55543,6 +56144,7 @@ kreditzone.ml, 1
kredobank.com.ua, 1
kredytzen.pl, 1
kreen.org, 1
+kreftprzewieda.pl, 1
krehak.com, 1
kreidl.org, 1
kreidlernet.tk, 1
@@ -55933,6 +56535,7 @@ kuehnel-bs.de, 0
kuehnel-online.eu, 1
kuemmerlin.eu, 1
kuemmling.eu, 1
+kuepper.nrw, 1
kuepper.tk, 1
kuestensiegel.de, 1
kugelblitz.co, 1
@@ -55945,7 +56548,6 @@ kukal.cz, 1
kukeri-karlovo.tk, 1
kuketz-blog.de, 1
kuketz-security.de, 1
-kuklavrost.ru, 1
kuko-crews.org, 1
kukoon.de, 0
kukutza.tk, 1
@@ -55981,6 +56583,7 @@ kundo.se, 1
kunra.de, 1
kunstcentraal.nl, 1
kunstdrucke-textildruck.de, 1
+kunstenkracht1919.tk, 1
kunsthandel-augustus-rex.de, 1
kunstundunrat.de, 1
kunvarji.com, 1
@@ -56096,7 +56699,6 @@ kvalitnitesneni.cz, 1
kvarta.tk, 1
kvartira-grad.tk, 1
kvartiragrad.tk, 1
-kvateka.ru, 1
kvcc.com.au, 1
kvdekolk.tk, 1
kvest-v-moskve.ga, 1
@@ -56142,6 +56744,7 @@ kyberna.xyz, 1
kybi.sk, 1
kycisrael.com, 1
kydara.com, 1
+kydros.net, 1
kyj22.com, 1
kyj250.com, 1
kyj322.com, 1
@@ -56149,7 +56752,6 @@ kyj33.com, 1
kyj35.com, 1
kyj36.com, 1
kyj369.com, 1
-kyj377.com, 1
kyj4.com, 1
kyj44.com, 1
kyj511.com, 1
@@ -56186,6 +56788,7 @@ kylianvermeulen.com, 1
kylianvermeulen.nl, 1
kylie-pomada.tk, 1
kylinj.com, 0
+kylinseating.in, 1
kyn.be, 1
kynaston.org.uk, 1
kynastonwedding.co.uk, 1
@@ -56230,7 +56833,6 @@ l2l.vn, 1
l2p.lol, 1
l2relax.ml, 1
l3.ee, 1
-l30365.com, 1
l33te.net, 1
l36533.com, 1
l4s.me, 1
@@ -56302,6 +56904,7 @@ labms.com.au, 1
labobooks.com, 1
laboiteanem.fr, 1
laboiteasous.com, 1
+labor-augsburg-mvz.de, 1
laboratoriodemarketingb3.com, 1
laboratoriomolina.tk, 1
laborriquita.tk, 1
@@ -56433,6 +57036,7 @@ laesisvefurinn.is, 1
laextra.mx, 1
lafamiliallc.com, 1
lafansite.tk, 1
+lafantasticatravel.com, 1
lafayette-rushford.com, 1
lafayetteco.gov, 1
lafeemam.fr, 1
@@ -56520,7 +57124,6 @@ lakesherwoodexteriorlighting.com, 1
lakesherwoodlandscapelighting.com, 1
lakesherwoodlighting.com, 1
lakesherwoodoutdoorlighting.com, 1
-lakeshorepoolsandtubs.com, 1
lakeshowlife.com, 1
lakestreetministorage.com, 1
lakeview.photography, 1
@@ -56563,6 +57166,7 @@ lamaturitadidaniele.ml, 1
lambauer.com, 1
lambda.dance, 1
lambda.sx, 1
+lambdajournal.com, 1
lambdaof.xyz, 1
lambertshealthcare.co.uk, 1
lambertz.xyz, 1
@@ -56616,6 +57220,7 @@ lanabello.com.br, 1
lanaengel.com, 1
lanahallen.com, 1
lanasomething.com, 1
+lanaturedaure.com, 1
lanbroa.eu, 1
lancashirecca.org.uk, 1
lancea.pl, 1
@@ -56668,6 +57273,7 @@ landscaping-montreal.com, 1
landscaping.gq, 1
landsforsale.co.il, 1
landslide.tk, 1
+landtrack.com.au, 1
landware.cf, 1
landyhome-register.com, 1
landyparts.nl, 1
@@ -56748,6 +57354,7 @@ lapazsheriff.org, 1
lapcameradongnai.com, 1
lapcamerahochiminh.com, 1
lapdance.tk, 1
+lapelpinsandcoins.com, 1
laperfumista.es, 1
laperla-chemnitz.de, 1
laperladelduero.tk, 1
@@ -56771,6 +57378,7 @@ lapps.es, 1
laprensadelasagradafamilia.org, 1
lapseofsanity.net, 1
lapshore.com, 1
+laptop-sewamurah.com, 1
laptopcloseout.ca, 1
laptopdropoff.com, 1
laptopnewbie.eu.org, 1
@@ -56851,6 +57459,7 @@ lasandwicheriamedellin.com, 1
lasarmas.com, 1
lasavonnerieducroisic.fr, 1
lascana.co.uk, 1
+lascandalistas.org, 1
lasdelgadas.tk, 1
lasept.com.ua, 1
laser-jeux.com, 1
@@ -56992,6 +57601,7 @@ lauralinde.de, 1
lauraofrank.com, 1
lauraohagan.com, 1
laurasplacefamilysupport.org.au, 1
+laurateen.net, 1
lauravaindumentaria.com, 1
laureaty.tk, 1
laurelblack.com, 1
@@ -57058,6 +57668,7 @@ lawabidingcactus.com, 1
lawcer.com, 1
lawda.ml, 1
lawebnobasta.tk, 1
+lawfirmdubai.net, 1
lawhery.com, 1
lawlessenglish.com, 1
lawlessfrench.com, 1
@@ -57360,6 +57971,7 @@ le056.com, 1
le0yn.ml, 1
le10sport.com, 1
le130rb.com, 1
+le133cannes.com, 1
le23.fr, 1
le42mars.fr, 1
le802.com, 1
@@ -57380,6 +57992,8 @@ leadinfo.com, 1
leadplan.ru, 0
leadquest.nl, 1
leadsformoney.tk, 1
+leadsguru.ru, 1
+leaf-nail.com, 1
leaf.ninja, 1
leafandseed.co.uk, 1
leafans.tk, 0
@@ -57434,6 +58048,7 @@ learntobeonline.com, 1
learntosurfcaparica.com, 1
learntosurflisbon.com, 1
learntradingforexnow.com, 1
+leasecar.uk, 1
leaseit24.com, 1
leaseourthings.com, 1
leasit.de, 1
@@ -57494,7 +58109,6 @@ lechenietravami.cf, 1
lechiennoir.net, 1
lechite.ga, 1
lechompenchaine.fr, 1
-lechucero.com, 1
leclubnestleantillesguyane.fr, 1
leclubnestlereunion.re, 1
lecoinchocolat.com, 1
@@ -57661,6 +58275,7 @@ leighneithardt.com, 1
leignier.org, 1
leilautourdumon.de, 1
leilonorte.com, 1
+leiloonart.com, 1
leiming.co, 1
leipzig.photo, 1
leipziger-triathlon.de, 1
@@ -57677,6 +58292,7 @@ lekkergoings.nl, 1
lekkerleben.de, 1
leko.tk, 1
lekota.co.uk, 1
+lektier.cf, 1
lelac-capfrance.com, 0
leladesign.it, 1
lele13.cn, 1
@@ -57686,9 +58302,11 @@ leliekerk.nl, 1
leliveld.nl, 1
leliveld.org, 1
lellek.at, 1
+lellyboi.ml, 1
lelo.com.pl, 1
lelocaldrive.com, 1
lelubre.info, 1
+lelunch.ca, 1
lelux.fi, 1
lelux.net, 1
lelux.site, 1
@@ -57698,6 +58316,7 @@ lemarcheelagrandeguerra.it, 1
lemat.de, 1
lemazol.fr, 1
lemcarni.shop, 1
+lemco.dk, 1
lemfam.ru, 1
lemilane.it, 1
leminhduong.com, 1
@@ -57718,12 +58337,12 @@ lena-nitro.org, 1
lenafonster.se, 1
lenagroben.de, 1
lenalio.fr, 1
+lenamorino.net, 1
lenaneva.ru, 0
lenardoips.tk, 1
lence.net, 1
lencia.ga, 1
lenczewski.ddns.net, 1
-lendahandmissionteams.org, 1
lendingclub.com, 1
lendingmate.ca, 1
lenemes.tk, 1
@@ -57745,7 +58364,9 @@ lenkeran.tk, 1
lenkunz.me, 1
lenn-blaschke.com, 1
lennar.com, 1
+lennard-indlekofer.de, 1
lennard.tk, 1
+lennard0711.eu, 1
lennartoldenburg.de, 1
lennertvh.xyz, 1
lennox.cf, 1
@@ -57758,6 +58379,7 @@ lenostech.gr, 1
lenou.nl, 1
lenovovietnam.net, 1
lenqiue.com, 1
+lenr-experiment.tk, 1
lenr-forum.com, 1
lensdoctor.com, 1
lenseshop.tk, 1
@@ -57887,6 +58509,7 @@ lesdouceursdeliyana.com, 1
leseditionsbraquage.com, 1
lesfouines.com, 1
lesgarconsenligne.com, 1
+lesgarianes.com, 1
lesgitesdusapey.fr, 0
lesgoodnews.fr, 1
lesh.eu, 1
@@ -57964,6 +58587,7 @@ letscrackit.ml, 1
letsdebug.net, 1
letsdevelop.com.br, 1
letsdocode.com, 1
+letsdoeit.com, 1
letsencrypt-for-cpanel.com, 1
letsfame.com, 1
letsflyinto.space, 1
@@ -57972,6 +58596,7 @@ letsgetchecked.com, 1
letsgetintouch.com, 1
letsgo.icu, 1
letsgowhilewereyoung.com, 1
+letsmakeiteasy.tech, 1
letsnet.org, 1
letson.me, 1
letsorganise.uk, 1
@@ -57994,6 +58619,7 @@ letzi-immobilien.ch, 1
leu.to, 0
leuchtmann.ch, 1
leuenhagen.com, 1
+leukert.org, 1
leulu.com, 1
leumi-how-to.co.il, 1
leutgeb.xyz, 1
@@ -58039,6 +58665,7 @@ levis.fun, 1
levis.name, 1
levisenlaw.com, 1
levittasaude.com.br, 0
+levna-knihovna.cz, 1
levothyroxineonline.gq, 1
levs.tk, 1
levshamaster.org, 1
@@ -58074,12 +58701,14 @@ lexway.pk, 1
leybelsgarden.cf, 1
leybold.co.id, 1
leyendaluzrenacer.com, 1
+leylalewis.com, 1
leymaritima.com, 1
leytron.tk, 1
lez.gent, 1
lez2020.be, 1
lez2020.gent, 1
lezdomsm.com, 1
+lezwatchtv.com, 1
lf112.net, 1
lfashion.eu, 1
lfaz.org, 1
@@ -58110,6 +58739,7 @@ lghfinancialstrategy.ch, 0
lgiswa.com.au, 1
lgnsh.fr, 1
lgobchod.cz, 1
+lgp.go.th, 1
lgpecasoriginais.com.br, 1
lgrs.com.au, 1
lgscripts.com.br, 1
@@ -58198,7 +58828,6 @@ libr.ee, 1
libra.com, 1
libractes.tk, 1
librairieducontretemps.com, 1
-librairiezbookstore.com, 1
libraries.vic.gov.au, 1
librarium.tk, 1
library-quest.com, 1
@@ -58397,6 +59026,7 @@ liftmastercloud.com, 1
liftoff.rocks, 1
liftyourgame.com, 1
lig.ink, 0
+liga.ng, 1
liga99.tk, 1
ligadelconsorcista.org, 1
ligadosgames.com, 1
@@ -58428,6 +59058,7 @@ lightingsimivalley.com, 1
lightingthousandoaks.com, 1
lightingwestlakevillage.com, 1
lightme.us, 1
+lightmere.com, 1
lightning-wallet.com, 1
lightning.community, 1
lightning.engineering, 1
@@ -58517,6 +59148,7 @@ liliweb.tk, 1
liljohnsanitary.net, 1
lillbrothers.com, 1
lille.ml, 1
+lillieprivat.org, 1
lilliputpreschool.co.nz, 1
lilly-lil.org, 1
lillyfox.de, 1
@@ -58691,6 +59323,7 @@ linkst.co, 1
linkstagr.am, 1
linkthis.me, 1
linkthis.ml, 1
+linkthisstatus.ml, 1
linktio.com, 1
linkto.cf, 1
linku.com, 1
@@ -58702,6 +59335,7 @@ linky.tk, 1
linkycat.com, 1
linkyou.top, 0
linley.de, 1
+linmago.com, 1
linmi.cc, 1
linnaeusgroup.co.uk, 1
linncounty-ia.gov, 1
@@ -58850,6 +59484,7 @@ lisamccorrie.com, 1
lisanzauomo.com, 1
lisapo.info, 1
lisas.ml, 1
+lisasack.net, 1
lisasc.gq, 1
lisasworkshop.co.uk, 1
lisavrobinson.tk, 1
@@ -58947,6 +59582,7 @@ littleboutiqueshop.uk, 1
littledev.nl, 1
littlefamilyadventure.com, 1
littlefingersindia.com, 1
+littlegiants.edu.au, 1
littlehide.gq, 1
littlelife.co.uk, 1
littlelucifercafe.tk, 1
@@ -59024,6 +59660,7 @@ liveconcertvideo.tk, 1
livedemo.pw, 1
livedesign.at, 1
livedesign24.de, 1
+liveevents.ee, 1
liveflightapp.com, 1
liveforspeed.se, 1
livehelpindia.com, 1
@@ -59055,6 +59692,7 @@ livelonglife.tk, 1
livelovelaughlg.com, 1
livelyapps.com, 1
livemomentum.ml, 1
+livemosspointe.com, 1
livenewsrussia.tk, 1
liveomadic.com, 1
liveperformersmeeting.net, 1
@@ -59266,6 +59904,7 @@ localblitz.com, 0
localblock.co.za, 1
localbouncycastle.com, 1
localbusinessimprovement.com, 1
+localcleann.uk, 1
localcryptopremium.com, 1
localcryptos.com, 1
locald.at, 1
@@ -59547,6 +60186,8 @@ lokaal.org, 1
lokal-speisen.de, 1
loker.id, 1
lokjagruktafoundation.com, 1
+lokoo.dk, 1
+lokusec.com, 1
lola.by, 1
lolas-vip.com, 1
lolaseuropeancafe.com, 1
@@ -59660,7 +60301,6 @@ long0776.com, 1
long0777.com, 1
long08.com, 1
long0818.com, 1
-long0855.com, 0
long0877.com, 1
long0878.com, 1
long0897.com, 1
@@ -59740,6 +60380,7 @@ loopower.com, 1
looseleafsecurity.com, 1
loothole.com, 1
loots.eu, 1
+lop12.com, 1
lopendvuurtje.tk, 1
lopezmanzano.com, 1
loposchokk.com, 1
@@ -59783,6 +60424,7 @@ loritaboegl.de, 1
lorn.tk, 1
lornabenes.com, 1
lorqui.tk, 1
+lorrainestreatmentroom.co.uk, 1
lorucreative.fi, 1
los-diablos.tk, 1
losangelesescorts.net, 1
@@ -59796,6 +60438,7 @@ losemperadores.tk, 1
loseweightbaby.tk, 1
loseweightin5days.tk, 1
losflamers.tk, 1
+losfogueteros.com, 1
losgringos.tk, 1
loshogares.mx, 1
losinterrogantes.com, 1
@@ -59856,6 +60499,7 @@ louange-reconvilier.ch, 0
louboutin.tk, 1
louboutinshoessale.tk, 1
loucanfixit.com, 1
+loudhills.pl, 1
louerunhacker.fr, 1
louhomeworkouts.com, 1
louisa.tk, 1
@@ -59974,8 +60618,10 @@ lowcarbspark.com, 1
lowcosthost.cf, 1
lowcostivf.net, 1
lowcostwire.com.au, 1
+lowercostcalls.com, 1
lowerpricefinder.com, 1
lowerthetone.com, 1
+lowies.com.au, 1
lowmagnitude.com, 1
lowsec.space, 1
lowsidetna.com, 1
@@ -60019,7 +60665,6 @@ lrumeq.com, 1
ls-alarm.de, 1
ls-mapping-team.de, 1
ls-modcompany.com, 1
-ls-rp.es, 1
lsal.me, 1
lsbricks.com, 1
lsc-dillingen.de, 1
@@ -60191,6 +60836,7 @@ luffyhair.com, 1
luftbild-siegerland.de, 1
luftreiniger.biz, 1
lufu.io, 1
+lugandbezel.com, 1
lugaresturisticosdeguatemala.ga, 1
luggagecare.com, 1
luggagechoices.com, 0
@@ -60243,6 +60889,7 @@ lukaswiden.com, 1
lukasztkacz.com, 1
lukaszuk.net, 1
lukaszwojcik.net, 1
+luke-hacks.com, 1
luke.ch, 1
luke6887.me, 1
lukeistschuld.de, 1
@@ -60261,11 +60908,13 @@ lukesutton.info, 1
lukezweb.tk, 1
lukin.ga, 1
lukka.tk, 1
+lukloveswhisky.pl, 1
lukmanulhakim.id, 1
lukonet.com, 1
luksusy.pl, 1
lukull-pizza.de, 1
lule-kendo.tk, 1
+lullugun.net, 1
luls.tk, 1
lumacurve.com, 1
lumbercartel.ca, 1
@@ -60326,6 +60975,7 @@ lunepieters.co.za, 1
lunextd.com, 1
lungcancerchallenge.ca, 1
lungta.pro, 1
+lungvictorycarpet.com, 1
lunidea.ch, 0
lunight.ml, 1
lunis.net, 1
@@ -60395,6 +61045,8 @@ lux.com.de, 1
luxarchive.tk, 1
luxcraft.eng.br, 1
luxden.com, 1
+luxe.digital, 1
+luxebadkameraccessoires.nl, 1
luxeblades.com, 1
luxedentalfl.com, 1
luxegram.co, 1
@@ -60406,6 +61058,8 @@ luxeunderlay.com, 0
luxfosdecoenterprise.com, 1
luxhome.tk, 1
luxmare.hr, 1
+luxonengineering.com, 1
+luxonmx.com, 1
luxosemimos.com.br, 1
luxplay.com.tw, 1
luxsci.com, 1
@@ -60572,7 +61226,6 @@ m2international.com, 1
m2os.com, 1
m2tm.fr, 1
m3-gmbh.de, 1
-m30365.com, 1
m365.co, 1
m36533.com, 1
m42-gmbh.de, 1
@@ -60596,6 +61249,8 @@ m9728.co, 1
ma-eir.nl, 1
ma-maison-container.fr, 1
ma-ze-linux.tk, 1
+ma109.org, 1
+ma162.org, 1
ma2t.com, 1
maagdesigns.com.uy, 1
maahchepen.tk, 1
@@ -60623,6 +61278,8 @@ mac-world.pl, 1
mac.biz.tr, 1
mac.osaka.jp, 1
macabacus.com, 1
+macallan-tls.com, 1
+macallantls.com, 1
macangus-wainwright.com, 1
macaos.com, 1
macapflag.com, 1
@@ -60669,6 +61326,7 @@ machu-picchu.nl, 1
machupicchu.tk, 1
maciej.ml, 1
macil.tech, 1
+macintyremotorinn.net.au, 1
macinyasha.net, 1
macioszektv.eu, 1
macji-raj.si, 1
@@ -60740,6 +61398,7 @@ madecenter.com.br, 1
madeconsultingsrl.it, 1
madedwell.com, 1
madeglobal.com, 1
+madeinbarcelona.com, 1
madeincana.com, 1
madeinolive.com, 0
madeinrussia.com, 1
@@ -60828,6 +61487,7 @@ mafiasi.de, 1
mafondue.ch, 0
mafy.fi, 1
mag-led.com, 1
+maga.host, 1
magaconnection.com, 1
magadan.gq, 1
magadan.ml, 1
@@ -60849,12 +61509,14 @@ magazinedotreino.com.br, 1
magazone.ml, 1
magbt.net, 1
magdafornal.pl, 1
+magdalena-pulawska.pl, 1
magdalenabus.tk, 1
magdalenatransa.tk, 1
magdeburg.directory, 1
magdic.eu, 1
magebit.com, 1
magebrawl.com, 1
+magel.io, 1
magellan-met.ru, 1
magenbrot.net, 0
magenda.sk, 1
@@ -60871,6 +61533,7 @@ maggot.cf, 1
magi-cake.com, 1
magiamgiatot.tk, 1
magic-cards.info, 1
+magic-carpetcleaning.co.uk, 1
magic-cheerleading.tk, 1
magic-photo-events.fr, 1
magical-secrets.com, 1
@@ -60897,6 +61560,7 @@ magicnatura.ro, 1
magicnethosting.com, 1
magicomotor.com, 1
magicorama.com, 1
+magicskillet.com, 1
magicspaceninjapirates.de, 1
magicstay.com, 1
magictable.com, 1
@@ -60965,6 +61629,7 @@ magnitola.ml, 1
magnoliadoulas.com, 1
magnoliastrong.com, 1
magnunbaterias.com.br, 1
+magnusonhomes.com, 1
magodasredes.com.br, 1
magonote-nk.com, 1
magosmedellin.com, 1
@@ -61062,6 +61727,7 @@ mailmerc.com, 1
mailmum.io, 1
mailnara.co.kr, 1
mailon.ga, 1
+mailpass.ml, 1
mailpenny.com, 1
mailsend.ml, 1
mailstart.ga, 1
@@ -61124,6 +61790,7 @@ majameer.com, 1
majaweb.cz, 1
majemedia.com, 1
majesnix.org, 1
+majesticsailing.com, 1
majestio.tk, 1
majid.info, 1
majisign.co.uk, 1
@@ -61141,6 +61808,7 @@ majorpussycum.com, 1
makaleci.com, 1
makalu.me, 1
makangratis.id, 1
+makani.be, 1
makariza.com.co, 1
makasetesan.com, 1
make-your-own-song.com, 1
@@ -61163,13 +61831,13 @@ makenaiyo-fx.com, 1
makephpsites.com, 1
makepro.net, 1
makera.ga, 1
-makeranimacoes.com, 1
makerdao.com, 1
makermiles.com, 1
makermiles.net, 1
makermiles.org, 1
makesenseofdata.co.uk, 1
maketheneighborsjealous.com, 1
+maketodiet.com, 1
makeupevelinua.ga, 1
makeupillusion.com, 1
makeuplove.nl, 1
@@ -61177,7 +61845,6 @@ makeurbiz.com, 1
makeurl.ml, 1
makewebbetter.com, 1
makfra.com, 1
-makhmudov.net, 1
maki-chan.de, 1
makinen.ru, 1
makingmemoney.ml, 1
@@ -61230,6 +61897,7 @@ maldenvotes.com, 1
maldives-showing.cf, 1
maldives.cx, 1
male-cats-spray.ml, 1
+malecondemusique.fr, 1
maleevcues.com, 1
malek3d.com.br, 1
malenaamatomd.com, 1
@@ -61250,6 +61918,7 @@ malibuexteriorlighting.com, 1
malibulingerie.com, 1
malibumodas.com.br, 1
maliciousdeath.tk, 1
+malicis.com, 1
malie.it, 1
malik.holdings, 1
malik.id, 1
@@ -61300,6 +61969,7 @@ malwareinvestigator.gov, 1
malwarekillers.com, 1
malwaretips.com, 1
malwarewise.com, 1
+malworld.me, 1
malwr.ee, 1
malypiesekzuzi.pl, 1
malysvet.net, 0
@@ -61332,7 +62002,6 @@ mamochka.org.ua, 0
mamodsteam.tk, 1
mamohe.de, 1
mamoni.co, 1
-mamospienas.lt, 1
mamradost.sk, 1
mamsds.com, 1
mamtapark.tk, 1
@@ -61400,6 +62069,7 @@ maneggio.milano.it, 1
manelli.fr, 1
maneql.co.jp, 1
maneql.info, 1
+manero.de, 1
manesht.ir, 1
manforums.com, 1
manfredgruber.net, 1
@@ -61451,7 +62121,6 @@ manilaprinciples.org, 1
maniorpedi.com, 1
maniosglass.gr, 1
manipil.ch, 0
-manipurmatka.net, 1
manito.kr, 1
manitouspringsco.gov, 1
manja-und-martin.de, 1
@@ -61541,12 +62210,14 @@ manufacturinginmexico.org, 1
manufacturingsupportgroup.co.uk, 1
manufacturingusa.com, 1
manulife.ca, 1
+manuscript.com, 1
manuscripteditorial.com, 1
manuscriptlink.com, 1
manusiasosial.tk, 1
manutd.org.np, 1
manuth.life, 1
manwork.tk, 1
+manxa.com, 1
manyetikboya.com, 1
manyhotfiesta.ml, 1
manylots.ru, 1
@@ -61590,6 +62261,7 @@ marabumadrid.com, 0
marabunta.io, 1
maracarlinicourses.com, 1
maracit.tk, 1
+maraichere-gourmande.org, 1
marakovits.net, 1
maransurology.com, 1
marasma.tk, 1
@@ -61663,6 +62335,7 @@ marcoreitmeier.de, 1
marcositaliandeli.co.uk, 1
marcosocio.com, 0
marcosteixeira.tk, 1
+marcsello.com, 1
marcus-scheffler.com, 1
marcus.pw, 0
marcusburghardt.tk, 1
@@ -61687,7 +62360,6 @@ marga.tech, 1
margagriesser.de, 1
margan.ch, 1
margaret.land, 1
-margarethfidela.com, 1
margaridamendessilva.com, 1
margatroid.com, 1
margatroid.net, 1
@@ -61773,6 +62445,7 @@ marinershousecalstock.com, 1
marinettecountywi.gov, 1
maringalazer.com.br, 1
mario-ancic.tk, 1
+mario.com.ua, 1
marioabela.com, 1
marioberluchi.by, 0
mariogarcia.tk, 1
@@ -61787,6 +62460,7 @@ marisamorby.com, 0
marisasitaliankitchen.com, 1
mariskavankasbergen.nl, 1
marisolcu.org, 1
+maritime-mea.com, 1
maritlarsen.ml, 1
maritlarsen.tk, 1
marivalemotions.com, 1
@@ -61796,10 +62470,12 @@ marjeta-gurtner.ch, 1
marjoleindens.be, 1
marjon.photography, 1
marjonruns.nl, 1
+marjorie-wiki.de, 1
marjoriebarretto.tk, 1
marjoriecarvalho.com.br, 1
mark-armstrong-gaming.com, 1
mark-dietzer.de, 1
+mark-goeder-tarant.com, 1
mark-semmler.de, 1
mark1998.com, 1
markaconnor.com, 1
@@ -61930,6 +62606,7 @@ marliesslomp.nl, 1
marloncommunications.com, 1
marlonlosurdopictures.com, 1
marlosoft.net, 1
+marlowfaceandbody.com, 1
marmaluot.com, 1
marmista.roma.it, 1
marmo.tk, 1
@@ -61950,8 +62627,10 @@ marqueswines.co.uk, 1
marquisepools.com, 1
marrai.de, 1
marriage-shrine.jp, 1
+marriageinchrist.com, 1
marrickvilleapartments.com.au, 1
marropax.com, 1
+marry-fox.com, 1
mars.army, 1
mars.navy, 1
marsafc.tk, 1
@@ -62005,7 +62684,6 @@ martinboerhof.nl, 1
martincernac.cz, 1
martindales.ltd.uk, 1
martindano.com, 1
-martindoe.pl, 1
martine.nu, 1
martinebot.com, 1
martinelias.cz, 1
@@ -62043,19 +62721,23 @@ marvaco.ga, 1
marvelmoviemarathon.com, 1
marvelo.cf, 1
marvelweed.ru, 1
-marvin.is, 1
marvin.rocks, 1
marvingazibaric.io, 1
marvinkeller.de, 0
marvinschopf.com, 1
+marvinxyz.de, 1
+marvnet.cf, 1
marvnet.design, 1
marvnet.ga, 1
marvnet.gq, 1
marvnet.ml, 1
marvnet.tk, 1
marvnetdigital.cf, 1
+marvnetdigital.ga, 1
marvnetdigital.gq, 1
+marvnetdigital.ml, 1
marvnetdigital.tk, 1
+marvnetforum.cf, 1
marvnetforum.ga, 1
marvnetforum.gq, 1
marvnetforum.ml, 1
@@ -62108,6 +62790,7 @@ mashcape.com, 1
mashek.net, 1
mashina.world, 1
mashonkavortu.tk, 1
+mashoom.co.uk, 1
masiniunelte.store.ro, 1
masiul.is, 1
mask-skin.tk, 1
@@ -62115,7 +62798,6 @@ maskerking.com, 1
maskim.fr, 1
maskinkultur.com, 1
maskova.net, 1
-maskssouthafrica.co.za, 1
maslenka.tk, 1
maslife365.com, 1
maslin.io, 1
@@ -62125,6 +62807,7 @@ masonicangelfund.org, 1
masquerade.site, 0
masqueradecostumes.tk, 1
masrilanguage.tk, 1
+masrur.org, 1
mass.pt, 1
massaboutique.com, 1
massage-colleges.com, 1
@@ -62169,6 +62852,7 @@ masterdemolitioninc.com, 1
masterdesingweb.tk, 1
masterdigitale.com, 1
masterdrilling.com, 1
+masterglasses.ru, 1
masterhelenaroma.com, 1
masterhoteis.com.br, 1
masterin.it, 1
@@ -62189,7 +62873,6 @@ mastersofmedia.nl, 1
mastersthesiswriting.com, 1
masterstruckingacademy.com, 1
masterstuff.de, 1
-mastersystem.ro, 1
mastervision.tk, 1
masterwank.com, 1
masterwayhealth.com, 1
@@ -62204,6 +62887,7 @@ mastodon.rocks, 1
mastodon.top, 1
mastodon.uno, 1
mastpartners.com, 1
+masumreza.tk, 1
maswali.com, 1
maszdobro.pl, 1
mat-berenbostel.de, 1
@@ -62433,7 +63117,6 @@ mau.lu, 1
mau.photos, 1
maubot.xyz, 1
mauditeboisson.tk, 1
-mauerwerkstag.info, 1
mauhalito.tk, 1
mauldincookfence.com, 1
mauletsmallorca.tk, 1
@@ -62550,6 +63233,7 @@ maxmilton.com, 1
maxmind.com, 1
maxmoda.eu, 1
maxmuen.de, 1
+maxmusical.ml, 1
maxopen.cf, 1
maxopolyworldnews.com, 1
maxp.info, 0
@@ -62558,7 +63242,6 @@ maxr1998.de, 1
maxrandolph.com, 1
maxratmeyer.com, 1
maxrider.tk, 1
-maxscripts.com, 1
maxtruxa.com, 1
maxundlara.at, 1
maxundlara.com, 1
@@ -62780,6 +63463,7 @@ mcstaralliance.com, 1
mctherealm.net, 1
mctitan.net, 1
mctools.org, 1
+mctwcloud.tk, 1
mcuexchange.com, 1
mcukhost.co.uk, 1
mcuong.tk, 0
@@ -63585,6 +64269,7 @@ meierhofer.net, 1
meiersmarkus.de, 1
meigetsuen1980.com, 1
meijburg.com, 1
+meijwebdesign.nl, 1
meikampf.de, 1
meikan.moe, 1
meiksbar.de, 1
@@ -63699,6 +64384,7 @@ melissageorge.tk, 1
melissalb.tk, 1
melissameuwszen.nl, 0
melissaofficial.tk, 1
+melissasundwall.com, 1
meliyb.ga, 1
melkiran.tk, 1
mellika.ch, 1
@@ -63754,6 +64440,7 @@ memorind.com, 1
memorycards.ie, 1
memoryex.net, 1
memorylines.ml, 1
+memoryofyou.eu, 1
mempool.de, 1
mempool.ninja, 1
mempool.space, 1
@@ -63764,6 +64451,7 @@ menanam.net, 1
menanwc.org, 1
menaraannonces.com, 1
menchez.me, 1
+menddie.com, 1
mendel.tk, 1
mendelsphotography.tk, 1
menden.com, 1
@@ -63849,6 +64537,7 @@ meperidina.com, 1
mephedrone.org, 1
meps.net, 1
merafsolutions.com, 1
+meraki.systems, 1
meralda.eu, 1
meralda.net, 1
meralda.org, 1
@@ -63931,6 +64620,7 @@ merkleforest.xyz, 1
merlet.eu, 1
merlin-memorial.de, 1
merlin.dk, 1
+merlinnot.com, 1
merlinsoap.com, 1
merloaded.rocks, 1
mermaidboattrips.com, 1
@@ -64006,6 +64696,7 @@ metacode.biz, 1
metacompliance.com, 1
metacortex.cf, 1
metadata.be, 1
+metadata.fail, 1
metadedi.net, 1
metaether.net, 1
metafiz.ml, 1
@@ -64068,6 +64759,7 @@ meteocat.net, 1
meteocuenca.tk, 1
meteohuertamur.tk, 1
meteonederbetuwe.nl, 1
+meteor.pe, 1
meteoradar.ch, 1
meteorapp.space, 1
meteorites-for-sale.com, 1
@@ -64149,6 +64841,7 @@ mevs.cz, 1
mevsim.com, 1
mew.build, 1
mewtea.org, 1
+mexby.com, 1
mexican.dating, 1
mexicanjokes.net, 1
mexico.rs, 1
@@ -64187,6 +64880,7 @@ mfpccprod.com, 1
mfrepair.com, 1
mfsquad.com, 1
mft.global, 1
+mftn.eu, 1
mfxbe.de, 1
mfxer.com, 1
mfzkl.com, 0
@@ -64301,6 +64995,7 @@ michaelgwynn.tk, 1
michaelhayes.tk, 1
michaelhrehor.com, 1
michaeliannetta.tk, 1
+michaeliscorporation.com, 1
michaelismold.com, 1
michaelizquierdo.com, 1
michaeljdennis.com, 0
@@ -64399,7 +65094,6 @@ microco.sm, 1
microcomploja.com.br, 1
microdesic.com, 1
microdots.de, 1
-microfinance-crimea.ru, 1
microfusion.tw, 1
microgreensworld.com, 1
microjournal.xyz, 1
@@ -64438,6 +65132,7 @@ midi-coquillages.com, 1
midi-ctes.fr, 1
midia.tk, 1
midiaid.de, 1
+midial.cz, 1
midislandrealty.com, 0
midkam.ca, 1
midl.me, 1
@@ -64463,6 +65158,7 @@ midyatotantik.tk, 0
miegl.com, 1
miegl.cz, 1
mieldemexico.us, 1
+mielelpinsapar.com, 1
miembarcacion.com, 1
miemus.eu, 1
mieresabadus.ro, 1
@@ -64477,6 +65173,7 @@ mig5.net, 1
miggy.org, 1
mightful-noobs.de, 1
mightytext-ios.tk, 1
+mightytips.com, 1
migliorisitiincontri.it, 1
migraine-en-werk.nl, 1
migrainereliefplan.com, 1
@@ -64503,6 +65200,7 @@ mihealth.link, 1
mihealthl.ink, 1
mihgroup.eu.org, 1
mihgroup.net, 1
+mihirsingh.com, 1
mihnea.net, 1
mihu233.com.cn, 1
miisy.com, 1
@@ -64537,6 +65235,7 @@ mikaila.tk, 1
mikakalathil.ca, 1
mikakalevi.com, 1
mikaknuutila.fi, 1
+mikaknuutila.photography, 1
mikalikes.men, 1
mike-bland.com, 1
mike-burns.com, 1
@@ -64600,6 +65299,7 @@ mikmik.co.il, 1
miknight.com, 1
mikonmaa.fi, 1
mikori.sk, 1
+mikrokolektyw.com, 1
mikrom.cz, 0
mikropixel.de, 1
mikrotech.co.za, 1
@@ -64666,6 +65366,7 @@ millenniumfalcon.org, 1
millenniumstem.org, 1
millenniumweb.com, 0
miller-shop.cf, 1
+millerandzois.com, 1
milleron.net, 1
milleron.xyz, 1
millerpaving.com, 1
@@ -64817,6 +65518,7 @@ minestory.cf, 1
minetrack.de, 1
minetrack.no, 1
minetracker.dk, 1
+mineturtle.de, 1
minez-nightswatch.com, 0
minf3-games.de, 1
minfin.gov.ua, 1
@@ -64845,6 +65547,7 @@ minibus-service.ru, 1
minicampingshalom.nl, 1
minican.net, 1
miniclip.com, 1
+minidesign.se, 1
minigames.com, 1
minigermanauto.com, 1
minigolf-reisinger.com, 1
@@ -64877,6 +65580,7 @@ minirizhi.com, 1
miniskipper.at, 1
miniso.me, 1
minisoft4u.ir, 1
+ministerioaguadevida.tk, 1
ministeriumfuerinternet.de, 1
ministory.tk, 1
ministranten-sankt-ge.org, 1
@@ -64933,7 +65637,7 @@ minube.co.cr, 1
minucaelena.com, 1
minutashop.ru, 1
minuteflightdeals.com, 1
-minuto30.com, 0
+minuto30.com, 1
minux.info, 1
mio-ip.ch, 1
miodziki.pl, 1
@@ -64966,6 +65670,7 @@ miraidenshi.com, 1
miraiex.com, 0
miramar-obgyn.com, 1
miramar.ca, 1
+miramaraddictionandrehabcenters.com, 1
mirasmun.tk, 1
miratechgroup.com, 1
miraxe.cf, 1
@@ -65014,6 +65719,7 @@ mirvent.site, 1
mirvolgograda.ml, 1
mirwild.cf, 1
mirwild.gq, 1
+miryam-martinez.tk, 1
mirzetonline.tk, 1
misakacloud.net, 1
misakaloli.com, 1
@@ -65112,7 +65818,6 @@ mitchkalf.nl, 1
mitchkiah.com, 1
mitdip-mit-group-ch.azurewebsites.net, 1
mite3.nl, 1
-mitegra.herokuapp.com, 1
mitevi.com, 1
mitfx.com, 1
mithgol.tk, 1
@@ -65139,6 +65844,7 @@ mittelalter-lexikon.de, 1
mittelunsachlich.de, 1
mittendorff.tk, 1
mittenofficesystems.com, 1
+mittid.dk, 1
mittikimonos.com.br, 1
mittwoch-nacht.net, 1
mitzpettel.com, 1
@@ -65151,6 +65857,8 @@ mivne.co.il, 1
mivzak.im, 1
mivzakim.biz, 1
mivzakim.cf, 1
+mivzakim.ga, 1
+mivzakim.gq, 1
mivzakim.info, 1
mivzakim.ml, 1
mivzakim.mobi, 1
@@ -65175,6 +65883,7 @@ mixpanel.com, 1
mixposure.com, 1
mixtafrica.com, 1
mixtape.moe, 1
+mixuz.ru, 1
mixx.com.hk, 1
miya.io, 1
miyagi-ctr.com, 1
@@ -65214,6 +65923,7 @@ mjs-domy.pl, 1
mjsacco-dwi.com, 1
mjsacco.com, 1
mjscustomcreations.com.au, 1
+mjsports.bet, 1
mjstudios.tk, 1
mjt.me.uk, 1
mk-dizajn.com, 1
@@ -65270,6 +65980,7 @@ mladamoda.sk, 1
mladenovac.tk, 1
mlarte.com, 1
mlathrom.com, 1
+mlcfinvest.in, 1
mlcnfriends.com, 1
mlcreaciones.com, 1
mlcrosoftonlline.cz, 1
@@ -65441,6 +66152,7 @@ mobilerhandwerker.de, 1
mobileritelushi.com, 1
mobilesector.de, 1
mobilesnewsworld.ga, 1
+mobilespectrum.org, 1
mobilestuff.tk, 1
mobiletirer.tk, 1
mobiletraff.co, 1
@@ -65464,6 +66176,7 @@ mobilizon.org, 1
mobilki.tk, 1
mobilni.site, 1
mobilux.lv, 1
+mobilyaderyasi.com, 1
mobimsua.com, 1
mobincube.com, 1
mobincube.es, 1
@@ -65474,6 +66187,7 @@ mobio.net, 1
mobiproj.com, 1
mobisaar-cloud.de, 1
mobistartv.ml, 1
+mobisuper.com.au, 1
mobitracker.co, 1
mobius.network, 1
mobizat.com, 1
@@ -65496,7 +66210,7 @@ moca-2081.com, 1
moca-2082.com, 1
moca-2083.com, 1
moca-kinder.de, 1
-mochasoft.jp, 1
+mocent.de, 1
mochilerostailandia.com, 1
mochiyuki.net, 1
mochizuki.moe, 1
@@ -65569,6 +66283,7 @@ modernautorepairs.com, 1
moderncommercialrealestate.com, 1
moderndeck.org, 1
moderndukes.tk, 1
+moderneraplumbingandgas.com.au, 1
moderniknihovna.cz, 1
modernliferoleplay.cf, 1
moderntld.net, 1
@@ -65577,6 +66292,7 @@ moderntrainer.co.za, 1
modernworkplacelearning.co.za, 1
modesalination.com, 1
modestoca.gov, 1
+modetalente.com, 1
modicollege.com, 1
modifiedmind.com, 1
modineaviation.com, 1
@@ -65603,6 +66319,7 @@ moe.social, 1
moe4sale.in, 1
moeali.com, 1
moebelschreinerei-engelhardt.de, 1
+moeblog.cn, 1
moec.top, 1
moechel.com, 1
moecraft.net, 1
@@ -65788,6 +66505,7 @@ mondpo.pro, 1
mondsee-psychotherapie.at, 1
mondzorgaanzee.nl, 1
monelephantapois.com, 1
+moneni.com, 1
moneoci.com.br, 1
monerogamez.com, 1
monetki.net, 1
@@ -65827,6 +66545,7 @@ mongolbox.tk, 1
mongolie.net, 1
mongolito.tk, 1
mongooselock.com.ua, 1
+mongrossisteauto.com, 1
monicahq.com, 1
monicajean.photography, 1
monicanaranjo.tk, 1
@@ -65897,6 +66616,7 @@ monstermoney.tk, 1
mont-thabor.fr, 1
montack.de, 1
montanabiack.de, 1
+montanaonlinedivorce.com, 1
montanasky.tv, 1
montanatrouthunters.com, 1
montanteaesthetics.com, 1
@@ -66037,6 +66757,7 @@ morc.me, 1
morchino.ch, 0
morchstore.com, 1
mord-ost.de, 1
+mordamla.com, 1
mordovia.cf, 1
mordovia.ga, 1
mordovia.gq, 1
@@ -66134,6 +66855,7 @@ moscowlombard.ru, 1
moscowlove.tk, 1
moscownews.ml, 1
moscownights.org, 1
+moscowsex.tk, 1
moscowtimes.tk, 1
mosdosug.ml, 1
moseleyelectronics.com, 1
@@ -66161,6 +66883,7 @@ mossipanama.com, 1
most.tk, 1
mostafabanaei.cf, 1
mostazaketchup.com, 1
+mosteplitsa.ru, 1
mosternaut.com, 1
mostertadmin.nl, 1
mostfamousbirthdays.com, 1
@@ -66215,6 +66938,7 @@ motodb.uk, 1
motoforce.lt, 1
motofoto.tk, 1
motogb.net, 1
+motogeelshop.be, 1
motohell.com, 1
motojato.com.br, 1
motokados.tk, 1
@@ -66239,6 +66963,7 @@ motorpointarenacardiff.co.uk, 1
motorrijschoolgul.nl, 1
motorring.ru, 1
motorsplus.com, 0
+motorsportdiesel.com, 1
motortecbrasil.com.br, 1
motortrend.com, 1
motoryachtclub-radolfzell.de, 1
@@ -66287,6 +67012,7 @@ mouracloset.com.br, 1
mousepotato.uk, 1
mousetravelmatters.com, 1
moushed.tk, 1
+moustream.com.br, 1
moutiezhaller.com, 1
mova.club, 1
movacare.de, 1
@@ -66437,6 +67163,7 @@ mrichard333.com, 1
mricspatial.com, 1
mrinalpurohit.in, 1
mrizzio.com, 1
+mrjamstore.it, 1
mrjbanksy.com, 1
mrjhnsn.com, 1
mrjo.sh, 1
@@ -66542,6 +67269,7 @@ msphotographics.de, 1
mspnocsupport.com, 1
mspsocial.net, 1
msquadrat.de, 1
+msresearched.nl, 1
msrohkwrstock.com, 1
msroot.de, 1
mssa.jp, 1
@@ -66619,7 +67347,6 @@ mtravelers.net, 1
mtrock.ru, 1
mtrx.tech, 1
mts-energia.eu, 1
-mtservicescorp.com, 1
mtsn3padang.sch.id, 1
mtsoftware.com.au, 1
mtsolar.es, 1
@@ -66682,6 +67409,7 @@ muhcow.dk, 1
muhelheim.com, 1
muhibbulislam.tk, 1
muhlenbergtwppa.gov, 1
+muhrielle.org, 1
mui.fitness, 1
mui.kitchen, 1
mui.pet, 1
@@ -66771,6 +67499,7 @@ muminkoykiran.com, 1
mummyandmephotography.com, 1
mumolabs.com, 1
mums.cz, 1
+mumusofa.com.tw, 1
muna.de, 1
munakata-cl.jp, 1
munch.me, 1
@@ -66854,6 +67583,7 @@ murzik.space, 1
musa.gallery, 1
musaccostore.com, 1
musamwaky.com, 0
+musaslush.com, 1
muscatinecountyiowa.gov, 1
muscle-tg.com, 1
musclecarresearch.com, 1
@@ -66868,6 +67598,7 @@ musedash.moe, 1
musehelix.com, 1
museloveurania.com, 1
museodefutbol.online, 1
+museodeinsectos.tk, 1
museodelistmo.tk, 1
muserver.io, 1
muses-success.info, 1
@@ -66917,7 +67648,6 @@ musicrainbow.tk, 1
musicschoolonline.com, 1
musicsense.cf, 1
musicstudio.pro, 1
-musicupdate.de, 1
musicvietnam.tk, 1
musicwear.cz, 1
musicworkout.de, 1
@@ -66969,6 +67699,7 @@ musttest.eu, 1
musttest.net, 1
musttest.org, 1
mutahar.me, 1
+mutantletterpress.com, 1
mutantmonkey.in, 1
mutantmonkey.info, 1
mutantmonkey.sexy, 1
@@ -66984,6 +67715,7 @@ mutuelle.fr, 1
mutuocasafacile.it, 1
muuglu.es, 1
muunnin.net, 1
+muurlingoogzorg.nl, 1
muusika.fun, 1
muwa-consulting.com, 1
muwatenraqamy.org, 1
@@ -67159,7 +67891,6 @@ mybrokenheart.tk, 1
mybsms.gr, 1
mybuddycare.com, 1
mybuddytheplumber.com, 1
-mybuddytheplumbertooele.com, 1
mybuildingcertifier.com.au, 1
mycaelis.fr, 1
mycam.gq, 1
@@ -67346,6 +68077,7 @@ mygimp.tk, 1
mygirlfriendshouse.com, 1
mygizmolife.tech, 1
mygnmr.com, 1
+mygobelin.tk, 1
mygoldennetwork.com, 1
mygomel.tk, 1
mygov.scot, 1
@@ -67379,7 +68111,6 @@ myhuthwaite.com, 1
myibidder.com, 1
myicare.org, 1
myid.be, 1
-myimds.com, 1
myimmitracker.com, 1
myinjuryattorney.com, 1
myinsiderplus.com, 1
@@ -67435,6 +68166,7 @@ myloneworkers.com, 1
mylookout.com, 0
mylotto.co.nz, 1
mylover.be, 1
+mylrd.xyz, 1
mylstrom.com, 1
myltivarka.ml, 1
mylucknursinghome.com, 1
@@ -67669,6 +68401,7 @@ mysidekick.io, 1
mysignal.com, 1
mysites.guru, 1
mysmelly.com, 1
+mysmg.in, 1
mysocialporn.com, 1
mysociety.ml, 1
mysockfactory.ch, 1
@@ -67720,7 +68453,6 @@ mytfg.de, 1
mythemeshop.com, 0
mythen-fonds.ch, 1
mythenfonds.ch, 1
-mythesis.academy, 1
mythicdelirium.com, 1
mytime.fr, 1
mytime.gl, 1
@@ -67779,7 +68511,6 @@ mywestondental.com, 1
mywetpussycams.com, 1
mywindscreen.my, 1
mywiwe.com.au, 1
-mywoodbridgedentist.com, 1
myworkinfo.com, 0
myworth.com.au, 1
mywrecklawyer.com, 1
@@ -67808,6 +68539,8 @@ n-a-railways.com, 1
n-cis.ru, 1
n-design-service.de, 1
n-design.de, 1
+n-doc.com, 1
+n-doc.de, 1
n-gram.it, 1
n-laboratory.jp, 1
n-linear.org, 1
@@ -67822,10 +68555,10 @@ n0psled.nl, 1
n16.co, 1
n26.com, 1
n29.co, 0
+n2canada.ca, 1
n2diving.net, 1
n2o.io, 1
n2ray.xyz, 1
-n30365.com, 1
n36533.com, 1
n37.co, 1
n3oxid.fr, 1
@@ -67903,6 +68636,7 @@ nacktwanderfreunde.de, 1
nacnkabiltrim.cf, 1
nacocu.cf, 1
nacoree.ga, 1
+nacudeck.com, 1
nacyklo.cz, 1
nad-r.com, 1
nadacnifondacr.cz, 1
@@ -68069,12 +68803,13 @@ nanco.jp, 1
nancytelford.com, 1
nancytutors.com, 1
nancyzone.tk, 1
+nandapanithota.xyz, 1
nandedbazar.tk, 1
nandemo.tk, 1
nanderson.me, 1
nandito.tk, 1
nanfangstone.com, 1
-nange.cn, 1
+nange.cn, 0
nangluongxanhbinhphuoc.com, 1
naninossoftware.tk, 1
nanisiyou.com, 1
@@ -68166,6 +68901,7 @@ narmos.ch, 0
naro.se, 1
narodnaya-medizina.tk, 1
narodniki.com, 1
+narodowyspispowszechny.pl, 1
narodserial.cf, 1
naroska.name, 1
narrabeenlakesbikehire.com, 1
@@ -68352,9 +69088,11 @@ naturheilpraxis-p-grote.de, 1
naturliga.tk, 1
naturopatiasiddharta.com, 1
naturtint.co.uk, 1
+naturvit.at, 1
natusvita.com, 1
natusvita.com.br, 1
natuurlijk.tk, 1
+natuurophaarmooist.nl, 1
natverkstekniker.se, 1
natwest.com, 1
nau.edu.pt, 1
@@ -68485,6 +69223,7 @@ nbrii.com, 1
nbriresearch.com, 1
nbrown.us, 1
nbsgames.at, 1
+nbtc.com, 1
nbwp.uk, 1
nc-beautypro.fr, 1
nc-formation.fr, 1
@@ -68499,6 +69238,7 @@ ncc-efm.org, 1
ncc-qualityandsafety.org, 1
nccemail.net, 1
nccfa.org, 1
+nccoe.org, 1
ncdc.pt, 1
ncea.net.au, 1
ncegs.sk, 1
@@ -68521,6 +69261,7 @@ ncmedicaidplans.gov, 1
ncommenuptial.tk, 1
ncpimd001.spdns.de, 1
ncpublichealth.info, 1
+ncrypt.ai, 1
ncrypt.at, 1
ncs-cleaning.dk, 1
ncsadministraties.nl, 1
@@ -68646,7 +69387,6 @@ negardaroo.com, 1
negativecurvature.net, 1
negativeentropy.org, 1
negativex.gq, 1
-neglecteddiseases.gov, 1
negocios-imatore.com, 1
negociosurbanos.net, 1
negoya-shokai.info, 1
@@ -68818,7 +69558,6 @@ nepremicnine-lidl.si, 1
nepremicnine.click, 1
nepremicnine.net, 1
neptun-rio.tk, 1
-neptuna.hu, 1
neptuneliveaboards.com, 1
neptunescubadiving.com, 1
neptunosrefugio.tk, 1
@@ -68969,6 +69708,7 @@ netki.com, 1
netkigestioncomercial.com, 1
netkolik.org, 1
netlentes.com.br, 1
+netletic.com, 1
netlevel.ga, 1
netlify.com, 1
netliste.com, 1
@@ -69053,6 +69793,7 @@ networg.pl, 1
network-midlands.co.uk, 1
network-midlands.uk, 1
network-notes.com, 0
+network.ae, 1
network23.nl, 1
networkarena.tk, 1
networkdiode.com, 1
@@ -69185,6 +69926,7 @@ newborncryptocoin.com, 1
newbownerton.xyz, 1
newbrest.tk, 1
newbrunswick.today, 1
+newbrunswickonlinedivorce.com, 1
newbrunswicktoday.com, 1
newbuilding.tk, 1
newburybouncycastles.co.uk, 1
@@ -69227,6 +69969,7 @@ newgle.xyz, 1
newgrowbook.com, 1
newguidance.ch, 0
newhamyoungbloods.co.uk, 1
+newheights.club, 1
newhomedesign.tk, 1
newhope.org.au, 1
newhopeofindiana.org, 1
@@ -69307,6 +70050,7 @@ newsgrowing.com, 1
newshell.it, 1
newshome.tk, 1
newshour.media, 1
+newsinfo71.com, 1
newsinformer.ga, 1
newsinkansas.ml, 1
newsinpolitics.ga, 1
@@ -69391,6 +70135,7 @@ nextend.net, 1
nexter.cloud, 1
nextevolution.co.uk, 1
nextfm.tk, 1
+nextg.gg, 1
nextgen-life-insurance.com, 1
nextgen-wealth.com, 1
nextgen.sk, 1
@@ -69502,6 +70247,7 @@ nhhoteljobs.nl, 1
nhimf.org, 1
nhnieuws.nl, 1
nhome.ba, 1
+nhps.org, 1
nhsinform.scot, 1
nhsolutions.be, 0
nhtsa.gov, 1
@@ -69583,7 +70329,7 @@ niceguyit.biz, 1
nicekicks.com, 1
nicesco.re, 1
nicesleepo.com, 1
-nicestudio.co.il, 0
+nicestudio.co.il, 1
nicesurf.tk, 1
nicetaninaka.com, 1
nicheosala.tk, 1
@@ -69659,6 +70405,7 @@ nicolasfriedli.ch, 0
nicolasiung.me, 1
nicolaszambetti.ch, 1
nicolaw.uk, 1
+nicole-richie.info, 1
nicolemathew.com, 1
nicoleta-prestescu.tk, 1
nicolettajennings.com, 1
@@ -69738,8 +70485,10 @@ nightmoose.org, 1
nightoutrecords.tk, 1
nightscapesoutdoorlighting.com, 1
nightsi.de, 1
+nightsnack.cf, 1
nightstand.io, 1
nightstar-online.tk, 1
+nightvisionguys.com, 1
nightwinds.tk, 1
nightwishchile.tk, 1
nightwood.cf, 1
@@ -69805,6 +70554,8 @@ niles-simmons.de, 1
niles.xyz, 1
nilgirispice.co.uk, 1
nilianwo.com, 1
+nilmaracursos.com.br, 1
+nilmaraquintela.com.br, 1
nilosoft.com, 1
niloxy.com, 1
nilpointer.com, 1
@@ -69865,6 +70616,7 @@ ninth.cat, 1
ninthfloor.org, 1
ninux.ch, 0
ninverse.com, 1
+niobelakelodge.com, 1
niourk.com, 1
nipax.cz, 1
nipe-systems.de, 1
@@ -69906,7 +70658,6 @@ nitropanel.com, 1
nitropur.com, 1
nitropur.de, 1
nitrous-networks.com, 1
-nitroxpowerpc.com, 1
nitschinger.at, 1
niunaimilk.cn, 1
nivalandemarit.fi, 1
@@ -69955,6 +70706,7 @@ nk-vision.com, 1
nk1.de, 1
nkapliev.org, 1
nkbwnx.com, 1
+nkg.com.au, 1
nkinka.de, 1
nkjwmn.com, 1
nkjwrs.com, 1
@@ -70048,7 +70800,7 @@ nobledust.com, 1
nobleparkapartments.com.au, 1
noblesmart.com, 1
nobly.de, 1
-nobodyplex.gq, 0
+nobodyplex.gq, 1
nobreaks.ca, 1
noc.org, 1
noc.wang, 1
@@ -70098,6 +70850,7 @@ nogfw.org, 1
nogfw.pro, 1
nogfwsite.com, 1
noggalito.com, 1
+nogger.nl, 1
nogradhont.hu, 1
nohats.ca, 1
nohkan.fr, 0
@@ -70155,6 +70908,7 @@ nomadicrootsco.com, 1
nomadlist.com, 1
nomadproject.io, 0
nomagic.software, 1
+nomaspicaduras.com, 1
nomaster.cc, 1
nomenclator.org, 1
nomesbiblicos.com, 1
@@ -70174,6 +70928,7 @@ noncombatant.org, 1
nonemail.ch, 1
nonemu.ninja, 1
nonglamfarm.vn, 1
+nonnaloreta.it, 1
nonobstant.cafe, 1
nonomnismoriar.com.pl, 1
nonprofit.info, 1
@@ -70216,6 +70971,7 @@ nootroic.com, 0
nootronerd.com, 1
nootropic.com, 1
nootropicpedia.com, 1
+nootropil.cf, 1
noovell.com, 1
nooverviewavailable.com, 1
nopaincenter.ro, 1
@@ -70227,6 +70983,7 @@ nophelet.com, 1
nopm.xyz, 1
nora.dog, 1
norad.sytes.net, 1
+noradanismanlik.com, 1
noradevot.com, 1
noradrenalina.com, 1
norala.tk, 1
@@ -70269,7 +71026,6 @@ norfolkgardencare.co.uk, 1
norichanmama.com, 1
noriel.ro, 1
noris.de, 0
-noriskit.nl, 1
normaculta.com.br, 1
normalady.com, 1
normalized.ga, 1
@@ -70315,6 +71071,7 @@ northernmuscle.ca, 1
northernpowertrain.com, 1
northernselfstorage.co.za, 1
northfinance.dk, 1
+northflightaeromed.org, 1
northhampton-nh-pd.gov, 1
northkoreainsider.tk, 1
northliner.tk, 1
@@ -70344,6 +71101,7 @@ nos-medias.fr, 1
nos-oignons.net, 1
nosacheva.ru, 1
nosbenevolesontdutalent.com, 1
+noschairsfauteuils.fr, 1
noscript.net, 1
noscura.nl, 1
noseastumismo.com, 1
@@ -70455,10 +71213,10 @@ notsafefor.work, 1
nottres.com, 1
notube.net, 1
noty.tech, 1
+notyouraverageamerican.com, 1
nou9ta.tk, 1
noudjalink.nl, 1
nougat-anduze.fr, 1
-noujoumtounes.com, 1
nourishandnestle.com, 1
nourishbyfrida.com, 1
noussommesluniversite.org, 1
@@ -70474,6 +71232,7 @@ nova-kultura.org, 1
nova.live, 1
nova.moe, 1
novabench.com, 1
+novacal.ga, 1
novacleaning.ru, 1
novacoaching.nl, 1
novacoast.com, 1
@@ -70482,6 +71241,7 @@ novafreixo.pt, 1
novak.cf, 1
novalite.rs, 1
novanetwork.ml, 1
+novapur.pl, 1
novarock.tk, 1
novascan.net, 1
novasprint.tk, 1
@@ -70788,6 +71548,7 @@ nupef.org.br, 0
nuquery.com, 1
nuquery.org, 1
nur.berlin, 1
+nuranagi.rocks, 1
nureg.club, 1
nureg.net, 1
nureg.xyz, 1
@@ -70798,7 +71559,9 @@ nurlyn.com, 0
nursejj.com, 1
nursemom.ca, 1
nurseregistry.com, 1
+nurserystory.co.uk, 1
nurses.dating, 1
+nursing-school2.tk, 1
nursingschool.network, 1
nursingschoolsnearme.com, 1
nuryahan.com.br, 1
@@ -70818,6 +71581,7 @@ nutmeg.com, 1
nutra-creations.com, 1
nutradian.com, 1
nutralivbio.com, 1
+nutrapurecbd.com, 1
nutrashop.fr, 1
nutri-spec.me, 1
nutriciametabolics-shop.de, 1
@@ -70909,6 +71673,7 @@ nycdentalimplantscenter.com, 1
nyconcretelifting.com, 1
nycoyote.org, 1
nycstyleboutique.com, 1
+nycu.moe, 1
nydig.com, 1
nyerjachioval.hu, 1
nyerjakekszekkel.hu, 1
@@ -70985,9 +71750,9 @@ o00228.com, 1
o0c.cc, 1
o15y.com, 1
o2.tn, 1
+o2design.tk, 1
o2ss.com, 1
o3.wf, 1
-o30365.com, 1
o36533.com, 1
o3c.com.br, 1
o3ptitschats.fr, 1
@@ -71036,10 +71801,10 @@ oasegroen.nl, 1
oasiristorantebagno.it, 1
oasis-conference.org.nz, 0
oasis9.net, 1
+oasisbahamas.com, 1
oasisbodycare.jp, 1
oasisgenetics.com, 1
oasiskitchens.com, 1
-oasislab.id, 1
oasisorthodontics.com.au, 1
oatmealdome.me, 1
oatycloud.spdns.de, 1
@@ -71148,7 +71913,6 @@ ocastrowork.com, 1
occ.gov, 1
occasion-impro.com, 1
occenterprises.org, 1
-occentus.net, 1
occult-magick.gq, 1
occult-magick.ml, 1
occultism.tk, 1
@@ -71164,6 +71928,7 @@ ocdhub.co.za, 1
ocean-of-love.ml, 1
oceanborn.tk, 1
oceanbreezehomes.com, 1
+oceancore.ru, 1
oceancrew.org, 1
oceandns.eu, 1
oceandns.net, 1
@@ -71186,6 +71951,7 @@ ocenka.tk, 1
ocenovani-inspekce.cz, 1
ocf.io, 1
ocg-card.com, 1
+ochaken.cf, 1
ochki-linzi.tk, 1
ochrebridge.com, 1
ochrepoint.com.au, 1
@@ -71276,6 +72042,7 @@ odontologia-online.com, 0
odontologiawilliampizarro.com, 1
odoo.co.th, 1
odoru.ga, 1
+odorucinema.ga, 1
odosblog.de, 1
odpikedoslike.com, 1
odsylvie.cz, 1
@@ -71287,6 +72054,7 @@ odyssee-animation.tk, 1
odyssey44.com, 1
odysseyofthemind.eu, 1
odysseytraining.com.au, 1
+odziezrobocza.pl, 1
odzyskaniedomeny.pl, 1
odzywianie.info.pl, 1
oe-boston.com, 1
@@ -71368,7 +72136,6 @@ officezoneonline.com, 1
official-sensitive.com, 1
officina.roma.it, 1
officium.tech, 1
-offlimo.com, 1
offpageseopro.tk, 1
offramp13.com, 1
offroadhoverboard.net, 1
@@ -71395,6 +72162,7 @@ ofsetas.lt, 1
oftamedic.com, 0
ofthethorn.be, 1
oftn.org, 1
+ofuquemalitaestoy.tk, 1
oga.fit, 0
ogamerezine.tk, 1
ogarkovo.ml, 1
@@ -71467,6 +72235,7 @@ oi-wiki.org, 1
oiahe.org.uk, 1
oic-ci.gc.ca, 1
oidrava.tk, 1
+oifc.in, 1
oikontroloi.tk, 1
oikosweb.com, 1
oil-ecn.ru, 1
@@ -71510,6 +72279,7 @@ okhanvatansever.tk, 1
okhrana.agency, 1
okib.ca, 1
okinawa-mag.net, 1
+okinawa-seaside.com, 1
okkhor52.com, 1
okkultemysterier.tk, 1
okkur.community, 1
@@ -71589,6 +72359,7 @@ oldenglishsheepdog.com.br, 1
oldenzaal.tk, 1
older-racer.com, 1
oldfieldmusic.tk, 1
+oldforgeinn.ddns.net, 1
oldfriends.tk, 1
oldiesmusicguide.tk, 1
oldiesradio.tk, 1
@@ -71639,10 +72410,12 @@ olibomb.cc, 1
olifant.fr, 1
oligenesi.it, 1
olightstore.ro, 1
+olimpicmoradebre.tk, 1
olimpikfit.com, 1
olimpikfit.ru, 1
olimpoao.tk, 1
olinux.fr, 1
+oliode.tk, 1
olitham.com, 1
olive.my, 1
oliveconcept.com, 1
@@ -71677,6 +72450,7 @@ oliviers-co.no, 1
oliviervaillancourt.com, 1
olivlabs.com, 1
olizeite.ch, 0
+oll.dj, 1
ollaexpress.site, 1
ollie.io, 1
ollieowlsblog.com, 1
@@ -71707,6 +72481,7 @@ olschurch.com, 1
olsh-hilltown.com, 1
olson25.org, 1
olsonproperties.com, 1
+olstest.ml, 1
oluchiedmundmusic.com, 1
olydemy.com, 1
olyfed.com, 1
@@ -71730,12 +72505,12 @@ omandatapark.com, 1
omangrid.com, 1
omanhr.cf, 1
omanko.porn, 0
-omaosurveys.org, 0
omarbaba.shop, 1
omarh.net, 1
omarhussien.tk, 1
omarpalos.com, 1
omarsamarah.tk, 1
+omarsuniagamusic.ga, 1
omarzunic.com, 1
omaxe.tk, 1
omayn.com, 1
@@ -71785,6 +72560,7 @@ omniscimus.net, 0
omnisiens.se, 1
omnisinal.pt, 0
omnisky.dk, 1
+omnissimmo.fr, 1
omniteck.com, 1
omniverse.ru, 1
omny.info, 1
@@ -71864,6 +72640,7 @@ oneclickjailbreak.com, 1
oneclickmoney.cf, 1
oneclickmoney.ml, 1
oneclickmoney.tk, 1
+onedigitize.com, 1
onedollar.fund, 1
onedot.nl, 1
onedrive.com, 0
@@ -71871,12 +72648,13 @@ onedrive.live.com, 0
onee3.org, 1
oneearthsacredarts.com, 1
onefinebaby.com.au, 1
-onefour.ga, 0
+onefour.ga, 1
oneheartbali.church, 0
onehost.kz, 1
oneidentity.me, 1
oneindex.tk, 1
oneirosociety.tk, 1
+onejoon.de, 1
onejourney.global, 1
oneless.tk, 1
onelifenutrition.co.uk, 1
@@ -71905,6 +72683,7 @@ onestasolar.com, 1
onestepbooks.gq, 1
onestepbooks.ml, 1
onestopcastles.co.uk, 1
+onestopirrigationservice.com.au, 1
onestopmedicalsupplies.com, 1
onestopshop.ml, 1
onestoptown.com, 1
@@ -71945,7 +72724,6 @@ onidesign.tk, 1
onionbot.ga, 1
onionbot.me, 1
onionplay.eu, 1
-onionplay.is, 1
onionplay.org, 1
onionscan.org, 1
onionsocial.com, 1
@@ -71961,7 +72739,7 @@ onlanka.com, 1
onlfait.ch, 0
online-backup.se, 1
online-biblio.tk, 1
-online-bookmakers.ru, 0
+online-bookmakers.ru, 1
online-calculator.com, 1
online-car-show.com, 1
online-carhire.tk, 1
@@ -71969,6 +72747,7 @@ online-clothing-store.tk, 1
online-consulting-corp.com, 1
online-divorce.co.za, 1
online-eikaiwa-guide.com, 1
+online-fix.me, 1
online-health-insurance.com, 1
online-jobs.cf, 1
online-lernprogramme.de, 1
@@ -72018,6 +72797,7 @@ onlineinfographic.com, 1
onlinekmc.com, 1
onlineknighki.ga, 1
onlinekocunuz.com, 1
+onlinekreditmitsofortzusage.com, 1
onlinelegalmarketing.com, 1
onlinelegalmedia.com, 1
onlineltctraining.com, 1
@@ -72068,9 +72848,9 @@ onlyesb.net, 1
onlyfans.com, 1
onlyfanslink.com, 1
onlyinfotech.com, 1
+onlyjesus.net, 1
onlylithiumhere.gq, 1
onlylovastatin.gq, 1
-onlymammoths.com, 1
onlysim.nl, 1
onlysmoker.com, 1
onlyssd.com, 1
@@ -72167,6 +72947,7 @@ oonne.com, 1
ooo-santal.ml, 1
oooh.events, 1
ooonja.de, 1
+ooooo.cz, 1
oopsis.com, 1
oorbellen.nl, 1
oortcast.com, 1
@@ -72200,6 +72981,7 @@ open-domotics.info, 1
open-fixture-library.org, 1
open-freax.fr, 0
open-future.be, 1
+open-future.info, 1
open-gaming.net, 1
open-infrastructure.net, 1
open-letters.de, 1
@@ -72227,7 +73009,6 @@ openbsd.cz, 1
openbsdhosting.com, 1
openbusiness.tk, 1
opencache.uk, 1
-opencaves.io, 1
openchronicles.net, 1
opencircuit.nl, 1
opencity.spb.ru, 1
@@ -72394,6 +73175,7 @@ opticoolheadgear.com, 1
opticsboss.com, 1
optiekdemeester.be, 1
optigear.nl, 1
+optik-sehstern.de, 1
optik-trosdorff.de, 1
optiker-gilde.de, 1
optim-ease.fr, 1
@@ -72427,14 +73209,17 @@ optimumterapia.pl, 1
optimumwebdesigns.com, 1
optimus.io, 1
optimuscrime.net, 1
+optimust.fi, 1
optique-morice.com, 1
optiqueh.ca, 1
optiqueh.com, 1
+optischmopti.de, 1
optisell.ga, 1
optitaxes.com, 1
optizym.de, 1
optm.us, 1
optmos.at, 1
+optoms.tk, 1
optoutday.de, 1
opture.ch, 1
opus-codium.fr, 1
@@ -72509,6 +73294,7 @@ order-a-laura.de, 1
order-ftw.de, 1
ordercipro.gq, 1
orderdiflucan.ga, 1
+orderlao.com, 1
ordermore.cloud, 1
ordermygear.com, 1
orderomnicef.gq, 1
@@ -72525,6 +73311,7 @@ ordr.no, 1
oregon2020census.gov, 1
oregonenergysaver.com, 1
orehoreh.ru, 1
+oreitia.com, 1
oreka.online, 1
orel-city.ml, 1
orel-sait.tk, 1
@@ -72554,6 +73341,7 @@ organise.earth, 1
organizacasa.com.br, 1
organization-of-holidays.tk, 1
orgasmium.com, 1
+orgawell.de, 1
orged.de, 1
orgoniteindonesia.com, 1
orgosias.com, 1
@@ -72607,6 +73395,7 @@ orlandobalbas.com, 1
orlandooutdoor.com, 1
orlandoprojects.com, 1
orleika.io, 1
+orleika.ml, 1
ormer.nl, 1
ornitina.com, 1
ornsyn.no, 1
@@ -72628,6 +73417,7 @@ orrs.de, 1
orsal.fr, 1
ortaev.tk, 1
ortanatech.com, 1
+ortegaportfolio.com, 1
orteo.co, 1
ortho-europe.com, 1
ortho-graz.at, 1
@@ -72769,6 +73559,7 @@ osx86spain.com, 0
oszri.hu, 1
ot-vinta.tk, 1
ota365.com, 1
+otakaroltd.co.nz, 1
otakubox.de, 1
otakuie.tk, 1
otakurepublic.com, 1
@@ -72779,6 +73570,8 @@ otdelka76.tk, 1
otdelochnik.tk, 1
otdih-krim.tk, 1
otdyh-v-abhazii.tk, 1
+otellio.it, 1
+oteri.de, 1
otg-drives.tk, 1
otgadaika.tk, 1
other98.com, 1
@@ -72822,6 +73615,7 @@ ottoversand.at, 1
otus-magnum.com, 1
otus.ru, 1
otvaracie-hodiny.sk, 1
+otya.me, 1
ouaibe.qc.ca, 1
ouattara.ch, 1
oudedokken.be, 1
@@ -72847,6 +73641,7 @@ ourchoice2016.com, 1
ourcloud.at, 1
ourcnc.com, 1
ourcodinglives.com, 1
+ourcomeback.gov.au, 1
ourcreolesoul.com, 1
ourdataprotected.com, 1
ourdocuments.gov, 1
@@ -72922,6 +73717,7 @@ outrider.ai, 1
outshinesolutions.nl, 1
outsideconnections.com, 1
outsiders.paris, 0
+outsidology.com, 1
outsourcingdenomina.co, 1
outsourcingnominabogota.com, 1
outstack.vote, 1
@@ -72951,6 +73747,7 @@ overdrive-usedcars.be, 0
overframe.gg, 1
overheek.tk, 1
overijsselsemerentocht.nl, 1
+overlandliberty.be, 1
overlord.network, 1
overnetfaq.tk, 1
overnightglasses.com, 1
@@ -73003,7 +73800,6 @@ owl-media.us, 1
owl-square.com, 1
owl-stat.ch, 0
owl.net, 1
-owlandrabbitgallery.com, 1
owljumpstart.com, 1
owlscrap.ru, 1
owmobility.com, 1
@@ -73031,6 +73827,7 @@ oxfordbio.com, 1
oxfordtutors.com, 1
oxfordurgentclinic.com, 1
oxia.me, 1
+oxialive.fr, 1
oxiame.eu, 1
oxidemusic.com, 1
oxidized.org, 1
@@ -73092,7 +73889,6 @@ p-s-b.com, 1
p-soc.com.br, 1
p-store.net, 1
p-t.io, 1
-p-vegas.com, 1
p.lu, 1
p02.de, 1
p10.ru, 1
@@ -73103,8 +73899,8 @@ p1ratrulezzz.me, 1
p22.co, 1
p2p-tv.tk, 1
p2phearthealth.com, 1
+p2r.ru, 1
p3.marketing, 1
-p30365.com, 1
p30mororgar.ir, 1
p333aa.com, 1
p333b.net, 1
@@ -73273,9 +74069,9 @@ pae.com, 1
paediatricdata.eu, 1
paedlink.ca, 1
paella-service.net, 1
+paesa.es, 1
paesi.info, 1
paf-events.ch, 0
-paff.xyz, 1
paga.red, 1
pagalofacil.com, 1
pagalsongs.club, 1
@@ -73293,6 +74089,7 @@ pagatuarriendo.cl, 1
pagbitcoin.com, 1
page, 1
page-engine.tk, 1
+page-speed.ru, 1
pageantsnews.com, 0
pageboard.fr, 1
pagecdn.io, 1
@@ -73329,7 +74126,9 @@ paidonclick.com, 1
paidtocode.com, 1
paidtodesign.com, 1
paidtodev.com, 1
+paidtohavesex.com, 1
paiementdp.com, 1
+paige.ai, 1
paigeglass.com, 1
paigethegeek.com, 1
paikkatietokanta.net, 1
@@ -73438,11 +74237,11 @@ palmen-apotheke.de, 1
palmiye.tk, 1
palmoilpledge.id, 1
palmosradio.gr, 1
+palms.fitness, 1
palner.eu, 1
palomalopez.tk, 1
palomardisplays.com, 1
palucamoveis.com.br, 1
-palucms.de, 1
pama.fun, 1
pamaniqu.nl, 1
pamashield.com, 1
@@ -73662,6 +74461,7 @@ paramapa.com.py, 1
paramaquetas.com, 1
parameterizer.me, 1
paramo-pineiro.tk, 1
+paramo.me, 1
paramountdentalcenter.com, 1
paramountelectronics.co.uk, 1
paranoid.network, 1
@@ -73684,6 +74484,7 @@ paratlantalalkozas.hu, 1
parattusdecora.com.br, 1
paratxt.org, 1
parcbotanique.com, 1
+parcelauditpartners.com, 1
parcelbroker.co.uk, 0
parcely.online, 1
parchcraftaustralia.com, 1
@@ -73716,6 +74517,7 @@ parfumi.tk, 1
pari.cz, 1
pariga.co.uk, 1
parina.vn, 1
+paris-elysees.com, 1
parisackerman.com, 1
parisbesttravel.com, 1
parisbloom.com, 1
@@ -73742,6 +74544,7 @@ parkercs.tech, 1
parkercs.technology, 1
parkercs.tk, 1
parkeren.in, 1
+parkerforum.cf, 1
parkerforum.tk, 1
parkerplumbingcompany.com.au, 1
parkers.cf, 1
@@ -73774,7 +74577,7 @@ parleamonluc.fr, 1
parlerdeathcountdown.com, 1
parleu2016.nl, 1
parleur.net, 1
-parltrack.org, 0
+parltrack.org, 1
parmels.com.br, 1
parnassys.net, 1
parniplus.com, 1
@@ -73825,6 +74628,7 @@ partnerchik.tk, 1
partnerforex.tk, 1
partnermobil.de, 1
partnerobzor.tk, 1
+partners4results.net, 1
partnersofprc.com, 1
partnerwerk.de, 0
partofthequeue.ml, 1
@@ -74035,6 +74839,7 @@ patrickaudley.ca, 1
patrickaudley.com, 1
patrickbrosi.de, 1
patrickbusch.net, 1
+patrickcurl.com, 1
patrickdankers.nl, 1
patrickhoefler.net, 1
patricklustigmediation.com, 1
@@ -74155,6 +74960,7 @@ pawelurbanski.com, 1
pawgearlab.com, 1
pawnsoft.tk, 1
pawpatrol.tk, 1
+pawsandpurses.com, 1
pawson.tk, 1
pawspuppy.com, 1
pawsr.us, 1
@@ -74241,6 +75047,7 @@ pbsrmoto.com.au, 1
pbwebdev.com, 1
pbytes.com, 1
pbz.im, 1
+pc-mac.de, 1
pc-master.pl, 1
pc-reanimator.ru, 0
pc-rescue.me, 0
@@ -74258,16 +75065,19 @@ pcbmodel.com, 1
pcbooks.in, 1
pcbricole.fr, 1
pcbuildinggr.com, 1
+pccc.co.za, 1
pcccthicongcungcap.com, 1
pcdbank.com, 1
pcdn.cf, 1
pcdocjim.com, 1
+pcdomain.com, 1
pcdroid.tk, 1
pcel.com, 1
pcert.lat, 1
pcexpress.tk, 1
pcf-frankfurt.de, 1
pcf92.fr, 1
+pcfiles.ga, 1
pcgamingfreaks.at, 1
pcgho.com, 0
pchan.is, 1
@@ -74289,9 +75099,9 @@ pcmobile.tech, 1
pcmr.info, 1
pcmr.rocks, 1
pcnewsoft.tk, 1
-pcnotdienst-oldenburg-rastede.de, 1
pcprkolo.pl, 1
pcrab.ml, 1
+pcrecovery.ga, 1
pcrypt.org, 1
pcsafe.cf, 1
pcsbrasil.ml, 1
@@ -74366,6 +75176,7 @@ pearlsonly.ca, 1
pearlsonly.com, 1
pearlsonly.com.au, 1
pearlsonly.de, 1
+pearsonbsl.com, 1
pearvn.tk, 1
pease.co.nz, 1
peatsuki.com, 1
@@ -74408,7 +75219,9 @@ pedrazanoticias.tk, 1
pedro.com.es, 1
pedrobotias.tk, 1
pedrolamas.com, 1
+pedrollo-ua.com, 1
pedromunoz.tk, 1
+pedrosart.it, 1
pedrosaurus.com, 1
pedrosillo-delosaires.tk, 1
pedroventura.com, 0
@@ -74451,6 +75264,7 @@ peertube.social, 1
peerweb.com, 1
peetah.com, 1
peew.de, 1
+peewee-design.tk, 1
pefile.tk, 1
pefricea.com, 1
pegas-studio.net, 1
@@ -74467,7 +75281,6 @@ peklostroj.eu, 1
peklostroj.sk, 1
peko.pro, 1
pelachim.com.br, 1
-pelakefun.com, 1
pelanucto.cz, 1
pelevin.gq, 1
pelgrimhof.be, 1
@@ -74478,6 +75291,7 @@ pelican.ie, 1
pelicans.tk, 1
peliculaonline.tk, 1
peliculasviejas.net, 1
+pelikan.xyz, 1
pellegrino.ar, 1
pellet.pordenone.it, 1
pelletgrillreviews.com, 1
@@ -74554,6 +75368,7 @@ pension-am-alten-waschhaus.de, 1
pension-chevaux.com, 1
pension-ua.tk, 1
pension-veldzigt.nl, 1
+pension.ga, 1
pensionecani.roma.it, 1
pensioner-1000.tk, 1
pensionesdominicanas.com, 1
@@ -74582,6 +75397,7 @@ pentoo.ch, 1
pentools.org, 1
pentruprieteni.com, 1
penuelaspr.gov, 1
+penya.ga, 1
penyavictorhernani.tk, 1
penz.media, 1
penza-on-line.tk, 1
@@ -74608,6 +75424,7 @@ peplex.ddns.net, 1
pepme.net, 1
peppelmedi.fi, 1
pepperandpartner.com, 1
+peppercornmotel.com.au, 1
peppyflora.com, 1
pepsipromos.com, 1
pepstaff.net, 1
@@ -74692,6 +75509,7 @@ peridotcapitalpartners.com, 1
perigold.com, 1
perini.com.au, 1
periodex.co, 1
+periodicopcion.tk, 1
periodismoactual.com, 1
periodista.tk, 1
periony.com, 1
@@ -74744,6 +75562,7 @@ pers-hr.tk, 1
perscore.tk, 1
perseo.tk, 1
persephone.gr, 1
+persey.tk, 1
persiart.shop, 1
persiennexperten.se, 1
persiennkompaniet.se, 1
@@ -74833,6 +75652,7 @@ petemerges.xyz, 1
peter-hennes.de, 1
peter-hurtenbach.de, 0
peter-r.co.uk, 1
+peter-zhu.ca, 1
peter.org.ua, 1
peterackermans.tk, 1
peterandjoelle.co.uk, 1
@@ -74900,6 +75720,7 @@ petlittle.ga, 1
petmall.bg, 1
petnow.gr, 1
peto.nl, 1
+petopedia.ga, 1
petops.de, 1
petos.tk, 1
petpower.eu, 1
@@ -75016,6 +75837,7 @@ phantomphans.tk, 1
pharma-display.com, 1
pharma24.de, 1
pharmaabsoluta.com.br, 1
+pharmabest.gr, 1
pharmaboard.de, 1
pharmaboard.org, 1
pharmaceuticalcannabis.org, 1
@@ -75028,6 +75850,7 @@ pharmapolitics.com, 1
pharmasana.co.uk, 1
pharmasana.de, 1
pharmasana.ru, 1
+pharmate.org, 1
pharmgkb.org, 0
pharmica.co.uk, 1
pharmica.uk, 1
@@ -75035,6 +75858,7 @@ pharside.dyndns.org, 1
pharynks.com, 1
pharynx.nl, 1
phasme-2016.com, 1
+phattea.tk, 1
phaux.uno, 1
phbits.com, 1
phc-sa.com, 1
@@ -75079,7 +75903,7 @@ phibureza.com, 1
phicreativos.com, 1
phil-dirt.com, 1
phil-phillies.com, 1
-phil.red, 0
+phil.red, 1
phil.tw, 1
philanima.com, 1
philarmonic-abaza.tk, 1
@@ -75087,6 +75911,7 @@ phildevient.tk, 1
phildonaldson.com, 1
phileas-psychiatrie.be, 1
philia-sa.com, 0
+philip-winther.dk, 1
philipdb.com, 1
philipdb.nl, 1
philipdeussen.com, 1
@@ -75166,6 +75991,7 @@ phographer.com, 1
pholder.com, 1
phone-service-center.de, 1
phone-spy.ml, 1
+phone42.com, 1
phone888.cn, 1
phonearena.com, 1
phonedoc.it, 1
@@ -75190,7 +76016,6 @@ phosagro.com, 0
phosagro.ru, 0
phosforum.ga, 1
phosphene.io, 1
-photek.fm, 1
photistic.org, 1
photo-blowup.com, 0
photo-booth.ro, 1
@@ -75265,6 +76090,7 @@ phra.gs, 1
phreakaus.tk, 1
phreaknet.org, 1
phrive.space, 1
+phruse.com, 1
phryanjr.com, 0
phryneas.de, 1
phtechcommunity.org, 1
@@ -75273,6 +76099,7 @@ phuket-idc.com, 1
phuket-idc.de, 1
phuket-nash.ga, 1
phuket-rawai.school, 1
+phuket-tour.ga, 1
phuketbeach.tk, 1
phuketroman.tk, 1
phuketstyle.tk, 1
@@ -75301,6 +76128,7 @@ physicalist.com, 1
physicpezeshki.com, 1
physics-schools.com, 1
physik.hu, 1
+physik.lol, 1
physio-im-appelbachtal.de, 1
physiobroadbeach.com.au, 1
physioteam-franz.de, 1
@@ -75328,7 +76156,7 @@ pianostemmer.eu, 1
pianotuning.cn, 0
pianyigou.com, 1
piaohong.tk, 1
-piastaola.com, 1
+piasativa.com, 1
piasto.com.cy, 1
piata-imobiliara.tk, 1
piata.com.br, 1
@@ -75885,6 +76713,7 @@ planetadeti.org, 1
planetalife.com, 1
planetamend.com, 1
planetamusik.tk, 1
+planetandroid.ga, 1
planetanim.fr, 1
planetapolska.com, 1
planetaprogramas.tk, 1
@@ -75970,6 +76799,7 @@ plastic2print.com, 1
plasticobiodegradable.com, 1
plasticosbiobasados.com, 1
plasticstare.com, 1
+plasticsurgeon.ga, 1
plasticsurgerynola.com, 1
plasticsurgeryservices.com, 1
plasticwindows.tk, 1
@@ -76011,6 +76841,7 @@ play3niu88.com, 1
playabalares.ga, 1
playandwin.co.uk, 1
playanka.com, 1
+playasdegalicia.tk, 1
playasmiles.com, 1
playawaycastles.co.uk, 1
playblightnight.com, 1
@@ -76022,6 +76853,7 @@ playelephant.com, 1
player.me, 1
playerdb.co, 1
playface.ml, 1
+playglobo.com.br, 1
playground.place, 1
playhappywheelsunblocked.com, 1
playinfinity.com, 1
@@ -76156,6 +76988,7 @@ plus.sandbox.google.com, 1
plus15.ml, 1
plus1s.site, 1
plusbot.tk, 1
+plushev.com, 1
pluslink.co.jp, 1
plusmobile.fr, 1
plusreed.com, 1
@@ -76365,6 +77198,7 @@ pocketpasta.com, 0
pockets.jp, 1
pocobelli.ch, 0
pocze.ch, 1
+pod-emnik.by, 1
podari-radost.tk, 1
podari.tk, 1
podarki-deda-moroza.tk, 1
@@ -76385,7 +77219,6 @@ podipod.com, 1
podlibre.org, 1
podo-podo.com, 1
podobovo.if.ua, 1
-podologie-diever.nl, 1
podroof.com, 1
podroof.com.au, 1
podshrink.de, 1
@@ -76419,6 +77252,7 @@ pogljad-brest.tk, 1
pogodavolgograd.tk, 1
pogodok.tk, 1
pogomate.com, 1
+pogoswine.com, 1
pogotowiekomputeroweolsztyn.pl, 1
pogrebisky.net, 1
pogs.us, 1
@@ -76493,6 +77327,7 @@ pokerslab.com, 1
pokerventure.ga, 1
pokkareindeermeat.com, 1
pokl.cz, 1
+pokoiki.pl, 1
pokon548.ink, 1
pokpok.tk, 1
pokrowcecardo.pl, 1
@@ -76598,7 +77433,6 @@ polonialidzbark.tk, 1
polskiemalzenstwo.org, 1
polskienewsy.tk, 1
poly-fast.com, 0
-polyairepricebook.com.au, 1
polybius.io, 1
polycoise.com, 1
polycraftual.co.uk, 1
@@ -76628,6 +77462,7 @@ pomocniczy.eu.org, 1
pomogidrugu.tk, 1
pomogite.ml, 1
pomorskibereg.ml, 1
+pomost.ga, 1
pomozmruczkom.pl, 1
pompefunebrilariviera.it, 0
pompeii.tickets, 1
@@ -76644,6 +77479,7 @@ ponio.org, 1
ponio.xyz, 1
ponnau.com, 1
ponnohaat.com, 1
+ponpon.tk, 1
ponpon05.com, 1
ponselsoak.com, 1
ponsot.cloud, 1
@@ -76675,7 +77511,6 @@ poolsafety.gov, 1
poolsonline.tk, 1
poolspondsandwaterscapes.com, 1
pooltools.net, 1
-poolvilla-margarita.net, 0
poon.io, 1
poopjournal.rocks, 1
poopr.ru, 1
@@ -76707,6 +77542,7 @@ popkins.tk, 1
popkultura.info.pl, 1
popl.uz, 1
poplavok77.tk, 1
+poplite.xyz, 1
popmagz.com, 1
popmundoforum.tk, 1
popotesetcocottes.fr, 1
@@ -76724,12 +77560,15 @@ popular-male-kitten-names.tk, 1
populardiets.tk, 1
populardogs.gq, 1
population-ethics.com, 1
+population.gov.au, 1
popup-stores.online, 1
popupbazaar.tk, 1
popvitrin.com, 1
popxclusive.com, 1
poquiloco.com, 1
poquvi.net, 0
+porady-wnetrzarskie.pl, 1
+poradywnetrzarskie.pl, 1
porchdaydreamer.com, 1
porcore.com, 1
porelcorazon.com, 1
@@ -77077,6 +77916,7 @@ powerofwater.fish, 1
powerpadel.com, 1
powerplanter.com, 1
powerplantmall.com, 1
+powerplay.com, 1
powerplayer.tk, 1
powerpointschool.com, 1
powersaleskc.com, 1
@@ -77084,6 +77924,7 @@ powerscif.com, 1
powerserg.net, 1
powerserg.us, 1
powersergdatasystems.com, 1
+powersergdatasystems.tk, 1
powersergdynamic.com, 1
powersergedatasystems.com, 1
powersergfeds.com, 1
@@ -77112,6 +77953,7 @@ poylabo.com, 1
poynter.net, 1
pozarevac.tk, 1
pozd.tk, 1
+pozdravlyalka.gq, 1
pozega.eu, 1
pozemedicale.org, 1
pozharnyi.tk, 1
@@ -77340,6 +78182,7 @@ premiercreditmasters.com, 1
premierdisco.co.uk, 1
premiereco.com.sg, 1
premieresloges.ca, 0
+premierevents.ie, 1
premierheart.com, 1
premierjewelersjax.com, 1
premierleague.gq, 1
@@ -77375,6 +78218,7 @@ prepaidkredietkaart.be, 1
prepare-job-hunting.com, 1
preparetheword.com, 1
prepavesale.fr, 1
+prepedia.org, 1
prepfba.com, 1
preply.com, 1
prepperswill.com, 1
@@ -77465,6 +78309,7 @@ previousmagazine.com, 1
previsiemens.com.br, 1
previsora.gov.co, 0
previstart.com, 1
+previstart.fr, 1
prevodkazet.cz, 1
prexxorvita.com, 1
preziti.eu, 1
@@ -77668,6 +78513,7 @@ privaterelay.com, 0
privateservice.cz, 1
privatetrainingonline.se, 1
privatevoid.net, 1
+privatevpn.com, 1
privatewolke.com, 0
privatfrei.de, 1
privatislauga.lt, 1
@@ -77933,9 +78779,12 @@ progressivepurchasing.com.au, 1
progressivestreetdance.tk, 1
progressm.tk, 1
progressnet.nl, 1
+progressonderwijs.nl, 1
+progressverkiezingen.nl, 1
progresswww.nl, 1
progtime.net, 1
prohelpers.tk, 1
+prohibition.tk, 1
prohost24.tk, 1
prohrcloud.com, 1
proibidoler.com, 1
@@ -77997,7 +78846,6 @@ prolens-lankaran.tk, 1
prolinos.de, 1
prolocofrascarolo.tk, 1
promax.nl, 1
-prombaza31.ru, 1
promea.net, 1
promedyczny.pl, 1
prometheanfire.net, 1
@@ -78159,6 +79007,7 @@ prostoskidki.ml, 1
prostozaim.ml, 1
prostye-recepty.com, 1
prosurveillancegear.com, 1
+prosveta1901.tk, 1
prosyscom.tech, 1
protanki.ml, 1
protanki.tk, 1
@@ -78175,7 +79024,6 @@ protectionformula.com.ua, 1
protectwrap.ml, 1
protectyourspeech.org, 1
protege.moi, 1
-protegetudescanso.com, 1
proteh.com.ua, 1
protein-riegel-test.de, 1
proteinreport.org, 1
@@ -78253,6 +79101,7 @@ proximity.ga, 1
proximityradio.fr, 1
proximoconcurso.com.br, 1
proxirealtime.com, 1
+proxmox-airsonic.tk, 1
proxybay.bet, 1
proxybay.buzz, 1
proxybay.bz, 1
@@ -78646,6 +79495,7 @@ purefreefrom.co.uk, 0
pureindoorair.com, 1
pureitsolutionsllp.com, 1
purejewels.com, 1
+purelife.photography, 1
purelunch.co.uk, 1
purelypestcontrol.com, 1
puremosquito.com, 1
@@ -78695,6 +79545,7 @@ purupuru-shibuya.school, 1
purupuru.school, 1
puryearlaw.com, 1
pusatcucikarpet.com, 1
+puschkin.ga, 1
pusehusetkattehotell.no, 1
pusehusetmalvik.no, 1
pushers.com.mx, 1
@@ -78769,6 +79620,7 @@ pvv-vermietung.de, 1
pwaiwm.site, 1
pwanotes.ga, 1
pwaresume.com, 1
+pwcabinetmakers.com.au, 1
pwcva.gov, 1
pwd.az, 1
pwdgen.net, 0
@@ -78784,7 +79636,6 @@ pwolk.com, 1
pwoss.org, 1
pwoss.xyz, 1
pwud.ga, 1
-pxetech.com, 1
pxgamer.xyz, 1
pxio.de, 0
pxl-mailtracker.com, 1
@@ -78849,7 +79700,6 @@ q01.us, 1
q1000.nl, 1
q1q2q3.tk, 1
q1z.net, 1
-q30365.com, 1
q3jlzwq.com, 1
q5118.com, 1
q5197.co, 1
@@ -78868,8 +79718,10 @@ qa-brandywineglobal.com, 1
qa-team.xyz, 1
qa.fedoraproject.org, 1
qa.stg.fedoraproject.org, 1
+qabalah.ga, 1
qabalah.jp, 1
qabel.de, 1
+qabete.com, 1
qaconstrucciones.com, 1
qadmium.com, 1
qadmium.tk, 1
@@ -78880,6 +79732,7 @@ qambarraza.com, 1
qanatnews.tk, 1
qandavision.com, 0
qani.me, 1
+qapital.com, 0
qaq.cloud, 1
qaq.sh, 1
qarto.com, 1
@@ -79025,6 +79878,8 @@ qrcontagion.com, 1
qrd.by, 1
qrguestbook.com, 1
qrlab.ch, 1
+qrlab.info, 1
+qrlab.net, 1
qrlfinancial.com, 0
qrpatrol.com, 1
qrpth.eu, 1
@@ -79036,7 +79891,6 @@ qscco.com, 1
qscloud.de, 1
qseek.cf, 1
qslstudio.tk, 1
-qt.to, 1
qtacairsoft.com, 1
qtl.me, 0
qtmd.org, 1
@@ -79085,15 +79939,18 @@ quality-life.gr, 1
qualityasphaltutah.com, 1
qualitybazarbd.com, 1
qualitycarbonfiber.com, 1
+qualitycommerical.com, 1
qualityconcreteleveling.com, 1
qualityconcreteraising.com, 1
qualityconcreterepair.com, 1
qualitydns.net, 1
qualityfactory.com, 1
+qualityfireproofing.com, 1
qualityhomesystems.com, 1
qualitymark.com.br, 1
qualitymudjacking.com, 1
qualityofcourse.com, 0
+qualityoflife.ga, 1
qualityoflife.tk, 1
qualitypiering.com, 1
qualitypolyjacking.com, 1
@@ -79130,6 +79987,7 @@ quantumfurball.net, 1
quantumlink.tk, 1
quantumpair.net, 1
quantumtelecom.com.br, 0
+quantumweb.ml, 1
quantweb.tk, 1
quanwuji.com, 1
quareal.ru, 1
@@ -79262,6 +80120,7 @@ quietapple.org, 1
quietlife.tk, 1
quietplace.tk, 1
quietstudyactivities.tk, 1
+quietus.gq, 1
quik.legal, 1
quikchange.net, 1
quikpay.com.au, 1
@@ -79271,6 +80130,7 @@ quiltednorthern.com, 1
quimatic.com.br, 1
quimsertek.com, 0
quinmedia.tk, 1
+quinnbet.com, 1
quinnlabs.com, 0
quinoa24.com, 1
quintacbls.cl, 1
@@ -79308,6 +80168,7 @@ quizz.biz, 1
quizzard.tk, 1
quizzen.tk, 1
qul.link, 1
+qulix.by, 1
qulix.ch, 1
qulixqa.com, 1
qunix.net, 1
@@ -79354,6 +80215,7 @@ qwikdash.com, 1
qwitsmoking.com, 1
qwords.com, 0
qwq.moe, 1
+qwq2333.top, 1
qwrk.io, 1
qx.fi, 1
qx.se, 1
@@ -79458,6 +80320,7 @@ rachelmoorelaw.com, 1
rachelreagan.com, 1
rachelsbouncycastles.co.uk, 1
racheltinniswood.ie, 1
+rachelward.co.uk, 1
rachnacollege.tk, 1
racing-planet.cz, 1
racingfanclub.tk, 1
@@ -79467,6 +80330,7 @@ rackoon.de, 1
raclet.co.uk, 1
raconconsulting.co.uk, 1
raconteurs.gent, 1
+racsoft.cl, 1
racunovodstvo-prina.si, 1
rad-route.de, 1
rad2share.com, 1
@@ -79493,6 +80357,7 @@ radegundisfest.de, 1
radekmazar.eu, 1
rader.ninja, 1
raderamig.com, 1
+radeticlaw.com, 1
radfieldhomecare.co.uk, 1
radfieldhomecarefranchising.co.uk, 1
radharanikijay.tk, 1
@@ -79567,6 +80432,7 @@ radiojackienorth.tk, 1
radioknop.nl, 1
radiokukesi.tk, 1
radioldpr.ru, 1
+radioliberty.ga, 1
radiolla.com, 1
radiology-technician.com, 1
radiom.fr, 1
@@ -79711,6 +80577,7 @@ railvideo.net, 1
railvideo.nl, 1
rain.bz, 1
rainbeaus.gq, 1
+rainbin.com, 0
rainbow-web.com, 1
rainbow.pizza, 1
rainbowbay.org, 1
@@ -79848,6 +80715,7 @@ randomthings.cf, 1
randstalker.ovh, 1
randy.su, 1
randyrhoads.tk, 1
+randyselzer.com, 1
ranfics.tk, 1
ranfurlychambers.co.nz, 1
rangde.org, 1
@@ -79856,6 +80724,7 @@ rangercollege.edu, 1
rangerfiles.tk, 1
rangersloyalsite.tk, 1
rangersofbelgium.be, 1
+rangeweb.ga, 1
rangsmo.se, 1
rangzol.now.sh, 1
ranikaart.com, 1
@@ -80008,6 +80877,7 @@ raven.express, 1
ravencoin.com, 1
ravencoin.org, 1
ravengergaming.net, 1
+ravenousravendesign.com, 1
ravenrockrp.com, 1
ravensbuch.de, 1
ravenstonejeweler.com, 1
@@ -80068,11 +80938,14 @@ raywisdom.tk, 1
rayworks.de, 1
raza.gr, 1
razajewellers.com, 1
+razajewellers.pk, 1
razalabs.gr, 1
razberry.kr, 1
razborpoletov.cf, 1
razborpoletov.ml, 1
razborpoletov.tk, 1
+razborpoletovsite.ga, 1
+razborpoletovsite.gq, 1
razborpoletovsite.tk, 1
razdolnoe.tk, 1
razeencheng.com, 1
@@ -80138,7 +81011,6 @@ rcpdesign.cl, 1
rcraigmurphy.net, 1
rcsda.net, 1
rcsolutions.nl, 1
-rcsscontractors.com, 1
rct-chair.com, 1
rct.sk, 0
rct.uk, 1
@@ -80220,6 +81092,7 @@ readmynews.cf, 1
readonly.de, 1
readouble.com, 0
readpages.gq, 1
+ready2learn.eu, 1
ready4bf.tk, 1
readybetwin.com, 1
readydedis.com, 1
@@ -80356,6 +81229,7 @@ reboxetine.com, 1
reboxonline.com, 1
rebuga.com, 0
rebull.fr, 1
+reby.cf, 1
reby.tk, 1
recalls.gov, 1
recantoshop.com, 1
@@ -80513,6 +81387,7 @@ redearsliderturtles.com, 1
redecloud.xyz, 1
redecsirt.pt, 1
redeemingbeautyminerals.com, 1
+redefinehealthcare.com, 1
redelectrical.co.uk, 0
redemption.gq, 1
redes-neuronales.tk, 1
@@ -80614,7 +81489,6 @@ redwaymu.cf, 1
redweek.com, 1
redwhey.com, 1
redwiki.tk, 1
-redworks.nl, 1
redzonedaily.com, 1
reecewindows.com, 1
reed-sensor.com, 1
@@ -80675,6 +81549,7 @@ refuelcreative.com.au, 1
refundo.cz, 1
refundo.sk, 1
refurb-tracker.com, 1
+refusedcarfinance.com, 1
reg.place, 1
regalador.com, 1
regalcapitalwi.com, 1
@@ -80803,6 +81678,8 @@ reintjens.de, 1
reinventetoi.com, 0
reinventfit.ro, 0
reirei.cc, 1
+reisenbauer.at, 1
+reisenbauer.ee, 1
reiseversicherung-werner-hahn.de, 1
reiseziel-hiddensee.de, 1
reishunger.de, 1
@@ -80882,7 +81759,7 @@ relocatefeds.gov, 1
relojeriajoyeria.com, 1
relojes-online.com, 1
relsak.cz, 1
-relvan.com, 1
+relvan.com, 0
relvan.tech, 1
relyonnutec.com, 1
rem0te.net, 1
@@ -80950,6 +81827,7 @@ remoteutilities.com, 1
remoteworkertech.asia, 1
remotish.com, 1
remotley.com, 1
+remount.ro, 1
removalcellulite.com, 1
removallaser.com, 1
removeandreplace.com, 1
@@ -81128,6 +82006,7 @@ reputationweaver.com, 1
requesthymn.com, 1
requestr.co.uk, 1
requeue.ga, 1
+requirements.ga, 1
reregu.cf, 1
reroboto.com, 1
reroboto.eu, 1
@@ -81186,6 +82065,7 @@ resolvo.com, 1
resolvs.com, 1
resoplus.ch, 0
resort-islands.net, 1
+resort.ga, 1
resortafroditatucepi.com, 1
resortohshima.com, 1
resorts.ru, 1
@@ -81276,6 +82156,7 @@ retailcybersolutions.com, 1
retailing.cf, 1
retardedstudios.tk, 1
retcor.net, 1
+retecentre.com, 1
retefarmaciecostadamalfi.it, 1
retefrati.it, 0
reteteaz.net, 1
@@ -81288,6 +82169,7 @@ reticle.cf, 1
reticon.de, 1
retics.cf, 1
retidurc.fr, 1
+retin.ml, 1
retinacv.es, 1
retireearlyandtravel.com, 1
retirest.com, 1
@@ -81356,6 +82238,7 @@ reverenceglobal.com, 1
reverencestudios.com, 1
reverseaustralia.com, 1
reversecanada.com, 1
+reversecrucifixkm.altervista.org, 1
reversedns.tk, 1
reverseloansolutions.com, 1
reverselookupphone.us, 1
@@ -81363,6 +82246,7 @@ reversesouthafrica.com, 1
reviderm-skinmedics-rheinbach.de, 1
review.jp, 1
reviewbestseller.com, 1
+reviewbrokers.online, 1
reviewcenter.in, 1
reviewdetector.ml, 1
reviewgeek.com, 1
@@ -81378,6 +82262,8 @@ revis-online.ml, 1
revisionnotes.xyz, 1
revisionvillage.com, 1
revisores.pt, 1
+revisoronline.ga, 1
+revisoronline.gq, 1
revisoronline.ml, 1
revisoronline.tk, 1
revista-programar.info, 1
@@ -81461,7 +82347,6 @@ rgiohio.com, 1
rgl.support, 1
rgpdkit.io, 1
rgraph.net, 1
-rgtn.com, 1
rgz.ee, 1
rhaegal.me, 1
rhamzeh.com, 1
@@ -81492,6 +82377,7 @@ rhiskiapril.com, 0
rhkg.dk, 1
rhnet.at, 1
rhodenmanorcattery.co.uk, 1
+rhodes.ml, 1
rhodesianridgeback.com.br, 1
rhodos.fr, 1
rhodri.io, 1
@@ -81533,6 +82419,7 @@ riccardopiccioni.it, 1
ricci-ingenieria.com, 1
riccy.org, 1
riceadvice.info, 1
+ricettesemplicieveloci.altervista.org, 1
ricewarner.com, 1
richadams.me, 1
richandsteph.co.uk, 1
@@ -81642,6 +82529,7 @@ rigabeerbike.lv, 1
rigart-michael.be, 1
rigartmichael.be, 1
rigasudens.lv, 1
+rigelsport.com, 1
riggosrag.com, 1
righettod.eu, 1
righini.ch, 0
@@ -81690,7 +82578,6 @@ rilretg.com, 1
rimax.vn, 1
rimcountrymuseum.org, 1
rime.com.hr, 1
-rimeto.io, 1
rimikis.de, 1
rimkereso.hu, 1
rimo.site, 1
@@ -81757,7 +82644,6 @@ riscascape.net, 1
risco.ro, 1
riscoshardware.tk, 1
rise-technologies.com, 1
-rise.africa, 1
rise.com, 1
rise.global, 1
riseandrank.com, 1
@@ -81869,7 +82755,9 @@ rlahaise.nl, 1
rlalique.com, 1
rld.org, 1
rlds.ch, 0
+rleeden.no-ip.co.uk, 1
rleeden.servehttp.com, 1
+rleeden.servemp3.com, 1
rleh.de, 1
rlove.org, 1
rm-it.de, 1
@@ -81957,6 +82845,7 @@ robertlysik.com, 1
robertmusil.ml, 1
robertobilic.com, 1
robertocasares.no-ip.biz, 0
+robertodegroot.tk, 1
robertoentringer.com, 0
robertof.ovh, 1
robertopazeller.ch, 1
@@ -81996,11 +82885,13 @@ robisonweb.net, 1
robjager-fotografie.nl, 1
roblog.tk, 1
robnicholls.co.uk, 1
+robobusiness.ga, 1
robocop.no, 1
robodeidentidad.gov, 1
roboform.com, 1
robohash.org, 1
robokits.co.in, 1
+roboland.ga, 1
robomonkey.org, 1
robot-invest.ml, 1
robot.car, 1
@@ -82014,6 +82905,7 @@ robots-ju.ch, 1
robotsbigdata.com, 1
robotstxt.com, 1
robottip.com, 1
+robowars.ga, 1
robpol86.com, 1
robspc.repair, 1
robspeed.rocks, 1
@@ -82043,6 +82935,8 @@ rockenfuerlachenhelfen.de, 1
rockernj.com, 1
rocket-resume.com, 1
rocketdashboard.com, 1
+rocketdoctor.ca, 1
+rocketdoctor.us, 1
rocketeer.tk, 1
rocketevents.com.au, 1
rocketgnomes.com, 1
@@ -82230,6 +83124,7 @@ romanos.tk, 1
romanpavlodar.kz, 1
romantelychko.com, 1
romantica-hotel.de, 1
+romanticdate.ga, 1
romanticschemer.com, 1
romanticschemermovie.com, 1
romanticsexshopguatemala.com, 1
@@ -82244,6 +83139,7 @@ romaservicegroup.it, 1
romastantra.com, 1
romatours.pt, 0
romatrip.it, 1
+rombarte.pl, 1
romediatori.com, 1
romeoijulio.tk, 1
rometoptentravel.com, 1
@@ -82298,6 +83194,7 @@ roofpost.gq, 1
roofsandbasements.com, 1
rook-playz.net, 1
rookiehpc.com, 1
+rookiemamabear.com, 1
roolife.xyz, 1
roolnews.id, 1
room-checkin24.de, 1
@@ -82337,6 +83234,7 @@ rootfor.me, 1
rootie.de, 1
rootkit.es, 1
rootlair.com, 1
+rootless.ga, 1
rootly.io, 1
rootonline.de, 1
rootpigeon.com, 1
@@ -82372,6 +83270,7 @@ rosakkreditatsiya-forum.ru, 1
rosalindturner.co.uk, 1
rosalopezcortes.tk, 1
rosamystica.tk, 1
+rosanaestevezabogadovigo.es, 1
rosanerolife.tk, 1
rosaquest.ru, 1
rosaserra.es, 1
@@ -82381,6 +83280,7 @@ rosdpk.ru, 1
rosdver.ru, 1
rose-prism.org, 1
roseberyvenues.co.uk, 1
+roseboom-bouwkundigadvies.nl, 1
rosecrance.org, 1
rosehosting.reviews, 1
roseitsolutions.co.uk, 1
@@ -82532,6 +83432,7 @@ royal818.com, 1
royal821.com, 1
royal822.com, 1
royal826.com, 1
+royal828.com, 1
royal83.com, 1
royal830.com, 1
royal831.com, 1
@@ -82579,7 +83480,7 @@ royalhosting.ch, 1
royalkitchensandfurniture.co.ug, 1
royalmarinesassociation.org.uk, 1
royalmech.tk, 1
-royalnissanparts.com, 1
+royalnissanparts.com, 0
royaloz.ma, 1
royalpainters.co, 1
royalpalacenogent.fr, 1
@@ -82630,6 +83531,7 @@ rpi-pihole-mon.ddns.net, 1
rpine.net, 0
rpj.life, 1
rpmdrivingschool.com.au, 1
+rpmglobal.com, 1
rpora.co, 1
rps-auto.com, 1
rpschultz.de, 1
@@ -82794,6 +83696,7 @@ rubia.ca, 1
rubiales.tk, 1
rubic.tk, 1
rubidium.ml, 1
+rubirubli.tk, 1
rublacklist.net, 1
rublev.tk, 1
rubooks.gq, 1
@@ -82945,6 +83848,7 @@ runschrauger.com, 1
runvs.io, 1
ruobiyi.com, 1
ruobr.ru, 1
+ruonavaara.fi, 1
ruoskachile.tk, 1
rupeespeaks.tk, 1
rupeevest.com, 1
@@ -83009,6 +83913,7 @@ russian-knights.ru, 1
russian-page.tk, 1
russianbearsmotorsport.tk, 1
russianbluecatsguide.com, 1
+russianbrides.cf, 1
russianbristol.tk, 1
russianews.cf, 1
russianpunkrock.tk, 1
@@ -83044,7 +83949,6 @@ ruthmontenegro.com, 1
ruthschoenmaekers.com, 1
rutiger.com, 1
rutika.ru, 1
-rutracker-zerkalo.appspot.com, 1
rutten.me, 0
ruttenadvocaat.be, 1
ruudkoot.nl, 1
@@ -83116,6 +84020,7 @@ rybnitsa.cf, 1
rybox.info, 1
rychlikoderi.cz, 0
rydeify.com, 1
+rydermais.tk, 1
rydi.org, 1
ryejuice.sytes.net, 1
rygh.no, 1
@@ -83171,7 +84076,6 @@ s2i.ch, 0
s2member.com, 1
s2p.moe, 1
s2t.net, 1
-s30365.com, 1
s36533.com, 1
s3cur3.it, 1
s3gfault.com, 1
@@ -83265,10 +84169,12 @@ sacademica.tk, 1
sacaentradas.com, 1
saccani.net, 1
saccounty.gov, 1
+sacha-botz.com, 0
sacharidovejednotky.eu, 1
sachasmets.be, 1
sachk.com, 1
sachse.info, 1
+sacians.tk, 1
sacibo.ga, 1
sackmesser.ch, 1
saclier.at, 1
@@ -83328,6 +84234,10 @@ safebasements.com, 1
safebasementsnorthdakota.com, 1
safebasementsofindiana.com, 1
safebasementswaterproofing.com, 1
+safebits.ch, 1
+safebits.eu, 1
+safebits.fr, 1
+safebits.it, 1
safeboard.ml, 1
safebuyerscheme.co.uk, 1
safecar.gov, 1
@@ -83419,6 +84329,7 @@ saharmassachi.com, 1
sahb.dk, 1
sahccareers.com, 1
sahibinden.com, 1
+sahinozgenhukuk.com, 1
sahkotyot.eu, 1
saibacademy.com, 1
saibotk.de, 1
@@ -83581,7 +84492,6 @@ saleproductsoffer.com, 1
salery.ga, 1
salesdivisie.nl, 1
salesflare.com, 1
-salesmd.com, 1
salesoutcomes.com, 1
salestaxspecialists.com, 1
saletodo.com, 1
@@ -83665,6 +84575,7 @@ salvagedfurnitureparlour.com, 1
salvameblog.tk, 1
salvandoalocombia.com, 1
salverainha.org, 1
+saly-hotel-neptune.com, 1
salzamt.tk, 1
salzerperu.com, 1
sam-football.fr, 1
@@ -83741,6 +84652,7 @@ samokhin.cf, 1
samorazvitie.ru, 1
samotorsporttyres.com.au, 1
samoyeddogsguide.com, 1
+samozdraw.ga, 1
samp.im, 1
sampaguide.com, 1
sampatjewelers.com, 1
@@ -83771,12 +84683,13 @@ samui-samui.de, 0
samuidiving.net, 1
samuirehabcenter.com, 1
samurai-implant.com, 1
-samuraicafeauc.com, 1
samuraiskye.com, 1
samusil.org, 1
samvanderkris.com, 1
+samvanderkris.xyz, 1
samwilberforce.com, 1
samwrigley.co.uk, 1
+samwu.tw, 1
samystic.com, 1
san.tv, 1
sana-store.com, 1
@@ -83998,6 +84911,7 @@ sapphirepack.org, 1
sapphirepearl.com.sg, 1
sapphireservicesga.com, 1
sapporo-asaichi.com, 1
+sapporo.ga, 1
sapporobeer.com, 1
sapprendre.ch, 0
saprima.de, 0
@@ -84127,8 +85041,10 @@ sattamatka420.mobi, 0
sattaresult.in, 1
sattaresult.net, 1
saturdayenterprises.ga, 1
+saturnbb.com, 1
satyamshivamsundaram.in, 1
sauber.dk, 1
+saubooks.tk, 1
saucelabs.com, 1
saudeealimentos.com, 1
saudeintimadamulher.com.br, 1
@@ -84372,6 +85288,7 @@ scfpensante.ca, 1
sch44r0n.de, 1
sch5-gusev.ru, 1
schaafenstrasse.koeln, 1
+schaatsenenskeelers.nl, 1
schachburg.de, 1
schack.dk, 1
schadevergoedingen.eu, 1
@@ -84413,6 +85330,7 @@ scheuchenstuel.at, 1
schgroup.com, 1
schiau.co, 1
schiavaonei.tk, 1
+schiavidiabruzzo.tk, 1
schielandendekrimpenerwaard.nl, 1
schier.info, 1
schil.li, 1
@@ -84449,7 +85367,6 @@ schmaeh-coaching.ch, 1
schmatloch.cloud, 1
schmelzle.io, 1
schmidthomes.com, 1
-schmidtlohwasser.de, 1
schmidtplasticsurgery.com, 1
schmiggywibblits.net, 1
schmitt-etienne.fr, 1
@@ -84518,6 +85435,7 @@ school32.tk, 1
school43.tk, 1
schoolairband.fun, 1
schoolantwoorden.tk, 1
+schoolbag.ml, 1
schoolbuddy.ch, 1
schoolbus.at, 0
schoolbytes.com.au, 1
@@ -84628,17 +85546,20 @@ science-texts.de, 1
science.gov, 1
scienceasfashion.ga, 1
sciencebase.gov, 1
+scienceeducation.tk, 1
scienceminnesota.com, 1
sciencemonster.co.uk, 1
sciencenews.gq, 1
scienceofpeople.com, 0
sciencequality.tk, 1
sciences-world.com, 1
+scienceschool.ml, 1
sciencesolutions.eu, 1
sciencetechworld.tk, 1
sciencetram.tk, 1
scienceweb.tk, 1
sciencex.com, 1
+sciencexpo.org.za, 1
scientia.ga, 1
scientific-socialism.cf, 1
scientificallytalking.com, 1
@@ -85015,6 +85936,7 @@ secitem.de, 1
seclimax.site, 1
seclimax7.pw, 1
secluded.site, 1
+secnet.ga, 1
secnews.gr, 1
secomo.org, 1
second-life-partner-ichien.com, 1
@@ -85033,9 +85955,11 @@ secret-queen.ml, 1
secretagentclub.tk, 1
secretar.is, 1
secretary-schools.com, 1
+secretbase.cf, 1
secretdeals.ga, 1
secrethub.io, 1
secretimports.com.br, 1
+secretmap.ml, 1
secretmolodosti.ga, 1
secretmolodosti.ml, 1
secretmolodosti.tk, 1
@@ -85085,6 +86009,7 @@ secure-gw.de, 1
secure-server-hosting.com, 1
secure.advancepayroll.com.au, 1
secure.facebook.com, 0
+securebot.ga, 1
securecheck360.com, 1
securecloudplatform.nl, 1
secureddocumentshredding.com, 1
@@ -85161,13 +86086,13 @@ securitysense.co.uk, 1
securitysnobs.com, 0
securitysoapbox.com, 1
securitystreak.com, 1
+securitystudio.com, 1
securitytalk.pl, 1
securitytestfan.gov, 1
securitytrails.com, 1
securitywatch.co.nz, 1
securitywithnick.com, 1
securitywithoutborders.org, 1
-securix.hk, 1
securl.chat, 1
securl.link, 1
securocloud.com, 1
@@ -85347,6 +86272,7 @@ selkiemckatrick.com, 1
sellajoch.com, 1
sellbit.io, 1
sellcoins.top, 1
+selldone.com, 1
selldorado.com, 1
selldurango.com, 1
seller.diamonds, 1
@@ -85368,6 +86294,7 @@ seltendoof.de, 1
semacode.com, 1
semaflex.it, 1
semantica.cz, 0
+semantics.ga, 1
semao.org, 1
semaphore-studios.com, 1
sembosihosting.tk, 1
@@ -85492,7 +86419,6 @@ sentidosdelatierra.org, 1
sentiments.io, 1
sentinel.gov, 1
sentinelnet.tk, 1
-sentinelpeakmedia.com, 1
sentinelproject.io, 1
sentirmebien.org, 1
sentitvia.email, 1
@@ -85521,6 +86447,7 @@ seo-reklama.ml, 1
seo-website.ru, 1
seo.london, 1
seo.services, 1
+seoagentur-hamburg.com, 1
seoankara.name.tr, 1
seoarchive.org, 1
seoargentina.com.ar, 1
@@ -85537,6 +86464,7 @@ seocraft.me, 1
seocreator-blog24.tk, 1
seodayo.com, 1
seodefinitivo.com, 1
+seodoma.ml, 1
seodrug.tk, 1
seoenmexico.com.mx, 1
seoexpert.com.br, 1
@@ -85566,6 +86494,7 @@ seomen.biz, 1
seomik.dk, 1
seomoft.com, 1
seon.me, 1
+seonow.ga, 1
seonurse.com, 1
seoonline.cf, 1
seoonlinejaipur.tk, 1
@@ -85614,6 +86543,7 @@ septakkordeon.de, 1
septentrionalist.org, 1
septfinance.ch, 0
septicrepairspecialists.com, 1
+septics.ga, 1
septonol.tk, 1
septs.blog, 1
sequachee.com, 1
@@ -85694,6 +86624,7 @@ sertaovivo.tk, 1
sertasimmons.com, 1
sertkayagroup.com, 1
seru.eu, 1
+servantweb.fr, 1
serve.work, 1
serveatechnologies.com, 1
servecrypt.com, 1
@@ -85714,11 +86645,13 @@ serveradminz.com, 1
serverco.com, 1
serverd.de, 1
serverdensity.io, 1
+serverdragon.site, 1
serverexpose.com, 1
serverfix.net, 1
serverfrog.de, 1
serverhost.no, 1
serverhunter.com, 1
+serverion.ga, 1
serverka.tk, 1
serverlauget.no, 1
serverlog.net, 1
@@ -85754,6 +86687,7 @@ servicemagicusa.com, 1
servicemaxgreencleaning.com, 1
servicemembers.gov, 1
serviceparts.nl, 1
+services-oxialive.fr, 1
serviceslotenmaker.nl, 0
servicestechnologiquesam.ca, 1
servicesurgence24h.ca, 1
@@ -85762,7 +86696,6 @@ serviciales.com, 1
servicii-funerare.tk, 1
serviciodebarralibreparaeventos.com, 1
servicios-electricos.com, 1
-serviciosparaconsorcio.com, 1
servida.ch, 1
servietten-grosshandel.at, 1
servietten-grosshandel.be, 1
@@ -85833,7 +86766,6 @@ setuid.io, 1
setuid0.kr, 1
setuplog.io, 1
setxrm.com, 1
-seu-emprego.com, 0
seu.edu.sa, 1
seucreditodigital.com.br, 1
seutens.be, 1
@@ -85848,6 +86780,7 @@ seven-purple.com, 1
seven-seas.ml, 1
seven.social, 1
sevenartzpublicidad.com, 1
+sevengang.tk, 1
sevenhillsapartments.com.au, 1
sevenicealimentos.com.br, 1
sevenmatches.com, 1
@@ -85952,6 +86885,7 @@ sg1.tech, 1
sgatlantis.tk, 1
sgb.co, 1
sgcaccounts.co.uk, 1
+sgcy.vip, 0
sgdementia.ca, 1
sggame990.com, 1
sgi.org, 1
@@ -86048,6 +86982,7 @@ shaicoleman.com, 1
shaimensonline.com, 1
shainessim.com, 1
shaitan.eu, 1
+shaiyauntold.com, 1
shajiangchang.cn, 1
shakalaka.co.za, 1
shakan.ch, 0
@@ -86237,7 +87172,7 @@ sheldon.sk, 1
shelehov.tk, 1
shelfordsandstaplefordscouts.org.uk, 1
shelfplanner.com, 1
-shelike.me, 1
+shelike.me, 0
shellavartanian.tk, 1
shellcon.io, 1
shellcore.fr, 1
@@ -86567,6 +87502,7 @@ shoppingguerilla.ga, 1
shoppingicarai.com, 1
shoppingjin.pk, 1
shoppinglowprice.ga, 1
+shoppingnature.ga, 1
shoppingplaza.eu, 1
shoppingvrimini.ru, 1
shoppr.dk, 1
@@ -86612,6 +87548,7 @@ shota-sekkotsuin.com, 1
shotbow.net, 1
shotgunstudio.com, 1
shotly.net, 1
+shotoniphone.ga, 1
shotsleeve.com, 1
shoujik8.com, 1
shouldbetaught.com, 1
@@ -86788,6 +87725,7 @@ sidemount-tauchen.com, 1
sidepodcast.com, 1
sidepodcastdaily.com, 1
sidepodcastextra.com, 1
+sidequestors.org, 1
sideral.is, 1
sideshowbarker.net, 1
sidi-smotri.ru, 1
@@ -86809,6 +87747,7 @@ sieh.es, 1
sieiro.tk, 1
siel.nl, 1
sielsystems.nl, 1
+siemencaes.tk, 1
siemens-srm.com, 1
siemens-stockawards.com, 1
siemens.co.uk, 1
@@ -87179,7 +88118,6 @@ simplycateringequipment.co.uk, 1
simplycharlottemason.com, 1
simplycloud.de, 1
simplyfitperth.com.au, 1
-simplyfixit.co.uk, 1
simplyheadwear.com.au, 1
simplyhelen.de, 1
simplyjet.tk, 1
@@ -87194,6 +88132,7 @@ simplyuniforms.com.au, 1
simpservices.com, 1
simpte.com, 1
simrail.nl, 1
+sims4hub.ga, 1
simscale.com, 1
simsimi.ml, 1
simsnieuws.nl, 1
@@ -87238,6 +88177,7 @@ sindlerova.com, 1
sindlerova.cz, 1
sindominio.net, 1
sindromebenjamin.tk, 1
+sine21.net, 1
sineadobrien.com, 1
sineafoods.com, 1
sinefili.com, 1
@@ -87456,6 +88396,7 @@ siulam-wingchun.org, 1
siusto.com, 1
sivale.mx, 1
sivaru.tk, 1
+sivertbjorneras.com, 1
sivizius.eu, 1
sivyerge.com, 1
siw64.com, 1
@@ -87490,6 +88431,7 @@ sjrcommercialfinance.co.uk, 1
sjwheel.net, 1
sk.tl, 1
sk33t.tk, 1
+sk8erofbodom.com, 1
skachat-shablon-rezyume-na-angliyskom-yazyk.tk, 1
skachat-zip.tk, 1
skachay-knighki.gq, 1
@@ -87586,6 +88528,7 @@ skinport.com, 1
skinpwrd.com, 1
skinseries.cf, 1
skinship.xyz, 1
+skinsolution.ga, 1
skinstyleglobal.com, 1
skinwhiteningoptions.com, 0
skipbounce.com, 1
@@ -87746,6 +88689,7 @@ skyterraathome.com, 1
skyterraembrace.com, 1
skyterrawellness.com, 1
skytickets.ga, 1
+skytiger.ga, 1
skytown.ga, 1
skyvault.io, 1
skywalkers.net, 1
@@ -87851,6 +88795,7 @@ slingo-sta.com, 1
slingoweb.com, 1
slink.hr, 1
slinx.tk, 1
+slip-gaming.tk, 1
slipknot-site.tk, 1
sliptrickrecords.com, 1
slite.com, 1
@@ -87869,6 +88814,7 @@ sloanestreetdeli.com, 1
sloanrealtygroup.com, 1
sloboda.tk, 1
slobrowink.com, 1
+slogan.tk, 1
sloneczni.pl, 1
slonep.net, 1
slopeedge.net, 1
@@ -87922,6 +88868,7 @@ slxh.eu, 1
slxh.nl, 1
slymak.com, 1
slytech.ch, 0
+slytigers.tk, 1
slyvon.com, 1
sm-kyoushitsu.com, 1
sm-supplements.gr, 1
@@ -87940,15 +88887,12 @@ smalandscountryclub.tk, 1
small-blog.cf, 1
smallbytedesign.co, 1
smallchat.nl, 1
-smallcloudsolutions.co.za, 1
-smallcloudsolutions.com, 1
smallcraftadvisory.tk, 1
smalldata.tech, 1
smalle-voet.de, 1
smallfoot.tk, 1
smallpath.me, 1
smalls-world.tk, 1
-smallsites.eu, 1
smalltalkconsulting.com, 1
smalltunepress.tk, 1
smallville.tk, 1
@@ -87982,6 +88926,7 @@ smart-cp.jp, 1
smart-informatics.com, 1
smart-ket.com, 1
smart-media-gmbh.de, 1
+smart-mrt.co.il, 1
smart-profile.ro, 1
smart-travel.tk, 1
smart-tux.de, 1
@@ -88042,6 +88987,7 @@ smartmessages.net, 1
smartminibushire.co.uk, 0
smartmomsmartideas.com, 1
smartmones.com, 1
+smartnanny.cf, 1
smartpanelsmm.com, 1
smartpatika.hu, 1
smartpheromones.com, 1
@@ -88100,6 +89046,7 @@ smetak.cz, 1
smetbuildingproducts.com, 1
smexpt.com, 1
smh.me, 1
+smhatelier.com, 1
smhotels.com.ph, 1
smi-a.me, 1
smialnumenor.tk, 1
@@ -88193,7 +89140,6 @@ sms1.ro, 1
sms72.tk, 1
smsappointment.com, 0
smsbrana.cz, 0
-smsfa.ir, 1
smsg-dev.ch, 0
smsinger.com, 1
smsk.email, 1
@@ -88319,10 +89265,10 @@ snj.pt, 1
snohomishsepticservice.com, 1
snoopyfacts.com, 1
snoot.club, 1
-snopyta.com, 1
snopyta.org, 1
snorkelaroundtheworld.com, 1
snortfroken.net, 1
+snoska.ga, 1
snote.io, 1
snoupon.com, 1
snow-online.com, 1
@@ -88465,6 +89411,7 @@ societe-chablaisienne-de-revetements.com, 1
societe-chablaisienne-de-revetements.fr, 1
societyhilldance.com, 1
societyparty.ga, 1
+socii.network, 1
sociobiology.com, 1
sociology-bg.gq, 1
sociology-schools.com, 1
@@ -88522,6 +89469,7 @@ sofoco.us, 1
sofortcutie24.de, 1
sofortimplantate-muenchen.de, 1
sofpedia.ro, 0
+sofrapejone.com, 1
soft-key.tk, 1
soft-office.tk, 1
soft-search-system.tk, 1
@@ -88600,6 +89548,7 @@ soko.nl, 1
sokolkarvina.cz, 1
sokolovskyi.ml, 1
sokosport.com, 1
+sokotime.cz, 1
sokouchousa.net, 1
sokrabatt.se, 1
sol-3.de, 0
@@ -88627,6 +89576,7 @@ solarloon.com, 1
solaronics.tk, 1
solarpanels.tk, 1
solarplan-berlin.de, 1
+solarrights.org, 1
solarstrom.net, 1
solartek.cf, 1
solartek.ga, 1
@@ -88759,6 +89709,7 @@ somefe.pt, 1
somehowsomeday.com, 1
somehsara.tk, 1
somerm.com, 1
+somerprints.co.uk, 1
somersetdev.com, 1
somersetscr.nhs.uk, 1
somersetwellbeing.nhs.uk, 1
@@ -88907,6 +89858,7 @@ sorn.service.gov.uk, 1
sorpresashop.nl, 1
sorrowfulunfounded.com, 1
sort.land, 1
+sortandpack.com, 1
sortaweird.net, 0
sortesim.com.br, 1
soruly.com, 1
@@ -89112,6 +90064,7 @@ sovmestimost-goroskop.ml, 1
sovmestimost-zodiak.gq, 1
sovraindebitamento.net, 1
sovremenik.tk, 1
+sovtech.tk, 1
sovxoz.gq, 1
sowhat.dk, 1
sowncloud.de, 1
@@ -89132,6 +90085,7 @@ sozai-good.com, 1
sozdanie-krana.ml, 1
sozialabstand.de, 1
soziale.email, 1
+sozialismus.tk, 1
sozialistische-gruppe.de, 1
sozialstation-ritterhude.de, 1
sozialy.com, 1
@@ -89152,13 +90106,13 @@ space-it.de, 1
space-net.ml, 1
space-y.cf, 1
spaceage.mp, 1
-spaceanimalnutrition.com, 1
spaceapi.io, 1
spaceart.de, 1
spacebabies.nl, 1
spacebear.ee, 1
spacebestnews.tk, 1
spacecaps.xyz, 1
+spacecovers.com, 1
spacedirectory.org, 1
spacedots.net, 1
spacehighway.ms, 1
@@ -89202,6 +90156,7 @@ spanch.gq, 1
spanch.ml, 1
spanch.tk, 1
spanchelele.cf, 1
+spanchelele.ga, 1
spanchelele.gq, 1
spanchelele.ml, 1
spanchelele.tk, 1
@@ -89259,6 +90214,7 @@ spartanis.tk, 1
spartankids.in, 1
spartantheatre.org, 1
sparumzuege.de, 1
+spasem-park.tk, 1
spasicilia.it, 1
spatiugratis.tk, 1
spatter.cf, 1
@@ -89291,6 +90247,7 @@ spear.ga, 1
specdrones.us, 1
special-equipment.tk, 1
specialcameras.tk, 1
+speciale.cf, 1
specialeffect.tk, 1
specialelectronics.tk, 1
specialized-hosting.eu, 1
@@ -89307,6 +90264,7 @@ speciesism.com, 1
specificenergy.com, 1
speckrot.ru, 1
specks.tk, 1
+spectacles.com, 1
spectre-network.tk, 1
spectrosoftware.de, 1
spectrum-markets.com, 1
@@ -89316,7 +90274,6 @@ spediscifiori.com, 1
spedizioni.roma.it, 1
speech-balloon.com, 1
speechdrop.net, 1
-speechelo.store, 1
speechmate.com, 1
speechmore.ml, 1
speechndraw.com, 0
@@ -89398,6 +90355,7 @@ spicystove.com, 1
spicywombat.com, 1
spidercrabs.tk, 1
spidermail.tk, 1
+spidermanitalia.tk, 1
spidernet.tk, 1
spideroak.com, 1
spiders.org.ua, 1
@@ -89406,6 +90364,7 @@ spidometr.ml, 1
spidometrus.ru, 1
spiegels-op-maat.nl, 0
spieka.info, 1
+spielautomaten.cf, 1
spielezar.ch, 1
spielland.ch, 1
spiellawine.de, 1
@@ -89413,6 +90372,7 @@ spielmit.com, 1
spieltexte.de, 1
spiet.nl, 1
spiga.ch, 0
+spikar.gr, 1
spike.sh, 1
spikefishdesigns.com, 1
spikejeon.tk, 1
@@ -89420,6 +90380,7 @@ spikelands.com, 1
spilka-dyplomativ.tk, 1
spillersfamily.net, 0
spillforum.no, 1
+spillhosting.no, 1
spillmaker.no, 0
spilnu.dk, 1
spinal.ga, 1
@@ -89640,6 +90601,7 @@ spurghi.roma.it, 1
spurindustrial.com, 1
spurto.in, 1
sputnik1net.org, 1
+spycam.hopto.me, 1
spychala-it.de, 1
spyclub.tk, 1
spydar007.com, 1
@@ -89910,6 +90872,7 @@ staatsschutzgesetz.at, 1
staatvanhetnederlandscheinternet.nl, 1
staatvanhetnederlandseinternet.nl, 1
stabilimento.it, 1
+stabilizatory.ga, 1
stable.network, 1
stableflect.finance, 1
stablelib.com, 1
@@ -89979,6 +90942,7 @@ stainhaufen.de, 1
stainless-steel-cookware.tk, 1
stainternational.com, 1
stair.ch, 1
+stairfallgames.com, 1
stairlin.com, 0
stairmaster.tk, 1
stajka.tk, 1
@@ -89987,6 +90951,7 @@ staklim-malang.info, 1
stako.jp, 1
staktrace.com, 1
stal-rulon.ru, 1
+stalbanskenora.ca, 1
stalder.work, 1
stalker-eyes.ga, 1
stalker-shop.com, 1
@@ -90018,6 +90983,7 @@ stampingoriginal.com, 1
stampsbar.co.uk, 1
stamurai.com, 1
stanandjerre.org, 1
+stanchierifamilylaw.com, 1
standard.co.uk, 1
standardizarea.ro, 1
standards.gov, 1
@@ -90028,6 +90994,7 @@ standheizung-shop.de, 1
standoff-magic.ru, 1
standoffdrop.com, 1
standoffdrop.ru, 1
+standupcomedy.ga, 1
stang.moe, 1
stangeland.tk, 1
stanglwirt.com, 1
@@ -90154,6 +91121,7 @@ startstack.tech, 1
startstunter.com, 1
starttls-everywhere.org, 1
starttraffic.uk, 1
+startubefittings.com, 1
startup-lab.ro, 1
startup-stack.com, 1
startup-stack.tech, 1
@@ -90407,7 +91375,6 @@ stemcellclinic.vip, 1
stemcellclinic.world, 1
stemcellstherapynyc.com, 1
stemgirls.co.za, 1
-stemkit4kids.com, 1
stemklank.tk, 1
stemmayhem.com, 1
stempel-lobenhofer.at, 1
@@ -90475,6 +91442,7 @@ sterno.cf, 1
sternplastic.com, 1
sternsinus.com, 1
sterohouse.com, 1
+steroids.ga, 1
sterva.mobi, 1
sterydki.pl, 1
sterz.io, 1
@@ -90697,6 +91665,7 @@ stock-ai.com, 1
stock-solution.de, 1
stockanalysis.com, 1
stockgraphicdesigns.com, 1
+stockholm.ga, 1
stockholmpride.org, 1
stockhuntertrading.com, 1
stockmarkettoday.news, 1
@@ -90907,6 +91876,7 @@ strakh.tk, 1
strakonak.cz, 1
stralingsonzin.com, 1
strana-snov.tk, 1
+strana.ga, 1
strandbyfysio.dk, 1
strandedinotter.space, 1
strandhaus-claassen.de, 1
@@ -90956,6 +91926,7 @@ stratmann-b.de, 1
stratocumulus.legal, 1
stratreg.com, 1
stratsoftware.com, 1
+strattera.ga, 1
strattonapps.com, 1
strattonhats.com, 1
stratuscloud.co.za, 1
@@ -91068,6 +92039,7 @@ stroke-of-luck.com, 1
strokesb.store, 1
strom.family, 1
stromak.cz, 0
+stromectol.gq, 1
stromkomfort.cz, 1
stromzivota.sk, 1
strong-sport.com.ua, 1
@@ -91231,6 +92203,7 @@ studujdigital.eu, 1
studwebs.ml, 1
study-support-beans.com, 1
studyero.com, 1
+studyhub.cf, 1
studyin.jp, 1
studying-neet.com, 1
studylish.com, 1
@@ -91267,8 +92240,10 @@ stupidest.org, 1
stupidstatetricks.com, 1
stupidthoughts.tk, 1
stupino-stroy.cf, 1
+sturtz.cf, 1
stutelage.com, 1
stutsmancounty.gov, 1
+stuttgart.ga, 1
stuudium-mail.ee, 1
stuudium.cloud, 1
stuudium.com, 1
@@ -91306,7 +92281,6 @@ stylewish.me, 1
stylezutra.com, 1
stylidafm.gr, 1
stylingstudio.ga, 1
-stylistbazaar.com, 1
stylle.me, 1
styllussports.com.br, 1
stylodessens.fr, 1
@@ -91323,6 +92297,7 @@ suaraangin.com, 1
suareforma.com, 0
suaudeau.fr, 1
suaudeau.org, 1
+suavidamerecemais.com.br, 1
suayslim.com, 1
sub-net.at, 1
sub.media, 0
@@ -91334,6 +92309,7 @@ subastasnacionales.com, 1
subbacultcha.tk, 1
subdev.org, 1
subdivider.tk, 1
+subestan.tk, 1
subgirl.ga, 1
subiacotram.com.au, 1
subject-barred.cf, 1
@@ -91415,6 +92391,7 @@ sueno.ro, 1
suenotek.com, 1
suerteloteria.com, 1
suessdeko.de, 1
+suetreweeke.com, 1
suevia-ka.de, 1
suffix.ru, 1
sufix.cz, 1
@@ -91475,7 +92452,6 @@ sulemanquotes.tk, 1
suleri.tk, 1
sulkmen.tk, 1
sultangroup.ru, 1
-suluvir.com, 1
sulytics-tool.com, 1
sumatogroup.com, 1
sumatphoto.com, 1
@@ -91627,6 +92603,7 @@ super-erotica.ru, 1
super-knighki.gq, 1
super-lolitas.tk, 1
super-o-blog.com, 1
+super11.nl, 1
superaficionados.com, 1
superbart.nl, 1
superbaskirskij-med.tk, 1
@@ -91759,6 +92736,7 @@ supportfan.gov, 1
supportmeindia.com, 1
supra.tf, 1
supracube.com, 1
+supraelco.com, 1
suprax365.tk, 1
suprem.biz, 0
suprem.ch, 0
@@ -91781,6 +92759,7 @@ surefit-oms.com, 1
surefleet.com.au, 1
surf1969.tk, 1
surfcaparica.com, 1
+surfinglisbon.com, 1
surfingnash.com, 1
surflessonslisbon.com, 1
surfnetkids.com, 1
@@ -91869,6 +92848,7 @@ suvidhaapay.com, 1
suwanneecountyfl.gov, 1
suwanneehealthrehab.com, 1
suwcountyfl.gov, 1
+suzannecooper.com, 1
suzdalgrad.cf, 1
suzi3d.com, 1
suziekovner.com, 1
@@ -91887,6 +92867,8 @@ svanstrom.com, 1
svanstrom.org, 1
svantner.sk, 1
svarka22.ml, 1
+svarka24.com.ua, 1
+svarka26.gq, 1
svarovani.tk, 1
svatba.cf, 1
svatbamisiaviti.tk, 1
@@ -91941,7 +92923,7 @@ svetoch.ga, 1
svetodiod.gq, 1
svetonaushniki.tk, 1
svetplast.msk.ru, 1
-svetplast.spb.ru, 1
+svetplast.spb.ru, 0
svetrelaxu.cz, 1
svg-board.ml, 1
svgzone.tk, 1
@@ -92070,6 +93052,7 @@ swiftirc.net, 1
swiftpak.co.uk, 1
swiftqueue.com, 1
swiftrecharge.com, 1
+swifttowing.com.au, 1
swilly.org, 1
swim-smart.com, 1
swimmingpoolaccidentattorney.net, 1
@@ -92098,6 +93081,7 @@ swiss-vanilla.ch, 1
swiss-vanilla.com, 1
swissbearfoodservices.com, 1
swisscannabis.club, 1
+swisschat.tk, 1
swissdojo.ch, 0
swissdomaintrustee.ch, 1
swisselement365.com, 0
@@ -92170,6 +93154,7 @@ syc-rotterdam.tk, 1
sycamorememphis.org, 1
sycca.com, 1
sychov.pro, 1
+sydgrabber.tk, 1
sydney-sehen.com, 1
sydney.dating, 1
sydneybamboo.com.au, 1
@@ -92374,6 +93359,7 @@ szamitogepdepo.com, 1
szasz.me, 1
szaszm.tk, 0
szczury.org, 1
+szegediszobafestok.hu, 1
szelagnes.com, 1
szelagnes.hu, 1
szentistvanpt.sk, 1
@@ -92418,6 +93404,7 @@ t070.com, 1
t0ny.name, 1
t12u.com, 1
t1everydaymagic.com, 1
+t1f.ru, 1
t2-sit-test.tk, 0
t2000headphones.com, 1
t2000laserpointers.com, 1
@@ -92425,7 +93412,6 @@ t22.uk, 1
t2881.com, 1
t2i.nl, 1
t3.ie, 1
-t30365.com, 1
t36533.com, 1
t39.com, 1
t3hty.fr, 1
@@ -92544,7 +93530,6 @@ tacomarugby.com, 1
tacomarugby.org, 1
tacotown.tk, 1
tactical.zone, 1
-tacticalavocado.com, 1
tacticalgearexperts.com, 1
tacticalvote.co.uk, 1
tacticalwalls.com, 1
@@ -92584,8 +93569,8 @@ tagstationen.se, 1
tagstatravel.com, 1
tagtog.net, 1
tagtoys.com, 1
-taguette.com, 0
-taguette.fr, 0
+taguette.com, 1
+taguette.fr, 1
taguette.org, 1
taguiginfo.com, 1
tagungsraum-usedom.de, 1
@@ -92699,6 +93684,7 @@ talesbazaar.com, 1
talichi.com, 1
talideon.com, 0
talis-bs.com, 1
+talisman-amulet.ga, 1
talk.google.com, 1
talk.xyz, 1
talkaboutdesign.com, 1
@@ -92781,6 +93767,7 @@ tanchynski.com, 1
tancredi.nl, 0
tancuongtea.tk, 1
tandakutip.com, 1
+tandarts-haarlem.nl, 0
tandarts-ict.nl, 1
tandartsen-ict.nl, 1
tandartspraktijkreddingius.nl, 1
@@ -93009,6 +93996,7 @@ tauflight.com, 1
taunusstein.net, 1
tauran.net, 1
tauriscia.tk, 1
+taurusgaming.com, 1
tauschen.info, 1
tavda.info, 1
tavda.net, 1
@@ -93083,6 +94071,7 @@ tbbvip1.com, 0
tbcloud.site, 1
tbejos.com, 1
tbfocus.com, 1
+tbi.equipment, 1
tbi.systems, 1
tbird-q.com, 1
tbitc.ch, 1
@@ -93097,6 +94086,7 @@ tbtech.cz, 1
tbuchloh.de, 1
tbun.de, 1
tbys.us, 1
+tbz-pariv.de, 1
tc-st-leonard.ch, 0
tc-triathlon.com, 1
tc.nz, 1
@@ -93376,6 +94366,7 @@ techjoe.co, 1
techlab.co.il, 1
techlearningcollective.com, 1
techlr.de, 1
+techmagazine.tk, 1
techmagus.icu, 1
techmajesty.com, 1
techmanstan.com, 1
@@ -93610,11 +94601,13 @@ telcodb.net, 1
teldak.pt, 1
tele-alarme.ch, 1
tele-assistance.ch, 1
+tele-online.com, 1
tele-points.net, 1
tele.wiki, 1
teleafrica.ga, 1
telealarme.ch, 0
telealarmevalais.ch, 1
+teleblog.gq, 1
telecablenostima.tk, 1
telecallsrl.com, 1
telecamera.pro, 0
@@ -93686,6 +94679,7 @@ tellet.tel, 1
telling.xyz, 1
tellingua.com, 0
tellthemachines.com, 1
+telluridelocals.com, 1
tellusaboutus.com, 1
telly.site, 1
tellygames.com, 1
@@ -93720,6 +94714,7 @@ tempflix.com, 1
templars.army, 1
template-help.fr, 1
template-parks.com, 1
+templated.ga, 1
templeandalucia.tk, 1
templete.tk, 1
tempmail.ninja, 1
@@ -93836,6 +94831,7 @@ terence2008.info, 1
terengganudaily.tk, 1
terenska-edinica.tk, 1
tereotech.net, 1
+teri.cc, 1
teriiphotography.com, 1
teriyakisecret.com, 1
termbackti.me, 1
@@ -93861,6 +94857,7 @@ terovania.de, 1
terovania.games, 1
terpotiz.net, 1
terra-24.ru, 1
+terra-med.ga, 1
terra-x.net, 1
terra.fitness, 1
terra7.net, 1
@@ -93988,6 +94985,8 @@ teto.nu, 1
tetovaweb.tk, 1
tetr.io, 1
tetrabyte.tk, 1
+tetracyclin.ml, 1
+tetracyclin.tk, 1
tetracycline500mg.ga, 1
tetraetc.com, 1
tetraktus.org, 1
@@ -94016,6 +95015,7 @@ texashomesandland.com, 1
texasllcpros.com, 0
texasnewsusa.tk, 1
texasonesource.com, 1
+texasonlinedivorce.com, 1
texaspaintingandgutters.com, 1
texasparkinglotstriping.com, 1
texasready.gov, 1
@@ -94154,7 +95154,6 @@ thalgott.net, 0
thalhammer.it, 1
thalia.nu, 1
thalita-reload.com, 1
-thalliman.com, 1
thallinger.me, 1
thalmann.fr, 0
thambaru.com, 1
@@ -94246,6 +95245,9 @@ theagencywithoutaname.com, 1
thealchemistatelier.com, 1
theallmanteam.com, 1
thealmsolution.com, 1
+thealonas.cf, 1
+thealonas.ga, 1
+thealonas.gq, 1
thealonas.ml, 1
thealonas.tk, 1
theangelgivingtree.com, 1
@@ -94293,6 +95295,8 @@ thebarkofhinkle.com, 1
thebarrens.nu, 1
thebarrypatch.com, 1
thebasebk.org, 1
+thebasementdefender.com, 1
+thebasementdefender.net, 1
thebasicstudio.com, 1
thebathroomexchange.ga, 1
thebcm.co.uk, 1
@@ -94323,6 +95327,7 @@ thebismarckmarathon.com, 1
thebit.link, 1
thebitchneyfiles.tk, 1
theblackboard.gr, 1
+theblackcat.ga, 1
theblacklock.com, 1
theblondeabroad.com, 0
theblueinnovations.com, 1
@@ -94427,6 +95432,7 @@ thecrochetcottage.net, 1
thecskr.in, 1
thecstick.com, 1
thecubepsych.com, 1
+thecultureworks.com, 1
thecuriouscat.net, 1
thecuriousdev.com, 1
thecurvyfashionista.com, 1
@@ -94468,7 +95474,6 @@ thedocumentrefinery.com, 1
thedom.site, 1
thedonaldarchive.tk, 1
thedrawbacks.tk, 1
-thedreamtravelgroup.co.uk, 1
thedrizzle.tk, 1
thedroidman.com, 1
thedronechart.com, 1
@@ -94587,6 +95592,7 @@ thehamiltoncoblog.com, 1
thehappeny.com, 1
thehappyxwife.ga, 1
thehasanyildirim.tk, 1
+thehashagency.com.au, 1
thehassanmusic.tk, 1
thehasty.com, 1
thehaxbys.co.uk, 1
@@ -94602,6 +95608,7 @@ theholloways.tk, 1
thehomebakery.ie, 1
thehomemademasks.com, 1
thehomeofthefuture.com, 1
+thehoney.ga, 1
thehonorguard.org, 1
thehookup.be, 1
thehopefuture.com, 1
@@ -94726,6 +95733,7 @@ themigraineinstitute.com, 1
themilanlife.com, 1
theminiacs.com, 1
themist.cz, 1
+themlmsuccessnow.tk, 1
themodernreviewer.ga, 1
themomentratchada19.com, 1
themoneyconverter.com, 1
@@ -94950,6 +95958,7 @@ theseonoob.com, 1
theseosystem.com, 1
thesepticgroup.com, 1
theserpent.tk, 1
+theserver201.tk, 1
theserviceyouneed.com, 1
thesession.org, 0
thesetwohands864.com, 1
@@ -95055,6 +96064,7 @@ theundefeated.com, 1
theunitehistoryproject.org, 1
theuniversallover.tk, 1
theuniversitiesofasia.ga, 1
+theunknownfilmcompany.com, 1
theunleashedpet.com, 1
thevacweb.com, 1
thevalentineconstitution.com, 1
@@ -95121,6 +96131,7 @@ thewritegrl.com, 1
thexalla.tk, 1
thexme.de, 1
thexpert.ml, 1
+theyacht.ga, 1
theyakshack.co.uk, 1
theyarnhookup.com, 0
theyear199x.org, 1
@@ -95202,6 +96213,7 @@ thirdwaverevenue.com, 1
thirdworld.moe, 1
thirstyjourneys.com, 1
thirteen.pm, 1
+thirtysixseventy.ml, 1
thirtyspot.com, 1
thiry-automobiles.net, 0
thiscity.rocks, 1
@@ -95209,6 +96221,7 @@ thiscloudiscrap.com, 0
thisdayinhockey.tk, 1
thisdot.site, 1
thisfreelife.gov, 1
+thisisacompletetest.ga, 1
thisisart.ie, 1
thisishugo.com, 1
thisismit.ch, 1
@@ -95305,6 +96318,7 @@ threatcentral.io, 1
threatcon.io, 1
threatdetection.info, 1
threatmonitor.io, 1
+threatnix.io, 1
threatworking.com, 1
three-wheels.cf, 1
threedpro.me, 1
@@ -95456,6 +96470,7 @@ ticketure.com, 1
ticketyn.com, 1
tickit.ca, 0
tid.jp, 1
+tidal.ninja, 1
tide.com, 0
tidehunter.ml, 1
tidton.com, 1
@@ -95465,6 +96480,7 @@ tidycustoms.net, 1
tiekoetter.com, 1
tielectric.ch, 1
tielsebakkers.tk, 1
+tiemdoconnit.com, 1
tiempoalegria.com, 1
tiempolibre.nl, 1
tienda.cx, 1
@@ -95474,6 +96490,7 @@ tiendadeperros.com, 1
tiendadolca.com, 1
tiendaengeneral.com, 1
tiendafetichista.com, 1
+tiendagamer.co, 1
tiendamaquillajes.com, 1
tiendashuacho.com, 1
tiendatecnologica.net, 1
@@ -95487,6 +96504,7 @@ tierarztpraxis-weinert.de, 1
tiergear.com.au, 1
tiernanx.com, 1
tieronegraphics.com, 1
+tierparadies-muhrielle.org, 1
tierra-indomables.tk, 1
tierracenter.com, 1
tierradeayala.com, 1
@@ -95724,6 +96742,7 @@ tiny777.com, 1
tinycat99.ws, 1
tinychen.com, 1
tinycrm.pl, 1
+tinydogs.ga, 1
tinyemily.com, 1
tinyfont.ml, 1
tinyhousebarat.com, 1
@@ -95815,10 +96834,10 @@ titanwaterproofing.com.au, 1
titelseite.ch, 1
titiansgirl.com, 1
titina.tk, 1
+titivoot.tk, 1
titleboxing.com, 1
titli.fr, 1
titouan.co, 0
-titrespresse.com, 1
titser.ph, 1
tittelbach.at, 1
titusetcompagnies.net, 0
@@ -95855,6 +96874,7 @@ tkita.kr, 1
tkjg.fi, 1
tkmr-gyouseishosi.com, 1
tkn.me, 1
+tkonstantopoulos.tk, 1
tkrn.de, 1
tksainc.com, 1
tkts.cl, 1
@@ -95894,6 +96914,8 @@ tmas.dk, 1
tmbcloud.duckdns.org, 1
tmberg.cf, 1
tmberg.eu.org, 1
+tmberg.ga, 1
+tmberg.gq, 1
tmberg.ml, 1
tmberg.se.eu.org, 1
tmberg.tk, 1
@@ -95948,6 +96970,8 @@ to-med.ru, 1
to.gt, 1
to.md, 1
toad.ga, 1
+toals.com, 1
+toalsbet.com, 1
toast.al, 0
toastmasters.tk, 1
toaw.de, 1
@@ -96048,6 +97072,7 @@ todoescaperooms.com, 1
todoescine.com, 1
todoist.com, 1
todoist.net, 1
+todokete.ga, 1
todolex.tk, 1
todon.fr, 1
todoporjesus.net, 1
@@ -96307,6 +97332,7 @@ tonorosario.tk, 1
tonshaiza.tk, 1
tonsit.com, 1
tonsit.org, 0
+tonton.cf, 1
tontonnews.net, 1
tontonroger.org, 1
tonyandskye.com, 1
@@ -96363,10 +97389,12 @@ toothdoc.ca, 1
toothless.tk, 1
toothpique.tk, 1
tootl.org, 1
+toowoombajazz.com, 1
top-avis.fr, 1
top-beauty.cf, 1
top-cena.ru, 1
top-credit.tk, 1
+top-dance.pl, 1
top-drop.tk, 1
top-electronics.ru, 1
top-frog.com, 1
@@ -96382,9 +97410,9 @@ top-schools.tk, 1
top-secret.tk, 1
top-service.ml, 1
top-skins.ml, 1
+top-verhandlungstraining.de, 1
top-zdrave.bg, 1
top-zentr.tk, 1
-top10.digital, 1
top10.tk, 1
top100games.ml, 1
top10antivirus.review, 1
@@ -96415,6 +97443,7 @@ topcarcasas.com, 1
topcarehvac.ca, 1
topciderska-crkva.rs, 1
topclassfun.ie, 1
+topcoffee.cf, 1
topdesk.net, 1
topdetoxcleanse.com, 1
topdevbox.net, 1
@@ -96467,6 +97496,7 @@ topmoods.com, 1
topmotoric.com, 1
topmuzic.tk, 1
topmuzika.cz, 1
+topnado.tk, 1
topnaz.com, 1
topnet.tk, 1
topnewsscoop.com, 1
@@ -96516,7 +97546,9 @@ toptenthebest.com, 1
toptexture.com, 1
toptheto.com, 1
toptiernetworks.tk, 1
+toptour.tk, 1
toptranslation.com, 1
+toptravel.tk, 1
toptravelgram.com, 1
toptur.tk, 1
topupandearn.com, 1
@@ -96670,6 +97702,7 @@ totalsport-bg.com, 1
totaltriathlon.com, 1
totalwebboost.nl, 1
totalwebmedia.nl, 1
+totalwreckers.com.au, 1
totalzen.ga, 1
totch.de, 1
totem-international.com, 1
@@ -96734,6 +97767,7 @@ tours-in-petersburg.tk, 1
tours.co.th, 1
toursandtransfers.it, 1
toursencancun.com, 1
+toursforyou.nz, 1
toursinvietnam.tk, 1
tourtransferitaly.it, 1
tourtrektrip.com, 1
@@ -96976,7 +98010,6 @@ trainable.cf, 1
trainex.org, 1
trainhornforums.com, 0
trainiac.com.au, 1
-training-eca.eu, 1
trainingcentral.cf, 1
traininghamburg.de, 1
traininglife.org, 1
@@ -97038,6 +98071,7 @@ tramadol.ga, 1
tramadolhcl.ga, 1
tramclub-basel.ch, 1
tramikshop.ml, 1
+tramin.ca, 1
tran.pw, 1
trance-heal.com, 1
trance-heal.de, 1
@@ -97081,6 +98115,7 @@ transferwiseturkiye.com.tr, 1
transfigurewizard.com, 1
transfile.fr, 1
transforleren.nl, 1
+transformaciondelestres.com, 1
transformaniatime.com, 1
transformations-magazin.com, 1
transformersmmdb.tk, 1
@@ -97184,6 +98219,7 @@ travel365.it, 1
traveladdiction.tk, 1
travelamm.com, 1
travelarmenia.org, 1
+travelaround.tk, 1
travelassist.us.com, 1
travelback.ga, 1
travelbags.be, 1
@@ -97193,13 +98229,17 @@ travelbiz.cf, 1
travelcenter.tk, 1
travelclinic.ml, 1
travelcompany.tk, 1
+traveldir.ga, 1
traveleets.com, 1
travelemy.com, 1
travelenviro.com, 1
travelepoch.com, 1
+travelera.tk, 1
travelerofcharleston.com, 1
+traveleurope.ml, 1
travelexbiz.com, 1
travelexinternational.com, 1
+travelexpress.tk, 1
travelfield.org, 1
travelfoot.com, 1
travelfriend.tk, 1
@@ -97216,8 +98256,10 @@ travellers.dating, 1
travellets.tk, 1
travellovers.fr, 1
travelmademedoit.com, 1
+travelmate.cf, 1
travelmexico42.com, 1
travelmontenegro.tk, 1
+travelnetwork.tk, 1
travelnews.cf, 1
travelogue.jp, 1
travelongravel.tk, 1
@@ -97226,11 +98268,17 @@ travelphilippines.tk, 1
travelphoto.cc, 1
travelphotographycourse.com, 1
travelplugcolombia.com, 1
+travelpremium.ga, 1
+travelprestige.ga, 1
+travelrail.ga, 1
travelrefund.com, 1
+travelreviews.tk, 1
travelround.io, 1
travelsets.com, 1
travelshack.com, 1
travelshelper.com, 1
+travelshopbooking.com, 1
+travelsites.tk, 1
travelspassion.com, 1
travelstation.tk, 1
travelstrokes.com, 1
@@ -97288,6 +98336,7 @@ treehorn.nl, 1
treehousebydesign.com, 1
treehouseresort.nl, 1
treemadeiras.com.br, 1
+treeremovalsboksburg.co.za, 1
treeremovalspretoria.co.za, 1
treering.com, 1
treeschat.com, 1
@@ -97315,6 +98364,7 @@ trekonbh.com, 1
trelki.de, 1
treml-sturm.com, 1
tremol-spedition.com, 1
+trend-shop.ga, 1
trendingaffords.com, 1
trendingdeals.ga, 1
trendingeducation.tk, 1
@@ -97333,6 +98383,7 @@ trendycrowds.com, 1
trendydips.com, 1
trendyindi.com, 1
trendykids.cz, 1
+trendzilla.ga, 1
trenorario.it, 1
trenta.fr, 1
trentinogenealogy.com, 1
@@ -97349,6 +98400,7 @@ trespassing.com, 1
trespedia.com, 1
tresredatores.tk, 1
tretail.net, 1
+tretinoin.gq, 1
tretkowski.de, 1
treurtransport.tk, 1
trevacez.com, 1
@@ -97358,6 +98410,7 @@ trezor.io, 1
trezy.me, 1
trezy.net, 1
trhastane.com, 1
+tri.gg, 1
triage.ai, 1
triage.clinic, 1
triage.com, 1
@@ -97424,6 +98477,7 @@ triefenbach.com, 1
triefenbach.eu, 1
trietment.com, 0
trifence.ch, 1
+trifence.eu, 1
trigardon-rg.de, 1
trigate.io, 1
triggeredpaintz.com, 1
@@ -97452,6 +98506,7 @@ trineco.com, 1
trineco.fi, 1
trinetus.com, 1
tringavillasyala.com, 1
+tringle.pro, 1
trinhtrongson.tk, 1
trinitasgyor.hu, 1
trinitycore.org, 1
@@ -97459,6 +98514,7 @@ trinitycorporateservices.com, 1
trinityny.org, 1
trinityradioandvideo.org, 1
trinitysurfaces.com, 1
+trinitywernersville.org, 1
trink-und-partyspiele.de, 1
trinnes.net, 1
trinstadab.se, 1
@@ -97495,6 +98551,7 @@ tristanhager.i234.me, 1
trit.pro, 1
tritium.cf, 1
tritiumdisposal.com, 1
+trivarfertilizer.com, 1
trixati.org.ua, 1
trixiebooru.org, 1
triz.co.uk, 1
@@ -97557,6 +98614,7 @@ tropicalserver.com, 1
tropicalticket.ml, 1
tropicaltravelco.com, 1
tropikdeniz.com.tr, 1
+tropiki.tk, 1
tropiweb.tk, 1
troplo.com, 1
troqueladoras.online, 1
@@ -97612,6 +98670,7 @@ trucosdescargas.com, 1
true-360.com, 1
true-itk.de, 1
trueachievements.com, 1
+trueasia.ga, 1
trueassignmenthelp.co.uk, 1
truebluedriver.com, 1
truecosmeticbeauty.com, 0
@@ -97660,6 +98719,7 @@ trunk-show.net, 1
truong.fi, 1
truphaegourmet.com, 1
truqu.com, 1
+trusecurity.gq, 1
truserve.org, 1
trusifan.tk, 1
trusitio.com, 1
@@ -97748,7 +98808,6 @@ tsacareer.com, 1
tsacbttest.com, 1
tsachs.eu, 1
tsacloud.ml, 1
-tsahf.com, 1
tsai.com.de, 1
tsakalian.gr, 1
tsakanakis.tk, 1
@@ -97798,6 +98857,7 @@ tsunamic.cf, 1
tsundere.moe, 1
tsura.org, 1
tsurai.work, 1
+tsurezurematome.ga, 1
tsurimap.com, 1
tsuruhime.tk, 1
tsutawal.com, 1
@@ -97953,6 +99013,7 @@ tumentorweb.com.mx, 1
tumult-productions.tk, 1
tun.bible, 1
tunaut.com, 1
+tuncmar.com, 1
tune-web.de, 1
tunefish-entertainment.de, 1
tunen.cf, 1
@@ -98442,7 +99503,7 @@ u29dc.com, 0
u2b.eu, 1
u2fanlife.com, 1
u2fsecuritykeys.com, 1
-u30365.com, 1
+u2galicia.tk, 1
u36533.com, 1
u4.re, 1
u4mh-dev-accesscontroller.azurewebsites.net, 1
@@ -98716,6 +99777,7 @@ uldsh.de, 1
uleenucks.de, 1
ulement.com, 1
ulen.me, 1
+ulet.tk, 1
ulezcar.com, 1
ulfsciences.com, 1
ulgaipbox.online, 1
@@ -98725,6 +99787,8 @@ ulike123.com, 1
ulitroyo.com, 1
ullah.se, 1
ulli.ml, 1
+ulobby.eu, 1
+ulovdomov.cz, 1
uloztoasdilej.cz, 1
ulrik.moe, 1
ulrike-sichert-schuster.de, 1
@@ -98747,6 +99811,7 @@ ultimatemapping.tk, 1
ultimatepaleoguide.com, 1
ultimateparts.nl, 1
ultimatepatrol.de, 1
+ultimatepower.ga, 1
ultortech.com, 1
ultra-pro.ga, 1
ultracentr.ml, 1
@@ -98802,6 +99867,7 @@ umnugobi.tk, 1
umo.ci, 1
umount.net, 1
umsapi.com, 1
+umstudio.com.br, 1
umton.cz, 1
umwandeln-online.de, 1
umwelt-galerie.de, 1
@@ -98818,6 +99884,7 @@ unaffectedsound.tk, 1
unai-yus.tk, 1
unanaciounaseleccio.tk, 1
unapp.me, 1
+unasim.gq, 1
unataly.gq, 1
unataz.tk, 1
unatco.noip.me, 1
@@ -98825,6 +99892,7 @@ unausa.com.br, 1
unautreregard.tk, 1
unbelievableplaces.de, 1
unblock-zh.org, 1
+unblockat.tk, 1
unblocked.at, 1
unblocked.bet, 1
unblocked.bid, 1
@@ -98859,6 +99927,7 @@ unblockit.biz, 1
unblockit.ca, 1
unblockit.id, 1
unblockit.lat, 1
+unblockit.link, 1
unblockit.ltd, 1
unblockit.me, 1
unblockit.one, 1
@@ -98920,6 +99989,7 @@ unearaigneeauplafond.fr, 1
unece-deta.eu, 1
unefleur.be, 1
unefuite.ch, 0
+unemployment.ga, 1
unepierrepourlui.fr, 1
unerosesurlalune.fr, 0
unescoclub.tk, 1
@@ -98987,6 +100057,7 @@ unieducar.org.br, 1
uniekglas.nl, 1
unifashion.ro, 1
unifestal.com, 1
+unified.show, 1
unifiednetwork.me, 1
uniforcele.com, 1
uniform-agri.com, 1
@@ -99044,6 +100115,7 @@ united-schools.net, 1
united-trainers-league.tk, 1
united.com, 0
unitedadmins.com, 1
+unitedarmyofentropia.tk, 1
unitedbaby.fr, 1
unitedbusinessbank.com, 1
unitedcarremoval.com.au, 1
@@ -99066,6 +100138,8 @@ unitencup.tk, 1
unitir.gq, 1
unityconsciousnessbooks.com, 1
unityvox.com, 1
+unium.cloud, 1
+unium.club, 1
unium.uz, 1
uniuni.info, 1
univ-segou.ml, 1
@@ -99122,7 +100196,7 @@ unixfox.eu, 1
unixhost.ga, 1
unixteam.de, 1
unixtime.date, 1
-unja.ac.id, 0
+unja.ac.id, 1
unkn0wncat.net, 1
unknown-player.com, 1
unknown.kyoto, 0
@@ -99235,7 +100309,6 @@ upbeatrobot.eu, 1
upbeatrobot.net, 1
upbeatrobot.nl, 1
upbeatrobot.org, 1
-upbound.io, 0
upbtrbt.com, 1
upbtrbt.eu, 1
upbtrbt.net, 1
@@ -99258,9 +100331,11 @@ uphabit.io, 1
upholsterycleanerslondon.co.uk, 1
upholsterydesign.com.au, 1
upitnik.rs, 1
+uplandsnacks.com, 1
uplaqui.com.br, 1
uplead.com, 1
upliftingappalachia.org, 1
+uplinkgame.tk, 1
uplinklabs.net, 1
upload.facebook.com, 0
uploadbeta.com, 1
@@ -99286,9 +100361,11 @@ uppsala.tk, 1
upr.com.ua, 1
upr.llc, 1
upr.si, 1
+upr.ua, 1
uprint.it, 1
upropay.com, 1
ups-yahweh.com, 1
+upsala.ca, 1
upscope.io, 1
upsdelperu.com.pe, 1
upsettunnel.com, 1
@@ -99296,6 +100373,7 @@ upsihologa.com.ua, 0
upsilonsigmaphi.us, 1
upskilllearning.ml, 1
upskirtmania.tk, 1
+upsocial.ga, 1
upstairs.one, 1
upstart.com, 1
uptech.biz.id, 1
@@ -99347,6 +100425,7 @@ uranus.cf, 1
urbackups.com, 1
urbalex.ch, 0
urban-culture.fr, 1
+urban-map.com, 1
urban-news.tk, 1
urban.melbourne, 1
urbanagriculturesummit.cf, 1
@@ -99357,6 +100436,7 @@ urbanbooks.tk, 1
urbancoffee.com.mx, 1
urbancreators.dk, 1
urbanesecurity.com, 1
+urbangardening.ga, 1
urbanguerillas.de, 1
urbangymfirenze.com, 1
urbanhotbed.eu, 1
@@ -99370,6 +100450,7 @@ urbanmsp.com, 1
urbanmuslim.tk, 1
urbannewsservice.com, 1
urbanon.cz, 1
+urbanpromisetrenton.org, 1
urbansparrow.in, 1
urbanstylestaging.com, 1
urbanusonline.tk, 1
@@ -99433,6 +100514,7 @@ urology.wiki, 1
urologyoklahoma.com, 1
urologyspecialistspc.com, 1
urologywi.com, 1
+uronlinestreams.ga, 1
urown.net, 1
urrestarazuserranoabogados.com, 1
ursa-minor-beta.org, 1
@@ -99555,6 +100637,7 @@ uslugi-voronezh.tk, 1
usmammy.com.tw, 1
usmiddleclass.net, 1
usmint.gov, 1
+usmrecycles.com, 1
usnews-new.tk, 1
usninosnikrcni.eu, 1
usnti.com, 1
@@ -99570,6 +100653,7 @@ uspesnyprvnacek.herokuapp.com, 1
usphs.gov, 0
uspib.info, 1
usportsgo.com, 1
+uspreventiveservicestaskforce.org, 1
usrspace.at, 1
uss-atlas.de, 1
ussemiquincentennial.gov, 1
@@ -99585,6 +100669,7 @@ ustugova.kiev.ua, 1
usu.org.ua, 1
usualbeings.com, 1
usuan.net, 1
+usuluddin.ga, 1
usweme.info, 1
uswitch.com, 1
usyfawovad.gq, 1
@@ -99663,6 +100748,7 @@ uvenuse.cz, 1
uvlamp.ee, 1
uvocorp.com, 1
uvpress.com, 1
+uvsar.com, 1
uvseh.com, 1
uvt.com.co, 1
uvtcinemas.com, 1
@@ -99765,7 +100851,6 @@ v2raytech.com, 1
v2x.sk, 1
v2xxoo.com, 1
v3025.com, 1
-v30365.com, 1
v33v33.com, 1
v36533.com, 1
v44v44.com, 1
@@ -99817,7 +100902,6 @@ va11halla.ddns.net, 1
va1der.ca, 1
vaabogados.legal, 1
vaaddress.co, 1
-vaaes.org, 0
vaan-arbeidsrecht.nl, 1
vaartjesboten.nl, 1
vaat.io, 1
@@ -100019,6 +101103,7 @@ vancityconcerts.com, 1
vancoevents.com, 1
vancouverchess.com, 1
vancouvercosmeticsurgery.ca, 1
+vancouverwaseo.org, 1
vancouverwebsitedesigns.com, 1
vandalfsen.me, 1
vandals.ml, 1
@@ -100030,6 +101115,7 @@ vanderbeekonline.nl, 1
vanderbiltcisa.org, 1
vanderkley.it, 1
vanderkrieken.org, 1
+vanderleeden.servepics.com, 1
vandermeer.frl, 1
vanderrijt.nl, 0
vanderstraeten.dynv6.net, 1
@@ -100196,6 +101282,7 @@ vaughanrisher.com, 1
vault.investments, 1
vault.spdns.eu, 1
vault81.de, 1
+vaultlegal.com.au, 1
vaultproject.io, 0
vaur.fr, 1
vaurio.tk, 1
@@ -100220,7 +101307,6 @@ vbazile.com, 1
vbelgorode.tk, 1
vbestproduct.com, 1
vbestseller.com, 1
-vbezhenar.com, 1
vbql.me, 1
vbsoft.cz, 1
vburyatii.ml, 1
@@ -100309,6 +101395,7 @@ vega-rumia.pl, 0
vegabuhar.net, 1
vegalitarian.org, 1
vegan-pratique.fr, 1
+veganculture.co, 1
vegandelivery.cz, 1
vegane-proteine.com, 1
veganenumbers.com, 1
@@ -100373,6 +101460,8 @@ velonustraduction.com, 1
velorail01.fr, 1
veloroute.hamburg, 1
velosipedi.tk, 1
+velotours.ga, 1
+velovelo.gq, 1
veluwerally2002.tk, 1
velvet-tarantula.tk, 1
velvetempire.tk, 1
@@ -100382,6 +101471,7 @@ venali.tk, 1
venalytics.com, 1
venbraca.com, 1
venclave.com, 1
+vendadopinheiro.com, 1
vendasdealbunsbrasil.tk, 1
vendela.tk, 1
vendermicasarapido.com.mx, 1
@@ -100463,6 +101553,7 @@ vercel.org, 1
vercel.sh, 1
vercettipropiedades.cl, 1
vercopy.com, 1
+verdadera-seduccion.com, 1
verdeandco.co.uk, 1
verdensflag.dk, 1
verdeplus.net, 1
@@ -100618,6 +101709,7 @@ vestlundbolargen.tk, 1
vestnik24.cf, 1
vestum.ru, 1
vesuvio.tk, 1
+vesvault.com, 1
vet4life.co.uk, 1
vetapp.net, 1
vetbits.com, 0
@@ -100664,6 +101756,7 @@ vg-store.ir, 1
vgatest.nl, 1
vgchat.us, 1
vgcheat.com, 1
+vgeek.guru, 1
vgerak.com, 1
vglist.co, 1
vgolos.zt.ua, 1
@@ -100672,10 +101765,10 @@ vgorcum.com, 1
vgpu.vladimir.ru, 1
vgropp.de, 1
vgywm.com, 1
-vhasurvey.org, 1
vhproductions.tk, 1
vhs-bad-wurzach.de, 1
vhummel.nl, 1
+vhumo.com, 1
via-shire-krug.ru, 0
viacation.co, 1
viacdn.org, 1
@@ -100699,6 +101792,8 @@ viasun.ru, 1
viato.fr, 1
viatvperu.com, 1
viaura.biz, 1
+viavitas.ch, 1
+viavitas.com, 1
vibetribe.co.za, 1
vibgyorhigh.com, 1
vibgyorrise.com, 1
@@ -100842,6 +101937,7 @@ vidyamonk.com, 1
vieaw.com, 1
viega.be, 1
viega.ca, 1
+viega.co.uk, 1
viega.com, 1
viega.com.au, 1
viega.cz, 1
@@ -100849,6 +101945,8 @@ viega.es, 1
viega.fr, 1
viega.hr, 1
viega.in, 1
+viega.nl, 1
+viega.se, 1
viega.sk, 1
viega.us, 1
viekelis.lt, 0
@@ -100893,6 +101991,8 @@ vigilanciatotal.com, 1
vigilanciaysalud.com, 1
vigilantesporcolombia.org, 1
vigilantnow.com, 0
+vigilo.cf, 1
+vigilo.ga, 1
vigira.com.ar, 1
vigliano.com, 1
vignaud.fr, 1
@@ -101201,6 +102301,7 @@ virtualprom.tk, 1
virtualroad.org, 1
virtualsanity.com, 1
virtualscoutschool.com, 1
+virtualsex.ga, 1
virtualspeech.com, 1
virtualtabletop.io, 1
virtualvaults.com, 1
@@ -101264,6 +102365,7 @@ visitationbvm.net, 1
visitbangkoktravel.com, 1
visitbeulah.com, 1
visitcambridgeshirefens.org, 1
+visitcaparica.com, 1
visiter-tunis.tk, 1
visitgent.be, 1
visitgent.eu, 1
@@ -101313,7 +102415,6 @@ visware.com, 1
visyeva.hu, 1
vitaalfitcoaching.nl, 1
vitabsolu.fr, 1
-vitaen.nl, 1
vitahook.pw, 1
vitahost.ml, 1
vitakov.tk, 1
@@ -101428,6 +102529,7 @@ vizion.com, 1
vizional.com, 1
vizionnetwork.co.uk, 1
vizit-obmen.tk, 1
+vizit.ml, 1
vizitfree.ml, 1
vizitnik.tk, 1
vizualbits.com, 1
@@ -101522,6 +102624,7 @@ vmhydro.ru, 0
vmis.nl, 1
vmlze.cz, 1
vmoagents.com, 0
+vmoe.info, 1
vmonetke.ru, 1
vmsurgery.org, 1
vmug.pl, 1
@@ -101631,7 +102734,6 @@ voix-bien-etre.com, 0
vojenshandicap.dk, 1
vojtat.cz, 1
vokabl.io, 1
-vokalayedadgostary.com, 1
vokativy.cz, 1
vokeapp.com, 1
vokrug.ga, 1
@@ -101700,6 +102802,7 @@ volubilisplus.fr, 1
volunka.ml, 1
volunteeringmatters.org.uk, 1
volunteers.tk, 1
+voluntourism.ga, 1
volvo1800es.tk, 1
volvoconnect.com, 1
vomitb.in, 1
@@ -101736,6 +102839,7 @@ vorlonempire.org, 1
vorm2.com, 1
vorona.tk, 1
vortari.tk, 1
+vorte.ga, 1
vortexhosting.ga, 1
vos-fleurs.ch, 1
vos-fleurs.com, 1
@@ -101770,6 +102874,7 @@ vote4.hk, 1
votebrevard.gov, 1
votebymail.gov, 1
votecitrus.gov, 1
+votegreece.gr, 0
votehamiltoncountyohio.gov, 1
votelevy.gov, 1
votemarion.gov, 1
@@ -101857,7 +102962,6 @@ vqebizconsulting.com, 1
vqeg.org, 1
vqn.se, 1
vr-tops.ir, 1
-vr3marcas.com.br, 1
vrachi.online, 1
vractive.pl, 1
vragenvanproust.nl, 1
@@ -102101,7 +103205,6 @@ w2929w.com, 1
w2design.eu, 1
w2me.ru, 1
w2n.me, 1
-w30365.com, 1
w3330.com, 1
w365.vip, 0
w36533.com, 1
@@ -102427,6 +103530,7 @@ wangbangyu.cf, 1
wangbangyu.ga, 1
wangbangyu.gq, 1
wangbangyu.ml, 1
+wangbangyu.tk, 1
wangdaijin.com, 1
wangjiatun.com.tw, 1
wangluoyunying.com, 1
@@ -102454,6 +103558,7 @@ wannaridecostarica.com, 1
wantocode.com, 1
wanybug.cf, 1
wanybug.cn, 1
+wanybug.ga, 1
wanybug.gq, 1
wanybug.tk, 1
waonui.io, 1
@@ -102490,6 +103595,7 @@ warden.navy, 1
wardogz.tk, 1
wardonat.tk, 1
wardow.com, 1
+wardpieters.eu, 1
wardpieters.nl, 1
wardslager.com, 1
warebouncycastles.co.uk, 1
@@ -102614,6 +103720,7 @@ water-filters.tk, 1
water-net.ru, 1
water-polo.tk, 1
water-valley.tk, 1
+water.com, 1
waterbrook.com.au, 1
waterdamagehouston.us, 1
waterdamageindiana.com, 1
@@ -102740,6 +103847,7 @@ wck.com, 1
wcloud.pro, 1
wcn.life, 0
wcrca.org, 1
+wcru.one, 1
wctsite.tk, 1
wcwcg.net, 1
wd-api.com, 1
@@ -102916,6 +104024,7 @@ webcontentspinning.com, 1
webcontrol.tk, 1
webconverge.nl, 1
webcookies.org, 1
+webcrazy.ga, 1
webcreativa.tk, 1
webcrm.com, 1
webcurtaincall.com, 1
@@ -102953,7 +104062,6 @@ webehurt.com, 1
webelement.sk, 0
webenglish.se, 1
webera.pro, 1
-webergrillrestaurant.com, 1
webers-webdesign.de, 1
webexample.win, 0
webexp.biz, 1
@@ -103167,6 +104275,7 @@ webstudio-n.com, 1
webstylemedia.com, 1
websubmissions.tk, 1
websuccess.co.za, 1
+websuccess.ga, 1
websupporten.no, 1
websvetaines.lt, 1
webszolgaltatas.hu, 1
@@ -103214,7 +104323,6 @@ wechatify.com, 1
weck.alsace, 1
wecleanbins.com, 1
wecobble.com, 1
-wecomm.fr, 0
wed.pw, 1
weda.cf, 1
wedding-e-dress.tk, 1
@@ -103222,6 +104330,7 @@ wedding-page.ga, 1
wedding-page.tk, 1
wedding-ua.tk, 1
weddingalbumsdesign.com, 1
+weddingcalculator.ga, 1
weddingdays.tv, 1
weddingfantasy.ru, 1
weddinghotographers.tk, 1
@@ -103396,6 +104505,7 @@ wem.hr, 1
wemajin.com, 1
wemakebookkeepingeasy.com, 1
wemakemenus.com, 0
+wemakemx.mx, 1
wemakeonlinereviews.com, 1
wemediate.info, 1
wemovemountains.co.uk, 1
@@ -103602,7 +104712,6 @@ wgsh.de, 1
wgsuyi.cf, 1
wgtrm.com, 1
wgyt.cf, 1
-wgyt.tk, 1
wh-guide.de, 1
wh1tedrvg0n.es, 1
whafs.de, 1
@@ -103721,7 +104830,6 @@ whisky.money, 1
whisky.my, 1
whiskydb.de, 1
whiskymy.com, 1
-whiskynerd.ca, 0
whiskyshop.com.my, 1
whiskyshop.my, 1
whisp.ly, 0
@@ -103763,6 +104871,7 @@ whiteknightsafelockinc.com, 1
whitelabeltickets.com, 0
whitelotuscyp.com, 1
whitelynx.co, 1
+whitemagic.ga, 1
whitemetalperu.tk, 1
whitemountainnaturalcreations.com, 1
whitepages.ml, 1
@@ -103806,7 +104915,7 @@ wholevood.com, 1
wholevood.de, 1
whoneedstobeprimaried.today, 1
whonix.org, 1
-whoopee.my, 0
+whoopee.my, 1
whoownsmyavailability.com, 1
whoreofwallstreet.tk, 1
whorepresentsme.us, 1
@@ -103846,6 +104955,7 @@ wicca-witchcraft.com, 1
wiccansupplies.ga, 1
wicharypawel.com, 1
wichitafoundationpros.com, 1
+wicitec.com, 1
wick-machinery.com, 1
wickbot.com, 1
wickedsick.tk, 1
@@ -103907,6 +105017,7 @@ wigglestudio.com, 1
wigle.net, 1
wigmore-hall.org.uk, 1
wigos.ru, 1
+wigsalon.ga, 1
wigwam.design, 1
wiiaam.com, 1
wiikipedia.com, 1
@@ -104041,6 +105152,7 @@ wikispecies.com, 1
wikispecies.net, 1
wikispecies.org, 1
wikispiel.de, 1
+wikitech.ga, 1
wikitech.tk, 1
wikitransporte.tk, 1
wikiversity.com, 1
@@ -104134,6 +105246,7 @@ willi-graf-gymnasium.de, 1
willi-graf-os.de, 1
william.gg, 1
williamarias.tk, 1
+williamblondel.fr, 1
williamboulton.co.uk, 1
williamboundsltd.com, 1
williamfeely.info, 1
@@ -104278,6 +105391,7 @@ winner.ua, 1
winners.bet, 1
winners.net, 1
winnersaffiliate.com, 1
+winnery.tk, 1
winning.gq, 1
winningattitudeawards.org, 1
winnipegcomputerguy.tk, 1
@@ -104295,6 +105409,7 @@ winter-elektro.de, 1
winter-leak.ml, 1
winterbergwebcams.com, 1
wintercam.nl, 1
+wintercorn.com, 1
winterfeldt.de, 1
winterhavenobgyn.com, 1
winterhillbank.com, 1
@@ -104684,6 +105799,7 @@ woodlandsunroomsandenclosures.com, 1
woodlandsvale.uk, 1
woodlandwindows.com, 1
woodlandwindows.net, 1
+woodminstermanagement.tk, 1
woodminsterrealty.com, 1
woodomat.com, 1
woodridgeil.gov, 1
@@ -104748,6 +105864,7 @@ wordspam.ga, 1
wordspy.com, 1
wordwidessl.net, 1
wordxtra.net, 1
+wordzite.com, 1
worf.in, 1
worg.pl, 1
worgtest.pl, 1
@@ -104784,6 +105901,7 @@ workinghardinit.work, 1
workinginsync.co.uk, 1
workingmachine.info, 1
workinnorway.no, 1
+workjustice.com.au, 1
worklinepc.com, 1
worklizard.com, 1
workmart.mx, 1
@@ -104794,6 +105912,7 @@ workraw.com, 1
workreveal.biz, 1
workreview10.com, 1
works-ginan.jp, 1
+workservicescorp.com, 1
worksheets-to-print.com, 1
workshop.men, 1
workshopengine.com.au, 1
@@ -104812,6 +105931,7 @@ world-avto.fun, 1
world-citizen-report.com, 1
world-documentary.ml, 1
world-education-association.org, 1
+world-ir.international, 1
world-lolo.com, 1
world-of-tes.tk, 1
world-politics.tk, 1
@@ -104828,6 +105948,7 @@ worldconsultingchile.tk, 1
worldcubeassociation.org, 1
worldessays.com, 1
worldeventscalendars.com, 1
+worldexpo.ga, 1
worldfinancenews.org, 1
worldfoodfestival.nl, 1
worldfootball.tk, 1
@@ -104859,6 +105980,7 @@ worldrallyforum.tk, 1
worldranking.tk, 1
worldrecipes.eu, 1
worldrism.com, 1
+worldsbest.ga, 1
worldscoop.org, 1
worldsfree4u.ga, 1
worldsgreatestazuredemo.com, 1
@@ -104932,6 +106054,7 @@ wowaffixes.info, 1
wowarcaim.ml, 1
wowbouncycastles.co.uk, 1
wowcinema.tk, 1
+wowdrive.ga, 1
wowede.com, 1
wowgraphic.in, 1
wowhelp.it, 1
@@ -104996,7 +106119,6 @@ wphlive.tv, 1
wphosting.ovh, 1
wphostingblog.nl, 1
wpinfos.de, 0
-wpinter.com, 1
wpjakarta.com, 1
wplan.io, 1
wpldn.uk, 1
@@ -105162,8 +106284,10 @@ wulel.cn, 0
wulfrun-invicta.tk, 1
wum.me, 1
wumai-p.cn, 1
+wumbo.cf, 1
wumbo.co.nz, 1
wumbo.ga, 1
+wumbo.gq, 1
wumbo.kiwi, 1
wumbo.ml, 1
wumbo.tk, 1
@@ -105349,6 +106473,7 @@ wyhuesli.ch, 1
wykop.pl, 1
wyldfiresignage.com, 1
wylog.ph, 1
+wyndhamgrandalgarve.com, 1
wyo.cam, 1
wyomingmi.gov, 1
wyomingurology.com, 1
@@ -105484,6 +106609,7 @@ xanadu-taxi.cz, 1
xanadu-trans.cz, 1
xanderbron.tech, 1
xanhdecor.com, 1
+xanny.family, 1
xants.de, 1
xanyl.de, 1
xanzhu.com, 1
@@ -105587,7 +106713,6 @@ xb980.com, 1
xb982.com, 1
xb983.com, 1
xbanner.tk, 1
-xbb.hk, 1
xbb.li, 1
xbblog.com, 1
xbc.nz, 1
@@ -105648,6 +106773,7 @@ xcorpsolutions.com, 1
xcraftsumulator.ru, 1
xcspy.org, 1
xcvb.xyz, 1
+xcxmiku.com, 1
xd.cm, 1
xd.gov, 1
xdawn.cn, 1
@@ -105680,6 +106806,7 @@ xenomorph.tk, 1
xenon.cloud, 1
xenoncloud.net, 1
xenophile.name, 1
+xenophobia.ga, 1
xenosphere.tk, 1
xenotropegames.com, 1
xenoworld.de, 1
@@ -105749,6 +106876,7 @@ xiaolan.me, 1
xiaolanglang.net, 0
xiaolong.link, 1
xiaomao.tk, 1
+xiaomi.com.ge, 1
xiaomibarato.com, 1
xiaomionline24.pl, 1
xiaoneijun.cn, 1
@@ -105991,6 +107119,7 @@ xn----dtbfemantkhdczc.tk, 1
xn----dtbfemmqjdddczc.tk, 1
xn----dtbhcpoeofgcvoic1s.xn--p1ai, 1
xn----etba6agm4a9a.xn--p1ai, 1
+xn----etbdeb7cgsj4h.xn--p1ai, 1
xn----etbqa2alia5i.tk, 1
xn----ncfb.ws, 1
xn---35-6cdk1dnenygj.xn--p1ai, 1
@@ -106068,6 +107197,7 @@ xn--80afdc7a1a8m.kyiv.ua, 1
xn--80affa6ai0a.tk, 1
xn--80ageukloel.xn--p1ai, 1
xn--80ah4f.xn--p1ai, 1
+xn--80ahccom2a2c.xn--p1ai, 1
xn--80ahclcaoccacrhfebi0dcn5c1jh.xn--p1ai, 1
xn--80ahcnlhmh.xn--p1ai, 1
xn--80ahjdhy.tk, 1
@@ -106490,6 +107620,7 @@ xtaboo3d.com, 1
xtarget.ru, 1
xtechkr.com, 1
xtensio.com, 1
+xtianhe.com, 1
xtips.us, 1
xtom.africa, 1
xtom.al, 1
@@ -106559,6 +107690,7 @@ xtremealaskainsulation.com, 1
xtremebouncepartyhire.com.au, 1
xtremecoatingtechnologies.com, 1
xtremegaming.it, 1
+xtrememidlife.nl, 1
xtremotivation.com, 1
xtremyblog.com, 1
xtronics.com, 1
@@ -106674,7 +107806,6 @@ y09j.com, 0
y0bet.com, 1
y11n.net, 1
y2bet.com, 1
-y30365.com, 1
y3451.com, 1
y3650.com, 1
y36500.com, 1
@@ -106801,6 +107932,8 @@ ya-zdorova.tk, 1
ya.mk, 1
yaay.com.br, 1
yaay.today, 1
+yabbr.com.au, 1
+yabbr.io, 1
yabuisha.jp, 1
yacca.co.uk, 1
yacca.uk, 1
@@ -106840,6 +107973,7 @@ yahzah.com, 1
yak-host.tk, 1
yak-soap.co, 1
yak.is, 1
+yakimono.ga, 1
yakitofisi.com, 1
yakkifamirie.tk, 1
yakmade.com, 1
@@ -107003,6 +108137,7 @@ yayart.club, 1
yayl888.com, 1
yayou.ag, 1
yazichestvo.tk, 1
+yazik.ga, 1
ybdh88.com, 1
ybin.me, 1
yblaccounting.com, 1
@@ -107234,6 +108369,7 @@ ym966.net, 1
ymarion.de, 1
ymashop.com, 1
ymatyt.com, 1
+ymca.ga, 1
ymeadows.com, 1
ymm18.com, 1
ymm234.com, 1
@@ -107242,6 +108378,7 @@ ymtsonline.org, 1
ymy.zone, 1
yn.org.nz, 1
ynode.com, 1
+yo-digital.ga, 1
yoa.st, 1
yoast.com, 1
yoba.co.uk, 1
@@ -107290,6 +108427,7 @@ yoitoko.city, 1
yoitsu.moe, 1
yokoda.okinawa, 1
yokohama-legaloffice.jp, 1
+yokohama.ga, 1
yokone3-kutikomi.com, 1
yolandgao.me, 1
yolo-csgo.com, 1
@@ -107322,10 +108460,12 @@ yoramvandevelde.net, 1
yorcom.nl, 0
yorcool.nl, 1
yordanisp.tk, 1
+yorganica.ga, 1
yorkieloverdiy.com, 1
yorkiepooexpert.com, 1
yorkshiredalesinflatables.co.uk, 1
yorkshiregardensheds.co.uk, 1
+yorkshiregrit.cc, 1
yorkshireinflatables.co.uk, 1
yorkshireterrier.com.br, 1
yorkshireterrier.dog, 1
@@ -107402,6 +108542,7 @@ young-celebrities.tk, 1
young-sheldon.com, 1
young-zy.com, 1
youngart.hu, 1
+youngauthentic.cf, 1
youngdevotion.net, 1
youngguns.club, 1
younglions.cf, 1
@@ -107412,6 +108553,7 @@ youngsook.com, 1
youngsook.org, 1
youngsoulstudios.com, 1
youngvoicesmatter.org, 1
+youniq.ga, 1
younl.net, 1
youpark.no, 1
youpickfarms.org, 1
@@ -107423,7 +108565,6 @@ your-greece.ga, 1
your-idc.tk, 1
your-melody.ru, 1
your-out.com, 1
-your.best, 1
your28days.com, 1
youracnepro.com, 1
youran.me, 1
@@ -107450,6 +108591,7 @@ yourconscious.life, 1
yourcopywriter.it, 1
yourcrypto.tax, 1
yourdailyalerts.net, 1
+yourdata.ga, 1
yourdemowebsite.ml, 1
yourdomain.host, 1
yourdrive.tk, 1
@@ -107500,6 +108642,7 @@ yourwatchdesign.co.uk, 1
yourworlds.cf, 1
yourznc.com, 1
yousee.cf, 1
+yousee.gq, 1
yousei.ne.jp, 1
youservice.it, 1
youshouldbealiberal.com, 1
@@ -107595,6 +108738,7 @@ yuanandyuan.me, 1
yuanben.io, 1
yuanbenlian.com, 1
yuandan.cf, 1
+yuandan.ml, 1
yuanjiazhao.com, 1
yuanjiazhao.tk, 1
yuansecard.me, 1
@@ -108039,6 +109183,7 @@ zac.cy, 1
zacarias.com.ar, 1
zacchaeus.co.uk, 1
zacco.site, 1
+zach.codes, 1
zach.vip, 0
zacharopoulos.eu, 1
zacharopoulos.me, 0
@@ -108064,6 +109209,7 @@ zaelkids.it, 1
zaem.tv, 1
zaffit.com, 0
zaffke.co, 1
+zafrani.ga, 1
zagadki-cosmosa.tk, 1
zaghyr.org, 1
zagorod.spb.ru, 1
@@ -108076,6 +109222,7 @@ zahnarzt-hofer.de, 1
zahnarzt-kramer.ch, 1
zahnarzt-kruft.de, 1
zahnarzt-seidenstuecker.de, 1
+zahnarztpraxis-simone-koch.de, 1
zahnmedizinzentrum.com, 0
zahrowski.com, 1
zaidan.de, 1
@@ -108169,7 +109316,6 @@ zander.dk, 1
zandra.cf, 1
zanellidesigns.co.uk, 1
zango.com.au, 1
-zanjirzanane-shanbeghazan.ir, 1
zanotti.io, 1
zanquan.net, 1
zanshinkankarate.com, 1
@@ -108192,6 +109338,7 @@ zaprefy.com, 1
zarabiaj.com, 1
zarabotki-v-internete.tk, 1
zarabotok-v-internete.ga, 1
+zarabotok-v-internete.gq, 1
zarabotok2017.tk, 1
zarabotoker.tk, 1
zarabotoklaif.tk, 1
@@ -108338,7 +109485,6 @@ zdravekonzultace.cz, 1
zdravesteny.cz, 1
zdravotnikurzy.cz, 1
zdravystul.cz, 1
-zdrojak.cz, 1
zdrowezywienie.edu.pl, 1
zdymak.by, 1
ze3kr.com, 1
@@ -108382,6 +109528,7 @@ zeilenwind.com, 1
zeilles.nu, 1
zeit.co, 1
zeit.sh, 1
+zeitgitter.net, 1
zeitgitter.org, 1
zeitoununiversity.org, 1
zeitpunkt-kulturmagazin.de, 1
@@ -108410,7 +109557,9 @@ zen3tech.com, 1
zenassociates.com, 1
zenavita.com, 1
zenchain.com, 1
+zencube.ga, 1
zendarhunters.tk, 1
+zendev.ga, 1
zenfusion.fr, 1
zengdong.ren, 1
zenghuanmin.cn, 1
@@ -108435,6 +109584,7 @@ zenspace.us, 1
zenstore.it, 1
zenti-im-zug.de, 1
zenti.cloud, 1
+zentouch.gq, 1
zentoy.club, 1
zentrumfuerchemie.de, 1
zenvideocloud.com, 1
@@ -108469,6 +109619,7 @@ zerodeathsmd.gov, 1
zerodhareview.co, 1
zeroerrordev.com, 1
zerofogmask.com, 1
+zerofox.gq, 1
zerofy.de, 1
zeroknowledge.me, 1
zerolab.org, 1
@@ -108679,9 +109830,10 @@ ziondrive.com.br, 1
zionnationalpark.net, 1
zionsvillelocksmiths.com, 1
zionvps.com, 0
+zipalerts.com, 1
zipfworks.com, 1
zipkey.de, 1
-zippo-days.me, 1
+zippo-days.me, 0
zippyshare.com, 1
ziprecruiter.com, 1
ziqijiang.com, 0
@@ -108716,7 +109868,6 @@ ziz.exchange, 0
zizcollections.com, 1
zizibook.ml, 1
zjateaucafe.be, 1
-zjawa.pro, 1
zjc3.com, 1
zju.tv, 1
zjuqsc.com, 1
@@ -108724,10 +109875,10 @@ zjy7722.ml, 1
zjyifa.cn, 1
zk.gd, 1
zk9.nl, 1
+zking.ga, 1
zklcdc.top, 1
zklokotskehory.cz, 1
zkontrolujsiauto.cz, 1
-zkwolf.top, 1
zkzone.net, 1
zl-19.com, 1
zl-29.com, 1
@@ -108857,6 +110008,7 @@ zof.kh.ua, 1
zoflora.co.uk, 1
zofran-medication.cf, 1
zofran.ga, 1
+zofran.gq, 1
zofrancost.ga, 1
zofrangeneric.ga, 1
zofranprice.ga, 1
@@ -108902,6 +110054,7 @@ zonatelevision.tk, 1
zondervanacademic.com, 1
zone-5.de, 1
zone-de-confiance.fr, 1
+zone-hack.tk, 1
zone39.com, 1
zonecb.com, 1
zoneface.com, 1
@@ -108968,6 +110121,7 @@ zotan.pictures, 1
zotan.pw, 1
zotan.services, 1
zotero.org, 1
+zoto.ga, 1
zottika.com, 1
zouaouitransport.fr, 1
zouk.info, 1
@@ -109006,7 +110160,6 @@ zselicivt.hu, 1
zserver.fr, 1
zsien.cn, 1
zskomenskeho.cz, 1
-zskomenskeho.eu, 1
zsoltbereczki.tk, 1
zsoltsandor.me, 1
zsq.im, 1
@@ -109051,6 +110204,7 @@ zumba-oostende.be, 1
zumba.com, 1
zumberak.tk, 1
zumtaedanceschool.co.za, 1
+zumub.com, 1
zund-app.com, 1
zundapp.one, 1
zundapp529.nl, 1
@@ -109136,7 +110290,6 @@ zz606.com, 1
zz6729.co, 1
zz6729.com, 1
zz6957.co, 1
-zz772.com, 1
zz9297.co, 1
zz9397.com, 1
zz9721.com, 1
diff --git a/services/settings/dumps/blocklists/addons-bloomfilters.json b/services/settings/dumps/blocklists/addons-bloomfilters.json
index e02fdad82e84..b41307eea1c2 100644
--- a/services/settings/dumps/blocklists/addons-bloomfilters.json
+++ b/services/settings/dumps/blocklists/addons-bloomfilters.json
@@ -1 +1 @@
-{"data":[{"stash":{"blocked":["k7srff_enUS@k7computing.com:4.5","{d9f69507-a333-4749-b13c-d6e3d23f86a9}:1.0.8","{d9f69507-a333-4749-b13c-d6e3d23f86a9}:1.0.5","{d9f69507-a333-4749-b13c-d6e3d23f86a9}:1.0.3","k7srff_enUS@k7computing.com:3.94","k7srff_enUS@k7computing.com:4.0","{d9f69507-a333-4749-b13c-d6e3d23f86a9}:1.0.7","k7srff_enUS@k7computing.com:3.97","k7srff_enUS@k7computing.com:3.6","k7srff_enUS@k7computing.com:4.2","{d9f69507-a333-4749-b13c-d6e3d23f86a8}:1.0.1","k7srff_enUS@k7computing.com:3.96","k7srff_enUS@k7computing.com:4.4","{d9f69507-a333-4749-b13c-d6e3d23f86a9}:1.0.9","{d4256e4e-1c2f-441d-af5e-0b41f31a9797}:1.0.0.1","k7srff_enUS@k7computing.com:3.99","k7srff_enUS@k7computing.com:3.98","k7srff_enUS@k7computing.com:3.95","{d9f69507-a333-4749-b13c-d6e3d23f86a9}:1.0.4","{d9f69507-a333-4749-b13c-d6e3d23f86a9}:1.1.0","{d9f69507-a333-4749-b13c-d6e3d23f86a9}:1.0.6","{d4256e4e-1c2f-441d-af5e-0b41f31a9797}:1.0.0.3","{d4256e4e-1c2f-441d-af5e-0b41f31a9797}:1.0.0.0","k7srff_enUS@k7co
mputing.com:4.1","k7srff_enUS@k7computing.com:4.3","{d4256e4e-1c2f-441d-af5e-0b41f31a9797}:1.0.0.2"],"unblocked":[]},"schema":1612991426951,"key_format":"{guid}:{version}","stash_time":1613003709311,"id":"f868c324-a5f0-4543-9d7a-d2f5850cb650","last_modified":1613003872696},{"stash":{"blocked":["{af35d932-8f18-4184-a34d-ebcdde0d9b58}:1.3.2","{93beb8b6-f0e7-4abf-ae66-ae690c3a5435}:2.1.5","{f0bf9ba3-3979-4d00-bfdf-f666795fc05c}:1.5","{93beb8b6-f0e7-4abf-ae66-ae690c3a5435}:2.1.4","{af35d932-8f18-4184-a34d-ebcdde0d9b58}:1.3.1","web@safe:1","web@safe:3.1","{93beb8b6-f0e7-4abf-ae66-ae690c3a5435}:0.1.3","{93beb8b6-f0e7-4abf-ae66-ae690c3a5435}:2.1.3","web@safe:3","{93beb8b6-f0e7-4abf-ae66-ae690c3a5435}:0.1.0","{bfe294fc-8fb2-44a8-9d9c-c07789f6b79b}:3.1.3","{93beb8b6-f0e7-4abf-ae66-ae690c3a5435}:0.1.2","{a82ccb5c-3343-46a3-87de-4a0612bc677e}:1.2","web@safe:2","{f0bf9ba3-3979-4d00-bfdf-f666795fc05c}:1.6","{93beb8b6-f0e7-4abf-ae66-ae690c3a5435}:2.1.6","{a82ccb5c-3343-46a3-87de-4a0612bc677e}:1.1
","{93beb8b6-f0e7-4abf-ae66-ae690c3a5435}:0.1.1"],"unblocked":[]},"schema":1612899698936,"key_format":"{guid}:{version}","stash_time":1612982110078,"id":"32d1ad6f-721f-4134-80eb-b3a4c032fc22","last_modified":1612982276600},{"stash":{"blocked":["{f0a1fd5d-0003-4901-8230-8fad6d5fd6bb}:7","{f0a1fd5d-0004-4901-8230-8fad6d5fd6bb}:7","{f0a1fd5d-0122-4901-8230-8fad6d5fd6bb}:7","{f0a1fd5d-b0e3-4901-8230-8fad6d5fd6bb}:7","{f0a1fd5d-b0e3-4901-8230-8fad6d5fd6b5}:7","{f0a1fd5d-0012-4901-8230-8fad6d5fd6bb}:7"],"unblocked":[]},"schema":1612554090277,"key_format":"{guid}:{version}","stash_time":1612658110552,"id":"507ed45b-c9fc-42d3-ae40-ca2bc9daa5ce","last_modified":1612658267016},{"stash":{"blocked":["mclbjdibcpiohnhgkjkbfbnjcafkhani@chrome-store-foxified-134472114:1.1.0.24","{30871474-c824-11ea-baa9-8765c22fa005}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa012}:1.0.0","eefcdkgmjbmicmdhbklmanlopaldndoa@chrome-store-foxified-1319958250:1.8.7.154","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxif
ied-3895077580:2.11.36","{30871474-c824-11ea-baa9-8765c22fa019}:1.0.0","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-2073373592:2.15.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-3877447459:2.15.36","{30871474-c824-11ea-baa9-8765c22fa001}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa017}:1.0.0","{15e72cdb-45b9-49e3-be01-46ef689470e2}:2.0.1","opndlmolnpfipngojifolifojjnjeodc@chrome-store-foxified-2813192993:1.1.2","kkefmpciiofppglhmbfcpkhaighmiokb@chrome-store-foxified-1718221658:1.1.0.17","eefcdkgmjbmicmdhbklmanlopaldndoa@chrome-store-foxified-1005108540:1.8.7.153","{277f83be-4a2a-4402-9045-7638b0755ed3}:7","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-2563213750:2.11.36","lolbkkchdljdbmhopcpgkljjkccmimfn@chrome-store-foxified-410661158:1.1.0.18","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified--1657531736:2.15.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-1087572539:2.15.36","agencljbacpfnclcbanachomfbeoilaa@chrome-store-foxified-
1174064911:1.1.0.18","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-2898403266:2.15.36","{34386784-88ea-475b-9d69-ff4589bbb7e1}:2.0.1","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified--1401357359:2.15.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-3434336004:2.15.36","eefcdkgmjbmicmdhbklmanlopaldndoa@chrome-store-foxified-3434336004:1.8.7.154","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-2077545546:2.15.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-30164257:2.11.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-423616060:2.15.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified--228273241:2.15.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-1718221658:2.11.36","opndlmolnpfipngojifolifojjnjeodc@chrome-store-foxified--1977195359:1.1.8","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-619514512:2.15.36","lolbkkchdljdbmhopcpgkljjkccmimfn@chrome-store-foxified--1899122326:1.1.0.29","djhgiahomjkabjdo
dlemhnhbnbfcomam@chrome-store-foxified-258276974:2.15.36","{30871474-c824-11ea-baa9-8765c22fa018}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa013}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa014}:1.0.0","opndlmolnpfipngojifolifojjnjeodc@chrome-store-foxified-2043184769:1.2.2","{30871474-c824-11ea-baa9-8765c22fa016}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa021}:1.0.0","agencljbacpfnclcbanachomfbeoilaa@chrome-store-foxified-2258738920:1.1.0.26","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-1357476909:2.15.36","agencljbacpfnclcbanachomfbeoilaa@chrome-store-foxified--1465243097:1.1.0.30","{30871474-c824-11ea-baa9-8765c22fa020}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa003}:1.0.0","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-189944489:2.11.36","opndlmolnpfipngojifolifojjnjeodc@chrome-store-foxified--1615987039:1.1.8","{30871474-c824-11ea-baa9-8765c22fa007}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa008}:1.0.0","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-26782
34944:2.15.36","{30871474-c824-11ea-baa9-8765c22fa006}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa010}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa009}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa015}:1.0.0","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified--1064002838:2.15.36","{30871474-c824-11ea-baa9-8765c22fa004}:1.0.0","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified--2067351990:2.15.36","mclbjdibcpiohnhgkjkbfbnjcafkhani@chrome-store-foxified-4106468753:1.1.0.19","eefcdkgmjbmicmdhbklmanlopaldndoa@chrome-store-foxified-2117055892:1.8.7.158","{30871474-c824-11ea-baa9-8765c22fa011}:1.0.0","eefcdkgmjbmicmdhbklmanlopaldndoa@chrome-store-foxified-2117055892:1.8.7.156","lolbkkchdljdbmhopcpgkljjkccmimfn@chrome-store-foxified-233164420:1.1.0.21","djhgiahomjkabjdodlemhnhbnbfcomam@chromeStoreFoxified:2.11.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-2048638566:2.15.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-3503911750:2.11.36","{30871474-c824-11ea-b
aa9-8765c22fa000}:1.0.0"],"unblocked":[]},"schema":1612528679480,"key_format":"{guid}:{version}","stash_time":1612550110481,"id":"974c8240-2d06-410c-ad60-4397f0af6065","last_modified":1612550275201},{"stash":{"blocked":["klbibkeccnjlkjkiokjodocebajanakg@chrome-store-foxified-1383279367:7.1.1","{8671d617-e162-4bcd-911d-f8294730fee6}:1.15.0","jid0-j253QhG0S1FBMdVUnCkPZnGZODY@jetpack:3.0.4","{8671d617-e162-4bcd-911d-f8294730fee6}:1.14.0","jid0-j253QhG0S1FBMdVUnCkPZnGZODY@jetpack:3.1.3","klbibkeccnjlkjkiokjodocebajanakg@chrome-store-foxified-226473039:6.21","protbrowsing@live:1.0","jid0-j253QhG0S1FBMdVUnCkPZnGZODY@jetpack:3.0.6","jid0-j253QhG0S1FBMdVUnCkPZnGZODY@jetpack:3.0.7","klbibkeccnjlkjkiokjodocebajanakg@chrome-store-foxified-1900218202:6.21","klbibkeccnjlkjkiokjodocebajanakg@chromeStoreFoxified-3770228565:6.21","jid0-j253QhG0S1FBMdVUnCkPZnGZODY@jetpack:3.1.1","klbibkeccnjlkjkiokjodocebajanakg@chrome-store-foxified-1383279367:7.1.0","klbibkeccnjlkjkiokjodocebajanakg@chromeStoreFox
ified:6.21","jid0-j253QhG0S1FBMdVUnCkPZnGZODY@jetpack:3.0.5","klbibkeccnjlkjkiokjodocebajanakg@chromeStoreFoxified-2646436426:6.21","klbibkeccnjlkjkiokjodocebajanakg@chrome-store-foxified-unsigned:6.21","klbibkeccnjlkjkiokjodocebajanakg@chromeStoreFoxified-1413128184:6.21","klbibkeccnjlkjkiokjodocebajanakg@chromeStoreFoxified-3102274079:6.21","jid0-j253QhG0S1FBMdVUnCkPZnGZODY@jetpack:3.1.2","klbibkeccnjlkjkiokjodocebajanakg@chrome-store-foxified-1383279367:7.0.180","{1deb4c5e-d829-4785-8502-73ea7c09ef91}:1.0","{70e8f55d-6614-4089-a449-4c045d877091}:1.0","klbibkeccnjlkjkiokjodocebajanakg@chrome-store-foxified-signed-noit:6.21"],"unblocked":[]},"schema":1612463880709,"key_format":"{guid}:{version}","stash_time":1612528510590,"id":"3e41be89-859c-461a-aa9d-52d39d05e3ad","last_modified":1612528679397},{"stash":{"blocked":["{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.93","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.20","{00F0643E-B367-4779-B45D-7046EBA37A88}:19.0.0.0","{96725a7d-0fca-4221-b
fb6-02f348911dd2}:3.0.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.47","{00F0643E-B367-4779-B45D-7046EBA37A88}:18.0.0.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.20","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.1.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.13","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.2.0","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.5.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-486053076:4.2.4","ibilnhaaodhkplcmaoemmbdncfijfmgb@chrome-store-foxified--345188950:0.2.1","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-916842729:5.4.0","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified-3342474:2.2","{86b3ae1b-d1b3-418d-98bd-f8049dc20ceb}:4.6.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1933282719:4.2.4","{a183dedb-aded-499b-8be9-62998a60f997}:5.6.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.37","{DB981CCA-088E-4731-A4A2-2FE218703C0E}:1.6.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.34","olkpikmlhoaojbbmmpejnimiglejmboe@ch
rome-store-foxified-unsigned:5.0.73","{66469e4d-1839-4e31-8f84-ada4aa2477b3}:1.0.1","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.8","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.14","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.82","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.7","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.68","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.13","{eeb79cd1-1caf-47ec-a6ae-d6560c3da5e4}:1.8","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1680958990:4.2.3","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.7","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1120272252:3.7.6","{35a9e404-2edc-482c-9b9a-fe4d44b9610a}:2.6","{DB981CCA-088E-4731-A4A2-2FE218703C0E}:1.6.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.59","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.34","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--494468537:4.2.4","{a8e06133-7950-4b14-9441-a14d7129fb90}:0.0.16","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-312661624:3.8.5","{5
41ff8b8-5b47-465d-a93d-35efc612b773}:0.0.4","aphhbehfagnghplpbpbgocknekagmblh@chrome-store-foxified--911736141:1.0.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.68","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1618853106:5.0.70","oknpgmaeedlbdichgaghebhiknmghffa@chrome-store-foxified--1785521069:1.3.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-358423849:3.7.6","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.4","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.0.1","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-unsigned:4.6.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.85","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.4","nilbfjdbacfdodpbdondbbkmoigehodg@chrome-store-foxified-unsigned:1.4.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.10","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified-2071809672:1.5.85","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.31","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.75","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.8.0","{541ff8
b8-5b47-465d-a93d-35efc612b773}:0.0.33","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.51","{00D0643E-B367-4779-B45D-7046EBA37A89}:18.0.0.1","{0ffe0503-fbd3-43f4-9f4a-924c57d1751e}:3.0.21","{96725a7d-0fca-4221-bfb6-02f348911dd2}:4.0.1","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.1.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.92","gemnddmfpabjgeampfeenjpjmnlpehce@chrome-store-foxified-845894403:1.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.16","@best_video_downloader_pro:1.31.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--734840799:3.7.3","generated-dtdati16k7b0n6v9e3rwdp@chrome-store-foxified-887013873:3.0.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.67","@best_video_downloader_pro:1.40.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.81","generated-489jjyrbfp9lcl7488w911@chrome-store-foxified-unsigned:4.5.1","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-3086233117:1.0.7","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--889141007:2.4","{ae9a96e8-18c5-4
d48-97ad-5cab6242fd6d}:0.0.19","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1414967685:4.2.4","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.8.1","{f020060b-24a9-4842-9b4c-53cc0a882b86}:4.6.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.28","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-493975347:3.5.2","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.15","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.53","downloadforinstagramforfirefox@atv.ac:4.6.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.21","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.25","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1908193202:2.1.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.12","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.57","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.78","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1851135401:4.6.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.66","ibjhnkphabemhpdmanbhdhkcongbhika@chrome-store-foxi
fied--458021398:1.0.1","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.3.0","{d1f5ee18-bbca-41a6-b165-6981a80887a3}:4.6.0","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified-2041501751:2.4","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--200350945:3.8.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1842503193:3.8.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.61","{7dd357ba-8e94-47ce-9a48-33b03f4bfade}:5.0.73","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.80","lkoinhhnhdfifceljcladpjjkpbcfdhe@chrome-store-foxified--1644315676:2.93","{a5536104-bbca-40d8-97eb-e07e103663e3}:5.6.3","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--2019953811:2.4","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-2729266922:3.1.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.60","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.99","pfnmibjifkhhblmdmaocfohebdpfppkf@chrome-store-foxified--911736141:2.2.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.65","{96725a7d-0fca-4221-bfb6-02f
348911dd2}:2.1.0","@best_video_downloader_pro:1.5.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.35","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.39","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1163526355:5.0.1","{00F0643E-B367-4779-B45D-7046EBA37A88}:18.0.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.34","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.0","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.35","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--940653973:3.7.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.33","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.78","{00D0643E-B367-4779-B45D-7046EBA37A89}:20.0.2.3073","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.5","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.37","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.25","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.65","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.98","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.10","{541ff8b8-5b47-465d-a93d-
35efc612b773}:0.0.46","{78788f05-2328-4c0b-8977-0efd9e3e23d5}:5.0.5","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--1367065207:1.7","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.23","{a8e06133-7950-4b14-9441-a14d7129fb90}:0.0.21","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.75","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-894791182:3.8.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1444642700:3.8.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-unsigned:4.6.2","{00F0643E-B367-4779-B45D-7046EBA37A88}:22.1.0.3089","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified--929033716:1.6.3","{96725a7d-0fca-4221-bfb6-02f348911dd2}:4.0.0","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.7.1","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.21","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified-136894983:1.6.3","generated-h2tsklnkdodui4vvrqoc1k@chrome-store-foxified-887013873:3.0.5","@best_video_downloader_pro:1.21.3","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0
.0.21","{db0d1586-8226-466a-a931-92623aa5f4f7}:4.1.0","@best_video_downloader_pro:1.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.52","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-282623196:3.5.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.64","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.0","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.0.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.74","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--2072142841:3.8.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.20","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.79","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.97","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified--1598706624:2.0.2","RostamifarARF@VK.UnBlock.4:1.0.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.14","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.0.0","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.11","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.4","generated-3zssyfzqb1ma43lsvitqe2
@chrome-store-foxified-unsigned:5.0.1","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified-1010076374:1.5.77","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--248178947:3.9.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1428994163:3.8.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.54","hccjagmehekcjjmihomeldfnjbpoeheo@chrome-store-foxified--1213574974:0.0.4","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--89287237:3.7.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--729557851:3.8.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-652520687:4.2.4","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified-1755024939:1.5.85","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.50","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--1952360768:2.4","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--2133018057:4.0.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1881033995:3.9.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.33
","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1012580998:3.5.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-unsigned:4.5.1","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--1426280998:2.8","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.19","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--2133018057:4.1.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.37","{00F0643E-B367-4779-B45D-7046EBA37A88}:20.0.0.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.77","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified--2133018057:2.0.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--656425972:3.8.1","{00F0643E-B367-4779-B45D-7046EBA37A88}:19.0.0.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.22","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.36","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-609247380:3.5.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1928884911:3.5.2","{80bfe6d3-de15-4f
09-b96e-0211f0f9eaa6}:2.2.53","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.47","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.26","nbehdglehhfjbpoadmkccohkjnlmabie@chrome-store-foxified--164190015:1.8.29","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.6","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.74","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.54","@best_video_downloader_pro:1.20.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.1","{4e8a1f3d-603f-4bf5-9ad2-8095c02df724}:20","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified--1571243437:2.0.4","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.8","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--763369360:4.2.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.73","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.73","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1881033995:3.7.6","{58130a3b-aa92-4f2e-94ae-7b9c74d88bc7}:4.1.0","eikbfklcjampfnmclhjeifbmfkpkfpbn@chrome-store-foxified-185533443
7:1.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.15","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.1.4","nilbfjdbacfdodpbdondbbkmoigehodg@chrome-store-foxified-144461997:1.5.2","{96725a7d-0fca-4221-bfb6-02f348911dd2}:3.0.1","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.9","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1465243101:5.0.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1089415019:4.2.93","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.11","{00D0643E-B367-4779-B45D-7046EBA37A89}:19.0.0.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.4","pcaaejaejpolbbchlmbdjfiggojefllp@chrome-store-foxified-unsigned:1.2","{00D0643E-B367-4779-B45D-7046EBA37A89}:18.0.0.8","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.48","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.1.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--656425972:4.0.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.69","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.18","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-f
oxified-335603599:3.7.6","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.32","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-780520436:4.2.7","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.8","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.95","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-3086233117:1.1.0","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified--2133023695:2.0.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1548211297:4.2.7","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified--214885702:0.1.1","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.7","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.6","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1490478835:3.7.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--2133018057:4.2.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.16","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.8","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.62","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--81532866:3.7.3"
,"{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.56","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-473233701:3.7.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.60","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--999356935:3.8.1","{56121097-648e-4b61-ba6f-d0c78f7e19f8}:0.0.1","{740168ef-fa61-4372-b91c-1960db0b642c}:1.0.2","hdnkilghapblggedopbjhnoclfaeoepl@chrome-store-foxified-459936354:1.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.29","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1413299438:3.7.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.8","lmcajpniijhhhpcnhleibgiehhicjlnk@chrome-store-foxified-1965445564:1.8.38","{ebbc5fcd-ee7c-4933-8c7d-e8f528f6718c}:4.6.52","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.6.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.19","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.37","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.31","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-35
9202768:4.2.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.30","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-720279680:3.8.1","{422966d9-4efc-43bf-824c-9b4f6862014a}:2.1.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--220142198:3.9.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.39","{DB981CCA-088E-4731-A4A2-2FE218703C0E}:1.6.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--2133018057:4.2.1","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.6.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--2133018057:4.2.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.6","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified-152842987:2.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-4139248675:3.4.8","{b9d0f433-7a44-4498-9ef7-b610a2d22fe2}:5.4.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.97","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1023805761:3.9.0","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.4.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome
-store-foxified-unsigned:4.2.92","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--709733140:4.1.9","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.76","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.10","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--328630297:3.8.3","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.42","{00F0643E-B367-4779-B45D-7046EBA37A88}:18.0.0.8","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.7","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.7.2","{00D0643E-B367-4779-B45D-7046EBA37A89}:19.0.0.0","{5b12a5a7-9b9f-42c5-b0ee-b4d6cdb2071f}:1.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.61","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1786304073:4.2.7","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.77","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.12","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.66","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.20","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.59","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.40","ceoldlgkhdbnnmojajjgfa
pagjccblib@chrome-store-foxified--218368933:2.4","{8351af40-70aa-4a30-b990-60c8ad884ee9}:3.0.7","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.41","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1785521069:5.2.2","{5b12a5a7-9b9f-42c5-b0ee-b4d6cdb2071f}:1.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.43","opmifgdgmgcgnbfkjcjohedicldjilbg@chrome-store-foxified-2051411722:2017.10.5","omkoccdnelofncmfglaojiamckipjblb@chrome-store-foxified-343500981:6.85","{DB981CCA-088E-4731-A4A2-2FE218703C0E}:1.6.1","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1048482832:4.2.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.46","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.38","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified--1707443515:1.5.44","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.72","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.34","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--1151110169:1.7","hlkfcophdbgapjbmgpdcjoabp
ldffgeb@chrome-store-foxified--999356935:1.3.0","{00D0643E-B367-4779-B45D-7046EBA37A89}:22.1.0.3089","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.38","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--1966905954:2.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.40","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.63","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.17","{9987fda4-9fc6-47d2-9742-420e13ee384f}:5.0.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.55","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.70","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified--1169155740:1.6.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-720279680:3.8.5","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.1.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1853359245:4.2.92","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.90","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.51","{96725a7d-0fca-4221-bfb6-0
2f348911dd2}:1.1.0","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified--1365659584:1.6.3","hdnkilghapblggedopbjhnoclfaeoepl@chrome-store-foxified-1561320299:1.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.67","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.4.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-503320555:3.8.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.30","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified--1010977698:1.6.3","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.5.0","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.22","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.18","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified--1120841623:2.0.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.63","universalsearch@adgoal.de:1.0","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.23","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-unsigned:4.3.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.17","{1e4cdba9-6293-427c-9b00-e4667fb6ab03}:5.2.2","ceoldlgkhdbnnmojajjgfapag
jccblib@chrome-store-foxified--1804787354:2.2","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.33","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.43","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-937916693:3.7.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.63","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.65","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.41","{00F0643E-B367-4779-B45D-7046EBA37A88}:18.0.1","extension@airtango.de:1.0","{56121097-648e-4b61-ba6f-d0c78f7e19f8}:1.0.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1068683358:3.8.1","opmifgdgmgcgnbfkjcjohedicldjilbg@chrome-store-foxified-138139831:2018.11.27","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-256379326:3.4.8","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.80","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.72","{d72b2fe0-78f1-4b49-923b-e0fb54222062}:5.6.0","{4494d202-edff-42d9-bc0e-f599813a6669}:4.5.4","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.30","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxi
fied--1171953868:2.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.49","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.76","{00D0643E-B367-4779-B45D-7046EBA37A89}:20.0.0.0","mnafnfdagggclnaggnjajohakfbppaih@chrome-store-foxified-2041501751:2.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.51","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1804412620:5.0.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.82","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.84","@best_video_downloader_pro:1.21.1","{8565f637-f83e-40b6-bbf4-040856597656}:1.0","ibilnhaaodhkplcmaoemmbdncfijfmgb@chrome-store-foxified-90020428:0.2.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.29","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--954698634:3.9.0","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.1.2","{b5494250-1e28-4817-9c2e-266b3d4009ec}:4.6.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--709733140:3.9.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-2002577018:3.8.5","olkpikmlhoaojbbmmpejn
imiglejmboe@chrome-store-foxified--2133023695:3.8.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1142297270:4.1.4","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified--970176466:2.0.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--665314670:3.5.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.7","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-937815433:5.0.1","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--611981166:3.8.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-846845327:3.5.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.79","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.68","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified-1897695877:1.5.71","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.6","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--723247456:2.2","{00F0643E-B367-4779-B45D-7046EBA37A88}:20.0.2.3073","{313390ca-5e68-490e-b719-7626266ea067}:2.2","ceoldlgkhdbnnmojaj
jgfapagjccblib@chrome-store-foxified-726742855:2.2","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.89","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--773776652:4.2.93","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.27","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.31","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.4.1","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.5.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.13","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.42","{422966d9-4efc-43bf-824c-9b4f6862014a}:2.1.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.13","{16d2e560-63ae-480c-96fd-dc6191cb6f4a}:5.0.1","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified-732511018:1.6.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-unsigned:5.0.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-542128229:3.5.2","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.10","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--877523897:3.5.0","{80bfe
6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.61","pcaaejaejpolbbchlmbdjfiggojefllp@chrome-store-foxified--1613306230:1.0","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--70196972:2.4","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.36","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.44","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--781637290:3.9.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.27","{00D0643E-B367-4779-B45D-7046EBA37A89}:18.0.0.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.9","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1380815919:3.7.1","omkoccdnelofncmfglaojiamckipjblb@chrome-store-foxified-228715104:7.3.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.17","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.32","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1906908547:5.4.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.3","nilbfjdbacfdodpbdondbbkmoigehodg@chrome-store-foxified-3194137369:1.5.0","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified--14
43775567:1.6.3","mnfchpadaikneonajggpooeppnmdolhc@chrome-store-foxified--154615471:1.3.4","@best_video_downloader_pro:1.13.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.52","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.33","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-759849205:3.5.0","{0d1f0b81-b611-4236-b9ac-319d55bcda52}:5.0.58","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--959554297:3.7.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.9","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.24","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.6","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.41","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.9","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-unsigned:4.5.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.60","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.16","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.34","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.18","{8dd4a706-f571-499a-906e-05ec8a
260f7d}:0.0.25","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.26","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.11","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.83","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.55","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified-883162798:2.8","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--191425184:3.7.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.81","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.19","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.30","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.71","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.71","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.58","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.17","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.31","generated-r5p7e1zhkyzx2jskdtdxko@chrome-store-foxified-887013873:3.0.5","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.23","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1056300199:3.7.5","olkpikmlhoaojbbm
mpejnimiglejmboe@chrome-store-foxified--2072142841:3.7.6","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.57","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--683738962:3.7.4","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.6.1","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-929076650:3.9.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.88","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1111187486:3.8.5","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified-276123303:2.0.2","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified-323680213:2.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.45","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.7.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--551553838:3.8.3","{00F0643E-B367-4779-B45D-7046EBA37A88}:18.0.0.5","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1264995651:3.5.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.46","{36aacf25-4196-445d-becf-86fc16f84420}:4.
1.0","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified-942375619:2.0.6","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified--346569277:1.6.3","{a8e06133-7950-4b14-9441-a14d7129fb90}:0.0.18","{7b7ae187-9c29-4597-97cd-ad873a03936d}:4.2.93","ahbkhnpmoamidjgbneafjipbmdfpefad@chromeStoreFoxified:3.1.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.9","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.69","{491b9e3a-c15d-44ab-a47e-f69318771241}:4.5.4","ahbkhnpmoamidjgbneafjipbmdfpefad@chromeStoreFoxified-1417436187:3.2.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1758284494:3.5.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--328630297:3.7.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.24","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.52","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified-1173161039:3.0.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.10","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-203671537:3.5.0","{f63d4a54-f60d-42b8-b4fc-0d1223ece
74a}:4.1.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.12","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.15","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1548211297:3.8.3","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--586789565:2.4","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--1367065207:2.4","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.24","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.27","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1177496359:3.8.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-942375619:4.2.92","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.7","{96725a7d-0fca-4221-bfb6-02f348911dd2}:5.0.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1526583169:4.2.7","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified-1401321297:2.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-stor
e-foxified-1078485420:4.2.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-21434013:3.7.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.8","{a8e06133-7950-4b14-9441-a14d7129fb90}:0.0.14","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.49"],"unblocked":[]},"schema":1612454726597,"key_format":"{guid}:{version}","stash_time":1612463711454,"id":"fdf6db83-992a-4f7d-a7e2-0bfcd711975c","last_modified":1612463880592},{"stash":{"blocked":["{da6bd0bf-a339-4637-b3dd-64ffd39133c7}:1.3","{da6bd0bf-a339-4637-b3dd-64ffd39133c7}:1.1","{da6bd0bf-a339-4637-b3dd-64ffd39133c7}:1.2","{da6bd0bf-a339-4637-b3dd-64ffd39133c7}:1.0"],"unblocked":[]},"schema":1612391845247,"key_format":"{guid}:{version}","stash_time":1612398910298,"id":"71d5f424-080d-4690-96bc-7dbf1216649e","last_modified":1612399082220},{"stash":{"blocked":["{722a60c7-5dc1-43b2-829e-dfd3706128db}:7.2.1","{f02ae7a2-3b84-4a36-a726-b99f4c76296b}:6.23.70","{f0d969c6-5acf-484f-94ea-8e85de0f6797}:2.25.94","{f0db6dab-beea-499f-ba46-83589b5ec03c
}:7.22.69","{f043ff8a-4e40-4074-86e1-ae079517d39d}:6.23.1","{8f5996d6-d68b-4ab1-9e8b-111999000111}:0.1.5","{62e8f3da-da36-4ac5-ab2f-4ebf21acced2}:0.0.11","{f0c00e9b-d81e-4f87-cf14-7764b725776d}:11.26.23","{f0b36786-0c0e-4fc5-d82d-05f86a5f6a4e}:12.5.70","{3a6b14b5-4f47-42f3-92a7-e9c6a676557d}:7.8.2","{f0ba39e4-c586-4574-f545-8d9649d93e01}:4.21.2","{32938223-f62d-4757-9c29-b67e351d8d41}:2.2.1","{4fcc317a-d0ed-4ab3-b575-c5afa345c78a}:4.1.1","{f0c10505-3562-4a0d-e30c-eb4cbb94fec2}:9.15.81","{aeaff4b6-665a-4b8c-90f6-343636943345}:5.4.1","{140cb73e-19c0-11eb-adc1-0242ac120002}:7.8.3","{f09ce502-2c0b-4fb7-abf2-fb85304091e6}:7.30.18","{f08c43a0-b8b8-4edc-a2ff-4bf0e1a4bd7a}:5.27.79","adblock-by-adblocking@adblock:7.2","adblock-by-adbkg@adblock:7.0","{56f3710d-338c-4e5c-ae1e-79c1124a93bb}:1.11","{45d9e056-a52a-47e0-a6a5-af40bc30cdff}:7.8.2","{f031aad1-9e27-4343-a6c1-d0a48f16d8cc}:7.15.3","{b4012389-8047-46e4-b0a6-0aaff98822c2}:4.1.4","{f07ef55a-fc98-483d-90b9-5f37726e1aff}:7.1.83","{20ac5255-
b86e-4a7a-9d2f-a63e3f7f57fa}:5.2","{f0e08d3e-9563-4ba3-c941-1df43a673d69}:9.6.43","{5d2dbf71-a937-4cbc-840a-8c0e5d480086}:2.2.1","{45294c23-89c3-4acd-866a-535273a57ff3}:10.2","{62e8f3da-da36-4ac5-ab2f-4ebf21acced2}:0.0.10","{140cb73e-19c0-11eb-adc1-0242ac120002}:7.8.2","{f04522af-3e36-4efc-9fae-72d616cdd258}:1.28.87"],"unblocked":[]},"schema":1612355883722,"key_format":"{guid}:{version}","stash_time":1612377310584,"id":"eccb16d8-2097-44da-b4d5-12dd20ce69d3","last_modified":1612377483341},{"stash":{"blocked":["Search_Secure_clone_rDarjPyrbj@www.searchsecurepro.co:2.8.1.14","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.8.0.25","Search_Secure_jinGOnIoXh@www.searchsecurepro.co:2.7.6.3","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.5.4.2","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.7.0.9","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.6.11","Search_Secure_FnHRWGqeOa@www.searchsecure.co:2.8.1.14","Search_Secure_ByKsqSMauF@www.searchsecurepro.co:2.7.6.1","Se
arch_Secure_clone_KCoBBoINJP@www.searchsecure.co:2.5.4.13","Search_Secure_clone_vMiRwzpIyN@www.searchsecurepro.co:2.7.2.13","Search_Secure_PYgylksdjn@www.searchsecurelite.co:2.8.1.23","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.7.6.15","Search_Secure_clone_RhnxFJfWCr@www.searchsecure.co:2.7.8.16","Search_Secure_clone_vMiRwzpIyN@www.searchsecurepro.co:2.8.1.19","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.18","Search_Secure_jinGOnIoXh@www.searchsecurepro.co:2.8.0.11","Search_Secure_clone_WptlavTcPe@www.searchsecurepro.co:2.7.0.3","Search_Secure_clone_KCoBBoINJP@www.searchsecure.co:2.8.1.21","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.7.6.12","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.31","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.6.0.6","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.23","Search_Secure_jinGOnIoXh@www.searchsecurepro.co:2.8.0.10","Search_Secure_fNZiHVWPCr@www.searchsecureplus.co:2.8.1.12","Search_Secure_oGvai
SeDSS@www.searchsecurepro.co:2.8.1.6","Search_Secure_CbbbWIcTOz@www.searchsecurelite.co:2.8.1.11","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.35","Search_Secure_DfXRIXGALX@www.searchsecureprime.co:2.7.9.10","Search_Secure_clone_WptlavTcPe@www.searchsecurepro.co:2.7.2.6","Search_Secure_DqkvHhFLlr@www.searchsecurelite.co:2.8.0.7","Search_Secure_FnHRWGqeOa@www.searchsecure.co:2.7.6.9","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.28","Search_Secure_FnHRWGqeOa@www.searchsecure.co:2.8.0.14","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.38","Search_Secure_clone_vMiRwzpIyN@www.searchsecurepro.co:2.8.0.19","Search_Secure_DfXRIXGALX@www.searchsecureprime.co:2.7.9.11","Search_Secure_fNZiHVWPCr@www.searchsecureplus.co:2.7.6.3","Search_Secure_DfXRIXGALX@www.searchsecureprime.co:2.8.1.12","Search_Secure_jinGOnIoXh@www.searchsecurepro.co:2.7.6.6","Search_Secure_PYgylksdjn@www.searchsecurelite.co:2.8.0.22","Search_Secure_clone_vMiRwzpIyN@www.searchsecurepro.co:2.7.6.16
","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.7.8.16","Search_Secure_clone_KCoBBoINJP@www.searchsecure.co:2.8.0.21","Search_Secure_GyQyTTzqnY@www.searchsecure.co:2.7.0.2","Search_Secure_clone_WptlavTcPe@www.searchsecurepro.co:2.8.1.14","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.7.6.19","Search_Secure_DfXRIXGALX@www.searchsecureprime.co:2.7.9.12","Search_Secure_FnHRWGqeOa@www.searchsecure.co:2.7.6.6","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.20","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.7.4.9","adblock-for-ff-lite@addons:5.5.1","Search_Secure_GyQyTTzqnY@www.searchsecure.co:2.8.1.8","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.7.6.13","Search_Secure_PYgylksdjn@www.searchsecurelite.co:2.7.6.3","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.7.0.10","{e48cdd5a-f9bd-41bf-9e06-5c384e214fb4}:3.1.2","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.8.1.22","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.7.4.11","Search_Secure_
jinGOnIoXh@www.searchsecurepro.co:2.8.1.11","Search_Secure_clone_RhnxFJfWCr@www.searchsecure.co:2.5.4.6","Search_Secure_FnHRWGqeOa@www.searchsecure.co:2.7.6.3","{e48cdd5a-f9bd-41bf-9e06-5c384e214fb4}:3.1.3","Search_Secure_clone_KCoBBoINJP@www.searchsecure.co:2.5.4.17","Search_Secure_fNZiHVWPCr@www.searchsecureplus.co:2.7.6.8","Search_Secure_clone_rDarjPyrbj@www.searchsecurepro.co:2.7.3.6","Search_Secure_PYgylksdjn@www.searchsecurelite.co:2.8.0.23","Search_Secure_CbbbWIcTOz@www.searchsecurelite.co:2.8.0.11","Search_Secure_oGvaiSeDSS@www.searchsecurepro.co:2.8.0.5","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.7.6.17","Search_Secure_DfXRIXGALX@www.searchsecureprime.co:2.8.0.12","Search_Secure_GyQyTTzqnY@www.searchsecure.co:2.8.0.8","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.22","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.8.0.39","Search_Secure_clone_RhnxFJfWCr@www.searchsecure.co:2.7.0.12","Search_Secure_CbbbWIcTOz@www.searchsecurelite.co:2.8.0.10","Search_Secure_
clone_RhnxFJfWCr@www.searchsecure.co:2.8.1.26","Search_Secure_oGvaiSeDSS@www.searchsecurepro.co:2.7.6.1","Search_Secure_clone_RZIaqFySJv@www.searchsecure.co:2.8.1.7","Search_Secure_CbbbWIcTOz@www.searchsecurelite.co:2.7.6.3","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.7.8.20","Search_Secure_DqkvHhFLlr@www.searchsecurelite.co:2.7.6.2","Search_Secure_DfXRIXGALX@www.searchsecureprime.co:2.7.6.3","Search_Secure_clone_RhnxFJfWCr@www.searchsecure.co:2.8.0.24","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.7.7.15","Search_Secure_DqkvHhFLlr@www.searchsecurelite.co:2.8.0.6","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.7.6.13","Search_Secure_clone_RZIaqFySJv@www.searchsecure.co:2.7.0.3","Search_Secure_clone_vMiRwzpIyN@www.searchsecurepro.co:2.6.0.5","Search_Secure_DqkvHhFLlr@www.searchsecurelite.co:2.8.1.7","Search_Secure_clone_WptlavTcPe@www.searchsecurepro.co:2.8.0.14","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.8.0.21","Search_Secure_ByKsqSMauF(a)www.searchsecur
epro.co:2.8.0.4","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.8.1.39","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.19","Search_Secure_oGvaiSeDSS@www.searchsecurepro.co:2.8.0.6","Search_Secure_clone_RZIaqFySJv@www.searchsecure.co:2.8.0.7","Search_Secure_ByKsqSMauF@www.searchsecurepro.co:2.8.1.5","Search_Secure_clone_RhnxFJfWCr@www.searchsecure.co:2.5.4.3","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.7.6.14","Search_Secure_jinGOnIoXh@www.searchsecurepro.co:2.7.6.2","Search_Secure_fNZiHVWPCr@www.searchsecureplus.co:2.8.0.11","Search_Secure_clone_rDarjPyrbj@www.searchsecurepro.co:2.8.0.14"],"unblocked":[]},"schema":1612291251388,"key_format":"{guid}:{version}","stash_time":1612355709914,"id":"88169fca-029d-4cd3-9957-ddcd86937078","last_modified":1612355883621},{"stash":{"blocked":["{1caddc29-d17d-4d9d-8358-1776524b76a7}:4.6.0","{c23c69a7-f889-447c-9d6b-1595be8035bc}:4.6.0"],"unblocked":[]},"schema":1612208490333,"key_format":"{guid}:{version}","stash_time":16
12290909768,"id":"93a6642a-77e3-4599-b594-737540a35dbb","last_modified":1612291251319},{"stash":{"blocked":["{9a11aa32-1648-4f7e-9e09-a815771da03a}:3.5.0","{5cd2bcce-7f1f-4edb-8c6b-195463117e5c}:1.5","{5cd2bcce-7f1f-4edb-8c6b-195463117e5c}:1.4","{5cd2bcce-7f1f-4edb-8c6b-195463117e5c}:1.3","{5cd2bcce-7f1f-4edb-8c6b-195463117e5c}:1.6"],"unblocked":[]},"schema":1612193900309,"key_format":"{guid}:{version}","stash_time":1612204509682,"id":"177897ae-bab6-4ac2-a957-b8c8550f1f61","last_modified":1612204673109},{"stash":{"blocked":["{ce305ab1-e461-4c00-87bb-e9c18ead5c80}:3.2","{125dc5f0-45f5-429d-93a6-e865d67efbee}:5.3","{91354ba7-4680-4500-b9d3-d1cea876fdf0}:3.2","{650444fa-e04b-4340-a57f-d053287d4d73}:0.0.0.4","{ebb273e7-5eda-4be6-8bfa-f7796f9839a0}:1.3","{125dc5f0-45f5-429d-93a6-e865d67efbee}:3.4","{125dc5f0-45f5-429d-93a6-e865d67efbee}:3.7","{ebb273e7-5eda-4be6-8bfa-f7796f9839a0}:1.2","{125dc5f0-45f5-429d-93a6-e865d67efbee}:5.2","{ce305ab1-e461-4c00-87bb-e9c18ead5c80}:3.5","{125dc5f0-45
f5-429d-93a6-e865d67efbee}:3.8","{125dc5f0-45f5-429d-93a6-e865d67efbee}:5","{91354ba7-4680-4500-b9d3-d1cea876fdf0}:3.3","{91354ba7-4680-4500-b9d3-d1cea876fdf0}:4","{650444fa-e04b-4340-a57f-d053287d4d73}:0.0.0.3","{91354ba7-4680-4500-b9d3-d1cea876fdf0}:4.1","{ce305ab1-e461-4c00-87bb-e9c18ead5c80}:3.3","{125dc5f0-45f5-429d-93a6-e865d67efbee}:3.5","{91354ba7-4680-4500-b9d3-d1cea876fdf0}:3.4","{125dc5f0-45f5-429d-93a6-e865d67efbee}:4","{ce305ab1-e461-4c00-87bb-e9c18ead5c80}:3.4","{125dc5f0-45f5-429d-93a6-e865d67efbee}:5.4","{125dc5f0-45f5-429d-93a6-e865d67efbee}:3.3","{91354ba7-4680-4500-b9d3-d1cea876fdf0}:3.5","{ce305ab1-e461-4c00-87bb-e9c18ead5c80}:4","{125dc5f0-45f5-429d-93a6-e865d67efbee}:5.8","{bf491c90-50c9-42d5-9324-68553f3dc952}:1.6","{bf491c90-50c9-42d5-9324-68553f3dc952}:1.3","{ebb273e7-5eda-4be6-8bfa-f7796f9839a0}:1.1","{125dc5f0-45f5-429d-93a6-e865d67efbee}:4.1","{ce305ab1-e461-4c00-87bb-e9c18ead5c80}:4.1","{bf491c90-50c9-42d5-9324-68553f3dc952}:1.5","{125dc5f0-45f5-429d-93a
6-e865d67efbee}:3.2","{bf491c90-50c9-42d5-9324-68553f3dc952}:1.4"],"unblocked":[]},"schema":1611865516444,"key_format":"{guid}:{version}","stash_time":1611880509602,"id":"309fe062-5c0c-4e18-9eaf-564641c17f05","last_modified":1611880670153},{"stash":{"blocked":["{f84632a2-a8ce-4301-a928-b607341326d9}:1.0.0","{c8894c96-32a0-48ef-91f6-535bc86b3304}:1.0.0","{c8894c96-32a0-48ef-91f6-535bc86b3304}:1.0.1","{f84632a2-a8ce-4301-a928-b607341326d9}:1.0.2","{bc6097ec-a4f0-4312-8be1-1dd507d6ca29}:1.1","{f84632a2-a8ce-4301-a928-b607341326d9}:1.0.3","{f84632a2-a8ce-4301-a928-b607341326d9}:1.0.1","{0ff06b23-7d18-4471-b249-1da0c9de7f4c}:1.0","{1486cd88-7a67-4992-b904-e6d6433079c9}:1.0"],"unblocked":[]},"schema":1611837264838,"key_format":"{guid}:{version}","stash_time":1611858910368,"id":"29960c79-0b6e-4f09-9ca0-a0ed35263741","last_modified":1611859082781},{"stash":{"blocked":["newtabsearch@ezdrivingdirections.org:1.0.3","newtabsearchwebnew@ezdrivingdirections.org:1.0.4","newtabsearch@ezdrivingdirec
tions.org:1.0.5","newtabsearch@ezdrivingdirections.org:1.0.1","newtabsearchweb@ezdrivingdirections.org:1.0.5","newtabsearchweb@ezdrivingdirections.org:1.0.2","newtabsearchwebnew@ezdrivingdirections.org:1.0.5","newtabsearchwebnew@ezdrivingdirections.org:1.0.6"],"unblocked":[]},"schema":1611766438966,"key_format":"{guid}:{version}","stash_time":1611772509683,"id":"5acae0aa-e56d-46a4-99c5-a5e6ce482c36","last_modified":1611772681231},{"stash":{"blocked":["{abfba652-ee63-4de2-92ef-9c914bccbfe7}:0.0.0.2","{ffdbc20c-e15c-4ddb-96d5-5ab89f2c6094}:1.4","{ffdbc20c-e15c-4ddb-96d5-5ab89f2c6094}:1.5","{ffdbc20c-e15c-4ddb-96d5-5ab89f2c6094}:1.0","{abfba652-ee63-4de2-92ef-9c914bccbfe7}:0.0.1.0","{abfba652-ee63-4de2-92ef-9c914bccbfe7}:0.0.1.3","{abfba652-ee63-4de2-92ef-9c914bccbfe7}:0.0.1.2","{ffdbc20c-e15c-4ddb-96d5-5ab89f2c6094}:1.3","{abfba652-ee63-4de2-92ef-9c914bccbfe7}:0.0.0.3","{abfba652-ee63-4de2-92ef-9c914bccbfe7}:0.0.1.4"],"unblocked":[]},"schema":1611690098968,"key_format":"{guid}:{versio
n}","stash_time":1611750909796,"id":"90ee7b11-cc0d-4e76-b201-83114e136157","last_modified":1611751081351},{"stash":{"blocked":[],"unblocked":["{169603cc-2d16-48d2-a6de-4be354841f00}:1.4","{dda0f40c-a83b-491a-851d-af8ccb379a8c}:1.0","{6e4f4a3d-dc55-4315-9915-2db61587cfc1}:1.2","{a13bfd70-f2c8-4ed5-8725-87bad020519e}:1.1","{6e4f4a3d-dc55-4315-9915-2db61587cfc1}:1.0","{dde15009-d20a-44e3-89c3-94ebb39a6e48}:1.1","{dde15009-d20a-44e3-89c3-94ebb39a6e48}:1.0","{169603cc-2d16-48d2-a6de-4be354841f00}:1.5","{169603cc-2d16-48d2-a6de-4be354841f00}:1.1","{b104f2f7-126f-4fe0-b0b1-241c5771c801}:1.1","{a13bfd70-f2c8-4ed5-8725-87bad020519e}:1.0","{dda0f40c-a83b-491a-851d-af8ccb379a8c}:1.1","{b104f2f7-126f-4fe0-b0b1-241c5771c801}:1.2","{b104f2f7-126f-4fe0-b0b1-241c5771c801}:1.0"]},"schema":1611344495773,"key_format":"{guid}:{version}","stash_time":1611362109904,"id":"6503ad8d-9458-427b-9aa2-2f3d2f908afa","last_modified":1611362279203},{"stash":{"blocked":["aiimdkdngfcipjohbjenkahhlhccpdbc@chrome-stor
e-foxified--1840032839:31.2.7","{fdba7f02-b117-41a9-a9f2-04e30537b015}:5.4","{fdba7f02-b117-41a9-a9f2-04e30537b015}:2.0","aiimdkdngfcipjohbjenkahhlhccpdbc@chrome-store-foxified--1840032839:31.2.9","{fdba7f02-b117-41a9-a9f2-04e30537b015}:29.4.1","{fdba7f02-b117-41a9-a9f2-04e30537b015}:31.2.9","{fdba7f02-b117-41a9-a9f2-04e30537b015}:31.2.7","{fdba7f02-b117-41a9-a9f2-04e30537b015}:30.2.1","{fdba7f02-b117-41a9-a9f2-04e30537b015}:31.2.8"],"unblocked":[]},"schema":1611173716546,"key_format":"{guid}:{version}","stash_time":1611232509311,"id":"92950876-f566-4f11-bf97-1dab9b3ff89c","last_modified":1611232681393},{"stash":{"blocked":["{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.0.3","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.6","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.3","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.9.1","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.9.0","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.6.9","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.8","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698d
e3}:1.7.5","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.2","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.7","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.6","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.0","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.9.3","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.6.8","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.1","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.0.1","@snext:1.0.0","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.0.5","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.7","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.0.4","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.4","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.4","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.0","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.6.7","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.1","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.9.2","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.8","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.5","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.0.2","{aaa6d5fe-66fe-4a94-a4b7-c4a8d
0698de3}:1.8.3","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.9","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.9","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.2"],"unblocked":[]},"schema":1611146276466,"key_format":"{guid}:{version}","stash_time":1611167710497,"id":"24fc54a9-ffbb-4f54-8885-78b1802ed928","last_modified":1611167876869},{"stash":{"blocked":["Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.0","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.6","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.5","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.18","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.14","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.4","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.1","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.9","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.3","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.7","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.0","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.2","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.7","{68060f98-7f16-47d1
-954f-16a7d6f4279c}:1.0.8","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.0","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.4","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.6","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.2","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.5","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.4","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.6","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.17","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.2.0","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.9","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.3.0","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.15","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.2","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.3","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.3","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.8","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.16","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.0.0","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.1","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.
com:1.0.2.1"],"unblocked":[]},"schema":1611059875752,"key_format":"{guid}:{version}","stash_time":1611146109201,"id":"19a83ce7-a6d1-4e9c-abe8-39ec419ed24c","last_modified":1611146276403},{"stash":{"blocked":["{c3a241e7-2fd3-4ffe-ba03-571c72a5c72a}:1.0.0","{848113fd-80b2-426f-8098-b57c766a9e17}:1.0"],"unblocked":[]},"schema":1610998890298,"key_format":"{guid}:{version}","stash_time":1611059709202,"id":"8b1e0bc2-42f0-43d0-b07e-d5022ac96f7d","last_modified":1611059875682},{"stash":{"blocked":["adblockPlusYNSe@addons:5.0.5","{c23c69a7-f889-447c-9d6b-1594be8025bc}:9.0.0","adblockPlusYNSe@addons:5.0.2","securitymod@pes.com:1.1","borderifyhshsg@adblo.com:6.6.0","{c23c69a7-f889-447c-9d6b-7595be8035bc}:6.7.0","{c522b046-fe6b-4cb2-aa4f-ad0385a6a27f}:9.0.0","addon556ggF@example.com:6.3.0","adblockPlusYNSedSDSd@addons:6.1.0","adblockPlusYNSe@addons:6.0.0","borderifyhshsg@adblo.com:6.5.0","adblockPlusYNSe@addons:5.0.1","{2e2e67e1-7ec0-4f81-9942-f2b6d08abba2}:6.7.0","{c23c69a7-f889-447c-9d6b-1594
be8025bc}:8.1.9","adblockPlusYNSehGTRTY@addons:6.4.0"],"unblocked":[]},"schema":1610973482141,"key_format":"{guid}:{version}","stash_time":1610994910421,"id":"8c6f82ba-b122-430d-9bab-7e2998a4f52d","last_modified":1610995076115},{"stash":{"blocked":["{bcb5df8f-61b5-4500-8c43-5617f0a79bd1}:6.7.2021","{46f1c3e9-9421-4b0f-a88c-7c40841b9280}:6.7.2021","{dc9c6f40-089a-4582-9d5b-211e882ff52b}:1.0","{78944020-08fb-4d9e-a197-26cb44435b52}:1.0"],"unblocked":[]},"schema":1610826092142,"key_format":"{guid}:{version}","stash_time":1610973308911,"id":"c3f49c46-9edb-48f2-8878-873a8b342c59","last_modified":1610973482068},{"stash":{"blocked":["{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:9.6.0.13","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:9.4.0.1","searchme@mybrowserbar.com:9.4.0.34","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.4.0.33","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:9.6.0.10","{515d1883-7376-4db3-b710-8d76a27231b1}:3.6.0.9","{76239af6-9293-43ed-aa86-4d871453c7c9}:3.6.0.10","{515d1883-7376-4db3-b710-8d
76a27231b1}:9.6.0.10","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:9.6.0.13","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:3.6.0.10","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:9.4.0.1","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:3.4.0.1","searchme@mybrowserbar.com:9.6.0.1","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:3.4.0.1","{ca750902-d68a-4670-adef-bb1ed70b87b4}:9.4.0.1","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.6.0.4","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:9.6.0.10","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:3.6.0.12","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:3.6.0.16","{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:3.6.0.13","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.31","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:9.6.0.10","{21e161fe-59ff-41d1-8653-310b0feb13ef}:9.6.0.10","{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:9.6.0.16","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:3.6.0.13","{ca750902-d68a-4670-adef-bb1ed70b87b4}:3.6.0.13","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:9.6.0.16","{83052879-afb9-4cd8-98c3-e805f5614026}:3.6.
0.10","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:9.6.0.10","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:3.6.0.12","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:3.6.0.9","{e51a3d1b-600e-43d5-8116-817a1d964285}:3.6.0.9","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:3.6.0.16","{79da9acc-c057-4f43-b6c3-041f863ee074}:3.6.0.13","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:9.4.0.1","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:3.6.0.12","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:9.6.0.16","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.5.0.6","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:3.6.0.16","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:9.6.0.10","{51158baf-dd07-417a-a195-0722d0d22da6}:9.6.0.10","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:3.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.6.0.4","{3c59c791-aeec-44bb-af60-ff112eea18e3}:9.6.0.13","searchme@mybrowserbar.com:3.4.0.28","{bb9b852f-1129-439b-91df-6583bd135c6f}:3.4.0.1","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:3.6.0.13","{e51a3d1b-600e-43d5-8116-817a1d964285}:9.4.0.1","{A87A31AD-9
EEF-47E6-B8CF-991AF9DCF4B6}:9.4.0.34","{181f5e13-15c8-4103-8e08-4283da8beb97}:9.6.0.10","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.4.0.38","{76239af6-9293-43ed-aa86-4d871453c7c9}:3.6.0.16","searchme@mybrowserbar.com:3.5.0.2","{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:3.6.0.10","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:9.6.0.1","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:3.6.0.10","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:3.6.0.10","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:3.6.0.10","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.6.0.5","{a1d72db8-4198-408e-9f30-f9df0c242580}:9.6.0.16","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:9.6.0.13","{ca750902-d68a-4670-adef-bb1ed70b87b4}:3.6.0.16","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:9.4.0.1","{ab937f68-342b-4481-89d5-288f05876ec2}:3.6.0.16","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:9.6.0.1","{9971fa51-12c0-4f03-933c-8fd80043c666}:3.6.0.13","searchme@mybrowserbar.com:3.6.0.2","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:3.6.0.16","{515d1883-7376-4db3-b710-8d76a27231b1}:3
.6.0.16","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.6.0.6","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:3.6.0.16","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:9.6.0.16","{e51a3d1b-600e-43d5-8116-817a1d964285}:3.6.0.12","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:3.6.0.13","{71a729ac-3a65-4988-8007-794124369292}:9.6.0.16","{ca750902-d68a-4670-adef-bb1ed70b87b4}:3.6.0.9","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.4.0.34","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:3.6.0.10","{51158baf-dd07-417a-a195-0722d0d22da6}:3.6.0.9","{9971fa51-12c0-4f03-933c-8fd80043c666}:9.6.0.10","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:3.6.0.12","{B489E004-0A0C-496D-A374-33AF61E54469}:9.6.0.5","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:3.6.0.10","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:9.6.0.16","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:3.6.0.12","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:3.6.0.13","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.19","{b7a6d831-71e7-4af7-833f-bef174626e18}:3.6.0.10","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:3.
4.0.1","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:9.6.0.10","{B489E004-0A0C-496D-A374-33AF61E54469}:3.6.0.4","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.1","{013f5925-9580-4512-a9d4-31475773387e}:9.6.0.13","{a1d72db8-4198-408e-9f30-f9df0c242580}:9.6.0.10","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.5.0.1","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.12","searchme@mybrowserbar.com:3.6.0.6","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:9.6.0.16","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:3.6.0.10","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:9.6.0.16","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.4.0.30","{9971fa51-12c0-4f03-933c-8fd80043c666}:3.6.0.12","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:3.6.0.10","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:3.6.0.16","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.4.0.31","{3c59c791-aeec-44bb-af60-ff112eea18e3}:3.6.0.12","{ca750902-d68a-4670-adef-bb1ed70b87b4}:9.6.0.16","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.4.0.29","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:3.6.0.12","{aa4be
34a-2e93-4618-a241-975ec11fb606}:3.6.0.13","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:9.4.0.1","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:9.4.0.1","web@123:1.0","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.14","{bb9b852f-1129-439b-91df-6583bd135c6f}:3.6.0.12","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:3.6.0.16","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:9.6.0.10","{ca750902-d68a-4670-adef-bb1ed70b87b4}:3.4.0.1","{B489E004-0A0C-496D-A374-33AF61E54469}:9.4.0.34","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:3.4.0.1","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:9.6.0.16","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:3.6.0.12","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:9.6.0.16","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.6.0.5","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:9.6.0.16","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.6.0.5","{ca750902-d68a-4670-adef-bb1ed70b87b4}:9.6.0.13","{bb9b852f-1129-439b-91df-6583bd135c6f}:3.6.0.9","{71a729ac-3a65-4988-8007-794124369292}:3.6.0.9","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:9.6.0.10
","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:3.6.0.12","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.4.0.33","{013f5925-9580-4512-a9d4-31475773387e}:3.6.0.10","{a192bf54-089f-4325-ac25-7eafcd17a342}:3.6.0.10","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:3.6.0.13","{515d1883-7376-4db3-b710-8d76a27231b1}:9.6.0.16","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:3.6.0.10","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:3.6.0.13","{a1d72db8-4198-408e-9f30-f9df0c242580}:3.6.0.10","{aa4be34a-2e93-4618-a241-975ec11fb606}:3.6.0.12","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:9.4.0.1","{9971fa51-12c0-4f03-933c-8fd80043c666}:3.4.0.1","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:9.6.0.13","{93c2c934-4922-4774-bf29-691fbd7246ff}:3.6.0.12","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:9.4.0.1","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:9.6.0.5","{83052879-afb9-4cd8-98c3-e805f5614026}:3.6.0.13","{71a729ac-3a65-4988-8007-794124369292}:9.6.0.10","{ab937f68-342b-4481-89d5-288f05876ec2}:3.6.0.10","searchme@mybrowserbar.com:3.5.0.6","{7a526449-3a
92-426f-8ca4-47439918f2b1}:9.6.0.16","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:9.6.0.13","{9971fa51-12c0-4f03-933c-8fd80043c666}:3.6.0.10","{a192bf54-089f-4325-ac25-7eafcd17a342}:3.6.0.16","{B489E004-0A0C-496D-A374-33AF61E54469}:3.5.0.1","{79da9acc-c057-4f43-b6c3-041f863ee074}:3.6.0.16","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:9.4.0.1","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:9.6.0.10","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:3.6.0.13","{aa4be34a-2e93-4618-a241-975ec11fb606}:3.6.0.10","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:3.6.0.16","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:3.6.0.12","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:3.6.0.12","{51158baf-dd07-417a-a195-0722d0d22da6}:3.6.0.12","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.6.0.6","{9971fa51-12c0-4f03-933c-8fd80043c666}:9.6.0.13","{B489E004-0A0C-496D-A374-33AF61E54469}:3.6.0.6","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.4.0.32","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:3.6.0.13","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.4.0.34","{9971fa51-12c
0-4f03-933c-8fd80043c666}:9.6.0.16","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:3.6.0.9","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.4.0.38","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:3.4.0.1","{181f5e13-15c8-4103-8e08-4283da8beb97}:3.4.0.1","{93c2c934-4922-4774-bf29-691fbd7246ff}:9.4.0.1","{83052879-afb9-4cd8-98c3-e805f5614026}:3.4.0.1","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:9.6.0.16","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:3.6.0.10","{21e161fe-59ff-41d1-8653-310b0feb13ef}:3.4.0.1","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:9.6.0.16","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:3.4.0.1","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:3.6.0.10","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:9.4.0.1","{93c2c934-4922-4774-bf29-691fbd7246ff}:3.6.0.13","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:3.6.0.16","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:9.6.0.16","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:9.4.0.1","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:9.6.0.13","{ab937f68-342b-4481-89d5-288f05876ec2}:9.6.0.13","{cc80619b-e882-40c2
-b816-03a61b1d0c4f}:9.6.0.13","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:3.4.0.1","{7a526449-3a92-426f-8ca4-47439918f2b1}:3.6.0.10","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.35","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:3.6.0.16","{51158baf-dd07-417a-a195-0722d0d22da6}:9.6.0.16","{a192bf54-089f-4325-ac25-7eafcd17a342}:9.6.0.13","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:9.4.0.1","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:9.6.0.10","{181f5e13-15c8-4103-8e08-4283da8beb97}:9.4.0.1","{21e161fe-59ff-41d1-8653-310b0feb13ef}:3.6.0.9","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:3.6.0.9","{79da9acc-c057-4f43-b6c3-041f863ee074}:9.4.0.1","searchme@mybrowserbar.com:3.4.0.33","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:9.6.0.13","searchme@mybrowserbar.com:9.5.0.2","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.22","{013f5925-9580-4512-a9d4-31475773387e}:9.4.0.1","{3c59c791-aeec-44bb-af60-ff112eea18e3}:9.4.0.1","{b7a6d831-71e7-4af7-833f-bef174626e18}:3.6.0.12","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:3.6.0.10","s
earchme@mybrowserbar.com:3.4.0.29","{51158baf-dd07-417a-a195-0722d0d22da6}:9.4.0.1","{b7a6d831-71e7-4af7-833f-bef174626e18}:3.4.0.1","{b7a6d831-71e7-4af7-833f-bef174626e18}:9.6.0.13","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:3.6.0.13","{76239af6-9293-43ed-aa86-4d871453c7c9}:3.4.0.1","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:3.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.5.0.6","{e51a3d1b-600e-43d5-8116-817a1d964285}:9.6.0.13","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:3.4.0.1","{76239af6-9293-43ed-aa86-4d871453c7c9}:9.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:9.5.0.1","{a192bf54-089f-4325-ac25-7eafcd17a342}:9.6.0.16","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:3.6.0.13","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:3.4.0.1","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:3.6.0.9","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:3.6.0.13","searchme@mybrowserbar.com:3.5.0.5","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:3.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.12","{DBFBF2B3-E522-4520-93B4-BA130FCCFD
6D}:3.4.0.38","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:3.6.0.9","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:9.6.0.10","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:3.6.0.10","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:3.6.0.16","{515d1883-7376-4db3-b710-8d76a27231b1}:3.6.0.12","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.27","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:3.6.0.9","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:9.6.0.16","{a1d72db8-4198-408e-9f30-f9df0c242580}:3.4.0.1","{aa4be34a-2e93-4618-a241-975ec11fb606}:9.6.0.16","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:9.6.0.13","{83052879-afb9-4cd8-98c3-e805f5614026}:9.4.0.1","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:9.6.0.16","{e51a3d1b-600e-43d5-8116-817a1d964285}:3.4.0.1","searchme@mybrowserbar.com:9.6.0.5","{181f5e13-15c8-4103-8e08-4283da8beb97}:3.6.0.10","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:9.6.0.13","{7a526449-3a92-426f-8ca4-47439918f2b1}:9.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.14","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:3.6.0.10","{1
9F6FEE2-01F5-44F2-8618-1AE34A8111EF}:9.6.0.6","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:9.6.0.16","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.6.0.6","{181f5e13-15c8-4103-8e08-4283da8beb97}:3.6.0.16","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.6.0.6","{bb9b852f-1129-439b-91df-6583bd135c6f}:9.6.0.16","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:3.6.0.16","{71a729ac-3a65-4988-8007-794124369292}:3.6.0.16","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:3.4.0.1","{013f5925-9580-4512-a9d4-31475773387e}:3.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.5.0.1","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:9.4.0.1","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:9.6.0.13","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.4.0.30","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:9.6.0.10","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:3.6.0.13","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:3.6.0.9","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.6.0.7","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:3.6.0.16","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.6.0.4","{b2bfe60c
-eef8-4e20-8334-c53afdc1ffdd}:3.6.0.12","{93c2c934-4922-4774-bf29-691fbd7246ff}:3.6.0.10","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:9.6.0.10","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.6.0.1","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:9.6.0.13","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:3.6.0.9","{93c2c934-4922-4774-bf29-691fbd7246ff}:3.6.0.9","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:9.6.0.10","{e51a3d1b-600e-43d5-8116-817a1d964285}:3.6.0.16","{3c59c791-aeec-44bb-af60-ff112eea18e3}:9.6.0.10","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.5.0.6","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:3.4.0.1","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:9.6.0.13","{a1d72db8-4198-408e-9f30-f9df0c242580}:9.4.0.1","searchme@mybrowserbar.com:3.4.0.31","{83052879-afb9-4cd8-98c3-e805f5614026}:9.6.0.10","{ca750902-d68a-4670-adef-bb1ed70b87b4}:9.6.0.10","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.39","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:3.6.0.9","{93c2c934-4922-4774-bf29-691fbd7246ff}:3.6.0.16","{B489E004-0A0C-496D-A374-3
3AF61E54469}:3.6.0.1","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:9.4.0.1","{013f5925-9580-4512-a9d4-31475773387e}:9.6.0.16","{9971fa51-12c0-4f03-933c-8fd80043c666}:9.4.0.1","{51158baf-dd07-417a-a195-0722d0d22da6}:9.6.0.13","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:3.4.0.1","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:3.4.0.1","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:9.6.0.10","{b7a6d831-71e7-4af7-833f-bef174626e18}:9.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:9.4.0.34","{9971fa51-12c0-4f03-933c-8fd80043c666}:3.6.0.16","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.32","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:3.6.0.9","{a1d72db8-4198-408e-9f30-f9df0c242580}:3.6.0.13","searchme@mybrowserbar.com:3.5.0.4","{515d1883-7376-4db3-b710-8d76a27231b1}:9.6.0.13","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:3.6.0.12","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:3.6.0.10","{b7a6d831-71e7-4af7-833f-bef174626e18}:3.6.0.9","{a1d72db8-4198-408e-9f30-f9df0c242580}:3.6.0.12","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:3.6.0
.12","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:3.6.0.13","{a192bf54-089f-4325-ac25-7eafcd17a342}:3.6.0.13","{76239af6-9293-43ed-aa86-4d871453c7c9}:9.6.0.16","{ab937f68-342b-4481-89d5-288f05876ec2}:9.4.0.1","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.7","{76239af6-9293-43ed-aa86-4d871453c7c9}:9.4.0.1","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:9.6.0.10","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:3.6.0.10","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:9.4.0.1","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:3.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.6.0.5","{21e161fe-59ff-41d1-8653-310b0feb13ef}:3.6.0.13","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:3.6.0.16","searchme@mybrowserbar.com:9.4.0.30","{71a729ac-3a65-4988-8007-794124369292}:3.6.0.10","{79da9acc-c057-4f43-b6c3-041f863ee074}:3.4.0.1","{7a526449-3a92-426f-8ca4-47439918f2b1}:9.6.0.13","{51158baf-dd07-417a-a195-0722d0d22da6}:3.6.0.13","{b7a6d831-71e7-4af7-833f-bef174626e18}:3.6.0.16","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:9.6.0.13","{62DD0A97-F
DD4-421b-94A5-D1A9434450C7}:9.6.0.15","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:9.6.0.13","{7a526449-3a92-426f-8ca4-47439918f2b1}:3.6.0.12","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:3.6.0.12","{7a526449-3a92-426f-8ca4-47439918f2b1}:3.6.0.13","{013f5925-9580-4512-a9d4-31475773387e}:3.6.0.16","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.21","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.4.0.38","{ab937f68-342b-4481-89d5-288f05876ec2}:3.6.0.9","{a1d72db8-4198-408e-9f30-f9df0c242580}:3.6.0.9","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.6.0.1","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.5.0.1","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:9.4.0.1","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:9.6.0.10","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.9","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:3.6.0.10","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.4.0.30","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:3.6.0.13","{a1d72db8-4198-408e-9f30-f9df0c242580}:9.6.0.13","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:9.4.0.1","{A87A31AD-9EEF-
47E6-B8CF-991AF9DCF4B6}:9.5.0.6","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:3.6.0.10","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.4.0.1","searchme@mybrowserbar.com:9.6.0.6","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:3.6.0.13","{21e161fe-59ff-41d1-8653-310b0feb13ef}:3.6.0.16","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:3.6.0.13","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:9.6.0.16","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.34","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:9.6.0.13","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:3.6.0.10","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:3.6.0.9","searchme@mybrowserbar.com:9.4.0.28","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:3.6.0.13","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:3.4.0.1","{76239af6-9293-43ed-aa86-4d871453c7c9}:3.6.0.13","{181f5e13-15c8-4103-8e08-4283da8beb97}:3.6.0.9","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.4.0.29","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.6.0.6","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:3.6.0.9","{aa4be34a-2e93-4618-a241-975ec11fb606}:3.6.0.1
6","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:3.6.0.12","{181f5e13-15c8-4103-8e08-4283da8beb97}:9.6.0.13","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.15","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:9.5.0.1","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.6.0.1","{3c59c791-aeec-44bb-af60-ff112eea18e3}:3.6.0.9","{7a526449-3a92-426f-8ca4-47439918f2b1}:3.6.0.16","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:3.6.0.16","{181f5e13-15c8-4103-8e08-4283da8beb97}:9.6.0.16","{ab937f68-342b-4481-89d5-288f05876ec2}:9.6.0.10","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:3.6.0.10","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:3.4.0.1","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:9.6.0.13","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:3.6.0.16","{B489E004-0A0C-496D-A374-33AF61E54469}:3.4.0.34","{79da9acc-c057-4f43-b6c3-041f863ee074}:9.6.0.13","{21e161fe-59ff-41d1-8653-310b0feb13ef}:3.6.0.10","searchme@mybrowserbar.com:3.4.0.34","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:3.6.0.12","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:3.4.0.1","{046c09c5-3
21a-401b-acb7-7ec1d73bbd77}:3.6.0.9","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:9.6.0.13","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.6.0.6","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:3.6.0.9","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:9.6.0.10","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.6.0.1","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:3.6.0.13","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:9.6.0.13","{7a526449-3a92-426f-8ca4-47439918f2b1}:3.6.0.9","{21e161fe-59ff-41d1-8653-310b0feb13ef}:9.6.0.13","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.10","searchme@mybrowserbar.com:3.6.0.5","{79da9acc-c057-4f43-b6c3-041f863ee074}:3.6.0.10","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.6.0.1","searchme@mybrowserbar.com:3.4.0.32","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:9.4.0.1","{013f5925-9580-4512-a9d4-31475773387e}:3.6.0.9","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:9.6.0.10","web@2:1.0","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:3.6.0.10","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:3.6.0.9","{189849ff-f5ad-4480-9c4a-74ac74f
c3246}:3.4.0.1","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:3.6.0.12","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.5.0.6","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:9.4.0.30","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:9.6.0.10","searchme@mybrowserbar.com:9.6.0.2","{B489E004-0A0C-496D-A374-33AF61E54469}:3.4.0.31","{B489E004-0A0C-496D-A374-33AF61E54469}:3.4.0.30","{181f5e13-15c8-4103-8e08-4283da8beb97}:3.6.0.13","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.4.0.31","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:9.6.0.6","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:9.6.0.13","{71a729ac-3a65-4988-8007-794124369292}:3.4.0.1","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:9.4.0.1","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:9.6.0.16","{bb9b852f-1129-439b-91df-6583bd135c6f}:3.6.0.16","{93c2c934-4922-4774-bf29-691fbd7246ff}:9.6.0.13","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:3.4.0.1","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:3.6.0.16","{013f5925-9580-4512-a9d4-31475773387e}:3.6.0.12","searchme@mybrowserbar.com:9.4.0.38","{ce2ed0a1-9c
bf-4545-a990-3f7769e77216}:9.6.0.16","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:3.6.0.16","{71a729ac-3a65-4988-8007-794124369292}:9.6.0.13","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:3.6.0.13","{515d1883-7376-4db3-b710-8d76a27231b1}:3.6.0.10","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:9.6.0.10","{83052879-afb9-4cd8-98c3-e805f5614026}:3.6.0.9","{B489E004-0A0C-496D-A374-33AF61E54469}:9.4.0.30","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:9.6.0.13","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:3.6.0.10","{B489E004-0A0C-496D-A374-33AF61E54469}:3.6.0.5","{ab937f68-342b-4481-89d5-288f05876ec2}:9.6.0.16","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.18","searchme@mybrowserbar.com:9.5.0.3","{79da9acc-c057-4f43-b6c3-041f863ee074}:3.6.0.12","{e51a3d1b-600e-43d5-8116-817a1d964285}:3.6.0.10","searchme@mybrowserbar.com:9.5.0.4","{a192bf54-089f-4325-ac25-7eafcd17a342}:3.6.0.9","{21e161fe-59ff-41d1-8653-310b0feb13ef}:3.6.0.12","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:9.6.0.10","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:3
.4.0.1","searchme@mybrowserbar.com:3.4.0.38","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:9.4.0.1","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:9.6.0.16","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.6.0.5","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:9.4.0.1","searchme@mybrowserbar.com:9.6.0.4","{bb9b852f-1129-439b-91df-6583bd135c6f}:9.4.0.1","web@1:1.0","{3c59c791-aeec-44bb-af60-ff112eea18e3}:3.4.0.1","{51158baf-dd07-417a-a195-0722d0d22da6}:3.6.0.16","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:3.6.0.12","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:3.6.0.12","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:3.6.0.13","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.4.0.32","{bb9b852f-1129-439b-91df-6583bd135c6f}:3.6.0.10","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:3.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:9.5.0.6","{aa4be34a-2e93-4618-a241-975ec11fb606}:3.6.0.9","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:9.6.0.16","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:9.4.0.30","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.5.0.6","{84bbe6bf-f
ea5-418f-9bed-2ee0d6f1fba0}:3.6.0.9","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.16","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.17","{B489E004-0A0C-496D-A374-33AF61E54469}:9.6.0.1","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:3.6.0.12","{ab937f68-342b-4481-89d5-288f05876ec2}:3.4.0.1","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:3.6.0.16","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:3.6.0.9","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:9.6.0.14","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.38","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:3.6.0.9","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.6.0.4","{b7a6d831-71e7-4af7-833f-bef174626e18}:9.4.0.1","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.13","{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:9.6.0.10","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:3.6.0.12","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:3.6.0.16","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:3.6.0.12","{B489E004-0A0C-496D-A374-33AF61E54469}:3.4.0.32","{a1d72db8-4198-408e-9f30-f9df0c242580}:3.6.0.16","{fc57343e-50d9-
4305-9095-b4d4f07cf31a}:3.6.0.16","searchme@mybrowserbar.com:3.6.0.3","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:3.6.0.16","searchme@mybrowserbar.com:9.5.0.1","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:3.6.0.10","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:3.6.0.10","{21e161fe-59ff-41d1-8653-310b0feb13ef}:9.4.0.1","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:9.6.0.13","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:3.6.0.16","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:9.6.0.10","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:3.6.0.12","{7a526449-3a92-426f-8ca4-47439918f2b1}:3.4.0.1","{bb9b852f-1129-439b-91df-6583bd135c6f}:9.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.6.0.1","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:9.6.0.16","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:9.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.36","{83052879-afb9-4cd8-98c3-e805f5614026}:3.6.0.16","{93c2c934-4922-4774-bf29-691fbd7246ff}:3.4.0.1","{aa4be34a-2e93-4618-a241-975ec11fb606}:9.6.0.13","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:3.4.0.
1","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:9.4.0.1","{79da9acc-c057-4f43-b6c3-041f863ee074}:9.6.0.10","searchme@mybrowserbar.com:9.6.0.3","{515d1883-7376-4db3-b710-8d76a27231b1}:9.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.13","{51158baf-dd07-417a-a195-0722d0d22da6}:3.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.4.0.34","{aa4be34a-2e93-4618-a241-975ec11fb606}:9.4.0.1","{B489E004-0A0C-496D-A374-33AF61E54469}:9.4.0.38","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:9.4.0.1","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:9.4.0.1","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:3.6.0.13","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:9.6.0.13","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.4.0.34","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.29","{aa4be34a-2e93-4618-a241-975ec11fb606}:3.4.0.1","{93c2c934-4922-4774-bf29-691fbd7246ff}:9.6.0.10","{b7a6d831-71e7-4af7-833f-bef174626e18}:9.6.0.16","{83052879-afb9-4cd8-98c3-e805f5614026}:3.6.0.12","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:3.6.0.9","{84bbe6bf-fea5
-418f-9bed-2ee0d6f1fba0}:3.6.0.13","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:3.6.0.12","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:9.6.0.13","{9971fa51-12c0-4f03-933c-8fd80043c666}:3.6.0.9","{a192bf54-089f-4325-ac25-7eafcd17a342}:3.6.0.12","{e51a3d1b-600e-43d5-8116-817a1d964285}:9.6.0.10","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:9.6.0.10","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:9.6.0.16","{ca750902-d68a-4670-adef-bb1ed70b87b4}:3.6.0.10","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:3.6.0.9","{93c2c934-4922-4774-bf29-691fbd7246ff}:9.6.0.16","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:3.6.0.9","{ab937f68-342b-4481-89d5-288f05876ec2}:3.6.0.12","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:9.4.0.1","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:3.4.0.1","searchme@mybrowserbar.com:3.5.0.1","{3c59c791-aeec-44bb-af60-ff112eea18e3}:3.6.0.16","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.24","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:9.6.0.16","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:3.4.0.1","{f0bd0efa-2a31-4729-86bc-1b4236
f0e626}:9.4.0.1","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.4.0.30","{76239af6-9293-43ed-aa86-4d871453c7c9}:3.6.0.12","{b7a6d831-71e7-4af7-833f-bef174626e18}:3.6.0.13","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:9.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.5.0.1","{B489E004-0A0C-496D-A374-33AF61E54469}:3.4.0.38","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:9.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.4.0.30","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.5.0.3","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:9.6.0.13","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:3.6.0.9","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:3.6.0.16","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:3.6.0.13","{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:3.6.0.16","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:9.6.0.16","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.4.0.33","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.8","{ab937f68-342b-4481-89d5-288f05876ec2}:3.6.0.13","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:9.4.0.1","{b2bfe60c-eef8-4e20-8334-c53afdc1f
fdd}:9.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.15","{bb9b852f-1129-439b-91df-6583bd135c6f}:3.6.0.13","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.4.0.38","{a192bf54-089f-4325-ac25-7eafcd17a342}:9.6.0.10","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:3.6.0.16","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:9.6.0.5","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:3.6.0.9","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:3.6.0.12","{e51a3d1b-600e-43d5-8116-817a1d964285}:3.6.0.13","{7a526449-3a92-426f-8ca4-47439918f2b1}:9.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:9.4.0.38","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:9.6.0.13","{013f5925-9580-4512-a9d4-31475773387e}:9.6.0.10","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:3.6.0.12","{76239af6-9293-43ed-aa86-4d871453c7c9}:3.6.0.9","searchme@mybrowserbar.com:9.5.0.6","{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:3.6.0.9","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.33","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:9.6.0.10","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:3.4.0.1","{
415B04AB-808E-45AA-B994-B37E73F911CE}:3.5.0.1","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:3.6.0.9","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:3.6.0.16","{51158baf-dd07-417a-a195-0722d0d22da6}:3.4.0.1","{181f5e13-15c8-4103-8e08-4283da8beb97}:3.6.0.12","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:3.4.0.1","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.4.0.34","{83052879-afb9-4cd8-98c3-e805f5614026}:9.6.0.13","{B489E004-0A0C-496D-A374-33AF61E54469}:3.4.0.29","{B489E004-0A0C-496D-A374-33AF61E54469}:3.5.0.6","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:3.6.0.9","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.5.0.6","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:9.6.0.10","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:9.6.0.16","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:9.6.0.16","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:3.6.0.13","{013f5925-9580-4512-a9d4-31475773387e}:3.6.0.13","{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:3.4.0.1","{B489E004-0A0C-496D-A374-33AF61E54469}:3.4.0.33","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:9.6.0.16","{19F6F
EE2-01F5-44F2-8618-1AE34A8111EF}:3.4.0.31","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:3.6.0.13","{515d1883-7376-4db3-b710-8d76a27231b1}:3.4.0.1","{e51a3d1b-600e-43d5-8116-817a1d964285}:9.6.0.16","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:9.6.0.13","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:9.6.0.16","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:3.6.0.9","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:9.4.0.38","{76239af6-9293-43ed-aa86-4d871453c7c9}:9.6.0.13","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:3.6.0.12","searchme@mybrowserbar.com:3.6.0.1","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:9.6.0.13","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.5.0.1","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:3.6.0.16","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:3.6.0.13","{79da9acc-c057-4f43-b6c3-041f863ee074}:9.6.0.16","{ca750902-d68a-4670-adef-bb1ed70b87b4}:3.6.0.12","{bb9b852f-1129-439b-91df-6583bd135c6f}:9.6.0.13","{3c59c791-aeec-44bb-af60-ff112eea18e3}:3.6.0.13","{83052879-afb9-4cd8-98c3-e805f5614026}:9.6.0.16","{aa4be34a-2e93-4618-
a241-975ec11fb606}:9.6.0.10","{21e161fe-59ff-41d1-8653-310b0feb13ef}:9.6.0.16","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:3.6.0.13","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:3.6.0.12","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:3.6.0.10","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:3.6.0.10","web@1:1.1","{71a729ac-3a65-4988-8007-794124369292}:9.4.0.1","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:3.6.0.9","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:3.6.0.13","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:9.6.0.13","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.4.0.29","{B489E004-0A0C-496D-A374-33AF61E54469}:9.5.0.1","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:9.6.0.13","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:9.6.0.16","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.4.0.32","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:3.6.0.12","{71a729ac-3a65-4988-8007-794124369292}:3.6.0.13","{B489E004-0A0C-496D-A374-33AF61E54469}:9.6.0.6","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:3.6.0.10","{a192bf54-089f-4325-ac25-7eafcd17a342}:3.4.0.1","{3c59c791-
aeec-44bb-af60-ff112eea18e3}:9.6.0.16","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:9.4.0.1","{71a729ac-3a65-4988-8007-794124369292}:3.6.0.12","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:9.6.0.10","{79da9acc-c057-4f43-b6c3-041f863ee074}:3.6.0.9","{B489E004-0A0C-496D-A374-33AF61E54469}:9.5.0.6","searchme@mybrowserbar.com:3.6.0.4","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:3.6.0.9","{a192bf54-089f-4325-ac25-7eafcd17a342}:9.4.0.1","{3c59c791-aeec-44bb-af60-ff112eea18e3}:3.6.0.10","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.30","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.16","{515d1883-7376-4db3-b710-8d76a27231b1}:3.6.0.13","searchme@mybrowserbar.com:3.4.0.30","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.6.0.5","searchme@mybrowserbar.com:3.5.0.3","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:3.6.0.16"],"unblocked":[]},"schema":1610541485715,"key_format":"{guid}:{version}","stash_time":1610627709203,"id":"afe5009a-8a2c-4a2a-8f19-d67f8cdd6fb2","last_modified":1610627879132},{"stash":{"blocked":["{24d84c9d
-8472-472e-a9ef-8e4f16e8e995}:0.6","{276ea011-69eb-4a56-b687-c86478772a96}:0.6","{dd41b0da-197a-4330-85a7-9a5c0d69b157}:0.6","{5773b5f8-f9b8-4e6d-94cf-85cce03e4bb4}:0.8","{d5221091-f8df-481d-8ba4-ce9e337e0ab9}:0.8","{89acb232-250e-4afa-b65e-f6f5caf21afa}:1.0.2","{a0d000d6-9d78-494c-b5ba-4e0da94af6b7}:0.6","{d285627b-5dda-4baf-8315-3542ee5b3b79}:0.8","{e1c8eac4-9ddf-4ae1-a298-8834d08e2cfe}:0.8","{0cf942a0-f59d-497d-a336-2f672c37fcad}:0.6","{125f5269-2f69-401e-b072-40be97188078}:0.4.5","{230a5283-ab42-49a2-8860-b06d797917c7}:0.6","{3dec0353-9766-40d8-9351-629789a5ad1c}:0.7","{77a5a325-ee90-4b2c-b4bb-7f96bfbf2735}:0.8","{e0985fce-6352-4798-aae5-a3c346ecaaa9}:1.1.1","{4922fc25-9175-4c7b-aa31-f04797b0244b}:0.8","{9d02017d-80f1-421f-b441-f63fbe6b6ed1}:0.8","{6fb62b49-a2ae-44b4-970a-cf37491dadea}:0.6","{7e7c7b61-cda2-4c30-a448-80a9609b1806}:0.6","{82f6ab32-57ac-459e-a157-7f0a141d70fe}:0.4.4","{89b6df65-c157-4bb5-a2e8-4039490713bb}:0.6","{125f5269-2f69-401e-b072-40be97188078}:0.4.4","{60bc8
0e8-0735-4e76-98c7-fd097e72dfff}:0.8"],"unblocked":["browser-mon@xdman.sourceforge.net:2.1","browser-mon@xdman.sourceforge.net:1.4.1","browser-mon@xdman.sourceforge.net:1.5","browser-mon@xdman.sourceforge.net:2.0","browser-mon@xdman.sourceforge.net:1.4"]},"schema":1610480491282,"key_format":"{guid}:{version}","stash_time":1610541311225,"id":"970bccef-0d6b-45c9-be3b-10bee4b25a9e","last_modified":1610541485668},{"stash":{"blocked":["{d9b84c91-b49e-4294-97f0-af503d41ee70}:3.5.11","browser-mon@xdman.sourceforge.net:1.5","{24912aaa-d0e6-468f-ae3b-bc30c6cf208f}:0.6","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.1.2","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.2.0","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.0.6","browser-mon@xdman.sourceforge.net:2.0","browser-mon@xdman.sourceforge.net:1.4.1","{d9b84c91-b49e-4294-97f0-af503d41ee70}:3.5.12","newtabsearchwebnew@realtimepackagetracker.com:1.0.1","search-engin-picker@addon:1.0","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.2.1","{3ec925f3-200e-4b55-9daf-
18fa4b383d89}:0.7","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.1.1","{d9b84c91-b49e-4294-97f0-af503d41ee70}:3.5.10","newtabsearchwebnew@realtimepackagetracker.com:1.0.0","{d9b84c91-b49e-4294-97f0-af503d41ee70}:3.5.13","browser-mon@xdman.sourceforge.net:2.1","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.0.8","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.0.9","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.1.0","{d835b809-10ad-40bc-a261-81df00e5f848}:0.9","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.0.5","{d9b84c91-b49e-4294-97f0-af503d41ee70}:3.5.14","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.0.7","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.2.2","browser-mon@xdman.sourceforge.net:1.4"],"unblocked":[]},"schema":1610307694439,"key_format":"{guid}:{version}","stash_time":1610476509860,"id":"276fe166-6050-4afe-a5ff-0e4601fc25a6","last_modified":1610476682530},{"stash":{"blocked":["{d836bb26-414c-42e2-9010-ad89c5aa6afb}:2.1","{d836bb26-414c-42e2-9010-ad89c5aa6afb}:2.0"],"unblocked":[]},"schema":1610134890207,"
key_format":"{guid}:{version}","stash_time":1610152509622,"id":"8f88a597-328d-4057-843e-1c9f9510da2b","last_modified":1610152677926},{"stash":{"blocked":["{034b4a48-a522-43a6-a3e3-842c7fd67863}:2.6","{fda05e53-fb52-47d4-9672-146a642c7f54}:1.4","{0c0e26f3-7f75-43b5-a7c2-22e2b3429067}:1.2","{dde15009-d20a-44e3-89c3-94ebb39a6e48}:1.1","{eb7a4078-a5b4-4191-be02-5bc06ef00c7f}:1.8","{624120ee-d5aa-4aef-a192-a54ac28da835}:1.0","{77a51de1-939b-4fc6-b277-039b499d1bf2}:1.1","{431be38a-8eab-4602-9cd0-9ab9682dfdc6}:1.3","{77a51de1-939b-4fc6-b277-039b499d1bf2}:1.0","{a13bfd70-f2c8-4ed5-8725-87bad020519e}:1.1","{431be38a-8eab-4602-9cd0-9ab9682dfdc6}:1.0","{fda05e53-fb52-47d4-9672-146a642c7f54}:1.2","{0c0e26f3-7f75-43b5-a7c2-22e2b3429067}:1.0","{fda05e53-fb52-47d4-9672-146a642c7f54}:1.0","{7be089c1-1849-420d-87fc-42b6c5d4c049}:1.2","{7a2b38e1-4d2b-4220-9cb5-c2795aab0d89}:1.0","{169603cc-2d16-48d2-a6de-4be354841f00}:1.4","{b104f2f7-126f-4fe0-b0b1-241c5771c801}:1.2","{556bcd61-2c26-4b08-9092-6213340
06f07}:1.0","{1afd3b73-75d2-407c-9942-deeeedf92a9e}:1.1","{b104f2f7-126f-4fe0-b0b1-241c5771c801}:1.1","jid1-MIAJd5BiK7V4Pw@jetpack:0.9.2","{b104f2f7-126f-4fe0-b0b1-241c5771c801}:1.0","@CyberSearch-ext:1.0.0","{fda05e53-fb52-47d4-9672-146a642c7f54}:1.5","{169603cc-2d16-48d2-a6de-4be354841f00}:1.1","{1afd3b73-75d2-407c-9942-deeeedf92a9e}:1.0","{77a51de1-939b-4fc6-b277-039b499d1bf2}:1.2","{169603cc-2d16-48d2-a6de-4be354841f00}:1.5","{431be38a-8eab-4602-9cd0-9ab9682dfdc6}:1.2","{034b4a48-a522-43a6-a3e3-842c7fd67863}:2.8","jid1-MIAJd5BiK7V4Pw@jetpack:0.9.3","{6e1ddd1e-7d2c-4207-bb50-3c183e823e5d}:1.0","{9ec19675-ae4c-4c90-a066-2e400f6e286b}:1.0","{6e4f4a3d-dc55-4315-9915-2db61587cfc1}:1.2","{dda0f40c-a83b-491a-851d-af8ccb379a8c}:1.1","{7be089c1-1849-420d-87fc-42b6c5d4c049}:1.0","{8fb7ee22-555c-463b-b534-1c6461449617}:1","{6e1ddd1e-7d2c-4207-bb50-3c183e823e5d}:1.1","{7be089c1-1849-420d-87fc-42b6c5d4c049}:1.3","{034b4a48-a522-43a6-a3e3-842c7fd67863}:1.0","{7a2b38e1-4d2b-4220-9cb5-c2795aab0
d89}:1.1","{02b39b37-7cf6-45c3-9179-996c3c37b491}:1.0","{a13bfd70-f2c8-4ed5-8725-87bad020519e}:1.0","{dde15009-d20a-44e3-89c3-94ebb39a6e48}:1.0","{7473192b-b08b-496c-a849-0bb0d14dafc3}:1.0","{fda05e53-fb52-47d4-9672-146a642c7f54}:1.3","{7be089c1-1849-420d-87fc-42b6c5d4c049}:1.1","{6e4f4a3d-dc55-4315-9915-2db61587cfc1}:1.0","{49a8bb11-4887-42fb-b16d-d6bf74fd4313}:1.0","{307d047e-2591-4c33-86ff-819fd8c747ac}:1.0","{eb7a4078-a5b4-4191-be02-5bc06ef00c7f}:1.9","{dda0f40c-a83b-491a-851d-af8ccb379a8c}:1.0","{ab96b384-a512-42cc-8738-18ea3d6a89e5}:1.0","{289c0c00-0624-44ae-ae98-2979546b3aa6}:1.1","{431be38a-8eab-4602-9cd0-9ab9682dfdc6}:1.4","{289c0c00-0624-44ae-ae98-2979546b3aa6}:1.0","{fda05e53-fb52-47d4-9672-146a642c7f54}:1.6","{ab96b384-a512-42cc-8738-18ea3d6a89e5}:1.1"],"unblocked":[]},"schema":1610044676214,"key_format":"{guid}:{version}","stash_time":1610130909877,"id":"4d3bd580-fdc7-4c93-9d41-22b55ff28cbd","last_modified":1610131079523},{"stash":{"blocked":["{06d4cb25-df8d-47b8-b37d-3
abc403ed785}:1.0.8","{bdb812b0-e758-43f0-92ef-55e847f4710a}:2.16","{f2033592-c40c-437b-b447-2e179cf2ca30}:1.2.6","{805448c0-d89d-4289-b561-fd5e59afec86}:2.7.18","{805448c0-d89d-4289-b561-fd5e59afec86}:2.7.17","{06d4cb25-df8d-47b8-b37d-3abc403ed785}:1.0.7","{bdb812b0-e758-43f0-92ef-55e847f4710a}:2.17"],"unblocked":[]},"schema":1609962090400,"key_format":"{guid}:{version}","stash_time":1610044510227,"id":"adbb78d7-2f1b-4f72-aae0-23f8103e7711","last_modified":1610044676159},{"stash":{"blocked":["{b832a00e-8eb4-4c83-ae10-fc7b620078be}:1.53","{b832a00e-8eb4-4c83-ae10-fc7b620078be}:1.52","{c4fad22d-460f-465f-abeb-76a18604314e}:1.1.4","{b832a00e-8eb4-4c83-ae10-fc7b620078be}:1.54"],"unblocked":[]},"schema":1609936740545,"key_format":"{guid}:{version}","stash_time":1609958108910,"id":"a74cd41e-925e-4921-9bcf-1c50382fada4","last_modified":1609958353197},{"stash":{"blocked":["{b6d90033-5c73-4f13-a7d4-47fab3038cfe}:1.6","{084d3f7f-0c8f-4138-9ae3-24465605f735}:1.0","{3cd26bac-fd3d-4978-9279-517e
219df132}:1.0.0.27","{3cd26bac-fd3d-4978-9279-517e219df132}:1.0.0.25","{084d3f7f-0c8f-4138-9ae3-24465605f735}:1.1","{b6d90033-5c73-4f13-a7d4-47fab3038cfe}:1.5","{3cd26bac-fd3d-4978-9279-517e219df132}:1.0.0.31","{3cd26bac-fd3d-4978-9279-517e219df132}:1.0.0.28","{3cd26bac-fd3d-4978-9279-517e219df132}:1.0.0.23","{b6d90033-5c73-4f13-a7d4-47fab3038cfe}:1.0.0","{3cd26bac-fd3d-4978-9279-517e219df132}:1.0.0.29"],"unblocked":[]},"schema":1609847198889,"key_format":"{guid}:{version}","stash_time":1609936510814,"id":"e1347a42-e173-402b-bf5d-f3c00a6458e7","last_modified":1609936740497},{"stash":{"blocked":["{4ba3b5e1-bc5b-4e59-b8b2-4c1de38fb5fe}:1.3","movies-suggest@addon:1.0","{4ba3b5e1-bc5b-4e59-b8b2-4c1de38fb5fe}:1.1","{3fc3b7f8-4749-4e54-a18f-3e12b9ed0db3}:1.0","{4ba3b5e1-bc5b-4e59-b8b2-4c1de38fb5fe}:1.2","{4ba3b5e1-bc5b-4e59-b8b2-4c1de38fb5fe}:1.0"],"unblocked":[]},"schema":1609616497459,"key_format":"{guid}:{version}","stash_time":1609763713027,"id":"70ccd414-e031-4569-8b23-adba5b522a0c",
"last_modified":1609763911689},{"stash":{"blocked":["{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.44","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.1.3","search@freeweathersearcher.com:1.1.0","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.1","{CE2DE70F-9351-4057-B6D8-B14BB34DD401}:1.0.1","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.43","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.42","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.1.1","{4356F7E9-22F2-477E-86BA-BD25350DCC22}:1.0.0","extension@searchsecurer.com:1.0.10","{6300fcbc-5f02-4735-81ec-896350de01a6}:1.0.1","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:1.2.7","{4b6085bd-3ad2-4583-a8c4-abfd61970ebd}:0.6","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.0.4","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.0","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:1.3.5","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.0.1","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:1.3.4","{6e22a85a-1281-4cb5-8915-88f02b8cd19e}:1.0.0.2","{8A053236-CE57-4686-8C6B-C3BC8EB0E75E}:1.0.0","{8aebfd17-13a7-4651-8ce8-1826
f5cd1c19}:1.7","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.0.0","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.2","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.5","{be6788f3-e106-43d0-9d27-9c4811931588}:0.0.31","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:4.6.3","{14fae57e-4122-4f32-961b-9892ce7c1bee}:1.6.1","extension@searchsecurer.com:1.0.9","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.0.8","{9b046088-82e9-4a82-a619-d7705091b942}:1.0.0.5","extension@searchsecurer.com:1.1.3","{14fae57e-4122-4f32-961b-9892ce7c1bee}:1.6.2","{9179905e-606f-453a-b204-35adb53a8152}:0.1.100.102","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:1.3.1","{adb8f8c4-f90f-4cce-8d7a-b270df97e074}:3.1.3","@baboomsearch:1.1.2","{eb900458-3122-443c-ab4e-3a36f0d1968f}:1.2","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:4.6.4","{788c4081-e227-43c4-853a-1733a2eca513}:3.2","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.41","{aeb932ec-7ec1-4c96-a44d-ba053097a4a3}:1.1","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.0.3","{ef86f2ef-dcf4-4a75-884d-fb1f67858b4b}:1.2.
1","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.6.0","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.0.7","{aeb932ec-7ec1-4c96-a44d-ba053097a4a3}:1.0","{64c9344c-9645-47b4-9603-ef6d51339ce6}:1.0","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:4.5.0","{5cedfd0c-e90f-4cab-a1ff-805733935a1a}:1.0","{788c4081-e227-43c4-853a-1733a2eca513}:1.3","{a113235c-ef37-4e9c-ac7e-b320163539e9}:1.1","{CE2DE70F-9351-4057-B6D8-B14BB34DD401}:1.0.0","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.0.2","{788c4081-e227-43c4-853a-1733a2eca513}:0.11","{9b046088-82e9-4a82-a619-d7705091b942}:1.0.0.7","{788c4081-e227-43c4-853a-1733a2eca513}:4.61","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.0.5","app@ConvertirArchivos:1.0.2","{9b046088-82e9-4a82-a619-d7705091b942}:1.0.0.8","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.2.0","{788c4081-e227-43c4-853a-1733a2eca513}:2.3","{5cedfd0c-e90f-4cab-a1ff-805733935a1a}:5.96","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.0.1","{6b5c7804-ccb1-4201-92b5-051c87816c61}:1.3","{b8b035b5-3406-402e-a0e2-8094c0d5893
3}:1.1.0","{5cedfd0c-e90f-4cab-a1ff-805733935a1a}:5.6","{5cedfd0c-e90f-4cab-a1ff-805733935a1a}:5.95","{8eb8fd41-144c-4ffd-b885-1b79d5e03b20}:1.0","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:1.2.5","{14fae57e-4122-4f32-961b-9892ce7c1bee}:1.6.4","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.0.6","{a113235c-ef37-4e9c-ac7e-b320163539e9}:1.2","{3983F47C-2A53-4FF0-9808-FB0B7D89443C}:1.0.1","@noicetab:1.9.2.0","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.3","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:4.6.5","{293dc6f6-b90a-4ea6-9ea2-fe618d1ecad1}:1.2.0","{49bbdc35-496e-46f7-b9c1-5db7a47adbbe}:1.2","{adb8f8c4-f90f-4cce-8d7a-b270df97e074}:3.1.5","{6e22a85a-1281-4cb5-8915-88f02b8cd19e}:1.0.0.0","{6e22a85a-1281-4cb5-8915-88f02b8cd19e}:1.0.0.1","search@quickeasypdf.com:0.0.5","search@quickeasypdf.com:0.0.4","{9b046088-82e9-4a82-a619-d7705091b942}:1.0.0.6","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.51","search@freecouponsearcher.com:1.1.0","{38DFCD31-215F-4CB4-9246-9B9772FDA728}:1.0.0","{9b5bdaba-545f-4f48-bb75
-5d90a9fb44ce}:4.5.1","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.4","extension@searchsecurer.com:1.0.0","{14fae57e-4122-4f32-961b-9892ce7c1bee}:1.6","{adb8f8c4-f90f-4cce-8d7a-b270df97e074}:3.1.4","{14fae57e-4122-4f32-961b-9892ce7c1bee}:1.6.5","{a113235c-ef37-4e9c-ac7e-b320163539e9}:1.3","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.1.2","extension@searchsecurer.com:1.1.2","{eb900458-3122-443c-ab4e-3a36f0d1968f}:1.1","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.4.0","extension@searchsecurer.com:1.0.11","{6e22a85a-1281-4cb5-8915-88f02b8cd19e}:1.0.0.5","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.3.0","@noicetab:1.10.0.0","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:1.3.3","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.5.0","{14fae57e-4122-4f32-961b-9892ce7c1bee}:1.6.3","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.0.9","{6b5c7804-ccb1-4201-92b5-051c87816c61}:1.3.3","{6300fcbc-5f02-4735-81ec-896350de01a6}:1.0.2","{adb8f8c4-f90f-4cce-8d7a-b270df97e074}:3.1.6","{4c84099d-766a-40b4-a8e0-f90c4cdf4040}:1.0","{788c4
081-e227-43c4-853a-1733a2eca513}:4.6","{788c4081-e227-43c4-853a-1733a2eca513}:2.2"],"unblocked":[]},"schema":1608208705099,"key_format":"{guid}:{version}","stash_time":1608230110944,"id":"745e18c2-75d4-44fc-a1d7-954d0abb92d8","last_modified":1608230359579},{"stash":{"blocked":["{5849fc76-08e3-4d14-9d43-6bba81fd99f0}:0.6","{277c5cb0-631b-4cd2-a06c-634bb76aaa4b}:0.6"],"unblocked":[]},"schema":1608061293771,"key_format":"{guid}:{version}","stash_time":1608208509548,"id":"e943c577-ed0b-4c21-acd4-b074c72402ec","last_modified":1608208705056},{"stash":{"blocked":["{64fcf02f-041f-4e91-8ba8-d55eded72a9e}:3.0.0"],"unblocked":[]},"schema":1607992710456,"key_format":"{guid}:{version}","stash_time":1608057322815,"id":"c5b01b4e-f5f7-4313-bc80-0a69d8c9c3ad","last_modified":1608057532329},{"stash":{"blocked":["{f40659b4-6c2d-4c01-bacb-2e0ba34c94e0}:1.0.1"],"unblocked":[]},"schema":1607959877005,"key_format":"{guid}:{version}","stash_time":1607992509477,"id":"2169fb74-a1b4-4347-ac42-9984e16b766a","l
ast_modified":1607992710411},{"stash":{"blocked":["@vkuniversaldownloader:1.17","@vkuniversaldownloader:1.45","@vkuniversaldownloader:1.0","@vkuniversaldownloader:1.9","@vkuniversaldownloader:1.26","@vkuniversaldownloader:1.38","@vkuniversaldownloader:1.34","@vkuniversaldownloader:1.37","@vkuniversaldownloader:1.21","@vkuniversaldownloader:1.27","@vkuniversaldownloader:1.39","@vkuniversaldownloader:1.48","@vkuniversaldownloader:1.11","@vkuniversaldownloader:1.29","@vkuniversaldownloader:1.46","@vkuniversaldownloader:1.18","@vkuniversaldownloader:1.30","@vkuniversaldownloader:1.44","@vkuniversaldownloader:1.33","@vkuniversaldownloader:1.12","@vkuniversaldownloader:1.36","@vkuniversaldownloader:1.19","@vkuniversaldownloader:1.41","@vkuniversaldownloader:1.13","@vkuniversaldownloader:1.16","@vkuniversaldownloader:1.43","@vkuniversaldownloader:1.25","@vkuniversaldownloader:1.10","@vkuniversaldownloader:1.49","@vkuniversaldownloader:1.20","@vkuniversaldownloader:1.31","@vkuniversaldownlo
ader:1.6","@vkuniversaldownloader:1.42","@vkuniversaldownloader:1.23","@vkuniversaldownloader:1.28","@vkuniversaldownloader:1.15","@vkuniversaldownloader:1.1","@vkuniversaldownloader:1.8","@vkuniversaldownloader:1.7","@vkuniversaldownloader:1.40","@vkuniversaldownloader:1.14","@vkuniversaldownloader:1.47","@vkuniversaldownloader:1.24","@vkuniversaldownloader:1.5","@vkuniversaldownloader:1.3","@vkuniversaldownloader:1.32","@vkuniversaldownloader:1.22","@vkuniversaldownloader:1.35"],"unblocked":[]},"schema":1607888491138,"key_format":"{guid}:{version}","stash_time":1607949310449,"id":"c760bc2d-c71e-4206-be35-672f4c73e9c9","last_modified":1607949518837},{"stash":{"blocked":["{2982a5a8-62c0-413f-b51b-204013722511}:2.3.3","{011f65f0-7143-470a-83ca-20ec4297f3f4}:2.3.2","{011f65f0-7143-470a-83ca-20ec4297f3f4}:2.3.3","{2982a5a8-62c0-413f-b51b-204013722511}:2.3.4","{011f65f0-7143-470a-83ca-20ec4297f3f4}:2.3.4"],"unblocked":[]},"schema":1607715696348,"key_format":"{guid}:{version}","stash_tim
e":1607862909181,"id":"b2b46539-8eaf-4ba0-8115-14dfa6f8c2b4","last_modified":1607863109093},{"stash":{"blocked":[],"unblocked":[]},"schema":1607517521762,"key_format":"{guid}:{version}","stash_time":1607538909472,"id":"aaf3380c-7ac6-43a7-be44-82a1195e95dd","last_modified":1607539165992},{"stash":{"blocked":["{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.9.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.0.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:4.14.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.3.1","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.5.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.1.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.7.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.4.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.2.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.3.2"],"unblocked":[]},"schema":1607462847383,"key_format":"{guid}:{version}","stash_time":1607517309357,"id":"73f87ff1-0625-4efa-beae-3cb1d0abfe26","last_modified":1607517521721},{"stash":{"blocked":["{461b09d3-9f69-4778-8
89d-6c6c7212b970}:1.0","{461b09d3-9f69-4778-889d-6c6c7212b970}:1.2","{461b09d3-9f69-4778-889d-6c6c7212b970}:1.3","{461b09d3-9f69-4778-889d-6c6c7212b970}:1.1","{eee03ab2-df0e-4d66-ab9b-404b4cfbb52d}:1.0"],"unblocked":[]},"schema":1607370095452,"key_format":"{guid}:{version}","stash_time":1607452512106,"id":"29f021a3-5e70-4fd9-aa43-b900913fa8a2","last_modified":1607452775945},{"schema":1607085666461,"attachment":{"hash":"481519c28921adb7ba1e19d8ffe9d1869274f19beb1dab91adc246d51e622ef1","size":800295,"filename":"filter.bin","location":"staging/addons-bloomfilters/df53c91c-b598-46a1-8ca9-32bdbb646258.bin","mimetype":"application/octet-stream"},"key_format":"{guid}:{version}","attachment_type":"bloomfilter-base","generation_time":1607085311428,"id":"0930be19-8b19-486a-82c6-06f3a656cbf5","last_modified":1607085668743}]}
\ No newline at end of file
+{"data":[{"stash":{"blocked":["{77063849-690a-4e48-b755-4e4e55e41421}:2.0.1","{77063849-690a-4e48-b755-4e4e55e41421}:2.0.2","{b519b898-afd5-4775-ba73-8f03fb656c48}:1.7","{b519b898-afd5-4775-ba73-8f03fb656c48}:1.6","{77063849-690a-4e48-b755-4e4e55e41420}:2.0.1"],"unblocked":[]},"schema":1613349505404,"key_format":"{guid}:{version}","stash_time":1613392509296,"id":"613370dd-2e02-4ca3-a269-85c6527656b9","last_modified":1613392707497},{"stash":{"blocked":["{77063849-690a-4e48-b755-4e4e55e41419}:2.0.0"],"unblocked":[]},"schema":1613327898824,"key_format":"{guid}:{version}","stash_time":1613349309216,"id":"b92ddfbf-c244-4f16-b0bf-bc297892a332","last_modified":1613349505315},{"stash":{"blocked":["{77063849-690a-4e48-b755-4e4e55e41418}:2.0.0","{77063849-690a-4e48-b755-4e4e55e41417}:2.0.0"],"unblocked":[]},"schema":1613263103868,"key_format":"{guid}:{version}","stash_time":1613327708735,"id":"e1e9959f-f0fd-41fb-bd4c-18258ef2b71e","last_modified":1613327898738},{"stash":{"blocked":["{77063849
-690a-4e48-b755-4e4e55e41415}:1.2.2","{77063849-690a-4e48-b755-4e4e55e41416}:2.0.0"],"unblocked":[]},"schema":1613245291114,"key_format":"{guid}:{version}","stash_time":1613262910143,"id":"07120033-47d3-4d4a-a73e-46ebb8a87f6d","last_modified":1613263103782},{"stash":{"blocked":["{77063849-690a-4e48-b755-4e4e55e41414}:1.2.2"],"unblocked":[]},"schema":1613155104703,"key_format":"{guid}:{version}","stash_time":1613176509475,"id":"0982d319-5150-41da-b732-9190a36e8230","last_modified":1613176703336},{"stash":{"blocked":["{77063849-690a-4e48-b755-4e4e55e41413}:1.2.2"],"unblocked":[]},"schema":1613133508117,"key_format":"{guid}:{version}","stash_time":1613154911032,"id":"978ee891-9c55-4669-bd01-3f1e0971d872","last_modified":1613155104613},{"stash":{"blocked":["{77063849-690a-4e48-b755-4e4e55e41411}:1.2.1"],"unblocked":[]},"schema":1613072490423,"key_format":"{guid}:{version}","stash_time":1613133308669,"id":"c29115a3-a56e-455f-ba9b-9824e4c3d73a","last_modified":1613133508001},{"stash":{"bl
ocked":["{77063849-690a-4e48-b755-4e4e55e414ce}:1.2.0"],"unblocked":[]},"schema":1613038647339,"key_format":"{guid}:{version}","stash_time":1613068509600,"id":"e56acc7d-216f-46eb-8ab1-e9d8c47c5dcd","last_modified":1613068700824},{"stash":{"blocked":["k7srff_enUS@k7computing.com:4.5","{d9f69507-a333-4749-b13c-d6e3d23f86a9}:1.0.8","{d9f69507-a333-4749-b13c-d6e3d23f86a9}:1.0.5","{d9f69507-a333-4749-b13c-d6e3d23f86a9}:1.0.3","k7srff_enUS@k7computing.com:3.94","k7srff_enUS@k7computing.com:4.0","{d9f69507-a333-4749-b13c-d6e3d23f86a9}:1.0.7","k7srff_enUS@k7computing.com:3.97","k7srff_enUS@k7computing.com:3.6","k7srff_enUS@k7computing.com:4.2","{d9f69507-a333-4749-b13c-d6e3d23f86a8}:1.0.1","k7srff_enUS@k7computing.com:3.96","k7srff_enUS@k7computing.com:4.4","{d9f69507-a333-4749-b13c-d6e3d23f86a9}:1.0.9","{d4256e4e-1c2f-441d-af5e-0b41f31a9797}:1.0.0.1","k7srff_enUS@k7computing.com:3.99","k7srff_enUS@k7computing.com:3.98","k7srff_enUS@k7computing.com:3.95","{d9f69507-a333-4749-b13c-d6e3d23f86
a9}:1.0.4","{d9f69507-a333-4749-b13c-d6e3d23f86a9}:1.1.0","{d9f69507-a333-4749-b13c-d6e3d23f86a9}:1.0.6","{d4256e4e-1c2f-441d-af5e-0b41f31a9797}:1.0.0.3","{d4256e4e-1c2f-441d-af5e-0b41f31a9797}:1.0.0.0","k7srff_enUS@k7computing.com:4.1","k7srff_enUS@k7computing.com:4.3","{d4256e4e-1c2f-441d-af5e-0b41f31a9797}:1.0.0.2"],"unblocked":[]},"schema":1612991426951,"key_format":"{guid}:{version}","stash_time":1613003709311,"id":"f868c324-a5f0-4543-9d7a-d2f5850cb650","last_modified":1613003872696},{"stash":{"blocked":["{af35d932-8f18-4184-a34d-ebcdde0d9b58}:1.3.2","{93beb8b6-f0e7-4abf-ae66-ae690c3a5435}:2.1.5","{f0bf9ba3-3979-4d00-bfdf-f666795fc05c}:1.5","{93beb8b6-f0e7-4abf-ae66-ae690c3a5435}:2.1.4","{af35d932-8f18-4184-a34d-ebcdde0d9b58}:1.3.1","web@safe:1","web@safe:3.1","{93beb8b6-f0e7-4abf-ae66-ae690c3a5435}:0.1.3","{93beb8b6-f0e7-4abf-ae66-ae690c3a5435}:2.1.3","web@safe:3","{93beb8b6-f0e7-4abf-ae66-ae690c3a5435}:0.1.0","{bfe294fc-8fb2-44a8-9d9c-c07789f6b79b}:3.1.3","{93beb8b6-f0e7-4abf
-ae66-ae690c3a5435}:0.1.2","{a82ccb5c-3343-46a3-87de-4a0612bc677e}:1.2","web@safe:2","{f0bf9ba3-3979-4d00-bfdf-f666795fc05c}:1.6","{93beb8b6-f0e7-4abf-ae66-ae690c3a5435}:2.1.6","{a82ccb5c-3343-46a3-87de-4a0612bc677e}:1.1","{93beb8b6-f0e7-4abf-ae66-ae690c3a5435}:0.1.1"],"unblocked":[]},"schema":1612899698936,"key_format":"{guid}:{version}","stash_time":1612982110078,"id":"32d1ad6f-721f-4134-80eb-b3a4c032fc22","last_modified":1612982276600},{"stash":{"blocked":["{f0a1fd5d-0003-4901-8230-8fad6d5fd6bb}:7","{f0a1fd5d-0004-4901-8230-8fad6d5fd6bb}:7","{f0a1fd5d-0122-4901-8230-8fad6d5fd6bb}:7","{f0a1fd5d-b0e3-4901-8230-8fad6d5fd6bb}:7","{f0a1fd5d-b0e3-4901-8230-8fad6d5fd6b5}:7","{f0a1fd5d-0012-4901-8230-8fad6d5fd6bb}:7"],"unblocked":[]},"schema":1612554090277,"key_format":"{guid}:{version}","stash_time":1612658110552,"id":"507ed45b-c9fc-42d3-ae40-ca2bc9daa5ce","last_modified":1612658267016},{"stash":{"blocked":["mclbjdibcpiohnhgkjkbfbnjcafkhani@chrome-store-foxified-134472114:1.1.0.24","{30
871474-c824-11ea-baa9-8765c22fa005}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa012}:1.0.0","eefcdkgmjbmicmdhbklmanlopaldndoa@chrome-store-foxified-1319958250:1.8.7.154","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-3895077580:2.11.36","{30871474-c824-11ea-baa9-8765c22fa019}:1.0.0","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-2073373592:2.15.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-3877447459:2.15.36","{30871474-c824-11ea-baa9-8765c22fa001}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa017}:1.0.0","{15e72cdb-45b9-49e3-be01-46ef689470e2}:2.0.1","opndlmolnpfipngojifolifojjnjeodc@chrome-store-foxified-2813192993:1.1.2","kkefmpciiofppglhmbfcpkhaighmiokb@chrome-store-foxified-1718221658:1.1.0.17","eefcdkgmjbmicmdhbklmanlopaldndoa@chrome-store-foxified-1005108540:1.8.7.153","{277f83be-4a2a-4402-9045-7638b0755ed3}:7","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-2563213750:2.11.36","lolbkkchdljdbmhopcpgkljjkccmimfn@chrome-store-foxified-410661158
:1.1.0.18","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified--1657531736:2.15.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-1087572539:2.15.36","agencljbacpfnclcbanachomfbeoilaa@chrome-store-foxified-1174064911:1.1.0.18","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-2898403266:2.15.36","{34386784-88ea-475b-9d69-ff4589bbb7e1}:2.0.1","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified--1401357359:2.15.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-3434336004:2.15.36","eefcdkgmjbmicmdhbklmanlopaldndoa@chrome-store-foxified-3434336004:1.8.7.154","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-2077545546:2.15.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-30164257:2.11.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-423616060:2.15.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified--228273241:2.15.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-1718221658:2.11.36","opndlmolnpfipngojifolifo
jjnjeodc@chrome-store-foxified--1977195359:1.1.8","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-619514512:2.15.36","lolbkkchdljdbmhopcpgkljjkccmimfn@chrome-store-foxified--1899122326:1.1.0.29","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-258276974:2.15.36","{30871474-c824-11ea-baa9-8765c22fa018}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa013}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa014}:1.0.0","opndlmolnpfipngojifolifojjnjeodc@chrome-store-foxified-2043184769:1.2.2","{30871474-c824-11ea-baa9-8765c22fa016}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa021}:1.0.0","agencljbacpfnclcbanachomfbeoilaa@chrome-store-foxified-2258738920:1.1.0.26","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-1357476909:2.15.36","agencljbacpfnclcbanachomfbeoilaa@chrome-store-foxified--1465243097:1.1.0.30","{30871474-c824-11ea-baa9-8765c22fa020}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa003}:1.0.0","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-189944489:2.11.36","opndlmoln
pfipngojifolifojjnjeodc@chrome-store-foxified--1615987039:1.1.8","{30871474-c824-11ea-baa9-8765c22fa007}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa008}:1.0.0","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-2678234944:2.15.36","{30871474-c824-11ea-baa9-8765c22fa006}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa010}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa009}:1.0.0","{30871474-c824-11ea-baa9-8765c22fa015}:1.0.0","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified--1064002838:2.15.36","{30871474-c824-11ea-baa9-8765c22fa004}:1.0.0","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified--2067351990:2.15.36","mclbjdibcpiohnhgkjkbfbnjcafkhani@chrome-store-foxified-4106468753:1.1.0.19","eefcdkgmjbmicmdhbklmanlopaldndoa@chrome-store-foxified-2117055892:1.8.7.158","{30871474-c824-11ea-baa9-8765c22fa011}:1.0.0","eefcdkgmjbmicmdhbklmanlopaldndoa@chrome-store-foxified-2117055892:1.8.7.156","lolbkkchdljdbmhopcpgkljjkccmimfn@chrome-store-foxified-233164420:1.1.0.21","djhgiahomjkabjdo
dlemhnhbnbfcomam@chromeStoreFoxified:2.11.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-2048638566:2.15.36","djhgiahomjkabjdodlemhnhbnbfcomam@chrome-store-foxified-3503911750:2.11.36","{30871474-c824-11ea-baa9-8765c22fa000}:1.0.0"],"unblocked":[]},"schema":1612528679480,"key_format":"{guid}:{version}","stash_time":1612550110481,"id":"974c8240-2d06-410c-ad60-4397f0af6065","last_modified":1612550275201},{"stash":{"blocked":["klbibkeccnjlkjkiokjodocebajanakg@chrome-store-foxified-1383279367:7.1.1","{8671d617-e162-4bcd-911d-f8294730fee6}:1.15.0","jid0-j253QhG0S1FBMdVUnCkPZnGZODY@jetpack:3.0.4","{8671d617-e162-4bcd-911d-f8294730fee6}:1.14.0","jid0-j253QhG0S1FBMdVUnCkPZnGZODY@jetpack:3.1.3","klbibkeccnjlkjkiokjodocebajanakg@chrome-store-foxified-226473039:6.21","protbrowsing@live:1.0","jid0-j253QhG0S1FBMdVUnCkPZnGZODY@jetpack:3.0.6","jid0-j253QhG0S1FBMdVUnCkPZnGZODY@jetpack:3.0.7","klbibkeccnjlkjkiokjodocebajanakg@chrome-store-foxified-1900218202:6.21","klbibkeccnjlkjkiokjod
ocebajanakg@chromeStoreFoxified-3770228565:6.21","jid0-j253QhG0S1FBMdVUnCkPZnGZODY@jetpack:3.1.1","klbibkeccnjlkjkiokjodocebajanakg@chrome-store-foxified-1383279367:7.1.0","klbibkeccnjlkjkiokjodocebajanakg@chromeStoreFoxified:6.21","jid0-j253QhG0S1FBMdVUnCkPZnGZODY@jetpack:3.0.5","klbibkeccnjlkjkiokjodocebajanakg@chromeStoreFoxified-2646436426:6.21","klbibkeccnjlkjkiokjodocebajanakg@chrome-store-foxified-unsigned:6.21","klbibkeccnjlkjkiokjodocebajanakg@chromeStoreFoxified-1413128184:6.21","klbibkeccnjlkjkiokjodocebajanakg@chromeStoreFoxified-3102274079:6.21","jid0-j253QhG0S1FBMdVUnCkPZnGZODY@jetpack:3.1.2","klbibkeccnjlkjkiokjodocebajanakg@chrome-store-foxified-1383279367:7.0.180","{1deb4c5e-d829-4785-8502-73ea7c09ef91}:1.0","{70e8f55d-6614-4089-a449-4c045d877091}:1.0","klbibkeccnjlkjkiokjodocebajanakg@chrome-store-foxified-signed-noit:6.21"],"unblocked":[]},"schema":1612463880709,"key_format":"{guid}:{version}","stash_time":1612528510590,"id":"3e41be89-859c-461a-aa9d-52d39d05e3ad",
"last_modified":1612528679397},{"stash":{"blocked":["{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.93","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.20","{00F0643E-B367-4779-B45D-7046EBA37A88}:19.0.0.0","{96725a7d-0fca-4221-bfb6-02f348911dd2}:3.0.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.47","{00F0643E-B367-4779-B45D-7046EBA37A88}:18.0.0.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.20","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.1.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.13","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.2.0","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.5.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-486053076:4.2.4","ibilnhaaodhkplcmaoemmbdncfijfmgb@chrome-store-foxified--345188950:0.2.1","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-916842729:5.4.0","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified-3342474:2.2","{86b3ae1b-d1b3-418d-98bd-f8049dc20ceb}:4.6.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1933282719:4.2.4","{a183
dedb-aded-499b-8be9-62998a60f997}:5.6.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.37","{DB981CCA-088E-4731-A4A2-2FE218703C0E}:1.6.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.34","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-unsigned:5.0.73","{66469e4d-1839-4e31-8f84-ada4aa2477b3}:1.0.1","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.8","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.14","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.82","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.7","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.68","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.13","{eeb79cd1-1caf-47ec-a6ae-d6560c3da5e4}:1.8","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1680958990:4.2.3","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.7","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1120272252:3.7.6","{35a9e404-2edc-482c-9b9a-fe4d44b9610a}:2.6","{DB981CCA-088E-4731-A4A2-2FE218703C0E}:1.6.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.59","{ae9a96e8-18c5-4d48-97ad-
5cab6242fd6d}:0.0.34","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--494468537:4.2.4","{a8e06133-7950-4b14-9441-a14d7129fb90}:0.0.16","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-312661624:3.8.5","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.4","aphhbehfagnghplpbpbgocknekagmblh@chrome-store-foxified--911736141:1.0.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.68","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1618853106:5.0.70","oknpgmaeedlbdichgaghebhiknmghffa@chrome-store-foxified--1785521069:1.3.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-358423849:3.7.6","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.4","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.0.1","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-unsigned:4.6.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.85","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.4","nilbfjdbacfdodpbdondbbkmoigehodg@chrome-store-foxified-unsigned:1.4.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.10","liele
okakhofondondkehlhghhbadcch@chrome-store-foxified-2071809672:1.5.85","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.31","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.75","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.8.0","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.33","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.51","{00D0643E-B367-4779-B45D-7046EBA37A89}:18.0.0.1","{0ffe0503-fbd3-43f4-9f4a-924c57d1751e}:3.0.21","{96725a7d-0fca-4221-bfb6-02f348911dd2}:4.0.1","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.1.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.92","gemnddmfpabjgeampfeenjpjmnlpehce@chrome-store-foxified-845894403:1.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.16","@best_video_downloader_pro:1.31.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--734840799:3.7.3","generated-dtdati16k7b0n6v9e3rwdp@chrome-store-foxified-887013873:3.0.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.67","@best_video_downloader_pro:1.40.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.81","generated-489j
jyrbfp9lcl7488w911@chrome-store-foxified-unsigned:4.5.1","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-3086233117:1.0.7","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--889141007:2.4","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.19","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1414967685:4.2.4","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.8.1","{f020060b-24a9-4842-9b4c-53cc0a882b86}:4.6.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.28","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-493975347:3.5.2","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.15","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.53","downloadforinstagramforfirefox@atv.ac:4.6.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.21","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.25","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1908193202:2.1.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.12","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.57","{
80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.78","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1851135401:4.6.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.66","ibjhnkphabemhpdmanbhdhkcongbhika@chrome-store-foxified--458021398:1.0.1","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.3.0","{d1f5ee18-bbca-41a6-b165-6981a80887a3}:4.6.0","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified-2041501751:2.4","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--200350945:3.8.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1842503193:3.8.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.61","{7dd357ba-8e94-47ce-9a48-33b03f4bfade}:5.0.73","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.80","lkoinhhnhdfifceljcladpjjkpbcfdhe@chrome-store-foxified--1644315676:2.93","{a5536104-bbca-40d8-97eb-e07e103663e3}:5.6.3","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--2019953811:2.4","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-2729266922:3.1.1","{80bfe6d3-de15-4f09-b96e-0
211f0f9eaa6}:2.2.60","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.99","pfnmibjifkhhblmdmaocfohebdpfppkf@chrome-store-foxified--911736141:2.2.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.65","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.1.0","@best_video_downloader_pro:1.5.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.35","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.39","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1163526355:5.0.1","{00F0643E-B367-4779-B45D-7046EBA37A88}:18.0.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.34","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.0","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.35","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--940653973:3.7.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.33","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.78","{00D0643E-B367-4779-B45D-7046EBA37A89}:20.0.2.3073","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.5","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.37
","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.25","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.65","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.98","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.10","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.46","{78788f05-2328-4c0b-8977-0efd9e3e23d5}:5.0.5","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--1367065207:1.7","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.23","{a8e06133-7950-4b14-9441-a14d7129fb90}:0.0.21","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.75","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-894791182:3.8.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1444642700:3.8.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-unsigned:4.6.2","{00F0643E-B367-4779-B45D-7046EBA37A88}:22.1.0.3089","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified--929033716:1.6.3","{96725a7d-0fca-4221-bfb6-02f348911dd2}:4.0.0","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.7.1","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.21","li
eleokakhofondondkehlhghhbadcch@chrome-store-foxified-136894983:1.6.3","generated-h2tsklnkdodui4vvrqoc1k@chrome-store-foxified-887013873:3.0.5","@best_video_downloader_pro:1.21.3","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.21","{db0d1586-8226-466a-a931-92623aa5f4f7}:4.1.0","@best_video_downloader_pro:1.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.52","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-282623196:3.5.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.64","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.0","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.0.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.74","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--2072142841:3.8.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.20","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.79","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.97","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified--1598706624:2.0.2","RostamifarARF@VK.UnBlock.4:1.0.5","{8
0bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.14","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.0.0","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.11","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.4","generated-3zssyfzqb1ma43lsvitqe2@chrome-store-foxified-unsigned:5.0.1","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified-1010076374:1.5.77","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--248178947:3.9.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1428994163:3.8.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.54","hccjagmehekcjjmihomeldfnjbpoeheo@chrome-store-foxified--1213574974:0.0.4","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--89287237:3.7.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--729557851:3.8.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-652520687:4.2.4","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified-1755024939:1.5.85","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.50","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-fo
xified--1952360768:2.4","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--2133018057:4.0.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1881033995:3.9.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.33","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1012580998:3.5.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-unsigned:4.5.1","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--1426280998:2.8","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.19","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--2133018057:4.1.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.37","{00F0643E-B367-4779-B45D-7046EBA37A88}:20.0.0.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.77","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified--2133018057:2.0.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--656425972:3.8.1","{00F0643E-B367-4779-B45D-7046EBA37A88}:19.0.0.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.22","{96725a7d-0fca-4221-bfb6-02f348911dd2}:
1.0.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.36","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-609247380:3.5.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1928884911:3.5.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.53","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.47","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.26","nbehdglehhfjbpoadmkccohkjnlmabie@chrome-store-foxified--164190015:1.8.29","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.6","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.74","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.54","@best_video_downloader_pro:1.20.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.1","{4e8a1f3d-603f-4bf5-9ad2-8095c02df724}:20","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified--1571243437:2.0.4","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.8","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--763369360:4.2.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.73","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.73","{96725a7d-0fc
a-4221-bfb6-02f348911dd2}:1.0.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1881033995:3.7.6","{58130a3b-aa92-4f2e-94ae-7b9c74d88bc7}:4.1.0","eikbfklcjampfnmclhjeifbmfkpkfpbn@chrome-store-foxified-1855334437:1.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.15","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.1.4","nilbfjdbacfdodpbdondbbkmoigehodg@chrome-store-foxified-144461997:1.5.2","{96725a7d-0fca-4221-bfb6-02f348911dd2}:3.0.1","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.9","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1465243101:5.0.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1089415019:4.2.93","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.11","{00D0643E-B367-4779-B45D-7046EBA37A89}:19.0.0.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.4","pcaaejaejpolbbchlmbdjfiggojefllp@chrome-store-foxified-unsigned:1.2","{00D0643E-B367-4779-B45D-7046EBA37A89}:18.0.0.8","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.48","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.1.3
","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--656425972:4.0.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.69","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.18","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-335603599:3.7.6","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.32","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-780520436:4.2.7","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.8","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.95","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-3086233117:1.1.0","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified--2133023695:2.0.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1548211297:4.2.7","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified--214885702:0.1.1","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.7","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.6","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1490478835:3.7.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--2133018057:4.
2.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.16","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.8","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.62","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--81532866:3.7.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.56","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-473233701:3.7.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.60","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--999356935:3.8.1","{56121097-648e-4b61-ba6f-d0c78f7e19f8}:0.0.1","{740168ef-fa61-4372-b91c-1960db0b642c}:1.0.2","hdnkilghapblggedopbjhnoclfaeoepl@chrome-store-foxified-459936354:1.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.29","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1413299438:3.7.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.8","lmcajpniijhhhpcnhleibgiehhicjlnk@chrome-store-foxified-1965445564:1.8.38","{ebbc5fcd-ee7c-4933-8c7d-e8f528f6718c}:4.6.52","{96725a7d-0fca-4221-bfb6-02f
348911dd2}:2.6.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.19","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.37","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.31","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-359202768:4.2.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.30","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-720279680:3.8.1","{422966d9-4efc-43bf-824c-9b4f6862014a}:2.1.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--220142198:3.9.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.39","{DB981CCA-088E-4731-A4A2-2FE218703C0E}:1.6.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--2133018057:4.2.1","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.6.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--2133018057:4.2.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.6","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified-152842987:2.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-4139248675:3.4.8","{b9d0f433-7a44-4498-9ef7-b610a2d22f
e2}:5.4.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.97","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1023805761:3.9.0","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.4.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-unsigned:4.2.92","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--709733140:4.1.9","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.76","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.10","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--328630297:3.8.3","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.42","{00F0643E-B367-4779-B45D-7046EBA37A88}:18.0.0.8","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.7","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.7.2","{00D0643E-B367-4779-B45D-7046EBA37A89}:19.0.0.0","{5b12a5a7-9b9f-42c5-b0ee-b4d6cdb2071f}:1.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.61","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1786304073:4.2.7","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.77","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3
.12","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.66","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.20","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.59","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.40","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--218368933:2.4","{8351af40-70aa-4a30-b990-60c8ad884ee9}:3.0.7","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.41","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1785521069:5.2.2","{5b12a5a7-9b9f-42c5-b0ee-b4d6cdb2071f}:1.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.43","opmifgdgmgcgnbfkjcjohedicldjilbg@chrome-store-foxified-2051411722:2017.10.5","omkoccdnelofncmfglaojiamckipjblb@chrome-store-foxified-343500981:6.85","{DB981CCA-088E-4731-A4A2-2FE218703C0E}:1.6.1","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1048482832:4.2.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.46","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.38","lieleokakhofondondkehlhghhbadcch@chrome-store-foxi
fied--1707443515:1.5.44","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.72","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.34","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--1151110169:1.7","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified--999356935:1.3.0","{00D0643E-B367-4779-B45D-7046EBA37A89}:22.1.0.3089","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.38","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--1966905954:2.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.40","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.63","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.17","{9987fda4-9fc6-47d2-9742-420e13ee384f}:5.0.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.55","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.70","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified--1169155740:1.6.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-720279680:3.8.5","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.1.5","olkpikmlhoaojbbmmpejnimig
lejmboe@chrome-store-foxified--1853359245:4.2.92","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.90","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.51","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.1.0","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified--1365659584:1.6.3","hdnkilghapblggedopbjhnoclfaeoepl@chrome-store-foxified-1561320299:1.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.67","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.4.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-503320555:3.8.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.30","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified--1010977698:1.6.3","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.5.0","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.22","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.18","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified--1120841623:2.0.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.63","universalsearch@adgoal.de:1.0","{541ff8b8-5b47-465d-
a93d-35efc612b773}:0.0.23","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-unsigned:4.3.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.17","{1e4cdba9-6293-427c-9b00-e4667fb6ab03}:5.2.2","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--1804787354:2.2","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.33","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.43","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-937916693:3.7.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.63","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.65","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.41","{00F0643E-B367-4779-B45D-7046EBA37A88}:18.0.1","extension@airtango.de:1.0","{56121097-648e-4b61-ba6f-d0c78f7e19f8}:1.0.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1068683358:3.8.1","opmifgdgmgcgnbfkjcjohedicldjilbg@chrome-store-foxified-138139831:2018.11.27","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-256379326:3.4.8","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.80","{80bfe6d3-de15-4f09-
b96e-0211f0f9eaa6}:2.1.72","{d72b2fe0-78f1-4b49-923b-e0fb54222062}:5.6.0","{4494d202-edff-42d9-bc0e-f599813a6669}:4.5.4","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.30","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--1171953868:2.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.49","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.76","{00D0643E-B367-4779-B45D-7046EBA37A89}:20.0.0.0","mnafnfdagggclnaggnjajohakfbppaih@chrome-store-foxified-2041501751:2.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.51","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1804412620:5.0.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.82","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.84","@best_video_downloader_pro:1.21.1","{8565f637-f83e-40b6-bbf4-040856597656}:1.0","ibilnhaaodhkplcmaoemmbdncfijfmgb@chrome-store-foxified-90020428:0.2.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.29","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--954698634:3.9.0","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.1.
2","{b5494250-1e28-4817-9c2e-266b3d4009ec}:4.6.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--709733140:3.9.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-2002577018:3.8.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--2133023695:3.8.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1142297270:4.1.4","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified--970176466:2.0.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--665314670:3.5.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.7","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-937815433:5.0.1","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--611981166:3.8.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-846845327:3.5.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.79","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.68","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified-1897695877:1.5.71","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.4","{80bfe6d3-de15-
4f09-b96e-0211f0f9eaa6}:2.1.6","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--723247456:2.2","{00F0643E-B367-4779-B45D-7046EBA37A88}:20.0.2.3073","{313390ca-5e68-490e-b719-7626266ea067}:2.2","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified-726742855:2.2","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.89","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--773776652:4.2.93","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.27","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.31","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.4.1","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.5.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.13","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.42","{422966d9-4efc-43bf-824c-9b4f6862014a}:2.1.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.13","{16d2e560-63ae-480c-96fd-dc6191cb6f4a}:5.0.1","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified-732511018:1.6.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxifie
d-unsigned:5.0.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-542128229:3.5.2","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.10","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--877523897:3.5.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.61","pcaaejaejpolbbchlmbdjfiggojefllp@chrome-store-foxified--1613306230:1.0","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--70196972:2.4","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.36","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.44","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--781637290:3.9.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.27","{00D0643E-B367-4779-B45D-7046EBA37A89}:18.0.0.5","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.9","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1380815919:3.7.1","omkoccdnelofncmfglaojiamckipjblb@chrome-store-foxified-228715104:7.3.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.17","{ae9a96e8-18c5-4d48-97ad-5cab6242fd6d}:0.0.32","olkpikmlhoaojbbmmpejnimiglejmboe@
chrome-store-foxified-1906908547:5.4.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.3","nilbfjdbacfdodpbdondbbkmoigehodg@chrome-store-foxified-3194137369:1.5.0","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified--1443775567:1.6.3","mnfchpadaikneonajggpooeppnmdolhc@chrome-store-foxified--154615471:1.3.4","@best_video_downloader_pro:1.13.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.52","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.33","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-759849205:3.5.0","{0d1f0b81-b611-4236-b9ac-319d55bcda52}:5.0.58","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--959554297:3.7.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.9","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.24","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.6","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.41","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.9","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-unsigned:4.5.4","{80
bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.60","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.16","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.34","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.18","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.25","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.26","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.11","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.83","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.55","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified-883162798:2.8","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--191425184:3.7.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.81","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.19","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.30","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.71","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.71","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.2.58","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.17","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2
.1.31","generated-r5p7e1zhkyzx2jskdtdxko@chrome-store-foxified-887013873:3.0.5","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.23","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1056300199:3.7.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--2072142841:3.7.6","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.57","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--683738962:3.7.4","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.6.1","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-929076650:3.9.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.88","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1111187486:3.8.5","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified-276123303:2.0.2","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified-323680213:2.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.45","{96725a7d-0fca-4221-bfb6-02f348911dd2}:2.7.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--551553838:3.8.3","{00F0643E-B367-4779-B45D-7046EBA37A88}:18
.0.0.5","{96725a7d-0fca-4221-bfb6-02f348911dd2}:1.0.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--1264995651:3.5.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.46","{36aacf25-4196-445d-becf-86fc16f84420}:4.1.0","hlkfcophdbgapjbmgpdcjoabpldffgeb@chrome-store-foxified-942375619:2.0.6","lieleokakhofondondkehlhghhbadcch@chrome-store-foxified--346569277:1.6.3","{a8e06133-7950-4b14-9441-a14d7129fb90}:0.0.18","{7b7ae187-9c29-4597-97cd-ad873a03936d}:4.2.93","ahbkhnpmoamidjgbneafjipbmdfpefad@chromeStoreFoxified:3.1.2","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.9","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.69","{491b9e3a-c15d-44ab-a47e-f69318771241}:4.5.4","ahbkhnpmoamidjgbneafjipbmdfpefad@chromeStoreFoxified-1417436187:3.2.3","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1758284494:3.5.0","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified--328630297:3.7.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.24","{541ff8b8-5b47-465d-a93d-35efc612b773}:0.0.52","ceoldlgkh
dbnnmojajjgfapagjccblib@chrome-store-foxified-1173161039:3.0.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.10","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-203671537:3.5.0","{f63d4a54-f60d-42b8-b4fc-0d1223ece74a}:4.1.0","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.3","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.12","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.1.15","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1548211297:3.8.3","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--586789565:2.4","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified--1367065207:2.4","{8dd4a706-f571-499a-906e-05ec8a260f7d}:0.0.24","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.27","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1177496359:3.8.5","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-942375619:4.2.92","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.3.7","{96725a7d-0fca-4221-bfb6-02f348911dd2}:5.0.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.3","olkpikmlhoaojbbmm
pejnimiglejmboe@chrome-store-foxified-1526583169:4.2.7","ceoldlgkhdbnnmojajjgfapagjccblib@chrome-store-foxified-1401321297:2.4","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-1078485420:4.2.2","olkpikmlhoaojbbmmpejnimiglejmboe@chrome-store-foxified-21434013:3.7.1","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:1.3.8","{a8e06133-7950-4b14-9441-a14d7129fb90}:0.0.14","{80bfe6d3-de15-4f09-b96e-0211f0f9eaa6}:2.2.49"],"unblocked":[]},"schema":1612454726597,"key_format":"{guid}:{version}","stash_time":1612463711454,"id":"fdf6db83-992a-4f7d-a7e2-0bfcd711975c","last_modified":1612463880592},{"stash":{"blocked":["{da6bd0bf-a339-4637-b3dd-64ffd39133c7}:1.3","{da6bd0bf-a339-4637-b3dd-64ffd39133c7}:1.1","{da6bd0bf-a339-4637-b3dd-64ffd39133c7}:1.2","{da6bd0bf-a339-4637-b3dd-64ffd39133c7}:1.0"],"unblocked":[]},"schema":1612391845247,"key_format":"{guid}:{version}","stash_time":1612398910298,"id":"71d5f424-080d-4690-96bc-7dbf1216649e","last_modified"
:1612399082220},{"stash":{"blocked":["{722a60c7-5dc1-43b2-829e-dfd3706128db}:7.2.1","{f02ae7a2-3b84-4a36-a726-b99f4c76296b}:6.23.70","{f0d969c6-5acf-484f-94ea-8e85de0f6797}:2.25.94","{f0db6dab-beea-499f-ba46-83589b5ec03c}:7.22.69","{f043ff8a-4e40-4074-86e1-ae079517d39d}:6.23.1","{8f5996d6-d68b-4ab1-9e8b-111999000111}:0.1.5","{62e8f3da-da36-4ac5-ab2f-4ebf21acced2}:0.0.11","{f0c00e9b-d81e-4f87-cf14-7764b725776d}:11.26.23","{f0b36786-0c0e-4fc5-d82d-05f86a5f6a4e}:12.5.70","{3a6b14b5-4f47-42f3-92a7-e9c6a676557d}:7.8.2","{f0ba39e4-c586-4574-f545-8d9649d93e01}:4.21.2","{32938223-f62d-4757-9c29-b67e351d8d41}:2.2.1","{4fcc317a-d0ed-4ab3-b575-c5afa345c78a}:4.1.1","{f0c10505-3562-4a0d-e30c-eb4cbb94fec2}:9.15.81","{aeaff4b6-665a-4b8c-90f6-343636943345}:5.4.1","{140cb73e-19c0-11eb-adc1-0242ac120002}:7.8.3","{f09ce502-2c0b-4fb7-abf2-fb85304091e6}:7.30.18","{f08c43a0-b8b8-4edc-a2ff-4bf0e1a4bd7a}:5.27.79","adblock-by-adblocking@adblock:7.2","adblock-by-adbkg@adblock:7.0","{56f3710d-338c-4e5c-ae1e-7
9c1124a93bb}:1.11","{45d9e056-a52a-47e0-a6a5-af40bc30cdff}:7.8.2","{f031aad1-9e27-4343-a6c1-d0a48f16d8cc}:7.15.3","{b4012389-8047-46e4-b0a6-0aaff98822c2}:4.1.4","{f07ef55a-fc98-483d-90b9-5f37726e1aff}:7.1.83","{20ac5255-b86e-4a7a-9d2f-a63e3f7f57fa}:5.2","{f0e08d3e-9563-4ba3-c941-1df43a673d69}:9.6.43","{5d2dbf71-a937-4cbc-840a-8c0e5d480086}:2.2.1","{45294c23-89c3-4acd-866a-535273a57ff3}:10.2","{62e8f3da-da36-4ac5-ab2f-4ebf21acced2}:0.0.10","{140cb73e-19c0-11eb-adc1-0242ac120002}:7.8.2","{f04522af-3e36-4efc-9fae-72d616cdd258}:1.28.87"],"unblocked":[]},"schema":1612355883722,"key_format":"{guid}:{version}","stash_time":1612377310584,"id":"eccb16d8-2097-44da-b4d5-12dd20ce69d3","last_modified":1612377483341},{"stash":{"blocked":["Search_Secure_clone_rDarjPyrbj@www.searchsecurepro.co:2.8.1.14","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.8.0.25","Search_Secure_jinGOnIoXh@www.searchsecurepro.co:2.7.6.3","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.5.4.2","Search_Secure_clone
_qcguECqMoY@www.searchsecurepro.co:2.7.0.9","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.6.11","Search_Secure_FnHRWGqeOa@www.searchsecure.co:2.8.1.14","Search_Secure_ByKsqSMauF@www.searchsecurepro.co:2.7.6.1","Search_Secure_clone_KCoBBoINJP@www.searchsecure.co:2.5.4.13","Search_Secure_clone_vMiRwzpIyN@www.searchsecurepro.co:2.7.2.13","Search_Secure_PYgylksdjn@www.searchsecurelite.co:2.8.1.23","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.7.6.15","Search_Secure_clone_RhnxFJfWCr@www.searchsecure.co:2.7.8.16","Search_Secure_clone_vMiRwzpIyN@www.searchsecurepro.co:2.8.1.19","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.18","Search_Secure_jinGOnIoXh@www.searchsecurepro.co:2.8.0.11","Search_Secure_clone_WptlavTcPe@www.searchsecurepro.co:2.7.0.3","Search_Secure_clone_KCoBBoINJP@www.searchsecure.co:2.8.1.21","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.7.6.12","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.31","Search_Secure_clone_qcguECqMoY(a)www.search
securepro.co:2.6.0.6","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.23","Search_Secure_jinGOnIoXh@www.searchsecurepro.co:2.8.0.10","Search_Secure_fNZiHVWPCr@www.searchsecureplus.co:2.8.1.12","Search_Secure_oGvaiSeDSS@www.searchsecurepro.co:2.8.1.6","Search_Secure_CbbbWIcTOz@www.searchsecurelite.co:2.8.1.11","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.35","Search_Secure_DfXRIXGALX@www.searchsecureprime.co:2.7.9.10","Search_Secure_clone_WptlavTcPe@www.searchsecurepro.co:2.7.2.6","Search_Secure_DqkvHhFLlr@www.searchsecurelite.co:2.8.0.7","Search_Secure_FnHRWGqeOa@www.searchsecure.co:2.7.6.9","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.28","Search_Secure_FnHRWGqeOa@www.searchsecure.co:2.8.0.14","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.38","Search_Secure_clone_vMiRwzpIyN@www.searchsecurepro.co:2.8.0.19","Search_Secure_DfXRIXGALX@www.searchsecureprime.co:2.7.9.11","Search_Secure_fNZiHVWPCr@www.searchsecureplus.co:2.7.6.3","Search_Secure_DfXRIXG
ALX@www.searchsecureprime.co:2.8.1.12","Search_Secure_jinGOnIoXh@www.searchsecurepro.co:2.7.6.6","Search_Secure_PYgylksdjn@www.searchsecurelite.co:2.8.0.22","Search_Secure_clone_vMiRwzpIyN@www.searchsecurepro.co:2.7.6.16","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.7.8.16","Search_Secure_clone_KCoBBoINJP@www.searchsecure.co:2.8.0.21","Search_Secure_GyQyTTzqnY@www.searchsecure.co:2.7.0.2","Search_Secure_clone_WptlavTcPe@www.searchsecurepro.co:2.8.1.14","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.7.6.19","Search_Secure_DfXRIXGALX@www.searchsecureprime.co:2.7.9.12","Search_Secure_FnHRWGqeOa@www.searchsecure.co:2.7.6.6","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.20","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.7.4.9","adblock-for-ff-lite@addons:5.5.1","Search_Secure_GyQyTTzqnY@www.searchsecure.co:2.8.1.8","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.7.6.13","Search_Secure_PYgylksdjn@www.searchsecurelite.co:2.7.6.3","Search_Secure_clone_qcguECq
MoY@www.searchsecurepro.co:2.7.0.10","{e48cdd5a-f9bd-41bf-9e06-5c384e214fb4}:3.1.2","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.8.1.22","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.7.4.11","Search_Secure_jinGOnIoXh@www.searchsecurepro.co:2.8.1.11","Search_Secure_clone_RhnxFJfWCr@www.searchsecure.co:2.5.4.6","Search_Secure_FnHRWGqeOa@www.searchsecure.co:2.7.6.3","{e48cdd5a-f9bd-41bf-9e06-5c384e214fb4}:3.1.3","Search_Secure_clone_KCoBBoINJP@www.searchsecure.co:2.5.4.17","Search_Secure_fNZiHVWPCr@www.searchsecureplus.co:2.7.6.8","Search_Secure_clone_rDarjPyrbj@www.searchsecurepro.co:2.7.3.6","Search_Secure_PYgylksdjn@www.searchsecurelite.co:2.8.0.23","Search_Secure_CbbbWIcTOz@www.searchsecurelite.co:2.8.0.11","Search_Secure_oGvaiSeDSS@www.searchsecurepro.co:2.8.0.5","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.7.6.17","Search_Secure_DfXRIXGALX@www.searchsecureprime.co:2.8.0.12","Search_Secure_GyQyTTzqnY@www.searchsecure.co:2.8.0.8","Search_Secure_VHHnquAFLT(a)www.searc
hsecurepro.co:2.7.9.22","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.8.0.39","Search_Secure_clone_RhnxFJfWCr@www.searchsecure.co:2.7.0.12","Search_Secure_CbbbWIcTOz@www.searchsecurelite.co:2.8.0.10","Search_Secure_clone_RhnxFJfWCr@www.searchsecure.co:2.8.1.26","Search_Secure_oGvaiSeDSS@www.searchsecurepro.co:2.7.6.1","Search_Secure_clone_RZIaqFySJv@www.searchsecure.co:2.8.1.7","Search_Secure_CbbbWIcTOz@www.searchsecurelite.co:2.7.6.3","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.7.8.20","Search_Secure_DqkvHhFLlr@www.searchsecurelite.co:2.7.6.2","Search_Secure_DfXRIXGALX@www.searchsecureprime.co:2.7.6.3","Search_Secure_clone_RhnxFJfWCr@www.searchsecure.co:2.8.0.24","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.7.7.15","Search_Secure_DqkvHhFLlr@www.searchsecurelite.co:2.8.0.6","Search_Secure_AyTXBGsgGu@www.searchsecure.co:2.7.6.13","Search_Secure_clone_RZIaqFySJv@www.searchsecure.co:2.7.0.3","Search_Secure_clone_vMiRwzpIyN@www.searchsecurepro.co:2.6.0.5","Search_Se
cure_DqkvHhFLlr@www.searchsecurelite.co:2.8.1.7","Search_Secure_clone_WptlavTcPe@www.searchsecurepro.co:2.8.0.14","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.8.0.21","Search_Secure_ByKsqSMauF@www.searchsecurepro.co:2.8.0.4","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.8.1.39","Search_Secure_VHHnquAFLT@www.searchsecurepro.co:2.7.9.19","Search_Secure_oGvaiSeDSS@www.searchsecurepro.co:2.8.0.6","Search_Secure_clone_RZIaqFySJv@www.searchsecure.co:2.8.0.7","Search_Secure_ByKsqSMauF@www.searchsecurepro.co:2.8.1.5","Search_Secure_clone_RhnxFJfWCr@www.searchsecure.co:2.5.4.3","Search_Secure_clone_qcguECqMoY@www.searchsecurepro.co:2.7.6.14","Search_Secure_jinGOnIoXh@www.searchsecurepro.co:2.7.6.2","Search_Secure_fNZiHVWPCr@www.searchsecureplus.co:2.8.0.11","Search_Secure_clone_rDarjPyrbj@www.searchsecurepro.co:2.8.0.14"],"unblocked":[]},"schema":1612291251388,"key_format":"{guid}:{version}","stash_time":1612355709914,"id":"88169fca-029d-4cd3-9957-ddcd86937078","last_modifie
d":1612355883621},{"stash":{"blocked":["{1caddc29-d17d-4d9d-8358-1776524b76a7}:4.6.0","{c23c69a7-f889-447c-9d6b-1595be8035bc}:4.6.0"],"unblocked":[]},"schema":1612208490333,"key_format":"{guid}:{version}","stash_time":1612290909768,"id":"93a6642a-77e3-4599-b594-737540a35dbb","last_modified":1612291251319},{"stash":{"blocked":["{9a11aa32-1648-4f7e-9e09-a815771da03a}:3.5.0","{5cd2bcce-7f1f-4edb-8c6b-195463117e5c}:1.5","{5cd2bcce-7f1f-4edb-8c6b-195463117e5c}:1.4","{5cd2bcce-7f1f-4edb-8c6b-195463117e5c}:1.3","{5cd2bcce-7f1f-4edb-8c6b-195463117e5c}:1.6"],"unblocked":[]},"schema":1612193900309,"key_format":"{guid}:{version}","stash_time":1612204509682,"id":"177897ae-bab6-4ac2-a957-b8c8550f1f61","last_modified":1612204673109},{"stash":{"blocked":["{ce305ab1-e461-4c00-87bb-e9c18ead5c80}:3.2","{125dc5f0-45f5-429d-93a6-e865d67efbee}:5.3","{91354ba7-4680-4500-b9d3-d1cea876fdf0}:3.2","{650444fa-e04b-4340-a57f-d053287d4d73}:0.0.0.4","{ebb273e7-5eda-4be6-8bfa-f7796f9839a0}:1.3","{125dc5f0-45f5-42
9d-93a6-e865d67efbee}:3.4","{125dc5f0-45f5-429d-93a6-e865d67efbee}:3.7","{ebb273e7-5eda-4be6-8bfa-f7796f9839a0}:1.2","{125dc5f0-45f5-429d-93a6-e865d67efbee}:5.2","{ce305ab1-e461-4c00-87bb-e9c18ead5c80}:3.5","{125dc5f0-45f5-429d-93a6-e865d67efbee}:3.8","{125dc5f0-45f5-429d-93a6-e865d67efbee}:5","{91354ba7-4680-4500-b9d3-d1cea876fdf0}:3.3","{91354ba7-4680-4500-b9d3-d1cea876fdf0}:4","{650444fa-e04b-4340-a57f-d053287d4d73}:0.0.0.3","{91354ba7-4680-4500-b9d3-d1cea876fdf0}:4.1","{ce305ab1-e461-4c00-87bb-e9c18ead5c80}:3.3","{125dc5f0-45f5-429d-93a6-e865d67efbee}:3.5","{91354ba7-4680-4500-b9d3-d1cea876fdf0}:3.4","{125dc5f0-45f5-429d-93a6-e865d67efbee}:4","{ce305ab1-e461-4c00-87bb-e9c18ead5c80}:3.4","{125dc5f0-45f5-429d-93a6-e865d67efbee}:5.4","{125dc5f0-45f5-429d-93a6-e865d67efbee}:3.3","{91354ba7-4680-4500-b9d3-d1cea876fdf0}:3.5","{ce305ab1-e461-4c00-87bb-e9c18ead5c80}:4","{125dc5f0-45f5-429d-93a6-e865d67efbee}:5.8","{bf491c90-50c9-42d5-9324-68553f3dc952}:1.6","{bf491c90-50c9-42d5-9324-685
53f3dc952}:1.3","{ebb273e7-5eda-4be6-8bfa-f7796f9839a0}:1.1","{125dc5f0-45f5-429d-93a6-e865d67efbee}:4.1","{ce305ab1-e461-4c00-87bb-e9c18ead5c80}:4.1","{bf491c90-50c9-42d5-9324-68553f3dc952}:1.5","{125dc5f0-45f5-429d-93a6-e865d67efbee}:3.2","{bf491c90-50c9-42d5-9324-68553f3dc952}:1.4"],"unblocked":[]},"schema":1611865516444,"key_format":"{guid}:{version}","stash_time":1611880509602,"id":"309fe062-5c0c-4e18-9eaf-564641c17f05","last_modified":1611880670153},{"stash":{"blocked":["{f84632a2-a8ce-4301-a928-b607341326d9}:1.0.0","{c8894c96-32a0-48ef-91f6-535bc86b3304}:1.0.0","{c8894c96-32a0-48ef-91f6-535bc86b3304}:1.0.1","{f84632a2-a8ce-4301-a928-b607341326d9}:1.0.2","{bc6097ec-a4f0-4312-8be1-1dd507d6ca29}:1.1","{f84632a2-a8ce-4301-a928-b607341326d9}:1.0.3","{f84632a2-a8ce-4301-a928-b607341326d9}:1.0.1","{0ff06b23-7d18-4471-b249-1da0c9de7f4c}:1.0","{1486cd88-7a67-4992-b904-e6d6433079c9}:1.0"],"unblocked":[]},"schema":1611837264838,"key_format":"{guid}:{version}","stash_time":1611858910368,
"id":"29960c79-0b6e-4f09-9ca0-a0ed35263741","last_modified":1611859082781},{"stash":{"blocked":["newtabsearch@ezdrivingdirections.org:1.0.3","newtabsearchwebnew@ezdrivingdirections.org:1.0.4","newtabsearch@ezdrivingdirections.org:1.0.5","newtabsearch@ezdrivingdirections.org:1.0.1","newtabsearchweb@ezdrivingdirections.org:1.0.5","newtabsearchweb@ezdrivingdirections.org:1.0.2","newtabsearchwebnew@ezdrivingdirections.org:1.0.5","newtabsearchwebnew@ezdrivingdirections.org:1.0.6"],"unblocked":[]},"schema":1611766438966,"key_format":"{guid}:{version}","stash_time":1611772509683,"id":"5acae0aa-e56d-46a4-99c5-a5e6ce482c36","last_modified":1611772681231},{"stash":{"blocked":["{abfba652-ee63-4de2-92ef-9c914bccbfe7}:0.0.0.2","{ffdbc20c-e15c-4ddb-96d5-5ab89f2c6094}:1.4","{ffdbc20c-e15c-4ddb-96d5-5ab89f2c6094}:1.5","{ffdbc20c-e15c-4ddb-96d5-5ab89f2c6094}:1.0","{abfba652-ee63-4de2-92ef-9c914bccbfe7}:0.0.1.0","{abfba652-ee63-4de2-92ef-9c914bccbfe7}:0.0.1.3","{abfba652-ee63-4de2-92ef-9c914bccbfe7}:
0.0.1.2","{ffdbc20c-e15c-4ddb-96d5-5ab89f2c6094}:1.3","{abfba652-ee63-4de2-92ef-9c914bccbfe7}:0.0.0.3","{abfba652-ee63-4de2-92ef-9c914bccbfe7}:0.0.1.4"],"unblocked":[]},"schema":1611690098968,"key_format":"{guid}:{version}","stash_time":1611750909796,"id":"90ee7b11-cc0d-4e76-b201-83114e136157","last_modified":1611751081351},{"stash":{"blocked":[],"unblocked":["{169603cc-2d16-48d2-a6de-4be354841f00}:1.4","{dda0f40c-a83b-491a-851d-af8ccb379a8c}:1.0","{6e4f4a3d-dc55-4315-9915-2db61587cfc1}:1.2","{a13bfd70-f2c8-4ed5-8725-87bad020519e}:1.1","{6e4f4a3d-dc55-4315-9915-2db61587cfc1}:1.0","{dde15009-d20a-44e3-89c3-94ebb39a6e48}:1.1","{dde15009-d20a-44e3-89c3-94ebb39a6e48}:1.0","{169603cc-2d16-48d2-a6de-4be354841f00}:1.5","{169603cc-2d16-48d2-a6de-4be354841f00}:1.1","{b104f2f7-126f-4fe0-b0b1-241c5771c801}:1.1","{a13bfd70-f2c8-4ed5-8725-87bad020519e}:1.0","{dda0f40c-a83b-491a-851d-af8ccb379a8c}:1.1","{b104f2f7-126f-4fe0-b0b1-241c5771c801}:1.2","{b104f2f7-126f-4fe0-b0b1-241c5771c801}:1.0"]},"sc
hema":1611344495773,"key_format":"{guid}:{version}","stash_time":1611362109904,"id":"6503ad8d-9458-427b-9aa2-2f3d2f908afa","last_modified":1611362279203},{"stash":{"blocked":["aiimdkdngfcipjohbjenkahhlhccpdbc@chrome-store-foxified--1840032839:31.2.7","{fdba7f02-b117-41a9-a9f2-04e30537b015}:5.4","{fdba7f02-b117-41a9-a9f2-04e30537b015}:2.0","aiimdkdngfcipjohbjenkahhlhccpdbc@chrome-store-foxified--1840032839:31.2.9","{fdba7f02-b117-41a9-a9f2-04e30537b015}:29.4.1","{fdba7f02-b117-41a9-a9f2-04e30537b015}:31.2.9","{fdba7f02-b117-41a9-a9f2-04e30537b015}:31.2.7","{fdba7f02-b117-41a9-a9f2-04e30537b015}:30.2.1","{fdba7f02-b117-41a9-a9f2-04e30537b015}:31.2.8"],"unblocked":[]},"schema":1611173716546,"key_format":"{guid}:{version}","stash_time":1611232509311,"id":"92950876-f566-4f11-bf97-1dab9b3ff89c","last_modified":1611232681393},{"stash":{"blocked":["{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.0.3","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.6","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.3","{aa
a6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.9.1","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.9.0","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.6.9","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.8","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.5","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.2","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.7","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.6","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.0","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.9.3","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.6.8","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.1","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.0.1","@snext:1.0.0","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.0.5","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.7","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.0.4","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.4","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.4","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.0","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.6.7","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.1"
,"{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.9.2","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.8","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.5","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.0.2","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.3","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.9","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.7.9","{aaa6d5fe-66fe-4a94-a4b7-c4a8d0698de3}:1.8.2"],"unblocked":[]},"schema":1611146276466,"key_format":"{guid}:{version}","stash_time":1611167710497,"id":"24fc54a9-ffbb-4f54-8885-78b1802ed928","last_modified":1611167876869},{"stash":{"blocked":["Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.0","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.6","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.5","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.18","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.14","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.4","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.1","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.9","{68060f98-7f16-47d1-954f-16a7d6f42
79c}:1.0.3","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.7","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.0","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.2","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.7","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.8","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.0","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.4","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.6","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.2","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.5","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.4","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.6","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.17","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.2.0","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.9","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.3.0","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.15","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.2","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.3","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.1.3","{68060f98-7f16
-47d1-954f-16a7d6f4279c}:1.1.8","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.16","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.0.0","{68060f98-7f16-47d1-954f-16a7d6f4279c}:1.0.1","Ezy_Photo_Tab_OZJKjwFFKE@ezyphototab.com:1.0.2.1"],"unblocked":[]},"schema":1611059875752,"key_format":"{guid}:{version}","stash_time":1611146109201,"id":"19a83ce7-a6d1-4e9c-abe8-39ec419ed24c","last_modified":1611146276403},{"stash":{"blocked":["{c3a241e7-2fd3-4ffe-ba03-571c72a5c72a}:1.0.0","{848113fd-80b2-426f-8098-b57c766a9e17}:1.0"],"unblocked":[]},"schema":1610998890298,"key_format":"{guid}:{version}","stash_time":1611059709202,"id":"8b1e0bc2-42f0-43d0-b07e-d5022ac96f7d","last_modified":1611059875682},{"stash":{"blocked":["adblockPlusYNSe@addons:5.0.5","{c23c69a7-f889-447c-9d6b-1594be8025bc}:9.0.0","adblockPlusYNSe@addons:5.0.2","securitymod@pes.com:1.1","borderifyhshsg@adblo.com:6.6.0","{c23c69a7-f889-447c-9d6b-7595be8035bc}:6.7.0","{c522b046-fe6b-4cb2-aa4f-ad0385a6a27f}:9.0.0","addon556ggF@example
.com:6.3.0","adblockPlusYNSedSDSd@addons:6.1.0","adblockPlusYNSe@addons:6.0.0","borderifyhshsg@adblo.com:6.5.0","adblockPlusYNSe@addons:5.0.1","{2e2e67e1-7ec0-4f81-9942-f2b6d08abba2}:6.7.0","{c23c69a7-f889-447c-9d6b-1594be8025bc}:8.1.9","adblockPlusYNSehGTRTY@addons:6.4.0"],"unblocked":[]},"schema":1610973482141,"key_format":"{guid}:{version}","stash_time":1610994910421,"id":"8c6f82ba-b122-430d-9bab-7e2998a4f52d","last_modified":1610995076115},{"stash":{"blocked":["{bcb5df8f-61b5-4500-8c43-5617f0a79bd1}:6.7.2021","{46f1c3e9-9421-4b0f-a88c-7c40841b9280}:6.7.2021","{dc9c6f40-089a-4582-9d5b-211e882ff52b}:1.0","{78944020-08fb-4d9e-a197-26cb44435b52}:1.0"],"unblocked":[]},"schema":1610826092142,"key_format":"{guid}:{version}","stash_time":1610973308911,"id":"c3f49c46-9edb-48f2-8878-873a8b342c59","last_modified":1610973482068},{"stash":{"blocked":["{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:9.6.0.13","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:9.4.0.1","searchme@mybrowserbar.com:9.4.0.34","{A87A3
1AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.4.0.33","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:9.6.0.10","{515d1883-7376-4db3-b710-8d76a27231b1}:3.6.0.9","{76239af6-9293-43ed-aa86-4d871453c7c9}:3.6.0.10","{515d1883-7376-4db3-b710-8d76a27231b1}:9.6.0.10","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:9.6.0.13","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:3.6.0.10","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:9.4.0.1","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:3.4.0.1","searchme@mybrowserbar.com:9.6.0.1","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:3.4.0.1","{ca750902-d68a-4670-adef-bb1ed70b87b4}:9.4.0.1","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.6.0.4","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:9.6.0.10","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:3.6.0.12","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:3.6.0.16","{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:3.6.0.13","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.31","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:9.6.0.10","{21e161fe-59ff-41d1-8653-310b0feb13ef}:9.6.0.10","{b2bfe60c-eef8-4e20-833
4-c53afdc1ffdd}:9.6.0.16","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:3.6.0.13","{ca750902-d68a-4670-adef-bb1ed70b87b4}:3.6.0.13","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:9.6.0.16","{83052879-afb9-4cd8-98c3-e805f5614026}:3.6.0.10","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:9.6.0.10","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:3.6.0.12","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:3.6.0.9","{e51a3d1b-600e-43d5-8116-817a1d964285}:3.6.0.9","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:3.6.0.16","{79da9acc-c057-4f43-b6c3-041f863ee074}:3.6.0.13","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:9.4.0.1","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:3.6.0.12","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:9.6.0.16","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.5.0.6","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:3.6.0.16","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:9.6.0.10","{51158baf-dd07-417a-a195-0722d0d22da6}:9.6.0.10","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:3.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.6.0.4","{3c59c791-aeec-44bb-af60-f
f112eea18e3}:9.6.0.13","searchme@mybrowserbar.com:3.4.0.28","{bb9b852f-1129-439b-91df-6583bd135c6f}:3.4.0.1","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:3.6.0.13","{e51a3d1b-600e-43d5-8116-817a1d964285}:9.4.0.1","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:9.4.0.34","{181f5e13-15c8-4103-8e08-4283da8beb97}:9.6.0.10","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.4.0.38","{76239af6-9293-43ed-aa86-4d871453c7c9}:3.6.0.16","searchme@mybrowserbar.com:3.5.0.2","{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:3.6.0.10","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:9.6.0.1","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:3.6.0.10","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:3.6.0.10","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:3.6.0.10","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.6.0.5","{a1d72db8-4198-408e-9f30-f9df0c242580}:9.6.0.16","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:9.6.0.13","{ca750902-d68a-4670-adef-bb1ed70b87b4}:3.6.0.16","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:9.4.0.1","{ab937f68-342b-4481-89d5-288f05876ec2}:3.6.0.16","{19F6
FEE2-01F5-44F2-8618-1AE34A8111EF}:9.6.0.1","{9971fa51-12c0-4f03-933c-8fd80043c666}:3.6.0.13","searchme@mybrowserbar.com:3.6.0.2","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:3.6.0.16","{515d1883-7376-4db3-b710-8d76a27231b1}:3.6.0.16","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.6.0.6","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:3.6.0.16","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:9.6.0.16","{e51a3d1b-600e-43d5-8116-817a1d964285}:3.6.0.12","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:3.6.0.13","{71a729ac-3a65-4988-8007-794124369292}:9.6.0.16","{ca750902-d68a-4670-adef-bb1ed70b87b4}:3.6.0.9","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.4.0.34","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:3.6.0.10","{51158baf-dd07-417a-a195-0722d0d22da6}:3.6.0.9","{9971fa51-12c0-4f03-933c-8fd80043c666}:9.6.0.10","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:3.6.0.12","{B489E004-0A0C-496D-A374-33AF61E54469}:9.6.0.5","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:3.6.0.10","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:9.6.0.16","{353dd9ca-1cd6-49a4-9
89d-c38c9ef480c5}:3.6.0.12","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:3.6.0.13","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.19","{b7a6d831-71e7-4af7-833f-bef174626e18}:3.6.0.10","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:3.4.0.1","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:9.6.0.10","{B489E004-0A0C-496D-A374-33AF61E54469}:3.6.0.4","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.1","{013f5925-9580-4512-a9d4-31475773387e}:9.6.0.13","{a1d72db8-4198-408e-9f30-f9df0c242580}:9.6.0.10","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.5.0.1","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.12","searchme@mybrowserbar.com:3.6.0.6","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:9.6.0.16","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:3.6.0.10","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:9.6.0.16","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.4.0.30","{9971fa51-12c0-4f03-933c-8fd80043c666}:3.6.0.12","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:3.6.0.10","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:3.6.0.16","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6
D}:3.4.0.31","{3c59c791-aeec-44bb-af60-ff112eea18e3}:3.6.0.12","{ca750902-d68a-4670-adef-bb1ed70b87b4}:9.6.0.16","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.4.0.29","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:3.6.0.12","{aa4be34a-2e93-4618-a241-975ec11fb606}:3.6.0.13","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:9.4.0.1","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:9.4.0.1","web@123:1.0","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.14","{bb9b852f-1129-439b-91df-6583bd135c6f}:3.6.0.12","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:3.6.0.16","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:9.6.0.10","{ca750902-d68a-4670-adef-bb1ed70b87b4}:3.4.0.1","{B489E004-0A0C-496D-A374-33AF61E54469}:9.4.0.34","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:3.4.0.1","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:9.6.0.16","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:3.6.0.12","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:9.6.0.16","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.6.0.5","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:9.6.0.16","{19F6FEE2-01F5-44F2-8618
-1AE34A8111EF}:3.6.0.5","{ca750902-d68a-4670-adef-bb1ed70b87b4}:9.6.0.13","{bb9b852f-1129-439b-91df-6583bd135c6f}:3.6.0.9","{71a729ac-3a65-4988-8007-794124369292}:3.6.0.9","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:9.6.0.10","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:3.6.0.12","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.4.0.33","{013f5925-9580-4512-a9d4-31475773387e}:3.6.0.10","{a192bf54-089f-4325-ac25-7eafcd17a342}:3.6.0.10","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:3.6.0.13","{515d1883-7376-4db3-b710-8d76a27231b1}:9.6.0.16","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:3.6.0.10","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:3.6.0.13","{a1d72db8-4198-408e-9f30-f9df0c242580}:3.6.0.10","{aa4be34a-2e93-4618-a241-975ec11fb606}:3.6.0.12","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:9.4.0.1","{9971fa51-12c0-4f03-933c-8fd80043c666}:3.4.0.1","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:9.6.0.13","{93c2c934-4922-4774-bf29-691fbd7246ff}:3.6.0.12","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:9.4.0.1","{A87A31AD-9EEF-47E6-B8CF-99
1AF9DCF4B6}:9.6.0.5","{83052879-afb9-4cd8-98c3-e805f5614026}:3.6.0.13","{71a729ac-3a65-4988-8007-794124369292}:9.6.0.10","{ab937f68-342b-4481-89d5-288f05876ec2}:3.6.0.10","searchme@mybrowserbar.com:3.5.0.6","{7a526449-3a92-426f-8ca4-47439918f2b1}:9.6.0.16","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:9.6.0.13","{9971fa51-12c0-4f03-933c-8fd80043c666}:3.6.0.10","{a192bf54-089f-4325-ac25-7eafcd17a342}:3.6.0.16","{B489E004-0A0C-496D-A374-33AF61E54469}:3.5.0.1","{79da9acc-c057-4f43-b6c3-041f863ee074}:3.6.0.16","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:9.4.0.1","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:9.6.0.10","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:3.6.0.13","{aa4be34a-2e93-4618-a241-975ec11fb606}:3.6.0.10","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:3.6.0.16","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:3.6.0.12","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:3.6.0.12","{51158baf-dd07-417a-a195-0722d0d22da6}:3.6.0.12","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.6.0.6","{9971fa51-12c0-4f03-933c-8fd80043c666}:9.6
.0.13","{B489E004-0A0C-496D-A374-33AF61E54469}:3.6.0.6","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.4.0.32","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:3.6.0.13","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.4.0.34","{9971fa51-12c0-4f03-933c-8fd80043c666}:9.6.0.16","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:3.6.0.9","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.4.0.38","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:3.4.0.1","{181f5e13-15c8-4103-8e08-4283da8beb97}:3.4.0.1","{93c2c934-4922-4774-bf29-691fbd7246ff}:9.4.0.1","{83052879-afb9-4cd8-98c3-e805f5614026}:3.4.0.1","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:9.6.0.16","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:3.6.0.10","{21e161fe-59ff-41d1-8653-310b0feb13ef}:3.4.0.1","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:9.6.0.16","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:3.4.0.1","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:3.6.0.10","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:9.4.0.1","{93c2c934-4922-4774-bf29-691fbd7246ff}:3.6.0.13","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:3.6.0.16"
,"{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:9.6.0.16","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:9.4.0.1","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:9.6.0.13","{ab937f68-342b-4481-89d5-288f05876ec2}:9.6.0.13","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:9.6.0.13","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:3.4.0.1","{7a526449-3a92-426f-8ca4-47439918f2b1}:3.6.0.10","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.35","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:3.6.0.16","{51158baf-dd07-417a-a195-0722d0d22da6}:9.6.0.16","{a192bf54-089f-4325-ac25-7eafcd17a342}:9.6.0.13","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:9.4.0.1","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:9.6.0.10","{181f5e13-15c8-4103-8e08-4283da8beb97}:9.4.0.1","{21e161fe-59ff-41d1-8653-310b0feb13ef}:3.6.0.9","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:3.6.0.9","{79da9acc-c057-4f43-b6c3-041f863ee074}:9.4.0.1","searchme@mybrowserbar.com:3.4.0.33","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:9.6.0.13","searchme@mybrowserbar.com:9.5.0.2","{415B04AB-808E-45AA-B994-B37E
73F911CE}:3.4.0.22","{013f5925-9580-4512-a9d4-31475773387e}:9.4.0.1","{3c59c791-aeec-44bb-af60-ff112eea18e3}:9.4.0.1","{b7a6d831-71e7-4af7-833f-bef174626e18}:3.6.0.12","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:3.6.0.10","searchme@mybrowserbar.com:3.4.0.29","{51158baf-dd07-417a-a195-0722d0d22da6}:9.4.0.1","{b7a6d831-71e7-4af7-833f-bef174626e18}:3.4.0.1","{b7a6d831-71e7-4af7-833f-bef174626e18}:9.6.0.13","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:3.6.0.13","{76239af6-9293-43ed-aa86-4d871453c7c9}:3.4.0.1","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:3.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.5.0.6","{e51a3d1b-600e-43d5-8116-817a1d964285}:9.6.0.13","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:3.4.0.1","{76239af6-9293-43ed-aa86-4d871453c7c9}:9.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:9.5.0.1","{a192bf54-089f-4325-ac25-7eafcd17a342}:9.6.0.16","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:3.6.0.13","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:3.4.0.1","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:3.6.0.9","
{046c09c5-321a-401b-acb7-7ec1d73bbd77}:3.6.0.13","searchme@mybrowserbar.com:3.5.0.5","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:3.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.12","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.4.0.38","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:3.6.0.9","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:9.6.0.10","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:3.6.0.10","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:3.6.0.16","{515d1883-7376-4db3-b710-8d76a27231b1}:3.6.0.12","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.27","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:3.6.0.9","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:9.6.0.16","{a1d72db8-4198-408e-9f30-f9df0c242580}:3.4.0.1","{aa4be34a-2e93-4618-a241-975ec11fb606}:9.6.0.16","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:9.6.0.13","{83052879-afb9-4cd8-98c3-e805f5614026}:9.4.0.1","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:9.6.0.16","{e51a3d1b-600e-43d5-8116-817a1d964285}:3.4.0.1","searchme@mybrowserbar.com:9.6.0.5","{181f5e13-15c8-4103-8e08-4283da
8beb97}:3.6.0.10","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:9.6.0.13","{7a526449-3a92-426f-8ca4-47439918f2b1}:9.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.14","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:3.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:9.6.0.6","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:9.6.0.16","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.6.0.6","{181f5e13-15c8-4103-8e08-4283da8beb97}:3.6.0.16","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.6.0.6","{bb9b852f-1129-439b-91df-6583bd135c6f}:9.6.0.16","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:3.6.0.16","{71a729ac-3a65-4988-8007-794124369292}:3.6.0.16","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:3.4.0.1","{013f5925-9580-4512-a9d4-31475773387e}:3.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.5.0.1","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:9.4.0.1","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:9.6.0.13","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.4.0.30","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:9.6.0.10","{b1af0454-f88e-46d2-ad7e-f7d88c664ab
8}:3.6.0.13","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:3.6.0.9","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.6.0.7","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:3.6.0.16","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.6.0.4","{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:3.6.0.12","{93c2c934-4922-4774-bf29-691fbd7246ff}:3.6.0.10","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:9.6.0.10","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.6.0.1","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:9.6.0.13","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:3.6.0.9","{93c2c934-4922-4774-bf29-691fbd7246ff}:3.6.0.9","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:9.6.0.10","{e51a3d1b-600e-43d5-8116-817a1d964285}:3.6.0.16","{3c59c791-aeec-44bb-af60-ff112eea18e3}:9.6.0.10","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.5.0.6","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:3.4.0.1","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:9.6.0.13","{a1d72db8-4198-408e-9f30-f9df0c242580}:9.4.0.1","searchme@mybrowserbar.com:3.4.0.31","{83052879-afb9-4cd8-98c3-e805f5614026}:9.6.0.10","{ca75
0902-d68a-4670-adef-bb1ed70b87b4}:9.6.0.10","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.39","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:3.6.0.9","{93c2c934-4922-4774-bf29-691fbd7246ff}:3.6.0.16","{B489E004-0A0C-496D-A374-33AF61E54469}:3.6.0.1","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:9.4.0.1","{013f5925-9580-4512-a9d4-31475773387e}:9.6.0.16","{9971fa51-12c0-4f03-933c-8fd80043c666}:9.4.0.1","{51158baf-dd07-417a-a195-0722d0d22da6}:9.6.0.13","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:3.4.0.1","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:3.4.0.1","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:9.6.0.10","{b7a6d831-71e7-4af7-833f-bef174626e18}:9.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:9.4.0.34","{9971fa51-12c0-4f03-933c-8fd80043c666}:3.6.0.16","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.32","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:3.6.0.9","{a1d72db8-4198-408e-9f30-f9df0c242580}:3.6.0.13","searchme@mybrowserbar.com:3.5.0.4","{515d1883-7376-4db3-b710-8d76a27231b1}:9.6.0.13","{f0bd0efa-2a31-4729-86b
c-1b4236f0e626}:3.6.0.12","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:3.6.0.10","{b7a6d831-71e7-4af7-833f-bef174626e18}:3.6.0.9","{a1d72db8-4198-408e-9f30-f9df0c242580}:3.6.0.12","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:3.6.0.12","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:3.6.0.13","{a192bf54-089f-4325-ac25-7eafcd17a342}:3.6.0.13","{76239af6-9293-43ed-aa86-4d871453c7c9}:9.6.0.16","{ab937f68-342b-4481-89d5-288f05876ec2}:9.4.0.1","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.7","{76239af6-9293-43ed-aa86-4d871453c7c9}:9.4.0.1","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:9.6.0.10","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:3.6.0.10","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:9.4.0.1","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:3.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.6.0.5","{21e161fe-59ff-41d1-8653-310b0feb13ef}:3.6.0.13","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:3.6.0.16","searchme@mybrowserbar.com:9.4.0.30","{71a729ac-3a65-4988-8007-794124369292}:3.6.0.10","{79da9acc-c057-4f43-b6c3-041f863ee074}:3
.4.0.1","{7a526449-3a92-426f-8ca4-47439918f2b1}:9.6.0.13","{51158baf-dd07-417a-a195-0722d0d22da6}:3.6.0.13","{b7a6d831-71e7-4af7-833f-bef174626e18}:3.6.0.16","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:9.6.0.13","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:9.6.0.15","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:9.6.0.13","{7a526449-3a92-426f-8ca4-47439918f2b1}:3.6.0.12","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:3.6.0.12","{7a526449-3a92-426f-8ca4-47439918f2b1}:3.6.0.13","{013f5925-9580-4512-a9d4-31475773387e}:3.6.0.16","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.21","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.4.0.38","{ab937f68-342b-4481-89d5-288f05876ec2}:3.6.0.9","{a1d72db8-4198-408e-9f30-f9df0c242580}:3.6.0.9","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.6.0.1","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.5.0.1","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:9.4.0.1","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:9.6.0.10","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.9","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:3.6.0
.10","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.4.0.30","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:3.6.0.13","{a1d72db8-4198-408e-9f30-f9df0c242580}:9.6.0.13","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:9.4.0.1","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:9.5.0.6","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:3.6.0.10","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.4.0.1","searchme@mybrowserbar.com:9.6.0.6","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:3.6.0.13","{21e161fe-59ff-41d1-8653-310b0feb13ef}:3.6.0.16","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:3.6.0.13","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:9.6.0.16","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.34","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:9.6.0.13","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:3.6.0.10","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:3.6.0.9","searchme@mybrowserbar.com:9.4.0.28","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:3.6.0.13","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:3.4.0.1","{76239af6-9293-43ed-aa86-4d871453c7c9}:3.6.0.13","{181f5e13-15c8-4103-8e0
8-4283da8beb97}:3.6.0.9","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.4.0.29","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.6.0.6","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:3.6.0.9","{aa4be34a-2e93-4618-a241-975ec11fb606}:3.6.0.16","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:3.6.0.12","{181f5e13-15c8-4103-8e08-4283da8beb97}:9.6.0.13","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.15","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:9.5.0.1","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.6.0.1","{3c59c791-aeec-44bb-af60-ff112eea18e3}:3.6.0.9","{7a526449-3a92-426f-8ca4-47439918f2b1}:3.6.0.16","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:3.6.0.16","{181f5e13-15c8-4103-8e08-4283da8beb97}:9.6.0.16","{ab937f68-342b-4481-89d5-288f05876ec2}:9.6.0.10","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:3.6.0.10","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:3.4.0.1","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:9.6.0.13","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:3.6.0.16","{B489E004-0A0C-496D-A374-33AF61E54469}:3.4.0.34","{79da9acc-c057-4f43-b6c3-04
1f863ee074}:9.6.0.13","{21e161fe-59ff-41d1-8653-310b0feb13ef}:3.6.0.10","searchme@mybrowserbar.com:3.4.0.34","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:3.6.0.12","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:3.4.0.1","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:3.6.0.9","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:9.6.0.13","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.6.0.6","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:3.6.0.9","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:9.6.0.10","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.6.0.1","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:3.6.0.13","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:9.6.0.13","{7a526449-3a92-426f-8ca4-47439918f2b1}:3.6.0.9","{21e161fe-59ff-41d1-8653-310b0feb13ef}:9.6.0.13","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.10","searchme@mybrowserbar.com:3.6.0.5","{79da9acc-c057-4f43-b6c3-041f863ee074}:3.6.0.10","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.6.0.1","searchme@mybrowserbar.com:3.4.0.32","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:9.4.0.1","{013f5925-9580-4512-a9
d4-31475773387e}:3.6.0.9","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:9.6.0.10","web@2:1.0","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:3.6.0.10","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:3.6.0.9","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:3.4.0.1","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:3.6.0.12","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.5.0.6","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:9.4.0.30","{cc80619b-e882-40c2-b816-03a61b1d0c4f}:9.6.0.10","searchme@mybrowserbar.com:9.6.0.2","{B489E004-0A0C-496D-A374-33AF61E54469}:3.4.0.31","{B489E004-0A0C-496D-A374-33AF61E54469}:3.4.0.30","{181f5e13-15c8-4103-8e08-4283da8beb97}:3.6.0.13","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.4.0.31","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:9.6.0.6","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:9.6.0.13","{71a729ac-3a65-4988-8007-794124369292}:3.4.0.1","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:9.4.0.1","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:9.6.0.16","{bb9b852f-1129-439b-91df-6583bd135c6f}:3.6.0.16","{93c2c934-4922-4774-bf29-691
fbd7246ff}:9.6.0.13","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:3.4.0.1","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:3.6.0.16","{013f5925-9580-4512-a9d4-31475773387e}:3.6.0.12","searchme@mybrowserbar.com:9.4.0.38","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:9.6.0.16","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:3.6.0.16","{71a729ac-3a65-4988-8007-794124369292}:9.6.0.13","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:3.6.0.13","{515d1883-7376-4db3-b710-8d76a27231b1}:3.6.0.10","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:9.6.0.10","{83052879-afb9-4cd8-98c3-e805f5614026}:3.6.0.9","{B489E004-0A0C-496D-A374-33AF61E54469}:9.4.0.30","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:9.6.0.13","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:3.6.0.10","{B489E004-0A0C-496D-A374-33AF61E54469}:3.6.0.5","{ab937f68-342b-4481-89d5-288f05876ec2}:9.6.0.16","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.18","searchme@mybrowserbar.com:9.5.0.3","{79da9acc-c057-4f43-b6c3-041f863ee074}:3.6.0.12","{e51a3d1b-600e-43d5-8116-817a1d964285}:3.6.0.10","searc
hme@mybrowserbar.com:9.5.0.4","{a192bf54-089f-4325-ac25-7eafcd17a342}:3.6.0.9","{21e161fe-59ff-41d1-8653-310b0feb13ef}:3.6.0.12","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:9.6.0.10","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:3.4.0.1","searchme@mybrowserbar.com:3.4.0.38","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:9.4.0.1","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:9.6.0.16","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.6.0.5","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:9.4.0.1","searchme@mybrowserbar.com:9.6.0.4","{bb9b852f-1129-439b-91df-6583bd135c6f}:9.4.0.1","web@1:1.0","{3c59c791-aeec-44bb-af60-ff112eea18e3}:3.4.0.1","{51158baf-dd07-417a-a195-0722d0d22da6}:3.6.0.16","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:3.6.0.12","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:3.6.0.12","{c27b59ba-0917-46d1-aaf6-165528a99a3d}:3.6.0.13","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.4.0.32","{bb9b852f-1129-439b-91df-6583bd135c6f}:3.6.0.10","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:3.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}
:9.5.0.6","{aa4be34a-2e93-4618-a241-975ec11fb606}:3.6.0.9","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:9.6.0.16","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:9.4.0.30","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.5.0.6","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:3.6.0.9","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.16","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.17","{B489E004-0A0C-496D-A374-33AF61E54469}:9.6.0.1","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:3.6.0.12","{ab937f68-342b-4481-89d5-288f05876ec2}:3.4.0.1","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:3.6.0.16","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:3.6.0.9","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:9.6.0.14","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.38","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:3.6.0.9","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.6.0.4","{b7a6d831-71e7-4af7-833f-bef174626e18}:9.4.0.1","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.13","{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:9.6.0.10","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:3.6.0.
12","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:3.6.0.16","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:3.6.0.12","{B489E004-0A0C-496D-A374-33AF61E54469}:3.4.0.32","{a1d72db8-4198-408e-9f30-f9df0c242580}:3.6.0.16","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:3.6.0.16","searchme@mybrowserbar.com:3.6.0.3","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:3.6.0.16","searchme@mybrowserbar.com:9.5.0.1","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:3.6.0.10","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:3.6.0.10","{21e161fe-59ff-41d1-8653-310b0feb13ef}:9.4.0.1","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:9.6.0.13","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:3.6.0.16","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:9.6.0.10","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:3.6.0.12","{7a526449-3a92-426f-8ca4-47439918f2b1}:3.4.0.1","{bb9b852f-1129-439b-91df-6583bd135c6f}:9.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.6.0.1","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:9.6.0.16","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:9.4.0.1","{415B04AB-808E-45AA-B994
-B37E73F911CE}:3.4.0.36","{83052879-afb9-4cd8-98c3-e805f5614026}:3.6.0.16","{93c2c934-4922-4774-bf29-691fbd7246ff}:3.4.0.1","{aa4be34a-2e93-4618-a241-975ec11fb606}:9.6.0.13","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:3.4.0.1","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:9.4.0.1","{79da9acc-c057-4f43-b6c3-041f863ee074}:9.6.0.10","searchme@mybrowserbar.com:9.6.0.3","{515d1883-7376-4db3-b710-8d76a27231b1}:9.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.13","{51158baf-dd07-417a-a195-0722d0d22da6}:3.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.4.0.34","{aa4be34a-2e93-4618-a241-975ec11fb606}:9.4.0.1","{B489E004-0A0C-496D-A374-33AF61E54469}:9.4.0.38","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:9.4.0.1","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:9.4.0.1","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:3.6.0.13","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:9.6.0.13","{415B04AB-808E-45AA-B994-B37E73F911CE}:9.4.0.34","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.29","{aa4be34a-2e93-4618-a241-975ec11fb606}:3.4
.0.1","{93c2c934-4922-4774-bf29-691fbd7246ff}:9.6.0.10","{b7a6d831-71e7-4af7-833f-bef174626e18}:9.6.0.16","{83052879-afb9-4cd8-98c3-e805f5614026}:3.6.0.12","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:3.6.0.9","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:3.6.0.13","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:3.6.0.12","{b1af0454-f88e-46d2-ad7e-f7d88c664ab8}:9.6.0.13","{9971fa51-12c0-4f03-933c-8fd80043c666}:3.6.0.9","{a192bf54-089f-4325-ac25-7eafcd17a342}:3.6.0.12","{e51a3d1b-600e-43d5-8116-817a1d964285}:9.6.0.10","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:9.6.0.10","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:9.6.0.16","{ca750902-d68a-4670-adef-bb1ed70b87b4}:3.6.0.10","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:3.6.0.9","{93c2c934-4922-4774-bf29-691fbd7246ff}:9.6.0.16","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:3.6.0.9","{ab937f68-342b-4481-89d5-288f05876ec2}:3.6.0.12","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:9.4.0.1","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:3.4.0.1","searchme@mybrowserbar.com:3.5.0.1","{3c59c791-
aeec-44bb-af60-ff112eea18e3}:3.6.0.16","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.24","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:9.6.0.16","{ce2ed0a1-9cbf-4545-a990-3f7769e77216}:3.4.0.1","{f0bd0efa-2a31-4729-86bc-1b4236f0e626}:9.4.0.1","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:9.4.0.30","{76239af6-9293-43ed-aa86-4d871453c7c9}:3.6.0.12","{b7a6d831-71e7-4af7-833f-bef174626e18}:3.6.0.13","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:9.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.5.0.1","{B489E004-0A0C-496D-A374-33AF61E54469}:3.4.0.38","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:9.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.4.0.30","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.5.0.3","{b26f9132-2f33-4796-97d7-c5ec7d880d79}:9.6.0.13","{ef816e8f-c376-409e-a3bd-bcd7bf8d935e}:3.6.0.9","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:3.6.0.16","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:3.6.0.13","{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:3.6.0.16","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:9.6.0.16","{DBFBF2B3-E5
22-4520-93B4-BA130FCCFD6D}:3.4.0.33","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.8","{ab937f68-342b-4481-89d5-288f05876ec2}:3.6.0.13","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:9.4.0.1","{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:9.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.15","{bb9b852f-1129-439b-91df-6583bd135c6f}:3.6.0.13","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.4.0.38","{a192bf54-089f-4325-ac25-7eafcd17a342}:9.6.0.10","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:3.6.0.16","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:9.6.0.5","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:3.6.0.9","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:3.6.0.12","{e51a3d1b-600e-43d5-8116-817a1d964285}:3.6.0.13","{7a526449-3a92-426f-8ca4-47439918f2b1}:9.6.0.10","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:9.4.0.38","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:9.6.0.13","{013f5925-9580-4512-a9d4-31475773387e}:9.6.0.10","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:3.6.0.12","{76239af6-9293-43ed-aa86-4d871453c7c9}:3.6.0.9","searchme@mybrow
serbar.com:9.5.0.6","{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:3.6.0.9","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.33","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:9.6.0.10","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:3.4.0.1","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.5.0.1","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:3.6.0.9","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:3.6.0.16","{51158baf-dd07-417a-a195-0722d0d22da6}:3.4.0.1","{181f5e13-15c8-4103-8e08-4283da8beb97}:3.6.0.12","{84bbe6bf-fea5-418f-9bed-2ee0d6f1fba0}:3.4.0.1","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:3.4.0.34","{83052879-afb9-4cd8-98c3-e805f5614026}:9.6.0.13","{B489E004-0A0C-496D-A374-33AF61E54469}:3.4.0.29","{B489E004-0A0C-496D-A374-33AF61E54469}:3.5.0.6","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:3.6.0.9","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.5.0.6","{90bab949-8d98-4d4e-8462-9dd85d0b5aba}:9.6.0.10","{7ec0d03e-d893-49f1-8db7-614e27b2a9c7}:9.6.0.16","{74c63407-081c-4580-a3b8-a4b34e04ffd2}:9.6.0.16","{160e8925-b26a-49fc-969b-d4cce7c2f7
d7}:3.6.0.13","{013f5925-9580-4512-a9d4-31475773387e}:3.6.0.13","{b2bfe60c-eef8-4e20-8334-c53afdc1ffdd}:3.4.0.1","{B489E004-0A0C-496D-A374-33AF61E54469}:3.4.0.33","{189849ff-f5ad-4480-9c4a-74ac74fc3246}:9.6.0.16","{19F6FEE2-01F5-44F2-8618-1AE34A8111EF}:3.4.0.31","{d184bb9a-da59-4370-8e68-7e763aecf1cb}:3.6.0.13","{515d1883-7376-4db3-b710-8d76a27231b1}:3.4.0.1","{e51a3d1b-600e-43d5-8116-817a1d964285}:9.6.0.16","{046c09c5-321a-401b-acb7-7ec1d73bbd77}:9.6.0.13","{dde80c96-ec4f-4fa7-ad2f-758cffd3cd38}:9.6.0.16","{2bc72c53-9bde-4db2-8479-eda9a5e71f4e}:3.6.0.9","{A87A31AD-9EEF-47E6-B8CF-991AF9DCF4B6}:9.4.0.38","{76239af6-9293-43ed-aa86-4d871453c7c9}:9.6.0.13","{95d8f17c-2b56-4112-8165-060d9cb6fff9}:3.6.0.12","searchme@mybrowserbar.com:3.6.0.1","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:9.6.0.13","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.5.0.1","{353dd9ca-1cd6-49a4-989d-c38c9ef480c5}:3.6.0.16","{77e576fc-7ffe-4633-9ad0-6982d5fb863c}:3.6.0.13","{79da9acc-c057-4f43-b6c3-041f863ee074}:9.6.0.16","
{ca750902-d68a-4670-adef-bb1ed70b87b4}:3.6.0.12","{bb9b852f-1129-439b-91df-6583bd135c6f}:9.6.0.13","{3c59c791-aeec-44bb-af60-ff112eea18e3}:3.6.0.13","{83052879-afb9-4cd8-98c3-e805f5614026}:9.6.0.16","{aa4be34a-2e93-4618-a241-975ec11fb606}:9.6.0.10","{21e161fe-59ff-41d1-8653-310b0feb13ef}:9.6.0.16","{7b1f151d-4c1c-4656-a460-df3dee5d49fb}:3.6.0.13","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:3.6.0.12","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:3.6.0.10","{0d889789-563b-4f51-85ec-a9f1f68f82ca}:3.6.0.10","web@1:1.1","{71a729ac-3a65-4988-8007-794124369292}:9.4.0.1","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec444}:3.6.0.9","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:3.6.0.13","{cdd177ac-fcda-44a9-9687-64afe2b1cef5}:9.6.0.13","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.4.0.29","{B489E004-0A0C-496D-A374-33AF61E54469}:9.5.0.1","{f8b0ecf9-8ef3-4951-9f86-6ce199e1843b}:9.6.0.13","{fc57343e-50d9-4305-9095-b4d4f07cf31a}:9.6.0.16","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.4.0.32","{74c63407-081c-4580-a3b8-a4b34e04ffd2}
:3.6.0.12","{71a729ac-3a65-4988-8007-794124369292}:3.6.0.13","{B489E004-0A0C-496D-A374-33AF61E54469}:9.6.0.6","{160e8925-b26a-49fc-969b-d4cce7c2f7d7}:3.6.0.10","{a192bf54-089f-4325-ac25-7eafcd17a342}:3.4.0.1","{3c59c791-aeec-44bb-af60-ff112eea18e3}:9.6.0.16","{737cd3ee-f9fe-48c1-89f5-74d7ba5ee1f3}:9.4.0.1","{71a729ac-3a65-4988-8007-794124369292}:3.6.0.12","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:9.6.0.10","{79da9acc-c057-4f43-b6c3-041f863ee074}:3.6.0.9","{B489E004-0A0C-496D-A374-33AF61E54469}:9.5.0.6","searchme@mybrowserbar.com:3.6.0.4","{3822c14e-b9ff-4d31-bc1e-b9d18329d8ad}:3.6.0.9","{a192bf54-089f-4325-ac25-7eafcd17a342}:9.4.0.1","{3c59c791-aeec-44bb-af60-ff112eea18e3}:3.6.0.10","{415B04AB-808E-45AA-B994-B37E73F911CE}:3.4.0.30","{62DD0A97-FDD4-421b-94A5-D1A9434450C7}:3.6.0.16","{515d1883-7376-4db3-b710-8d76a27231b1}:3.6.0.13","searchme@mybrowserbar.com:3.4.0.30","{DBFBF2B3-E522-4520-93B4-BA130FCCFD6D}:3.6.0.5","searchme@mybrowserbar.com:3.5.0.3","{b0b7ad14-1326-4fcc-ab3c-7b61bc3ec
444}:3.6.0.16"],"unblocked":[]},"schema":1610541485715,"key_format":"{guid}:{version}","stash_time":1610627709203,"id":"afe5009a-8a2c-4a2a-8f19-d67f8cdd6fb2","last_modified":1610627879132},{"stash":{"blocked":["{24d84c9d-8472-472e-a9ef-8e4f16e8e995}:0.6","{276ea011-69eb-4a56-b687-c86478772a96}:0.6","{dd41b0da-197a-4330-85a7-9a5c0d69b157}:0.6","{5773b5f8-f9b8-4e6d-94cf-85cce03e4bb4}:0.8","{d5221091-f8df-481d-8ba4-ce9e337e0ab9}:0.8","{89acb232-250e-4afa-b65e-f6f5caf21afa}:1.0.2","{a0d000d6-9d78-494c-b5ba-4e0da94af6b7}:0.6","{d285627b-5dda-4baf-8315-3542ee5b3b79}:0.8","{e1c8eac4-9ddf-4ae1-a298-8834d08e2cfe}:0.8","{0cf942a0-f59d-497d-a336-2f672c37fcad}:0.6","{125f5269-2f69-401e-b072-40be97188078}:0.4.5","{230a5283-ab42-49a2-8860-b06d797917c7}:0.6","{3dec0353-9766-40d8-9351-629789a5ad1c}:0.7","{77a5a325-ee90-4b2c-b4bb-7f96bfbf2735}:0.8","{e0985fce-6352-4798-aae5-a3c346ecaaa9}:1.1.1","{4922fc25-9175-4c7b-aa31-f04797b0244b}:0.8","{9d02017d-80f1-421f-b441-f63fbe6b6ed1}:0.8","{6fb62b49-a2ae-
44b4-970a-cf37491dadea}:0.6","{7e7c7b61-cda2-4c30-a448-80a9609b1806}:0.6","{82f6ab32-57ac-459e-a157-7f0a141d70fe}:0.4.4","{89b6df65-c157-4bb5-a2e8-4039490713bb}:0.6","{125f5269-2f69-401e-b072-40be97188078}:0.4.4","{60bc80e8-0735-4e76-98c7-fd097e72dfff}:0.8"],"unblocked":["browser-mon@xdman.sourceforge.net:2.1","browser-mon@xdman.sourceforge.net:1.4.1","browser-mon@xdman.sourceforge.net:1.5","browser-mon@xdman.sourceforge.net:2.0","browser-mon@xdman.sourceforge.net:1.4"]},"schema":1610480491282,"key_format":"{guid}:{version}","stash_time":1610541311225,"id":"970bccef-0d6b-45c9-be3b-10bee4b25a9e","last_modified":1610541485668},{"stash":{"blocked":["{d9b84c91-b49e-4294-97f0-af503d41ee70}:3.5.11","browser-mon@xdman.sourceforge.net:1.5","{24912aaa-d0e6-468f-ae3b-bc30c6cf208f}:0.6","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.1.2","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.2.0","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.0.6","browser-mon@xdman.sourceforge.net:2.0","browser-mon(a)xdman.sourceforg
e.net:1.4.1","{d9b84c91-b49e-4294-97f0-af503d41ee70}:3.5.12","newtabsearchwebnew@realtimepackagetracker.com:1.0.1","search-engin-picker@addon:1.0","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.2.1","{3ec925f3-200e-4b55-9daf-18fa4b383d89}:0.7","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.1.1","{d9b84c91-b49e-4294-97f0-af503d41ee70}:3.5.10","newtabsearchwebnew@realtimepackagetracker.com:1.0.0","{d9b84c91-b49e-4294-97f0-af503d41ee70}:3.5.13","browser-mon@xdman.sourceforge.net:2.1","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.0.8","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.0.9","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.1.0","{d835b809-10ad-40bc-a261-81df00e5f848}:0.9","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.0.5","{d9b84c91-b49e-4294-97f0-af503d41ee70}:3.5.14","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.0.7","{1e5e51a8-e7e9-4fe1-a683-462422abe05d}:1.2.2","browser-mon@xdman.sourceforge.net:1.4"],"unblocked":[]},"schema":1610307694439,"key_format":"{guid}:{version}","stash_time":1610476509860,"id":"2
76fe166-6050-4afe-a5ff-0e4601fc25a6","last_modified":1610476682530},{"stash":{"blocked":["{d836bb26-414c-42e2-9010-ad89c5aa6afb}:2.1","{d836bb26-414c-42e2-9010-ad89c5aa6afb}:2.0"],"unblocked":[]},"schema":1610134890207,"key_format":"{guid}:{version}","stash_time":1610152509622,"id":"8f88a597-328d-4057-843e-1c9f9510da2b","last_modified":1610152677926},{"stash":{"blocked":["{034b4a48-a522-43a6-a3e3-842c7fd67863}:2.6","{fda05e53-fb52-47d4-9672-146a642c7f54}:1.4","{0c0e26f3-7f75-43b5-a7c2-22e2b3429067}:1.2","{dde15009-d20a-44e3-89c3-94ebb39a6e48}:1.1","{eb7a4078-a5b4-4191-be02-5bc06ef00c7f}:1.8","{624120ee-d5aa-4aef-a192-a54ac28da835}:1.0","{77a51de1-939b-4fc6-b277-039b499d1bf2}:1.1","{431be38a-8eab-4602-9cd0-9ab9682dfdc6}:1.3","{77a51de1-939b-4fc6-b277-039b499d1bf2}:1.0","{a13bfd70-f2c8-4ed5-8725-87bad020519e}:1.1","{431be38a-8eab-4602-9cd0-9ab9682dfdc6}:1.0","{fda05e53-fb52-47d4-9672-146a642c7f54}:1.2","{0c0e26f3-7f75-43b5-a7c2-22e2b3429067}:1.0","{fda05e53-fb52-47d4-9672-146a642c7f54
}:1.0","{7be089c1-1849-420d-87fc-42b6c5d4c049}:1.2","{7a2b38e1-4d2b-4220-9cb5-c2795aab0d89}:1.0","{169603cc-2d16-48d2-a6de-4be354841f00}:1.4","{b104f2f7-126f-4fe0-b0b1-241c5771c801}:1.2","{556bcd61-2c26-4b08-9092-621334006f07}:1.0","{1afd3b73-75d2-407c-9942-deeeedf92a9e}:1.1","{b104f2f7-126f-4fe0-b0b1-241c5771c801}:1.1","jid1-MIAJd5BiK7V4Pw@jetpack:0.9.2","{b104f2f7-126f-4fe0-b0b1-241c5771c801}:1.0","@CyberSearch-ext:1.0.0","{fda05e53-fb52-47d4-9672-146a642c7f54}:1.5","{169603cc-2d16-48d2-a6de-4be354841f00}:1.1","{1afd3b73-75d2-407c-9942-deeeedf92a9e}:1.0","{77a51de1-939b-4fc6-b277-039b499d1bf2}:1.2","{169603cc-2d16-48d2-a6de-4be354841f00}:1.5","{431be38a-8eab-4602-9cd0-9ab9682dfdc6}:1.2","{034b4a48-a522-43a6-a3e3-842c7fd67863}:2.8","jid1-MIAJd5BiK7V4Pw@jetpack:0.9.3","{6e1ddd1e-7d2c-4207-bb50-3c183e823e5d}:1.0","{9ec19675-ae4c-4c90-a066-2e400f6e286b}:1.0","{6e4f4a3d-dc55-4315-9915-2db61587cfc1}:1.2","{dda0f40c-a83b-491a-851d-af8ccb379a8c}:1.1","{7be089c1-1849-420d-87fc-42b6c5d4c049
}:1.0","{8fb7ee22-555c-463b-b534-1c6461449617}:1","{6e1ddd1e-7d2c-4207-bb50-3c183e823e5d}:1.1","{7be089c1-1849-420d-87fc-42b6c5d4c049}:1.3","{034b4a48-a522-43a6-a3e3-842c7fd67863}:1.0","{7a2b38e1-4d2b-4220-9cb5-c2795aab0d89}:1.1","{02b39b37-7cf6-45c3-9179-996c3c37b491}:1.0","{a13bfd70-f2c8-4ed5-8725-87bad020519e}:1.0","{dde15009-d20a-44e3-89c3-94ebb39a6e48}:1.0","{7473192b-b08b-496c-a849-0bb0d14dafc3}:1.0","{fda05e53-fb52-47d4-9672-146a642c7f54}:1.3","{7be089c1-1849-420d-87fc-42b6c5d4c049}:1.1","{6e4f4a3d-dc55-4315-9915-2db61587cfc1}:1.0","{49a8bb11-4887-42fb-b16d-d6bf74fd4313}:1.0","{307d047e-2591-4c33-86ff-819fd8c747ac}:1.0","{eb7a4078-a5b4-4191-be02-5bc06ef00c7f}:1.9","{dda0f40c-a83b-491a-851d-af8ccb379a8c}:1.0","{ab96b384-a512-42cc-8738-18ea3d6a89e5}:1.0","{289c0c00-0624-44ae-ae98-2979546b3aa6}:1.1","{431be38a-8eab-4602-9cd0-9ab9682dfdc6}:1.4","{289c0c00-0624-44ae-ae98-2979546b3aa6}:1.0","{fda05e53-fb52-47d4-9672-146a642c7f54}:1.6","{ab96b384-a512-42cc-8738-18ea3d6a89e5}:1.1"],"
unblocked":[]},"schema":1610044676214,"key_format":"{guid}:{version}","stash_time":1610130909877,"id":"4d3bd580-fdc7-4c93-9d41-22b55ff28cbd","last_modified":1610131079523},{"stash":{"blocked":["{06d4cb25-df8d-47b8-b37d-3abc403ed785}:1.0.8","{bdb812b0-e758-43f0-92ef-55e847f4710a}:2.16","{f2033592-c40c-437b-b447-2e179cf2ca30}:1.2.6","{805448c0-d89d-4289-b561-fd5e59afec86}:2.7.18","{805448c0-d89d-4289-b561-fd5e59afec86}:2.7.17","{06d4cb25-df8d-47b8-b37d-3abc403ed785}:1.0.7","{bdb812b0-e758-43f0-92ef-55e847f4710a}:2.17"],"unblocked":[]},"schema":1609962090400,"key_format":"{guid}:{version}","stash_time":1610044510227,"id":"adbb78d7-2f1b-4f72-aae0-23f8103e7711","last_modified":1610044676159},{"stash":{"blocked":["{b832a00e-8eb4-4c83-ae10-fc7b620078be}:1.53","{b832a00e-8eb4-4c83-ae10-fc7b620078be}:1.52","{c4fad22d-460f-465f-abeb-76a18604314e}:1.1.4","{b832a00e-8eb4-4c83-ae10-fc7b620078be}:1.54"],"unblocked":[]},"schema":1609936740545,"key_format":"{guid}:{version}","stash_time":1609958108
910,"id":"a74cd41e-925e-4921-9bcf-1c50382fada4","last_modified":1609958353197},{"stash":{"blocked":["{b6d90033-5c73-4f13-a7d4-47fab3038cfe}:1.6","{084d3f7f-0c8f-4138-9ae3-24465605f735}:1.0","{3cd26bac-fd3d-4978-9279-517e219df132}:1.0.0.27","{3cd26bac-fd3d-4978-9279-517e219df132}:1.0.0.25","{084d3f7f-0c8f-4138-9ae3-24465605f735}:1.1","{b6d90033-5c73-4f13-a7d4-47fab3038cfe}:1.5","{3cd26bac-fd3d-4978-9279-517e219df132}:1.0.0.31","{3cd26bac-fd3d-4978-9279-517e219df132}:1.0.0.28","{3cd26bac-fd3d-4978-9279-517e219df132}:1.0.0.23","{b6d90033-5c73-4f13-a7d4-47fab3038cfe}:1.0.0","{3cd26bac-fd3d-4978-9279-517e219df132}:1.0.0.29"],"unblocked":[]},"schema":1609847198889,"key_format":"{guid}:{version}","stash_time":1609936510814,"id":"e1347a42-e173-402b-bf5d-f3c00a6458e7","last_modified":1609936740497},{"stash":{"blocked":["{4ba3b5e1-bc5b-4e59-b8b2-4c1de38fb5fe}:1.3","movies-suggest@addon:1.0","{4ba3b5e1-bc5b-4e59-b8b2-4c1de38fb5fe}:1.1","{3fc3b7f8-4749-4e54-a18f-3e12b9ed0db3}:1.0","{4ba3b5e1-bc
5b-4e59-b8b2-4c1de38fb5fe}:1.2","{4ba3b5e1-bc5b-4e59-b8b2-4c1de38fb5fe}:1.0"],"unblocked":[]},"schema":1609616497459,"key_format":"{guid}:{version}","stash_time":1609763713027,"id":"70ccd414-e031-4569-8b23-adba5b522a0c","last_modified":1609763911689},{"stash":{"blocked":["{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.44","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.1.3","search@freeweathersearcher.com:1.1.0","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.1","{CE2DE70F-9351-4057-B6D8-B14BB34DD401}:1.0.1","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.43","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.42","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.1.1","{4356F7E9-22F2-477E-86BA-BD25350DCC22}:1.0.0","extension@searchsecurer.com:1.0.10","{6300fcbc-5f02-4735-81ec-896350de01a6}:1.0.1","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:1.2.7","{4b6085bd-3ad2-4583-a8c4-abfd61970ebd}:0.6","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.0.4","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.0","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:1.3.5",
"{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.0.1","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:1.3.4","{6e22a85a-1281-4cb5-8915-88f02b8cd19e}:1.0.0.2","{8A053236-CE57-4686-8C6B-C3BC8EB0E75E}:1.0.0","{8aebfd17-13a7-4651-8ce8-1826f5cd1c19}:1.7","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.0.0","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.2","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.5","{be6788f3-e106-43d0-9d27-9c4811931588}:0.0.31","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:4.6.3","{14fae57e-4122-4f32-961b-9892ce7c1bee}:1.6.1","extension@searchsecurer.com:1.0.9","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.0.8","{9b046088-82e9-4a82-a619-d7705091b942}:1.0.0.5","extension@searchsecurer.com:1.1.3","{14fae57e-4122-4f32-961b-9892ce7c1bee}:1.6.2","{9179905e-606f-453a-b204-35adb53a8152}:0.1.100.102","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:1.3.1","{adb8f8c4-f90f-4cce-8d7a-b270df97e074}:3.1.3","@baboomsearch:1.1.2","{eb900458-3122-443c-ab4e-3a36f0d1968f}:1.2","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:4.6.4","{788c4
081-e227-43c4-853a-1733a2eca513}:3.2","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.41","{aeb932ec-7ec1-4c96-a44d-ba053097a4a3}:1.1","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.0.3","{ef86f2ef-dcf4-4a75-884d-fb1f67858b4b}:1.2.1","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.6.0","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.0.7","{aeb932ec-7ec1-4c96-a44d-ba053097a4a3}:1.0","{64c9344c-9645-47b4-9603-ef6d51339ce6}:1.0","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:4.5.0","{5cedfd0c-e90f-4cab-a1ff-805733935a1a}:1.0","{788c4081-e227-43c4-853a-1733a2eca513}:1.3","{a113235c-ef37-4e9c-ac7e-b320163539e9}:1.1","{CE2DE70F-9351-4057-B6D8-B14BB34DD401}:1.0.0","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.0.2","{788c4081-e227-43c4-853a-1733a2eca513}:0.11","{9b046088-82e9-4a82-a619-d7705091b942}:1.0.0.7","{788c4081-e227-43c4-853a-1733a2eca513}:4.61","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.0.5","app@ConvertirArchivos:1.0.2","{9b046088-82e9-4a82-a619-d7705091b942}:1.0.0.8","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.2.0",
"{788c4081-e227-43c4-853a-1733a2eca513}:2.3","{5cedfd0c-e90f-4cab-a1ff-805733935a1a}:5.96","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.0.1","{6b5c7804-ccb1-4201-92b5-051c87816c61}:1.3","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.1.0","{5cedfd0c-e90f-4cab-a1ff-805733935a1a}:5.6","{5cedfd0c-e90f-4cab-a1ff-805733935a1a}:5.95","{8eb8fd41-144c-4ffd-b885-1b79d5e03b20}:1.0","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:1.2.5","{14fae57e-4122-4f32-961b-9892ce7c1bee}:1.6.4","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.0.6","{a113235c-ef37-4e9c-ac7e-b320163539e9}:1.2","{3983F47C-2A53-4FF0-9808-FB0B7D89443C}:1.0.1","@noicetab:1.9.2.0","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.3","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:4.6.5","{293dc6f6-b90a-4ea6-9ea2-fe618d1ecad1}:1.2.0","{49bbdc35-496e-46f7-b9c1-5db7a47adbbe}:1.2","{adb8f8c4-f90f-4cce-8d7a-b270df97e074}:3.1.5","{6e22a85a-1281-4cb5-8915-88f02b8cd19e}:1.0.0.0","{6e22a85a-1281-4cb5-8915-88f02b8cd19e}:1.0.0.1","search@quickeasypdf.com:0.0.5","search@quickeasy
pdf.com:0.0.4","{9b046088-82e9-4a82-a619-d7705091b942}:1.0.0.6","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.51","search@freecouponsearcher.com:1.1.0","{38DFCD31-215F-4CB4-9246-9B9772FDA728}:1.0.0","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:4.5.1","{c6e11521-fe0f-423f-857f-ba9a5dc48384}:1.4","extension@searchsecurer.com:1.0.0","{14fae57e-4122-4f32-961b-9892ce7c1bee}:1.6","{adb8f8c4-f90f-4cce-8d7a-b270df97e074}:3.1.4","{14fae57e-4122-4f32-961b-9892ce7c1bee}:1.6.5","{a113235c-ef37-4e9c-ac7e-b320163539e9}:1.3","{1dfa5658-a1ad-41fe-9d26-9699586001f3}:1.1.2","extension@searchsecurer.com:1.1.2","{eb900458-3122-443c-ab4e-3a36f0d1968f}:1.1","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.4.0","extension@searchsecurer.com:1.0.11","{6e22a85a-1281-4cb5-8915-88f02b8cd19e}:1.0.0.5","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.3.0","@noicetab:1.10.0.0","{9b5bdaba-545f-4f48-bb75-5d90a9fb44ce}:1.3.3","{b8b035b5-3406-402e-a0e2-8094c0d58933}:1.5.0","{14fae57e-4122-4f32-961b-9892ce7c1bee}:1.6.3","{1dfa5658-a1ad-41fe
-9d26-9699586001f3}:1.0.9","{6b5c7804-ccb1-4201-92b5-051c87816c61}:1.3.3","{6300fcbc-5f02-4735-81ec-896350de01a6}:1.0.2","{adb8f8c4-f90f-4cce-8d7a-b270df97e074}:3.1.6","{4c84099d-766a-40b4-a8e0-f90c4cdf4040}:1.0","{788c4081-e227-43c4-853a-1733a2eca513}:4.6","{788c4081-e227-43c4-853a-1733a2eca513}:2.2"],"unblocked":[]},"schema":1608208705099,"key_format":"{guid}:{version}","stash_time":1608230110944,"id":"745e18c2-75d4-44fc-a1d7-954d0abb92d8","last_modified":1608230359579},{"stash":{"blocked":["{5849fc76-08e3-4d14-9d43-6bba81fd99f0}:0.6","{277c5cb0-631b-4cd2-a06c-634bb76aaa4b}:0.6"],"unblocked":[]},"schema":1608061293771,"key_format":"{guid}:{version}","stash_time":1608208509548,"id":"e943c577-ed0b-4c21-acd4-b074c72402ec","last_modified":1608208705056},{"stash":{"blocked":["{64fcf02f-041f-4e91-8ba8-d55eded72a9e}:3.0.0"],"unblocked":[]},"schema":1607992710456,"key_format":"{guid}:{version}","stash_time":1608057322815,"id":"c5b01b4e-f5f7-4313-bc80-0a69d8c9c3ad","last_modified":16080575
32329},{"stash":{"blocked":["{f40659b4-6c2d-4c01-bacb-2e0ba34c94e0}:1.0.1"],"unblocked":[]},"schema":1607959877005,"key_format":"{guid}:{version}","stash_time":1607992509477,"id":"2169fb74-a1b4-4347-ac42-9984e16b766a","last_modified":1607992710411},{"stash":{"blocked":["@vkuniversaldownloader:1.17","@vkuniversaldownloader:1.45","@vkuniversaldownloader:1.0","@vkuniversaldownloader:1.9","@vkuniversaldownloader:1.26","@vkuniversaldownloader:1.38","@vkuniversaldownloader:1.34","@vkuniversaldownloader:1.37","@vkuniversaldownloader:1.21","@vkuniversaldownloader:1.27","@vkuniversaldownloader:1.39","@vkuniversaldownloader:1.48","@vkuniversaldownloader:1.11","@vkuniversaldownloader:1.29","@vkuniversaldownloader:1.46","@vkuniversaldownloader:1.18","@vkuniversaldownloader:1.30","@vkuniversaldownloader:1.44","@vkuniversaldownloader:1.33","@vkuniversaldownloader:1.12","@vkuniversaldownloader:1.36","@vkuniversaldownloader:1.19","@vkuniversaldownloader:1.41","@vkuniversaldownloader:1.13","@vkunive
rsaldownloader:1.16","@vkuniversaldownloader:1.43","@vkuniversaldownloader:1.25","@vkuniversaldownloader:1.10","@vkuniversaldownloader:1.49","@vkuniversaldownloader:1.20","@vkuniversaldownloader:1.31","@vkuniversaldownloader:1.6","@vkuniversaldownloader:1.42","@vkuniversaldownloader:1.23","@vkuniversaldownloader:1.28","@vkuniversaldownloader:1.15","@vkuniversaldownloader:1.1","@vkuniversaldownloader:1.8","@vkuniversaldownloader:1.7","@vkuniversaldownloader:1.40","@vkuniversaldownloader:1.14","@vkuniversaldownloader:1.47","@vkuniversaldownloader:1.24","@vkuniversaldownloader:1.5","@vkuniversaldownloader:1.3","@vkuniversaldownloader:1.32","@vkuniversaldownloader:1.22","@vkuniversaldownloader:1.35"],"unblocked":[]},"schema":1607888491138,"key_format":"{guid}:{version}","stash_time":1607949310449,"id":"c760bc2d-c71e-4206-be35-672f4c73e9c9","last_modified":1607949518837},{"stash":{"blocked":["{2982a5a8-62c0-413f-b51b-204013722511}:2.3.3","{011f65f0-7143-470a-83ca-20ec4297f3f4}:2.3.2","{0
11f65f0-7143-470a-83ca-20ec4297f3f4}:2.3.3","{2982a5a8-62c0-413f-b51b-204013722511}:2.3.4","{011f65f0-7143-470a-83ca-20ec4297f3f4}:2.3.4"],"unblocked":[]},"schema":1607715696348,"key_format":"{guid}:{version}","stash_time":1607862909181,"id":"b2b46539-8eaf-4ba0-8115-14dfa6f8c2b4","last_modified":1607863109093},{"stash":{"blocked":[],"unblocked":[]},"schema":1607517521762,"key_format":"{guid}:{version}","stash_time":1607538909472,"id":"aaf3380c-7ac6-43a7-be44-82a1195e95dd","last_modified":1607539165992},{"stash":{"blocked":["{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.9.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.0.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:4.14.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.3.1","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.5.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.1.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.7.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.4.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.2.0","{a15e6a4f-ef90-4ce5-b9cf-c202e9db0896}:5.3.
2"],"unblocked":[]},"schema":1607462847383,"key_format":"{guid}:{version}","stash_time":1607517309357,"id":"73f87ff1-0625-4efa-beae-3cb1d0abfe26","last_modified":1607517521721},{"stash":{"blocked":["{461b09d3-9f69-4778-889d-6c6c7212b970}:1.0","{461b09d3-9f69-4778-889d-6c6c7212b970}:1.2","{461b09d3-9f69-4778-889d-6c6c7212b970}:1.3","{461b09d3-9f69-4778-889d-6c6c7212b970}:1.1","{eee03ab2-df0e-4d66-ab9b-404b4cfbb52d}:1.0"],"unblocked":[]},"schema":1607370095452,"key_format":"{guid}:{version}","stash_time":1607452512106,"id":"29f021a3-5e70-4fd9-aa43-b900913fa8a2","last_modified":1607452775945},{"schema":1607085666461,"attachment":{"hash":"481519c28921adb7ba1e19d8ffe9d1869274f19beb1dab91adc246d51e622ef1","size":800295,"filename":"filter.bin","location":"staging/addons-bloomfilters/df53c91c-b598-46a1-8ca9-32bdbb646258.bin","mimetype":"application/octet-stream"},"key_format":"{guid}:{version}","attachment_type":"bloomfilter-base","generation_time":1607085311428,"id":"0930be19-8b19-486a-82c
6-06f3a656cbf5","last_modified":1607085668743}]}
\ No newline at end of file
diff --git a/services/settings/dumps/security-state/intermediates.json b/services/settings/dumps/security-state/intermediates.json
index 18cd823fb30e..f1f1f6030c6f 100644
--- a/services/settings/dumps/security-state/intermediates.json
+++ b/services/settings/dumps/security-state/intermediates.json
@@ -1 +1 @@
-{"data":[{"schema":1612990167405,"derHash":"P2H4DHzQVrhJO+ROmXmaC7cPAbpi89UfZGvCdrG5WjE=","subject":"CN=PSW GROUP (ECC) OV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChFQ0MpIE9WIENB","whitelist":false,"attachment":{"hash":"e7d82692768b2794e477d38f8e3271c281dfe90261a14bfba0ef64fe28034f5e","size":1240,"filename":"VXaG8WOJDIeerycUKi_172jWyS0TrTMTpOCs-dvdVZM=.pem","location":"security-state-staging/intermediates/880b8025-ed2d-416c-8f55-1449ab4ea1b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VXaG8WOJDIeerycUKi/172jWyS0TrTMTpOCs+dvdVZM=","crlite_enrolled":false,"id":"bda23813-3d9a-48fd-b4e9-56ad249b43cb","last_modified":1612990731051},{"schema":1612990168863,"derHash":"puYUXPpzIrIt1vuvHfgzN4jbefGbEbaVz8kHtA0paQg=","subject":"CN=PSW GROUP (RSA) OV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEd
ST1VQIChSU0EpIE9WIENB","whitelist":false,"attachment":{"hash":"89a81c5442a54c9e5195381aa5bf5118b69c785fe73b5919acc00fa7735b5960","size":2081,"filename":"XJxD3hWuTDkFb4_QXFPChkZ3hlp9UIhypa5Cf40iwOE=.pem","location":"security-state-staging/intermediates/6a71e6de-c8f9-49e0-9c0e-502edd1a9306.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XJxD3hWuTDkFb4/QXFPChkZ3hlp9UIhypa5Cf40iwOE=","crlite_enrolled":false,"id":"6a4533e4-8a59-4074-9053-0d72e8e0847b","last_modified":1612990731041},{"schema":1612990170347,"derHash":"BrtWd3HEJpFMGaY47cGACPWQG5KBSpd0v+iBW6t+puk=","subject":"CN=PSW GROUP (RSA) DV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChSU0EpIERWIENB","whitelist":false,"attachment":{"hash":"2309ba2120931c2bd1e257481f59a22880eb3ccb912c468a99cbe78779e2bab1","size":2081,"filename":"Yv80yzPUjOuufrMJGuItTe5sk6C7c0w4o5O_8F6HdQw=.pem","location":"security-state-staging/intermediates/278cef
20-85ec-4a45-b0b8-3a5dc6846e0f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Yv80yzPUjOuufrMJGuItTe5sk6C7c0w4o5O/8F6HdQw=","crlite_enrolled":false,"id":"54fd4933-9970-4281-a7d4-51b0ef2ccc06","last_modified":1612990731030},{"schema":1612990171765,"derHash":"G4NI2aBj2IEPdzWz0gXEXb2EuzqHxnQ/4yKGMNvC1zs=","subject":"CN=PSW GROUP (ECC) DV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChFQ0MpIERWIENB","whitelist":false,"attachment":{"hash":"626cee21526231cf35b1c70dbeba777d80f68d2e3d5cf4fd81d3ef7fd3e88f2c","size":1240,"filename":"PmqkRAF1ZpNBGgE1fKwSFH2jXK5foG8fHryhWbon5ec=.pem","location":"security-state-staging/intermediates/c2ed546c-f2d6-4b24-b43d-73e4177d3d99.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PmqkRAF1ZpNBGgE1fKwSFH2jXK5foG8fHryhWbon5ec=","crlite_enrolled":false,"id":"58845907-aeea-43e8-8c44-d167ce488163","last_modified":1612990731019},{"schema":1612990173208,"d
erHash":"RJkQo/SqqB2u7RSgHPh/Mk/ogKh53feCjlXEd1iWIK4=","subject":"CN=PSW GROUP (RSA) EV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChSU0EpIEVWIENB","whitelist":false,"attachment":{"hash":"4ef1ea74d0ed35541584683cd6b16a145fbbac5a0393fb3d086f0a2943e09085","size":2113,"filename":"NDJIxRHObvxpsBbETDEpHT9Zbz7P7Fm134T9ImWjIH4=.pem","location":"security-state-staging/intermediates/424bf228-4578-4443-a7de-d3595ca810ca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NDJIxRHObvxpsBbETDEpHT9Zbz7P7Fm134T9ImWjIH4=","crlite_enrolled":false,"id":"4fb8ad4a-6514-497a-9781-46458be04226","last_modified":1612990731009},{"schema":1612990174597,"derHash":"cZQ0Ojqs2mKaJMULZF+fDMTlGUJ3mqByAnapTyG/VfY=","subject":"CN=PSW GROUP (ECC) EV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChFQ0MpIEVWIENB","whitelist":
false,"attachment":{"hash":"4d19cdf769fa665440c3421e63f272f8801ef322e8104d621a6fd9581c87fb55","size":1272,"filename":"scuMyj9NwSFH70ot_DBsYulkVhwaNFAbwDAK6FaE-io=.pem","location":"security-state-staging/intermediates/7a2066fe-0691-4cc1-9fa8-eff98ffb10e5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"scuMyj9NwSFH70ot/DBsYulkVhwaNFAbwDAK6FaE+io=","crlite_enrolled":false,"id":"89df0ae6-6012-4879-99b7-2d958b6690c9","last_modified":1612990730997},{"schema":1612986596417,"derHash":"P2H4DHzQVrhJO+ROmXmaC7cPAbpi89UfZGvCdrG5WjE=","subject":"CN=PSW GROUP (ECC) OV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChFQ0MpIE9WIENB","whitelist":false,"attachment":{"hash":"e7d82692768b2794e477d38f8e3271c281dfe90261a14bfba0ef64fe28034f5e","size":1240,"filename":"VXaG8WOJDIeerycUKi_172jWyS0TrTMTpOCs-dvdVZM=.pem","location":"security-state-staging/intermediates/3154e7ce-e991-4878-9043-78d1cfafcb91.pem"
,"mimetype":"application/x-pem-file"},"pubKeyHash":"VXaG8WOJDIeerycUKi/172jWyS0TrTMTpOCs+dvdVZM=","crlite_enrolled":false,"id":"f62ab8ab-ff98-421c-904c-7882c1471772","last_modified":1612987116318},{"schema":1612986597850,"derHash":"G4NI2aBj2IEPdzWz0gXEXb2EuzqHxnQ/4yKGMNvC1zs=","subject":"CN=PSW GROUP (ECC) DV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChFQ0MpIERWIENB","whitelist":false,"attachment":{"hash":"626cee21526231cf35b1c70dbeba777d80f68d2e3d5cf4fd81d3ef7fd3e88f2c","size":1240,"filename":"PmqkRAF1ZpNBGgE1fKwSFH2jXK5foG8fHryhWbon5ec=.pem","location":"security-state-staging/intermediates/9d4f6796-52a3-4545-81c8-176a4c5f8355.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PmqkRAF1ZpNBGgE1fKwSFH2jXK5foG8fHryhWbon5ec=","crlite_enrolled":false,"id":"6e77eee0-0c1d-4ec2-9edc-e3c9edf3dc12","last_modified":1612987116307},{"schema":1612986599280,"derHash":"puYUXPpzIrIt1vuvHfgzN4jbef
GbEbaVz8kHtA0paQg=","subject":"CN=PSW GROUP (RSA) OV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChSU0EpIE9WIENB","whitelist":false,"attachment":{"hash":"89a81c5442a54c9e5195381aa5bf5118b69c785fe73b5919acc00fa7735b5960","size":2081,"filename":"XJxD3hWuTDkFb4_QXFPChkZ3hlp9UIhypa5Cf40iwOE=.pem","location":"security-state-staging/intermediates/fd88e402-467b-4897-96f3-beae3fa9c6cf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XJxD3hWuTDkFb4/QXFPChkZ3hlp9UIhypa5Cf40iwOE=","crlite_enrolled":false,"id":"8413fadc-57b1-477d-a97c-450d25c5fb5f","last_modified":1612987116297},{"schema":1612986600724,"derHash":"RJkQo/SqqB2u7RSgHPh/Mk/ogKh53feCjlXEd1iWIK4=","subject":"CN=PSW GROUP (RSA) EV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChSU0EpIEVWIENB","whitelist":false,"attachment":{"hash":"4ef1ea7
4d0ed35541584683cd6b16a145fbbac5a0393fb3d086f0a2943e09085","size":2113,"filename":"NDJIxRHObvxpsBbETDEpHT9Zbz7P7Fm134T9ImWjIH4=.pem","location":"security-state-staging/intermediates/5db222f7-0ee8-4708-874f-0ccf1a1eb1bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NDJIxRHObvxpsBbETDEpHT9Zbz7P7Fm134T9ImWjIH4=","crlite_enrolled":false,"id":"a139c99e-adbb-4531-abdc-4d4dc790b554","last_modified":1612987116286},{"schema":1612986602144,"derHash":"cZQ0Ojqs2mKaJMULZF+fDMTlGUJ3mqByAnapTyG/VfY=","subject":"CN=PSW GROUP (ECC) EV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChFQ0MpIEVWIENB","whitelist":false,"attachment":{"hash":"4d19cdf769fa665440c3421e63f272f8801ef322e8104d621a6fd9581c87fb55","size":1272,"filename":"scuMyj9NwSFH70ot_DBsYulkVhwaNFAbwDAK6FaE-io=.pem","location":"security-state-staging/intermediates/139b5165-7a9a-47cb-ad1b-c4b682d1859c.pem","mimetype":"application/x-pem-file
"},"pubKeyHash":"scuMyj9NwSFH70ot/DBsYulkVhwaNFAbwDAK6FaE+io=","crlite_enrolled":false,"id":"c7424679-a9ee-4087-ace1-3338892ff8d9","last_modified":1612987116276},{"schema":1612986603624,"derHash":"BrtWd3HEJpFMGaY47cGACPWQG5KBSpd0v+iBW6t+puk=","subject":"CN=PSW GROUP (RSA) DV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChSU0EpIERWIENB","whitelist":false,"attachment":{"hash":"2309ba2120931c2bd1e257481f59a22880eb3ccb912c468a99cbe78779e2bab1","size":2081,"filename":"Yv80yzPUjOuufrMJGuItTe5sk6C7c0w4o5O_8F6HdQw=.pem","location":"security-state-staging/intermediates/3d1d5f49-03d1-496a-8c63-e794cc8e56e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Yv80yzPUjOuufrMJGuItTe5sk6C7c0w4o5O/8F6HdQw=","crlite_enrolled":false,"id":"692a7afe-4a2b-49dc-a76f-30a046239487","last_modified":1612987116265},{"schema":1612900699058,"derHash":"cj4fieqqwPVrn5OF8TEvbNvXVFQGl7pGNA3yrjDqWec=","subject":"CN=S
SL.com High Assurance CA,OU=www.ssl.com,O=SSL.com,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRAwDgYDVQQKEwdTU0wuY29tMRQwEgYDVQQLEwt3d3cuc3NsLmNvbTEiMCAGA1UEAxMZU1NMLmNvbSBIaWdoIEFzc3VyYW5jZSBDQQ==","whitelist":false,"attachment":{"hash":"71002c2662ef686fd97b1ed39205f25720a2a54c2d5da18fc7df07bfe9b794d0","size":2121,"filename":"Ck8cX6ydytkZDI6Az0ES3m8TykmMPRUEb5UVDjRtJ_w=.pem","location":"security-state-staging/intermediates/c9101671-f46c-4528-bbd3-0ebe60946c0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ck8cX6ydytkZDI6Az0ES3m8TykmMPRUEb5UVDjRtJ/w=","crlite_enrolled":true,"id":"28852233-ff69-424d-9c51-72ed58ffda41","last_modified":1612922307167},{"schema":1612899696277,"derHash":"tl/mob8tUv9ot9Pp0PBrMAocPySDCbcEBcp73sBUvd0=","subject":"CN=GlobalSign Atlas R3 DV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFUxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSswKQYDVQQDEyJHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIw","whitelist":false,"attachment":{"hash":"f6ba4b244d
0f4d8748bdeb3905b09e20d0bb70b28d5fe8f7a5d9f622031a27cd","size":1687,"filename":"xW7Bujpo5E-lsgAwIN5FP5ndgl7TMJJdKhiprnoOP6k=.pem","location":"security-state-staging/intermediates/2ce89d4c-981f-4db3-a423-8e54ac84e6e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xW7Bujpo5E+lsgAwIN5FP5ndgl7TMJJdKhiprnoOP6k=","crlite_enrolled":true,"id":"c5667f47-199d-42d7-93fc-7add87a67e78","last_modified":1612900698152},{"schema":1612900168130,"derHash":"tl/mob8tUv9ot9Pp0PBrMAocPySDCbcEBcp73sBUvd0=","subject":"CN=GlobalSign Atlas R3 DV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFUxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSswKQYDVQQDEyJHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIw","whitelist":false,"attachment":{"hash":"f6ba4b244d0f4d8748bdeb3905b09e20d0bb70b28d5fe8f7a5d9f622031a27cd","size":1687,"filename":"xW7Bujpo5E-lsgAwIN5FP5ndgl7TMJJdKhiprnoOP6k=.pem","location":"security-state-staging/intermediates/6e62179d-8cf7-4dd3-8b7a-23c5f44fed60.pem","mimetype":"application/
x-pem-file"},"pubKeyHash":"xW7Bujpo5E+lsgAwIN5FP5ndgl7TMJJdKhiprnoOP6k=","crlite_enrolled":true,"id":"e4665b3f-67e0-41db-a6da-e7462f9cf059","last_modified":1612900698134},{"schema":1612796133106,"derHash":"F0S0dBAf5qkZNvXmAwfGPaWLiEBbBFMj3sjIwAF2r3c=","subject":"CN=National and Kapodistrian University of Athens TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGQMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTFIMEYGA1UEAww/TmF0aW9uYWwgYW5kIEthcG9kaXN0cmlhbiBVbml2ZXJzaXR5IG9mIEF0aGVucyBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"36053c828d125835e8d94289286aea2da2d611fec7d55eabcf9ed7ff6f47c393","size":2922,"filename":"PmFP9aUtjAk7nFzQ7X_3QtLDOEdeNBJ9s0RIbfOFB9Y=.pem","location":"security-state-staging/intermediates/54a5ee4d-75d7-428c-82ca-9a69b743198e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PmFP9aUtjAk7nFzQ7X/3QtLDOEdeNBJ9s0RIbfOFB9Y=","crlite_enrolled":true,"id":"bb39
88df-aa14-46bc-8a96-cb5ed802ce77","last_modified":1612835915627},{"schema":1612835361276,"derHash":"Jv1MQ2fkY9OccXlq5AEOUzgNyTvBMvsBnWcYpoc+gfQ=","subject":"CN=SHECA RSA Organization Validation Server CA G3,O=UniTrust,C=CN","subjectDN":"MFkxCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDE3MDUGA1UEAwwuU0hFQ0EgUlNBIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlcnZlciBDQSBHMw==","whitelist":false,"attachment":{"hash":"a02a5c8205e62c2ef5dc42345a1585558c86f166ed9875d861601a465bcc4651","size":2016,"filename":"0JA1q1ctk_4J8qS0t-GhJaG5egVDq9SB33oMY7SMpfs=.pem","location":"security-state-staging/intermediates/caec957d-379a-4c23-bf42-3bd122e7cf33.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0JA1q1ctk/4J8qS0t+GhJaG5egVDq9SB33oMY7SMpfs=","crlite_enrolled":true,"id":"10ec0271-99d5-4c06-a20d-1c03ccf7d780","last_modified":1612835915610},{"schema":1612576168069,"derHash":"DFoJ24rt99LR3eFNzMLbbqlZvPbwEDYNg2w0LGJNfg4=","subject":"CN=Entrust Certification Authority - L1F,OU=See www.entrust.net/legal-terms+
OU=(c) 2016 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTYgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFG","whitelist":false,"attachment":{"hash":"0f073bd985840e123b19311aa4772e90dcd0ac807527490689309ef0b449e371","size":1613,"filename":"45FtWowsHe863G4x3FzC8qT3R9tgrLIVwZGjN5hwd80=.pem","location":"security-state-staging/intermediates/9b3cc3eb-ea08-4278-a4c3-b86ffe4570a8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"45FtWowsHe863G4x3FzC8qT3R9tgrLIVwZGjN5hwd80=","crlite_enrolled":true,"id":"a62aae33-e09c-4f50-95fc-8f7ec5599006","last_modified":1612576697229},{"schema":1612576169113,"derHash":"ClUqZfIv+CDn7D1Du/iLAqvDS9JH4MNQWJG2NC8WpfI=","subject":"CN=SHECA RSA Domain Validation Server CA G3,O=UniTrust,C=CN","subjectDN":"MFMxCzAJBgNVBAYTAkNO
MREwDwYDVQQKDAhVbmlUcnVzdDExMC8GA1UEAwwoU0hFQ0EgUlNBIERvbWFpbiBWYWxpZGF0aW9uIFNlcnZlciBDQSBHMw==","whitelist":false,"attachment":{"hash":"42516b0068507cb60d6383aaefa05ac169921cff9e4616761151efe098d3e1fe","size":2008,"filename":"N6OrM0KKQgR1zORoDKkLLFEKAYCmS_84dpbLl_qNOnU=.pem","location":"security-state-staging/intermediates/525578e5-a94b-4525-b9e7-801be6e0ff89.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N6OrM0KKQgR1zORoDKkLLFEKAYCmS/84dpbLl/qNOnU=","crlite_enrolled":true,"id":"4b6a2421-1677-41c0-8103-bc13fb7e09f9","last_modified":1612576697210},{"schema":1612490285281,"derHash":"J+CT6INgfk4OC7Hrq64snA5Vqc8CA3O/ojT+Bf4Lp0M=","subject":"CN=JPRS Domain Validation Authority - G1,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzE=","whitelist":false,"attachment":{"hash":"1da93e47ca6470e85dad24c31ce916537588a3cf88f1d43d1fc9c4e57
de8b5ff","size":1646,"filename":"WE8wuQpM8OwqLW_H3ejlZ_VMPcJMYTOA_ggrGWbSpNc=.pem","location":"security-state-staging/intermediates/6d6e0e82-8f55-40fc-8d62-72fab0b6a905.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WE8wuQpM8OwqLW/H3ejlZ/VMPcJMYTOA/ggrGWbSpNc=","crlite_enrolled":false,"id":"90de290c-9563-4a88-8fa6-d2179534ff34","last_modified":1612511954021},{"schema":1612489777568,"derHash":"DluAQLOrYKUNLV+xHhmusuRbVkszW3nXc9QrgdghnHU=","subject":"CN=DKB CA 1O1,O=Deutsche Kreditbank AG,C=DE","subjectDN":"MEMxCzAJBgNVBAYTAkRFMR8wHQYDVQQKExZEZXV0c2NoZSBLcmVkaXRiYW5rIEFHMRMwEQYDVQQDEwpES0IgQ0EgMU8x","whitelist":false,"attachment":{"hash":"0d6a04b61a3f6fe0d25a45ebce669b61b803818acf9fec52dce995e7820a5646","size":2369,"filename":"6mn1Oob4B3Gc-G5_S1wP0LQc9KpzGrXRD5LWKSS3GlE=.pem","location":"security-state-staging/intermediates/0abef2b9-f3eb-4326-b533-c2518a91342f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6mn1Oob4B3Gc+G5/S1wP0LQc9KpzGrXRD5LWKSS3GlE=","crlite_enrolle
d":false,"id":"5f3d2450-bc1b-4592-b9c5-d733f00a7357","last_modified":1612490284282},{"schema":1612391844656,"derHash":"ansqo0FAOaZj1di7q4JWo5eahMMyv14e6PbQ4K2oRmg=","subject":"CN=DigiCert QV EV TLS ICA G1,O=DigiCert\\, Inc.,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRcwFQYDVQQKDA5EaWdpQ2VydCwgSW5jLjEiMCAGA1UEAwwZRGlnaUNlcnQgUVYgRVYgVExTIElDQSBHMQ==","whitelist":false,"attachment":{"hash":"da7ebd3537612c5ba7de71120be602b9e04c9127ce688075aa408dbe6025f441","size":1943,"filename":"WlGHvWN6kWbS5I0pZA1mzBa36H7tg_dkp0nOMyIfpIg=.pem","location":"security-state-staging/intermediates/fdd44b41-87a8-41b1-b24d-bc629efb1193.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WlGHvWN6kWbS5I0pZA1mzBa36H7tg/dkp0nOMyIfpIg=","crlite_enrolled":true,"id":"2b7934df-863e-4ca7-a586-c7e3f8289d51","last_modified":1612403909546},{"schema":1612231259909,"derHash":"k6B4mNibLMoWa6bx+KFBOM5Dgo5JG4MZJryCR9ORzHI=","subject":"CN=Starfield Secure Certificate Authority - G2,OU=http://certs.starfieldtech.com/repositor
y/,O=Starfield Technologies\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIHGMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEzMDEGA1UECxMqaHR0cDovL2NlcnRzLnN0YXJmaWVsZHRlY2guY29tL3JlcG9zaXRvcnkvMTQwMgYDVQQDEytTdGFyZmllbGQgU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcy","whitelist":false,"attachment":{"hash":"4283da4ef9b6b21e475fb4a88aff9532a5c74e35282cb5459a20ee419646571c","size":1792,"filename":"8kGWrpQHhmc0jwLo43RYo6bmqtHgsNxhARjM5yFCe_w=.pem","location":"security-state-staging/intermediates/f0b4b8ab-658e-452d-a259-15b15f68060a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8kGWrpQHhmc0jwLo43RYo6bmqtHgsNxhARjM5yFCe/w=","crlite_enrolled":true,"id":"eda1d6cc-95f3-4925-b185-1972acc69e5a","last_modified":1612252662151},{"schema":1612116449436,"derHash":"93zhWdOIjqK8w13UZHLO2MwzAH4NpsiROc06Jw2JADM=","subject":"CN=JPRS Organization Validation Authority - G1,O=Japan Registry Services Co.\\, Ltd.,C=JP"
,"subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzE=","whitelist":false,"attachment":{"hash":"92d9886b691320b334b799e6516c3dd2b5983372bd2bcc7f08fc2d333da9d9c1","size":1654,"filename":"L5ieGJdPRxC_98J-9PhsO1f9uxRZOzwq8bdfg4akGmk=.pem","location":"security-state-staging/intermediates/e7a0f9c3-8c87-4bc7-9d6f-14e84b6a4cac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"L5ieGJdPRxC/98J+9PhsO1f9uxRZOzwq8bdfg4akGmk=","crlite_enrolled":false,"id":"462bd0e2-8618-4ee3-9643-5aae497bb252","last_modified":1612123127856},{"schema":1611862893040,"derHash":"G095TXcNxuBdx6QVhFD4JZVy621Z3mZ6PD++CNoBJIE=","subject":"CN=Global Trust CA - OV (RSA),O=Global Digital Inc.,C=TW","subjectDN":"MFAxCzAJBgNVBAYTAlRXMRwwGgYDVQQKExNHbG9iYWwgRGlnaXRhbCBJbmMuMSMwIQYDVQQDExpHbG9iYWwgVHJ1c3QgQ0EgLSBPViAoUlNBKQ==","whitelist":false,"attachment":{"hash":"136048afa3b294583ccc15f0a0a6102dcca6cc9bf7d5c
19811460c54c4e79fce","size":2089,"filename":"K6VGZ_ktzZYufpj5GSQX1fCds5dLtjs5vlSRcV-Oe8U=.pem","location":"security-state-staging/intermediates/002c6e58-6238-435b-9b0d-7b0691d17ed4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"K6VGZ/ktzZYufpj5GSQX1fCds5dLtjs5vlSRcV+Oe8U=","crlite_enrolled":false,"id":"d6d94677-fd6d-4901-bbae-6817f8abcd97","last_modified":1611867512219},{"schema":1611841764484,"derHash":"dYlNTJTCLXKW7hn7RHYjJYwlkbFwMSiLs4aiCqHw4KY=","subject":"CN=NetLock K\u00f6zjegyz\u0151i (Class A) Tan\u00fas\u00edtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIGuMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE8MDoGA1UEAwwzTmV0TG9jayBLw7Z6amVneXrFkWkgKENsYXNzIEEpIFRhbsO6c8OtdHbDoW55a2lhZMOz","whitelist":false,"attachment":{"hash":"4327de015aac627d028d4696e3b582048933e2f87d179c261b01897
e32b67a1d","size":2190,"filename":"RWiIGgLo9cnu9JGiGhnz5uw6FBH1Y5qDY4qGsl5Q9EM=.pem","location":"security-state-staging/intermediates/27099d75-dfc0-441a-a1de-81e112a1d6e5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RWiIGgLo9cnu9JGiGhnz5uw6FBH1Y5qDY4qGsl5Q9EM=","crlite_enrolled":true,"id":"a76d3004-9787-484d-a4d9-2e5555cd8b56","last_modified":1611842278578},{"schema":1611841764915,"derHash":"7dT7pAzTq64U8XW732cGprcoAHprRthmyge3Z0Ov9Cw=","subject":"CN=FUJIFILM Fnet CA - S2,O=FUJIFILM,C=JP","subjectDN":"MEAxCzAJBgNVBAYTAkpQMREwDwYDVQQKEwhGVUpJRklMTTEeMBwGA1UEAxMVRlVKSUZJTE0gRm5ldCBDQSAtIFMy","whitelist":false,"attachment":{"hash":"47545f66891e5ed5a53c7991cbcd4359aa9cb6dec5626532dac2ca678d6e15d4","size":1593,"filename":"FoZrORtfOQVQIdnaO-pphxZC_MNQQ1WYobR981Jaydk=.pem","location":"security-state-staging/intermediates/63ad0bdd-0afc-4d0e-9d2c-da6d4dd9a811.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FoZrORtfOQVQIdnaO+pphxZC/MNQQ1WYobR981Jaydk=","crlite_enrolled":fal
se,"id":"5c93d10c-ee60-4257-80b8-06c25ca75baf","last_modified":1611842278561},{"schema":1611690096545,"derHash":"I+4SqNqdOFScVKMrweShi68VcEiBB9Fp69c039ozCw4=","subject":"CN=DigiCert TLS ICA Universal 2021,O=DigiCert\\, Inc.,C=US","subjectDN":"MFAxCzAJBgNVBAYTAlVTMRcwFQYDVQQKDA5EaWdpQ2VydCwgSW5jLjEoMCYGA1UEAwwfRGlnaUNlcnQgVExTIElDQSBVbml2ZXJzYWwgMjAyMQ==","whitelist":false,"attachment":{"hash":"f7a32beef09e7d3328e95a02e7de4b8289bde9e6576ff0539631563e17335f64","size":1780,"filename":"FyZQNdKyPwjhBkpsQgMcukRcpU9Dkiohe52CEzj_KKQ=.pem","location":"security-state-staging/intermediates/b26a10da-8699-4d76-b47b-e628ed81a01d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FyZQNdKyPwjhBkpsQgMcukRcpU9Dkiohe52CEzj/KKQ=","crlite_enrolled":true,"id":"df64e8a9-edb2-4d98-8507-de8774d5566e","last_modified":1611734348675},{"schema":1611647872433,"derHash":"51WunELBMV8n3NBkUcar4LxqrW7dwuVjXPxJGBktNEw=","subject":"CN=sslTrus (RSA) EV CA,O=sslTrus (\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280
\u6709\u9650\u516c\u53f8),C=CN","subjectDN":"MGQxCzAJBgNVBAYTAkNOMTcwNQYDVQQKDC5zc2xUcnVzICjkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gpMRwwGgYDVQQDExNzc2xUcnVzIChSU0EpIEVWIENB","whitelist":false,"attachment":{"hash":"55e848660f48e2a6b95e8759ec0b776099131c63ec8883a1ef8dcf779bd72355","size":2138,"filename":"i8sF2qLB7tRF7sIqB2OmU30xW1URXbosyF-3an-ceXg=.pem","location":"security-state-staging/intermediates/bb6ab381-a252-4a1a-9f54-f0b14b386a85.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i8sF2qLB7tRF7sIqB2OmU30xW1URXbosyF+3an+ceXg=","crlite_enrolled":true,"id":"3a6d2131-dd47-4cf1-b60b-f13c183a5c95","last_modified":1611669586304},{"schema":1611626281458,"derHash":"nbCiDDBVQeFegYqIDQZXmHapyQG47s2WhILFjZun8Kc=","subject":"CN=TrustAsia EV TLS Pro CA G3,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFkxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSMwIQYDVQQDExpUcnVzdEFzaWEgRVYgVExTIFBybyBDQSBHMw==","whitelist":false,"attachment":{"hash":"4e4f81e6
93158e50a56fefb6a5aca6b3e4574f9fe988f6c8784cddc95d070ff8","size":1650,"filename":"qPCsIegto8XzD_ooUOSN32SyAwuprv0BX_QDRc0K3aI=.pem","location":"security-state-staging/intermediates/4ac60b8e-b3bd-4e52-a97e-bd3b83cc2ec5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qPCsIegto8XzD/ooUOSN32SyAwuprv0BX/QDRc0K3aI=","crlite_enrolled":true,"id":"0b7fb8d7-395a-4a87-bbca-e9f0494cbbd2","last_modified":1611647871486},{"schema":1611583083156,"derHash":"jYPWn6YVqiaDsT14lEgsVCsLzxi7ktMPAV+0JHGvu2Y=","subject":"CN=TrustAsia ECC EV TLS Pro CA G3,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MF0xCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMScwJQYDVQQDEx5UcnVzdEFzaWEgRUNDIEVWIFRMUyBQcm8gQ0EgRzM=","whitelist":false,"attachment":{"hash":"02177e95a053529e56a44df11a7524e3b40ddadc426f737c2d9c84e00dc43f28","size":1382,"filename":"xgkVHlf2XyODr7l-8b1HSx2m_0yRG8ZF5HdfiYwDwaY=.pem","location":"security-state-staging/intermediates/5b9163c5-db6d-4370-8fa7-c89bcf81e95b.pem",
"mimetype":"application/x-pem-file"},"pubKeyHash":"xgkVHlf2XyODr7l+8b1HSx2m/0yRG8ZF5HdfiYwDwaY=","crlite_enrolled":true,"id":"b866ec0b-ef71-426c-8709-aab24aae0fbd","last_modified":1611626280479},{"schema":1611582564518,"derHash":"OBiZWyigkNg6YWZxF9UMd8Hx3HoTdoDy5VznVTFPLQo=","subject":"CN=Yekta Domain Validated SSL CA 1,O=Pardazeshgaran Shahr Hooshmand Yekta Co.,C=IR","subjectDN":"MGoxCzAJBgNVBAYTAklSMTEwLwYDVQQKDChQYXJkYXplc2hnYXJhbiBTaGFociBIb29zaG1hbmQgWWVrdGEgQ28uMSgwJgYDVQQDDB9ZZWt0YSBEb21haW4gVmFsaWRhdGVkIFNTTCBDQSAx","whitelist":false,"attachment":{"hash":"bb7867525742b369a2d4aa0d32435efc5335cb5345f63c531ba57670798dd390","size":1760,"filename":"H9EWOWmPlQDDBwAbp_31T2xDnk5xl_tppGco9Jp0eOk=.pem","location":"security-state-staging/intermediates/4300d654-d85c-40f8-97a8-d15d616ba1c3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H9EWOWmPlQDDBwAbp/31T2xDnk5xl/tppGco9Jp0eOk=","crlite_enrolled":false,"id":"1ebb8ae1-2451-4e9b-9bbf-440aa561b615","last_modified":1611583082268},
{"schema":1611582562982,"derHash":"F/CKT13DjEm7F9zWSyznQs/quZvltn28FMLolnccYOE=","subject":"CN=Yekta Organization Validated SSL CA 1,O=Pardazeshgaran Shahr Hooshmand Yekta Co.,C=IR","subjectDN":"MHAxCzAJBgNVBAYTAklSMTEwLwYDVQQKDChQYXJkYXplc2hnYXJhbiBTaGFociBIb29zaG1hbmQgWWVrdGEgQ28uMS4wLAYDVQQDDCVZZWt0YSBPcmdhbml6YXRpb24gVmFsaWRhdGVkIFNTTCBDQSAx","whitelist":false,"attachment":{"hash":"486e0a3b6a007b50af4caea8b8eb13afd585138e57d8fe341eec1ec7a20adc71","size":1768,"filename":"Ufih1VeDxhjbteVJNXygXP2MY_Q8c5bmwG0Ll8AQXTY=.pem","location":"security-state-staging/intermediates/1e2884de-0e02-466d-87d3-08333e45105e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ufih1VeDxhjbteVJNXygXP2MY/Q8c5bmwG0Ll8AQXTY=","crlite_enrolled":false,"id":"382c3d21-f0c0-430a-9512-eb2ca7e514b4","last_modified":1611583082256},{"schema":1611517292726,"derHash":"RksOwKYC8Bk9tfM5EYhaOmGSGtFtJmTiW++rEM+m7SU=","subject":"OU=Public Certification Authority,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MFsxC
zAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEnMCUGA1UECwweUHVibGljIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"49845caec147a9f80e7f49b5e4b2b8629653bccf72d7aa8dfa0b7029f5d75514","size":1934,"filename":"qMjf0br8Ay71_wiJ0t25y4v3IWwirr3SF1bWHJzkbnE=.pem","location":"security-state-staging/intermediates/cabaf189-98ae-41ee-8da3-966fb99dbea2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qMjf0br8Ay71/wiJ0t25y4v3IWwirr3SF1bWHJzkbnE=","crlite_enrolled":true,"id":"201bbcbe-98a9-4e1d-9ba8-1d91ccaef4d5","last_modified":1611539904877},{"schema":1611539375844,"derHash":"S9FvSVXz88nI6kjvmZUyTaUSFyT4mRXV8skesLrvIzc=","subject":"OU=Public Certification Authority,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MFsxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEnMCUGA1UECwweUHVibGljIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"689c7ab13bb497838c62b566e5da7f914f4cf9354f08643500263bcfb46a32a3","s
ize":2105,"filename":"qMjf0br8Ay71_wiJ0t25y4v3IWwirr3SF1bWHJzkbnE=.pem","location":"security-state-staging/intermediates/c2017a82-2237-4c28-8656-5764f263e185.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qMjf0br8Ay71/wiJ0t25y4v3IWwirr3SF1bWHJzkbnE=","crlite_enrolled":true,"id":"a869aa70-b82b-40fc-b8b7-123af99bb58e","last_modified":1611539904857},{"schema":1611539375365,"derHash":"4KSpHFCvxPss7N60HtjK5yvwFE+w1ii0k/6sUREg/XM=","subject":"CN=Atos TrustedRoot Client-CA 2013,O=Atos,C=DE","subjectDN":"MEYxKDAmBgNVBAMMH0F0b3MgVHJ1c3RlZFJvb3QgQ2xpZW50LUNBIDIwMTMxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"8f4098af61d8dad073dd0771e4efd2ee78f3b9dde5b20990c03fe1075bdd678a","size":1561,"filename":"x1544Iz8YLSNjqF0CQ1JdKEkifn0AZ3h_QZt_MioExg=.pem","location":"security-state-staging/intermediates/92c082b5-f8f5-4f02-a1a2-d0a7112d4a35.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x1544Iz8YLSNjqF0CQ1JdKEkifn0AZ3h/QZt/MioExg=","crlite_enrolled":tr
ue,"id":"8b0d5b38-6f90-4466-8606-bde07a3e12e8","last_modified":1611539904837},{"schema":1611431378144,"derHash":"E/ezfMH4RCqM4T57RCIhfY6JlXz+qFDDy751y+Vh53Q=","subject":"CN=CertCloud ECC EV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgRUNDIEVWIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"68a6d4de039d26f711386d924105e95da6fb2c74e019e46d3006b1d43a0281f3","size":1272,"filename":"S9iaDtfedpswiFg99kL_1fGIcuuU0gvf0uBHeNGHlmw=.pem","location":"security-state-staging/intermediates/da97892c-7184-4868-809e-e2de1fd11f77.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S9iaDtfedpswiFg99kL/1fGIcuuU0gvf0uBHeNGHlmw=","crlite_enrolled":true,"id":"0b514bd5-5bab-4144-8394-f91d8e5083cb","last_modified":1611431878700},{"schema":1611370662565,"derHash":"E/ezfMH4RCqM4T57RCIhfY6JlXz+qFDDy751y+Vh53Q=","subject":"CN=CertCloud ECC EV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRw
wGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgRUNDIEVWIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"68a6d4de039d26f711386d924105e95da6fb2c74e019e46d3006b1d43a0281f3","size":1272,"filename":"S9iaDtfedpswiFg99kL_1fGIcuuU0gvf0uBHeNGHlmw=.pem","location":"security-state-staging/intermediates/ef7d0921-b722-44bd-a037-89afdb97564f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S9iaDtfedpswiFg99kL/1fGIcuuU0gvf0uBHeNGHlmw=","crlite_enrolled":true,"id":"1f8cd9e7-71f5-4ee1-a557-c82739d93206","last_modified":1611431878681},{"schema":1611370183951,"derHash":"bZn7Jl6xxbN0R2X8vGSPPNjhv/r9xML5m51Hz3/xwk8=","subject":"CN=ISRG Root X1,O=Internet Security Research Group,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgx","whitelist":false,"attachment":{"hash":"86a0c0e53489095cfdcd1e9c6049c12959ed799d970b71fbc0c240c1b79da98a","size":1923,"filename":"C5-lpZ7tcVwmwQIMcRtPbsQtWLABXhQzejna0wHFr8
M=.pem","location":"security-state-staging/intermediates/928d3ca7-d059-41ac-9690-a9c2eb4fc4e2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"C5+lpZ7tcVwmwQIMcRtPbsQtWLABXhQzejna0wHFr8M=","crlite_enrolled":false,"id":"7936015d-855d-4e07-aed5-76453d4732dd","last_modified":1611370661678},{"schema":1611366598719,"derHash":"bZn7Jl6xxbN0R2X8vGSPPNjhv/r9xML5m51Hz3/xwk8=","subject":"CN=ISRG Root X1,O=Internet Security Research Group,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgx","whitelist":false,"attachment":{"hash":"86a0c0e53489095cfdcd1e9c6049c12959ed799d970b71fbc0c240c1b79da98a","size":1923,"filename":"C5-lpZ7tcVwmwQIMcRtPbsQtWLABXhQzejna0wHFr8M=.pem","location":"security-state-staging/intermediates/37c110cd-256f-49fb-9fd5-a14d160b2c0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"C5+lpZ7tcVwmwQIMcRtPbsQtWLABXhQzejna0wHFr8M=","crlite_enrolled":false,"id":"c0bdaa91-8116-4b90-b419-b8b946e7
7a2c","last_modified":1611367071551},{"schema":1611280168224,"derHash":"JpesuWpJviv8XAbDk5SfDY51EGrW1Mc+LaFyqQgxqFo=","subject":"CN=Abbott Laboratories Secure Authentication CA G2,O=Abbott Laboratories Inc.,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMSEwHwYDVQQKExhBYmJvdHQgTGFib3JhdG9yaWVzIEluYy4xODA2BgNVBAMTL0FiYm90dCBMYWJvcmF0b3JpZXMgU2VjdXJlIEF1dGhlbnRpY2F0aW9uIENBIEcy","whitelist":false,"attachment":{"hash":"2dd82d3bd0accbba61c96af89b612f8a1d398765d793f42607d3afc8b8dad683","size":1723,"filename":"bzDvo6S9sfCilsvuF3s9e-vz0NDErb57SOX9rMVGnlE=.pem","location":"security-state-staging/intermediates/7ab12434-0d0c-4347-822a-1a018c7369ba.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bzDvo6S9sfCilsvuF3s9e+vz0NDErb57SOX9rMVGnlE=","crlite_enrolled":false,"id":"88d5e263-ca11-45bf-82b8-fcdbe867c000","last_modified":1611280673595},{"schema":1611176243692,"derHash":"xCpNjAkEuyEZBvQ7RBu7ybWgA7o2EYef00rldvfC92Q=","subject":"CN=DigiCert QuoVadis TLS ICA QV Root CA 1 G3,O=DigiCert\\, Inc,C=U
S","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRYwFAYDVQQKDA1EaWdpQ2VydCwgSW5jMTIwMAYDVQQDDClEaWdpQ2VydCBRdW9WYWRpcyBUTFMgSUNBIFFWIFJvb3QgQ0EgMSBHMw==","whitelist":false,"attachment":{"hash":"f131ca0a9a73adfbd8b9dbf2f0ffc7a130b98e7064f31563619f38656747629e","size":1967,"filename":"mDRXN3fhAPbsEZzZ6KgUrT9K8v0Uy1_lYQrkjelgldw=.pem","location":"security-state-staging/intermediates/59c08984-5d90-4b92-b199-9c225bbad4af.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mDRXN3fhAPbsEZzZ6KgUrT9K8v0Uy1/lYQrkjelgldw=","crlite_enrolled":true,"id":"d6e5312b-851e-4527-a9d9-ab6b24c9674e","last_modified":1611194257322},{"schema":1611193770229,"derHash":"DVG2zc80qfIhRHh/P9kg3IgA+2BJC/yNKJoZU+D72k0=","subject":"CN=TrustAsia EV TLS Pro CA G2,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFkxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSMwIQYDVQQDExpUcnVzdEFzaWEgRVYgVExTIFBybyBDQSBHMg==","whitelist":false,"attachment":{"hash":"8410138c0818efe36c3c5e447194465f2a0b00c3453529916
ca8fa0c0abaf130","size":1670,"filename":"JTqDYh_WILx03HF-qMSr0wy2uDSoWh4uqNea4MnbzZ8=.pem","location":"security-state-staging/intermediates/622cc492-e266-42bf-8807-edd1fafd23b3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JTqDYh/WILx03HF+qMSr0wy2uDSoWh4uqNea4MnbzZ8=","crlite_enrolled":true,"id":"0188e712-0f9b-4e95-8c28-48e3eaae9945","last_modified":1611194257302},{"schema":1611193769761,"derHash":"E5rDa9hTmLu7RYhofCDcNoJ9A6X0Kq34fwK+zEvpv8I=","subject":"CN=DigiCert Secure Site EV CN CA G3,O=DigiCert Inc,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERpZ2lDZXJ0IFNlY3VyZSBTaXRlIEVWIENOIENBIEcz","whitelist":false,"attachment":{"hash":"0b1f6ecad39cb939686ab17ee9e4168992c49d49dadf8783292a36743b0eabd0","size":1638,"filename":"q0mT-mtnAchq7xXJEtVo25yl_8a1e08EqUu2Ww5ybfQ=.pem","location":"security-state-staging/intermediates/1ce4670b-c3e7-4e29-9f89-30844efb4ed9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q0mT+mtnAchq7xXJEtVo25yl/8
a1e08EqUu2Ww5ybfQ=","crlite_enrolled":true,"id":"bcd47841-6736-4533-bf49-4312192e3896","last_modified":1611194257283},{"schema":1611172171309,"derHash":"VEpvYpl1bsreT3w0gRBUGBtqI8D/g+sKwaKM6/4Nrj4=","subject":"CN=DigiCert TLS ICA GeoTrust PCA-G2,O=DigiCert\\, Inc.,C=US","subjectDN":"MFExCzAJBgNVBAYTAlVTMRcwFQYDVQQKDA5EaWdpQ2VydCwgSW5jLjEpMCcGA1UEAwwgRGlnaUNlcnQgVExTIElDQSBHZW9UcnVzdCBQQ0EtRzI=","whitelist":false,"attachment":{"hash":"00e542d0e9877f5102e0eb89a416335ccd3cc75c8bcbbb047083bb3eeee4c75b","size":1280,"filename":"6x30RuzH_PkHDnVOldX1g-KzUe-dgbggRwF4KJQ285Q=.pem","location":"security-state-staging/intermediates/bfe0d174-db9a-48fc-99f4-b5cb2e90f039.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6x30RuzH/PkHDnVOldX1g+KzUe+dgbggRwF4KJQ285Q=","crlite_enrolled":true,"id":"2da53828-c1ac-41a0-a435-992841f4686c","last_modified":1611172676894},{"schema":1611172171765,"derHash":"oF/kUpqQVCR0C8Yedzx7gplRGJNOQJQhYyOXwf5tCUg=","subject":"CN=DigiCert QuoVadis TLS ICA QuoVadis RCA
,O=DigiCert\\, Inc,C=US","subjectDN":"MFYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKDA1EaWdpQ2VydCwgSW5jMS8wLQYDVQQDDCZEaWdpQ2VydCBRdW9WYWRpcyBUTFMgSUNBIFF1b1ZhZGlzIFJDQQ==","whitelist":false,"attachment":{"hash":"61fb1e00c120b7d8eb29a55826f8925947f9053b6bbd5d3ffe964cc05e6d6dde","size":1683,"filename":"Bh60Y6NbOPMA-3_NfhiqlTDjW2fQRTnUly_tdwJWP90=.pem","location":"security-state-staging/intermediates/2ef170a4-24c1-4ae1-b6c9-847620f12f10.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Bh60Y6NbOPMA+3/NfhiqlTDjW2fQRTnUly/tdwJWP90=","crlite_enrolled":true,"id":"ab58fcb7-0eaf-4652-99c8-7753a75f235f","last_modified":1611172676874},{"schema":1611171692672,"derHash":"oF/kUpqQVCR0C8Yedzx7gplRGJNOQJQhYyOXwf5tCUg=","subject":"CN=DigiCert QuoVadis TLS ICA QuoVadis RCA,O=DigiCert\\, Inc,C=US","subjectDN":"MFYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKDA1EaWdpQ2VydCwgSW5jMS8wLQYDVQQDDCZEaWdpQ2VydCBRdW9WYWRpcyBUTFMgSUNBIFF1b1ZhZGlzIFJDQQ==","whitelist":false,"attachment":{"hash":"61fb1e00c120b7d8eb29a55826f8925947f905
3b6bbd5d3ffe964cc05e6d6dde","size":1683,"filename":"Bh60Y6NbOPMA-3_NfhiqlTDjW2fQRTnUly_tdwJWP90=.pem","location":"security-state-staging/intermediates/edaf7e4f-93c0-431c-8fb2-7e01cb7c3a80.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Bh60Y6NbOPMA+3/NfhiqlTDjW2fQRTnUly/tdwJWP90=","crlite_enrolled":true,"id":"0600918a-adab-4c3d-b3dc-9a7b6228f2ed","last_modified":1611172676855},{"schema":1610999377196,"derHash":"VKdoR9KTrLj6HYhd5LtEmVa3UJL5Yj+kNEGrRF3Vcoo=","subject":"CN=sslTrus (ECC) DV CA,O=sslTrus,C=CN","subjectDN":"MD0xCzAJBgNVBAYTAkNOMRAwDgYDVQQKEwdzc2xUcnVzMRwwGgYDVQQDExNzc2xUcnVzIChFQ0MpIERWIENB","whitelist":false,"attachment":{"hash":"d23a03f951a5dfe7bf99283e17aa1a0e3634eb69ae9022b26bb71e6aa6efe532","size":1219,"filename":"UMr9k5clLq6HrdNc5SEiok4r2rONjYgWHW_eisDP7Gg=.pem","location":"security-state-staging/intermediates/1d61d630-620f-4687-a644-af28a0f2ddba.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UMr9k5clLq6HrdNc5SEiok4r2rONjYgWHW/eisDP7Gg=","crlite_enr
olled":false,"id":"dde93a7d-dca5-41a4-be12-90191a32e81b","last_modified":1610999846095},{"schema":1610999375657,"derHash":"hopBQA1CWpONfsBsKQlzALEnBttHO2p5UFZfmNcE8ZY=","subject":"CN=sslTrus (RSA) OV CA,O=sslTrus,C=CN","subjectDN":"MD0xCzAJBgNVBAYTAkNOMRAwDgYDVQQKEwdzc2xUcnVzMRwwGgYDVQQDExNzc2xUcnVzIChSU0EpIE9WIENB","whitelist":false,"attachment":{"hash":"54246aebbe7a4d8ef4d93c1d30e24da1f159d200a8068aa45dd6ce1ed5a64c8a","size":2056,"filename":"ih0R75GcT4FHFDlYK3QnWp_EQJYdcLVZ69u4d3mIJwE=.pem","location":"security-state-staging/intermediates/f21a0945-9117-41c3-8ce9-28d388e80ddf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ih0R75GcT4FHFDlYK3QnWp/EQJYdcLVZ69u4d3mIJwE=","crlite_enrolled":false,"id":"62476175-38d3-4790-b161-8b62f8d0c883","last_modified":1610999846084},{"schema":1610999372596,"derHash":"7xULGjNxR1yLPtEdv5O/kIQL1Tlca1+mrju/p0b69Vs=","subject":"CN=sslTrus (ECC) OV CA,O=sslTrus,C=CN","subjectDN":"MD0xCzAJBgNVBAYTAkNOMRAwDgYDVQQKEwdzc2xUcnVzMRwwGgYDVQQDExNzc2xUcnVz
IChFQ0MpIE9WIENB","whitelist":false,"attachment":{"hash":"c25150f600b9ae1b33b9a7f827d9d373cd09a7b2060bbadde57f8118c48fb0cb","size":1215,"filename":"pJxjodLJbnAgcHt9MNFsEIq5_2tWVNeIo2xYSRJE4SE=.pem","location":"security-state-staging/intermediates/92d458c7-50e1-47a2-9326-7cea71545520.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pJxjodLJbnAgcHt9MNFsEIq5/2tWVNeIo2xYSRJE4SE=","crlite_enrolled":false,"id":"1b2793b6-b285-4eca-8925-4bb04f23de95","last_modified":1610999846072},{"schema":1610999374114,"derHash":"VGBJatScuCHWJ9rIqAUSmCK6skK5KaDjGV1wV2HR0Ww=","subject":"CN=sslTrus (RSA) DV CA,O=sslTrus,C=CN","subjectDN":"MD0xCzAJBgNVBAYTAkNOMRAwDgYDVQQKEwdzc2xUcnVzMRwwGgYDVQQDExNzc2xUcnVzIChSU0EpIERWIENB","whitelist":false,"attachment":{"hash":"641b2f28494debbb041a369cddea9252e11f7786dec7357bcdd5598f11cc6a1f","size":2056,"filename":"sz42Xvj0IDwSUHcevD4ns_3KOoE01yS63MA_HmP7uMM=.pem","location":"security-state-staging/intermediates/755b0ece-1ba5-476e-a318-239851989683.pem","mimetype":
"application/x-pem-file"},"pubKeyHash":"sz42Xvj0IDwSUHcevD4ns/3KOoE01yS63MA/HmP7uMM=","crlite_enrolled":false,"id":"2780ce74-15ac-4292-b126-97ed74d0137a","last_modified":1610999846060},{"schema":1610999380345,"derHash":"Nrpwuq7fY3tMFrVGUa7DYFna9k3PbK4NlMuIwstMJwI=","subject":"CN=sslTrus (ECC) EV CA,O=sslTrus (\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8),C=CN","subjectDN":"MGQxCzAJBgNVBAYTAkNOMTcwNQYDVQQKDC5zc2xUcnVzICjkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gpMRwwGgYDVQQDExNzc2xUcnVzIChFQ0MpIEVWIENB","whitelist":false,"attachment":{"hash":"baf590aadcc3af627203f8fb1dbe5cde59de59e5ae2426004f5e7f218b2f6d38","size":1301,"filename":"D9cufgL1WPvVfln-nAZCjnwBzvm0PkPT02NbL_keD3w=.pem","location":"security-state-staging/intermediates/155817d2-108f-4320-bf47-8ab1a2921a77.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D9cufgL1WPvVfln+nAZCjnwBzvm0PkPT02NbL/keD3w=","crlite_enrolled":false,"id":"721ae378-ec64-48a3-a56d-34fd12f08946","last_modified":161
0999846045},{"schema":1610979409846,"derHash":"AUU/ZFzZHiM7dISCfyP4pXP9ZBAp6opr/lSe9O2LMj0=","subject":"CN=HydrantID SSL ICA G2,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMTAwLgYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHTAbBgNVBAMTFEh5ZHJhbnRJRCBTU0wgSUNBIEcy","whitelist":false,"attachment":{"hash":"7210ab4fd67176c39b121dc273d719681e6df16720f1ec337d1ed98f2f42397f","size":2410,"filename":"400Fim9IQe4j-Gj-Ci4R44M3gA6J1_TRh8LlPSLF3I8=.pem","location":"security-state-staging/intermediates/d86830f0-be1c-4699-823a-14b96b05fedd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"400Fim9IQe4j+Gj+Ci4R44M3gA6J1/TRh8LlPSLF3I8=","crlite_enrolled":true,"id":"03652dfb-4639-4ce5-a586-d186a812f8e7","last_modified":1610981840623},{"schema":1610979414905,"derHash":"2rP6DW6CEAb+cJrhIXarovOXcGzJxx9cHA0JgETa69w=","subject":"CN=HARICA QWAC RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),L=Ath
ens,C=GR","subjectDN":"MIHBMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMSswKQYDVQQKDCJHcmVlayBVbml2ZXJzaXRpZXMgTmV0d29yayAoR1VuZXQpMRgwFgYDVQRhDA9WQVRHUi0wOTkwMjgyMjAxNzA1BgNVBAsMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ0ExITAfBgNVBAMMGEhBUklDQSBRV0FDIFJTQSBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"f227a120f73f7c94eea56c73047fd7bc0c8d6c1c7f2e43d3dc8bc4bfe55156dd","size":2568,"filename":"4_BwvJtY4Tb6_B1gdFJmSV4cG4FmBSDa7puZdnWS2Pk=.pem","location":"security-state-staging/intermediates/9864323a-90b7-4153-a038-810578cb55eb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4/BwvJtY4Tb6/B1gdFJmSV4cG4FmBSDa7puZdnWS2Pk=","crlite_enrolled":true,"id":"310263a5-bb52-41c2-8048-2d24f253c95e","last_modified":1610981840591},{"schema":1610979414404,"derHash":"mFFAkZNCI5yJCGsi38qkUIWQsRo94KQj4l68Pdr4kQ0=","subject":"CN=DigiCert Secure Site Pro ECC CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxLjAsBgNVBAMTJURpZ2lDZXJ
0IFNlY3VyZSBTaXRlIFBybyBFQ0MgQ04gQ0EgRzM=","whitelist":false,"attachment":{"hash":"abadc7dab3aa3ce9c3b3984b57de541e8e2155f1acb9659ec05255d0505f836a","size":1341,"filename":"ljUnYjVBy0mvbfWJdhWfQmd_OGXEqZ6sBA-BZTbrSVY=.pem","location":"security-state-staging/intermediates/69abe7b3-bea5-4ac4-b147-b7a9c256cfae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ljUnYjVBy0mvbfWJdhWfQmd/OGXEqZ6sBA+BZTbrSVY=","crlite_enrolled":true,"id":"d5251cce-28fd-44ee-97af-2b2fea57506d","last_modified":1610981840573},{"schema":1610979412957,"derHash":"9HCuinNxgA/J85Tu1xZ7ReaqOOqwIAk4ZJhcFcHouMs=","subject":"CN=HARICA SSL Intermediate CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHsxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEmMCQGA1UEAxMdSEFSSUNBIFNTTCBJbnRlcm1lZGlhdGUgQ0EgUjE=","whitelist":false,"attachment":{"hash":"997b5da84e547b4e65bbddcfe29ea4027d3d6ce01f5f270b51fe30c6cd9722b6","size"
:2280,"filename":"lDFmKX0HYK-C3X2D0e1_amheVD9e-SBgplm0VfZ1IZI=.pem","location":"security-state-staging/intermediates/5b577c97-5cb6-437b-a5de-28458c59e3bf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lDFmKX0HYK+C3X2D0e1/amheVD9e+SBgplm0VfZ1IZI=","crlite_enrolled":false,"id":"dc04d826-cf54-4953-bf3c-7ba7846ef9f5","last_modified":1610981840553},{"schema":1610979413407,"derHash":"TM8XwMjBwQ1YduxeMoD+jRNN82rt2ERCibmQvDdB508=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - CUALIFICADOS,OU=Certificados Cualificados,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGSMQswCQYDVQQGEwJFUzEeMBwGA1UEChMVRmlybWFwcm9mZXNpb25hbCBTLkEuMSIwIAYDVQQLExlDZXJ0aWZpY2Fkb3MgQ3VhbGlmaWNhZG9zMRIwEAYDVQQFEwlBNjI2MzQwNjgxKzApBgNVBAMTIkFDIEZpcm1hcHJvZmVzaW9uYWwgLSBDVUFMSUZJQ0FET1M=","whitelist":false,"attachment":{"hash":"b3e4e383491cfa05a6e5858dc73ac1a4018938ed5c15a0d37c708311bd252227","size":2251,"filename":"xpW9XED3U765P2UyAqPWNU7eDdISlf2JSghpvjZnU-Y=.pem","location":"security-state-staging/
intermediates/2b8e2bc0-c68e-4dce-9e23-322c77fed80d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xpW9XED3U765P2UyAqPWNU7eDdISlf2JSghpvjZnU+Y=","crlite_enrolled":false,"id":"3a7a7325-7f7b-40b5-86ed-594919a759ac","last_modified":1610981840535},{"schema":1610979412514,"derHash":"K3XMTzZ1nPxMZjex4OVDWUV9tX503k0txdAs3f8pYM8=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - CUALIFICADOS,OU=Certificados Cualificados,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGSMQswCQYDVQQGEwJFUzEeMBwGA1UEChMVRmlybWFwcm9mZXNpb25hbCBTLkEuMSIwIAYDVQQLExlDZXJ0aWZpY2Fkb3MgQ3VhbGlmaWNhZG9zMRIwEAYDVQQFEwlBNjI2MzQwNjgxKzApBgNVBAMTIkFDIEZpcm1hcHJvZmVzaW9uYWwgLSBDVUFMSUZJQ0FET1M=","whitelist":false,"attachment":{"hash":"4d2dfe0fc860422f305f1ad6329bd436365d1605d8d9a03702b07b42faebbed8","size":2410,"filename":"xpW9XED3U765P2UyAqPWNU7eDdISlf2JSghpvjZnU-Y=.pem","location":"security-state-staging/intermediates/0101c000-f69c-425a-97e2-af8490d77aba.pem","mimetype":"application/x-pem-file"},"pubKeyHas
h":"xpW9XED3U765P2UyAqPWNU7eDdISlf2JSghpvjZnU+Y=","crlite_enrolled":false,"id":"971a56e0-c3e7-431a-840f-f4f65604621f","last_modified":1610981840515},{"schema":1610053110240,"derHash":"tfYuw4ExzRSx/JW4d/TSEL5L+sx+amqhQi2J40t6xME=","subject":"CN=GoGetSSL Domain Validation CA SHA2,OU=GoGetSSL Certification Authority,O=EnVers Group SIA,C=LV","subjectDN":"MIGAMQswCQYDVQQGEwJMVjEZMBcGA1UECgwQRW5WZXJzIEdyb3VwIFNJQTEpMCcGA1UECwwgR29HZXRTU0wgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxKzApBgNVBAMMIkdvR2V0U1NMIERvbWFpbiBWYWxpZGF0aW9uIENBIFNIQTI=","whitelist":false,"attachment":{"hash":"1a7005883cb2d9190f4111d29fd64d2d6eb960cc76830263a72234e826bbf517","size":1748,"filename":"p185bYxiFO-ZwKAV-mIneHw-vuH2rqpYkDOyjKN7DyE=.pem","location":"security-state-staging/intermediates/eaf84a71-fc34-486e-afdf-26e1ecaca22a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"p185bYxiFO+ZwKAV+mIneHw+vuH2rqpYkDOyjKN7DyE=","crlite_enrolled":false,"id":"35456425-adac-45ee-84d4-3a5c1b317e14","last_modified":1610071145242}
,{"schema":1610052572719,"derHash":"Zz6P7rEWgnfQFTER0g7Tjp2lH0QL5/1QshhUCTd0Gkg=","subject":"CN=DigiCert QuoVadis TLS ICA QuoVadis Root CA 2,O=DigiCert\\, Inc,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRYwFAYDVQQKDA1EaWdpQ2VydCwgSW5jMTUwMwYDVQQDDCxEaWdpQ2VydCBRdW9WYWRpcyBUTFMgSUNBIFF1b1ZhZGlzIFJvb3QgQ0EgMg==","whitelist":false,"attachment":{"hash":"1972543fba2841f4a4d34b8431f1bd5c4f6ebc8c99b64d08cdf482a4c3962399","size":1975,"filename":"tZqVkxHOD3FG-_Ed3JNxf_Hs9TQHX1EhCqi5gjq2-HE=.pem","location":"security-state-staging/intermediates/8b90e2ec-7b60-42fb-8d9b-51fa5fa279be.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tZqVkxHOD3FG+/Ed3JNxf/Hs9TQHX1EhCqi5gjq2+HE=","crlite_enrolled":false,"id":"3c1f2484-7cfc-487b-b0c0-63f29e6a8de5","last_modified":1610053109357},{"schema":1610048986321,"derHash":"Zz6P7rEWgnfQFTER0g7Tjp2lH0QL5/1QshhUCTd0Gkg=","subject":"CN=DigiCert QuoVadis TLS ICA QuoVadis Root CA 2,O=DigiCert\\, Inc,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRYwFAYDVQQKDA1EaWdpQ2Vyd
CwgSW5jMTUwMwYDVQQDDCxEaWdpQ2VydCBRdW9WYWRpcyBUTFMgSUNBIFF1b1ZhZGlzIFJvb3QgQ0EgMg==","whitelist":false,"attachment":{"hash":"1972543fba2841f4a4d34b8431f1bd5c4f6ebc8c99b64d08cdf482a4c3962399","size":1975,"filename":"tZqVkxHOD3FG-_Ed3JNxf_Hs9TQHX1EhCqi5gjq2-HE=.pem","location":"security-state-staging/intermediates/bf574586-936d-4800-bb8e-1c163a869b5f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tZqVkxHOD3FG+/Ed3JNxf/Hs9TQHX1EhCqi5gjq2+HE=","crlite_enrolled":false,"id":"de480be3-8754-46f9-9fbf-6b423796a971","last_modified":1610049515581},{"schema":1609443692100,"derHash":"TKNPcQp+EDdNpQYzfXVj/b2PraRt6PCm5SL9L6whNts=","subject":"CN=CrossTrust OV CA3,O=CrossTrust,C=JP","subjectDN":"MD4xCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpDcm9zc1RydXN0MRowGAYDVQQDExFDcm9zc1RydXN0IE9WIENBMw==","whitelist":false,"attachment":{"hash":"36e858212fd3a35823f7631743852eaacd6260657261d3400fb64bd1cbe22e7c","size":1581,"filename":"NRDKWT0450v5op6gvs41KoV3CLtbD8-8t8IphVrIvqM=.pem","location":"security-state-sta
ging/intermediates/71e0b574-d31e-4f97-a406-ea5014ad14db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NRDKWT0450v5op6gvs41KoV3CLtbD8+8t8IphVrIvqM=","crlite_enrolled":false,"id":"6098095f-4cec-4428-9aa8-fa4e3e7c40fc","last_modified":1609444767338},{"schema":1608861456264,"derHash":"p+OsttcN/1U2hSW8O+I2xgJSk/umCbPEQfSZRPoGAB8=","subject":"SERIALNUMBER=201510,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MTA=","whitelist":false,"attachment":{"hash":"28e1ef70f8de2a776568ca7bdc90bf54323d92557e04219bd3266354c5029a9c","size":2093,"filename":"l6QMc6rTKdl0AehazkNhC6i7uekp05bi-O4TLl8ebbE=.pem","location":"security-state-staging/intermediates/ca92f10f-e298-4db4-9442-e61019866e69.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"l6QMc6rTKdl0AehazkNhC6i7uekp05bi+O4TLl8ebbE=","crlite_enrolled":true,"id":"7c2ace93-b725-4eb3-93be-ed978b60fe4e","last_modified":1608904653190},{"schema":1608731356438,"derHash":"MlNBL9rUUjEIwJi7DuDv
7df6/dAPsw5Hxrup/j4c24g=","subject":"CN=GDCA TrustAUTH R4 Primer CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MG4xCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJDAiBgNVBAMMG0dEQ0EgVHJ1c3RBVVRIIFI0IFByaW1lciBDQQ==","whitelist":false,"attachment":{"hash":"63e5b17371590f3ec401bd9eb3b8ed4d9589063e1d6eef4f8889c34e61e19155","size":2056,"filename":"0QPovc90TjBNTpee1IAatbvOdHFYmqVUPYNToEldWCY=.pem","location":"security-state-staging/intermediates/5786a959-598e-4837-8220-7a23733b51ce.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0QPovc90TjBNTpee1IAatbvOdHFYmqVUPYNToEldWCY=","crlite_enrolled":false,"id":"ac8f566c-4341-4d69-9204-a2ed8524ca5e","last_modified":1608731862281},{"schema":1608651068348,"derHash":"wWnWndPSbTbLgt8TXFf+M27P9+fqQB6Z484ZF6j7gYA=","subject":"CN=CSP SSL Service CA 5,O=CENTRAL SECURITY PATROLS CO.\\, LTD.,L=Shinjuku-ku,ST=Tokyo,C=JP","subjectDN":"MH8xCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t
5bzEUMBIGA1UEBxMLU2hpbmp1a3Uta3UxKzApBgNVBAoTIkNFTlRSQUwgU0VDVVJJVFkgUEFUUk9MUyBDTy4sIExURC4xHTAbBgNVBAMTFENTUCBTU0wgU2VydmljZSBDQSA1","whitelist":false,"attachment":{"hash":"a26a3bb69b8762ccb5f00b997d7f14a0fe3eccca50cf54a3b76508a75d97353c","size":2154,"filename":"feELO37IL4l2CJfivsLI0VTQkKQc7sskntJ5vxPVVW8=.pem","location":"security-state-staging/intermediates/adfaf648-0669-46cc-a5d4-251b1d33f435.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"feELO37IL4l2CJfivsLI0VTQkKQc7sskntJ5vxPVVW8=","crlite_enrolled":false,"id":"ee30cbe2-04fc-4d99-8ef4-c0cc6362bfcc","last_modified":1608688660806},{"schema":1608256159665,"derHash":"dOq1c9p9sZUJe+DpDzNJNMekyJ6Ag3WdtDM6AO3SQ9k=","subject":"CN=DigiCert High Assurance TLS Hybrid ECC SHA256 2020 CA1,O=DigiCert\\, Inc.,C=US","subjectDN":"MGcxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjE/MD0GA1UEAxM2RGlnaUNlcnQgSGlnaCBBc3N1cmFuY2UgVExTIEh5YnJpZCBFQ0MgU0hBMjU2IDIwMjAgQ0Ex","whitelist":false,"attachment":{"hash":"11a50056d6027ba92a4d016bb
dd72de6b8e7498171f12762ce2eda7a60762e6e","size":1483,"filename":"vnCogm4QYze_Bc9r88xdA6NTQY74p4BAz2w5gxkLG2M=.pem","location":"security-state-staging/intermediates/7bf16759-da8d-43e0-b260-f55aac6a39b7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vnCogm4QYze/Bc9r88xdA6NTQY74p4BAz2w5gxkLG2M=","crlite_enrolled":false,"id":"ce744321-7f4d-4f9c-9da1-63454f6d33bb","last_modified":1608321440489},{"schema":1608256158159,"derHash":"m/7T2dyVI2vP/LNdSxINsOOGf2Kx/QFako2gswOWZoM=","subject":"CN=DigiCert High Assurance TLS RSA SHA256 2020 CA1,O=DigiCert\\, Inc.,C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjE4MDYGA1UEAxMvRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2UgVExTIFJTQSBTSEEyNTYgMjAyMCBDQTE=","whitelist":false,"attachment":{"hash":"007b4991e764dfb6fc682cc922b8e457508cb343dfd1edc993260455daaf7c3b","size":1748,"filename":"KKzhMaY72_nD-ZVShAg153XyomvfRUrrKjaWxh3ZCRo=.pem","location":"security-state-staging/intermediates/d3e8c2ab-b791-4d1a-9686-b3075fe8b947.pem","mimetype
":"application/x-pem-file"},"pubKeyHash":"KKzhMaY72/nD+ZVShAg153XyomvfRUrrKjaWxh3ZCRo=","crlite_enrolled":false,"id":"44ffb93f-8613-4234-ae12-7682b310843a","last_modified":1608321440478},{"schema":1608234551224,"derHash":"RLVFqool5lpzyhXcJ/w20kwcuZU6BmU5sRWC3Eh7SDM=","subject":"CN=Hellenic Academic and Research Institutions ECC RootCA 2015,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGqMQswCQYDVQQGEwJHUjEPMA0GA1UEBxMGQXRoZW5zMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTFEMEIGA1UEAxM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBFQ0MgUm9vdENBIDIwMTU=","whitelist":false,"attachment":{"hash":"c0ac75ba366ac172e14ea829ea033e50cfad846dda99a812e6cc75e5ee716e26","size":1016,"filename":"u1IIbQY56NszJ3Wsj06ENdks6wD04k8o_A6r4kB3LoA=.pem","location":"security-state-staging/intermediates/7d4b43b6-4fd7-4438-a41f-6edb60308600.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"u1IIbQY56
NszJ3Wsj06ENdks6wD04k8o/A6r4kB3LoA=","crlite_enrolled":false,"id":"547c8ddc-885a-4577-b1a9-9c8488b81b16","last_modified":1608321440466},{"schema":1608256163558,"derHash":"YD23B6WEADvtbx1D3NTq4TzRjXmOgn3i86MfMZP8Daw=","subject":"CN=NII Open Domain CA - G7 RSA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MFoxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSQwIgYDVQQDExtOSUkgT3BlbiBEb21haW4gQ0EgLSBHNyBSU0E=","whitelist":false,"attachment":{"hash":"c415b80eaca6cc1fe0d46f93c28c3f50a71fdc2d34c05596ad432c7d1071765c","size":1772,"filename":"gdcmbbO--ObnWtuH5s-3w7lzQiYlLeXyMGuHZ7bgaG0=.pem","location":"security-state-staging/intermediates/921112a4-f1b9-4d7d-ab3a-4e36fab6dc15.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gdcmbbO++ObnWtuH5s+3w7lzQiYlLeXyMGuHZ7bgaG0=","crlite_enrolled":true,"id":"8e4c3aba-f9c2-4fae-891a-3f9906c7f95d","last_modified":1608321440455},{"schema":1608000560645,"derHash":"xesadjm52NcLT4Kt2AeUF17ktqPbGGGzhxfJb8GRSSc=","subject":"CN
=NAVER Secure Certification Authority 1,O=NAVER BUSINESS PLATFORM Corp.,C=KR","subjectDN":"MGYxCzAJBgNVBAYTAktSMSYwJAYDVQQKDB1OQVZFUiBCVVNJTkVTUyBQTEFURk9STSBDb3JwLjEvMC0GA1UEAwwmTkFWRVIgU2VjdXJlIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IDE=","whitelist":false,"attachment":{"hash":"99d81a11ba4ee9372795e89c14a2c5c6011f433176a402bb5dd5889a378b6c0b","size":1991,"filename":"cJ2mHuIKySslEdkckvymNSKxLhYRvvY9Z8ivbKik0Tg=.pem","location":"security-state-staging/intermediates/d534a023-2aac-45ec-9bca-b6f031bcf4a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cJ2mHuIKySslEdkckvymNSKxLhYRvvY9Z8ivbKik0Tg=","crlite_enrolled":true,"id":"9fe92629-6232-4af7-a10f-6fe9d20f1fa8","last_modified":1608001043200},{"schema":1607996964517,"derHash":"xesadjm52NcLT4Kt2AeUF17ktqPbGGGzhxfJb8GRSSc=","subject":"CN=NAVER Secure Certification Authority 1,O=NAVER BUSINESS PLATFORM Corp.,C=KR","subjectDN":"MGYxCzAJBgNVBAYTAktSMSYwJAYDVQQKDB1OQVZFUiBCVVNJTkVTUyBQTEFURk9STSBDb3JwLjEvMC0GA1UEAwwmTkFWRVIgU2VjdXJlIENlcnRpZ
mljYXRpb24gQXV0aG9yaXR5IDE=","whitelist":false,"attachment":{"hash":"99d81a11ba4ee9372795e89c14a2c5c6011f433176a402bb5dd5889a378b6c0b","size":1991,"filename":"cJ2mHuIKySslEdkckvymNSKxLhYRvvY9Z8ivbKik0Tg=.pem","location":"security-state-staging/intermediates/30dde061-e042-4d6a-b9ff-b5b063040817.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cJ2mHuIKySslEdkckvymNSKxLhYRvvY9Z8ivbKik0Tg=","crlite_enrolled":true,"id":"b91d1139-0ac1-45fb-bf47-cea7ab32882e","last_modified":1607997452848},{"schema":1607715692979,"derHash":"/KiES2J8Nx3kp/kQpS6OkM3CmBOqJNY3Hf0e8MFKH4Y=","subject":"SERIALNUMBER=201507,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDc=","whitelist":false,"attachment":{"hash":"e08c53caafa23be5fba08037729fa1585b1cf96c14f77428038d77f5b1670e27","size":2093,"filename":"sTL0G6l0dolGcB2vAkf3KGdhh0Glca9lcMoxggaMDQs=.pem","location":"security-state-staging/intermediates/6dc6b7a6-cead-4228-b8e4-0e086a453f57.pem","mimetype":"
application/x-pem-file"},"pubKeyHash":"sTL0G6l0dolGcB2vAkf3KGdhh0Glca9lcMoxggaMDQs=","crlite_enrolled":true,"id":"499c3a9b-8ef3-47e9-a544-38e54edc5ba3","last_modified":1607759852380},{"schema":1607694534261,"derHash":"bzNd181Kqh2RQPKQ6eezSYp8w1okSqMA4Ua6LZ0CuWA=","subject":"CN=GlobalSign Atlas ECCR5 DV TLS CA 2020-12,O=GlobalSign nv-sa,C=BE","subjectDN":"MFsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTEwLwYDVQQDEyhHbG9iYWxTaWduIEF0bGFzIEVDQ1I1IERWIFRMUyBDQSAyMDIwLTEy","whitelist":false,"attachment":{"hash":"c382d90e02609513d21d5c25d700a6f8e6b01f00b16e0cc3be89ad8d2de7a642","size":1248,"filename":"V_K2Vnq-QG5Dg_lYp-FnfgtMGvtLYZ1qAfYtkKQAILg=.pem","location":"security-state-staging/intermediates/32b8806d-e3fb-4c24-838a-25c957f58b64.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V/K2Vnq+QG5Dg/lYp+FnfgtMGvtLYZ1qAfYtkKQAILg=","crlite_enrolled":false,"id":"9d98e0ae-79dc-42dd-b2ab-457585b3b2e0","last_modified":1607695036009},{"schema":1607694531126,"derHash":"pgMsw1Lx4uNi
jhYqMEe8fWR+LWAaLA8myq+ar3pUI5w=","subject":"CN=GlobalSign Atlas R3 OV TLS CA 2020-12,O=GlobalSign nv-sa,C=BE","subjectDN":"MFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIE9WIFRMUyBDQSAyMDIwLTEy","whitelist":false,"attachment":{"hash":"87bb6f2c47bbed017d590d273e3e104b9a51d89c90f2d746b6d5c6b22a32b5e5","size":1691,"filename":"q8RzYVnv8u4WxSzLeEvOffFfpsrmgSIHiNuWJdK7BlU=.pem","location":"security-state-staging/intermediates/45a9ec2b-ccc8-4abc-9d7c-a2ad83a3fca5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q8RzYVnv8u4WxSzLeEvOffFfpsrmgSIHiNuWJdK7BlU=","crlite_enrolled":false,"id":"5176fc36-9fd7-446d-aa9d-773e2d5f82c2","last_modified":1607695035994},{"schema":1607694532759,"derHash":"LrihMXKI8IIz5og86+Z+pqCYniKspCxY1Z9ag04CxRM=","subject":"CN=GlobalSign Atlas ECCR5 OV TLS CA 2020-12,O=GlobalSign nv-sa,C=BE","subjectDN":"MFsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTEwLwYDVQQDEyhHbG9iYWxTaWduIEF0bGFzIEVDQ1I1IE9WIFRMUy
BDQSAyMDIwLTEy","whitelist":false,"attachment":{"hash":"0da48dd5abf0b542d1a4a62dc458f758e9c3517117e8ec13525dc3dc3e0ac628","size":1248,"filename":"pE2Mn6zDBy5ZUUx_Fz25_Wr_c2YZWOT8FCJpeRfpTXQ=.pem","location":"security-state-staging/intermediates/c3fa086f-e7d9-478c-8836-1bc02ce096dd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pE2Mn6zDBy5ZUUx/Fz25/Wr/c2YZWOT8FCJpeRfpTXQ=","crlite_enrolled":false,"id":"7313f33d-0022-4715-8279-106b6ce53a40","last_modified":1607695035982},{"schema":1607676521432,"derHash":"WfX/krYIoBGf8d18YD4OsW9P6tnUcXrDvGLShq45nNo=","subject":"CN=GlobalSign Atlas R3 DV TLS CA 2020-12,O=GlobalSign nv-sa,C=BE","subjectDN":"MFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIwLTEy","whitelist":false,"attachment":{"hash":"978bbc0b5187a94f5a992a6478523b1f397eaf3bfd62a8b8256dc53cc30af2bb","size":1691,"filename":"qHEiXUiOfz6Ni9Jz-z5RQSnsI3DqTIU9kw0X_YkfXsU=.pem","location":"security-state-staging/interm
ediates/15b5c177-d7da-4308-9c80-e5eb34a8193e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qHEiXUiOfz6Ni9Jz+z5RQSnsI3DqTIU9kw0X/YkfXsU=","crlite_enrolled":false,"id":"93403c3f-2de2-47f2-9594-d1e0c59935f0","last_modified":1607677034093},{"schema":1607672928470,"derHash":"WfX/krYIoBGf8d18YD4OsW9P6tnUcXrDvGLShq45nNo=","subject":"CN=GlobalSign Atlas R3 DV TLS CA 2020-12,O=GlobalSign nv-sa,C=BE","subjectDN":"MFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIwLTEy","whitelist":false,"attachment":{"hash":"978bbc0b5187a94f5a992a6478523b1f397eaf3bfd62a8b8256dc53cc30af2bb","size":1691,"filename":"qHEiXUiOfz6Ni9Jz-z5RQSnsI3DqTIU9kw0X_YkfXsU=.pem","location":"security-state-staging/intermediates/9e8e5ad0-dd70-48a0-9802-7115a4b06295.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qHEiXUiOfz6Ni9Jz+z5RQSnsI3DqTIU9kw0X/YkfXsU=","crlite_enrolled":false,"id":"9ffa3358-512a-4c95-ac0f-0699656bcaad","last_modified":160767
3449938},{"schema":1607241495452,"derHash":"RVtfptakcuI/CsDxwUqj9egFUyA8p/9CgPwRJQVFdP0=","subject":"CN=CrossTrust OV CA4,O=CrossTrust,C=JP","subjectDN":"MD4xCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpDcm9zc1RydXN0MRowGAYDVQQDExFDcm9zc1RydXN0IE9WIENBNA==","whitelist":false,"attachment":{"hash":"97a527f046f5624a30b63930ccf621cb3a3547798bbad1b604eb580bffb8488e","size":1589,"filename":"7cvw7u1H41D6YEAbLwb40cb22xC4hWT1GJJedbVdsVU=.pem","location":"security-state-staging/intermediates/ed8a8352-aa21-42b8-a131-1abe9284bf80.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7cvw7u1H41D6YEAbLwb40cb22xC4hWT1GJJedbVdsVU=","crlite_enrolled":false,"id":"47fc2392-f7e9-4142-bf2f-b04268d380c2","last_modified":1607263109979},{"schema":1607197292996,"derHash":"kAFLo7mQAYSoTKKkZW0DxgU1fyAu/z9ZF2ylTJgALLE=","subject":"CN=CrossTrust DV CA3,O=CrossTrust,C=JP","subjectDN":"MD4xCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpDcm9zc1RydXN0MRowGAYDVQQDExFDcm9zc1RydXN0IERWIENBMw==","whitelist":false,"attachment":{"hash":"a4299ae8c6d
64201f117d7faa1cc4ab82a9fd681134ae157d8e4d73f3048227e","size":1581,"filename":"qfSK-xETySSQi4hk8YejfqWMDWTFyNRPmj8rfRp62tA=.pem","location":"security-state-staging/intermediates/5ffe7bf6-caee-4f37-8a1b-a823dd866066.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qfSK+xETySSQi4hk8YejfqWMDWTFyNRPmj8rfRp62tA=","crlite_enrolled":false,"id":"f345a14d-3b2d-4084-b276-a9357ebc2988","last_modified":1607241494575},{"schema":1607050675439,"derHash":"zx+PmJ+XXQUabw2VI65XMqOn4jRObFQPu2Q94pVRnmc=","subject":"CN=CSP SSL Service CA 4,O=CENTRAL SECURITY PATROLS CO.\\, LTD.,L=Shinjuku-ku,ST=Tokyo,C=JP","subjectDN":"MH8xCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzEUMBIGA1UEBxMLU2hpbmp1a3Uta3UxKzApBgNVBAoTIkNFTlRSQUwgU0VDVVJJVFkgUEFUUk9MUyBDTy4sIExURC4xHTAbBgNVBAMTFENTUCBTU0wgU2VydmljZSBDQSA0","whitelist":false,"attachment":{"hash":"5680447216a29294af84501384f90dd03d987feb70a168dc884d807c1ce6dcb1","size":2154,"filename":"6cmFGKSet-uN9lExNlA28Wy9f_epSW1jDhpODTW1QyI=.pem","location":"security-state-sta
ging/intermediates/2efe3c65-93ec-4c6e-bc4f-8354baae1d21.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6cmFGKSet+uN9lExNlA28Wy9f/epSW1jDhpODTW1QyI=","crlite_enrolled":false,"id":"fca3cb91-0e32-4135-a6e7-e231918a3734","last_modified":1607090289374},{"schema":1607050148986,"derHash":"RLVFqool5lpzyhXcJ/w20kwcuZU6BmU5sRWC3Eh7SDM=","subject":"CN=Hellenic Academic and Research Institutions ECC RootCA 2015,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGqMQswCQYDVQQGEwJHUjEPMA0GA1UEBxMGQXRoZW5zMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTFEMEIGA1UEAxM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBFQ0MgUm9vdENBIDIwMTU=","whitelist":false,"attachment":{"hash":"68247409e722cb630f0449b14b3db230f4582f5b0b6b21e2acf7724783a35df9","size":1016,"filename":"u1IIbQY56NszJ3Wsj06ENdks6wD04k8o_A6r4kB3LoA=.pem","location":"security-state-staging/intermediates/ed532c05-a2de-4cc3-a825-b66ee862
8364.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"u1IIbQY56NszJ3Wsj06ENdks6wD04k8o/A6r4kB3LoA=","crlite_enrolled":false,"id":"0becdd95-da83-4547-ab7c-c6cbfee44235","last_modified":1607050674570},{"schema":1607046545967,"derHash":"RLVFqool5lpzyhXcJ/w20kwcuZU6BmU5sRWC3Eh7SDM=","subject":"CN=Hellenic Academic and Research Institutions ECC RootCA 2015,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGqMQswCQYDVQQGEwJHUjEPMA0GA1UEBxMGQXRoZW5zMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTFEMEIGA1UEAxM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBFQ0MgUm9vdENBIDIwMTU=","whitelist":false,"attachment":{"hash":"68247409e722cb630f0449b14b3db230f4582f5b0b6b21e2acf7724783a35df9","size":1016,"filename":"u1IIbQY56NszJ3Wsj06ENdks6wD04k8o_A6r4kB3LoA=.pem","location":"security-state-staging/intermediates/57f1e4b9-a9f7-461b-ba56-09907e258ee8.pem","mimetype":"application/x-pem-file"},"pub
KeyHash":"u1IIbQY56NszJ3Wsj06ENdks6wD04k8o/A6r4kB3LoA=","crlite_enrolled":false,"id":"bfd16bc3-34f1-440a-a9fd-89a869068333","last_modified":1607047075462},{"schema":1606917474805,"derHash":"r+FZXnCXzN+0Ms6mOb3uhs8ldsJ982+caRzwPhMkwdQ=","subject":"CN=Trustico RSA OV CA,O=The Trustico Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MG4xCzAJBgNVBAYTAkdCMQ8wDQYDVQQIEwZMb25kb24xEDAOBgNVBAcTB0Nyb3lkb24xHzAdBgNVBAoTFlRoZSBUcnVzdGljbyBHcm91cCBMdGQxGzAZBgNVBAMTElRydXN0aWNvIFJTQSBPViBDQQ==","whitelist":false,"attachment":{"hash":"4aaceec6690459b455ad73585e25a07a65b1b302c94a4e198062875402f68530","size":2113,"filename":"hZa79Z70L3tWUM25OQ658Ld4Rg65tj7Rn6OQXFiJPkg=.pem","location":"security-state-staging/intermediates/38b03aee-b8d2-4bb3-982e-18487f59c304.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hZa79Z70L3tWUM25OQ658Ld4Rg65tj7Rn6OQXFiJPkg=","crlite_enrolled":false,"id":"fff9a2df-08f2-4fef-b8f3-e1462f74c9dd","last_modified":1606939082092},{"schema":1606917034925,"derHash":"Efukp+5X
nHDh1X+fm2qMIJ4SGcTx04Rvg//OdOnl4s4=","subject":"CN=Soluti CA - EV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,C=BR","subjectDN":"MF8xCzAJBgNVBAYTAkJSMTcwNQYDVQQKEy5TT0xVVEkgLSBTT0xVQ09FUyBFTSBORUdPQ0lPUyBJTlRFTElHRU5URVMgUy9BMRcwFQYDVQQDEw5Tb2x1dGkgQ0EgLSBFVg==","whitelist":false,"attachment":{"hash":"b45919819e02ad79724a514eaf858e77f666b1352e04efbd7b970ef878509a6a","size":1776,"filename":"Z6aApIGWlcMWZHFtBmP1FgZhyLKarTalSo0g5-EeG0U=.pem","location":"security-state-staging/intermediates/fa38118a-b0dd-4170-b25b-2077e50db1af.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z6aApIGWlcMWZHFtBmP1FgZhyLKarTalSo0g5+EeG0U=","crlite_enrolled":true,"id":"036fbcb0-0139-4457-840c-cb0e018adfe6","last_modified":1606917473706},{"schema":1606916930155,"derHash":"Efukp+5XnHDh1X+fm2qMIJ4SGcTx04Rvg//OdOnl4s4=","subject":"CN=Soluti CA - EV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,C=BR","subjectDN":"MF8xCzAJBgNVBAYTAkJSMTcwNQYDVQQKEy5TT0xVVEkgLSBTT0xVQ09FUyBFTSBORUdPQ0lPUyBJTlRFTElH
RU5URVMgUy9BMRcwFQYDVQQDEw5Tb2x1dGkgQ0EgLSBFVg==","whitelist":false,"attachment":{"hash":"b45919819e02ad79724a514eaf858e77f666b1352e04efbd7b970ef878509a6a","size":1776,"filename":"Z6aApIGWlcMWZHFtBmP1FgZhyLKarTalSo0g5-EeG0U=.pem","location":"security-state-staging/intermediates/2c39ac03-7820-4419-beb2-d08951cc6726.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z6aApIGWlcMWZHFtBmP1FgZhyLKarTalSo0g5+EeG0U=","crlite_enrolled":true,"id":"7f207e9f-d31a-4ba4-957d-09d4f8291836","last_modified":1606917473688},{"schema":1606916931468,"derHash":"q3SxQRrSPiIn+4iiqTBKGkWlxIQLNjXxA2pG6DdCeaw=","subject":"CN=Soluti CA - OV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,C=BR","subjectDN":"MF8xCzAJBgNVBAYTAkJSMTcwNQYDVQQKEy5TT0xVVEkgLSBTT0xVQ09FUyBFTSBORUdPQ0lPUyBJTlRFTElHRU5URVMgUy9BMRcwFQYDVQQDEw5Tb2x1dGkgQ0EgLSBPVg==","whitelist":false,"attachment":{"hash":"1289ff9c033377f8edc9f2ded9318205d7263d8c7040b70ff2db68630eaac699","size":1776,"filename":"rCbpz2JPbnICZtM69Lt2eclqdTss0Mj0Z4ejXMF
1nD4=.pem","location":"security-state-staging/intermediates/d46e5729-e1a1-4a1d-b398-9fae0f398bf1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rCbpz2JPbnICZtM69Lt2eclqdTss0Mj0Z4ejXMF1nD4=","crlite_enrolled":true,"id":"c9dfa791-474d-4cd4-b016-5e238a4e2c8f","last_modified":1606917473670},{"schema":1606916931901,"derHash":"q3SxQRrSPiIn+4iiqTBKGkWlxIQLNjXxA2pG6DdCeaw=","subject":"CN=Soluti CA - OV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,C=BR","subjectDN":"MF8xCzAJBgNVBAYTAkJSMTcwNQYDVQQKEy5TT0xVVEkgLSBTT0xVQ09FUyBFTSBORUdPQ0lPUyBJTlRFTElHRU5URVMgUy9BMRcwFQYDVQQDEw5Tb2x1dGkgQ0EgLSBPVg==","whitelist":false,"attachment":{"hash":"1289ff9c033377f8edc9f2ded9318205d7263d8c7040b70ff2db68630eaac699","size":1776,"filename":"rCbpz2JPbnICZtM69Lt2eclqdTss0Mj0Z4ejXMF1nD4=.pem","location":"security-state-staging/intermediates/7ff46c16-7f19-481d-b990-fd4bc6aabfe9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rCbpz2JPbnICZtM69Lt2eclqdTss0Mj0Z4ejXMF1nD4=","crlite_enrolled":tr
ue,"id":"3908bde0-cc20-4ee6-af97-f8c7e04833ac","last_modified":1606917473651},{"schema":1606916930579,"derHash":"uxcLOXhNAnhDJc6pONkjFMYX3egIyGfjPirRYdVLPoo=","subject":"CN=Soluti CA - EV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,L=Goi\u00e2nia,ST=Goi\u00e1s,C=BR","subjectDN":"MIGDMQswCQYDVQQGEwJCUjEPMA0GA1UECAwGR29pw6FzMREwDwYDVQQHDAhHb2nDom5pYTE3MDUGA1UEChMuU09MVVRJIC0gU09MVUNPRVMgRU0gTkVHT0NJT1MgSU5URUxJR0VOVEVTIFMvQTEXMBUGA1UEAxMOU29sdXRpIENBIC0gRVY=","whitelist":false,"attachment":{"hash":"19fefd4f70ea48cb5d6ea309efe68d11ffa03632cea4cfeec8dc09417da36fa2","size":1837,"filename":"Z6aApIGWlcMWZHFtBmP1FgZhyLKarTalSo0g5-EeG0U=.pem","location":"security-state-staging/intermediates/d2973af0-94cb-4052-9f9a-a6c552deb9a9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z6aApIGWlcMWZHFtBmP1FgZhyLKarTalSo0g5+EeG0U=","crlite_enrolled":true,"id":"cc2e3096-5b34-4e12-8901-72cacec6b510","last_modified":1606917473614},{"schema":1606916929707,"derHash":"5ukpyEVsAU6NpzOs5OmBRVInK4EXY
FChPqRagjIAsUs=","subject":"CN=Soluti CA - OV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,L=Goi\u00e2nia,ST=Goi\u00e1s,C=BR","subjectDN":"MIGDMQswCQYDVQQGEwJCUjEPMA0GA1UECAwGR29pw6FzMREwDwYDVQQHDAhHb2nDom5pYTE3MDUGA1UEChMuU09MVVRJIC0gU09MVUNPRVMgRU0gTkVHT0NJT1MgSU5URUxJR0VOVEVTIFMvQTEXMBUGA1UEAxMOU29sdXRpIENBIC0gT1Y=","whitelist":false,"attachment":{"hash":"19cb0ae44011765535de42c22ddec245a2178d13094aa7cc8d2ebfe5143caa64","size":1837,"filename":"rCbpz2JPbnICZtM69Lt2eclqdTss0Mj0Z4ejXMF1nD4=.pem","location":"security-state-staging/intermediates/801d6b0f-a466-4902-99e1-de0020c43f0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rCbpz2JPbnICZtM69Lt2eclqdTss0Mj0Z4ejXMF1nD4=","crlite_enrolled":true,"id":"e78a46ec-c8ec-4fbb-9d87-67247c3ba782","last_modified":1606917473595},{"schema":1606830635261,"derHash":"IIOI6/mbEhiIUvEd15Rme145laJ2etslXpuPXUz1BXY=","subject":"CN=CertCloud RSA EV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdW
QgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgUlNBIEVWIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"12724d564e2cbda02a9fc1327e4c62a1bc03b1b2e93f870d923346a811dc27a5","size":2109,"filename":"qtoy2s5rEsyXk3LyvPdOnjlq0FouOkWa_MxbJugEHms=.pem","location":"security-state-staging/intermediates/e4655ca7-9066-423f-985a-340112104daf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qtoy2s5rEsyXk3LyvPdOnjlq0FouOkWa/MxbJugEHms=","crlite_enrolled":true,"id":"172b1f94-1468-4b3a-8538-b1071e17c256","last_modified":1606831071215},{"schema":1606830533191,"derHash":"cQLZcsJOnKaNDm+f9TxfZYzZuGSfKOrY28M2wt9QSBE=","subject":"CN=CertCloud RSA OV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgUlNBIE9WIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"8d771de489696047446dd891e36b2c199bc714a871f4de9a134028e7dd330872","size":2081,"filename":"ORYJiVkIJCqtrNqVHJ4iw_q-R2u46OEMcFExxBr8_5Y=.pem","location":"secur
ity-state-staging/intermediates/3b08e799-b31b-4131-a15e-06ba6cd0b067.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ORYJiVkIJCqtrNqVHJ4iw/q+R2u46OEMcFExxBr8/5Y=","crlite_enrolled":true,"id":"1e513d59-b8f5-4b2d-b079-bf21291f788f","last_modified":1606831071197},{"schema":1606830635701,"derHash":"yYqJmVEeL2CJUFOv9MU5vRtnZXVOu3s1OJaz8pdO2D8=","subject":"CN=CertCloud ECC OV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgRUNDIE9WIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"8ea4ce61b55373639b30bc8f5a9bc1599c0d2d52d91a015219632c719b540bb9","size":1240,"filename":"q6ASqDW7KvwqyTSX_m1w95QebvKZnwudV__ETDG8YTc=.pem","location":"security-state-staging/intermediates/50537f53-efe3-47c3-934b-9e406a3ffdce.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q6ASqDW7KvwqyTSX/m1w95QebvKZnwudV//ETDG8YTc=","crlite_enrolled":true,"id":"677706c1-d0ab-48a0-9227-8df475ae33b1","last_modified":1606831
071178},{"schema":1606830532323,"derHash":"IIOI6/mbEhiIUvEd15Rme145laJ2etslXpuPXUz1BXY=","subject":"CN=CertCloud RSA EV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgUlNBIEVWIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"12724d564e2cbda02a9fc1327e4c62a1bc03b1b2e93f870d923346a811dc27a5","size":2109,"filename":"qtoy2s5rEsyXk3LyvPdOnjlq0FouOkWa_MxbJugEHms=.pem","location":"security-state-staging/intermediates/d12087b1-5f70-4a41-8e7f-7a3fdbda8505.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qtoy2s5rEsyXk3LyvPdOnjlq0FouOkWa/MxbJugEHms=","crlite_enrolled":true,"id":"02e3f60f-46b3-4774-9f8c-0bc4cc9893db","last_modified":1606831071159},{"schema":1606830531854,"derHash":"cQLZcsJOnKaNDm+f9TxfZYzZuGSfKOrY28M2wt9QSBE=","subject":"CN=CertCloud RSA OV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgUlNBI
E9WIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"8d771de489696047446dd891e36b2c199bc714a871f4de9a134028e7dd330872","size":2081,"filename":"ORYJiVkIJCqtrNqVHJ4iw_q-R2u46OEMcFExxBr8_5Y=.pem","location":"security-state-staging/intermediates/85b0d8c2-29b3-4346-9080-e95bce35f8b6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ORYJiVkIJCqtrNqVHJ4iw/q+R2u46OEMcFExxBr8/5Y=","crlite_enrolled":true,"id":"b87a1d31-36bc-448e-ba4b-6a58e79386ba","last_modified":1606831071136},{"schema":1606830532756,"derHash":"yYqJmVEeL2CJUFOv9MU5vRtnZXVOu3s1OJaz8pdO2D8=","subject":"CN=CertCloud ECC OV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgRUNDIE9WIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"8ea4ce61b55373639b30bc8f5a9bc1599c0d2d52d91a015219632c719b540bb9","size":1240,"filename":"q6ASqDW7KvwqyTSX_m1w95QebvKZnwudV__ETDG8YTc=.pem","location":"security-state-staging/intermediates/c59c8cb7-d94d-4
f73-8a7f-702018c3797f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q6ASqDW7KvwqyTSX/m1w95QebvKZnwudV//ETDG8YTc=","crlite_enrolled":true,"id":"577f165f-8a63-4889-afea-e7ee828bc7c3","last_modified":1606831071111},{"schema":1606787357745,"derHash":"I+ywPuwXM4xOM6a0ikHcPNoSKBu8P/gTwFidbMI4dSI=","subject":"CN=GTS CA 1C3,O=Google Trust Services LLC,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMUMz","whitelist":false,"attachment":{"hash":"88a6ecb70d888765711d7b8ea76f793d4b228fedad48e215e01fc948196b7baf","size":1995,"filename":"zCTnfLwLKbS9S2sbp-uFz4KZOocFvXxkV06Ce9O5M2w=.pem","location":"security-state-staging/intermediates/8274b76f-2423-4a90-b8c0-15fb22c3d9a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zCTnfLwLKbS9S2sbp+uFz4KZOocFvXxkV06Ce9O5M2w=","crlite_enrolled":true,"id":"bb2cfbac-beea-4199-9bfb-7822a906f054","last_modified":1606787861390},{"schema":1606787486997,"derHash":"ZOKGt2BjYCo3Lv1gzejbJla
knuFehCVLPW61/jj0KIs=","subject":"CN=GTS CA 1D4,O=Google Trust Services LLC,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMUQ0","whitelist":false,"attachment":{"hash":"3eeab8b593f9b526e5e441336b3c99ef183d6618c02890e5bab1825e1a95744b","size":1983,"filename":"cXjPgKdVe6iojP8s0YQJ3rtmDFHTnYZxcYvmYGFiYME=.pem","location":"security-state-staging/intermediates/a56bd323-af0f-48aa-9258-720471d08a2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cXjPgKdVe6iojP8s0YQJ3rtmDFHTnYZxcYvmYGFiYME=","crlite_enrolled":true,"id":"06a19215-a3f8-41c0-b91d-c0119027036e","last_modified":1606787861369},{"schema":1606753452631,"derHash":"ZOKGt2BjYCo3Lv1gzejbJlaknuFehCVLPW61/jj0KIs=","subject":"CN=GTS CA 1D4,O=Google Trust Services LLC,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMUQ0","whitelist":false,"attachment":{"hash":"3eeab8b593f9b526e5e441336b3c99ef183d6618c02890e
5bab1825e1a95744b","size":1983,"filename":"cXjPgKdVe6iojP8s0YQJ3rtmDFHTnYZxcYvmYGFiYME=.pem","location":"security-state-staging/intermediates/2e90889f-7abd-4634-9a0e-0b6484068790.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cXjPgKdVe6iojP8s0YQJ3rtmDFHTnYZxcYvmYGFiYME=","crlite_enrolled":true,"id":"d80b8959-3c46-49da-8258-57d90d760838","last_modified":1606787861349},{"schema":1606787357308,"derHash":"I+ywPuwXM4xOM6a0ikHcPNoSKBu8P/gTwFidbMI4dSI=","subject":"CN=GTS CA 1C3,O=Google Trust Services LLC,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMUMz","whitelist":false,"attachment":{"hash":"88a6ecb70d888765711d7b8ea76f793d4b228fedad48e215e01fc948196b7baf","size":1995,"filename":"zCTnfLwLKbS9S2sbp-uFz4KZOocFvXxkV06Ce9O5M2w=.pem","location":"security-state-staging/intermediates/d5e42a4e-f2c4-48cb-b4db-dff2bdeaa25a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zCTnfLwLKbS9S2sbp+uFz4KZOocFvXxkV06Ce9O5M2w="
,"crlite_enrolled":true,"id":"006e939d-ce4c-47b3-83b6-1106c0cbe038","last_modified":1606787861330},{"schema":1606744134795,"derHash":"kxqqHsmyug+lmoIwL0+DBijIbZstKlCk0bLOiVxMxkg=","subject":"CN=Actalis Organization Validated Server CA G3,O=Actalis S.p.A.,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGJMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEXMBUGA1UECgwOQWN0YWxpcyBTLnAuQS4xNDAyBgNVBAMMK0FjdGFsaXMgT3JnYW5pemF0aW9uIFZhbGlkYXRlZCBTZXJ2ZXIgQ0EgRzM=","whitelist":false,"attachment":{"hash":"71fafcd9a9832cc1330204b9331c40ce9c1fbcedeb9bd11114cd6cc2e1618b06","size":2645,"filename":"bX2Ri6lz4UqCdYdntmbFTrpmv0zVxEqhgCHCu9QV278=.pem","location":"security-state-staging/intermediates/eedc60b7-37aa-42bf-bad4-6909eaa5094d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bX2Ri6lz4UqCdYdntmbFTrpmv0zVxEqhgCHCu9QV278=","crlite_enrolled":false,"id":"62176a9a-7824-4b40-9921-687fd3033eb6","last_modified":1606744672041},{"schema":1606744133804,"derHash":"k
xqqHsmyug+lmoIwL0+DBijIbZstKlCk0bLOiVxMxkg=","subject":"CN=Actalis Organization Validated Server CA G3,O=Actalis S.p.A.,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGJMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEXMBUGA1UECgwOQWN0YWxpcyBTLnAuQS4xNDAyBgNVBAMMK0FjdGFsaXMgT3JnYW5pemF0aW9uIFZhbGlkYXRlZCBTZXJ2ZXIgQ0EgRzM=","whitelist":false,"attachment":{"hash":"71fafcd9a9832cc1330204b9331c40ce9c1fbcedeb9bd11114cd6cc2e1618b06","size":2645,"filename":"bX2Ri6lz4UqCdYdntmbFTrpmv0zVxEqhgCHCu9QV278=.pem","location":"security-state-staging/intermediates/6a86241e-e0c9-4fa3-9aa2-ff1afa4b55b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bX2Ri6lz4UqCdYdntmbFTrpmv0zVxEqhgCHCu9QV278=","crlite_enrolled":false,"id":"3107a9df-8e66-4472-ad36-f1062492c3e0","last_modified":1606744672021},{"schema":1606678892869,"derHash":"ROvwEj4n/x2wSXvS2uGBVbKkFOa82cbI+49IOYRJuek=","subject":"CN=TeleSec Business CA 1,OU=T-Systems Trust Center,O=T-Systems International Gm
bH,C=DE","subjectDN":"MHUxCzAJBgNVBAYTAkRFMSUwIwYDVQQKExxULVN5c3RlbXMgSW50ZXJuYXRpb25hbCBHbWJIMR8wHQYDVQQLExZULVN5c3RlbXMgVHJ1c3QgQ2VudGVyMR4wHAYDVQQDExVUZWxlU2VjIEJ1c2luZXNzIENBIDE=","whitelist":false,"attachment":{"hash":"5f456791aae0975819a267a4b01e2b4e0fcb12b375c5334b5a72562eefa58948","size":1947,"filename":"XmXOT9NXQoum_vwr876xEH0qCXmA3ZncBDyibtkXpQU=.pem","location":"security-state-staging/intermediates/085cace9-264b-4a9a-9330-f554e6585359.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XmXOT9NXQoum/vwr876xEH0qCXmA3ZncBDyibtkXpQU=","crlite_enrolled":false,"id":"eda28108-1b54-44e6-b8c5-1b6afcf10b67","last_modified":1606744671982},{"schema":1606333742190,"derHash":"M55rkr5UWfJqjcPF83IJM8g44jZgGwUASMBHoSPm+Oc=","subject":"CN=Sectigo Qualified Website Authentication CA Natural R35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MG0xCzAJBgNVBAYTAkVTMRwwGgYDVQQKExNTZWN0aWdvIChFdXJvcGUpIFNMMUAwPgYDVQQDEzdTZWN0aWdvIFF1YWxpZmllZCBXZWJzaXRlIEF1dGhlbnRpY2F0aW9uIENBIE5hdHVyYWwgUjM1","whi
telist":false,"attachment":{"hash":"2fdbc0c44bbbeb793ee6210c10f58a2b439a31b2c4f3ad98fc85188c1f0f7741","size":2272,"filename":"8SDm7JR9Lr5k8CRbSJ0R2_L6J0y30uLS_XkBNMdspCI=.pem","location":"security-state-staging/intermediates/af7fd13b-b101-4e0c-b915-c07e51012dae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8SDm7JR9Lr5k8CRbSJ0R2/L6J0y30uLS/XkBNMdspCI=","crlite_enrolled":false,"id":"6e195515-4482-4668-8fe4-f5027666c37a","last_modified":1606334252701},{"schema":1606333739838,"derHash":"qYQdLkfL5tcdj6/fODh/k/Q9dteSUE77F6IQIMWMC4k=","subject":"CN=Sectigo Qualified Website Authentication CA Natural E35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MG0xCzAJBgNVBAYTAkVTMRwwGgYDVQQKExNTZWN0aWdvIChFdXJvcGUpIFNMMUAwPgYDVQQDEzdTZWN0aWdvIFF1YWxpZmllZCBXZWJzaXRlIEF1dGhlbnRpY2F0aW9uIENBIE5hdHVyYWwgRTM1","whitelist":false,"attachment":{"hash":"7444706a13ee3d249ce6a3beee972c7b398c8ea8de04ca1731c7f2a672dc84f2","size":1256,"filename":"_E4OWM1It5EGPdb8mrqad2xJL7i_-r8fvlJCYaFSPu8=.pem","location":"
security-state-staging/intermediates/48775c2f-29fa-4215-9452-7af9caeaf04e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/E4OWM1It5EGPdb8mrqad2xJL7i/+r8fvlJCYaFSPu8=","crlite_enrolled":false,"id":"ffb4d38b-871d-4d95-90a0-f5a3af5f65aa","last_modified":1606334252687},{"schema":1606161750920,"derHash":"zAslEu4gKAw28w1XCErLa4Y22UtIF0LkJDNcd2fnWMY=","subject":"CN=SZCA OV SSL CA,O=Shenzhen Digital Certificate Authority Center Co.\\, Ltd,C=CN","subjectDN":"MGcxCzAJBgNVBAYTAkNOMT8wPQYDVQQKDDZTaGVuemhlbiBEaWdpdGFsIENlcnRpZmljYXRlIEF1dGhvcml0eSBDZW50ZXIgQ28uLCBMdGQxFzAVBgNVBAMMDlNaQ0EgT1YgU1NMIENB","whitelist":false,"attachment":{"hash":"f14773351856d24a716ac777ab1f49b20bc3e773a90bd6e81448699608ed3745","size":1756,"filename":"bJ62__O9KMouzGPMfpN1AzgR1FpzP3mVaUCWzzs5FjI=.pem","location":"security-state-staging/intermediates/2377fa54-4f75-4365-adcf-533a61b44d4d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bJ62//O9KMouzGPMfpN1AzgR1FpzP3mVaUCWzzs5FjI=","crlite_enrolled":true,"
id":"31bbaba6-e6cc-4825-8c0e-724e8d0c9398","last_modified":1606298245517},{"schema":1606160494313,"derHash":"oX1hDWhKT/Iokus8AyW8b36ux4cUuHZyHsuwMzV2FyY=","subject":"CN=FujiSSL Public Certification Authority - G2,O=Nijimo\\, Inc.,C=JP","subjectDN":"MFoxCzAJBgNVBAYTAkpQMRUwEwYDVQQKEwxOaWppbW8sIEluYy4xNDAyBgNVBAMTK0Z1amlTU0wgUHVibGljIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"af126afe4039f135d0760332f28490f6b342c6bae42eabf97eb795c14726eb23","size":1626,"filename":"9JHVNVBfHJmPYVl2MYnHpVngU078_w25VD2RfhBP-xk=.pem","location":"security-state-staging/intermediates/39b0118b-e68a-47ca-8de4-28f23d41335a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9JHVNVBfHJmPYVl2MYnHpVngU078/w25VD2RfhBP+xk=","crlite_enrolled":false,"id":"6287a280-58bd-4c6c-8833-22c9b30a93d0","last_modified":1606161750117},{"schema":1605878542738,"derHash":"vf2E2QKq0BDE4IExd1r7c2VpTugcm4ri33ZBnz7fG+E=","subject":"CN=TrustSign BR Certification Authority (OV) 2,O=TrustSign Cert
ificadora Dig. & Solu\u00e7\u00f5es Seguran\u00e7a da Inf. Ltda.,L=S\u00e3o Jos\u00e9 dos Campos,ST=S\u00e3o Paulo,C=BR","subjectDN":"MIHFMQswCQYDVQQGEwJCUjETMBEGA1UECAwKU8OjbyBQYXVsbzEeMBwGA1UEBwwVU8OjbyBKb3PDqSBkb3MgQ2FtcG9zMUswSQYDVQQKDEJUcnVzdFNpZ24gQ2VydGlmaWNhZG9yYSBEaWcuICYgU29sdcOnw7VlcyBTZWd1cmFuw6dhIGRhIEluZi4gTHRkYS4xNDAyBgNVBAMTK1RydXN0U2lnbiBCUiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAoT1YpIDI=","whitelist":false,"attachment":{"hash":"d3dc3d5cc6b731efb8dd4582c2ff3a8a8908962642aa4824f4b90b58832e90cd","size":2251,"filename":"YH8nyVlvrD15SoA59nrCYN5KN2y2Xz-fJ5K-uBAfl1Y=.pem","location":"security-state-staging/intermediates/c00b8ed3-5bd7-4213-8c0b-7b171e5b524a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YH8nyVlvrD15SoA59nrCYN5KN2y2Xz+fJ5K+uBAfl1Y=","crlite_enrolled":true,"id":"4d16fbc3-1ed1-40c0-940d-7abe6b7f2408","last_modified":1605945559522},{"schema":1605772140734,"derHash":"M47bBPuL6vB6EHSef05TjeBxXa+2R41YBj+3yL2www0=","subject":"CN=DigiCert Global G3 TLS ECC SHA38
4 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRpZ2lDZXJ0IEdsb2JhbCBHMyBUTFMgRUNDIFNIQTM4NCAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"7b5d64467372b9a0fe18ac79c51920708cd6c7b9c0d147b7a4a34b03d00bb358","size":1325,"filename":"qBRjZmOmkSNJL0p70zek7odSIzqs_muR4Jk9xYyCP-E=.pem","location":"security-state-staging/intermediates/0c3ef7f6-26b4-4d20-9cb8-4c3b14750242.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qBRjZmOmkSNJL0p70zek7odSIzqs/muR4Jk9xYyCP+E=","crlite_enrolled":true,"id":"0a6eb392-3c5c-43f2-b690-2b1aade1bd65","last_modified":1605772704241},{"schema":1605772140264,"derHash":"M47bBPuL6vB6EHSef05TjeBxXa+2R41YBj+3yL2www0=","subject":"CN=DigiCert Global G3 TLS ECC SHA384 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRpZ2lDZXJ0IEdsb2JhbCBHMyBUTFMgRUNDIFNIQTM4NCAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"7b5d64467372b9a0fe18ac
79c51920708cd6c7b9c0d147b7a4a34b03d00bb358","size":1325,"filename":"qBRjZmOmkSNJL0p70zek7odSIzqs_muR4Jk9xYyCP-E=.pem","location":"security-state-staging/intermediates/502372d5-20f4-4deb-a9b8-3f30424dac2a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qBRjZmOmkSNJL0p70zek7odSIzqs/muR4Jk9xYyCP+E=","crlite_enrolled":true,"id":"759b2da7-e5d3-4d7e-9ffe-d2f76b839a59","last_modified":1605772704220},{"schema":1605728373130,"derHash":"hDqnaDKJtx00jAh65vcaHIMTi0w5fzFtHnjJ2oZmC4Q=","subject":"SERIALNUMBER=201403,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDM=","whitelist":false,"attachment":{"hash":"2d7b611abc13145ddd774597f42e94c75815440e6a93c58100920eddebec906c","size":2093,"filename":"NOiJ9aKMOqQ8-vIWDKgcNhgjZvY5sEVcjdasO9aAZts=.pem","location":"security-state-staging/intermediates/7527cef8-47f2-4be7-82b5-ffbc4be18fa9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NOiJ9aKMOqQ8+vIWDKgcNhgjZvY5sEVcjdasO9aAZts=","crlit
e_enrolled":true,"id":"b255a018-1cfd-4cb0-a8c2-5afafbdcc29c","last_modified":1605772704200},{"schema":1605533478416,"derHash":"90w7LH5FXWVNnuWqpxJ4nMsme5YcGhzkimnIYM0ZNng=","subject":"CN=Thawte EV ECC CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHjAcBgNVBAMTFVRoYXd0ZSBFViBFQ0MgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"029e038309e109b338a8e5d3d4e6300803b81c7d7d64ed413d523864ea9f6f9d","size":1390,"filename":"sHnhNNcEZAQ0U5qyqTUj5LjSA8SG8NfF7zS_jwKtxLc=.pem","location":"security-state-staging/intermediates/c4cea83a-c04d-4940-8b0e-62cf421b3779.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sHnhNNcEZAQ0U5qyqTUj5LjSA8SG8NfF7zS/jwKtxLc=","crlite_enrolled":true,"id":"fe536340-3673-4218-bc86-b13888ae9bf3","last_modified":1605578284427},{"schema":1605123695624,"derHash":"yTGg+FoFKQEjSlT9Rg1BfxqLY8OMSBH3m5jzrhwv6fs=","subject":"CN=SECOM Passport for Member PUB CA5,OU=SE
COM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTU=","whitelist":false,"attachment":{"hash":"c65635be2bd0d20a2b0fd6d70bd227a546782c46ab1e3c6b2394239fc8cfd6cb","size":1695,"filename":"v3h5R_3OzMC-NBXKj05v4LQG5laFzE9fB4KsGpwAMtk=.pem","location":"security-state-staging/intermediates/de481d0f-d78a-4134-95c5-8978b12cffcd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"v3h5R/3OzMC+NBXKj05v4LQG5laFzE9fB4KsGpwAMtk=","crlite_enrolled":false,"id":"8cc1c1a9-82f5-425d-bc26-7033cc45e093","last_modified":1605189460438},{"schema":1604950897176,"derHash":"E+oRBESaEaH4HLl9CYxILsEqK2CetTx+YVXtCEqosJM=","subject":"CN=SECOM Passport for Member PUB CA1,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UECh
McU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTE=","whitelist":false,"attachment":{"hash":"cbe1744ff7c3b516662a7fcf7f98a6251c21968145cac4cedf9a9f3172ff0574","size":1581,"filename":"6cgk6TZAPcY4yIiIMAg1ccG9_fhHLRXTFVWj7IrvDq4=.pem","location":"security-state-staging/intermediates/b3a3dc5c-8be0-46e0-9329-c2253f02349f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6cgk6TZAPcY4yIiIMAg1ccG9/fhHLRXTFVWj7IrvDq4=","crlite_enrolled":false,"id":"3bda166d-f610-4dee-9b49-3b63bba2ef5b","last_modified":1605081484966},{"schema":1604908139751,"derHash":"15otXgMpXA6f6uNtAh69UglwCrGp6BekPzD6PGb3jSE=","subject":"CN=DigiCert TLS Hybrid ECC SHA384 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0RpZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"388fede353d5e81549d7a9a264bceab472ffc7e
ff4991123ac93299f4a9ebfe3","size":1536,"filename":"e0IRz5Tio3GA1Xs4fUVWmH1xHDiH2dMbVtCBSkOIdqM=.pem","location":"security-state-staging/intermediates/14b3ab45-1d4e-450b-9224-99c237082b97.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e0IRz5Tio3GA1Xs4fUVWmH1xHDiH2dMbVtCBSkOIdqM=","crlite_enrolled":true,"id":"61051771-39c7-4792-994d-f7e1b8f69254","last_modified":1604908666929},{"schema":1604778093487,"derHash":"15otXgMpXA6f6uNtAh69UglwCrGp6BekPzD6PGb3jSE=","subject":"CN=DigiCert TLS Hybrid ECC SHA384 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0RpZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"388fede353d5e81549d7a9a264bceab472ffc7eff4991123ac93299f4a9ebfe3","size":1536,"filename":"e0IRz5Tio3GA1Xs4fUVWmH1xHDiH2dMbVtCBSkOIdqM=.pem","location":"security-state-staging/intermediates/f4b4778a-4e0c-4756-bf8f-075982ede557.pem","mimetype":"application/x-pem-file"},"pubKeyHash
":"e0IRz5Tio3GA1Xs4fUVWmH1xHDiH2dMbVtCBSkOIdqM=","crlite_enrolled":true,"id":"2e597179-5b56-4fea-bf13-6d641de8d405","last_modified":1604908666908},{"schema":1604605293287,"derHash":"LmsV+e7R69YtJ1aR+T3JQ/kN0eCvEYkGYZxXfXUpi9o=","subject":"CN=CrossTrust DV CA4,O=CrossTrust,C=JP","subjectDN":"MD4xCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpDcm9zc1RydXN0MRowGAYDVQQDExFDcm9zc1RydXN0IERWIENBNA==","whitelist":false,"attachment":{"hash":"e44f47a3381c3bd6aad3c0e85f6aac99405404d194c82777031a54eca4500dad","size":1589,"filename":"bzFxWlFhCb1TJC-ZiW0DXANo9uoO45khqSeMELmYpJ8=.pem","location":"security-state-staging/intermediates/2beceff3-685f-42a3-b31b-2f13ed3711f2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bzFxWlFhCb1TJC+ZiW0DXANo9uoO45khqSeMELmYpJ8=","crlite_enrolled":false,"id":"22cc58f6-abf4-4039-92e1-6739f9c77c7d","last_modified":1604649438460},{"schema":1604524708530,"derHash":"3pjRCJ+u+Ol9jEKPIYrKDtF8Vc+zVxEl5aURiameKJg=","subject":"SERIALNUMBER=201502,CN=Foreigner CA,C=BE","subjectDN":"M
DUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTUwMg==","whitelist":false,"attachment":{"hash":"f6fd663baa7ee87b66e0d41b4d6d83d993a00817f1591bdd92cb0340672c10f5","size":2097,"filename":"JBmS5WYsQXSCs7cj9Y7nmmgLd8xpVrpdsZFXcnD15HU=.pem","location":"security-state-staging/intermediates/812ee2d5-773e-4345-ad5c-fa142a66fab8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JBmS5WYsQXSCs7cj9Y7nmmgLd8xpVrpdsZFXcnD15HU=","crlite_enrolled":false,"id":"c2109866-4770-49a8-abec-da2ea0083799","last_modified":1604541499405},{"schema":1604389849675,"derHash":"JXaHE9O0Wfk4LSpZT4XzRwn9KokwcxVCpBRv+yRr7Gk=","subject":"CN=DigiCert TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERpZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0Ex","whitelist":false,"attachment":{"hash":"7f449f1e3178f1a2603b8177a108b02654caa02203944597174e3f46651ba513","size":1764,"filename":"RQeZkB42znUfsDIIFWIRiYEcKl7nHwNFwWCrnMMJbVc=.pem","
location":"security-state-staging/intermediates/7485d12b-9344-4c47-ac5b-288655151f37.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RQeZkB42znUfsDIIFWIRiYEcKl7nHwNFwWCrnMMJbVc=","crlite_enrolled":true,"id":"6261e4b7-bb37-4f81-98ea-f94e5bd6e51a","last_modified":1604390293643},{"schema":1604389737473,"derHash":"H4656ajgZsxbODPgazEpdktiJjnVsWP2AOHHkSC/Pu0=","subject":"CN=DigiCert Global G2 TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRpZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"be6d0e35f0c53e7c0af632d9bdf5dabd2be82214fc5e1c990c2bb46537d41287","size":1776,"filename":"Wec45nQiFwKvHtuHxSAMGkt19k-uPSw9JlEkxhvYPHk=.pem","location":"security-state-staging/intermediates/df6e4082-7b47-4af2-8d24-f1add41951d1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wec45nQiFwKvHtuHxSAMGkt19k+uPSw9JlEkxhvYPHk=","crlite_enrolled":true,"id":"6dc04366-cd3f-4bd
3-8b1e-25fcf12fb005","last_modified":1604390293622},{"schema":1604325493707,"derHash":"JXaHE9O0Wfk4LSpZT4XzRwn9KokwcxVCpBRv+yRr7Gk=","subject":"CN=DigiCert TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERpZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0Ex","whitelist":false,"attachment":{"hash":"7f449f1e3178f1a2603b8177a108b02654caa02203944597174e3f46651ba513","size":1764,"filename":"RQeZkB42znUfsDIIFWIRiYEcKl7nHwNFwWCrnMMJbVc=.pem","location":"security-state-staging/intermediates/4017d719-9895-4e22-9126-8a0f51a90435.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RQeZkB42znUfsDIIFWIRiYEcKl7nHwNFwWCrnMMJbVc=","crlite_enrolled":true,"id":"574b122c-db71-4b2e-9e17-0037916e0d24","last_modified":1604390293602},{"schema":1604389736973,"derHash":"H4656ajgZsxbODPgazEpdktiJjnVsWP2AOHHkSC/Pu0=","subject":"CN=DigiCert Global G2 TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx
EaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRpZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"be6d0e35f0c53e7c0af632d9bdf5dabd2be82214fc5e1c990c2bb46537d41287","size":1776,"filename":"Wec45nQiFwKvHtuHxSAMGkt19k-uPSw9JlEkxhvYPHk=.pem","location":"security-state-staging/intermediates/c4681dc7-0e43-4ac0-8bc3-34144df38b63.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wec45nQiFwKvHtuHxSAMGkt19k+uPSw9JlEkxhvYPHk=","crlite_enrolled":true,"id":"35a1d22d-443b-417b-a403-ff057dc50c1c","last_modified":1604390293581},{"schema":1604163572112,"derHash":"qq/pPjWbFJpMngtXLVG/N/2jin6aNZv5A1m6nKqWqt8=","subject":"CN=Atos TrustedRoot Server-CA 2013,O=Atos,C=DE","subjectDN":"MEYxKDAmBgNVBAMMH0F0b3MgVHJ1c3RlZFJvb3QgU2VydmVyLUNBIDIwMTMxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"3a6282f735ea66c38369711f7a511e7a8f40608ccbb6adb005af1b94bad5d4de","size":1561,"filename":"obLbX6ExWI0XXj12lo4-ITcs5rF7AE6dzl2X86Q8EpI=.pem","location
":"security-state-staging/intermediates/69a41bd1-a437-463d-b4ba-83c2a65e4936.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"obLbX6ExWI0XXj12lo4+ITcs5rF7AE6dzl2X86Q8EpI=","crlite_enrolled":false,"id":"a25c486d-fc0f-4770-9864-911e40701c9b","last_modified":1604325492885},{"schema":1603979716226,"derHash":"ACOT+gpoJfd+9obiCGILlxd3kfAvB9slGEgPvjfOe9g=","subject":"CN=Sectigo Qualified Website Authentication CA R35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MGUxCzAJBgNVBAYTAkVTMRwwGgYDVQQKExNTZWN0aWdvIChFdXJvcGUpIFNMMTgwNgYDVQQDEy9TZWN0aWdvIFF1YWxpZmllZCBXZWJzaXRlIEF1dGhlbnRpY2F0aW9uIENBIFIzNQ==","whitelist":false,"attachment":{"hash":"f3fd4f6e976f11c869a9af70485fa21943e3a8f8c535b2978a053f1c80c4a59c","size":2259,"filename":"KxJdQKV5G03wpSUMzFPrE_WdnS5RnO4gex-GeXPUDnw=.pem","location":"security-state-staging/intermediates/bb2dc257-d008-42de-ac7f-5c5c5da83a16.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KxJdQKV5G03wpSUMzFPrE/WdnS5RnO4gex+GeXPUDnw=","crlite_enrolled":true,"i
d":"1625200c-4327-47a5-ac76-3eeb94c77907","last_modified":1603983473695},{"schema":1603979451595,"derHash":"ACOT+gpoJfd+9obiCGILlxd3kfAvB9slGEgPvjfOe9g=","subject":"CN=Sectigo Qualified Website Authentication CA R35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MGUxCzAJBgNVBAYTAkVTMRwwGgYDVQQKExNTZWN0aWdvIChFdXJvcGUpIFNMMTgwNgYDVQQDEy9TZWN0aWdvIFF1YWxpZmllZCBXZWJzaXRlIEF1dGhlbnRpY2F0aW9uIENBIFIzNQ==","whitelist":false,"attachment":{"hash":"f3fd4f6e976f11c869a9af70485fa21943e3a8f8c535b2978a053f1c80c4a59c","size":2259,"filename":"KxJdQKV5G03wpSUMzFPrE_WdnS5RnO4gex-GeXPUDnw=.pem","location":"security-state-staging/intermediates/b446caf5-e02c-44cd-a182-fe46d91d9d58.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KxJdQKV5G03wpSUMzFPrE/WdnS5RnO4gex+GeXPUDnw=","crlite_enrolled":true,"id":"cfb41545-0746-4be6-8d75-5a993a4ac7f5","last_modified":1603983473670},{"schema":1603979907768,"derHash":"ACOT+gpoJfd+9obiCGILlxd3kfAvB9slGEgPvjfOe9g=","subject":"CN=Sectigo Qualified Website Authenticat
ion CA R35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MGUxCzAJBgNVBAYTAkVTMRwwGgYDVQQKExNTZWN0aWdvIChFdXJvcGUpIFNMMTgwNgYDVQQDEy9TZWN0aWdvIFF1YWxpZmllZCBXZWJzaXRlIEF1dGhlbnRpY2F0aW9uIENBIFIzNQ==","whitelist":false,"attachment":{"hash":"f3fd4f6e976f11c869a9af70485fa21943e3a8f8c535b2978a053f1c80c4a59c","size":2259,"filename":"KxJdQKV5G03wpSUMzFPrE_WdnS5RnO4gex-GeXPUDnw=.pem","location":"security-state-staging/intermediates/3aa18798-246a-4c38-aaf6-d0ba69875c58.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KxJdQKV5G03wpSUMzFPrE/WdnS5RnO4gex+GeXPUDnw=","crlite_enrolled":true,"id":"251b1a67-1d3e-4e59-83cb-1523c2461f64","last_modified":1603983473633},{"schema":1603789063900,"derHash":"ogZkT1ev0QuUFpSYhYmBwW1jOFjODIi1fPFPoqkqrP0=","subject":"CN=Secure Site Pro ECC CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHzAdBgNVBAMTFlNlY3VyZSBTaXRlIFBybyBFQ0MgQ0E=","whitelist":false,"attachment":
{"hash":"e293173433a0678dd0c07a0432db8bc25e796896b84c9cfb996a1234d78528d2","size":1443,"filename":"jqgpMe3J72LhpK4BfQvcmwg-Oh-RwdZH-swdUvq8F9k=.pem","location":"security-state-staging/intermediates/9620ee73-5f68-44bd-b368-b0ca0bcc7153.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jqgpMe3J72LhpK4BfQvcmwg+Oh+RwdZH+swdUvq8F9k=","crlite_enrolled":false,"id":"d9d951a6-56f3-4229-8405-898b7f223384","last_modified":1603850281659},{"schema":1603849736165,"derHash":"fsjnqkIZXpo2uFjilmnqo31XsTr6IzG9rqah6/fkbn4=","subject":"CN=CertCenter Enterprise ECC EV CA,OU=Controlled by COMODO CA exclusively for CertCenter AG,O=CertCenter AG,L=Giessen,ST=Hessen,C=DE","subjectDN":"MIGyMQswCQYDVQQGEwJERTEPMA0GA1UECBMGSGVzc2VuMRAwDgYDVQQHEwdHaWVzc2VuMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMT4wPAYDVQQLEzVDb250cm9sbGVkIGJ5IENPTU9ETyBDQSBleGNsdXNpdmVseSBmb3IgQ2VydENlbnRlciBBRzEoMCYGA1UEAxMfQ2VydENlbnRlciBFbnRlcnByaXNlIEVDQyBFViBDQQ==","whitelist":false,"attachment":{"hash":"ad13f4a2c2b0453bcad7768dfb8aa9dd9abf
52d18d9b3381705fe30226d297cc","size":1414,"filename":"9IEsy6v-cBI7ee5Y4xt277Tel65rfvCSsKBMLrGfjVI=.pem","location":"security-state-staging/intermediates/4c478c30-a765-41e1-95bd-ee2f0924ed09.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9IEsy6v+cBI7ee5Y4xt277Tel65rfvCSsKBMLrGfjVI=","crlite_enrolled":false,"id":"02b2f900-f9fa-411c-9402-75944e3fdbbf","last_modified":1603850281630},{"schema":1603741294890,"derHash":"PF45H9jKOyFhRJViSuWynzntBmEktZRDj5SUs0NDx5U=","subject":"CN=EuropeanSSL High Assurance Server CA 2,O=EUNETIC GmbH,L=Durmersheim,ST=Baden-W\u00fcrttemberg,C=DE","subjectDN":"MIGIMQswCQYDVQQGEwJERTEbMBkGA1UECAwSQmFkZW4tV8O8cnR0ZW1iZXJnMRQwEgYDVQQHEwtEdXJtZXJzaGVpbTEVMBMGA1UEChMMRVVORVRJQyBHbWJIMS8wLQYDVQQDEyZFdXJvcGVhblNTTCBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EgMg==","whitelist":false,"attachment":{"hash":"b7ee97e44a0b08b84600f14d91999274d13538fbe487ae5bbe2ffeda760373f7","size":2166,"filename":"HhU8wZ-rl8VgXaRRv_XdnUCKI8eLRVXfTeY77HdaQ3Y=.pem","location":"security-state-s
taging/intermediates/f4cdda25-89ad-4ed5-8091-82787a46cd76.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HhU8wZ+rl8VgXaRRv/XdnUCKI8eLRVXfTeY77HdaQ3Y=","crlite_enrolled":true,"id":"a64ae3ed-7e46-4997-83b9-78bead9c29f5","last_modified":1603785478255},{"schema":1603784937046,"derHash":"C9FHkYe6Aeo+k4p1DHveO28oXcEOu5lTA/ZmAbpbLSA=","subject":"CN=WebSpace-Forum Server CA II,O=WebSpace-Forum e.K.,L=Berlin,ST=Berlin,C=DE","subjectDN":"MHMxCzAJBgNVBAYTAkRFMQ8wDQYDVQQIEwZCZXJsaW4xDzANBgNVBAcTBkJlcmxpbjEcMBoGA1UEChMTV2ViU3BhY2UtRm9ydW0gZS5LLjEkMCIGA1UEAxMbV2ViU3BhY2UtRm9ydW0gU2VydmVyIENBIElJ","whitelist":false,"attachment":{"hash":"7768f5bec77dbbbde9e9572bc1c4098d4a05278998998904ac61c71b62987df1","size":2133,"filename":"5RYmGs6llHArO1X6YMpESuHfz0WJ0hjDErS2_5y9hWo=.pem","location":"security-state-staging/intermediates/892d5f14-b84e-460c-b541-1c43bd0b45f8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5RYmGs6llHArO1X6YMpESuHfz0WJ0hjDErS2/5y9hWo=","crlite_enrolled":true,"id":"2
8961bab-dbd4-41f9-a1f3-d6fbd473a508","last_modified":1603785478231},{"schema":1603568492594,"derHash":"dnvCnbma9MKmJkkADRcvxswtCdQIxMq2qNmaHdXc99s=","subject":"CN=CertCenter Enterprise ECC DV CA,O=CertCenter AG,L=Giessen,ST=Hessen,C=DE","subjectDN":"MHIxCzAJBgNVBAYTAkRFMQ8wDQYDVQQIEwZIZXNzZW4xEDAOBgNVBAcTB0dpZXNzZW4xFjAUBgNVBAoTDUNlcnRDZW50ZXIgQUcxKDAmBgNVBAMTH0NlcnRDZW50ZXIgRW50ZXJwcmlzZSBFQ0MgRFYgQ0E=","whitelist":false,"attachment":{"hash":"f8716a70364bdbf780503d8d9ac1bacd7600d5f66e511193c3337cf92df9e24a","size":3756,"filename":"zuRQp-iYZxMyj8bp4pFJtJ30vMQId6DXMagFWZ9jfmU=.pem","location":"security-state-staging/intermediates/b0afc492-2be7-4ad1-923d-89b25034dc22.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zuRQp+iYZxMyj8bp4pFJtJ30vMQId6DXMagFWZ9jfmU=","crlite_enrolled":false,"id":"719f84ba-e1e8-4bdd-a10b-76268634b5d7","last_modified":1603591065213},{"schema":1603504182613,"derHash":"3CcoMxMS51xNe0QvO92nkMt3qdashU1bzhisQ8pZkJo=","subject":"CN=ATT Atlas R3 OV TLS CA 2020
,O=ATT Services Inc,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBBVFQgU2VydmljZXMgSW5jMSQwIgYDVQQDExtBVFQgQXRsYXMgUjMgT1YgVExTIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"e93ec3c93798a4c69c537ee7a488670b0c74cf8ea19467445243e440fc143d44","size":1699,"filename":"7gswJkaWI1c2mfCUfT3FpRjIef2nGdyV07Uoa-HSRf4=.pem","location":"security-state-staging/intermediates/e319120e-f55a-4fb8-acd8-2770716a5481.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7gswJkaWI1c2mfCUfT3FpRjIef2nGdyV07Uoa+HSRf4=","crlite_enrolled":true,"id":"461f5fb1-2c7d-4292-92b0-c3b6b9545359","last_modified":1603504658778},{"schema":1603504181937,"derHash":"3CcoMxMS51xNe0QvO92nkMt3qdashU1bzhisQ8pZkJo=","subject":"CN=ATT Atlas R3 OV TLS CA 2020,O=ATT Services Inc,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBBVFQgU2VydmljZXMgSW5jMSQwIgYDVQQDExtBVFQgQXRsYXMgUjMgT1YgVExTIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"e93ec3c93798a4c69c537ee7a488670b0c74cf8ea19467445243e440fc143d44","size
":1699,"filename":"7gswJkaWI1c2mfCUfT3FpRjIef2nGdyV07Uoa-HSRf4=.pem","location":"security-state-staging/intermediates/38da369b-01f7-4c44-8faf-e99f6ec6cb1b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7gswJkaWI1c2mfCUfT3FpRjIef2nGdyV07Uoa+HSRf4=","crlite_enrolled":true,"id":"975baf8e-91bf-44e3-8f33-57c1e8df8a23","last_modified":1603504658759},{"schema":1603421850516,"derHash":"71ZjFC9bLWuCdFKbFX3y+WWnGHOlrlql4HICRPI5i28=","subject":"CN=CertCenter Enterprise RSA EV CA,OU=Controlled by COMODO CA exclusively for CertCenter AG,O=CertCenter AG,L=Giessen,ST=Hessen,C=DE","subjectDN":"MIGyMQswCQYDVQQGEwJERTEPMA0GA1UECBMGSGVzc2VuMRAwDgYDVQQHEwdHaWVzc2VuMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMT4wPAYDVQQLEzVDb250cm9sbGVkIGJ5IENPTU9ETyBDQSBleGNsdXNpdmVseSBmb3IgQ2VydENlbnRlciBBRzEoMCYGA1UEAxMfQ2VydENlbnRlciBFbnRlcnByaXNlIFJTQSBFViBDQQ==","whitelist":false,"attachment":{"hash":"64e8335938bbaaed651bd59a9b50e97bfe919c616430e117a5ab454247a4949e","size":2255,"filename":"CaGpyyfpmNg5jcDd5cWMfcPMbbq
a5_5gKWvNRcBjqoA=.pem","location":"security-state-staging/intermediates/99b11aff-7143-4874-8b2d-03b88f194e89.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CaGpyyfpmNg5jcDd5cWMfcPMbbqa5/5gKWvNRcBjqoA=","crlite_enrolled":false,"id":"74d7ba69-fd50-4a4a-947c-c4d634776f86","last_modified":1603504658740},{"schema":1603395693272,"derHash":"MkC4HG31Uq6hbXAinb/v8k1Q6qmiJyORiI9lvpW0UOM=","subject":"CN=CertCenter Enterprise RSA OV CA,O=CertCenter AG,L=Giessen,ST=Hessen,C=DE","subjectDN":"MHIxCzAJBgNVBAYTAkRFMQ8wDQYDVQQIEwZIZXNzZW4xEDAOBgNVBAcTB0dpZXNzZW4xFjAUBgNVBAoTDUNlcnRDZW50ZXIgQUcxKDAmBgNVBAMTH0NlcnRDZW50ZXIgRW50ZXJwcmlzZSBSU0EgT1YgQ0E=","whitelist":false,"attachment":{"hash":"f0ef15c657a987fd884de4d2445f0e2311d7cecef612a3443bcc050eac65d0ae","size":2138,"filename":"ke_AQ9WF4UMSgAU_wMJhEjKM4oBlpoIH0lidCk0FTIM=.pem","location":"security-state-staging/intermediates/97f31fbd-c914-4077-9d2f-90ed3d7eec32.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ke/AQ9WF4UMSgAU/wMJhEjKM4
oBlpoIH0lidCk0FTIM=","crlite_enrolled":false,"id":"205e175a-96fc-44bc-b8ba-0dd4c7881485","last_modified":1603418262238},{"schema":1603417750565,"derHash":"wG7UFefe0G5aSgg6gCX2XkXU5GtjUema20feSLAvi+0=","subject":"CN=CertCenter Enterprise RSA DV CA,O=CertCenter AG,L=Giessen,ST=Hessen,C=DE","subjectDN":"MHIxCzAJBgNVBAYTAkRFMQ8wDQYDVQQIEwZIZXNzZW4xEDAOBgNVBAcTB0dpZXNzZW4xFjAUBgNVBAoTDUNlcnRDZW50ZXIgQUcxKDAmBgNVBAMTH0NlcnRDZW50ZXIgRW50ZXJwcmlzZSBSU0EgRFYgQ0E=","whitelist":false,"attachment":{"hash":"73c39b45f6be720b687e13337fa318950c5887b8e1fae66aa0d7c83bd7b66dfe","size":2133,"filename":"FfDDB8UNFaSYYtmGpdb9uuU8NXG50-ypsKYjpMCN2c0=.pem","location":"security-state-staging/intermediates/8d50283b-4b41-4218-9f3b-5a1bdac55359.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FfDDB8UNFaSYYtmGpdb9uuU8NXG50+ypsKYjpMCN2c0=","crlite_enrolled":false,"id":"980e074c-1142-4749-9f90-b1d7d8e5f3b2","last_modified":1603418262218},{"schema":1603331414283,"derHash":"GLtw79o/kUOBFcnrTzM+tOxoNUVx5pSRlaC
pHJ5vvNg=","subject":"CN=QuoVadis RCA1G3 TLS CA,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpcyBSQ0ExRzMgVExTIENB","whitelist":false,"attachment":{"hash":"b3bb67e5eae26a4c94edb219c24b0b5e4b61ccf76dfc1f6b45000e822a22ceb3","size":2369,"filename":"oVTzYxEWPWmbDlo2GZhwL-6my7pLP_DO_Q5zS0j4erM=.pem","location":"security-state-staging/intermediates/0142a491-80f0-4728-bbff-4b23436aafa0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oVTzYxEWPWmbDlo2GZhwL+6my7pLP/DO/Q5zS0j4erM=","crlite_enrolled":false,"id":"6737f4c2-a14c-4b1d-8e0c-b062884b238a","last_modified":1603331864382},{"schema":1603331409918,"derHash":"7MDResMmOsahZNzbCPgtB+k/zqcj9muIsG7rqWeN8rs=","subject":"CN=QuoVadis RCA3G3 TLS CA,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpcyBSQ0EzRzMgVExTIENB","whitelist":false,"attachment":{"hash":"fc4fc6584822834debd279e4a8481536c6bd26913df0
0dda003fbc4ed5facf42","size":2369,"filename":"HGG1eHmdWucI4rZV77-UwfI3jqj3-wm0NFUmWbyNZvs=.pem","location":"security-state-staging/intermediates/098ff8c0-cbd6-4de0-93e9-b29fc7971c7d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HGG1eHmdWucI4rZV77+UwfI3jqj3+wm0NFUmWbyNZvs=","crlite_enrolled":false,"id":"c4121d69-d075-4111-9d27-6dbed565f530","last_modified":1603331864371},{"schema":1603331412138,"derHash":"a7lkZHte5hWaKgKe5cfc0dnPOwiEUeCmjpDmB0w/XKM=","subject":"CN=QuoVadis RCA1G1 TLS CA,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpcyBSQ0ExRzEgVExTIENB","whitelist":false,"attachment":{"hash":"34870e705e578bbcd98319ac5f84b11e5770d2ad43f4dfe76db0785c91777fdb","size":2089,"filename":"Qvjdi2jwbwNDElJ0tj6ROtrf4nU-v9QUSIl7Mk_pIgk=.pem","location":"security-state-staging/intermediates/d3959276-8446-44d6-bbf5-d30de62aeabd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Qvjdi2jwbwNDElJ0tj6ROtrf4nU+v9QUSI
l7Mk/pIgk=","crlite_enrolled":false,"id":"0e7c9134-ab1c-4f19-846d-30587aaac2be","last_modified":1603331864359},{"schema":1603331407633,"derHash":"OmbmSCEuYyH5TZ6rzJLAUuZ52ZLJmtRZak57ha3O5d4=","subject":"CN=QuoVadis RCA3G1 TLS CA,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpcyBSQ0EzRzEgVExTIENB","whitelist":false,"attachment":{"hash":"e5c77c38ef33f161625bc3592afbf547db64bc8507aff887efbd2902cd674003","size":2361,"filename":"cDYpcfBIVfSGVjIXkR2jSnkBmuagMeyfAzJa6dOp_y4=.pem","location":"security-state-staging/intermediates/4251568a-3965-4fe1-81c3-100b6c736472.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cDYpcfBIVfSGVjIXkR2jSnkBmuagMeyfAzJa6dOp/y4=","crlite_enrolled":false,"id":"6eca33ec-4f64-4e1a-9686-48926a7dccbd","last_modified":1603331864347},{"schema":1603241851952,"derHash":"qmHCkn3InbIlypoX1gA3PQWPaW2G0Q4r17Xo9EqX7tE=","subject":"CN=WoSign OV SSL Pro CA,O=WoSign CA Limited,C=CN","subjectDN":"MEgxCz
AJBgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRlZDEdMBsGA1UEAxMUV29TaWduIE9WIFNTTCBQcm8gQ0E=","whitelist":false,"attachment":{"hash":"afb1ffcaed2f65ba6080da16e771b2fd79536ffb5f81dc7fd0f22152661e7331","size":1666,"filename":"YgNpzwCbB-5jnp9Vn5xVC090y79oIjE_2P8pF1_4DMI=.pem","location":"security-state-staging/intermediates/4aef0608-20c1-4fb7-b413-e1f6b8d8ccf9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YgNpzwCbB+5jnp9Vn5xVC090y79oIjE/2P8pF1/4DMI=","crlite_enrolled":false,"id":"ff45948b-1310-4371-a262-b582c5ad0bbb","last_modified":1603245450595},{"schema":1603205963547,"derHash":"kzuA97lyVd9c8dlaEj6QFyLdswtIGvOqg1SCARGe0wM=","subject":"CN=AC Firmaprofesional - Secure Web 2020,OU=Security Services,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGTMQswCQYDVQQGEwJFUzEeMBwGA1UECgwVRmlybWFwcm9mZXNpb25hbCBTLkEuMRgwFgYDVQRhDA9WQVRFUy1BNjI2MzQwNjgxGjAYBgNVBAsMEVNlY3VyaXR5IFNlcnZpY2VzMS4wLAYDVQQDDCVBQyBGaXJtYXByb2Zlc2lvbmFsIC0gU2VjdXJlIFdlYiAyMDIw","whitelist":false,"attachment":{"ha
sh":"52c3fc5e3b79e5116293a6f3f94714018b37170fcaad6cecb1a8528e12265be4","size":2304,"filename":"HLNGq69C6VUDfEsMKKHPJo4S4cvlTKeTx53VBUCO1JY=.pem","location":"security-state-staging/intermediates/e90cca09-75a9-4de3-8a0c-95aee7b3a2d6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HLNGq69C6VUDfEsMKKHPJo4S4cvlTKeTx53VBUCO1JY=","crlite_enrolled":true,"id":"154de830-9906-4718-b472-7abb5a1a20f3","last_modified":1603209441493},{"schema":1603205802060,"derHash":"kzuA97lyVd9c8dlaEj6QFyLdswtIGvOqg1SCARGe0wM=","subject":"CN=AC Firmaprofesional - Secure Web 2020,OU=Security Services,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGTMQswCQYDVQQGEwJFUzEeMBwGA1UECgwVRmlybWFwcm9mZXNpb25hbCBTLkEuMRgwFgYDVQRhDA9WQVRFUy1BNjI2MzQwNjgxGjAYBgNVBAsMEVNlY3VyaXR5IFNlcnZpY2VzMS4wLAYDVQQDDCVBQyBGaXJtYXByb2Zlc2lvbmFsIC0gU2VjdXJlIFdlYiAyMDIw","whitelist":false,"attachment":{"hash":"52c3fc5e3b79e5116293a6f3f94714018b37170fcaad6cecb1a8528e12265be4","size":2304,"filename":"HLNGq69C6VUDfEsMKKHPJo4S4cvlTKeTx53VB
UCO1JY=.pem","location":"security-state-staging/intermediates/a129dd72-36e3-442a-bd95-4a35a0dcec63.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HLNGq69C6VUDfEsMKKHPJo4S4cvlTKeTx53VBUCO1JY=","crlite_enrolled":true,"id":"140dddc9-659c-426f-a0ae-c2d82202b637","last_modified":1603209441473},{"schema":1603133839564,"derHash":"LihhKJtczt7K5MMb8mLg+wwptsFTBXNEJzHKZdgh6QE=","subject":"CN=Symantec Class 3 ECC 256 bit SSL CA - G2,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGAMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxMTAvBgNVBAMTKFN5bWFudGVjIENsYXNzIDMgRUNDIDI1NiBiaXQgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"bf637313289e8c27077991be26a0d07e37b59838312f06c7099b3e967081ef81","size":1589,"filename":"pvsOo_07kXBfe36yjJgm6H46EJRe7gurjSAeunJgFyg=.pem","location":"security-state-staging/intermediates/9a6d9b7e-8c6d-4c3a-a77c-3e8b76b81960.pem","mimetype":"application/x-pem-file"},"pubKeyH
ash":"pvsOo/07kXBfe36yjJgm6H46EJRe7gurjSAeunJgFyg=","crlite_enrolled":true,"id":"62e33177-52e4-4dd8-acfc-f9fd671aab01","last_modified":1603137438283},{"schema":1602961037868,"derHash":"qlf0gsvFFrTRDKQJfdkNmfWqcn0gcJDQfanDaZirua0=","subject":"CN=HydrantID SSL CA G3,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMTAwLgYDVQQKDCdIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHDAaBgNVBAMME0h5ZHJhbnRJRCBTU0wgQ0EgRzM=","whitelist":false,"attachment":{"hash":"7e0808e92ebc33ef96558a3d7c46b9b86290ea9b9c814fe1b375dd5f6e94179f","size":2414,"filename":"CgDzm8Z-Gk0j7D6yq4U4IstjpiYpBiVqyPDYr-62oO8=.pem","location":"security-state-staging/intermediates/5cbfc23e-7d49-4372-82b5-58e1a0a3785e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CgDzm8Z+Gk0j7D6yq4U4IstjpiYpBiVqyPDYr+62oO8=","crlite_enrolled":true,"id":"b97f538d-34bf-41f2-ba3b-3ffa41cdfa5e","last_modified":1602964635139},{"schema":1602939433240,"derHash":"unmfMiWR3X0128WPSCByXwlPVDqhPLRYxVyR3Ia+
Iv8=","subject":"CN=CERTDATA SSL EV CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MG4xCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExMDAuBgNVBAMMJ0NFUlREQVRBIFNTTCBFViBDQSAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"817455fbcfc00bd641341d581d3a97196ae6a94a33f63590a5b540321bf458e8","size":2158,"filename":"cVSKuRG7oLetITEBYy5dH5QBCUayslF78ETJPRfzwkU=.pem","location":"security-state-staging/intermediates/498affb3-e1de-4edb-9347-ffb1561473e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cVSKuRG7oLetITEBYy5dH5QBCUayslF78ETJPRfzwkU=","crlite_enrolled":true,"id":"9b021867-2e4d-4bd5-ad39-3ba7645c4e76","last_modified":1602943040447},{"schema":1602917835280,"derHash":"dWqrkA4/XHYnNLZGH8MqndNB6h1KBCg0CSM8OXh6hn4=","subject":"CN=TrustAsia ECC OV TLS Pro CA G3,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MF0xCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMScwJQYDV
QQDEx5UcnVzdEFzaWEgRUNDIE9WIFRMUyBQcm8gQ0EgRzM=","whitelist":false,"attachment":{"hash":"2e493c5d02aaed01f99e9499d09f7808636cd52471c8ddfc79dfb5c64d83b8ac","size":1353,"filename":"tbnWlmtVSEavKTtABU3v0aeisdNi3iLXhpU10YWnzRw=.pem","location":"security-state-staging/intermediates/5ea136cd-de72-4386-83f7-76fda17b499d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tbnWlmtVSEavKTtABU3v0aeisdNi3iLXhpU10YWnzRw=","crlite_enrolled":true,"id":"13e82017-a63b-46d6-8df5-d824c3250fcc","last_modified":1602921443410},{"schema":1602766682987,"derHash":"sIwZai7R6E+YktsbYSGc62QogkePObCHGWA9BzX6A9E=","subject":"CN=CA de Certificados SSL EV,OU=BZ Ziurtagiri publikoa - Certificado publico EV,O=IZENPE S.A.,C=ES","subjectDN":"MIGBMQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xODA2BgNVBAsML0JaIFppdXJ0YWdpcmkgcHVibGlrb2EgLSBDZXJ0aWZpY2FkbyBwdWJsaWNvIEVWMSIwIAYDVQQDDBlDQSBkZSBDZXJ0aWZpY2Fkb3MgU1NMIEVW","whitelist":false,"attachment":{"hash":"388ad7bfbc659f5233cd21bf5d91654c878954f11b1f806a8471ebe1dc8
9e676","size":2515,"filename":"D0NbyGhND0J0g9UeFoaXmcD9hKK6WSHEogR1kaVlsfA=.pem","location":"security-state-staging/intermediates/3edc35f2-2f62-434a-b3d0-3fa02db4b362.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D0NbyGhND0J0g9UeFoaXmcD9hKK6WSHEogR1kaVlsfA=","crlite_enrolled":false,"id":"097e4515-9a01-4511-a66e-dd72a6a0a98c","last_modified":1602770278643},{"schema":1602723479783,"derHash":"eGeq6QXrjVVjX/67v4zwWmO5s5BmXeI2esEHPpKRNyg=","subject":"CN=Thawte CN RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHDAaBgNVBAMTE1RoYXd0ZSBDTiBSU0EgQ0EgRzE=","whitelist":false,"attachment":{"hash":"6abb2fa6476c1d938c58f7d3648720a6cb3239b7fc026f82046b76d081192231","size":1825,"filename":"VMXglf2ljsL4aRTMSwEqaTOKsyr2QltUubbk10mUCT0=.pem","location":"security-state-staging/intermediates/1ff4f374-cd06-4afa-af4e-4f8b3a444843.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VMXglf2l
jsL4aRTMSwEqaTOKsyr2QltUubbk10mUCT0=","crlite_enrolled":true,"id":"f1601a66-8fd4-4b53-9279-cb7e19b76aa6","last_modified":1602727076193},{"schema":1602647311437,"derHash":"DSzH5pc/gPoiU/uIgo72rLs7lf+nfEiWUMNWc19UtwY=","subject":"CN=AlpiroSSL ECC OV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIE9WIENB","whitelist":false,"attachment":{"hash":"ff2354ed7f035b8d871925675759f6b13bbda368e971c08e2f1a39847b74a408","size":1264,"filename":"X_kxO0BscKQlU9_xYyElfuh-DkcVP6lXeRrOBQPEQoo=.pem","location":"security-state-staging/intermediates/beb6572f-d50f-49e3-b522-e0fe9eeab7fb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"X/kxO0BscKQlU9/xYyElfuh+DkcVP6lXeRrOBQPEQoo=","crlite_enrolled":false,"id":"dca5191c-f858-49ca-a6b2-00f2b0f05703","last_modified":1602647874803},{"schema":1602647312961,"derHash":"2+LWPb33b3G6YxNU4W7JfBbgFnkqo7nMnSjFgsrUick=","subject":"CN=AlpiroSSL ECC DV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"
MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIERWIENB","whitelist":false,"attachment":{"hash":"eb3d288ac2dd6b3d0b135d27bd25dbf9f91a95b47239a5aa2addc4b4da9205d3","size":1264,"filename":"wDnmANcSbDEP0jOnIAaMy-5juQ0SP1bWXgumTDhj_UI=.pem","location":"security-state-staging/intermediates/474af47c-ab34-47f0-9db5-7040d594066b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wDnmANcSbDEP0jOnIAaMy+5juQ0SP1bWXgumTDhj/UI=","crlite_enrolled":false,"id":"4e869e4f-53c6-4bd3-9258-7598c81fab2e","last_modified":1602647874790},{"schema":1602647309895,"derHash":"+C+LUJZ8ClLp2Bt5qQ/+uOUVt4FKXl3i8msPavb+dTE=","subject":"CN=AlpiroSSL ECC EV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIEVWIENB","whitelist":false,"attachment":{"hash":"bf09308f3a01e9ddf3ae677edf6cd8e3a11e9e3c0c419fe2bfaa997e33c16acf","size":1293,"filename":"GnXFLd5ceheMJdGnZvJlKLtfXp4UjCGVFGe713NdmTc=.pem","location":"
security-state-staging/intermediates/47f00ab7-e48a-442b-9784-5c0b868f566e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GnXFLd5ceheMJdGnZvJlKLtfXp4UjCGVFGe713NdmTc=","crlite_enrolled":false,"id":"4890ab90-0f29-46a1-b3dc-d52fa68f9372","last_modified":1602647874776},{"schema":1602647305364,"derHash":"Fk4Ac6dSAKWBaZG9wXxSbrohJx9xNXRGmE7SyApZ/Vo=","subject":"CN=AlpiroSSL RSA OV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIE9WIENB","whitelist":false,"attachment":{"hash":"a4cf15fc523e6c61fa6a76d1cf2ce8bfe29411a0740a29bbae8a16ae71603611","size":2414,"filename":"1hrgtfhRJ0sL7i_z-MTaLFvHn7lkcHEPtbsneJ6QMSY=.pem","location":"security-state-staging/intermediates/eb498f2b-bc85-4f23-89cb-665499148b38.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1hrgtfhRJ0sL7i/z+MTaLFvHn7lkcHEPtbsneJ6QMSY=","crlite_enrolled":false,"id":"41ca7b3f-d056-431f-9812-e3654e7b1240","last_modified":1602647874765},{"schema":1
602647308368,"derHash":"b/IVlwTU6IaFmhQP/k4zRx5RQhdDCwPEz2yFxjf37LM=","subject":"CN=AlpiroSSL RSA DV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIERWIENB","whitelist":false,"attachment":{"hash":"4d11311616c66072dc5bacbb6b155d283f17a79abd5b2fbb3a65e1b3c239ed39","size":2414,"filename":"DMHCW-wSFt63_5zZBrK0lQDZcM_mOSQpQa6ibF64R6U=.pem","location":"security-state-staging/intermediates/a69eec9d-0275-4eaa-9b0a-e523fbdd3a8b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DMHCW+wSFt63/5zZBrK0lQDZcM/mOSQpQa6ibF64R6U=","crlite_enrolled":false,"id":"eea631ce-192d-4b2d-8672-08e5b2626a2c","last_modified":1602647874753},{"schema":1602647306905,"derHash":"PtE/nRnlb1uhSSOFyoE/fdY7vrPPXFbbXDCc9OqpAXE=","subject":"CN=AlpiroSSL RSA EV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIEVWIENB","whitelist":false,"attachment":{"hash":"d8ed27e0fbef4
4ebfedcbc8e1705873016d400cc7d7c6a9eb9389e479fdabf18","size":2442,"filename":"LDLs3_RixO6BHgKBiz13AqqAeJBFICakKMCnDQ1sQ04=.pem","location":"security-state-staging/intermediates/a65de85c-368b-4cff-a210-dba348e6ce3e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LDLs3/RixO6BHgKBiz13AqqAeJBFICakKMCnDQ1sQ04=","crlite_enrolled":false,"id":"1cefe49f-ef56-4996-bcdb-2fb9d9f3e0f1","last_modified":1602647874741},{"schema":1602647302024,"derHash":"Vi1qW0sGdGX/0Pv8m7BXVc2s9Vte5cb5ELi1PbEo9Xo=","subject":"CN=Sectigo Qualified Website Authentication CA E35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MGUxCzAJBgNVBAYTAkVTMRwwGgYDVQQKExNTZWN0aWdvIChFdXJvcGUpIFNMMTgwNgYDVQQDEy9TZWN0aWdvIFF1YWxpZmllZCBXZWJzaXRlIEF1dGhlbnRpY2F0aW9uIENBIEUzNQ==","whitelist":false,"attachment":{"hash":"55ec2d5ec4b78d089d9860db6394ae011c61807312053911f31093c1f37a7471","size":1248,"filename":"LTu6tENFs1xZQP1NiYhwg6AMeqalq2jUuwpowf0rQuY=.pem","location":"security-state-staging/intermediates/0e071112-b7ec-44a8-bf67-d372
3d6c9c8c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LTu6tENFs1xZQP1NiYhwg6AMeqalq2jUuwpowf0rQuY=","crlite_enrolled":false,"id":"d709f323-b76c-451f-bf49-dabb2b709355","last_modified":1602647874718},{"schema":1602643717900,"derHash":"DSzH5pc/gPoiU/uIgo72rLs7lf+nfEiWUMNWc19UtwY=","subject":"CN=AlpiroSSL ECC OV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIE9WIENB","whitelist":false,"attachment":{"hash":"ff2354ed7f035b8d871925675759f6b13bbda368e971c08e2f1a39847b74a408","size":1264,"filename":"X_kxO0BscKQlU9_xYyElfuh-DkcVP6lXeRrOBQPEQoo=.pem","location":"security-state-staging/intermediates/4588f17a-19a9-4b87-8bc7-cc7a8f3cd02a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"X/kxO0BscKQlU9/xYyElfuh+DkcVP6lXeRrOBQPEQoo=","crlite_enrolled":false,"id":"99222dda-57f4-496b-a40e-da86b57d52f1","last_modified":1602644269945},{"schema":1602643716484,"derHash":"b/IVlwTU6IaFmhQP/k4zRx5RQhdDCwPEz2yFxjf37
LM=","subject":"CN=AlpiroSSL RSA DV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIERWIENB","whitelist":false,"attachment":{"hash":"4d11311616c66072dc5bacbb6b155d283f17a79abd5b2fbb3a65e1b3c239ed39","size":2414,"filename":"DMHCW-wSFt63_5zZBrK0lQDZcM_mOSQpQa6ibF64R6U=.pem","location":"security-state-staging/intermediates/b756e2ce-c3a3-4925-8863-6eb0770f170b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DMHCW+wSFt63/5zZBrK0lQDZcM/mOSQpQa6ibF64R6U=","crlite_enrolled":false,"id":"3c36b8ef-d2ca-44ed-9c79-583632600361","last_modified":1602644269933},{"schema":1602643713481,"derHash":"2+LWPb33b3G6YxNU4W7JfBbgFnkqo7nMnSjFgsrUick=","subject":"CN=AlpiroSSL ECC DV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIERWIENB","whitelist":false,"attachment":{"hash":"eb3d288ac2dd6b3d0b135d27bd25dbf9f91a95b47239a5aa2addc4b4da9205d3","size":1264,
"filename":"wDnmANcSbDEP0jOnIAaMy-5juQ0SP1bWXgumTDhj_UI=.pem","location":"security-state-staging/intermediates/c634aa09-48b7-4b62-a0cd-2ed068b25b24.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wDnmANcSbDEP0jOnIAaMy+5juQ0SP1bWXgumTDhj/UI=","crlite_enrolled":false,"id":"a25361d2-dff5-46fc-a564-b5747ef9506b","last_modified":1602644269922},{"schema":1602643710444,"derHash":"+C+LUJZ8ClLp2Bt5qQ/+uOUVt4FKXl3i8msPavb+dTE=","subject":"CN=AlpiroSSL ECC EV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIEVWIENB","whitelist":false,"attachment":{"hash":"bf09308f3a01e9ddf3ae677edf6cd8e3a11e9e3c0c419fe2bfaa997e33c16acf","size":1293,"filename":"GnXFLd5ceheMJdGnZvJlKLtfXp4UjCGVFGe713NdmTc=.pem","location":"security-state-staging/intermediates/1c3c49e3-967d-4a9b-95ae-11369f856524.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GnXFLd5ceheMJdGnZvJlKLtfXp4UjCGVFGe713NdmTc=","crlite_enrolled":false,"id":"e210e9
bd-6cc8-4831-b27f-5a9929687c99","last_modified":1602644269898},{"schema":1602643706774,"derHash":"Vi1qW0sGdGX/0Pv8m7BXVc2s9Vte5cb5ELi1PbEo9Xo=","subject":"CN=Sectigo Qualified Website Authentication CA E35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MGUxCzAJBgNVBAYTAkVTMRwwGgYDVQQKExNTZWN0aWdvIChFdXJvcGUpIFNMMTgwNgYDVQQDEy9TZWN0aWdvIFF1YWxpZmllZCBXZWJzaXRlIEF1dGhlbnRpY2F0aW9uIENBIEUzNQ==","whitelist":false,"attachment":{"hash":"55ec2d5ec4b78d089d9860db6394ae011c61807312053911f31093c1f37a7471","size":1248,"filename":"LTu6tENFs1xZQP1NiYhwg6AMeqalq2jUuwpowf0rQuY=.pem","location":"security-state-staging/intermediates/c43aba38-0250-470d-bc16-4fa8ee7973cb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LTu6tENFs1xZQP1NiYhwg6AMeqalq2jUuwpowf0rQuY=","crlite_enrolled":false,"id":"e3964c59-8391-4432-9624-9b3f841b6121","last_modified":1602644269887},{"schema":1602643708962,"derHash":"PtE/nRnlb1uhSSOFyoE/fdY7vrPPXFbbXDCc9OqpAXE=","subject":"CN=AlpiroSSL RSA EV CA,O=Alpiro s.r.o.,C=CZ","sub
jectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIEVWIENB","whitelist":false,"attachment":{"hash":"d8ed27e0fbef44ebfedcbc8e1705873016d400cc7d7c6a9eb9389e479fdabf18","size":2442,"filename":"LDLs3_RixO6BHgKBiz13AqqAeJBFICakKMCnDQ1sQ04=.pem","location":"security-state-staging/intermediates/bd9bdd90-d095-4742-a046-a09c00d73663.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LDLs3/RixO6BHgKBiz13AqqAeJBFICakKMCnDQ1sQ04=","crlite_enrolled":false,"id":"d7b0cd98-f3ca-42ba-a858-0a8ddd93a881","last_modified":1602644269875},{"schema":1602643711912,"derHash":"Fk4Ac6dSAKWBaZG9wXxSbrohJx9xNXRGmE7SyApZ/Vo=","subject":"CN=AlpiroSSL RSA OV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIE9WIENB","whitelist":false,"attachment":{"hash":"a4cf15fc523e6c61fa6a76d1cf2ce8bfe29411a0740a29bbae8a16ae71603611","size":2414,"filename":"1hrgtfhRJ0sL7i_z-MTaLFvHn7lkcHEPtbsneJ6QMSY=.pem","lo
cation":"security-state-staging/intermediates/4ad66af4-3592-47b1-8904-24809ee4969b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1hrgtfhRJ0sL7i/z+MTaLFvHn7lkcHEPtbsneJ6QMSY=","crlite_enrolled":false,"id":"6ecd7afb-009a-4d64-84bd-55a9b230d932","last_modified":1602644269863},{"schema":1602640122258,"derHash":"PtE/nRnlb1uhSSOFyoE/fdY7vrPPXFbbXDCc9OqpAXE=","subject":"CN=AlpiroSSL RSA EV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIEVWIENB","whitelist":false,"attachment":{"hash":"d8ed27e0fbef44ebfedcbc8e1705873016d400cc7d7c6a9eb9389e479fdabf18","size":2442,"filename":"LDLs3_RixO6BHgKBiz13AqqAeJBFICakKMCnDQ1sQ04=.pem","location":"security-state-staging/intermediates/1b89cfad-19e3-489b-b8c4-504e5e5e9475.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LDLs3/RixO6BHgKBiz13AqqAeJBFICakKMCnDQ1sQ04=","crlite_enrolled":false,"id":"85dfcf61-54d1-481d-a21a-e7345029aab6","last_modified":1602640676802},{"
schema":1602640115594,"derHash":"+C+LUJZ8ClLp2Bt5qQ/+uOUVt4FKXl3i8msPavb+dTE=","subject":"CN=AlpiroSSL ECC EV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIEVWIENB","whitelist":false,"attachment":{"hash":"bf09308f3a01e9ddf3ae677edf6cd8e3a11e9e3c0c419fe2bfaa997e33c16acf","size":1293,"filename":"GnXFLd5ceheMJdGnZvJlKLtfXp4UjCGVFGe713NdmTc=.pem","location":"security-state-staging/intermediates/7609c1c4-b19b-4565-9720-dd5e6d124c41.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GnXFLd5ceheMJdGnZvJlKLtfXp4UjCGVFGe713NdmTc=","crlite_enrolled":false,"id":"6b3d1184-9e4d-4516-bfb4-06d823d81fc5","last_modified":1602640676790},{"schema":1602640108808,"derHash":"Vi1qW0sGdGX/0Pv8m7BXVc2s9Vte5cb5ELi1PbEo9Xo=","subject":"CN=Sectigo Qualified Website Authentication CA E35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MGUxCzAJBgNVBAYTAkVTMRwwGgYDVQQKExNTZWN0aWdvIChFdXJvcGUpIFNMMTgwNgYDVQQDEy9TZWN0aWdvIFF1YWxpZmllZCBXZWJz
aXRlIEF1dGhlbnRpY2F0aW9uIENBIEUzNQ==","whitelist":false,"attachment":{"hash":"55ec2d5ec4b78d089d9860db6394ae011c61807312053911f31093c1f37a7471","size":1248,"filename":"LTu6tENFs1xZQP1NiYhwg6AMeqalq2jUuwpowf0rQuY=.pem","location":"security-state-staging/intermediates/c06db3d6-f723-43e2-99fe-fb7ab58beff9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LTu6tENFs1xZQP1NiYhwg6AMeqalq2jUuwpowf0rQuY=","crlite_enrolled":false,"id":"3d87fa81-1922-410b-ad87-b072f825cf4c","last_modified":1602640676779},{"schema":1602640117836,"derHash":"DSzH5pc/gPoiU/uIgo72rLs7lf+nfEiWUMNWc19UtwY=","subject":"CN=AlpiroSSL ECC OV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIE9WIENB","whitelist":false,"attachment":{"hash":"ff2354ed7f035b8d871925675759f6b13bbda368e971c08e2f1a39847b74a408","size":1264,"filename":"X_kxO0BscKQlU9_xYyElfuh-DkcVP6lXeRrOBQPEQoo=.pem","location":"security-state-staging/intermediates/547e6227-750a-41af-
8a1d-b3fdfc7ea5ee.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"X/kxO0BscKQlU9/xYyElfuh+DkcVP6lXeRrOBQPEQoo=","crlite_enrolled":false,"id":"c6fc4ae3-a815-4a2e-988d-d8af1c74d123","last_modified":1602640676767},{"schema":1602640107298,"derHash":"b/IVlwTU6IaFmhQP/k4zRx5RQhdDCwPEz2yFxjf37LM=","subject":"CN=AlpiroSSL RSA DV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIERWIENB","whitelist":false,"attachment":{"hash":"4d11311616c66072dc5bacbb6b155d283f17a79abd5b2fbb3a65e1b3c239ed39","size":2414,"filename":"DMHCW-wSFt63_5zZBrK0lQDZcM_mOSQpQa6ibF64R6U=.pem","location":"security-state-staging/intermediates/ee608fb0-eb77-46a5-87e7-b85b3d4f5999.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DMHCW+wSFt63/5zZBrK0lQDZcM/mOSQpQa6ibF64R6U=","crlite_enrolled":false,"id":"776212f2-5d11-4ced-aae1-d3525eafad9c","last_modified":1602640676744},{"schema":1602640119969,"derHash":"2+LWPb33b3G6YxNU4W7JfBbgFnkqo7nM
nSjFgsrUick=","subject":"CN=AlpiroSSL ECC DV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIERWIENB","whitelist":false,"attachment":{"hash":"eb3d288ac2dd6b3d0b135d27bd25dbf9f91a95b47239a5aa2addc4b4da9205d3","size":1264,"filename":"wDnmANcSbDEP0jOnIAaMy-5juQ0SP1bWXgumTDhj_UI=.pem","location":"security-state-staging/intermediates/b1f46dae-b0b6-4395-8eb4-5e0562bccef1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wDnmANcSbDEP0jOnIAaMy+5juQ0SP1bWXgumTDhj/UI=","crlite_enrolled":false,"id":"8fc742ec-b377-4e41-a314-6542db51830c","last_modified":1602640676732},{"schema":1602640110933,"derHash":"Fk4Ac6dSAKWBaZG9wXxSbrohJx9xNXRGmE7SyApZ/Vo=","subject":"CN=AlpiroSSL RSA OV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIE9WIENB","whitelist":false,"attachment":{"hash":"a4cf15fc523e6c61fa6a76d1cf2ce8bfe29411a0740a29bbae8a16ae71603611","si
ze":2414,"filename":"1hrgtfhRJ0sL7i_z-MTaLFvHn7lkcHEPtbsneJ6QMSY=.pem","location":"security-state-staging/intermediates/f38b174b-fe67-499c-87e4-4179475f4305.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1hrgtfhRJ0sL7i/z+MTaLFvHn7lkcHEPtbsneJ6QMSY=","crlite_enrolled":false,"id":"bb05ed4d-3921-4bb5-b9fd-ad946be0f10d","last_modified":1602640676717},{"schema":1602298099827,"derHash":"R1nW9O1t8OCPxMqAGYbivhBZTbrzQbTEWrr6N0iIfSU=","subject":"CN=DigiCert Secure Auth CA2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGERpZ2lDZXJ0IFNlY3VyZSBBdXRoIENBMg==","whitelist":false,"attachment":{"hash":"a77265b7e079064772045ae5bc70c2578caebafaa3dd91205900e00a17140e4f","size":1772,"filename":"ZZR--hRloC8riD7MvWAr-1lIuMoIu6Nr3T5xJPP6HWw=.pem","location":"security-state-staging/intermediates/96070886-41b8-49d7-bdc8-288a168b4d42.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZZR++hRloC8riD7MvWAr+1lIuMoIu6Nr3T5xJPP6HWw=","crlite_enrolle
d":false,"id":"55b23a55-20b5-4564-9301-19e1f6663e64","last_modified":1602298664805},{"schema":1602298101397,"derHash":"Qi+dTmgTTjYrdWnlKYoXPOxAx8cnSyJjqbyK2h0aI/o=","subject":"CN=Data Management Intermediate CA2,O=Fresenius Kabi AG,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRowGAYDVQQKExFGcmVzZW5pdXMgS2FiaSBBRzEpMCcGA1UEAxMgRGF0YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDQTI=","whitelist":false,"attachment":{"hash":"94d5d2945162c4cb87b19a4b549f1b1711ada8c52af0d077de00da8def159dc0","size":1788,"filename":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=.pem","location":"security-state-staging/intermediates/76c4ae03-cb6d-458e-86c7-67b6e175a4bd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=","crlite_enrolled":false,"id":"647a58c6-8821-45ab-be6a-5060bc947663","last_modified":1602298664792},{"schema":1602295137997,"derHash":"R1nW9O1t8OCPxMqAGYbivhBZTbrzQbTEWrr6N0iIfSU=","subject":"CN=DigiCert Secure Auth CA2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzA
JBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGERpZ2lDZXJ0IFNlY3VyZSBBdXRoIENBMg==","whitelist":false,"attachment":{"hash":"a77265b7e079064772045ae5bc70c2578caebafaa3dd91205900e00a17140e4f","size":1772,"filename":"ZZR--hRloC8riD7MvWAr-1lIuMoIu6Nr3T5xJPP6HWw=.pem","location":"security-state-staging/intermediates/c6fc6d45-b2fd-49ff-8537-ead6a452efe1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZZR++hRloC8riD7MvWAr+1lIuMoIu6Nr3T5xJPP6HWw=","crlite_enrolled":false,"id":"ca5a7b22-9e28-43dd-988a-2dce9d4cbc55","last_modified":1602298664780},{"schema":1602294982304,"derHash":"R1nW9O1t8OCPxMqAGYbivhBZTbrzQbTEWrr6N0iIfSU=","subject":"CN=DigiCert Secure Auth CA2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGERpZ2lDZXJ0IFNlY3VyZSBBdXRoIENBMg==","whitelist":false,"attachment":{"hash":"a77265b7e079064772045ae5bc70c2578caebafaa3dd91205900e00a17140e4f","size":1772,"filename":"ZZR--hRloC8riD7MvWAr-1lIuMoIu6Nr3T5xJPP6HWw=.pem"
,"location":"security-state-staging/intermediates/530644a0-1e30-447d-ae93-a1bc0d62a856.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZZR++hRloC8riD7MvWAr+1lIuMoIu6Nr3T5xJPP6HWw=","crlite_enrolled":false,"id":"69151f48-9355-402a-a4f7-edc3bd8c245c","last_modified":1602298664768},{"schema":1602294980728,"derHash":"Qi+dTmgTTjYrdWnlKYoXPOxAx8cnSyJjqbyK2h0aI/o=","subject":"CN=Data Management Intermediate CA2,O=Fresenius Kabi AG,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRowGAYDVQQKExFGcmVzZW5pdXMgS2FiaSBBRzEpMCcGA1UEAxMgRGF0YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDQTI=","whitelist":false,"attachment":{"hash":"94d5d2945162c4cb87b19a4b549f1b1711ada8c52af0d077de00da8def159dc0","size":1788,"filename":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=.pem","location":"security-state-staging/intermediates/64d78a05-459d-490a-a9b7-710ea2e69e9e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=","crlite_enrolled":false,"id":"c1ef662d-911d-4ee8-93a5-68
97f5af1d2e","last_modified":1602298664756},{"schema":1602294812900,"derHash":"R1nW9O1t8OCPxMqAGYbivhBZTbrzQbTEWrr6N0iIfSU=","subject":"CN=DigiCert Secure Auth CA2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGERpZ2lDZXJ0IFNlY3VyZSBBdXRoIENBMg==","whitelist":false,"attachment":{"hash":"a77265b7e079064772045ae5bc70c2578caebafaa3dd91205900e00a17140e4f","size":1772,"filename":"ZZR--hRloC8riD7MvWAr-1lIuMoIu6Nr3T5xJPP6HWw=.pem","location":"security-state-staging/intermediates/ca0daa91-d2da-46e1-8fad-ce93b4478be2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZZR++hRloC8riD7MvWAr+1lIuMoIu6Nr3T5xJPP6HWw=","crlite_enrolled":false,"id":"6fa539e1-18ab-40f6-bd9c-235218cccb25","last_modified":1602298664744},{"schema":1602294704633,"derHash":"Qi+dTmgTTjYrdWnlKYoXPOxAx8cnSyJjqbyK2h0aI/o=","subject":"CN=Data Management Intermediate CA2,O=Fresenius Kabi AG,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRowGAYDVQQKExFGcmVzZW5pdXMgS2FiaSBBRzEpMCcG
A1UEAxMgRGF0YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDQTI=","whitelist":false,"attachment":{"hash":"94d5d2945162c4cb87b19a4b549f1b1711ada8c52af0d077de00da8def159dc0","size":1788,"filename":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=.pem","location":"security-state-staging/intermediates/636064f0-6cbf-481c-ae6c-8786ed5ac5c7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=","crlite_enrolled":false,"id":"8b4d5d9b-6f1f-4081-a0ec-313b4caf68b9","last_modified":1602298664733},{"schema":1602294814450,"derHash":"Qi+dTmgTTjYrdWnlKYoXPOxAx8cnSyJjqbyK2h0aI/o=","subject":"CN=Data Management Intermediate CA2,O=Fresenius Kabi AG,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRowGAYDVQQKExFGcmVzZW5pdXMgS2FiaSBBRzEpMCcGA1UEAxMgRGF0YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDQTI=","whitelist":false,"attachment":{"hash":"94d5d2945162c4cb87b19a4b549f1b1711ada8c52af0d077de00da8def159dc0","size":1788,"filename":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=.pem","location":
"security-state-staging/intermediates/57373448-8114-4a2b-8088-f440a5659ce2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=","crlite_enrolled":false,"id":"90aadf13-6f41-4808-adf7-5d7b5a196ece","last_modified":1602298664721},{"schema":1602294606254,"derHash":"Qi+dTmgTTjYrdWnlKYoXPOxAx8cnSyJjqbyK2h0aI/o=","subject":"CN=Data Management Intermediate CA2,O=Fresenius Kabi AG,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRowGAYDVQQKExFGcmVzZW5pdXMgS2FiaSBBRzEpMCcGA1UEAxMgRGF0YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDQTI=","whitelist":false,"attachment":{"hash":"94d5d2945162c4cb87b19a4b549f1b1711ada8c52af0d077de00da8def159dc0","size":1788,"filename":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=.pem","location":"security-state-staging/intermediates/7ed8a5e9-d627-46e2-b8bd-3d94ebf324fd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=","crlite_enrolled":false,"id":"dd950c26-9f72-4fcd-bde1-2853dba9a33d",
"last_modified":1602298664709},{"schema":1602294702179,"derHash":"R1nW9O1t8OCPxMqAGYbivhBZTbrzQbTEWrr6N0iIfSU=","subject":"CN=DigiCert Secure Auth CA2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGERpZ2lDZXJ0IFNlY3VyZSBBdXRoIENBMg==","whitelist":false,"attachment":{"hash":"a77265b7e079064772045ae5bc70c2578caebafaa3dd91205900e00a17140e4f","size":1772,"filename":"ZZR--hRloC8riD7MvWAr-1lIuMoIu6Nr3T5xJPP6HWw=.pem","location":"security-state-staging/intermediates/3bff1db2-cec5-4117-9ae4-6f4c16dc8215.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZZR++hRloC8riD7MvWAr+1lIuMoIu6Nr3T5xJPP6HWw=","crlite_enrolled":false,"id":"072e74df-3503-4c99-9403-75fb542972c6","last_modified":1602298664698},{"schema":1602295140467,"derHash":"Qi+dTmgTTjYrdWnlKYoXPOxAx8cnSyJjqbyK2h0aI/o=","subject":"CN=Data Management Intermediate CA2,O=Fresenius Kabi AG,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRowGAYDVQQKExFGcmVzZW5pdXMgS2FiaSBBRzEpMCcGA1UEAxMgRGF0
YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDQTI=","whitelist":false,"attachment":{"hash":"94d5d2945162c4cb87b19a4b549f1b1711ada8c52af0d077de00da8def159dc0","size":1788,"filename":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=.pem","location":"security-state-staging/intermediates/3a6cebdc-e2d4-4f19-ba75-a61e1559cf91.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=","crlite_enrolled":false,"id":"bf02c337-050a-43b5-a4eb-598b01c58812","last_modified":1602298664686},{"schema":1602294608115,"derHash":"R1nW9O1t8OCPxMqAGYbivhBZTbrzQbTEWrr6N0iIfSU=","subject":"CN=DigiCert Secure Auth CA2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGERpZ2lDZXJ0IFNlY3VyZSBBdXRoIENBMg==","whitelist":false,"attachment":{"hash":"a77265b7e079064772045ae5bc70c2578caebafaa3dd91205900e00a17140e4f","size":1772,"filename":"ZZR--hRloC8riD7MvWAr-1lIuMoIu6Nr3T5xJPP6HWw=.pem","location":"security-state-staging/intermediates/800
80d6b-3dc2-4a81-b302-4b52e36b835b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZZR++hRloC8riD7MvWAr+1lIuMoIu6Nr3T5xJPP6HWw=","crlite_enrolled":false,"id":"ec700973-5e01-43ff-9d72-19f79ffb9c70","last_modified":1602298664674},{"schema":1602294515612,"derHash":"Qi+dTmgTTjYrdWnlKYoXPOxAx8cnSyJjqbyK2h0aI/o=","subject":"CN=Data Management Intermediate CA2,O=Fresenius Kabi AG,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRowGAYDVQQKExFGcmVzZW5pdXMgS2FiaSBBRzEpMCcGA1UEAxMgRGF0YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDQTI=","whitelist":false,"attachment":{"hash":"94d5d2945162c4cb87b19a4b549f1b1711ada8c52af0d077de00da8def159dc0","size":1788,"filename":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=.pem","location":"security-state-staging/intermediates/c55dfd59-234e-4ff8-9459-d7d2b199d649.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=","crlite_enrolled":false,"id":"3c043e6a-b731-4ecc-a152-a94704a97068","last_modified":1602298664663},{"schema":
1602294517394,"derHash":"R1nW9O1t8OCPxMqAGYbivhBZTbrzQbTEWrr6N0iIfSU=","subject":"CN=DigiCert Secure Auth CA2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGERpZ2lDZXJ0IFNlY3VyZSBBdXRoIENBMg==","whitelist":false,"attachment":{"hash":"a77265b7e079064772045ae5bc70c2578caebafaa3dd91205900e00a17140e4f","size":1772,"filename":"ZZR--hRloC8riD7MvWAr-1lIuMoIu6Nr3T5xJPP6HWw=.pem","location":"security-state-staging/intermediates/114b1d47-f6d2-4167-87f3-2820ec5baa1d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZZR++hRloC8riD7MvWAr+1lIuMoIu6Nr3T5xJPP6HWw=","crlite_enrolled":false,"id":"37cd4ec9-5aa2-48af-b66b-9f4f4cda0b08","last_modified":1602298664651},{"schema":1602298103338,"derHash":"oUSKAV4TmcWokYEvDojG2EeyIdIfkyamYmukOg62Etk=","subject":"CN=Aetna Inc. Secure EV CA,O=Aetna Inc,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZXRuYSBJbmMxIDAeBgNVBAMTF0FldG5hIEluYy4gU2VjdXJlIEVWIENB","whitelist":false,"attachment":{"hash":"
efe10561bf3266c3b533e4642fc8dc3f95e0af6b13697751ab9e922af3013c4c","size":1804,"filename":"0rv4XQwSpZni_0C8FcOJhSJNEzvghB5GUVNKhM-UmQE=.pem","location":"security-state-staging/intermediates/cfaadb5b-e902-470e-923b-22b8d677a073.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0rv4XQwSpZni/0C8FcOJhSJNEzvghB5GUVNKhM+UmQE=","crlite_enrolled":true,"id":"f6f1bda2-caaa-42ec-9ed1-a53b8a23db58","last_modified":1602298664631},{"schema":1602298102910,"derHash":"oUSKAV4TmcWokYEvDojG2EeyIdIfkyamYmukOg62Etk=","subject":"CN=Aetna Inc. Secure EV CA,O=Aetna Inc,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZXRuYSBJbmMxIDAeBgNVBAMTF0FldG5hIEluYy4gU2VjdXJlIEVWIENB","whitelist":false,"attachment":{"hash":"efe10561bf3266c3b533e4642fc8dc3f95e0af6b13697751ab9e922af3013c4c","size":1804,"filename":"0rv4XQwSpZni_0C8FcOJhSJNEzvghB5GUVNKhM-UmQE=.pem","location":"security-state-staging/intermediates/5bb48710-2b16-46cb-89d2-50b66eb64107.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0rv4X
QwSpZni/0C8FcOJhSJNEzvghB5GUVNKhM+UmQE=","crlite_enrolled":true,"id":"50e4ca03-eb57-4ac4-8ed5-17d92d977986","last_modified":1602298664611},{"schema":1602298102487,"derHash":"ChY2AGMb1mJn+3rq0lxTiyt9cq1kFqK70oX2VLtkL20=","subject":"CN=Aetna Inc. Secure EV CA,O=Aetna Inc,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZXRuYSBJbmMxIDAeBgNVBAMTF0FldG5hIEluYy4gU2VjdXJlIEVWIENB","whitelist":false,"attachment":{"hash":"0be7b4b36e584af7c9c5b112ea58bd9a35c130ac60498f529685f3677950def8","size":1687,"filename":"0rv4XQwSpZni_0C8FcOJhSJNEzvghB5GUVNKhM-UmQE=.pem","location":"security-state-staging/intermediates/944a758d-2190-478d-9aaf-b72d3189ad0c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0rv4XQwSpZni/0C8FcOJhSJNEzvghB5GUVNKhM+UmQE=","crlite_enrolled":true,"id":"2ebb6e61-790b-44fe-a28c-c32b851f947b","last_modified":1602298664591},{"schema":1602269869014,"derHash":"J3z0tl9TD8wHKF74nYMRiEiEAE5PLH2+fKAG6WU2zWI=","subject":"CN=Shoper\u00ae SSL,OU=Dreamcommerce S.A.,O=Dreamcommerc
e S.A.,C=PL","subjectDN":"MF4xCzAJBgNVBAYTAlBMMRswGQYDVQQKDBJEcmVhbWNvbW1lcmNlIFMuQS4xGzAZBgNVBAsMEkRyZWFtY29tbWVyY2UgUy5BLjEVMBMGA1UEAwwMU2hvcGVywq4gU1NM","whitelist":false,"attachment":{"hash":"e4b74658c87e531a9abfebbd57bf225a85f5e2a737dd73be3794a19bc905b06b","size":1613,"filename":"u2qzRrAdmNr-Meysupi9x7UNMaLYZzuT4OTThn_6xF4=.pem","location":"security-state-staging/intermediates/dee40a5f-efa0-4a09-8a63-181ab2062fb5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"u2qzRrAdmNr+Meysupi9x7UNMaLYZzuT4OTThn/6xF4=","crlite_enrolled":false,"id":"5ffb5aee-a080-4a31-aec0-6301099b7425","last_modified":1602273466706},{"schema":1602248260747,"derHash":"7qFSzPdRfhZRMga3HBfiBPpAB8JsNgUexn30yUdGPPg=","subject":"CN=cPanel High Assurance ECC Certification Authority,O=cPanel\\, Inc.,L=Houston,ST=TX,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJUWDEQMA4GA1UEBxMHSG91c3RvbjEVMBMGA1UEChMMY1BhbmVsLCBJbmMuMTowOAYDVQQDEzFjUGFuZWwgSGlnaCBBc3N1cmFuY2UgRUNDIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","wh
itelist":false,"attachment":{"hash":"82ee0338bc29f687ea9594b3ee05b3cacfd4b1890b1c95e3452bcfccd99f8c87","size":1297,"filename":"L4q9ILB-EyvjFKWbhrCSV_fq9CRcnS_EmX6BUSqw8Zo=.pem","location":"security-state-staging/intermediates/73d51902-463f-4e96-b2af-d79fd4da20cc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"L4q9ILB+EyvjFKWbhrCSV/fq9CRcnS/EmX6BUSqw8Zo=","crlite_enrolled":true,"id":"0d1ede70-4b26-4a54-919b-ffca9db0bb57","last_modified":1602251860240},{"schema":1602125315857,"derHash":"cwwb3NhfV85dwLunM+XxulqSWyp3HWQKJvekVCJNrTs=","subject":"CN=R3,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSMw==","whitelist":false,"attachment":{"hash":"8467f9a9c499b547e02391a7fe31c469557c379b07852c2ca04ce3ecec676dea","size":1585,"filename":"jQJTbIh0grw0_1TkHSumWb-Fs0Ggogr621gT3PvPKG0=.pem","location":"security-state-staging/intermediates/1f71d4c5-823d-4f6a-9fcf-107004848c43.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jQJTb
Ih0grw0/1TkHSumWb+Fs0Ggogr621gT3PvPKG0=","crlite_enrolled":false,"id":"5d9dd4cf-783a-46de-885d-a4702103320f","last_modified":1602125863571},{"schema":1602125317285,"derHash":"Wo8W/aRI14NIHMpXokKNF02tjGCUPOso9mGuMf05pfo=","subject":"CN=R4,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSNA==","whitelist":false,"attachment":{"hash":"9cd790ac13f6ba45dcb08a81db71c89d50e10474fcde7568d501e5893f538729","size":1585,"filename":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX-WPd5kPLQM=.pem","location":"security-state-staging/intermediates/a1dd6cdc-7cb6-4608-ad10-121c1417b86e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX+WPd5kPLQM=","crlite_enrolled":false,"id":"2b30c13e-2cab-4b8c-883d-43f99052d539","last_modified":1602125863559},{"schema":1602121858033,"derHash":"Wo8W/aRI14NIHMpXokKNF02tjGCUPOso9mGuMf05pfo=","subject":"CN=R4,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeX
B0MQswCQYDVQQDEwJSNA==","whitelist":false,"attachment":{"hash":"9cd790ac13f6ba45dcb08a81db71c89d50e10474fcde7568d501e5893f538729","size":1585,"filename":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX-WPd5kPLQM=.pem","location":"security-state-staging/intermediates/4f471d30-f2da-4143-bbec-db772922e9d9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX+WPd5kPLQM=","crlite_enrolled":false,"id":"835f8581-8590-4a2f-80bc-f607c2264bc5","last_modified":1602122269012},{"schema":1602121856579,"derHash":"cwwb3NhfV85dwLunM+XxulqSWyp3HWQKJvekVCJNrTs=","subject":"CN=R3,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSMw==","whitelist":false,"attachment":{"hash":"8467f9a9c499b547e02391a7fe31c469557c379b07852c2ca04ce3ecec676dea","size":1585,"filename":"jQJTbIh0grw0_1TkHSumWb-Fs0Ggogr621gT3PvPKG0=.pem","location":"security-state-staging/intermediates/5b388518-029b-4136-9c78-d43474613fd9.pem","mimetype":"application/x-pe
m-file"},"pubKeyHash":"jQJTbIh0grw0/1TkHSumWb+Fs0Ggogr621gT3PvPKG0=","crlite_enrolled":false,"id":"6d11fad9-c414-48d6-b593-5cafd1758bc5","last_modified":1602122268992},{"schema":1602103701893,"derHash":"ks5+p0JLPnosFMJuDVcq29VW4F4rKovTdhxpUlQlWFY=","subject":"CN=AnsonNet TLS Issuing RSA CA R1,O=Anson Network Limited,L=London,ST=London,C=GB","subjectDN":"MHgxCzAJBgNVBAYTAkdCMQ8wDQYDVQQIDAZMb25kb24xDzANBgNVBAcMBkxvbmRvbjEeMBwGA1UECgwVQW5zb24gTmV0d29yayBMaW1pdGVkMScwJQYDVQQDDB5BbnNvbk5ldCBUTFMgSXNzdWluZyBSU0EgQ0EgUjE=","whitelist":false,"attachment":{"hash":"c2a431004a217db81281a2de2c05eb1e93eb5abc1d4a818825e74e917c6a7019","size":2556,"filename":"mPShRNkBUp1VgXuaiIbIdh-5lcY6nG4Evw-dwtjk06A=.pem","location":"security-state-staging/intermediates/cc65c814-7ae3-4f5b-b2db-27bad5f914d2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mPShRNkBUp1VgXuaiIbIdh+5lcY6nG4Evw+dwtjk06A=","crlite_enrolled":false,"id":"20dd4e9a-8d90-4e64-9389-8d8a9c66c10d","last_modified":1602104258093},{"schema
":1602103700443,"derHash":"N/0pxwHWl3mY8gUVPqikwumWNU3wctSYTcXYsfdaK2E=","subject":"CN=SwissNS TLS Issuing RSA CA R1,O=swissns GmbH,L=Luzern,ST=Luzern,C=CH","subjectDN":"MG4xCzAJBgNVBAYTAkNIMQ8wDQYDVQQIDAZMdXplcm4xDzANBgNVBAcMBkx1emVybjEVMBMGA1UECgwMc3dpc3NucyBHbWJIMSYwJAYDVQQDDB1Td2lzc05TIFRMUyBJc3N1aW5nIFJTQSBDQSBSMQ==","whitelist":false,"attachment":{"hash":"712a44aa441a1572aa92968b2b418a8c979bfb72b6b17653fed5888d76210828","size":2544,"filename":"KAda-LJFeGtGthCqCejer2EUArFZNe-fmlkLdhkdcJc=.pem","location":"security-state-staging/intermediates/2b761dc1-930d-4dc0-ba17-650c271bfb95.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KAda+LJFeGtGthCqCejer2EUArFZNe+fmlkLdhkdcJc=","crlite_enrolled":false,"id":"32fe68ce-7d4c-4d54-bab1-b2aab2d02223","last_modified":1602104258081},{"schema":1602100118791,"derHash":"ks5+p0JLPnosFMJuDVcq29VW4F4rKovTdhxpUlQlWFY=","subject":"CN=AnsonNet TLS Issuing RSA CA R1,O=Anson Network Limited,L=London,ST=London,C=GB","subjectDN":"MHgxCzAJBgNVBAYTAk
dCMQ8wDQYDVQQIDAZMb25kb24xDzANBgNVBAcMBkxvbmRvbjEeMBwGA1UECgwVQW5zb24gTmV0d29yayBMaW1pdGVkMScwJQYDVQQDDB5BbnNvbk5ldCBUTFMgSXNzdWluZyBSU0EgQ0EgUjE=","whitelist":false,"attachment":{"hash":"c2a431004a217db81281a2de2c05eb1e93eb5abc1d4a818825e74e917c6a7019","size":2556,"filename":"mPShRNkBUp1VgXuaiIbIdh-5lcY6nG4Evw-dwtjk06A=.pem","location":"security-state-staging/intermediates/34297edd-f3b2-4fef-999b-4d930d483b6b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mPShRNkBUp1VgXuaiIbIdh+5lcY6nG4Evw+dwtjk06A=","crlite_enrolled":false,"id":"be5f22dc-d3c0-4ba9-8bab-7df502dfa36c","last_modified":1602100657898},{"schema":1602100117378,"derHash":"N/0pxwHWl3mY8gUVPqikwumWNU3wctSYTcXYsfdaK2E=","subject":"CN=SwissNS TLS Issuing RSA CA R1,O=swissns GmbH,L=Luzern,ST=Luzern,C=CH","subjectDN":"MG4xCzAJBgNVBAYTAkNIMQ8wDQYDVQQIDAZMdXplcm4xDzANBgNVBAcMBkx1emVybjEVMBMGA1UECgwMc3dpc3NucyBHbWJIMSYwJAYDVQQDDB1Td2lzc05TIFRMUyBJc3N1aW5nIFJTQSBDQSBSMQ==","whitelist":false,"attachment":{"hash":"712a44aa44
1a1572aa92968b2b418a8c979bfb72b6b17653fed5888d76210828","size":2544,"filename":"KAda-LJFeGtGthCqCejer2EUArFZNe-fmlkLdhkdcJc=.pem","location":"security-state-staging/intermediates/c7fb95b1-4e6e-44da-b797-1b64a448dbfb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KAda+LJFeGtGthCqCejer2EUArFZNe+fmlkLdhkdcJc=","crlite_enrolled":false,"id":"1c713ec1-22b4-4bb9-a642-d8188603e3c9","last_modified":1602100657886},{"schema":1601686641575,"derHash":"ZTkjWloflBgMUjPq+KXWcQLeqhbAdRrvNbPmfOVgfyk=","subject":"CN=University of Macedonia TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHkxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTEwLwYDVQQDDChVbml2ZXJzaXR5IG9mIE1hY2Vkb25pYSBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"128df8a47dde21bf8cb684fe77d41c11d5bf09efa2af436a8f9cad4ff2a69844","size":2824,"filename":"Yr1zUmzXNRDeB9FlIE3oqt2RAilAhCi90mNw8jOw5j0=.pem","location":"security-state-sta
ging/intermediates/6bf79ff6-7e88-4c7c-b114-96d5328c44c9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Yr1zUmzXNRDeB9FlIE3oqt2RAilAhCi90mNw8jOw5j0=","crlite_enrolled":true,"id":"87925423-9a51-40ac-ad0b-43800ff2c93f","last_modified":1601690248797},{"schema":1601672077933,"derHash":"KIs1Rm+44ii5iDIBnhp5Vqw+nxVCgMyXSG7Mjiycq8E=","subject":"CN=IdenTrust Public Sector Server CA 1,OU=TrustID Server,O=IdenTrust,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxFzAVBgNVBAsTDlRydXN0SUQgU2VydmVyMSwwKgYDVQQDEyNJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBTZXJ2ZXIgQ0EgMQ==","whitelist":false,"attachment":{"hash":"76f53e60805d58cfdf8c7851caca2cc1b2e1d58ccecc5f8c3c4894a02b95a3fa","size":2393,"filename":"8tH7Dh4xfmk7Qci7zhMFmxVcpAzVMwFBeAsRhtLDaLg=.pem","location":"security-state-staging/intermediates/7b450fbd-7542-44c9-be47-022a4d7418ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8tH7Dh4xfmk7Qci7zhMFmxVcpAzVMwFBeAsRhtLDaLg=","crlite_enrolled":true,"id":"58959c17-11bd-4882
-9810-171e73efdcf3","last_modified":1601675840485},{"schema":1601672000910,"derHash":"KIs1Rm+44ii5iDIBnhp5Vqw+nxVCgMyXSG7Mjiycq8E=","subject":"CN=IdenTrust Public Sector Server CA 1,OU=TrustID Server,O=IdenTrust,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxFzAVBgNVBAsTDlRydXN0SUQgU2VydmVyMSwwKgYDVQQDEyNJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBTZXJ2ZXIgQ0EgMQ==","whitelist":false,"attachment":{"hash":"76f53e60805d58cfdf8c7851caca2cc1b2e1d58ccecc5f8c3c4894a02b95a3fa","size":2393,"filename":"8tH7Dh4xfmk7Qci7zhMFmxVcpAzVMwFBeAsRhtLDaLg=.pem","location":"security-state-staging/intermediates/b0475a24-c54a-415c-b8a5-508f00049e42.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8tH7Dh4xfmk7Qci7zhMFmxVcpAzVMwFBeAsRhtLDaLg=","crlite_enrolled":true,"id":"a8eb67a0-8c64-4314-8f5d-f8052549076c","last_modified":1601675840461},{"schema":1601646741831,"derHash":"eMtRLeSM7c1xNN9XyXPB4aB2krj1QqRKzruLt3bVXVk=","subject":"CN=CrowdStrike GCC R3 TLS OV CA 2020,O=CrowdStrike Inc.,C=US",
"subjectDN":"MFQxCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBDcm93ZFN0cmlrZSBJbmMuMSowKAYDVQQDEyFDcm93ZFN0cmlrZSBHQ0MgUjMgVExTIE9WIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"4db0721974365af16dd868628e17ddb2016a9a91ef607ffb13a995ff49b25874","size":1707,"filename":"nyCr34aeGoF5NDljMipBAETTIQQ7RVPxD3A4z08s6S0=.pem","location":"security-state-staging/intermediates/87766a98-a2cc-464d-9b61-f38989d08aef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nyCr34aeGoF5NDljMipBAETTIQQ7RVPxD3A4z08s6S0=","crlite_enrolled":true,"id":"679290b1-74f0-4692-85c0-80c7ed611f13","last_modified":1601647037525},{"schema":1601646862791,"derHash":"eMtRLeSM7c1xNN9XyXPB4aB2krj1QqRKzruLt3bVXVk=","subject":"CN=CrowdStrike GCC R3 TLS OV CA 2020,O=CrowdStrike Inc.,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBDcm93ZFN0cmlrZSBJbmMuMSowKAYDVQQDEyFDcm93ZFN0cmlrZSBHQ0MgUjMgVExTIE9WIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"4db0721974365af16dd868628e17ddb2016a9a91ef607ffb13a995ff49b25874","size":17
07,"filename":"nyCr34aeGoF5NDljMipBAETTIQQ7RVPxD3A4z08s6S0=.pem","location":"security-state-staging/intermediates/dffc1d44-5fa3-4cf0-8e03-6e735e18ca4c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nyCr34aeGoF5NDljMipBAETTIQQ7RVPxD3A4z08s6S0=","crlite_enrolled":true,"id":"bd781195-4915-4ba3-9cc4-34433abaf5c9","last_modified":1601647037505},{"schema":1601628639979,"derHash":"OPc2R/HsruwPxa/misMODCYXHp8jL0UwcpQSQI/VNiY=","subject":"CN=DigiCert Baltimore TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRpZ2lDZXJ0IEJhbHRpbW9yZSBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"b11aaedbe5436f35dfaa91a1b599580a4875728df582882c8b0654b4695f6f8d","size":1752,"filename":"cxJYF2dxgQBCK6TeOX11kvdv3gHxeJgxQeT9-UzsuNw=.pem","location":"security-state-staging/intermediates/3e01120a-d2e3-42a3-9d54-b75e73a5246a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cxJYF2dxgQBCK6TeOX11kvdv3g
HxeJgxQeT9+UzsuNw=","crlite_enrolled":true,"id":"9cf120fd-788c-4296-bacc-d339a0c51529","last_modified":1601629035363},{"schema":1601628561952,"derHash":"OPc2R/HsruwPxa/misMODCYXHp8jL0UwcpQSQI/VNiY=","subject":"CN=DigiCert Baltimore TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRpZ2lDZXJ0IEJhbHRpbW9yZSBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"b11aaedbe5436f35dfaa91a1b599580a4875728df582882c8b0654b4695f6f8d","size":1752,"filename":"cxJYF2dxgQBCK6TeOX11kvdv3gHxeJgxQeT9-UzsuNw=.pem","location":"security-state-staging/intermediates/93cb65fb-aaaa-48e2-98f3-414e208ebd02.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cxJYF2dxgQBCK6TeOX11kvdv3gHxeJgxQeT9+UzsuNw=","crlite_enrolled":true,"id":"05b6f881-a4d5-4faf-891d-c599dd09284d","last_modified":1601629035343},{"schema":1601581756903,"derHash":"jlEFdfB6l9X62jv9phh+A+d9M5IxhFfqhxip0otDOWs=","subject":"CN=R4,O=Let's Encrypt,C
=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSNA==","whitelist":false,"attachment":{"hash":"7c779081b9be519ff3d25e8772978950f385cb19f49a24a6057409137112bc14","size":1540,"filename":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX-WPd5kPLQM=.pem","location":"security-state-staging/intermediates/8847b089-d96c-4f13-acc0-18117749df17.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX+WPd5kPLQM=","crlite_enrolled":false,"id":"417742c5-f44f-46d5-972d-d38d206c0784","last_modified":1601582282303},{"schema":1601581755437,"derHash":"/udl2kys9TxxryAvifNhJCD9kw2ATiBP7u/J14CEu3s=","subject":"CN=R3,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSMw==","whitelist":false,"attachment":{"hash":"5fc63297733d4d2adf06d7e52b3337147d888c5dd5442cb6ec2d88986bb1de4c","size":1540,"filename":"jQJTbIh0grw0_1TkHSumWb-Fs0Ggogr621gT3PvPKG0=.pem","location":"security-state-staging/intermediates/98
8d8f38-2e00-41eb-a26c-76d18afbb2d9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jQJTbIh0grw0/1TkHSumWb+Fs0Ggogr621gT3PvPKG0=","crlite_enrolled":false,"id":"36186b66-f98f-44f9-89fe-243c1b143997","last_modified":1601582282291},{"schema":1601581757962,"derHash":"vao4RyBgT/RlOwDaOHOoxUWZb/uKuR1hbxBJX8Am6Pw=","subject":"CN=cPanel\\, Inc. ECC Certification Authority,O=cPanel\\, Inc.,L=Houston,ST=TX,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJUWDEQMA4GA1UEBxMHSG91c3RvbjEVMBMGA1UEChMMY1BhbmVsLCBJbmMuMTEwLwYDVQQDEyhjUGFuZWwsIEluYy4gRUNDIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"3abd6d4119adbd58f964bcd4518e31534b73279076cf34283e7839869f436dfb","size":1284,"filename":"1OWbvT5F8be0LIlW8C2KyzC-FMP8CzHyOolBvIgt6bc=.pem","location":"security-state-staging/intermediates/d08866e7-4949-4b27-9ef1-69593b3642dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1OWbvT5F8be0LIlW8C2KyzC+FMP8CzHyOolBvIgt6bc=","crlite_enrolled":true,"id":"e137294d-031
1-4243-8e1c-d116db18b312","last_modified":1601582282261},{"schema":1601376714502,"derHash":"HjVoI/5AwOqsKfntVGO3stscCItj67BYdqLmMcEId5g=","subject":"CN=QuoVadis Enterprise Trust CA 2 G4,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFsxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEqMCgGA1UEAwwhUXVvVmFkaXMgRW50ZXJwcmlzZSBUcnVzdCBDQSAyIEc0","whitelist":false,"attachment":{"hash":"756cc72bf46fca106a4ae94315fc04ea6bbe1b93e3229513d02875b33ca13f45","size":2385,"filename":"z-lEyVPfwY15LjMDGouWc4Jt0MFWaf2MpLOSN9mx9tM=.pem","location":"security-state-staging/intermediates/97e9a258-06aa-43a7-8ada-49f8b85b4dc5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z+lEyVPfwY15LjMDGouWc4Jt0MFWaf2MpLOSN9mx9tM=","crlite_enrolled":false,"id":"09667865-dc1f-4be8-b78d-5f3614672a9a","last_modified":1601517448053},{"schema":1601376711578,"derHash":"LRQPILipbitNLxzFrKXloefcVqdJHlEJBpYPONLSGu8=","subject":"CN=GeoTrust EV RSA CA G2,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMR
UwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFUdlb1RydXN0IEVWIFJTQSBDQSBHMg==","whitelist":false,"attachment":{"hash":"f01753f65dd631ba19494a777a86712466e7e8b20994d581e672f52716f315bb","size":1873,"filename":"VHUagq80gsWdvnfHL_-2XSLZrAJk4I9d8fx6N8UvWGM=.pem","location":"security-state-staging/intermediates/920f9d58-4bbc-4b8c-9c0d-15d09f34ef1c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VHUagq80gsWdvnfHL/+2XSLZrAJk4I9d8fx6N8UvWGM=","crlite_enrolled":true,"id":"493a41b4-bb0b-48eb-b54e-2a2d3b1343e4","last_modified":1601517448040},{"schema":1601376707030,"derHash":"DakU+3El9uZE63qiYd6euAncf5Jbayp9in7dhzY5i1s=","subject":"CN=Staat der Nederlanden Domein Server CA 2020,O=Staat der Nederlanden,C=NL","subjectDN":"MGMxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xNDAyBgNVBAMMK1N0YWF0IGRlciBOZWRlcmxhbmRlbiBEb21laW4gU2VydmVyIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"2f30004a37d33d9c2a59bae9b9e7ae94f816bd331c1a88deabd4af0f028ec59e","size":2438,"filename":"N9-Yl
uTCUa_HTXc60QxjUReBLpRniAkIK2N84DhgmW4=.pem","location":"security-state-staging/intermediates/1a840a62-8cd7-4d70-9975-b54d902e70f8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N9+YluTCUa/HTXc60QxjUReBLpRniAkIK2N84DhgmW4=","crlite_enrolled":false,"id":"aac1684b-0ef2-4e80-a504-29ddab6c3e72","last_modified":1601517448028},{"schema":1601376713050,"derHash":"N2EL91bKTDz6GGlsTBSXOOZEyp9nY4fsUBZzZdakXMo=","subject":"CN=Digidentity PKIoverheid Server CA 2020,O=Digidentity B.V.,C=NL","subjectDN":"MFkxCzAJBgNVBAYTAk5MMRkwFwYDVQQKDBBEaWdpZGVudGl0eSBCLlYuMS8wLQYDVQQDDCZEaWdpZGVudGl0eSBQS0lvdmVyaGVpZCBTZXJ2ZXIgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"c6efc5a8dbba37f6c4ba76f0ccd0f86ceb94b6b66cfd390227a747d4d83ff0b3","size":2487,"filename":"DnmLzHZn-pLaQKZ9c6lYR5BOqhZMey469UF5T1hne2k=.pem","location":"security-state-staging/intermediates/cd42a716-ce60-48c0-a709-ead47fce1fbe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DnmLzHZn+pLaQKZ9c6lYR5BOqhZMey469UF5T1hne2k="
,"crlite_enrolled":true,"id":"5f56fcf5-5fc3-476f-865b-5607ab67cac6","last_modified":1601517448016},{"schema":1601376708754,"derHash":"0zqEf2QDd74K4aQpFToH6HyIJ/pIQLUVi83LheEKRTo=","subject":"CN=VR IDENT EV SSL CA 2020,O=Fiducia & GAD IT AG,C=DE","subjectDN":"ME0xCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMSAwHgYDVQQDDBdWUiBJREVOVCBFViBTU0wgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"a95e7ccf2ef4b020f65fbd061c44e49d966821be27623376e3f16a8a3ebd371f","size":2361,"filename":"te09bIALahNazDua57TEibeM7CatIkOAT8t-qu_Kdro=.pem","location":"security-state-staging/intermediates/e430be6f-1a38-4cff-9a26-75b9c1b40411.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"te09bIALahNazDua57TEibeM7CatIkOAT8t+qu/Kdro=","crlite_enrolled":true,"id":"c405cfcb-b5a3-404e-8080-a25fac8bd624","last_modified":1601517448004},{"schema":1601376705563,"derHash":"WS4aLwo0KEsOJvy0/tIq+FmEju6IIq22G0LatHov/cI=","subject":"CN=KPN PKIoverheid Server CA 2020,O=KPN B.V.,C=NL","subjectDN":"MEkxCz
AJBgNVBAYTAk5MMREwDwYDVQQKDAhLUE4gQi5WLjEnMCUGA1UEAwweS1BOIFBLSW92ZXJoZWlkIFNlcnZlciBDQSAyMDIw","whitelist":false,"attachment":{"hash":"d6c29637397d41ba732890b7381061d5aa7ce2b45a6658ec8cd3e1578ec36521","size":2463,"filename":"Yao-RgzIlYNhXc65ch9IpKzSRFUSiL01Et8c6sN4XLU=.pem","location":"security-state-staging/intermediates/8f344132-b3c2-493d-9fdf-f15cdbe23305.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Yao+RgzIlYNhXc65ch9IpKzSRFUSiL01Et8c6sN4XLU=","crlite_enrolled":true,"id":"d48b6ae2-446b-453a-8cc2-98b0a8e19be2","last_modified":1601517447991},{"schema":1601376701147,"derHash":"YDiLdz0z6RQWSGE/NrkUnwFaEUN4us8+NpSGT/2kJuw=","subject":"CN=HydrantID EV SSL CA G2,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMTAwLgYDVQQKDCdIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHzAdBgNVBAMMFkh5ZHJhbnRJRCBFViBTU0wgQ0EgRzI=","whitelist":false,"attachment":{"hash":"ba2cc602bd31081e17f7745ac462854773e79726958ff1b8a553cc7ecaba9db2","size":2389,"fil
ename":"FpAps1LWs_UTm3xApHYkNccnnZX-7Wc_v8V0t70p6rg=.pem","location":"security-state-staging/intermediates/8c73b0d9-e8cd-4f65-9003-94df3b81af5d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FpAps1LWs/UTm3xApHYkNccnnZX+7Wc/v8V0t70p6rg=","crlite_enrolled":true,"id":"0541e738-c47e-45c8-a4f1-9494790fa98e","last_modified":1601517447980},{"schema":1601376699741,"derHash":"a0+d4TZ4hGcw1Q6RSgjnvpt0LKOgp9U5M2eDC5Om9VM=","subject":"CN=Valid Certificadora Digital SSL OV CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGgxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgT1YgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"8b796428cc5e4733630431ccd7284dbe8bae53efc39384f0fccbbf1b490e4d49","size":1788,"filename":"OOlpcVGqLfZfl2rK7MdW2Ff6TMhVD-PwRf3XtFUUtLw=.pem","location":"security-state-staging/intermediates/970c219c-4540-4fd6-96a0-5a1b30eed570.pem","mimetype":"application/x-pem-file"},"pubKeyHash"
:"OOlpcVGqLfZfl2rK7MdW2Ff6TMhVD+PwRf3XtFUUtLw=","crlite_enrolled":true,"id":"1a842e90-819c-4e3f-989b-ff36631ffdd8","last_modified":1601517447967},{"schema":1601376702562,"derHash":"Euom9u7v7HarhZJUVAOriFFbAOJ12YiHE0B6hvxcf9c=","subject":"CN=e-Szigno Qualified Organization CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGDMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xFzAVBgNVBGEMDlZBVEhVLTIzNTg0NDk3MTAwLgYDVQQDDCdlLVN6aWdubyBRdWFsaWZpZWQgT3JnYW5pemF0aW9uIENBIDIwMTc=","whitelist":false,"attachment":{"hash":"2dcc501b643fe8ac38e3b36c6e87ffbb458e7d031117857c3d81511ee2eadfd8","size":1687,"filename":"60e2cMobrxpGA71ke0o4H5luzpBPZvklmqnePPA8jxs=.pem","location":"security-state-staging/intermediates/77e2b395-5a50-4800-954e-b7b8417fdc14.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"60e2cMobrxpGA71ke0o4H5luzpBPZvklmqnePPA8jxs=","crlite_enrolled":false,"id":"0b5e8fe1-4816-49b7-95bb-58d0f7ab520b","last_modified":1601517447955},{"schema":16013766983
10,"derHash":"yKYQupQXdw0sAt4ivKjFakKK916ONU76NsVoIh3bfPw=","subject":"CN=WISeKey CertifyID SSL GB CA 2,O=WISeKey,C=CH","subjectDN":"MEcxCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSYwJAYDVQQDEx1XSVNlS2V5IENlcnRpZnlJRCBTU0wgR0IgQ0EgMg==","whitelist":false,"attachment":{"hash":"25f18c47254a897f57257e91e33dccd040b88a2d2805589a22993da2900db84f","size":1699,"filename":"ktJRzJxhVE71wdby3vum5K-dgm6QylD4z-l9CBGOUQU=.pem","location":"security-state-staging/intermediates/b23e58a4-ba88-4c87-a828-1c8dc6d99e89.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ktJRzJxhVE71wdby3vum5K+dgm6QylD4z+l9CBGOUQU=","crlite_enrolled":true,"id":"3c319d1b-2657-423e-bbda-6ae5b1cb7599","last_modified":1601517447943},{"schema":1601376696895,"derHash":"FjzS/K0NaofI2vzgVvWU87U7kXwPkl1A2SJY6id/xPQ=","subject":"CN=QuoVadis Qualified Web ICA G1,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MHAxCzAJBgNVBAYTAk5MMRcwFQYDVQRhDA5OVFJOTC0zMDIzNzQ1OTEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xJjAkBgNVBAMMHVF1b1ZhZGlzIF
F1YWxpZmllZCBXZWIgSUNBIEcx","whitelist":false,"attachment":{"hash":"d4292d809a630e5b57cdc50d9205799bd35a8b3a0c8cf33366d00d5e3e8cdf78","size":2499,"filename":"EWJY2DWEXe27fystTVa-0cHUmGdi6igRAeyxOTlgFDY=.pem","location":"security-state-staging/intermediates/f2c956b5-ac64-4fb1-ba98-32776090134e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EWJY2DWEXe27fystTVa+0cHUmGdi6igRAeyxOTlgFDY=","crlite_enrolled":true,"id":"5281f41c-c9a7-4ac3-92ec-73db0e1bca22","last_modified":1601517447931},{"schema":1601376691138,"derHash":"yhTPmzCboDK7IZEMGu2uTSn+Bla0+L/6I8vpTUMcBnQ=","subject":"CN=Entrust Certification Authority - DE QWAC1,O=Entrust Datacard Deutschland GmbH,C=DE","subjectDN":"MIGIMTMwMQYDVQQDDCpFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gREUgUVdBQzExGDAWBgNVBGEMD1ZBVERFLTExOTI2NDMxNjEqMCgGA1UECgwhRW50cnVzdCBEYXRhY2FyZCBEZXV0c2NobGFuZCBHbWJIMQswCQYDVQQGEwJERQ==","whitelist":false,"attachment":{"hash":"4e133243cde83dcbe732252fbf43b8518690328d9c29c7647170c786d537e396","size":1792,"f
ilename":"ZWhmaUZRaiEz-pmpHFYrrwb8L7sV4g8Lss57AOkaaLg=.pem","location":"security-state-staging/intermediates/bc1603cf-b495-4c30-be21-9c90c1fc4057.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZWhmaUZRaiEz+pmpHFYrrwb8L7sV4g8Lss57AOkaaLg=","crlite_enrolled":true,"id":"7a54c01d-7d1f-4f82-8016-dfab02e81156","last_modified":1601517447907},{"schema":1601376694051,"derHash":"Kyz67KvyJm/U+2UF8zQrklFOvm+nwIy2y9SYj2r9F70=","subject":"SERIALNUMBER=ZZZZZZB9,CN=Siemens Issuing CA Internet Server 2017,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGnMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQjkxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMTAwLgYDVQQDDCdTaWVtZW5zIElzc3VpbmcgQ0EgSW50ZXJuZXQgU2VydmVyIDIwMTc=","whitelist":false,"attachment":{"hash":"399b1d081c0af091e4829f3801f90b9e266db1e4e3c5d6a03e438d33ecc67c14","size":2788,"filename":"f4p5PJI5fILNPQJUbuMdNzd-JMnwHZgjMi4ZjRUXTTk=.pem","location"
:"security-state-staging/intermediates/ed3be1ec-27c5-4877-a576-a88953808e0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"f4p5PJI5fILNPQJUbuMdNzd+JMnwHZgjMi4ZjRUXTTk=","crlite_enrolled":true,"id":"b5744a09-248a-49f5-a2f4-743d2e1c013d","last_modified":1601517447896},{"schema":1601376695464,"derHash":"J47PIR4lGOndmROvxYPusxJ8gYS8vu2q171k6J6MQxA=","subject":"CN=QuoVadis Grid ICA G2,O=QuoVadis Limited,C=BM","subjectDN":"MEcxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR0wGwYDVQQDExRRdW9WYWRpcyBHcmlkIElDQSBHMg==","whitelist":false,"attachment":{"hash":"8e15c43f71096a592c3d5819db25f4547bb4ef4f8232293578abdf314d149392","size":2353,"filename":"5rlUfVlXaS82HCd6DZI7w8rIamphHCdjnXNpXREZynQ=.pem","location":"security-state-staging/intermediates/1aa7522d-26fc-4dab-a48f-37ed0f57c916.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5rlUfVlXaS82HCd6DZI7w8rIamphHCdjnXNpXREZynQ=","crlite_enrolled":true,"id":"cffe3216-3de3-4c2c-ac7b-6674695cb014","last_modified":1601517447884}
,{"schema":1601376689641,"derHash":"vLwYxGO2HzoDOxDHSXTtiiwyivzWejONmHFQajUVQZ8=","subject":"CN=e-Szigno Class3 SSL CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJDAiBgNVBAMMG2UtU3ppZ25vIENsYXNzMyBTU0wgQ0EgMjAxNw==","whitelist":false,"attachment":{"hash":"141f708e3e75831bbe1ea4307dbbb1564e45c53708e07ce12ace8a2c364453d4","size":1670,"filename":"69Duo3nmlQnUEvqzlU27qTDaDY9K1yN0wfdopIs9Y7s=.pem","location":"security-state-staging/intermediates/713a5d0b-40ac-4d69-8093-93d4bd2e61ab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"69Duo3nmlQnUEvqzlU27qTDaDY9K1yN0wfdopIs9Y7s=","crlite_enrolled":true,"id":"20f1bea5-b08a-4583-bdc2-e4d66e4dbc30","last_modified":1601517447872},{"schema":1601376685072,"derHash":"rXtYw8XZWGvltieZwnksQRHJhSqW97BgciEmVxOVfhw=","subject":"CN=SHECA OV Secure Server CA,O=Shanghai Electronic Certificate Authority Center Co.\\, Ltd.,C=CN","subj
ectDN":"MHYxCzAJBgNVBAYTAkNOMUMwQQYDVQQKEzpTaGFuZ2hhaSBFbGVjdHJvbmljIENlcnRpZmljYXRlIEF1dGhvcml0eSBDZW50ZXIgQ28uLCBMdGQuMSIwIAYDVQQDExlTSEVDQSBPViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"64ac68b2f5fcfe1eb5b26d7d052a52af0101c298fc359ab1870916a82601f563","size":1808,"filename":"GvyQK0TA2Qh-B1rvOMI28XPmBiJD59lQrwz_N-iQO_U=.pem","location":"security-state-staging/intermediates/53d0ff76-6315-493d-b9a5-6b2d1230a9f9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GvyQK0TA2Qh+B1rvOMI28XPmBiJD59lQrwz/N+iQO/U=","crlite_enrolled":true,"id":"fec31040-5c17-4c95-895a-afaebcb0a054","last_modified":1601517447861},{"schema":1601376692642,"derHash":"tvZVm7zgosyR5Qe11zGeMkh+2uKKBjvHO2QF5sRGZbY=","subject":"CN=QuoVadis Enterprise Trust CA 2 G3,O=QuoVadis Limited,C=BM","subjectDN":"MFQxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSowKAYDVQQDDCFRdW9WYWRpcyBFbnRlcnByaXNlIFRydXN0IENBIDIgRzM=","whitelist":false,"attachment":{"hash":"0e8105a00963a2942951dacf763351b5c4f4
fcffe32ab691c090848452d6b285","size":2377,"filename":"U_l9o-Lg2NOgB-7MLJUzZzbVrqatI_likIE44Ciah6M=.pem","location":"security-state-staging/intermediates/e36cd675-51d4-45ae-9be5-01d1ee3cb3c6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U/l9o+Lg2NOgB+7MLJUzZzbVrqatI/likIE44Ciah6M=","crlite_enrolled":false,"id":"14f0f77b-ba93-4761-a2d2-71f0ab726c4c","last_modified":1601517447849},{"schema":1601376703987,"derHash":"J1vwBG4CcBeLE7Z+TbFQoQGXy3H5oGH602s9dmOf4YY=","subject":"CN=Trustwave Global ECDSA P-256 Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGcMUUwQwYDVQQDEzxUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMjU2IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EsIExldmVsIDExITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjEQMA4GA1UEBxMHQ2hpY2FnbzERMA8GA1UECBMISWxsaW5vaXMxCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"b39b1eb52f8d651482f3d14bd9a033de3982f3cc3fa825ba761d2fefa3a11981","size":1325,"filename":"YzpgcYxSKDnEVZ3T3h2obh9WsI9ICItWbA
qh4SyCprA=.pem","location":"security-state-staging/intermediates/2c77b828-79f7-4649-86b4-c67b7672d80c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YzpgcYxSKDnEVZ3T3h2obh9WsI9ICItWbAqh4SyCprA=","crlite_enrolled":true,"id":"32afcb9b-abe9-408d-b53f-79bb1fdee4cf","last_modified":1601517447837},{"schema":1601376687921,"derHash":"am8voTstnbu0CYAgAtM3BnJ2CiF42bjVaU1mBHQjH6Q=","subject":"CN=e-Szigno Pseudonymous CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHkxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJjAkBgNVBAMMHWUtU3ppZ25vIFBzZXVkb255bW91cyBDQSAyMDE3","whitelist":false,"attachment":{"hash":"4a22ba90a733131c2581c1d0dd2fbb9a8df38f518f2e5ba6ee0d10f4b3169c24","size":1670,"filename":"vqerAqvFBz-pP0lY3LKc96jOLcWu__imbw0SS3qBch8=.pem","location":"security-state-staging/intermediates/2334d610-446d-4e2b-baa4-aea8a7184032.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vqerAqvFBz+pP0lY3LKc96jOLcWu//imbw0S
S3qBch8=","crlite_enrolled":false,"id":"ac246f90-eed2-4d87-83c3-1716f637a9e2","last_modified":1601517447824},{"schema":1601376682271,"derHash":"hIwDq2R9W9fg0MQ8C11nTMmJP4NquGOvjz8ThLVE2DM=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - INFRAESTRUCTURA,OU=Security Services,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGNMQswCQYDVQQGEwJFUzEeMBwGA1UECgwVRmlybWFwcm9mZXNpb25hbCBTLkEuMRowGAYDVQQLDBFTZWN1cml0eSBTZXJ2aWNlczESMBAGA1UEBRMJQTYyNjM0MDY4MS4wLAYDVQQDDCVBQyBGaXJtYXByb2Zlc2lvbmFsIC0gSU5GUkFFU1RSVUNUVVJB","whitelist":false,"attachment":{"hash":"caf1e07303de77d2971983851eb6cdc8b1662168dab0ef7c3dc3df46b70b3ec3","size":2300,"filename":"bB8VW561_UmK2rypmzhiK744upv6JxAcWmqJ9U-BKSI=.pem","location":"security-state-staging/intermediates/01da7aaa-a363-4749-9396-bfdd094350f9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bB8VW561/UmK2rypmzhiK744upv6JxAcWmqJ9U+BKSI=","crlite_enrolled":true,"id":"629163cc-e2d2-49d2-9179-b5f4a91ddbd5","last_modified":1601517447801},{"schema
":1601376679409,"derHash":"ozAX2d9JTAnVhwkQdAOu5GG5Rh6BujlcKMNmk8J9GYY=","subject":"CN=GlobalSign GCC R3 UK EV QWAC CA 2020,O=GMO GlobalSign Ltd,C=GB","subjectDN":"MFkxCzAJBgNVBAYTAkdCMRswGQYDVQQKExJHTU8gR2xvYmFsU2lnbiBMdGQxLTArBgNVBAMTJEdsb2JhbFNpZ24gR0NDIFIzIFVLIEVWIFFXQUMgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"ef3f87aa1971aaebb3accc4f6b43e518068a070c3df5324fafc49bd6faea510d","size":2040,"filename":"_cLNIs90Pu4zrpnBuJdA-wTl2BrxEVUjup-MFOMyr1g=.pem","location":"security-state-staging/intermediates/7413dbb2-a053-4d05-8c07-e8013d4954f2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/cLNIs90Pu4zrpnBuJdA+wTl2BrxEVUjup+MFOMyr1g=","crlite_enrolled":false,"id":"49bc5d61-3d39-432b-8401-09f5cf6fe8fb","last_modified":1601517447789},{"schema":1601376680877,"derHash":"FamHYevgEVVNo6RtIGsIEssutproeqoRpt1MuE7VFCo=","subject":"CN=Microsoft Azure TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAo
BgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMg==","whitelist":false,"attachment":{"hash":"b94f365e9c87f17f0cce2845177df14966cfe660eb761de3a71b860db6a98fd9","size":2121,"filename":"zAwfx2iFcQ5vMOCc9vt-MXLdLl08EquNsOWgDF0hOw8=.pem","location":"security-state-staging/intermediates/24659b31-0ac7-4f82-a6b2-81b56170c56c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zAwfx2iFcQ5vMOCc9vt+MXLdLl08EquNsOWgDF0hOw8=","crlite_enrolled":true,"id":"a3070eea-daf1-4198-a69d-4f1b513e2e69","last_modified":1601517447777},{"schema":1601376677870,"derHash":"1KWUHHFB7RlJoMbOndRaCrlNwzeQLrChIJhSc47r6FQ=","subject":"CN=GlobalSign GCC R3 EV QWAC CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIEdDQyBSMyBFViBRV0FDIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"9a306430e243544a1c823baa60388aa1b7c197ccafd79a5fd9847056d91f6d8b","size":2032,"filename":"6Vipkd7oFTwhj_Z54b71vjmwq0aEJc6KkharcmzGaV4=.pem","locatio
n":"security-state-staging/intermediates/078357e9-d9aa-4223-9fe2-9322058e368a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6Vipkd7oFTwhj/Z54b71vjmwq0aEJc6KkharcmzGaV4=","crlite_enrolled":false,"id":"7e12f161-4f28-4ab5-b22b-2c4ce8de8d3d","last_modified":1601517447766},{"schema":1601376669443,"derHash":"ZZt6UYxsnrGKoes1rrp6AkeBe4mMH6GED5fSh32aIOQ=","subject":"CN=JPRS Domain Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"19f63552805d608f671589717902feefe03afc5da94e20c555f68ef484a23b46","size":1772,"filename":"n1ufb8l1_ENW_uOKNKgHIeBe_NgVI39f0IzwWmCVHvE=.pem","location":"security-state-staging/intermediates/47eb68ae-22f7-4ab1-af83-1feca0168e32.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n1ufb8l1/ENW/uOKNKgHIeBe/NgVI39f0IzwWmCVHvE=","crlite_enroll
ed":true,"id":"7fae8ab0-1f93-4bb4-ad9e-d35322d05bb4","last_modified":1601517447754},{"schema":1601376672283,"derHash":"diU4Q5UJxBHEN9PFZ1Y+E3hnEoH8ShRkrdAxhwhDZ24=","subject":"CN=GlobalSign GCC R3 DV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIEdDQyBSMyBEViBUTFMgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"a57c3388263edee7694a304c5fb1c3c28046d3d7c1493d3ddf93c385aaf9b3ad","size":1687,"filename":"Sc7wL4FfOw8ued5w3JOSzu5MzB471PfqdyN4hnMYbX4=.pem","location":"security-state-staging/intermediates/0731bf19-eea4-42f6-9ac8-48a2b2d155aa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Sc7wL4FfOw8ued5w3JOSzu5MzB471PfqdyN4hnMYbX4=","crlite_enrolled":true,"id":"59416cc7-fedb-4bdf-ae06-52bfcce27e43","last_modified":1601517447731},{"schema":1601376675098,"derHash":"Z4LG6a2/khbiaDBtRjM/vGdL3t+GtnvndweeLA42iI4=","subject":"CN=Trustwave Global Domain Validation CA\\, Level 1,O=Trustwave Holding
s\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGOMTcwNQYDVQQDEy5UcnVzdHdhdmUgR2xvYmFsIERvbWFpbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"a1aae690e4bc653bc8dd049d0014c8bdf294c1327ae51c6f40d11e8b728cdee3","size":2499,"filename":"N8k0xQNnFdJBZpSXQ6W9OldaDSJ59X-kFQNRrNSN8Cw=.pem","location":"security-state-staging/intermediates/bbb80e65-6dd1-4c6a-86dc-ed0eb42c9484.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N8k0xQNnFdJBZpSXQ6W9OldaDSJ59X+kFQNRrNSN8Cw=","crlite_enrolled":false,"id":"f70ebe3d-e7d1-4205-bda8-448b578f4005","last_modified":1601517447708},{"schema":1601376683642,"derHash":"/PJvvBsqJadqtOqSssvvNn4BMQkcgC2kmJj3iuVLMPg=","subject":"CN=Valid Certificadora Digital SSL DV CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGgxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIE
NlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgRFYgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"551d256b9e4988053973e8535709a6276d327de7d3ea6dd215e8c97deef2c69f","size":1768,"filename":"2UPUODmQxMZsvFIsK7JgdFSPY-kZ_qKP-7aXPh1_bx8=.pem","location":"security-state-staging/intermediates/fde06ce8-4602-4d76-892b-b6cf8d5e7df2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2UPUODmQxMZsvFIsK7JgdFSPY+kZ/qKP+7aXPh1/bx8=","crlite_enrolled":true,"id":"c14d8dbc-33da-445a-9bf1-c590049e77e7","last_modified":1601517447696},{"schema":1601376665083,"derHash":"EDLGAB7WZKDNNDsTi8toYOIREBHD1fBlQPW+QRR4EqU=","subject":"CN=Legacy Technologies Intermediate,O=Legacy Technologies GmbH,C=DE","subjectDN":"MFsxCzAJBgNVBAYTAkRFMSEwHwYDVQQKExhMZWdhY3kgVGVjaG5vbG9naWVzIEdtYkgxKTAnBgNVBAMTIExlZ2FjeSBUZWNobm9sb2dpZXMgSW50ZXJtZWRpYXRl","whitelist":false,"attachment":{"hash":"a9f261d0ad4e87bacd12e03d772b19c478c501880901e13afa12424a3fa0819b","size":1906,"filename":"1IN_wrqE9VVL4qRI4B5j8xzAQgZ1Wap_tLlGGVYhcEc=.pem"
,"location":"security-state-staging/intermediates/8b44d61d-b858-43fa-b426-fbbbc968b95d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1IN/wrqE9VVL4qRI4B5j8xzAQgZ1Wap/tLlGGVYhcEc=","crlite_enrolled":false,"id":"e80bbded-a765-4025-b5d2-e47ce2297737","last_modified":1601517447684},{"schema":1601376676513,"derHash":"KXW6tR0A2GLQ4W7t74MGp1nGXNS58A2vUOzfy07DluQ=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDY=","whitelist":false,"attachment":{"hash":"913a6555d1accfb6fad27f0850000c3dead37ef7c0c8683ab4771d4154dafae2","size":1329,"filename":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f_fOuKrsNiaSdA=.pem","location":"security-state-staging/intermediates/7138d666-f219-4eca-9b68-3b6dbcfe02b5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f/fOuKrsNiaSdA=","crlite_enrolled":false,"id":"8b0c2
567-a21b-4543-a7b7-cafd2a3b2559","last_modified":1601517447666},{"schema":1601376663499,"derHash":"h9QhabJpNVHKIFzPF/BvbmZR9yGM1tJmB79bpN0vJvI=","subject":"CN=Trustwave Global ECDSA P-384 Organization Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGgMUkwRwYDVQQDE0BUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMzg0IE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"8cd0dbed89841d6b6854301f7eecbbdcd40ac73d8c8347c1ea8a577a05c10603","size":1410,"filename":"91i1mhKwhcz0SKoJ9CzM_9ohVagG6cKG9Z_i4Ts1FFk=.pem","location":"security-state-staging/intermediates/9aa01a62-0930-4473-93bc-42f043cb480f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"91i1mhKwhcz0SKoJ9CzM/9ohVagG6cKG9Z/i4Ts1FFk=","crlite_enrolled":false,"id":"a65d784a-aa65-4997-b67c-6e62f264ae5b","last_modified":1601517447619},{"schema":16
01376660625,"derHash":"BMGHHGhgdRU4n6Owz7g9vmpK8F6MgOdFcClp8kBgbjY=","subject":"CN=JPRS Organization Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"22b4bbcfbe3f75b06e7578a6a45c84da9c0262d68c36a8114773ff9a455d842b","size":1788,"filename":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A-XzOekYtqEbM=.pem","location":"security-state-staging/intermediates/1d629e89-02d9-4ab4-bff8-d297d4dae791.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A+XzOekYtqEbM=","crlite_enrolled":true,"id":"c5aa18ff-f49e-44c8-9396-c03197aa910d","last_modified":1601517447603},{"schema":1601376656232,"derHash":"Ek6q8m9XDE+02J9dYQePFbiFNF/K8MV/NHfYxjtasm8=","subject":"CN=Actalis Extended Validation Server CA G3,O=Actalis S.p.A.,L=Ponte San Pietro,ST=Bergamo,C=IT","sub
jectDN":"MIGGMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEXMBUGA1UECgwOQWN0YWxpcyBTLnAuQS4xMTAvBgNVBAMMKEFjdGFsaXMgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZXJ2ZXIgQ0EgRzM=","whitelist":false,"attachment":{"hash":"332f65bf2214e30be6f0940dc3bde167397bf14fc227615cd42ca92857dd83bf","size":2641,"filename":"Qit8ertDRalW2_YZANpfGKsGuNxcSeZ5UXpPg8_gmpE=.pem","location":"security-state-staging/intermediates/fd033e38-cc55-468e-af90-2a082b309e20.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Qit8ertDRalW2/YZANpfGKsGuNxcSeZ5UXpPg8/gmpE=","crlite_enrolled":true,"id":"a99821b6-4960-494c-8f67-232566a4edc4","last_modified":1601517447590},{"schema":1601376657738,"derHash":"T4OELx8Eqx4E1NjnUWZvyoLlGRyvwkBiv9H+d8AspLQ=","subject":"CN=e-Szigno Class3 CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHMxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxIDAeBgNVBAMMF2UtU3ppZ25vIENsYXNzMyBDQSAyMDE3","whitelist":f
alse,"attachment":{"hash":"71132024dc6f9eb4be8dbf1a0131b491fae4efd3d711ad58c399ed1ebdd355ef","size":1662,"filename":"X4MOqhXQM4obftW5dgADxiIIIaZwoNHvuYhRJq7eVe0=.pem","location":"security-state-staging/intermediates/c0d8ef6e-268f-48b3-a7fc-780d0dc7ea0e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"X4MOqhXQM4obftW5dgADxiIIIaZwoNHvuYhRJq7eVe0=","crlite_enrolled":false,"id":"77f03aac-ef84-4ca4-960c-68a37582c545","last_modified":1601517447577},{"schema":1601376659170,"derHash":"gpj8QnBMTtd0tNsxBSkmC1JKkHUlKh0Ks44G8bmoNJk=","subject":"CN=CertCloud RSA TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"MEoxCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMR0wGwYDVQQDExRDZXJ0Q2xvdWQgUlNBIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"59bb133020146d20f0d963a09c0520755e8a49c60982dbc377b4072ee287be19","size":2073,"filename":"Wz3-4Wr1VbAmx0vpewGzhrRMM8dT5kZ8_PHc1S6WqYs=.pem","location":"security-state-staging/intermediates/19ad562b-8c2b-49a4-a53c-f8979d651b08.pem","mimetype
":"application/x-pem-file"},"pubKeyHash":"Wz3+4Wr1VbAmx0vpewGzhrRMM8dT5kZ8/PHc1S6WqYs=","crlite_enrolled":false,"id":"58c4fe43-8482-4fd9-a504-3f27e47b56b9","last_modified":1601517447564},{"schema":1601376653303,"derHash":"EcaXh4cyBW3hfB2hNOnSttI88d6Vs/sKTRilF6tjIwo=","subject":"CN=GTS CA 2A1,O=Google Trust Services LLC,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMkEx","whitelist":false,"attachment":{"hash":"66c35c0df4a124a571526bb96130bec322a6f7500769403d0c068726f5bf3b3c","size":1130,"filename":"dEp_Gc3Me0g2QnAtpHNcs692NFByRfF7Od0K2TuwG1Y=.pem","location":"security-state-staging/intermediates/34f43fc6-b91c-4d55-8672-e2ba29010b29.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dEp/Gc3Me0g2QnAtpHNcs692NFByRfF7Od0K2TuwG1Y=","crlite_enrolled":false,"id":"911255a8-a1cd-4edd-8e7e-f67154d601a8","last_modified":1601517447552},{"schema":1601376650517,"derHash":"pmUAegXv4YidZqQN7svGwaJx6RkAaBH9uNvX4GdSEtE=","subject":"
CN=Siemens Issuing CA Internet Server 2020,O=Siemens,C=DE","subjectDN":"MFExMDAuBgNVBAMMJ1NpZW1lbnMgSXNzdWluZyBDQSBJbnRlcm5ldCBTZXJ2ZXIgMjAyMDEQMA4GA1UECgwHU2llbWVuczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"5ab8cb8a5146787aeb9025fd757a28e47c16893e2603c336459385a83349e955","size":1719,"filename":"uOU9UZhtVd_opiG5DbxESujdJ9UY8BLJblR-MMq9FbY=.pem","location":"security-state-staging/intermediates/e9295752-30ef-4d70-8969-fd3831ca87ea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uOU9UZhtVd/opiG5DbxESujdJ9UY8BLJblR+MMq9FbY=","crlite_enrolled":true,"id":"0a08acd0-7a3a-448c-97ca-8b13d65bb4c7","last_modified":1601517447540},{"schema":1601376654768,"derHash":"QtyCf0b7XoXf+uR9PGkPUB7OJdV11ZelDY+Hj6Qq/Oo=","subject":"CN=e-Szigno Class2 CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHMxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxIDAeBgNVBAMMF2UtU3ppZ25vIENsYXNzMiBDQSAyMDE3","whitelist":false,"att
achment":{"hash":"24e4936e9492f5245f32e7f9b60258d25f2a4c8e36002f26691cdf9f19bb94f3","size":1662,"filename":"3TGdI2jR-PvtWXO9N84WdfCRvr5nND75u1oGBVvPEl4=.pem","location":"security-state-staging/intermediates/e9ec773b-bb9c-4483-aaae-eed0307b52c6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3TGdI2jR+PvtWXO9N84WdfCRvr5nND75u1oGBVvPEl4=","crlite_enrolled":false,"id":"ad182baf-a664-418f-b166-97468c566a74","last_modified":1601517447528},{"schema":1601376649078,"derHash":"DTb2oimeniaPlK20nlfmcX1xPD9HuInEDc3Iz+lAy4A=","subject":"CN=Beame.io CA 1,O=Beame.io Ltd,C=IL","subjectDN":"MDwxCzAJBgNVBAYTAklMMRUwEwYDVQQKEwxCZWFtZS5pbyBMdGQxFjAUBgNVBAMTDUJlYW1lLmlvIENBIDE=","whitelist":false,"attachment":{"hash":"4b493757d7d299f8cc22b2765b16fa2d9bcc5aab6354a1aba37cad4f16162bf8","size":1727,"filename":"5fxJ002g5Il0LSaAZtiEC7BeF8z-cxBoMLk7llE9WeI=.pem","location":"security-state-staging/intermediates/c63ea01c-f085-4c51-8777-54e68bb926ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5
fxJ002g5Il0LSaAZtiEC7BeF8z+cxBoMLk7llE9WeI=","crlite_enrolled":false,"id":"1376d433-c704-4fdf-b6e5-2eb14d36c683","last_modified":1601517447517},{"schema":1601376647571,"derHash":"9nwj73v3QSgJ22sd09RKCNN1TZnKumoT96BcckkInIk=","subject":"CN=QuoVadis Global SSL ICA G2,O=QuoVadis Limited,C=BM","subjectDN":"ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMg==","whitelist":false,"attachment":{"hash":"f3d6221594115cd098f20f66a013d90aae3becd3c578a737a8e58a35230c208d","size":2016,"filename":"tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=.pem","location":"security-state-staging/intermediates/d16f438d-3c35-419c-9f98-50f522b13cd4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=","crlite_enrolled":true,"id":"ace44f60-2db3-4ac9-8da0-94488a7efde1","last_modified":1601517447505},{"schema":1601376662098,"derHash":"iwW2jMZZ5e0PyzjyyUL7/SAOby/5+F1jxplO9eCwJwE=","subject":"CN=ISRG Root X2,O=Interne
t Security Research Group,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgy","whitelist":false,"attachment":{"hash":"0a551cc852c7b0f054ae4c9e72acb7a6b4b1a8bab2d598b21063ab92fc36ecb6","size":1577,"filename":"diGVwiVYbubAI3RW4hB9xU8e_CH2GnkuvVFZE8zmgzI=.pem","location":"security-state-staging/intermediates/632fc862-dd3b-4e49-9fcc-064d7ec3bed7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"diGVwiVYbubAI3RW4hB9xU8e/CH2GnkuvVFZE8zmgzI=","crlite_enrolled":false,"id":"6cf55332-76a4-433e-bf71-a3817eca7a01","last_modified":1601517447493},{"schema":1601376651889,"derHash":"8RRGn7gHeBM6H3Dk2DOO2rl91CzrjswByvtw1rh98R4=","subject":"CN=certSIGN Web CA,O=CERTSIGN SA,C=RO","subjectDN":"MFYxCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEYMBYGA1UEAxMPY2VydFNJR04gV2ViIENBMRcwFQYDVQRhEw5WQVRSTy0xODI4ODI1MA==","whitelist":false,"attachment":{"hash":"d637585d0fa1d3a2b6cea2a2ab6f2b7d30229bc1eb350aeb2b8cc2f529b5998a","si
ze":2308,"filename":"G6NjfcFmFAa5DouUTqNGb3I5tG34kmES3evs_0ubJ68=.pem","location":"security-state-staging/intermediates/e722a8ed-95b5-4804-afae-33cfb565e784.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G6NjfcFmFAa5DouUTqNGb3I5tG34kmES3evs/0ubJ68=","crlite_enrolled":true,"id":"bcbc78b3-6912-4320-9fcd-fdc468194871","last_modified":1601517447481},{"schema":1601376643176,"derHash":"l9QgA+EyVSlGCX8g75VfWxzVcKpDcteAAzpl775pdY0=","subject":"CN=GTS CA 1P5,O=Google Trust Services LLC,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMVA1","whitelist":false,"attachment":{"hash":"6d39d26fa45c2aea9f3ecfb72ba0887e152ffd6f6a6dc6e197c57cefd4030fa0","size":1983,"filename":"81Wf12bcLlFHQAfJluxnzZ6Frg-oJ9PWY_Wrwur8viQ=.pem","location":"security-state-staging/intermediates/680da5a2-5a45-499e-9fe7-ad8478a1e4b7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"81Wf12bcLlFHQAfJluxnzZ6Frg+oJ9PWY/Wrwur8viQ=","crlite_enrolled":tru
e,"id":"0332f56b-8620-4d04-8c28-c92c27457a8d","last_modified":1601517447453},{"schema":1601376644621,"derHash":"zby+8W43I3cC+sxLVdOrkqF8+heDXhM3eqTSug/UegI=","subject":"CN=Cisco Meraki CA2,O=Cisco Systems\\, Inc.,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMRwwGgYDVQQKExNDaXNjbyBTeXN0ZW1zLCBJbmMuMRkwFwYDVQQDExBDaXNjbyBNZXJha2kgQ0Ey","whitelist":false,"attachment":{"hash":"3e5a1329226826601bdcf297eb985c9089c7df20bac76d529770ff0dcdc2bd3e","size":1752,"filename":"UNvyYoiHE-TJr4GNRJRQQVYLfL7m_X0ULyrRNeeQaKE=.pem","location":"security-state-staging/intermediates/8cd77c9b-486e-4100-9c8d-97ad44a4562c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UNvyYoiHE+TJr4GNRJRQQVYLfL7m/X0ULyrRNeeQaKE=","crlite_enrolled":false,"id":"0ec526cd-a0ef-4c4a-8b3b-a754ccb19f72","last_modified":1601517447434},{"schema":1601376637469,"derHash":"X4hpRhXkxhaG4Qa4TDM4xnIMU19g029hKC7RXhl33UQ=","subject":"CN=DigiCert Cloud Services CA-1,O=DigiCert Inc,C=US","subjectDN":"MEsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2
VydCBJbmMxJTAjBgNVBAMTHERpZ2lDZXJ0IENsb3VkIFNlcnZpY2VzIENBLTE=","whitelist":false,"attachment":{"hash":"bd47e7c223bc2e656a7455d83b5877cd3dbf66c20fcb9f464190df0a25d15bdb","size":1760,"filename":"UgpUVparimk8QCjtWQaUQ7EGrtrykc_L8N66EhFY3VE=.pem","location":"security-state-staging/intermediates/c6186265-d36f-4c14-952e-e41d57172aba.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UgpUVparimk8QCjtWQaUQ7EGrtrykc/L8N66EhFY3VE=","crlite_enrolled":true,"id":"8c1bcef6-6009-4c63-9b0a-3c13dfdbc750","last_modified":1601517447421},{"schema":1601376641748,"derHash":"jJegCPfOIfdG6vsuOuBgleVX0omjEMgsbzwC2fch5fg=","subject":"CN=VR IDENT EV SSL CA 2018,OU=VR IDENT,O=Fiducia & GAD IT AG,C=DE","subjectDN":"MGAxCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMREwDwYDVQQLDAhWUiBJREVOVDEgMB4GA1UEAwwXVlIgSURFTlQgRVYgU1NMIENBIDIwMTg=","whitelist":false,"attachment":{"hash":"27785b9964ca41a7f924e4715e32d3827904bec2c860b8f2f76367447209d89d","size":2089,"filename":"WDFtLnObNhLxa9b3x6LeuoWAZeafyD6
K2Il4Wi_HzF0=.pem","location":"security-state-staging/intermediates/f5ede2b0-fb12-43ce-bedd-eb7497d73176.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WDFtLnObNhLxa9b3x6LeuoWAZeafyD6K2Il4Wi/HzF0=","crlite_enrolled":true,"id":"da4a208a-302a-4e48-b4c4-e13b959e3b91","last_modified":1601517447407},{"schema":1601376636030,"derHash":"kn6b/A11wxRgcMPzr91KLBD3ZSiRJJl8xSz9EgnnY8s=","subject":"CN=JPRS Domain Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"f1fff265badcfcfaa0e9addfdc7577271845c1a6c9766600e36f19dc9bb90333","size":1780,"filename":"n1ufb8l1_ENW_uOKNKgHIeBe_NgVI39f0IzwWmCVHvE=.pem","location":"security-state-staging/intermediates/b3b041d6-10f4-47b8-9a9d-e23fc8550699.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n1ufb8l1/ENW/uOKNKgHIeBe/NgVI39f0I
zwWmCVHvE=","crlite_enrolled":true,"id":"d6ebc2af-8b16-4c9e-a668-85bc3c6e5db3","last_modified":1601517447392},{"schema":1601376640357,"derHash":"a0O0wkOqLZlEDA8UvexSMe7GPoaq8jdspwAgKEWNxyY=","subject":"CN=HydrantID EV SSL ICA G1,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMTAwLgYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxIDAeBgNVBAMTF0h5ZHJhbnRJRCBFViBTU0wgSUNBIEcx","whitelist":false,"attachment":{"hash":"b63de0fbdd8dbe519e4d6f674c13166625a717f8e6156297f07badf1c8b0d8fc","size":2438,"filename":"EnmchGPCp5YYVoSwFIxrS6A7RJUxstcXt8NlMXfA6Tw=.pem","location":"security-state-staging/intermediates/08efa28e-ac8e-4439-8571-25fa10e93a54.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EnmchGPCp5YYVoSwFIxrS6A7RJUxstcXt8NlMXfA6Tw=","crlite_enrolled":true,"id":"336fa754-0327-4934-8691-767db2f8c4e8","last_modified":1601517447374},{"schema":1601376634613,"derHash":"AD9x3EggIWV1/Fqs/jsa63b3Kupbjo/O/IC59RekphI=","subject":"CN=Microsoft Az
ure ECC TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDU=","whitelist":false,"attachment":{"hash":"312e807dea2263ef605990bfa0b57b238b64d9fea0fc945e37f48f3e6246d576","size":1329,"filename":"k09MzmwiRPkPmkpgmUtprMk_uALSVedNLtfOBkCMvXE=.pem","location":"security-state-staging/intermediates/2f5049d0-8147-4c75-8788-37b8cc132687.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k09MzmwiRPkPmkpgmUtprMk/uALSVedNLtfOBkCMvXE=","crlite_enrolled":false,"id":"cac77e25-ef10-4186-8398-2e2c849f9861","last_modified":1601517447354},{"schema":1601376638894,"derHash":"bINDiPKg0GlJxj788w13eC4lqCUBNZOeVJYCFFQO6kU=","subject":"CN=Root CA - G3,O=Root Networks\\, LLC,C=US","subjectDN":"MEExCzAJBgNVBAYTAlVTMRswGQYDVQQKDBJSb290IE5ldHdvcmtzLCBMTEMxFTATBgNVBAMMDFJvb3QgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"7a25b4650cf78598d30bd2fd71f98a9514917410a9123cf
8351a487e3ed9a093","size":1678,"filename":"ujBfMmfTX_3dCWQV89ZY2Tw4qhFf2vkDZrrqzCdlxfU=.pem","location":"security-state-staging/intermediates/a716f279-b6d3-4fb2-95c8-c4be3eb17af2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ujBfMmfTX/3dCWQV89ZY2Tw4qhFf2vkDZrrqzCdlxfU=","crlite_enrolled":true,"id":"027c9cd4-cf00-448e-94e8-dd1d17b4a715","last_modified":1601517447337},{"schema":1601376633198,"derHash":"sarhvNVV6KPR492o7ITnV8VSZVNEzj/uu6+Y6JXb7aw=","subject":"CN=QuoVadis Europe SSL CA G2,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFMxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEiMCAGA1UEAwwZUXVvVmFkaXMgRXVyb3BlIFNTTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"dfb31ebff112bccbef0ba90c29987f9962823acb59f69bd984351d9e2c7e22df","size":2381,"filename":"XOogr9_VItHwTOA_JogutdX4V06tVw9btHQLa2tR0_A=.pem","location":"security-state-staging/intermediates/a64232dc-7d88-4d93-8ab8-1406e19a3244.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XOogr9/VItHw
TOA/JogutdX4V06tVw9btHQLa2tR0/A=","crlite_enrolled":true,"id":"86ca8809-c9be-449b-953e-f7162dbeee9d","last_modified":1601517447320},{"schema":1601376628816,"derHash":"BeQAXbDDgvO9ZrR3KekBFXdgG/b3sofppSztcQ0lg0Y=","subject":"CN=Microsoft RSA TLS CA 02,O=Microsoft Corporation,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xIDAeBgNVBAMTF01pY3Jvc29mdCBSU0EgVExTIENBIDAy","whitelist":false,"attachment":{"hash":"b31f15756dd2424f4c72909e8e5489c3443c030299ab3270a47adebded78e565","size":1914,"filename":"1wMGTin0PoCN5O41h0-XIHXuzGRwDEa8ehHf7wSdSQE=.pem","location":"security-state-staging/intermediates/d2e5fdc3-84aa-4140-9187-817c95bd7ba2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1wMGTin0PoCN5O41h0+XIHXuzGRwDEa8ehHf7wSdSQE=","crlite_enrolled":true,"id":"0d0f8898-e508-48d6-9b66-e3b209767588","last_modified":1601517447304},{"schema":1601376627290,"derHash":"BN5Hqc3TCRz8Xvaqo7fUtT4TxNTcAjZPbAtAh0LsPHY=","subject":"CN=Valid Certificadora Digital Alph
aSSL CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGoxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxNTAzBgNVBAMTLFZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBBbHBoYVNTTCBDQSAyMDE4","whitelist":false,"attachment":{"hash":"d9ce06bfe7f10679316c826ca701910ff485eff604b066946a2f9397ac536aa7","size":1772,"filename":"sXlIJeJFOOvNqrgfAHM5544oX_ySPnrWUt8M7eFF0BM=.pem","location":"security-state-staging/intermediates/07ef1804-cfe6-4217-9420-629acd5754f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sXlIJeJFOOvNqrgfAHM5544oX/ySPnrWUt8M7eFF0BM=","crlite_enrolled":true,"id":"2f75750f-796d-48e1-87ec-0f623cba8354","last_modified":1601517447288},{"schema":1601376631782,"derHash":"aeLQbDDzZhZhZekdaNHO5cxHWEqAIn52ZmCGwBByQes=","subject":"CN=GlobalSign,OU=GlobalSign Root CA - R2,O=GlobalSign","subjectDN":"MEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFIyMRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu","whitelist":false,"attachment":{"hash":"a9f6d16a93aa62ba7
dbf378a10c0719ad51755b8d8276a662013037d6fbe06d3","size":1353,"filename":"iie1VXtL7HzAMF-_PVPR9xzT80kQxdZeJ-zduCB3uj0=.pem","location":"security-state-staging/intermediates/359bf7c2-bdab-4656-a7f3-cdb3dc7672bd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iie1VXtL7HzAMF+/PVPR9xzT80kQxdZeJ+zduCB3uj0=","crlite_enrolled":false,"id":"f3cb24be-3618-4b26-a4a6-1b25f3cf0023","last_modified":1601517447276},{"schema":1601376630285,"derHash":"CZg6JjLAM+uUScDr8h+bjUqZdcBvuOIPSlBC6eTMZBE=","subject":"CN=NII Open Domain CA - G5,O=National Institute of Informatics,C=JP","subjectDN":"MFsxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxIDAeBgNVBAMTF05JSSBPcGVuIERvbWFpbiBDQSAtIEc1","whitelist":false,"attachment":{"hash":"dffc20f5ea1b99f91d8665a18a15d299bddfa0b71cb6b19267a6efa7d6b7d6ed","size":12598,"filename":"aj-4mbqOOY7cgtDqWtgGaLG69EShl59AQocV--hJAk8=.pem","location":"security-state-staging/intermediates/f4c29470-a6fd-43c0-a33a-5ff5f52725f7.pem","mimetype":"app
lication/x-pem-file"},"pubKeyHash":"aj+4mbqOOY7cgtDqWtgGaLG69EShl59AQocV++hJAk8=","crlite_enrolled":true,"id":"d2f38b78-3b2b-479d-8f4c-a7f2f68fc57f","last_modified":1601517447261},{"schema":1601376624368,"derHash":"ffTT70V5j4xDhPxwK6UqRM571imLFBYo1Kurx2ePZGc=","subject":"CN=Microsoft Azure TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNg==","whitelist":false,"attachment":{"hash":"8d704ee294bd149733993801e0cbad6deaa30f162b02e59509443d2f13b07b74","size":2653,"filename":"Wl8MFY-9zijGG8QgEHCAK5fhA-ydPZxaLQOFdiEPz3U=.pem","location":"security-state-staging/intermediates/cc459e2e-5a1b-46ee-a8fb-e27ec23c89e6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wl8MFY+9zijGG8QgEHCAK5fhA+ydPZxaLQOFdiEPz3U=","crlite_enrolled":true,"id":"79efde4e-0f38-47f1-818d-bc7ec34f652f","last_modified":1601517447248},{"schema":1601376622963,"derHash":"lJ1rS3YcoTStPnqFcR
hvWA7oh/LGtWi1FA9BV/mNaN0=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDE=","whitelist":false,"attachment":{"hash":"1a3bc0dfeb8f9e3f79809953a727d69dc11a315684b4cf57c35d226206502e31","size":1329,"filename":"OZOx9JJC3JsSDSjFX2iEA3_ED6gCha3L1ZrOeRNoyx8=.pem","location":"security-state-staging/intermediates/82ad1928-1b21-4c0d-ba0a-c3f04d6691cf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OZOx9JJC3JsSDSjFX2iEA3/ED6gCha3L1ZrOeRNoyx8=","crlite_enrolled":true,"id":"9bc8e3bb-0a99-4d29-a7f9-6256977d6e41","last_modified":1601517447236},{"schema":1601376625746,"derHash":"vOcJE1XSQXo3+M/irI8XwnSIiLoO6pAAD8mA7PwtBB8=","subject":"CN=GlobalSign Atlas R6 EV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFUxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSswKQYDVQQDEyJHbG9iYWxTaWduIEF0bGFzIFI2IEVWIFRMUyBDQS
AyMDIw","whitelist":false,"attachment":{"hash":"7a27c45b53bfd5690bb01873eeb250e11a9b84a706cbbd33be1cafcbad5ed9a5","size":2402,"filename":"P7xnWSLQVg6f_MMaRe-f9TBAwDOlwdoyxweVGx8v2hY=.pem","location":"security-state-staging/intermediates/abbc51d6-58ed-461b-a517-c72a39e10eb4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"P7xnWSLQVg6f/MMaRe+f9TBAwDOlwdoyxweVGx8v2hY=","crlite_enrolled":true,"id":"456d5875-ff1b-473b-bc56-e5be4f248b30","last_modified":1601517447225},{"schema":1601376620104,"derHash":"MCQkQ/aJWpRWDkjk3/cgU26vUWPLQvXod0AqveL4Ynw=","subject":"CN=QuoVadis Global SSL ICA G3,O=QuoVadis Limited,C=BM","subjectDN":"ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMw==","whitelist":false,"attachment":{"hash":"63f37d712386cb1b4ab3fb0368f861aeb7ba74ec9b9bc7ecdd247bcf94725693","size":2373,"filename":"KM3iZPSceB-hgYuNI-cSg4LRgTiUxCeGjrfXRQAY6Rs=.pem","location":"security-state-staging/intermediates/22bf873e-f19a-445b-a1d8-
616b8f871405.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KM3iZPSceB+hgYuNI+cSg4LRgTiUxCeGjrfXRQAY6Rs=","crlite_enrolled":true,"id":"e101da6b-d1cb-4f14-badd-55bf7b2b98b3","last_modified":1601517447213},{"schema":1601376618691,"derHash":"jSXNlyKdv3A1a9pOs8xzQDHiTPAPr8/TLcdutYQcfqg=","subject":"CN=GTS Root R2,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMg==","whitelist":false,"attachment":{"hash":"4d0fda0d78fd282ab5f1cf69e3b3e458120a33cf3e5fdeb14796f324a389d74e","size":1910,"filename":"Vfd95BwDeSQo-NUYxVEEIlvkOlWY2SalKK1lPhzOx78=.pem","location":"security-state-staging/intermediates/18d175d2-d289-4938-9ea9-830a54586520.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vfd95BwDeSQo+NUYxVEEIlvkOlWY2SalKK1lPhzOx78=","crlite_enrolled":false,"id":"9c5a86fd-acfb-44e6-a965-16bd0489fce0","last_modified":1601517447198},{"schema":1601376621544,"derHash":"YIG+5bDfGRrE4mWsD294mfB4uM
ifBgVa4Wavkd9w1uA=","subject":"CN=e-Szigno Qualified QCP CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHoxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJzAlBgNVBAMMHmUtU3ppZ25vIFF1YWxpZmllZCBRQ1AgQ0EgMjAxNw==","whitelist":false,"attachment":{"hash":"280a786ca35892c86124fb11c5e02f70f1bf6cd40daa1e6538e054942241cdaf","size":1674,"filename":"zohU4uap0ZYaGxznYnSZfimXMiL0fPpOwF3CBDSo608=.pem","location":"security-state-staging/intermediates/0b5259bf-1e93-47a7-90b3-dca802d1f439.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zohU4uap0ZYaGxznYnSZfimXMiL0fPpOwF3CBDSo608=","crlite_enrolled":false,"id":"00fa2c99-0c09-488d-8cc5-539354f0043a","last_modified":1601517447186},{"schema":1601376617148,"derHash":"RAs3QW8t6FLKOGFQ1hHsCvMd1Y2KJ/iCgVp+o+5oSO4=","subject":"CN=Bloomberg TLS CA,O=Bloomberg LP,C=US","subjectDN":"MD8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxCbG9vbWJlcmcgTFAxGTAXBgNVBAMTEEJsb29tYmVyZyBUTFMgQ0E=","whitelist":f
alse,"attachment":{"hash":"e48dfa14c978c6bbeb5232c7e711afced2f56d20f367cd0a74a7100aac332138","size":1743,"filename":"wR5GLfX8HG7FhvZ7hnbmrGu1dPd6dkKlKYnCvd1A-v0=.pem","location":"security-state-staging/intermediates/ab934801-da9e-47a4-9ebd-e248835633fd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wR5GLfX8HG7FhvZ7hnbmrGu1dPd6dkKlKYnCvd1A+v0=","crlite_enrolled":false,"id":"14d2a1f9-84c0-4272-b5cc-bf8f1d0b1cef","last_modified":1601517447175},{"schema":1601376614329,"derHash":"ffgAB19SA8AXNk6BGVqayf8AxQfWSnD3N9jT6Ms/CEU=","subject":"CN=e-Szigno Qualified TLS CA 2018,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHoxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJzAlBgNVBAMMHmUtU3ppZ25vIFF1YWxpZmllZCBUTFMgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"df20fd29ecb80ea583b981311eed6c99114bffa8ab98b5265dc4c8efcc1897f0","size":1674,"filename":"qd9EIyfp7CEtbkxafeyYAuC_8wQBWqGZflkLznwnuyc=.pem","location":"security-
state-staging/intermediates/b21a2837-5b65-44b6-92b7-fec471d70713.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qd9EIyfp7CEtbkxafeyYAuC/8wQBWqGZflkLznwnuyc=","crlite_enrolled":true,"id":"2f5d27a3-cb0f-4f6b-b6b1-20c198d58fc8","last_modified":1601517447163},{"schema":1601376615736,"derHash":"BDerLsLCtIkClsE1A0sh2xRkNLgxfucDqoqpQ8XqUa4=","subject":"CN=Microsoft Azure TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMQ==","whitelist":false,"attachment":{"hash":"2777739491d74eeced727118790444484a83437e4e704c6697aa928b36a78bbb","size":2653,"filename":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=.pem","location":"security-state-staging/intermediates/0f03fd0a-27a3-4dc4-ae4b-cae63ccda207.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=","crlite_enrolled":true,"id":"9588f4b7-ef4c-454c-ae12-6fe792fd04fb"
,"last_modified":1601517447151},{"schema":1601376612913,"derHash":"NJ36QFjF4mMSOzmK55VXPE4TE8g/5o+TVWzV6AMbPH0=","subject":"CN=GTS Root R4,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSNA==","whitelist":false,"attachment":{"hash":"5f621c613a2dfb4502a29efcba11f0a010ef7954ea3464006115a9c300bdcdc1","size":764,"filename":"mEflZT5enoR1FuXLgYYGqnVEoZvmf9c2bVBpiOjYQ0c=.pem","location":"security-state-staging/intermediates/162ddfd3-2b0d-4442-bcce-7da7e8bf6407.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mEflZT5enoR1FuXLgYYGqnVEoZvmf9c2bVBpiOjYQ0c=","crlite_enrolled":false,"id":"9e098de2-8eff-4563-8498-48674d36fd03","last_modified":1601517447140},{"schema":1601376608575,"derHash":"LK77tV5w31qJhf6bwQ3VakDD3tqz2hUwopaCAVxbfGY=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjA
sBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDE=","whitelist":false,"attachment":{"hash":"a45e27eb4ce4e2624d46479d0ecf5a612e520e17ac29d9b405427a94f6798f65","size":1512,"filename":"OZOx9JJC3JsSDSjFX2iEA3_ED6gCha3L1ZrOeRNoyx8=.pem","location":"security-state-staging/intermediates/3712ec43-ab3a-42ad-b264-a74c80ef69e5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OZOx9JJC3JsSDSjFX2iEA3/ED6gCha3L1ZrOeRNoyx8=","crlite_enrolled":true,"id":"3c689452-ab89-4bf2-8422-175cc12405ef","last_modified":1601517447128},{"schema":1601376610110,"derHash":"iPwYvQcb4fvFP/vIAfA/WyxNqHu6DAmOK0gI8Z6rBf4=","subject":"CN=RNP ICPEdu OV SSL CA 2019,O=Rede Nacional de Ensino e Pesquisa - RNP,C=BR","subjectDN":"MGQxCzAJBgNVBAYTAkJSMTEwLwYDVQQKEyhSZWRlIE5hY2lvbmFsIGRlIEVuc2lubyBlIFBlc3F1aXNhIC0gUk5QMSIwIAYDVQQDExlSTlAgSUNQRWR1IE9WIFNTTCBDQSAyMDE5","whitelist":false,"attachment":{"hash":"292ae2e45b6a02ae65ded412e50c0abf3b623685bd49a8f6369bb4d5010c40d8","size":1784,"filename":"34rLDmx5N4tFlu_FT
yuZjezXxhR4lhOmxmSZ9Pjypro=.pem","location":"security-state-staging/intermediates/2d768dc6-b376-4595-aa5f-511c0ca86bbc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"34rLDmx5N4tFlu/FTyuZjezXxhR4lhOmxmSZ9Pjypro=","crlite_enrolled":true,"id":"13b1b2af-0a3e-4a0e-bd66-ac0c5569b5b2","last_modified":1601517447117},{"schema":1601376607092,"derHash":"l0uCB2FUzv9W7U21Yhhvc5SgL/OHqiBdY2eosI/3+qA=","subject":"CN=e-Szigno Online SSL CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJDAiBgNVBAMMG2UtU3ppZ25vIE9ubGluZSBTU0wgQ0EgMjAxNw==","whitelist":false,"attachment":{"hash":"0abdd69f4b3ccf85097142e285b47d52e0f91c59aa3e684dfa3c25bb3c8d6039","size":1666,"filename":"G_JwHP_ydSe7pufWcUyNckBrxBbnQ6Kmqw_OFPPiQI0=.pem","location":"security-state-staging/intermediates/0db470e8-a13c-4fce-ba60-4c8e912112f6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G/JwHP/ydSe7pufWcUyNc
kBrxBbnQ6Kmqw/OFPPiQI0=","crlite_enrolled":false,"id":"be3dd44c-e4c2-4dea-82b9-1119b2b6f158","last_modified":1601517447105},{"schema":1601376611528,"derHash":"FkjOSrG7ZcSFyyI2x2j6u4ZRR9QmkVuSr7yoHpsu47w=","subject":"CN=e-Szigno Qualified Pseudonymous CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGDMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xFzAVBgNVBGEMDlZBVEhVLTIzNTg0NDk3MTAwLgYDVQQDDCdlLVN6aWdubyBRdWFsaWZpZWQgUHNldWRvbnltb3VzIENBIDIwMTc=","whitelist":false,"attachment":{"hash":"babeb483e7bc13a161427464ff4aa32b126458a9b7bd684609420f8d1a7cb6ab","size":1687,"filename":"9Mm86u4WwGKlrCcut3imyBIja3zt37WI7jdpaAucZOs=.pem","location":"security-state-staging/intermediates/544f8df8-fe6c-4936-b396-e58147817864.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9Mm86u4WwGKlrCcut3imyBIja3zt37WI7jdpaAucZOs=","crlite_enrolled":false,"id":"88241fa1-e1ea-449a-89fc-9125fa95445b","last_modified":1601517447093},{"schema":1601376605658,"derHash":"GgdSmos/
AdIx360qvfcYmSALtlzX4DxZ+oInJTM1W3Q=","subject":"CN=R4,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSNA==","whitelist":false,"attachment":{"hash":"e7c443b15be49a4083c31378f2a1749ea59e73cd564b4d4e0465ea2d9d839146","size":1825,"filename":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX-WPd5kPLQM=.pem","location":"security-state-staging/intermediates/7295ba60-db16-49ff-8ccd-589f3c2d0632.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX+WPd5kPLQM=","crlite_enrolled":false,"id":"9e2ed41b-4f49-45cf-b525-68dac3e4fc03","last_modified":1601517447080},{"schema":1601376602750,"derHash":"+2BghIRAqkWU/oEJdB76tAxWcysmxnw21tyUW7L+E88=","subject":"CN=Plex Devices High Assurance CA3,O=Plex\\, Inc.,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpQbGV4LCBJbmMuMSgwJgYDVQQDEx9QbGV4IERldmljZXMgSGlnaCBBc3N1cmFuY2UgQ0Ez","whitelist":false,"attachment":{"hash":"cc6eb0f3e51ae41188fd3477d2b097eb3bfd190c1e01766f9836d30c6d3
79aaa","size":1817,"filename":"7vFogPWQjRRrBULu9CTSZG05Zp5wI5psu-SVeew9nqo=.pem","location":"security-state-staging/intermediates/8a525834-15cd-4e6d-805f-40c255beee70.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7vFogPWQjRRrBULu9CTSZG05Zp5wI5psu+SVeew9nqo=","crlite_enrolled":false,"id":"2aeb4971-751b-44b1-b195-c573c242c491","last_modified":1601517447057},{"schema":1601376595585,"derHash":"kfGc5QPJ/n/5WH2O++9zFarud9wtFFJhJkk7Stb+gB8=","subject":"CN=Trusted Root TLS CA SHA256 G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1UcnVzdGVkIFJvb3QgVExTIENBIFNIQTI1NiBHMw==","whitelist":false,"attachment":{"hash":"9e03d57a2b38ff0564d3f320d536aae856aa3db18618f722e03e7da8e2a0d9eb","size":1674,"filename":"hMdIk_Qh87wkhjuY3vWYC85yuCKrEfbi9b3j7xJNPec=.pem","location":"security-state-staging/intermediates/34bd21db-03ad-4d1f-8aac-923be9545dda.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hMdIk/Qh87wkhjuY3vWYC85yuCKrEf
bi9b3j7xJNPec=","crlite_enrolled":false,"id":"cfd4ef1e-3a44-4b12-b34e-4223ff9c39b2","last_modified":1601517447046},{"schema":1601376599850,"derHash":"5vpISoWJQNEBl4VVRUqkZlMatsSrxK0rAAYmqqwNBPk=","subject":"CN=RapidSSL TLS DV RSA Mixed SHA256 2020 CA-1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKlJhcGlkU1NMIFRMUyBEViBSU0EgTWl4ZWQgU0hBMjU2IDIwMjAgQ0EtMQ==","whitelist":false,"attachment":{"hash":"e080ccfbdfc6374397f903976e83dea4fdecc00a0a36cd72f9c882ceff09e62a","size":1902,"filename":"48hXNwn3laJAzsrIBprOcewUb097BGNL7e-MVM7Rcis=.pem","location":"security-state-staging/intermediates/ec813aa3-890f-4aaf-af70-891b2f9ac694.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"48hXNwn3laJAzsrIBprOcewUb097BGNL7e+MVM7Rcis=","crlite_enrolled":true,"id":"b6bfa80e-3f0f-4690-b7d7-23d34186cfc8","last_modified":1601517447035},{"schema":1601376601295,"derHash":"02gLTj+I2x9bud3b+2v/MZx4Dj2fRO4k7BmVq0LWkU8=","subject":"CN=GIAG4x,O=Google Trust S
ervices LLC,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMQ8wDQYDVQQDEwZHSUFHNHg=","whitelist":false,"attachment":{"hash":"7863677df584a77841650e5ad47e7ef8f7c42807c9d69969881133b275b19a50","size":1991,"filename":"AAGolo0N1iZa5uuvm02csZnkuZs8hvI-HRLhAHtNhqk=.pem","location":"security-state-staging/intermediates/201e7f79-691e-483a-a577-cb5954177a09.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AAGolo0N1iZa5uuvm02csZnkuZs8hvI+HRLhAHtNhqk=","crlite_enrolled":true,"id":"06dbcd12-25fc-4a32-8d4c-764f1fa66c80","last_modified":1601517447023},{"schema":1601376594131,"derHash":"2sqgn/rY9m7bbtaXB6gnyeRMH5fEjwF5SF8gbXB7Pis=","subject":"CN=NII Open Domain CA - G5,O=National Institute of Informatics,C=JP","subjectDN":"MFsxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxIDAeBgNVBAMTF05JSSBPcGVuIERvbWFpbiBDQSAtIEc1","whitelist":false,"attachment":{"hash":"ef925783f986610c821619c78a724b477a9c2b4492f84e6446635c18799dc2f9",
"size":12623,"filename":"aj-4mbqOOY7cgtDqWtgGaLG69EShl59AQocV--hJAk8=.pem","location":"security-state-staging/intermediates/8c3bcdfd-c7d2-4fdd-9211-dbb84bb4eb1a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aj+4mbqOOY7cgtDqWtgGaLG69EShl59AQocV++hJAk8=","crlite_enrolled":true,"id":"929ecfd8-abd5-4745-9e8a-0a336c38b785","last_modified":1601517447012},{"schema":1601376598367,"derHash":"4iFgNk5W98JyNPVDXYR3saW7ugEQMpjzlUkJGA3wJ3g=","subject":"CN=VR IDENT SSL CA 2018,OU=VR IDENT,O=Fiducia & GAD IT AG,C=DE","subjectDN":"MF0xCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMREwDwYDVQQLDAhWUiBJREVOVDEdMBsGA1UEAwwUVlIgSURFTlQgU1NMIENBIDIwMTg=","whitelist":false,"attachment":{"hash":"ad86215f7ef8a6f4477d1e9ceb7ec59f0773886cebfee09bac4eb456aa559c8c","size":2085,"filename":"9frFyfDp-D9WCFjQblKwXUi5EgVRtx22594YJETOc_Y=.pem","location":"security-state-staging/intermediates/ec4121ac-bc6c-4e56-a364-4f4fd043fe83.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9frFyfDp+D9WCFj
QblKwXUi5EgVRtx22594YJETOc/Y=","crlite_enrolled":true,"id":"36d968fe-300d-4647-a1dc-b69c50bd236f","last_modified":1601517447000},{"schema":1601376591167,"derHash":"1ehNmmd+bNpy3Rwbp62N38Je+sIgyKlXHOwnwQdVVwI=","subject":"CN=ICPEdu,O=Rede Nacional de Ensino e Pesquisa - RNP,C=BR","subjectDN":"MFExCzAJBgNVBAYTAkJSMTEwLwYDVQQKEyhSZWRlIE5hY2lvbmFsIGRlIEVuc2lubyBlIFBlc3F1aXNhIC0gUk5QMQ8wDQYDVQQDEwZJQ1BFZHU=","whitelist":false,"attachment":{"hash":"9b9ef56a8e9ed418407c8f8b194145af30c2c29e7dceb0b41ecc390660a45493","size":1735,"filename":"m_Zke2f6Q6acou-ZOFg-8OdSCzint_5uosSYaFXE3EM=.pem","location":"security-state-staging/intermediates/023abc51-e443-459b-b3d5-6898ddf046fd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m/Zke2f6Q6acou+ZOFg+8OdSCzint/5uosSYaFXE3EM=","crlite_enrolled":true,"id":"168d707f-83ff-429a-a54e-c3f9bb1c6afe","last_modified":1601517446973},{"schema":1601376588314,"derHash":"8Z1VzQij6kK9kVCAc4IxdN2SNwITwXf4JTF1badQilE=","subject":"CN=JPRS Domain Validation Author
ity - G4,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzQ=","whitelist":false,"attachment":{"hash":"d1fbc1604b7b78d8673b6b7247a33b5d142c6ebaa41b8e0412cedc570a24b3d7","size":1780,"filename":"KbEUDafDNIUlOxLiaD-8KAlxp-gea65O57qq4l5SFl8=.pem","location":"security-state-staging/intermediates/d06f72b5-3ee5-451e-b19b-87a6d6e9d7ad.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KbEUDafDNIUlOxLiaD+8KAlxp+gea65O57qq4l5SFl8=","crlite_enrolled":true,"id":"00b4fe55-009b-4329-870b-f41b82632937","last_modified":1601517446958},{"schema":1601376586918,"derHash":"XEUjNNnJyaLqQsx3pxZeF5XunYTrcMt4S0fqnZKlgtk=","subject":"CN=Soluti CA - DV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,C=BR","subjectDN":"MF8xCzAJBgNVBAYTAkJSMTcwNQYDVQQKEy5TT0xVVEkgLSBTT0xVQ09FUyBFTSBORUdPQ0lPUyBJTlRFTElHRU5URVMgUy9BMRcwFQYDVQQDEw5Tb2x1dGkgQ0EgLSBEVg==","whitel
ist":false,"attachment":{"hash":"8265936e7b87a7845ad3792c1bfbde5b8469f44276f048e773d7d306888e920a","size":1756,"filename":"kAzMeuwjUBWfPL5YEYfQG9qK_ABDxl0BMvPtzwEPN7E=.pem","location":"security-state-staging/intermediates/5d4ddc4f-7993-45bf-85a2-6ceec4bee87c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kAzMeuwjUBWfPL5YEYfQG9qK/ABDxl0BMvPtzwEPN7E=","crlite_enrolled":true,"id":"099088c0-fda2-4d4e-8994-f1c2d2324da0","last_modified":1601517446944},{"schema":1601376592637,"derHash":"xj35YY+69IZiuhKr6HshLPd3wnpEag+lVdep0ZEUjtc=","subject":"CN=Trustwave Global ECDSA P-384 Domain Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGaMUMwQQYDVQQDEzpUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMzg0IERvbWFpbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"e81cc0a883e6e41a009a5d876bc62528cd6b26b1edd7421071b6ff434d
ca6265","size":1390,"filename":"NIbNiw79lRjCX7hAKe6oYePjjaaAQ9l_zvmwptYjCgg=.pem","location":"security-state-staging/intermediates/7c9dffb0-6aeb-4bdf-b8db-f5e872badd2b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NIbNiw79lRjCX7hAKe6oYePjjaaAQ9l/zvmwptYjCgg=","crlite_enrolled":false,"id":"4ab5e3ff-7ca1-404f-8d51-ff0a87281a04","last_modified":1601517446930},{"schema":1601376585488,"derHash":"wa13eHltILymXIiaJlUCEVZSi7Yv9fpD4bjlqD49Lqo=","subject":"CN=DigiCert SHA2 Secure Server CA,O=DigiCert Inc,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"f4d91481d1e4e17c44e796f180b7b4af9f0ae8e97cf8d41165640b3fdefd8f5d","size":1760,"filename":"5kJvNEMw0KjrCAu7eXY5HZdvyCS13BbA0VJG1RSP91w=.pem","location":"security-state-staging/intermediates/97d8919a-981a-48f8-aaf7-c8bb7fce029c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5kJvNEMw0KjrCAu7eXY5HZdvyCS13BbA0VJG
1RSP91w=","crlite_enrolled":true,"id":"a6bcf5b7-81c1-46f8-81ff-00adef177a8c","last_modified":1601517446898},{"schema":1601376580991,"derHash":"2UdDKr3nt/qQ/C5rWRAbEoDg4cfk5A+jxoh//1en9M8=","subject":"CN=GTS Root R1,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMQ==","whitelist":false,"attachment":{"hash":"56cc033ba7b1b7f111791affa1f1df410009c08c0b9a625d2bbe0a30aca502bb","size":1910,"filename":"hxqRlPTu1bMS_0DITB1SSu0vd4u_8l8TjPgfaAp63Gc=.pem","location":"security-state-staging/intermediates/93ef7a02-e8d5-4844-979f-44ee6395f343.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hxqRlPTu1bMS/0DITB1SSu0vd4u/8l8TjPgfaAp63Gc=","crlite_enrolled":false,"id":"eb48188a-e93a-4e46-8709-36bdc859d240","last_modified":1601517446886},{"schema":1601376583949,"derHash":"RklOMDeQWd8YvlISQwXmBvxZBw5bIQds4ROVS2BRfNo=","subject":"CN=E1,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKE
w1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJFMQ==","whitelist":false,"attachment":{"hash":"14cf69c79f1a688b326247f724ad50a3b22de5e34daf12c66670e5a38b1273d0","size":1020,"filename":"J2_oqMTsdhFWW_n85tys6b4yDBtb6idZayIEBx7QTxA=.pem","location":"security-state-staging/intermediates/aed297e0-bd28-4811-8d38-5b759a3b3026.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"J2/oqMTsdhFWW/n85tys6b4yDBtb6idZayIEBx7QTxA=","crlite_enrolled":false,"id":"1141e315-003d-455f-8db2-84954ef57b40","last_modified":1601517446875},{"schema":1601376582516,"derHash":"iZlLbZ2d3/9of6vT5zQs3YUi1mH1786Oar3rJaBPECM=","subject":"CN=QuoVadis Europe SSL CA G1,O=QuoVadis Trustlink BVBA,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMSAwHgYDVQQKExdRdW9WYWRpcyBUcnVzdGxpbmsgQlZCQTEiMCAGA1UEAxMZUXVvVmFkaXMgRXVyb3BlIFNTTCBDQSBHMQ==","whitelist":false,"attachment":{"hash":"4446a8961707823fad23675d037ebcc454ecda2fe98586b7839466271d4521a2","size":2369,"filename":"k3XnEYQCK79AtL9GYnT_nyhsabas03V-bhRQYHQbpXU=.pem","location":"security-stat
e-staging/intermediates/f260e4c6-6602-47d8-b091-aa180b906619.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k3XnEYQCK79AtL9GYnT/nyhsabas03V+bhRQYHQbpXU=","crlite_enrolled":true,"id":"ac9b7c21-b5e0-4211-af9f-f972e93e12a6","last_modified":1601517446863},{"schema":1601376575218,"derHash":"TsQ5ZypENAGmbieUfMO1iX8TK2Z/cSzBo3AYo8yFsWo=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDI=","whitelist":false,"attachment":{"hash":"d6b88839e53fd1739f156f78254837d2b4b300f968dc9ab78c1f926d2648da2c","size":1508,"filename":"OhdUJ-wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=.pem","location":"security-state-staging/intermediates/e0df5215-e166-4b85-982c-ca84a269c0b5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OhdUJ+wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=","crlite_enrolled":false,"id":"b24f85ea-0f0f-4a8a-ab1e-ae3b2fcb
9f7a","last_modified":1601517446852},{"schema":1601376579574,"derHash":"NNinPuII2bzbDZVlIJNLTkDmlIJZbotvc8hCawEKb0g=","subject":"CN=GTS Root R3,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMw==","whitelist":false,"attachment":{"hash":"3febe52108c8006fec57c9deeef32126e877134377f5fed563452d77eb20ce23","size":764,"filename":"QXnt2YHvdHR3tJYmQIr0Paosp6t_nggsEGD4QJZ3Q0g=.pem","location":"security-state-staging/intermediates/f16dce1f-4902-45b2-81af-f5793daff8e4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QXnt2YHvdHR3tJYmQIr0Paosp6t/nggsEGD4QJZ3Q0g=","crlite_enrolled":false,"id":"183bf702-6f79-4eff-94c6-c38c248affbe","last_modified":1601517446840},{"schema":1601376578159,"derHash":"us3gRjBTzh1i+L50Nwu6551PyvGfwHZDrvGV5qWb1Xg=","subject":"CN=E2,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJFMg==","whitelist":false,"attachment":
{"hash":"051882dab9b07102f7aba08eef5eb943e8b8096631074d7f98f9c7dcef77e86d","size":1020,"filename":"vZNucrIS7293MQLGt304-UKXMi78JTlrwyeUIuDIknA=.pem","location":"security-state-staging/intermediates/91546249-fef0-4823-a9ed-185c11ff8809.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vZNucrIS7293MQLGt304+UKXMi78JTlrwyeUIuDIknA=","crlite_enrolled":false,"id":"a9e072f6-e8b9-4cd0-bd25-18fc9624033e","last_modified":1601517446828},{"schema":1601376576656,"derHash":"3cu08wUdbmATEOsORrW7mcXouZ96U542eph96gMOMY4=","subject":"CN=Aetna Inc. Secure CA2,O=Aetna Inc,C=US","subjectDN":"MEExCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZXRuYSBJbmMxHjAcBgNVBAMTFUFldG5hIEluYy4gU2VjdXJlIENBMg==","whitelist":false,"attachment":{"hash":"f0c9af66d96dd17fa4676b867f59ad47a1e282afe025a8c07064a4124e677b47","size":1800,"filename":"NIgvyyhcGFo7vlL_K_w6cn8iFWO9ftJXWrIU77O5hMI=.pem","location":"security-state-staging/intermediates/c52a5d8c-8943-4eaa-bc48-88843df5b604.pem","mimetype":"application/x-pem-file"},"pubKeyHash
":"NIgvyyhcGFo7vlL/K/w6cn8iFWO9ftJXWrIU77O5hMI=","crlite_enrolled":true,"id":"80b0b822-d489-4a48-a0ea-77bb1d2013fc","last_modified":1601517446816},{"schema":1601376573787,"derHash":"NH0Y3Mwu/FGpIOen+7B7+9o1YTaB+C3KXExyuwyDwDU=","subject":"CN=VR IDENT SSL CA 2020,O=Fiducia & GAD IT AG,C=DE","subjectDN":"MEoxCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMR0wGwYDVQQDDBRWUiBJREVOVCBTU0wgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"4158e246be129509cb8d8eb14b647517fea0196e81a9d593f4b8f64a11a6414f","size":2357,"filename":"fQUctsUYoew1aFnAFT0prf-kJmkVNqkPo2jJ5Jm9RaA=.pem","location":"security-state-staging/intermediates/b7b9a6e5-c886-4743-80e1-a004bb1d75fa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fQUctsUYoew1aFnAFT0prf+kJmkVNqkPo2jJ5Jm9RaA=","crlite_enrolled":true,"id":"d7d2fa4e-5c2b-416e-8b89-ab9fdc251bbf","last_modified":1601517446797},{"schema":1601376570852,"derHash":"1oMbpDYH9awZd41idTFWKvVRRfGRyrXvr6DgAFRCswI=","subject":"CN=Microsoft Azure TLS Issuin
g CA 05,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNQ==","whitelist":false,"attachment":{"hash":"eec823ad61a76103455ac29ab1ea726af33851691074cffd1fb703c49fe85217","size":2121,"filename":"4i4h0jN9NROr1xKJI-TQ1Q_ZIfUjPMXtmWUsDR3Pjiw=.pem","location":"security-state-staging/intermediates/e3b5ce85-565e-482f-b742-aae47955c01f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4i4h0jN9NROr1xKJI+TQ1Q/ZIfUjPMXtmWUsDR3Pjiw=","crlite_enrolled":true,"id":"8fc3b269-4824-4ae9-9b9d-2d5ab7099766","last_modified":1601517446782},{"schema":1601376569389,"derHash":"HYDNGKeU8fSFDtwzxgSPAuhThqR/POg2l0qORSpg1/I=","subject":"CN=GeoTrust TLS DV RSA Mixed SHA256 2021 CA-1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkdlb1RydXN0IFRMUyBEViBSU0EgTWl4ZWQgU0hBMjU2IDIwMjEgQ0EtMQ==","whitelist":false,"attachment":{"hash":"2e0cee661a4a6fd3
b4cc86995b705e916cb3c5b536a617c5d74956b4574cf947","size":1902,"filename":"WcAfM-6Mq47-SAT2M-PbyDhIlS5ynmlHH9IlN6Jm0AQ=.pem","location":"security-state-staging/intermediates/d00fd466-270b-4020-bcdc-6546fd39651d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WcAfM+6Mq47+SAT2M+PbyDhIlS5ynmlHH9IlN6Jm0AQ=","crlite_enrolled":false,"id":"0fb16912-e152-4389-8528-af7e45b4a303","last_modified":1601517446770},{"schema":1601376567997,"derHash":"JMcpmGTgoqaWT1UcDo3yRhUy+oxI5Nu7YIBxZpHxkOU=","subject":"CN=Microsoft Azure TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMQ==","whitelist":false,"attachment":{"hash":"1963ee36a9c20eb3169ad73cd42da09bfc6829eb50f71d6216925c6b9c2dddcb","size":2121,"filename":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=.pem","location":"security-state-staging/intermediates/a7c93098-e1be-467b-b69f-faa129a552ab.pem","mimetype":"appli
cation/x-pem-file"},"pubKeyHash":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=","crlite_enrolled":true,"id":"476c2db8-a579-44d3-a747-000ac1f604c4","last_modified":1601517446759},{"schema":1601376563770,"derHash":"lYjvdBmeRazvzM/AxHAQ6fKjeh3UTGGk4cazNNpa9hQ=","subject":"CN=DigiCert EV RSA CA G2,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFURpZ2lDZXJ0IEVWIFJTQSBDQSBHMg==","whitelist":false,"attachment":{"hash":"6c7a7611b0ccd14478c030a701a6eee0909ea61c24f76a90cf4f5eaec2ddfd88","size":1873,"filename":"w9I8WrpHr1YAS0DugvLGsrI9Vm1yEkZAyllKxemXXf4=.pem","location":"security-state-staging/intermediates/2a18cd5e-bcf4-44b2-a1f9-a25d0729bb7c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"w9I8WrpHr1YAS0DugvLGsrI9Vm1yEkZAyllKxemXXf4=","crlite_enrolled":true,"id":"1d6a3599-67f8-40a4-917a-3ab4dccd05ad","last_modified":1601517446748},{"schema":1601376566564,"derHash":"nGSppD6ZDpj7zoMXstTBwH/+bgMtqLttYKaW4v8Djx8=","subject":"CN=Microsoft
Azure ECC TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDI=","whitelist":false,"attachment":{"hash":"10551307f634eba8fbd03c34df0f74b6bf4e7d3b3857885e7e915dc171786627","size":1329,"filename":"OhdUJ-wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=.pem","location":"security-state-staging/intermediates/b60d08eb-819e-4b81-9b83-eeafe6a230a6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OhdUJ+wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=","crlite_enrolled":false,"id":"d0e47240-43a2-4706-a470-f44bd78b9892","last_modified":1601517446736},{"schema":1601376572369,"derHash":"aXKbjhWobvwXelevtxcd/GSt0owvyozxUH40RTzLFHA=","subject":"CN=ISRG Root X2,O=Internet Security Research Group,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgy","whitelist":false,"attachment":{"hash":"df3c4c472795ccd5
ca93453fa1024c35f64466f19536a34fb21d39c840e2e27b","size":789,"filename":"diGVwiVYbubAI3RW4hB9xU8e_CH2GnkuvVFZE8zmgzI=.pem","location":"security-state-staging/intermediates/8249b5fc-9f4b-4ce8-abcf-e69d8668a819.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"diGVwiVYbubAI3RW4hB9xU8e/CH2GnkuvVFZE8zmgzI=","crlite_enrolled":false,"id":"ec4c0f03-0d74-4029-98eb-969399ddf1b3","last_modified":1601517446713},{"schema":1601376562331,"derHash":"Z63RFmsCCuYbj1/JaBPATCqliZYHloZVcqPH5zdhPf0=","subject":"CN=R3,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSMw==","whitelist":false,"attachment":{"hash":"c298ec17b9257dbfb7f36280caade22c6317186c146b5fdd5792bcb77afced29","size":1825,"filename":"jQJTbIh0grw0_1TkHSumWb-Fs0Ggogr621gT3PvPKG0=.pem","location":"security-state-staging/intermediates/7e7a0279-0dad-4fd9-81d3-64173b7386bc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jQJTbIh0grw0/1TkHSumWb+Fs0Ggogr621gT3PvPKG0=","crlite_enro
lled":false,"id":"e559297e-5536-435f-919c-c382724f485b","last_modified":1601517446702},{"schema":1601376559371,"derHash":"GGJqO3IREo1WNGnGVFV9E8k2bX/OyLlNtPCqfgWUQEE=","subject":"CN=Trustwave Global Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGQMTkwNwYDVQQDEzBUcnVzdHdhdmUgR2xvYmFsIEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EsIExldmVsIDExITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjEQMA4GA1UEBxMHQ2hpY2FnbzERMA8GA1UECBMISWxsaW5vaXMxCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"4e61dd89fb06d5da14f5a4b0f7a2328cd7ab2dea6544a50ea59b3e7d59167e32","size":2515,"filename":"V3f1xGezL0zYaRJqAhBzSKsvj3vEMlp9KGBwnV4be38=.pem","location":"security-state-staging/intermediates/40795e76-4053-4806-aaa7-a950a1cb31b0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V3f1xGezL0zYaRJqAhBzSKsvj3vEMlp9KGBwnV4be38=","crlite_enrolled":true,"id":"6cfc11a9-c2ed-4bfa-9d64-f401bc35007b","last_modified":1601517446679},{"schema":1601376552121,"derHa
sh":"xnDHm/J3r357NKaqT6MERBgzxr0Bpwp+m3otlMHB+SY=","subject":"CN=certSIGN Qualified CA,O=CERTSIGN SA,C=RO","subjectDN":"MFwxCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEeMBwGA1UEAxMVY2VydFNJR04gUXVhbGlmaWVkIENBMRcwFQYDVQRhEw5WQVRSTy0xODI4ODI1MA==","whitelist":false,"attachment":{"hash":"22d738f384d471ab73b8f3d1ec90fd80d0f61bf77294a7139dc772f58bb58e1a","size":2316,"filename":"hztK7Nl786SeQOWatriSlHoTSUt-1THcFFIGKRr08bk=.pem","location":"security-state-staging/intermediates/f1489932-a573-46d9-8a92-b0e3602d6b75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hztK7Nl786SeQOWatriSlHoTSUt+1THcFFIGKRr08bk=","crlite_enrolled":false,"id":"72fc535e-8f0d-4e88-93c6-72376b952d1a","last_modified":1601517446667},{"schema":1601376555038,"derHash":"MqTlVONjEW/kjiLwHawXNnUqcccg+Z9GLVZQItO60H0=","subject":"CN=DPDHL Global TLS CA - I5,O=Deutsche Post AG,C=DE","subjectDN":"MEsxCzAJBgNVBAYTAkRFMRkwFwYDVQQKExBEZXV0c2NoZSBQb3N0IEFHMSEwHwYDVQQDExhEUERITCBHbG9iYWwgVExTIENBIC0gSTU=","whitelist":fals
e,"attachment":{"hash":"136f459d98a2f42f67f606dcf55c11198fea1f244cf8003c576d60d969cef1ac","size":1695,"filename":"90SkSHjn6UuYfQCvunxuVf7tHQJ3Y7-_aukXzu-S0_M=.pem","location":"security-state-staging/intermediates/3efe881e-11a4-4301-908e-d7eee31dc4cd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"90SkSHjn6UuYfQCvunxuVf7tHQJ3Y7+/aukXzu+S0/M=","crlite_enrolled":true,"id":"83a27672-fbfe-478b-b63b-a1ac28382021","last_modified":1601517446646},{"schema":1601376553578,"derHash":"BO7qjlC0d1s8JHlyYpF+5QAC7Ex1tWzfPuHBjPylulI=","subject":"CN=Microsoft RSA TLS CA 01,O=Microsoft Corporation,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xIDAeBgNVBAMTF01pY3Jvc29mdCBSU0EgVExTIENBIDAx","whitelist":false,"attachment":{"hash":"d21d673254fc1596b7b7c3a9a38e33ab09f786822535934e507dec3291deab5a","size":1914,"filename":"aJfLgiqk2RiMTiftDuK1Y2Y68uYH6daftf7O6r4ccks=.pem","location":"security-state-staging/intermediates/aa5247b7-b9cf-4225-87d6-0d81706e6bd2.pem","mim
etype":"application/x-pem-file"},"pubKeyHash":"aJfLgiqk2RiMTiftDuK1Y2Y68uYH6daftf7O6r4ccks=","crlite_enrolled":true,"id":"512871ef-52ae-48c3-9b77-a4853cd57ef7","last_modified":1601517446632},{"schema":1601376549115,"derHash":"PyJb2814jOkkhwyvkvgUt8b/Ttq6utk/HTqRdyUs8dE=","subject":"CN=QuoVadis Qualified Web ICA G3,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFcxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEmMCQGA1UEAwwdUXVvVmFkaXMgUXVhbGlmaWVkIFdlYiBJQ0EgRzM=","whitelist":false,"attachment":{"hash":"8eb4cfbfd4e31a971f563f4a974c582ecd679cc8c15604af9f0f24fb1daf720e","size":2385,"filename":"e7hbHQSuhSDkhjhlY1CGhoHNKcgJCpQxSU_inT417rc=.pem","location":"security-state-staging/intermediates/7fee1a5f-8384-4340-9b00-3022795d91e6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e7hbHQSuhSDkhjhlY1CGhoHNKcgJCpQxSU/inT417rc=","crlite_enrolled":false,"id":"8c0d1791-073e-4560-9737-df4f28bdae8c","last_modified":1601517446609},{"schema":1601376557942,"derHash":"mRe/2FNziYXk
bJIEGUEOlmwxaYJ2nnGBfifQOEu+Nnk=","subject":"CN=certSIGN Public CA,O=CERTSIGN SA,C=RO","subjectDN":"MFkxCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEbMBkGA1UEAxMSY2VydFNJR04gUHVibGljIENBMRcwFQYDVQRhEw5WQVRSTy0xODI4ODI1MA==","whitelist":false,"attachment":{"hash":"d61a1b35a91c710f44d6b989faabe0cbe91a89dbc701983bdbf2602b85bf3038","size":2312,"filename":"IGxtWhsxuC58R149YREUyaqPK7jXR9no_MMC227zRVo=.pem","location":"security-state-staging/intermediates/1e86dd0e-4dbe-4e62-96a7-ff8105badaf4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IGxtWhsxuC58R149YREUyaqPK7jXR9no/MMC227zRVo=","crlite_enrolled":false,"id":"a8c42df1-8fa0-4806-b23c-c738e23dc581","last_modified":1601517446597},{"schema":1601376547689,"derHash":"PuAnjfcfo8ElxM1IfwHXdGlOb8V+DNlMJO/XaRM5GOU=","subject":"CN=GTS Root R1,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMQ==","whitelist":false,"attachment":{"hash":"a7e1e9af
45661eb891874dbac46389428139246fe7050143e9b0fd233f74e236","size":1926,"filename":"hxqRlPTu1bMS_0DITB1SSu0vd4u_8l8TjPgfaAp63Gc=.pem","location":"security-state-staging/intermediates/ce5580e6-ae0d-4210-908a-37cf76309cf0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hxqRlPTu1bMS/0DITB1SSu0vd4u/8l8TjPgfaAp63Gc=","crlite_enrolled":false,"id":"5aadf4a5-f650-462e-9a63-dc6992d5c308","last_modified":1601517446574},{"schema":1601376544904,"derHash":"LmPcG+z0J/mQK0neYzD9Po7r+IsU5lOzui431OSICWU=","subject":"CN=Trustwave Global Organization Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGUMT0wOwYDVQQDEzRUcnVzdHdhdmUgR2xvYmFsIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"9d9bb0ca6a8a59110e9ecd8714e94894e0be5886e46f9c4e5265ffa83dcece40","size":2519,"filename":"z4qrcPL95VQXuiBgseJjj0
x2uKXj6NQcTxtcnoGWFyk=.pem","location":"security-state-staging/intermediates/d07f4614-6ee6-486f-a186-ba85e88f2762.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z4qrcPL95VQXuiBgseJjj0x2uKXj6NQcTxtcnoGWFyk=","crlite_enrolled":false,"id":"0b5e934d-aa20-488f-9bc5-23db1b6cf78f","last_modified":1601517446563},{"schema":1601376546320,"derHash":"WAuzqxJ/XhPpQK5zZePGmmKtIE1/36RRWS/nxH3AKpU=","subject":"CN=Prodrive Technologies B.V. OV SSL Issuing CA,O=Prodrive Technologies B.V.,C=NL","subjectDN":"MGkxCzAJBgNVBAYTAk5MMSMwIQYDVQQKExpQcm9kcml2ZSBUZWNobm9sb2dpZXMgQi5WLjE1MDMGA1UEAxMsUHJvZHJpdmUgVGVjaG5vbG9naWVzIEIuVi4gT1YgU1NMIElzc3VpbmcgQ0E=","whitelist":false,"attachment":{"hash":"f33b1ca67bc2f7ef2190fc43c1d09060a4d6392a8969577007ae2dcf61b1b92a","size":1788,"filename":"-wd4uhPIbo8yHwCQuKSPir6tNrh9C4xO-yIp2mXFvWw=.pem","location":"security-state-staging/intermediates/5ddd9e30-4510-471c-ab94-0d0e278ac61c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+wd4uhPIbo8yHwCQuKSPir6tNr
h9C4xO+yIp2mXFvWw=","crlite_enrolled":true,"id":"2811956d-b0a4-4adf-900f-63b897378faf","last_modified":1601517446551},{"schema":1601376543423,"derHash":"chMuzy+MdbXyFMAO0UVi4UkSt/L00mMxgPPkkYmA/sQ=","subject":"CN=GlobalSign Atlas ECCR5 DV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIEVDQ1I1IERWIFRMUyBDQSAyMDIw","whitelist":false,"attachment":{"hash":"cfbfd73e27f80ba2ca88e566c4433b91afffa3e781fa1bb6329edcdd18b007fb","size":1244,"filename":"dvTEjD91RrZ8O39MMW9uMp3BsRpxlx5RWzL0vmoJRyc=.pem","location":"security-state-staging/intermediates/2bfcb5a8-a759-447d-8ba5-a522f5ff7213.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dvTEjD91RrZ8O39MMW9uMp3BsRpxlx5RWzL0vmoJRyc=","crlite_enrolled":false,"id":"33b467c3-b884-40cf-8821-05ca09a4ebb6","last_modified":1601517446517},{"schema":1601376536064,"derHash":"9i41qtNF+yU4Y8/A5lgjrNPn8IRtGbgybXCceRmiLX4=","subject":"CN=Trustwave Global ECDSA P
-256 Domain Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGaMUMwQQYDVQQDEzpUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMjU2IERvbWFpbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"ce8879da72592af4bbeefb13d2c925ca1eed8e33ca17d960a29ad9ae0835124d","size":1305,"filename":"a-5FBlZcydYwIUikW5fVH6MjJzVRhdPbb586imNLagE=.pem","location":"security-state-staging/intermediates/39ef4ea2-486e-4ed5-a449-bfd847e8ae82.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"a+5FBlZcydYwIUikW5fVH6MjJzVRhdPbb586imNLagE=","crlite_enrolled":false,"id":"4651d4e2-a3a3-4ad4-a939-6f0a6e93d25f","last_modified":1601517446505},{"schema":1601376531791,"derHash":"KfjhBN845hK/T1BTZbXQsLIN1OickIMGSE64N0weZtg=","subject":"CN=Trustwave Global ECDSA P-384 Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,
C=US","subjectDN":"MIGcMUUwQwYDVQQDEzxUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMzg0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EsIExldmVsIDExITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjEQMA4GA1UEBxMHQ2hpY2FnbzERMA8GA1UECBMISWxsaW5vaXMxCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"53f8122b5a0fa5136d24ba312f1f8c41061bd774427e22f6d2a5e4fababcd5ea","size":1406,"filename":"dzssfumpi3rcJekwfVNUyE16SoxSUQ6SRbv3ubi21iE=.pem","location":"security-state-staging/intermediates/ae0ef8cd-16e2-4b41-a4f9-28579d057043.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dzssfumpi3rcJekwfVNUyE16SoxSUQ6SRbv3ubi21iE=","crlite_enrolled":true,"id":"83fb01e4-965f-4aa6-a108-09ee05b4bede","last_modified":1601517446494},{"schema":1601376537489,"derHash":"nOJ0/9oMxIdiy3GxLHQgScco5h37wHCOP5yHHp696iI=","subject":"CN=QuoVadis EV SSL ICA G1,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDExZRdW9WYWRpcyBFViBTU0wgSUNBIEcx","whitelist":false,"attachment":{"hash":"
95cf8df7fb366c8a374ed3369242ba3db91973c2101055c3f8282a0abaae2334","size":2032,"filename":"2ZnCTNQBrKShr4c1olKfwNG53KiL6qoNcQi65YGRBn8=.pem","location":"security-state-staging/intermediates/71bfbe43-67b3-4ff1-a0a0-520de046ac99.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2ZnCTNQBrKShr4c1olKfwNG53KiL6qoNcQi65YGRBn8=","crlite_enrolled":true,"id":"d6ba73ad-526c-414a-927a-cc485bdb4ba3","last_modified":1601517446482},{"schema":1601376530391,"derHash":"f+uTdOqwjTknF8ZHQ22uBhdqJMAQYH/aHM5eXwEGtHI=","subject":"CN=QuoVadis Qualified Web ICA G2,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFcxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEmMCQGA1UEAwwdUXVvVmFkaXMgUXVhbGlmaWVkIFdlYiBJQ0EgRzI=","whitelist":false,"attachment":{"hash":"c551ff3d69db56e747169ab80b2fdea513f1de4806de98e0e34ab04da70a7566","size":2385,"filename":"HW4ktpkbc6tiWRVtXWUrZxqP505LD1tPqFHb3HiZbX8=.pem","location":"security-state-staging/intermediates/78fe6755-6ce9-4dd5-b75b-e9d055b6147f.pem","mimetyp
e":"application/x-pem-file"},"pubKeyHash":"HW4ktpkbc6tiWRVtXWUrZxqP505LD1tPqFHb3HiZbX8=","crlite_enrolled":true,"id":"c8cbdc39-dfda-4e8d-8483-16a7e62a27fa","last_modified":1601517446471},{"schema":1601376528929,"derHash":"Kg4/KneoDcvlzVLVDWUHbr03+tUx2xDWoThaVX97cl0=","subject":"CN=e-Szigno Class2 SSL CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJDAiBgNVBAMMG2UtU3ppZ25vIENsYXNzMiBTU0wgQ0EgMjAxNw==","whitelist":false,"attachment":{"hash":"bcb11e505804477ce4429c8ef9cc22d043e0f59d222d5e4524ec9158cc8e972b","size":1666,"filename":"HGXB7TIfcoLqLINF3LJD2A9t3V4VdHjcBv6LboViQMo=.pem","location":"security-state-staging/intermediates/ed1e06ed-dd51-4820-9ef9-0ec3fe1c0d7f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HGXB7TIfcoLqLINF3LJD2A9t3V4VdHjcBv6LboViQMo=","crlite_enrolled":false,"id":"e2064836-6f61-4236-a0e4-ecf652bd4970","last_modified":1601517446459},{"schema
":1601376527513,"derHash":"BYd+5cz+fPGrs8nt85BbX2FCx7eTnWfjJBHPiWMn+Yc=","subject":"CN=CertCloud ECC TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"MEoxCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMR0wGwYDVQQDExRDZXJ0Q2xvdWQgRUNDIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"f8337f06d70a3f7f0f2ef60247a23ef7a2527a55578bd6069dab297153907ecc","size":1232,"filename":"-iSs_1O_biy_0c0nXxdAJJKe4jDCWam1eQs-GklMUgI=.pem","location":"security-state-staging/intermediates/70ceef02-e1d2-4132-979d-678f2f773e69.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+iSs/1O/biy/0c0nXxdAJJKe4jDCWam1eQs+GklMUgI=","crlite_enrolled":false,"id":"bc047e86-7084-42d2-8efc-a8163307861a","last_modified":1601517446445},{"schema":1601376526117,"derHash":"IcBmMy1rkt2aJT4mN2hKW8PjE1f4Y77XovmMhFmjO2I=","subject":"CN=JPRS Organization Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4
xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"d6663fad41c3d961839d1c3ba63881823a3ae0e79e492bcb4b89de356ba61449","size":1780,"filename":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A-XzOekYtqEbM=.pem","location":"security-state-staging/intermediates/76332bc0-ade4-489e-8a7a-7408d1a0866b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A+XzOekYtqEbM=","crlite_enrolled":true,"id":"d3ccc38d-c16d-42a2-8bad-f6a2a9db6ea8","last_modified":1601517446433},{"schema":1601376542023,"derHash":"MoZpFBLzDs5cBl/WL0OSpHYtHneBUzg1nfOQKZ+9Ye8=","subject":"CN=Thawte EV RSA CA G2,O=DigiCert Inc,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHDAaBgNVBAMTE1RoYXd0ZSBFViBSU0EgQ0EgRzI=","whitelist":false,"attachment":{"hash":"7ebde9e072e9a7bbb57c5810346275bf9ef461c815c5ae04aea58f3354aeb691","size":1873,"filename":"BLOV1UJgeWCwCAR8qU9OWMMcRY8vXk1zqu0szJamQxw=.pem","location":"security-state-stagin
g/intermediates/1a609f96-bf52-4c1e-b5cd-8d41976209a2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BLOV1UJgeWCwCAR8qU9OWMMcRY8vXk1zqu0szJamQxw=","crlite_enrolled":true,"id":"0c7bee58-270f-4570-ad29-3d70aec91153","last_modified":1601517446422},{"schema":1601376534633,"derHash":"sIXXC5ZPGRpz5K8NVK56Dgeq/a+bcd0IYhOKtzJaJKI=","subject":"CN=GlobalSign,OU=GlobalSign ECC Root CA - R4,O=GlobalSign","subjectDN":"MFAxJDAiBgNVBAsTG0dsb2JhbFNpZ24gRUNDIFJvb3QgQ0EgLSBSNDETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbg==","whitelist":false,"attachment":{"hash":"babd66311bcbddf05b57e8c3547a7daa9175826a9288b0eddc4bce49d951e547","size":703,"filename":"CLOmM1_OXvSPjw5UOYbAf9GKOxImEp9hhku9W90fHMk=.pem","location":"security-state-staging/intermediates/3f9c81ac-eb1d-4480-8098-04c2865620a8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CLOmM1/OXvSPjw5UOYbAf9GKOxImEp9hhku9W90fHMk=","crlite_enrolled":false,"id":"806db0d2-addc-4b97-a56f-47f8f6ee463b","last_modified":1601517446411},
{"schema":1601376523273,"derHash":"q7P/KZqhuu/BJ4gYxCQ4iu97KWUVlcYBlOeNlDaUaAs=","subject":"CN=QuoVadis EV SSL ICA G3,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpcyBFViBTU0wgSUNBIEcz","whitelist":false,"attachment":{"hash":"d81fa5cb3c1ec6bbe8f1e276fd6412ef30e25f49781b84d8eb23f85d412845ef","size":2389,"filename":"S0SyfMJffMM5SZRx8KboH82naxKe-XlFltR_gu3qSzg=.pem","location":"security-state-staging/intermediates/a1d18e1f-643c-4eba-ac9d-259252860cb9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S0SyfMJffMM5SZRx8KboH82naxKe+XlFltR/gu3qSzg=","crlite_enrolled":true,"id":"261cd019-9a12-4ef0-9d64-3205805bcee7","last_modified":1601517446399},{"schema":1601376524722,"derHash":"iu/r2IvoejCxnGDFvQ+16fvNFdVYLV/Jp0mVeNaNzsA=","subject":"CN=Valid Certificadora Digital SSL EV CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGgxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKl
ZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgRVYgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"54373e1e17726accdcc2879266317a44d0dc889c8003fa002f0337d0cd53627c","size":1788,"filename":"Fvvsf-SjFcNThumRKUfh4Zsz4ZsXqkoWTiLt7iT8DBo=.pem","location":"security-state-staging/intermediates/cc028f24-b5cb-46d6-97d7-726ebda21925.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Fvvsf+SjFcNThumRKUfh4Zsz4ZsXqkoWTiLt7iT8DBo=","crlite_enrolled":true,"id":"41b336e4-b32b-436f-891e-66fbf1ad02f3","last_modified":1601517446388},{"schema":1601376520490,"derHash":"6ywqgGxp/JY8TiSlu+og7U47hq55hzC7TupRv53jMyU=","subject":"CN=QuoVadis PKIoverheid Server CA 2020,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MF0xCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEsMCoGA1UEAwwjUXVvVmFkaXMgUEtJb3ZlcmhlaWQgU2VydmVyIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"ccde215eb034050ccfc37f9fd71517cfb10b5c84d583a98f618475edced4e91a","size":2491,"filename":"Uru4DWx-N-Ju1LMOBUHr8l1GFqUp0S2Ieni
NdUJMn-Y=.pem","location":"security-state-staging/intermediates/1ae6c747-3f6d-429e-9013-e01cf1ab4ce0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uru4DWx+N+Ju1LMOBUHr8l1GFqUp0S2IeniNdUJMn+Y=","crlite_enrolled":true,"id":"fee96d42-f02d-4455-be00-596e2c349fe8","last_modified":1601517446377},{"schema":1601376518910,"derHash":"jEPF40DsZA+T6ndKxTU8ypBC92T/g3+HDYtkdjxFikE=","subject":"CN=GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkdlb1RydXN0IFRMUyBEViBSU0EgTWl4ZWQgU0hBMjU2IDIwMjAgQ0EtMQ==","whitelist":false,"attachment":{"hash":"4af7bd8ab75b6ddf04593a19426b34042c0a2078cfaa4c0c6b54dba25cc4a74c","size":1902,"filename":"n5dIU-KFaI00Y_prmvaZhqXOquF72TlPANCLxCA9HE8=.pem","location":"security-state-staging/intermediates/f1b1f28b-139b-40e5-ab31-a425c3b7121f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n5dIU+KFaI00Y/prmvaZhqXOquF72TlPANCLxCA9HE8=","crlite_enrolled":true,"id":"f
fad931a-781d-4472-9d60-f6fbe37689c9","last_modified":1601517446365},{"schema":1601376515985,"derHash":"05zjn/b0SdTzOR7iAE1wXsIvmc/8pAqI+F2yZFSt29E=","subject":"CN=Microsoft Azure TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMg==","whitelist":false,"attachment":{"hash":"ce0b3cc7344615f4e2c08e375e5170baea84e9c13a2b7eab45e0eb275cfec111","size":2653,"filename":"zAwfx2iFcQ5vMOCc9vt-MXLdLl08EquNsOWgDF0hOw8=.pem","location":"security-state-staging/intermediates/01188f2a-2433-4025-a1b5-a82cdada1811.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zAwfx2iFcQ5vMOCc9vt+MXLdLl08EquNsOWgDF0hOw8=","crlite_enrolled":true,"id":"02c14f6f-b36e-477e-b00c-4caa53ab7b3a","last_modified":1601517446343},{"schema":1601376521873,"derHash":"SP+LSUZox1IwS0i/6Bh1iYfe9lguXwm5IfS2C7PWqN0=","subject":"CN=Microsoft Azure TLS Issuing CA 06,O=Microsoft Corporation,C=US","subje
ctDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNg==","whitelist":false,"attachment":{"hash":"b800befca1341c29912755ead3105bdab854e4517a96d3492de73bd48b6aca1c","size":2121,"filename":"Wl8MFY-9zijGG8QgEHCAK5fhA-ydPZxaLQOFdiEPz3U=.pem","location":"security-state-staging/intermediates/7038775d-bfdd-40ab-9cc3-51a112d8e5dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wl8MFY+9zijGG8QgEHCAK5fhA+ydPZxaLQOFdiEPz3U=","crlite_enrolled":true,"id":"a24284b8-b137-4a18-a2f8-d193c6197acc","last_modified":1601517446331},{"schema":1601376514564,"derHash":"TzXGucEAkF/yW7AcCiDr4zW87vJJzp/6HhHgYu1m/NE=","subject":"CN=DigiCert Trusted G4 TLS RSA SHA384 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxNDAyBgNVBAMTK0RpZ2lDZXJ0IFRydXN0ZWQgRzQgVExTIFJTQSBTSEEzODQgMjAyMCBDQTE=","whitelist":false,"attachment":{"hash":"9b316d7bf93b9d342bdd4df71094c0e97165fde2c9cd97a6beca3f212da
c4054","size":2479,"filename":"rjm2hHKNhSnI_7YDoWFLmDSpnIwnr9n9bbNU0dhDiJg=.pem","location":"security-state-staging/intermediates/3784123e-47c0-449e-a944-a3c098106179.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rjm2hHKNhSnI/7YDoWFLmDSpnIwnr9n9bbNU0dhDiJg=","crlite_enrolled":false,"id":"d7056525-3689-4f09-8017-71e76770f63f","last_modified":1601517446320},{"schema":1601376511612,"derHash":"GKvW6cqQe7NnVNDARuu1Ddm5XVJ4JNlYGjG3UPz9uu8=","subject":"CN=Trustwave Global ECDSA P-256 Organization Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGgMUkwRwYDVQQDE0BUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMjU2IE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"f16bdfde574887cdf9b20fdd1a1ad5e789c2d8b5094a68dc63225d64c51f2d50","size":1329,"filename":"lZMwN7CwdUNqVdEULuLxoCtwEIC9qGjWWMelIDRtDNU=.
pem","location":"security-state-staging/intermediates/073d40fe-2052-4262-88bf-6f72a0fcaeb9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lZMwN7CwdUNqVdEULuLxoCtwEIC9qGjWWMelIDRtDNU=","crlite_enrolled":false,"id":"b41c2405-7326-442a-9924-c50f3172fd29","last_modified":1601517446297},{"schema":1601376510177,"derHash":"qzIDs+ogF9UJcmodgik+/8uMQs61LJrxwO7pa1wCvLo=","subject":"CN=Microsoft Azure TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNQ==","whitelist":false,"attachment":{"hash":"dab72f8a61c3d1392090bfa1d53928ff5e675385a1b03742a601a3457a12342f","size":2653,"filename":"4i4h0jN9NROr1xKJI-TQ1Q_ZIfUjPMXtmWUsDR3Pjiw=.pem","location":"security-state-staging/intermediates/8493a5e1-2fe7-48d1-baff-5f6b9f29913f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4i4h0jN9NROr1xKJI+TQ1Q/ZIfUjPMXtmWUsDR3Pjiw=","crlite_enrolled":true,"id":"f45995f1-5
6b8-45c4-9465-14c646f731cc","last_modified":1601517446286},{"schema":1601376507194,"derHash":"Yk1VdqZSshMHaL/oS5Ze7//ZFgPSXNX3FVp9wnidrDg=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDU=","whitelist":false,"attachment":{"hash":"2468274c7b25fd2b19d422592a89957967b1d0b2667a280258fa181e4990089d","size":1512,"filename":"k09MzmwiRPkPmkpgmUtprMk_uALSVedNLtfOBkCMvXE=.pem","location":"security-state-staging/intermediates/d5ffeea3-4d99-41bd-a872-5838d3443762.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k09MzmwiRPkPmkpgmUtprMk/uALSVedNLtfOBkCMvXE=","crlite_enrolled":false,"id":"382d6dd1-e459-49c6-860d-167823f42b12","last_modified":1601517446275},{"schema":1601376513034,"derHash":"YGDqsYASLrFPIu3kZbSppw4p5w+xguvwHVsTM/LnMkI=","subject":"CN=RapidSSL TLS DV RSA Mixed SHA256 2021 CA-1,O=DigiCert Inc,C=US","subje
ctDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKlJhcGlkU1NMIFRMUyBEViBSU0EgTWl4ZWQgU0hBMjU2IDIwMjEgQ0EtMQ==","whitelist":false,"attachment":{"hash":"3ba8b83eb97ad48e9de41cf5e2bf4f6fdf72bd92b464134f8a11860b041476ae","size":1902,"filename":"inFIEiXuCIo8SWXm9sdY-WQwNjNja_ms8JpF3Lq3T2w=.pem","location":"security-state-staging/intermediates/e93f7c27-0dfc-43ed-b6d8-be3651eb25e3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"inFIEiXuCIo8SWXm9sdY+WQwNjNja/ms8JpF3Lq3T2w=","crlite_enrolled":false,"id":"47925b35-99a1-43bf-951a-336125b4c6bf","last_modified":1601517446263},{"schema":1601376508724,"derHash":"NFC204KQw8pde7OLcUlbv3LG0MRNuikiRfm8qYQ6n/8=","subject":"CN=Actalis Domain Validation Server CA G3,O=Actalis S.p.A.,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGEMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEXMBUGA1UECgwOQWN0YWxpcyBTLnAuQS4xLzAtBgNVBAMMJkFjdGFsaXMgRG9tYWluIFZhbGlkYXRpb24gU2VydmVyIENBIEcz","whitelist":fal
se,"attachment":{"hash":"428ff62276c3ecb6dc5848fb6212834d3718a3c55c9f538eca07bc4998f52fe6","size":2637,"filename":"hiyjWqnkYADYC0yxNwbD5MAi01UNWZQ5v2vsDd0s9Uo=.pem","location":"security-state-staging/intermediates/875e53bd-1442-40e4-b076-8d1b1fa6e8d2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hiyjWqnkYADYC0yxNwbD5MAi01UNWZQ5v2vsDd0s9Uo=","crlite_enrolled":true,"id":"7663fd6d-0a64-4aa0-b3f2-41b165083e59","last_modified":1601517446252},{"schema":1601376505726,"derHash":"y2Zmsyv/Lv7cxBh98Umm00pdELcWW5z/KmfA4xGu7tc=","subject":"CN=QuoVadis Europe EV SSL CA G1,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFYxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjElMCMGA1UEAwwcUXVvVmFkaXMgRXVyb3BlIEVWIFNTTCBDQSBHMQ==","whitelist":false,"attachment":{"hash":"990290f2ea4ff420df521c3b3851971e7be41a8508394faa2cb562a69bce9e55","size":2385,"filename":"WkWVWx1-X3CuwtFGJvDjdr5hOX8PeMryJG2Va7Y6cj8=.pem","location":"security-state-staging/intermediates/b1596bae-e57e-470c-a3d6-2b
fa8b281a3b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WkWVWx1+X3CuwtFGJvDjdr5hOX8PeMryJG2Va7Y6cj8=","crlite_enrolled":true,"id":"024c5848-73e2-4816-9ebb-342c7407fa3c","last_modified":1601517446241},{"schema":1601376502834,"derHash":"FRo+WWnGYW62N6hyKxdM/ZU4eqznjVfDvSPwyzAIGGo=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDY=","whitelist":false,"attachment":{"hash":"3f94a2f59b7465d9ec3993abf5497a7454a624492a51b0f1af1453447008be7a","size":1508,"filename":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f_fOuKrsNiaSdA=.pem","location":"security-state-staging/intermediates/9b67e543-818a-4165-8fb3-37301ea9deea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f/fOuKrsNiaSdA=","crlite_enrolled":false,"id":"49bdb04d-12f4-46e0-a161-dd632bc2b6db","last_modified":1601517446230},{"schema":160
1376501391,"derHash":"Wr5YGPbQLwUQbGw1VUDhviF8I1S1Nc8lB7+FFeGmBEo=","subject":"CN=e-Szigno Qualified CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHYxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxIzAhBgNVBAMMGmUtU3ppZ25vIFF1YWxpZmllZCBDQSAyMDE3","whitelist":false,"attachment":{"hash":"b1a685a82713fdb970ba0d46956ad6f758e20974ec4e06085ed70d31639c065a","size":1666,"filename":"S3q9Rterro1Xg3DAezkzEPMCdEp1MvG6n-mSxrdMylY=.pem","location":"security-state-staging/intermediates/b37a4a28-4db1-4035-813b-02db9e3f6071.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S3q9Rterro1Xg3DAezkzEPMCdEp1MvG6n+mSxrdMylY=","crlite_enrolled":false,"id":"c8ec64d9-a492-4075-9411-af27b698120c","last_modified":1601517446218},{"schema":1601376504316,"derHash":"gBxSLTrROOTwXUZ+o2nBzCdgeL8oQBjQUl67vFNCyDY=","subject":"CN=JPRS Organization Validation Authority - G4,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTA
kpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzQ=","whitelist":false,"attachment":{"hash":"5073da9684a445c50c1705a593be556ce4f1fa98e69b8c50acc426e2088d88b7","size":1788,"filename":"xOSyACYAjsQ-aXD2iEFnKCVOcUsX8AVVqCGczMoh8lw=.pem","location":"security-state-staging/intermediates/0624e1eb-5311-4f0c-888d-7e403179d070.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xOSyACYAjsQ+aXD2iEFnKCVOcUsX8AVVqCGczMoh8lw=","crlite_enrolled":true,"id":"df6b1845-7aef-405a-8ee7-cd3b62ac1cad","last_modified":1601517446207},{"schema":1601373119320,"derHash":"lYjvdBmeRazvzM/AxHAQ6fKjeh3UTGGk4cazNNpa9hQ=","subject":"CN=DigiCert EV RSA CA G2,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFURpZ2lDZXJ0IEVWIFJTQSBDQSBHMg==","whitelist":false,"attachment":{"hash":"6c7a7611b0ccd14478c030a701a6eee0909ea61c24f76a90cf4f5eaec2ddfd88","size":1873,"filename":"w9I8WrpHr1YAS0D
ugvLGsrI9Vm1yEkZAyllKxemXXf4=.pem","location":"security-state-staging/intermediates/04e13866-ca20-456a-a3bb-ba2db3470ae7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"w9I8WrpHr1YAS0DugvLGsrI9Vm1yEkZAyllKxemXXf4=","crlite_enrolled":true,"id":"d70ee858-3159-4c5f-be64-8dd0f689e5f4","last_modified":1601517446196},{"schema":1601373115079,"derHash":"PyJb2814jOkkhwyvkvgUt8b/Ttq6utk/HTqRdyUs8dE=","subject":"CN=QuoVadis Qualified Web ICA G3,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFcxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEmMCQGA1UEAwwdUXVvVmFkaXMgUXVhbGlmaWVkIFdlYiBJQ0EgRzM=","whitelist":false,"attachment":{"hash":"8eb4cfbfd4e31a971f563f4a974c582ecd679cc8c15604af9f0f24fb1daf720e","size":2385,"filename":"e7hbHQSuhSDkhjhlY1CGhoHNKcgJCpQxSU_inT417rc=.pem","location":"security-state-staging/intermediates/c2ab9b92-d500-4e7a-9bcc-5394c5c70aae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e7hbHQSuhSDkhjhlY1CGhoHNKcgJCpQxSU/inT417rc=","crlite_enrolled
":false,"id":"1a156366-309c-4a8a-ad9a-8b722dd7e8dd","last_modified":1601517446184},{"schema":1601373116456,"derHash":"HYDNGKeU8fSFDtwzxgSPAuhThqR/POg2l0qORSpg1/I=","subject":"CN=GeoTrust TLS DV RSA Mixed SHA256 2021 CA-1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkdlb1RydXN0IFRMUyBEViBSU0EgTWl4ZWQgU0hBMjU2IDIwMjEgQ0EtMQ==","whitelist":false,"attachment":{"hash":"2e0cee661a4a6fd3b4cc86995b705e916cb3c5b536a617c5d74956b4574cf947","size":1902,"filename":"WcAfM-6Mq47-SAT2M-PbyDhIlS5ynmlHH9IlN6Jm0AQ=.pem","location":"security-state-staging/intermediates/86304c64-acdf-4c00-b9d2-09d524112cb1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WcAfM+6Mq47+SAT2M+PbyDhIlS5ynmlHH9IlN6Jm0AQ=","crlite_enrolled":false,"id":"03e0208d-8abc-42a3-8849-5141d1c1217e","last_modified":1601517446173},{"schema":1601373112312,"derHash":"l9QgA+EyVSlGCX8g75VfWxzVcKpDcteAAzpl775pdY0=","subject":"CN=GTS CA 1P5,O=Google Trust Services LLC,C=US","subjectD
N":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMVA1","whitelist":false,"attachment":{"hash":"6d39d26fa45c2aea9f3ecfb72ba0887e152ffd6f6a6dc6e197c57cefd4030fa0","size":1983,"filename":"81Wf12bcLlFHQAfJluxnzZ6Frg-oJ9PWY_Wrwur8viQ=.pem","location":"security-state-staging/intermediates/85fa4716-33ed-4d5d-ae53-9235954b29df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"81Wf12bcLlFHQAfJluxnzZ6Frg+oJ9PWY/Wrwur8viQ=","crlite_enrolled":true,"id":"a7aa7953-bef4-44d7-9224-c3b2f6d04aa6","last_modified":1601517446162},{"schema":1601373113703,"derHash":"nGSppD6ZDpj7zoMXstTBwH/+bgMtqLttYKaW4v8Djx8=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDI=","whitelist":false,"attachment":{"hash":"10551307f634eba8fbd03c34df0f74b6bf4e7d3b3857885e7e915dc171786627","size":1329,"file
name":"OhdUJ-wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=.pem","location":"security-state-staging/intermediates/782e2f05-e5fd-466e-b95e-c9d281d07173.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OhdUJ+wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=","crlite_enrolled":false,"id":"a7462d67-605a-4b39-b1d9-d9bcc225b615","last_modified":1601517446150},{"schema":1601373117853,"derHash":"jEPF40DsZA+T6ndKxTU8ypBC92T/g3+HDYtkdjxFikE=","subject":"CN=GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkdlb1RydXN0IFRMUyBEViBSU0EgTWl4ZWQgU0hBMjU2IDIwMjAgQ0EtMQ==","whitelist":false,"attachment":{"hash":"4af7bd8ab75b6ddf04593a19426b34042c0a2078cfaa4c0c6b54dba25cc4a74c","size":1902,"filename":"n5dIU-KFaI00Y_prmvaZhqXOquF72TlPANCLxCA9HE8=.pem","location":"security-state-staging/intermediates/87545501-5f6c-42fb-b550-4c586450cf1d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n5dIU+KFaI00Y/prmvaZhqXOquF72TlPA
NCLxCA9HE8=","crlite_enrolled":true,"id":"6cc82c1a-ac75-4901-aaed-17c56d2f15ec","last_modified":1601517446138},{"schema":1601373110783,"derHash":"BYd+5cz+fPGrs8nt85BbX2FCx7eTnWfjJBHPiWMn+Yc=","subject":"CN=CertCloud ECC TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"MEoxCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMR0wGwYDVQQDExRDZXJ0Q2xvdWQgRUNDIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"f8337f06d70a3f7f0f2ef60247a23ef7a2527a55578bd6069dab297153907ecc","size":1232,"filename":"-iSs_1O_biy_0c0nXxdAJJKe4jDCWam1eQs-GklMUgI=.pem","location":"security-state-staging/intermediates/e12a2935-1487-4453-8530-4d711142453e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+iSs/1O/biy/0c0nXxdAJJKe4jDCWam1eQs+GklMUgI=","crlite_enrolled":false,"id":"dcf8275c-d947-4783-80e2-d92f9c62e14b","last_modified":1601517446127},{"schema":1601373106595,"derHash":"tvZVm7zgosyR5Qe11zGeMkh+2uKKBjvHO2QF5sRGZbY=","subject":"CN=QuoVadis Enterprise Trust CA 2 G3,O=QuoVadis Limited,C=BM","s
ubjectDN":"MFQxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSowKAYDVQQDDCFRdW9WYWRpcyBFbnRlcnByaXNlIFRydXN0IENBIDIgRzM=","whitelist":false,"attachment":{"hash":"0e8105a00963a2942951dacf763351b5c4f4fcffe32ab691c090848452d6b285","size":2377,"filename":"U_l9o-Lg2NOgB-7MLJUzZzbVrqatI_likIE44Ciah6M=.pem","location":"security-state-staging/intermediates/cc9d0a66-6a3b-4630-97a9-cef777fb6c74.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U/l9o+Lg2NOgB+7MLJUzZzbVrqatI/likIE44Ciah6M=","crlite_enrolled":false,"id":"e5c0424f-e3f2-433c-b803-708744469857","last_modified":1601517446116},{"schema":1601373109415,"derHash":"IcBmMy1rkt2aJT4mN2hKW8PjE1f4Y77XovmMhFmjO2I=","subject":"CN=JPRS Organization Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"d6663fad41c
3d961839d1c3ba63881823a3ae0e79e492bcb4b89de356ba61449","size":1780,"filename":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A-XzOekYtqEbM=.pem","location":"security-state-staging/intermediates/ec00442d-0592-4095-a93c-2de7c8ad6498.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A+XzOekYtqEbM=","crlite_enrolled":true,"id":"d8c024a4-05d8-47b8-9ced-9ba0b9e802ee","last_modified":1601517446104},{"schema":1601373105225,"derHash":"chMuzy+MdbXyFMAO0UVi4UkSt/L00mMxgPPkkYmA/sQ=","subject":"CN=GlobalSign Atlas ECCR5 DV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIEVDQ1I1IERWIFRMUyBDQSAyMDIw","whitelist":false,"attachment":{"hash":"cfbfd73e27f80ba2ca88e566c4433b91afffa3e781fa1bb6329edcdd18b007fb","size":1244,"filename":"dvTEjD91RrZ8O39MMW9uMp3BsRpxlx5RWzL0vmoJRyc=.pem","location":"security-state-staging/intermediates/1930c81b-a47e-4196-aaf5-9bb9b253ef40.pem","mimetype":"applic
ation/x-pem-file"},"pubKeyHash":"dvTEjD91RrZ8O39MMW9uMp3BsRpxlx5RWzL0vmoJRyc=","crlite_enrolled":false,"id":"23a49eff-8f01-4ad2-80b0-64b42dd5699e","last_modified":1601517446093},{"schema":1601373102382,"derHash":"RklOMDeQWd8YvlISQwXmBvxZBw5bIQds4ROVS2BRfNo=","subject":"CN=E1,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJFMQ==","whitelist":false,"attachment":{"hash":"14cf69c79f1a688b326247f724ad50a3b22de5e34daf12c66670e5a38b1273d0","size":1020,"filename":"J2_oqMTsdhFWW_n85tys6b4yDBtb6idZayIEBx7QTxA=.pem","location":"security-state-staging/intermediates/3a789ebf-1903-4ab8-b9cf-488af62cbf0e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"J2/oqMTsdhFWW/n85tys6b4yDBtb6idZayIEBx7QTxA=","crlite_enrolled":false,"id":"ab99130c-7c4f-494d-939c-89c4285b08b3","last_modified":1601517446082},{"schema":1601373103809,"derHash":"5vpISoWJQNEBl4VVRUqkZlMatsSrxK0rAAYmqqwNBPk=","subject":"CN=RapidSSL TLS DV RSA Mixed SHA256 2020 CA-1,O=DigiC
ert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKlJhcGlkU1NMIFRMUyBEViBSU0EgTWl4ZWQgU0hBMjU2IDIwMjAgQ0EtMQ==","whitelist":false,"attachment":{"hash":"e080ccfbdfc6374397f903976e83dea4fdecc00a0a36cd72f9c882ceff09e62a","size":1902,"filename":"48hXNwn3laJAzsrIBprOcewUb097BGNL7e-MVM7Rcis=.pem","location":"security-state-staging/intermediates/4faddda2-227d-409d-a1cd-1edcb045de63.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"48hXNwn3laJAzsrIBprOcewUb097BGNL7e+MVM7Rcis=","crlite_enrolled":true,"id":"48991605-b48a-4d04-9db7-8a39fdd03db1","last_modified":1601517446071},{"schema":1601373108002,"derHash":"NFC204KQw8pde7OLcUlbv3LG0MRNuikiRfm8qYQ6n/8=","subject":"CN=Actalis Domain Validation Server CA G3,O=Actalis S.p.A.,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGEMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEXMBUGA1UECgwOQWN0YWxpcyBTLnAuQS4xLzAtBgNVBAMMJkFjdGFsaXMgRG9tYWluIFZhbGlkYXRpb24gU2VydmVyIENBIE
cz","whitelist":false,"attachment":{"hash":"428ff62276c3ecb6dc5848fb6212834d3718a3c55c9f538eca07bc4998f52fe6","size":2637,"filename":"hiyjWqnkYADYC0yxNwbD5MAi01UNWZQ5v2vsDd0s9Uo=.pem","location":"security-state-staging/intermediates/0f25bf9e-ffcc-4a10-84f0-8cd86a7ae6b0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hiyjWqnkYADYC0yxNwbD5MAi01UNWZQ5v2vsDd0s9Uo=","crlite_enrolled":true,"id":"35eb9d7f-ce65-41cf-b26c-080757a4a116","last_modified":1601517446059},{"schema":1601373100891,"derHash":"FamHYevgEVVNo6RtIGsIEssutproeqoRpt1MuE7VFCo=","subject":"CN=Microsoft Azure TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMg==","whitelist":false,"attachment":{"hash":"b94f365e9c87f17f0cce2845177df14966cfe660eb761de3a71b860db6a98fd9","size":2121,"filename":"zAwfx2iFcQ5vMOCc9vt-MXLdLl08EquNsOWgDF0hOw8=.pem","location":"security-state-staging/intermediates/
e70bfcd1-20f6-4b7c-b862-637c228984c7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zAwfx2iFcQ5vMOCc9vt+MXLdLl08EquNsOWgDF0hOw8=","crlite_enrolled":true,"id":"ea3a37d8-31e6-48a8-aa7d-2107ac42c3a1","last_modified":1601517446047},{"schema":1601373097943,"derHash":"diU4Q5UJxBHEN9PFZ1Y+E3hnEoH8ShRkrdAxhwhDZ24=","subject":"CN=GlobalSign GCC R3 DV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIEdDQyBSMyBEViBUTFMgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"a57c3388263edee7694a304c5fb1c3c28046d3d7c1493d3ddf93c385aaf9b3ad","size":1687,"filename":"Sc7wL4FfOw8ued5w3JOSzu5MzB471PfqdyN4hnMYbX4=.pem","location":"security-state-staging/intermediates/23842d68-8107-429d-bb5a-283b0023bdc7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Sc7wL4FfOw8ued5w3JOSzu5MzB471PfqdyN4hnMYbX4=","crlite_enrolled":true,"id":"2faa1882-c670-43e5-bb46-85e2017d2664","last_modified":1601517446036},{"schema":
1601373099507,"derHash":"a0+d4TZ4hGcw1Q6RSgjnvpt0LKOgp9U5M2eDC5Om9VM=","subject":"CN=Valid Certificadora Digital SSL OV CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGgxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgT1YgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"8b796428cc5e4733630431ccd7284dbe8bae53efc39384f0fccbbf1b490e4d49","size":1788,"filename":"OOlpcVGqLfZfl2rK7MdW2Ff6TMhVD-PwRf3XtFUUtLw=.pem","location":"security-state-staging/intermediates/0c3aa131-41fa-45f6-b13d-f21f3c620bb6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OOlpcVGqLfZfl2rK7MdW2Ff6TMhVD+PwRf3XtFUUtLw=","crlite_enrolled":true,"id":"6a3cbd3d-6d7b-4338-a7c0-623f3ebafa19","last_modified":1601517446025},{"schema":1601373095187,"derHash":"LmPcG+z0J/mQK0neYzD9Po7r+IsU5lOzui431OSICWU=","subject":"CN=Trustwave Global Organization Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","
subjectDN":"MIGUMT0wOwYDVQQDEzRUcnVzdHdhdmUgR2xvYmFsIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"9d9bb0ca6a8a59110e9ecd8714e94894e0be5886e46f9c4e5265ffa83dcece40","size":2519,"filename":"z4qrcPL95VQXuiBgseJjj0x2uKXj6NQcTxtcnoGWFyk=.pem","location":"security-state-staging/intermediates/27248c41-4ea8-410d-a467-b8ab82ef29fb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z4qrcPL95VQXuiBgseJjj0x2uKXj6NQcTxtcnoGWFyk=","crlite_enrolled":false,"id":"0f1ec6de-5bf9-4bc1-a695-3279e8b13a0b","last_modified":1601517446014},{"schema":1601373089423,"derHash":"0zqEf2QDd74K4aQpFToH6HyIJ/pIQLUVi83LheEKRTo=","subject":"CN=VR IDENT EV SSL CA 2020,O=Fiducia & GAD IT AG,C=DE","subjectDN":"ME0xCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMSAwHgYDVQQDDBdWUiBJREVOVCBFViBTU0wgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"a9
5e7ccf2ef4b020f65fbd061c44e49d966821be27623376e3f16a8a3ebd371f","size":2361,"filename":"te09bIALahNazDua57TEibeM7CatIkOAT8t-qu_Kdro=.pem","location":"security-state-staging/intermediates/d45a19a8-eb83-48c2-b5c8-9ce2608c9f2b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"te09bIALahNazDua57TEibeM7CatIkOAT8t+qu/Kdro=","crlite_enrolled":true,"id":"7dfd117a-4bff-4a4a-8050-e2cf3a58ebae","last_modified":1601517446002},{"schema":1601373092298,"derHash":"EcaXh4cyBW3hfB2hNOnSttI88d6Vs/sKTRilF6tjIwo=","subject":"CN=GTS CA 2A1,O=Google Trust Services LLC,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMkEx","whitelist":false,"attachment":{"hash":"66c35c0df4a124a571526bb96130bec322a6f7500769403d0c068726f5bf3b3c","size":1130,"filename":"dEp_Gc3Me0g2QnAtpHNcs692NFByRfF7Od0K2TuwG1Y=.pem","location":"security-state-staging/intermediates/3a532dde-9f77-4149-85b5-6d89f2216f05.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"
dEp/Gc3Me0g2QnAtpHNcs692NFByRfF7Od0K2TuwG1Y=","crlite_enrolled":false,"id":"7fa7839c-ef0e-4a68-bb15-0b1884015b0a","last_modified":1601517445990},{"schema":1601373090891,"derHash":"Wr5YGPbQLwUQbGw1VUDhviF8I1S1Nc8lB7+FFeGmBEo=","subject":"CN=e-Szigno Qualified CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHYxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxIzAhBgNVBAMMGmUtU3ppZ25vIFF1YWxpZmllZCBDQSAyMDE3","whitelist":false,"attachment":{"hash":"b1a685a82713fdb970ba0d46956ad6f758e20974ec4e06085ed70d31639c065a","size":1666,"filename":"S3q9Rterro1Xg3DAezkzEPMCdEp1MvG6n-mSxrdMylY=.pem","location":"security-state-staging/intermediates/6516a4b9-6493-4bfb-a2e3-23763dc5c0f6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S3q9Rterro1Xg3DAezkzEPMCdEp1MvG6n+mSxrdMylY=","crlite_enrolled":false,"id":"c843833c-5c87-472d-adb2-b79ac1f9377d","last_modified":1601517445979},{"schema":1601373096569,"derHash":"BO7qjlC0d1s8JHlyYpF+
5QAC7Ex1tWzfPuHBjPylulI=","subject":"CN=Microsoft RSA TLS CA 01,O=Microsoft Corporation,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xIDAeBgNVBAMTF01pY3Jvc29mdCBSU0EgVExTIENBIDAx","whitelist":false,"attachment":{"hash":"d21d673254fc1596b7b7c3a9a38e33ab09f786822535934e507dec3291deab5a","size":1914,"filename":"aJfLgiqk2RiMTiftDuK1Y2Y68uYH6daftf7O6r4ccks=.pem","location":"security-state-staging/intermediates/4e38e0db-da22-4304-ac1e-288010c3a100.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aJfLgiqk2RiMTiftDuK1Y2Y68uYH6daftf7O6r4ccks=","crlite_enrolled":true,"id":"49e9befa-5c1a-46b0-b4e6-cb23de9ad30c","last_modified":1601517445968},{"schema":1601373088050,"derHash":"J1vwBG4CcBeLE7Z+TbFQoQGXy3H5oGH602s9dmOf4YY=","subject":"CN=Trustwave Global ECDSA P-256 Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGcMUUwQwYDVQQDEzxUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMjU2IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0
EsIExldmVsIDExITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjEQMA4GA1UEBxMHQ2hpY2FnbzERMA8GA1UECBMISWxsaW5vaXMxCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"b39b1eb52f8d651482f3d14bd9a033de3982f3cc3fa825ba761d2fefa3a11981","size":1325,"filename":"YzpgcYxSKDnEVZ3T3h2obh9WsI9ICItWbAqh4SyCprA=.pem","location":"security-state-staging/intermediates/f1b77292-94b4-4442-903d-9547feeb6e60.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YzpgcYxSKDnEVZ3T3h2obh9WsI9ICItWbAqh4SyCprA=","crlite_enrolled":true,"id":"7f2240ce-ea07-4998-8344-b13fb802637e","last_modified":1601517445956},{"schema":1601373093777,"derHash":"Euom9u7v7HarhZJUVAOriFFbAOJ12YiHE0B6hvxcf9c=","subject":"CN=e-Szigno Qualified Organization CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGDMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xFzAVBgNVBGEMDlZBVEhVLTIzNTg0NDk3MTAwLgYDVQQDDCdlLVN6aWdubyBRdWFsaWZpZWQgT3JnYW5pemF0aW9uIENBIDIwMTc=","whitelist":false,"attachment":{"hash":"
2dcc501b643fe8ac38e3b36c6e87ffbb458e7d031117857c3d81511ee2eadfd8","size":1687,"filename":"60e2cMobrxpGA71ke0o4H5luzpBPZvklmqnePPA8jxs=.pem","location":"security-state-staging/intermediates/80f7e08b-2813-4c53-b749-e5ae184d8e46.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"60e2cMobrxpGA71ke0o4H5luzpBPZvklmqnePPA8jxs=","crlite_enrolled":false,"id":"dc168871-d662-484e-80bb-0aaa4d482b71","last_modified":1601517445945},{"schema":1601373086550,"derHash":"3cu08wUdbmATEOsORrW7mcXouZ96U542eph96gMOMY4=","subject":"CN=Aetna Inc. Secure CA2,O=Aetna Inc,C=US","subjectDN":"MEExCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZXRuYSBJbmMxHjAcBgNVBAMTFUFldG5hIEluYy4gU2VjdXJlIENBMg==","whitelist":false,"attachment":{"hash":"f0c9af66d96dd17fa4676b867f59ad47a1e282afe025a8c07064a4124e677b47","size":1800,"filename":"NIgvyyhcGFo7vlL_K_w6cn8iFWO9ftJXWrIU77O5hMI=.pem","location":"security-state-staging/intermediates/7a5d531c-a614-4a6e-ad99-fce2da57ac1d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NIgvyy
hcGFo7vlL/K/w6cn8iFWO9ftJXWrIU77O5hMI=","crlite_enrolled":true,"id":"71ef61b1-4863-49bb-a2a3-8bca78f3eec0","last_modified":1601517445934},{"schema":1601373082085,"derHash":"CZg6JjLAM+uUScDr8h+bjUqZdcBvuOIPSlBC6eTMZBE=","subject":"CN=NII Open Domain CA - G5,O=National Institute of Informatics,C=JP","subjectDN":"MFsxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxIDAeBgNVBAMTF05JSSBPcGVuIERvbWFpbiBDQSAtIEc1","whitelist":false,"attachment":{"hash":"dffc20f5ea1b99f91d8665a18a15d299bddfa0b71cb6b19267a6efa7d6b7d6ed","size":12598,"filename":"aj-4mbqOOY7cgtDqWtgGaLG69EShl59AQocV--hJAk8=.pem","location":"security-state-staging/intermediates/c0315adb-4bd9-4968-8188-a004a1b8fade.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aj+4mbqOOY7cgtDqWtgGaLG69EShl59AQocV++hJAk8=","crlite_enrolled":true,"id":"21660b58-2f5d-4097-ae1e-aade60a55184","last_modified":1601517445922},{"schema":1601373083661,"derHash":"05zjn/b0SdTzOR7iAE1wXsIvmc/8pAqI+F2yZFSt29E=","subject":"
CN=Microsoft Azure TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMg==","whitelist":false,"attachment":{"hash":"ce0b3cc7344615f4e2c08e375e5170baea84e9c13a2b7eab45e0eb275cfec111","size":2653,"filename":"zAwfx2iFcQ5vMOCc9vt-MXLdLl08EquNsOWgDF0hOw8=.pem","location":"security-state-staging/intermediates/db00b4f0-c8f3-4700-913d-fb5588510249.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zAwfx2iFcQ5vMOCc9vt+MXLdLl08EquNsOWgDF0hOw8=","crlite_enrolled":true,"id":"db7da0b1-4700-40e5-8766-05564c2f1aaf","last_modified":1601517445911},{"schema":1601373080635,"derHash":"JMcpmGTgoqaWT1UcDo3yRhUy+oxI5Nu7YIBxZpHxkOU=","subject":"CN=Microsoft Azure TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMQ==","whitelist":false,"attachme
nt":{"hash":"1963ee36a9c20eb3169ad73cd42da09bfc6829eb50f71d6216925c6b9c2dddcb","size":2121,"filename":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=.pem","location":"security-state-staging/intermediates/3a2e8b34-b640-409f-ba11-42410897c3c0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=","crlite_enrolled":true,"id":"f4667d41-8d93-404a-85ac-348e9d27cbc4","last_modified":1601517445900},{"schema":1601373076427,"derHash":"TsQ5ZypENAGmbieUfMO1iX8TK2Z/cSzBo3AYo8yFsWo=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDI=","whitelist":false,"attachment":{"hash":"d6b88839e53fd1739f156f78254837d2b4b300f968dc9ab78c1f926d2648da2c","size":1508,"filename":"OhdUJ-wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=.pem","location":"security-state-staging/intermediates/a533ae98-4acc-4c4e-90e9
-c1f73411f64b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OhdUJ+wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=","crlite_enrolled":false,"id":"e164a6de-4f75-479e-b04f-54334c5235fd","last_modified":1601517445889},{"schema":1601373077828,"derHash":"h9QhabJpNVHKIFzPF/BvbmZR9yGM1tJmB79bpN0vJvI=","subject":"CN=Trustwave Global ECDSA P-384 Organization Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGgMUkwRwYDVQQDE0BUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMzg0IE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"8cd0dbed89841d6b6854301f7eecbbdcd40ac73d8c8347c1ea8a577a05c10603","size":1410,"filename":"91i1mhKwhcz0SKoJ9CzM_9ohVagG6cKG9Z_i4Ts1FFk=.pem","location":"security-state-staging/intermediates/f260c10f-2e10-43a2-ac7a-1fff03473e79.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"91i1mh
Kwhcz0SKoJ9CzM/9ohVagG6cKG9Z/i4Ts1FFk=","crlite_enrolled":false,"id":"3ebd415b-87d1-4a9d-b708-d59719c85d42","last_modified":1601517445866},{"schema":1601373073544,"derHash":"02gLTj+I2x9bud3b+2v/MZx4Dj2fRO4k7BmVq0LWkU8=","subject":"CN=GIAG4x,O=Google Trust Services LLC,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMQ8wDQYDVQQDEwZHSUFHNHg=","whitelist":false,"attachment":{"hash":"7863677df584a77841650e5ad47e7ef8f7c42807c9d69969881133b275b19a50","size":1991,"filename":"AAGolo0N1iZa5uuvm02csZnkuZs8hvI-HRLhAHtNhqk=.pem","location":"security-state-staging/intermediates/e4fc6359-81c9-49c3-ada7-2ec1bdf010a9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AAGolo0N1iZa5uuvm02csZnkuZs8hvI+HRLhAHtNhqk=","crlite_enrolled":true,"id":"c20c0d70-6c96-450f-8ecf-8135b2f7766e","last_modified":1601517445844},{"schema":1601373070729,"derHash":"DakU+3El9uZE63qiYd6euAncf5Jbayp9in7dhzY5i1s=","subject":"CN=Staat der Nederlanden Domein Server CA 2020,O=Staat de
r Nederlanden,C=NL","subjectDN":"MGMxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xNDAyBgNVBAMMK1N0YWF0IGRlciBOZWRlcmxhbmRlbiBEb21laW4gU2VydmVyIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"2f30004a37d33d9c2a59bae9b9e7ae94f816bd331c1a88deabd4af0f028ec59e","size":2438,"filename":"N9-YluTCUa_HTXc60QxjUReBLpRniAkIK2N84DhgmW4=.pem","location":"security-state-staging/intermediates/32515a04-77a4-49fa-83c0-36ae6f3a5dab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N9+YluTCUa/HTXc60QxjUReBLpRniAkIK2N84DhgmW4=","crlite_enrolled":false,"id":"732efca5-8974-4190-8e83-bf82ff07f739","last_modified":1601517445832},{"schema":1601373066528,"derHash":"X4hpRhXkxhaG4Qa4TDM4xnIMU19g029hKC7RXhl33UQ=","subject":"CN=DigiCert Cloud Services CA-1,O=DigiCert Inc,C=US","subjectDN":"MEsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJTAjBgNVBAMTHERpZ2lDZXJ0IENsb3VkIFNlcnZpY2VzIENBLTE=","whitelist":false,"attachment":{"hash":"bd47e7c223bc2e656a7455d83b5877cd3dbf66c20fcb9f464190df0
a25d15bdb","size":1760,"filename":"UgpUVparimk8QCjtWQaUQ7EGrtrykc_L8N66EhFY3VE=.pem","location":"security-state-staging/intermediates/1ee740d1-83dd-4bc7-a5a7-cb03a31c1763.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UgpUVparimk8QCjtWQaUQ7EGrtrykc/L8N66EhFY3VE=","crlite_enrolled":true,"id":"5c31a860-b4ef-4791-8e42-f75e10d6c910","last_modified":1601517445821},{"schema":1601373074948,"derHash":"aXKbjhWobvwXelevtxcd/GSt0owvyozxUH40RTzLFHA=","subject":"CN=ISRG Root X2,O=Internet Security Research Group,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgy","whitelist":false,"attachment":{"hash":"df3c4c472795ccd5ca93453fa1024c35f64466f19536a34fb21d39c840e2e27b","size":789,"filename":"diGVwiVYbubAI3RW4hB9xU8e_CH2GnkuvVFZE8zmgzI=.pem","location":"security-state-staging/intermediates/e3c85b2f-376b-4a02-af59-534857d8ea19.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"diGVwiVYbubAI3RW4hB9xU8e/CH2Gnkuv
VFZE8zmgzI=","crlite_enrolled":false,"id":"edd34046-1baa-49cb-8053-ff3025c65f81","last_modified":1601517445810},{"schema":1601373069295,"derHash":"LK77tV5w31qJhf6bwQ3VakDD3tqz2hUwopaCAVxbfGY=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDE=","whitelist":false,"attachment":{"hash":"a45e27eb4ce4e2624d46479d0ecf5a612e520e17ac29d9b405427a94f6798f65","size":1512,"filename":"OZOx9JJC3JsSDSjFX2iEA3_ED6gCha3L1ZrOeRNoyx8=.pem","location":"security-state-staging/intermediates/6ef0f203-a563-43fa-8eba-9b978890ca68.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OZOx9JJC3JsSDSjFX2iEA3/ED6gCha3L1ZrOeRNoyx8=","crlite_enrolled":true,"id":"e542d416-8008-4a93-9c04-69bcfd8087a2","last_modified":1601517445799},{"schema":1601373072113,"derHash":"us3gRjBTzh1i+L50Nwu6551PyvGfwHZDrvGV5qWb1Xg=","subject":"CN=E2,O=Let's Encrypt
,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJFMg==","whitelist":false,"attachment":{"hash":"051882dab9b07102f7aba08eef5eb943e8b8096631074d7f98f9c7dcef77e86d","size":1020,"filename":"vZNucrIS7293MQLGt304-UKXMi78JTlrwyeUIuDIknA=.pem","location":"security-state-staging/intermediates/582d2a81-663c-4e04-a8a6-341023b6be78.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vZNucrIS7293MQLGt304+UKXMi78JTlrwyeUIuDIknA=","crlite_enrolled":false,"id":"a537077a-14c9-4783-a4e0-5a7ea2e660b9","last_modified":1601517445787},{"schema":1601373067917,"derHash":"am8voTstnbu0CYAgAtM3BnJ2CiF42bjVaU1mBHQjH6Q=","subject":"CN=e-Szigno Pseudonymous CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHkxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJjAkBgNVBAMMHWUtU3ppZ25vIFBzZXVkb255bW91cyBDQSAyMDE3","whitelist":false,"attachment":{"hash":"4a22ba90a733131c2581c1d0dd2fbb9a8df38f518f2e5ba6ee0d10f4b31
69c24","size":1670,"filename":"vqerAqvFBz-pP0lY3LKc96jOLcWu__imbw0SS3qBch8=.pem","location":"security-state-staging/intermediates/f7567136-382e-42ac-a1c6-fff3eb13845f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vqerAqvFBz+pP0lY3LKc96jOLcWu//imbw0SS3qBch8=","crlite_enrolled":false,"id":"aed26e63-166d-44c2-99e2-e757b42d4182","last_modified":1601517445776},{"schema":1601373063695,"derHash":"xj35YY+69IZiuhKr6HshLPd3wnpEag+lVdep0ZEUjtc=","subject":"CN=Trustwave Global ECDSA P-384 Domain Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGaMUMwQQYDVQQDEzpUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMzg0IERvbWFpbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"e81cc0a883e6e41a009a5d876bc62528cd6b26b1edd7421071b6ff434dca6265","size":1390,"filename":"NIbNiw79lRjCX7hAKe6oYePjjaaAQ9l_zvmwptYjCgg=.pem","location
":"security-state-staging/intermediates/ecde76ec-b1ee-48ec-b2c6-2cda6bc52ba4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NIbNiw79lRjCX7hAKe6oYePjjaaAQ9l/zvmwptYjCgg=","crlite_enrolled":false,"id":"e696ad4e-cdc6-4b17-8ee7-13c8bcb02291","last_modified":1601517445754},{"schema":1601373056407,"derHash":"jSXNlyKdv3A1a9pOs8xzQDHiTPAPr8/TLcdutYQcfqg=","subject":"CN=GTS Root R2,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMg==","whitelist":false,"attachment":{"hash":"4d0fda0d78fd282ab5f1cf69e3b3e458120a33cf3e5fdeb14796f324a389d74e","size":1910,"filename":"Vfd95BwDeSQo-NUYxVEEIlvkOlWY2SalKK1lPhzOx78=.pem","location":"security-state-staging/intermediates/95c47a1a-f461-4dc1-8420-4c32207900df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vfd95BwDeSQo+NUYxVEEIlvkOlWY2SalKK1lPhzOx78=","crlite_enrolled":false,"id":"bc7a2f54-60da-4bb6-96f3-795d0359d8f8","last_modified":16015174457
31},{"schema":1601373062251,"derHash":"YIG+5bDfGRrE4mWsD294mfB4uMifBgVa4Wavkd9w1uA=","subject":"CN=e-Szigno Qualified QCP CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHoxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJzAlBgNVBAMMHmUtU3ppZ25vIFF1YWxpZmllZCBRQ1AgQ0EgMjAxNw==","whitelist":false,"attachment":{"hash":"280a786ca35892c86124fb11c5e02f70f1bf6cd40daa1e6538e054942241cdaf","size":1674,"filename":"zohU4uap0ZYaGxznYnSZfimXMiL0fPpOwF3CBDSo608=.pem","location":"security-state-staging/intermediates/bb8b8c4c-b637-4241-a27d-e3f497235709.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zohU4uap0ZYaGxznYnSZfimXMiL0fPpOwF3CBDSo608=","crlite_enrolled":false,"id":"0f3daffc-a656-4c5f-a71b-0db59222a014","last_modified":1601517445720},{"schema":1601373057866,"derHash":"ffgAB19SA8AXNk6BGVqayf8AxQfWSnD3N9jT6Ms/CEU=","subject":"CN=e-Szigno Qualified TLS CA 2018,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHoxCzAJBgNV
BAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJzAlBgNVBAMMHmUtU3ppZ25vIFF1YWxpZmllZCBUTFMgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"df20fd29ecb80ea583b981311eed6c99114bffa8ab98b5265dc4c8efcc1897f0","size":1674,"filename":"qd9EIyfp7CEtbkxafeyYAuC_8wQBWqGZflkLznwnuyc=.pem","location":"security-state-staging/intermediates/9528d3b9-a037-4f0f-b644-1e7827d3c927.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qd9EIyfp7CEtbkxafeyYAuC/8wQBWqGZflkLznwnuyc=","crlite_enrolled":true,"id":"4802c4c4-718e-4497-a9a5-c367fed873eb","last_modified":1601517445709},{"schema":1601373055050,"derHash":"1oMbpDYH9awZd41idTFWKvVRRfGRyrXvr6DgAFRCswI=","subject":"CN=Microsoft Azure TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNQ==","whitelist":false,"attachment":{"hash":"eec823ad61a76103455ac29ab1ea726af33
851691074cffd1fb703c49fe85217","size":2121,"filename":"4i4h0jN9NROr1xKJI-TQ1Q_ZIfUjPMXtmWUsDR3Pjiw=.pem","location":"security-state-staging/intermediates/d49999e5-60cd-4c45-a970-e9462ab32f63.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4i4h0jN9NROr1xKJI+TQ1Q/ZIfUjPMXtmWUsDR3Pjiw=","crlite_enrolled":true,"id":"9561182b-470d-459e-8d38-ee7e1b3ceed8","last_modified":1601517445698},{"schema":1601373060728,"derHash":"4iFgNk5W98JyNPVDXYR3saW7ugEQMpjzlUkJGA3wJ3g=","subject":"CN=VR IDENT SSL CA 2018,OU=VR IDENT,O=Fiducia & GAD IT AG,C=DE","subjectDN":"MF0xCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMREwDwYDVQQLDAhWUiBJREVOVDEdMBsGA1UEAwwUVlIgSURFTlQgU1NMIENBIDIwMTg=","whitelist":false,"attachment":{"hash":"ad86215f7ef8a6f4477d1e9ceb7ec59f0773886cebfee09bac4eb456aa559c8c","size":2085,"filename":"9frFyfDp-D9WCFjQblKwXUi5EgVRtx22594YJETOc_Y=.pem","location":"security-state-staging/intermediates/8f810e8e-9b9b-4830-b261-6873c11e2437.pem","mimetype":"application/x-pem-file"}
,"pubKeyHash":"9frFyfDp+D9WCFjQblKwXUi5EgVRtx22594YJETOc/Y=","crlite_enrolled":true,"id":"0c6f5e09-6c3c-4747-b629-3d81788a49ae","last_modified":1601517445675},{"schema":1601373050792,"derHash":"rXtYw8XZWGvltieZwnksQRHJhSqW97BgciEmVxOVfhw=","subject":"CN=SHECA OV Secure Server CA,O=Shanghai Electronic Certificate Authority Center Co.\\, Ltd.,C=CN","subjectDN":"MHYxCzAJBgNVBAYTAkNOMUMwQQYDVQQKEzpTaGFuZ2hhaSBFbGVjdHJvbmljIENlcnRpZmljYXRlIEF1dGhvcml0eSBDZW50ZXIgQ28uLCBMdGQuMSIwIAYDVQQDExlTSEVDQSBPViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"64ac68b2f5fcfe1eb5b26d7d052a52af0101c298fc359ab1870916a82601f563","size":1808,"filename":"GvyQK0TA2Qh-B1rvOMI28XPmBiJD59lQrwz_N-iQO_U=.pem","location":"security-state-staging/intermediates/f52fd61a-cf0c-4458-a6a1-3cfe976c2304.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GvyQK0TA2Qh+B1rvOMI28XPmBiJD59lQrwz/N+iQO/U=","crlite_enrolled":true,"id":"cf8cce0e-bdf8-41ca-b618-b43f76dc9e43","last_modified":1601517445664},{"schem
a":1601373052202,"derHash":"MqTlVONjEW/kjiLwHawXNnUqcccg+Z9GLVZQItO60H0=","subject":"CN=DPDHL Global TLS CA - I5,O=Deutsche Post AG,C=DE","subjectDN":"MEsxCzAJBgNVBAYTAkRFMRkwFwYDVQQKExBEZXV0c2NoZSBQb3N0IEFHMSEwHwYDVQQDExhEUERITCBHbG9iYWwgVExTIENBIC0gSTU=","whitelist":false,"attachment":{"hash":"136f459d98a2f42f67f606dcf55c11198fea1f244cf8003c576d60d969cef1ac","size":1695,"filename":"90SkSHjn6UuYfQCvunxuVf7tHQJ3Y7-_aukXzu-S0_M=.pem","location":"security-state-staging/intermediates/c1a36f1f-4324-4c38-822b-4955c7caa508.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"90SkSHjn6UuYfQCvunxuVf7tHQJ3Y7+/aukXzu+S0/M=","crlite_enrolled":true,"id":"c33aa503-cce0-418b-b8e1-1cd25396b905","last_modified":1601517445653},{"schema":1601373043849,"derHash":"YGDqsYASLrFPIu3kZbSppw4p5w+xguvwHVsTM/LnMkI=","subject":"CN=RapidSSL TLS DV RSA Mixed SHA256 2021 CA-1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKlJhcGlkU1NMIFRMUyBEViBSU0EgTWl4ZWQgU0
hBMjU2IDIwMjEgQ0EtMQ==","whitelist":false,"attachment":{"hash":"3ba8b83eb97ad48e9de41cf5e2bf4f6fdf72bd92b464134f8a11860b041476ae","size":1902,"filename":"inFIEiXuCIo8SWXm9sdY-WQwNjNja_ms8JpF3Lq3T2w=.pem","location":"security-state-staging/intermediates/4f7289d9-3d0b-4bf7-9a5e-934f96747340.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"inFIEiXuCIo8SWXm9sdY+WQwNjNja/ms8JpF3Lq3T2w=","crlite_enrolled":false,"id":"02ce3313-f150-44ba-b7a1-9aee17e6d859","last_modified":1601517445642},{"schema":1601373048045,"derHash":"1KWUHHFB7RlJoMbOndRaCrlNwzeQLrChIJhSc47r6FQ=","subject":"CN=GlobalSign GCC R3 EV QWAC CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIEdDQyBSMyBFViBRV0FDIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"9a306430e243544a1c823baa60388aa1b7c197ccafd79a5fd9847056d91f6d8b","size":2032,"filename":"6Vipkd7oFTwhj_Z54b71vjmwq0aEJc6KkharcmzGaV4=.pem","location":"security-state-staging/interm
ediates/54c37b8e-2d9f-4770-a6ee-08a7d4d11934.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6Vipkd7oFTwhj/Z54b71vjmwq0aEJc6KkharcmzGaV4=","crlite_enrolled":false,"id":"16ddf1bb-a12f-4d95-a455-9e6a82d4469a","last_modified":1601517445631},{"schema":1601373049403,"derHash":"QtyCf0b7XoXf+uR9PGkPUB7OJdV11ZelDY+Hj6Qq/Oo=","subject":"CN=e-Szigno Class2 CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHMxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxIDAeBgNVBAMMF2UtU3ppZ25vIENsYXNzMiBDQSAyMDE3","whitelist":false,"attachment":{"hash":"24e4936e9492f5245f32e7f9b60258d25f2a4c8e36002f26691cdf9f19bb94f3","size":1662,"filename":"3TGdI2jR-PvtWXO9N84WdfCRvr5nND75u1oGBVvPEl4=.pem","location":"security-state-staging/intermediates/a0283198-a2ca-42e2-abee-9f579d7b9911.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3TGdI2jR+PvtWXO9N84WdfCRvr5nND75u1oGBVvPEl4=","crlite_enrolled":false,"id":"6df97aa6-df00-4c66-afdc-850ead
7cdcec","last_modified":1601517445619},{"schema":1601373045250,"derHash":"lJ1rS3YcoTStPnqFcRhvWA7oh/LGtWi1FA9BV/mNaN0=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDE=","whitelist":false,"attachment":{"hash":"1a3bc0dfeb8f9e3f79809953a727d69dc11a315684b4cf57c35d226206502e31","size":1329,"filename":"OZOx9JJC3JsSDSjFX2iEA3_ED6gCha3L1ZrOeRNoyx8=.pem","location":"security-state-staging/intermediates/471ff3d1-a234-44c3-9336-a3593480bf23.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OZOx9JJC3JsSDSjFX2iEA3/ED6gCha3L1ZrOeRNoyx8=","crlite_enrolled":true,"id":"46952ab6-744f-4ac4-8cd9-767a8ebaa351","last_modified":1601517445608},{"schema":1601373046633,"derHash":"wa13eHltILymXIiaJlUCEVZSi7Yv9fpD4bjlqD49Lqo=","subject":"CN=DigiCert SHA2 Secure Server CA,O=DigiCert Inc,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMRUwEw
YDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"f4d91481d1e4e17c44e796f180b7b4af9f0ae8e97cf8d41165640b3fdefd8f5d","size":1760,"filename":"5kJvNEMw0KjrCAu7eXY5HZdvyCS13BbA0VJG1RSP91w=.pem","location":"security-state-staging/intermediates/17efd7bd-6142-4486-a521-1bac923f5f17.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5kJvNEMw0KjrCAu7eXY5HZdvyCS13BbA0VJG1RSP91w=","crlite_enrolled":true,"id":"e194894d-74fa-4e44-b5c9-c5bbb841d31a","last_modified":1601517445597},{"schema":1601373042464,"derHash":"DTb2oimeniaPlK20nlfmcX1xPD9HuInEDc3Iz+lAy4A=","subject":"CN=Beame.io CA 1,O=Beame.io Ltd,C=IL","subjectDN":"MDwxCzAJBgNVBAYTAklMMRUwEwYDVQQKEwxCZWFtZS5pbyBMdGQxFjAUBgNVBAMTDUJlYW1lLmlvIENBIDE=","whitelist":false,"attachment":{"hash":"4b493757d7d299f8cc22b2765b16fa2d9bcc5aab6354a1aba37cad4f16162bf8","size":1727,"filename":"5fxJ002g5Il0LSaAZtiEC7BeF8z-cxBoMLk7llE9WeI=.pem","location":"security-state-staging/int
ermediates/0491bd9a-2ff4-4f0a-a3b2-3bee78c50874.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5fxJ002g5Il0LSaAZtiEC7BeF8z+cxBoMLk7llE9WeI=","crlite_enrolled":false,"id":"eef290b4-e4ac-424b-91d6-846b75957235","last_modified":1601517445586},{"schema":1601373038124,"derHash":"Z4LG6a2/khbiaDBtRjM/vGdL3t+GtnvndweeLA42iI4=","subject":"CN=Trustwave Global Domain Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGOMTcwNQYDVQQDEy5UcnVzdHdhdmUgR2xvYmFsIERvbWFpbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"a1aae690e4bc653bc8dd049d0014c8bdf294c1327ae51c6f40d11e8b728cdee3","size":2499,"filename":"N8k0xQNnFdJBZpSXQ6W9OldaDSJ59X-kFQNRrNSN8Cw=.pem","location":"security-state-staging/intermediates/10461dd8-f33a-4e82-b46a-5408f96b944a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N8k0xQNnFdJBZp
SXQ6W9OldaDSJ59X+kFQNRrNSN8Cw=","crlite_enrolled":false,"id":"beb516ed-cac1-4c3b-af61-f25c3202f32a","last_modified":1601517445563},{"schema":1601373039540,"derHash":"HjVoI/5AwOqsKfntVGO3stscCItj67BYdqLmMcEId5g=","subject":"CN=QuoVadis Enterprise Trust CA 2 G4,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFsxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEqMCgGA1UEAwwhUXVvVmFkaXMgRW50ZXJwcmlzZSBUcnVzdCBDQSAyIEc0","whitelist":false,"attachment":{"hash":"756cc72bf46fca106a4ae94315fc04ea6bbe1b93e3229513d02875b33ca13f45","size":2385,"filename":"z-lEyVPfwY15LjMDGouWc4Jt0MFWaf2MpLOSN9mx9tM=.pem","location":"security-state-staging/intermediates/8a9ec500-a3e8-4a94-a076-29717920b30a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z+lEyVPfwY15LjMDGouWc4Jt0MFWaf2MpLOSN9mx9tM=","crlite_enrolled":false,"id":"6d245b72-3e57-43e5-936f-1071536497e7","last_modified":1601517445552},{"schema":1601373033892,"derHash":"iu/r2IvoejCxnGDFvQ+16fvNFdVYLV/Jp0mVeNaNzsA=","subject":"CN=Vali
d Certificadora Digital SSL EV CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGgxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgRVYgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"54373e1e17726accdcc2879266317a44d0dc889c8003fa002f0337d0cd53627c","size":1788,"filename":"Fvvsf-SjFcNThumRKUfh4Zsz4ZsXqkoWTiLt7iT8DBo=.pem","location":"security-state-staging/intermediates/49c18a87-730f-412f-8285-71d4cd57b21e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Fvvsf+SjFcNThumRKUfh4Zsz4ZsXqkoWTiLt7iT8DBo=","crlite_enrolled":true,"id":"741c5f94-32f1-402f-ae6a-c183d5680da9","last_modified":1601517445540},{"schema":1601373035317,"derHash":"f+uTdOqwjTknF8ZHQ22uBhdqJMAQYH/aHM5eXwEGtHI=","subject":"CN=QuoVadis Qualified Web ICA G2,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFcxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEmMCQGA1UEAwwdUXVvVmFkaXMgUXVhbGlmaWVkIFdlYiBJQ0EgRzI=","whit
elist":false,"attachment":{"hash":"c551ff3d69db56e747169ab80b2fdea513f1de4806de98e0e34ab04da70a7566","size":2385,"filename":"HW4ktpkbc6tiWRVtXWUrZxqP505LD1tPqFHb3HiZbX8=.pem","location":"security-state-staging/intermediates/4557b165-1b70-4b52-a1df-a31b5fcc16f6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HW4ktpkbc6tiWRVtXWUrZxqP505LD1tPqFHb3HiZbX8=","crlite_enrolled":true,"id":"70588538-20e7-4b9a-980d-0d1bd77ff052","last_modified":1601517445529},{"schema":1601373029586,"derHash":"GKvW6cqQe7NnVNDARuu1Ddm5XVJ4JNlYGjG3UPz9uu8=","subject":"CN=Trustwave Global ECDSA P-256 Organization Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGgMUkwRwYDVQQDE0BUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMjU2IE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"f16bdfde574887cdf9b20fdd1a1ad5e789c2d8b509
4a68dc63225d64c51f2d50","size":1329,"filename":"lZMwN7CwdUNqVdEULuLxoCtwEIC9qGjWWMelIDRtDNU=.pem","location":"security-state-staging/intermediates/9a14c734-72c1-49ae-8503-ff362f4d20d5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lZMwN7CwdUNqVdEULuLxoCtwEIC9qGjWWMelIDRtDNU=","crlite_enrolled":false,"id":"dc0e3a1b-af1b-4795-a306-b6671eafd75f","last_modified":1601517445517},{"schema":1601373032433,"derHash":"YDiLdz0z6RQWSGE/NrkUnwFaEUN4us8+NpSGT/2kJuw=","subject":"CN=HydrantID EV SSL CA G2,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMTAwLgYDVQQKDCdIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHzAdBgNVBAMMFkh5ZHJhbnRJRCBFViBTU0wgQ0EgRzI=","whitelist":false,"attachment":{"hash":"ba2cc602bd31081e17f7745ac462854773e79726958ff1b8a553cc7ecaba9db2","size":2389,"filename":"FpAps1LWs_UTm3xApHYkNccnnZX-7Wc_v8V0t70p6rg=.pem","location":"security-state-staging/intermediates/9a936f86-971e-4af3-ae70-ee94da9a5554.pem","mimetype":"application/x-pe
m-file"},"pubKeyHash":"FpAps1LWs/UTm3xApHYkNccnnZX+7Wc/v8V0t70p6rg=","crlite_enrolled":true,"id":"05c4f166-166c-46c7-853e-436884874fa9","last_modified":1601517445506},{"schema":1601373036712,"derHash":"T4OELx8Eqx4E1NjnUWZvyoLlGRyvwkBiv9H+d8AspLQ=","subject":"CN=e-Szigno Class3 CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHMxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxIDAeBgNVBAMMF2UtU3ppZ25vIENsYXNzMyBDQSAyMDE3","whitelist":false,"attachment":{"hash":"71132024dc6f9eb4be8dbf1a0131b491fae4efd3d711ad58c399ed1ebdd355ef","size":1662,"filename":"X4MOqhXQM4obftW5dgADxiIIIaZwoNHvuYhRJq7eVe0=.pem","location":"security-state-staging/intermediates/b983723e-4861-4166-a5e3-5b415cee2a65.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"X4MOqhXQM4obftW5dgADxiIIIaZwoNHvuYhRJq7eVe0=","crlite_enrolled":false,"id":"f369caa4-59c3-40ea-ab24-534bda082949","last_modified":1601517445495},{"schema":1601373022448,"derHash":"sarhv
NVV6KPR492o7ITnV8VSZVNEzj/uu6+Y6JXb7aw=","subject":"CN=QuoVadis Europe SSL CA G2,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFMxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEiMCAGA1UEAwwZUXVvVmFkaXMgRXVyb3BlIFNTTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"dfb31ebff112bccbef0ba90c29987f9962823acb59f69bd984351d9e2c7e22df","size":2381,"filename":"XOogr9_VItHwTOA_JogutdX4V06tVw9btHQLa2tR0_A=.pem","location":"security-state-staging/intermediates/d277bb95-8c7d-4bda-b42b-841c07743fc9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XOogr9/VItHwTOA/JogutdX4V06tVw9btHQLa2tR0/A=","crlite_enrolled":true,"id":"fbb49441-fc76-4afd-b067-1c2f1578798d","last_modified":1601517445484},{"schema":1601373026753,"derHash":"mRe/2FNziYXkbJIEGUEOlmwxaYJ2nnGBfifQOEu+Nnk=","subject":"CN=certSIGN Public CA,O=CERTSIGN SA,C=RO","subjectDN":"MFkxCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEbMBkGA1UEAxMSY2VydFNJR04gUHVibGljIENBMRcwFQYDVQRhEw5WQVRSTy0xODI4ODI1MA==","whitelist":fa
lse,"attachment":{"hash":"d61a1b35a91c710f44d6b989faabe0cbe91a89dbc701983bdbf2602b85bf3038","size":2312,"filename":"IGxtWhsxuC58R149YREUyaqPK7jXR9no_MMC227zRVo=.pem","location":"security-state-staging/intermediates/f32e48dd-f449-4b02-b440-48880750748b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IGxtWhsxuC58R149YREUyaqPK7jXR9no/MMC227zRVo=","crlite_enrolled":false,"id":"c16caddc-a295-485f-a252-08d162ad74da","last_modified":1601517445472},{"schema":1601373025354,"derHash":"gpj8QnBMTtd0tNsxBSkmC1JKkHUlKh0Ks44G8bmoNJk=","subject":"CN=CertCloud RSA TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"MEoxCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMR0wGwYDVQQDExRDZXJ0Q2xvdWQgUlNBIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"59bb133020146d20f0d963a09c0520755e8a49c60982dbc377b4072ee287be19","size":2073,"filename":"Wz3-4Wr1VbAmx0vpewGzhrRMM8dT5kZ8_PHc1S6WqYs=.pem","location":"security-state-staging/intermediates/3f52eb76-c690-4e12-a4e3-67a11e5c69ec.pem","mimetype"
:"application/x-pem-file"},"pubKeyHash":"Wz3+4Wr1VbAmx0vpewGzhrRMM8dT5kZ8/PHc1S6WqYs=","crlite_enrolled":false,"id":"63cade8d-29ec-4030-993f-05ec44965f59","last_modified":1601517445461},{"schema":1601373031043,"derHash":"ozAX2d9JTAnVhwkQdAOu5GG5Rh6BujlcKMNmk8J9GYY=","subject":"CN=GlobalSign GCC R3 UK EV QWAC CA 2020,O=GMO GlobalSign Ltd,C=GB","subjectDN":"MFkxCzAJBgNVBAYTAkdCMRswGQYDVQQKExJHTU8gR2xvYmFsU2lnbiBMdGQxLTArBgNVBAMTJEdsb2JhbFNpZ24gR0NDIFIzIFVLIEVWIFFXQUMgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"ef3f87aa1971aaebb3accc4f6b43e518068a070c3df5324fafc49bd6faea510d","size":2040,"filename":"_cLNIs90Pu4zrpnBuJdA-wTl2BrxEVUjup-MFOMyr1g=.pem","location":"security-state-staging/intermediates/6aff1d72-b020-44ed-9747-7e0d0daeebe1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/cLNIs90Pu4zrpnBuJdA+wTl2BrxEVUjup+MFOMyr1g=","crlite_enrolled":false,"id":"0de3a855-871f-4807-8a57-6455d04ddf13","last_modified":1601517445450},{"schema":1601373028185,"derHash":"NH0Y3Mwu/FG
pIOen+7B7+9o1YTaB+C3KXExyuwyDwDU=","subject":"CN=VR IDENT SSL CA 2020,O=Fiducia & GAD IT AG,C=DE","subjectDN":"MEoxCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMR0wGwYDVQQDDBRWUiBJREVOVCBTU0wgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"4158e246be129509cb8d8eb14b647517fea0196e81a9d593f4b8f64a11a6414f","size":2357,"filename":"fQUctsUYoew1aFnAFT0prf-kJmkVNqkPo2jJ5Jm9RaA=.pem","location":"security-state-staging/intermediates/c5cd11fd-b913-4de0-8e55-2cba38801c23.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fQUctsUYoew1aFnAFT0prf+kJmkVNqkPo2jJ5Jm9RaA=","crlite_enrolled":true,"id":"8b7ef937-682a-4391-bc17-7b736da1f754","last_modified":1601517445438},{"schema":1601373023867,"derHash":"ZZt6UYxsnrGKoes1rrp6AkeBe4mMH6GED5fSh32aIOQ=","subject":"CN=JPRS Domain Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24g
QXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"19f63552805d608f671589717902feefe03afc5da94e20c555f68ef484a23b46","size":1772,"filename":"n1ufb8l1_ENW_uOKNKgHIeBe_NgVI39f0IzwWmCVHvE=.pem","location":"security-state-staging/intermediates/eb37192b-3adc-4149-a4a6-22c2a4989853.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n1ufb8l1/ENW/uOKNKgHIeBe/NgVI39f0IzwWmCVHvE=","crlite_enrolled":true,"id":"4c46f44e-56a4-4453-aa72-bde6a760e021","last_modified":1601517445427},{"schema":1601373021078,"derHash":"MCQkQ/aJWpRWDkjk3/cgU26vUWPLQvXod0AqveL4Ynw=","subject":"CN=QuoVadis Global SSL ICA G3,O=QuoVadis Limited,C=BM","subjectDN":"ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMw==","whitelist":false,"attachment":{"hash":"63f37d712386cb1b4ab3fb0368f861aeb7ba74ec9b9bc7ecdd247bcf94725693","size":2373,"filename":"KM3iZPSceB-hgYuNI-cSg4LRgTiUxCeGjrfXRQAY6Rs=.pem","location":"security-state-staging/intermediates/39871409-2
b2c-4c4c-bbfe-718a4f28b294.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KM3iZPSceB+hgYuNI+cSg4LRgTiUxCeGjrfXRQAY6Rs=","crlite_enrolled":true,"id":"d6eb39bf-c00f-470b-b66d-4cbff41072d6","last_modified":1601517445416},{"schema":1601373015521,"derHash":"y2Zmsyv/Lv7cxBh98Umm00pdELcWW5z/KmfA4xGu7tc=","subject":"CN=QuoVadis Europe EV SSL CA G1,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFYxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjElMCMGA1UEAwwcUXVvVmFkaXMgRXVyb3BlIEVWIFNTTCBDQSBHMQ==","whitelist":false,"attachment":{"hash":"990290f2ea4ff420df521c3b3851971e7be41a8508394faa2cb562a69bce9e55","size":2385,"filename":"WkWVWx1-X3CuwtFGJvDjdr5hOX8PeMryJG2Va7Y6cj8=.pem","location":"security-state-staging/intermediates/c109e409-4365-46b3-9ad9-fa7bfb71916e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WkWVWx1+X3CuwtFGJvDjdr5hOX8PeMryJG2Va7Y6cj8=","crlite_enrolled":true,"id":"be8ee1dd-ae8d-4533-b3df-85448960d676","last_modified":1601517445405},{"schema":160
1373018308,"derHash":"AD9x3EggIWV1/Fqs/jsa63b3Kupbjo/O/IC59RekphI=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDU=","whitelist":false,"attachment":{"hash":"312e807dea2263ef605990bfa0b57b238b64d9fea0fc945e37f48f3e6246d576","size":1329,"filename":"k09MzmwiRPkPmkpgmUtprMk_uALSVedNLtfOBkCMvXE=.pem","location":"security-state-staging/intermediates/b67ac8d6-d3f8-4aff-a8b2-27648de5ca88.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k09MzmwiRPkPmkpgmUtprMk/uALSVedNLtfOBkCMvXE=","crlite_enrolled":false,"id":"8c986b7e-d08c-4c76-975d-f8d0f5c5e972","last_modified":1601517445383},{"schema":1601373019690,"derHash":"q7P/KZqhuu/BJ4gYxCQ4iu97KWUVlcYBlOeNlDaUaAs=","subject":"CN=QuoVadis EV SSL ICA G3,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpc
yBFViBTU0wgSUNBIEcz","whitelist":false,"attachment":{"hash":"d81fa5cb3c1ec6bbe8f1e276fd6412ef30e25f49781b84d8eb23f85d412845ef","size":2389,"filename":"S0SyfMJffMM5SZRx8KboH82naxKe-XlFltR_gu3qSzg=.pem","location":"security-state-staging/intermediates/399cee33-9586-41bb-bc42-6810dfa7af54.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S0SyfMJffMM5SZRx8KboH82naxKe+XlFltR/gu3qSzg=","crlite_enrolled":true,"id":"57e04007-0e32-49c8-878b-c113ac0b0204","last_modified":1601517445372},{"schema":1601373014084,"derHash":"gBxSLTrROOTwXUZ+o2nBzCdgeL8oQBjQUl67vFNCyDY=","subject":"CN=JPRS Organization Validation Authority - G4,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzQ=","whitelist":false,"attachment":{"hash":"5073da9684a445c50c1705a593be556ce4f1fa98e69b8c50acc426e2088d88b7","size":1788,"filename":"xOSyACYAjsQ-aXD2iEFnKCVOcUsX8A
VVqCGczMoh8lw=.pem","location":"security-state-staging/intermediates/37978617-d633-4b10-9ad5-20fb1eb251e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xOSyACYAjsQ+aXD2iEFnKCVOcUsX8AVVqCGczMoh8lw=","crlite_enrolled":true,"id":"6e8f2f2b-bcba-4f33-94ec-0a957b820ea2","last_modified":1601517445361},{"schema":1601373009905,"derHash":"WAuzqxJ/XhPpQK5zZePGmmKtIE1/36RRWS/nxH3AKpU=","subject":"CN=Prodrive Technologies B.V. OV SSL Issuing CA,O=Prodrive Technologies B.V.,C=NL","subjectDN":"MGkxCzAJBgNVBAYTAk5MMSMwIQYDVQQKExpQcm9kcml2ZSBUZWNobm9sb2dpZXMgQi5WLjE1MDMGA1UEAxMsUHJvZHJpdmUgVGVjaG5vbG9naWVzIEIuVi4gT1YgU1NMIElzc3VpbmcgQ0E=","whitelist":false,"attachment":{"hash":"f33b1ca67bc2f7ef2190fc43c1d09060a4d6392a8969577007ae2dcf61b1b92a","size":1788,"filename":"-wd4uhPIbo8yHwCQuKSPir6tNrh9C4xO-yIp2mXFvWw=.pem","location":"security-state-staging/intermediates/cf2dd791-1cb8-4120-9b15-9753e5636426.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+wd4uhPIbo8yHwCQuKSPir6tNrh9C4xO+yI
p2mXFvWw=","crlite_enrolled":true,"id":"4cc64cd6-766e-45df-8736-8ed3f0b8ed2b","last_modified":1601517445350},{"schema":1601373011329,"derHash":"FjzS/K0NaofI2vzgVvWU87U7kXwPkl1A2SJY6id/xPQ=","subject":"CN=QuoVadis Qualified Web ICA G1,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MHAxCzAJBgNVBAYTAk5MMRcwFQYDVQRhDA5OVFJOTC0zMDIzNzQ1OTEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xJjAkBgNVBAMMHVF1b1ZhZGlzIFF1YWxpZmllZCBXZWIgSUNBIEcx","whitelist":false,"attachment":{"hash":"d4292d809a630e5b57cdc50d9205799bd35a8b3a0c8cf33366d00d5e3e8cdf78","size":2499,"filename":"EWJY2DWEXe27fystTVa-0cHUmGdi6igRAeyxOTlgFDY=.pem","location":"security-state-staging/intermediates/c5792cf8-8999-4ef3-be9d-129c9886ac27.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EWJY2DWEXe27fystTVa+0cHUmGdi6igRAeyxOTlgFDY=","crlite_enrolled":true,"id":"732922a9-4172-428e-90da-844ecf1ead96","last_modified":1601517445339},{"schema":1601373012722,"derHash":"a0O0wkOqLZlEDA8UvexSMe7GPoaq8jdspwAgKEWNxyY=","subject":"CN=Hyd
rantID EV SSL ICA G1,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMTAwLgYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxIDAeBgNVBAMTF0h5ZHJhbnRJRCBFViBTU0wgSUNBIEcx","whitelist":false,"attachment":{"hash":"b63de0fbdd8dbe519e4d6f674c13166625a717f8e6156297f07badf1c8b0d8fc","size":2438,"filename":"EnmchGPCp5YYVoSwFIxrS6A7RJUxstcXt8NlMXfA6Tw=.pem","location":"security-state-staging/intermediates/fb391543-5f49-46ed-80a5-42df9aea0b5c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EnmchGPCp5YYVoSwFIxrS6A7RJUxstcXt8NlMXfA6Tw=","crlite_enrolled":true,"id":"80645ecf-a0a4-4cd4-bda9-ff2edd1cad90","last_modified":1601517445327},{"schema":1601373006798,"derHash":"iZlLbZ2d3/9of6vT5zQs3YUi1mH1786Oar3rJaBPECM=","subject":"CN=QuoVadis Europe SSL CA G1,O=QuoVadis Trustlink BVBA,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMSAwHgYDVQQKExdRdW9WYWRpcyBUcnVzdGxpbmsgQlZCQTEiMCAGA1UEAxMZUXVvVmFkaXMgRXVyb3BlIFNTTCBDQSBHMQ==","whitelist":false,"attachment":
{"hash":"4446a8961707823fad23675d037ebcc454ecda2fe98586b7839466271d4521a2","size":2369,"filename":"k3XnEYQCK79AtL9GYnT_nyhsabas03V-bhRQYHQbpXU=.pem","location":"security-state-staging/intermediates/0e88e01d-3cf6-41bf-82fa-ec760632f6d9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k3XnEYQCK79AtL9GYnT/nyhsabas03V+bhRQYHQbpXU=","crlite_enrolled":true,"id":"3c925fcd-4777-4caf-95a1-e9b43fded89a","last_modified":1601517445305},{"schema":1601373000857,"derHash":"yhTPmzCboDK7IZEMGu2uTSn+Bla0+L/6I8vpTUMcBnQ=","subject":"CN=Entrust Certification Authority - DE QWAC1,O=Entrust Datacard Deutschland GmbH,C=DE","subjectDN":"MIGIMTMwMQYDVQQDDCpFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gREUgUVdBQzExGDAWBgNVBGEMD1ZBVERFLTExOTI2NDMxNjEqMCgGA1UECgwhRW50cnVzdCBEYXRhY2FyZCBEZXV0c2NobGFuZCBHbWJIMQswCQYDVQQGEwJERQ==","whitelist":false,"attachment":{"hash":"4e133243cde83dcbe732252fbf43b8518690328d9c29c7647170c786d537e396","size":1792,"filename":"ZWhmaUZRaiEz-pmpHFYrrwb8L7sV4g8Lss57AOkaaLg=.pem"
,"location":"security-state-staging/intermediates/caa2d710-6be9-4877-98e8-e7eb89e1ece1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZWhmaUZRaiEz+pmpHFYrrwb8L7sV4g8Lss57AOkaaLg=","crlite_enrolled":true,"id":"fb1542af-66aa-4793-a4a4-2ec82b62886f","last_modified":1601517445294},{"schema":1601373002455,"derHash":"jJegCPfOIfdG6vsuOuBgleVX0omjEMgsbzwC2fch5fg=","subject":"CN=VR IDENT EV SSL CA 2018,OU=VR IDENT,O=Fiducia & GAD IT AG,C=DE","subjectDN":"MGAxCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMREwDwYDVQQLDAhWUiBJREVOVDEgMB4GA1UEAwwXVlIgSURFTlQgRVYgU1NMIENBIDIwMTg=","whitelist":false,"attachment":{"hash":"27785b9964ca41a7f924e4715e32d3827904bec2c860b8f2f76367447209d89d","size":2089,"filename":"WDFtLnObNhLxa9b3x6LeuoWAZeafyD6K2Il4Wi_HzF0=.pem","location":"security-state-staging/intermediates/7923969e-6dfe-452f-ad52-6c9e18f6b1f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WDFtLnObNhLxa9b3x6LeuoWAZeafyD6K2Il4Wi/HzF0=","crlite_enrolled":true,"id":"3535778
2-dccb-4d60-914f-70a972059474","last_modified":1601517445272},{"schema":1601373003919,"derHash":"yKYQupQXdw0sAt4ivKjFakKK916ONU76NsVoIh3bfPw=","subject":"CN=WISeKey CertifyID SSL GB CA 2,O=WISeKey,C=CH","subjectDN":"MEcxCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSYwJAYDVQQDEx1XSVNlS2V5IENlcnRpZnlJRCBTU0wgR0IgQ0EgMg==","whitelist":false,"attachment":{"hash":"25f18c47254a897f57257e91e33dccd040b88a2d2805589a22993da2900db84f","size":1699,"filename":"ktJRzJxhVE71wdby3vum5K-dgm6QylD4z-l9CBGOUQU=.pem","location":"security-state-staging/intermediates/157b7e9c-098b-4150-9256-1327b4494c1d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ktJRzJxhVE71wdby3vum5K+dgm6QylD4z+l9CBGOUQU=","crlite_enrolled":true,"id":"95dfd144-a5fe-481a-8864-499dbc671323","last_modified":1601517445261},{"schema":1601372999143,"derHash":"8RRGn7gHeBM6H3Dk2DOO2rl91CzrjswByvtw1rh98R4=","subject":"CN=certSIGN Web CA,O=CERTSIGN SA,C=RO","subjectDN":"MFYxCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEYMBYGA1UEAxMPY2Vyd
FNJR04gV2ViIENBMRcwFQYDVQRhEw5WQVRSTy0xODI4ODI1MA==","whitelist":false,"attachment":{"hash":"d637585d0fa1d3a2b6cea2a2ab6f2b7d30229bc1eb350aeb2b8cc2f529b5998a","size":2308,"filename":"G6NjfcFmFAa5DouUTqNGb3I5tG34kmES3evs_0ubJ68=.pem","location":"security-state-staging/intermediates/41d41219-98b5-42b0-af05-16477adebf5b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G6NjfcFmFAa5DouUTqNGb3I5tG34kmES3evs/0ubJ68=","crlite_enrolled":true,"id":"16c01cde-d169-45ca-b52b-e3c8ff102c4c","last_modified":1601517445250},{"schema":1601372996248,"derHash":"Kyz67KvyJm/U+2UF8zQrklFOvm+nwIy2y9SYj2r9F70=","subject":"SERIALNUMBER=ZZZZZZB9,CN=Siemens Issuing CA Internet Server 2017,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGnMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQjkxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMTAwLgYDVQQDDCdTaWVtZW5zIElzc3VpbmcgQ0EgSW50ZXJuZXQgU2VydmVyIDIwMTc=","whitelist":false
,"attachment":{"hash":"399b1d081c0af091e4829f3801f90b9e266db1e4e3c5d6a03e438d33ecc67c14","size":2788,"filename":"f4p5PJI5fILNPQJUbuMdNzd-JMnwHZgjMi4ZjRUXTTk=.pem","location":"security-state-staging/intermediates/bd9324bb-91f0-4fa2-9e2f-01a7635399bf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"f4p5PJI5fILNPQJUbuMdNzd+JMnwHZgjMi4ZjRUXTTk=","crlite_enrolled":true,"id":"c146412b-6547-40f7-b3b1-14568ce07444","last_modified":1601517445239},{"schema":1601372993406,"derHash":"Kg4/KneoDcvlzVLVDWUHbr03+tUx2xDWoThaVX97cl0=","subject":"CN=e-Szigno Class2 SSL CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJDAiBgNVBAMMG2UtU3ppZ25vIENsYXNzMiBTU0wgQ0EgMjAxNw==","whitelist":false,"attachment":{"hash":"bcb11e505804477ce4429c8ef9cc22d043e0f59d222d5e4524ec9158cc8e972b","size":1666,"filename":"HGXB7TIfcoLqLINF3LJD2A9t3V4VdHjcBv6LboViQMo=.pem","location":"security-state-stagin
g/intermediates/30bc71d2-6f0d-4d55-8e79-2d8b4e3ca301.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HGXB7TIfcoLqLINF3LJD2A9t3V4VdHjcBv6LboViQMo=","crlite_enrolled":false,"id":"b35f777c-ccb5-4262-bd7b-171a05274855","last_modified":1601517445215},{"schema":1601372987894,"derHash":"kfGc5QPJ/n/5WH2O++9zFarud9wtFFJhJkk7Stb+gB8=","subject":"CN=Trusted Root TLS CA SHA256 G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1UcnVzdGVkIFJvb3QgVExTIENBIFNIQTI1NiBHMw==","whitelist":false,"attachment":{"hash":"9e03d57a2b38ff0564d3f320d536aae856aa3db18618f722e03e7da8e2a0d9eb","size":1674,"filename":"hMdIk_Qh87wkhjuY3vWYC85yuCKrEfbi9b3j7xJNPec=.pem","location":"security-state-staging/intermediates/d02d6906-c341-4db4-8d1d-1e2fe228c6ba.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hMdIk/Qh87wkhjuY3vWYC85yuCKrEfbi9b3j7xJNPec=","crlite_enrolled":false,"id":"1b0ddc8f-9147-471c-b076-471f56173514","last_modified":1601517445204}
,{"schema":1601372992040,"derHash":"Z63RFmsCCuYbj1/JaBPATCqliZYHloZVcqPH5zdhPf0=","subject":"CN=R3,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSMw==","whitelist":false,"attachment":{"hash":"c298ec17b9257dbfb7f36280caade22c6317186c146b5fdd5792bcb77afced29","size":1825,"filename":"jQJTbIh0grw0_1TkHSumWb-Fs0Ggogr621gT3PvPKG0=.pem","location":"security-state-staging/intermediates/4d4b4f19-2a28-4629-813e-a946f8f93613.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jQJTbIh0grw0/1TkHSumWb+Fs0Ggogr621gT3PvPKG0=","crlite_enrolled":false,"id":"ceb5d877-bb7a-4afa-935a-747f6f6edb9a","last_modified":1601517445182},{"schema":1601372989273,"derHash":"nOJ0/9oMxIdiy3GxLHQgScco5h37wHCOP5yHHp696iI=","subject":"CN=QuoVadis EV SSL ICA G1,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDExZRdW9WYWRpcyBFViBTU0wgSUNBIEcx","whitelist":false,"attachment":{"hash":"95cf8df7fb366c8a374ed336
9242ba3db91973c2101055c3f8282a0abaae2334","size":2032,"filename":"2ZnCTNQBrKShr4c1olKfwNG53KiL6qoNcQi65YGRBn8=.pem","location":"security-state-staging/intermediates/5e3cbdc7-e03a-4759-8d05-acfd67cfe11d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2ZnCTNQBrKShr4c1olKfwNG53KiL6qoNcQi65YGRBn8=","crlite_enrolled":true,"id":"6abf86be-2d68-4ffb-8cc4-f106c8e6672a","last_modified":1601517445171},{"schema":1601372986478,"derHash":"LRQPILipbitNLxzFrKXloefcVqdJHlEJBpYPONLSGu8=","subject":"CN=GeoTrust EV RSA CA G2,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFUdlb1RydXN0IEVWIFJTQSBDQSBHMg==","whitelist":false,"attachment":{"hash":"f01753f65dd631ba19494a777a86712466e7e8b20994d581e672f52716f315bb","size":1873,"filename":"VHUagq80gsWdvnfHL_-2XSLZrAJk4I9d8fx6N8UvWGM=.pem","location":"security-state-staging/intermediates/478959ca-26d9-412d-85ae-28108bbb5141.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VHUagq80gsWdvnfHL/+2XSLZ
rAJk4I9d8fx6N8UvWGM=","crlite_enrolled":true,"id":"c79290ea-cb9f-41a0-978e-7fb294622f3c","last_modified":1601517445160},{"schema":1601372982248,"derHash":"BDerLsLCtIkClsE1A0sh2xRkNLgxfucDqoqpQ8XqUa4=","subject":"CN=Microsoft Azure TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMQ==","whitelist":false,"attachment":{"hash":"2777739491d74eeced727118790444484a83437e4e704c6697aa928b36a78bbb","size":2653,"filename":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=.pem","location":"security-state-staging/intermediates/775f7b60-b34b-4f8a-8784-5cb0bdf38b8e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=","crlite_enrolled":true,"id":"51cc8cd9-87cd-4af4-bd26-441c2d7b0365","last_modified":1601517445149},{"schema":1601372983592,"derHash":"zby+8W43I3cC+sxLVdOrkqF8+heDXhM3eqTSug/UegI=","subject":"CN=Cisco Meraki CA2,O
=Cisco Systems\\, Inc.,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMRwwGgYDVQQKExNDaXNjbyBTeXN0ZW1zLCBJbmMuMRkwFwYDVQQDExBDaXNjbyBNZXJha2kgQ0Ey","whitelist":false,"attachment":{"hash":"3e5a1329226826601bdcf297eb985c9089c7df20bac76d529770ff0dcdc2bd3e","size":1752,"filename":"UNvyYoiHE-TJr4GNRJRQQVYLfL7m_X0ULyrRNeeQaKE=.pem","location":"security-state-staging/intermediates/533dec71-3955-4ae6-a2ac-45d8bbb06f61.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UNvyYoiHE+TJr4GNRJRQQVYLfL7m/X0ULyrRNeeQaKE=","crlite_enrolled":false,"id":"3de29e4b-6106-495c-92fc-1daf069924d7","last_modified":1601517445138},{"schema":1601372990662,"derHash":"vLwYxGO2HzoDOxDHSXTtiiwyivzWejONmHFQajUVQZ8=","subject":"CN=e-Szigno Class3 SSL CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJDAiBgNVBAMMG2UtU3ppZ25vIENsYXNzMyBTU0wgQ0EgMjAxNw==","whitelist":false,"attachment":{"hash":"141f708e3e75831
bbe1ea4307dbbb1564e45c53708e07ce12ace8a2c364453d4","size":1670,"filename":"69Duo3nmlQnUEvqzlU27qTDaDY9K1yN0wfdopIs9Y7s=.pem","location":"security-state-staging/intermediates/35bc1459-db4e-4fbe-b245-efb1d8b3e9e6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"69Duo3nmlQnUEvqzlU27qTDaDY9K1yN0wfdopIs9Y7s=","crlite_enrolled":true,"id":"5bb86eed-d806-4423-a0c3-14872f739af8","last_modified":1601517445127},{"schema":1601372984986,"derHash":"PuAnjfcfo8ElxM1IfwHXdGlOb8V+DNlMJO/XaRM5GOU=","subject":"CN=GTS Root R1,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMQ==","whitelist":false,"attachment":{"hash":"a7e1e9af45661eb891874dbac46389428139246fe7050143e9b0fd233f74e236","size":1926,"filename":"hxqRlPTu1bMS_0DITB1SSu0vd4u_8l8TjPgfaAp63Gc=.pem","location":"security-state-staging/intermediates/94d8f6ef-9901-4bbf-94da-34339f9a5963.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hxqRlPTu
1bMS/0DITB1SSu0vd4u/8l8TjPgfaAp63Gc=","crlite_enrolled":false,"id":"91a079ca-bed6-440f-bcb5-bf985f4fa544","last_modified":1601517445115},{"schema":1601372976467,"derHash":"xnDHm/J3r357NKaqT6MERBgzxr0Bpwp+m3otlMHB+SY=","subject":"CN=certSIGN Qualified CA,O=CERTSIGN SA,C=RO","subjectDN":"MFwxCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEeMBwGA1UEAxMVY2VydFNJR04gUXVhbGlmaWVkIENBMRcwFQYDVQRhEw5WQVRSTy0xODI4ODI1MA==","whitelist":false,"attachment":{"hash":"22d738f384d471ab73b8f3d1ec90fd80d0f61bf77294a7139dc772f58bb58e1a","size":2316,"filename":"hztK7Nl786SeQOWatriSlHoTSUt-1THcFFIGKRr08bk=.pem","location":"security-state-staging/intermediates/f6b4147e-2d85-401b-b347-336b86f662e2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hztK7Nl786SeQOWatriSlHoTSUt+1THcFFIGKRr08bk=","crlite_enrolled":false,"id":"1389ee32-b744-400a-ab40-13406b869a0f","last_modified":1601517445104},{"schema":1601372979267,"derHash":"/PJvvBsqJadqtOqSssvvNn4BMQkcgC2kmJj3iuVLMPg=","subject":"CN=Valid Certificador
a Digital SSL DV CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGgxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgRFYgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"551d256b9e4988053973e8535709a6276d327de7d3ea6dd215e8c97deef2c69f","size":1768,"filename":"2UPUODmQxMZsvFIsK7JgdFSPY-kZ_qKP-7aXPh1_bx8=.pem","location":"security-state-staging/intermediates/f5bc3f86-9688-4e6c-ab8c-549cf8ae95c5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2UPUODmQxMZsvFIsK7JgdFSPY+kZ/qKP+7aXPh1/bx8=","crlite_enrolled":true,"id":"061b3372-2f09-4347-81b6-08192cd27c88","last_modified":1601517445093},{"schema":1601372977883,"derHash":"9nwj73v3QSgJ22sd09RKCNN1TZnKumoT96BcckkInIk=","subject":"CN=QuoVadis Global SSL ICA G2,O=QuoVadis Limited,C=BM","subjectDN":"ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMg==","whitelist":false,"attachment":{"hash":"f
3d6221594115cd098f20f66a013d90aae3becd3c578a737a8e58a35230c208d","size":2016,"filename":"tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=.pem","location":"security-state-staging/intermediates/a696b13d-038b-4610-9f8b-38652860e9c7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=","crlite_enrolled":true,"id":"edd2b6b4-07a7-4a01-b28d-0dc72a371b84","last_modified":1601517445082},{"schema":1601372980668,"derHash":"NJ36QFjF4mMSOzmK55VXPE4TE8g/5o+TVWzV6AMbPH0=","subject":"CN=GTS Root R4,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSNA==","whitelist":false,"attachment":{"hash":"5f621c613a2dfb4502a29efcba11f0a010ef7954ea3464006115a9c300bdcdc1","size":764,"filename":"mEflZT5enoR1FuXLgYYGqnVEoZvmf9c2bVBpiOjYQ0c=.pem","location":"security-state-staging/intermediates/69f37a26-8b23-4ccd-8dfb-890714c89849.pem","mimetype":"application/x-pem-file"},"pubKeyHa
sh":"mEflZT5enoR1FuXLgYYGqnVEoZvmf9c2bVBpiOjYQ0c=","crlite_enrolled":false,"id":"5431c1cf-28e7-4a86-9584-396994a62e7d","last_modified":1601517445068},{"schema":1601372969365,"derHash":"SP+LSUZox1IwS0i/6Bh1iYfe9lguXwm5IfS2C7PWqN0=","subject":"CN=Microsoft Azure TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNg==","whitelist":false,"attachment":{"hash":"b800befca1341c29912755ead3105bdab854e4517a96d3492de73bd48b6aca1c","size":2121,"filename":"Wl8MFY-9zijGG8QgEHCAK5fhA-ydPZxaLQOFdiEPz3U=.pem","location":"security-state-staging/intermediates/c268b46a-b13f-4845-b57c-817f59e5ddbf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wl8MFY+9zijGG8QgEHCAK5fhA+ydPZxaLQOFdiEPz3U=","crlite_enrolled":true,"id":"0c4389a1-a439-4fb9-97da-d505176b0ce2","last_modified":1601517445044},{"schema":1601372970795,"derHash":"Yk1VdqZSshMHaL/oS5Ze7//ZFgPSXNX3FVp9wnidrDg=","s
ubject":"CN=Microsoft Azure ECC TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDU=","whitelist":false,"attachment":{"hash":"2468274c7b25fd2b19d422592a89957967b1d0b2667a280258fa181e4990089d","size":1512,"filename":"k09MzmwiRPkPmkpgmUtprMk_uALSVedNLtfOBkCMvXE=.pem","location":"security-state-staging/intermediates/cdd4bad1-dc39-4943-9512-33b9f4affd94.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k09MzmwiRPkPmkpgmUtprMk/uALSVedNLtfOBkCMvXE=","crlite_enrolled":false,"id":"eb66473b-5fea-4e7e-91ac-acc760eb3e08","last_modified":1601517445031},{"schema":1601372967809,"derHash":"iPwYvQcb4fvFP/vIAfA/WyxNqHu6DAmOK0gI8Z6rBf4=","subject":"CN=RNP ICPEdu OV SSL CA 2019,O=Rede Nacional de Ensino e Pesquisa - RNP,C=BR","subjectDN":"MGQxCzAJBgNVBAYTAkJSMTEwLwYDVQQKEyhSZWRlIE5hY2lvbmFsIGRlIEVuc2lubyBlIFBlc3F1aXNhIC0gUk5QMSIwIAYDVQQDExlSTlAgSUNQRWR1IE9WIFNT
TCBDQSAyMDE5","whitelist":false,"attachment":{"hash":"292ae2e45b6a02ae65ded412e50c0abf3b623685bd49a8f6369bb4d5010c40d8","size":1784,"filename":"34rLDmx5N4tFlu_FTyuZjezXxhR4lhOmxmSZ9Pjypro=.pem","location":"security-state-staging/intermediates/49b02dda-6993-4e4a-8639-8061b575e3f6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"34rLDmx5N4tFlu/FTyuZjezXxhR4lhOmxmSZ9Pjypro=","crlite_enrolled":true,"id":"d785db77-6704-4e55-b637-4f5c27423ab9","last_modified":1601517444997},{"schema":1601372974968,"derHash":"WS4aLwo0KEsOJvy0/tIq+FmEju6IIq22G0LatHov/cI=","subject":"CN=KPN PKIoverheid Server CA 2020,O=KPN B.V.,C=NL","subjectDN":"MEkxCzAJBgNVBAYTAk5MMREwDwYDVQQKDAhLUE4gQi5WLjEnMCUGA1UEAwweS1BOIFBLSW92ZXJoZWlkIFNlcnZlciBDQSAyMDIw","whitelist":false,"attachment":{"hash":"d6c29637397d41ba732890b7381061d5aa7ce2b45a6658ec8cd3e1578ec36521","size":2463,"filename":"Yao-RgzIlYNhXc65ch9IpKzSRFUSiL01Et8c6sN4XLU=.pem","location":"security-state-staging/intermediates/950d42f2-c7e5-4243-a5d9-0abf3c
a120c8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Yao+RgzIlYNhXc65ch9IpKzSRFUSiL01Et8c6sN4XLU=","crlite_enrolled":true,"id":"aeaffa76-1733-4a39-a25e-4c5a82a04937","last_modified":1601517444985},{"schema":1601372966279,"derHash":"sIXXC5ZPGRpz5K8NVK56Dgeq/a+bcd0IYhOKtzJaJKI=","subject":"CN=GlobalSign,OU=GlobalSign ECC Root CA - R4,O=GlobalSign","subjectDN":"MFAxJDAiBgNVBAsTG0dsb2JhbFNpZ24gRUNDIFJvb3QgQ0EgLSBSNDETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbg==","whitelist":false,"attachment":{"hash":"babd66311bcbddf05b57e8c3547a7daa9175826a9288b0eddc4bce49d951e547","size":703,"filename":"CLOmM1_OXvSPjw5UOYbAf9GKOxImEp9hhku9W90fHMk=.pem","location":"security-state-staging/intermediates/92c74d74-33c3-442b-8f3d-283431becf54.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CLOmM1/OXvSPjw5UOYbAf9GKOxImEp9hhku9W90fHMk=","crlite_enrolled":false,"id":"f9805daa-ab6f-4827-8a6e-dfdda2f0530e","last_modified":1601517444974},{"schema":1601372972183,"derHash":"EDLGAB7WZKD
NNDsTi8toYOIREBHD1fBlQPW+QRR4EqU=","subject":"CN=Legacy Technologies Intermediate,O=Legacy Technologies GmbH,C=DE","subjectDN":"MFsxCzAJBgNVBAYTAkRFMSEwHwYDVQQKExhMZWdhY3kgVGVjaG5vbG9naWVzIEdtYkgxKTAnBgNVBAMTIExlZ2FjeSBUZWNobm9sb2dpZXMgSW50ZXJtZWRpYXRl","whitelist":false,"attachment":{"hash":"a9f261d0ad4e87bacd12e03d772b19c478c501880901e13afa12424a3fa0819b","size":1906,"filename":"1IN_wrqE9VVL4qRI4B5j8xzAQgZ1Wap_tLlGGVYhcEc=.pem","location":"security-state-staging/intermediates/6aba6c2c-da6f-4f90-9dbc-856cf2fefcdd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1IN/wrqE9VVL4qRI4B5j8xzAQgZ1Wap/tLlGGVYhcEc=","crlite_enrolled":false,"id":"de96a547-05fc-48e0-9eaf-ddeca013b4c1","last_modified":1601517444963},{"schema":1601372960748,"derHash":"l0uCB2FUzv9W7U21Yhhvc5SgL/OHqiBdY2eosI/3+qA=","subject":"CN=e-Szigno Online SSL CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ
0OTcxJDAiBgNVBAMMG2UtU3ppZ25vIE9ubGluZSBTU0wgQ0EgMjAxNw==","whitelist":false,"attachment":{"hash":"0abdd69f4b3ccf85097142e285b47d52e0f91c59aa3e684dfa3c25bb3c8d6039","size":1666,"filename":"G_JwHP_ydSe7pufWcUyNckBrxBbnQ6Kmqw_OFPPiQI0=.pem","location":"security-state-staging/intermediates/9386bab7-f17e-4eab-807c-9bac2367686a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G/JwHP/ydSe7pufWcUyNckBrxBbnQ6Kmqw/OFPPiQI0=","crlite_enrolled":false,"id":"492ac880-b573-41d2-9d22-5faff82d960e","last_modified":1601517444952},{"schema":1601372962115,"derHash":"pmUAegXv4YidZqQN7svGwaJx6RkAaBH9uNvX4GdSEtE=","subject":"CN=Siemens Issuing CA Internet Server 2020,O=Siemens,C=DE","subjectDN":"MFExMDAuBgNVBAMMJ1NpZW1lbnMgSXNzdWluZyBDQSBJbnRlcm5ldCBTZXJ2ZXIgMjAyMDEQMA4GA1UECgwHU2llbWVuczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"5ab8cb8a5146787aeb9025fd757a28e47c16893e2603c336459385a83349e955","size":1719,"filename":"uOU9UZhtVd_opiG5DbxESujdJ9UY8BLJblR-MMq9FbY=.pem","location":"s
ecurity-state-staging/intermediates/35dbe988-7f8a-48f2-b67b-e95d314fa047.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uOU9UZhtVd/opiG5DbxESujdJ9UY8BLJblR+MMq9FbY=","crlite_enrolled":true,"id":"4e715493-0fb6-4d65-b11d-e75ae54c02e0","last_modified":1601517444941},{"schema":1601372963495,"derHash":"MoZpFBLzDs5cBl/WL0OSpHYtHneBUzg1nfOQKZ+9Ye8=","subject":"CN=Thawte EV RSA CA G2,O=DigiCert Inc,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHDAaBgNVBAMTE1RoYXd0ZSBFViBSU0EgQ0EgRzI=","whitelist":false,"attachment":{"hash":"7ebde9e072e9a7bbb57c5810346275bf9ef461c815c5ae04aea58f3354aeb691","size":1873,"filename":"BLOV1UJgeWCwCAR8qU9OWMMcRY8vXk1zqu0szJamQxw=.pem","location":"security-state-staging/intermediates/a37b7f8c-a3b5-430e-89cf-8fe6b38bb6b2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BLOV1UJgeWCwCAR8qU9OWMMcRY8vXk1zqu0szJamQxw=","crlite_enrolled":true,"id":"07b39017-e019-4285-8987-c74c020ff536","last_modified":1601517444930},{"schema":16013
72959354,"derHash":"TzXGucEAkF/yW7AcCiDr4zW87vJJzp/6HhHgYu1m/NE=","subject":"CN=DigiCert Trusted G4 TLS RSA SHA384 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxNDAyBgNVBAMTK0RpZ2lDZXJ0IFRydXN0ZWQgRzQgVExTIFJTQSBTSEEzODQgMjAyMCBDQTE=","whitelist":false,"attachment":{"hash":"9b316d7bf93b9d342bdd4df71094c0e97165fde2c9cd97a6beca3f212dac4054","size":2479,"filename":"rjm2hHKNhSnI_7YDoWFLmDSpnIwnr9n9bbNU0dhDiJg=.pem","location":"security-state-staging/intermediates/e43a7840-9ea4-4b76-93c0-ab636088bcb6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rjm2hHKNhSnI/7YDoWFLmDSpnIwnr9n9bbNU0dhDiJg=","crlite_enrolled":false,"id":"7f65139b-c66f-48be-9e43-38f9d4c05309","last_modified":1601517444919},{"schema":1601372956559,"derHash":"ffTT70V5j4xDhPxwK6UqRM571imLFBYo1Kurx2ePZGc=","subject":"CN=Microsoft Azure TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBA
MTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNg==","whitelist":false,"attachment":{"hash":"8d704ee294bd149733993801e0cbad6deaa30f162b02e59509443d2f13b07b74","size":2653,"filename":"Wl8MFY-9zijGG8QgEHCAK5fhA-ydPZxaLQOFdiEPz3U=.pem","location":"security-state-staging/intermediates/4637d3ff-89aa-452e-a12e-c9c34c573108.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wl8MFY+9zijGG8QgEHCAK5fhA+ydPZxaLQOFdiEPz3U=","crlite_enrolled":true,"id":"0d9dd2b6-0308-43ef-9472-413931d00b4c","last_modified":1601517444908},{"schema":1601372957982,"derHash":"kn6b/A11wxRgcMPzr91KLBD3ZSiRJJl8xSz9EgnnY8s=","subject":"CN=JPRS Domain Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"f1fff265badcfcfaa0e9addfdc7577271845c1a6c9766600e36f19dc9bb90333","size":1780,"filename":"n1ufb8l1_ENW_
uOKNKgHIeBe_NgVI39f0IzwWmCVHvE=.pem","location":"security-state-staging/intermediates/e12f21c4-2828-41ca-8175-b204c12fa8e0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n1ufb8l1/ENW/uOKNKgHIeBe/NgVI39f0IzwWmCVHvE=","crlite_enrolled":true,"id":"1b37cd2f-53fb-4ecf-a206-6d0e4afba506","last_modified":1601517444897},{"schema":1601372953629,"derHash":"NNinPuII2bzbDZVlIJNLTkDmlIJZbotvc8hCawEKb0g=","subject":"CN=GTS Root R3,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMw==","whitelist":false,"attachment":{"hash":"3febe52108c8006fec57c9deeef32126e877134377f5fed563452d77eb20ce23","size":764,"filename":"QXnt2YHvdHR3tJYmQIr0Paosp6t_nggsEGD4QJZ3Q0g=.pem","location":"security-state-staging/intermediates/b89eea26-3504-4cee-a2a0-c85c4b432b85.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QXnt2YHvdHR3tJYmQIr0Paosp6t/nggsEGD4QJZ3Q0g=","crlite_enrolled":false,"id":"89b91266-e037-419a-a1
84-4ab66dc534f2","last_modified":1601517444875},{"schema":1601372955108,"derHash":"2UdDKr3nt/qQ/C5rWRAbEoDg4cfk5A+jxoh//1en9M8=","subject":"CN=GTS Root R1,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMQ==","whitelist":false,"attachment":{"hash":"56cc033ba7b1b7f111791affa1f1df410009c08c0b9a625d2bbe0a30aca502bb","size":1910,"filename":"hxqRlPTu1bMS_0DITB1SSu0vd4u_8l8TjPgfaAp63Gc=.pem","location":"security-state-staging/intermediates/8f214a61-eaa8-4dfd-92f7-5caa2913bd08.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hxqRlPTu1bMS/0DITB1SSu0vd4u/8l8TjPgfaAp63Gc=","crlite_enrolled":false,"id":"2aa716a5-b2ec-4655-ac65-199f085bd020","last_modified":1601517444864},{"schema":1601372952199,"derHash":"Ek6q8m9XDE+02J9dYQePFbiFNF/K8MV/NHfYxjtasm8=","subject":"CN=Actalis Extended Validation Server CA G3,O=Actalis S.p.A.,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGGMQswCQYDVQQGEwJJVDEQ
MA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEXMBUGA1UECgwOQWN0YWxpcyBTLnAuQS4xMTAvBgNVBAMMKEFjdGFsaXMgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZXJ2ZXIgQ0EgRzM=","whitelist":false,"attachment":{"hash":"332f65bf2214e30be6f0940dc3bde167397bf14fc227615cd42ca92857dd83bf","size":2641,"filename":"Qit8ertDRalW2_YZANpfGKsGuNxcSeZ5UXpPg8_gmpE=.pem","location":"security-state-staging/intermediates/8479152b-cdd2-4fed-95c0-1c66f39292d6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Qit8ertDRalW2/YZANpfGKsGuNxcSeZ5UXpPg8/gmpE=","crlite_enrolled":true,"id":"f558856f-e8d1-44d9-810f-5e8dbdec4fed","last_modified":1601517444853},{"schema":1601372942202,"derHash":"vOcJE1XSQXo3+M/irI8XwnSIiLoO6pAAD8mA7PwtBB8=","subject":"CN=GlobalSign Atlas R6 EV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFUxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSswKQYDVQQDEyJHbG9iYWxTaWduIEF0bGFzIFI2IEVWIFRMUyBDQSAyMDIw","whitelist":false,"attachment":{"hash":"7a27c45b53bfd5690bb01873eeb250e11a9b84a706c
bbd33be1cafcbad5ed9a5","size":2402,"filename":"P7xnWSLQVg6f_MMaRe-f9TBAwDOlwdoyxweVGx8v2hY=.pem","location":"security-state-staging/intermediates/f027e922-5664-470d-ba39-6a79f14247f7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"P7xnWSLQVg6f/MMaRe+f9TBAwDOlwdoyxweVGx8v2hY=","crlite_enrolled":true,"id":"aa289f7c-0e5e-40b8-ba40-ac6f5788381c","last_modified":1601517444830},{"schema":1601372945081,"derHash":"N2EL91bKTDz6GGlsTBSXOOZEyp9nY4fsUBZzZdakXMo=","subject":"CN=Digidentity PKIoverheid Server CA 2020,O=Digidentity B.V.,C=NL","subjectDN":"MFkxCzAJBgNVBAYTAk5MMRkwFwYDVQQKDBBEaWdpZGVudGl0eSBCLlYuMS8wLQYDVQQDDCZEaWdpZGVudGl0eSBQS0lvdmVyaGVpZCBTZXJ2ZXIgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"c6efc5a8dbba37f6c4ba76f0ccd0f86ceb94b6b66cfd390227a747d4d83ff0b3","size":2487,"filename":"DnmLzHZn-pLaQKZ9c6lYR5BOqhZMey469UF5T1hne2k=.pem","location":"security-state-staging/intermediates/757831dd-1795-41f0-85b5-3bdaf5cb5601.pem","mimetype":"application/x-pem-file"},"pubKeyH
ash":"DnmLzHZn+pLaQKZ9c6lYR5BOqhZMey469UF5T1hne2k=","crlite_enrolled":true,"id":"aaf24e45-19fe-4a12-a2f3-d98e7fc92964","last_modified":1601517444819},{"schema":1601372949425,"derHash":"XEUjNNnJyaLqQsx3pxZeF5XunYTrcMt4S0fqnZKlgtk=","subject":"CN=Soluti CA - DV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,C=BR","subjectDN":"MF8xCzAJBgNVBAYTAkJSMTcwNQYDVQQKEy5TT0xVVEkgLSBTT0xVQ09FUyBFTSBORUdPQ0lPUyBJTlRFTElHRU5URVMgUy9BMRcwFQYDVQQDEw5Tb2x1dGkgQ0EgLSBEVg==","whitelist":false,"attachment":{"hash":"8265936e7b87a7845ad3792c1bfbde5b8469f44276f048e773d7d306888e920a","size":1756,"filename":"kAzMeuwjUBWfPL5YEYfQG9qK_ABDxl0BMvPtzwEPN7E=.pem","location":"security-state-staging/intermediates/4c65ee88-c3a0-444f-8224-2f3fbb1fde00.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kAzMeuwjUBWfPL5YEYfQG9qK/ABDxl0BMvPtzwEPN7E=","crlite_enrolled":true,"id":"6f0acdbe-0901-4b59-9d46-68ce3226c729","last_modified":1601517444808},{"schema":1601372946483,"derHash":"2sqgn/rY9m7bbtaXB6gnyeRMH5fEjwF5SF
8gbXB7Pis=","subject":"CN=NII Open Domain CA - G5,O=National Institute of Informatics,C=JP","subjectDN":"MFsxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxIDAeBgNVBAMTF05JSSBPcGVuIERvbWFpbiBDQSAtIEc1","whitelist":false,"attachment":{"hash":"ef925783f986610c821619c78a724b477a9c2b4492f84e6446635c18799dc2f9","size":12623,"filename":"aj-4mbqOOY7cgtDqWtgGaLG69EShl59AQocV--hJAk8=.pem","location":"security-state-staging/intermediates/9f426597-caa0-4a27-92c0-7468bd0125b8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aj+4mbqOOY7cgtDqWtgGaLG69EShl59AQocV++hJAk8=","crlite_enrolled":true,"id":"fb29665c-f0b3-4e26-bf78-cb609e14309f","last_modified":1601517444797},{"schema":1601372943635,"derHash":"iwW2jMZZ5e0PyzjyyUL7/SAOby/5+F1jxplO9eCwJwE=","subject":"CN=ISRG Root X2,O=Internet Security Research Group,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgy","whitelist":false,"attachme
nt":{"hash":"0a551cc852c7b0f054ae4c9e72acb7a6b4b1a8bab2d598b21063ab92fc36ecb6","size":1577,"filename":"diGVwiVYbubAI3RW4hB9xU8e_CH2GnkuvVFZE8zmgzI=.pem","location":"security-state-staging/intermediates/5715b967-abe0-4b73-a98a-855ba0fd7305.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"diGVwiVYbubAI3RW4hB9xU8e/CH2GnkuvVFZE8zmgzI=","crlite_enrolled":false,"id":"d12a8e04-5884-4328-a3e6-8c87d375a305","last_modified":1601517444786},{"schema":1601372940788,"derHash":"8Z1VzQij6kK9kVCAc4IxdN2SNwITwXf4JTF1badQilE=","subject":"CN=JPRS Domain Validation Authority - G4,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzQ=","whitelist":false,"attachment":{"hash":"d1fbc1604b7b78d8673b6b7247a33b5d142c6ebaa41b8e0412cedc570a24b3d7","size":1780,"filename":"KbEUDafDNIUlOxLiaD-8KAlxp-gea65O57qq4l5SFl8=.pem","location":"security-state-staging/interm
ediates/7a36f3a9-39e9-4ca5-9620-2343f7db4d81.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KbEUDafDNIUlOxLiaD+8KAlxp+gea65O57qq4l5SFl8=","crlite_enrolled":true,"id":"e816bed4-10ab-4c75-95fd-28eef887f190","last_modified":1601517444774},{"schema":1601372939433,"derHash":"aeLQbDDzZhZhZekdaNHO5cxHWEqAIn52ZmCGwBByQes=","subject":"CN=GlobalSign,OU=GlobalSign Root CA - R2,O=GlobalSign","subjectDN":"MEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFIyMRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu","whitelist":false,"attachment":{"hash":"a9f6d16a93aa62ba7dbf378a10c0719ad51755b8d8276a662013037d6fbe06d3","size":1353,"filename":"iie1VXtL7HzAMF-_PVPR9xzT80kQxdZeJ-zduCB3uj0=.pem","location":"security-state-staging/intermediates/8d7aa4a5-2eaa-4bc6-9ce4-baf356fe12fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iie1VXtL7HzAMF+/PVPR9xzT80kQxdZeJ+zduCB3uj0=","crlite_enrolled":false,"id":"32fad39e-e70b-4cce-82ad-336077b42508","last_modified":1601517444763},{"schema":160137293
8080,"derHash":"bINDiPKg0GlJxj788w13eC4lqCUBNZOeVJYCFFQO6kU=","subject":"CN=Root CA - G3,O=Root Networks\\, LLC,C=US","subjectDN":"MEExCzAJBgNVBAYTAlVTMRswGQYDVQQKDBJSb290IE5ldHdvcmtzLCBMTEMxFTATBgNVBAMMDFJvb3QgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"7a25b4650cf78598d30bd2fd71f98a9514917410a9123cf8351a487e3ed9a093","size":1678,"filename":"ujBfMmfTX_3dCWQV89ZY2Tw4qhFf2vkDZrrqzCdlxfU=.pem","location":"security-state-staging/intermediates/70d0ee09-2bed-4e79-8b66-01b3f0e03488.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ujBfMmfTX/3dCWQV89ZY2Tw4qhFf2vkDZrrqzCdlxfU=","crlite_enrolled":true,"id":"3282e6f4-3c4c-4afc-990c-c8ea66eb46ae","last_modified":1601517444753},{"schema":1601372933832,"derHash":"BN5Hqc3TCRz8Xvaqo7fUtT4TxNTcAjZPbAtAh0LsPHY=","subject":"CN=Valid Certificadora Digital AlphaSSL CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGoxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxNTAzBgNVBAMTLFZhbGlkIENlcnRpZmljYWRvcmEgRGlna
XRhbCBBbHBoYVNTTCBDQSAyMDE4","whitelist":false,"attachment":{"hash":"d9ce06bfe7f10679316c826ca701910ff485eff604b066946a2f9397ac536aa7","size":1772,"filename":"sXlIJeJFOOvNqrgfAHM5544oX_ySPnrWUt8M7eFF0BM=.pem","location":"security-state-staging/intermediates/05cdb21a-1510-4b11-bd15-1aa8167bf850.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sXlIJeJFOOvNqrgfAHM5544oX/ySPnrWUt8M7eFF0BM=","crlite_enrolled":true,"id":"dc4f0d2e-5aa7-4bc9-aa1e-cc80241c3ea5","last_modified":1601517444742},{"schema":1601372932440,"derHash":"FkjOSrG7ZcSFyyI2x2j6u4ZRR9QmkVuSr7yoHpsu47w=","subject":"CN=e-Szigno Qualified Pseudonymous CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGDMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xFzAVBgNVBGEMDlZBVEhVLTIzNTg0NDk3MTAwLgYDVQQDDCdlLVN6aWdubyBRdWFsaWZpZWQgUHNldWRvbnltb3VzIENBIDIwMTc=","whitelist":false,"attachment":{"hash":"babeb483e7bc13a161427464ff4aa32b126458a9b7bd684609420f8d1a7cb6ab","size":1687,"filename":"9Mm86u4Ww
GKlrCcut3imyBIja3zt37WI7jdpaAucZOs=.pem","location":"security-state-staging/intermediates/942e6499-d923-4703-afab-4b554cc059b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9Mm86u4WwGKlrCcut3imyBIja3zt37WI7jdpaAucZOs=","crlite_enrolled":false,"id":"70bbc676-eea1-421c-94b2-ac63a2a914ee","last_modified":1601517444730},{"schema":1601372936606,"derHash":"KfjhBN845hK/T1BTZbXQsLIN1OickIMGSE64N0weZtg=","subject":"CN=Trustwave Global ECDSA P-384 Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGcMUUwQwYDVQQDEzxUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMzg0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EsIExldmVsIDExITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjEQMA4GA1UEBxMHQ2hpY2FnbzERMA8GA1UECBMISWxsaW5vaXMxCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"53f8122b5a0fa5136d24ba312f1f8c41061bd774427e22f6d2a5e4fababcd5ea","size":1406,"filename":"dzssfumpi3rcJekwfVNUyE16SoxSUQ6SRbv3ubi21iE=.pem","location":"security-state-staging/intermediate
s/bf40f9cc-47d0-4977-b40d-52494d2164f1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dzssfumpi3rcJekwfVNUyE16SoxSUQ6SRbv3ubi21iE=","crlite_enrolled":true,"id":"d1f49640-2d22-442e-baeb-12b29866c49b","last_modified":1601517444720},{"schema":1601372929639,"derHash":"RAs3QW8t6FLKOGFQ1hHsCvMd1Y2KJ/iCgVp+o+5oSO4=","subject":"CN=Bloomberg TLS CA,O=Bloomberg LP,C=US","subjectDN":"MD8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxCbG9vbWJlcmcgTFAxGTAXBgNVBAMTEEJsb29tYmVyZyBUTFMgQ0E=","whitelist":false,"attachment":{"hash":"e48dfa14c978c6bbeb5232c7e711afced2f56d20f367cd0a74a7100aac332138","size":1743,"filename":"wR5GLfX8HG7FhvZ7hnbmrGu1dPd6dkKlKYnCvd1A-v0=.pem","location":"security-state-staging/intermediates/45a8ebc6-a06b-4bc7-929b-39e2e2281328.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wR5GLfX8HG7FhvZ7hnbmrGu1dPd6dkKlKYnCvd1A+v0=","crlite_enrolled":false,"id":"cab1b209-9a94-4919-b365-866f22bf712d","last_modified":1601517444697},{"schema":1601372931031,"derHash":"GgdSmos/AdIx360qvfcY
mSALtlzX4DxZ+oInJTM1W3Q=","subject":"CN=R4,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSNA==","whitelist":false,"attachment":{"hash":"e7c443b15be49a4083c31378f2a1749ea59e73cd564b4d4e0465ea2d9d839146","size":1825,"filename":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX-WPd5kPLQM=.pem","location":"security-state-staging/intermediates/f67f63b4-6b9e-497c-9e0d-4d48d2fecb43.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX+WPd5kPLQM=","crlite_enrolled":false,"id":"e3ad0bd5-3dd1-4ea1-82b3-0c0f94f6811c","last_modified":1601517444686},{"schema":1601372928289,"derHash":"+2BghIRAqkWU/oEJdB76tAxWcysmxnw21tyUW7L+E88=","subject":"CN=Plex Devices High Assurance CA3,O=Plex\\, Inc.,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpQbGV4LCBJbmMuMSgwJgYDVQQDEx9QbGV4IERldmljZXMgSGlnaCBBc3N1cmFuY2UgQ0Ez","whitelist":false,"attachment":{"hash":"cc6eb0f3e51ae41188fd3477d2b097eb3bfd190c1e01766f9836d30c6d379aaa","size
":1817,"filename":"7vFogPWQjRRrBULu9CTSZG05Zp5wI5psu-SVeew9nqo=.pem","location":"security-state-staging/intermediates/13dc02d5-16c2-4ff9-97ca-030b3dff8234.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7vFogPWQjRRrBULu9CTSZG05Zp5wI5psu+SVeew9nqo=","crlite_enrolled":false,"id":"4708e8c7-a3b5-479c-b5d0-134bee4102fa","last_modified":1601517444665},{"schema":1601372921280,"derHash":"hIwDq2R9W9fg0MQ8C11nTMmJP4NquGOvjz8ThLVE2DM=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - INFRAESTRUCTURA,OU=Security Services,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGNMQswCQYDVQQGEwJFUzEeMBwGA1UECgwVRmlybWFwcm9mZXNpb25hbCBTLkEuMRowGAYDVQQLDBFTZWN1cml0eSBTZXJ2aWNlczESMBAGA1UEBRMJQTYyNjM0MDY4MS4wLAYDVQQDDCVBQyBGaXJtYXByb2Zlc2lvbmFsIC0gSU5GUkFFU1RSVUNUVVJB","whitelist":false,"attachment":{"hash":"caf1e07303de77d2971983851eb6cdc8b1662168dab0ef7c3dc3df46b70b3ec3","size":2300,"filename":"bB8VW561_UmK2rypmzhiK744upv6JxAcWmqJ9U-BKSI=.pem","location":"security-state-staging/intermediate
s/f6e7d27f-9711-4b7b-b226-a67deebbaadd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bB8VW561/UmK2rypmzhiK744upv6JxAcWmqJ9U+BKSI=","crlite_enrolled":true,"id":"c2d2bd34-f2d0-429f-94d4-dec518ff87f0","last_modified":1601517444654},{"schema":1601372925530,"derHash":"1ehNmmd+bNpy3Rwbp62N38Je+sIgyKlXHOwnwQdVVwI=","subject":"CN=ICPEdu,O=Rede Nacional de Ensino e Pesquisa - RNP,C=BR","subjectDN":"MFExCzAJBgNVBAYTAkJSMTEwLwYDVQQKEyhSZWRlIE5hY2lvbmFsIGRlIEVuc2lubyBlIFBlc3F1aXNhIC0gUk5QMQ8wDQYDVQQDEwZJQ1BFZHU=","whitelist":false,"attachment":{"hash":"9b9ef56a8e9ed418407c8f8b194145af30c2c29e7dceb0b41ecc390660a45493","size":1735,"filename":"m_Zke2f6Q6acou-ZOFg-8OdSCzint_5uosSYaFXE3EM=.pem","location":"security-state-staging/intermediates/4d583b92-7ea5-4759-b075-69728740ce72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m/Zke2f6Q6acou+ZOFg+8OdSCzint/5uosSYaFXE3EM=","crlite_enrolled":true,"id":"b299bf16-90d0-453d-a0e2-c5d0e7350002","last_modified":1601517444643},{"schema":1601
372922648,"derHash":"KXW6tR0A2GLQ4W7t74MGp1nGXNS58A2vUOzfy07DluQ=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDY=","whitelist":false,"attachment":{"hash":"913a6555d1accfb6fad27f0850000c3dead37ef7c0c8683ab4771d4154dafae2","size":1329,"filename":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f_fOuKrsNiaSdA=.pem","location":"security-state-staging/intermediates/66ae0166-605b-4a81-ab78-0398cec83309.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f/fOuKrsNiaSdA=","crlite_enrolled":false,"id":"89936832-2d17-42a8-a1db-8f59f5e125c4","last_modified":1601517444632},{"schema":1601372917114,"derHash":"FRo+WWnGYW62N6hyKxdM/ZU4eqznjVfDvSPwyzAIGGo=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb2
4xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDY=","whitelist":false,"attachment":{"hash":"3f94a2f59b7465d9ec3993abf5497a7454a624492a51b0f1af1453447008be7a","size":1508,"filename":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f_fOuKrsNiaSdA=.pem","location":"security-state-staging/intermediates/4514e223-4a1f-49ef-a2c4-d139874f652c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f/fOuKrsNiaSdA=","crlite_enrolled":false,"id":"819dff23-74b0-426a-9138-e6825bedf0d4","last_modified":1601517444601},{"schema":1601372924077,"derHash":"9i41qtNF+yU4Y8/A5lgjrNPn8IRtGbgybXCceRmiLX4=","subject":"CN=Trustwave Global ECDSA P-256 Domain Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGaMUMwQQYDVQQDEzpUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMjU2IERvbWFpbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"att
achment":{"hash":"ce8879da72592af4bbeefb13d2c925ca1eed8e33ca17d960a29ad9ae0835124d","size":1305,"filename":"a-5FBlZcydYwIUikW5fVH6MjJzVRhdPbb586imNLagE=.pem","location":"security-state-staging/intermediates/f37e490a-e2a3-407a-af53-85d666751ad9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"a+5FBlZcydYwIUikW5fVH6MjJzVRhdPbb586imNLagE=","crlite_enrolled":false,"id":"ee174cb7-2285-43f5-824c-7d7f5e2e30f7","last_modified":1601517444583},{"schema":1601372918495,"derHash":"GGJqO3IREo1WNGnGVFV9E8k2bX/OyLlNtPCqfgWUQEE=","subject":"CN=Trustwave Global Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGQMTkwNwYDVQQDEzBUcnVzdHdhdmUgR2xvYmFsIEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EsIExldmVsIDExITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjEQMA4GA1UEBxMHQ2hpY2FnbzERMA8GA1UECBMISWxsaW5vaXMxCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"4e61dd89fb06d5da14f5a4b0f7a2328cd7ab2dea6544a50ea59b3e7d59167e32","size":2515,"filename":"V3f1xGez
L0zYaRJqAhBzSKsvj3vEMlp9KGBwnV4be38=.pem","location":"security-state-staging/intermediates/77c9874e-b7a6-4206-8e33-ce46978876a8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V3f1xGezL0zYaRJqAhBzSKsvj3vEMlp9KGBwnV4be38=","crlite_enrolled":true,"id":"ace9be7d-afb4-4716-92de-ec68d8675c16","last_modified":1601517444570},{"schema":1601372915726,"derHash":"qzIDs+ogF9UJcmodgik+/8uMQs61LJrxwO7pa1wCvLo=","subject":"CN=Microsoft Azure TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNQ==","whitelist":false,"attachment":{"hash":"dab72f8a61c3d1392090bfa1d53928ff5e675385a1b03742a601a3457a12342f","size":2653,"filename":"4i4h0jN9NROr1xKJI-TQ1Q_ZIfUjPMXtmWUsDR3Pjiw=.pem","location":"security-state-staging/intermediates/cd6fd8ca-476d-4166-8171-47e097b3fba7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4i4h0jN9NROr1xKJI+TQ1Q/ZIfUjPMXtmWUsDR3Pjiw=","cr
lite_enrolled":true,"id":"cdcb7fdb-36d0-4d2b-b326-6537b6c0a255","last_modified":1601517444558},{"schema":1601372912986,"derHash":"6ywqgGxp/JY8TiSlu+og7U47hq55hzC7TupRv53jMyU=","subject":"CN=QuoVadis PKIoverheid Server CA 2020,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MF0xCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEsMCoGA1UEAwwjUXVvVmFkaXMgUEtJb3ZlcmhlaWQgU2VydmVyIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"ccde215eb034050ccfc37f9fd71517cfb10b5c84d583a98f618475edced4e91a","size":2491,"filename":"Uru4DWx-N-Ju1LMOBUHr8l1GFqUp0S2IeniNdUJMn-Y=.pem","location":"security-state-staging/intermediates/cc1fdc96-5137-44e1-9e1a-08e1f30a8121.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uru4DWx+N+Ju1LMOBUHr8l1GFqUp0S2IeniNdUJMn+Y=","crlite_enrolled":true,"id":"92bb66a1-3ad5-4bf3-be95-3b89b37ac52a","last_modified":1601517444544},{"schema":1601372908508,"derHash":"J47PIR4lGOndmROvxYPusxJ8gYS8vu2q171k6J6MQxA=","subject":"CN=QuoVadis Grid ICA G2,O=QuoVadis Lim
ited,C=BM","subjectDN":"MEcxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR0wGwYDVQQDExRRdW9WYWRpcyBHcmlkIElDQSBHMg==","whitelist":false,"attachment":{"hash":"8e15c43f71096a592c3d5819db25f4547bb4ef4f8232293578abdf314d149392","size":2353,"filename":"5rlUfVlXaS82HCd6DZI7w8rIamphHCdjnXNpXREZynQ=.pem","location":"security-state-staging/intermediates/58908f21-7e94-469e-8aa3-665248306d7d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5rlUfVlXaS82HCd6DZI7w8rIamphHCdjnXNpXREZynQ=","crlite_enrolled":true,"id":"d92d6955-6093-4c7a-8e45-d0a418aedd2f","last_modified":1601517444533},{"schema":1601372911404,"derHash":"BMGHHGhgdRU4n6Owz7g9vmpK8F6MgOdFcClp8kBgbjY=","subject":"CN=JPRS Organization Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"22b4bbcfbe3f75b
06e7578a6a45c84da9c0262d68c36a8114773ff9a455d842b","size":1788,"filename":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A-XzOekYtqEbM=.pem","location":"security-state-staging/intermediates/0f69bb89-fec3-43e8-baca-4b3ed464ca4c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A+XzOekYtqEbM=","crlite_enrolled":true,"id":"f9117b3e-e330-435a-a6d7-19d7e7d0173c","last_modified":1601517444511},{"schema":1601372907081,"derHash":"BeQAXbDDgvO9ZrR3KekBFXdgG/b3sofppSztcQ0lg0Y=","subject":"CN=Microsoft RSA TLS CA 02,O=Microsoft Corporation,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xIDAeBgNVBAMTF01pY3Jvc29mdCBSU0EgVExTIENBIDAy","whitelist":false,"attachment":{"hash":"b31f15756dd2424f4c72909e8e5489c3443c030299ab3270a47adebded78e565","size":1914,"filename":"1wMGTin0PoCN5O41h0-XIHXuzGRwDEa8ehHf7wSdSQE=.pem","location":"security-state-staging/intermediates/2f4de690-8167-44de-9c57-c55ac9aad999.pem","mimetype":"application/x-pem-file"},"pubKe
yHash":"1wMGTin0PoCN5O41h0+XIHXuzGRwDEa8ehHf7wSdSQE=","crlite_enrolled":true,"id":"d349fd50-98e3-4121-b014-e22fcf4058f0","last_modified":1601517444489},{"schema":1601473892209,"derHash":"DjTMNfZt4MBuHZAeJYCWFULsLi+rF1eDfQnP42VHlmw=","subject":"CN=ISSAuth RSA EV CA,O=INTEGRITY Security Services LLC,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMSgwJgYDVQQKEx9JTlRFR1JJVFkgU2VjdXJpdHkgU2VydmljZXMgTExDMRowGAYDVQQDExFJU1NBdXRoIFJTQSBFViBDQQ==","whitelist":false,"attachment":{"hash":"b03ac152020dfd148bdbce043b79cdde718f7f398e6c2974784e2d12ea728c21","size":2117,"filename":"JuVSbm2PtOMQrBijLX2uh7DV87h-dofG6_8CWgsoUso=.pem","location":"security-state-staging/intermediates/3c02cc5d-9eb8-44c2-b42c-833613b0c0de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JuVSbm2PtOMQrBijLX2uh7DV87h+dofG6/8CWgsoUso=","crlite_enrolled":false,"id":"9e780ac3-b573-43c8-957f-b2d5a2a57492","last_modified":1601517444478},{"schema":1601473893770,"derHash":"Roc0T0cTq9A9rZGZQoxq1qVhRGKsO9efsPDBpW9KIGU=","subject":"CN
=ISSAuth ECC EV CA,O=INTEGRITY Security Services LLC,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMSgwJgYDVQQKEx9JTlRFR1JJVFkgU2VjdXJpdHkgU2VydmljZXMgTExDMRowGAYDVQQDExFJU1NBdXRoIEVDQyBFViBDQQ==","whitelist":false,"attachment":{"hash":"bb49012e57337e767503078ee15ddaed516c3a49b29affe8504ebd31287ba003","size":1280,"filename":"CtBkdSMYFcbDm93WqDl2w4aG4lRl0t4pSXZrBwxP4NQ=.pem","location":"security-state-staging/intermediates/08f3f015-50b1-42f7-910b-1d194b7c172d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CtBkdSMYFcbDm93WqDl2w4aG4lRl0t4pSXZrBwxP4NQ=","crlite_enrolled":false,"id":"ae201e28-14a4-4ab0-abc8-83d58b676aa1","last_modified":1601517444466},{"schema":1601473896669,"derHash":"k3CbW9sMdo/JaftJZYaCGNbehqaib4E7cm/0aXZgfGQ=","subject":"CN=ISSAuth RSA OV CA,O=INTEGRITY Security Services LLC,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMSgwJgYDVQQKEx9JTlRFR1JJVFkgU2VjdXJpdHkgU2VydmljZXMgTExDMRowGAYDVQQDExFJU1NBdXRoIFJTQSBPViBDQQ==","whitelist":false,"attachment":{"hash":"4186dcf1884e7390
95a2e744c4ccd5de721687ea6575da4ea5b3d4c73f07d4a7","size":2085,"filename":"pedwg-t32CS6XTTc_JUBqMnUFDQfsrfFl-YRQXc_Jco=.pem","location":"security-state-staging/intermediates/30359a92-8a61-4c98-9bee-afe2d78656b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pedwg+t32CS6XTTc/JUBqMnUFDQfsrfFl+YRQXc/Jco=","crlite_enrolled":false,"id":"83964573-3e97-41f2-9ce8-bc7f7ce62667","last_modified":1601517444456},{"schema":1601473889131,"derHash":"fOuUWEQnVvQKSFww8rrwAQfB6e6F2wL6APQbpYRDZOU=","subject":"CN=ISSAuth ECC DV CA,O=INTEGRITY Security Services LLC,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMSgwJgYDVQQKEx9JTlRFR1JJVFkgU2VjdXJpdHkgU2VydmljZXMgTExDMRowGAYDVQQDExFJU1NBdXRoIEVDQyBEViBDQQ==","whitelist":false,"attachment":{"hash":"43ee1efa5f0a207b149a67aaf0323e49197e5c769577b389eb3471c5539f8ad2","size":1248,"filename":"82GvRpB_uAZ2gBlFqbv5pwS1b52FWaLFTHSLLlPtkS4=.pem","location":"security-state-staging/intermediates/104f20f8-b19b-47ab-900b-8d1023c6ef8e.pem","mimetype":"application/x-pem-f
ile"},"pubKeyHash":"82GvRpB/uAZ2gBlFqbv5pwS1b52FWaLFTHSLLlPtkS4=","crlite_enrolled":false,"id":"5a3ba8e4-7aa8-42fe-b7d7-6a51a2cb824f","last_modified":1601517444445},{"schema":1601473895251,"derHash":"2dgcAVBdsZNxAhDZtCe2Uynv/yVhNfb7L+2+U+WTvwI=","subject":"CN=ISSAuth ECC OV CA,O=INTEGRITY Security Services LLC,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMSgwJgYDVQQKEx9JTlRFR1JJVFkgU2VjdXJpdHkgU2VydmljZXMgTExDMRowGAYDVQQDExFJU1NBdXRoIEVDQyBPViBDQQ==","whitelist":false,"attachment":{"hash":"7c05b04c5a6bbda8889889dadcc4004f477b9429c2ca7085c924ef4cc7961804","size":1248,"filename":"GE-HA2pOP4xPkalzLKDvBn9-H2GvpzI92tTTxyspNKk=.pem","location":"security-state-staging/intermediates/df193818-a02b-4e4d-866a-66cc8dc89803.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GE+HA2pOP4xPkalzLKDvBn9+H2GvpzI92tTTxyspNKk=","crlite_enrolled":false,"id":"1ce8bbb0-2bde-459d-b3ef-f90049c4f3ae","last_modified":1601517444434},{"schema":1601473890650,"derHash":"YkukJyyJbPvlUSj+vm5NbSSMI6HI2zLReJyBGHL2/Dw=",
"subject":"CN=ISSAuth RSA DV CA,O=INTEGRITY Security Services LLC,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMSgwJgYDVQQKEx9JTlRFR1JJVFkgU2VjdXJpdHkgU2VydmljZXMgTExDMRowGAYDVQQDExFJU1NBdXRoIFJTQSBEViBDQQ==","whitelist":false,"attachment":{"hash":"c006295568921093e5148e77673f798172fdb1b6b28d3ac7737f3b5b35f7c661","size":2085,"filename":"3EfOHBtoOcqfHn9qHOGL-BkHEhOKUfa0ttPxLO6OaUY=.pem","location":"security-state-staging/intermediates/9a72162b-3c00-4079-9ce1-0b08c6e23202.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3EfOHBtoOcqfHn9qHOGL+BkHEhOKUfa0ttPxLO6OaUY=","crlite_enrolled":false,"id":"db10a85d-fae6-4776-b901-d09000033eca","last_modified":1601517444423},{"schema":1601376757462,"derHash":"13V4SIfNvX6fyyqdWJ02egtiONoer1HcccmbibmSKeA=","subject":"CN=Cybertrust Global Root,O=Cybertrust\\, Inc","subjectDN":"MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA==","whitelist":false,"attachment":{"hash":"e32b53c148cbc70936170082c6ba25a772ef3d90af11a3217
6389625e0c0691d","size":1715,"filename":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=.pem","location":"security-state-staging/intermediates/9a10b1ed-2339-4fb1-a42a-f9909244eef5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=","crlite_enrolled":false,"id":"42958ff2-5fcd-4c14-8815-60ee31623d20","last_modified":1601517444371},{"schema":1601376740640,"derHash":"VMN6joU/0dY3jTeLk5MH7DIaMcwaWonnGAYzvBPxh2I=","subject":"CN=GlobalSign HV RSA DV SSL CA 2018,O=GlobalSign nv-sa,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIEhWIFJTQSBEViBTU0wgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"1c5322edfdbb1b8079d8aca3070adf94e68b553d512f64c518c1a6271a4e3ebf","size":1613,"filename":"5J8n1iJ-aJofFJd3TQfvG3J_UdKG9lFZc5KF98adKQg=.pem","location":"security-state-staging/intermediates/b0d1d6d0-aa0f-4d67-8a2b-7b3a6a157f00.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5J8n1iJ+aJofF
Jd3TQfvG3J/UdKG9lFZc5KF98adKQg=","crlite_enrolled":true,"id":"8fced961-4ed6-4ff4-9402-d3f6ee0f77a3","last_modified":1601517444353},{"schema":1601376745601,"derHash":"lbCdAhIvqK5iNXgPbqZQPnZ6wCGgh0/oMc6AOlDqj9c=","subject":"CN=GeoTrust EV SSL CA - G4,O=GeoTrust Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSAwHgYDVQQDExdHZW9UcnVzdCBFViBTU0wgQ0EgLSBHNA==","whitelist":false,"attachment":{"hash":"f9cce53a2c02bfdd9b421931d8556b782c6ecd2333ff1759e7a701722351de47","size":1597,"filename":"owrR9U9FWDWtrFF-myoRIu75JwU4sJwzvhCNLZoY37g=.pem","location":"security-state-staging/intermediates/93d3a920-7dd2-4552-a9bb-3e52e0c6d380.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"owrR9U9FWDWtrFF+myoRIu75JwU4sJwzvhCNLZoY37g=","crlite_enrolled":false,"id":"ff691ba0-3a0c-45ac-b608-b75b65279543","last_modified":1601517444335},{"schema":1601376727385,"derHash":"Nmb4BJFA/cCmXoCbKBo747ENr+79drndwnKpPoPKW5k=","subject":"SERIALNUMBER=A82743287,CN=Chambers of Commerce Root
- 2008,O=AC Camerfirma S.A.,L=Madrid (see current address at www.camerfirma.com/address),C=EU","subjectDN":"MIGuMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xKTAnBgNVBAMTIENoYW1iZXJzIG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4","whitelist":false,"attachment":{"hash":"b4b436ef9231a9bbea04b3f960f93e2326676d0ee0cd4474684e42b776ddde11","size":2593,"filename":"ztQ5AqtftXtEIyLcDhcqT7VfcXi4CPlOeApv1sxr2Bg=.pem","location":"security-state-staging/intermediates/fd1a7011-0604-4a45-83c7-ca62f842fb8e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ztQ5AqtftXtEIyLcDhcqT7VfcXi4CPlOeApv1sxr2Bg=","crlite_enrolled":false,"id":"0e5f4be2-73c5-4bf6-b6a2-45f1f07226d8","last_modified":1601517444317},{"schema":1601376755442,"derHash":"axQ8IAXVU5zCLqtfdy2yqf6HRn/v+gf88Kn30oJ0yno=","subject":"CN=Entrust Root Certification Authority - G2,OU=See www.entrust.net/legal-terms+OU=(c) 2009
Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG+MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMDkgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MTIwMAYDVQQDEylFbnRydXN0IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMg==","whitelist":false,"attachment":{"hash":"d1674b1f7b1aef60543ae1256c7298ed99b5016d5a49c8ba8b9745c679003a0f","size":1792,"filename":"du6FkDdMcVQ3u8prumAo6t3i3G27uMP2EOhR8R0at_U=.pem","location":"security-state-staging/intermediates/90532b3e-aeb1-42ae-b53d-9b0794e82506.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"du6FkDdMcVQ3u8prumAo6t3i3G27uMP2EOhR8R0at/U=","crlite_enrolled":false,"id":"512e1df0-26cc-48dd-9524-3c1d7aaf422b","last_modified":1601517444299},{"schema":1601376750957,"derHash":"Vsuw/8QU6IgipQ6fQtRoIDgdjCqu71bgVmgX7TDyeic=","subject":"CN=DKHS Device CA - G2,OU=GeoRoot Certification Authority,O=NTT DOCOMO\\, INC.,C=JP","subjectDN"
:"MHAxCzAJBgNVBAYTAkpQMRkwFwYDVQQKExBOVFQgRE9DT01PLCBJTkMuMSgwJgYDVQQLEx9HZW9Sb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRwwGgYDVQQDExNES0hTIERldmljZSBDQSAtIEcy","whitelist":false,"attachment":{"hash":"bde21987c9e3d549164d3f8bd906c3e0e7143f88e251c6d038487800c1df337d","size":1609,"filename":"XAKgtY9g-AuhN_1uwTUpgRjOYN5vJWan9jzWCnhebjw=.pem","location":"security-state-staging/intermediates/fc44b1b1-a48b-417b-911e-ce6d05512da2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XAKgtY9g+AuhN/1uwTUpgRjOYN5vJWan9jzWCnhebjw=","crlite_enrolled":false,"id":"23862319-a4da-4783-ae80-57929b6958f5","last_modified":1601517444281},{"schema":1601376775699,"derHash":"aGkkLNitKsd7wCiUe8fQxPbpy/CJnWVwmBDYn5S11w0=","subject":"CN=GDCA TrustAUTH R4 EV SSL CA G2,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJzAlBgNVBAMMHkdEQ0EgVHJ1c3RBVVRIIFI0IEVWIFNTTCBDQSBHMg==","whitelist":false,
"attachment":{"hash":"2e1f89d236b55a9e53ce42bf4e6c979ac2d4e9d9e836793810d01c10dc91ff0f","size":1727,"filename":"GlfrRgw9jW9VNC7Y1aXDsTsHh6dUPAEud8fhzOO-EdY=.pem","location":"security-state-staging/intermediates/76ca0f35-dc5e-4a6b-a715-cae8b21ba328.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GlfrRgw9jW9VNC7Y1aXDsTsHh6dUPAEud8fhzOO+EdY=","crlite_enrolled":false,"id":"15d2f4f5-d5d0-4fc9-8825-8c5fcf5cbe4f","last_modified":1601517444263},{"schema":1601376779796,"derHash":"qDhAXrsD9d/Y1KlXKubg4/NW7E7BNDdaWdt7GV3D7EQ=","subject":"CN=GeoTrust TLS ECC CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHzAdBgNVBAMTFkdlb1RydXN0IFRMUyBFQ0MgQ0EgRzE=","whitelist":false,"attachment":{"hash":"c0c946701c933eed603c99ac71fe696329ac344e1eb857450da9a3c6fc6b28e7","size":1146,"filename":"5UDBgr_RVcJyUuNCNmS5AenhQ6TpdPBpf6CAGjUnD10=.pem","location":"security-state-staging/intermediates/8ff205f5-9e76
-40e9-807e-5a7aa972ec40.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5UDBgr/RVcJyUuNCNmS5AenhQ6TpdPBpf6CAGjUnD10=","crlite_enrolled":true,"id":"ff1f04eb-42ca-4339-9a6e-842a41a4be3c","last_modified":1601517444245},{"schema":1601376753403,"derHash":"V94Fg+/Ssm4DYdqZ2p30ZI3vfuhEHDtyivqbzeD5smo=","subject":"CN=Autoridad de Certificacion Firmaprofesional CIF A62634068,C=ES","subjectDN":"MFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUgQ2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjg=","whitelist":false,"attachment":{"hash":"6d84cf680e962beda938e61164d5227272b5f42dc698ba20d2daf9fa5b01e5a4","size":2166,"filename":"Ow1ztL5KhUrcPlHX75-kiu-7LN2CTWe9x9fQmiq8LUM=.pem","location":"security-state-staging/intermediates/db0d57a0-e293-40b4-ac35-c505d0b77f4c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ow1ztL5KhUrcPlHX75+kiu+7LN2CTWe9x9fQmiq8LUM=","crlite_enrolled":false,"id":"19461103-183f-4856-b2fe-be344c1f63e1","last_modified":1601517444223},{"schema":1601376741
054,"derHash":"U6XjKsxXFO0gx3eMZV0e6X7AcVYHTIsBbiz8c+nScSs=","subject":"CN=DigiCert Global Root G3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcz","whitelist":false,"attachment":{"hash":"b4887e6003a7f6553d3ac6da8c1ec7ddeec67cdeb9a3a2629953e71f2f779353","size":1297,"filename":"uUwZgwDOxcBXrQcntwu-kYFpkiVkOaezL0WYEZ3anJc=.pem","location":"security-state-staging/intermediates/a66116e2-f28d-4977-b407-ee74b5f52aac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uUwZgwDOxcBXrQcntwu+kYFpkiVkOaezL0WYEZ3anJc=","crlite_enrolled":false,"id":"8e9e5e57-79b3-4dd5-b6dc-59b075cc06ed","last_modified":1601517444204},{"schema":1601376777334,"derHash":"giK8T+ej3cqe8L8NaCrIiHmfh4ItFTMqVMC/38aFT3s=","subject":"CN=Staat der Nederlanden Organisatie Persoon CA - G3,O=Staat der Nederlanden,C=NL","subjectDN":"MGkxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJ
sYW5kZW4xOjA4BgNVBAMMMVN0YWF0IGRlciBOZWRlcmxhbmRlbiBPcmdhbmlzYXRpZSBQZXJzb29uIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"0e3b37043e3f3aa596ff489e47e328fc72d538d552cc6714e820266d3bd25eb9","size":2239,"filename":"A8tEuTPX4UVR5S3b_DNaTVe_ZacDZntXrJYd4x46EG0=.pem","location":"security-state-staging/intermediates/416db4aa-c73c-4a15-9a7f-92977f67e9ca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"A8tEuTPX4UVR5S3b/DNaTVe/ZacDZntXrJYd4x46EG0=","crlite_enrolled":false,"id":"1222b1e8-48ad-44cf-9106-0db07c445fdd","last_modified":1601517444171},{"schema":1601376761177,"derHash":"Ukz3MxxO41PusezXTh+AGg8fCN+gMiCS9CIFr8OhdnU=","subject":"CN=DigiCert SHA-2 RADIUS CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IFNIQS0yIFJBRElVUyBDQQ==","whitelist":false,"attachment":{"hash":"27066a171b414ad64061c4d31e5004cbce8f4d7555ba47fca659f81f97acaaf9","size":1674,"filename
":"yZwj8Xi_M8HwwIrk8zUJt2lZ5wy1IcLCTmo7r845-xQ=.pem","location":"security-state-staging/intermediates/0356953d-ca56-4ed4-b79b-6447b2d907ff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yZwj8Xi/M8HwwIrk8zUJt2lZ5wy1IcLCTmo7r845+xQ=","crlite_enrolled":false,"id":"2b7210c5-6bef-4469-b9b2-3cf4a91afb14","last_modified":1601517444153},{"schema":1601376733088,"derHash":"ZHFyUK+LAo3Y5cC65MkULIsQNTJhK8SHCF/Twxn5wGc=","subject":"CN=ePKI Root Certification Authority - G2,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MGMxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEvMC0GA1UEAwwmZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"73789188b1ff6dcd70442594b8ff119cb7b30d858c0e7f072cf8a014cd8f296a","size":2649,"filename":"tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=.pem","location":"security-state-staging/intermediates/3785b85c-da3b-4b7b-bd12-2796cce60c04.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tInMsiS5prgd0
nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=","crlite_enrolled":false,"id":"ee033ab1-7bfc-4f08-b26a-b3b2bce86767","last_modified":1601517444135},{"schema":1601376743119,"derHash":"P94NNuAmtujr4sKIg2B8hlHeEL1sH8rTZeVg9OovOwM=","subject":"CN=Entrust Root Certification Authority - EC1,OU=See www.entrust.net/legal-terms+OU=(c) 2012 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG/MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTIgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MTMwMQYDVQQDEypFbnRydXN0IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBFQzE=","whitelist":false,"attachment":{"hash":"fa84991015956f299a21164f4a77c8da26802bb7bac4207eb696cc086ce715b0","size":1577,"filename":"_qK31kX7pz11PB7Jp4cMQOH3sMVh6Se5hb9xGGbjbyI=.pem","location":"security-state-staging/intermediates/2827fb47-01de-4cf9-88b5-faa3f7464bf6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/qK31kX7pz11PB7Jp
4cMQOH3sMVh6Se5hb9xGGbjbyI=","crlite_enrolled":false,"id":"10eb04ab-95e7-45a1-94b3-40bc33bad469","last_modified":1601517444117},{"schema":1601376774088,"derHash":"BTHIb3hZWJOf3FOZJNOV0e+kCTZOaCfTq5h2MR/7J7A=","subject":"CN=QuoVadis Enterprise Trust CA 1 G3,O=QuoVadis Limited,C=BM","subjectDN":"MFQxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSowKAYDVQQDDCFRdW9WYWRpcyBFbnRlcnByaXNlIFRydXN0IENBIDEgRzM=","whitelist":false,"attachment":{"hash":"0838a224858164040768ee9fb8bab6de6efb11294b58f2c5db9fea5788b39bc7","size":2333,"filename":"8ZpHrAG1eQIQZnOeYn-p9E7tqq_yc1fiaSaeKR1BY2I=.pem","location":"security-state-staging/intermediates/360e077f-09bb-4788-bbfe-80bd616b8011.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8ZpHrAG1eQIQZnOeYn+p9E7tqq/yc1fiaSaeKR1BY2I=","crlite_enrolled":false,"id":"2a1565c1-b11e-4fb4-a545-99acd43e82cf","last_modified":1601517444099},{"schema":1601376769580,"derHash":"rY6zLJ2pHdyFXzgnRZkBR9xvI9n7sE/J1Hax7iD8cdg=","subject":"CN=DigiCert Trusted Root
G4,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IFRydXN0ZWQgUm9vdCBHNA==","whitelist":false,"attachment":{"hash":"12cc0d0e07a0ce9a1fae8bc81a3c9918619e6044dedda6d70c56fec58c5aa0d5","size":2024,"filename":"Wd8xe_qfTwq3ylFNd3IpaqLHZbh2ZNCLluVzmeNkcpw=.pem","location":"security-state-staging/intermediates/40ac2caf-9799-41cc-9949-62fe94bd7c8f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wd8xe/qfTwq3ylFNd3IpaqLHZbh2ZNCLluVzmeNkcpw=","crlite_enrolled":false,"id":"9702b5ab-ac3b-478f-8641-763a8b97d8df","last_modified":1601517444080},{"schema":1601376751370,"derHash":"rev4P9PT+VRrt3+qtRbdkzfM+R4RmPdDN3aexo5ugm4=","subject":"CN=Symantec Class 3 ECC 256 bit SSL CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEsMCoGA1UEAxMjU3ltYW50ZWMgQ2xh
c3MgMyBFQ0MgMjU2IGJpdCBTU0wgQ0E=","whitelist":false,"attachment":{"hash":"221a0273827a23e87c0dd7ce8626aa6c220b418e5234c22b3d0208d1d9f6dc1a","size":1394,"filename":"kNDz7bhhiRNqEf2UFG3eoPwdtsGjjYfGnZgWRkA10BI=.pem","location":"security-state-staging/intermediates/35791f89-9b45-419d-8e77-406b12700572.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kNDz7bhhiRNqEf2UFG3eoPwdtsGjjYfGnZgWRkA10BI=","crlite_enrolled":false,"id":"b0560908-0ea5-4fca-99b1-ce23985cb524","last_modified":1601517444062},{"schema":1601376774489,"derHash":"to1dm06mNZV8DDIVwg01siF7aeNJx6MExPl/IMQIH4g=","subject":"SERIALNUMBER=A82743287,CN=AC Camerfirma - 2009,O=AC Camerfirma S.A.,L=Madrid (see current address at https://www.camerfirma.com/address),C=ES","subjectDN":"MIGqMQswCQYDVQQGEwJFUzEbMBkGA1UEChMSQUMgQ2FtZXJmaXJtYSBTLkEuMRIwEAYDVQQFEwlBODI3NDMyODcxSzBJBgNVBAcTQk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCBodHRwczovL3d3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTEdMBsGA1UEAxMUQUMgQ2FtZXJmaXJtYSAtIDIwMDk=","whitelist":fa
lse,"attachment":{"hash":"197ccbfd7ec7b28f0f75167600f50b767843f9737a9e63f410e93c076cda6c09","size":2918,"filename":"wAh6UmDWkgJZX-MvtntK3hAjxzxC6tPEmrdc3IqHZl8=.pem","location":"security-state-staging/intermediates/3341ba59-f7ad-4982-bb52-733b1fd5490b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wAh6UmDWkgJZX+MvtntK3hAjxzxC6tPEmrdc3IqHZl8=","crlite_enrolled":false,"id":"48847bb5-0281-45c3-b2d3-e7f76ca2cb3b","last_modified":1601517444043},{"schema":1601376755836,"derHash":"joxuv3fcc9s+OOk/SAPmK2tZM761HuQVL2jXqhRCazE=","subject":"CN=Microsec e-Szigno Root CA 2009,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odQ==","whitelist":false,"attachment":{"hash":"3d68f4af65db5b779ba073b81f3674d2dd3df3323be8808d825116f4a0a129c3","size":1557,"filename":"YWFnIBQzrqbI5eMHCvyvZ0kYj4FL0auxea6NrTq_Juw=.pem","location"
:"security-state-staging/intermediates/ad34e608-081b-4ce8-83f8-80bf15e28c0e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YWFnIBQzrqbI5eMHCvyvZ0kYj4FL0auxea6NrTq/Juw=","crlite_enrolled":false,"id":"35957622-8171-40c9-b5c6-f6630c77d128","last_modified":1601517444025},{"schema":1601376772500,"derHash":"l55f990lhUXx0dc3+UCPOlWud8j8bmHcR0JQ0sl5sFE=","subject":"OU=ePKI Root Certification Authority,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MF4xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"001850d9f7cb0ad915c278964fe8db058918ef083cfdd108f313803de6710705","size":2560,"filename":"YlVMFwBVQ7I3IV8EJo3NL9HEcCQK08hmDiWuLFljD1U=.pem","location":"security-state-staging/intermediates/eba466f4-bb7c-4798-9986-b6b5eca4a446.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YlVMFwBVQ7I3IV8EJo3NL9HEcCQK08hmDiWuLFljD1U=","crlite_enrolled":false,"id":"478b2025-c6ad
-416f-9ef4-0e96131f47a6","last_modified":1601517444008},{"schema":1601376742712,"derHash":"YO9BLqvnw/xjme7RtjO3d3R1FbKdchuWPdJYvEmKspI=","subject":"CN=SSL.com EV Root Certification Authority ECC,O=SSL Corporation,L=Houston,ST=Texas,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTQwMgYDVQQDDCtTU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgRUND","whitelist":false,"attachment":{"hash":"ab3dfad3dda55fb2c174fabf92fc81f2757e57a915b1f78f5483d12dfaf50f76","size":1821,"filename":"NIdnza073SiyuN1TUa7DDGjOxc1p0nbfOCfbxPWAZGQ=.pem","location":"security-state-staging/intermediates/734df71e-5087-4844-aa75-47d2809181f8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NIdnza073SiyuN1TUa7DDGjOxc1p0nbfOCfbxPWAZGQ=","crlite_enrolled":false,"id":"b512360d-9f2f-4206-97ac-09aa8d521233","last_modified":1601517443989},{"schema":1601376752989,"derHash":"dp9v8Jp0Yqwnpugt53ABPTwCEzr92+WBrvzKGwoCkYA=","subject":"CN=TrustSign
BR Certification Authority (EV) 2,OU=Controlled by COMODO for TrustSign Certificadora Digital,O=TrustSign Certificadora Dig. & Solu\u00e7\u00f5es Seguran\u00e7a da Inf. Ltda.,L=S\u00e3o Jos\u00e9 dos Campos,ST=S\u00e3o Paulo,C=BR","subjectDN":"MIIBCDELMAkGA1UEBhMCQlIxEzARBgNVBAgMClPDo28gUGF1bG8xHjAcBgNVBAcMFVPDo28gSm9zw6kgZG9zIENhbXBvczFLMEkGA1UECgxCVHJ1c3RTaWduIENlcnRpZmljYWRvcmEgRGlnLiAmIFNvbHXDp8O1ZXMgU2VndXJhbsOnYSBkYSBJbmYuIEx0ZGEuMUEwPwYDVQQLEzhDb250cm9sbGVkIGJ5IENPTU9ETyBmb3IgVHJ1c3RTaWduIENlcnRpZmljYWRvcmEgRGlnaXRhbDE0MDIGA1UEAxMrVHJ1c3RTaWduIEJSIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IChFVikgMg==","whitelist":false,"attachment":{"hash":"ba4c3dbca2d5728e872bf00f09797aeef4e3eca1f8283c82bfa080bb528a8dc9","size":2373,"filename":"iKWK-FGvQxVzCQKwKOQ7Rd18KzTZXBBwxTbfJaG1qN0=.pem","location":"security-state-staging/intermediates/a1e03bb9-2c35-49c6-bd32-f0994e053167.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iKWK+FGvQxVzCQKwKOQ7Rd18KzTZXBBwxTbfJaG1qN0=","crlite_enrolled":false
,"id":"e0f723e6-76d1-4bee-9c67-8136e524719e","last_modified":1601517443971},{"schema":1601376730664,"derHash":"8oqXrCjP7RCpOn8Hj5eMj2IEydhFH3RdX+u9bgttTXw=","subject":"CN=Hellenic Academic and Research Institutions RootCA 2015,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGmMQswCQYDVQQGEwJHUjEPMA0GA1UEBxMGQXRoZW5zMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBSb290Q0EgMjAxNQ==","whitelist":false,"attachment":{"hash":"599c4d3414fd09b7ab7a1692a79ac80f5e452adbeed9d0aecc7a05228a1b427e","size":2292,"filename":"UMyGupbbMmPHmkPq0HVT2fVmWeaQfnLYwCZjehzchdw=.pem","location":"security-state-staging/intermediates/9269078b-f3eb-4f59-b548-f9978d1786cf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UMyGupbbMmPHmkPq0HVT2fVmWeaQfnLYwCZjehzchdw=","crlite_enrolled":false,"id":"f360da31-27aa-400f-8a47-3d517bae9327","last_modified
":1601517443953},{"schema":1601376744781,"derHash":"asZkCS2bsVahECbk/nNNM3jIDe1FGYawul7KEcbfirs=","subject":"CN=KDDI Web Communications Certification Authority 2,O=KDDI Web Communications Inc.,C=JP","subjectDN":"MHAxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxLRERJIFdlYiBDb21tdW5pY2F0aW9ucyBJbmMuMTowOAYDVQQDEzFLRERJIFdlYiBDb21tdW5pY2F0aW9ucyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAy","whitelist":false,"attachment":{"hash":"30e363da73774add76e38c29a61875ab860a411951b9f29e3ad90d7e3fbfe77f","size":1658,"filename":"aUNVAMKFhtzaVShUUcBbp8xP_plnuqaBn80TpHKVfNs=.pem","location":"security-state-staging/intermediates/1e7b2323-695f-4952-ad56-19f517a7246b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aUNVAMKFhtzaVShUUcBbp8xP/plnuqaBn80TpHKVfNs=","crlite_enrolled":false,"id":"d7768dd2-6b98-4ad2-886e-cac6d553ec16","last_modified":1601517443936},{"schema":1601376782713,"derHash":"H5sx+CCSnr+gMRfsK3e6aw+27MngJ2gqVZN42jEcVO8=","subject":"CN=Symantec Class 3 Extended Validation SHA256 SSL CA,OU=Symantec Trust
Network,O=Symantec Corporation,C=US","subjectDN":"MIGKMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxOzA5BgNVBAMTMlN5bWFudGVjIENsYXNzIDMgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTSEEyNTYgU1NMIENB","whitelist":false,"attachment":{"hash":"73b3e2e12b6d805388d7894c35f9c43b08121eeddc974879d17a8b755870c43b","size":1894,"filename":"fb0Tfqir1HP3KpDb-G45zaPKd4IMWkZQgeiSsLeH8tk=.pem","location":"security-state-staging/intermediates/f1503402-4fce-4d76-96a3-ab24eed07569.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fb0Tfqir1HP3KpDb+G45zaPKd4IMWkZQgeiSsLeH8tk=","crlite_enrolled":false,"id":"27f99fc8-8d5d-4c73-ad31-4ef517e5ef06","last_modified":1601517443918},{"schema":1601376747224,"derHash":"uQ7q6THl4rfTNfFJ2mwiEJhgANIU/9tipy9zMtY3Ma8=","subject":"CN=Verizon Global Root CA,OU=OmniRoot,O=Verizon Business,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBWZXJpem9uIEJ1c2luZXNzMREwDwYDVQQLEwhPbW5pUm9vdDEfMB0GA1UEAxMWVmVyaXpvbiBHbG9iYWwgUm9vdC
BDQQ==","whitelist":false,"attachment":{"hash":"b2ff06177ee90557f82e4d2b65f87cbe3e37ef185fd9f5b2f7d8c654bf7eefbc","size":1760,"filename":"v-gpCYcuRDTxFcUaVhaAGVlNDgPco2PZ87SDnQurzeU=.pem","location":"security-state-staging/intermediates/96d8b2a4-5c83-408a-aba1-f8c0818c74a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"v+gpCYcuRDTxFcUaVhaAGVlNDgPco2PZ87SDnQurzeU=","crlite_enrolled":false,"id":"90eff404-0514-42a4-b6bc-375d060840d8","last_modified":1601517443892},{"schema":1601376720802,"derHash":"2VgdvembOe7/bOXIDeFlDaDByKEJcF7ShsU7yV5mVeQ=","subject":"CN=Staat der Nederlanden Organisatie Services CA - G3,O=Staat der Nederlanden,C=NL","subjectDN":"MGoxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xOzA5BgNVBAMMMlN0YWF0IGRlciBOZWRlcmxhbmRlbiBPcmdhbmlzYXRpZSBTZXJ2aWNlcyBDQSAtIEcz","whitelist":false,"attachment":{"hash":"7e2d605d386b1377355070db06e788e514e057431cc7ff2c0772d4f9b8ff0e62","size":2324,"filename":"WoBMz_bIYMctSPZ5Zhje__eik13TeByHSK4zXYYEsAQ=.pem","locati
on":"security-state-staging/intermediates/baa75ba7-d136-47a9-96af-8da37255a077.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WoBMz/bIYMctSPZ5Zhje//eik13TeByHSK4zXYYEsAQ=","crlite_enrolled":false,"id":"ea6ff4e8-dc0c-4bf1-8751-7f9a6053af57","last_modified":1601517443861},{"schema":1601376719498,"derHash":"rPcY34OOZABRd30ZR/UWIOjYBLoYZVOuUvyYEbXTS4s=","subject":"CN=SSL.com Root Certification Authority RSA,O=SSL Corporation,L=Houston,ST=Texas,C=US","subjectDN":"MHwxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTEwLwYDVQQDDChTU0wuY29tIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNB","whitelist":false,"attachment":{"hash":"0be6061408140698708a3d3cb24d39ad6416effde544c39b9e52f40a1b6fe9cf","size":2085,"filename":"0cRTd-vc1hjNFlHcLgLCHXUeWqn80bNDH_bs9qMTSPo=.pem","location":"security-state-staging/intermediates/a9cbcbd0-800f-442e-8f52-903325a5ee23.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0cRTd+vc1hjNFlHcLgLCHXUeWqn80bNDH
/bs9qMTSPo=","crlite_enrolled":false,"id":"60def2d8-d623-4952-91b9-30913d09f7b4","last_modified":1601517443836},{"schema":1601376719951,"derHash":"RiJre4ngLKj12F1n7Yy0sZxIOCBYuxYkIZnVQMq+kmg=","subject":"CN=TeliaSonera Gateway CA v2,O=TeliaSonera,C=FI","subjectDN":"MEcxCzAJBgNVBAYTAkZJMRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEiMCAGA1UEAwwZVGVsaWFTb25lcmEgR2F0ZXdheSBDQSB2Mg==","whitelist":false,"attachment":{"hash":"a217b78c13516b7cdc64085ded0920414e8b497f59bb8ad9e4ba1202473f3e28","size":2532,"filename":"jaaJsNV10gkW5ui1mprnOhj0AU9JlvfHwfeE-4pG7Lg=.pem","location":"security-state-staging/intermediates/e2f9758e-b3b7-476a-a010-68d270baddb3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jaaJsNV10gkW5ui1mprnOhj0AU9JlvfHwfeE+4pG7Lg=","crlite_enrolled":false,"id":"94fd3ab1-6743-43b7-b04b-f3ce9336a99b","last_modified":1601517443809},{"schema":1601376760342,"derHash":"RcKL5DQvByzWIZaYw+8qxtunPxngTazyBE0vaZPjQrQ=","subject":"CN=eMudhra RSA Extended Validation Secure Server CA,OU=Controlled by S
ectigo exclusively for eMudhra Technologies Ltd.,O=eMudhra Technologies Limited,L=Bengaluru,ST=Karnataka,C=IN","subjectDN":"MIHhMQswCQYDVQQGEwJJTjESMBAGA1UECBMJS2FybmF0YWthMRIwEAYDVQQHEwlCZW5nYWx1cnUxJTAjBgNVBAoTHGVNdWRocmEgVGVjaG5vbG9naWVzIExpbWl0ZWQxSDBGBgNVBAsTP0NvbnRyb2xsZWQgYnkgU2VjdGlnbyBleGNsdXNpdmVseSBmb3IgZU11ZGhyYSBUZWNobm9sb2dpZXMgTHRkLjE5MDcGA1UEAxMwZU11ZGhyYSBSU0EgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"68e999dcfb6f85564fab0d02baa239b313d7e2dc8f5a4ecb6346e4afc6201b43","size":2316,"filename":"xIsOtN5uZ5ZZQRiHSu6NrXg36kenjPgaYZeoj9lRsXk=.pem","location":"security-state-staging/intermediates/e30be843-e47e-40e4-8d03-35c62a341392.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xIsOtN5uZ5ZZQRiHSu6NrXg36kenjPgaYZeoj9lRsXk=","crlite_enrolled":true,"id":"29d99702-edc8-413c-b8ca-77c56ea0181f","last_modified":1601517443782},{"schema":1601376721235,"derHash":"1Gkx4Bgt1lXqDBbm3Zn45hr/5AH3NMbKjqAFapaOr4E=","subject":"CN=DigiCe
rt Baltimore EV CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IEJhbHRpbW9yZSBFViBDQQ==","whitelist":false,"attachment":{"hash":"71b566b9248c134842c94e190eb959e767923e037257d37b3e855d67a010ab2d","size":1577,"filename":"VOipUY1UDQFkU3SLv8yqRqnSAXgf2u64AGItxQco2LY=.pem","location":"security-state-staging/intermediates/fb866139-1efa-47a1-b0a2-afca62bb7d30.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VOipUY1UDQFkU3SLv8yqRqnSAXgf2u64AGItxQco2LY=","crlite_enrolled":true,"id":"3395f234-9055-4caa-a4d5-11b4a7f375a3","last_modified":1601517443761},{"schema":1601376769979,"derHash":"EoGtj6vog/IJ6WNkSNGoDDc9qnaGyBOicPrUj19eWJo=","subject":"CN=Telia Server CA v3,O=Telia Finland Oyj,C=FI","subjectDN":"MEYxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEbMBkGA1UEAwwSVGVsaWEgU2VydmVyIENBIHYz","whitelist":false,"attachment":{"hash":"c49599398958207a50863ebc4e7e5
08a20b8551b440ae2d3d28ab90e317f5c12","size":2341,"filename":"TCgTLigAKZ2ouWM1T2dh92G9wUDP8Wlma6sqwmm3aVc=.pem","location":"security-state-staging/intermediates/bdcf129f-b3fa-4ce1-8a67-6da86c05d54f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TCgTLigAKZ2ouWM1T2dh92G9wUDP8Wlma6sqwmm3aVc=","crlite_enrolled":true,"id":"681d294f-17d7-400e-a4ca-507ee1d90a50","last_modified":1601517443744},{"schema":1601376782315,"derHash":"p+gwVumz2d2xgWuVUY9qXlod/foo9gUzschQhV6qQmM=","subject":"CN=Telia Domain Validation CA v3,O=Telia Finland Oyj,C=FI","subjectDN":"MFExCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEmMCQGA1UEAwwdVGVsaWEgRG9tYWluIFZhbGlkYXRpb24gQ0EgdjM=","whitelist":false,"attachment":{"hash":"0f8c227df79307dbeec994ba6d8bd832268f9d2b0c636499e29d589ed747a88c","size":2353,"filename":"RU2jIfMztj4AADghygjY9gbxUkW13LXRSS7JeONgrxc=.pem","location":"security-state-staging/intermediates/f38aa272-1880-4c2f-b745-6c01a69b0614.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"
RU2jIfMztj4AADghygjY9gbxUkW13LXRSS7JeONgrxc=","crlite_enrolled":true,"id":"b07c6446-0c44-4a00-bb56-ca8b2b55a54e","last_modified":1601517443698},{"schema":1601376730262,"derHash":"MBx2dQJ2GpCYk29sqnNsQ2QHQeDdmiaY9DoAHZfBZ/k=","subject":"CN=Fuji Xerox Certification Authority 2,O=Fuji Xerox,C=JP","subjectDN":"MFExCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MS0wKwYDVQQDEyRGdWppIFhlcm94IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IDI=","whitelist":false,"attachment":{"hash":"b2e83a0583235d0e89d877d8abbd4ddc71a9825998e2cd9c7aa40500a9f10667","size":1500,"filename":"jEakGI1jOC9M7t1p7b_cp7OOuFt2ovRpogRWrRVxQt8=.pem","location":"security-state-staging/intermediates/7ae7dfdd-6a6d-492e-9eba-8b861f68976a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jEakGI1jOC9M7t1p7b/cp7OOuFt2ovRpogRWrRVxQt8=","crlite_enrolled":false,"id":"c9552f3d-50c5-424d-aa0b-ddb2a0a0f796","last_modified":1601517443675},{"schema":1601376759931,"derHash":"pYmOW/uEKVwEPsQDQoivs34NWjhm8Xy2V7l/cty1O+w=","subject":"CN=EC-ACC,OU=Ser
veis Publics de Certificacio+OU=Vegeu https://www.catcert.net/verarrel (c)03+OU=Jerarquia Entitats de Certificacio Catalanes,O=Agencia Catalana de Certificacio (NIF Q-0801176-I),C=ES","subjectDN":"MIHzMQswCQYDVQQGEwJFUzE7MDkGA1UECgwyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8gKE5JRiBRLTA4MDExNzYtSSkxKDAmBgNVBAsMH1NlcnZlaXMgUHVibGljcyBkZSBDZXJ0aWZpY2FjaW8xNTAzBgNVBAsMLFZlZ2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQubmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLDCxKZXJhcnF1aWEgRW50aXRhdHMgZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAwwGRUMtQUND","whitelist":false,"attachment":{"hash":"c91d4443f3c8f83a280186a047029b6b4b7ce659addce7f07caf597e11a9dc65","size":1902,"filename":"sh0qdDMYcSuhbzmRnZYaS6-6O8qaQ6dbH8_iLF1wyro=.pem","location":"security-state-staging/intermediates/dad2be5f-3b40-4362-a644-e7ed3ec0debd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sh0qdDMYcSuhbzmRnZYaS6+6O8qaQ6dbH8/iLF1wyro=","crlite_enrolled":false,"id":"96d98717-9a96-4d73-b156-2eb909eb5054","last_modified":1601517443658},{"s
chema":1601376776932,"derHash":"BrlyKmmcV9/xhp9DC0ebtutJquEYTqycUyXBM0o06kw=","subject":"CN=SSL.com Root Certification Authority ECC,O=SSL Corporation,L=Houston,ST=Texas,C=US","subjectDN":"MHwxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTEwLwYDVQQDDChTU0wuY29tIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgRUND","whitelist":false,"attachment":{"hash":"3575f65e014fd8fa943566de2f3d7a42adc6b4e947cc86fb2028d533adc24ad9","size":1804,"filename":"oyD01TTXvpfBro3QSZc1vIlcMjrdLTiL_M9mLCPX-Zo=.pem","location":"security-state-staging/intermediates/34d6fd53-d5dd-4289-aa37-161e72f0a7e9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oyD01TTXvpfBro3QSZc1vIlcMjrdLTiL/M9mLCPX+Zo=","crlite_enrolled":false,"id":"3ecf65b2-97c8-4b50-a416-2032e8bdbdf7","last_modified":1601517443636},{"schema":1601376768352,"derHash":"LU+tNFWrYTl0Aau7UYki+EM2tn4C/I0tsoOCXEq5gbs=","subject":"CN=DigiCert Global Root G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN"
:"MGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcy","whitelist":false,"attachment":{"hash":"0558647c4eeecfb355382c6706854b426612a1444f25dc3adfb7d56079fcf28d","size":1748,"filename":"i7WTqTvh0OioIruIfFR4kMPnBqrS2rdiVPl_s2uC_CY=.pem","location":"security-state-staging/intermediates/0b9f9a42-27c0-4853-935f-4345030e4d62.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i7WTqTvh0OioIruIfFR4kMPnBqrS2rdiVPl/s2uC/CY=","crlite_enrolled":false,"id":"06d0c87d-d5a6-47ab-ad28-8767585b4426","last_modified":1601517443609},{"schema":1601376743527,"derHash":"J1JOMrshd8u/CnFveKcSQnFPyS8KRHEw2RZmxxangQc=","subject":"CN=Entrust Class 2 Client CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAx
MCBFbnRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDIgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"0dad756b753d0f88b83d8bc46c6d0a9066434d03ab6d72e1a0e9c0473e83eedd","size":1764,"filename":"JloS0qeSNdA_zDy0D24iKRwsIsmYt-GFR_0g8UIjlUE=.pem","location":"security-state-staging/intermediates/005152cc-aa3c-4406-b480-f4d2f2aef4e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JloS0qeSNdA/zDy0D24iKRwsIsmYt+GFR/0g8UIjlUE=","crlite_enrolled":false,"id":"d07ede68-44a2-4cf4-beb9-f363bd8d953e","last_modified":1601517443590},{"schema":1601376738088,"derHash":"umub+7+WmK+R60xpNGZBQYGgACrVKP8VSUbVhqpdlEU=","subject":"CN=GoGetSSL ECC EV CA,OU=Controlled by COMODO CA exclusively for GoGetSSL,O=GoGetSSL,L=Riga,C=LV","subjectDN":"MIGHMQswCQYDVQQGEwJMVjENMAsGA1UEBxMEUmlnYTERMA8GA1UEChMIR29HZXRTU0wxOTA3BgNVBAsTMENvbnRyb2xsZWQgYnkgQ09NT0RPIENBIGV4Y2x1c2l2ZWx5IGZvciBHb0dldFNTTDEbMBkGA1UEAxMSR29HZXRTU0wgRUNDIEVWIENB","whitelist":false,"attachment":{"hash":"9bbb40268769a0fb2d93f4ba28e2087
65ce02172266fd724354d40fe752d0187","size":1362,"filename":"og9uiCTdRwcFKbx11dQHwWx4x4btYdfYz4pKq5LpcoY=.pem","location":"security-state-staging/intermediates/13744076-d7ed-4f2f-b95b-985bbf7257dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"og9uiCTdRwcFKbx11dQHwWx4x4btYdfYz4pKq5LpcoY=","crlite_enrolled":false,"id":"073a888e-1813-4d8e-ba5d-23e7a79798b1","last_modified":1601517443573},{"schema":1601376734311,"derHash":"8Bwayjkogq8VLp8B7MzQr93YqjW/iVsAMZix6MdS3bg=","subject":"SERIALNUMBER=A82743287,CN=Global Chambersign Root - 2008,O=AC Camerfirma S.A.,L=Madrid (see current address at www.camerfirma.com/address),C=EU","subjectDN":"MIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwOA==","whitelist":false,"attachment":{"hash":"94f96c02a67a0946b9d781981a2662422e1f728a9316476f6561cd899b6e528d","size":
2584,"filename":"knobhWIoBXbQSMUDIa2kPYcD0tlSGhjCi4xGzGquTv0=.pem","location":"security-state-staging/intermediates/0cbd049c-06d3-49b2-aae6-c0bcd5fa210c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"knobhWIoBXbQSMUDIa2kPYcD0tlSGhjCi4xGzGquTv0=","crlite_enrolled":false,"id":"81e99069-a8ad-46a8-b96f-c0e2cc7a5494","last_modified":1601517443555},{"schema":1601376768762,"derHash":"bay7iUUTex2tQhGwQ2774G8SrONpBJc7Ra4ldAgj02k=","subject":"CN=DigiCert Global Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENB","whitelist":false,"attachment":{"hash":"1a8c56af27223d777da24bba93b743c15e633c42f9ab430fc69c48fe2ac69bbb","size":1577,"filename":"r_mIkG3eEpVdm-u_ko_cwxzOMo1bk4TyHIlByibiA5E=.pem","location":"security-state-staging/intermediates/038b81ab-4eff-4d41-90a4-8f4f86b72f6b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"r/mIkG3eEpVdm+
u/ko/cwxzOMo1bk4TyHIlByibiA5E=","crlite_enrolled":false,"id":"39be0c8a-1350-49d8-95ce-b5095d2d226d","last_modified":1601517443537},{"schema":1601376736414,"derHash":"6VY1gecSspDyOnSTRlNesNmB49SjnVbWBGhM0LFpjIk=","subject":"CN=TeliaSonera Root CA v1,O=TeliaSonera","subjectDN":"MDcxFDASBgNVBAoMC1RlbGlhU29uZXJhMR8wHQYDVQQDDBZUZWxpYVNvbmVyYSBSb290IENBIHYx","whitelist":false,"attachment":{"hash":"dff294c7a5bf61855f4bf4688f93273254185339ca8c7fa141f0597c90fb4a8d","size":1963,"filename":"ELo0hcqLtogKuVMaQGPkABVVVhx_LgVRZfSbLXT8X2s=.pem","location":"security-state-staging/intermediates/a4200fb3-9012-4d6e-8f39-3a0ac6b62bf3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ELo0hcqLtogKuVMaQGPkABVVVhx/LgVRZfSbLXT8X2s=","crlite_enrolled":false,"id":"a5d1352e-4a82-433c-870e-ad8c58fc9bbb","last_modified":1601517443520},{"schema":1601376749293,"derHash":"2lRiUmoMLphSqGGGsCU5AVh1nNymriHwn3E8pqzN0fE=","subject":"CN=QuoVadis Enterprise Trust CA 3 G3,O=QuoVadis Limited,C=BM","subjectDN":"MFQxCzAJ
BgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSowKAYDVQQDDCFRdW9WYWRpcyBFbnRlcnByaXNlIFRydXN0IENBIDMgRzM=","whitelist":false,"attachment":{"hash":"0b01ec78286d184607dd09e4cac9c4992d4af9f58534eb2cb8fea437481a6197","size":2333,"filename":"smsafMf1m1b-3NN_jssl3RMKHXok-GELWWNtG9vZEmA=.pem","location":"security-state-staging/intermediates/e3b263a6-dc7b-4bda-8acb-d8c10b677b2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"smsafMf1m1b+3NN/jssl3RMKHXok+GELWWNtG9vZEmA=","crlite_enrolled":false,"id":"b1c31974-0f71-4207-8532-82f8138e8ca8","last_modified":1601517443502},{"schema":1601376748042,"derHash":"wl8elgALw24qpc1UvyT0i3aJChYuGtjhBJkmUFEGJsI=","subject":"CN=TrustAsia DV SSL CA - C3,O=TrustAsia Technologies Inc.,C=CN","subjectDN":"MFYxCzAJBgNVBAYTAkNOMSQwIgYDVQQKDBtUcnVzdEFzaWEgVGVjaG5vbG9naWVzIEluYy4xITAfBgNVBAMMGFRydXN0QXNpYSBEViBTU0wgQ0EgLSBDMw==","whitelist":false,"attachment":{"hash":"8818c8f5c68801123839b3cc239cbd89d6750c3eebd094b7e193b8d4c008359f","size":1691,"filename":
"kZD1rAhydUcYx_iHiwQ-xsh92idc5Cryvs4-2MeQnpk=.pem","location":"security-state-staging/intermediates/30df4c61-9f07-4a43-9956-25742af9cddb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kZD1rAhydUcYx/iHiwQ+xsh92idc5Cryvs4+2MeQnpk=","crlite_enrolled":false,"id":"2e43a311-dc6c-4644-b4fd-dabaca2c1929","last_modified":1601517443484},{"schema":1601376725349,"derHash":"KGibMOTDBqq1OwJ7KeNq1t0dz0uVOZRILKhL3B7KyZY=","subject":"CN=Starfield Services Root Certificate Authority - G2,O=Starfield Technologies\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"f86af69b434af8ea5af1e027d56a7a38f6f22b387403ecb5009164accf5a6e79","size":1605,"filename":"KwccWaCgrnaw6tsrrSO61FgLacNgG2MMLq8GE6-oP5I=.pem","location":"security-state-staging/intermediate
s/901b5264-4d8d-44b2-9d34-a3510247f9db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KwccWaCgrnaw6tsrrSO61FgLacNgG2MMLq8GE6+oP5I=","crlite_enrolled":false,"id":"c0aa9228-9471-4d9a-a0df-1f91fd16b767","last_modified":1601517443467},{"schema":1601376729443,"derHash":"HparstZQK13OUY7AC1oeVDNJ79Lj9ovpq8ESiyVv7dc=","subject":"CN=GDCA TrustAUTH R4 SSL CA,O=GUANG DONG CERTIFICATE AUTHORITY CO.\\,LTD.,C=CN","subjectDN":"MGQxCzAJBgNVBAYTAkNOMTIwMAYDVQQKDClHVUFORyBET05HIENFUlRJRklDQVRFIEFVVEhPUklUWSBDTy4sTFRELjEhMB8GA1UEAwwYR0RDQSBUcnVzdEFVVEggUjQgU1NMIENB","whitelist":false,"attachment":{"hash":"0c153a0a3e193285fb42bc65ed86726b6ce20e989c5ce61bee6ac0249ccc9114","size":2052,"filename":"UNDNK48i2z9IOnLBTQP6yg9UerUnpfpb-nZvgw-0Who=.pem","location":"security-state-staging/intermediates/917af39e-808a-4852-8c1c-b2360829b69b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UNDNK48i2z9IOnLBTQP6yg9UerUnpfpb+nZvgw+0Who=","crlite_enrolled":false,"id":"056dcecf-b54d-4dca-bd31-f6fa1134a775
","last_modified":1601517443449},{"schema":1601376783927,"derHash":"5K8vrkEYfVjyCbAbHYdTwtzLP2Ac6GJz436HOMKlzLU=","subject":"CN=Oracle SSL CA - G2,OU=Symantec Trust Network,O=Oracle Corporation,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJPcmFjbGUgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxGzAZBgNVBAMTEk9yYWNsZSBTU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"e494e978931ad5d02f062cfb56e8f25cd10bc3632a24ccafb9f97d68508fdd32","size":1829,"filename":"AifQ_vsDlH7aQOdXumUDNTzAh2cI97-83a1FqoQss7M=.pem","location":"security-state-staging/intermediates/a3eac2bb-9bb3-446e-bfb6-c8d463e48cb6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AifQ/vsDlH7aQOdXumUDNTzAh2cI97+83a1FqoQss7M=","crlite_enrolled":false,"id":"d1739c52-6e71-43f0-a8c1-3fe9fa938594","last_modified":1601517443431},{"schema":1601376736833,"derHash":"uXF28htu1kYJJnstGiqfrwxN69RGRNyF62rphvyGfVY=","subject":"CN=SSL.com EV Root Certification Authority RSA R2,O=SSL Corporation,L=Houston,S
T=Texas,C=US","subjectDN":"MIGCMQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE3MDUGA1UEAwwuU1NMLmNvbSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQSBSMg==","whitelist":false,"attachment":{"hash":"26b0eb0f7d0c63890a8cb3bac26790139d109c65e18753a461b28633c51c86e3","size":2093,"filename":"fNZ8JI9p2D_C-bsB3LH3rWejY9BGBDeW0JhMOiMfa7A=.pem","location":"security-state-staging/intermediates/cbc009ee-d95a-4c1a-b665-8d351c2f25cd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fNZ8JI9p2D/C+bsB3LH3rWejY9BGBDeW0JhMOiMfa7A=","crlite_enrolled":false,"id":"7b426af5-c32a-4108-a18c-9f524b01f83a","last_modified":1601517443414},{"schema":1601376766712,"derHash":"F04d53yNk8aOzSvS6m4ZG1hNuFAneoNKrImLfICpHHA=","subject":"CN=QuoVadis Enterprise Trust CA 2 G3,O=QuoVadis Limited,C=BM","subjectDN":"MFQxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSowKAYDVQQDDCFRdW9WYWRpcyBFbnRlcnByaXNlIFRydXN0IENBIDIgRzM=","whitelist":false,"attachment":{"has
h":"d0caddb97c0bc5c29f2e4a3313e5fcde643b44351f7d21145f14294c7d1ca9eb","size":2333,"filename":"U_l9o-Lg2NOgB-7MLJUzZzbVrqatI_likIE44Ciah6M=.pem","location":"security-state-staging/intermediates/5219558a-ec4b-4733-86f9-13b9bf9c74ed.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U/l9o+Lg2NOgB+7MLJUzZzbVrqatI/likIE44Ciah6M=","crlite_enrolled":false,"id":"4faccf9d-b079-45fb-8618-5f3f864455de","last_modified":1601517443396},{"schema":1601376781071,"derHash":"RF7seLxhIVBEoDeWVqotXbXkL3bLcLjRTCB3qpQ9Trs=","subject":"CN=GlobalSign,OU=GlobalSign Root CA - R3,O=GlobalSign","subjectDN":"MEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFIzMRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu","whitelist":false,"attachment":{"hash":"03136ae4f1cc15165e71fa5ef33f14d451ac52630098f060194f365a61a44a74","size":1553,"filename":"cGuxAXyFXFkWm61cF4HPWX8S0srS9j0aSqN0k4AP-4A=.pem","location":"security-state-staging/intermediates/de87ee5e-fc90-47ae-a551-27f45867b68c.pem","mimetype":"application/x-pem
-file"},"pubKeyHash":"cGuxAXyFXFkWm61cF4HPWX8S0srS9j0aSqN0k4AP+4A=","crlite_enrolled":false,"id":"61380e8f-ba33-418f-b251-e9adeb0d421b","last_modified":1601517443361},{"schema":1601376723250,"derHash":"3ajac2GH129PDtWl9me1TZmpiuBgkdDjoBcU6SIWla0=","subject":"CN=GlobalSign,OU=GlobalSign Root CA - R6,O=GlobalSign","subjectDN":"MEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFI2MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu","whitelist":false,"attachment":{"hash":"b41c9b2e15c3c244c322fbf94a4a850c7938223b476b1126737bdf2e5eec446a","size":1890,"filename":"aCdH-LpiG4fN07wpXtXKvOciocDANj0daLOJKNJ4fx4=.pem","location":"security-state-staging/intermediates/4d8959af-58c7-4dbf-b787-864dac9fdf64.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aCdH+LpiG4fN07wpXtXKvOciocDANj0daLOJKNJ4fx4=","crlite_enrolled":false,"id":"ff319db3-4ac0-4406-9c29-03f632e42c98","last_modified":1601517443342},{"schema":1601376731061,"derHash":"GpkBn51BKmRFR0ntqo59xGZz1kTfPOFcxlVzXqDfhv4=","subject":"CN=th
awte EV SSL CA - G3,O=thawte\\, Inc.,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xHjAcBgNVBAMTFXRoYXd0ZSBFViBTU0wgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"1cf868355a40b245f6cc59c13c1382c34b4f199d60214e4df7096639b87717dc","size":1683,"filename":"L_6MoT_ohYSR0eSF5RZoAF17Gqj6vWJpWTK-FNgH0rM=.pem","location":"security-state-staging/intermediates/7544ec1b-5339-422e-9183-77c1d3ba8469.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"L/6MoT/ohYSR0eSF5RZoAF17Gqj6vWJpWTK+FNgH0rM=","crlite_enrolled":false,"id":"4f72d4f2-5538-4d6c-82f9-01320834b544","last_modified":1601517443324},{"schema":1601376750539,"derHash":"krty8V63XeRnyEtDgYEDS9rpoBbsJkNL7jybutjNivA=","subject":"CN=Symantec Web PKI ECC Root - G1,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEnMCUGA1UEAxMeU3ltYW50ZWMgV2ViIFBLSSBFQ0MgUm9vdCAtIEcx","whitelist":false,"a
ttachment":{"hash":"488787a086889d5ac385a1e96db2cc8bd76c1015d9c3c1003c0ad97b8bd7d46a","size":898,"filename":"iduNzFNKpwYZ3se_XV-hXcbUonlLw09QPa6AYUwpu4M=.pem","location":"security-state-staging/intermediates/413ec41f-5315-44a7-add5-99589e58480c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iduNzFNKpwYZ3se/XV+hXcbUonlLw09QPa6AYUwpu4M=","crlite_enrolled":false,"id":"d00abc39-e08a-44f1-84d7-b68ac1d5334f","last_modified":1601517443307},{"schema":1601376757868,"derHash":"uCIQzend6g4UvimvZH5LMvlu0qnvGqW6qcxks4tsAco=","subject":"OU=AC RAIZ FNMT-RCM,O=FNMT-RCM,C=ES","subjectDN":"MDsxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBGTk1ULVJDTQ==","whitelist":false,"attachment":{"hash":"dda828b4a97c8a8f24d378bef318af5d144be4d873ff73ba3f07303c1c298e49","size":1971,"filename":"L8VmekuaJnjtasatJUZfy_YJS_zZUECXx6j6R63l6Ig=.pem","location":"security-state-staging/intermediates/517b4707-ce8c-4711-b41b-f2251c5edd3d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"L
8VmekuaJnjtasatJUZfy/YJS/zZUECXx6j6R63l6Ig=","crlite_enrolled":false,"id":"a16f609b-1af0-4b48-90e8-2d6a182ca81f","last_modified":1601517443289},{"schema":1601376729034,"derHash":"VuT0VNmC3NzmEbe3B9sSxTPqwpol9KUwfhwGVxOw3I4=","subject":"CN=DigiCert TLS ICA Thawte PCA-G3,OU=www.digicert.com,O=DigiCert\\, Inc.,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEnMCUGA1UEAxMeRGlnaUNlcnQgVExTIElDQSBUaGF3dGUgUENBLUcz","whitelist":false,"attachment":{"hash":"8bae35c0e06cb5fb2398f3147505a1a2ea437352eb1117c66f7060548a248981","size":1735,"filename":"1kuMMhuDt5uIGZpznnoQhtlIwlmJ85sNYnH0jX_yBUA=.pem","location":"security-state-staging/intermediates/3cfa0bee-444c-4508-9234-5f45d449c7c3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1kuMMhuDt5uIGZpznnoQhtlIwlmJ85sNYnH0jX/yBUA=","crlite_enrolled":true,"id":"abdee471-bc7c-45ce-a24e-e12b11d63ef9","last_modified":1601517443271},{"schema":1601376749709,"derHash":"LnoKOwxSfrIMUiU8jSJ4yh
CBNqjKOk6iLae1m6yQZQo=","subject":"CN=Staat der Nederlanden Burger CA - G3,O=Staat der Nederlanden,C=NL","subjectDN":"MFwxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xLTArBgNVBAMMJFN0YWF0IGRlciBOZWRlcmxhbmRlbiBCdXJnZXIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"333baabfa08d3f556b2b77e6fbd81a7c8d6eeffc79185f35ee1b9940de7adb0b","size":2219,"filename":"Ddtmy6Pa-pijb1fgZHrEBrRujNwcH920-5ucOhHG4yU=.pem","location":"security-state-staging/intermediates/1bef5ac3-89f5-4d09-bc35-4146f932b183.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ddtmy6Pa+pijb1fgZHrEBrRujNwcH920+5ucOhHG4yU=","crlite_enrolled":false,"id":"19a63c15-3c2a-4f1b-a4bf-f07b30de7c65","last_modified":1601517443254},{"schema":1601376755045,"derHash":"5x2MO69D9rM1LfV0qfDUogZb8D2heVFLH8xdm+yMj80=","subject":"CN=Cybertrust Global Root,O=Cybertrust\\, Inc","subjectDN":"MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA==","whitelist":false,"attachment":{"hash":"1f26
2ade87c1ad2a96c3e27c26a783f6daabfe4db8d38fe377fa18eb20f05c8a","size":1674,"filename":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=.pem","location":"security-state-staging/intermediates/fbb7342f-2e0d-4f3b-8dc3-9f69e60e0638.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=","crlite_enrolled":false,"id":"5a0248e5-fd5a-426c-99c1-331ad9cd50b2","last_modified":1601517443236},{"schema":1601376747615,"derHash":"usTwPcY1va4Gf3v+d6sG2ItbpGaLD0YVflPWypMQB38=","subject":"CN=TrustSign RSA EV CA,OU=Controlled by Sectigo exclusively for Ziwit,O=Ziwit,L=Montpellier,ST=Herault,C=FR","subjectDN":"MIGZMQswCQYDVQQGEwJGUjEQMA4GA1UECBMHSGVyYXVsdDEUMBIGA1UEBxMLTW9udHBlbGxpZXIxDjAMBgNVBAoTBVppd2l0MTQwMgYDVQQLEytDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIFppd2l0MRwwGgYDVQQDExNUcnVzdFNpZ24gUlNBIEVWIENB","whitelist":false,"attachment":{"hash":"05a98cf5e38717d1c7e8544b531bdf4bfdf308c7625823a299e96ffed1c65683","size":2219,"filename":"8o6U66RqF4Lhi_AFVcFB
CBGggA7zxR6NC-m3h-ZT7LQ=.pem","location":"security-state-staging/intermediates/5183544d-1fa9-4601-9ea1-3b4454090cc0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8o6U66RqF4Lhi/AFVcFBCBGggA7zxR6NC+m3h+ZT7LQ=","crlite_enrolled":true,"id":"24008211-7aff-4f54-8d10-3ca632141e41","last_modified":1601517443218},{"schema":1601376732692,"derHash":"rUk9boXsYIq4E6iHvcTUGWoLybM9JWWn+orEMPCKmaU=","subject":"CN=Staat der Nederlanden Autonome Apparaten CA - G3,O=Staat der Nederlanden,C=NL","subjectDN":"MGgxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xOTA3BgNVBAMMMFN0YWF0IGRlciBOZWRlcmxhbmRlbiBBdXRvbm9tZSBBcHBhcmF0ZW4gQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"13422064a1f73d17cb471aba1692618580819b2905822f628fa9325f4b9e8af4","size":2235,"filename":"QWTrYSKIZOkhPgxgK-ugNhLAYPM-za6OF4Z2NVH_OxU=.pem","location":"security-state-staging/intermediates/f0af33f7-86d7-46b0-8317-bfb72df4322b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QWTrYSKIZOkhPgxgK+ugNhLAYP
M+za6OF4Z2NVH/OxU=","crlite_enrolled":false,"id":"2d565bb4-689f-41cd-a84f-c3529232d0d5","last_modified":1601517443201},{"schema":1601376771244,"derHash":"EjXhOBK5dSFwzpvTo7YOZqyMDLRPnMtcdoWJ/Z8nufQ=","subject":"CN=GoGetSSL ECC OV CA,O=GoGetSSL,L=Riga,C=LV","subjectDN":"MEwxCzAJBgNVBAYTAkxWMQ0wCwYDVQQHEwRSaWdhMREwDwYDVQQKEwhHb0dldFNTTDEbMBkGA1UEAxMSR29HZXRTU0wgRUNDIE9WIENB","whitelist":false,"attachment":{"hash":"a7a310387416fb0d0327af048190b506d023a1f7b0790692246276e1948d468a","size":1244,"filename":"PrR6EH8Bm2wimAptoITpdhgeQfnUp4ASjI8FRS-Bq7E=.pem","location":"security-state-staging/intermediates/bc6d1c2b-c19f-42de-b2ec-11a97b643751.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PrR6EH8Bm2wimAptoITpdhgeQfnUp4ASjI8FRS+Bq7E=","crlite_enrolled":true,"id":"0bc47da0-e7f9-4d90-abc8-4a6d3f0c15c7","last_modified":1601517443179},{"schema":1601376763724,"derHash":"d+rEdkU8tzIlf/FmpevRZWyx9nO2jijfQXdBM5efoqQ=","subject":"CN=SHECA OV Secure Server CA,O=Shanghai Electronic Certificate
Authority Center Co.\\, Ltd.,L=Shanghai,ST=Shanghai,C=CN","subjectDN":"MIGcMQswCQYDVQQGEwJDTjFDMEEGA1UEChM6U2hhbmdoYWkgRWxlY3Ryb25pYyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgQ2VudGVyIENvLiwgTHRkLjERMA8GA1UEBxMIU2hhbmdoYWkxETAPBgNVBAgTCFNoYW5naGFpMSIwIAYDVQQDExlTSEVDQSBPViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"af175c34733f44cc96e00555374654c4f4d467bef0feb67039c31a3cd7232ef9","size":1886,"filename":"GvyQK0TA2Qh-B1rvOMI28XPmBiJD59lQrwz_N-iQO_U=.pem","location":"security-state-staging/intermediates/9b757196-34e5-4a3c-b276-4df8ae32ee65.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GvyQK0TA2Qh+B1rvOMI28XPmBiJD59lQrwz/N+iQO/U=","crlite_enrolled":true,"id":"2f77cfd2-2ffb-4909-8714-3629bde7ad50","last_modified":1601517443152},{"schema":1601376770407,"derHash":"WaNFbnUOMl/LE1ncKegoGJtJgsEZxk+s/WcocRswUy8=","subject":"CN=www.lh.pl,OU=LH.pl,O=LH.pl Sp. z o.o.,C=PL","subjectDN":"MEwxCzAJBgNVBAYTAlBMMRkwFwYDVQQKDBBMSC5wbCBTcC4geiBvLm8uMQ4wDAYDVQQLDAVMSC5wbDESMBAGA1UEAwwJd3
d3LmxoLnBs","whitelist":false,"attachment":{"hash":"402828757f41d8cffb0ca05dbda29cf243d74ac40d69868042f3c4704cefe6be","size":1589,"filename":"SPflJTPfbRg6NWYkxrOaqWFjkUz6d6fxe8POctPyEFo=.pem","location":"security-state-staging/intermediates/9852f8f4-698c-4682-be77-b302a242b445.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SPflJTPfbRg6NWYkxrOaqWFjkUz6d6fxe8POctPyEFo=","crlite_enrolled":true,"id":"88fae53f-9c98-4491-98fc-5382066d04ba","last_modified":1601517443133},{"schema":1601376764928,"derHash":"RKFX2TSIYKfUznyS4aOJ5MwMpZZ/nbu9EmY5+bmARrc=","subject":"CN=ePKI Root Certification Authority - G2,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MGMxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEvMC0GA1UEAwwmZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"a954c72f600501a139cda333d4ad599c7d80d5c9a2f820e99b478ea81e4bd705","size":2564,"filename":"tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=.pem","location":"secur
ity-state-staging/intermediates/9b8b9500-5c8a-4fff-839f-ec8c5225007c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=","crlite_enrolled":false,"id":"d45a382a-27a0-4770-bd46-caa195365dc3","last_modified":1601517443115},{"schema":1601376758715,"derHash":"ZLNULRvJcvWKHRefPQuWUr5DTzrjhC4MRHiA1NYjpN4=","subject":"CN=Cybertrust Global Root,O=Cybertrust\\, Inc","subjectDN":"MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA==","whitelist":false,"attachment":{"hash":"47de0a95895055ce31d99d828b0db0f2ec2817ccee0b1699eac0fc8b4c0d7a15","size":1715,"filename":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=.pem","location":"security-state-staging/intermediates/b0359886-f578-4ff8-b6f6-68c9c49ac966.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=","crlite_enrolled":false,"id":"565f7b1a-68fa-497d-9c56-e9cd5a86b74e","last_modified":1601517443097},{"schema":160137671831
2,"derHash":"y/j7d2YBZ+a6rNDfd82jl9ARfuK+6iO5NTF/i7W147A=","subject":"CN=DigiCert High Assurance EV Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNVBAMTIkRpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEVWIFJvb3QgQ0E=","whitelist":false,"attachment":{"hash":"382e8d24a379c01750353f084bffee84b45ad51b937a3bc8fdb300cd978bbeac","size":1593,"filename":"WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=.pem","location":"security-state-staging/intermediates/007ae41e-e2a4-4671-8841-b6c69a70cb76.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=","crlite_enrolled":false,"id":"c21f9364-fa90-4173-bcc3-ae3c385c1bb5","last_modified":1601517443080},{"schema":1601376737682,"derHash":"qtrdWoedLrjEGolZcpEpJwnUIFL1tjmVQcaUw7c1PNE=","subject":"CN=DigiCert Global Root G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2Vyd
CBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcy","whitelist":false,"attachment":{"hash":"136d10cac076bac0accd9db250939ff676ec4c68b25d282e902afbdd7c69c034","size":1748,"filename":"i7WTqTvh0OioIruIfFR4kMPnBqrS2rdiVPl_s2uC_CY=.pem","location":"security-state-staging/intermediates/9e4f7a6a-f1d9-42ef-bd0b-185c9c60d805.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i7WTqTvh0OioIruIfFR4kMPnBqrS2rdiVPl/s2uC/CY=","crlite_enrolled":false,"id":"2bb1ad45-bcec-4adb-b3ed-edb4f01d5b68","last_modified":1601517443045},{"schema":1601376778540,"derHash":"yU/t2k6GCJCFgLx/h7Q04DuyYuQvZMY4IKj1D7F8HOw=","subject":"CN=GlobalSign,OU=GlobalSign Root CA - R3,O=GlobalSign","subjectDN":"MEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFIzMRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu","whitelist":false,"attachment":{"hash":"46ad75ae4d4b3ea866008e00969c44fcf11c5283b34097a140d1ce9577c0080a","size":1548,"filename":"cGuxAXyFXFkWm61cF4HPWX8S0srS9j0aSqN0k4AP-4A=.
pem","location":"security-state-staging/intermediates/ee510c0b-d1d8-40ba-bcca-1982d73cd1cb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cGuxAXyFXFkWm61cF4HPWX8S0srS9j0aSqN0k4AP+4A=","crlite_enrolled":false,"id":"fa4a1c02-26b3-4bf5-8034-bb4cabca2a73","last_modified":1601517443010},{"schema":1601376724096,"derHash":"TKCAJjzkvCTxgRzvP/rKWl7zmPk+vQxbz1t70LrmfUo=","subject":"CN=BitCert RSA Business Secure Site CA,O=BitCert,L=Chengdu,ST=Sichuan,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMRAwDgYDVQQIEwdTaWNodWFuMRAwDgYDVQQHEwdDaGVuZ2R1MRAwDgYDVQQKEwdCaXRDZXJ0MSwwKgYDVQQDEyNCaXRDZXJ0IFJTQSBCdXNpbmVzcyBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"a40bf8b9f7a6cc399211e086cb3d8144ff7e721b1e16e5646fdc299974c39bc5","size":2133,"filename":"cz-x3ySlDQ6TKlRCvrhCFabpnRLASgrkOqGv8wQxW6A=.pem","location":"security-state-staging/intermediates/846ca5bb-c701-4333-a9a7-808ec99af5f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cz+x3ySlDQ6TKlRCvrhCFabpnRLASgrkOqGv8wQxW6A=
","crlite_enrolled":true,"id":"c8d11d03-f57b-43e8-9309-17aa68d467a5","last_modified":1601517442992},{"schema":1601376762009,"derHash":"qNFOlF4+UVa8rl45c3z2obH1ECi7v5gvUM5fTAVWi00=","subject":"CN=Belgium Root CA3,C=BE","subjectDN":"MCgxCzAJBgNVBAYTAkJFMRkwFwYDVQQDExBCZWxnaXVtIFJvb3QgQ0Ez","whitelist":false,"attachment":{"hash":"27c08a789500d6de5e3c63a5f87e09d913bc798b43f41a68cb3e106a86c3feeb","size":1987,"filename":"x7xeSTcmu_Ux9i_F9VE6wD6tgTr03NRFszBbo9PVM3Q=.pem","location":"security-state-staging/intermediates/5c7c8389-3909-40c6-b8fe-11b4a28455ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x7xeSTcmu/Ux9i/F9VE6wD6tgTr03NRFszBbo9PVM3Q=","crlite_enrolled":false,"id":"c7e38a24-aefc-45fe-a666-c74ab61c8f39","last_modified":1601517442975},{"schema":1601376750124,"derHash":"raGI+DDDE/YEZIjsNB8e1K95PG3CjFhgBEXfvrQWN0Y=","subject":"CN=Thawte CN RSA EV CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3d
y5kaWdpY2VydC5jb20xHzAdBgNVBAMTFlRoYXd0ZSBDTiBSU0EgRVYgQ0EgRzE=","whitelist":false,"attachment":{"hash":"2e25caf70d87ee67fe15801e44af860291aeeb44a7970edffe70210cf856c3ba","size":1678,"filename":"Hn_AvJkahgLnROxUs8e4tPKOI2wS-n9H5P_jk0Cf2T4=.pem","location":"security-state-staging/intermediates/e792a27d-66e1-40ac-a2be-d23b05217ef8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Hn/AvJkahgLnROxUs8e4tPKOI2wS+n9H5P/jk0Cf2T4=","crlite_enrolled":false,"id":"2eabd45c-f82e-46d9-84d2-60e3b784ff6f","last_modified":1601517442957},{"schema":1601376781920,"derHash":"JJBRRb2bm/6ZxgNUtJlRvg5wnxY0z70ONw/rnwaO1sM=","subject":"CN=Cybertrust Global Root,O=Cybertrust\\, Inc","subjectDN":"MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA==","whitelist":false,"attachment":{"hash":"14cdeb20754749b93fa91fc1e30b4e9dfedfb7f4d7022c381688a63321e757cd","size":1674,"filename":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=.pem","location":"security-state-staging/intermediate
s/d469a3f0-cf37-44b9-a3bf-95ac5492cd92.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=","crlite_enrolled":false,"id":"fc237743-155a-442f-b754-e8fba2257bfe","last_modified":1601517442922},{"schema":1601376757069,"derHash":"cDV7nlbT+zxsAJw4xxgUVMRikI37zm1U1g3+HlBuFP0=","subject":"CN=TrustAsia ECC OV TLS Pro CA G2,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MF0xCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMScwJQYDVQQDEx5UcnVzdEFzaWEgRUNDIE9WIFRMUyBQcm8gQ0EgRzI=","whitelist":false,"attachment":{"hash":"eef7786b39056fba3e747973ce4532b06a0cd3dc1326554703821b55ecdd5eff","size":1406,"filename":"zQ_SLNg_h_U_OTLMb3XQLYnyHZ7Y7Hk6_xyTVTSQekc=.pem","location":"security-state-staging/intermediates/48fd3053-a283-46d0-99e4-f89312258dce.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zQ/SLNg/h/U/OTLMb3XQLYnyHZ7Y7Hk6/xyTVTSQekc=","crlite_enrolled":false,"id":"24ff0be6-616b-4ad5-8017-005dbb310bf7","last_modifie
d":1601517442905},{"schema":1601376762852,"derHash":"aLnHYSGaWx8BMXhEdGZdthu9sQngDwXKn3QkTuX19Ss=","subject":"CN=USERTrust RSA Certification Authority,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazEuMCwGA1UEAxMlVVNFUlRydXN0IFJTQSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"9e2ebbe76bfd34d023064438681d83355a539b5267b279ebe8789bff5deae232","size":1967,"filename":"x4QzPSC810K5_cMjb05Qm4k3Bw5zBn4lTdO_nEW_Td4=.pem","location":"security-state-staging/intermediates/4357dc68-fa1b-4e2f-83fd-69a438b26167.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x4QzPSC810K5/cMjb05Qm4k3Bw5zBn4lTdO/nEW/Td4=","crlite_enrolled":false,"id":"637da9fa-bc0c-4f4b-becc-9710f0181efd","last_modified":1601517442888},{"schema":1601376741469,"derHash":"hQSgNQA2sYWUsfR7ajvTUT4osEW8fb/lsI2PMEnNPP4=","subject":"CN=Entrust Class 2 Client
CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAxMCBFbnRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDIgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"22a1ae9da8ba7c77870bcf18a45bd22acc40f753e2f6febbfb77c1140ac63f95","size":1764,"filename":"JloS0qeSNdA_zDy0D24iKRwsIsmYt-GFR_0g8UIjlUE=.pem","location":"security-state-staging/intermediates/b046d24e-cefe-4131-8cfa-17dc7fa261e6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JloS0qeSNdA/zDy0D24iKRwsIsmYt+GFR/0g8UIjlUE=","crlite_enrolled":false,"id":"c37666f8-318b-4ea3-9931-8bf0653657d1","last_modified":1601517442870},{"schema":1601376764522,"derHash":"ie/rJQlrpMzUCvT7h1bwpIQ5lZdIIgIJFMToWdkyt/M=","subject":"CN=SSL.com EV Root Certification Authority RSA R2,O=SSL Corporation,L=Houston,ST=Texas,C=US"
,"subjectDN":"MIGCMQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE3MDUGA1UEAwwuU1NMLmNvbSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQSBSMg==","whitelist":false,"attachment":{"hash":"c7680e4e47bb04f8515b20fc6fe36741515835bace47ef132f02922b0ea612ea","size":2113,"filename":"fNZ8JI9p2D_C-bsB3LH3rWejY9BGBDeW0JhMOiMfa7A=.pem","location":"security-state-staging/intermediates/a586bb32-1766-40e6-bdd8-ba5e8bf95066.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fNZ8JI9p2D/C+bsB3LH3rWejY9BGBDeW0JhMOiMfa7A=","crlite_enrolled":false,"id":"2dea51d4-7fea-4eb2-a507-7fa4ef9b5e26","last_modified":1601517442852},{"schema":1601376724524,"derHash":"yE4TeLl0qZGs3N1zNCHjBh5vohoEkciQK6/eOFXgBj4=","subject":"CN=GlobalSign,OU=GlobalSign Root CA - R6,O=GlobalSign","subjectDN":"MEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFI2MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu","whitelist":false,"attachment":{"hash":"bc273edde0aa009fa42437892356
5ab23426f40d786f1f743e2a80d94c8514a4","size":1902,"filename":"aCdH-LpiG4fN07wpXtXKvOciocDANj0daLOJKNJ4fx4=.pem","location":"security-state-staging/intermediates/cd783c76-a2d3-49bb-8aaf-dd09ffcf625c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aCdH+LpiG4fN07wpXtXKvOciocDANj0daLOJKNJ4fx4=","crlite_enrolled":false,"id":"8feb1032-85fe-4d8c-b444-3c69d47c6f6d","last_modified":1601517442835},{"schema":1601376771681,"derHash":"VgCvtrriqDtmucu+nO7I9T4mQgppk5pI3MbVa5l5CmM=","subject":"CN=GDCA TrustAUTH R4 OV SSL CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MG4xCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJDAiBgNVBAMMG0dEQ0EgVHJ1c3RBVVRIIFI0IE9WIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"9212a9d7e5c2bfcfbf43aaf53d8aa2e3501f467ef547dee098ab48f5d850d6ad","size":2052,"filename":"UNDNK48i2z9IOnLBTQP6yg9UerUnpfpb-nZvgw-0Who=.pem","location":"security-state-staging/intermediates/4aa91fab-6b52-44a6-a
3c1-ef65ee1e7d8f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UNDNK48i2z9IOnLBTQP6yg9UerUnpfpb+nZvgw+0Who=","crlite_enrolled":false,"id":"a463b3f5-089a-40a1-ac08-8bb23ab16b4c","last_modified":1601517442818},{"schema":1601376773694,"derHash":"idqttBummLs3iu6E6slhIdIPjC/KY+xobZMHIprT6y4=","subject":"CN=DigiCert High Assurance EV Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNVBAMTIkRpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEVWIFJvb3QgQ0E=","whitelist":false,"attachment":{"hash":"040d9900f833e268067238f80552cbc76f9b4e228c4b60e714c5fae8f85e3ff4","size":1743,"filename":"WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=.pem","location":"security-state-staging/intermediates/95a26b1c-0192-4ed1-be8b-87bc4f2afbe7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=","crlite_enrolled":false,"id":"587ff666-b7af-4e54-b57e-854a5cbd3919","last_mod
ified":1601517442800},{"schema":1601376738506,"derHash":"n2HQl2jaM/f5n35+rZNZAiJJQ7TJrQe2KfdFwLCEdbc=","subject":"CN=Cybertrust Global Root,O=Cybertrust\\, Inc","subjectDN":"MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA==","whitelist":false,"attachment":{"hash":"d77ee7751b6c931314693fd1c86891d4a8d25831eb4080427adfd11d77e84924","size":1715,"filename":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=.pem","location":"security-state-staging/intermediates/aa0a44b0-c3d8-459e-a78d-df26e5aa1492.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=","crlite_enrolled":false,"id":"49fc0d95-3476-4729-bcc9-6946f161d1ed","last_modified":1601517442783},{"schema":1601376765799,"derHash":"2Wy8A7UjzTMVkYZRz0hiFiiH3VY6+yNS0/NLuUV2+T0=","subject":"CN=Verizon Global Root CA,OU=OmniRoot,O=Verizon Business,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRkwFwYDVQQKDBBWZXJpem9uIEJ1c2luZXNzMREwDwYDVQQLDAhPbW5pUm9vdDEfMB0GA1UEAwwWVmVyaX
pvbiBHbG9iYWwgUm9vdCBDQQ==","whitelist":false,"attachment":{"hash":"522a9129b746a60c4aa7d040da0f639b8349b1fee088f3f0ecf8b8101c7e452a","size":1760,"filename":"v-gpCYcuRDTxFcUaVhaAGVlNDgPco2PZ87SDnQurzeU=.pem","location":"security-state-staging/intermediates/98a3c55c-3f5d-4937-9389-3ca882ba85cf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"v+gpCYcuRDTxFcUaVhaAGVlNDgPco2PZ87SDnQurzeU=","crlite_enrolled":false,"id":"62b74836-05bd-4881-9d60-b255969ce226","last_modified":1601517442759},{"schema":1601376780668,"derHash":"gCRH7lIcxmbNt7uuk6OF5V8gDXaj0TVqhURaxMvb7RI=","subject":"CN=Cybertrust Global Root,O=Cybertrust\\, Inc","subjectDN":"MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA==","whitelist":false,"attachment":{"hash":"0311ba514ea52c161164a44190d3ff8d3f21d7e178936261c9f0f3b873c30bc0","size":1317,"filename":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=.pem","location":"security-state-staging/intermediates/3b96ff08-978c-47b1-9a08-f7894f3bb80
1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=","crlite_enrolled":false,"id":"cabdabb7-b6b6-4aac-8c2a-c5931f2fc460","last_modified":1601517442729},{"schema":1601376738922,"derHash":"LRK2GaZgzvsBMnGDHYkSE/xDTpgqIVaCVs9OLoYyS+o=","subject":"CN=Starfield Services Root Certificate Authority - G2,O=Starfield Technologies\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"4c84e52a6f32fdac5b7a09a6c9cd30af89415d99ee94c615e420b34e67cffcb0","size":1605,"filename":"KwccWaCgrnaw6tsrrSO61FgLacNgG2MMLq8GE6-oP5I=.pem","location":"security-state-staging/intermediates/70be3983-3e8b-4df2-b609-e35f19408bbc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KwccWaCgrnaw6tsrrSO61FgLacNgG2MMLq8GE6+o
P5I=","crlite_enrolled":false,"id":"f9243f28-e9ff-47ba-ae4a-e2657cce028c","last_modified":1601517442703},{"schema":1601376763286,"derHash":"0QjDSljA5KYWRJ+MSDGAI6IpyGzT3dXV/mBBpAHBahQ=","subject":"OU=ePKI Root Certification Authority,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MF4xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"15e5931fc9e514bb8bf23b5f5c3c40bb3131ccf6ed8b0857416342b002b8db15","size":2645,"filename":"YlVMFwBVQ7I3IV8EJo3NL9HEcCQK08hmDiWuLFljD1U=.pem","location":"security-state-staging/intermediates/a894f5a2-8e74-4828-97c6-41052369ca59.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YlVMFwBVQ7I3IV8EJo3NL9HEcCQK08hmDiWuLFljD1U=","crlite_enrolled":false,"id":"056b1bcf-53e9-405c-96eb-eea77dcff395","last_modified":1601517442680},{"schema":1601376720383,"derHash":"BxuLSxOteyvgn91/vfNIJGCDgJjCFRm4OzFQ+OkZgy0=","subject":"CN=DigiCert High Assuran
ce EV Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNVBAMTIkRpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEVWIFJvb3QgQ0E=","whitelist":false,"attachment":{"hash":"aaca8a07803242bef149ceadff6a9f44dbefb42c36b2589988a8a242b9fd78a3","size":1622,"filename":"WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=.pem","location":"security-state-staging/intermediates/09507c13-a7e2-48de-8c37-88554ebc941e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=","crlite_enrolled":false,"id":"61372f59-c5ce-4c32-958a-7ee04c1dc8bb","last_modified":1601517442652},{"schema":1601376780263,"derHash":"GEZ8TmTVhshEpERm3lunptWWnHqShZpRHF/a11sDzc4=","subject":"CN=ePKI Root Certification Authority - G2,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MGMxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEvMC0GA1UEAwwmZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5
IC0gRzI=","whitelist":false,"attachment":{"hash":"6bf1025a0f2a333a3a9f9cf1fa26d326f099cad7c0d6658f30ea16733092bd7a","size":2621,"filename":"tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=.pem","location":"security-state-staging/intermediates/c7b2feb5-da29-4802-ba1d-e34f9184099c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=","crlite_enrolled":false,"id":"ca26521c-22ff-48b3-bd4d-3c06d4ffa75a","last_modified":1601517442632},{"schema":1601376767919,"derHash":"ps9k27TI1f0ZzkiJYGjbA7UzqNEzbGJWqH0Ay7Pe8+o=","subject":"CN=USERTrust ECC Certification Authority,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazEuMCwGA1UEAxMlVVNFUlRydXN0IEVDQyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"3a7503777199e5b45661530654f7276cd82134eaa1ba8f391bb243e5a7a8bf47","size":1386,"filenam
e":"ICGRfpgmOUXIWcQ_HXPLQTkFPEFPoDyjvH7ohhQpjzs=.pem","location":"security-state-staging/intermediates/8b43a741-845c-4f0d-9cb8-04371ae9c724.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ICGRfpgmOUXIWcQ/HXPLQTkFPEFPoDyjvH7ohhQpjzs=","crlite_enrolled":false,"id":"256c0067-d90e-4625-aa2a-4223c14c4995","last_modified":1601517442614},{"schema":1601376752583,"derHash":"n5dERjvhNxR1Tho77PmMCMwgXkqzICj04oMMShsndbg=","subject":"CN=Belgium Root CA2,C=BE","subjectDN":"MCgxCzAJBgNVBAYTAkJFMRkwFwYDVQQDExBCZWxnaXVtIFJvb3QgQ0Ey","whitelist":false,"attachment":{"hash":"6b1177b9cf6d097674388a839e23ad9fe6462ab73ca6a823af4fa3a196083069","size":1293,"filename":"-OX5BbyTmREme4PVCBSpAyO1Hhg2KdtS1PwtVGilpXg=.pem","location":"security-state-staging/intermediates/68bf58ba-15f5-4acc-982f-48b8b2e021fb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+OX5BbyTmREme4PVCBSpAyO1Hhg2KdtS1PwtVGilpXg=","crlite_enrolled":false,"id":"6f19a71d-8c52-477f-9ad5-ef93aab07c08","last_modified":1601517442593},
{"schema":1601376772083,"derHash":"Hd/d+IPjlFsssk+luDeIN5xasFhCKrl532bHdHOYhoc=","subject":"CN=Aetna Inc. Secure EV CA2,O=Aetna Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZXRuYSBJbmMxITAfBgNVBAMTGEFldG5hIEluYy4gU2VjdXJlIEVWIENBMg==","whitelist":false,"attachment":{"hash":"e6068e6a00cb2a48657b0008e9ab5e6e47917580dc4400c9d7210b278ef98854","size":1626,"filename":"u6NyIqjq8NgZ5VkAyKFRk6mJ-QeTmwgG2SNmXrkK7vE=.pem","location":"security-state-staging/intermediates/0a4750b1-d9fb-4d20-8e86-0a6d40d82ece.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"u6NyIqjq8NgZ5VkAyKFRk6mJ+QeTmwgG2SNmXrkK7vE=","crlite_enrolled":true,"id":"d84be73b-937b-4c91-b80e-a6cd1de6e276","last_modified":1601517442569},{"schema":1601376726961,"derHash":"OrvmPa91bFAWtrhfUgFf2Oisvid8UIexJ6YFY6hB7Yo=","subject":"CN=Cloudflare Inc ECC CA-3,O=Cloudflare\\, Inc.,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBDbG91ZGZsYXJlLCBJbmMuMSAwHgYDVQQDExdDbG91ZGZsYXJlIEluYyBFQ0MgQ0EtMw==","whitelist":false
,"attachment":{"hash":"aae889b11427ea641ba5e6fa121be2cea21baf4f6c6e3a4a24696fb45f974223","size":1378,"filename":"FEzVOUp4dF3gI0ZVPRJhFbSJVXR-uQmMH65xhs1glH4=.pem","location":"security-state-staging/intermediates/27a31a42-feae-47ff-8d4e-647a896f9508.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FEzVOUp4dF3gI0ZVPRJhFbSJVXR+uQmMH65xhs1glH4=","crlite_enrolled":true,"id":"de14e899-d269-4989-b43a-525c56a62193","last_modified":1601517442545},{"schema":1601376751778,"derHash":"nHgvawVYrcscye+EUyDRRZLJIg/PADDAmA2ddTsGYk8=","subject":"CN=International Hellenic University TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGDMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTE7MDkGA1UEAwwySW50ZXJuYXRpb25hbCBIZWxsZW5pYyBVbml2ZXJzaXR5IFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"3b0bf8066566b2050bb810100d606b335370d03d1252c58e445985c84ba0a8df","size":2954,"filename":"i3AYNFBcJ3BXrQRfRHmas7
YdtYYMFl9BDRWLHPQMDXo=.pem","location":"security-state-staging/intermediates/6d2a3494-4259-4df1-9701-4a86ccae3824.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i3AYNFBcJ3BXrQRfRHmas7YdtYYMFl9BDRWLHPQMDXo=","crlite_enrolled":true,"id":"dcc6fefb-dd5a-48f0-8fbf-f8c7a8ac06c0","last_modified":1601517442525},{"schema":1601376783522,"derHash":"MHiREhT4haTna0lROE9TIsM8ob88aIrPA0f0M6bna4s=","subject":"SERIALNUMBER=201604,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDQ=","whitelist":false,"attachment":{"hash":"5a2eb7557029c21a2d0310c86e2ae8eae55e2e98cbf96fd1eb53a71127e8eddf","size":2093,"filename":"4Seg4lVqXNpRcFpI-CnyaEL9ZiJxhk3QwyO0AUdDDGo=.pem","location":"security-state-staging/intermediates/705294e3-5b5c-4fee-bb7f-2e84dfea46f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4Seg4lVqXNpRcFpI+CnyaEL9ZiJxhk3QwyO0AUdDDGo=","crlite_enrolled":false,"id":"0911d5fd-fce5-4da1-a223-d8a576f29a50","last_modified":160151744250
7},{"schema":1601376762446,"derHash":"wKV48hCeb0LT2TmUje6rcpsg97I7Qjer2ElN9VTPmFw=","subject":"CN=emSign ECC EV SSL CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEiMCAGA1UEAxMZZW1TaWduIEVDQyBFViBTU0wgQ0EgLSBDMw==","whitelist":false,"attachment":{"hash":"853ba62a0ec592eb9c2ee33d281011227250af71cdcbf9b0e894d233249115ca","size":1138,"filename":"UEYlLVSYKuv5nRGqAxngK1P6jpyy3oyLZGnFpQIPQFk=.pem","location":"security-state-staging/intermediates/81418df8-ee8d-48b2-804c-11c4866e8e31.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UEYlLVSYKuv5nRGqAxngK1P6jpyy3oyLZGnFpQIPQFk=","crlite_enrolled":true,"id":"b968e489-d60c-472f-8f60-2e7fcd90e869","last_modified":1601517442490},{"schema":1601376772898,"derHash":"30vyBMyAZ3PtfRBa9IgwZqsmrcIpI5HJjnnXENGbT2c=","subject":"SERIALNUMBER=201409,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDk=","whitelist"
:false,"attachment":{"hash":"fb73c5f85843cf6be0d3dc997db1b00003baf1f7b523e507ab38c78a333f0449","size":2093,"filename":"2BoYdyaSF9u3Rypv_R3GF6bqtEh-S4UwMsMm_WkvQLU=.pem","location":"security-state-staging/intermediates/5b0bc508-a430-449a-a37a-7b1bc3209fc3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2BoYdyaSF9u3Rypv/R3GF6bqtEh+S4UwMsMm/WkvQLU=","crlite_enrolled":false,"id":"a23d52c7-7936-41be-8f46-9e9ca4464caa","last_modified":1601517442472},{"schema":1601376718715,"derHash":"DnpJwCo8FPnGvBbDgYBHXCOzPV6xp50OjHhUK8GxD0I=","subject":"SERIALNUMBER=201702,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwMg==","whitelist":false,"attachment":{"hash":"0837b1571241ef7e3c08a48093f8379ebfaf41141ba72b772e9ec14261bd34c6","size":2154,"filename":"H5gPRidS80eiZb-FQHKd8rMNDdv3rm1Hm6AIX7qvyAo=.pem","location":"security-state-staging/intermediat
es/64a9cc69-47c4-483d-98c5-99e00158e56a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H5gPRidS80eiZb+FQHKd8rMNDdv3rm1Hm6AIX7qvyAo=","crlite_enrolled":false,"id":"e82dfd35-d2d7-4663-a2a3-40a07ad942ce","last_modified":1601517442454},{"schema":1601376758315,"derHash":"2df9kLkOwYhr3PZVGVWc1V7sP6qJstQbeVxOpLl2A14=","subject":"SERIALNUMBER=201607,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDc=","whitelist":false,"attachment":{"hash":"acacd408aa018f6c76af5f4a18d599c644b9f2353cc079074462f31ff777ec42","size":2093,"filename":"pRg9cPl95zPK0qA68ddGKi1dmweMxXLMBYHiTX7n4J0=.pem","location":"security-state-staging/intermediates/cbebd73e-a2be-4ca9-a531-bcc305c4ded0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pRg9cPl95zPK0qA68ddGKi1dmweMxXLMBYHiTX7n4J0=","crlite_enrolled":false,"id":"41592bd5-4e42-443c-a3aa-aeb0ed864faf","last_modified":1601517442430},{"schema":1601376726155,"derHash":"vWKNNkRXh8p3Y3Sp/iUxdo9oiGory9001ze
wcCgONOY=","subject":"SERIALNUMBER=201503,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDM=","whitelist":false,"attachment":{"hash":"220be85a912b82c555c282848b582b9dccd3f786353662d697b99074d3e0b874","size":2093,"filename":"fcwvxBR_7dywvrrGWH54w2I5o2MWZNZJurHDsiPXY1w=.pem","location":"security-state-staging/intermediates/1edb624f-4dfa-4eee-ba74-aa6a7155be76.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fcwvxBR/7dywvrrGWH54w2I5o2MWZNZJurHDsiPXY1w=","crlite_enrolled":false,"id":"f4f52d98-123a-46df-aeb4-6bfb8e484b5d","last_modified":1601517442391},{"schema":1601376779391,"derHash":"ReTBVe5IzKO/un0ggVB9lyAY6CKrqe3TREzAHdxMNCk=","subject":"SERIALNUMBER=201606,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDY=","whitelist":false,"attachment":{"hash":"0b8d76856fea354ea3c15ce6b88596f1684f7b7387bc2ef5bed74a1eed5eba50","size":2093,"filename":"QGnVUqqcNoQM84XsWCS5GovEHtb29uve
McAlBBZfXVY=.pem","location":"security-state-staging/intermediates/7c1bc0de-34b5-4fd5-946f-1da949e8371d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QGnVUqqcNoQM84XsWCS5GovEHtb29uveMcAlBBZfXVY=","crlite_enrolled":false,"id":"3dcf2d07-f7f6-450b-a888-b59d9c81fd99","last_modified":1601517442372},{"schema":1601376721639,"derHash":"oryx6FI/uyO5onevoLZ9ouYemti6wbkmpzOhrgfGfN4=","subject":"SERIALNUMBER=201404,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDQ=","whitelist":false,"attachment":{"hash":"85b83278cf6fd8d7e7662c4b50b777a2eee40d98edd6ea3566189611dc182e4f","size":2093,"filename":"59ldQ4_B5SEeeY5yyNfRUTT2h15K2xW1KqgBu6OoBU8=.pem","location":"security-state-staging/intermediates/053dea68-1653-4891-b126-132054c21dac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"59ldQ4/B5SEeeY5yyNfRUTT2h15K2xW1KqgBu6OoBU8=","crlite_enrolled":false,"id":"d77a4a26-a8a9-49c6-993f-e5713bcb231a","last_modified":1601517442355},{"sche
ma":1601376722839,"derHash":"9vFZKGoUAd5Tl+IaAJBTSoX157n5j9SlpHsd/9S/3tQ=","subject":"CN=emSign EV SSL CA - C1,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFgxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEeMBwGA1UEAxMVZW1TaWduIEVWIFNTTCBDQSAtIEMx","whitelist":false,"attachment":{"hash":"6e8a3c81fcf028c7f31ff8a6ecf47b000e0c56f86618ee42c5ab92b7dd438a5f","size":1581,"filename":"bJpaGvT-ExoQi2_an1HG3Mo5yMrot02ORyF_NS5p5J8=.pem","location":"security-state-staging/intermediates/586120f4-7f7a-48aa-a621-1d452827f4f0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bJpaGvT+ExoQi2/an1HG3Mo5yMrot02ORyF/NS5p5J8=","crlite_enrolled":true,"id":"219bee21-4e35-434a-b98f-7a9cdbbf3432","last_modified":1601517442337},{"schema":1601376759122,"derHash":"s0pHXAGVUDWHE+0DXqAsXtw6ObL9X8ZOR+jsDM4frx8=","subject":"SERIALNUMBER=201708,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2
l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwOA==","whitelist":false,"attachment":{"hash":"f375406a2b6f58568b6c858fe21f9d564d1cf55fc594234237157747a4d3dc92","size":2154,"filename":"kLOxxy10NQkrCrh2qL5R2g-yx6mjlkwYCq44XF4JDnE=.pem","location":"security-state-staging/intermediates/eaee698e-518e-4ca6-a425-60d3f01f6de4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kLOxxy10NQkrCrh2qL5R2g+yx6mjlkwYCq44XF4JDnE=","crlite_enrolled":false,"id":"0ed3dc2d-dec7-4eef-8b35-a119fd18862e","last_modified":1601517442320},{"schema":1601376753803,"derHash":"B3Q+mECXm+IlPnqICW3y2MTs4PpbrIWs1gujtNtNijw=","subject":"SERIALNUMBER=201608,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDg=","whitelist":false,"attachment":{"hash":"8c0cbaae9526908b6f5e7c40992af9d535a7001ef6d181f7e72c214e621c827d","size":2093,"filename":"db1FmZo_iQKRN_DoaJ1EqbHbAgjTFPseNUqd5epdDlQ=.pem","location":"security-state-staging/intermediates/0c410741-518e-4f46
-b761-90c573b9d339.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"db1FmZo/iQKRN/DoaJ1EqbHbAgjTFPseNUqd5epdDlQ=","crlite_enrolled":false,"id":"a37c7a69-bb5b-45df-95df-cc27e5d2d7bf","last_modified":1601517442303},{"schema":1601376737259,"derHash":"AqetTdXgue/AlzaNn8xQd7ibDy4tbqfOJ1EreP4jLcw=","subject":"SERIALNUMBER=201605,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDU=","whitelist":false,"attachment":{"hash":"5587fb6a2f9d49ffcdca5e46b1f4fe6990b3720eab5f405fa5c274655c54845a","size":2093,"filename":"mxzmcEmVZ7pbwgyakCsaNfIs0nO1a2ATXlWM3YDPSv4=.pem","location":"security-state-staging/intermediates/79266315-a547-48b7-8a8c-539dd98c4c81.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mxzmcEmVZ7pbwgyakCsaNfIs0nO1a2ATXlWM3YDPSv4=","crlite_enrolled":false,"id":"0d05e044-702c-45d3-ad6f-6da64708138e","last_modified":1601517442285},{"schema":1601376778129,"derHash":"uvdk/pz9nDFLuXaGQbRcOhu6U1hqeqbdAUy2wJ+aBSA=","subject":
"SERIALNUMBER=201503,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTUwMw==","whitelist":false,"attachment":{"hash":"3e033e3994ee02f690af4a6e1dfc41b5ff5533912cf4d56880cb72398af497c1","size":2097,"filename":"XfHlidGGDVVOgzjUprEw8aIeQxYbnmOME26_9SaNpvE=.pem","location":"security-state-staging/intermediates/3d07716f-e548-4635-91fc-532fccbbb2d0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XfHlidGGDVVOgzjUprEw8aIeQxYbnmOME26/9SaNpvE=","crlite_enrolled":false,"id":"9fd8a38a-216f-4d8b-9d09-d79bf14e30ed","last_modified":1601517442268},{"schema":1601376740238,"derHash":"ZfceS8/y742OALVAFT3EYctgLGFdSf89kSCbOHscJgo=","subject":"SERIALNUMBER=201703,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwMw==","whitelist":false,"attachment":{"hash":"fcbdbb96bf0df55e19f16d9601414e7c0338df1ee
ef0d6de6ab4deffe63f2581","size":2154,"filename":"6rvgeyqeTZZdXHb3Ou7zqzk6_NHxF5QuumcKoawuk7k=.pem","location":"security-state-staging/intermediates/86de0db1-1ca7-46ac-9cfb-412953f84176.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6rvgeyqeTZZdXHb3Ou7zqzk6/NHxF5QuumcKoawuk7k=","crlite_enrolled":false,"id":"293c6349-ae54-4ddd-8603-df8d4e0ff284","last_modified":1601517442250},{"schema":1601376719105,"derHash":"4KM1mSv89KKXon0Q/9nLnuCZbnxUiK2o2ureNFAlA7U=","subject":"SERIALNUMBER=201602,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDI=","whitelist":false,"attachment":{"hash":"8ed8c59d6f248090b9615d90830669f44c25dd87c173570e90df02cfb884effd","size":2093,"filename":"xoEAoF10JcsljWhXiwKwqchikB5LpWs5WsK8af_smGc=.pem","location":"security-state-staging/intermediates/a59db986-6cba-48b5-a4e6-31308dca10db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xoEAoF10JcsljWhXiwKwqchikB5LpWs5WsK8af/smGc=","crlite_enrolled":false,
"id":"249e5ad1-b304-4642-91e7-fdeb791315f6","last_modified":1601517442232},{"schema":1601376744368,"derHash":"cQtQSTgw21Uk2z0n4hl2Yq3xl29x9TZLtA/f+EIFw7w=","subject":"SERIALNUMBER=201603,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTYwMw==","whitelist":false,"attachment":{"hash":"4c9149541b8e9c4b674fa0ff33d8df3025f88a01f50933c9da4d3b40e69c096c","size":2097,"filename":"XBQTAIj5aGw-bAbL6VUInxFeRnki1PNjhKhT0LcTGrY=.pem","location":"security-state-staging/intermediates/f9479f29-2c37-41fa-8851-de53e17e6b8f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XBQTAIj5aGw+bAbL6VUInxFeRnki1PNjhKhT0LcTGrY=","crlite_enrolled":false,"id":"abd3813e-1fdc-42f4-bf74-e1c2cc8aeaae","last_modified":1601517442215},{"schema":1601376748866,"derHash":"p0//9ShHGQU4UHOt85lwGbJvT68kvOkQKicuekSE5Lw=","subject":"CN=Soluti CA - DV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,L=Goi\u00e2nia,ST=Goi\u00e1s,C=BR","subjectDN":"MIGDMQswCQYDVQQGEwJCUjE
PMA0GA1UECAwGR29pw6FzMREwDwYDVQQHDAhHb2nDom5pYTE3MDUGA1UEChMuU09MVVRJIC0gU09MVUNPRVMgRU0gTkVHT0NJT1MgSU5URUxJR0VOVEVTIFMvQTEXMBUGA1UEAxMOU29sdXRpIENBIC0gRFY=","whitelist":false,"attachment":{"hash":"e2655aaf6aee7659f46b6845d4679fe00f2961d4f982179edfe793575137f826","size":1837,"filename":"kAzMeuwjUBWfPL5YEYfQG9qK_ABDxl0BMvPtzwEPN7E=.pem","location":"security-state-staging/intermediates/2f0964e2-f735-4725-9e68-4346c3123587.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kAzMeuwjUBWfPL5YEYfQG9qK/ABDxl0BMvPtzwEPN7E=","crlite_enrolled":true,"id":"d7891a3b-bf82-49b7-8ef7-c041d57dde7a","last_modified":1601517442198},{"schema":1601376760753,"derHash":"ivthwh4w3DDI9gwHsHg7nu0GhtyurJElhz/XyqjAvlw=","subject":"SERIALNUMBER=201603,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDM=","whitelist":false,"attachment":{"hash":"3d028d5c255fc3a1068076848710da8b3f843a8758c47228b6ac0486ac903f72","size":2093,"filename":"VaNDp0-GOXKCK5DMQUXXYJa
etuE09YpOUENU9PNhSQY=.pem","location":"security-state-staging/intermediates/f4ae12b2-8eaa-4573-84c2-ed92fcac954c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VaNDp0+GOXKCK5DMQUXXYJaetuE09YpOUENU9PNhSQY=","crlite_enrolled":false,"id":"6a26c541-441f-4996-9f72-a867fe62b81f","last_modified":1601517442181},{"schema":1601376761610,"derHash":"+RqsoOTlM3R6CIC/z28mcg3B0FSUw5ONpoAikNWgmzI=","subject":"CN=emSign SSL CA - C1,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFUxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEbMBkGA1UEAxMSZW1TaWduIFNTTCBDQSAtIEMx","whitelist":false,"attachment":{"hash":"371dbaddc94c282e8343a28dc05dcb74778a143ee818d5884a3116b27bd5028b","size":1577,"filename":"Vu8rCm62GhPpPUIskAEOlG-x_WJEzc46NqUrWffwTVo=.pem","location":"security-state-staging/intermediates/5c3885bb-cc4d-4eb7-8b65-2d767339453e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vu8rCm62GhPpPUIskAEOlG+x/WJEzc46NqUrWffwTVo=","crlite_enrolled":true,"id":"40ee528
3-fd3d-4e3c-9d19-0ac5439365bb","last_modified":1601517442163},{"schema":1601376723649,"derHash":"+BdppSTluWI+F/P111gfpKQZKXf/TiRX+wAyONz2BBA=","subject":"SERIALNUMBER=201601,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDE=","whitelist":false,"attachment":{"hash":"af582fa89b43c20eb4a7f6f2c88ded4c302410d4af719b9206186aba8336ed67","size":2093,"filename":"84Za4kYwrRkyQwGdAI_OxURzEVfnTxcOpAabMr7iKM0=.pem","location":"security-state-staging/intermediates/7905a8bc-173d-40e7-92ed-b4a494401b4c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"84Za4kYwrRkyQwGdAI/OxURzEVfnTxcOpAabMr7iKM0=","crlite_enrolled":false,"id":"37d95d8c-3513-4a11-b930-b8f47cf74952","last_modified":1601517442128},{"schema":1601376725753,"derHash":"GUrT6FS2tXfbgMnlg73fLap/gIFmmODMhRoAdoB9i5Q=","subject":"SERIALNUMBER=201709,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVs
Z2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwOQ==","whitelist":false,"attachment":{"hash":"e13f921d77416a5ba55814e3a229c8b50d66c523580816ae7194e8c46cb533da","size":2154,"filename":"91_yXUHhaE8XQE7T4qtIwHduKC0gNiCwyt7acKtcMCg=.pem","location":"security-state-staging/intermediates/d1d09664-4aea-44d3-b3bb-521febdd9266.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"91/yXUHhaE8XQE7T4qtIwHduKC0gNiCwyt7acKtcMCg=","crlite_enrolled":false,"id":"06523722-fbe4-4e54-ad81-768c08b9b3a7","last_modified":1601517442111},{"schema":1601376745190,"derHash":"oGHURTmXFMOPwQGm6a+9s4HxEvpd59W8FJBFWNHtMnY=","subject":"CN=emSign ECC SSL CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEfMB0GA1UEAxMWZW1TaWduIEVDQyBTU0wgQ0EgLSBDMw==","whitelist":false,"attachment":{"hash":"8c77ffa9b893c57610bd16e4953c97a408efab95236b88e9a574f1475ed5146e","size":1134,"filename":"TPymzs2gSTCnRzT83dxpTHxfGl2tdQ9snhCfXXcejy4
=.pem","location":"security-state-staging/intermediates/86a79f6f-14ab-4ade-a0ec-33f05a4994dd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TPymzs2gSTCnRzT83dxpTHxfGl2tdQ9snhCfXXcejy4=","crlite_enrolled":true,"id":"5dc47e36-cabd-43eb-ac61-417a710e88b8","last_modified":1601517442093},{"schema":1601376731471,"derHash":"a2qdHAN/d/qodOYQmkk/H4QJXB0VJNvihhjaSIdhtTA=","subject":"SERIALNUMBER=201610,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MTA=","whitelist":false,"attachment":{"hash":"acd0c347136ab560467f0971b7ba00b91a4f2ccf988d106e3712504bf18965f0","size":2093,"filename":"pPTKMyEFXY56k6Lx4t1g9b9VGfP81txv-Nmof3ELcXw=.pem","location":"security-state-staging/intermediates/ccc3a418-512b-4930-99d5-de8e5dd2f210.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pPTKMyEFXY56k6Lx4t1g9b9VGfP81txv+Nmof3ELcXw=","crlite_enrolled":false,"id":"a9d83d3b-fca9-4ea7-a503-58b614621e5b","last_modified":1601517442076},{"schema":16013767
84332,"derHash":"J09FXfZsfa8EPXoj2Lb6tanx+PxchSe3yUybxFyoyac=","subject":"SERIALNUMBER=201602,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTYwMg==","whitelist":false,"attachment":{"hash":"f3bbe5d03f98b86af0a98a1d89517f05aec2aebd9dc847f1545502d7af308d1f","size":2097,"filename":"BOBA5Twm4mitveGSW5FDlhbrXAX2Nzp9tI149Ez2o68=.pem","location":"security-state-staging/intermediates/e20288d5-796f-41b7-9189-9086d9e97ace.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BOBA5Twm4mitveGSW5FDlhbrXAX2Nzp9tI149Ez2o68=","crlite_enrolled":false,"id":"5798e19f-2072-453b-ad44-339f57379ab4","last_modified":1601517442059},{"schema":1601376735177,"derHash":"mwT9+YEhXzUdwOyFrh+BZZ/LSpo/5/nhq2IYovNuj64=","subject":"SERIALNUMBER=201703,CN=Foreigner CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MGExCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xFTATBgNVBAMTDEZvcmVpZ25lciBDQTEPMA0GA1UEBRMGMjAxNzAz","white
list":false,"attachment":{"hash":"1710c12d6adc6eb6e5a43eca12c2013dbe3a7eae7e9c830428ac3cc4377eeaea","size":2158,"filename":"LuxKcz3x6blC_Nkgqe95wYedyrYHgwj9WLLOX_aAPig=.pem","location":"security-state-staging/intermediates/33864ab7-757a-4de4-ab78-3ef8d1052e1b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LuxKcz3x6blC/Nkgqe95wYedyrYHgwj9WLLOX/aAPig=","crlite_enrolled":false,"id":"06266cbb-b88c-4fad-8490-7408e17e2488","last_modified":1601517442042},{"schema":1601376774903,"derHash":"gKw1KTCHW6Cv5/cN04kTDI4ee+/9yWR3NWrSqeADrSs=","subject":"SERIALNUMBER=201710,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcxMA==","whitelist":false,"attachment":{"hash":"3af89870b8cd5676b0650cc634057a2d93e3823dd927c33ebc945573081a928a","size":2154,"filename":"ZCLFrfNE0YmOMDXn8TdGm9cXS6EtB4A-rRuWgSitNdg=.pem","location":"security-state-staging/interm
ediates/52e7a4e1-eb06-4a43-a509-8d6dbf521484.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZCLFrfNE0YmOMDXn8TdGm9cXS6EtB4A+rRuWgSitNdg=","crlite_enrolled":false,"id":"f80d87d6-b1f3-44c6-857b-f6828b862fdf","last_modified":1601517442025},{"schema":1601376732293,"derHash":"kZ6sPkYMJraGLxPDpVgue6CI/MIUKOd98A7reCcaKas=","subject":"SERIALNUMBER=201701,CN=Foreigner CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MGExCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xFTATBgNVBAMTDEZvcmVpZ25lciBDQTEPMA0GA1UEBRMGMjAxNzAx","whitelist":false,"attachment":{"hash":"263b1f66d8d54d280867fbc124be5a36fe7a73a5820533e7e232dbee9643c4e9","size":2158,"filename":"nQ35mJfWCjba_vijrSnf88AaEOz5U-zNipRR1TZQkSs=.pem","location":"security-state-staging/intermediates/1a6c42f3-a4b3-4fd3-9fc8-9572f932ddd8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nQ35mJfWCjba/vijrSnf88AaEOz5U+zNipRR1TZQkSs=","crlite_enrolled":false,"id":"f0037444-3d10-48ef-b661-fb3d87999e3e
","last_modified":1601517442008},{"schema":1601376756663,"derHash":"D20/jpLBQygVbG/pPPL4yqOZNfWAt3/qGbkz6UE2D0E=","subject":"SERIALNUMBER=201701,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwMQ==","whitelist":false,"attachment":{"hash":"13316f9b8a81c37d912c95bab9b1a75fe27e85c4e78bdc8565dbcc0b0e4a1556","size":2154,"filename":"EB_ThksEnKMJ2YVoHHvY5XyMHTzvC2P_L5G9CrSyfnE=.pem","location":"security-state-staging/intermediates/2c971077-3395-468f-85b2-6e07cfc04c2a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EB/ThksEnKMJ2YVoHHvY5XyMHTzvC2P/L5G9CrSyfnE=","crlite_enrolled":false,"id":"ad12ea65-7f92-4b32-a337-6b02ee3bdc0c","last_modified":1601517441990},{"schema":1601376733494,"derHash":"g4jwUGW1mD+TLCvi5UiYTfca4H9susMxtkj1KIs3DXQ=","subject":"SERIALNUMBER=201702,CN=Foreigner CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":
"MGExCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xFTATBgNVBAMTDEZvcmVpZ25lciBDQTEPMA0GA1UEBRMGMjAxNzAy","whitelist":false,"attachment":{"hash":"3676002f43efd0a0bf3b10e582b3755e5da23bce4442ce825d14540454c25e29","size":2158,"filename":"lOlKIyhajdx1Pv_UumL8AwhOIVSEc53cII6qCgzybVk=.pem","location":"security-state-staging/intermediates/f2aa5a07-7a1e-48fa-8dc8-77b88c525caa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lOlKIyhajdx1Pv/UumL8AwhOIVSEc53cII6qCgzybVk=","crlite_enrolled":false,"id":"b5fe7e45-4ee5-4d6a-8d20-7acc5f32c0d1","last_modified":1601517441972},{"schema":1601376722047,"derHash":"Ifxe6PnsM7qGAumyFnKblorF6ZfHAF+D5rIfjUkAuT8=","subject":"SERIALNUMBER=201707,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwNw==","whitelist":false,"attachment":{"hash":"35d1b042d6b7f4876f0915a8b07bd424360c2709
3aa293ef221b3d067ade827e","size":2154,"filename":"3kBEsS8bJGqOcdSGOBcn3v3kGJVLwDpOs47luWkYCHg=.pem","location":"security-state-staging/intermediates/30760870-3ab9-4763-86af-d783516015c0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3kBEsS8bJGqOcdSGOBcn3v3kGJVLwDpOs47luWkYCHg=","crlite_enrolled":false,"id":"c8211913-3fd7-4bd5-88bc-38fcb5a06beb","last_modified":1601517441955},{"schema":1601376752186,"derHash":"CV6Eg9E+kLuL0koueaWte/Gps0k99ipIGnUdR7BE8TM=","subject":"SERIALNUMBER=201601,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTYwMQ==","whitelist":false,"attachment":{"hash":"d9a2af818638a1d86ad680c36ec904451911a7e715805edacb13ea0adc0866f2","size":2097,"filename":"RBcL06ULAF8SGk-hJRdj-ieBrxnrfENSen5Fejc3mXI=.pem","location":"security-state-staging/intermediates/fbe2a61c-6afe-4a84-9f3f-82ca320cd112.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RBcL06ULAF8SGk+hJRdj+ieBrxnrfENSen5Fejc3mXI=","crlite_enrolled"
:false,"id":"29ab9c28-65b1-4b04-92fa-c1216ae03460","last_modified":1601517441938},{"schema":1601376739342,"derHash":"MI5DTr7hlojys3UPsyH/9pGwT90OIF+zYmurAU8gAvU=","subject":"SERIALNUMBER=201609,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDk=","whitelist":false,"attachment":{"hash":"f458b0f2c2365915054245f4299cac76f566e47f974c119a5ff84df844025876","size":2093,"filename":"KRgOg6mRpaWoXbaKdK3GrcmjYXMv-Efv_xGeSRFTYTY=.pem","location":"security-state-staging/intermediates/cf87470d-e1e4-4f10-acd2-3ff10bed17e0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KRgOg6mRpaWoXbaKdK3GrcmjYXMv+Efv/xGeSRFTYTY=","crlite_enrolled":false,"id":"c1ccd3a8-0060-4e25-932a-6cf5aca04875","last_modified":1601517441921},{"schema":1601376745997,"derHash":"a1HR3PTreu5CQYXLG5WAV0s5y5Y4Y94+wa0x3bB2zp8=","subject":"CN=emSign ECC SSL CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGoxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEt
JMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMR8wHQYDVQQDExZlbVNpZ24gRUNDIFNTTCBDQSAtIEcz","whitelist":false,"attachment":{"hash":"89e969a3a81606f2a36171383c4b70f380c4613a543363e819611910547c8eca","size":1183,"filename":"9O08XqhJ4GK5qjGNH9IY24XQxhGv8dsFbbZDBPNw1xA=.pem","location":"security-state-staging/intermediates/7b91ca89-e860-4ed9-a170-78aaec18ecf8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9O08XqhJ4GK5qjGNH9IY24XQxhGv8dsFbbZDBPNw1xA=","crlite_enrolled":true,"id":"ed563635-4e2d-4c84-83bd-179c24abeb41","last_modified":1601517441886},{"schema":1601376741893,"derHash":"QzTusswRT4K+5vin5a6gOkLrLh9wy9ZhAuQU1y8AM7k=","subject":"CN=emSign EV SSL CA - G1,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGkxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMR4wHAYDVQQDExVlbVNpZ24gRVYgU1NMIENBIC0gRzE=","whitelist":false,"attachment":{"hash":"d1a4e2a86d82be89bc5a8cdd12e0721917280f6b41222ff230bfd34bde486b4d"
,"size":1626,"filename":"uyublT6SsX3mh_3EIO2_Tv5ftRcL40wCzJ0G9rOjYKE=.pem","location":"security-state-staging/intermediates/ba44d28c-de08-40a9-a1e1-21782eca68cf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uyublT6SsX3mh/3EIO2/Tv5ftRcL40wCzJ0G9rOjYKE=","crlite_enrolled":true,"id":"c280c564-6ffb-47f0-ab87-127727d076a0","last_modified":1601517441869},{"schema":1601376773300,"derHash":"lW2vVrCgKjNqJ3dk4Pu/slaFZTHPap3udG2dYhsTG/M=","subject":"SERIALNUMBER=201406,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDY=","whitelist":false,"attachment":{"hash":"30638046bea6f155841dc365c841daedace83b0ded20d9c17bd46f73824c7891","size":2093,"filename":"qRU5F6qy_4wyi4HARkT-CYod607PlhyQSnMiBSD98fA=.pem","location":"security-state-staging/intermediates/2338e82d-fbfc-4bac-9e6c-1c5bb39b6e12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qRU5F6qy/4wyi4HARkT+CYod607PlhyQSnMiBSD98fA=","crlite_enrolled":false,"id":"56faeaf3-53f6-4608-
ba25-57843acf584f","last_modified":1601517441851},{"schema":1601376770828,"derHash":"J/ob5PS1ahQqR6VqfpS3JQIFm0Ai5GI+dIyh7xUc8iI=","subject":"CN=Valid Certificadora Digital SSL EV CA 2018,OU=VALID SSL EV,O=VALID CERTIFICADORA DIGITAL,L=S\u00c3O PAULO,ST=S\u00c3O PAULO,C=BR","subjectDN":"MIGpMQswCQYDVQQGEwJCUjETMBEGA1UECAwKU8ODTyBQQVVMTzETMBEGA1UEBwwKU8ODTyBQQVVMTzEVMBMGA1UECxMMVkFMSUQgU1NMIEVWMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgRVYgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"bc6b910f331f4825a9cdbd16a2115b7223ea010714fdf6974ca9412bdffc09e0","size":1886,"filename":"Fvvsf-SjFcNThumRKUfh4Zsz4ZsXqkoWTiLt7iT8DBo=.pem","location":"security-state-staging/intermediates/e338d07c-10d0-4444-bd57-e0078726ad72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Fvvsf+SjFcNThumRKUfh4Zsz4ZsXqkoWTiLt7iT8DBo=","crlite_enrolled":true,"id":"4a1b6514-22ff-49a9-be43-c6c364cbf909","last_modified":1601517441834},{"schema"
:1601376777737,"derHash":"ng7HCFncHr8Sc3agy/QGZVkzOJrRyZ9dDHHOcdkYaPw=","subject":"SERIALNUMBER=201512,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MTI=","whitelist":false,"attachment":{"hash":"2484239d7a2b9e714612b99b1585d4488fa991e4441f3486e7199d6c718ecf77","size":2093,"filename":"QRGGHe2oDxCAjDkdNzdV6-xL36aDt6GV-GXVtBEkosM=.pem","location":"security-state-staging/intermediates/d2820bde-3f75-43bd-aead-4f4865442d63.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QRGGHe2oDxCAjDkdNzdV6+xL36aDt6GV+GXVtBEkosM=","crlite_enrolled":false,"id":"0aa43ec4-32c2-47e5-aca1-d8075618de6d","last_modified":1601517441817},{"schema":1601376783115,"derHash":"5szJZRkoFxFKRGHEz+3DRFPewb3mOXDOIaZC+8OPujA=","subject":"SERIALNUMBER=201502,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDI=","whitelist":false,"attachment":{"hash":"428f2f9a51942c06ebed0f13b6c1f503c537da14065e552cddd6dc3aef00d
b50","size":2093,"filename":"59nRM6JR4L01zd4twLB_PFOYuHBhNCUYvIjVMyinlIE=.pem","location":"security-state-staging/intermediates/4ed92c45-caac-4b1a-910e-039ddc0393a4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"59nRM6JR4L01zd4twLB/PFOYuHBhNCUYvIjVMyinlIE=","crlite_enrolled":false,"id":"369fd6ef-b877-41c7-a13d-85f997662997","last_modified":1601517441800},{"schema":1601376731860,"derHash":"lSP+dqG/dVGSFdLN6frnvBIqlbLZjw73XFL7Z48V2hI=","subject":"SERIALNUMBER=201405,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDU=","whitelist":false,"attachment":{"hash":"8a4bc54af51cb4e07200000c701dd8192e248fb98c77aeed37be83fcb14a6943","size":2093,"filename":"a5V9lhZQ8dgRturcVZOVCxuSonandHuH6Jgt6Zy0QIY=.pem","location":"security-state-staging/intermediates/e73b1326-10ed-4674-be98-cbfab7ab8b6c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"a5V9lhZQ8dgRturcVZOVCxuSonandHuH6Jgt6Zy0QIY=","crlite_enrolled":false,"id":"6b0f74f1-9348-
4005-9a02-0991e4735ed4","last_modified":1601517441783},{"schema":1601376735991,"derHash":"Sg4PMPotGIaQ+cdSU6AXGV8hY+RcCQz10rc8YsRJp4I=","subject":"SERIALNUMBER=201407,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDc=","whitelist":false,"attachment":{"hash":"5eb830f3bd31118690d65594afbb9d6640f7fc39f7779806e57b7d09787ce1ac","size":2093,"filename":"6t5RgbwqR17MdH8G9oKG0nuWGXrgv23l5Vk707xd_w4=.pem","location":"security-state-staging/intermediates/bdfc8266-4f92-4d83-83b4-7e16937c5af8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6t5RgbwqR17MdH8G9oKG0nuWGXrgv23l5Vk707xd/w4=","crlite_enrolled":false,"id":"f99a3ff4-5bf0-4cd9-9dc2-1453caa92464","last_modified":1601517441765},{"schema":1601376729849,"derHash":"KgB0N17Gt742elO3btlKaNRfUQdgy3+eDPkjFK/7oqA=","subject":"SERIALNUMBER=201706,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5
iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwNg==","whitelist":false,"attachment":{"hash":"34a1c01e6ea7d6294b23196003905fcfcd0afb39a48726902fe069d5692be888","size":2154,"filename":"P8H4tWILrwuL6Uguy479T0QJ1pdTn_DRNH-qJIbwJlc=.pem","location":"security-state-staging/intermediates/48234e98-f00e-4cf2-a19d-5f44294aaa12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"P8H4tWILrwuL6Uguy479T0QJ1pdTn/DRNH+qJIbwJlc=","crlite_enrolled":false,"id":"ac01d2c3-ff22-4dd8-be8d-65f3d74f33c2","last_modified":1601517441748},{"schema":1601376776109,"derHash":"588SO/NMrj+IToDLEAuXJEsdOkWUTSoROUuZXEuPgSg=","subject":"SERIALNUMBER=201408,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDg=","whitelist":false,"attachment":{"hash":"33e224fe32c39a932baf3f274d5afc7e27a5bc5193dffb4623b01db89c667fc2","size":2093,"filename":"hQIjsSxVvTiuqkpzyrXb6OAXsPacyApugghiaf0blNQ=.pem","location":"security-state-staging/intermediates/45fa3321-3de9-45d6-9f73
-917714717124.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hQIjsSxVvTiuqkpzyrXb6OAXsPacyApugghiaf0blNQ=","crlite_enrolled":false,"id":"60ec0b65-adf0-4bf9-a827-5a07e599f184","last_modified":1601517441731},{"schema":1601376735592,"derHash":"ARbxf5fN70reLmPPLBsGT9mfQE0rkUEAvCQfB4GFMyM=","subject":"CN=emSign ECC EV SSL CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MG0xCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMSIwIAYDVQQDExllbVNpZ24gRUNDIEVWIFNTTCBDQSAtIEcz","whitelist":false,"attachment":{"hash":"cf06e95703019f175db9c5a52f46e1ddea5ac2ad994d77248a0ec9479bc9be49","size":1183,"filename":"f01011qEaFf6Wqq3wyJQCu96P1p4Ia4fYG9V_7Q6Pu4=.pem","location":"security-state-staging/intermediates/98578ae6-b345-4b4a-9f77-0f821db4c50a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"f01011qEaFf6Wqq3wyJQCu96P1p4Ia4fYG9V/7Q6Pu4=","crlite_enrolled":true,"id":"c3a3ece5-9d3e-4a95-9e75-88b6770383fc","last_modifi
ed":1601517441714},{"schema":1601376769178,"derHash":"zMDsSwDyec8NbQurLUhtwnSm5BDtNAZXiV9SMu6hdNU=","subject":"SERIALNUMBER=201506,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDY=","whitelist":false,"attachment":{"hash":"d6555d845c65379f6c99daf370954c2b157def962266ea8993272c465b58437e","size":2093,"filename":"fJUnTwcxiS8oV_WhpL3lY4VeVXdTSo1_3QD1YzWg8mM=.pem","location":"security-state-staging/intermediates/15d98a45-71c0-4188-a3c1-6096c75f137a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fJUnTwcxiS8oV/WhpL3lY4VeVXdTSo1/3QD1YzWg8mM=","crlite_enrolled":false,"id":"5e88bec2-48e1-407c-81f0-3e8ec8a1b182","last_modified":1601517441697},{"schema":1601376748460,"derHash":"cvmvIVgYG68W1gybTm9L18qNI0GtSK/bZ8tMgzLVRvY=","subject":"CN=Microsec e-Szigno Root CA 2009,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJv
b3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odQ==","whitelist":false,"attachment":{"hash":"b90c76e81f578b8bc26b991192e309fc1f7c20f49cb20bf33c55c1455c1f615e","size":1557,"filename":"YWFnIBQzrqbI5eMHCvyvZ0kYj4FL0auxea6NrTq_Juw=.pem","location":"security-state-staging/intermediates/1700e695-ab2e-4343-b33f-89b8ee9187a7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YWFnIBQzrqbI5eMHCvyvZ0kYj4FL0auxea6NrTq/Juw=","crlite_enrolled":false,"id":"4ac33a0c-1052-4702-874c-dc40ae073f75","last_modified":1601517441658},{"schema":1601376767113,"derHash":"pmyXrlnf+eoBXnPHRO5VIHRfEBo5XEl9GeHxaNOa/NA=","subject":"CN=DigiCert Secure Site Pro CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MFAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKjAoBgNVBAMTIURpZ2lDZXJ0IFNlY3VyZSBTaXRlIFBybyBDTiBDQSBHMw==","whitelist":false,"attachment":{"hash":"5aded62775075d08acc444c1de87c126e2389b6c7642ebc86c4a8c12384e4285","size":1808,"filename":"BbkOPUFIMuqBj5SBjChDvpb1ZCdk3b9ZNDWOnKRB_bo=.pem","location":
"security-state-staging/intermediates/721e23ad-72ff-4222-ae1d-d221eb1482a7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BbkOPUFIMuqBj5SBjChDvpb1ZCdk3b9ZNDWOnKRB/bo=","crlite_enrolled":true,"id":"7a20a336-c213-4fd2-ad8c-92be449691f2","last_modified":1601517441636},{"schema":1601376726545,"derHash":"HJ0+jgzx5POcc00Z5Hmulx/DBmwAA1Oitq8yeVqX6hs=","subject":"CN=University of the Peloponnese TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MH8xCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTcwNQYDVQQDDC5Vbml2ZXJzaXR5IG9mIHRoZSBQZWxvcG9ubmVzZSBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"b97f4a98dfcd061cff017369f0b4c03f42a54b33d6e77aea0c96e2e972f74092","size":3819,"filename":"D5AmHvgsz8nnufCXywDHL8VpnKB80L_QvVJn75tQULs=.pem","location":"security-state-staging/intermediates/4e78eb05-39f9-4129-b04a-377f0b320b0c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D5AmHvgsz8nnufCX
ywDHL8VpnKB80L/QvVJn75tQULs=","crlite_enrolled":true,"id":"55ed86a1-d369-4516-b887-90a0eccdfd12","last_modified":1601517441618},{"schema":1601376722448,"derHash":"fsrKSjWFo7QOJVdEFVEtVrV5mbdTAXhW8qsV+h8h9tA=","subject":"CN=NETLOCK Trust Qualified EV CA 3,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"MGExCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMSgwJgYDVQQDDB9ORVRMT0NLIFRydXN0IFF1YWxpZmllZCBFViBDQSAz","whitelist":false,"attachment":{"hash":"5c9cd98f81f0d60b8f3c40b8be94209d25226eb7ebf1c126947da32ed3d21dbc","size":2215,"filename":"ksEtUEbADR0V5fQig7YPrrgGcr2PovgbGzQx045WU_0=.pem","location":"security-state-staging/intermediates/be90d242-60d9-4a6b-aefe-8e8fb342b23e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ksEtUEbADR0V5fQig7YPrrgGcr2PovgbGzQx045WU/0=","crlite_enrolled":true,"id":"bf7893da-0baf-4aae-8bfc-282641a4dcff","last_modified":1601517441601},{"schema":1601376727778,"derHash":"NAylukAtFAtlosl2566BKKFQXCnRkODgNPWcyuepK8I=","subject":"CN=Ap
ple Public EV Server RSA CA 1 - G1,O=Apple Inc.,C=US","subjectDN":"MFExCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMS0wKwYDVQQDEyRBcHBsZSBQdWJsaWMgRVYgU2VydmVyIFJTQSBDQSAxIC0gRzE=","whitelist":false,"attachment":{"hash":"ea385fed15dbd58a3c6f6fafe8e1873268b80afe2586ec31c75f1eebd9fb7c21","size":1833,"filename":"9C7mf4J789KvLX59lcMyYpsH6bpdmoAGTByZNhcusLA=.pem","location":"security-state-staging/intermediates/f25279c5-ac9c-4d91-99fc-93ec4b61b575.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9C7mf4J789KvLX59lcMyYpsH6bpdmoAGTByZNhcusLA=","crlite_enrolled":true,"id":"e7170fbb-6ceb-4f32-b932-7da04ce6562c","last_modified":1601517441584},{"schema":1601376759524,"derHash":"nmyANcDxyKlFMQ5y2D5TGUe1cfkpLkKkJIo3C/ezBb4=","subject":"CN=VR IDENT EV SSL CA 2020,O=D-Trust GmbH,C=DE","subjectDN":"MEYxCzAJBgNVBAYTAkRFMRUwEwYDVQQKEwxELVRydXN0IEdtYkgxIDAeBgNVBAMTF1ZSIElERU5UIEVWIFNTTCBDQSAyMDIw","whitelist":false,"attachment":{"hash":"dc99c4f4f52985f008966e436a519a723e8fc97d68041786cb235d067d9
79c71","size":2556,"filename":"n2nZ8zPLSNKoerb6X9o01VOniH-YyahnTcdt2oR9ovw=.pem","location":"security-state-staging/intermediates/24db4e33-c897-4e54-9072-c201e9f0c903.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n2nZ8zPLSNKoerb6X9o01VOniH+YyahnTcdt2oR9ovw=","crlite_enrolled":true,"id":"911c16b5-610f-407c-95ae-d17b705f20c2","last_modified":1601517441567},{"schema":1601376734751,"derHash":"mmlizYwhtdzx9ws5qDbH85fsSV+IC+m5tpuLJyiOyxQ=","subject":"CN=KICA RSA OV CA,O=KICA,C=KR","subjectDN":"MDUxCzAJBgNVBAYTAktSMQ0wCwYDVQQKEwRLSUNBMRcwFQYDVQQDEw5LSUNBIFJTQSBPViBDQQ==","whitelist":false,"attachment":{"hash":"7a548420d69a6edd334c25490c6cbe65e35a11c6a7454d19f074a9b28f83a11b","size":1569,"filename":"404SflxwLnJCxfU7K35IbTgipMzslOzUuXBgFjCXwfk=.pem","location":"security-state-staging/intermediates/ce4b3c0b-bbe0-4b2d-a0c5-ba035046a670.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"404SflxwLnJCxfU7K35IbTgipMzslOzUuXBgFjCXwfk=","crlite_enrolled":true,"id":"12bb20c3-03a9-4d9e-
b748-09d93661963f","last_modified":1601517441550},{"schema":1601376766270,"derHash":"sjopwxKnqAsP5rTnG5CcrpKtZJ6Idm5Wye6OHXwBOUU=","subject":"CN=Trust Provider B.V. TLS RSA EV CA G2,O=Trust Provider B.V.,C=NL","subjectDN":"MFoxCzAJBgNVBAYTAk5MMRwwGgYDVQQKExNUcnVzdCBQcm92aWRlciBCLlYuMS0wKwYDVQQDEyRUcnVzdCBQcm92aWRlciBCLlYuIFRMUyBSU0EgRVYgQ0EgRzI=","whitelist":false,"attachment":{"hash":"38af4377ab1fc22658f11e631b7b47777b04bb8fb15d4b189132d8502e7c0990","size":1756,"filename":"tbS_1veJrHW-X3zzJhnpwaHOLn5kSHEHFyby1BZoZlg=.pem","location":"security-state-staging/intermediates/5f9c71f9-ea8c-4afb-94cb-c8d606a8933d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tbS/1veJrHW+X3zzJhnpwaHOLn5kSHEHFyby1BZoZlg=","crlite_enrolled":true,"id":"784ae2c3-b573-43e8-b16e-5c7524b7e6bc","last_modified":1601517441532},{"schema":1601376743958,"derHash":"vaRnKkA8okUcdNfpPnpOcantIqKozNb5H4/prg5sqIE=","subject":"CN=Sectigo SHA-256 OV Secure Server CA 2,O=Sectigo Limited,C=GB","subjectDN":"MFcxCzAJBgNV
BAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLjAsBgNVBAMTJVNlY3RpZ28gU0hBLTI1NiBPViBTZWN1cmUgU2VydmVyIENBIDI=","whitelist":false,"attachment":{"hash":"6fa5518098b61edaf23a4c92a1150dea5509453a08d15a05eadad2f245c4f1f3","size":1634,"filename":"XB8O6m4KrSEF6ajZf52dFtzGpdc9UJGKYYbXFCuXf7c=.pem","location":"security-state-staging/intermediates/f5d8cd57-5f94-40f5-b472-53aace47ac48.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XB8O6m4KrSEF6ajZf52dFtzGpdc9UJGKYYbXFCuXf7c=","crlite_enrolled":true,"id":"e68d9c20-1ff8-4609-843d-a98cdbd6806b","last_modified":1601517441515},{"schema":1601376739819,"derHash":"TUUDnuzKEU1kgioKqAlE1m4I+u5isdJT8UAph2nyJ7Q=","subject":"CN=XinChaCha Trust SSL Domain Validated,O=Beijing Xinchacha Credit Management Co.\\, Ltd.,C=CN","subjectDN":"MHQxCzAJBgNVBAYTAkNOMTYwNAYDVQQKDC1CZWlqaW5nIFhpbmNoYWNoYSBDcmVkaXQgTWFuYWdlbWVudCBDby4sIEx0ZC4xLTArBgNVBAMMJFhpbkNoYUNoYSBUcnVzdCBTU0wgRG9tYWluIFZhbGlkYXRlZA==","whitelist":false,"attachment":{"hash":"68b6dde00d9409bcff
41cb8d3a250a7199377a35f14c4af0235cb34b2ced91d2","size":1772,"filename":"d2LYPy24Y7JLfKDPVkl-Qxb3wvxf9gwxrL4YMYl4enA=.pem","location":"security-state-staging/intermediates/1d26950e-1533-4bb9-9e82-339b1a07f6c1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"d2LYPy24Y7JLfKDPVkl+Qxb3wvxf9gwxrL4YMYl4enA=","crlite_enrolled":true,"id":"d85db883-7604-4b25-88f2-ae094367a108","last_modified":1601517441498},{"schema":1601376754203,"derHash":"1u8+Cevg2TcOUfXAmlMrOscNPOgiJT+fyEwo6b+lUNU=","subject":"CN=Apple Public EV Server RSA CA 2 - G1,O=Apple Inc.,C=US","subjectDN":"MFExCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMS0wKwYDVQQDEyRBcHBsZSBQdWJsaWMgRVYgU2VydmVyIFJTQSBDQSAyIC0gRzE=","whitelist":false,"attachment":{"hash":"f1a0bae2b273ddf514b8e42304f3dbb8040fd3721185f80ada46dd69c0ddd5de","size":1861,"filename":"4ZMBBKlWyhpdsKqKnbXEkuo4CnSxw6b7svlcKIJWfEA=.pem","location":"security-state-staging/intermediates/b422a0ee-0a04-4468-a9fa-5635e30c83bb.pem","mimetype":"application/x-pem-file"},"pu
bKeyHash":"4ZMBBKlWyhpdsKqKnbXEkuo4CnSxw6b7svlcKIJWfEA=","crlite_enrolled":true,"id":"b3dc6b21-3ad1-4586-8cdb-5e2dd1c613bc","last_modified":1601517441481},{"schema":1601376781512,"derHash":"JYWSjSxb/ZUuAlvRLifGd2Ikz3Uuw2LTAxzdSTUYRNQ=","subject":"CN=Apple Public EV Server ECC CA 1 - G1,O=Apple Inc.,C=US","subjectDN":"MFExCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMS0wKwYDVQQDEyRBcHBsZSBQdWJsaWMgRVYgU2VydmVyIEVDQyBDQSAxIC0gRzE=","whitelist":false,"attachment":{"hash":"0c68df98e690b7945017fb11b9de0a5e05c426b30a289db35a64ca96eb1ac781","size":1341,"filename":"Lr2fY89asbE9ohd7WW8tLI0pvoPLX-Wt_N7mP-ri3c0=.pem","location":"security-state-staging/intermediates/934c88bb-99cf-4fc7-8742-47d2064a1e39.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Lr2fY89asbE9ohd7WW8tLI0pvoPLX+Wt/N7mP+ri3c0=","crlite_enrolled":true,"id":"6cb0600d-434e-4a59-a8d8-60ea5bf117e9","last_modified":1601517441464},{"schema":1601376767517,"derHash":"0OilGsqrmvgnZ+LvFlQ8LMY1VRtd4NriXWqsceeGKHA=","subject":"CN=Tru
stAsia OV TLS Pro CA G3,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFkxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSMwIQYDVQQDExpUcnVzdEFzaWEgT1YgVExTIFBybyBDQSBHMw==","whitelist":false,"attachment":{"hash":"f3b5ebd05dd3f189c5ed69f72d96e308522771553df7feb6a4fcdace0c0745b0","size":1821,"filename":"tv1pIXiJEYFUrzxhRqxCjTL7S9s7y_PZbxYVnDOXeCI=.pem","location":"security-state-staging/intermediates/128dd01a-e1a1-4819-bc9a-043a0fa2563c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tv1pIXiJEYFUrzxhRqxCjTL7S9s7y/PZbxYVnDOXeCI=","crlite_enrolled":true,"id":"6d03d111-d670-4e12-9bbd-b3ecad0252cd","last_modified":1601517441447},{"schema":1601376775308,"derHash":"lyoYG2ApTroHMzucGYJEDUM5WrqR1FDsDvtIWu1J1ac=","subject":"CN=D-TRUST SSL CA 2 2020,O=D-Trust GmbH,C=DE","subjectDN":"MEQxCzAJBgNVBAYTAkRFMRUwEwYDVQQKEwxELVRydXN0IEdtYkgxHjAcBgNVBAMTFUQtVFJVU1QgU1NMIENBIDIgMjAyMA==","whitelist":false,"attachment":{"hash":"dff0ac820c6ed7f8e2a14edfc11acfc4f548f8a7
afc8f0f31cf6e7cea3bd1ec8","size":1918,"filename":"Qw7yBnlh3ygQw2Ss4PCmfsq94Je-YAYnMuM9CpdMS0w=.pem","location":"security-state-staging/intermediates/2e9665a5-d214-4616-9a99-e5f11afc8ab6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Qw7yBnlh3ygQw2Ss4PCmfsq94Je+YAYnMuM9CpdMS0w=","crlite_enrolled":true,"id":"c3a9fa2d-eff6-4044-8fbd-014bd0c42505","last_modified":1601517441430},{"schema":1601376746825,"derHash":"jAmUsq7QCF/lQoE+4DxLLXMuzcwleuZFMRTGyHWTO9Q=","subject":"CN=HEAL-LINK Hellenic Academic Libraries Link TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGMMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTFEMEIGA1UEAww7SEVBTC1MSU5LIEhlbGxlbmljIEFjYWRlbWljIExpYnJhcmllcyBMaW5rIFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"1ad892976d511047af18da5aab5153b607c353df841e532029d0341a6aaaed34","size":2946,"filename":"YAtUtdUCD9mINjDHhpnZ-aWI7q9rbr-ylz-Qj5YyuqM=.pem","location":"se
curity-state-staging/intermediates/528a2b56-532f-4299-a341-4f138138bea8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YAtUtdUCD9mINjDHhpnZ+aWI7q9rbr+ylz+Qj5YyuqM=","crlite_enrolled":true,"id":"81e51c73-89cd-4657-860d-7cc2ce56eed2","last_modified":1601517441412},{"schema":1601376728241,"derHash":"wa/GWx6BOw5hRuaqU0FoEnKr6aONWfe9Gye3KYNKDZw=","subject":"CN=UCA Global G2 Root,O=UniTrust,C=CN","subjectDN":"MD0xCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEbMBkGA1UEAwwSVUNBIEdsb2JhbCBHMiBSb290","whitelist":false,"attachment":{"hash":"8b23b9246ee0e3e317646bd91f006eaccbe8145196df356203921598a861c41c","size":2093,"filename":"ElXKvoFS-mTflC96R0F-KflsHOEb-MhOy-KBXMEoCBA=.pem","location":"security-state-staging/intermediates/069b42b2-4592-4d14-8a72-aec786fb8af9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ElXKvoFS+mTflC96R0F+KflsHOEb+MhOy+KBXMEoCBA=","crlite_enrolled":false,"id":"343087f6-4b20-4a64-8815-bfd565b84a7e","last_modified":1601517441395},{"schema":1601376764120,"der
Hash":"ji0Hv8WRsU+jFGhuHMjZu19vjQkcBZUZSqLHWFuZGIc=","subject":"CN=XinChaCha Trust SSL Organization Validated,O=Beijing Xinchacha Credit Management Co.\\, Ltd.,C=CN","subjectDN":"MHoxCzAJBgNVBAYTAkNOMTYwNAYDVQQKDC1CZWlqaW5nIFhpbmNoYWNoYSBDcmVkaXQgTWFuYWdlbWVudCBDby4sIEx0ZC4xMzAxBgNVBAMMKlhpbkNoYUNoYSBUcnVzdCBTU0wgT3JnYW5pemF0aW9uIFZhbGlkYXRlZA==","whitelist":false,"attachment":{"hash":"ee098ec8d0e0db01810ca1c3b3201c226be5f7b8a356ca702dca8dd33aec3a43","size":1780,"filename":"RHqNaKq-7GhfAxN8i7T10nLSrr6EQCmPkPfRvnXA2S0=.pem","location":"security-state-staging/intermediates/5a268c9f-0c99-4ae8-8988-0610fa6a632a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RHqNaKq+7GhfAxN8i7T10nLSrr6EQCmPkPfRvnXA2S0=","crlite_enrolled":true,"id":"6ee147c4-6e70-4972-8a69-4e4ff8257c86","last_modified":1601517441378},{"schema":1601376733906,"derHash":"AHEIGUEV88iZ9U7mfLTahyde3B1nmNp4fgdYz6aulrE=","subject":"CN=VR IDENT SSL CA 2020,O=D-Trust GmbH,C=DE","subjectDN":"MEMxCzAJBgNVBAYTAkRFMRUwEwYDVQQK
EwxELVRydXN0IEdtYkgxHTAbBgNVBAMTFFZSIElERU5UIFNTTCBDQSAyMDIw","whitelist":false,"attachment":{"hash":"1206315657f09d9afaec77ac85e998dd3c6cdcb66f3f2176acc53b52c01c503c","size":2519,"filename":"tODlN5eWKJbzjaei8TSG0CEnvkryLLZvN3Yh2FucTVs=.pem","location":"security-state-staging/intermediates/35f8e921-4fcb-4f84-9bbb-da548ebd9895.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tODlN5eWKJbzjaei8TSG0CEnvkryLLZvN3Yh2FucTVs=","crlite_enrolled":true,"id":"9a044a16-723a-4cf7-8fef-aef81b9007f6","last_modified":1601517441361},{"schema":1601376778985,"derHash":"vrUcj0UkJrK55nL33R7qSzPWw49MoqlpVs4kvQWww40=","subject":"CN=TrustCor DV SSL CA - G2 - RSA,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFsxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJjAkBgNVBAMMHVRydXN0Q29yIERWIFNTTCBDQSAtIEcyIC0gUlNB","whitelist":false,"attachment":{"hash":"87f0868047f749fb388e8d44c43d08ee740544952b1d3dadbc73172c343a6e6d","size":1695,"filename":"eS9Oc92-qoeyy7FaGbRe6FO_VTah35Lxm0PDdps
LdHc=.pem","location":"security-state-staging/intermediates/5e2a99e7-7c31-46e5-9e47-d2efc550858a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eS9Oc92+qoeyy7FaGbRe6FO/VTah35Lxm0PDdpsLdHc=","crlite_enrolled":true,"id":"b6448c15-89fa-4f40-bfc4-08ede3de01a0","last_modified":1601517441343},{"schema":1592519325523,"derHash":"tf7ML2lshQMj/HqFxltQpMXhv7+CPiZqsKRvATssDrI=","subject":"CN=DigiCert Trust Service ECC CA G2,O=DigiCert Inc,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERpZ2lDZXJ0IFRydXN0IFNlcnZpY2UgRUNDIENBIEcy","whitelist":false,"attachment":{"hash":"3ca0e82119ab2a0b243ffb803c5d18e55b693598fd856f1a7d0a948e1d69157c","size":1366,"filename":"4VdkcpY-ZOfUyYWEJvjLhuY_q1wbV_iIKsGc2tE5I3A=.pem","location":"security-state-staging/intermediates/71b44562-b362-4564-a50c-c4d248bc8403.pem","mimetype":"text/plain"},"pubKeyHash":"4VdkcpY+ZOfUyYWEJvjLhuY/q1wbV/iIKsGc2tE5I3A=","crlite_enrolled":false,"id":"0e1c5bc4-8ad7-4fc2-98de-26295e8e6c53","las
t_modified":1600461980986},{"schema":1592519324037,"derHash":"lnDMo2rzULm0at/mRu3rv6vOwBzPg7gZznx4ZO3LZsg=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 Code Signing CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHsxCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxPTA7BgNVBAMMNOS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"465e1a9061e7e389d0ea9da9747262b81d40ae4e14cd9fb27a42f4945f02703f","size":2113,"filename":"YSF8GH0zlEZHOUsW5ULvJI2HashoWaIc2mlfp016vMs=.pem","location":"security-state-staging/intermediates/dbbc83b8-f71f-442b-9caf-a0b071759042.pem","mimetype":"text/plain"},"pubKeyHash":"YSF8GH0zlEZHOUsW5ULvJI2HashoWaIc2mlfp016vMs=","crlite_enrolled":false,"id":"e29dabe7-26f8-4b0e-9a74-744b01286fbd","last_modified":1600461980972},{"schema":1592519319465,"derHash":"gAd2ZTOKAJeJ+ELzQDZHpxU2wfsmTzXa
7OwBk+ZQjg4=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 Secure Email CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHsxCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxPTA7BgNVBAMMNOS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBTZWN1cmUgRW1haWwgQ0E=","whitelist":false,"attachment":{"hash":"ebd4f889c36301f375bca790983c878bebf65b6cb79bf50ad94757d9791e1129","size":2125,"filename":"hXTrdizZDVwP3rMfF243guACsDeLHsUDr6RQIV8SPO0=.pem","location":"security-state-staging/intermediates/f89f921c-a3c7-42c9-994a-462056a42c42.pem","mimetype":"text/plain"},"pubKeyHash":"hXTrdizZDVwP3rMfF243guACsDeLHsUDr6RQIV8SPO0=","crlite_enrolled":false,"id":"b031ea12-8aac-4bac-aee4-5d52d060d214","last_modified":1600461980958},{"schema":1592519320938,"derHash":"3LiusAU7pcUw9Hor4dHk93taB24diij202yPHv3nYaM=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c
\u53f8 DV CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxMzAxBgNVBAMMKuS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBEViBDQQ==","whitelist":false,"attachment":{"hash":"fa4d3f7d98a36f15104d4476514f5038617b69c71d4e11bdfa0516941f5805c0","size":2125,"filename":"bVTZhSTxXd9oL6FqukK0jPVCRZZN4NKl8Nq2p5TLW1Y=.pem","location":"security-state-staging/intermediates/aa550fcc-4cab-4c33-991a-e69878ac8229.pem","mimetype":"text/plain"},"pubKeyHash":"bVTZhSTxXd9oL6FqukK0jPVCRZZN4NKl8Nq2p5TLW1Y=","crlite_enrolled":false,"id":"7dcd5c54-eebb-427c-bea4-620c6203e573","last_modified":1600461980945},{"schema":1592519322519,"derHash":"TJ55n+pib17TXY+RVI+2o5AFAwmfMrxJ3A+1ZrCg7zc=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 OV CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHExCzAJB
gNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxMzAxBgNVBAMMKuS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBPViBDQQ==","whitelist":false,"attachment":{"hash":"a18c07e5eb226b53a94eddfaa604b8c410e66396eb63dba5ffff4555b00cab71","size":2125,"filename":"0I7ImSIwMSH6GsuawHstmkZIicesm0pcLLm6TH6V8Gg=.pem","location":"security-state-staging/intermediates/8c5cbc1b-7010-4279-9592-7bf449788484.pem","mimetype":"text/plain"},"pubKeyHash":"0I7ImSIwMSH6GsuawHstmkZIicesm0pcLLm6TH6V8Gg=","crlite_enrolled":false,"id":"80d031b5-a786-4d6f-92db-1187faf75cfc","last_modified":1600461980928},{"schema":1592519318021,"derHash":"UrbEsFs8Uhd0VXzVPupZVvNryUxktm2Z6KcpH8L8nDY=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 EV CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxMzAxBgNVBAMMKuS4iua1t+mUkOaIkOS/oeaBr+enk
eaKgOaciemZkOWFrOWPuCBFViBDQQ==","whitelist":false,"attachment":{"hash":"0fbfbb9e88addc3cd5be14cbc4fc98ffaf71d3590e9528f71285f55e6da787dd","size":2158,"filename":"9H6Ec6Gyc8uSo946YlOcaYTeoFYZA6Lk4LjvzAtZwR0=.pem","location":"security-state-staging/intermediates/133bea84-438e-4b34-99c8-925e79eac21e.pem","mimetype":"text/plain"},"pubKeyHash":"9H6Ec6Gyc8uSo946YlOcaYTeoFYZA6Lk4LjvzAtZwR0=","crlite_enrolled":false,"id":"03d0ad68-4073-473a-808c-029a1be1de3c","last_modified":1600461980915},{"schema":1592518507191,"derHash":"UrbEsFs8Uhd0VXzVPupZVvNryUxktm2Z6KcpH8L8nDY=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 EV CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxMzAxBgNVBAMMKuS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBFViBDQQ==","whitelist":false,"attachment":{"hash":"0fbfbb9e88addc3cd5be14cbc4fc98ffaf71d3590e9
528f71285f55e6da787dd","size":2158,"filename":"9H6Ec6Gyc8uSo946YlOcaYTeoFYZA6Lk4LjvzAtZwR0=.pem","location":"security-state-staging/intermediates/5e9b82e3-6498-46cb-ae02-ec6e85daa9d4.pem","mimetype":"text/plain"},"pubKeyHash":"9H6Ec6Gyc8uSo946YlOcaYTeoFYZA6Lk4LjvzAtZwR0=","crlite_enrolled":false,"id":"68fb8595-ab2e-4358-8b7f-2d8630f8d173","last_modified":1600461980903},{"schema":1592518505595,"derHash":"3LiusAU7pcUw9Hor4dHk93taB24diij202yPHv3nYaM=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 DV CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxMzAxBgNVBAMMKuS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBEViBDQQ==","whitelist":false,"attachment":{"hash":"fa4d3f7d98a36f15104d4476514f5038617b69c71d4e11bdfa0516941f5805c0","size":2125,"filename":"bVTZhSTxXd9oL6FqukK0jPVCRZZN4NKl8Nq2p5TLW1Y=.pem","location":"securit
y-state-staging/intermediates/d0c9c8fe-9684-46f7-8bec-543fada2095a.pem","mimetype":"text/plain"},"pubKeyHash":"bVTZhSTxXd9oL6FqukK0jPVCRZZN4NKl8Nq2p5TLW1Y=","crlite_enrolled":false,"id":"03cebcec-948e-4495-a47e-70c600be3181","last_modified":1600461980889},{"schema":1592518500941,"derHash":"gAd2ZTOKAJeJ+ELzQDZHpxU2wfsmTzXa7OwBk+ZQjg4=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 Secure Email CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHsxCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxPTA7BgNVBAMMNOS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBTZWN1cmUgRW1haWwgQ0E=","whitelist":false,"attachment":{"hash":"ebd4f889c36301f375bca790983c878bebf65b6cb79bf50ad94757d9791e1129","size":2125,"filename":"hXTrdizZDVwP3rMfF243guACsDeLHsUDr6RQIV8SPO0=.pem","location":"security-state-staging/intermediates/5cd1888e-6da6-4b26-982c-41ff0fcb648d.pem","mimetype":"text/plain
"},"pubKeyHash":"hXTrdizZDVwP3rMfF243guACsDeLHsUDr6RQIV8SPO0=","crlite_enrolled":false,"id":"b5b51d7e-18c0-4051-990e-2227c2564998","last_modified":1600461980874},{"schema":1592518504135,"derHash":"lnDMo2rzULm0at/mRu3rv6vOwBzPg7gZznx4ZO3LZsg=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 Code Signing CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHsxCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxPTA7BgNVBAMMNOS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"465e1a9061e7e389d0ea9da9747262b81d40ae4e14cd9fb27a42f4945f02703f","size":2113,"filename":"YSF8GH0zlEZHOUsW5ULvJI2HashoWaIc2mlfp016vMs=.pem","location":"security-state-staging/intermediates/f603f16e-856a-454f-b298-d24dd8fca252.pem","mimetype":"text/plain"},"pubKeyHash":"YSF8GH0zlEZHOUsW5ULvJI2HashoWaIc2mlfp016vMs=","crlite_enrolled":false,"id":"b
797be80-d570-40a8-a654-8dabec0a9efd","last_modified":1600461980861},{"schema":1592518499324,"derHash":"tf7ML2lshQMj/HqFxltQpMXhv7+CPiZqsKRvATssDrI=","subject":"CN=DigiCert Trust Service ECC CA G2,O=DigiCert Inc,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERpZ2lDZXJ0IFRydXN0IFNlcnZpY2UgRUNDIENBIEcy","whitelist":false,"attachment":{"hash":"3ca0e82119ab2a0b243ffb803c5d18e55b693598fd856f1a7d0a948e1d69157c","size":1366,"filename":"4VdkcpY-ZOfUyYWEJvjLhuY_q1wbV_iIKsGc2tE5I3A=.pem","location":"security-state-staging/intermediates/48219111-c4c3-46ea-8a9b-039c95dd8687.pem","mimetype":"text/plain"},"pubKeyHash":"4VdkcpY+ZOfUyYWEJvjLhuY/q1wbV/iIKsGc2tE5I3A=","crlite_enrolled":false,"id":"505a1a9d-4fd8-4405-8efd-ffeeb546927b","last_modified":1600461980847},{"schema":1592518502537,"derHash":"TJ55n+pib17TXY+RVI+2o5AFAwmfMrxJ3A+1ZrCg7zc=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 OV CA,O=\u4e0a\u6d77\u9510\u6210\u
4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxMzAxBgNVBAMMKuS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBPViBDQQ==","whitelist":false,"attachment":{"hash":"a18c07e5eb226b53a94eddfaa604b8c410e66396eb63dba5ffff4555b00cab71","size":2125,"filename":"0I7ImSIwMSH6GsuawHstmkZIicesm0pcLLm6TH6V8Gg=.pem","location":"security-state-staging/intermediates/6231d971-9aa9-41b5-a807-ac2ac34ed03e.pem","mimetype":"text/plain"},"pubKeyHash":"0I7ImSIwMSH6GsuawHstmkZIicesm0pcLLm6TH6V8Gg=","crlite_enrolled":false,"id":"d425ff0e-dd7f-46dd-bec7-e1a25ff6824a","last_modified":1600461980834},{"schema":1592519327887,"derHash":"HQzX7zwZJlUI4g5Ys1OJZPShGt7Ipx2KuKiv8VaDxq4=","subject":"CN=Trustwave XRamp Global Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIG3MQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2
ZSBIb2xkaW5ncywgSW5jLjE/MD0GA1UEAxM2VHJ1c3R3YXZlIFhSYW1wIEdsb2JhbCBFeHRlbmRlZCBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMR8wHQYJKoZIhvcNAQkBFhBjYUB0cnVzdHdhdmUuY29t","whitelist":false,"attachment":{"hash":"8a9ab9f7d0fa1dce10d8a47b00a029a25fdd07597d57eaa58121c3285bd1534f","size":1857,"filename":"bNKluS4Pu3ijZ1polhtHJPfB2HD5sR_s46h0NYeir6U=.pem","location":"security-state-staging/intermediates/5016e431-0390-45dc-8e65-2642b4718233.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bNKluS4Pu3ijZ1polhtHJPfB2HD5sR/s46h0NYeir6U=","crlite_enrolled":false,"id":"d9c54bdb-939c-4a86-a826-cc0f2f68da43","last_modified":1600461980813},{"schema":1592519327482,"derHash":"RbKwjhtYlIoCi+E6Z8DiDUskZq4rbsYlDrsQ/Wt/gjk=","subject":"CN=Trustwave Secure Global Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIG4MQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjFAMD4GA1UEAxM3VHJ1c3R3YXZlIFNlY3VyZ
SBHbG9iYWwgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQSwgTGV2ZWwgMTEfMB0GCSqGSIb3DQEJARYQY2FAdHJ1c3R3YXZlLmNvbQ==","whitelist":false,"attachment":{"hash":"296ea0b36874faa2487773b3da5792b5b41278241a226affe7e50a6ba22c0e72","size":1784,"filename":"jyPoX5LnCMukfvFxrxuJWUrZycp69MmdphXiTrhpMU4=.pem","location":"security-state-staging/intermediates/3c07694f-03e7-4fdb-b353-876f81151fda.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jyPoX5LnCMukfvFxrxuJWUrZycp69MmdphXiTrhpMU4=","crlite_enrolled":false,"id":"170a74a6-1485-4c35-aecb-8b37550de004","last_modified":1600461980794},{"schema":1592519327070,"derHash":"t1rumDb++8RG8oiilwuE/GCq+e+9LLn4L3WBeQ3kuNw=","subject":"CN=DigiCert Secure Site Pro EV CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxLTArBgNVBAMTJERpZ2lDZXJ0IFNlY3VyZSBTaXRlIFBybyBFViBDTiBDQSBHMw==","whitelist":false,"attachment":{"hash":"8f19662a936c31bb439790a003ca25e57b94197599e34213f653edb625e96dbe","size":1642,"filename":"2OVT1JHnI_dBAIq
49zWtXoFiiSQRI-yC8zdls8oKK38=.pem","location":"security-state-staging/intermediates/2d3ad204-0ce2-4d05-9f72-d1c775ffbbf7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2OVT1JHnI/dBAIq49zWtXoFiiSQRI+yC8zdls8oKK38=","crlite_enrolled":true,"id":"009aa822-146e-46a3-a719-3dcd9bf7e8e3","last_modified":1600461980775},{"schema":1592519326661,"derHash":"avXE6sGAKJuUp3pdIx44Zf/pNPPmokv0h+tOK/2Amks=","subject":"CN=DigiCert Secure Site CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJjAkBgNVBAMTHURpZ2lDZXJ0IFNlY3VyZSBTaXRlIENOIENBIEcz","whitelist":false,"attachment":{"hash":"743079f69e24d2afafbe5dd936ba2cfc2f9326699f40d7bb7f26e940a110daa9","size":1804,"filename":"TbrK7tI1CsyZLKNdMvoHsV863GbcuERLt4LWrjChCv0=.pem","location":"security-state-staging/intermediates/8026b161-5f15-4e50-9e04-efeab78566fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TbrK7tI1CsyZLKNdMvoHsV863GbcuERLt4LWrjChCv0=","crlite_enrolled":true,"id":"ad68756a-4b01-
4086-81fb-9969fb748de3","last_modified":1600461980756},{"schema":1591908256929,"derHash":"xssItdbf5GGuzpqjzwOvf+0TQcnm7gBSEpwnynVJM/I=","subject":"CN=HARICA Qualified Legal Entities SubCA R3,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGXMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTExMC8GA1UEAwwoSEFSSUNBIFF1YWxpZmllZCBMZWdhbCBFbnRpdGllcyBTdWJDQSBSMw==","whitelist":false,"attachment":{"hash":"15186c02c3df74416fd0f87801be6425aa3a0e406c53fd492f830a54cc92d12e","size":2544,"filename":"e-dd9g8VZXXMsr7G7fKcXN7tMA9ukaEjSLgZF2ICfqc=.pem","location":"security-state-staging/intermediates/80dd46f5-d545-40df-895f-23e2ea8d22af.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e+dd9g8VZXXMsr7G7fKcXN7tMA9ukaEjSLgZF2ICfqc=","crlite_enrolled":false,"id":"283da37c-85ac-496a-ba61-80ed629f1f7e","last_modified":1591908420097},{"schema":1591908255464,"derHash":"Z/Ym
Zm9F8XvCPH3e/5joVqpvLhhJ9dfhOS0YnrZte7Y=","subject":"CN=TrustCor OV Code Signing CA - G2 - RSA,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MGQxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xLzAtBgNVBAMMJlRydXN0Q29yIE9WIENvZGUgU2lnbmluZyBDQSAtIEcyIC0gUlNB","whitelist":false,"attachment":{"hash":"ddfe34bed60cad4d57b2e8417bba93ac215d0d0e840345142b03f395008543ce","size":2410,"filename":"iNMsaPqm4Y4GBd1dQ8pIwhWcEiF-oQ5TSyxyIysvIrw=.pem","location":"security-state-staging/intermediates/9e5d4cf9-fb23-4745-9ce6-a087b871d619.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iNMsaPqm4Y4GBd1dQ8pIwhWcEiF+oQ5TSyxyIysvIrw=","crlite_enrolled":false,"id":"d28c346b-415c-4cc5-9c09-487a46fab821","last_modified":1591908420093},{"schema":1591908258704,"derHash":"Hdniosh1+Qbfh6dbuSG6ureyrFwNL3iXWz70TTiEQw8=","subject":"CN=TrustCor OV TSA CA - G2 - RSA,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFsxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJj
AkBgNVBAMMHVRydXN0Q29yIE9WIFRTQSBDQSAtIEcyIC0gUlNB","whitelist":false,"attachment":{"hash":"6ec3d34afb73dd44ae301e1e6f0a88bfab245afafd5ea585c3b265293a072f79","size":2373,"filename":"1jVOPg4ry58GnR2_TFxGoDvcplP9fgYirn7IFdbUyC8=.pem","location":"security-state-staging/intermediates/66f59a5b-00d0-4d69-ac6d-d179a9c00001.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1jVOPg4ry58GnR2/TFxGoDvcplP9fgYirn7IFdbUyC8=","crlite_enrolled":false,"id":"a770b1e9-9624-43aa-8f7e-5bff4eb600b6","last_modified":1591908420089},{"schema":1591908251155,"derHash":"Xun1cEg2BnWCXDrJQ5R8wTnEpiNoWQ68GVZiBVVJx6A=","subject":"CN=TrustCor OV TSA CA - G2,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFUxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xIDAeBgNVBAMMF1RydXN0Q29yIE9WIFRTQSBDQSAtIEcy","whitelist":false,"attachment":{"hash":"69adbaf65c55ef987d6666699aecc848786f8f9f06e2d00ed3bc77f76a5b48c0","size":2483,"filename":"d_caspjhmZltcVsqecvlCTBnVD8N3iuX2zSiNPeUluk=.pem","location":"
security-state-staging/intermediates/edc45158-fbf7-4c73-a277-ac4bd7ae90b3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"d/caspjhmZltcVsqecvlCTBnVD8N3iuX2zSiNPeUluk=","crlite_enrolled":false,"id":"8074dbab-0f4a-4d83-86d4-04f377d177ba","last_modified":1591908420086},{"schema":1591908252552,"derHash":"rdvoi0aBVM+Pd3MojIxQ92CHnkkIkqqScoFbgU5yHn0=","subject":"CN=HARICA Qualified Natural Entities SubCA R3,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGZMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEzMDEGA1UEAwwqSEFSSUNBIFF1YWxpZmllZCBOYXR1cmFsIEVudGl0aWVzIFN1YkNBIFIz","whitelist":false,"attachment":{"hash":"6c52992f4d66e47d6bc189688395f1d9b653b4ee61b4f9e7ba93bdf82f90d707","size":2548,"filename":"Pms5vxD68EJwYxeOKxJ-6ilislMxv6HNu2tpcnKXIMU=.pem","location":"security-state-staging/intermediates/111e670d-debd-4ffe-a437-edb530691a7b.pem","mimetype":"a
pplication/x-pem-file"},"pubKeyHash":"Pms5vxD68EJwYxeOKxJ+6ilislMxv6HNu2tpcnKXIMU=","crlite_enrolled":false,"id":"6093d7f2-f99d-4c21-8ee3-9a9b80983545","last_modified":1591908420082},{"schema":1591908260103,"derHash":"Dxfjdv6U5YLW7mSc3FFv+XfnZcVhrgh/MaP16OZszs0=","subject":"CN=MULTICERT SSL Certification Authority 005,OU=Certification Authority,O=MULTICERT - Servi\u00e7os de Certifica\u00e7\u00e3o Electr\u00f3nica S.A.,C=PT","subjectDN":"MIGnMQswCQYDVQQGEwJQVDFCMEAGA1UECgw5TVVMVElDRVJUIC0gU2VydmnDp29zIGRlIENlcnRpZmljYcOnw6NvIEVsZWN0csOzbmljYSBTLkEuMSAwHgYDVQQLDBdDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEyMDAGA1UEAwwpTVVMVElDRVJUIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAwMDU=","whitelist":false,"attachment":{"hash":"7c1eb5e82b6b98c5fbb2cc2e946e862c3e9603db9030601769545d27dfc680ab","size":2710,"filename":"SnDcth-CFMtKqv8C-vvYUiVswx8i9btebkBPGF9jAbg=.pem","location":"security-state-staging/intermediates/8a7a0501-5a3d-44a9-9174-ddbbcbe9051c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SnD
cth+CFMtKqv8C+vvYUiVswx8i9btebkBPGF9jAbg=","crlite_enrolled":false,"id":"66431be4-4652-4565-bed9-271b8a5ecc9c","last_modified":1591908420078},{"schema":1591908243825,"derHash":"igI8COShqsySWzTFx5ZajQUnVlrqEwq7kV5QjNM6+0U=","subject":"CN=GeoTrust RSA CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFUdlb1RydXN0IFJTQSBDTiBDQSBHMw==","whitelist":false,"attachment":{"hash":"1c253f34ef8fb2a9d6743df4e53b8c564f86da911d0aee06adf0de306c22beb7","size":1792,"filename":"Z8gGiWQqJBlCkkMEDLNWwgA7ptFGYD644CqzC-fWQBE=.pem","location":"security-state-staging/intermediates/da3b185f-0b51-4749-b8bc-791ebfd15fc9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z8gGiWQqJBlCkkMEDLNWwgA7ptFGYD644CqzC+fWQBE=","crlite_enrolled":false,"id":"9c0eb9aa-b6ce-452b-9c28-80f98e51306b","last_modified":1591908420075},{"schema":1591908254121,"derHash":"GYvM8E55tCt8oo88Hq75phQ5LsxDugAK6nd+PXCKsfw=","subject":"CN=TrustCor IV TSA CA - G2,O=TrustCor Systems S
. de R.L.,C=PA","subjectDN":"MFUxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xIDAeBgNVBAMMF1RydXN0Q29yIElWIFRTQSBDQSAtIEcy","whitelist":false,"attachment":{"hash":"e538e57c2db6d21be93f1f9d530ffe21255eb9564f89c4f57a8b5dfee1db83e6","size":1792,"filename":"BcOVIft6Aa3I0Epsv8lbkAjkC8BYiOf4PL9PpPN24ME=.pem","location":"security-state-staging/intermediates/ac3a4076-5275-48cb-b805-73ea185a8dd6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BcOVIft6Aa3I0Epsv8lbkAjkC8BYiOf4PL9PpPN24ME=","crlite_enrolled":false,"id":"4f5b63f1-53f9-473d-8f4b-9fb17c89e6b5","last_modified":1591908420071},{"schema":1591908249702,"derHash":"RwjdbQktf7WVj1tDUB9hc/uWae2wWv1LvM3dLVBo2NA=","subject":"CN=NBN CO Limited Public Issuing CA - G3,O=NBN Co Limited,C=AU","subjectDN":"MFYxCzAJBgNVBAYTAkFVMRcwFQYDVQQKEw5OQk4gQ28gTGltaXRlZDEuMCwGA1UEAxMlTkJOIENPIExpbWl0ZWQgUHVibGljIElzc3VpbmcgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"35095ff447bac3e1f428c0d591589efb625ae06c8da9a3771baf
a7a54eaa07ea","size":1979,"filename":"gN_XmPns3r-Tbn-lkGyIDLxbLl0lVx5A-u0anA34Css=.pem","location":"security-state-staging/intermediates/5c4df234-31b6-4f83-b408-9ea720930655.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gN/XmPns3r+Tbn+lkGyIDLxbLl0lVx5A+u0anA34Css=","crlite_enrolled":false,"id":"f2f582d9-505a-4589-a18d-d9f70347e84c","last_modified":1591908420067},{"schema":1591908246671,"derHash":"FhSDQzEmNqwQtnlG87RSRvrhCxiP10lEKfTlFBdwnjk=","subject":"CN=TrustCor IV Code Signing CA - G2,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MF4xCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xKTAnBgNVBAMMIFRydXN0Q29yIElWIENvZGUgU2lnbmluZyBDQSAtIEcy","whitelist":false,"attachment":{"hash":"4d46a09d4ee7352f08502d4721c53275065e5acc36b5bc3396acb9aa1357bd49","size":1804,"filename":"NNZ-Qjfj6rAm3CfD2zqpQShEqkK41UzTIGWJhlN2bww=.pem","location":"security-state-staging/intermediates/8fc46347-ec1a-42b8-bbf5-4b52d947a95b.pem","mimetype":"application/x-pem-file"},"pubKey
Hash":"NNZ+Qjfj6rAm3CfD2zqpQShEqkK41UzTIGWJhlN2bww=","crlite_enrolled":false,"id":"7913159f-41dd-4bb6-acfc-cd380f6bf5cf","last_modified":1591908420064},{"schema":1591908239339,"derHash":"mOajHV3KWkpNVWV+35TdDUSBVUnuqmNgrWnVWCQdRro=","subject":"CN=TrustCor IV TSA CA - G2 - RSA,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFsxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJjAkBgNVBAMMHVRydXN0Q29yIElWIFRTQSBDQSAtIEcyIC0gUlNB","whitelist":false,"attachment":{"hash":"8bfa506d32d10c6528ea412e42a0d855ba7723dfe606ff19f0e40fe5fde89031","size":1678,"filename":"CsfHattDE4htH2z5II2WNywRRT9YaOXpOx4wtM_8LlI=.pem","location":"security-state-staging/intermediates/45d1ffad-718a-40e3-88d2-f0114ef3d216.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CsfHattDE4htH2z5II2WNywRRT9YaOXpOx4wtM/8LlI=","crlite_enrolled":false,"id":"b7f95b53-bebf-41cf-b830-690df9cc21aa","last_modified":1591908420059},{"schema":1591908245176,"derHash":"UGWE8Z53dAahawtrgU5mmhH01Kqh5zhkvf2VuyPF+WE
=","subject":"CN=TrustCor IV Code Signing CA - G2 - RSA,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MGQxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xLzAtBgNVBAMMJlRydXN0Q29yIElWIENvZGUgU2lnbmluZyBDQSAtIEcyIC0gUlNB","whitelist":false,"attachment":{"hash":"cf590adb24b61ce55d52164c9a4d6c27c2436330ff35fcb41ec4b62ddd3a7b1e","size":1715,"filename":"JBOYzlgICSKcHIvX9_5QkncM_Z34f2lDBKwwj4Jdjaw=.pem","location":"security-state-staging/intermediates/7772d5b3-5c72-4498-a98b-27e0bd4507f6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JBOYzlgICSKcHIvX9/5QkncM/Z34f2lDBKwwj4Jdjaw=","crlite_enrolled":false,"id":"cb96c308-4047-4032-a68c-949e1f543ae3","last_modified":1591908420054},{"schema":1591908237803,"derHash":"3wJdzio2QRvl62WQwWHv0mUuwrP3DVxlH5DQI8RvOgA=","subject":"CN=Enterprise Premium Public CA,O=Mitsubishi Electric Information Network Corporation,C=JP","subjectDN":"MHIxCzAJBgNVBAYTAkpQMTwwOgYDVQQKEzNNaXRzdWJpc2hpIEVsZWN0cmljIEluZm9ybWF0aW9uIE5ldHdvcmsgQ2
9ycG9yYXRpb24xJTAjBgNVBAMTHEVudGVycHJpc2UgUHJlbWl1bSBQdWJsaWMgQ0E=","whitelist":false,"attachment":{"hash":"349b15c3f214b888d6f6a4b46c954070b45c19cb06c1ab8d5e1ba9af1f45fdba","size":2003,"filename":"9lt_Fzns7hF03gLZXsgVEGOFYGx2FHKYDGJ_mLKiYOQ=.pem","location":"security-state-staging/intermediates/b9978482-c255-4c65-b859-e48b280ba0b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9lt/Fzns7hF03gLZXsgVEGOFYGx2FHKYDGJ/mLKiYOQ=","crlite_enrolled":false,"id":"e4d0a3e7-9fd9-4cbd-88ed-66cdec39ce70","last_modified":1591908420049},{"schema":1591908240858,"derHash":"ZGFrYoINRY98ceNEnszz8+RzW3aHmGDBxmDfI0OGB+o=","subject":"CN=DigiCert Trust Service CA G1,O=DigiCert Inc,C=US","subjectDN":"MEsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJTAjBgNVBAMTHERpZ2lDZXJ0IFRydXN0IFNlcnZpY2UgQ0EgRzE=","whitelist":false,"attachment":{"hash":"8f3bd7702431a74663d155fff1053e6a21a12d31b04d933bf288ac32b921b34d","size":1833,"filename":"QxsK1VHNknY5S-B94-JqCZPJWfnMPftvWK4_FNOB6V0=.pem","location":"securi
ty-state-staging/intermediates/f6b4b592-197e-4d6d-8689-a50686e47427.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QxsK1VHNknY5S+B94+JqCZPJWfnMPftvWK4/FNOB6V0=","crlite_enrolled":false,"id":"542da68e-9ecf-40ae-95ca-47a2d82da288","last_modified":1591908420041},{"schema":1591908248234,"derHash":"Ut3on91vYQRz+TFMeosaxEL4qoM6pddzAG/adYyf8ew=","subject":"CN=GeoTrust ECC CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFUdlb1RydXN0IEVDQyBDTiBDQSBHMw==","whitelist":false,"attachment":{"hash":"e06f12d6e0b15958641d81bbc87c7e33098dcc36413ea0b92cdc4e4543a9f083","size":1321,"filename":"htzU8zBrdwmMNFLvW_ZzkFTZcn95rIZbtuXmmiR6prc=.pem","location":"security-state-staging/intermediates/da92e448-1975-4ac4-8055-a07ffe8cc9d4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"htzU8zBrdwmMNFLvW/ZzkFTZcn95rIZbtuXmmiR6prc=","crlite_enrolled":false,"id":"88abec4b-eb1e-406d-bc4b-5b94bef1b7d9","last_modified":1591908420022},{"schema":15
91908242250,"derHash":"LJfYbJSXYjw80JindbmbUK4Kk6pXIjWLid9jbHOeqiQ=","subject":"CN=TrustCor OV Code Signing CA - G2,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MF4xCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xKTAnBgNVBAMMIFRydXN0Q29yIE9WIENvZGUgU2lnbmluZyBDQSAtIEcy","whitelist":false,"attachment":{"hash":"ef0aab26ac8bd0928a9d66d5daef52f3a25eeb827d1e043a71c60577efd7bf90","size":2495,"filename":"8R2HhqEOvFRlo8eJ7ZRC7QNG2WAYSUwQZJ0DIpmsPTg=.pem","location":"security-state-staging/intermediates/92acae6d-6fa5-4775-a134-7b54bd6fce8b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8R2HhqEOvFRlo8eJ7ZRC7QNG2WAYSUwQZJ0DIpmsPTg=","crlite_enrolled":false,"id":"013d2fce-1b00-4e3a-a1e6-8adb2b7f1539","last_modified":1591908420018},{"schema":1591908261553,"derHash":"VlyCcCtexjICdU1PS3bMO64ypMkUbtO+zXOkBP+tTN4=","subject":"CN=UTN-USERFirst-Client Authentication and Email,OU=http://www.usertrust.com,O=The USERTRUST Network,L=Salt Lake City,ST=UT,C=US","subjectDN":"
MIGuMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQxFzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRydXN0LmNvbTE2MDQGA1UEAxMtVVROLVVTRVJGaXJzdC1DbGllbnQgQXV0aGVudGljYXRpb24gYW5kIEVtYWls","whitelist":false,"attachment":{"hash":"1d9a2d179a6bd77673a2997822c24eb83c91358de300c97d4a73f66949753211","size":1674,"filename":"Laj56jRU0hFGRko_nQKNxMf7tXscUsc8KwVyovWZotM=.pem","location":"security-state-staging/intermediates/510154be-a7ff-4d30-ac0f-47117e4efac6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Laj56jRU0hFGRko/nQKNxMf7tXscUsc8KwVyovWZotM=","crlite_enrolled":false,"id":"f8a064f9-72f6-4b80-82ab-21209517e607","last_modified":1591908420004},{"schema":1591908261181,"derHash":"BwUxODzNEA0+nNlk2weqXoRaBoby6uO8imJ7GCBXsfE=","subject":"CN=WoTrus EV SSL Pro CA,O=WoTrus CA Limited,C=CN","subjectDN":"MEgxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1RydXMgQ0EgTGltaXRlZDEdMBsGA1UEAxMUV29UcnVzIEVWIFNTTCBQcm8gQ0E=","whitelist":false,"attachment":{"ha
sh":"7be2ec04c8313dc05a7e0bef9687e9b6f04e6acceb8e83e4058ae0bf0657219d","size":1845,"filename":"rBTvvFbWGhKxAPrEAJ1x8vttBOVCvRznd5h2iXt2ATs=.pem","location":"security-state-staging/intermediates/fb7112f9-ebcd-4924-94f2-c22ec2b2f71e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rBTvvFbWGhKxAPrEAJ1x8vttBOVCvRznd5h2iXt2ATs=","crlite_enrolled":false,"id":"2e485221-a36c-44c6-9a72-4f500ee13bf3","last_modified":1591908419995},{"schema":1591908262427,"derHash":"M3xiU3dZLx38xuZWMcYF64uW4AwUa0N/wfBnJoFU6Vk=","subject":"CN=CA Teknikoa - CA Tecnica,OU=AZZ Ziurtagiri publikoa - Certificado publico SCA,O=IZENPE S.A.,C=ES","subjectDN":"MIGCMQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xOjA4BgNVBAsMMUFaWiBaaXVydGFnaXJpIHB1Ymxpa29hIC0gQ2VydGlmaWNhZG8gcHVibGljbyBTQ0ExITAfBgNVBAMMGENBIFRla25pa29hIC0gQ0EgVGVjbmljYQ==","whitelist":false,"attachment":{"hash":"0c9abfeebfbd944291d27dfed50b0748b9adc5e8a3e675787d264631975bf3fa","size":2523,"filename":"DQi2term9F9bDPt5Nfb1rvSpznThwvfs2UDIgalF_gU=.pe
m","location":"security-state-staging/intermediates/4f1d16ba-fc95-4a1f-a3f9-da34f76cd637.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DQi2term9F9bDPt5Nfb1rvSpznThwvfs2UDIgalF/gU=","crlite_enrolled":false,"id":"a8fcbf40-670e-4659-b931-283e4034014e","last_modified":1591908419993},{"schema":1591908261922,"derHash":"FOOEZJqkAfHRyr1fo9CKvoLxS32ubFYVsc191B6XUOM=","subject":"CN=UTN-USERFirst-Client Authentication and Email,OU=http://www.usertrust.com,O=The USERTRUST Network,L=Salt Lake City,ST=UT,C=US","subjectDN":"MIGuMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQxFzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRydXN0LmNvbTE2MDQGA1UEAxMtVVROLVVTRVJGaXJzdC1DbGllbnQgQXV0aGVudGljYXRpb24gYW5kIEVtYWls","whitelist":false,"attachment":{"hash":"13e9b1674386c0c79e7249e0a15c3c2a7a26566c25cabf53498bce266477b0ab","size":1748,"filename":"Laj56jRU0hFGRko_nQKNxMf7tXscUsc8KwVyovWZotM=.pem","location":"security-state-staging/intermediates/27474
a2a-2668-4899-9441-3d21b2a180a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Laj56jRU0hFGRko/nQKNxMf7tXscUsc8KwVyovWZotM=","crlite_enrolled":false,"id":"057b5891-6e79-4a5c-82ac-96cc6b60a971","last_modified":1591908419990},{"schema":1591167089365,"derHash":"6h87+00ylrRn1LWCVZ1lGNZ21a/H0cJL6AJS95GRBG8=","subject":"CN=Thawte EV ECC CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHzAdBgNVBAMTFlRoYXd0ZSBFViBFQ0MgQ04gQ0EgRzI=","whitelist":false,"attachment":{"hash":"6600278f549dbae28e5eccd7c6d67369706158aee73bf69487e3b23a4b7ddaf2","size":1349,"filename":"3GFGMg3yja_Gu8_Fov8gNPJ7b50vsniti0_Jy-xvY9A=.pem","location":"security-state-staging/intermediates/add88934-8005-4e38-b32f-7fc51dfffed1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3GFGMg3yja/Gu8/Fov8gNPJ7b50vsniti0/Jy+xvY9A=","crlite_enrolled":false,"id":"af76e31b-fcae-4185-b725-666687e288ef","last_modified":1591199862513},{"schema":1591167082089,"derHash":"77RIRPN+5t4/
tMyNLAyDL8j+66lQYjfg0fx61FdKTMo=","subject":"CN=University of Western Macedonia TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGBMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTE5MDcGA1UEAwwwVW5pdmVyc2l0eSBvZiBXZXN0ZXJuIE1hY2Vkb25pYSBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"34785736752f18d257707426251597f0daa53471c56c0f47a301e173c27e43ba","size":2848,"filename":"kTSX_4RoREKHkIC-2xr1SaXHZsAeaVcmjRu6cQGraoE=.pem","location":"security-state-staging/intermediates/a44e6dfa-6c78-4c11-ad62-016557267d7b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kTSX/4RoREKHkIC+2xr1SaXHZsAeaVcmjRu6cQGraoE=","crlite_enrolled":false,"id":"91a2b5ee-075a-4618-bd8f-4d04cf5ccddf","last_modified":1591199862511},{"schema":1591167083551,"derHash":"wwvJZn4nOTeDPDlq2F7jJd5jP0/MxRSDQXqcik4zs50=","subject":"CN=Baidu\\, Inc. EV CA,O=Baidu\\, Inc.,C=CN","subjectDN":"MD8xCzAJBgNVBAYTAkNOMRQwEgYDVQQKEwtCY
WlkdSwgSW5jLjEaMBgGA1UEAxMRQmFpZHUsIEluYy4gRVYgQ0E=","whitelist":false,"attachment":{"hash":"296487ea789ddbc074c95c8a463b37b717d3a6c661a41bcb0dfd1a6ee7de489b","size":2097,"filename":"onoL2w__80DVMiDBAhLw1xZS_BfLNB7xpPDNOU-t5vE=.pem","location":"security-state-staging/intermediates/66b05ddd-742a-4677-a64c-14bc59b1ff6c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"onoL2w//80DVMiDBAhLw1xZS/BfLNB7xpPDNOU+t5vE=","crlite_enrolled":false,"id":"48a4c34d-ae22-4bed-a3e3-7c45741571fe","last_modified":1591199862505},{"schema":1591167073329,"derHash":"bsjTVRvQRUsMxLnbh2Nmrgh2TF/PFbAPlBG94w1TNq4=","subject":"CN=Harokopio University Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHAMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTEwLwYDVQQDDChIYXJva29waW8gVW5pdmVyc2l0eSB
DbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"dba0350edbfdcc712ff95f2aa7545bf242512d280fbf9f00eb896c1adb172dfa","size":3108,"filename":"qyD-jU59xuSNhgaWYyihJ7dWdsGFxoMvakE0j5xjD58=.pem","location":"security-state-staging/intermediates/c71e16a6-5051-4aec-805d-bdf273356535.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qyD+jU59xuSNhgaWYyihJ7dWdsGFxoMvakE0j5xjD58=","crlite_enrolled":false,"id":"34b45359-b190-4d3f-9191-c6d59ac0eded","last_modified":1591199862502},{"schema":1591167080617,"derHash":"53rALbbqoOmmtXOpmHDG3029uDOd2jvEB4b3DivX9/Y=","subject":"CN=Athens University of Economics and Business Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHXMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMUgwRgYDVQQDDD9BdGhlbnMgVW5pdmVyc2l0eSBvZiBFY2
9ub21pY3MgYW5kIEJ1c2luZXNzIENsaWVudCBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"1e3cb2c9ecca76313a725db387ac067371fbea9fc0ce4ce7d60c9ede6f74bf54","size":2950,"filename":"3IfeeqbDX_0ezFEcTXsTFVdG9GzLQIlDyy4VhgHxzS4=.pem","location":"security-state-staging/intermediates/54bf59a7-d689-4acd-bf6e-3101a05ef2c1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3IfeeqbDX/0ezFEcTXsTFVdG9GzLQIlDyy4VhgHxzS4=","crlite_enrolled":false,"id":"3aea72b3-3960-455b-b711-025fdab94667","last_modified":1591199862497},{"schema":1591167071907,"derHash":"5Xu/UHn5gpO0FC80iXLmjjUeUrkDc/BfRvCcyzCvW/A=","subject":"CN=Democritus University of Thrace Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHLMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTwwOgYDVQQDDDNEZW1vY3JpdHVzI
FVuaXZlcnNpdHkgb2YgVGhyYWNlIENsaWVudCBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"ea40db8a47367dd54c7678ae623e536b940224acac4e453074d7530c35cb3164","size":3754,"filename":"3QvO-bCh_CHkx1PzWSKQKGbIBtURouotLTwEHyZIxdg=.pem","location":"security-state-staging/intermediates/532ef40b-a9e4-413d-a1e1-d0aa802e5956.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3QvO+bCh/CHkx1PzWSKQKGbIBtURouotLTwEHyZIxdg=","crlite_enrolled":false,"id":"2500e750-51f7-4bfa-b14c-410eee994700","last_modified":1591199862494},{"schema":1591167076191,"derHash":"WOifT3BBDaALQUc8+kE/oHN+0nKfPtd74pp/RwU3cUc=","subject":"CN=Thawte ECC CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHDAaBgNVBAMTE1RoYXd0ZSBFQ0MgQ04gQ0EgRzI=","whitelist":false,"attachment":{"hash":"4b60a802a42e6e4c05c687e45fc85a906f057a59607855889909b6b0d8b54554","size":1317,"filename":"0dJZS0XpXAP9EPdQcU6sdSVE8gQj1YnY-X4H-exCnC0=.pem","location":"security-state-staging/intermediates/b
6d2ca16-612a-4f12-b4de-bdc927f057ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0dJZS0XpXAP9EPdQcU6sdSVE8gQj1YnY+X4H+exCnC0=","crlite_enrolled":false,"id":"114db227-c822-4ad8-bc85-78ec38af7372","last_modified":1591199862491},{"schema":1591167085011,"derHash":"dayOQdmnzHWNOZj+Aw9jjP0ohVgj2k6bVpVM+94FTrY=","subject":"CN=DigiCert Trust Service CA,O=DigiCert Inc,C=US","subjectDN":"MEgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxIjAgBgNVBAMTGURpZ2lDZXJ0IFRydXN0IFNlcnZpY2UgQ0E=","whitelist":false,"attachment":{"hash":"a6a66b7af55471e0b38711d7f08e2851582c3a9a4fa4a8c11ffd63d8796ffc4e","size":1849,"filename":"gEh9s2cJ3MLV50ZxAV4m1LscTzkQpFmUa1bCYZBMYEM=.pem","location":"security-state-staging/intermediates/30d35091-2272-41b0-8d63-8aa9c6a7253d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gEh9s2cJ3MLV50ZxAV4m1LscTzkQpFmUa1bCYZBMYEM=","crlite_enrolled":false,"id":"f0d3ef47-0140-4de4-8a17-349ba642faf7","last_modified":1591199862488},{"schema":1591167077621,"derHash":"F
tnelFpCgBH6OggyPaDkNHQ49a8c4+gCgyI+JaRsKp4=","subject":"CN=GEANT Personal CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEYxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMRwwGgYDVQQDExNHRUFOVCBQZXJzb25hbCBDQSA0","whitelist":false,"attachment":{"hash":"73692dd6b71347619e873c420c2d14921c90d06d40eef62de1dd6e50b7f88c6c","size":2450,"filename":"gKNaaLTb-FNPxezlz9qfuHiINdFBc6WBAavUqmlBe6g=.pem","location":"security-state-staging/intermediates/7a3ca483-65a7-42ca-9486-496ebb6c28b9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gKNaaLTb+FNPxezlz9qfuHiINdFBc6WBAavUqmlBe6g=","crlite_enrolled":false,"id":"230a150f-d7b7-4b76-a970-cc4f56ac6428","last_modified":1591199862485},{"schema":1591167087942,"derHash":"8La3WY3yeQRxVSYy66nN5tNJBl/G1mWVf57u9ae7JPI=","subject":"CN=TrustCor DV SSL CA - G2,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFUxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xIDAeBgNVBAMMF1RydXN0Q29yIERWIFNTTCBDQSAtIEcy","whitelist":false,"attachment
":{"hash":"55baa0feb441643563e5145eadf1edc0e02ae8038105624c584bb56a289bf41d","size":1804,"filename":"joJVEgkWNcXOGzwqvqRUGUI1s5Dz-sm7yE2V6LjAa9A=.pem","location":"security-state-staging/intermediates/2eb164f7-eecd-451b-a136-542653e6f4f9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"joJVEgkWNcXOGzwqvqRUGUI1s5Dz+sm7yE2V6LjAa9A=","crlite_enrolled":false,"id":"100d0005-d64d-4678-9a8a-b4bdf571825a","last_modified":1591199862482},{"schema":1591167070504,"derHash":"Ok7AN5MHig3sFN5w5XvX+wO/Yv8pzuK2FH44ogjXIak=","subject":"CN=Trust Italia Class 1 Consumer Individual Subscriber CA - G3,O=Trust Italia S.p.A.,C=IT","subjectDN":"MHExCzAJBgNVBAYTAklUMRwwGgYDVQQKExNUcnVzdCBJdGFsaWEgUy5wLkEuMUQwQgYDVQQDEztUcnVzdCBJdGFsaWEgQ2xhc3MgMSBDb25zdW1lciBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"e2adf285776a91d6521266dfe60be2a2db10c624e80bf05ae97589ba714509a6","size":1752,"filename":"dfgf335FqF0Y0eTCH64ilFM_xC3YeT00OdPeMai8sc4=.pem","location":"security-stat
e-staging/intermediates/966eaf80-4841-49df-b8f9-750be2fd7f7e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dfgf335FqF0Y0eTCH64ilFM/xC3YeT00OdPeMai8sc4=","crlite_enrolled":false,"id":"2a196fcc-f810-4d55-84e4-93d5649fc1e5","last_modified":1591199862480},{"schema":1591167068979,"derHash":"vUQgxZKm9/JSromBJOAC8bnP4fJTiGTVazSntN+zH8g=","subject":"CN=Greek Universities Network Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHGMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTcwNQYDVQQDDC5HcmVlayBVbml2ZXJzaXRpZXMgTmV0d29yayBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"3538047cb62ad089be4f013252357132586b290e06995041bb69677e17b8b668","size":2881,"filename":"eClYCfzKv6P76tWqfScdObnNeoNSeykW6trew89MfYM=.pem","location":"security-state-staging/in
termediates/b80462a6-6676-4df4-a32c-d62f8671081d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eClYCfzKv6P76tWqfScdObnNeoNSeykW6trew89MfYM=","crlite_enrolled":false,"id":"5432729e-8e88-4b49-8687-b320365e9e8a","last_modified":1591199862477},{"schema":1591167067557,"derHash":"/AG1j8eLnFkhF4TC4lvx0BKh4j8zchiEemLrQUXuSrY=","subject":"CN=GeoTrust EV ECC CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGEdlb1RydXN0IEVWIEVDQyBDTiBDQSBHMg==","whitelist":false,"attachment":{"hash":"a71cb7825b1dcf648f03a80a46f1bd37d9455ca249fb68a85c6ecf9a15848e99","size":1370,"filename":"aDb4btQIVH2hsyd4IxUsJGinBpyh-phY6PF4IHasdAw=.pem","location":"security-state-staging/intermediates/c09c55b5-14e7-4603-a7a9-e7c0bc70e59b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aDb4btQIVH2hsyd4IxUsJGinBpyh+phY6PF4IHasdAw=","crlite_enrolled":true,"id":"4efbcf92-bf3d-47eb-a092-4b861635e97f","last_modified":1591199862471},{"schema":1591167058628,"
derHash":"99utEui2K4N7p/agHhZymZz69pKWWbgbB/JTV2KB970=","subject":"CN=Microsoft Azure TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMg==","whitelist":false,"attachment":{"hash":"58df8d69047ece6fc6c0574d72432af6c16e5891bf2288364d4f01eebe585ad2","size":2276,"filename":"zAwfx2iFcQ5vMOCc9vt-MXLdLl08EquNsOWgDF0hOw8=.pem","location":"security-state-staging/intermediates/db52ffd9-3a42-42ba-8d9c-fc19090d2447.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zAwfx2iFcQ5vMOCc9vt+MXLdLl08EquNsOWgDF0hOw8=","crlite_enrolled":true,"id":"c8857033-8969-438b-9ca1-33b6315bf546","last_modified":1591199862469},{"schema":1591167064529,"derHash":"wCk9W8NXY05tfKK/u3qhGFUz0s4JqgiDPTevWEZhXFY=","subject":"CN=TrustCor OV Email CA - G2 - RSA,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MF0xCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xKDAmBgNVBA
MMH1RydXN0Q29yIE9WIEVtYWlsIENBIC0gRzIgLSBSU0E=","whitelist":false,"attachment":{"hash":"27952ee3cf848c1c572a7bc0277c75c118c8dbec11a0224bd318870efa2f642e","size":2385,"filename":"TcTNufQAyMrXUOohYwD5emGgQ5j6I9N3jwzAzPt28sE=.pem","location":"security-state-staging/intermediates/56545cc0-b857-4c4f-98ee-c974db77f53e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TcTNufQAyMrXUOohYwD5emGgQ5j6I9N3jwzAzPt28sE=","crlite_enrolled":false,"id":"5186c50e-d721-4e7b-af5f-3331785a2ac5","last_modified":1591199862466},{"schema":1591167061645,"derHash":"nDPLanZZZ1Kgx+UcctSAznh2x3J5Tr7lhB+gcDXm6OA=","subject":"CN=Telenor Norge AS Dealer G2 CA,O=Telenor Norge AS,C=NO","subjectDN":"MFAxCzAJBgNVBAYTAk5PMRkwFwYDVQQKExBUZWxlbm9yIE5vcmdlIEFTMSYwJAYDVQQDEx1UZWxlbm9yIE5vcmdlIEFTIERlYWxlciBHMiBDQQ==","whitelist":false,"attachment":{"hash":"7845072fc6f1b355f9345a6ce52a2438a06f31436f734a5d5b37130bbdb64d31","size":1959,"filename":"9gdYrOp6FaFqRJ5-QJcz3vpuYebgu7hh-Vw15jpzzKk=.pem","location":"security-stat
e-staging/intermediates/074f8517-9c34-4b75-88e0-2c24b553379c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9gdYrOp6FaFqRJ5+QJcz3vpuYebgu7hh+Vw15jpzzKk=","crlite_enrolled":false,"id":"25439fab-5fb0-406f-902f-84a905579e0f","last_modified":1591199862463},{"schema":1591167063096,"derHash":"LRskT6zq+tlHVbXpmqv3rJHFmdpzv6Rh7uuvtLlptck=","subject":"CN=Panteion Univ. of Social and Political Sciences Client SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHXMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMUgwRgYDVQQDDD9QYW50ZWlvbiBVbml2LiBvZiBTb2NpYWwgYW5kIFBvbGl0aWNhbCBTY2llbmNlcyBDbGllbnQgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"9e41c8f1b7df552a4c991c34ef28ac4b6de98f4abf712a108a103a343b0ee714","size":3048,"filename":"xQvovgfn-eQF_oAgGtY1VdtWF8Cy81x6M6y01IOUqRQ=.p
em","location":"security-state-staging/intermediates/803b8ba4-75d3-4b10-9089-3b52e7662628.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xQvovgfn+eQF/oAgGtY1VdtWF8Cy81x6M6y01IOUqRQ=","crlite_enrolled":false,"id":"8213c2b2-aa66-4314-ae1d-26f7b9562096","last_modified":1591199862460},{"schema":1591167054203,"derHash":"6VKbQo+2c5C8ZFXXm6JDToFsVP5PNZkwy3Cdslb935Q=","subject":"CN=DigiCert High Assurance Trust Service ECC EV CA,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxODA2BgNVBAMTL0RpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIFRydXN0IFNlcnZpY2UgRUNDIEVWIENB","whitelist":false,"attachment":{"hash":"de06436b3a21e829632e0b079103d0155f88adbdbc35e4184178d5e16626e73e","size":1431,"filename":"MMkARzLCDka9T1FV6sAvs-cZUAaL2QbYfVCCeg3D0W8=.pem","location":"security-state-staging/intermediates/e2efbea3-a3f8-4d7b-9645-ba2d190125e6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MMkARzLCDka9T1FV6sAvs+cZUAaL2QbYfVCCeg3D0W8=","crlite_enrolled":false,"id":"a
9e0d855-db12-4790-a733-58040361f588","last_modified":1591199862458},{"schema":1591167060249,"derHash":"e2ugsXNlgQElA5XVR2QwN6aCFhVScLybpGs1jDt36Q4=","subject":"CN=Adobe Public Issuing CA,O=Adobe Inc,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZG9iZSBJbmMxIDAeBgNVBAMTF0Fkb2JlIFB1YmxpYyBJc3N1aW5nIENB","whitelist":false,"attachment":{"hash":"9fa10fb4c94ca524acfdaf55d748672b6bdf9af1d3bc554cecef45362e465647","size":1955,"filename":"m7KaH9Z-A0_S4XkUf0qbkb0a7hPwHRz8EHHcRjLCSMA=.pem","location":"security-state-staging/intermediates/3f6f7dda-b7e1-4553-aff4-1f18c36d0f41.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m7KaH9Z+A0/S4XkUf0qbkb0a7hPwHRz8EHHcRjLCSMA=","crlite_enrolled":false,"id":"9e07316e-733c-4699-89c5-e189d67de109","last_modified":1591199862455},{"schema":1591167052726,"derHash":"1YwU+8AQDhHv5yCN1pFpYCVzPheG8acwOwYz4H9mHDk=","subject":"CN=CERTDATA SSL OV ECC CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MHIxCzAJBgNVBAYTAkJSM
S0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExNDAyBgNVBAMMK0NFUlREQVRBIFNTTCBPViBFQ0MgQ0EgIFtSdW4gYnkgdGhlIElzc3Vlcl0=","whitelist":false,"attachment":{"hash":"a7ba1f7c3b1be14cda8132b559c02a76768e4908267a62b581190dccbd617fe0","size":1297,"filename":"3fq1AiHgm5wPjtliqEAe6Hqe_TUKwGTHlpm_w85y2o4=.pem","location":"security-state-staging/intermediates/fa9997a5-72d8-43c8-bb04-befe0fe4ea62.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3fq1AiHgm5wPjtliqEAe6Hqe/TUKwGTHlpm/w85y2o4=","crlite_enrolled":false,"id":"9d1610d0-eec4-4f89-b0f1-2c18a5a5fffa","last_modified":1591199862452},{"schema":1591167055791,"derHash":"hg+OSYT8qqp4yH8HE/IDGBtX17VW/tl5zhTcoB/6SlQ=","subject":"CN=GEANT EV ECC CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEQxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMRowGAYDVQQDExFHRUFOVCBFViBFQ0MgQ0EgNA==","whitelist":false,"attachment":{"hash":"fc2b67c0063115937980d79c3e67247ea70cc6101c5985ad73310d907964164d","size":1264,"filename":"FFXxLheN9s893p
VXnMlRnGpl8sSJRMnaghLMByYYI1Y=.pem","location":"security-state-staging/intermediates/ba5698b0-efb9-4bb2-b7c6-0a26fb3752a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FFXxLheN9s893pVXnMlRnGpl8sSJRMnaghLMByYYI1Y=","crlite_enrolled":false,"id":"49c9b36e-598e-45a0-8e4c-a7cf27e53b9a","last_modified":1591199862444},{"schema":1591167045220,"derHash":"405TXezfAKo3Tn1CiI5lCHTAOuKxW5oONNKJglXXFuA=","subject":"CN=TrustOcean Encryption365 Pro SSL CA,O=TrustOcean Limited,C=US","subjectDN":"MFgxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxLDAqBgNVBAMTI1RydXN0T2NlYW4gRW5jcnlwdGlvbjM2NSBQcm8gU1NMIENB","whitelist":false,"attachment":{"hash":"f786cc89df5476b284f6ebc8706f27d17d706e261be2f501c9fcce7d60c1386d","size":1260,"filename":"b73E5DRCm6VpQzKDNZJF6xWzf2fL62a-r0eJZj5f1_Y=.pem","location":"security-state-staging/intermediates/65f80d0b-45ab-4ac9-b896-274c7239ff7f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"b73E5DRCm6VpQzKDNZJF6xWzf2fL62a+r0eJZj5f1/Y=","crlite_enrol
led":false,"id":"63e56db0-43ac-44a1-917f-aa5aaff3b271","last_modified":1591199862441},{"schema":1591167043562,"derHash":"0kGVxh+c2oVizXXpVWUZcJe9dN/AfOLR30FIi2mdxek=","subject":"CN=ZeroSSL ECC EV Secure Site CA,O=ZeroSSL,C=AT","subjectDN":"MEcxCzAJBgNVBAYTAkFUMRAwDgYDVQQKEwdaZXJvU1NMMSYwJAYDVQQDEx1aZXJvU1NMIEVDQyBFViBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"823e3f2639582c72811e1ddf7900356ac05b194124fd81ee82b5aa37faa06fe4","size":1309,"filename":"A8f81KNlDx2NqB55PbT84Ofjg0xfNreLGekgTvDP594=.pem","location":"security-state-staging/intermediates/ccf60840-a6b7-4d19-9596-d073ce79f2df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"A8f81KNlDx2NqB55PbT84Ofjg0xfNreLGekgTvDP594=","crlite_enrolled":false,"id":"34b2cd0f-9958-4f45-bdb3-24d3ba02ae86","last_modified":1591199862438},{"schema":1591167049789,"derHash":"TV9aea7wkkFf9oHZ+pWPJPv9dNJtP/0VO8YefBucmSA=","subject":"CN=Microsoft Azure TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYT
AlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNQ==","whitelist":false,"attachment":{"hash":"8532a51efeed07390debc1531004aa9806e82d2c1bda5e60b695ce6fe4671366","size":2276,"filename":"4i4h0jN9NROr1xKJI-TQ1Q_ZIfUjPMXtmWUsDR3Pjiw=.pem","location":"security-state-staging/intermediates/0452fd2e-1ec9-4596-8f27-0f60d31ce83f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4i4h0jN9NROr1xKJI+TQ1Q/ZIfUjPMXtmWUsDR3Pjiw=","crlite_enrolled":true,"id":"cd7edab9-0a83-4d7a-ac8f-b96aa4df559a","last_modified":1591199862435},{"schema":1591167048156,"derHash":"x3xf3ExlXJ3GkMucdvmPrtPD3s7wZMvNctQcWeVYf+s=","subject":"CN=TrustOcean Organization Validation SSL CA,O=TrustOcean Limited,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxMjAwBgNVBAMTKVRydXN0T2NlYW4gT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gU1NMIENB","whitelist":false,"attachment":{"hash":"556a16e9adc4480fdb9e891eaeeed7d9e5985f01350398edeb90bb12a7902658","size":2
109,"filename":"iuXy6C6fQ7WIvruSnxEwSvYjFOgeVw4HZdR0x0OFOVE=.pem","location":"security-state-staging/intermediates/c2f7ee4a-a230-40fe-ae6d-7bac146e0fca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iuXy6C6fQ7WIvruSnxEwSvYjFOgeVw4HZdR0x0OFOVE=","crlite_enrolled":false,"id":"08d30c0e-cd9a-4c3e-b21d-ea273d69191b","last_modified":1591199862432},{"schema":1591167041835,"derHash":"6sATQ3DJ/6v8eutf0DwlFikPrlWFCBxAoI8ZyJq3v1s=","subject":"CN=Sectigo Partners - Client Authentication and Secure Email - ECC,O=Sectigo Limited,C=GB","subjectDN":"MHExCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxSDBGBgNVBAMTP1NlY3RpZ28gUGFydG5lcnMgLSBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIFNlY3VyZSBFbWFpbCAtIEVDQw==","whitelist":false,"attachment":{"hash":"41b0725f1556ca322a9a093945f10ac4a78ac9fd53f4f87424358588af90869e","size":1301,"filename":"3-iHJaeW0w8BOWRucLU59AureWRmw6oFBSFskSOxxFI=.pem","location":"security-state-staging/intermediates/920323a3-e248-43b6-a0ed-449746e19e5c.pem","mimetype":"applica
tion/x-pem-file"},"pubKeyHash":"3+iHJaeW0w8BOWRucLU59AureWRmw6oFBSFskSOxxFI=","crlite_enrolled":false,"id":"8bcfa0b2-e35e-49cd-844d-463a24f7f8b3","last_modified":1591199862430},{"schema":1591167040444,"derHash":"wv6s1nSHjHsMIyWi7O0KMz23eAqG3+w3WBAO/AEBxmU=","subject":"CN=GlobalSign Qualified Timestamping ECC CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MHsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIFF1YWxpZmllZCBUaW1lc3RhbXBpbmcgRUNDIENBIDIwMjAxGTAXBgNVBGETEE5UUkJFLTA0NTkxMzQyNTY=","whitelist":false,"attachment":{"hash":"dfd5994848268b7d4c9f0e58d9d33bd62a38c8b8aa02ddff40fc64573747f716","size":1317,"filename":"vQb9MziuYR3JwsWUg7XIa11YjUtOFnw-FWOE5oq95uE=.pem","location":"security-state-staging/intermediates/ea9a711d-d96e-4a8f-ba89-26fdd8430750.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vQb9MziuYR3JwsWUg7XIa11YjUtOFnw+FWOE5oq95uE=","crlite_enrolled":false,"id":"ec8193b6-fea2-4dbb-aac4-1b1be84f8f6b","last_modified":1591199862427},{"sc
hema":1591167046740,"derHash":"J38PyiY+EoVtuqTdCt8EIE9/mM/XLOnJOAfjd+NMiHY=","subject":"CN=GEANT eScience SSL CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEoxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMSAwHgYDVQQDExdHRUFOVCBlU2NpZW5jZSBTU0wgQ0EgNA==","whitelist":false,"attachment":{"hash":"68075f9cd2cc60ade2eac547fc756af29513e6cfe214c0330fd8e350cd01b052","size":2458,"filename":"aMvT7rta1tsjwjUiL86lNQhPARjlTSPwT-vUCzjJnTM=.pem","location":"security-state-staging/intermediates/b4e71607-9e9f-44c1-bffc-f52f82c8345a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aMvT7rta1tsjwjUiL86lNQhPARjlTSPwT+vUCzjJnTM=","crlite_enrolled":true,"id":"7a3d933b-8c06-4e96-8918-dbe59b8b41b4","last_modified":1591199862424},{"schema":1591167038909,"derHash":"7tCpXn3jylPkpscqhrPxZMDCPjgPj2t5o0nvF4Q0LB8=","subject":"CN=Sectigo SHA-256 DV Secure Server CA 2,O=Sectigo Limited,C=GB","subjectDN":"MFcxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLjAsBgNVBAMTJVNlY3RpZ28gU0hBLTI1NiBEViBTZWN1cm
UgU2VydmVyIENBIDI=","whitelist":false,"attachment":{"hash":"8ee56d8ef938ba4af2c0e70e0468c434181b9e82ca18f599691bb7386c8440de","size":1634,"filename":"HPMSsaUyVhFGoL9nU4W2uLB0hGaRXQ5DmhLQh_ivAOI=.pem","location":"security-state-staging/intermediates/2b7ba355-fdd1-40c5-931a-ab2ab80990db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HPMSsaUyVhFGoL9nU4W2uLB0hGaRXQ5DmhLQh/ivAOI=","crlite_enrolled":false,"id":"892ea545-f970-4099-82a0-cb0796cff322","last_modified":1591199862421},{"schema":1591167037484,"derHash":"K7RwAz1Xd9rC14r2E/HkZXkGvj31tuMx7Hn1zVNNh5s=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDU=","whitelist":false,"attachment":{"hash":"708973feef9a0edc66b4d44761ffe346c676de8fd48daf43a0b291c9f6e1d8d3","size":1479,"filename":"k09MzmwiRPkPmkpgmUtprMk_uALSVedNLtfOBkCMvXE=.pem","location":"security-sta
te-staging/intermediates/61b61e47-26ee-4791-bd33-bd8d5c78ffbb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k09MzmwiRPkPmkpgmUtprMk/uALSVedNLtfOBkCMvXE=","crlite_enrolled":false,"id":"76be9ace-5a84-46e5-ad9f-1035b065dfd0","last_modified":1591199862419},{"schema":1591167034523,"derHash":"HjNJzTZqk+We9BUqHkg9rGB2GExdRtTNoA5gk+/J5qM=","subject":"CN=University of West Attica TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHsxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTMwMQYDVQQDDCpVbml2ZXJzaXR5IG9mIFdlc3QgQXR0aWNhIFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"ad55c1ebf554ac88c4ee7ca2a6ac10ede14cc708e9e9241628118eb06a7159ac","size":2820,"filename":"CyajdIEcy4Hr_cxQQqnu0qrnumFkHRMCTTcJDgIK41E=.pem","location":"security-state-staging/intermediates/70d67b10-99b6-4f51-b3b9-3f1e070e7f7d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CyajdIEcy4Hr/cxQQqnu0qrnumFkHRMCTTcJ
DgIK41E=","crlite_enrolled":false,"id":"5c9fffc4-55de-4707-bf44-0dce68ff0d17","last_modified":1591199862416},{"schema":1591167036082,"derHash":"iDnSt3Z1HeaNMxJJjbtgjAiqT+cnpcMl2masgGTgV9M=","subject":"CN=Sectigo Partners - Code Signing - ECC,O=Sectigo Limited,C=GB","subjectDN":"MFcxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLjAsBgNVBAMTJVNlY3RpZ28gUGFydG5lcnMgLSBDb2RlIFNpZ25pbmcgLSBFQ0M=","whitelist":false,"attachment":{"hash":"88311f0ab36dc8818db8973c74ff16324387b6be5bd1ec65038a0fbb119eff0d","size":1256,"filename":"Mt57qGD4OmM1FA-J_hFGLzHI5GSYdHW8EafwJr2iBfk=.pem","location":"security-state-staging/intermediates/a19e812e-9cc8-45dd-8903-f7add99df475.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Mt57qGD4OmM1FA+J/hFGLzHI5GSYdHW8EafwJr2iBfk=","crlite_enrolled":false,"id":"763c8ffa-7dda-4f82-8a7f-98b654689f80","last_modified":1591199862406},{"schema":1591167027009,"derHash":"nGJKAXdk/Lo2NYZ5gEp1ys6V8ETwVd/fAlBfOwYBfzQ=","subject":"CN=Sectigo Partners - Server Authenti
cation - ECC,O=Sectigo Limited,C=GB","subjectDN":"MGAxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxNzA1BgNVBAMTLlNlY3RpZ28gUGFydG5lcnMgLSBTZXJ2ZXIgQXV0aGVudGljYXRpb24gLSBFQ0M=","whitelist":false,"attachment":{"hash":"965543ef4688c780b26fe4ee398172e77fae789ccc287dd22f669e4086c54e64","size":1280,"filename":"_WhZ_JfPDtfaL87jEAix_9CGklMDqSAXqw8H6I5WmaM=.pem","location":"security-state-staging/intermediates/1b383c95-777e-440f-b0ce-bee1a692cb46.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/WhZ/JfPDtfaL87jEAix/9CGklMDqSAXqw8H6I5WmaM=","crlite_enrolled":false,"id":"7e08b5b4-31d8-4e72-8460-b0a5767bdada","last_modified":1591199862400},{"schema":1591167025307,"derHash":"89kW0bcyAfBJ7afll/4KXM1XEaaVj7wLem9/pk96/kc=","subject":"CN=National and Kapodistrian Univ. of Athens Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHVMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTE
YMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMUYwRAYDVQQDDD1OYXRpb25hbCBhbmQgS2Fwb2Rpc3RyaWFuIFVuaXYuIG9mIEF0aGVucyBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"f5375566c23535064bf73fff7c1447dfed381f69baaccfb60278db4b1df08068","size":2991,"filename":"po_dRQH7IGS9y25dkTis42QhTrBTBikFiq3x34kGvyg=.pem","location":"security-state-staging/intermediates/1604ec06-c741-4dcf-99b5-fb4336be8907.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"po/dRQH7IGS9y25dkTis42QhTrBTBikFiq3x34kGvyg=","crlite_enrolled":false,"id":"209b5f61-f0d0-43c6-b630-d4bc29799afb","last_modified":1591199862397},{"schema":1591167022088,"derHash":"hGT/6ymjrRfp1vRuSMXHJ8nXho2sAmK/JW4gs8+1WII=","subject":"CN=Sectigo SHA-256 EV Secure Server CA 2,O=Sectigo Limited,C=GB","subjectDN":"MFcxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLjAsBgNVBAMTJVNlY3RpZ28gU0hBLTI1NiBFViBTZWN1cmUgU2VydmVyIENBIDI=","whitelist":false,"attachment":
{"hash":"49f7bd3efa4fcc0722a6f4605271d5fe0a5c1083d9dcbfbecd0ebf94310ad26e","size":1674,"filename":"ZFA27ke4TClASV6I0jW87lSWFo_b8drlh9D36Vzid1s=.pem","location":"security-state-staging/intermediates/0ae99740-9844-4cbd-9b4d-19f9519a49a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZFA27ke4TClASV6I0jW87lSWFo/b8drlh9D36Vzid1s=","crlite_enrolled":true,"id":"29f50ad4-1ef9-49cc-a491-3f8d8fdc0a06","last_modified":1591199862394},{"schema":1591167030041,"derHash":"S3BM2oDiRNQYaETw7yQrcMSxq02NiWFWjyjhLIl4TyM=","subject":"CN=Baidu\\, Inc. OV CA,O=Baidu\\, Inc.,C=CN","subjectDN":"MD8xCzAJBgNVBAYTAkNOMRQwEgYDVQQKEwtCYWlkdSwgSW5jLjEaMBgGA1UEAxMRQmFpZHUsIEluYy4gT1YgQ0E=","whitelist":false,"attachment":{"hash":"6ea162d68f2654682d4ebd9366bb52aa672edd57c7ae49ba447b5de53dccf6cc","size":2056,"filename":"YhO9UIj-GsxiTpBJJHAy3KMI3EVCiDbs7p2O02LNtXc=.pem","location":"security-state-staging/intermediates/fce8e914-285b-4edc-a752-7fac0e7445c8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"
YhO9UIj+GsxiTpBJJHAy3KMI3EVCiDbs7p2O02LNtXc=","crlite_enrolled":true,"id":"ee7f153f-966e-43f0-8e29-7981b781986a","last_modified":1591199862392},{"schema":1591167028565,"derHash":"FGwc+bt9IxBg0Pq9mG6YUPAFAfWjt7asQsUbOMjiKiM=","subject":"CN=Inst. of Accelerating Systems and Applications TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGQMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTFIMEYGA1UEAww/SW5zdC4gb2YgQWNjZWxlcmF0aW5nIFN5c3RlbXMgYW5kIEFwcGxpY2F0aW9ucyBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"3a570f3ca5ad4b439d7c8d33c6002d18626e99d07f0bf1e60eb24b7a1a11cd75","size":2946,"filename":"D7Xfk-7YUggnXZisbV8HX7kcYYgzDkMy57Y3cC1Fqqs=.pem","location":"security-state-staging/intermediates/ec795ad6-cbbb-4bad-9e87-bc160120bf58.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D7Xfk+7YUggnXZisbV8HX7kcYYgzDkMy57Y3cC1Fqqs=","crlite_enrolled":false,"id":"d42142d3-081a-4ea8-8b46-ca780b
098b0c","last_modified":1591199862389},{"schema":1591167015993,"derHash":"g8xQ4V0WmCSuvQvsv/r+c2vFWuIRvD7mM4+0c7kBWgc=","subject":"CN=TrustCor OV SSL CA - G2 - RSA,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFsxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJjAkBgNVBAMMHVRydXN0Q29yIE9WIFNTTCBDQSAtIEcyIC0gUlNB","whitelist":false,"attachment":{"hash":"0dc01364783a9271db505d8e1e3e6043cf875754d6bd36c6945e11fb53e02604","size":2385,"filename":"Mj3vTN7j1fDT_WCo762M8I9WedMYrlbBSvj8E4HDtuA=.pem","location":"security-state-staging/intermediates/173a1a2d-4f59-4194-99eb-916147b82f27.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Mj3vTN7j1fDT/WCo762M8I9WedMYrlbBSvj8E4HDtuA=","crlite_enrolled":false,"id":"38aa6198-2c05-4917-88c6-c6a161997f08","last_modified":1591199862386},{"schema":1591167018876,"derHash":"CDeZ6LK5AW5EcC6/m/NpziU/4fvrZQ5d8Q70TYe/O64=","subject":"CN=GEANT OV ECC CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEQxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFO
VCBWZXJlbmlnaW5nMRowGAYDVQQDExFHRUFOVCBPViBFQ0MgQ0EgNA==","whitelist":false,"attachment":{"hash":"8192abe4c9a117dee4774f8edfcc12a8fb4c01e2f5d4fb1927f882b61391467b","size":1264,"filename":"nMY4vuFVgfkmWBODcb-TSGhs4sivegdluGYPGdmc-ac=.pem","location":"security-state-staging/intermediates/8ae9c209-ac28-4acd-9b6c-93323d2ba3cb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nMY4vuFVgfkmWBODcb+TSGhs4sivegdluGYPGdmc+ac=","crlite_enrolled":true,"id":"e25e445b-40bc-4a3d-984e-f19238697009","last_modified":1591199862381},{"schema":1591167011546,"derHash":"ugMS97cva2S0zO40tfYoz2Wh87nxa43+etqQxU5HWhw=","subject":"CN=HARICA QWAC ECC SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),L=Athens,C=GR","subjectDN":"MIHBMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMSswKQYDVQQKDCJHcmVlayBVbml2ZXJzaXRpZXMgTmV0d29yayAoR1VuZXQpMRgwFgYDVQRhDA9WQVRHUi0wOTkwMjgyMjAxNzA1BgNVBAsMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ0ExITAfBgNVBAMMGEhBUklDQS
BRV0FDIEVDQyBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"3132a7793ecd22890d90a9b668b15a5bbb58368a0dde81dd5ab7909a6e210082","size":1435,"filename":"My5yT8M-8RZqS9wIe_1GKdv6BmFJetmYV8QXy2UQNVQ=.pem","location":"security-state-staging/intermediates/8c36ec80-60de-4cb2-8067-27d3459d9272.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"My5yT8M+8RZqS9wIe/1GKdv6BmFJetmYV8QXy2UQNVQ=","crlite_enrolled":false,"id":"e5adb388-5770-4b2d-ab78-9714ddd085c0","last_modified":1591199862378},{"schema":1591167009812,"derHash":"sdKb4BPPJ5gqqraUeFo+n1oWmmgvi404Z3aUZwxCgog=","subject":"CN=Volvo Car Corporation CA,O=Volvo Car Corporation AB,C=SE","subjectDN":"MFMxCzAJBgNVBAYTAlNFMSEwHwYDVQQKExhWb2x2byBDYXIgQ29ycG9yYXRpb24gQUIxITAfBgNVBAMTGFZvbHZvIENhciBDb3Jwb3JhdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"a994d8a357cf9caa3a52dbedf3fa4253d4cae99e9da27e7249d2abb02c372362","size":1975,"filename":"UBZHXRQOIZeD5Wykj4uI2nNLlxdnTll9SO7dn-ejVYM=.pem","location":"security-state-staging/int
ermediates/398e9a7c-0468-4ca8-9ab4-9ea3b832ebe9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UBZHXRQOIZeD5Wykj4uI2nNLlxdnTll9SO7dn+ejVYM=","crlite_enrolled":false,"id":"8bf17c1a-a6d9-422b-adb9-93502ed40667","last_modified":1591199862375},{"schema":1591167017476,"derHash":"NFjH94fDD+mvPlinq2h3sZWat8wsRYGwcL3TjDm4Svc=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDE=","whitelist":false,"attachment":{"hash":"77d060f6db6e51cfdc717d3ed978a4be03a2a9b64b955fbecb64b0ccd4ced790","size":1479,"filename":"OZOx9JJC3JsSDSjFX2iEA3_ED6gCha3L1ZrOeRNoyx8=.pem","location":"security-state-staging/intermediates/6def578c-3064-4137-b8df-f2747fbfab93.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OZOx9JJC3JsSDSjFX2iEA3/ED6gCha3L1ZrOeRNoyx8=","crlite_enrolled":true,"id":"4aac2f1d-7301-4a72-b32f-844df8079dc0","last_m
odified":1591199862373},{"schema":1591167014412,"derHash":"fogrHMVDm3+5WgWUPFqPQNrnWq27a2JMVe3ZRiTvoOM=","subject":"CN=ZIPAIR-Public-CA,O=ZIPAIR Tokyo\\, K.K.,C=JP","subjectDN":"MEUxCzAJBgNVBAYTAkpQMRswGQYDVQQKExJaSVBBSVIgVG9reW8sIEsuSy4xGTAXBgNVBAMTEFpJUEFJUi1QdWJsaWMtQ0E=","whitelist":false,"attachment":{"hash":"2c984e2131fa368ef2b5aa3b3e90a0922afa4740aabe97b5cb2019ab14830d37","size":1955,"filename":"PIUGed6DkU3CojfvzNyd5kHY3JiTqukpDDfDBatgs4g=.pem","location":"security-state-staging/intermediates/54e74715-f012-4611-b2a5-b2147fcad5bc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PIUGed6DkU3CojfvzNyd5kHY3JiTqukpDDfDBatgs4g=","crlite_enrolled":false,"id":"169fb9d2-9eda-4150-b791-e966bdcafdda","last_modified":1591199862370},{"schema":1591167008071,"derHash":"U2ElE5cLnyZMpLzDv9hNvF/ndOPGKVs+u5nrnXQGnio=","subject":"CN=COMODO ECC Certification Authority,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGFMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5ja
GVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDErMCkGA1UEAxMiQ09NT0RPIEVDQyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"dc36e4c286a9069d729c789a17603fc5652298f8bf2def86e601936c8873ae90","size":1382,"filename":"58qRu_uxh4gFezqAcERupSkRYBlBAvfcw7mEjGPLnNU=.pem","location":"security-state-staging/intermediates/6652ce0d-3c54-446e-ace4-ab3bf3abd2a6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"58qRu/uxh4gFezqAcERupSkRYBlBAvfcw7mEjGPLnNU=","crlite_enrolled":false,"id":"8b11a693-e60e-4d6d-80ee-c38a1d65c423","last_modified":1591199862367},{"schema":1591167006644,"derHash":"zhW4jsoyo3HQtRs7BHWQVdao/ww9Gg1gSI3zVtwFDlU=","subject":"CN=STMicroelectronics Public User CA1,O=STMicroelectronics International N.V.,C=CH","subjectDN":"MGoxCzAJBgNVBAYTAkNIMS4wLAYDVQQKEyVTVE1pY3JvZWxlY3Ryb25pY3MgSW50ZXJuYXRpb25hbCBOLlYuMSswKQYDVQQDEyJTVE1pY3JvZWxlY3Ryb25pY3MgUHVibGljIFVzZXIgQ0Ex","whitelist":false,"attachment":{"hash":"18f50a255b00546467dd0c
b80409b58291d5ab408250b7ea98a4d3dd53f0f322","size":2008,"filename":"gx_o4mBjRjGO5e2ioaSkT_ZBwzD0O9B-6SNRvTUnqMk=.pem","location":"security-state-staging/intermediates/648ed62b-e5f8-42d4-83ee-7ca6d40b6d44.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gx/o4mBjRjGO5e2ioaSkT/ZBwzD0O9B+6SNRvTUnqMk=","crlite_enrolled":false,"id":"540cc7e9-1df2-416a-96b6-d6176d4ee3ed","last_modified":1591199862364},{"schema":1591167023478,"derHash":"AMDLqVy/4eJwgUJ18ytQXW5ZFsK22mf69N0wnubobL4=","subject":"CN=DigiCert Secure Site ECC CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MFAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKjAoBgNVBAMTIURpZ2lDZXJ0IFNlY3VyZSBTaXRlIEVDQyBDTiBDQSBHMw==","whitelist":false,"attachment":{"hash":"a51772df4a2b835008c2a8c8dc0deb86a5aaec98e9697ee63a20924af248b9b2","size":1337,"filename":"mpDMzjSYAgr-a1VhfWcSLkk3xG29zzCRDJISnBodNVg=.pem","location":"security-state-staging/intermediates/f09648f8-e528-485c-9101-53303017f3fb.pem","mimetype":"application/x-pem-file"},"pubKey
Hash":"mpDMzjSYAgr+a1VhfWcSLkk3xG29zzCRDJISnBodNVg=","crlite_enrolled":false,"id":"2e3dc91b-19d5-4380-b3e9-3b54bf59c028","last_modified":1591199862361},{"schema":1591167003672,"derHash":"qv3O5Xk7XPS/LQxfYELYpCK8wzs5Zaxig9JzzGm0g3U=","subject":"CN=Sectigo SHA-256 EV Secure Server CA,O=Sectigo Limited,C=GB","subjectDN":"MFUxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLDAqBgNVBAMTI1NlY3RpZ28gU0hBLTI1NiBFViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"bb0c7ed52a4ba2392ff048a5246e2367101f04ffd385b39e3f25798fd40060a7","size":1654,"filename":"KlGkFBm4cI6bwYi3-GIwgmgYzH3wAO3Gtlqk0GMInns=.pem","location":"security-state-staging/intermediates/7b9ca479-5606-4a77-b93a-fe3bb5a328c6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KlGkFBm4cI6bwYi3+GIwgmgYzH3wAO3Gtlqk0GMInns=","crlite_enrolled":false,"id":"8f019901-9110-45b1-a5f0-88464c331fdf","last_modified":1591199862359},{"schema":1591166999172,"derHash":"fTW/BMhXKCtCLoUeqKYit10uzLq2XVumJZjB2koR1QI=","subject":"
CN=University of West Attica Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHFMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTYwNAYDVQQDDC1Vbml2ZXJzaXR5IG9mIFdlc3QgQXR0aWNhIENsaWVudCBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"e76cfc440a5e991448c5b38f99766a4faa2a624e64bf18924a3a70f16a63e272","size":2901,"filename":"Bm78D1XrPXTGXm5_bdFOIATkxbrsQopzy-GvKlFzrUk=.pem","location":"security-state-staging/intermediates/6adea3d9-6cbe-4104-beb4-08ef22d8c125.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Bm78D1XrPXTGXm5/bdFOIATkxbrsQopzy+GvKlFzrUk=","crlite_enrolled":false,"id":"6eb82243-bae6-4111-a042-bcbbe5d9dd18","last_modified":1591199862356},{"schema":1591167012948,"derHash":"tBpIZPDU7E6mMtAbPn8jJ3XlXiKzv9hkLuEpIoDQ5Ho=","subject":"CN=DigiCert B
asic EV RSA CN CA G2,O=DigiCert Inc,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IEJhc2ljIEVWIFJTQSBDTiBDQSBHMg==","whitelist":false,"attachment":{"hash":"d2c3c0eb28e66976ac4acda4193e4e6b8892fa07ec37f9932f19408c824dc0a2","size":1654,"filename":"M8wsUw9qVjgbOPT0Gb0ZignTvgWTwtAotFBG4daZQ1w=.pem","location":"security-state-staging/intermediates/aae99adb-feec-4ec3-b8f8-06e4b7cc8071.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M8wsUw9qVjgbOPT0Gb0ZignTvgWTwtAotFBG4daZQ1w=","crlite_enrolled":true,"id":"1a6503c7-0f5c-4cde-8e28-452c972f857e","last_modified":1591199862353},{"schema":1591167002071,"derHash":"SS7uizqm6sCMK3ipdvEz5+I6FDkhCAfcTHNPk1qvpbo=","subject":"CN=CERTDATA SMIME OV CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MHAxCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExMjAwBgNVBAMMKUNFUlREQVRBIFNNSU1FIE9WIENBICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false
,"attachment":{"hash":"98241269a4b1f56f2d27a325260ce43c94609dbfaf15d3cede526f6777068c39","size":2117,"filename":"Dr3UcttDQ-gWx98s4F3mRweUcI5P3LlsRG88w3HyeDY=.pem","location":"security-state-staging/intermediates/c0410e24-a6b4-4f3e-b115-5cc80074fda2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Dr3UcttDQ+gWx98s4F3mRweUcI5P3LlsRG88w3HyeDY=","crlite_enrolled":false,"id":"b03a064b-a5c5-43d1-ab97-33e8f885f4a7","last_modified":1591199862351},{"schema":1591166994812,"derHash":"k+M699owMFMNCQycVXYsrefq6UP4NDSdEFepDrZ/MGs=","subject":"CN=DigiCert QV TLS ICA G1,O=DigiCert\\, Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRcwFQYDVQQKDA5EaWdpQ2VydCwgSW5jLjEfMB0GA1UEAwwWRGlnaUNlcnQgUVYgVExTIElDQSBHMQ==","whitelist":false,"attachment":{"hash":"e53ef7db1684caaae756089b951bc6e4365a4f5c50235345441db0a95fe9771c","size":1943,"filename":"z2OteA0mfCO56LKn5Y19lFMNUGHucFGGWmVD8x0rpLU=.pem","location":"security-state-staging/intermediates/04030cb6-4ee3-4cec-92bb-45022fc5c066.pem","mimetype":"applic
ation/x-pem-file"},"pubKeyHash":"z2OteA0mfCO56LKn5Y19lFMNUGHucFGGWmVD8x0rpLU=","crlite_enrolled":false,"id":"e117a5f6-6353-4757-b12d-27c470add07c","last_modified":1591199862348},{"schema":1591166996250,"derHash":"DLZoT2AcQW+ZKolAmRSjKgwgmXFodfX3jsDEaxtXCZw=","subject":"CN=University of Western Macedonia Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHLMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTwwOgYDVQQDDDNVbml2ZXJzaXR5IG9mIFdlc3Rlcm4gTWFjZWRvbmlhIENsaWVudCBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"980754593a22fa62c9411e8446cb7058f9764009306b6036fb1346607ad0d57a","size":2926,"filename":"pe7vO9l5Xa6m3aQk0-_tXQkCapBdsBH-eRONUxuj8co=.pem","location":"security-state-staging/intermediates/1b7dc9d7-f2ed-44cb-a349-acd5e1892a99.pem","mimetype":"appli
cation/x-pem-file"},"pubKeyHash":"pe7vO9l5Xa6m3aQk0+/tXQkCapBdsBH+eRONUxuj8co=","crlite_enrolled":false,"id":"53f37f97-31b5-44e3-85e5-e6ffef357ebd","last_modified":1591199862340},{"schema":1591166987528,"derHash":"ysBfTwUIEJkybc8nxNlwqKPqkU5nkq2swQSWEcntQ7o=","subject":"CN=SECOM Passport for Member PUB CodeSigning CA G1,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGaMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMTgwNgYDVQQDEy9TRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDb2RlU2lnbmluZyBDQSBHMQ==","whitelist":false,"attachment":{"hash":"88cb4e998412b8161dd4cce63fae57821221160429b49ae302868eca99d858e1","size":2211,"filename":"svXZ_or9Iyq1IFvQhPesIt1V12hnn6Emvsxku1znTIQ=.pem","location":"security-state-staging/intermediates/b9f92943-09e8-4e6d-b04f-31095d30490d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"svXZ/or9Iyq1IFvQhPesIt1V12hnn6Emvsxku1znTIQ=","crl
ite_enrolled":false,"id":"cd8685fc-3e6f-4bb0-8774-0ae8d85693c5","last_modified":1591199862334},{"schema":1591166984645,"derHash":"l8S0QxYFXyalKh9mTOOFgAqWSoVSyZ0ryv1hjm2AdKA=","subject":"CN=DigiCert Basic ECC CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJDAiBgNVBAMTG0RpZ2lDZXJ0IEJhc2ljIEVDQyBDTiBDQSBHMg==","whitelist":false,"attachment":{"hash":"212fb078da2ffbb3ac1149f0dbd37bafc1c192f15595649f27ba9a328c516a96","size":1382,"filename":"Mg4fdox_AdxNXF8FVxl956AK4z_M3V3fNH5JYxAVfu4=.pem","location":"security-state-staging/intermediates/b674bdb2-2b94-4918-8068-2c0bcb83439d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Mg4fdox/AdxNXF8FVxl956AK4z/M3V3fNH5JYxAVfu4=","crlite_enrolled":false,"id":"0c53b0b5-57c7-4119-9ba9-b6a454b96cfd","last_modified":1591199862328},{"schema":1591166993298,"derHash":"+4YtCEkljX2WtqKwFY0IFCJy5NPKglv/w2MF9dKBFsU=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectD
N":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDI=","whitelist":false,"attachment":{"hash":"089f758bacd904da828169799bc711fcbeb3ec968700dd5a8e37334f30a724e3","size":1479,"filename":"OhdUJ-wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=.pem","location":"security-state-staging/intermediates/ef80ac11-e55c-4e76-90b7-55a5776cb672.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OhdUJ+wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=","crlite_enrolled":false,"id":"747de98b-4252-4064-b892-7ad013087eee","last_modified":1591199862326},{"schema":1591166986072,"derHash":"N4NPpepA+/e2EZaVWWLhygVYhyQ15CBmU9P2IN2OmI4=","subject":"CN=GEANT OV RSA CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEQxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMRowGAYDVQQDExFHRUFOVCBPViBSU0EgQ0EgNA==","whitelist":false,"attachment":{"hash":"18b4437cd205bd9ac9702220d5adb3aa3cbabf10cec7c537606362b8d30ed943","size":2450,"filename":"j0qRK9S0oUba9b4tt
ZdKp42Q4T2J8S4FFKPNG5FTFVA=.pem","location":"security-state-staging/intermediates/cc610264-2385-48c0-8360-41da294451ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"j0qRK9S0oUba9b4ttZdKp42Q4T2J8S4FFKPNG5FTFVA=","crlite_enrolled":true,"id":"91ec81f9-4c89-4c52-bf16-828510b256ac","last_modified":1591199862323},{"schema":1591166981675,"derHash":"9gbY3rJ8BAHzTntqN8jipR242gJr5YoH6FS2ht50xpo=","subject":"CN=KICA RSA DV CA,O=KICA,C=KR","subjectDN":"MDUxCzAJBgNVBAYTAktSMQ0wCwYDVQQKEwRLSUNBMRcwFQYDVQQDEw5LSUNBIFJTQSBEViBDQQ==","whitelist":false,"attachment":{"hash":"318379d0564ebe89aa14dff5f62506a9553f6d9d680f10e82a54fa192e67f398","size":1569,"filename":"cK05Ok8jo8SXlxRdWcmPHjPUXO0-KqZKDWAQhEkCcCs=.pem","location":"security-state-staging/intermediates/d52fd294-49a6-40bb-a05a-5fdd485b772d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cK05Ok8jo8SXlxRdWcmPHjPUXO0+KqZKDWAQhEkCcCs=","crlite_enrolled":false,"id":"d1256819-e772-4787-a82e-3e8aaeb2120a","last_modified":159119986232
0},{"schema":1591166988974,"derHash":"b+O0p6moUlWcHffqQH+vPZvxdvQOUaFF1XaQ+ih8BWs=","subject":"CN=Trust Italia Class 2 Consumer Individual Subscriber CA - G3,O=Trust Italia S.p.A.,C=IT","subjectDN":"MHExCzAJBgNVBAYTAklUMRwwGgYDVQQKExNUcnVzdCBJdGFsaWEgUy5wLkEuMUQwQgYDVQQDEztUcnVzdCBJdGFsaWEgQ2xhc3MgMiBDb25zdW1lciBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"7b226066c603caaf929b3d86c889809d734dce014b67e674ccd4a93d032dff0f","size":1752,"filename":"Y8cllDVPXsCqMnw5qEva_MDC_VRf4wx4J3MjppPCdmY=.pem","location":"security-state-staging/intermediates/0df5e9cd-f031-4578-a6e7-a9ffc40ef37b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y8cllDVPXsCqMnw5qEva/MDC/VRf4wx4J3MjppPCdmY=","crlite_enrolled":false,"id":"ba658967-ce3c-4045-b431-b94346eed3b3","last_modified":1591199862314},{"schema":1591166977096,"derHash":"l6cYCCt47nSAl5shFtS6AhXGGqpSC0bKa5wqs3j0CCE=","subject":"CN=Sectigo SHA-256 OV Secure Server CA,O=Sectigo Limited,C=GB","subjectDN":"MFUxC
zAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLDAqBgNVBAMTI1NlY3RpZ28gU0hBLTI1NiBPViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"7e3339701c1e2d499ba3def9492001c41adc810c4a458724657109305f3cec89","size":1613,"filename":"318hNJIiS7rMUgV2mjh-LHcZUnFNjtl4to5OuT2nr4s=.pem","location":"security-state-staging/intermediates/6f711398-7de9-46d1-bae2-5455d21b7f77.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"318hNJIiS7rMUgV2mjh+LHcZUnFNjtl4to5OuT2nr4s=","crlite_enrolled":false,"id":"59c27eb3-4715-484a-82f5-7afdcdc2eedb","last_modified":1591199862306},{"schema":1591166972688,"derHash":"4cSwtb6SRx7sKI2yquyA++Bl+66MmppXaY172J8wcDE=","subject":"CN=CERTDATA SSL EV ECC CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MHIxCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExNDAyBgNVBAMMK0NFUlREQVRBIFNTTCBFViBFQ0MgQ0EgIFtSdW4gYnkgdGhlIElzc3Vlcl0=","whitelist":false,"attachment":{"hash":"088b10c1c11e8d18ab6069
70a0a1d199bee8b60e73f3e3ace0f39fb2a23ad934","size":1325,"filename":"9vCfWQvK73Fpm-vFHRSFb1GMEe-jrHgkRGYDgnPa5M0=.pem","location":"security-state-staging/intermediates/64a98518-89e2-4dff-904a-5f9b145dff93.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9vCfWQvK73Fpm+vFHRSFb1GMEe+jrHgkRGYDgnPa5M0=","crlite_enrolled":false,"id":"0971425c-d185-4d5e-bde8-ffbc73ce3ff6","last_modified":1591199862300},{"schema":1591166980064,"derHash":"nDXokHtUmiYAKUKnkY4y4URQP+NCJhsH2Cuw1J1z2RI=","subject":"CN=Trust Provider B.V. TLS ECC EV CA G1,O=Trust Provider B.V.,C=NL","subjectDN":"MFoxCzAJBgNVBAYTAk5MMRwwGgYDVQQKExNUcnVzdCBQcm92aWRlciBCLlYuMS0wKwYDVQQDEyRUcnVzdCBQcm92aWRlciBCLlYuIFRMUyBFQ0MgRVYgQ0EgRzE=","whitelist":false,"attachment":{"hash":"953d2f55cb4e36af74de0869d7a372e01732610473e423b3b655c9de264a2efd","size":1297,"filename":"lbgvzVAS_HD1uhWtKd_pFMrEGQXAJsWzN-B8qi3z2Jk=.pem","location":"security-state-staging/intermediates/9b32bfa2-9970-42cc-94f9-296198748c61.pem","mimetype":"applicatio
n/x-pem-file"},"pubKeyHash":"lbgvzVAS/HD1uhWtKd/pFMrEGQXAJsWzN+B8qi3z2Jk=","crlite_enrolled":false,"id":"3b26ac86-1633-45de-ac90-e6202efc1efe","last_modified":1591199862298},{"schema":1591166969828,"derHash":"6keT4uuBTUMmH4Borv3ng7g358AhrBnI6bCFUfLWyD8=","subject":"CN=University of the Peloponnese Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHJMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTowOAYDVQQDDDFVbml2ZXJzaXR5IG9mIHRoZSBQZWxvcG9ubmVzZSBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"e434a384ec70a2f55224b8dba36988a5cc832b8efb47eff89c3e75c99a16d366","size":3897,"filename":"5FgD1hywYOFqq6q8GjfE0VbAd_BXMtIzKXSTe5rs_jU=.pem","location":"security-state-staging/intermediates/3c978eca-7a9d-4ea7-91c6-2b91b0add092.pem","mimetype":"application/x-p
em-file"},"pubKeyHash":"5FgD1hywYOFqq6q8GjfE0VbAd/BXMtIzKXSTe5rs/jU=","crlite_enrolled":false,"id":"6efe66d3-a1a9-44c7-b6fb-84fed7ca0d86","last_modified":1591199862295},{"schema":1591166975559,"derHash":"ytA6WE5YU5uJGS7EnOp6bY7XJCrV3N+D+W0IfwnyMts=","subject":"CN=GEANT eScience SSL ECC CA 4,O=GEANT Vereniging,C=NL","subjectDN":"ME4xCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMSQwIgYDVQQDExtHRUFOVCBlU2NpZW5jZSBTU0wgRUNDIENBIDQ=","whitelist":false,"attachment":{"hash":"7db15ec19aae6dfd33627c70072ae0be041ec482c68931ac550f8e7ecbe82a38","size":1276,"filename":"nzYOlulDufoKXDgcAhC63BnT5t74_zG2ZFweTlq2pTA=.pem","location":"security-state-staging/intermediates/82fcc086-5e5e-43f4-b969-d11903a233b2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nzYOlulDufoKXDgcAhC63BnT5t74/zG2ZFweTlq2pTA=","crlite_enrolled":false,"id":"3ae9678b-4310-42e4-8c4b-a2bd36359c71","last_modified":1591199862292},{"schema":1591166971277,"derHash":"MJ5sgAPP4bmr/d+86sK/24ftkniIl2Pk2MBvZgQGAfs=","subject"
:"CN=TrustOcean Organization Validation Pro SSL CA,O=TrustOcean Limited,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxNjA0BgNVBAMTLVRydXN0T2NlYW4gT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gUHJvIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"07bddd64aebedac19bab91ba8353765dd92a8b9a4f03b70b0a65f48dd0852316","size":1276,"filename":"wO_TPO2pacd9S4TXCA6ZK5sbowZLU3pvj1j4lewK054=.pem","location":"security-state-staging/intermediates/fadb40d2-243a-4c13-b44e-88de44fe0e39.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wO/TPO2pacd9S4TXCA6ZK5sbowZLU3pvj1j4lewK054=","crlite_enrolled":false,"id":"2f68d515-67c7-4d03-b155-933ce48d47a6","last_modified":1591199862289},{"schema":1591166966944,"derHash":"peSmK2AQBtwX5KyvSXd3v9fS8+Um/HDKHyIJTIyzkWY=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgM
DY=","whitelist":false,"attachment":{"hash":"7ddf736675486e01c80cd307d0f3193f2bbd4866fbd4cf47e6f478fe688f46a6","size":1479,"filename":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f_fOuKrsNiaSdA=.pem","location":"security-state-staging/intermediates/43b64ec8-51d9-48a3-8273-22a78716681e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f/fOuKrsNiaSdA=","crlite_enrolled":false,"id":"f942e88e-4d39-4260-8629-7493a5de205f","last_modified":1591199862287},{"schema":1591166965541,"derHash":"vEicbcK94lP1hto0E01mQLi1g6MSCJzhCTPEvAP8XzM=","subject":"CN=University of Piraeus Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHBMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTIwMAYDVQQDDClVbml2ZXJzaXR5IG9mIFBpcmFldXMgQ2xpZW50IFJTQSBTdWJDQSBSMQ==","whitelist":fals
e,"attachment":{"hash":"0714cf4a610f08f71ee755e1a2bc9a6125e97457fc94bd11adbe1fbf13e199bc","size":2881,"filename":"aEyGET6vMUZ78LzXlMwp7zrJc54FqQbkEpltCsA0Ym0=.pem","location":"security-state-staging/intermediates/dbf2652a-44f6-4622-99f7-5a0260fb6902.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aEyGET6vMUZ78LzXlMwp7zrJc54FqQbkEpltCsA0Ym0=","crlite_enrolled":false,"id":"66be0711-b86b-410c-ba66-83267576a61b","last_modified":1591199862281},{"schema":1591166956588,"derHash":"xCTcOtYm1EP8rqlxA8tki552MryM2TyW2rsdYFk3IR0=","subject":"CN=Trust Italia Class 2 Managed PKI Individual Subscriber CA - G3,O=Trust Italia S.p.A.,C=IT","subjectDN":"MHQxCzAJBgNVBAYTAklUMRwwGgYDVQQKExNUcnVzdCBJdGFsaWEgUy5wLkEuMUcwRQYDVQQDEz5UcnVzdCBJdGFsaWEgQ2xhc3MgMiBNYW5hZ2VkIFBLSSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"2b320fdd4d82aab2b8852ba0e230e7f6687512ad7a4d5bb5db260f796b144559","size":1756,"filename":"Y24lFs1PJyWMpmHV04a28-0WEzBV7ZwjGI-b6o_a1xE=.pem","loca
tion":"security-state-staging/intermediates/2607592c-0c94-43f5-88a4-9642f57c2771.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y24lFs1PJyWMpmHV04a28+0WEzBV7ZwjGI+b6o/a1xE=","crlite_enrolled":false,"id":"1b18f8e1-bb52-4c71-a2b4-dd715bd30d34","last_modified":1591199862270},{"schema":1591166959669,"derHash":"e5d410LenRGp6AKurLE9W3D5CrT/fGPEEr7vQgJQElA=","subject":"CN=TrustOcean Encryption365 SSL CA,O=TrustOcean Limited,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxKDAmBgNVBAMTH1RydXN0T2NlYW4gRW5jcnlwdGlvbjM2NSBTU0wgQ0E=","whitelist":false,"attachment":{"hash":"13a6ab9380accd50f6b136c0959380987299900d1e88f93608d04d9164ba247d","size":2093,"filename":"SQofq62FvYueQ205OJiQThWVUH_MQwaHQWw2twlwTDo=.pem","location":"security-state-staging/intermediates/fe167bbc-49ae-4867-b511-147e23b615bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SQofq62FvYueQ205OJiQThWVUH/MQwaHQWw2twlwTDo=","crlite_enrolled":false,"id":"958e59d8-df82-40f3-8891-c1afbc81
139d","last_modified":1591199862267},{"schema":1591166958294,"derHash":"CE7KcKm0Dk4VY+NXdrcW5BCpcrsn7VHCSMSNMkL6ja8=","subject":"CN=HEAL-LINK Hellenic Academic Libraries Link Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHWMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMUcwRQYDVQQDDD5IRUFMLUxJTksgSGVsbGVuaWMgQWNhZGVtaWMgTGlicmFyaWVzIExpbmsgQ2xpZW50IFJTQSBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"a6f0308fffdec71204189a96efafbbe956e995e60418265f274c6bd2476b8c78","size":3031,"filename":"_Kft_K_873z0mlP2VRjp4LH9H_mcuLMh9d5dMp190iM=.pem","location":"security-state-staging/intermediates/e9daf701-b37c-4436-a783-4b2fd35b7700.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/Kft/K/873z0mlP2VRjp4LH9H/mcuLMh9d5dMp190iM=","crlite_enrolled":false,"id":"017d
1e6a-3d57-4f28-bde8-d93e1818bf31","last_modified":1591199862264},{"schema":1591166952132,"derHash":"saj9QLQ33tly9XQ3BiLiu7L5uVk7wFBNfiAw8rJOZ/o=","subject":"CN=GEANT Personal ECC CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEoxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMSAwHgYDVQQDExdHRUFOVCBQZXJzb25hbCBFQ0MgQ0EgNA==","whitelist":false,"attachment":{"hash":"bd13e9c72f30021203129679456a87eaec1c3ebc91620c3355c3c943cdf5c9d1","size":1272,"filename":"x9rdz7WXOhNwDB_vccBkt66zVPn9EqlDFEDj0tN29TE=.pem","location":"security-state-staging/intermediates/23ee9177-81be-49de-b088-b5e00cf4c5ad.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x9rdz7WXOhNwDB/vccBkt66zVPn9EqlDFEDj0tN29TE=","crlite_enrolled":false,"id":"d7220a44-b71d-43aa-aceb-9f6f42b35563","last_modified":1591199862262},{"schema":1591166953641,"derHash":"rgO5rRcQaih4WDCx3NY2eXxMZNgcuNFhWV26+DQz5kw=","subject":"CN=CrowdStrike OV SSL Issuing CA 2020,O=CrowdStrike Inc.,C=US","subjectDN":"MFUxCzAJBgNVBAYTAlVTMRkwFwYDVQQKEx
BDcm93ZFN0cmlrZSBJbmMuMSswKQYDVQQDEyJDcm93ZFN0cmlrZSBPViBTU0wgSXNzdWluZyBDQSAyMDIw","whitelist":false,"attachment":{"hash":"d681fc0b6a1cbda829e8ebba97a30707ab2d95062c3ef6bce4b7e7555d3584cf","size":1792,"filename":"lHRUL7zqcHfSFUzbd0WqRZOXK57EqS8L6C4CJmQ5Npo=.pem","location":"security-state-staging/intermediates/8097ddb1-fac8-4626-acdd-d1b8ae316ae4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lHRUL7zqcHfSFUzbd0WqRZOXK57EqS8L6C4CJmQ5Npo=","crlite_enrolled":false,"id":"6aa2e51f-636d-455e-a044-c2edde8889f6","last_modified":1591199862259},{"schema":1591166947809,"derHash":"8bQTkri3zVpFay1Kkbe89szvIpS4tuYs/zj5w6J5bwY=","subject":"CN=GlobeSSL OV CA,O=CentralNic Luxembourg S\u00e0rl,C=LU","subjectDN":"MEwxCzAJBgNVBAYTAkxVMSQwIgYDVQQKDBtDZW50cmFsTmljIEx1eGVtYm91cmcgU8OgcmwxFzAVBgNVBAMTDkdsb2JlU1NMIE9WIENB","whitelist":false,"attachment":{"hash":"6276193f8ef60a83e6b2a01cea8c469f7785960d98bb97c057e1ca2b3843e6a6","size":2085,"filename":"mfCBWjYYEugo1yhASbIoRwohL9WPkl5owslIdpTfCno=.pe
m","location":"security-state-staging/intermediates/4a4d3b84-603d-4f56-ae5f-96b87fd11076.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mfCBWjYYEugo1yhASbIoRwohL9WPkl5owslIdpTfCno=","crlite_enrolled":false,"id":"b2fe309b-8a3e-44b2-b214-099b8f793b32","last_modified":1591199862253},{"schema":1591166955049,"derHash":"IgBA3aN3yURCnozpE7fYGzbeNOvy3CGNIGY5PZSGNDk=","subject":"CN=Democritus University of Thrace TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGBMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTE5MDcGA1UEAwwwRGVtb2NyaXR1cyBVbml2ZXJzaXR5IG9mIFRocmFjZSBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"633a331af1df260887adfe035dd9a69e0eac22b2b0e008c5072c8e7173f0a5dd","size":3677,"filename":"hwhNNDnScyM0IPzP1QnWxg68NK1ZdubxLavxfWWRRq8=.pem","location":"security-state-staging/intermediates/eefd61d3-4ede-4b5b-8b11-2b05034967e1.pem","mimetype":"application/x-pem-file"},"pubKeyHa
sh":"hwhNNDnScyM0IPzP1QnWxg68NK1ZdubxLavxfWWRRq8=","crlite_enrolled":false,"id":"f1b5b7ab-27cf-4b2f-8a24-24d137c1fd82","last_modified":1591199862251},{"schema":1591166946335,"derHash":"t+EkLZaU+1AlsJaWT6dq997Z9VrkpnpCCtxfnRGzrTM=","subject":"CN=CERTDATA SSL DV ECC CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MHIxCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExNDAyBgNVBAMMK0NFUlREQVRBIFNTTCBEViBFQ0MgQ0EgIFtSdW4gYnkgdGhlIElzc3Vlcl0=","whitelist":false,"attachment":{"hash":"790d8b9e3ba565304aee9733ce4b0e0bfd2096f72e2e0601b8df408f07910a53","size":1293,"filename":"KCVGX9PZojp3nb42QFg8CInxwnSWCYZ4kG3HC87bf4o=.pem","location":"security-state-staging/intermediates/24bcf52a-aa3c-4d05-8236-9a1e72833516.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KCVGX9PZojp3nb42QFg8CInxwnSWCYZ4kG3HC87bf4o=","crlite_enrolled":false,"id":"404783d0-cde7-4f2f-a512-dc32c5183168","last_modified":1591199862248},{"schema":1591166941957,"
derHash":"26wvrk+MlJsaMM+HHqtYlX9kILeXpRJVBrjO3Uj114Q=","subject":"CN=GEANT EV RSA CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEQxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMRowGAYDVQQDExFHRUFOVCBFViBSU0EgQ0EgNA==","whitelist":false,"attachment":{"hash":"a81d6464a4c6c0326479b46fc4a739c1ebd123cdfdd13ed5be6d44d55df9d953","size":2450,"filename":"BPjQDgce-sDBA1ay4Jv5JRXoEJZUq9x6xkxGPweoK8o=.pem","location":"security-state-staging/intermediates/957ee282-8db5-484b-b663-4f8f5fd4418b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BPjQDgce+sDBA1ay4Jv5JRXoEJZUq9x6xkxGPweoK8o=","crlite_enrolled":true,"id":"2d3008cc-2ef8-4483-8a08-556cf24cc117","last_modified":1591199862245},{"schema":1591166938789,"derHash":"tfTF0YWoyHx4tvZ9/c/U4buwc+d6JkRV2pYd2b6R0c4=","subject":"CN=ZeroSSL ECC Business Secure Site CA,O=ZeroSSL,C=AT","subjectDN":"ME0xCzAJBgNVBAYTAkFUMRAwDgYDVQQKEwdaZXJvU1NMMSwwKgYDVQQDEyNaZXJvU1NMIEVDQyBCdXNpbmVzcyBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash
":"f5c243c2a7e060190fd8f59984d77e4edc40f58294bf379fcdfdc67342935f80","size":1284,"filename":"joN60utJv0YtzK4dit_eZatsv9Qz7o9doV9ZOgCp2Y8=.pem","location":"security-state-staging/intermediates/922b61f4-a9a8-47c2-8bb5-04f65f00c145.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"joN60utJv0YtzK4dit/eZatsv9Qz7o9doV9ZOgCp2Y8=","crlite_enrolled":false,"id":"3a7be123-83ee-4956-b198-0fb8e0ba83f7","last_modified":1591199862242},{"schema":1591166949219,"derHash":"/nNANw1ZWjn/4Q3OIZdEfOZ8mL4o8DMMj8hd0DISSG0=","subject":"CN=XinChaCha Trust SSL Extended Validated,O=Beijing Xinchacha Credit Management Co.\\, Ltd.,C=CN","subjectDN":"MHYxCzAJBgNVBAYTAkNOMTYwNAYDVQQKDC1CZWlqaW5nIFhpbmNoYWNoYSBDcmVkaXQgTWFuYWdlbWVudCBDby4sIEx0ZC4xLzAtBgNVBAMMJlhpbkNoYUNoYSBUcnVzdCBTU0wgRXh0ZW5kZWQgVmFsaWRhdGVk","whitelist":false,"attachment":{"hash":"11c238131ce3dc238f6eaf26ec690ecf4d548a913c3c5bc452afce5fbc790b99","size":1776,"filename":"eMfyN-Ikg69beln4AW1OIVajdbo0bMtS7jlQTjdmeVM=.pem","location":"security-s
tate-staging/intermediates/e6f8b0f0-9bb3-4ffd-b7bc-95b78916692e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eMfyN+Ikg69beln4AW1OIVajdbo0bMtS7jlQTjdmeVM=","crlite_enrolled":false,"id":"93b12a0d-0df4-4127-af9a-a1ef7dbef757","last_modified":1591199862239},{"schema":1591166943449,"derHash":"6tyA999jBWDMGzU/aOpmAVnOlm4i1ARYh4B4fAR20OQ=","subject":"CN=Greek School Network Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHAMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTEwLwYDVQQDDChHcmVlayBTY2hvb2wgTmV0d29yayBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"91da938723919124b3744b40cb7465eb0441bb9d657002500df3379c62df1aff","size":3356,"filename":"JZb0xnTbHxn3GgHZAAa8PyGC1eaFoUGTxOKLXnmjA5U=.pem","location":"security-state-staging/intermediates
/681f152c-a338-407e-905a-352955fbadfa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JZb0xnTbHxn3GgHZAAa8PyGC1eaFoUGTxOKLXnmjA5U=","crlite_enrolled":false,"id":"95cec1f6-13e2-40e5-8b62-dbb5123c691d","last_modified":1591199862236},{"schema":1591166940293,"derHash":"PzsNaiB8UKWCnxsf4ca8O2YQYIV3RhTBIie3ZnKO0q4=","subject":"CN=ZeroSSL RSA EV Secure Site CA,O=ZeroSSL,C=AT","subjectDN":"MEcxCzAJBgNVBAYTAkFUMRAwDgYDVQQKEwdaZXJvU1NMMSYwJAYDVQQDEx1aZXJvU1NMIFJTQSBFViBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"f28bd1dd2858c64b5c7d1c3058a2d544f0ea768abc37a7d72e159566eecca98e","size":2454,"filename":"25iQFhK1cn8vc_vird2SyolWQqiVsnbjTu9eZlX690I=.pem","location":"security-state-staging/intermediates/ddc002a3-f79f-459e-ac61-cdfd850062c1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"25iQFhK1cn8vc/vird2SyolWQqiVsnbjTu9eZlX690I=","crlite_enrolled":false,"id":"c853522e-9668-40f2-8f15-ce50259bbbd8","last_modified":1591199862233},{"schema":1591166944923,"derHash":"
cDQIhtCP4bCTFY8RpMwrKtRaZ/QCYyoEDpBnxuRH5P4=","subject":"CN=Telenor Norge AS OTL CA G2,O=Telenor Norge AS,C=NO","subjectDN":"ME0xCzAJBgNVBAYTAk5PMRkwFwYDVQQKExBUZWxlbm9yIE5vcmdlIEFTMSMwIQYDVQQDExpUZWxlbm9yIE5vcmdlIEFTIE9UTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"d438922f73cc95a79a030a5b88b1deff430948c8e65d26d6889657785975664c","size":1955,"filename":"XuXysKYz8525S8d1tzSylmtHnnsKgXMnjn2sP1DuoMo=.pem","location":"security-state-staging/intermediates/32ba931d-0b1a-4777-a7bd-9d236db04e41.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XuXysKYz8525S8d1tzSylmtHnnsKgXMnjn2sP1DuoMo=","crlite_enrolled":false,"id":"d779a32d-7743-44cb-876e-eab354bd767c","last_modified":1591199862230},{"schema":1591166935697,"derHash":"aZGdgg7fWCrbz44JKpKE2QF3LuK0Geqd4fWHLHkfxvo=","subject":"CN=Thawte EV RSA CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHzAdBgNVBAMTFlRoYXd0ZSBFViBSU0EgQ04gQ0EgRzI=","whitelist":false,"attachment":{"hash":"ce181
8d94d078e469bacac8ce640901ec6f9ef4e08ee8ed1295da929ca3f4723","size":1626,"filename":"5jGxIiaHNj15fBcUBvvAsMfKNtiK_podXNf0YoRUoeI=.pem","location":"security-state-staging/intermediates/f5157a19-89e9-4513-9b51-b540e430b34c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5jGxIiaHNj15fBcUBvvAsMfKNtiK/podXNf0YoRUoeI=","crlite_enrolled":false,"id":"e05d537c-e98a-4c16-8476-344896c66748","last_modified":1591199862227},{"schema":1591166929792,"derHash":"ODkvF857aCwZjSnG5x0nQJZKIHTI0lWObP9kwngj8Sk=","subject":"CN=COMODO RSA Certification Authority,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGFMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDErMCkGA1UEAxMiQ09NT0RPIFJTQSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"f9fb67b8408e95dec2ccd730836629e9b9d21217185bc11efea7ba000d32c9b2","size":1963,"filename":"grX4Ta9HpZx6tSHkmCrvpApTQGo67CYDnvprLg5yRME=.pem","locatio
n":"security-state-staging/intermediates/866b660e-4e5e-4198-8a99-1bfad68e708d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"grX4Ta9HpZx6tSHkmCrvpApTQGo67CYDnvprLg5yRME=","crlite_enrolled":true,"id":"11673ac8-c50e-4666-a891-ff70f87c1a73","last_modified":1591199862224},{"schema":1591166937148,"derHash":"bKPl13ICFflFRFI+PEdLItppxzKuRV3IL49e4wLsVfw=","subject":"CN=Microsoft Azure TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMQ==","whitelist":false,"attachment":{"hash":"9ed7588547d656029af2bccfd199a781d49253141c1b25fe3816f388e01a40ba","size":2276,"filename":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=.pem","location":"security-state-staging/intermediates/d1dd8476-0af4-4e05-ae35-f513f493a2a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=","crlite_enrolled":true,"id":"54dcf0fb-88b2-43d1-b183-
0d27f9f1ca7e","last_modified":1591199862221},{"schema":1591166925354,"derHash":"yE485bLKhdXfmHLf3awqoDrWJyV6/ZL39yCZLQA9hHw=","subject":"CN=TrustCor OV Email CA - G2,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFcxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xIjAgBgNVBAMMGVRydXN0Q29yIE9WIEVtYWlsIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"81ae2e960751b130d0b99f592bb364874c086c4953fc4713f9acde4303430257","size":2487,"filename":"5_U9kCeaRySTk4HsUFuOXpJ_NJ08eeHqbukItZJ_DmA=.pem","location":"security-state-staging/intermediates/e7f12a82-e8f6-40a3-a1df-8d55d14e713e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5/U9kCeaRySTk4HsUFuOXpJ/NJ08eeHqbukItZJ/DmA=","crlite_enrolled":false,"id":"2bc63522-d07a-4d32-b1dc-4fa0c956f17c","last_modified":1591199862219},{"schema":1591166928355,"derHash":"vJE3miHnveEbRVvx1RGGMxaCgFpKNTqO4lj3oDcGxmQ=","subject":"CN=DigiCert Secure Site Pro EV ECC CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MFcxCzAJBgNVBAYTAlVTMRU
wEwYDVQQKEwxEaWdpQ2VydCBJbmMxMTAvBgNVBAMTKERpZ2lDZXJ0IFNlY3VyZSBTaXRlIFBybyBFViBFQ0MgQ04gQ0EgRzM=","whitelist":false,"attachment":{"hash":"175f55c6e184737a8ef08da7da2ba8eeb68ccb7a8f4c26cb4135728b20cc7228","size":1374,"filename":"ABohyUv2yKwrj07ViEB9SgfSMpe6-G4RvaB7869gYaQ=.pem","location":"security-state-staging/intermediates/62c0ef15-c0da-4ff8-958c-8a5f9420afe1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ABohyUv2yKwrj07ViEB9SgfSMpe6+G4RvaB7869gYaQ=","crlite_enrolled":false,"id":"0197f7a1-e219-43b2-b473-43a75d63a1a6","last_modified":1591199862216},{"schema":1591166931233,"derHash":"9lG1yq2Qm8SzM6TDzHN76crUmJD7ltItvB4h438NtVE=","subject":"CN=Sectigo Partners - Client Authentication and Secure Email - RSA,O=Sectigo Limited,C=GB","subjectDN":"MHExCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxSDBGBgNVBAMTP1NlY3RpZ28gUGFydG5lcnMgLSBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIFNlY3VyZSBFbWFpbCAtIFJTQQ==","whitelist":false,"attachment":{"hash":"45e2cb2916cebbc90466fd2304cb16497db3d
816cf32d7d3cebe897ace744a9c","size":2280,"filename":"89Ol1fIDO-V67gTYc90uHy6AX2aUkT-e7bZJZPsPRDY=.pem","location":"security-state-staging/intermediates/46453155-431d-4965-a199-bbcc878c82de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"89Ol1fIDO+V67gTYc90uHy6AX2aUkT+e7bZJZPsPRDY=","crlite_enrolled":false,"id":"db218d0f-2b15-4354-b0c0-aa1aeb5bad5c","last_modified":1591199862213},{"schema":1591166934097,"derHash":"jG24FxrmeF8FQmrljD0291WTUiAukgm50psb1EeWHcg=","subject":"CN=SECOM Passport for Member PUB CA5,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTU=","whitelist":false,"attachment":{"hash":"778625b74bb48d643b387a0656870db1b5624e8da9cf6eb4625cb095b6badcbe","size":1833,"filename":"v3h5R_3OzMC-NBXKj05v4LQG5laFzE9fB4KsGpwAMtk=.pem","location":"sec
urity-state-staging/intermediates/93efcc52-53a0-4409-91be-be430a0c43f1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"v3h5R/3OzMC+NBXKj05v4LQG5laFzE9fB4KsGpwAMtk=","crlite_enrolled":true,"id":"54d7197f-50f6-43db-a133-6f98696362d5","last_modified":1591199862210},{"schema":1591166922501,"derHash":"BHeVeFzc/55uCuEiSS5be/CKnlxJdi4ry1J0fGkDFWE=","subject":"CN=NETLOCK Trust EV CA 3,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"MFcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMR4wHAYDVQQDDBVORVRMT0NLIFRydXN0IEVWIENBIDM=","whitelist":false,"attachment":{"hash":"5baaa1ca8ca90156561df8c1bc2cd10801794f20c1984d55bbcedeb1417c7dd2","size":2203,"filename":"vRSkgbqFoy29lSNM6Ih557Nl-K07Rwh3GriW7t3fMJw=.pem","location":"security-state-staging/intermediates/7c1161bd-10bb-4642-b809-92c87a367bf2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vRSkgbqFoy29lSNM6Ih557Nl+K07Rwh3GriW7t3fMJw=","crlite_enrolled":false,"id":"75389d14-b6d9-4b99-8f96-a61e30aaa117","last_
modified":1591199862208},{"schema":1591166926812,"derHash":"yYFBK1WBDDfBgm0kZn0ayos21uvwmm2MjlRZBT/hweU=","subject":"CN=CrazySSL ECC CA,O=TrustOcean Limited,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxGDAWBgNVBAMTD0NyYXp5U1NMIEVDQyBDQQ==","whitelist":false,"attachment":{"hash":"747b534a20d09d3120dad524bafdfbf5cb11711b35f79294ed033004fb14560b","size":1232,"filename":"ZQQdhiUGJKIn2qNuTwRgNkaJQk3QRe-OCri6lbwMZgQ=.pem","location":"security-state-staging/intermediates/36d8be0c-e7bf-47dc-9c16-a44982c5b45a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZQQdhiUGJKIn2qNuTwRgNkaJQk3QRe+OCri6lbwMZgQ=","crlite_enrolled":false,"id":"fac0b4a6-912b-4c27-9d25-3f313e16c85e","last_modified":1591199862202},{"schema":1591166921097,"derHash":"iKuWH2T5No9MTRMH9Z1OWcXlcPhSpsUROo/yjgQxUVc=","subject":"CN=Atos TrustedRoot Client-CA for Worldline 2020,O=Atos,C=DE","subjectDN":"MFQxNjA0BgNVBAMMLUF0b3MgVHJ1c3RlZFJvb3QgQ2xpZW50LUNBIGZvciBXb3JsZGxpbmUgMjAyMDENMAsGA1UEC
gwEQXRvczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"8895b7aafb7411c125d5f5f5e5c9cc15845e1090369326b33c602d60f278f664","size":2008,"filename":"zPRLgkk0XdrL8_6Lzu5ze4i8hb4_92LoMI-3ehy---c=.pem","location":"security-state-staging/intermediates/197f3e64-6163-4266-a36d-a1f82bbc2ed3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zPRLgkk0XdrL8/6Lzu5ze4i8hb4/92LoMI+3ehy+++c=","crlite_enrolled":false,"id":"5bdbdd05-0f5d-45cc-8395-71ce201b26dc","last_modified":1591199862199},{"schema":1591166919650,"derHash":"TUC18q3mX5K6SHoN0TnaJ1YSIAwcBpVR1Vdh0xr+9U0=","subject":"CN=TrustOcean Organization Software Vendor CA,O=TrustOcean Limited,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxMzAxBgNVBAMTKlRydXN0T2NlYW4gT3JnYW5pemF0aW9uIFNvZnR3YXJlIFZlbmRvciBDQQ==","whitelist":false,"attachment":{"hash":"e39d05e5f9c53252def849bf70674041fa74e229d6f216deade7fa12494cb266","size":2081,"filename":"DNaN9ECmC5lN-TJRanHzxHgUnOqZKkkYnFou0gIs0Rs=.pem","location
":"security-state-staging/intermediates/013ea5f1-eeed-4770-b182-f088fce7cf3d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DNaN9ECmC5lN+TJRanHzxHgUnOqZKkkYnFou0gIs0Rs=","crlite_enrolled":false,"id":"12d3c939-3013-4a58-bb98-f8641d3f5b70","last_modified":1591199862196},{"schema":1591166923906,"derHash":"0DgqxYGfla0QI4y+bjxO09gkHNlU0mU/6kcKyfOQzU0=","subject":"CN=GEANT eScience Personal CA 4,O=GEANT Vereniging,C=NL","subjectDN":"ME8xCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMSUwIwYDVQQDExxHRUFOVCBlU2NpZW5jZSBQZXJzb25hbCBDQSA0","whitelist":false,"attachment":{"hash":"0c9a8a1c3c7a80001a8265136dbe7ab0ca180b5cb986f88f590c1306ef88e1e4","size":2467,"filename":"E5rMC3LvWxbIbmC1yqxjOfCRXR4VmimCyZ810qKd2yc=.pem","location":"security-state-staging/intermediates/1865fc47-5288-451c-bc32-7bcf66172e9d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"E5rMC3LvWxbIbmC1yqxjOfCRXR4VmimCyZ810qKd2yc=","crlite_enrolled":false,"id":"2ad040cf-f92c-4396-a43f-3ff1ceaf2e87","last_modif
ied":1591199862194},{"schema":1591166918242,"derHash":"OZWwGheACuz1SA6TnZ2kTtzMfPKTVlfGF51aHvol100=","subject":"CN=Athens University of Economics and Business TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGNMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTFFMEMGA1UEAww8QXRoZW5zIFVuaXZlcnNpdHkgb2YgRWNvbm9taWNzIGFuZCBCdXNpbmVzcyBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"11ea0406dfeeaa9f5ad947fa44f5668e897816a0cef799c302cf631508960b47","size":2877,"filename":"oHI6zIj2JBHJtqjt17sQSYylYI0zRaSACkBuS9578tg=.pem","location":"security-state-staging/intermediates/62628027-0ac7-4ce7-9faf-8e1d69efd621.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oHI6zIj2JBHJtqjt17sQSYylYI0zRaSACkBuS9578tg=","crlite_enrolled":false,"id":"73ad1e50-a261-4fd2-ad3f-4bdaad97c2af","last_modified":1591199862191},{"schema":1591166916773,"derHash":"YCHUo83r2Y1SmCNfWIH0uWnXHUPz7j3xVr8jYwsHrjs=","subject":"
CN=GEANT eScience Personal ECC CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MFMxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMSkwJwYDVQQDEyBHRUFOVCBlU2NpZW5jZSBQZXJzb25hbCBFQ0MgQ0EgNA==","whitelist":false,"attachment":{"hash":"a15cf405c7906db643b095bf625ec35404ec455eb1daec286aa2e13426ab47bb","size":1284,"filename":"2NMssuhH5JflFnMKpNfoZDqlv-C0lZhqf9O7FKDzn2k=.pem","location":"security-state-staging/intermediates/b482da9b-0ede-43e3-8d72-41cf5e16dc3d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2NMssuhH5JflFnMKpNfoZDqlv+C0lZhqf9O7FKDzn2k=","crlite_enrolled":false,"id":"c2502c1a-de63-491e-865a-683fb594c4ee","last_modified":1591199862185},{"schema":1591166909159,"derHash":"f4FM0UVJAKwTMTZLa23ga4fMjLmTbsWDEAgichBX06M=","subject":"CN=Sectigo SHA-256 DV Secure Server CA,O=Sectigo Limited,C=GB","subjectDN":"MFUxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLDAqBgNVBAMTI1NlY3RpZ28gU0hBLTI1NiBEViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"96985e5b8fc9
114fc1bf6fb46c70668299157f698f5a03a51844df4b86d1c687","size":1613,"filename":"VrhAF5b9APFDNaFQfbVHB1xrJSjOWlQAmlz3WdQFkqE=.pem","location":"security-state-staging/intermediates/95b7263b-b946-4b1b-97fc-588b469275fc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VrhAF5b9APFDNaFQfbVHB1xrJSjOWlQAmlz3WdQFkqE=","crlite_enrolled":false,"id":"75e0caaf-9db0-4002-8fc9-28e0a8675dd8","last_modified":1591199862181},{"schema":1591166907750,"derHash":"Bf/GS4/FO3n1ucYpYevMrLoZMdUPNNAU6SnrACtb2DI=","subject":"CN=Sectigo Partners - Server Authentication - RSA,O=Sectigo Limited,C=GB","subjectDN":"MGAxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxNzA1BgNVBAMTLlNlY3RpZ28gUGFydG5lcnMgLSBTZXJ2ZXIgQXV0aGVudGljYXRpb24gLSBSU0E=","whitelist":false,"attachment":{"hash":"34622395c087b9ecdf1001a6e9b02b94a16f0b8b5740c5fa10c266d6d293ea31","size":2255,"filename":"KnIj02v94up0vjV7A3aidbRS7a3ZTae0ANppOclqdzs=.pem","location":"security-state-staging/intermediates/702a1c60-d97b-4507-b9f5-08eb480da6df.pem
","mimetype":"application/x-pem-file"},"pubKeyHash":"KnIj02v94up0vjV7A3aidbRS7a3ZTae0ANppOclqdzs=","crlite_enrolled":false,"id":"adec9cb0-b198-46a2-8796-b1f419db6d26","last_modified":1591199862176},{"schema":1591166912114,"derHash":"ZfbCtEFU9cZCXzwcWyblyeNXF6/29FG9IWpiT0j6Br8=","subject":"CN=Microsoft Azure TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNg==","whitelist":false,"attachment":{"hash":"d23b9e148f80dcabe98cab74d01cf619cd6c75b4f333e73266ccd4eda1a59efc","size":2276,"filename":"Wl8MFY-9zijGG8QgEHCAK5fhA-ydPZxaLQOFdiEPz3U=.pem","location":"security-state-staging/intermediates/c7b3c306-3cae-4f8c-9796-9857ff2613fa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wl8MFY+9zijGG8QgEHCAK5fhA+ydPZxaLQOFdiEPz3U=","crlite_enrolled":true,"id":"67e78f14-8519-4508-b33f-9886e4cc3385","last_modified":1591199862173},{"schema":1591166901999,"derHash":"
jNco+cM5G6Q2ChDGbKSEyAdlHWIH8QYzZp7YiB/pG/U=","subject":"CN=CrowdStrike Global EV CA,O=CrowdStrike\\, Inc.,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRowGAYDVQQKExFDcm93ZFN0cmlrZSwgSW5jLjEhMB8GA1UEAxMYQ3Jvd2RTdHJpa2UgR2xvYmFsIEVWIENB","whitelist":false,"attachment":{"hash":"aeae72b6b6e2f2f8a2aa8ada26064ad98f11711c82a084d34471dd8ada45bc94","size":1853,"filename":"jbtEGKuN8b5BZ9dJqvvW9XPxqqghhmKxB6nuThNyJd8=.pem","location":"security-state-staging/intermediates/983271b4-b453-4809-8582-3af405f54fdc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jbtEGKuN8b5BZ9dJqvvW9XPxqqghhmKxB6nuThNyJd8=","crlite_enrolled":false,"id":"edfeea6f-0f8a-4a58-a196-634c0ea181e0","last_modified":1591199862165},{"schema":1591166913573,"derHash":"ApN5EY5XdSJsVNcYKjZ6JAtRdw9QEbs1F3z9F9myRFo=","subject":"CN=Deutsche Telekom AG secure email CA E02,O=Deutsche Telekom AG,C=DE","subjectDN":"MF0xCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNEZXV0c2NoZSBUZWxla29tIEFHMTAwLgYDVQQDDCdEZXV0c2NoZSBUZWxla29tIEFHIHNlY3VyZSBlbWFpbCBDQS
BFMDI=","whitelist":false,"attachment":{"hash":"6e88e41a6082feb041571a75be3c7b654d5697d0db3ceffb0299e4690d8d5fd4","size":2312,"filename":"212l6lxrSA898ktySyw4XkR_tW58YtsNEmSrE5hy0fc=.pem","location":"security-state-staging/intermediates/a35a70fa-aad1-4273-b4f6-96a9aff12f41.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"212l6lxrSA898ktySyw4XkR/tW58YtsNEmSrE5hy0fc=","crlite_enrolled":false,"id":"2b4e8679-20ae-4985-a806-2a5e63507ac3","last_modified":1591199862162},{"schema":1591166906381,"derHash":"HpU+FRI6leRwRL+vBrGXT7mXa4T0Nx69d/itge/QXAA=","subject":"CN=CEDEFOP Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIGzMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMSQwIgYDVQQDDBtDRURFRk9QIENsaWVudCBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"5983f16
1ec520da3023c0007656827199a31a855fdd2eb9b90bdeaae9b89390a","size":2893,"filename":"uwdG75MlCgrDelaIfeRDM31eTTu4dGBtOwv0vvamoqA=.pem","location":"security-state-staging/intermediates/4c553782-18e1-4296-8988-79845d8a1322.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uwdG75MlCgrDelaIfeRDM31eTTu4dGBtOwv0vvamoqA=","crlite_enrolled":false,"id":"10207011-b3ed-4c07-806d-0ca7a15f67e7","last_modified":1591199862159},{"schema":1591166899084,"derHash":"pLK0dUVVn1//t83aehIg5i+3TRt6mk1NrLKyqDnOdFY=","subject":"CN=DigiCert Secure Site EV ECC CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxLTArBgNVBAMTJERpZ2lDZXJ0IFNlY3VyZSBTaXRlIEVWIEVDQyBDTiBDQSBHMw==","whitelist":false,"attachment":{"hash":"fe2667a1a90e9632c52d9fbaa7270f136842dcb2a58d926acb1094829bab3c83","size":1370,"filename":"k53DKcmdvTrcweDtMvf_MKTy3iBxavrlU-riK2LCoiQ=.pem","location":"security-state-staging/intermediates/b5412eae-7d6f-41c0-89be-66ca27c50b2d.pem","mimetype":"applicatio
n/x-pem-file"},"pubKeyHash":"k53DKcmdvTrcweDtMvf/MKTy3iBxavrlU+riK2LCoiQ=","crlite_enrolled":false,"id":"205d8820-e751-432c-9078-56282ef45802","last_modified":1591199862156},{"schema":1591166893168,"derHash":"Je7RMdcZNZfkjU42U2zFz/v56yBCxiVzrolo2KNpXxw=","subject":"CN=University of Piraeus TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHcxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMS8wLQYDVQQDDCZVbml2ZXJzaXR5IG9mIFBpcmFldXMgVExTIFJTQSBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"550cd132d0b40f0576ab9d26a6f5bf1dc59ff3e329b9631757e620752e685318","size":2800,"filename":"yoaRLzm23zeQXpsVd163dslqNpFi19V_XBBOcxeUJWo=.pem","location":"security-state-staging/intermediates/6c2fcd65-e0b3-4577-b113-10ecfe46cc56.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yoaRLzm23zeQXpsVd163dslqNpFi19V/XBBOcxeUJWo=","crlite_enrolled":false,"id":"c232a4ca-24ba-45bd-88a7-77cd5d193f7e","last_modified":159
1199862154},{"schema":1591166903471,"derHash":"ctD3y/RSm4DDSny7Q4vR0OH8JugOWcvU/XMU/N3w6ZQ=","subject":"CN=DigiCert High Assurance Trust Service EV CA,O=DigiCert Inc,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxNDAyBgNVBAMTK0RpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIFRydXN0IFNlcnZpY2UgRVYgQ0E=","whitelist":false,"attachment":{"hash":"0aa319cc69c625abdd0fac5d90509c1840a629bc7b17f7130b545c0bfd57c6eb","size":1699,"filename":"HA5OXoZpETZhlPuW6jLvs2pyRrgxtQPRGRxa5tAQugE=.pem","location":"security-state-staging/intermediates/3af22c45-79a8-47ec-b3d0-1aeade14957b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HA5OXoZpETZhlPuW6jLvs2pyRrgxtQPRGRxa5tAQugE=","crlite_enrolled":false,"id":"581603f2-07f6-428c-bee1-1efb081ee0c2","last_modified":1591199862149},{"schema":1591166900577,"derHash":"YoBqPZQu1PbAkaEx5jY7E43WOlw830QT0AzIoMMzqfg=","subject":"CN=CERTDATA SSL OV CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MG4xCzAJBgNVBAYTAkJSMS0wKw
YDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExMDAuBgNVBAMMJ0NFUlREQVRBIFNTTCBPViBDQSAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"2f80f47c488ec7412b055557852db65a46130e869818968c2e1abd16dfde9038","size":2129,"filename":"j329Y60dfipsfu2WQjIJzo3bfYjWBMO0L6-erwtRMEM=.pem","location":"security-state-staging/intermediates/ac48c1cf-d260-4b4a-beb7-599ef5ee1de8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"j329Y60dfipsfu2WQjIJzo3bfYjWBMO0L6+erwtRMEM=","crlite_enrolled":false,"id":"538da95e-219e-4f04-9887-5ef9291a70ab","last_modified":1591199862143},{"schema":1591166887418,"derHash":"qONS2wyOJ7rlg9AVFG6Led7gkdVjj1g6DEQvO/Vd7rM=","subject":"CN=Inst. of Accelerating Sys and Applications Client RSA SubCA R2,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHWMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW
5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMUcwRQYDVQQDDD5JbnN0LiBvZiBBY2NlbGVyYXRpbmcgU3lzIGFuZCBBcHBsaWNhdGlvbnMgQ2xpZW50IFJTQSBTdWJDQSBSMg==","whitelist":false,"attachment":{"hash":"13056507a245291565a35702e8a516a852c5655e71152a9aa83d1952fbc2e8ee","size":3019,"filename":"zgmH0SdYDJGk955F1_GyB2cxMwfYJTe5cQw86vwds4o=.pem","location":"security-state-staging/intermediates/af60a983-8e6b-42d9-8628-b6b31228e1b8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zgmH0SdYDJGk955F1/GyB2cxMwfYJTe5cQw86vwds4o=","crlite_enrolled":false,"id":"091a0fcb-58b7-4cca-9ae4-c64ea842282e","last_modified":1591199862132},{"schema":1591166894678,"derHash":"2gxJgfYzbgbBKffoFDsqVKqFoUpjykT84s3cae7niMk=","subject":"CN=Ionian University TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHMxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMSswKQYDVQQDDCJJb25pYW4gVW5pdmVyc2l0eSBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,
"attachment":{"hash":"86df2e731f35984856a01fe3f4dd74d61e7b0c1d84cd76b17bb01d4e0e90568a","size":2779,"filename":"tQEYBAU52znFOxCYz6CBZu4mfcBhcZVQIztFuFsaj5w=.pem","location":"security-state-staging/intermediates/2622e890-355a-4626-b276-90bc8df7aa57.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tQEYBAU52znFOxCYz6CBZu4mfcBhcZVQIztFuFsaj5w=","crlite_enrolled":false,"id":"8abdff0c-264b-47ce-9085-9d5f2b8e9c0a","last_modified":1591199862129},{"schema":1591166896111,"derHash":"6kI/GzsbUp0cfbmiGvh9x43nJZVV4pi6JsY88SdakSw=","subject":"CN=Baidu\\, Inc. DV CA,O=Baidu\\, Inc.,C=CN","subjectDN":"MD8xCzAJBgNVBAYTAkNOMRQwEgYDVQQKEwtCYWlkdSwgSW5jLjEaMBgGA1UEAxMRQmFpZHUsIEluYy4gRFYgQ0E=","whitelist":false,"attachment":{"hash":"4d24e6e2737c306ddb3da55bc36a62f0205cbf4ede28147d78ad6ce31bd2a2b0","size":2056,"filename":"XDCvV-xbAMAx9ilt0xDgWpOhUuTMeTe4IRR7qYMYfJA=.pem","location":"security-state-staging/intermediates/44bb90ea-7bfd-4581-9df0-a2132775710d.pem","mimetype":"application/x-pem-file"},
"pubKeyHash":"XDCvV+xbAMAx9ilt0xDgWpOhUuTMeTe4IRR7qYMYfJA=","crlite_enrolled":false,"id":"fa66d869-faf6-42b8-b838-e3f95942d6cc","last_modified":1591199862126},{"schema":1591166890348,"derHash":"1hnzJXuYdW0ogR087pra2LyuG0Nnu7DHP2teVY+6RWM=","subject":"CN=DigiCert Basic EV ECC CN CA G2,O=DigiCert Inc,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IEJhc2ljIEVWIEVDQyBDTiBDQSBHMg==","whitelist":false,"attachment":{"hash":"41848d17b98767397ec8bf100d1dfe140c4770ad085d9c802b3d8c7b949b96e7","size":1378,"filename":"yE_naogfFzNf_bv3qdwlxZJxaARkFaKc5DZu2mp6Q34=.pem","location":"security-state-staging/intermediates/134279b7-bda6-4c1c-8662-4961873f1071.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yE/naogfFzNf/bv3qdwlxZJxaARkFaKc5DZu2mp6Q34=","crlite_enrolled":false,"id":"99330272-0e3e-4df5-9535-55e2097b7ee6","last_modified":1591199862124},{"schema":1591166884523,"derHash":"XdZh08sztQBcvtBFoiPdxERaqkHRrLXfcAiEytm6QZU=","subject":"CN=ZeroSS
L ECC Domain Secure Site CA,O=ZeroSSL,C=AT","subjectDN":"MEsxCzAJBgNVBAYTAkFUMRAwDgYDVQQKEwdaZXJvU1NMMSowKAYDVQQDEyFaZXJvU1NMIEVDQyBEb21haW4gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"de8d5b5ee9e74901d1bbcc4ad4e1c43a96d0797608f7d04820cdabfa0de24f33","size":1280,"filename":"3fLLVjRIWnCqDqIETU2OcnMP7EzmN_Z3Q_jQ8cIaAoc=.pem","location":"security-state-staging/intermediates/cc8a3501-4e66-4b5b-9d98-d401566c67e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3fLLVjRIWnCqDqIETU2OcnMP7EzmN/Z3Q/jQ8cIaAoc=","crlite_enrolled":false,"id":"5f4e1d4e-6a23-4bbc-a9b9-366ff6016a5b","last_modified":1591199862121},{"schema":1591166888935,"derHash":"y1ez/yBAyyaUl2JbyQ+p17TtSTjG9g9C9pr99QisKZM=","subject":"CN=DigiCert Basic RSA CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJDAiBgNVBAMTG0RpZ2lDZXJ0IEJhc2ljIFJTQSBDTiBDQSBHMg==","whitelist":false,"attachment":{"hash":"af11309a3c20fa360cb678f8d6958ba267f86f202af25ff95cae834d95837fe4
","size":1821,"filename":"ZckwC4fqIUCeiz1_ihqLY9TDek4tDc704HFPrhqylPo=.pem","location":"security-state-staging/intermediates/a293e696-ef17-4439-8b31-20962f5f352a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZckwC4fqIUCeiz1/ihqLY9TDek4tDc704HFPrhqylPo=","crlite_enrolled":true,"id":"f921edde-d8b6-430f-aa42-636c604bb2a3","last_modified":1591199862118},{"schema":1591166881281,"derHash":"lRQaNVpaKqPgESIcq5/nOBD9tdiBNYZPA+TYUr0Lvts=","subject":"CN=Thawte RSA CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHDAaBgNVBAMTE1RoYXd0ZSBSU0EgQ04gQ0EgRzI=","whitelist":false,"attachment":{"hash":"419f063716d0b08e5119a943e2d8506a67bba9d8b72f725763a5b48b0911dfd3","size":1792,"filename":"hN3GzHyLopxOn8DxNQIEvpQa-NyS7R_1oQY0xsFsrOA=.pem","location":"security-state-staging/intermediates/0d05c78d-0f37-439e-b5d1-08268337d922.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hN3GzHyLopxOn8DxNQIEvpQa+NyS7R/1oQY0xsFsrOA=","crlite_enrolled":false,
"id":"0810cb55-6c6a-4343-a322-9e5c9f7920af","last_modified":1591199862116},{"schema":1591166886003,"derHash":"8mmsALQQAD9y3GKK+z2VAnljDHxdDIIUig/STfTaQwE=","subject":"CN=DigiCert Trust Service ECC CA,O=DigiCert Inc,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJjAkBgNVBAMTHURpZ2lDZXJ0IFRydXN0IFNlcnZpY2UgRUNDIENB","whitelist":false,"attachment":{"hash":"75b96b01d9b932fb522e5615db087c64e2ee12af68af026235262358e0eeef91","size":1410,"filename":"447EOyTQJY3PyAbUMHr-SyrdqoPSJsxpM0Nf26eUpV0=.pem","location":"security-state-staging/intermediates/82c3a715-65dc-4dc7-9803-8e94ab1605f7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"447EOyTQJY3PyAbUMHr+SyrdqoPSJsxpM0Nf26eUpV0=","crlite_enrolled":false,"id":"2184c07f-101d-4e6e-ab1a-f806fff4f1af","last_modified":1591199862113},{"schema":1591166873630,"derHash":"8AQ+n++zeup5TmkEN9wjnWvSxcoPtYoSJEVVoaiioBo=","subject":"CN=Panteion Univ. of Social and Political Sciences TLS RSA SubCA R1,O=Hellenic Academic and Resear
ch Institutions CA,C=GR","subjectDN":"MIGRMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTFJMEcGA1UEAwxAUGFudGVpb24gVW5pdi4gb2YgU29jaWFsIGFuZCBQb2xpdGljYWwgU2NpZW5jZXMgVExTIFJTQSBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"be73f7729891ce22885d13e919d4708521fcefe4b74165aa08c8af1edd701af1","size":2970,"filename":"gPEc0jcCVlywHAUQHhYL3X5OqG89O9YInrCwyDjgJ1A=.pem","location":"security-state-staging/intermediates/9922f7a2-d69e-4d2d-a01d-3ea5abe1a1cd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gPEc0jcCVlywHAUQHhYL3X5OqG89O9YInrCwyDjgJ1A=","crlite_enrolled":false,"id":"8d0bdf59-a81c-44d7-acc2-c7d6d72244e0","last_modified":1591199862110},{"schema":1591166882853,"derHash":"abCFmqwMqRvCm0IqPQS5/5D4e4Wje8BtuFMV9d5AvZU=","subject":"CN=CrazySSL RSA CA,O=TrustOcean Limited,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxGDAWBgNVBAMTD0NyYXp5U1NMIFJTQSBDQQ==","whitelist":false,"attachment":{"hash":"a
dc25f98c021da162cd92cb4b92db565ba5e5a23ac8adb3a819e65bfdb69adb9","size":2073,"filename":"oILpOhvA5LCMlaOiKW18m2FsNsgkjOkzuc7Rn4JSi0U=.pem","location":"security-state-staging/intermediates/2ce09943-1a2f-4726-b421-a52c2d8f6a91.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oILpOhvA5LCMlaOiKW18m2FsNsgkjOkzuc7Rn4JSi0U=","crlite_enrolled":false,"id":"4934e39d-e79f-478e-a9b9-339c5922e0b8","last_modified":1591199862107},{"schema":1591166876495,"derHash":"T/V3/d4o5h5/XKT19CvLsSvheXAKT+8kSJznaEigg0Y=","subject":"CN=TrustCor OV SSL CA - G2,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFUxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xIDAeBgNVBAMMF1RydXN0Q29yIE9WIFNTTCBDQSAtIEcy","whitelist":false,"attachment":{"hash":"cf99b2b77fcf543c7c67e25d79c9076859c38851045d20b200bb357d806163bd","size":2499,"filename":"Wpyq4op-j7iz0FI6Mlw06h6hqo6X_DGLpRt7yAcPkVc=.pem","location":"security-state-staging/intermediates/a1a3157e-3254-4565-a991-e1fce05b4212.pem","mimetype":"ap
plication/x-pem-file"},"pubKeyHash":"Wpyq4op+j7iz0FI6Mlw06h6hqo6X/DGLpRt7yAcPkVc=","crlite_enrolled":false,"id":"af05ac5f-9bff-4bd9-8cca-8a84c13ab21f","last_modified":1591199862105},{"schema":1591166872202,"derHash":"IuXm21yuQo7alq7QVk4rl3DsoswCUVjjep3e7eMfReU=","subject":"CN=Technical University of Crete Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHJMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTowOAYDVQQDDDFUZWNobmljYWwgVW5pdmVyc2l0eSBvZiBDcmV0ZSBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"349f0200e3e31175b7f871f287144f5fc1b0f766e23da219f0e2eb7ad790f83a","size":2881,"filename":"_CQ8b_NnBc7JI0Y-BPaUM3fLCvTvHHR9e17XKVFxpKQ=.pem","location":"security-state-staging/intermediates/f3b2f230-d3a1-4a11-8cbb-3ed9df6cba12.pem","mimetype":"applica
tion/x-pem-file"},"pubKeyHash":"/CQ8b/NnBc7JI0Y+BPaUM3fLCvTvHHR9e17XKVFxpKQ=","crlite_enrolled":false,"id":"0414d3b7-67d2-4ee4-ab18-cdc03115a996","last_modified":1591199862102},{"schema":1591166875099,"derHash":"iTfpDhSVyaeO+xgYLUP9xz/NKSq2NHoSuQd96HhTDmI=","subject":"CN=GeoTrust EV RSA CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGEdlb1RydXN0IEVWIFJTQSBDTiBDQSBHMg==","whitelist":false,"attachment":{"hash":"dbcead7fd92db8003e615e6ab4e681c29b1f4e1f5a16537b11786c41b180f203","size":1646,"filename":"AKgAa8DfB2Gh8BJb5YJO995EeaGcs3vEecdkZw_OD7I=.pem","location":"security-state-staging/intermediates/4f22de4a-5b44-4d18-bc10-7deaee7abcc7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AKgAa8DfB2Gh8BJb5YJO995EeaGcs3vEecdkZw/OD7I=","crlite_enrolled":true,"id":"4af8f737-c4f7-4213-a097-781dca9addd3","last_modified":1591199862099},{"schema":1591166864681,"derHash":"J9b9r4ApeEbf7/guf1i5pIrJ4+6ToRKxu+JD7hqXRHw=","subject":"CN=Glo
balSign PersonalSign 2 CA - SHA256 - G4,O=GlobalSign nv-sa,C=BE","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTMwMQYDVQQDEypHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAyIENBIC0gU0hBMjU2IC0gRzQ=","whitelist":false,"attachment":{"hash":"72db62fc54a69dcc4b1a4901db76c47a55d537320160cc5a8fbb0927080ef6d0","size":1764,"filename":"Somjy3lQL3f4pdxt3-mUebYuNRJSdhkiZOiWMZfaFJk=.pem","location":"security-state-staging/intermediates/173ac902-1ec7-4f50-8515-83dd7b63fb48.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Somjy3lQL3f4pdxt3+mUebYuNRJSdhkiZOiWMZfaFJk=","crlite_enrolled":false,"id":"e478fb02-efe1-44fa-8785-ca6be9105a6a","last_modified":1591199862097},{"schema":1591166877998,"derHash":"SkVVmtiWhLtDn80sxMXsD5LuBpLNa5djlX3jGi9GfMo=","subject":"CN=Enterprise Premium Public CA,O=Mitsubishi Electric Information Network Corporation,C=JP","subjectDN":"MHIxCzAJBgNVBAYTAkpQMTwwOgYDVQQKEzNNaXRzdWJpc2hpIEVsZWN0cmljIEluZm9ybWF0aW9uIE5ldHdvcmsgQ29ycG9yYXRpb24xJTAjBgNVBAMTHEVudGVyc
HJpc2UgUHJlbWl1bSBQdWJsaWMgQ0E=","whitelist":false,"attachment":{"hash":"48223edca6350527ab420c9318720f7b18a516efb69f4d3a590a6036f911ea66","size":2020,"filename":"9lt_Fzns7hF03gLZXsgVEGOFYGx2FHKYDGJ_mLKiYOQ=.pem","location":"security-state-staging/intermediates/ba6ce4e6-8bf6-4e20-b6c7-6627aa13effb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9lt/Fzns7hF03gLZXsgVEGOFYGx2FHKYDGJ/mLKiYOQ=","crlite_enrolled":false,"id":"0ab7ad33-dfba-49fa-853d-2ba541df6e11","last_modified":1591199862094},{"schema":1591166867546,"derHash":"cNK5bnwEC2Jw/yC7a6mEITEq035GK+y4O+lQK4PfVpc=","subject":"CN=CERTDATA SSL DV CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MG4xCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExMDAuBgNVBAMMJ0NFUlREQVRBIFNTTCBEViBDQSAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"10d55d2c2cadcf08f96b96c50475b9f79aeea102d66ab44733cfbd5b499b113c","size":2129,"filename":"96wDgmEz6BSfBEFFYy6V
QtjNjdFAvz3d60x4NuYW52A=.pem","location":"security-state-staging/intermediates/de9b3e8a-9359-4fdf-803d-cc3302061a0d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"96wDgmEz6BSfBEFFYy6VQtjNjdFAvz3d60x4NuYW52A=","crlite_enrolled":false,"id":"3ce95fd6-d1f8-4199-9fa8-c95bac94f60f","last_modified":1591199862091},{"schema":1591166879750,"derHash":"9igmTHnb+9/P3sZDFxvcvU3nSD+cgOpZBoiHrkSaLkg=","subject":"CN=HARICA EV TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,L=Athens,C=GR","subjectDN":"MHwxCzAJBgNVBAYTAkdSMQ8wDQYDVQQHDAZBdGhlbnMxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ0ExIzAhBgNVBAMMGkhBUklDQSBFViBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"fceb3c305820e5740d776d78ddc750d3e1437be8b57d2d23a8d244530c7a9624","size":2475,"filename":"qQHYBA8HuHBDaaxDEsg5_SBSGWrd6XH3D7_lIoKEbz8=.pem","location":"security-state-staging/intermediates/f457a0bc-793c-495f-b9cf-cdda16dbe625.pem","mimetype":"application/x-pem-file"},"pu
bKeyHash":"qQHYBA8HuHBDaaxDEsg5/SBSGWrd6XH3D7/lIoKEbz8=","crlite_enrolled":false,"id":"93ed36ab-5394-4851-a2ff-ebe5055f9d98","last_modified":1591199862088},{"schema":1591166870531,"derHash":"iK+RXGbUJ/GTFVc6/jnFliyKEWju2z/4+KLtnbS+R5Q=","subject":"CN=TrustCor IV Email CA - G2,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFcxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xIjAgBgNVBAMMGVRydXN0Q29yIElWIEVtYWlsIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"040c4a3d4b54a50ec78e9f5629b11f91e34e93c44a7405f344d01e4eabf67ee4","size":1796,"filename":"8Go2wmmhcWTAHDnpeLCjSIByzS-G4W6HtvLhlIVNNAA=.pem","location":"security-state-staging/intermediates/5c86b050-ff2b-4fd2-8968-cd839be57614.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8Go2wmmhcWTAHDnpeLCjSIByzS+G4W6HtvLhlIVNNAA=","crlite_enrolled":false,"id":"053c0da4-29be-41ad-96a3-db952c73a378","last_modified":1591199862086},{"schema":1591166869000,"derHash":"RM6X9clX3QVtRMPhvfzrLPmntCjtCJg5JkM2MDvKx+8=","
subject":"CN=CEDEFOP TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MGkxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMSEwHwYDVQQDDBhDRURFRk9QIFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"3026c201f734e5066c363d7aacffac89da4a95bf11bfcd83f195f70269ed6b89","size":2800,"filename":"56n8EMBsMqyH4pNbD4KmUsbeas26-ouP-jDHJMDFKcA=.pem","location":"security-state-staging/intermediates/258b19c6-10e8-4216-aa3d-5b45dfdfdd18.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"56n8EMBsMqyH4pNbD4KmUsbeas26+ouP+jDHJMDFKcA=","crlite_enrolled":false,"id":"763a3427-7045-435e-bbc2-31346fc77265","last_modified":1591199862083},{"schema":1591166866080,"derHash":"48JCed1qM3+IGxvGkuh49KMa/pWFHyCPlIALDCTYjDg=","subject":"CN=GeoTrust RSA CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFUdlb1RydXN0IFJTQSBDTiBDQSBHMg==","whitelist":false,"attachment
":{"hash":"ab4a0d2c2f5e08bd7983cd7ef5ded4ca8f1b29963790a87f297d00860979dc97","size":1813,"filename":"LYxGolhhMxT6m_MXQhVdp6zkEP-xK8sxXN4I4pBqtFs=.pem","location":"security-state-staging/intermediates/b2b450c3-0185-461d-8eb2-c785ac2b386e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LYxGolhhMxT6m/MXQhVdp6zkEP+xK8sxXN4I4pBqtFs=","crlite_enrolled":true,"id":"bb0939ee-0780-4a40-abd6-9461d85b0902","last_modified":1591199862080},{"schema":1591166863169,"derHash":"h6rZeKX+LulB5AaPmWPqKb2qWIeNJBIkmoLNIvgSbYI=","subject":"CN=University of Crete Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIG/MQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTAwLgYDVQQDDCdVbml2ZXJzaXR5IG9mIENyZXRlIENsaWVudCBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"692b3293cf1a2c637
247f3db6669e730f76949fccde9d90ac06bdcef756d76d2","size":3092,"filename":"H9OjMfo3b9PnK6ZODqvqQ8917lxRCk2emeK5O_WdnJ8=.pem","location":"security-state-staging/intermediates/376fbaf1-eb26-410a-9ba7-3e657a2a3097.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H9OjMfo3b9PnK6ZODqvqQ8917lxRCk2emeK5O/WdnJ8=","crlite_enrolled":false,"id":"58bc984c-12d9-448c-8fcb-884fca564508","last_modified":1591199862077},{"schema":1591166860318,"derHash":"TQ/0Ld2VUufnd6bFdpVzcJkMroNjcXXmV86Ez2riElw=","subject":"CN=TrustCor IV Email CA - G2 - RSA,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MF0xCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xKDAmBgNVBAMMH1RydXN0Q29yIElWIEVtYWlsIENBIC0gRzIgLSBSU0E=","whitelist":false,"attachment":{"hash":"6831a4af86aa2fceccfa00b8de0f564eda083e00e5ed0d648ef7faeb5148b941","size":1691,"filename":"8ktLjVrByicgpMzqI7L7d5WdKCuRsMvvZdUgHPdSMMM=.pem","location":"security-state-staging/intermediates/3ab0441b-91be-4203-a0a7-a673f60b6614.pem","mimetype"
:"application/x-pem-file"},"pubKeyHash":"8ktLjVrByicgpMzqI7L7d5WdKCuRsMvvZdUgHPdSMMM=","crlite_enrolled":false,"id":"a253a65f-3afa-4490-96c8-b2fefa45a8ea","last_modified":1591199862074},{"schema":1591166857432,"derHash":"cB6yP5VWTNVWnNIOXwXCiIkAuum6A6v1q+V7/gS1SmA=","subject":"CN=HARICA EV TLS ECC SubCA R1,O=Hellenic Academic and Research Institutions CA,L=Athens,C=GR","subjectDN":"MHwxCzAJBgNVBAYTAkdSMQ8wDQYDVQQHDAZBdGhlbnMxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ0ExIzAhBgNVBAMMGkhBUklDQSBFViBUTFMgRUNDIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"2bdd6ee732808aea1903a2c083127ea36909183341515eb1c2d363248a76902d","size":1337,"filename":"guE2rUJ3slSQ9iYP0Ub25zrLqasAFng1eTC5H9BqTUg=.pem","location":"security-state-staging/intermediates/7fa0d0da-ae47-4777-b3fb-42cd8bced5c8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"guE2rUJ3slSQ9iYP0Ub25zrLqasAFng1eTC5H9BqTUg=","crlite_enrolled":false,"id":"7946e404-ecf2-49eb-932a-103eedce84ab","last_
modified":1591199862071},{"schema":1591166861744,"derHash":"ZgjoSOY6aCBgm4VcIjJPa4yxU+3MgBMyVNcVa8PToCY=","subject":"CN=TrustOcean Organization Client Certification CA,O=TrustOcean Limited,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxODA2BgNVBAMTL1RydXN0T2NlYW4gT3JnYW5pemF0aW9uIENsaWVudCBDZXJ0aWZpY2F0aW9uIENB","whitelist":false,"attachment":{"hash":"65ea831c43dee9e586e0d0ae71fba096e656cdc1710cbec81161240dfaf2123c","size":2105,"filename":"YWMMSjIsV3sKAsZ1Dvh-XMo6c_3lrcidiB03ALvLATA=.pem","location":"security-state-staging/intermediates/0a25e298-0fdd-4f7e-bf45-bf211562056b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YWMMSjIsV3sKAsZ1Dvh+XMo6c/3lrcidiB03ALvLATA=","crlite_enrolled":false,"id":"0dba3544-d858-465f-b63e-47e4a678e132","last_modified":1591199862068},{"schema":1591166854460,"derHash":"DuACkMinHZheOL64TsrJ0Cm1WWcRnUfLy+NH8WTfS0o=","subject":"CN=GlobeSSL EV CA,O=CentralNic Luxembourg S\u00e0rl,C=LU","subjectDN":"MEwxCzAJBgNVBAYTAkxVM
SQwIgYDVQQKDBtDZW50cmFsTmljIEx1eGVtYm91cmcgU8OgcmwxFzAVBgNVBAMTDkdsb2JlU1NMIEVWIENB","whitelist":false,"attachment":{"hash":"0fd5faa4f58b29049d8b91e89fec33c6dc0dec4eb75a8a1762d58c678142084b","size":2113,"filename":"CxpahwRxk_rjFSnTogI-dPS7QQ16sQ0GM12A7ChwIS4=.pem","location":"security-state-staging/intermediates/60a23013-1e93-4dc8-b52b-246c4ad92a03.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CxpahwRxk/rjFSnTogI+dPS7QQ16sQ0GM12A7ChwIS4=","crlite_enrolled":false,"id":"5bb075c8-70d6-4037-ac4b-2d7fe0e7d948","last_modified":1591199862065},{"schema":1591166851621,"derHash":"/UfLIwR4baJPhJ/KiKxcrUufwDf575LNt8YArxizKrg=","subject":"CN=MeSince Secure Email CA [Run by the Issuer],O=MeSince Technology Limited,C=CN","subjectDN":"MGkxCzAJBgNVBAYTAkNOMSMwIQYDVQQKExpNZVNpbmNlIFRlY2hub2xvZ3kgTGltaXRlZDE1MDMGA1UEAwwsTWVTaW5jZSBTZWN1cmUgRW1haWwgQ0EgIFtSdW4gYnkgdGhlIElzc3Vlcl0=","whitelist":false,"attachment":{"hash":"c5566f7d2a8434f0eddb8367a4cb46f563e2390f36ceac0355692ad81f11831d","size
":2109,"filename":"YzIWVNY9JMWk52vFK7cRTkUR1BXsWaEnPD4uzbUepjc=.pem","location":"security-state-staging/intermediates/2ed8238c-f5b4-49af-a65c-37e040edf53b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YzIWVNY9JMWk52vFK7cRTkUR1BXsWaEnPD4uzbUepjc=","crlite_enrolled":false,"id":"dea24760-68b1-4097-9960-86d8d488aaed","last_modified":1591199862062},{"schema":1591166849966,"derHash":"nOYws1+K4sZBnnNK2dL6MEdt2ec5Sx6Tsn+D93agJOo=","subject":"CN=AC Unidades de Sellado de Tiempo,OU=Ceres,O=FNMT-RCM,C=ES","subjectDN":"MHUxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ2VyZXMxGDAWBgNVBGEMD1ZBVEVTLVEyODI2MDA0SjEpMCcGA1UEAwwgQUMgVW5pZGFkZXMgZGUgU2VsbGFkbyBkZSBUaWVtcG8=","whitelist":false,"attachment":{"hash":"671a59fe01d2cd2074dbea84483abb7c9c75db400f3b54d2aebd79a620add787","size":2836,"filename":"RFLsjPTrs1EoFCjTCI7RLImxM2pGcGMiymQyT87-GT4=.pem","location":"security-state-staging/intermediates/ba299b7d-dc4a-4efd-b7d4-c67563ad72aa.pem","mimetype":"application/x-pem-file"},"pub
KeyHash":"RFLsjPTrs1EoFCjTCI7RLImxM2pGcGMiymQyT87+GT4=","crlite_enrolled":false,"id":"590c1b99-aca9-4c60-8b11-030c3d8071a5","last_modified":1591199862060},{"schema":1591166858926,"derHash":"JWQOYOqy1R//xDd28IewCzpzyFOa6EQKHL0BSHP+iCw=","subject":"CN=CERTDATA SMIME OV ECC CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MHQxCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExNjA0BgNVBAMMLUNFUlREQVRBIFNNSU1FIE9WIEVDQyBDQSAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"f7e54e3b9fd412e9b3097879572017a4abe1c6a15b59a5352aa1efbd5b7dd98c","size":1284,"filename":"B3SYowuqr6O2cz9jLEn6_2MBbD9I9YZYmd58lDVi-K0=.pem","location":"security-state-staging/intermediates/8e3d5211-286e-4f56-b365-1a73e696a4d5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B3SYowuqr6O2cz9jLEn6/2MBbD9I9YZYmd58lDVi+K0=","crlite_enrolled":false,"id":"98be93bb-bc71-4fc9-8bdd-f2c9c7737238","last_modified":1591199862057},{"schema":1591
166855957,"derHash":"bXsxthrbeOvGp2YpaIYgnqjnT0YA2uR7eNo/CL559OU=","subject":"CN=Enterprise Premium Public CA,O=Mitsubishi Electric Information Network Corporation,C=JP","subjectDN":"MHIxCzAJBgNVBAYTAkpQMTwwOgYDVQQKEzNNaXRzdWJpc2hpIEVsZWN0cmljIEluZm9ybWF0aW9uIE5ldHdvcmsgQ29ycG9yYXRpb24xJTAjBgNVBAMTHEVudGVycHJpc2UgUHJlbWl1bSBQdWJsaWMgQ0E=","whitelist":false,"attachment":{"hash":"499764662760ff98d3639ab422aa0d20b4ef8daee619d174c63d3ba9e3f28abf","size":2003,"filename":"9lt_Fzns7hF03gLZXsgVEGOFYGx2FHKYDGJ_mLKiYOQ=.pem","location":"security-state-staging/intermediates/dadedae0-6925-4458-829e-3ca4f70bd690.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9lt/Fzns7hF03gLZXsgVEGOFYGx2FHKYDGJ/mLKiYOQ=","crlite_enrolled":false,"id":"38353e65-3a23-4c3e-8f3c-ed8f0e8dd8fd","last_modified":1591199862054},{"schema":1591166853045,"derHash":"ukJRIvMdm658vh5/ov9Det8oPgFDM0hfdpHLhWrsd2o=","subject":"CN=Harokopio University TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","
subjectDN":"MHYxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMS4wLAYDVQQDDCVIYXJva29waW8gVW5pdmVyc2l0eSBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"cdf8c52a3037ef4ea0b094b6ba99c9767673ebc4fd1c01418360482d28225ddf","size":3031,"filename":"mTSefyaEu5Ue6uOHJdZVbu7WMV69SsHOEk-8P2x2eZw=.pem","location":"security-state-staging/intermediates/697fa4e3-d146-410d-a470-027574d10e7c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mTSefyaEu5Ue6uOHJdZVbu7WMV69SsHOEk+8P2x2eZw=","crlite_enrolled":false,"id":"da737b54-eb2a-4dd0-92d6-87dc7f62e5ee","last_modified":1591199862051},{"schema":1591166845601,"derHash":"fK7saA5kl/xRCQc/g4FueY8n+JaKJmPByVcRtUgZLjU=","subject":"CN=GeoTrust ECC CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFUdlb1RydXN0IEVDQyBDTiBDQSBHMg==","whitelist":false,"attachment":{"hash":"253b1b900adc6be80e90ac3862b020d22321e25976cb9c08fa7266318159ad58","
size":1374,"filename":"5hUeeQGevtQx_9LReJqSkj73Yv0TUcld9s9jPFCqJqA=.pem","location":"security-state-staging/intermediates/ff6fd4b8-f7d7-4779-922b-29b398cecef6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5hUeeQGevtQx/9LReJqSkj73Yv0TUcld9s9jPFCqJqA=","crlite_enrolled":true,"id":"c542f5dc-33cb-490b-9311-a1dadc26b605","last_modified":1591199862048},{"schema":1591166848442,"derHash":"gmV1bdXNijfuYeQDUSiOSxaondJIwexOuiWq8WGr9Jg=","subject":"CN=AC Sector P\u00fablico,OU=Ceres,O=FNMT-RCM,C=ES","subjectDN":"MGcxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ2VyZXMxGDAWBgNVBGEMD1ZBVEVTLVEyODI2MDA0SjEbMBkGA1UEAwwSQUMgU2VjdG9yIFDDumJsaWNv","whitelist":false,"attachment":{"hash":"cfe09ce65e4dcbc8449292b7e92e1cdaacc6c228de14a49ccc6300fda8e73598","size":2816,"filename":"aN4wUQfL0YidepsDn9ylA8GoitH0XRdS349Qxylp2RU=.pem","location":"security-state-staging/intermediates/7f6c9b16-66e0-4bd8-bb34-a2812443ecfb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aN4wUQfL0YidepsDn
9ylA8GoitH0XRdS349Qxylp2RU=","crlite_enrolled":false,"id":"72c55deb-6292-4294-b3d7-cd0eb0bc896a","last_modified":1591199862045},{"schema":1591166842796,"derHash":"Gvi01Jxae22lNt6pL9+vRXNiBa/KLa//rstxLanD69E=","subject":"CN=Technical University of Crete TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MH8xCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTcwNQYDVQQDDC5UZWNobmljYWwgVW5pdmVyc2l0eSBvZiBDcmV0ZSBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"900dcce8153813e7b2c906ae9d9fa6097afb0dc015d9e872eb1ab2b64a110ab5","size":2800,"filename":"t--9MaZjKuDEfu4IV5cTbN0TXadfwJu6Tn4gQDEWuoo=.pem","location":"security-state-staging/intermediates/c78cc87b-67ad-4dd7-a00f-ea7badd2fb2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"t++9MaZjKuDEfu4IV5cTbN0TXadfwJu6Tn4gQDEWuoo=","crlite_enrolled":false,"id":"d8b67105-91c0-4a05-8e13-ccb8eacc591f","last_modified":1591199862043},{"schema":15911668
41277,"derHash":"d81ReEppPZSC5+ppTkBTvP2d9lWA+84UsqdSfAgYA+E=","subject":"CN=DigiCert Assured ID TLS CA G2,O=DigiCert Inc,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJjAkBgNVBAMTHURpZ2lDZXJ0IEFzc3VyZWQgSUQgVExTIENBIEcy","whitelist":false,"attachment":{"hash":"38c26b5824725648f58682db859677ed5f482b8a98476190e2f4b5cea965ce52","size":1918,"filename":"7DHaE3Q3dQ9k5S7DaYbXog4BK-Oj492ta3kc2xRJ04s=.pem","location":"security-state-staging/intermediates/84f2426b-c265-4fe5-8bcc-09e6d612433c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7DHaE3Q3dQ9k5S7DaYbXog4BK+Oj492ta3kc2xRJ04s=","crlite_enrolled":true,"id":"d8d54086-08a6-43e4-94b4-1d46de796b92","last_modified":1591199862040},{"schema":1591166835191,"derHash":"0UBlCwqh/FTfkstGmFM3wGghRyd3CUfWeIWJpSAH6iA=","subject":"CN=GEANT Code Signing CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEoxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMSAwHgYDVQQDExdHRUFOVCBDb2RlIFNpZ25pbmcgQ0EgNA==","whitelist":false,"at
tachment":{"hash":"edc93cb9e5360feec50b43ae80da119d4e71408c3e9c92723064f3b2cc06cf8c","size":2446,"filename":"6rWABF2Zr2RIZW___Nsg04EsGouKiLCsOwLLFjWmcjI=.pem","location":"security-state-staging/intermediates/4e49cd28-5206-49f1-9fb9-df5b2bc7780d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6rWABF2Zr2RIZW///Nsg04EsGouKiLCsOwLLFjWmcjI=","crlite_enrolled":false,"id":"a60ee48d-740a-4c85-a973-cb905e3ec7bf","last_modified":1591199862036},{"schema":1591166844241,"derHash":"hzBOlUqqHTzYf9dXT/8/YNmEhHdEObE+L3EHGiz9oJU=","subject":"CN=CERTDATA CODESIGN CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MHAxCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExMjAwBgNVBAMMKUNFUlREQVRBIENPREVTSUdOIENBICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"hash":"1c51a822d23a496a6903a26b1c85074c8be0264142891eeda4cd9a5cb80ad364","size":2105,"filename":"Lb_GZlDH8vWm-YzPSBkFTGAPcXFglJ0TRI1d5ylxKrY=.pem","location":"security-s
tate-staging/intermediates/cc5c3cf7-c249-4d97-8a2f-f76d61d333e3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Lb/GZlDH8vWm+YzPSBkFTGAPcXFglJ0TRI1d5ylxKrY=","crlite_enrolled":false,"id":"fe08a0b2-fc6d-4141-8f1d-bc618e428b98","last_modified":1591199862033},{"schema":1591166833781,"derHash":"GYXnA415CbsDcMFplx+zPvcF+jvp+tG/iyrnwhTgST8=","subject":"CN=Sectigo Partners - Code Signing - RSA,O=Sectigo Limited,C=GB","subjectDN":"MFcxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLjAsBgNVBAMTJVNlY3RpZ28gUGFydG5lcnMgLSBDb2RlIFNpZ25pbmcgLSBSU0E=","whitelist":false,"attachment":{"hash":"7a7ac856690ca8a49161e5fdc6c4dd5cb328afc0b9ac474458d175401361f4f8","size":2231,"filename":"uVuyzfpTK-HYz0FgOd2jzoYbT2MGEVb8eXyyy7nusfA=.pem","location":"security-state-staging/intermediates/524618c9-698b-4f29-bc7e-77e200e21e58.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uVuyzfpTK+HYz0FgOd2jzoYbT2MGEVb8eXyyy7nusfA=","crlite_enrolled":false,"id":"d807888d-c6f2-4a81-9246-abd565f41150","las
t_modified":1591199862030},{"schema":1591166839860,"derHash":"z9/vA3z9vWuw4xHpuygcpgJxxdriaVMSAzgG+ksOlLc=","subject":"CN=Greek School Network TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHYxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMS4wLAYDVQQDDCVHcmVlayBTY2hvb2wgTmV0d29yayBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"dfe124f290af20e4aa698fc6a6d8efa83d2a2f2cf9a8704bc47d19592ed8888a","size":3275,"filename":"Qrg8oKp5CK8PmUjVC4rnbh8VZo2IQZkWRT9cewFmdNw=.pem","location":"security-state-staging/intermediates/e342d812-7acc-4bc9-aa30-015331e0e0db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Qrg8oKp5CK8PmUjVC4rnbh8VZo2IQZkWRT9cewFmdNw=","crlite_enrolled":true,"id":"967aadb0-2c9f-4c7c-b505-fd576df66e1b","last_modified":1591199862023},{"schema":1591166838271,"derHash":"REzv7dg/YxXF7Iay8c1jsdvyOHz6K+sPtAAVPyr5QI8=","subject":"CN=University of Macedonia Client RSA SubCA R1,OU
=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHDMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTQwMgYDVQQDDCtVbml2ZXJzaXR5IG9mIE1hY2Vkb25pYSBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"3cb71d057e94e927b5ef03b43ad9a43ca78cb4663db298c5d097a9c5c989ae0d","size":2901,"filename":"8lsb1Oss51hyiC9R8zhI90GFGgrz-w6UmqlE_DbZuX4=.pem","location":"security-state-staging/intermediates/4f2758f5-69bb-4081-811e-affa0ea3cbf9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8lsb1Oss51hyiC9R8zhI90GFGgrz+w6UmqlE/DbZuX4=","crlite_enrolled":false,"id":"9686b556-ebcc-448d-9ed4-fff34d4ae0c2","last_modified":1591199862020},{"schema":1591166836780,"derHash":"VtWLJvRb84eK9DlwFqlq9IbpiV9mxfO3MXUSCztOSkg=","subject":"CN=Telenor Norge AS EDC CA G2,O=Telenor Norge AS,C=NO","subjectDN":"
ME0xCzAJBgNVBAYTAk5PMRkwFwYDVQQKExBUZWxlbm9yIE5vcmdlIEFTMSMwIQYDVQQDExpUZWxlbm9yIE5vcmdlIEFTIEVEQyBDQSBHMg==","whitelist":false,"attachment":{"hash":"0213f2f3333de40ecac4484546d04528fd3fd4e937d6bae029cdb7a55f97c3ab","size":1955,"filename":"7uuCeOn6U9gLfnVl6djAetEiPQL_HYdnX8odqQvPToY=.pem","location":"security-state-staging/intermediates/bc5ecf10-0122-4293-aaa0-a410bbc06f12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7uuCeOn6U9gLfnVl6djAetEiPQL/HYdnX8odqQvPToY=","crlite_enrolled":false,"id":"32ba5d1f-5bfb-44bb-b751-d686a7cc74d9","last_modified":1591199862017},{"schema":1591166832366,"derHash":"HhMjmuBLlxvd5lOv38cyRDi44UbFxIqBcDEibJV2RTk=","subject":"CN=GlobeSSL DV CA,O=CentralNic Luxembourg S\u00e0rl,C=LU","subjectDN":"MEwxCzAJBgNVBAYTAkxVMSQwIgYDVQQKDBtDZW50cmFsTmljIEx1eGVtYm91cmcgU8OgcmwxFzAVBgNVBAMTDkdsb2JlU1NMIERWIENB","whitelist":false,"attachment":{"hash":"46ff926f845cbf0b70cc18fe28ae6ecc15392b7bf6d30f53d5e62c20fc4a177b","size":2085,"filename":"z9mSm0UWyXCmP7GyKCI8b
efW1Y69hzCdVgD4FqXpCJY=.pem","location":"security-state-staging/intermediates/e7f0cdf9-77c2-4123-9a86-5c429ea6c98a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z9mSm0UWyXCmP7GyKCI8befW1Y69hzCdVgD4FqXpCJY=","crlite_enrolled":false,"id":"64111cc5-6679-4853-a02f-ad3d4544e923","last_modified":1591199862014},{"schema":1591166828107,"derHash":"dpIe23/lVTsM6d1DiMhBZinrwO0KGjmUFarVwFDpUKA=","subject":"CN=TrustID CA A13,O=IdenTrust,C=US","subjectDN":"MDoxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxFzAVBgNVBAMTDlRydXN0SUQgQ0EgQTEz","whitelist":false,"attachment":{"hash":"9d6ffa6d28de01541ba5efbc6e4af6ad8ba66e234f6b7eb4b9dcc0b58dc5bdc5","size":2346,"filename":"ryhrFN5k_1-bedv_3wzS8mqzqbXS5FAb4dH-qLx8XhI=.pem","location":"security-state-staging/intermediates/4a7062e9-fc48-4b84-8615-7d355f7faa4d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ryhrFN5k/1+bedv/3wzS8mqzqbXS5FAb4dH+qLx8XhI=","crlite_enrolled":false,"id":"746f8a3c-27b7-4e5a-9ed7-4a5e59633474","last_modified":159119
9862011},{"schema":1591166829580,"derHash":"TjD4AEwY09eY7Fp3NDRrWl6+jVRCPOmCV/xXc1pvc40=","subject":"CN=DigiCert High Assurance CA-3b,O=DigiCert Inc,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJjAkBgNVBAMTHURpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIENBLTNi","whitelist":false,"attachment":{"hash":"cc6e9717bc66f910a2529ed604fb79e0564914be23443f51afe962a3afe09891","size":2048,"filename":"1jqJVFODXrZURu0Yd9r3uRS24OAQ3A4Crn2vR8KpNT8=.pem","location":"security-state-staging/intermediates/6990bf85-33f3-4e45-a819-27baa0ed7dcb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1jqJVFODXrZURu0Yd9r3uRS24OAQ3A4Crn2vR8KpNT8=","crlite_enrolled":false,"id":"6fe7a90f-5366-4061-a9ed-581dae6a646b","last_modified":1591199862009},{"schema":1591166823456,"derHash":"3JmT3DOnH9lYCHh9GaS1VwTmAdV+vOrMiALHi1w29cc=","subject":"CN=Greek Universities Network TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHwxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY
2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTQwMgYDVQQDDCtHcmVlayBVbml2ZXJzaXRpZXMgTmV0d29yayBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"37aeafbaa92c269e67ec01c7b961f23ddae3ee344c134b4601de4378c0e7af0a","size":2800,"filename":"-Wo-2quCv6ywG-coso5aG2NSMQ-PKhucBmfbix2syuA=.pem","location":"security-state-staging/intermediates/67373d63-a254-4c05-8ac5-9407ec4d672e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+Wo+2quCv6ywG+coso5aG2NSMQ+PKhucBmfbix2syuA=","crlite_enrolled":false,"id":"1c09be64-b512-4449-834f-8ca5f3fa50ad","last_modified":1591199862005},{"schema":1591166819038,"derHash":"uE1wmCCo/rQc4YcuI3JgtEb5m9PMFY93ONkUaxP65k4=","subject":"CN=Thomson Reuters Special Services CA - G2,O=Thomson Reuters Special Services LLC,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMS0wKwYDVQQKEyRUaG9tc29uIFJldXRlcnMgU3BlY2lhbCBTZXJ2aWNlcyBMTEMxMTAvBgNVBAMTKFRob21zb24gUmV1dGVycyBTcGVjaWFsIFNlcnZpY2VzIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"9ba10b792ea0079372689
444dff84857253c95f3026cc8b37b262818bc7a2535","size":2012,"filename":"YhdjD_JSKwUqNm1zwQIQCcIsBmHPhcQoPb28p5I61o0=.pem","location":"security-state-staging/intermediates/1793240d-0e71-4b88-944b-d72dd3cbfc93.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YhdjD/JSKwUqNm1zwQIQCcIsBmHPhcQoPb28p5I61o0=","crlite_enrolled":false,"id":"edc96d6d-34ad-40e9-9a79-45ea18971be4","last_modified":1591199862002},{"schema":1591166825015,"derHash":"IazB29aUT5rBjHgstcMo1sKCHGtjcx+juJh/ViXeig0=","subject":"CN=ZeroSSL RSA Domain Secure Site CA,O=ZeroSSL,C=AT","subjectDN":"MEsxCzAJBgNVBAYTAkFUMRAwDgYDVQQKEwdaZXJvU1NMMSowKAYDVQQDEyFaZXJvU1NMIFJTQSBEb21haW4gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"2c3ace9b9a1c08d3905fc990df49b6936f78e356141ef0cd8969bdb44ec78bff","size":2430,"filename":"R3hcMOAGw0WFztuG2skTodoHp8IGid3Qg63Cn7YUYoM=.pem","location":"security-state-staging/intermediates/5681e683-bd54-4255-89fe-dce439358be4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"R3hcM
OAGw0WFztuG2skTodoHp8IGid3Qg63Cn7YUYoM=","crlite_enrolled":false,"id":"a8da5928-6b84-408c-9441-1ac7d1244157","last_modified":1591199861999},{"schema":1591166830965,"derHash":"XavaBGJy7siey5WmKX26kQ0BRPfutYFNBzrlSkqM9kY=","subject":"CN=University of Crete TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHUxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMS0wKwYDVQQDDCRVbml2ZXJzaXR5IG9mIENyZXRlIFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"1a950b8eac9bc2e6e71ab38a9bd317e2540c5b960b7ee7f5ef04e55f6503f36b","size":3011,"filename":"OiyYqIVTvazzKZtgPhUjzE_UUtrL4LTPfcYtNSGRrdI=.pem","location":"security-state-staging/intermediates/e011b9cd-3b7e-4057-a812-404fbb369589.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OiyYqIVTvazzKZtgPhUjzE/UUtrL4LTPfcYtNSGRrdI=","crlite_enrolled":false,"id":"4617dbad-655a-4429-a26e-d3c7a2641c18","last_modified":1591199861996},{"schema":1591166826539,"der
Hash":"V1LF+9wDVD8M7GzSlM2WXY0yxOqpk9VQ8kSR7Pm3ODY=","subject":"CN=Telenor Norge AS NF CA G2,O=Telenor Norge AS,C=NO","subjectDN":"MEwxCzAJBgNVBAYTAk5PMRkwFwYDVQQKExBUZWxlbm9yIE5vcmdlIEFTMSIwIAYDVQQDExlUZWxlbm9yIE5vcmdlIEFTIE5GIENBIEcy","whitelist":false,"attachment":{"hash":"7e1fff6b49d5243587acf127f86270b07767650ad23faf0c11778a3edc03a380","size":1951,"filename":"3vqCc3GvO_KCc0HjvSktu5UdgOfPXvv9g0xLuhW7svg=.pem","location":"security-state-staging/intermediates/42892b56-dead-4e2d-823c-ff62093f319c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3vqCc3GvO/KCc0HjvSktu5UdgOfPXvv9g0xLuhW7svg=","crlite_enrolled":false,"id":"e9407fe4-846e-4c28-8e38-5e374b619d88","last_modified":1591199861993},{"schema":1591166821852,"derHash":"3aS+P3jG10KxABRsJgEbQXUq67gQwEWIw6+B8NNFERg=","subject":"CN=Telenor Norge B2B2 CA,O=Telenor Norge AS,C=NO","subjectDN":"MEgxCzAJBgNVBAYTAk5PMRkwFwYDVQQKExBUZWxlbm9yIE5vcmdlIEFTMR4wHAYDVQQDExVUZWxlbm9yIE5vcmdlIEIyQjIgQ0E=","whitelist":false,"attachment":{"has
h":"6075146652fc2c8712240812655579c519cfa4dfc6c95b4fb2dcdb1b134a6cdd","size":1947,"filename":"m5f-WLbmqsgq9Tc-cBMKCyJTMDtguE7B72yjk-002fs=.pem","location":"security-state-staging/intermediates/7219b684-e0b2-4d03-8a8d-449dc5f93118.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m5f+WLbmqsgq9Tc+cBMKCyJTMDtguE7B72yjk+002fs=","crlite_enrolled":false,"id":"a8c73c58-80a6-4c4a-9371-adae40c783bf","last_modified":1591199861990},{"schema":1591166817594,"derHash":"NhledtZVmIiLBeOJnyESqcW+tngVXrgVwzccy6fDeBk=","subject":"CN=ZeroSSL RSA Business Secure Site CA,O=ZeroSSL,C=AT","subjectDN":"ME0xCzAJBgNVBAYTAkFUMRAwDgYDVQQKEwdaZXJvU1NMMSwwKgYDVQQDEyNaZXJvU1NMIFJTQSBCdXNpbmVzcyBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"d98d4219b4cefa57646bea3e49feeb4adf39e63225477fe89ec365decf6cd3dc","size":2430,"filename":"-xzCearoGbvh_Q0yMU_NCkm14rjMFnaa57u3iwTvlBk=.pem","location":"security-state-staging/intermediates/c6ec3db2-572e-4487-b311-5e2bb57fa8ca.pem","mimetype":"application/x
-pem-file"},"pubKeyHash":"+xzCearoGbvh/Q0yMU/NCkm14rjMFnaa57u3iwTvlBk=","crlite_enrolled":false,"id":"128d8a90-b885-4e90-b004-dcf4a4564270","last_modified":1591199861985},{"schema":1591167126696,"derHash":"DtmWPhu6BBfh/Be9OOkgYfllETuSHLNX8THxLwhTRVc=","subject":"CN=WoTrus OV Server CA [Run by the Issuer],O=WoTrus CA Limited,C=CN","subjectDN":"MFwxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1RydXMgQ0EgTGltaXRlZDExMC8GA1UEAwwoV29UcnVzIE9WIFNlcnZlciBDQSAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"42e74afbec45396f4ca75a68524ec41e4332f766126f2a85e7495b95deab1db7","size":2097,"filename":"B2o6KjBMvs-b5LG04FOX1d-Dw82KgV4aPdu-Q6Wq764=.pem","location":"security-state-staging/intermediates/92525c20-b370-4991-8043-7acb57900e5e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B2o6KjBMvs+b5LG04FOX1d+Dw82KgV4aPdu+Q6Wq764=","crlite_enrolled":true,"id":"c4da2cdb-1ad8-4e7d-b6ba-ac427bb25786","last_modified":1591199861982},{"schema":1591167123560,"derHash":"J+/mgsdHnDgTOglDZm+8
kQP8uxqRljTkOXEcvqfjz8c=","subject":"CN=WoTrus EV Server CA [Run by the Issuer],O=WoTrus CA Limited,C=CN","subjectDN":"MFwxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1RydXMgQ0EgTGltaXRlZDExMC8GA1UEAwwoV29UcnVzIEVWIFNlcnZlciBDQSAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"f9a24f721b157cb04a8b7d174607e009aac14567c63b22e7c3e17aa9f2d8fda5","size":2129,"filename":"7gcte6Sz2PaLDgthd1WawzH-5AZvEHps9kxV7G1Z6nU=.pem","location":"security-state-staging/intermediates/76d7666f-4a9f-47f3-bf8e-01730383b16c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7gcte6Sz2PaLDgthd1WawzH+5AZvEHps9kxV7G1Z6nU=","crlite_enrolled":true,"id":"82c567ab-3eb1-4255-b03a-4fe090b864b8","last_modified":1591199861980},{"schema":1591167113685,"derHash":"MJp4I7s9Hd9EpXPsC/n9UWZiX95zd2GExiIStMC06U4=","subject":"CN=Root Global CA - G2,O=Root Networks\\, LLC,C=US","subjectDN":"MEgxCzAJBgNVBAYTAlVTMRswGQYDVQQKDBJSb290IE5ldHdvcmtzLCBMTEMxHDAaBgNVBAMME1Jvb3QgR2xvYmFsIENBIC0gRzI=","whitelist":false,"att
achment":{"hash":"cfe4daa3fda4a067b507bc4e87a81144512c76604b39da965d2fd02591e76353","size":1715,"filename":"SWMEi8LaBMvhivSePD6iqXTAoaa_XCxGaHOnp0EwbRU=.pem","location":"security-state-staging/intermediates/21c96bd4-d994-48b4-8aaf-e1fc560e61ab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SWMEi8LaBMvhivSePD6iqXTAoaa/XCxGaHOnp0EwbRU=","crlite_enrolled":true,"id":"1416d740-c734-4daa-8679-a129b8a0cdb3","last_modified":1591199861974},{"schema":1591167110583,"derHash":"RnJ7kMWl9zN1CC2bG8nxe0RfUCCpXjff3x7yCyh8URU=","subject":"CN=University of Ioannina TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHgxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTAwLgYDVQQDDCdVbml2ZXJzaXR5IG9mIElvYW5uaW5hIFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"2b27a5e354cb0f9e8d1cd07448eeb318b0abc320a26fb40bda7d124841bae222","size":2836,"filename":"PUZlCSUltdtmQPkFYuFiu4nfB3U5nmSRkJODEG7M5_U=.pem","loc
ation":"security-state-staging/intermediates/15ccea59-9c05-4ced-ac5a-7cc1be35692f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PUZlCSUltdtmQPkFYuFiu4nfB3U5nmSRkJODEG7M5/U=","crlite_enrolled":true,"id":"e529cfbf-9677-400f-b048-dcf098de3231","last_modified":1591199861972},{"schema":1591167114876,"derHash":"I9OqLFMTb3if98Ix6StiEPzHuA5dpCh8XfG8UltPRhI=","subject":"CN=Panteion University of Social and Political Sciences CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGYMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQzBBBgNVBAMTOlBhbnRlaW9uIFVuaXZlcnNpdHkgb2YgU29jaWFsIGFuZCBQb2xpdGljYWwgU2NpZW5jZXMgQ0EgUjE=","whitelist":false,"attachment":{"hash":"320da917aa844f5f9f72ad1a881171ff49ab6edc207d3bc18409b484b1b9bdfa","size":2560,"filename":"VMbQEJYB6stdyxcbVix1ggpyIpDl04eRjPtwyopAi3M=.pem","location":"security-state-staging/intermediates/e1bbdbc4-35da-419b-a610-9112dcfc0c44.pem"
,"mimetype":"application/x-pem-file"},"pubKeyHash":"VMbQEJYB6stdyxcbVix1ggpyIpDl04eRjPtwyopAi3M=","crlite_enrolled":false,"id":"bb2a53c8-67d7-40e4-bc04-8215a0a2f253","last_modified":1591199861969},{"schema":1591167101480,"derHash":"2v0lBqfpF8Em5ZBEeUOdd5UIfwT6e75hR5Zye5oWHW8=","subject":"CN=vTrus OV SSL CA G1,O=iTrusChina Co.\\, Ltd.,C=CN","subjectDN":"MEkxCzAJBgNVBAYTAkNOMR0wGwYDVQQKDBRpVHJ1c0NoaW5hIENvLiwgTHRkLjEbMBkGA1UEAwwSdlRydXMgT1YgU1NMIENBIEcx","whitelist":false,"attachment":{"hash":"6d43b5a68905a0f438a343d2b49648cb9b0920fd66cc6fcdd135b5e84025a94a","size":1715,"filename":"iJYYHEjYNccDf7l4rZqt8_6DdC728xy4x8RcQNOya3o=.pem","location":"security-state-staging/intermediates/f238a915-dd39-437d-96c4-daca3c66e661.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iJYYHEjYNccDf7l4rZqt8/6DdC728xy4x8RcQNOya3o=","crlite_enrolled":true,"id":"5a1bc619-eb90-4733-b11b-42fc5acbb075","last_modified":1591199861967},{"schema":1591167135744,"derHash":"5n0YY5NnxbKb96VoO1aw8MIxVcj+lFK8/lFoFDY
CN0I=","subject":"CN=Abitab SSL Domain Validated,OU=IDdigital,O=Abitab S.A.,C=UY","subjectDN":"MF0xCzAJBgNVBAYTAlVZMRQwEgYDVQQKDAtBYml0YWIgUy5BLjESMBAGA1UECwwJSURkaWdpdGFsMSQwIgYDVQQDDBtBYml0YWIgU1NMIERvbWFpbiBWYWxpZGF0ZWQ=","whitelist":false,"attachment":{"hash":"8256a9036481e14355f63a485a8508dd9d4b897eba0e2777a7ceada7c537c808","size":1699,"filename":"9wg1kxbl_ew-5-7tpattPPu_j9bgDctkucNkpOG-U6s=.pem","location":"security-state-staging/intermediates/8b5bc65e-d9cc-4c82-9694-c4d4d3657828.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9wg1kxbl/ew+5+7tpattPPu/j9bgDctkucNkpOG+U6s=","crlite_enrolled":true,"id":"1568c2be-d6ba-48ba-b4b8-ce6ec52e0dbc","last_modified":1591199861964},{"schema":1591167122329,"derHash":"aX5BqFolPHZaMesYD3jH8QR0nWYsGlNMhDsOWDgFvjc=","subject":"CN=EINS/PKI Public Certification Authority V3,O=INTEC INC.,C=JP","subjectDN":"MFcxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpJTlRFQyBJTkMuMTMwMQYDVQQDEypFSU5TL1BLSSBQdWJsaWMgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgVjM=","whitelist":fa
lse,"attachment":{"hash":"cf959bad362e7e0decfbc518291b8dc872e98c2081554568f886e4a2eb24aae3","size":1622,"filename":"Vqrl6W9KGP-r7gtDX4gbt-n6LV6FCHcVDcRFRLJbrrE=.pem","location":"security-state-staging/intermediates/ab2b03cd-7a34-4a64-9be7-9fd364ce7517.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vqrl6W9KGP+r7gtDX4gbt+n6LV6FCHcVDcRFRLJbrrE=","crlite_enrolled":false,"id":"3a33f401-da1b-4241-a126-531a94e3c243","last_modified":1591199861940},{"schema":1591167117608,"derHash":"ltxhXR892QAu5eYosoAe7Qe5Hw5FrK3t7na8YT2gbL0=","subject":"CN=Gehirn Managed Certification Authority - RSA EV,OU=Controlled by COMODO CA exclusively for Gehirn Inc.,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIHAMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMTwwOgYDVQQLEzNDb250cm9sbGVkIGJ5IENPTU9ETyBDQSBleGNsdXNpdmVseSBmb3IgR2VoaXJuIEluYy4xODA2BgNVBAMTL0dlaGlybiBNYW5hZ2VkIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gUlNBIEVW","whitelist":false,"attachment
":{"hash":"bf7465d428608f121b033890ad1a75ce11462b529bb64e1998a64bae2c60d26e","size":2276,"filename":"MQrt-wrOan6w852uOuU2w7xe24wLLPV42Kyxv47Qm84=.pem","location":"security-state-staging/intermediates/6236a16a-b874-4440-b6ea-722270af5ec8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MQrt+wrOan6w852uOuU2w7xe24wLLPV42Kyxv47Qm84=","crlite_enrolled":false,"id":"8e8cddfa-e58f-4def-a0f9-af5024b733c8","last_modified":1591199861911},{"schema":1591167095567,"derHash":"q9bQU/2+NW0HUFAYFYawucK4wDKYq85kziXEBAHfOyI=","subject":"CN=Hostpoint DV SSL CA - G2,OU=Domain Validated SSL,O=Hostpoint AG,C=CH","subjectDN":"MGYxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxIb3N0cG9pbnQgQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMSEwHwYDVQQDExhIb3N0cG9pbnQgRFYgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"87053a64d9eb3524427e4a3d04f8b5844ad96645dd5d5a59da38eafecbec5e2b","size":1654,"filename":"jjxkrzcP29b_8ZkP1-su2vb2ZcV_BkodMS4zGp_DloM=.pem","location":"security-state-staging/intermediates/0bd40108-3
86a-406c-80a3-b90b463997bf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jjxkrzcP29b/8ZkP1+su2vb2ZcV/BkodMS4zGp/DloM=","crlite_enrolled":false,"id":"019b18c2-b025-4793-9449-53a85c827c76","last_modified":1591199861873},{"schema":1591167128660,"derHash":"KrTf9p11u/lUEGC0NM5a0MTay3rw2/IdNhavy0c3lt4=","subject":"CN=Certum Class I CA SHA2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MHsxCzAJBgNVBAYTAlBMMSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxHzAdBgNVBAMTFkNlcnR1bSBDbGFzcyBJIENBIFNIQTI=","whitelist":false,"attachment":{"hash":"42c093531894319de5b6736e8bb7302536bb599cd0c23045983bc8cdb0398cbf","size":1711,"filename":"DlML3IIZYmKbkc5sg_Vlwu7GmLOhTHxlwiDnuM8uXco=.pem","location":"security-state-staging/intermediates/537f9e86-0aa2-4487-ac82-d4e6d63a5030.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DlML3IIZYmKbkc5sg/Vlwu7GmLOhTHxlwiDnuM8uXco=","crlite_enrolled":false,"id":"f0
bd44f2-5281-42f1-ae71-9815dbe807b3","last_modified":1591199861864},{"schema":1591167103436,"derHash":"rv/kM17lZCLpJ/Rela4UK56zWXmnQAVprpvepsqrwdw=","subject":"CN=SHECA Global G3 SSL,O=UniTrust,ST=Shanghai,C=CN","subjectDN":"MFExCzAJBgNVBAYTAkNOMREwDwYDVQQIDAhTaGFuZ2hhaTERMA8GA1UECgwIVW5pVHJ1c3QxHDAaBgNVBAMME1NIRUNBIEdsb2JhbCBHMyBTU0w=","whitelist":false,"attachment":{"hash":"966814ad4c7925d39057eb115ca90947f532fe888d00abdd9884f26cad189f7d","size":1999,"filename":"-3DYv-zWynH_VKDDzSsG9R5GfeXFt--F4B8P0tAoRsU=.pem","location":"security-state-staging/intermediates/72f5db49-9653-406b-b129-7db8f562a09a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+3DYv+zWynH/VKDDzSsG9R5GfeXFt++F4B8P0tAoRsU=","crlite_enrolled":false,"id":"9a5f7622-15ab-419e-9203-7b79dd0f844e","last_modified":1591199861813},{"schema":1591167118391,"derHash":"QT7CqkZXCIQ3XaAfo6LCNSzVzwK/rLnQAWJacTesbyw=","subject":"SERIALNUMBER=201504,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIEN
BMQ8wDQYDVQQFEwYyMDE1MDQ=","whitelist":false,"attachment":{"hash":"becc7a19429c3fe510ce2088a493ef9860f8e74fc31f972b853d1a6d6d7ddec9","size":2093,"filename":"u-gqJoIpOdY1O3UZ68GeSClDGGp95Ws_umP8zyOohyA=.pem","location":"security-state-staging/intermediates/afe856e5-1628-4340-8086-2841883f1ebd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"u+gqJoIpOdY1O3UZ68GeSClDGGp95Ws/umP8zyOohyA=","crlite_enrolled":true,"id":"6c785882-b0f8-4ced-9bdc-d7ab6d035040","last_modified":1591199861786},{"schema":1591167127871,"derHash":"whCHQWu/mDuf/kD11W7g/9lOseZmsEpTKt5ILsIB1nw=","subject":"CN=Wells Fargo Certificate Authority WS1,OU=Symantec Trust Network,O=Wells Fargo,C=US","subjectDN":"MHQxCzAJBgNVBAYTAlVTMRQwEgYDVQQKEwtXZWxscyBGYXJnbzEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEuMCwGA1UEAxMlV2VsbHMgRmFyZ28gQ2VydGlmaWNhdGUgQXV0aG9yaXR5IFdTMQ==","whitelist":false,"attachment":{"hash":"cba0f94ea2cabab47d4fc2cff80461a012e1384fdf9dae249dbda8696bac62da","size":1845,"filename":"1qvJcavhwfdLbQFNDvMF
YaClqSTldkdYglp4N1CvDAE=.pem","location":"security-state-staging/intermediates/605850ac-8284-471d-b389-57594942215e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1qvJcavhwfdLbQFNDvMFYaClqSTldkdYglp4N1CvDAE=","crlite_enrolled":false,"id":"8dbc9b5b-c846-432c-87e4-5c44cbc82bce","last_modified":1591199861782},{"schema":1591167127088,"derHash":"j9FqF5lE1dHUIK8JQF7aer8qnHQog+jC+J4NkK+vdUs=","subject":"CN=AC Representaci\u00f3n,OU=CERES,O=FNMT-RCM,C=ES","subjectDN":"ME0xCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ0VSRVMxGzAZBgNVBAMMEkFDIFJlcHJlc2VudGFjacOzbg==","whitelist":false,"attachment":{"hash":"fbb63f349bcc5868c551877141aadf4dc7c5f336ecd9ff3349ae89d79806d799","size":2438,"filename":"2ldsefSfkTU7GGXfz4iYiPnOUDkbKiYdUaPGd2du8EQ=.pem","location":"security-state-staging/intermediates/28006d3e-f7bf-4fec-b7d7-e7f43b6987e4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2ldsefSfkTU7GGXfz4iYiPnOUDkbKiYdUaPGd2du8EQ=","crlite_enrolled":false,"id":"4f3d1faf-a555-4
07d-bf85-71e6aa0c4bbe","last_modified":1591199861766},{"schema":1591167110971,"derHash":"vJ4iPMQidcwDQZDfLQF5tVtzLVrFMRN6e1Itz+BKBZI=","subject":"CN=GeoTrust Extended Validation SHA256 SSL CA,O=GeoTrust Inc.,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTMwMQYDVQQDEypHZW9UcnVzdCBFeHRlbmRlZCBWYWxpZGF0aW9uIFNIQTI1NiBTU0wgQ0E=","whitelist":false,"attachment":{"hash":"46ad52d45d9e44779ff98b1488cb499ecc79a96ca90bddbd6c76512c47d537ed","size":1735,"filename":"ETrxfY_aVptAHxW1VmC2WjDv0VLyOmN9vfVO45quBtg=.pem","location":"security-state-staging/intermediates/8511db0a-de1a-44fa-87cc-fd1e1fc95f78.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ETrxfY/aVptAHxW1VmC2WjDv0VLyOmN9vfVO45quBtg=","crlite_enrolled":false,"id":"dcc3ee74-7f0b-4951-9f0e-c7d34097d1dc","last_modified":1591199861760},{"schema":1591167129850,"derHash":"w2i6rNq2w0pSPlfzn+Bx3oWm0a7f0d29Ivq7S3DaX0E=","subject":"CN=The University of Texas at Austin RSA CA,OU=Information Security Office,O=The Univ
ersity of Texas at Austin,L=Austin,ST=TX,C=US","subjectDN":"MIGwMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVFgxDzANBgNVBAcTBkF1c3RpbjEqMCgGA1UEChMhVGhlIFVuaXZlcnNpdHkgb2YgVGV4YXMgYXQgQXVzdGluMSQwIgYDVQQLExtJbmZvcm1hdGlvbiBTZWN1cml0eSBPZmZpY2UxMTAvBgNVBAMTKFRoZSBVbml2ZXJzaXR5IG9mIFRleGFzIGF0IEF1c3RpbiBSU0EgQ0E=","whitelist":false,"attachment":{"hash":"b0061b5cde3d079be7801311c889ce6fbf716ebb7e28e0dbf666e7beb7a18115","size":2207,"filename":"lLeKgz_ECOEUD_q5gE_wxHdQZwCGZUSX7XdxXEOzoG4=.pem","location":"security-state-staging/intermediates/d468242c-fc9f-4cb4-8acb-451892fc85cc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lLeKgz/ECOEUD/q5gE/wxHdQZwCGZUSX7XdxXEOzoG4=","crlite_enrolled":true,"id":"89c34cc1-9032-4a6e-a795-1a0dcd125dfe","last_modified":1591199861733},{"schema":1591167135342,"derHash":"bo2VL9urrY3j1h4JQ5Nzm1pHNxpSvcsqPC+MQ2IvZA8=","subject":"CN=DigiCert Trusted Server CA G4,O=DigiCert Inc,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJjAkBgNVBAMTHURpZ2
lDZXJ0IFRydXN0ZWQgU2VydmVyIENBIEc0","whitelist":false,"attachment":{"hash":"1b0227fb528c1325b07b31b6a5fb4aaae403cf52260bf9d9cd10243df1594c27","size":2263,"filename":"ATJixqKjjVXHRkLEgfX09sgN3kdNds3rCsOQC264qlM=.pem","location":"security-state-staging/intermediates/59a98e6a-d170-4c1b-a564-25e3d6f2bade.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ATJixqKjjVXHRkLEgfX09sgN3kdNds3rCsOQC264qlM=","crlite_enrolled":false,"id":"0af55fad-9862-4ab7-b10a-5e19e0d6a32c","last_modified":1591199861718},{"schema":1591167098714,"derHash":"twC6Sa9NGecvsVotrDwhO6RMMZ+n2pJ3KzaC4St4EJM=","subject":"CN=AffirmTrust Extended Validation CA - EV3,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGDMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMTAvBgNVBAMTKEFmZmlybVRydXN0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgLSBFVjM=","whitelist":false,"attachment":{"hash":"2e254ce9b0bd7ecaa13ed912c586e0853458c939d61e8f564883c7f10f882aab"
,"size":1674,"filename":"-TrM-YTWywZV8UwhobD51F1gyN0R9i8HSXRhwDUA_PQ=.pem","location":"security-state-staging/intermediates/1a96dd1e-3da0-45c3-af06-b3f0b4132469.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+TrM+YTWywZV8UwhobD51F1gyN0R9i8HSXRhwDUA/PQ=","crlite_enrolled":true,"id":"5c30def2-02f2-4f59-9e75-fb7cec21fda7","last_modified":1591199861716},{"schema":1591167115649,"derHash":"JOnyCsFnu48J3ooemWjMU/C186SUj1G4ZHtAsYbHXr4=","subject":"CN=DigiCert Secure Auth CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IFNlY3VyZSBBdXRoIENB","whitelist":false,"attachment":{"hash":"a64942af324b392768de8a32c2187db5660a414d7e770bda2812f1a9e980d44b","size":1792,"filename":"tdoo0C0wiaEcgnWAQOcm5NMBHjL1VfpZl4892op9W2U=.pem","location":"security-state-staging/intermediates/0500e928-1f83-4f99-a7e3-24b68820248d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tdoo0C0
wiaEcgnWAQOcm5NMBHjL1VfpZl4892op9W2U=","crlite_enrolled":false,"id":"6526cd1b-5a23-40c2-b96c-e1680e2c0884","last_modified":1591199861714},{"schema":1591167115264,"derHash":"FHxEf+64YgK1AzFPyvADa+qu9DfDm1azWOxEap0gOH8=","subject":"CN=SHECA EV Secure Server CA,O=Shanghai Electronic Certificate Authority Center Co.\\, Ltd.,L=Shanghai,ST=Shanghai,C=CN","subjectDN":"MIGcMQswCQYDVQQGEwJDTjFDMEEGA1UEChM6U2hhbmdoYWkgRWxlY3Ryb25pYyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgQ2VudGVyIENvLiwgTHRkLjERMA8GA1UEBxMIU2hhbmdoYWkxETAPBgNVBAgTCFNoYW5naGFpMSIwIAYDVQQDExlTSEVDQSBFViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"79e8a49ce016fdd9c0af03939862785c3c2d81031cbbf7fa59067b46edcfa51c","size":1886,"filename":"xi4INX1FNKxbnVAZdwTrMNDrumTwxFHJ81fg-e_d2lc=.pem","location":"security-state-staging/intermediates/89c1da85-ab0a-47e6-9779-d9122d19152f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xi4INX1FNKxbnVAZdwTrMNDrumTwxFHJ81fg+e/d2lc=","crlite_enrolled":false,"id":"ac6e22b1-b052-4a8c-86
78-c546d37f748d","last_modified":1591199861695},{"schema":1591167133769,"derHash":"wKsH2QcaTMHTRAkXj4vKBYMQqLER3c+mVWWHYCJvUPk=","subject":"CN=WoSign EV SSL CA,O=WoSign CA Limited,C=CN","subjectDN":"MEQxCzAJBgNVBAYTAkNOMRowGAYDVQQKDBFXb1NpZ24gQ0EgTGltaXRlZDEZMBcGA1UEAwwQV29TaWduIEVWIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"70b0ebbc523a8c85dfbcba297ad8752536887543b61fafc141de629f096c6ef6","size":1691,"filename":"kUsaqEFcRNYeLMDaKST82jCK2fP2QzSDRUyN92iicvw=.pem","location":"security-state-staging/intermediates/77469872-4038-4fec-bc01-bcfacaf96e61.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kUsaqEFcRNYeLMDaKST82jCK2fP2QzSDRUyN92iicvw=","crlite_enrolled":false,"id":"c63369ab-e91c-444e-ab6e-6400efdbc7ea","last_modified":1591199861686},{"schema":1591167104643,"derHash":"iKFeJAyJhzwddDxQPA9fTvcagrVsM1l8ake/CW2dO+Y=","subject":"SERIALNUMBER=201508,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDg=","whitelist":fa
lse,"attachment":{"hash":"2f79b1033df0522a67c163fc81ce2732e1f478e53059f30038d886faad2d198c","size":2093,"filename":"zduiwxJuZStrkO6Flv96lCWLQI-61C3s5N1jNhbIU7Y=.pem","location":"security-state-staging/intermediates/5e1a3c18-e372-498e-8f60-5f889e22773b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zduiwxJuZStrkO6Flv96lCWLQI+61C3s5N1jNhbIU7Y=","crlite_enrolled":true,"id":"f8a7b557-1b13-43a0-8b2b-3338f34c8383","last_modified":1591199861672},{"schema":1591167127479,"derHash":"eSC44Y0vwS2Bwvq5CmOxtSqzKc580ct8oJTN+dYA9JI=","subject":"CN=thawte Extended Validation SHA256 SSL CA,O=thawte\\, Inc.,C=US","subjectDN":"MFcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xMTAvBgNVBAMTKHRoYXd0ZSBFeHRlbmRlZCBWYWxpZGF0aW9uIFNIQTI1NiBTU0wgQ0E=","whitelist":false,"attachment":{"hash":"563a21cfced81aebe67aac78ad46c393d97ccc5dfae514ccccedd89d53d40a37","size":1727,"filename":"o-9u8XvAYtT_uhU48fZ16spZWnwnEELUcZesUD4gsBA=.pem","location":"security-state-staging/intermediates/ef964011-0a45-44b3-9e7
0-8d05f1a139c1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"o+9u8XvAYtT/uhU48fZ16spZWnwnEELUcZesUD4gsBA=","crlite_enrolled":false,"id":"aef4d01c-2e71-497a-9152-77b111228724","last_modified":1591199861670},{"schema":1591167125522,"derHash":"OH1Ja5IgLUxEPNlP9C2hffLx5o4kTC+7p+KU290RNXs=","subject":"CN=WISeKey CertifyID Advanced GC CA 1,O=WISeKey,C=CH","subjectDN":"MEwxCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSswKQYDVQQDEyJXSVNlS2V5IENlcnRpZnlJRCBBZHZhbmNlZCBHQyBDQSAx","whitelist":false,"attachment":{"hash":"3847cc74ceb46d2e07d37b69b668ff50587428a43ef992473d4a3e433bcb1972","size":1293,"filename":"Y3IJxxxojxFKeXVhVUyyPE4P-7QrAbKt0viCWXpb1G8=.pem","location":"security-state-staging/intermediates/233bd648-66bc-440b-8b31-293196be1b49.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y3IJxxxojxFKeXVhVUyyPE4P+7QrAbKt0viCWXpb1G8=","crlite_enrolled":true,"id":"5905f153-1bda-44df-8205-013b8756834a","last_modified":1591199861664},{"schema":1591167102659,"derHash":"qK0cJcxYCyEx/Mb
8bWUTdG846pm9FiyBtcU5NJUXWxg=","subject":"CN=STRATO TLS RSA CA,OU=Domain Validated SSL,O=STRATO AG,C=DE","subjectDN":"MFwxCzAJBgNVBAYTAkRFMRIwEAYDVQQKEwlTVFJBVE8gQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRowGAYDVQQDExFTVFJBVE8gVExTIFJTQSBDQQ==","whitelist":false,"attachment":{"hash":"d4b8e211872849d13a1e260cdc06a24464432a0fa7627e3f666d44abf76f5a34","size":1654,"filename":"_MWDzTF0gP61A7lqJx1MUWKutcFHBAsAnAXlMwxjhKA=.pem","location":"security-state-staging/intermediates/7bc0c334-aaef-4dcb-92c6-98e7cfab6209.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/MWDzTF0gP61A7lqJx1MUWKutcFHBAsAnAXlMwxjhKA=","crlite_enrolled":false,"id":"cede6dc8-3cb1-4e8b-840c-e51a697702ec","last_modified":1591199861662},{"schema":1591167118782,"derHash":"xVfZ3uOkUTRbCN6xeJYaHIDC+8NyMGfLGyM4DOfeiMA=","subject":"SERIALNUMBER=201511,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MTE=","whitelist":false,"attachment":{"hash":"00fb675f00181f478291ea1
dc2ee08b8fcdfc0d519fcfa6402b4ff474fbd3eae","size":2093,"filename":"lj1vlZfMd2V_aT2U-5-kNFLhsBmFrR34EQm2OTMD3Y8=.pem","location":"security-state-staging/intermediates/7c090492-98db-41a5-b69d-8401237a3fe4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lj1vlZfMd2V/aT2U+5+kNFLhsBmFrR34EQm2OTMD3Y8=","crlite_enrolled":true,"id":"2372ca19-0a90-4964-a048-80f7a672471a","last_modified":1591199861653},{"schema":1591167112135,"derHash":"4+lOe+UyuUk/Sz7dUxHqCw1O63rYFd/Ljz5jVuHxy44=","subject":"SERIALNUMBER=201505,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDU=","whitelist":false,"attachment":{"hash":"34d10a97c4300798b8710e1fef33d7bbaf26eea241d30c38d827a8314fb24dab","size":2093,"filename":"RNe7v5CES3j8AJTjDjnXy97aI59Zwn09cBcYeuDXVk4=.pem","location":"security-state-staging/intermediates/33b81138-bc9d-4183-9c67-e85acf11ae6e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RNe7v5CES3j8AJTjDjnXy97aI59Zwn09cBcYeuDXVk4=","crlite
_enrolled":true,"id":"4acd2cb7-b56a-4ee2-9037-f765c2850803","last_modified":1591199861630},{"schema":1591167100293,"derHash":"OTuLFcq8OIb7LkFkldY8i63Y3K+HVSB2yKCpY3wk3kc=","subject":"CN=SHECA DV Secure Server CA,O=Shanghai Electronic Certificate Authority Center Co.\\, Ltd.,L=Shanghai,ST=Shanghai,C=CN","subjectDN":"MIGcMQswCQYDVQQGEwJDTjFDMEEGA1UEChM6U2hhbmdoYWkgRWxlY3Ryb25pYyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgQ2VudGVyIENvLiwgTHRkLjERMA8GA1UEBxMIU2hhbmdoYWkxETAPBgNVBAgTCFNoYW5naGFpMSIwIAYDVQQDExlTSEVDQSBEViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"80e794ca68f692fa483c4c5cb8e9806bc0ddce1148522be81196e5ad85e5b01b","size":1886,"filename":"vxQ5rrMProJi_--FvKOiNtV0E-SCmjf-g1jA2GXodec=.pem","location":"security-state-staging/intermediates/64c3d745-1d1f-48a0-b654-9371f223ad9e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vxQ5rrMProJi/++FvKOiNtV0E+SCmjf+g1jA2GXodec=","crlite_enrolled":false,"id":"e5580962-2ff1-4674-881d-d2a669207187","last_modified":1591199861583}
,{"schema":1591167133382,"derHash":"nfd0iMS3SsMuPOxMZD0AHVw7q/pAAf/Rk9yhDIvlyzo=","subject":"CN=AffirmTrust Extended Validation CA - EV2,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGDMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMTAvBgNVBAMTKEFmZmlybVRydXN0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgLSBFVjI=","whitelist":false,"attachment":{"hash":"89053e842a9e8970354492a7c4548abec7c0be523c780e0f953ea552f30a541f","size":2012,"filename":"x6O8qvzc0zILZCc4XHPUu67PSku6NJHUaXQY4KvAUgg=.pem","location":"security-state-staging/intermediates/3085f02a-64cc-4c75-9005-38f7daa19fab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x6O8qvzc0zILZCc4XHPUu67PSku6NJHUaXQY4KvAUgg=","crlite_enrolled":true,"id":"6b507c8d-2732-4c9b-9a07-d2512c0e2117","last_modified":1591199861568},{"schema":1591167107831,"derHash":"WBbG5AeZtbx/CxTJYUo206yncd9UoASUXw+Nfgsp/8o=","subject":"SERIALNUMBER=201501,CN=Foreigner CA,C=BE","subjec
tDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTUwMQ==","whitelist":false,"attachment":{"hash":"0d46e6a34f0da6a0c2fecffc0740218d25d513ae95664755de9d235bda5d9281","size":2097,"filename":"tRPCGioU3g7SQ_LnaZzP56f2x-Cn4zzeQuT-EjcFVwg=.pem","location":"security-state-staging/intermediates/57330922-3e65-46a3-be30-5c0d975f5b82.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tRPCGioU3g7SQ/LnaZzP56f2x+Cn4zzeQuT+EjcFVwg=","crlite_enrolled":true,"id":"77d7942b-74d8-4b94-ab76-a0e65bd98d6c","last_modified":1591199861538},{"schema":1591167104251,"derHash":"7MKVtt3NCEunF5+1O90dQiy2wKjZTxVNSlsXeAtyee0=","subject":"CN=Amazon,OU=Server CA 3B,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAzQjEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"c7c4797af7be4621b3d92ccb6bd9cb9b0dd0a450c089b66be3ba98c8bc4186e3","size":1008,"filename":"s5SRPmhQ_9M4pBTJFJbNff5De6KuZpZr6r1_ZkgUbbE=.pem","location":"security-st
ate-staging/intermediates/72c3d6bb-f1e7-4495-af68-0ba087eda278.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"s5SRPmhQ/9M4pBTJFJbNff5De6KuZpZr6r1/ZkgUbbE=","crlite_enrolled":true,"id":"302e34c5-2646-4c4a-ac02-84ccf409fc91","last_modified":1591199861532},{"schema":1591167129058,"derHash":"bEDQf0cFpbTwTGrs3Fob9f040rbPLbfyEsolEHW+El0=","subject":"CN=Shuidi Webtrust SSL Extended Validated,O=Shanghai Ping An Credit Reference Company Limited,C=CN","subjectDN":"MHoxCzAJBgNVBAYTAkNOMTowOAYDVQQKDDFTaGFuZ2hhaSBQaW5nIEFuIENyZWRpdCBSZWZlcmVuY2UgQ29tcGFueSBMaW1pdGVkMS8wLQYDVQQDDCZTaHVpZGkgV2VidHJ1c3QgU1NMIEV4dGVuZGVkIFZhbGlkYXRlZA==","whitelist":false,"attachment":{"hash":"15549ed43fba7dd4ac582772db414c06ac7f55ba18ecf419619290411515f7e8","size":1780,"filename":"YARY8M4pNVQjSsk5Xgw-N3b7ZaQssU3-Ml2q5c55P1Q=.pem","location":"security-state-staging/intermediates/63152062-fb6c-4aea-80be-e8ee9f7ee7e2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YARY8M4pNVQjSsk5Xgw+N3b7ZaQssU3+Ml2q5
c55P1Q=","crlite_enrolled":false,"id":"1944c7f1-bf0e-4729-a9ec-68ff7ce41381","last_modified":1591199861522},{"schema":1591167107052,"derHash":"MoxZkdg4PifQ6+kQv2bArz10ioXTARpS2I8djIY1ZH8=","subject":"CN=CloudFlare Inc RSA CA-1,O=CloudFlare\\, Inc.,L=San Francisco,ST=CA,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQQ2xvdWRGbGFyZSwgSW5jLjEgMB4GA1UEAxMXQ2xvdWRGbGFyZSBJbmMgUlNBIENBLTE=","whitelist":false,"attachment":{"hash":"f41ed47d0f43325c9f089d03415c972ce1d3f1ecab6e4d6260665baf3db3ccee","size":1597,"filename":"CfyancXuwYEHYRX3mmLJI3NFW6E8cydaCGS1D9wGhT4=.pem","location":"security-state-staging/intermediates/65650a0f-7c22-4c10-9744-2d67e301f5f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CfyancXuwYEHYRX3mmLJI3NFW6E8cydaCGS1D9wGhT4=","crlite_enrolled":false,"id":"872ce619-ac04-47e9-b4ac-7ff12d0ec19c","last_modified":1591199861498},{"schema":1591167116427,"derHash":"zeI6UjA8PKZ6S7vMlYL/XJIDqpjLDzhxOTCM4iiVBqI=","subje
ct":"CN=AffirmTrust Extended Validation CA - EVEC1,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGFMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMzAxBgNVBAMTKkFmZmlybVRydXN0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgLSBFVkVDMQ==","whitelist":false,"attachment":{"hash":"865dd39def93692e37eef786ad2c8cc23e7d0c975e5371aadd94657e67cbbcb9","size":1223,"filename":"EJPx6trc98AgGgNEdBceeQPzoTVw1_xu9uLPoj5Wczw=.pem","location":"security-state-staging/intermediates/48c70d0d-3354-46cd-857a-bedd9c0140c2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EJPx6trc98AgGgNEdBceeQPzoTVw1/xu9uLPoj5Wczw=","crlite_enrolled":true,"id":"07decb3e-5474-49fb-8e4b-b0ce15e562f9","last_modified":1591199861471},{"schema":1591167129450,"derHash":"bmLL4+QqQcUEBbPi8aRCV2gyZ4VhhK+cAhEgcKyDaTY=","subject":"CN=Thawte ECC CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTA
XBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xGzAZBgNVBAMTElRoYXd0ZSBFQ0MgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"b720fd52f7eed374b2c5902c55a3d185a8cd84a9b4fada7958cae32b764e4368","size":1358,"filename":"3hiWxsgsNSgIwyt2ATwgEYbkxoaBEZb10lFKzoR0-ig=.pem","location":"security-state-staging/intermediates/f9d2835d-36a6-47e4-b9d6-addbf0a8d4cc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3hiWxsgsNSgIwyt2ATwgEYbkxoaBEZb10lFKzoR0+ig=","crlite_enrolled":true,"id":"0bc07455-8ec5-41eb-ac5a-22460bb932e5","last_modified":1591199861461},{"schema":1591167132596,"derHash":"Or00nX/hQwXmlSQSNPn/lK6CGt9EZ7wWB6E+ES9ep2c=","subject":"CN=SSL.com Premium EV CA,OU=Controlled by COMODO exclusively for SSL.com+OU=www.ssl.com,O=SSL.com,C=US","subjectDN":"MIGMMQswCQYDVQQGEwJVUzEQMA4GA1UEChMHU1NMLmNvbTE1MDMGA1UECxMsQ29udHJvbGxlZCBieSBDT01PRE8gZXhjbHVzaXZlbHkgZm9yIFNTTC5jb20xFDASBgNVBAsTC3d3dy5zc2wuY29tMR4wHAYDVQQDExVTU0wuY29tIFByZW1pdW0gRVYgQ0E=","whitelist":false,"attachment":{"hash":"a9afa165fd6ff
926ecdcac1b57b4aff26949c7339f1f27f14e96ba34ba7aed05","size":2231,"filename":"q9kHBA4OE40-HVkOIjyKiKBED3yDP_uskMLt3i9Z7e8=.pem","location":"security-state-staging/intermediates/b4c44040-4a0f-44f0-bafc-2ef091b752cf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q9kHBA4OE40+HVkOIjyKiKBED3yDP/uskMLt3i9Z7e8=","crlite_enrolled":false,"id":"14597233-b2e4-409d-a2e8-143da66f07a4","last_modified":1591199861440},{"schema":1591167092722,"derHash":"fOza/GvmGKQPG6wmRiRjhHQS1nalxtI4mVUO6Xa+Mv4=","subject":"CN=SSL Blindado EV 2,OU=Controlled by COMODO exclusively for Site Blindado S.A.+OU=Certifica\u00e7\u00e3o Digital,O=Site Blindado S.A.,L=S\u00e3o Paulo,ST=SP,C=BR","subjectDN":"MIHLMQswCQYDVQQGEwJCUjELMAkGA1UECBMCU1AxEzARBgNVBAcMClPDo28gUGF1bG8xGzAZBgNVBAoTElNpdGUgQmxpbmRhZG8gUy5BLjFAMD4GA1UECxM3Q29udHJvbGxlZCBieSBDT01PRE8gZXhjbHVzaXZlbHkgZm9yIFNpdGUgQmxpbmRhZG8gUy5BLjEfMB0GA1UECwwWQ2VydGlmaWNhw6fDo28gRGlnaXRhbDEaMBgGA1UEAxMRU1NMIEJsaW5kYWRvIEVWIDI=","whitelist":false,"attachment":{"has
h":"259a41110133846c14d5ea5590dd8aa42d7531eaef59c1841a6b6f301cde5c42","size":2280,"filename":"oomAz8Bc3vA9i8i7dKzYpXEAA9hSHc_4c1uNOVpwL_s=.pem","location":"security-state-staging/intermediates/36e73adc-530e-402f-9d94-27f5e9c0cb96.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oomAz8Bc3vA9i8i7dKzYpXEAA9hSHc/4c1uNOVpwL/s=","crlite_enrolled":false,"id":"d082497c-c3b1-488e-a8a2-7474e38160a3","last_modified":1591199861436},{"schema":1591167119174,"derHash":"UnTMU7wGH5+YRDD0AanTujWiDO686I5t+nGyaafGQNI=","subject":"CN=Hongkong Post e-Cert CA 1 - 10,O=Hongkong Post,C=HK","subjectDN":"ME4xCzAJBgNVBAYTAkhLMRYwFAYDVQQKEw1Ib25na29uZyBQb3N0MScwJQYDVQQDEx5Ib25na29uZyBQb3N0IGUtQ2VydCBDQSAxIC0gMTA=","whitelist":false,"attachment":{"hash":"8da29ad05563050f363f59f064bea5f14050e76d2ade435bde02d43bf0465938","size":1175,"filename":"PfEWtMmnBuSczngTKHScBWoAorL7zO3kx7RNC29R4e0=.pem","location":"security-state-staging/intermediates/d2f47cd7-6af4-430b-8440-37887987872c.pem","mimetype":"application/
x-pem-file"},"pubKeyHash":"PfEWtMmnBuSczngTKHScBWoAorL7zO3kx7RNC29R4e0=","crlite_enrolled":true,"id":"472dc9b5-2882-40d9-8a50-9352050b4390","last_modified":1591199861425},{"schema":1591167130252,"derHash":"+lH+OfDzFukkEuEXARji1iqOStoPiOwjfzzmMfcL4pg=","subject":"CN=Noble Energy SHA256 CA - G2,O=Noble Energy\\, Inc.,L=Houston,ST=Texas,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIEwVUZXhhczEQMA4GA1UEBxMHSG91c3RvbjEbMBkGA1UEChMSTm9ibGUgRW5lcmd5LCBJbmMuMSQwIgYDVQQDExtOb2JsZSBFbmVyZ3kgU0hBMjU2IENBIC0gRzI=","whitelist":false,"attachment":{"hash":"90ad7e696dba8c1e23f6880f2f04e6cb6a14c58d040ee93ab47d30fa7e5d936a","size":1869,"filename":"E2apBiPMG_Zpvk8zbzKt5sh4sBj4KaAUi2QTkc8XsaM=.pem","location":"security-state-staging/intermediates/fb675c81-8e4b-4430-96db-09b12e43bdae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"E2apBiPMG/Zpvk8zbzKt5sh4sBj4KaAUi2QTkc8XsaM=","crlite_enrolled":false,"id":"89546195-a930-4b5e-a9ea-1a504f1bdc72","last_modified":1591199861413},{"schema":1591167
096355,"derHash":"ZUDPz3Q+hKstZ4ZvLxOlP+evLol3pcFoH+B6GGliDdE=","subject":"CN=NII Open Domain CA - G4,O=National Institute of Informatics,L=Academe,C=JP","subjectDN":"MG0xCzAJBgNVBAYTAkpQMRAwDgYDVQQHEwdBY2FkZW1lMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxIDAeBgNVBAMTF05JSSBPcGVuIERvbWFpbiBDQSAtIEc0","whitelist":false,"attachment":{"hash":"694b64628a7d5374fe0a1236dde0139e98c044d4e255e52f6e8890eaa0a4dea1","size":1646,"filename":"pkYOyiZbq6eiG3-fTHdQPKnpyBMSHLTdN87BtKobe2o=.pem","location":"security-state-staging/intermediates/9fddafa0-9c9d-4c6c-b696-f7502cb6768d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pkYOyiZbq6eiG3+fTHdQPKnpyBMSHLTdN87BtKobe2o=","crlite_enrolled":false,"id":"1f00a77e-a49f-4949-8809-b6e456e666ae","last_modified":1591199861401},{"schema":1591167109400,"derHash":"PQwrOOhcr0nDg7bDMoZA5fvobs+in6sTcVGs0bQu0Uk=","subject":"CN=EINS/PKI Public Certification Authority V3,O=INTEC INC.,C=JP","subjectDN":"MFcxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpJTlRFQyB
JTkMuMTMwMQYDVQQDEypFSU5TL1BLSSBQdWJsaWMgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgVjM=","whitelist":false,"attachment":{"hash":"e4b8a6bf0eddbecf5ae45cdefa44dbaf3900507c7ec1f5f815078e0c1219f2f3","size":1618,"filename":"RnCQQs9ip0vyrhGBt2ogczNkSTqpuYCXhqgIL0RZGWQ=.pem","location":"security-state-staging/intermediates/f240b23f-faa7-4c5f-94ad-2b165f331e4e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RnCQQs9ip0vyrhGBt2ogczNkSTqpuYCXhqgIL0RZGWQ=","crlite_enrolled":false,"id":"50fbb791-2793-42f8-bb20-6140333152f2","last_modified":1591199861395},{"schema":1591167111362,"derHash":"Cz5xovGFt21ghI+AWN8IXNSUtFu/+jSrt/4KTudRPtw=","subject":"SERIALNUMBER=201501,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDE=","whitelist":false,"attachment":{"hash":"22965e59ce07d01290e039c484a513333a3947d9ec580812b375f3d4f8a8f9a9","size":2093,"filename":"-PZGhNMpPNHJLO37ogEwXscavltZ_j_PtNOQVm_NWF8=.pem","location":"security-state-staging/intermediates/50e
98f69-8a78-489c-99e2-51b3ef5607cf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+PZGhNMpPNHJLO37ogEwXscavltZ/j/PtNOQVm/NWF8=","crlite_enrolled":true,"id":"3cdafee2-76f3-42c8-858b-e26661a6a9c9","last_modified":1591199861393},{"schema":1591167114082,"derHash":"TAE7iFRonLZibMCHtNT8ykUQTi1zv63zOml57RJLeDc=","subject":"CN=AlphaSSL CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MEwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSIwIAYDVQQDExlBbHBoYVNTTCBDQSAtIFNIQTI1NiAtIEcz","whitelist":false,"attachment":{"hash":"5ec4d3d36a5abdd7e8f9f97d4fdfe971b778b6a3c00875e565acf06c59c855ed","size":1601,"filename":"yiytxmxVlqUkaojBswiPQ3AdtFgFdeR3-pfRgzPzjyc=.pem","location":"security-state-staging/intermediates/0ed13f7e-af76-4379-bca8-e1e23e23ba32.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yiytxmxVlqUkaojBswiPQ3AdtFgFdeR3+pfRgzPzjyc=","crlite_enrolled":false,"id":"968f0c8d-ebe5-488a-8340-d5e4e9b76cc6","last_modified":1591199861383},{"schema":1591167134944,"derHas
h":"8U1VJtvE4hi048eJuAX6UD5MHgCPUbR4sx9ewsBGUFM=","subject":"SERIALNUMBER=201410,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MTA=","whitelist":false,"attachment":{"hash":"a755a413df5939715ef8ed2b03de59241eaf26b5b17fb53165acddacbe7fb37d","size":2093,"filename":"bpnQ2j55R3xHAVSt43XkvZK65UCBePG74mW3xb2U6bE=.pem","location":"security-state-staging/intermediates/900020b0-bc89-454b-9900-ea5cfd7cdf75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bpnQ2j55R3xHAVSt43XkvZK65UCBePG74mW3xb2U6bE=","crlite_enrolled":true,"id":"6e1e16c5-1f74-4570-b13f-fb8d4006e3d9","last_modified":1591199861339},{"schema":1591167119954,"derHash":"VvGgaYpGlIe4WKYsgccurHgTtqbmKh1ci0tofvRahsY=","subject":"SERIALNUMBER=201509,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDk=","whitelist":false,"attachment":{"hash":"1382abc89dabcc879a78d635a83dfff7b7f8f4690017765fb959d56f15328322","size":2093,"filen
ame":"YgUnZLend8A1dYQYIwzEwA7hgRZqcesd6yztVE5VXmQ=.pem","location":"security-state-staging/intermediates/a635f570-6367-4776-9303-d0f24e8d99d9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YgUnZLend8A1dYQYIwzEwA7hgRZqcesd6yztVE5VXmQ=","crlite_enrolled":true,"id":"dbe5c709-506e-4280-897b-020eeea4ef49","last_modified":1591199861325},{"schema":1591167113296,"derHash":"iR7i4jKC5QdsmukEfejqkA4Gb4HW3Nm4Q8WQeLDxBbw=","subject":"CN=WoSign EV SSL Pro CA,O=WoSign CA Limited,C=CN","subjectDN":"MEgxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRlZDEdMBsGA1UEAxMUV29TaWduIEVWIFNTTCBQcm8gQ0E=","whitelist":false,"attachment":{"hash":"07c937a29a0a69cd8357438132740524c5f2b962a315e7238630d95a61147284","size":1634,"filename":"pH1dud9XORPnyq8wyLWWIS773gVEO_1UuyQKQdv4xKg=.pem","location":"security-state-staging/intermediates/bfbf0539-e24d-4990-a202-fc97784d7f75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pH1dud9XORPnyq8wyLWWIS773gVEO/1UuyQKQdv4xKg=","crlite_enrolled":false,"id":"
78e81458-dc94-491e-9bbd-82c797f01706","last_modified":1591199861316},{"schema":1591167125915,"derHash":"w4BN5R6MFwUiIK4crT04PlTVt9wohDxC8NvZkTwehlg=","subject":"CN=Secure Site Pro Extended Validation ECC CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMzAxBgNVBAMTKlNlY3VyZSBTaXRlIFBybyBFeHRlbmRlZCBWYWxpZGF0aW9uIEVDQyBDQQ==","whitelist":false,"attachment":{"hash":"0888b26cf00bcea2525da774e654b5c2ea18871782615c5140d3fb8b3541ab28","size":1463,"filename":"_Nqzn2CbpC436KXdkcnLpL18IA4yR1xWHjRW06xB_j8=.pem","location":"security-state-staging/intermediates/c841c215-26a7-4218-8633-09f2ccc236bd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/Nqzn2CbpC436KXdkcnLpL18IA4yR1xWHjRW06xB/j8=","crlite_enrolled":false,"id":"19662870-223a-4691-9872-b58acbff1ebd","last_modified":1591199861310},{"schema":1591167124738,"derHash":"w+PC3uEb+M/qVv1ZAK/pXNQ41zkdylWge/9EFHo1qCg=","subject":"SERIALNUMBER=10
810700152,CN=Intesa Sanpaolo Organization Validation 2019 CA,OU=WSA Trust Service Provider,O=Intesa Sanpaolo S.p.A.,C=IT","subjectDN":"MIGjMQswCQYDVQQGEwJJVDEfMB0GA1UECgwWSW50ZXNhIFNhbnBhb2xvIFMucC5BLjEjMCEGA1UECwwaV1NBIFRydXN0IFNlcnZpY2UgUHJvdmlkZXIxFDASBgNVBAUTCzEwODEwNzAwMTUyMTgwNgYDVQQDDC9JbnRlc2EgU2FucGFvbG8gT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gMjAxOSBDQQ==","whitelist":false,"attachment":{"hash":"5f497951c07710b122718d697a85665edc20f8913fca4830c994f0a3d4543bf2","size":2706,"filename":"U8_hCRrBPyuCYZBzEVQyVIzTfQOQ9G2QXmqJbys0WpE=.pem","location":"security-state-staging/intermediates/79430411-6e34-4b98-ae2f-ec7ec3df0e00.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U8/hCRrBPyuCYZBzEVQyVIzTfQOQ9G2QXmqJbys0WpE=","crlite_enrolled":true,"id":"72a4e0da-1359-4549-99b6-255fe0354d0e","last_modified":1591199861293},{"schema":1591167131032,"derHash":"Iy9jZ89WHgDIPhgKn8qFRrN3H7RQ68tKBSb4NJyMoTk=","subject":"CN=Entrust Certification Authority - L1E,OU=www.entrust.net/rpa is incorporate
d by reference+OU=(c) 2009 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGxMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L3JwYSBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAwOSBFbnRydXN0LCBJbmMuMS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFF","whitelist":false,"attachment":{"hash":"fb13e64f68c20f1be87aefb4a955348c9604a4103426723d49f8029f9fbcc797","size":1833,"filename":"HeMEDmta9acr_zmjHkdP_dKlW5RaqBlmADFOqTG56eA=.pem","location":"security-state-staging/intermediates/703534c7-f828-4ce3-86b8-8655d652362c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HeMEDmta9acr/zmjHkdP/dKlW5RaqBlmADFOqTG56eA=","crlite_enrolled":true,"id":"4afefd58-c2fb-4ede-9f24-7a133bc67e03","last_modified":1591199861291},{"schema":1591167105053,"derHash":"62K/+my8gC5Nrm+MU5CAIL5/B3dKVeZ7vWPsw3Z53sg=","subject":"CN=Apple Public Client RSA CA 12 - G1,O=Apple Inc.,ST=California,C=US","subjectDN":"MGQxKzApBgNVBAMTIkFwcGxlIFB1YmxpY
yBDbGllbnQgUlNBIENBIDEyIC0gRzExEzARBgNVBAoTCkFwcGxlIEluYy4xEzARBgNVBAgTCkNhbGlmb3JuaWExCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"0ac5fad4496d38d0d04fa4eb7fd0df675e54078a637db0a03dc61b5310fb81b1","size":1796,"filename":"W2tlxSBNBFn6yFefJU_iRsNK6Wx_D6jCbtOc0sr3dcM=.pem","location":"security-state-staging/intermediates/cff50670-bd2a-4c54-8946-9c3a2f2bf269.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"W2tlxSBNBFn6yFefJU/iRsNK6Wx/D6jCbtOc0sr3dcM=","crlite_enrolled":true,"id":"4be325ba-4a50-48a4-a443-4817dedb5e8f","last_modified":1591199861263},{"schema":1591167121138,"derHash":"AQoQMqQflagsxaSrsJiAmbF5qa+zkusQOOlTuxxfeBM=","subject":"SERIALNUMBER=201401,CN=Government CA,C=BE","subjectDN":"MDYxCzAJBgNVBAYTAkJFMRYwFAYDVQQDEw1Hb3Zlcm5tZW50IENBMQ8wDQYDVQQFEwYyMDE0MDE=","whitelist":false,"attachment":{"hash":"a5d0529635f9c3cff86ede1648e1e65a41e9f78e171871943131767a45c1fb70","size":2097,"filename":"ykSGWOpAu6O0UEhE_5QaIEVb1TdtAlxXyuYiXn95XsY=.pem","location":"security
-state-staging/intermediates/494cc004-690d-4312-8e57-fdc940038998.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ykSGWOpAu6O0UEhE/5QaIEVb1TdtAlxXyuYiXn95XsY=","crlite_enrolled":false,"id":"4b2bbd7d-eba6-4808-83aa-09b3e1fa24ac","last_modified":1591199861253},{"schema":1591167120744,"derHash":"NxIsGj8+LSF0dAxCxrxfWFzTjYGwlS3LRXrMAQrHpOI=","subject":"SERIALNUMBER=07945211006,CN=InfoCert Organization Validation 2019 CA 3,OU=WSA Trust Service Provider,O=InfoCert S.p.A.,C=IT","subjectDN":"MIGXMQswCQYDVQQGEwJJVDEYMBYGA1UECgwPSW5mb0NlcnQgUy5wLkEuMSMwIQYDVQQLDBpXU0EgVHJ1c3QgU2VydmljZSBQcm92aWRlcjEUMBIGA1UEBRMLMDc5NDUyMTEwMDYxMzAxBgNVBAMMKkluZm9DZXJ0IE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIDIwMTkgQ0EgMw==","whitelist":false,"attachment":{"hash":"3a11138c7a600ec7442b5e4709ee0f88fa80829315e74b8e78d4a456fd849c4e","size":2690,"filename":"N9dUlTAT1o0Ai9rArJ9HdU0z5ynuQQbtzwjWvGFRrDo=.pem","location":"security-state-staging/intermediates/3c7379b5-17ba-43e5-bd15-542d1e08e93e.pem","mimetype":"applica
tion/x-pem-file"},"pubKeyHash":"N9dUlTAT1o0Ai9rArJ9HdU0z5ynuQQbtzwjWvGFRrDo=","crlite_enrolled":true,"id":"8d2d8e23-ed85-48df-9c81-6f9ab4e4971b","last_modified":1591199861247},{"schema":1591167097159,"derHash":"vMOlTXCDEWMWzgO5pAyjbzNvSDmsWBhi1DEahPcBUU0=","subject":"CN=OKCERT R4 OV SSL CA G2,OU=Kingnettech,O=Kingnet Information Technology Co.\\, Ltd.,C=CN","subjectDN":"MHcxCzAJBgNVBAYTAkNOMTEwLwYDVQQKDChLaW5nbmV0IEluZm9ybWF0aW9uIFRlY2hub2xvZ3kgQ28uLCBMdGQuMRQwEgYDVQQLDAtLaW5nbmV0dGVjaDEfMB0GA1UEAwwWT0tDRVJUIFI0IE9WIFNTTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"579d6f5ecf8bcd46d62a770353e586d532320b1e7caea44c51a03952e3fdadde","size":1776,"filename":"J_LNyLPuoW1JcAhG6eG-bHMYhGpN5b-M_HHHd56hnzU=.pem","location":"security-state-staging/intermediates/a65aafdc-334e-4b10-b8d7-597fbfe091bc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"J/LNyLPuoW1JcAhG6eG+bHMYhGpN5b+M/HHHd56hnzU=","crlite_enrolled":true,"id":"101d25a5-7aab-4b79-9230-e4cb060e9e42","last_modified":1591199
861225},{"schema":1591167136138,"derHash":"i7L2iD/tKJpSG6J8R4SClQh04UPKzOxvwCWZDAxGgT4=","subject":"CN=HydrantID Server CA O1,OU=HydrantID Trusted Certificate Service,O=IdenTrust,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxLjAsBgNVBAsTJUh5ZHJhbnRJRCBUcnVzdGVkIENlcnRpZmljYXRlIFNlcnZpY2UxHzAdBgNVBAMTFkh5ZHJhbnRJRCBTZXJ2ZXIgQ0EgTzE=","whitelist":false,"attachment":{"hash":"5c37cd80ee6407081923d28c6774e88ec067942ade58ad3454319f095efcf4e3","size":2431,"filename":"EeppXTka8xyJcDQhuKdo9XL4LWROHEY7l1qZG55lMIo=.pem","location":"security-state-staging/intermediates/fc98d0bf-3fd0-4144-8840-b8ab888570c1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EeppXTka8xyJcDQhuKdo9XL4LWROHEY7l1qZG55lMIo=","crlite_enrolled":true,"id":"5b05b0f5-6f11-4694-90c1-40b4a6d81b2c","last_modified":1591199861222},{"schema":1591167093122,"derHash":"7vkGZCTCNQjpxl+EZxsU4W2hvsNY51/GOC7KBwroYb4=","subject":"CN=Abitab SSL Organization Validated,OU=IDdigital,O=Abitab S.A.,C=UY","subjectDN":"
MGMxCzAJBgNVBAYTAlVZMRQwEgYDVQQKDAtBYml0YWIgUy5BLjESMBAGA1UECwwJSURkaWdpdGFsMSowKAYDVQQDDCFBYml0YWIgU1NMIE9yZ2FuaXphdGlvbiBWYWxpZGF0ZWQ=","whitelist":false,"attachment":{"hash":"c30af6395f2acc919d52e2b39391c424dfd9016f96111216e9bc5fd3dc34421c","size":1707,"filename":"E4GLDtTEwO7UCeAtO8ibbOu6FLZxSIUC_fBzIbM5mV4=.pem","location":"security-state-staging/intermediates/2cbc872a-e92a-4c95-ad98-01379cbdc630.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"E4GLDtTEwO7UCeAtO8ibbOu6FLZxSIUC/fBzIbM5mV4=","crlite_enrolled":true,"id":"d02db623-261b-4357-8746-76ac75242c86","last_modified":1591199861175},{"schema":1591167121528,"derHash":"dqxae3TjELnmJOf30Rg4DKloW0DEFsa4meSm1Cm+ej8=","subject":"CN=TLS RSA ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHExCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMRcwFQYDVQQDDA5UTFMgUlNBIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"88b7219cd2
bfa1a2a982b183233cc928eff1d7978796768a60b207e4b616e009","size":2146,"filename":"U9LfjT2tp7DInjOaxZZKrKVVV0njtruyUezjKlI9ECI=.pem","location":"security-state-staging/intermediates/2fbb27ec-89ae-4aef-84d0-2750c73c7785.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U9LfjT2tp7DInjOaxZZKrKVVV0njtruyUezjKlI9ECI=","crlite_enrolled":true,"id":"fb7109db-c35b-44ca-bc73-d09688a86c9f","last_modified":1591199861157},{"schema":1591167097545,"derHash":"VYRK03slu02z/+fc3DkCOkGzxIikepX60fz61Qi3AoU=","subject":"CN=Dodo Sign TLS ICA RSA R1,O=Dodo Sign Ltd,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MHIxCzAJBgNVBAYTAk1VMRgwFgYDVQQIDA9QbGFpbmVzIFdpbGhlbXMxDjAMBgNVBAcMBUViZW5lMRYwFAYDVQQKDA1Eb2RvIFNpZ24gTHRkMSEwHwYDVQQDDBhEb2RvIFNpZ24gVExTIElDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"9bbab79fdec346cdda828bc4486cedf2582bee9d80c23587c1c2f05407854b6e","size":2438,"filename":"QBni1na5RD10V0ehoagk-O8mlEaC8kPw1gH8_uoYYTY=.pem","location":"security-state-staging/intermediates/512c8ed9-74c
b-4a34-a0b5-79f8a0f953b2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QBni1na5RD10V0ehoagk+O8mlEaC8kPw1gH8/uoYYTY=","crlite_enrolled":true,"id":"d63929e7-804a-4e7f-9657-ccb49438e6ad","last_modified":1591199861147},{"schema":1591167131818,"derHash":"G/2HAtj5uzQPNTggMwwLun5SLGMWTJHylUFNrHl/CGM=","subject":"CN=TI Trust Technologies OV CA,O=TI Trust Technologies S.R.L.,L=Pomezia,ST=Roma,C=IT","subjectDN":"MHsxCzAJBgNVBAYTAklUMQ0wCwYDVQQIEwRSb21hMRAwDgYDVQQHEwdQb21lemlhMSUwIwYDVQQKExxUSSBUcnVzdCBUZWNobm9sb2dpZXMgUy5SLkwuMSQwIgYDVQQDExtUSSBUcnVzdCBUZWNobm9sb2dpZXMgT1YgQ0E=","whitelist":false,"attachment":{"hash":"d1c5248d16ba7957e64d310b79c06f83962508230f7fda1e9cff52d1e9cc1998","size":2150,"filename":"nrqQiXIilvjVUSIRwooWc9ltG3vqAn5jSqfwOAWLI-I=.pem","location":"security-state-staging/intermediates/c2e929c5-0bcd-40c3-ac35-7ee70033ede9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nrqQiXIilvjVUSIRwooWc9ltG3vqAn5jSqfwOAWLI+I=","crlite_enrolled":true,"id":"758a2de9-5261-
4baa-a5e8-7baf82981b7c","last_modified":1591199861118},{"schema":1591167132991,"derHash":"QeyAjjPMqGWerqgWcNbH3AFEZjbh8idWG2MHuAumOGI=","subject":"CN=ESTEID-SK 2011,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MGQxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRcwFQYDVQQDDA5FU1RFSUQtU0sgMjAxMTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVl","whitelist":false,"attachment":{"hash":"5091662e698c754433563aee646a022ab0fdfa210abaebb1fd27a54e5f1655f2","size":1800,"filename":"skV85t_ThW7yfg-vIYodS-8kTmAl9PUd5o-azF1ck8g=.pem","location":"security-state-staging/intermediates/652c0f8c-f873-4a5b-8a4f-ab67ca5b5f73.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"skV85t/ThW7yfg+vIYodS+8kTmAl9PUd5o+azF1ck8g=","crlite_enrolled":true,"id":"2212cd12-531d-4091-9a9f-ef40974684ee","last_modified":1591199861115},{"schema":1580831328676,"derHash":"KGdiAMQV2C0QJR9Senc+fnrJkCIy+rpD4aaMWtO32H0=","subject":"CN=GTS Y4,O=Google Trust Services LLC,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMSIwIAYDVQQK
ExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMQ8wDQYDVQQDEwZHVFMgWTQ=","whitelist":false,"attachment":{"hash":"486ab74ff1c4972cd1baab20287fa21027e8baa01565310ad4a6b2ba09b0db74","size":1069,"filename":"HS03mRwbGwWTfk-g79L17_0GMn7Rd5Xac10BclJV8_Q=.pem","location":"security-state-staging/intermediates/39a2b6b1-2661-49d8-8ecb-62edfe0d4253.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HS03mRwbGwWTfk+g79L17/0GMn7Rd5Xac10BclJV8/Q=","crlite_enrolled":true,"id":"35ccfbf8-d14e-443c-9642-d4ee52e72bcc","last_modified":1580831371709},{"schema":1580831327306,"derHash":"kl7n1aIq1/vpurVNfI0LmnT341qK9q9kXi6MNRmnCS8=","subject":"CN=GlobalSign PersonalSign 2 CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAyIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"49d234d4a3edd7b4cb0c75434e2e91f053274224b94175e4723db618636c4ec5","size":1719,"filename":"Uln62-9-5Wt3xmkVju62Zqx1VcoZH7PCLXpxS0B8L4k=.pem","loc
ation":"security-state-staging/intermediates/4e4916ba-c892-4f63-80bf-933e7f5f1d4e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uln62+9+5Wt3xmkVju62Zqx1VcoZH7PCLXpxS0B8L4k=","crlite_enrolled":false,"id":"7bb75ff5-1b3b-4aab-b802-6f4a62094549","last_modified":1580831371706},{"schema":1580831325730,"derHash":"sf466/ljp4gOdLCwVWaB6osczOPmmn07EKaKy+huSKE=","subject":"CN=GlobalSign PersonalSign 3 CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAzIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"9df8b037bf3f1247cda959357f2a0176035ad46da5184d24d3c0f8f89f56a218","size":1719,"filename":"6FXSznfWYgPxKc6WahR_l3YNNCjz1qGbLp4BZInCAps=.pem","location":"security-state-staging/intermediates/0fbd634e-c1ef-4d67-b5d7-96259d76e8cd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6FXSznfWYgPxKc6WahR/l3YNNCjz1qGbLp4BZInCAps=","crlite_enrolled":false,"id":"f9ed8c87-8e2b-4eaf-8d98-6760b04
b86f1","last_modified":1580831371702},{"schema":1580831324294,"derHash":"lcanR90Lx1WhlBgn6JS4CDWSJBt5JUHi6xsw+5sT9X8=","subject":"CN=GlobalSign Timestamping CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFIxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSgwJgYDVQQDEx9HbG9iYWxTaWduIFRpbWVzdGFtcGluZyBDQSAtIEcz","whitelist":false,"attachment":{"hash":"d8b1d98667f8f3b8858d8d8ce48e135b6b6babb05637d9da7ebef401cc352174","size":1634,"filename":"EWgZuHzMOb4ZdnGU9IxfHAPzzoePcjKG4e43x60fObk=.pem","location":"security-state-staging/intermediates/dbe4d218-3dd2-4d42-9aa1-e0cd1566f50a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EWgZuHzMOb4ZdnGU9IxfHAPzzoePcjKG4e43x60fObk=","crlite_enrolled":false,"id":"e25bd43e-b8b0-44cd-96de-1e11f8c38cfd","last_modified":1580831371698},{"schema":1580831322835,"derHash":"Qavo+alRqJkPvc0+FM9HnUJkAbEV8BcBibZl6UDDYyw=","subject":"CN=Atos TrustedRoot Client-CA for Wintershall Dea 2020,O=Atos,C=DE","subjectDN":"MFoxPDA6BgNVBAMMM0F0b3MgVHJ1c3RlZFJvb3Qg
Q2xpZW50LUNBIGZvciBXaW50ZXJzaGFsbCBEZWEgMjAyMDENMAsGA1UECgwEQXRvczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"4cdeea0f9b8c0d997d02497ca1ee85933ee9951ccb157373c44c4bc692a9b8df","size":1967,"filename":"zcJkvK7NculMD4JHrLZo49s5X520hjStrsqlpdtggCw=.pem","location":"security-state-staging/intermediates/d7592445-357a-4da3-8a7e-eca6e608fb9d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zcJkvK7NculMD4JHrLZo49s5X520hjStrsqlpdtggCw=","crlite_enrolled":false,"id":"211419dc-84cb-45b0-8f04-eec2531753e9","last_modified":1580831371695},{"schema":1580831321448,"derHash":"wlxO28NuP7fD2Te+6fLSnjavsHz6MYgmLg1f3JGeDXc=","subject":"CN=DPDHL User CA I4,O=Deutsche Post AG,C=DE","subjectDN":"MEMxCzAJBgNVBAYTAkRFMRkwFwYDVQQKExBEZXV0c2NoZSBQb3N0IEFHMRkwFwYDVQQDExBEUERITCBVc2VyIENBIEk0","whitelist":false,"attachment":{"hash":"2284b18d3214c38aca82371dca2b990cd83a71d4db5f694b2c5db7ac5b811d0e","size":1618,"filename":"OWNuV6Vtom_Tl21u76ItEZifNmUFqyk8bIdhqTYbo0o=.pem","location":"security
-state-staging/intermediates/588fe312-43ff-488f-a400-d053f2bece0f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OWNuV6Vtom/Tl21u76ItEZifNmUFqyk8bIdhqTYbo0o=","crlite_enrolled":false,"id":"03b918a8-4f61-4afe-803b-34daeebcdbc5","last_modified":1580831371691},{"schema":1580831314282,"derHash":"xMfENr2I6OaNsAKX34OsyBnhmGOboAUiyOMkWHaJhSM=","subject":"CN=NAESB Issuing CA - SHA384 - G4,O=GMO GlobalSign Inc.,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRwwGgYDVQQKExNHTU8gR2xvYmFsU2lnbiBJbmMuMScwJQYDVQQDEx5OQUVTQiBJc3N1aW5nIENBIC0gU0hBMzg0IC0gRzQ=","whitelist":false,"attachment":{"hash":"e422c75bd14759c6d943cddb3c942e6cb19ff73705f805417a8a2f8b7b0fa999","size":1995,"filename":"t0THBpo4KRCZCa973c4m7iljnz-pEFkuYmErlNe9hqM=.pem","location":"security-state-staging/intermediates/eaf540e0-1fbe-4611-8993-c52d3bef4f6c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"t0THBpo4KRCZCa973c4m7iljnz+pEFkuYmErlNe9hqM=","crlite_enrolled":false,"id":"3f6f60eb-e924-4cdc-a702-722960fe9832","last_mod
ified":1580831371685},{"schema":1580831317160,"derHash":"Zz401+HmslwYfzkcxJE4tHIqkH4z9bdIe2E7tt/niQk=","subject":"CN=University of Patras TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHYxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMS4wLAYDVQQDDCVVbml2ZXJzaXR5IG9mIFBhdHJhcyBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"0d52e770e64ec62a5d607f5c7443737f99e82d18a9a8f2a17529cad9f1efee82","size":2836,"filename":"rjG2r01snR1vtNko4nWlkriwJxHfOXpXBBH61kCBBWk=.pem","location":"security-state-staging/intermediates/18240d87-7e34-4a1d-91a9-dc48596e156c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rjG2r01snR1vtNko4nWlkriwJxHfOXpXBBH61kCBBWk=","crlite_enrolled":false,"id":"08c5fddf-3321-4860-b075-e3f26e028ae0","last_modified":1580831371679},{"schema":1580831320021,"derHash":"FU5INLKNT7H5D+6TXQ3eRsRaF3/BQloCjGhcMoVaha0=","subject":"CN=AbbVie AATL ICA 2020,O=AbbVie\\, Inc.,C=US","subje
ctDN":"MEMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxBYmJWaWUsIEluYy4xHTAbBgNVBAMTFEFiYlZpZSBBQVRMIElDQSAyMDIw","whitelist":false,"attachment":{"hash":"ba9c71096f49bdde519be7fb7f247b426ff900568ff7a2ba2316f147a992cead","size":2434,"filename":"GI2Jkvlij3dVdDLgyRLzTDluE3sQAJFLYa_aA9xUM0c=.pem","location":"security-state-staging/intermediates/ae91d22f-44b3-413a-955d-a4f8a924a57e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GI2Jkvlij3dVdDLgyRLzTDluE3sQAJFLYa/aA9xUM0c=","crlite_enrolled":false,"id":"29a5d15e-9394-46f4-9880-8dceb939b8d1","last_modified":1580831371676},{"schema":1580831312622,"derHash":"Xn/LnJe9pWmTsWWNEgIydh1mWjZEU0MA+mpb7F4NV5U=","subject":"CN=Trafigura PTE Ltd S/MIME ICA 2020,O=Trafigura PTE Ltd,C=SG","subjectDN":"MFUxCzAJBgNVBAYTAlNHMRowGAYDVQQKExFUcmFmaWd1cmEgUFRFIEx0ZDEqMCgGA1UEAxMhVHJhZmlndXJhIFBURSBMdGQgUy9NSU1FIElDQSAyMDIw","whitelist":false,"attachment":{"hash":"250b875f651857d2b605dc8e52718c96fa970d9e56b6d9707052af92fb6cdfa2","size":1630,"filename":"M7IzU76VFwCyi
ys4kdB9s9rTtdHRcgivamjLj2kzia0=.pem","location":"security-state-staging/intermediates/53a4f63c-1629-4fd9-9f20-bfe3cd2b942b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M7IzU76VFwCyiys4kdB9s9rTtdHRcgivamjLj2kzia0=","crlite_enrolled":false,"id":"910675bd-2aaf-44d3-a72d-003713f103f5","last_modified":1580831371673},{"schema":1580831309740,"derHash":"Logg3A6vrj1tKFwFfs4URws3dDiwAs7dTHK080OlT0M=","subject":"CN=GlobalSign CA for AATL - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIENBIGZvciBBQVRMIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"06608a25d2fe312140d296f45b61f4e40a3f0c7008ae57216e239fb8cbdd14f8","size":1666,"filename":"NsJvmEwzvkjFIbS9AQUkdxT3pZQun6S6_bLxVOtwgPY=.pem","location":"security-state-staging/intermediates/dca9077d-3cc6-4e61-9348-5ca4fd9bd72b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NsJvmEwzvkjFIbS9AQUkdxT3pZQun6S6/bLxVOtwgPY=","crlite_enrol
led":false,"id":"39f68ef8-75fb-467a-9830-b68adf4c7e9e","last_modified":1580831371670},{"schema":1580831308352,"derHash":"ETE43XshZyWEAjji1+7ss3ONsTkGSyTLhT/CcKSeYFc=","subject":"CN=LinQuest SMIME CA 2020,O=LinQuest Corporation,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRMaW5RdWVzdCBDb3Jwb3JhdGlvbjEfMB0GA1UEAxMWTGluUXVlc3QgU01JTUUgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"1964c93083547483ce396c6b7394a6a320a45144235ba95d5d3f41767333748d","size":1662,"filename":"OTbNG9ctIq9fLcNWLKN-6TPCNxKIXtezx3cvW-VNjTw=.pem","location":"security-state-staging/intermediates/1ccd3681-1ed9-44af-90cf-e9ca70a463ce.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OTbNG9ctIq9fLcNWLKN+6TPCNxKIXtezx3cvW+VNjTw=","crlite_enrolled":false,"id":"5c4141c4-8b62-4cb1-bf86-432c9861196e","last_modified":1580831371667},{"schema":1580831306957,"derHash":"8GjeqhjMAtWovjXLgzgyeRApH25i5yFqk0dkoaukqAA=","subject":"CN=GlobalSign PersonalSign 1 CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzA
JBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAxIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"92689792fad9cd14100ac0efc4e9c934a5d181ec306067de07973b086f7f08c0","size":1719,"filename":"YRypdHS0Ru4gIYd-v2Cul5vQVyh8seMxVJvPr2qLJOA=.pem","location":"security-state-staging/intermediates/b14cd6cf-79b6-4e53-a744-d93d0935a1f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YRypdHS0Ru4gIYd+v2Cul5vQVyh8seMxVJvPr2qLJOA=","crlite_enrolled":false,"id":"3fc3c911-3c15-4079-bd82-f0a75e90547b","last_modified":1580831371664},{"schema":1580831304072,"derHash":"fixTc5fnuNmyTYfzBMluoFekB84R0LZtmbpLiiK7EWc=","subject":"CN=University of the Aegean TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHoxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTIwMAYDVQQDDClVbml2ZXJzaXR5IG9mIHRoZSBBZWdlYW4gVExTIFJTQSBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"6da6
2caec34c8ba27123e839c8b9d42f2f11146e20354529cc5a9bff3a1a6f42","size":2816,"filename":"-2hOVMwfAeVZbcXurvYs9YQXog6eDjr_2LpDSHWN4k8=.pem","location":"security-state-staging/intermediates/3f60dcda-f35c-432b-9148-214d88b8bf88.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+2hOVMwfAeVZbcXurvYs9YQXog6eDjr/2LpDSHWN4k8=","crlite_enrolled":false,"id":"8e460471-24d1-4c87-ae97-394153845668","last_modified":1580831371661},{"schema":1580831302660,"derHash":"TnB4Z5RqwFNDxrqP8SHqZqdYA3kTJXqO5JdDUNOaEDQ=","subject":"CN=GlobalSign PersonalSign Partners CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTowOAYDVQQDEzFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiBQYXJ0bmVycyBDQSAtIFNIQTI1NiAtIEcy","whitelist":false,"attachment":{"hash":"1c645bcac68fa67210aa0c2da55360e71914c6ed7e5ac89b02c1a00e4e9d897a","size":1670,"filename":"F0bWPekPIC9_nkgAJD7EPawdSSYBw9Bv3fNGdTH1Brg=.pem","location":"security-state-staging/intermediates/67048fec-2fba-43f3-8088-
3d8e682cc628.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F0bWPekPIC9/nkgAJD7EPawdSSYBw9Bv3fNGdTH1Brg=","crlite_enrolled":true,"id":"a44d553d-2d55-4d48-b6f0-79321a1a5f3c","last_modified":1580831371658},{"schema":1580831311193,"derHash":"Eo3tGorWDCS0JU4x25T8Q5K/k+1UNEcqpDoLmFYQYGg=","subject":"CN=NAESB Issuing CA - SHA384 - G3,O=GMO GlobalSign Inc.,L=Portsmouth,ST=New Hampshire,C=US","subjectDN":"MIGBMQswCQYDVQQGEwJVUzEWMBQGA1UECBMNTmV3IEhhbXBzaGlyZTETMBEGA1UEBxMKUG9ydHNtb3V0aDEcMBoGA1UEChMTR01PIEdsb2JhbFNpZ24gSW5jLjEnMCUGA1UEAxMeTkFFU0IgSXNzdWluZyBDQSAtIFNIQTM4NCAtIEcz","whitelist":false,"attachment":{"hash":"38bdf0865a2acc0ad3abac1f138e15080391b32d0a2516ec72427913339424f1","size":2251,"filename":"LV_Lp60GpBfNPlUINSof9qendyj5Iph8haNKt4Ks1OU=.pem","location":"security-state-staging/intermediates/db701e77-79df-4689-a701-eab7648377a2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LV/Lp60GpBfNPlUINSof9qendyj5Iph8haNKt4Ks1OU=","crlite_enrolled":false,"id":"e94653b0-4c
e9-48b9-95e6-a108f69af72e","last_modified":1580831371656},{"schema":1580831305601,"derHash":"ptmjeSc0nedGTI2mP2Ac5VwhS+/XsyRnnmThsw91zv8=","subject":"CN=SRI International CA - G3,O=SRI International,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMRowGAYDVQQKExFTUkkgSW50ZXJuYXRpb25hbDEiMCAGA1UEAxMZU1JJIEludGVybmF0aW9uYWwgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"68736c3ea587d110029f29fab96f407ca21f42efed8b5a2dcd08d36ee102c762","size":1967,"filename":"6A_h_ePWgZWtzRg2oGoR7XWlHGi2tZLjeMmvfUXp4Jk=.pem","location":"security-state-staging/intermediates/9cdf9ab0-57bf-4725-9363-936388693103.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6A/h/ePWgZWtzRg2oGoR7XWlHGi2tZLjeMmvfUXp4Jk=","crlite_enrolled":false,"id":"4db81cce-52f9-4678-ba47-e88290532416","last_modified":1580831371653},{"schema":1580831297956,"derHash":"GB3Ivn6R7fFj5mzD+tFNl5ptrlO1Vtruj33KDhFMFPY=","subject":"CN=GTS Y3,O=Google Trust Services LLC,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU
2VydmljZXMgTExDMQ8wDQYDVQQDEwZHVFMgWTM=","whitelist":false,"attachment":{"hash":"f539ab8855770bc8a9e8f1286baa54629b8813ded2d2972aa64a9f3e37d83152","size":1065,"filename":"LbcjaXDdzSbOmLRKWKuGWSqd6T4QuNVJwnA_RYD9a1k=.pem","location":"security-state-staging/intermediates/5e1d14ec-bfc9-439f-a503-78429b0b2596.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LbcjaXDdzSbOmLRKWKuGWSqd6T4QuNVJwnA/RYD9a1k=","crlite_enrolled":true,"id":"e503815e-602e-4784-b2b8-996d3d90a704","last_modified":1580831371650},{"schema":1580831300864,"derHash":"rshjiY8oTWzUxqP2w+ZSNICjWcM9r2b60zgYSbi7AYs=","subject":"CN=Cloudflare Inc RSA CA-2,O=Cloudflare\\, Inc.,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBDbG91ZGZsYXJlLCBJbmMuMSAwHgYDVQQDExdDbG91ZGZsYXJlIEluYyBSU0EgQ0EtMg==","whitelist":false,"attachment":{"hash":"842301a8382a5def37850ade1e06b5c25ea99a6c56136a48f896bd964b68090f","size":1654,"filename":"hS5jJ4P-iQUErBkvoWBQOd1T7VOAYlOVegvv1iMzpxA=.pem","location":"security-state-staging/intermedia
tes/a38d6897-15d6-441e-b9ae-07da1d37dbb3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hS5jJ4P+iQUErBkvoWBQOd1T7VOAYlOVegvv1iMzpxA=","crlite_enrolled":false,"id":"57692346-8878-48fc-aea7-e7f609f4a9de","last_modified":1580831371647},{"schema":1580831291682,"derHash":"Ho8FHyIm+ZLRe3zxfw3s4Kp2mQLp/o0R81sZsYpaFPE=","subject":"CN=National Technical University of Athens TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGJMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTFBMD8GA1UEAww4TmF0aW9uYWwgVGVjaG5pY2FsIFVuaXZlcnNpdHkgb2YgQXRoZW5zIFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"5e004b9b1d085376feba71c29967263b5cdcc31cca7e606092c3f736254d0209","size":2889,"filename":"YiljC0xS2lPq3_MnjzPbKhYhVKBYFBS37Ng6sk1TQZA=.pem","location":"security-state-staging/intermediates/b378de2a-a5be-440b-bb97-be8c716f2e42.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YiljC0xS2lPq3/MnjzPbKhY
hVKBYFBS37Ng6sk1TQZA=","crlite_enrolled":false,"id":"34feab45-913a-4dd1-84b7-d99d60446e72","last_modified":1580831371641},{"schema":1580831294634,"derHash":"TefMrLUJmUJkSVDyzIYTQBJWXGFNUap9MIf6wZaVihQ=","subject":"CN=e-Szigno TSA CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHAxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHTAbBgNVBAMMFGUtU3ppZ25vIFRTQSBDQSAyMDE3","whitelist":false,"attachment":{"hash":"99eeb6166b538653a00b3b422cf44072341a5b8d18f5b0e12e8ec8a1a8760f47","size":1987,"filename":"-zUr-M0QExvXqqFmoTjEoyptTZT9_MSzDynC4xICVcw=.pem","location":"security-state-staging/intermediates/39b65a62-38b8-4d9c-869d-927659d4f92c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+zUr+M0QExvXqqFmoTjEoyptTZT9/MSzDynC4xICVcw=","crlite_enrolled":false,"id":"91caa638-4e14-4a27-b77c-09e6164f4747","last_modified":1580831371638},{"schema":1580831296037,"derHash":"qg6DtK4ANmeXA9FgO8fmOggEZKAzrkufRlg4rchcYe0=","subject":"
CN=QuoVadis Belgium Issuing CA G2,O=QuoVadis Trustlink BVBA,C=BE","subjectDN":"MHMxCzAJBgNVBAYTAkJFMRkwFwYDVQRhDBBOVFJCRS0wNTM3Njk4MzE4MSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQlZCQTEnMCUGA1UEAwweUXVvVmFkaXMgQmVsZ2l1bSBJc3N1aW5nIENBIEcy","whitelist":false,"attachment":{"hash":"22347539759669106f3a7765621fb849dad1b802618f047a90329fb3d5376e8f","size":2385,"filename":"4nY96le5C7s4z7Zn4U54gjJ0DBkcyRkQdgPUP_7jCug=.pem","location":"security-state-staging/intermediates/1a441015-13b3-4f5f-9e9f-0a828fcbb180.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4nY96le5C7s4z7Zn4U54gjJ0DBkcyRkQdgPUP/7jCug=","crlite_enrolled":true,"id":"a39fe513-6200-46a9-8bf3-1bcfd4a39f50","last_modified":1580831371635},{"schema":1580831293178,"derHash":"vjPRxX693ZJ7V722BL5Fe1Uv5Wjn89y6CTw57Rwwojk=","subject":"CN=GlobalSign Timestamping CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTEwLwYDVQQDEyhHbG9iYWxTaWduIFRpbWVzdGFtcGluZyBDQSAtIFNIQTI1NiAt
IEcz","whitelist":false,"attachment":{"hash":"c80175b04163d7cc6c7d2e9c5545512450e2d6810fe45aa00ba94a8632fd95a8","size":1638,"filename":"0IJvE5elXx6yt0HsXWztwcpMm15CK7mQObUFIdbDWQA=.pem","location":"security-state-staging/intermediates/28332d18-1b84-4af3-b61b-e54f8d27de50.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0IJvE5elXx6yt0HsXWztwcpMm15CK7mQObUFIdbDWQA=","crlite_enrolled":false,"id":"9ae52d06-d6e8-4b06-a154-7d811ca1d920","last_modified":1580831371632},{"schema":1580831290205,"derHash":"vh/8Dh/2CIEE9D4yfnx9xyqcp7DfBXkxI6vjLerO528=","subject":"CN=GlobalSign CA 6 for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"MEsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSEwHwYDVQQDExhHbG9iYWxTaWduIENBIDYgZm9yIEFBVEw=","whitelist":false,"attachment":{"hash":"90ada09c822f53f63600f66563831e5787d6a5e5019b3df727996081461170a0","size":1739,"filename":"T_CPVYCiPuMLEQIHPvaGV6XWv5XN7SPSvzuu2ITgIPA=.pem","location":"security-state-staging/intermediates/90f113d9-557a-46c1-9cce-85418c9
cdbc0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"T/CPVYCiPuMLEQIHPvaGV6XWv5XN7SPSvzuu2ITgIPA=","crlite_enrolled":false,"id":"65450678-db0b-4efa-acf6-1b5f28c8c48b","last_modified":1580831371626},{"schema":1580831335038,"derHash":"+OO/Hv4I73AMTtv9xP8xnVjst4DfsN2n1RBHs5socY4=","subject":"CN=WoTrus DV Server CA [Run by the Issuer],O=WoTrus CA Limited,C=CN","subjectDN":"MFwxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1RydXMgQ0EgTGltaXRlZDExMC8GA1UEAwwoV29UcnVzIERWIFNlcnZlciBDQSAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"cb3db8844f4cf6e57c8cf55d76cc5f8f0b417e0ed22a9fc06cf2741ac0a55336","size":2101,"filename":"-VWlwEVcGawfAmx6yUXVECmp5xZpZ7uvqv3Jr-xEvE4=.pem","location":"security-state-staging/intermediates/6d8b593d-3f3a-4270-99f9-acc5c0f72b4d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+VWlwEVcGawfAmx6yUXVECmp5xZpZ7uvqv3Jr+xEvE4=","crlite_enrolled":true,"id":"00a2f6a9-b608-4e1c-87f2-7a5cfea1b7f1","last_modified":1580831371623},{"schema":158083133
5834,"derHash":"GZ7lgAlVXa4s2gYmkxxkOR1qiMzLH58LLugLZn9YHAY=","subject":"CN=Cisco Meraki CA,O=Cisco Systems\\, Inc.,C=US","subjectDN":"MEUxCzAJBgNVBAYTAlVTMRwwGgYDVQQKExNDaXNjbyBTeXN0ZW1zLCBJbmMuMRgwFgYDVQQDEw9DaXNjbyBNZXJha2kgQ0E=","whitelist":false,"attachment":{"hash":"7342f611caee0df18ce789033dc9e56f170d71c7d12b34b4fc9e466d18ae427d","size":1638,"filename":"GUIjMNe--V5-Oj0iDybPHPoFZBo3KkQeXR-6l1vJW34=.pem","location":"security-state-staging/intermediates/0ccbae70-0f86-469f-b039-43d5e133fcba.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GUIjMNe++V5+Oj0iDybPHPoFZBo3KkQeXR+6l1vJW34=","crlite_enrolled":false,"id":"b4089320-2338-4364-9003-455eb7c3db79","last_modified":1580831371617},{"schema":1580831337070,"derHash":"ldmo0w9rHAacKWs+EGvDzgHrhK1Xhg0PRr9/FdBTscA=","subject":"CN=DigiCert TLS ICA GeoTrust PCA-G3,OU=www.digicert.com,O=DigiCert\\, Inc.,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEpMCcGA1UEAxMgRGlnaUN
lcnQgVExTIElDQSBHZW9UcnVzdCBQQ0EtRzM=","whitelist":false,"attachment":{"hash":"4514cda38d635585a4a6d2254c3883dd54f1c32575f05f56e6eb49c1d11f3d6f","size":1711,"filename":"3RehXzWRn3R3fv3cusa5RRk9PlyTmd350YfJjNQPvrc=.pem","location":"security-state-staging/intermediates/27e7e058-1946-43a0-a9ac-2cc8952ea030.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3RehXzWRn3R3fv3cusa5RRk9PlyTmd350YfJjNQPvrc=","crlite_enrolled":false,"id":"489a2b6c-03ce-4f5b-bd5e-7d870f6a3c38","last_modified":1580831371598},{"schema":1580831330114,"derHash":"ZjY2wD/QtbFx8rBEB8Pfdns0nIqZDYfOSFiYFm4rUSA=","subject":"CN=Symantec Class 3 ECC 256 bit EV CA - G2,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEwMC4GA1UEAxMnU3ltYW50ZWMgQ2xhc3MgMyBFQ0MgMjU2IGJpdCBFViBDQSAtIEcy","whitelist":false,"attachment":{"hash":"9f762e9d208c868f54d1d9f22496087a7c2ddf82038a661413c0fcada8947697","size":1
581,"filename":"PtK3zjOppRxW-hXzyuP7gC8Nt8hPS735XLgT-lQ1KTo=.pem","location":"security-state-staging/intermediates/ef5cc88d-3503-4e5e-bf8b-346475ed4c49.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PtK3zjOppRxW+hXzyuP7gC8Nt8hPS735XLgT+lQ1KTo=","crlite_enrolled":false,"id":"f82e3ad4-2109-405b-875a-44254587907f","last_modified":1580831371592},{"schema":1580831333860,"derHash":"iegKPtct9z5Y2yN0Tiyj7LwiX3UKYda+JoEk98leRls=","subject":"CN=TrustSafe Organization Validated CA,OU=SSL Department,O=Isimtescil Bilisim Anonim Sirketi,L=Istanbul,C=TR","subjectDN":"MIGTMQswCQYDVQQGEwJUUjERMA8GA1UEBwwISXN0YW5idWwxKjAoBgNVBAoMIUlzaW10ZXNjaWwgQmlsaXNpbSBBbm9uaW0gU2lya2V0aTEXMBUGA1UECwwOU1NMIERlcGFydG1lbnQxLDAqBgNVBAMMI1RydXN0U2FmZSBPcmdhbml6YXRpb24gVmFsaWRhdGVkIENB","whitelist":false,"attachment":{"hash":"741eb73cef38e441d495e385775b23b7e66578c11dcfd91591514ce55e8d824d","size":2255,"filename":"F8P6yRGn6PHOPi3LHmd5_Awd3GeSxMlyfUhUwxtVaoU=.pem","location":"security-state-staging/intermediate
s/28295eb2-0fa4-40e0-b2af-e05ece3ff066.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F8P6yRGn6PHOPi3LHmd5/Awd3GeSxMlyfUhUwxtVaoU=","crlite_enrolled":false,"id":"80b7ece4-c29e-4494-ad88-0dd9d4fd72bc","last_modified":1580831371589},{"schema":1580831333485,"derHash":"Ies3q0z274ll7BdmQJyna4suA/LRo4jfc0II6G3u5nk=","subject":"CN=DigiCert High Assurance CA-3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIENBLTM=","whitelist":false,"attachment":{"hash":"d90539ef3ff76bf2ac792ae9bbc21d751d2ce841eab7781e291ab04fd791d950","size":2259,"filename":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm-jrFQ=.pem","location":"security-state-staging/intermediates/3211ad63-2e73-4235-916c-6b7f2a4c67d9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm+jrFQ=","crlite_enrolled":false,"id":"d468c05a-c173-4f74-855c-1e3eba3d2298","
last_modified":1580831371587},{"schema":1580831339464,"derHash":"pBBtqF97NKbT3jeITRUokWuE8Eb/t9SqxSERewxplfM=","subject":"CN=Orion Health Direct Secure Messaging CA,OU=Orion Health Direct Secure Messaging,O=Orion Health Inc.,C=US","subjectDN":"MIGKMQswCQYDVQQGEwJVUzEaMBgGA1UEChMRT3Jpb24gSGVhbHRoIEluYy4xLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEwMC4GA1UEAxMnT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nIENB","whitelist":false,"attachment":{"hash":"8942a52d799e4407f98a25999571b12fe4fe70ec9e8c96715a5740c25bdb1d28","size":2239,"filename":"bDFIpmFQnVfXPxjH5kSmVzxV7SFcnyivqEmwWZSPF3U=.pem","location":"security-state-staging/intermediates/b59d9fc5-64da-4fb3-8e0b-33e5ae941228.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bDFIpmFQnVfXPxjH5kSmVzxV7SFcnyivqEmwWZSPF3U=","crlite_enrolled":false,"id":"39d3f04d-1e55-44d2-ac2c-207049c51797","last_modified":1580831371578},{"schema":1580831339070,"derHash":"LarG/frBbFSMU/8RmCVNfpN3YdIqHnzFwalGLpcUYfU=","subject":"CN=T
rustAsia ECC EV TLS Pro CA,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFoxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSQwIgYDVQQDExtUcnVzdEFzaWEgRUNDIEVWIFRMUyBQcm8gQ0E=","whitelist":false,"attachment":{"hash":"97a9ce8bbe9252f62216d67f4991a416a4fcdeaadd410a6256c49e9a395d1a3a","size":1427,"filename":"FM2DBzyPjxqgoESMdjtIkhgTqwpjNM94Fncf5hoKBAg=.pem","location":"security-state-staging/intermediates/d7338706-64ff-461f-8703-a9d2acd7dd78.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FM2DBzyPjxqgoESMdjtIkhgTqwpjNM94Fncf5hoKBAg=","crlite_enrolled":false,"id":"518e4647-08ec-44a9-941f-366feccac035","last_modified":1580831371575},{"schema":1580831334241,"derHash":"vzVY+HfonSfapg2pZxZ2Vw376yFdhKxaNxItZ3a3j24=","subject":"CN=GeoTrust EV ECC CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0dlb1RydXN0IEVWIEVDQyBDQSAyMDE4","whitelist":false,
"attachment":{"hash":"76fd10b988ddc4d10ef675e1353505739b36be3396db70baccebfc087010c5f1","size":1390,"filename":"KZiLkK8HMbpxJlPzQa3CEz5YMCWvdd0o1cov4_NrxCA=.pem","location":"security-state-staging/intermediates/196ccf12-c8cc-45fb-8759-263709c412c9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KZiLkK8HMbpxJlPzQa3CEz5YMCWvdd0o1cov4/NrxCA=","crlite_enrolled":false,"id":"840a78d8-f593-4732-8812-b23743799fe7","last_modified":1580831371556},{"schema":1580831332364,"derHash":"q47piksrl+WQXs6ApkMEwUOrONlQj/cob2gjXg22iic=","subject":"CN=Florida HIE Exchange CA G2,OU=Florida HIE,O=Harris Corp,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRQwEgYDVQQKEwtIYXJyaXMgQ29ycDEUMBIGA1UECxMLRmxvcmlkYSBISUUxIzAhBgNVBAMTGkZsb3JpZGEgSElFIEV4Y2hhbmdlIENBIEcy","whitelist":false,"attachment":{"hash":"f3852aeda8f85636e7791041b0694b02b52d33de2a769be09274f1ca984f7733","size":1780,"filename":"1nUKEuk4dEhejnwcerLSNmjLvtZghm_IXhlNdSkF4cc=.pem","location":"security-state-staging/intermediates/305047b8-a83b-4757-
a971-623606a36267.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1nUKEuk4dEhejnwcerLSNmjLvtZghm/IXhlNdSkF4cc=","crlite_enrolled":false,"id":"70561ed2-fa24-49f8-965b-a8c8a121ce7d","last_modified":1580831371552},{"schema":1580831334622,"derHash":"uPROSx+Gl99Uuz0PHmdZbOL+nauoWvTm8qLnQ5b4xW0=","subject":"CN=DigiCert Assured ID CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IEFzc3VyZWQgSUQgQ0EtMQ==","whitelist":false,"attachment":{"hash":"9f1924a62b10e5287c42ac43753e12a092080fb0e6308ba0aaff1cbf62b2da97","size":2402,"filename":"eabi0-qj3O40S8QpA1hE3oIeYI7XIBG9Prf9SID0GDQ=.pem","location":"security-state-staging/intermediates/542904ea-61fa-4fda-8838-3d7167d5a926.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eabi0+qj3O40S8QpA1hE3oIeYI7XIBG9Prf9SID0GDQ=","crlite_enrolled":false,"id":"621f1f02-ada1-4425-aee3-ad581ab0a99a","last_modified":1580831371550}
,{"schema":1580831332734,"derHash":"D7bOgJCdGa/uaojJWenpqmRmcVvOBcZEn+tTCghtrxQ=","subject":"CN=GeoTrust SupremeSSL EV 1 CA,OU=www.supremessl.com,O=SupremeSSL,C=NL","subjectDN":"MGUxCzAJBgNVBAYTAk5MMRMwEQYDVQQKEwpTdXByZW1lU1NMMRswGQYDVQQLExJ3d3cuc3VwcmVtZXNzbC5jb20xJDAiBgNVBAMTG0dlb1RydXN0IFN1cHJlbWVTU0wgRVYgMSBDQQ==","whitelist":false,"attachment":{"hash":"384493a25bd899d9fdf55deb2a362135f4ec8be8dc34518f6004cef3e417556c","size":1691,"filename":"uG3aQXLPd55q_z1RlGHWJQcDYD5HzCoVUz8Q5eD3Rlw=.pem","location":"security-state-staging/intermediates/df7f43b0-32fb-48f8-a431-f2b77edc9607.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uG3aQXLPd55q/z1RlGHWJQcDYD5HzCoVUz8Q5eD3Rlw=","crlite_enrolled":false,"id":"b7c4e0d2-c4b9-4872-b1e7-b9f4dc59e44c","last_modified":1580831371547},{"schema":1580831329745,"derHash":"NU/PxhYqDuIgXb72iTHngDPs6dEl4IJOSbrr+C390Wc=","subject":"CN=GeoTrust SupremeSSL 1 CA,OU=www.supremessl.com,O=SupremeSSL,C=NL","subjectDN":"MGIxCzAJBgNVBAYTAk5MMRMwEQYDVQQKEwpT
dXByZW1lU1NMMRswGQYDVQQLExJ3d3cuc3VwcmVtZXNzbC5jb20xITAfBgNVBAMTGEdlb1RydXN0IFN1cHJlbWVTU0wgMSBDQQ==","whitelist":false,"attachment":{"hash":"324604ce7c1feb1281d395804fd405d53c1027c74aaaa93ab18d05f841ca2630","size":1707,"filename":"SM-CBbHgVoJj8KYqNoXbUd-IGEbfvpomZR5lGHQ3qng=.pem","location":"security-state-staging/intermediates/a8e9d4d9-73f3-4a4e-a0dc-fdd198240404.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SM+CBbHgVoJj8KYqNoXbUd+IGEbfvpomZR5lGHQ3qng=","crlite_enrolled":false,"id":"63d1b703-15d1-445c-b43c-64ca8d44bf0a","last_modified":1580831371545},{"schema":1580831336666,"derHash":"lNTs4u2aVFe5aaE7JgSJ6aX+R5CgQfJ6PrQSbIRBjvk=","subject":"CN=DigiCert Secure Server CA,O=DigiCert Inc,C=US","subjectDN":"MEgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxIjAgBgNVBAMTGURpZ2lDZXJ0IFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"c0d77ccda911d76f8c80ebf6c501b4dba9c6a787604981af5b3c3a9f954bac59","size":1642,"filename":"v2OX1FzmsvhGRs3vKv7P5R4N-Aly9A_qKXxfEauTw
ao=.pem","location":"security-state-staging/intermediates/b3abe3ee-8707-467d-8091-1ab64836b606.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"v2OX1FzmsvhGRs3vKv7P5R4N+Aly9A/qKXxfEauTwao=","crlite_enrolled":false,"id":"86931689-a92f-49d4-a149-95fd2b1d44eb","last_modified":1580831371541},{"schema":1580831337881,"derHash":"UET2XhBCzTgLC5mX5CgzWPDe73hz2nLv228CR0rjfr4=","subject":"CN=QuoVadis Swiss Advanced CA G2,O=QuoVadis Trustlink Switzerland Ltd.,C=CH","subjectDN":"MGMxCzAJBgNVBAYTAkNIMSwwKgYDVQQKEyNRdW9WYWRpcyBUcnVzdGxpbmsgU3dpdHplcmxhbmQgTHRkLjEmMCQGA1UEAxMdUXVvVmFkaXMgU3dpc3MgQWR2YW5jZWQgQ0EgRzI=","whitelist":false,"attachment":{"hash":"52468c6ff74eaacb84d6dd6f765d0298d7770b1dae8e98d5802a8d4f567db964","size":2003,"filename":"PCO7NaLxR0Lr-39nGUXqmY4h-pmQMueSQPa8s2l13l4=.pem","location":"security-state-staging/intermediates/57cd48b2-3a6e-4130-89c2-dc40d75c65c6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PCO7NaLxR0Lr+39nGUXqmY4h+pmQMueSQPa8s2l13l4=","crlite_enrol
led":false,"id":"bc7be9c4-1921-4c16-88a4-6eb56aade751","last_modified":1580831371532},{"schema":1580831331616,"derHash":"5bvcytVy7J0t2W4OXr8EmpGB8HDx4zzBY1rY7Eh9IXc=","subject":"CN=DigiCert Federated Trust CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0IEZlZGVyYXRlZCBUcnVzdCBDQQ==","whitelist":false,"attachment":{"hash":"cf01aee2f6176035c8559ce184ffcfadec801283ea8db12c2b9e6f46a098ba52","size":2345,"filename":"uuhysnUgrwe87B8nb6rPmj9TeTzDQNfGrcbWD5032EE=.pem","location":"security-state-staging/intermediates/ecf46a97-981d-4937-b12f-8d513406ce38.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uuhysnUgrwe87B8nb6rPmj9TeTzDQNfGrcbWD5032EE=","crlite_enrolled":false,"id":"8eeda8c2-f1aa-4f20-a564-47080b5d7906","last_modified":1580831371526},{"schema":1580831331985,"derHash":"wN0GD/jOVW81aD1WTg5mspBxeICGk/g/OqZCMmv20Mg=","subject":"CN=TrustAsia ECC EV TLS Pro CA G2
,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MF0xCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMScwJQYDVQQDEx5UcnVzdEFzaWEgRUNDIEVWIFRMUyBQcm8gQ0EgRzI=","whitelist":false,"attachment":{"hash":"0b22b379557262c177cd0df97c067db059c622c348c2768de211920a4cc62a97","size":1398,"filename":"6lJqHj6Al12YiHTPXbfLj9_MNtnpjUBiUvHLHqoVkTA=.pem","location":"security-state-staging/intermediates/7e4a29a7-3ed7-4e85-8e48-c24ebed06855.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6lJqHj6Al12YiHTPXbfLj9/MNtnpjUBiUvHLHqoVkTA=","crlite_enrolled":false,"id":"293e0ccd-71f9-42a4-ac96-f21584cc8fa2","last_modified":1580831371521},{"schema":1580831338677,"derHash":"V9jVuDJha3gjRmoMNydw0WpdzyRlgfD1g3PlHH4eUxY=","subject":"CN=DigiCert High Assurance CA-3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIENBLTM=","whitelist":false,"attachme
nt":{"hash":"80d4bb692e396cf3ccf6595d18d123459107363391f6c0e030d16cefc85308ba","size":2255,"filename":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm-jrFQ=.pem","location":"security-state-staging/intermediates/e98dee35-7b84-4d8f-9f01-3021b3339da7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm+jrFQ=","crlite_enrolled":false,"id":"2a5f71dc-243b-43b6-918e-b6e20ae381aa","last_modified":1580831371512},{"schema":1580831335425,"derHash":"UW2FbQNTumn/65weugNdeAhEhXAG7OmcBR7BnBDDbNU=","subject":"CN=DigiCert TLS ICA GeoTrust Global,OU=www.digicert.com,O=DigiCert\\, Inc.,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEpMCcGA1UEAxMgRGlnaUNlcnQgVExTIElDQSBHZW9UcnVzdCBHbG9iYWw=","whitelist":false,"attachment":{"hash":"2b6a498e6adf7455626036e3d5498468dd85769c78b6b869202cdcc57038e0db","size":1593,"filename":"cAWbaZmut0LWOQOIkM3RvlL9I2y_OHNWu8-bB1lbGXM=.pem","location":"security-state-staging/interm
ediates/efd1d410-c75a-40cb-896e-c5e083e18935.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cAWbaZmut0LWOQOIkM3RvlL9I2y/OHNWu8+bB1lbGXM=","crlite_enrolled":false,"id":"a86bf8ec-bd1a-453e-982c-b25e4c008a5e","last_modified":1580831371502},{"schema":1580831330483,"derHash":"VEULJ4BS+pGRFgDLmPMQCg+1gVKNj+q5i2/++KSMmY4=","subject":"CN=Actalis Client Authentication CA G2,O=Actalis S.p.A./03358520967,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGNMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEjMCEGA1UECgwaQWN0YWxpcyBTLnAuQS4vMDMzNTg1MjA5NjcxLDAqBgNVBAMMI0FjdGFsaXMgQ2xpZW50IEF1dGhlbnRpY2F0aW9uIENBIEcy","whitelist":false,"attachment":{"hash":"888db3995a9779092a92b32155ba48b8f752cb7e76586fcafb29157c596ba126","size":2316,"filename":"6-WU29fzcxxCr7poWUULZoDxQb7pJ5qJhne0S46pWb4=.pem","location":"security-state-staging/intermediates/26b55346-6fba-46c5-ab26-624533bc90b6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6+WU29fzcxxCr7poWUULZoDxQb
7pJ5qJhne0S46pWb4=","crlite_enrolled":true,"id":"856d2476-aec9-4824-b7ee-236a8f6d0fa0","last_modified":1580831371497},{"schema":1580831338274,"derHash":"wKShrAXgMJajsquKOFArOeJhThE5e+5z0KZris73ooM=","subject":"CN=DigiCert High Assurance CA-3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIENBLTM=","whitelist":false,"attachment":{"hash":"e3909fbaebb8ef6af7bbffe333d52eafa063b31f216ab25a26f98adacb9b51f6","size":2349,"filename":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm-jrFQ=.pem","location":"security-state-staging/intermediates/202293f2-84fb-4a8c-b939-35ceaeb78a8d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm+jrFQ=","crlite_enrolled":false,"id":"4495c40e-442c-4744-bcea-962e2b93bfd0","last_modified":1580831371491},{"schema":1580831333108,"derHash":"Ql5yyH/yKFXZkItxq0xksNLySChwl2kMYv5zP2Md448=","subject":"
CN=DigiCert Assured ID CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IEFzc3VyZWQgSUQgQ0EtMQ==","whitelist":false,"attachment":{"hash":"fbcee06cf0f489ec7dc8c26d9e8e072e5eb0c91534e3ec10e979ff1b101f86d8","size":2418,"filename":"eabi0-qj3O40S8QpA1hE3oIeYI7XIBG9Prf9SID0GDQ=.pem","location":"security-state-staging/intermediates/061ce3bb-6e51-49c7-a5f9-08a7b270fbdf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eabi0+qj3O40S8QpA1hE3oIeYI7XIBG9Prf9SID0GDQ=","crlite_enrolled":false,"id":"c866113d-8267-4723-993b-0f7fc4008f25","last_modified":1580831371480},{"schema":1580831331243,"derHash":"3LQArMJJ+4SDQV/CZQvJBIjKlmQxGMsOT0Qkshw6paQ=","subject":"CN=DigiCert High Assurance CA-3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNl
IENBLTM=","whitelist":false,"attachment":{"hash":"7b2bb2e718615878d60921325a6b6a79bfcdb0076c093323e35de7dc5ccb5e1e","size":2259,"filename":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm-jrFQ=.pem","location":"security-state-staging/intermediates/dc2adf52-a65a-47f4-98df-90d1bc2795c0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm+jrFQ=","crlite_enrolled":false,"id":"b1fa8b2a-9240-4c89-a31e-bbedfe18d2c1","last_modified":1580831371478},{"schema":1579028939007,"derHash":"bwHOS5alTzv287PwG8FFKQLoBm9+9HoEcdmUicwvhEw=","subject":"CN=DigitalTrust Assured CA G3 [Run by the Issuer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MGYxCzAJBgNVBAYTAkFFMR0wGwYDVQQKExREaWdpdGFsIFRydXN0IEwuTC5DLjE4MDYGA1UEAwwvRGlnaXRhbFRydXN0IEFzc3VyZWQgQ0EgRzMgIFtSdW4gYnkgdGhlIElzc3Vlcl0=","whitelist":false,"attachment":{"hash":"e3f0a2228d028c7c2d686497c9827724f05379697bdaebfa9ab67fc93565b02b","size":1305,"filename":"9ZrELmXXgaRdMyl2s40R_lSll2UwWzKv_lc0T1G-S90=.pem","location":"s
ecurity-state-staging/intermediates/df9de46d-ee97-4db0-92c5-106659dc6344.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9ZrELmXXgaRdMyl2s40R/lSll2UwWzKv/lc0T1G+S90=","crlite_enrolled":false,"id":"747489d6-2a1f-4621-b484-55e2f26e43de","last_modified":1579029043788},{"schema":1579028940448,"derHash":"vb9XvRAWOncbKNCdTJAYjVlgcsaZvYJ0/kYo0SUOSb0=","subject":"CN=DigitalTrust Secure CA G3 [Run by the Issuer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MGUxCzAJBgNVBAYTAkFFMR0wGwYDVQQKExREaWdpdGFsIFRydXN0IEwuTC5DLjE3MDUGA1UEAwwuRGlnaXRhbFRydXN0IFNlY3VyZSBDQSBHMyAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"6a1034555007397b09db59427c8e6b61eb18ac3ecad29bdc8289511a2376368e","size":1317,"filename":"n7S9CUGXp7reMdZAD7cwkt9AngliimrF0ya3qfi_Tn0=.pem","location":"security-state-staging/intermediates/92dcc5d2-c2c7-42fd-a315-adf0a0c1e58a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n7S9CUGXp7reMdZAD7cwkt9AngliimrF0ya3qfi/Tn0=","crlite_enrolled":false,"id":
"4e95b8dd-b52a-491c-b875-8bf748643131","last_modified":1579029043785},{"schema":1579028933319,"derHash":"0QEGJDi/sK8Fq6ed8A9N1J54uM79XtkpVlwjNhExAZE=","subject":"CN=Global Trust CA - OV (ECC),O=Global Digital Inc.,C=TW","subjectDN":"MFAxCzAJBgNVBAYTAlRXMRwwGgYDVQQKExNHbG9iYWwgRGlnaXRhbCBJbmMuMSMwIQYDVQQDExpHbG9iYWwgVHJ1c3QgQ0EgLSBPViAoRUNDKQ==","whitelist":false,"attachment":{"hash":"a82660958c3ea8942f29245ff2b8ee8aec7c0394bfd0909b9fe76c5f958d64c7","size":1252,"filename":"oWD3L7oqjz3vUhAVyhQoyubwAtUDmmdDOlkahsKwP6M=.pem","location":"security-state-staging/intermediates/154a10aa-4805-4fd8-aa5d-4a0114f27a83.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oWD3L7oqjz3vUhAVyhQoyubwAtUDmmdDOlkahsKwP6M=","crlite_enrolled":false,"id":"420f7c9b-46e0-4c2e-acf4-354a9e1e107f","last_modified":1579029043779},{"schema":1579028930299,"derHash":"9NaVrak2Ni3frtpkTHzO8k63TcQ404GiivqqEUd65n8=","subject":"CN=Global Trust CA - DV (ECC),O=Global Digital Inc.,C=TW","subjectDN":"MFAxCzAJBgNVBAYTAlRX
MRwwGgYDVQQKExNHbG9iYWwgRGlnaXRhbCBJbmMuMSMwIQYDVQQDExpHbG9iYWwgVHJ1c3QgQ0EgLSBEViAoRUNDKQ==","whitelist":false,"attachment":{"hash":"c7355ba281b86440b42869da1995f8827d941dd7f536e3597c74d5f9bf8bf1ec","size":1252,"filename":"LUbiRYLu1pSHTj3Z-ypCjtIr7U83tgAbsXPL2H-meVE=.pem","location":"security-state-staging/intermediates/39747309-5dcc-499d-b5fe-d02d1627de6a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LUbiRYLu1pSHTj3Z+ypCjtIr7U83tgAbsXPL2H+meVE=","crlite_enrolled":false,"id":"5d5a8603-5a22-40cc-bcf3-f79feed83467","last_modified":1579029043776},{"schema":1579028937540,"derHash":"TAjC+6lI1IQ3FLYzoYEmskFwONe3RdpB7RXqp6rnxZk=","subject":"CN=Global Trust CA - Client,O=Global Digital Inc.,C=TW","subjectDN":"ME4xCzAJBgNVBAYTAlRXMRwwGgYDVQQKExNHbG9iYWwgRGlnaXRhbCBJbmMuMSEwHwYDVQQDExhHbG9iYWwgVHJ1c3QgQ0EgLSBDbGllbnQ=","whitelist":false,"attachment":{"hash":"a3e006f755c53595620f6d0060a12fede2112d94f648dcd70d3d87b37675dd85","size":2073,"filename":"JgEFqnj4Eusn8_aqR2_HteSVCb6j5aYpdbZ
slup32ys=.pem","location":"security-state-staging/intermediates/235af0b7-680c-49da-ad9d-8e6a2e51f1fa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JgEFqnj4Eusn8/aqR2/HteSVCb6j5aYpdbZslup32ys=","crlite_enrolled":false,"id":"a4200022-b213-44b7-8b23-b9230dd5c849","last_modified":1579029043773},{"schema":1579028934721,"derHash":"qK7gyk++CQh4qQHLVkElV07GS6KOnpApbtPkkrFgtNk=","subject":"CN=DNEncrypt SHA2 OV SSL/TLS [Run by the Issuer],O=DNEncrypt\\, Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5ETkVuY3J5cHQsIEluYzE3MDUGA1UEAwwuRE5FbmNyeXB0IFNIQTIgT1YgU1NML1RMUyAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"8ec77c856ada00bc203c0a2a7d135f1f333e047356ddccdecae96b4e7660d604","size":2454,"filename":"oTOjvcPyAYB-WsThLALbWlgbUUxVxj6xmmL3GnHrCkY=.pem","location":"security-state-staging/intermediates/08b4b6d3-6190-461c-ab2c-59d46d235160.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oTOjvcPyAYB+WsThLALbWlgbUUxVxj6xmmL3GnHrCkY=","crlite_enrol
led":false,"id":"a6a0c891-36a3-44bb-b93e-90f730832f4a","last_modified":1579029043770},{"schema":1579028926994,"derHash":"mgaeR4zTQUSf8ot8d1LFSuz6usWOS1AoVhZJq0gggNs=","subject":"CN=DigitalTrust Secure CA G4 [Run by the Issuer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MGUxCzAJBgNVBAYTAkFFMR0wGwYDVQQKExREaWdpdGFsIFRydXN0IEwuTC5DLjE3MDUGA1UEAwwuRGlnaXRhbFRydXN0IFNlY3VyZSBDQSBHNCAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"ee227902a2765dd235ffb37849a132e5ace2b7361e7587f18cf42ce39977a16c","size":2467,"filename":"R683Qs6upExakQVDH-vmwK67rfyDMxBotLmYh7TobVA=.pem","location":"security-state-staging/intermediates/40000abd-9451-4eae-98e4-311a759d8645.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"R683Qs6upExakQVDH+vmwK67rfyDMxBotLmYh7TobVA=","crlite_enrolled":false,"id":"2dde196f-ed22-44e8-a3a5-c2cf3108accd","last_modified":1579029043767},{"schema":1579028931778,"derHash":"DaILPAU4a9l1sdvTfw63aJ5qMjZDluBlP/qe7mBnlPU=","subject":"CN=Global Trust CA - DV (R
SA),O=Global Digital Inc.,C=TW","subjectDN":"MFAxCzAJBgNVBAYTAlRXMRwwGgYDVQQKExNHbG9iYWwgRGlnaXRhbCBJbmMuMSMwIQYDVQQDExpHbG9iYWwgVHJ1c3QgQ0EgLSBEViAoUlNBKQ==","whitelist":false,"attachment":{"hash":"5cdd0b9b0275f33beab775b37771a02bf084cef5c96a9cf78baff9e34cab1c37","size":2089,"filename":"hwddnilH_pWtWcAnCBvcpQEiJA8MsPuSY74GtASteIo=.pem","location":"security-state-staging/intermediates/8b16acf6-9f74-495d-a9f0-b039aa0c54b5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hwddnilH/pWtWcAnCBvcpQEiJA8MsPuSY74GtASteIo=","crlite_enrolled":false,"id":"6224b875-5c34-475b-8cdf-aecad54173d7","last_modified":1579029043764},{"schema":1579028920989,"derHash":"iF6OHcrQdxTzuiysmtv2hxH7LlY2g/xOM0z5JNl8wkU=","subject":"CN=DNEncrypt SHA2 EV SSL/TLS [Run by the Issuer],O=DNEncrypt\\, Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5ETkVuY3J5cHQsIEluYzE3MDUGA1UEAwwuRE5FbmNyeXB0IFNIQTIgRVYgU1NML1RMUyAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"515389105a63e3007
2896ef76765146cfb695657c76de28794dd225b612049b3","size":2487,"filename":"EonOFaZgJpBcxWk-Gu5D6SKzi_Nbfzub6RHPOQrObVs=.pem","location":"security-state-staging/intermediates/84327d88-f8a0-4200-a3f7-98e74dd330d9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EonOFaZgJpBcxWk+Gu5D6SKzi/Nbfzub6RHPOQrObVs=","crlite_enrolled":false,"id":"aea19046-d765-48b5-896c-bca4d813161f","last_modified":1579029043762},{"schema":1579028923899,"derHash":"6xRHA3Gwku0ggB4h6jllObTkKMFwirjJtwaDQjmdPIE=","subject":"CN=Global Trust CA - EV (RSA),O=Global Digital Inc.,C=TW","subjectDN":"MFAxCzAJBgNVBAYTAlRXMRwwGgYDVQQKExNHbG9iYWwgRGlnaXRhbCBJbmMuMSMwIQYDVQQDExpHbG9iYWwgVHJ1c3QgQ0EgLSBFViAoUlNBKQ==","whitelist":false,"attachment":{"hash":"954e40ee7eb9c53e13a02c16f50f72b1a2bcc3abd5f5ca2cfda37936f3b26950","size":2117,"filename":"V2odnnJSCZapUukBa0XBQ7E-peZxS4qRJ22CftbyIG4=.pem","location":"security-state-staging/intermediates/9fd0a474-3344-4a18-81a8-6b47d22813f4.pem","mimetype":"application/x-pem-file"},"p
ubKeyHash":"V2odnnJSCZapUukBa0XBQ7E+peZxS4qRJ22CftbyIG4=","crlite_enrolled":false,"id":"ea836d76-6bc4-4cdb-8aa6-28726f31823c","last_modified":1579029043753},{"schema":1579028918130,"derHash":"lp4yAFIOssaalmdYfm3U0LI/KPUQzBMXZwqO02E+vq0=","subject":"CN=DigitalTrust High Assurance CA G4 [Run by the Issuer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MG0xCzAJBgNVBAYTAkFFMR0wGwYDVQQKExREaWdpdGFsIFRydXN0IEwuTC5DLjE/MD0GA1UEAww2RGlnaXRhbFRydXN0IEhpZ2ggQXNzdXJhbmNlIENBIEc0ICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"hash":"e74dd2a02806fa7c508188e10a5f0c0712f1cfbccde8988e042626a766beecb4","size":2507,"filename":"LFyh5Bg1aFs3y7w1j2dwtnxqDbovX0i8cL9gYJC6PXw=.pem","location":"security-state-staging/intermediates/df91fee1-b72c-4071-bb40-85741d9a30db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LFyh5Bg1aFs3y7w1j2dwtnxqDbovX0i8cL9gYJC6PXw=","crlite_enrolled":false,"id":"82e3caed-61a5-46f8-b0a5-e0e5548b3eaa","last_modified":1579029043747},{"schema":1579028915292,"derHas
h":"A3GlU+Ss9AJFkQfo95M3nMVpEw8u4DxBL+2HtcFyQkQ=","subject":"CN=DNEncrypt ECC DV SSL/TLS [Run by the Issuer],O=DNEncrypt\\, Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5ETkVuY3J5cHQsIEluYzE2MDQGA1UEAwwtRE5FbmNyeXB0IEVDQyBEViBTU0wvVExTICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"hash":"f33c1660f86553d61d7d2c9223b3d32b7720ca57b4c5c5a3542c544085b3ba13","size":1309,"filename":"cMgUafsF3Pj6CXkE48F1T9jPwW-ZXrmmryJ99sHNyYA=.pem","location":"security-state-staging/intermediates/73b1704d-b140-489e-a73d-4b23fc14264f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cMgUafsF3Pj6CXkE48F1T9jPwW+ZXrmmryJ99sHNyYA=","crlite_enrolled":false,"id":"626f9b82-c857-46cc-b90a-e7bcf3ac92cc","last_modified":1579029043744},{"schema":1579028919558,"derHash":"6ZOtZU1FhUS7Dk2n7HxfumDEZFebGyLGWSPd0UpngKw=","subject":"CN=DNEncrypt ECC EV SSL/TLS [Run by the Issuer],O=DNEncrypt\\, Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5ETkVuY3J5cHQsIEluYzE2MDQGA1UEAwwtRE5Fb
mNyeXB0IEVDQyBFViBTU0wvVExTICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"hash":"0c64bd4a0285b5cf304cffc344c87492bc476b3a278216dda0ca3efb7367f40d","size":1341,"filename":"m7sp44VsyZf6_AVSHx-N3M0tXcbynVKIOugeitl06ZM=.pem","location":"security-state-staging/intermediates/ffd48335-dab5-42df-8a9e-44fa95bafa0a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m7sp44VsyZf6/AVSHx+N3M0tXcbynVKIOugeitl06ZM=","crlite_enrolled":false,"id":"777c1fad-dd5b-4d30-a1d2-2cea029d3253","last_modified":1579029043738},{"schema":1579028913702,"derHash":"Ot3JgkDiGnLZxA61BYkFqkDt+jRa3t3lhEzLD0YthPc=","subject":"CN=Global Trust CA - EV (ECC),O=Global Digital Inc.,C=TW","subjectDN":"MFAxCzAJBgNVBAYTAlRXMRwwGgYDVQQKExNHbG9iYWwgRGlnaXRhbCBJbmMuMSMwIQYDVQQDExpHbG9iYWwgVHJ1c3QgQ0EgLSBFViAoRUNDKQ==","whitelist":false,"attachment":{"hash":"a73482c81f3542c42bb1637ffc95ed5fd477eb92360c59b579ee3dcdf8374936","size":1280,"filename":"PRcljLZm-PUuo_QCHUFdjCyCwTjglb9Jg7caPjv8bI0=.pem","location":"secu
rity-state-staging/intermediates/1d3bd069-53ec-4918-9c0b-66e52af2eb8c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PRcljLZm+PUuo/QCHUFdjCyCwTjglb9Jg7caPjv8bI0=","crlite_enrolled":false,"id":"fcad5a9e-1e6a-49e0-9041-34e4a071516c","last_modified":1579029043735},{"schema":1579028916680,"derHash":"yjd7GIZrI48xqASd/RNgnlSbdROQ7vzbmpoTUxJ/+zU=","subject":"CN=DNEncrypt ECC OV SSL/TLS [Run by the Issuer],O=DNEncrypt\\, Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5ETkVuY3J5cHQsIEluYzE2MDQGA1UEAwwtRE5FbmNyeXB0IEVDQyBPViBTU0wvVExTICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"hash":"b7a060b2b07e92212754c63a106ae5c0f0264b8a9e50ae75feb93ab2437da7ff","size":1309,"filename":"Vqfldlh0sPrGbhkt70MsWwISyFbsgHXV3Scyfh6rREM=.pem","location":"security-state-staging/intermediates/b4b0e86a-be59-4d75-89d3-13042e2a838f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vqfldlh0sPrGbhkt70MsWwISyFbsgHXV3Scyfh6rREM=","crlite_enrolled":false,"id":"f546b858-d355-4107-
834f-3c7e2949cc1d","last_modified":1579029043733},{"schema":1579028909294,"derHash":"FlLGbbZC0KUkv4n/3z7tWo6UsUpusH56ReqAxU+ehZM=","subject":"CN=DigitalTrust High Assurance CA G3 [Run by the Issuer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MG0xCzAJBgNVBAYTAkFFMR0wGwYDVQQKExREaWdpdGFsIFRydXN0IEwuTC5DLjE/MD0GA1UEAww2RGlnaXRhbFRydXN0IEhpZ2ggQXNzdXJhbmNlIENBIEczICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"hash":"3e8bf279c9897937ae0931414eed45e94b47bdf7016de3722ff1cd06587daef8","size":1358,"filename":"mLgcAaWaR7874mBWx4gTZEcxbuqvMnF41qXNwAW8A1E=.pem","location":"security-state-staging/intermediates/14c76e24-e6f7-4004-8696-e7ffffd72208.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mLgcAaWaR7874mBWx4gTZEcxbuqvMnF41qXNwAW8A1E=","crlite_enrolled":false,"id":"4b4467a7-4c39-45a4-a5c8-00e3f9693711","last_modified":1579029043730},{"schema":1579028906281,"derHash":"dYQWlcYABAZgo9NyXlMdPc+vzNJvWIN16rLY0SmQR4U=","subject":"CN=DigitalTrust Assured CA G4 [Run by the Iss
uer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MGYxCzAJBgNVBAYTAkFFMR0wGwYDVQQKExREaWdpdGFsIFRydXN0IEwuTC5DLjE4MDYGA1UEAwwvRGlnaXRhbFRydXN0IEFzc3VyZWQgQ0EgRzQgIFtSdW4gYnkgdGhlIElzc3Vlcl0=","whitelist":false,"attachment":{"hash":"bbff348acb2ad27e947747edbb0636e41b1168d27439b5bfbfce18f743d587d2","size":2450,"filename":"wVc5iD8EbsOm6PnS6dmUMrpLPgr3_owf0Dl1X-4IYQ4=.pem","location":"security-state-staging/intermediates/9baa2709-0abc-4a36-827c-799f5de9c2af.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wVc5iD8EbsOm6PnS6dmUMrpLPgr3/owf0Dl1X+4IYQ4=","crlite_enrolled":false,"id":"86983387-0e43-46b3-9e47-6a40ed8f8619","last_modified":1579029043727},{"schema":1579028904846,"derHash":"qXQcP6RM+Xd6Sbb1Du1dDrh+lIHzpFCWw5VqXuG7iEQ=","subject":"CN=DigitalTrust CA G4 [Run by the Issuer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MF4xCzAJBgNVBAYTAkFFMR0wGwYDVQQKExREaWdpdGFsIFRydXN0IEwuTC5DLjEwMC4GA1UEAwwnRGlnaXRhbFRydXN0IENBIEc0ICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"h
ash":"84f190959472ef5c60f53b166df0e32ccc218bd9a02ad1184c432a5c1187fd7c","size":2454,"filename":"3MPa3WIVqOW4yU6-w-ZSt3hKIEBpElbYDOX4tDWu1pI=.pem","location":"security-state-staging/intermediates/b67dbf30-2e5f-4572-9a51-963a2e41fcd9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3MPa3WIVqOW4yU6+w+ZSt3hKIEBpElbYDOX4tDWu1pI=","crlite_enrolled":false,"id":"b8b2f836-8e81-4a67-8afc-877abf1c8895","last_modified":1579029043724},{"schema":1579028910703,"derHash":"nRkILiQzvlUB9GkSlXD1c4c7Lf6DhrH4qd+pjC+q3Ns=","subject":"CN=DNEncrypt SHA2 DV SSL/TLS [Run by the Issuer],O=DNEncrypt\\, Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5ETkVuY3J5cHQsIEluYzE3MDUGA1UEAwwuRE5FbmNyeXB0IFNIQTIgRFYgU1NML1RMUyAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"a65bbd2c04e427655a0c45d1f82f7685ada08bc874a74ab4e09037ec98ac9d5a","size":2458,"filename":"3E1xVsnJnhe9i57XMuug-LOT83YzrJjC1N60Oln6OaU=.pem","location":"security-state-staging/intermediates/c1c68b60-29de-4cdf-8b
a2-7adf17023d5a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3E1xVsnJnhe9i57XMuug+LOT83YzrJjC1N60Oln6OaU=","crlite_enrolled":false,"id":"66492022-3f9c-4abc-b14f-9bce674885fb","last_modified":1579029043721},{"schema":1579028903393,"derHash":"vg1slHe5ggklSa3T1cC9GejxPE9OhelHEpfhxeGax2g=","subject":"CN=DigitalTrust CA G3 [Run by the Issuer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MF4xCzAJBgNVBAYTAkFFMR0wGwYDVQQKExREaWdpdGFsIFRydXN0IEwuTC5DLjEwMC4GA1UEAwwnRGlnaXRhbFRydXN0IENBIEczICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"hash":"eb78b6848ba5286d4224160e64392e5ad1c80330a158642dd0a826b312889cf6","size":1309,"filename":"0r9lDiNtrXm0xXuKfgPxSSDXNDGuK2HF29dk8BUZsCA=.pem","location":"security-state-staging/intermediates/5ba9312c-58e2-408d-ab65-a5b513dd2ccf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0r9lDiNtrXm0xXuKfgPxSSDXNDGuK2HF29dk8BUZsCA=","crlite_enrolled":false,"id":"f4a41986-65e8-483c-bdb5-1b551dcf0317","last_modified":1579029043719},{"sche
ma":1579028942702,"derHash":"pXZN/QRUrToGQouQfbiqQ22mMXIJ6v1h3ULlaud/mxM=","subject":"CN=vTrus DV SSL CA G1,O=iTrusChina Co.\\, Ltd.,C=CN","subjectDN":"MEkxCzAJBgNVBAYTAkNOMR0wGwYDVQQKDBRpVHJ1c0NoaW5hIENvLiwgTHRkLjEbMBkGA1UEAwwSdlRydXMgRFYgU1NMIENBIEcx","whitelist":false,"attachment":{"hash":"2139889982ea46a63a464eeadd8924a0691d8a5aafe08c973053fa5c343bb807","size":1715,"filename":"Lh5Dl4rrZsfMQM9Q9U2BcmEKABgw3NzU5omS-Hb7j-E=.pem","location":"security-state-staging/intermediates/5381eea4-5663-4fb1-8a43-154a02daae8e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Lh5Dl4rrZsfMQM9Q9U2BcmEKABgw3NzU5omS+Hb7j+E=","crlite_enrolled":true,"id":"74de0e26-7443-4e36-b943-532a38006251","last_modified":1579029043713},{"schema":1579028944355,"derHash":"jlzqHRASUhwnpOEScHArx8mhFW8TUHPWyk5C7ugmJJ4=","subject":"CN=QuoVadis Europe Advanced CA G1,O=QuoVadis Trustlink Deutschland GmbH,C=DE","subjectDN":"MIGAMQswCQYDVQQGEwJERTEaMBgGA1UEYQwRVkFUREUtREUyOTY4OTgzODIxLDAqBgNVBAoMI1F1b1ZhZGlzIFRydXN0bG
luayBEZXV0c2NobGFuZCBHbWJIMScwJQYDVQQDDB5RdW9WYWRpcyBFdXJvcGUgQWR2YW5jZWQgQ0EgRzE=","whitelist":false,"attachment":{"hash":"c2dcb9263638c8e20a18233f4f7774cbe2557b5e3f14dc6772a603042c2b5fb2","size":2471,"filename":"cFVZyGLFfkszy_X-hkVMcSVvZFH70X8fvwA5CnidJ9A=.pem","location":"security-state-staging/intermediates/4bb7a95b-e5ad-47af-8a74-99ab87c335aa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cFVZyGLFfkszy/X+hkVMcSVvZFH70X8fvwA5CnidJ9A=","crlite_enrolled":true,"id":"98356c2d-a35c-4278-8d52-4deef1c5fa59","last_modified":1579029043711},{"schema":1579028943120,"derHash":"+xFH56uXopu5wRQKvz3oMfTF9g0RuQ/smZoIFjddhFc=","subject":"CN=DC Government SHA2 Assured ID Intermediate CA,OU=Office of the Chief Technology Officer,O=Government of the District of Columbia,C=US","subjectDN":"MIGnMQswCQYDVQQGEwJVUzEvMC0GA1UEChMmR292ZXJubWVudCBvZiB0aGUgRGlzdHJpY3Qgb2YgQ29sdW1iaWExLzAtBgNVBAsTJk9mZmljZSBvZiB0aGUgQ2hpZWYgVGVjaG5vbG9neSBPZmZpY2VyMTYwNAYDVQQDEy1EQyBHb3Zlcm5tZW50IFNIQTIgQXNzdXJlZCBJ
RCBJbnRlcm1lZGlhdGUgQ0E=","whitelist":false,"attachment":{"hash":"0b2d79a38acd24c45b952101f6a70cb8f52427e090db11f7a958102e19ff5991","size":1938,"filename":"eBMo_2IweCsxeqG8ggZwOamIcoYP6_GqxtfdG-LT0UQ=.pem","location":"security-state-staging/intermediates/31697f1b-6613-4efe-9f5a-1c51e06249db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eBMo/2IweCsxeqG8ggZwOamIcoYP6/GqxtfdG+LT0UQ=","crlite_enrolled":false,"id":"521e1353-a4bb-4e91-b7aa-955db2c75172","last_modified":1579029043704},{"schema":1579028942315,"derHash":"VJiWPf+mUWBPRn4QjmWhg0cPqbVXwSnd+MnYErTwv5Y=","subject":"CN=NETLOCK Trust Qualified CA,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"MFwxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMSMwIQYDVQQDDBpORVRMT0NLIFRydXN0IFF1YWxpZmllZCBDQQ==","whitelist":false,"attachment":{"hash":"eca87866bec2d4554f1b58f8091c7337c82c9e65d743cf2eba31c9d2757e5244","size":2073,"filename":"fuUqgkkwOoU6AwXExGnKFu7G3knCONHh2ksz-wBRRbY=.pem","location":"security-state-
staging/intermediates/5c604286-d66a-44d4-b654-de83a937b1a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fuUqgkkwOoU6AwXExGnKFu7G3knCONHh2ksz+wBRRbY=","crlite_enrolled":false,"id":"ce93fbf8-83be-4a31-acf0-fd669baf4f55","last_modified":1579029043697},{"schema":1579028944748,"derHash":"a6qwxDPXef1qS21W1jBNXm6l3mif41pDA4pAKPNF32A=","subject":"CN=TrustID Server CA O1,OU=TrustID Server,O=IdenTrust,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxFzAVBgNVBAsTDlRydXN0SUQgU2VydmVyMR0wGwYDVQQDExRUcnVzdElEIFNlcnZlciBDQSBPMQ==","whitelist":false,"attachment":{"hash":"ff57c4d65b0b7547b7257b720248edc7df260a756f562751560760f5692ed85a","size":2398,"filename":"TpfnK_TFKAbtiqXG0BETu96LfmJwwZKETBR58_SIZnk=.pem","location":"security-state-staging/intermediates/cb7629a5-e914-4dfc-8b42-a9f8565378d8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TpfnK/TFKAbtiqXG0BETu96LfmJwwZKETBR58/SIZnk=","crlite_enrolled":true,"id":"74822f06-6362-433e-a670-6209b0f88ebc","last_modif
ied":1579029043693},{"schema":1577473661023,"derHash":"WtQYO1Tw4nYtqNkQ4efp8qsvG8TOamOPDbvzN+tKE58=","subject":"CN=Symantec Class 3 ECC 256 bit Extended Validation CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxPDA6BgNVBAMTM1N5bWFudGVjIENsYXNzIDMgRUNDIDI1NiBiaXQgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"a298322e090d871dee6a5377ed4d7372c1bd2c977bc9067c23d4471b8680577d","size":1406,"filename":"sofhbubvXHTCSb_u26mxxJyvvNAx0U-JADKlcpRG9WA=.pem","location":"security-state-staging/intermediates/cd1dd854-37d4-44b1-b0ea-eaa57fadb3ea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sofhbubvXHTCSb/u26mxxJyvvNAx0U+JADKlcpRG9WA=","crlite_enrolled":false,"id":"0cec5b1f-5cf4-4d0d-95f5-f13f8a18d57e","last_modified":1577473769153},{"schema":1577473659233,"derHash":"ZOcWAfcFCSHe4DnANJNhXkiPEvw/zsut9DiqRn7h1Bo=","subject":"CN=Global
Sign PersonalSign 2 CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAyIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"5fbdd9d4f35d177aa98a436994c97d3b3775ddb8c383c1eb9ef3dea1496456cb","size":1569,"filename":"Uln62-9-5Wt3xmkVju62Zqx1VcoZH7PCLXpxS0B8L4k=.pem","location":"security-state-staging/intermediates/15861c41-dd2c-4e34-a1cf-2cb02237f06a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uln62+9+5Wt3xmkVju62Zqx1VcoZH7PCLXpxS0B8L4k=","crlite_enrolled":false,"id":"8d244824-310b-4dff-a724-1de13c98b0de","last_modified":1577473769150},{"schema":1577473662286,"derHash":"JUvpHBq8so215NZ1opoeeIRgsGWR8bqEl8vReDfier4=","subject":"CN=GlobalSign PersonalSign 1 CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAxIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"bc9230903dfbbfdcd3c10
1efc4734db554a1b1c549cf25ffec6ac311d6f57552","size":1569,"filename":"YRypdHS0Ru4gIYd-v2Cul5vQVyh8seMxVJvPr2qLJOA=.pem","location":"security-state-staging/intermediates/eb2091ee-9a1e-4ade-96fc-d8ad4c4294c8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YRypdHS0Ru4gIYd+v2Cul5vQVyh8seMxVJvPr2qLJOA=","crlite_enrolled":false,"id":"0b699a25-cbef-43aa-9d17-e10c820aba03","last_modified":1577473769134},{"schema":1577473661866,"derHash":"FQc8a73HRpmohRjCelfJVuXiPWypYZ5SGkaMeHPeT4o=","subject":"CN=QuoVadis PKIoverheid Organisatie Persoon CA - G3,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MIGDMQswCQYDVQQGEwJOTDEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xFzAVBgNVBGEMDk5UUk5MLTMwMjM3NDU5MTkwNwYDVQQDDDBRdW9WYWRpcyBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBQZXJzb29uIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"28af41c11c70cf3e8ab413a31b4bfdda3463af11655163604adb33bc16fa601a","size":2584,"filename":"5V1JaYa-6v2oFoMXifuhrjdea3drxtVr9lqziPTCV9M=.pem","location":"security-state-staging/inter
mediates/13ac31b3-3b06-43f6-adbc-a093f09aa585.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5V1JaYa+6v2oFoMXifuhrjdea3drxtVr9lqziPTCV9M=","crlite_enrolled":true,"id":"7efaa58e-f86c-4e33-a478-1aba997bda84","last_modified":1577473769128},{"schema":1577473661458,"derHash":"m5xV1YbxX0/woS4+h6oq5fbAwhiFfg20zEobp05JP1Q=","subject":"CN=SSL.com Client Certificate Intermediate CA RSA R1,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxOjA4BgNVBAMMMVNTTC5jb20gQ2xpZW50IENlcnRpZmljYXRlIEludGVybWVkaWF0ZSBDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"60c1324f1b4e8c85bb78e12327e3d72df8cb78ba2d2069292ebb40949c16575c","size":2454,"filename":"YeeUjd94ScdJ8i2-hpJwlv6sWAHbchQGz-Tc2OPHYTY=.pem","location":"security-state-staging/intermediates/65637eab-d23b-44cc-b000-271ee3dc8738.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YeeUjd94ScdJ8i2+hpJwlv6sWAHbchQGz+Tc2OPHYTY=","crlite_enrolle
d":true,"id":"09522f6d-b510-4a0e-aaf4-f4b95ad1504e","last_modified":1577473769122},{"schema":1576536065510,"derHash":"CCBMUq3aqXpv3vcC9s60uU5Xj4/BwwHJ1RNqs4HPp9k=","subject":"CN=QuoVadis Issuing CA G5,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpcyBJc3N1aW5nIENBIEc1","whitelist":false,"attachment":{"hash":"66f3123973d39ccbf60d892e9ebde107446c11a5c53f318327323821448c1e41","size":2381,"filename":"3Fz_Px_gHN6RuC6dUox8MHiOEiVu0gRwp1hvGNsgDYo=.pem","location":"security-state-staging/intermediates/92f45ca6-dd81-4ea8-8d09-b4f49e9bf983.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3Fz/Px/gHN6RuC6dUox8MHiOEiVu0gRwp1hvGNsgDYo=","crlite_enrolled":false,"id":"7bc692ae-1a69-4513-ab7b-11be9685c440","last_modified":1576536534255},{"schema":1576536064064,"derHash":"6nb58huSvtaYEIVm9fCSEbIExQNcnQGUM8Y1jfoKc8o=","subject":"CN=TI Trust Technologies DV CA,O=TI Trust Technologies S.R.L.,L=Pomezia,ST=Roma,C=IT","subjectDN"
:"MHsxCzAJBgNVBAYTAklUMQ0wCwYDVQQIEwRSb21hMRAwDgYDVQQHEwdQb21lemlhMSUwIwYDVQQKExxUSSBUcnVzdCBUZWNobm9sb2dpZXMgUy5SLkwuMSQwIgYDVQQDExtUSSBUcnVzdCBUZWNobm9sb2dpZXMgRFYgQ0E=","whitelist":false,"attachment":{"hash":"c00194c16ee92968419bef2890e0a9f99c7ba4d5e671c1c2d6d8aa388428c9ea","size":2150,"filename":"_TQ1SdM_c-9Y7ggqiTm5AZCppmeqhMts_1_7qE6c-xM=.pem","location":"security-state-staging/intermediates/1b2efaae-5ec5-45f0-ad37-15376c4ec56f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/TQ1SdM/c+9Y7ggqiTm5AZCppmeqhMts/1/7qE6c+xM=","crlite_enrolled":false,"id":"25f9b537-5a44-42db-a613-3918314a6ff8","last_modified":1576536534251},{"schema":1576536062656,"derHash":"5hpIwzz5SqdiSmFEFhoHWmll5qTrTNEcXvvRx5eGLXU=","subject":"SERIALNUMBER=202016,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDE2","whitelist":false,"attachment":{"hash":"e8
dbb214f2c572f1efa48045b1982c3ecc9acc6245e47f1ef69beb6bbf4d7d20","size":2333,"filename":"nLR5xUKq0rdJtnZz181UU9uGySiik-vmQRP8KKXXm5Q=.pem","location":"security-state-staging/intermediates/d54f9898-1680-47bd-a9d3-899013d3bed5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nLR5xUKq0rdJtnZz181UU9uGySiik+vmQRP8KKXXm5Q=","crlite_enrolled":false,"id":"5e859662-94cb-44d3-8c1d-78e7e9ec6098","last_modified":1576536534247},{"schema":1576536061124,"derHash":"XtlQFWaEpjtyY4OpkIcZ2TFjuZhMPIYpIh8GE7ZRgUA=","subject":"CN=SECOM Passport for Web EV 2.0 CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MF8xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSkwJwYDVQQDEyBTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIEVWIDIuMCBDQQ==","whitelist":false,"attachment":{"hash":"dcd65eecda4a3dced1e4e4ad24854f9c5c361683698a129262cffcca2c3f7911","size":1626,"filename":"Wa2FjlVfGKwvkiH0LYWh-y-ihHlaTmVQ-gqZEsR3RwY=.pem","location":"security-state-staging/intermediates/de596f76-eb11-48b1-81fc-9fbb8
28ef964.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wa2FjlVfGKwvkiH0LYWh+y+ihHlaTmVQ+gqZEsR3RwY=","crlite_enrolled":true,"id":"a7834442-473f-4afa-8837-5fcba0ed97c0","last_modified":1576536534244},{"schema":1576536058303,"derHash":"DxVUwv1ZGwJWpgjhwTaoN+em4EFWHuCKkRsq/c08bBs=","subject":"CN=GlobalSign Root E46,O=GlobalSign nv-sa,C=BE","subjectDN":"MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQDExNHbG9iYWxTaWduIFJvb3QgRTQ2","whitelist":false,"attachment":{"hash":"619239fa36d141159ca184a5846f04250cf658d2d441555c880bc314397cd6f9","size":1089,"filename":"4EoCLOMvTM8sf2BGKHuCijKpCfXnUUR_g_0scfb9gXM=.pem","location":"security-state-staging/intermediates/053b9ee7-c4d5-4804-9f95-f705688c379e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4EoCLOMvTM8sf2BGKHuCijKpCfXnUUR/g/0scfb9gXM=","crlite_enrolled":false,"id":"08445463-0e37-4bbe-a1ed-f079c2145e45","last_modified":1576536534240},{"schema":1576536056853,"derHash":"sKbvA1DnxMYFa+6nr50thgue0QITe5cp08Iy
FtGVVGo=","subject":"CN=Advanced Class 3 e-Szigno CA 2009,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGFMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xKjAoBgNVBAMMIUFkdmFuY2VkIENsYXNzIDMgZS1Temlnbm8gQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odQ==","whitelist":false,"attachment":{"hash":"0ed62164b86f37c69eb2018a4a79db046f2eae11bfb1c748569dff5da6e94178","size":1768,"filename":"VGt-HUDy6qey1Up5ZYyfXaLC_1Yy9l4AvJsHFIQXC5g=.pem","location":"security-state-staging/intermediates/912a52c5-97ea-4353-806f-dbf6b9c95e81.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VGt+HUDy6qey1Up5ZYyfXaLC/1Yy9l4AvJsHFIQXC5g=","crlite_enrolled":true,"id":"1d065829-106f-4cf5-a7ce-33874e651514","last_modified":1576536534237},{"schema":1576536055441,"derHash":"ZlZv7dYNs64QkQ8qiXB89RWQkgM6cadc2GhR1zWRlBE=","subject":"CN=AffirmTrust Premium Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=AffirmTrust,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzEUMBIGA1
UECgwLQWZmaXJtVHJ1c3QxLTArBgNVBAsMJGh0dHA6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291cmNlczEzMDEGA1UEAwwqQWZmaXJtVHJ1c3QgUHJlbWl1bSBFeHRlbmRlZCBWYWxpZGF0aW9uIENB","whitelist":false,"attachment":{"hash":"07e66a596ddcbc285e7ce2b1bcf7871dd6efe67086212e3bc3b716b226897194","size":2259,"filename":"3gMCuDMv_P0gIb194xpHJCsdZogzAhE3N6usv_7BXhk=.pem","location":"security-state-staging/intermediates/df155982-cf71-469c-b7b6-f9ec964f04d5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3gMCuDMv/P0gIb194xpHJCsdZogzAhE3N6usv/7BXhk=","crlite_enrolled":false,"id":"3b6cb9bb-6102-43a3-a5ec-c29bd087081d","last_modified":1576536534233},{"schema":1576536054026,"derHash":"uJslas18i/xcE2qFcFdTUCGenVWHmoWn7AzAwSg8JKM=","subject":"CN=GeoTrust Primary Transition Root,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGsxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSkwJwYDVQQDEyBHZW9UcnVzdCBQcmltYXJ5IFRyYW5zaXRpb24gUm9vdA==","whitelist":false,"attachment":{"hash":
"3b63926b8672802e6e86e795d069d9b8ebe0d873eda192eea364acc603da92ea","size":1321,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/fb461011-416d-431a-adcc-978da8bb647a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"6867e533-7324-4367-bc4f-614a4d65ee7e","last_modified":1576536534229},{"schema":1576536051207,"derHash":"vq9G0P9iZF9WvhGDDd78ZjN5YZ8zfoVxNJHIOuF5SB0=","subject":"CN=DigiCert High Assurance Code Signing CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMjAwBgNVBAMTKURpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIENvZGUgU2lnbmluZyBDQS0x","whitelist":false,"attachment":{"hash":"bcc6fa461c63e72b5b0bdc1f0528fcda516e2b2b7713c3adfd2e23e60cd2e4d3","size":2398,"filename":"Ri51OBAOoLg9jnSXfa68LI5ByJkcEGrPLItVgWCXEi0=.pem","location":"security-state-staging/inter
mediates/c6968810-a29a-4b33-a240-69b369665d59.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ri51OBAOoLg9jnSXfa68LI5ByJkcEGrPLItVgWCXEi0=","crlite_enrolled":false,"id":"a6c9e2a8-cd22-4f84-9e9f-9966c2232b36","last_modified":1576536534222},{"schema":1576536052576,"derHash":"c2CeaO6qi1KAjLUD+46mTt04kj2pxVrniAUatBbddZ4=","subject":"CN=Cybertrust Japan SureMail CA G4,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MFwxCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEoMCYGA1UEAxMfQ3liZXJ0cnVzdCBKYXBhbiBTdXJlTWFpbCBDQSBHNA==","whitelist":false,"attachment":{"hash":"c3fcdbacd6b54d25047ea8d3094785afc7d48a4287b00a64a28107c78a9b5252","size":1768,"filename":"M4LPRPbTPA3AGjc9JdVUp9Em24oAD5Kjau8R089zAB8=.pem","location":"security-state-staging/intermediates/c7a96d3d-04d0-42dd-865d-c5f45b51f284.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M4LPRPbTPA3AGjc9JdVUp9Em24oAD5Kjau8R089zAB8=","crlite_enrolled":false,"id":"6f4c9ab7-9848-46a5-9f9a-5edda5ee1d2f","last_m
odified":1576536534218},{"schema":1576536049752,"derHash":"22y7hzO+tJOvOccCqd0GdDFOLtMmDNUlCkkUgHV9jqI=","subject":"CN=EC-Ciutadania,OU=Serveis P\u00fablics de Certificaci\u00f3,O=CONSORCI ADMINISTRACIO OBERTA DE CATALUNYA,C=ES","subjectDN":"MIGGMQswCQYDVQQGEwJFUzEzMDEGA1UECgwqQ09OU09SQ0kgQURNSU5JU1RSQUNJTyBPQkVSVEEgREUgQ0FUQUxVTllBMSowKAYDVQQLDCFTZXJ2ZWlzIFDDumJsaWNzIGRlIENlcnRpZmljYWNpw7MxFjAUBgNVBAMMDUVDLUNpdXRhZGFuaWE=","whitelist":false,"attachment":{"hash":"5c694da195ee633dd4f5eacef34a18111f5e53e6c9465f5b1f0838a7d708db50","size":2097,"filename":"N2E0VULCCzFKdEp8VKghUqKDvpzc2iM_BQAAwtDlBw0=.pem","location":"security-state-staging/intermediates/9b12aa4e-23ee-4d0a-a54c-66e324175fe8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N2E0VULCCzFKdEp8VKghUqKDvpzc2iM/BQAAwtDlBw0=","crlite_enrolled":false,"id":"0da25c82-2a82-44ca-9a30-70c090781a84","last_modified":1576536534211},{"schema":1576536046907,"derHash":"wtT9+72C9KHNrEcT46sJmVYJGNehcN3gP33b+aKI3Nw=","subject":"CN=SafeToO
pen EV TLS ICA RSA R1,O=SafeToOpen Ltd,C=NZ","subjectDN":"ME0xCzAJBgNVBAYTAk5aMRcwFQYDVQQKDA5TYWZlVG9PcGVuIEx0ZDElMCMGA1UEAwwcU2FmZVRvT3BlbiBFViBUTFMgSUNBIFJTQSBSMQ==","whitelist":false,"attachment":{"hash":"d8dd280ca81928ac5d9f88d5ea7cd0bff13b2f2e60bb565232b7e0ab19fcc49e","size":2438,"filename":"wceoTySaLCXY7FAABlMa1eB4Fc2Vodc8zSQij-gt6Ko=.pem","location":"security-state-staging/intermediates/120899dd-21f2-4b40-a059-69ed9a6e0b01.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wceoTySaLCXY7FAABlMa1eB4Fc2Vodc8zSQij+gt6Ko=","crlite_enrolled":false,"id":"18d7553d-a362-4364-81b1-d16f12ae4797","last_modified":1576536534207},{"schema":1576536044022,"derHash":"AL/lF32kDgQFBqBEF/tLgGSBa12HWFKgf8OjZwAJEIA=","subject":"CN=CSS Public Issuing CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Common Securitization Solutions LLC,C=US","subjectDN":"MIGcMQswCQYDVQQGEwJVUzEsMCoGA1UEChMjQ29tbW9uIFNlY3VyaXRpemF0aW9uIFNvbHV0aW9ucyBMTEMxPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYX
Rmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEeMBwGA1UEAxMVQ1NTIFB1YmxpYyBJc3N1aW5nIENB","whitelist":false,"attachment":{"hash":"9625d57fc7f6a49deb14728feb83cf7edb83bdf782a5b10e9f2bb3725331b3d9","size":2077,"filename":"rzb3PNwXMW__yJquQWI_mhropzVU1Kcapgx84gb4XHg=.pem","location":"security-state-staging/intermediates/2687e0e3-608a-4004-887b-71f74dececfe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rzb3PNwXMW//yJquQWI/mhropzVU1Kcapgx84gb4XHg=","crlite_enrolled":false,"id":"727cccf2-d7e7-4e9c-9ffa-5778d62af14c","last_modified":1576536534204},{"schema":1576536036442,"derHash":"YPU+YDsO+nHGzDS26HwRRfcNyULIn3F2PZD+GOesWJ4=","subject":"CN=IBM Certification Authority G4,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=International Business Machines Corporation,C=US","subjectDN":"MIGtMQswCQYDVQQGEwJVUzE0MDIGA1UEChMrSW50ZXJuYXRpb25hbCBCdXNpbmVzcyBNYWNoaW5lcyBDb3Jwb3JhdGlvbjE/MD0GA1UECxM2Q2xhc3MgMiBEaWdpQ2VydCBQS0kgUGxhdGZvcm0gSW5kaXZpZHVhbCBTdWJzY3JpYmVyIENBMScwJQYDVQQDEx5JQ
k0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgRzQ=","whitelist":false,"attachment":{"hash":"cfa1d134c87a2adf5d7fd6db4082a050b8ab05ed5a65606f7cb38a7e5dc61951","size":2097,"filename":"9CRueC2hB1f0IGH9tycGhgC7JiLlOmttZCFXZKjuVns=.pem","location":"security-state-staging/intermediates/d4118315-6f84-47da-b5e6-39d23274046f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9CRueC2hB1f0IGH9tycGhgC7JiLlOmttZCFXZKjuVns=","crlite_enrolled":false,"id":"c7140ad4-c587-413b-a16d-54eb6735efca","last_modified":1576536534182},{"schema":1576536034560,"derHash":"KHMACROLTh1tM0qPKAWmCqO+mWnVc7uy8FFjErt/NU4=","subject":"CN=OneSignSSL RSA DV Secure Server CA,O=One Sign Pte. Ltd.,L=Singapore,ST=Singapore,C=SG","subjectDN":"MH8xCzAJBgNVBAYTAlNHMRIwEAYDVQQIEwlTaW5nYXBvcmUxEjAQBgNVBAcTCVNpbmdhcG9yZTEbMBkGA1UEChMST25lIFNpZ24gUHRlLiBMdGQuMSswKQYDVQQDEyJPbmVTaWduU1NMIFJTQSBEViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"4fb6ba778562a884883cc8f1c7ddf3cc76924b6c481f1238cd9d0d09eef988cd","size":2154,"f
ilename":"9IAV2sm8fSQPPgrFDnJNElfd6K4uJrxTx15o5jJy9nA=.pem","location":"security-state-staging/intermediates/fd1c6268-0059-46b1-8058-e8765d252ba4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9IAV2sm8fSQPPgrFDnJNElfd6K4uJrxTx15o5jJy9nA=","crlite_enrolled":false,"id":"ec48a0f4-07fe-4af5-898f-dd29d59f3ea3","last_modified":1576536534175},{"schema":1576536031495,"derHash":"29+pGsxNuK2D/MeXjjXWL24y5VEIJzyOyZjjEzWA1mQ=","subject":"CN=TrustAsia OV TLS Pro CA G2,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFkxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSMwIQYDVQQDExpUcnVzdEFzaWEgT1YgVExTIFBybyBDQSBHMg==","whitelist":false,"attachment":{"hash":"62f07941ab31ac93b3aa011cf5c969d6144dfa3248c15cf83974bbad7d102dde","size":1821,"filename":"cJhQtqu9DZRLxNRS1bDaM1E3d1GuJZmxfwKcfb-Gx3Y=.pem","location":"security-state-staging/intermediates/01439ed9-c5df-42a3-bd51-09e6f0ab3467.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cJhQtqu9DZRLxNRS1bDaM1E3d1Gu
JZmxfwKcfb+Gx3Y=","crlite_enrolled":true,"id":"2d04d337-69e3-44ad-9e68-0cfd2a4a4153","last_modified":1576536534164},{"schema":1576536028565,"derHash":"5StEzR5qmtoKBAnRzF1zpvQXYD1w5vXcVIOritrvPKQ=","subject":"CN=DigiCert Transition RSA Root,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IFRyYW5zaXRpb24gUlNBIFJvb3Q=","whitelist":false,"attachment":{"hash":"914596db391a90381989f75de44986a84111af1a86a6b47fea188272724fb77b","size":1305,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/476a40fc-77d9-4bbd-9c7f-f592807899f2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"8a0d3f97-d849-409d-bcd3-af5446738f74","last_modified":1576536534153},{"schema":1576536022550,"derHash":"UoauHFWKgVN82YcPdJ2W76vC0ro5PfgY3+lep85kUKc=","subject":"CN
=HydrantID Client ICA G2,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMTAwLgYDVQQKDCdIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxIDAeBgNVBAMMF0h5ZHJhbnRJRCBDbGllbnQgSUNBIEcy","whitelist":false,"attachment":{"hash":"cb3984f4a713da4d2127e347745132b9485b6c954cea045b71d0577d7480d89d","size":2430,"filename":"8wG5JEK-6eyiSKMnSyu9H-Pc0UuAPV0a_kfNCqvHesw=.pem","location":"security-state-staging/intermediates/5f5ebd57-b000-419a-8646-fb81335b2cf0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8wG5JEK+6eyiSKMnSyu9H+Pc0UuAPV0a/kfNCqvHesw=","crlite_enrolled":false,"id":"c8d9b464-441d-4479-8062-9d2b30308c14","last_modified":1576536534149},{"schema":1576536018232,"derHash":"3BmD8UsAlvsSptgrSCJzDSOHecoFQ8Q8AV8kkklWTU0=","subject":"CN=IHI-EC International Corporation,O=IHI E&C International Corporation,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMSowKAYDVQQKDCFJSEkgRSZDIEludGVybmF0aW9uYWwgQ29ycG9yYXRpb24xKTAnBgNVBAMTIElISS1FQyBJbnRlcm5hdGlvbmFsIENvcnB
vcmF0aW9u","whitelist":false,"attachment":{"hash":"e8e00a93568f3fa2e62aeb3a661d6a923d701ea84d6424fd27b3b4118ffb4c5d","size":2016,"filename":"1o2j5nZgvI5dVwmpYiHsdVUKWwz3kjk9zbDYvdSrsJo=.pem","location":"security-state-staging/intermediates/b7c27d63-0da5-4f18-bcef-f5ee1e72c875.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1o2j5nZgvI5dVwmpYiHsdVUKWwz3kjk9zbDYvdSrsJo=","crlite_enrolled":false,"id":"d9ce419c-1a2f-4273-8a12-4fc0839054f2","last_modified":1576536534137},{"schema":1576536016807,"derHash":"hV3KaPgZTW1byUpRzzZM3P/IOCWhItimLkehGEhNN0s=","subject":"CN=ITSO Ltd RSA DV,O=ITSO LTD,L=Milton Keynes,ST=Buckinghamshire,C=GB","subjectDN":"MGwxCzAJBgNVBAYTAkdCMRgwFgYDVQQIEw9CdWNraW5naGFtc2hpcmUxFjAUBgNVBAcTDU1pbHRvbiBLZXluZXMxETAPBgNVBAoTCElUU08gTFREMRgwFgYDVQQDEw9JVFNPIEx0ZCBSU0EgRFY=","whitelist":false,"attachment":{"hash":"f7f8ae5a4d6c669308077f3d66de5bced3fc6ce838c89515e89a27eb62208b17","size":2129,"filename":"hoWbyI9IWnkDxapxLWOIsrvM58HKk5XQdT0Wk5A2ovs=.pem","location":"s
ecurity-state-staging/intermediates/8855bb62-810b-4e29-aa2c-072a825e881a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hoWbyI9IWnkDxapxLWOIsrvM58HKk5XQdT0Wk5A2ovs=","crlite_enrolled":false,"id":"7e6c7559-1afe-4e48-aa16-564c45d842e6","last_modified":1576536534134},{"schema":1576536014868,"derHash":"hDeCMDBAv7M1dnZuFwBpbeD8FIh74pPXJl61ns5O2cw=","subject":"CN=BT Class 2 DigiCert PKI Platform CA,O=British Telecommunications plc,C=GB","subjectDN":"MGQxLDAqBgNVBAMMI0JUIENsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIENBMScwJQYDVQQKDB5Ccml0aXNoIFRlbGVjb21tdW5pY2F0aW9ucyBwbGMxCzAJBgNVBAYTAkdC","whitelist":false,"attachment":{"hash":"62ef2e16ec258184426b6b7eb77c56afc020739891f177c120b217fd8bfba3a2","size":2414,"filename":"oFI13M2pDTmr88JyQ06EE_PwqDFGIYNwj2EVxXS2dII=.pem","location":"security-state-staging/intermediates/d83477f2-d610-4eb1-8c9b-818352128513.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oFI13M2pDTmr88JyQ06EE/PwqDFGIYNwj2EVxXS2dII=","crlite_enrolled":false,"id":"9b9d
198c-a69d-446c-b648-eda5de768f4b","last_modified":1576536534130},{"schema":1576536011965,"derHash":"X6SbNsctA+QtqkMCUA1kbJSMh6w27TDMPb3bviTGRjM=","subject":"CN=WebNIC ECC Extended Validation Secure Site CA,OU=Controlled by Sectigo exclusively for WebNIC,O=WebNIC (Web Commerce Communications (Singapore) Pte. Ltd.),L=Singapore,C=SG","subjectDN":"MIHVMQswCQYDVQQGEwJTRzESMBAGA1UEBxMJU2luZ2Fwb3JlMUMwQQYDVQQKEzpXZWJOSUMgKFdlYiBDb21tZXJjZSBDb21tdW5pY2F0aW9ucyAoU2luZ2Fwb3JlKSBQdGUuIEx0ZC4pMTUwMwYDVQQLEyxDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIFdlYk5JQzE2MDQGA1UEAxMtV2ViTklDIEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTaXRlIENB","whitelist":false,"attachment":{"hash":"a2a7f841b5ca8fd57463ff8f1b27e4d11398c8605a0f4139ea461bd98ecdca69","size":1443,"filename":"wJUIwtfbQyb8AQ8i7WNkx5y7MTHHrQ3ILlCihfqdp-I=.pem","location":"security-state-staging/intermediates/6b627396-e558-45f3-9641-d84574e674e0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wJUIwtfbQyb8AQ8i7WNkx5y7MTHHrQ3ILlCihfq
dp+I=","crlite_enrolled":false,"id":"079aab15-46c4-4056-bf61-918aa3d1c397","last_modified":1576536534122},{"schema":1576536019673,"derHash":"wuQjbbG3V7Ubd5ITiO+oI+amAP1L2jC2Ord4hvJWGLc=","subject":"CN=GlobalSign CloudSSL CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIENsb3VkU1NMIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"80e5a75a2133c51ce0a9e5cb79192a969122aa9d0010027ed0919b87dfdf6905","size":1638,"filename":"-VZJxHgrOOiVyUxgMRbfoo-GIWrMKd4aellBBHtBcKg=.pem","location":"security-state-staging/intermediates/171b6f60-be37-44ac-913e-06a4514e36a2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+VZJxHgrOOiVyUxgMRbfoo+GIWrMKd4aellBBHtBcKg=","crlite_enrolled":true,"id":"f66e7da9-1a66-4dc3-b793-faca5bf40093","last_modified":1576536534119},{"schema":1576536010525,"derHash":"Z8RtwXdiZnhE8VlgiTdf9F4FwrMWyJSZ9uf6t4yPA3k=","subject":"CN=GlobalSign Issuing CA for AATL Partner
s 2019,O=GlobalSign nv-sa,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTUwMwYDVQQDEyxHbG9iYWxTaWduIElzc3VpbmcgQ0EgZm9yIEFBVEwgUGFydG5lcnMgMjAxOQ==","whitelist":false,"attachment":{"hash":"8b06c8725c287688440cf9bd1330f4a6e7a1522a3af5778fa2d6840dc296bc16","size":2142,"filename":"Gsj1AO3cbWx61NJW93Qr6MNrKZrsf6R-7BgXSXF_iZE=.pem","location":"security-state-staging/intermediates/1e204c9a-f0e4-41c8-af6b-5e43de9851ee.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Gsj1AO3cbWx61NJW93Qr6MNrKZrsf6R+7BgXSXF/iZE=","crlite_enrolled":false,"id":"00c11545-654a-4793-a31c-32844bb8119e","last_modified":1576536534115},{"schema":1576536009127,"derHash":"2FU6KIDpa3qkx0E92QOv09WAUEaV3SahaP1IzOexR0o=","subject":"CN=UZI-register Medewerker op naam CA G3,O=CIBG,C=NL","subjectDN":"MGUxCzAJBgNVBAYTAk5MMQ0wCwYDVQQKDARDSUJHMRcwFQYDVQRhDA5OVFJOTC01MDAwMDUzNTEuMCwGA1UEAwwlVVpJLXJlZ2lzdGVyIE1lZGV3ZXJrZXIgb3AgbmFhbSBDQSBHMw==","whitelist":false,"attachment":{"hash":"0cb57be73b
d621623092fefcb68872855290eb020523b0a53e53afd972a316e3","size":2544,"filename":"dCyrxAKUK8j5RoQJISk_QPQ9eWh1wvDZFjkJxvysY1M=.pem","location":"security-state-staging/intermediates/3be928bc-8d4b-4aa9-8cf4-f65d61cb6c76.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dCyrxAKUK8j5RoQJISk/QPQ9eWh1wvDZFjkJxvysY1M=","crlite_enrolled":false,"id":"0903bf91-4b0c-4d03-945c-ee38128bff24","last_modified":1576536534111},{"schema":1576536006146,"derHash":"al9MFnjKZeWfBg1Xzf9mUGUxSGHVOo59FFDKktlsoQI=","subject":"CN=CRB Group SMIME CA 2019,O=CRB Group\\, Inc.,C=US","subjectDN":"MEkxCzAJBgNVBAYTAlVTMRgwFgYDVQQKEw9DUkIgR3JvdXAsIEluYy4xIDAeBgNVBAMTF0NSQiBHcm91cCBTTUlNRSBDQSAyMDE5","whitelist":false,"attachment":{"hash":"46bf4a65e1a1d6041a7fd486d3b111820fb297aa92a6aa5e32412d73b2175762","size":1849,"filename":"5uacCErrU9OKxrpS_6aTZMtadjLWMJFTodYoyJ4SiAY=.pem","location":"security-state-staging/intermediates/3379f57c-e87e-469a-ba90-3b4ebbe6718d.pem","mimetype":"application/x-pem-file"},"pubKeyHash"
:"5uacCErrU9OKxrpS/6aTZMtadjLWMJFTodYoyJ4SiAY=","crlite_enrolled":false,"id":"83317d20-9d0d-4313-8faf-840701aeed1f","last_modified":1576536534103},{"schema":1576536001652,"derHash":"CUBFHf7LZ1tSBMiuBxidTk6QlXz9K6/c/zbbIMJ56Ro=","subject":"CN=SECOM Passport for Member PUB CA4,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTQ=","whitelist":false,"attachment":{"hash":"67bd2661144de940ff04d2ed4a8a7c1ef3c2122d9e3a8cd9a484dcb81a67f399","size":1601,"filename":"e0UlwaDksSng0NsuhQLDMdL3HdRLRk89Csk7QJK7Xm4=.pem","location":"security-state-staging/intermediates/974ee8b6-e05b-45c0-b50d-b37049e98644.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e0UlwaDksSng0NsuhQLDMdL3HdRLRk89Csk7QJK7Xm4=","crlite_enrolled":true,"id":"545f4ef1-6eac-4f67-adf9-fc62354d1a33","la
st_modified":1576536534099},{"schema":1576536003209,"derHash":"+AhlYjZyW1ZvByHFGBWKZ1bJaQPLcetI3dqO3f6g8mw=","subject":"CN=GRNET Client RSA SubCA R3,O=National Infrastructures for Research and Technology,L=Athens,C=GR","subjectDN":"MIGBMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMT0wOwYDVQQKDDROYXRpb25hbCBJbmZyYXN0cnVjdHVyZXMgZm9yIFJlc2VhcmNoIGFuZCBUZWNobm9sb2d5MSIwIAYDVQQDDBlHUk5FVCBDbGllbnQgUlNBIFN1YkNBIFIz","whitelist":false,"attachment":{"hash":"9ce8e8721d5cca69e41940aaa10d38fe6b27f089228093b65e92232a18aa10eb","size":2913,"filename":"wnEjGCVxs6O7Ii9LxKLgiSA52mkxeYBv8ou6SCPwpvg=.pem","location":"security-state-staging/intermediates/b592e2e9-8c51-4362-9fd6-a000990cddc1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wnEjGCVxs6O7Ii9LxKLgiSA52mkxeYBv8ou6SCPwpvg=","crlite_enrolled":false,"id":"76f424b7-5f52-4859-a914-ec79d2d35576","last_modified":1576536534096},{"schema":1576536004669,"derHash":"aSSk3YKUjaU/b7kz6JWg9lgcjb3rq7NvwRysJenAM1o=","subject":"CN=Telia Document Signing CA
v3,O=Telia Finland Oyj,C=FI","subjectDN":"MFAxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajElMCMGA1UEAwwcVGVsaWEgRG9jdW1lbnQgU2lnbmluZyBDQSB2Mw==","whitelist":false,"attachment":{"hash":"173b45b95c7e25dee728aa0b7e79bfa2b9b4a023c89e1f7f3b67e0b5f9426723","size":2365,"filename":"-YHiKkNgq-wtY5uDU57xDrTPWbMr0zXao2o9yt7I3XU=.pem","location":"security-state-staging/intermediates/7dba7569-1903-4086-beb4-3af36738b147.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+YHiKkNgq+wtY5uDU57xDrTPWbMr0zXao2o9yt7I3XU=","crlite_enrolled":false,"id":"d947c391-8bce-4ff2-b4a1-7a3ab55ca8f5","last_modified":1576536534092},{"schema":1576536000239,"derHash":"GY4zLxD6D1ivCDrpZLxkQfBs0PrTGbEjX+PtD3xur5M=","subject":"CN=WebNIC RSA Extended Validation Secure Site CA,OU=Controlled by Sectigo exclusively for WebNIC,O=WebNIC (Web Commerce Communications (Singapore) Pte. Ltd.),L=Singapore,C=SG","subjectDN":"MIHVMQswCQYDVQQGEwJTRzESMBAGA1UEBxMJU2luZ2Fwb3JlMUMwQQYDVQQKEzpXZWJOSUMgKFdlYiBDb21tZXJjZSBD
b21tdW5pY2F0aW9ucyAoU2luZ2Fwb3JlKSBQdGUuIEx0ZC4pMTUwMwYDVQQLEyxDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIFdlYk5JQzE2MDQGA1UEAxMtV2ViTklDIFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTaXRlIENB","whitelist":false,"attachment":{"hash":"d535c3739b449a27a1b6564d8aad501fab7d3100a592e443a8b7bd56a791e24e","size":2284,"filename":"DkUXONpZG5H7NGx6X1k9T9v4PYppUd35pZ3oginTOG0=.pem","location":"security-state-staging/intermediates/0f0215fa-7dbe-4e90-84a6-26597491f0ed.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DkUXONpZG5H7NGx6X1k9T9v4PYppUd35pZ3oginTOG0=","crlite_enrolled":false,"id":"03d2a8c2-61ca-4d46-9d5e-f60e5a03eb5a","last_modified":1576536534088},{"schema":1576535998723,"derHash":"j8FGm4AFv+vb9n9RTnlf4fF+ojmippNIV/JCitzm0k8=","subject":"CN=DigiCert High Assurance EV CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKDAmBgNVBAMTH0RpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEVWIENBLTE=","whit
elist":false,"attachment":{"hash":"f6cba1367b384f4518e9f358bd8e3eb845860eaf88cf8a1cc5885c5a8ed426fa","size":2353,"filename":"suo4a3Sz765--hurzLhgwqwpR8K0KVkwTarqwwCDJB4=.pem","location":"security-state-staging/intermediates/71bbf673-0978-4961-8f3b-f4d087f7a2fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"suo4a3Sz765++hurzLhgwqwpR8K0KVkwTarqwwCDJB4=","crlite_enrolled":false,"id":"5e4b37fb-de99-4276-bab2-22314fb5af67","last_modified":1576536534084},{"schema":1576535995805,"derHash":"TCQc/j0/+2DKiNawalUqsc8O99jS4I2hUoK1UZLrvSk=","subject":"CN=Ford Motor Company - Enterprise Issuing CA01,O=Ford Motor Company,L=Dearborn,ST=Michigan,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzEbMBkGA1UEChMSRm9yZCBNb3RvciBDb21wYW55MREwDwYDVQQHEwhEZWFyYm9ybjERMA8GA1UECBMITWljaGlnYW4xNTAzBgNVBAMTLEZvcmQgTW90b3IgQ29tcGFueSAtIEVudGVycHJpc2UgSXNzdWluZyBDQTAx","whitelist":false,"attachment":{"hash":"efb755d084ded13b3ac2b3f55c16b2160cdfaaf2b7cfcaf53d00f4a459b915e1","size":2938,"filename":"CqwsdVHa6T0W9pos
5-f88X2UNjXr4wKHpQ8Muq3ipRA=.pem","location":"security-state-staging/intermediates/7fd0fc7b-3efd-4fcd-ac96-22557e159fe1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CqwsdVHa6T0W9pos5+f88X2UNjXr4wKHpQ8Muq3ipRA=","crlite_enrolled":false,"id":"92464914-70b1-4378-b814-a132ec905cfd","last_modified":1576536534077},{"schema":1576535994452,"derHash":"2HqR2sJtZONllQcRnoCxG+N62oeo1sAeThdduzKxoNM=","subject":"CN=OSRAM Continental Secure Email CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=OSRAM Continental GmbH,C=DE","subjectDN":"MIGbMQswCQYDVQQGEwJERTEfMB0GA1UEChMWT1NSQU0gQ29udGluZW50YWwgR21iSDE/MD0GA1UECxM2Q2xhc3MgMiBEaWdpQ2VydCBQS0kgUGxhdGZvcm0gSW5kaXZpZHVhbCBTdWJzY3JpYmVyIENBMSowKAYDVQQDEyFPU1JBTSBDb250aW5lbnRhbCBTZWN1cmUgRW1haWwgQ0E=","whitelist":false,"attachment":{"hash":"5f68e368fd16e235475da58f55a2204584b88eac641e4ec557936b8042173d83","size":2073,"filename":"7wyniI0KLvACB3qDw45iTsE1UaQBDsAQZqKze49FvxU=.pem","location":"security-state-staging/intermediates/93
f9172f-6795-44d1-96c8-6d2405099fcb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7wyniI0KLvACB3qDw45iTsE1UaQBDsAQZqKze49FvxU=","crlite_enrolled":false,"id":"f0afa748-66b7-486a-8cf4-afd8f25070d0","last_modified":1576536534073},{"schema":1576535993029,"derHash":"HJc36Witnf+NjX/PmWoUS7l4UaGQEaAZDJQ8ro1Dz+A=","subject":"CN=GlobalSign Organization Validation CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzI=","whitelist":false,"attachment":{"hash":"b57a3d5029c97a35bb6880a05ad369fcc13be288c141ba5be144c0ae53d84579","size":1585,"filename":"IQBnNBEiFuhj-8x6X8XLgh01V9Ic5_V3IRQLNFFc7v4=.pem","location":"security-state-staging/intermediates/2c443791-49a4-46c3-a27f-7b2599e100bf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IQBnNBEiFuhj+8x6X8XLgh01V9Ic5/V3IRQLNFFc7v4=","crlite_enrolled":true,"id":"75e1b780-8583-4cab-9027-6f97f24c19ab"
,"last_modified":1576536534069},{"schema":1576535991616,"derHash":"NX3sxWIviSOf/RyRwTZqCVG6TbX9OE9RjMSuhdLa46U=","subject":"CN=Entrust Class 1 Client CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAxMCBFbnRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDEgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"d6aa735f6570dd8eab1124e88a5ba575ee35143738f4392b74e86c8480049357","size":1821,"filename":"Uhene3DQaQrqKhOQL-xFNX9JZl3IsIFfWho3SE3EtBQ=.pem","location":"security-state-staging/intermediates/49393096-c9ac-401e-8fbe-4e0947a3b892.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uhene3DQaQrqKhOQL+xFNX9JZl3IsIFfWho3SE3EtBQ=","crlite_enrolled":false,"id":"c9f72111-46bb-4634-a3cb-ee00f147a31e","last_modified":1576536534065},{"schema":1576535990183,"derHash":
"IQxPMHL4/Jg8HzpxDS/a86swTXv2z+X0ttpFf1cTLTE=","subject":"SERIALNUMBER=202014,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDE0","whitelist":false,"attachment":{"hash":"20d695ce508b51f51bda71c5995f9c66d68083544a5344390d4a0f76c15d4521","size":2333,"filename":"U7zoSHg0PLA-Mg7Q6oQ_hupqX2qetdMjZL96ei27DEA=.pem","location":"security-state-staging/intermediates/72b82bcb-aeea-4515-a822-70d25282517a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U7zoSHg0PLA+Mg7Q6oQ/hupqX2qetdMjZL96ei27DEA=","crlite_enrolled":false,"id":"c0375a0f-d96b-4db0-aaad-58593a2c322a","last_modified":1576536534061},{"schema":1576535988714,"derHash":"cNyG+fd1C3Sx3sjNNS7CWDfDbmQPcUjghGTvWQHlpYk=","subject":"CN=Secure Site Pro Extended Validation ECC CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxG
TAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xNjA0BgNVBAMTLVNlY3VyZSBTaXRlIFBybyBFeHRlbmRlZCBWYWxpZGF0aW9uIEVDQyBDQSBHMg==","whitelist":false,"attachment":{"hash":"35bebf4b8ef09fd9c565bc9f3a5ece74886943a8aa8f6a6fd56758beb70fe08c","size":1435,"filename":"XyodbDLzN0yp63I67N9JKajdWDFEOhrdzgg3hIfeExM=.pem","location":"security-state-staging/intermediates/6ae86321-38ae-410a-9975-233f0c20315a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XyodbDLzN0yp63I67N9JKajdWDFEOhrdzgg3hIfeExM=","crlite_enrolled":false,"id":"41c79e82-ac51-4718-90e4-42e605116e4a","last_modified":1576536534057},{"schema":1576535987339,"derHash":"dHz01wwMqeY99r9g7xzOtvlTn6ilNPtp8Fxh3flypBk=","subject":"CN=OneSignSSL ECC OV Secure Server CA,O=One Sign Pte. Ltd.,L=Singapore,ST=Singapore,C=SG","subjectDN":"MH8xCzAJBgNVBAYTAlNHMRIwEAYDVQQIEwlTaW5nYXBvcmUxEjAQBgNVBAcTCVNpbmdhcG9yZTEbMBkGA1UEChMST25lIFNpZ24gUHRlLiBMdGQuMSswKQYDVQQDEyJPbmVTaWduU1NMIEVDQyBPViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"cc9c8378
7b291373dbd2e3f059f539f92b2c5f65b1c6894deeab63306a0b5399","size":1313,"filename":"k5mlhqxcFc-cb0nNpLyym3e1yVLu33JKb1dKa-MuMjg=.pem","location":"security-state-staging/intermediates/64049552-b29b-4299-ac7c-a87b3186a1d6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k5mlhqxcFc+cb0nNpLyym3e1yVLu33JKb1dKa+MuMjg=","crlite_enrolled":false,"id":"bf594d1a-53f1-42fb-9dd0-379365307a1f","last_modified":1576536534054},{"schema":1576535984479,"derHash":"Ptv//DTroC4NupzRGdvPmNdJclc3evi8YhDYgQASCng=","subject":"CN=WebNIC ECC Domain Secure Site CA,O=WebNIC,L=Singapore,C=SG","subjectDN":"MF0xCzAJBgNVBAYTAlNHMRIwEAYDVQQHEwlTaW5nYXBvcmUxDzANBgNVBAoTBldlYk5JQzEpMCcGA1UEAxMgV2ViTklDIEVDQyBEb21haW4gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"dba8424009d862179d68d2288ea0622dd0951d98a15c8c2596e223b755ce68ec","size":1252,"filename":"df4BU-36qEmkjB2K0NlnnriyUqYwdm9JiwyAOrs_dqk=.pem","location":"security-state-staging/intermediates/03cca880-f44b-4cdf-9623-58ce69906e26.pem","mimetype
":"application/x-pem-file"},"pubKeyHash":"df4BU+36qEmkjB2K0NlnnriyUqYwdm9JiwyAOrs/dqk=","crlite_enrolled":false,"id":"9ffe1aa1-fafe-45e2-825b-4897086c8615","last_modified":1576536534045},{"schema":1576535983075,"derHash":"b2stSjCaFWxhl3+8z30qyfWWI//M6sPk7lqDoY2JUnU=","subject":"CN=Symantec Class 3 Organizational CA - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEwMC4GA1UEAxMnU3ltYW50ZWMgQ2xhc3MgMyBPcmdhbml6YXRpb25hbCBDQSAtIEc0","whitelist":false,"attachment":{"hash":"579ba63d8e05c2f3a59978f656050ef48c8e602297091d1ed3a31125febe5170","size":1817,"filename":"uNzZ9PuqZ750aAgYLpKabu6MjXW-QU_Qg4jjBcbvEik=.pem","location":"security-state-staging/intermediates/210a246c-98d2-41d9-a803-f82c201c8678.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uNzZ9PuqZ750aAgYLpKabu6MjXW+QU/Qg4jjBcbvEik=","crlite_enrolled":false,"id":"60144f18-ade4-4eba-8530-c82470db382
f","last_modified":1576536534042},{"schema":1576535981674,"derHash":"/8ONKDRFlPVfG5qRjEVPy47Oxq6ZM/7xo9UJTupAa/g=","subject":"SERIALNUMBER=202004,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDA0","whitelist":false,"attachment":{"hash":"126ef456a5bb89cfb4b28ccb59b42371458419f55f17444201b4a4ed3c51a096","size":2333,"filename":"SkEb8xbUUApSuC0FN2Cl9MIrkLC1W0ZZj0SmAGVRFhs=.pem","location":"security-state-staging/intermediates/77773575-9c9b-48cd-90d6-70d9b80b0e12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SkEb8xbUUApSuC0FN2Cl9MIrkLC1W0ZZj0SmAGVRFhs=","crlite_enrolled":false,"id":"4dffeaa7-6739-4da0-a61e-b415a1c9cdc8","last_modified":1576536534038},{"schema":1576535978841,"derHash":"uilZ+kSOmALIWfkMtdrHOO952/zM1NQHlDZR8LBFahM=","subject":"CN=OneSignSSL ECC EV Secure Server CA,OU=Controlled by Sectigo exclusively for One Sign
Pte. Ltd.,O=One Sign Pte. Ltd.,L=Singapore,ST=Singapore,C=SG","subjectDN":"MIHCMQswCQYDVQQGEwJTRzESMBAGA1UECBMJU2luZ2Fwb3JlMRIwEAYDVQQHEwlTaW5nYXBvcmUxGzAZBgNVBAoTEk9uZSBTaWduIFB0ZS4gTHRkLjFBMD8GA1UECxM4Q29udHJvbGxlZCBieSBTZWN0aWdvIGV4Y2x1c2l2ZWx5IGZvciBPbmUgU2lnbiBQdGUuIEx0ZC4xKzApBgNVBAMTIk9uZVNpZ25TU0wgRUNDIEVWIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"d117e83a464d541b97c043720e671efe1bbb754498b470212e04c2db573a1f09","size":1435,"filename":"zWWzic6NajzDYmdUGim_cTkcA88HtIi7aWRbwgP9kKU=.pem","location":"security-state-staging/intermediates/f6d7179c-d394-48c0-b210-7ecc25444e38.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zWWzic6NajzDYmdUGim/cTkcA88HtIi7aWRbwgP9kKU=","crlite_enrolled":false,"id":"665b92bf-ffa1-450e-9fd8-73b6dfb09f83","last_modified":1576536534035},{"schema":1576535980267,"derHash":"iM5J46T6N+rijo41+P+M91aMqEVjnO87jf305Gk6wUo=","subject":"CN=GRNET TLS RSA SubCA R1,O=National Infrastructures for Research and Technology,L=Athens,C=GR","
subjectDN":"MH4xCzAJBgNVBAYTAkdSMQ8wDQYDVQQHDAZBdGhlbnMxPTA7BgNVBAoMNE5hdGlvbmFsIEluZnJhc3RydWN0dXJlcyBmb3IgUmVzZWFyY2ggYW5kIFRlY2hub2xvZ3kxHzAdBgNVBAMMFkdSTkVUIFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"875cc017e6ef92a89f7ebb1204cd67182ac3e07cb6d69df484965fe258b7686c","size":2930,"filename":"mRBQN6GrKf_OuCxLxwvdLuH0S0HerSNcK0j4LUEd3RM=.pem","location":"security-state-staging/intermediates/e12686fe-e47e-4b1f-82d6-533862fd6ef2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mRBQN6GrKf/OuCxLxwvdLuH0S0HerSNcK0j4LUEd3RM=","crlite_enrolled":false,"id":"a536c660-f8ee-4457-b327-7ca9444b5ea4","last_modified":1576536534027},{"schema":1576535976050,"derHash":"6ucutFS/bDl369KJ6XCy9SgpSRkAk9DSb5jQ8Napzxc=","subject":"CN=Symantec Class 3 Secure Server CA - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEvMC0GA1UEAxMmU3ltYW50ZWMgQ2xhc3MgMy
BTZWN1cmUgU2VydmVyIENBIC0gRzQ=","whitelist":false,"attachment":{"hash":"1f391e0925fd3c36dbc642db948b408638e24e1faec76c62a4c7c36240dbbdcb","size":1869,"filename":"9n0izTnSRF-W4W4JTq51avSXkWhQB8duS2bxVLfzXsY=.pem","location":"security-state-staging/intermediates/a3b1dab1-e810-4738-93a8-0fbb33f8a5d3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9n0izTnSRF+W4W4JTq51avSXkWhQB8duS2bxVLfzXsY=","crlite_enrolled":true,"id":"5eaa4972-8682-4d87-822f-e064c03bd257","last_modified":1576536534023},{"schema":1576535973202,"derHash":"ZokB5XZNfZCZq8ITSFmdn/NrkWyoObNR5odbGLFhML4=","subject":"CN=WebNIC RSA Domain Secure Site CA,O=WebNIC,L=Singapore,C=SG","subjectDN":"MF0xCzAJBgNVBAYTAlNHMRIwEAYDVQQHEwlTaW5nYXBvcmUxDzANBgNVBAoTBldlYk5JQzEpMCcGA1UEAxMgV2ViTklDIFJTQSBEb21haW4gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"16d026d7e222b83b21f30fffd6c86d922e1bc13c0f20bb7a6760efc390c2a1be","size":2093,"filename":"-6H0JyfPfrRNWedIzjtNbJYDUqMxAM9vGdy4yFQ5yFI=.pem","location":"security-
state-staging/intermediates/568e3b62-fb8c-462e-87f0-420b7b3c9dd9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+6H0JyfPfrRNWedIzjtNbJYDUqMxAM9vGdy4yFQ5yFI=","crlite_enrolled":false,"id":"c67fab8d-6da0-439a-8323-77c7d8bf7a59","last_modified":1576536534019},{"schema":1576535971650,"derHash":"la2U6I9bhgTkDl//NrDTS+RsHVugbA5zW3KqOWc1xBU=","subject":"CN=Entrust Class 2 Client CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAxMCBFbnRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDIgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"1d98ed13e49faa1ac91f1c05a20ba514f612b0638b9446469f44c66fc6c8bda6","size":1821,"filename":"JloS0qeSNdA_zDy0D24iKRwsIsmYt-GFR_0g8UIjlUE=.pem","location":"security-state-staging/intermediates/18884e92-e13e-435d-b35a-fbc2c75c3ec8.p
em","mimetype":"application/x-pem-file"},"pubKeyHash":"JloS0qeSNdA/zDy0D24iKRwsIsmYt+GFR/0g8UIjlUE=","crlite_enrolled":true,"id":"a07ca5be-944f-42e0-99d8-923c20190318","last_modified":1576536534005},{"schema":1576535974622,"derHash":"N9CApemlJmY+Vu4g3kvZ95UtrMNBSRQ5CAFnrV3RjKw=","subject":"CN=GlobalSign Domain Validation CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzI=","whitelist":false,"attachment":{"hash":"8084973f28f9bb8da2dddef1086d13c58d35fafd5b6cd1cf19b002ea327410a9","size":1577,"filename":"PL1_TTDEe9Cm2lb2X0tixyQC7zaPREm_V0IHJscTCmw=.pem","location":"security-state-staging/intermediates/cd733eb5-cc1a-4fa5-b47c-ba77042e0a43.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PL1/TTDEe9Cm2lb2X0tixyQC7zaPREm/V0IHJscTCmw=","crlite_enrolled":true,"id":"0d02c2ec-63df-4380-9e5d-1efee98dd704","last_modified":1576536533996},{"schema":157653597
0291,"derHash":"kO5UjrrKyrQCB6YaN4zhhrlNJK58Vb/IMGXqlgcuKzg=","subject":"CN=JPRS Organization Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"367d165dd5eefba12617df9187cb1fb88671b8e377384841173261d966443745","size":1800,"filename":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A-XzOekYtqEbM=.pem","location":"security-state-staging/intermediates/149beeb6-544e-481e-b3be-c402c7431da4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A+XzOekYtqEbM=","crlite_enrolled":true,"id":"c46e9453-6f06-4a8c-9daf-3011076811b1","last_modified":1576536533991},{"schema":1576535967278,"derHash":"k5BxSx2Qn6PXDdx2gbOPB+1OY1bLXHGRXRvc1I/jNfg=","subject":"CN=QuoVadis Swiss Regulated CA G2,O=QuoVadis Trustlink Schweiz AG,C=CH","subjectDN":"MH4xCzAJBgNVBAYTAkNIMSY
wJAYDVQQKDB1RdW9WYWRpcyBUcnVzdGxpbmsgU2Nod2VpeiBBRzEeMBwGA1UEYQwVTlRSQ0gtQ0hFLTExMi4yMTAuMzQ5MScwJQYDVQQDDB5RdW9WYWRpcyBTd2lzcyBSZWd1bGF0ZWQgQ0EgRzI=","whitelist":false,"attachment":{"hash":"cda3d8577bf0baf4725200eafbb5747ad79644550bd7c1c48d40b01fdc7946c9","size":2576,"filename":"040Y3nIF8mSEbEH2aHTk7ZBKjNtqGeuBX2HCAFKIdZk=.pem","location":"security-state-staging/intermediates/5bd77f72-723f-45bf-8207-34eacc0d7e58.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"040Y3nIF8mSEbEH2aHTk7ZBKjNtqGeuBX2HCAFKIdZk=","crlite_enrolled":false,"id":"7d40a737-aaa0-4124-ba0e-ac49991f5cf8","last_modified":1576536533982},{"schema":1576535964386,"derHash":"XCnb6pt8yLAkGPKMHIc2398XBmXQmO9oHZA752mH0kk=","subject":"CN=Apple IST CA 8 - G1,OU=Certification Authority,O=Apple Inc.,C=US","subjectDN":"MGIxHDAaBgNVBAMME0FwcGxlIElTVCBDQSA4IC0gRzExIDAeBgNVBAsMF0NlcnRpZmljYXRpb24gQXV0aG9yaXR5MRMwEQYDVQQKDApBcHBsZSBJbmMuMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"2d9d379dbd5d0002b3c68677e98
b81199b8b1b9abba7cf87839774bbeb1339c0","size":1386,"filename":"4k-OjCGF2i9eiNRXnoF8R79ur7yFBfD5YP1aDfRHOtM=.pem","location":"security-state-staging/intermediates/ce55fa72-c68e-4449-9da1-b8dd4268c16b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4k+OjCGF2i9eiNRXnoF8R79ur7yFBfD5YP1aDfRHOtM=","crlite_enrolled":true,"id":"d5fc3ad9-0ada-4751-b516-44478b4bd331","last_modified":1576536533975},{"schema":1576535962958,"derHash":"x29wmAWYxmqOMn4XtJWiJ2JlxLmjV176HVUFAqgj1ZE=","subject":"CN=Oracle SSL CA,OU=VeriSign Trust Network+OU=Class 3 MPKI Secure Server CA,O=Oracle Corporation,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEbMBkGA1UEChMST3JhY2xlIENvcnBvcmF0aW9uMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMSYwJAYDVQQLEx1DbGFzcyAzIE1QS0kgU2VjdXJlIFNlcnZlciBDQTEWMBQGA1UEAxMNT3JhY2xlIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"e135ce0a3d08137664ff0e33244bb56fb9eb8cb6b54b086d79707974cac32e51","size":2133,"filename":"jAlQJcRUeMgTS65SuJLkC6qE2B093mGImtHccMYGG44=.pem","location":"secu
rity-state-staging/intermediates/da453cab-a5b5-4f7e-86ec-fba0675fba01.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jAlQJcRUeMgTS65SuJLkC6qE2B093mGImtHccMYGG44=","crlite_enrolled":false,"id":"42ab6ded-b971-46f3-bdec-f470ccf5261a","last_modified":1576536533969},{"schema":1576535960132,"derHash":"9HHFZ8FAz4vNwKp2lSEyhx3QwH2qEeCYJDWnceMF7eU=","subject":"CN=OneSignSSL RSA OV Secure Server CA,O=One Sign Pte. Ltd.,L=Singapore,ST=Singapore,C=SG","subjectDN":"MH8xCzAJBgNVBAYTAlNHMRIwEAYDVQQIEwlTaW5nYXBvcmUxEjAQBgNVBAcTCVNpbmdhcG9yZTEbMBkGA1UEChMST25lIFNpZ24gUHRlLiBMdGQuMSswKQYDVQQDEyJPbmVTaWduU1NMIFJTQSBPViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"6298cec88d94935e3b0f9c901e0273e3a8557c8f1311f9a010fd4932282f0ce1","size":2154,"filename":"GcCWGhSfB0XZcAsL42Mnp5VnYlDpXAIzW27AN4z6kJs=.pem","location":"security-state-staging/intermediates/5f3b260b-467e-4ea2-b6d4-faf33390a8e0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GcCWGhSfB0XZcAsL42Mnp5VnYlDpXAIzW27
AN4z6kJs=","crlite_enrolled":false,"id":"c5ab89f8-5496-43d8-b443-cb7b14df0f97","last_modified":1576536533966},{"schema":1576535961539,"derHash":"CFoHFFJN966ZGab1l4hEOeEqUz5hVS0p1qGMNQlvxUg=","subject":"CN=DigiCert SHA2 Extended Validation Server CA-3,OU=www.digicert.com,O=DigiCert\\, Inc.,C=US","subjectDN":"MHkxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTE2MDQGA1UEAxMtRGlnaUNlcnQgU0hBMiBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQS0z","whitelist":false,"attachment":{"hash":"15b5964a25d36b4473500f8cf513384d9fa90b6caa77e7007c1d32de791ca6ca","size":1719,"filename":"lwTPN61Qg5-1qAU-Mik9sFaDX5hLo2AHP80YR-IgN6M=.pem","location":"security-state-staging/intermediates/c25c1336-89eb-46c5-9de3-c6b8546dd191.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lwTPN61Qg5+1qAU+Mik9sFaDX5hLo2AHP80YR+IgN6M=","crlite_enrolled":true,"id":"b1c9f693-7c29-4bbf-bf61-d0546487685b","last_modified":1576536533940},{"schema":1576535954460,"derHash":"BBFKVCPaXKegx4rci2PYi
T4zQwhOEzZ8GvgyRybs+nM=","subject":"CN=WebNIC ECC Business Secure Site CA,O=WebNIC,L=Singapore,C=SG","subjectDN":"MF8xCzAJBgNVBAYTAlNHMRIwEAYDVQQHEwlTaW5nYXBvcmUxDzANBgNVBAoTBldlYk5JQzErMCkGA1UEAxMiV2ViTklDIEVDQyBCdXNpbmVzcyBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"e3d85d4c5c0dece7c9b8791d2072ed443a160dccd558b3d399b08355f2948117","size":1256,"filename":"YUjFyuQK3Sa5iGXuitIqguBGtB0x_Lr2rwEwdRQVZWA=.pem","location":"security-state-staging/intermediates/a39bfba1-ad59-4493-95ba-ab7998a76e38.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YUjFyuQK3Sa5iGXuitIqguBGtB0x/Lr2rwEwdRQVZWA=","crlite_enrolled":false,"id":"67bf15e5-26ad-4309-a7e5-22c36b2cb9cf","last_modified":1576536533929},{"schema":1576535951697,"derHash":"X2yqRKRmPEQd2SyLZlX7+Xz24daTTbj1+Nl633Az+qw=","subject":"CN=Ministerie van Defensie PKIoverheid Organisatie Persoon CA - G3,O=Ministerie van Defensie,C=NL","subjectDN":"MIGSMQswCQYDVQQGEwJOTDEgMB4GA1UECgwXTWluaXN0ZXJpZSB2YW4gRGVmZW5zaWUxFzAVBgNVBG
EMDk5UUk5MLTI3MzcwOTg1MUgwRgYDVQQDDD9NaW5pc3RlcmllIHZhbiBEZWZlbnNpZSBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBQZXJzb29uIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"3934a8eae4fa88952cd3ddc4edf5c6254398638e6435b2c68d813a4f5fff7abb","size":2621,"filename":"7KYLzx5QRzu-au_gCwTTZqCh6FsSbJxUNaNe0NxbMUY=.pem","location":"security-state-staging/intermediates/efcc6a95-7e5a-4184-a7e2-2927ba00b55c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7KYLzx5QRzu+au/gCwTTZqCh6FsSbJxUNaNe0NxbMUY=","crlite_enrolled":false,"id":"24681fb4-628a-4460-90b9-0f14ba2293c4","last_modified":1576536533918},{"schema":1576535950273,"derHash":"HoZCeMIIgbZxwMbS4UthFQrR8Tz5LG7BS1UNy8R+FUE=","subject":"CN=GlobalSign Extended Validation CodeSigning CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MG4xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMUQwQgYDVQQDEztHbG9iYWxTaWduIEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZVNpZ25pbmcgQ0EgLSBTSEEyNTYgLSBHMg==","whitelist":false,"attachment":{"hash":"77455cfaed61330456f
faa7da32df0dd4731a0acaf6fe166bcac0b28f0aeb328","size":1674,"filename":"HNr6oOEerHtzaDCmff-4LbZgFDwyRlI4dx4JIztxd3s=.pem","location":"security-state-staging/intermediates/532ffdbf-57f8-42d1-a031-8a8275647a0d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HNr6oOEerHtzaDCmff+4LbZgFDwyRlI4dx4JIztxd3s=","crlite_enrolled":false,"id":"6168888f-6929-4f40-b04f-33d9070bec84","last_modified":1576536533915},{"schema":1576535948851,"derHash":"Ly8AiBdxChCFtOa8XjM1R0RE2YMnLjOZWjMb4aTE/go=","subject":"CN=GDCA TrustAUTH R4 CodeSigning CA,O=GUANG DONG CERTIFICATE AUTHORITY CO.\\,LTD.,C=CN","subjectDN":"MGwxCzAJBgNVBAYTAkNOMTIwMAYDVQQKDClHVUFORyBET05HIENFUlRJRklDQVRFIEFVVEhPUklUWSBDTy4sTFRELjEpMCcGA1UEAwwgR0RDQSBUcnVzdEFVVEggUjQgQ29kZVNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"e49b8906ff1d55085ab7bffeb8787da6f1f9f4546d283158c9622d150967f70e","size":2064,"filename":"5Zt41KtIYUpjoXvNDZtGlrN-S-X9juxZk0kJdwQpIlM=.pem","location":"security-state-staging/intermediates/76698902-bd03-4c1
d-9344-a48278211966.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5Zt41KtIYUpjoXvNDZtGlrN+S+X9juxZk0kJdwQpIlM=","crlite_enrolled":false,"id":"012b0afc-e805-47a0-ab53-af5bbbf79132","last_modified":1576536533911},{"schema":1576535945982,"derHash":"pjwTmLX43S1DL75MLBkUK+ptXQIh+ueUcYrnWXrMqW0=","subject":"CN=GlobalSign Root R46,O=GlobalSign nv-sa,C=BE","subjectDN":"MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQDExNHbG9iYWxTaWduIFJvb3QgUjQ2","whitelist":false,"attachment":{"hash":"378f762af5809d2286eb016c78a51681c834fff84abc2ac05a6cb350bb81bbeb","size":1886,"filename":"rn-WLLnmp9v3uDP7GPqbcaiRdd-UnCMrap73yz3yu_w=.pem","location":"security-state-staging/intermediates/d658e22b-e2c2-4eaf-a261-dda71e485545.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rn+WLLnmp9v3uDP7GPqbcaiRdd+UnCMrap73yz3yu/w=","crlite_enrolled":false,"id":"de84677c-3935-4ff1-ad12-b7f06ddaa458","last_modified":1576536533904},{"schema":1576535940122,"derHash":"MB6Mu4xmXKslbrGW9z9NKWy
crSXzJ0SQQnnhsxgjPjs=","subject":"CN=Apple Public Client RSA CA 11 - G1,O=Apple Inc.,ST=California,C=US","subjectDN":"MGQxKzApBgNVBAMTIkFwcGxlIFB1YmxpYyBDbGllbnQgUlNBIENBIDExIC0gRzExEzARBgNVBAoTCkFwcGxlIEluYy4xEzARBgNVBAgTCkNhbGlmb3JuaWExCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"887d323a9b612519f14d2640bdc97e2677c441bc5d92da332d0583d40e61e576","size":2182,"filename":"nhhSlUJJxG_ZM3LQ_T2Iz5U3Ps22YlhuUE1fscITI-E=.pem","location":"security-state-staging/intermediates/21666efd-84e2-47c7-bf9c-726c7f7f05a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhhSlUJJxG/ZM3LQ/T2Iz5U3Ps22YlhuUE1fscITI+E=","crlite_enrolled":false,"id":"ed6766d4-f179-49da-8e26-9b08acdf55b7","last_modified":1576536533889},{"schema":1576535937184,"derHash":"9k0GlO2uBtGEkebp0xxnOZeaLIGiWo5jnf186N/bMWI=","subject":"CN=Dodo Sign EV TLS ICA ECC R1,O=Dodo Sign Ltd,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MHUxCzAJBgNVBAYTAk1VMRgwFgYDVQQIDA9QbGFpbmVzIFdpbGhlbXMxDjAMBgNVBAcMBUViZW5lMRYwFAYDVQQKD
A1Eb2RvIFNpZ24gTHRkMSQwIgYDVQQDDBtEb2RvIFNpZ24gRVYgVExTIElDQSBFQ0MgUjE=","whitelist":false,"attachment":{"hash":"b0add226615cad1733ff8c5b493bd754f9de850c3f1c8e2cca90816f49c5e1be","size":1305,"filename":"uaqYQ15j83wFQwwqS3bYDrjKrM800inzcvgnootnrYQ=.pem","location":"security-state-staging/intermediates/ffe612d9-45c5-4329-86af-79a0687b4338.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uaqYQ15j83wFQwwqS3bYDrjKrM800inzcvgnootnrYQ=","crlite_enrolled":false,"id":"08c035d3-a0b3-448a-a866-9b7bd59b922b","last_modified":1576536533882},{"schema":1576535935756,"derHash":"cNud7ZRN011HTqFf8qpOJfOTqJPs2lQ1nTBbwxlkmBc=","subject":"CN=Apple Public Server ECC CA 12 - G1,O=Apple Inc.,ST=California,C=US","subjectDN":"MGQxKzApBgNVBAMTIkFwcGxlIFB1YmxpYyBTZXJ2ZXIgRUNDIENBIDEyIC0gRzExEzARBgNVBAoTCkFwcGxlIEluYy4xEzARBgNVBAgTCkNhbGlmb3JuaWExCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"7b664a38a0036f3f518be6f71fd3dccba44bd002424257ded7f358d26fc7fc10","size":1366,"filename":"MxdHGRZ7Ljsiy
ER0ypQ2XivrmpBgAU9_a6gf1ko2sQk=.pem","location":"security-state-staging/intermediates/58a031a8-c0ba-426e-a1de-b8e9854cc946.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MxdHGRZ7LjsiyER0ypQ2XivrmpBgAU9/a6gf1ko2sQk=","crlite_enrolled":true,"id":"20411773-904e-4e23-bf8b-23aa4d20b75d","last_modified":1576536533879},{"schema":1576535931554,"derHash":"H/oNH1XOSgUH6MOOi1V7iMvdaQ2QPZlrH3hQ2B1qSpM=","subject":"CN=Avaya Client Services Users CA 2,OU=Avaya IT+OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Avaya Inc,C=US","subjectDN":"MIGgMQswCQYDVQQGEwJVUzESMBAGA1UEChMJQXZheWEgSW5jMREwDwYDVQQLEwhBdmF5YSBJVDE/MD0GA1UECxM2Q2xhc3MgMiBEaWdpQ2VydCBQS0kgUGxhdGZvcm0gSW5kaXZpZHVhbCBTdWJzY3JpYmVyIENBMSkwJwYDVQQDEyBBdmF5YSBDbGllbnQgU2VydmljZXMgVXNlcnMgQ0EgMg==","whitelist":false,"attachment":{"hash":"762a8ed6494b6d421f213b9cd99b97030ae64a5065989022b11dc9f26509453e","size":2097,"filename":"C7LniTwqz9SPKmkZKSXHUjuMCa0AK-H4ybIDe47Reik=.pem","location":"security-state-staging/intermed
iates/6199eb30-85b4-4e68-83f2-a4abb88247dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"C7LniTwqz9SPKmkZKSXHUjuMCa0AK+H4ybIDe47Reik=","crlite_enrolled":false,"id":"47a63ece-4e39-4450-bcb5-d5cb581e733d","last_modified":1576536533868},{"schema":1576535930122,"derHash":"0zTTWamUSGS00I9rUJ43C743j3G97Qsjmjq4vgUqKW4=","subject":"CN=WebNIC Code Signing CA,O=WebNIC,L=Singapore,C=SG","subjectDN":"MFMxCzAJBgNVBAYTAlNHMRIwEAYDVQQHEwlTaW5nYXBvcmUxDzANBgNVBAoTBldlYk5JQzEfMB0GA1UEAxMWV2ViTklDIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"c88ea8edec48a2a9e100e3e3fd97b805b8b9797072d3efb198a2c439af86f188","size":2052,"filename":"LjMYKwzuWRO32yBUWdj18dPNxCqxzel-VbQgj6hHAmM=.pem","location":"security-state-staging/intermediates/70791cac-3c98-4f75-990d-6954d0219a0a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LjMYKwzuWRO32yBUWdj18dPNxCqxzel+VbQgj6hHAmM=","crlite_enrolled":false,"id":"7791a584-5e29-4235-b416-b854d3c3a85f","last_modified":1576536533864},{"schema":
1576535928721,"derHash":"HSQiK17scf6Zvp1wD6X/cjEts+sPy0pPO8wTXaNsE1U=","subject":"CN=QuoVadis EU Issuing Certification Authority G4,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MIGBMQswCQYDVQQGEwJOTDEXMBUGA1UEYQwOTlRSTkwtMzAyMzc0NTkxIDAeBgNVBAoMF1F1b1ZhZGlzIFRydXN0bGluayBCLlYuMTcwNQYDVQQDDC5RdW9WYWRpcyBFVSBJc3N1aW5nIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEc0","whitelist":false,"attachment":{"hash":"abc8779ce19e7e1b723ea4b7569c06c7bcf6a1d55f0595dbae8c152d800dbfb8","size":2406,"filename":"N4NzF7zbHULFki3CS8POhVnUVvnENOs7cQO__vGsV3I=.pem","location":"security-state-staging/intermediates/c4f3c05f-b7ad-4dee-a5ff-e59984747cdb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N4NzF7zbHULFki3CS8POhVnUVvnENOs7cQO//vGsV3I=","crlite_enrolled":true,"id":"e52f87f2-6917-4b55-a618-7063e3c0e4d3","last_modified":1576536533861},{"schema":1576535924422,"derHash":"ON7T/2gnV5AIr0iH65aYo8+pJ/qO1Z8GugkPuaY+LXc=","subject":"CN=UZI-register Medewerker niet op naam CA G3,O=CIBG,C=NL","subjectDN":"MGoxCzAJBgNV
BAYTAk5MMQ0wCwYDVQQKDARDSUJHMRcwFQYDVQRhDA5OVFJOTC01MDAwMDUzNTEzMDEGA1UEAwwqVVpJLXJlZ2lzdGVyIE1lZGV3ZXJrZXIgbmlldCBvcCBuYWFtIENBIEcz","whitelist":false,"attachment":{"hash":"fdf235b099b1f37447f060ecf05a38a7f2f77b7ed689f4bd3554bcbb87e84429","size":2645,"filename":"io70m-V_59D3apVL30ZLD4BQjGAhNUmM2cLS-be8t_s=.pem","location":"security-state-staging/intermediates/43cbf583-ed6b-42a6-b390-579b0f581372.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"io70m+V/59D3apVL30ZLD4BQjGAhNUmM2cLS+be8t/s=","crlite_enrolled":false,"id":"3ff5743e-265f-4d7a-bebb-a4404e593665","last_modified":1576536533845},{"schema":1576535922917,"derHash":"neYdQGDkzEOIcYLd1eYWlGqqN7QxbumMQkSQFg9sjKo=","subject":"CN=Dodo Sign EV TLS ICA RSA R1,O=Dodo Sign Ltd,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MHUxCzAJBgNVBAYTAk1VMRgwFgYDVQQIDA9QbGFpbmVzIFdpbGhlbXMxDjAMBgNVBAcMBUViZW5lMRYwFAYDVQQKDA1Eb2RvIFNpZ24gTHRkMSQwIgYDVQQDDBtEb2RvIFNpZ24gRVYgVExTIElDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"d54a7cdc1
a94f8a39a42db730bf1d72281d7628995592515709e572163799782","size":2454,"filename":"1DY43lDb7xlJzDvOVPtYU5JGz5PGXMK4hqwmC0tfYpM=.pem","location":"security-state-staging/intermediates/9ed8d2c1-00de-4ffd-89ed-0cb1c60b4487.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1DY43lDb7xlJzDvOVPtYU5JGz5PGXMK4hqwmC0tfYpM=","crlite_enrolled":false,"id":"65100e6a-48de-4e6d-b0f8-394031300eea","last_modified":1576536533840},{"schema":1576535920130,"derHash":"f79dtJF2OZMAdqr/ePyR3aDv7qhsrTihjZiUfXzTaUg=","subject":"CN=SZCA EV SSL CA,O=Shenzhen Digital Certificate Authority Center Co.\\, Ltd,C=CN","subjectDN":"MGcxCzAJBgNVBAYTAkNOMT8wPQYDVQQKDDZTaGVuemhlbiBEaWdpdGFsIENlcnRpZmljYXRlIEF1dGhvcml0eSBDZW50ZXIgQ28uLCBMdGQxFzAVBgNVBAMMDlNaQ0EgRVYgU1NMIENB","whitelist":false,"attachment":{"hash":"e03f3052b8789db5fcf3cdcc2c99f637a46dfc7e75b7e90821532f0139858a50","size":1756,"filename":"m9Fzkl4nfip9REp7mGOZ4yhSFF4FL4A--9o7eUTYzMQ=.pem","location":"security-state-staging/intermediates/7c9c9455-5d39-4925-8
22c-e353ba07464d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m9Fzkl4nfip9REp7mGOZ4yhSFF4FL4A++9o7eUTYzMQ=","crlite_enrolled":false,"id":"26dd89a7-d444-4647-be98-393c4cd93ed5","last_modified":1576536533836},{"schema":1576535917274,"derHash":"do0Y37412P5mcS+Yd2I9FRB3G1P1u4GcYkoVZI8f5Qk=","subject":"CN=S/MIME RSA ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHQxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMRowGAYDVQQDDBFTL01JTUUgUlNBIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"c1068b3b2ea8a0e2711bbbcf2ee76ab8b8d91745c4ab08f6436801acbfbcd677","size":2150,"filename":"nIOaO62AxFMW0JOKjsy1DZselooknRqTfmOxDEfM0sQ=.pem","location":"security-state-staging/intermediates/d98a7be1-b9c7-4085-83fd-776f5f6cbfab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nIOaO62AxFMW0JOKjsy1DZselooknRqTfmOxDEfM0sQ=","crlite_enrolled":false,"id":"db0531c3-1ffd-4acb-bb7c-522369d
e5914","last_modified":1576536533830},{"schema":1576535915880,"derHash":"xoxVme3roVwRJUOBsB0V8rxif924XjOkkgfjH+HxXQ0=","subject":"SERIALNUMBER=202017,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDE3","whitelist":false,"attachment":{"hash":"22151c5f67954f7df4f45c9f49de95bcf1b4fb76f2717dfe75902e496d782508","size":2333,"filename":"IKjMrd9-Ii4IPuS5zV5KhZDFudzyr4xsb9_Cb4VwSS4=.pem","location":"security-state-staging/intermediates/d09d4bcc-90b3-44ad-ba6f-0e1ec07943f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IKjMrd9+Ii4IPuS5zV5KhZDFudzyr4xsb9/Cb4VwSS4=","crlite_enrolled":false,"id":"02d05a88-8534-4a6e-bbe1-c9dfae1a53c4","last_modified":1576536533826},{"schema":1576535914365,"derHash":"kDfZCQpjZkzuREvoYzEJdlyQqeDgAyo2xDfjuru5Tt4=","subject":"CN=SSL X Y & Z EV TLS CA ECC R1,O=SSL X Y & Z Corp.,L=Victoria,ST=Mah\u00e9,C=SC","s
ubjectDN":"MHMxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExGjAYBgNVBAoMEVNTTCBYIFkgJiBaIENvcnAuMSUwIwYDVQQDDBxTU0wgWCBZICYgWiBFViBUTFMgQ0EgRUNDIFIx","whitelist":false,"attachment":{"hash":"a6e5424ce1469b72faaa4f808cfc02460b40b4084b8f825f82f4d6e09ed3a17a","size":1280,"filename":"Tgm74K8EbuCBKCktudG9C_UXO5irwHL8qNYuxdJv1B8=.pem","location":"security-state-staging/intermediates/2a7c27bf-35c8-427f-bf91-b620e767a6e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Tgm74K8EbuCBKCktudG9C/UXO5irwHL8qNYuxdJv1B8=","crlite_enrolled":false,"id":"6878d4f8-2f0a-4abe-ae4b-6e1572598927","last_modified":1576536533821},{"schema":1576535909746,"derHash":"yikDieDYxipAg/Yoo59S/j84tzGZz/r3wDcjeKRA+2o=","subject":"CN=Entrust Certification Authority - L1M,OU=See www.entrust.net/legal-terms+OU=(c) 2014 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC
10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTQgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFN","whitelist":false,"attachment":{"hash":"02e23f9b06e438417e4e71c8b9fb42a8e2da31ad266ad1ca50792fd36d7251b9","size":1829,"filename":"VYZwGiJkq3NNo1YRI2RGiSTI1mqTWG8zDcRf1_KAN6I=.pem","location":"security-state-staging/intermediates/3aae7952-dcc2-4419-b53f-9eac4094c51b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VYZwGiJkq3NNo1YRI2RGiSTI1mqTWG8zDcRf1/KAN6I=","crlite_enrolled":true,"id":"d9a71e99-a2ad-4f36-b975-79dca9dd44f0","last_modified":1576536533809},{"schema":1576535918743,"derHash":"yMP/XemO82kvOhlooT69KoYLs/SG7EVDT46Qc8SpzWc=","subject":"CN=SECOM Passport for Web SR 3.0 CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MF8xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSkwJwYDVQQDEyBTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIFNSIDMuMCBDQQ==","whitelist":false,"attachment":{"hash":"f1224f7660297ee13d77fcf35
3555cc0aacb21730c122ed72881ccaaa2d49833","size":1536,"filename":"-HZ42z-6jzbfrf-8zoB-rhhWo8lWk9UMNlhPseiUpJs=.pem","location":"security-state-staging/intermediates/7b3da4b3-c177-4a6e-b7a9-062e872bf107.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+HZ42z+6jzbfrf+8zoB+rhhWo8lWk9UMNlhPseiUpJs=","crlite_enrolled":true,"id":"a9f66876-d086-446f-a12c-e9ee7c486c5e","last_modified":1576536533804},{"schema":1576535908358,"derHash":"peM8KOMBOnH192CuOxZZUJAEPS7FIJ7FKQPE+60lja0=","subject":"CN=GlobalSign Root R46,O=GlobalSign nv-sa,C=BE","subjectDN":"MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQDExNHbG9iYWxTaWduIFJvb3QgUjQ2","whitelist":false,"attachment":{"hash":"fa8a56ce9427949481f533247ba9c60a2399344aa8e931f631f8a47245217c4d","size":1894,"filename":"rn-WLLnmp9v3uDP7GPqbcaiRdd-UnCMrap73yz3yu_w=.pem","location":"security-state-staging/intermediates/ef48945b-24c4-41bf-afdf-5d30c4725e72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rn+WLLnmp9v3uDP7GPqbcai
Rdd+UnCMrap73yz3yu/w=","crlite_enrolled":false,"id":"0bac52a2-0949-48f2-abb2-f09ac245fd7f","last_modified":1576536533799},{"schema":1576535906937,"derHash":"r8oz2sVEOJ49Iw2xKti6PufBqeTM8Mr/1+FsKi81zuU=","subject":"CN=EC-GENCAT,OU=Serveis Publics de Certificacio ECV-1+OU=Vegeu https://www.catcert.net/verCIC-1 (c)03+OU=Generalitat de Catalunya,O=Agencia Catalana de Certificacio (NIF Q-0801176-I),C=ES","subjectDN":"MIHpMQswCQYDVQQGEwJFUzE7MDkGA1UECgwyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8gKE5JRiBRLTA4MDExNzYtSSkxLjAsBgNVBAsMJVNlcnZlaXMgUHVibGljcyBkZSBDZXJ0aWZpY2FjaW8gRUNWLTExNjA0BgNVBAsMLVZlZ2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQubmV0L3ZlckNJQy0xICAoYykwMzEhMB8GA1UECwwYR2VuZXJhbGl0YXQgZGUgQ2F0YWx1bnlhMRIwEAYDVQQDDAlFQy1HRU5DQVQ=","whitelist":false,"attachment":{"hash":"68020eeafb9e19fcbbb5e650b27c54a86372fc89f55eae47738a248afb78dd7e","size":2251,"filename":"plh85tWIetVs5VcJnItuNLDy-XNaKKGitW1elxmTBeI=.pem","location":"security-state-staging/intermediates/a2444857-efdc-427c-b27e-3219f87d7
74f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"plh85tWIetVs5VcJnItuNLDy+XNaKKGitW1elxmTBeI=","crlite_enrolled":false,"id":"f0031ace-b829-4f9f-bc0d-2388295555dd","last_modified":1576536533795},{"schema":1576535905508,"derHash":"HQgt3e0W1OTkkWOJPZJEl468VCKPS4ESeLVaspnExI4=","subject":"CN=Symantec Class 2 Employee CA - G4,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Symantec Corporation,C=US","subjectDN":"MIGZMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEqMCgGA1UEAxMhU3ltYW50ZWMgQ2xhc3MgMiBFbXBsb3llZSBDQSAtIEc0","whitelist":false,"attachment":{"hash":"0adbea35abde14e3bb65a4cf56dcfeccf401e8fbcdc72a4dbc92c98f155ce6d0","size":2068,"filename":"4UyOSF_VGPv56JpY5z0BV-AVEbPZZ1xvB4dYq2yDeYM=.pem","location":"security-state-staging/intermediates/0694ff66-1242-44e8-ae1f-d5b3147fdaae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4UyOSF/VGPv56JpY5z0BV+AVEbPZZ1x
vB4dYq2yDeYM=","crlite_enrolled":false,"id":"9f2c8f1c-ef21-472e-af7e-202f6d9d5d2f","last_modified":1576536533788},{"schema":1576535901047,"derHash":"sm6zEPj68O9bDQtxqmXsBQ+jreKRNPtDirZEAoj6bmc=","subject":"CN=Secure Site CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MFgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xFzAVBgNVBAMTDlNlY3VyZSBTaXRlIENB","whitelist":false,"attachment":{"hash":"c9fd1a02e33e6fb6aa966212b051bc01d9763d43207f96cd14bd4d2ab77caf5e","size":1666,"filename":"3mc_12C2pwvtV5JjfcxLmbbWYQSbj9yqSWLXKfZcMUw=.pem","location":"security-state-staging/intermediates/3c324156-7f22-4755-bd9d-801f027fb229.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3mc/12C2pwvtV5JjfcxLmbbWYQSbj9yqSWLXKfZcMUw=","crlite_enrolled":true,"id":"a72a5e79-3626-409e-b043-cd067d75f18f","last_modified":1576536533781},{"schema":1576535898184,"derHash":"fLHw8QPU7oLZrUH2kCPFlCEfUoXDlOh9VL8EdGIsgmU=","subject":"CN=WebNIC Assured ID CA,O=WebNIC,L=Sing
apore,C=SG","subjectDN":"MFExCzAJBgNVBAYTAlNHMRIwEAYDVQQHEwlTaW5nYXBvcmUxDzANBgNVBAoTBldlYk5JQzEdMBsGA1UEAxMUV2ViTklDIEFzc3VyZWQgSUQgQ0E=","whitelist":false,"attachment":{"hash":"1f3fc0bed59983b040a2da0d18be6dc5f3fbb5f7e006a7b529e21595eb3fdce8","size":2060,"filename":"h2xdkR0tsowblgOKHnXoWz4HRd6TFdufPwK2kA5rZis=.pem","location":"security-state-staging/intermediates/a5ecf113-0411-470d-8892-a713b0040746.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"h2xdkR0tsowblgOKHnXoWz4HRd6TFdufPwK2kA5rZis=","crlite_enrolled":false,"id":"08077971-3fdb-4c74-8da6-e19b41c8d0c3","last_modified":1576536533776},{"schema":1576535895349,"derHash":"6PoWk7ilm16fnt4fzEpIOv1BBeclV2MuTdQ12vQ2F18=","subject":"SERIALNUMBER=202003,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDIwMDM=","whitelist":false,"attachment":{"hash":"55f2cc3018c2099898a8f957abde4
000e8cbf3bdd59e78af1b6baa2b915f7749","size":2337,"filename":"zorY5O9LVEFY683mlqVCo5VR0c9nqYIj4Rcn5gmEKbg=.pem","location":"security-state-staging/intermediates/7ce01a0e-78a4-4eb4-aa2b-49fcba780598.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zorY5O9LVEFY683mlqVCo5VR0c9nqYIj4Rcn5gmEKbg=","crlite_enrolled":false,"id":"5f7010e9-833f-4403-b47c-eb8cec371020","last_modified":1576536533772},{"schema":1576535896778,"derHash":"2qBDVAf6RMKKuTnmgjgTYFd5CThzqWZJrW4DsF0oYmw=","subject":"CN=Buypass Class 3 CA 2,O=Buypass AS-983163327,C=NO","subjectDN":"MEsxCzAJBgNVBAYTAk5PMR0wGwYDVQQKDBRCdXlwYXNzIEFTLTk4MzE2MzMyNzEdMBsGA1UEAwwUQnV5cGFzcyBDbGFzcyAzIENBIDI=","whitelist":false,"attachment":{"hash":"c3adfe4cbf2b1d7e9a605067bbec92b2d0430c2b1227c76517242204d270ea39","size":1849,"filename":"4ZQYrjRV6ScgdFiC0vn_Vy4QMIji7Tv-wkkEKEEQ6_I=.pem","location":"security-state-staging/intermediates/f4c24d5d-274d-468d-ad24-5434b0abf493.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4ZQYrjRV6Scgd
FiC0vn/Vy4QMIji7Tv+wkkEKEEQ6/I=","crlite_enrolled":true,"id":"a3808703-8211-46eb-9e79-a0dff56992fd","last_modified":1576536533765},{"schema":1576535892539,"derHash":"Y2WyXpKZtfOC6wBmhQYpCI682byzmPKGIhB2A8PBwn4=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - AAPP,OU=Certificados Digitales para la Administracion Publica,O=Firmaprofesional SA,C=ES","subjectDN":"MIGkMQswCQYDVQQGEwJFUzEcMBoGA1UECgwTRmlybWFwcm9mZXNpb25hbCBTQTE+MDwGA1UECww1Q2VydGlmaWNhZG9zIERpZ2l0YWxlcyBwYXJhIGxhIEFkbWluaXN0cmFjaW9uIFB1YmxpY2ExEjAQBgNVBAUTCUE2MjYzNDA2ODEjMCEGA1UEAwwaQUMgRmlybWFwcm9mZXNpb25hbCAtIEFBUFA=","whitelist":false,"attachment":{"hash":"b364c73112b234b54f2bbfcccc157ff6a6e56b1eb3642bba27e9a19807372305","size":2434,"filename":"hLz0sJLVz-CYXLdvw4BHmbCD3Gt3C5gAep7ycaEAChw=.pem","location":"security-state-staging/intermediates/088426b5-e7ac-44ac-ad09-766b42cb1607.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hLz0sJLVz+CYXLdvw4BHmbCD3Gt3C5gAep7ycaEAChw=","crlite_enrolled":false,"id":
"7a673029-7426-4fd2-aa04-1eead6f1048a","last_modified":1576536533761},{"schema":1576535891125,"derHash":"sU1QiQecHY92SduaXTzvsarAb2avxJIlxb4qoZ/UGjU=","subject":"CN=Entrust Certification Authority - L1N,OU=See www.entrust.net/legal-terms+OU=(c) 2014 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTQgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFO","whitelist":false,"attachment":{"hash":"2a107eb8056c22e82435858002ab7da59ecfe298d1cafd19ef86a74343e7a1bb","size":2207,"filename":"vJyqpf--OgJrh0WkGBWAggmVgZ5-o9t2KvyRdPxvIhs=.pem","location":"security-state-staging/intermediates/119f868d-4224-48fa-aca4-4e950d595c12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vJyqpf++OgJrh0WkGBWAggmVgZ5+o9t2KvyRdPxvIhs=","crlite_enrolled":false,"id":"b03bf780-0b68-4f
48-9034-834ec2d038db","last_modified":1576536533758},{"schema":1576535893935,"derHash":"4MLr0fa61P6q4xoxB+aavukC2zi5374z8FcL2jSUwgo=","subject":"CN=GlobalSign CloudSSL CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIENsb3VkU1NMIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"5708992fbcf9481fd4654b18ba083f1c9225a94e396e861bbd592d38a6bee662","size":1626,"filename":"-VZJxHgrOOiVyUxgMRbfoo-GIWrMKd4aellBBHtBcKg=.pem","location":"security-state-staging/intermediates/48379e9d-8361-44d6-a4a7-eb48ae824248.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+VZJxHgrOOiVyUxgMRbfoo+GIWrMKd4aellBBHtBcKg=","crlite_enrolled":true,"id":"d57a5e4c-dfdb-4c21-809b-ec5a60174f9c","last_modified":1576536533751},{"schema":1576535884083,"derHash":"IcrbfNgi6hO0luJau4FRx/sA77se5FijtKTzwWvDwW8=","subject":"CN=Digidentity BV PKIoverheid Burger CA - G3,O=Digidentity B.V.,C=NL","subjectDN":"MHUxCzAJBgN
VBAYTAk5MMRkwFwYDVQQKDBBEaWdpZGVudGl0eSBCLlYuMRcwFQYDVQRhDA5OVFJOTC0yNzMyMjYzMTEyMDAGA1UEAwwpRGlnaWRlbnRpdHkgQlYgUEtJb3ZlcmhlaWQgQnVyZ2VyIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"c8ff04eeee6bce152e5e98c99dca5cf921fce2820ba60817a872fed0cb518838","size":2532,"filename":"k5vPHt_MdNtfcnpCDwqfEjdm4LB7gBM9vX2iTb0kIPM=.pem","location":"security-state-staging/intermediates/2912fe8c-837e-4193-8500-db273f27fb75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k5vPHt/MdNtfcnpCDwqfEjdm4LB7gBM9vX2iTb0kIPM=","crlite_enrolled":false,"id":"55d018b4-4eb7-4d7f-bdf4-e4553efdc451","last_modified":1576536533743},{"schema":1576535888279,"derHash":"w0bZE34FJUxu6smawvZ0igxdOvxre5seAMQK302FZV0=","subject":"CN=CBMM SMIME CA 2019,O=COMPANHIA BRASILEIRA DE METALURGIA E MINERACAO,POSTALCODE=38183-903,STREET=RUA CORREGO DA MATA S/N,L=ARAXA,ST=MINAS GERAIS,C=BR","subjectDN":"MIHAMQswCQYDVQQGEwJCUjE3MDUGA1UEChMuQ09NUEFOSElBIEJSQVNJTEVJUkEgREUgTUVUQUxVUkdJQSBFIE1JTkVSQUNBTzEOMAwGA1UEBxMFQVJBWEExF
TATBgNVBAgTDE1JTkFTIEdFUkFJUzEgMB4GA1UECRMXUlVBIENPUlJFR08gREEgTUFUQSBTL04xEjAQBgNVBBETCTM4MTgzLTkwMzEbMBkGA1UEAxMSQ0JNTSBTTUlNRSBDQSAyMDE5","whitelist":false,"attachment":{"hash":"fe3d14bd5254e0a39c15a733dad05e8c9bcd3953ff1d49f2715e7a6102a14c44","size":1983,"filename":"JgrysEOXcXWHyUdTbvFXqUmyd60uxVfkiQtywlZv_nE=.pem","location":"security-state-staging/intermediates/7cc1e4ac-bbbc-42b5-bca1-eee58338135b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JgrysEOXcXWHyUdTbvFXqUmyd60uxVfkiQtywlZv/nE=","crlite_enrolled":false,"id":"6db211d5-5b49-42f3-a1ba-e139fb5d1836","last_modified":1576536533739},{"schema":1576535885503,"derHash":"Rb8E3KXeemM58d+DW8kBNFe0h/20MI5AgMZCPI5LJwU=","subject":"CN=DigiCert Transition ECC Root,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IFRyYW5zaXRpb24gRUNDIFJvb3Q=","whitelist":false,"attachment":{"hash":"ec9ca1e7872737de9eba06d02d6f5
9709cc00db0519cdf3d07ec29275c2360e7","size":768,"filename":"fKyaD_MVOHdQuouv2xwrwps_C7oWNiypOpD4TaLfXz4=.pem","location":"security-state-staging/intermediates/2a8d9c82-4e74-4311-aac0-3155dcba518c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fKyaD/MVOHdQuouv2xwrwps/C7oWNiypOpD4TaLfXz4=","crlite_enrolled":false,"id":"5b349da4-d246-4360-a09a-7028a7bb4f8c","last_modified":1576536533736},{"schema":1576535879770,"derHash":"dPVuGrM52D6A8vbiZPiUd1tCbIm0RwPfT6ijIxFjor0=","subject":"CN=Trustwave Domain Validation SHA256 CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGvMQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE3MDUGA1UEAxMuVHJ1c3R3YXZlIERvbWFpbiBWYWxpZGF0aW9uIFNIQTI1NiBDQSwgTGV2ZWwgMTEfMB0GCSqGSIb3DQEJARYQY2FAdHJ1c3R3YXZlLmNvbQ==","whitelist":false,"attachment":{"hash":"f3dfc731d826e0d0984812c4ea4c6e2485418da6eea5873875262b9282480123","size":1792,"filename":"D2BA_wGfRVRt6v
ATeLdkNJ0B3ckV2GlyUIDdWUqCSDQ=.pem","location":"security-state-staging/intermediates/ddbc7552-96a7-4b2e-91f9-ffb3835036ce.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D2BA/wGfRVRt6vATeLdkNJ0B3ckV2GlyUIDdWUqCSDQ=","crlite_enrolled":true,"id":"ef25e7fa-720b-412c-bf83-aba79dc2aa8e","last_modified":1576536533732},{"schema":1576535878387,"derHash":"JCtpdC/LHlsqv5iJi5RXIYdUTltNmRF4ZXNiH2p0uCw=","subject":"CN=Telia Root CA v2,O=Telia Finland Oyj,C=FI","subjectDN":"MEQxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZMBcGA1UEAwwQVGVsaWEgUm9vdCBDQSB2Mg==","whitelist":false,"attachment":{"hash":"6f399d9adcd59cadec87760241621f46a9daf25db3c442d61999a94042f01988","size":1951,"filename":"wrPDGkophQqo889HKhFp_3G0FlefakSC7HdEuD35iKw=.pem","location":"security-state-staging/intermediates/4c25a27e-2c0e-442f-893f-37ea349bb645.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wrPDGkophQqo889HKhFp/3G0FlefakSC7HdEuD35iKw=","crlite_enrolled":false,"id":"f1dcb796-9a85-4f2d-a0fb-9b3f
7b4c9089","last_modified":1576536533728},{"schema":1576535877021,"derHash":"3gqS5UNbYTII3ENezHFYvyj0IKk+CpHVlllyBT9SNUk=","subject":"CN=Cleverbase ID PKIoverheid Burger CA - G3,O=Cleverbase ID B.V.,C=NL","subjectDN":"MHYxCzAJBgNVBAYTAk5MMRswGQYDVQQKDBJDbGV2ZXJiYXNlIElEIEIuVi4xFzAVBgNVBGEMDk5UUk5MLTY3NDE5OTI1MTEwLwYDVQQDDChDbGV2ZXJiYXNlIElEIFBLSW92ZXJoZWlkIEJ1cmdlciBDQSAtIEcz","whitelist":false,"attachment":{"hash":"43ba7b18219f05d870af64b48aedb5b0e035eedf35ae2f0fec42aba1789e5955","size":2532,"filename":"c3WqQNTp8NSwj6Ar5Z3bAzdLCkLGhqGXOVps_pS8BKM=.pem","location":"security-state-staging/intermediates/c27d2459-6f95-4c85-9ff7-8e14e05a2150.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"c3WqQNTp8NSwj6Ar5Z3bAzdLCkLGhqGXOVps/pS8BKM=","crlite_enrolled":false,"id":"b6549aff-91bd-4c31-8324-526c379bbdfe","last_modified":1576536533724},{"schema":1576535875604,"derHash":"1sP8STus0d+KG6MPSuJiVLKkUo5IdggerMahagkKo2o=","subject":"CN=Entrust Certification Authority - L1K,OU=See www.entrust
.net/legal-terms+OU=(c) 2012 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTIgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFL","whitelist":false,"attachment":{"hash":"baf3c774613f8942857b2ad6d40766ac8a7a67fdbc624e9c4a17b50ca45bddd5","size":1792,"filename":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0uc=.pem","location":"security-state-staging/intermediates/f8d538de-5cc7-4991-8270-0a2d1d7d3b8b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0uc=","crlite_enrolled":true,"id":"b1366715-e202-4ce8-9018-b39313524fe8","last_modified":1576536533719},{"schema":1576535871360,"derHash":"aitFjsogSy3av04m1G/Q+bvoZ9p6rDVTJROm5aT8ylg=","subject":"CN=TBS X509 CA Persona 3 (ECC),O=TBS INTERNET Ltd.,L=Douglas,ST=Isle of Man,C
=IM","subjectDN":"MHcxCzAJBgNVBAYTAklNMRQwEgYDVQQIEwtJc2xlIG9mIE1hbjEQMA4GA1UEBxMHRG91Z2xhczEaMBgGA1UEChMRVEJTIElOVEVSTkVUIEx0ZC4xJDAiBgNVBAMTG1RCUyBYNTA5IENBIFBlcnNvbmEgMyAoRUNDKQ==","whitelist":false,"attachment":{"hash":"944dcf6a8c1ee8957b2a174f54675ec285a093b949a186d434f20d91f13a1365","size":1288,"filename":"r7xCTXIT-QWYjyxg-QtDiWm-o-0SPzjo9qjik4pHEhA=.pem","location":"security-state-staging/intermediates/ad0081bd-1851-4d54-91a9-d1a6326f8a6e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"r7xCTXIT+QWYjyxg+QtDiWm+o+0SPzjo9qjik4pHEhA=","crlite_enrolled":false,"id":"62e2b79f-f3c1-4952-b73d-ced0186eca23","last_modified":1576536533710},{"schema":1576535872699,"derHash":"Av7Tui5qeEOjGKmBvIRwYf0oLZ6IR/+p9U14W2uB1vM=","subject":"CN=Secure Site Pro CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHjAcBgNVBAMTFVNlY3VyZSBTaXRlIFBybyBDQSBHMg==","whitelist":false,"attachment":{"hash":"5
c18d3156506cd5355f4d18f1913e2bd2818958dce99153a650e7f3195877f83","size":1829,"filename":"yFzqzO6UfU8CG8Xw6hrhKs8Wc7kjwaPPHpMW5A4WT3k=.pem","location":"security-state-staging/intermediates/69603c20-57db-47e4-8db1-78012f614eb4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yFzqzO6UfU8CG8Xw6hrhKs8Wc7kjwaPPHpMW5A4WT3k=","crlite_enrolled":true,"id":"047bbf71-0e60-47f1-88fb-c8654e3e2fd6","last_modified":1576536533706},{"schema":1576535869920,"derHash":"3ZxUXWtkXCv74bbstgN2AGRk6XuxMEt5eM/oOkCZsic=","subject":"O=Government Root Certification Authority,C=TW","subjectDN":"MD8xCzAJBgNVBAYTAlRXMTAwLgYDVQQKDCdHb3Zlcm5tZW50IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"22de8a87722574e5bae64f227adae54749a53ce2eb2247106a3a9a9137cc429b","size":2292,"filename":"pRovOgUOg4pQUGlleNu-2qwaEH7i2dSPrlBdGNDaXPg=.pem","location":"security-state-staging/intermediates/1bba8b1c-fe09-452a-8030-5299448f1616.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pRovOgU
Og4pQUGlleNu+2qwaEH7i2dSPrlBdGNDaXPg=","crlite_enrolled":true,"id":"ab862fa5-0269-4007-9bfc-154dc88f81fc","last_modified":1576536533702},{"schema":1576535868368,"derHash":"/s6a2nqknU/qnv8SNUIJWogMAE/Wkz+TZLArLjV06jg=","subject":"CN=Cybertrust Japan SureServer EV CA G3,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MGExCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEtMCsGA1UEAxMkQ3liZXJ0cnVzdCBKYXBhbiBTdXJlU2VydmVyIEVWIENBIEcz","whitelist":false,"attachment":{"hash":"442ad2ef3f029c8ae0616647479fbe53d99e0e9ed017c893d2b5952cbf146f8f","size":1772,"filename":"zJoepoy-7XeJoRmjbR7_i8oZ1WEujOKGTD9NNM0uWHM=.pem","location":"security-state-staging/intermediates/5a528d23-16fc-4550-b70f-7b7202891213.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zJoepoy+7XeJoRmjbR7/i8oZ1WEujOKGTD9NNM0uWHM=","crlite_enrolled":true,"id":"9aa2bac0-292b-4549-8d79-e82841fe7262","last_modified":1576536533695},{"schema":1576535866783,"derHash":"9hSuKxAUhPFfZvTdpW7m60InKPF52UOZ7eGawdhai9M
=","subject":"CN=Secure Site CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MFsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xGjAYBgNVBAMTEVNlY3VyZSBTaXRlIENBIEcy","whitelist":false,"attachment":{"hash":"ea9ed009cee9ad525cea31b09520df7f3327215055a5f8d38c27bc5eed479ab1","size":1825,"filename":"3mc_12C2pwvtV5JjfcxLmbbWYQSbj9yqSWLXKfZcMUw=.pem","location":"security-state-staging/intermediates/f1eaf41b-8ddc-4230-8adb-5920c9c4ef35.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3mc/12C2pwvtV5JjfcxLmbbWYQSbj9yqSWLXKfZcMUw=","crlite_enrolled":true,"id":"0558d609-3bfb-4844-bf88-b93e9bd0dbdb","last_modified":1576536533692},{"schema":1576535863986,"derHash":"sXdPmya04tX3UXE2AP/rFjs0y3oUwsB5cE6VNk+8ykk=","subject":"CN=InCommon RSA Server CA,OU=InCommon,O=Internet2,L=Ann Arbor,ST=MI,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJNSTESMBAGA1UEBxMJQW5uIEFyYm9yMRIwEAYDVQQKEwlJbnRlcm5ldDIxETAPBgNVBAsTCEluQ29tbW9uMR8wHQYDVQQDExZJbkNvb
W1vbiBSU0EgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"a3ecf6ad18dd20e2bb3d0213cf639e3748842228ce2c96008b3f6da877409bcf","size":2129,"filename":"b1JA6-4svjmZnxGjAiQY3RS0A9FtjKLCWaRlVmCPM28=.pem","location":"security-state-staging/intermediates/f130c14b-f812-4c68-9577-4859f57b2126.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"b1JA6+4svjmZnxGjAiQY3RS0A9FtjKLCWaRlVmCPM28=","crlite_enrolled":true,"id":"22533613-9108-4af4-8604-a14d14de2ada","last_modified":1576536533688},{"schema":1576535860850,"derHash":"txawif5OU9Gi73ulesheaOxyLPYQUsJaWWJq07FcX0A=","subject":"CN=Qu\u00e1litas Compa\u00f1\u00eda de Seguros S.A. de C.V.,O=QUALITAS COMPA\u00d1IA DE SEGUROS S.A. DE C.V.,POSTALCODE=05200,STREET=JOSE MARIA CASTORENA No. 426\\, SAN JOSE DE LOS CEDROS,L=CUAJIMALPA,ST=CIUDAD DE MEXICO,C=MX","subjectDN":"MIH4MQswCQYDVQQGEwJNWDEzMDEGA1UECgwqUVVBTElUQVMgQ09NUEHDkUlBIERFIFNFR1VST1MgUy5BLiBERSBDLlYuMRMwEQYDVQQHEwpDVUFKSU1BTFBBMRkwFwYDVQQIExBDSVVEQUQgREUgTUVYSUNPMT0wOwYDVQQJEzRKT1
NFIE1BUklBIENBU1RPUkVOQSBOby4gNDI2LCBTQU4gSk9TRSBERSBMT1MgQ0VEUk9TMQ4wDAYDVQQREwUwNTIwMDE1MDMGA1UEAwwsUXXDoWxpdGFzIENvbXBhw7HDrWEgZGUgU2VndXJvcyBTLkEuIGRlIEMuVi4=","whitelist":false,"attachment":{"hash":"b4cc258aa16607dd839fa8f83252a629b07c1acdd5fa87f696c466297ca3c432","size":2093,"filename":"lxQankog6Tf_kuy51v0yHPp7VAlCmH0rA0RAvunUR2U=.pem","location":"security-state-staging/intermediates/85c27bd1-db7e-4507-b140-76bd7f1708d2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lxQankog6Tf/kuy51v0yHPp7VAlCmH0rA0RAvunUR2U=","crlite_enrolled":false,"id":"8aff6d32-3b8c-46c2-82fd-fe7efd828486","last_modified":1576536533684},{"schema":1576535862557,"derHash":"3MVmIv8NIJH7n/yfZ8LTUEmWacYpjajemsQaSIu52eQ=","subject":"CN=KIBSTrust Issuing CA for e-Seals,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA+OU=KIBS AD Trust Services,O=KIBS AD Skopje,C=MK","subjectDN":"MIHLMQswCQYDVQQGEwJNSzEXMBUGA1UEChMOS0lCUyBBRCBTa29wamUxFjAUBgNVBGETDU5UUk1LLTU1Mjk1ODExPzA9BgNVBAsTNkNsYXNzIDIgRGlnaU
NlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEfMB0GA1UECxMWS0lCUyBBRCBUcnVzdCBTZXJ2aWNlczEpMCcGA1UEAxMgS0lCU1RydXN0IElzc3VpbmcgQ0EgZm9yIGUtU2VhbHM=","whitelist":false,"attachment":{"hash":"8d7c38f00343d8c6a7932df61962f01724d42231ff99cb9d43e41b71980f219b","size":2418,"filename":"BHGCDczb35jf24uF9UQUIWbl37u3KH6m3tAW-DvKkBs=.pem","location":"security-state-staging/intermediates/aec25152-6938-41ba-83be-9d485724a1f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BHGCDczb35jf24uF9UQUIWbl37u3KH6m3tAW+DvKkBs=","crlite_enrolled":false,"id":"222af1d2-d2b2-43a7-bd2e-b11bafc80a2f","last_modified":1576536533680},{"schema":1576535859306,"derHash":"rVTYl5qhNun1aOASNKzKaMgabwD5YppxknU/dnUrymk=","subject":"SERIALNUMBER=D-059888-N,CN=Entitat de Certificaci\u00f3 de l'Administraci\u00f3 P\u00fablica Andorrana-19,O=M.I. Govern d'Andorra,L=Andorra la Vella,C=AD","subjectDN":"MIGqMQswCQYDVQQGEwJBRDEeMBwGA1UECgwVTS5JLiBHb3Zlcm4gZCdBbmRvcnJhMRMwEQYDVQQFEwpELTA1OTg4OC1OMRkwFwYDVQQHDBBBbm
RvcnJhIGxhIFZlbGxhMUswSQYDVQQDDEJFbnRpdGF0IGRlIENlcnRpZmljYWNpw7MgZGUgbCdBZG1pbmlzdHJhY2nDsyBQw7pibGljYSBBbmRvcnJhbmEtMTk=","whitelist":false,"attachment":{"hash":"2439a9af8e105590273a7f8dabfeff7fe23363d87885f4c5d124c95547f557cc","size":2674,"filename":"8uKsf7ZcawPyLn1CLEss26WHE7eXoc3NID0KIkebeE0=.pem","location":"security-state-staging/intermediates/95f44cc1-b11a-4c39-a5a3-792b30b17a70.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8uKsf7ZcawPyLn1CLEss26WHE7eXoc3NID0KIkebeE0=","crlite_enrolled":false,"id":"20a21317-92a5-4f06-a7ae-6ef34f6c2524","last_modified":1576536533677},{"schema":1576535857717,"derHash":"oTggpzh7360gRGPvqSFkFmObfnPDHcL0mfU/zU1NJcQ=","subject":"CN=GlobalSign CA 2 for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"MEsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSEwHwYDVQQDExhHbG9iYWxTaWduIENBIDIgZm9yIEFBVEw=","whitelist":false,"attachment":{"hash":"db9fd8cd368a78c90dd388eabe22ac3ee5212f6971941d7ade0a0962870b2211","size":1670,"filename":"VUXuJLG7aruc
p8FV8pQeMxfw0abKhW_SszycDbgPGng=.pem","location":"security-state-staging/intermediates/5aeeca9a-d281-461f-ad3c-0940396f589d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VUXuJLG7arucp8FV8pQeMxfw0abKhW/SszycDbgPGng=","crlite_enrolled":false,"id":"9e27f27f-9ae6-4c4d-9359-109637b37bd6","last_modified":1576536533673},{"schema":1576535854905,"derHash":"xFG++6hwFOzVeFHR5oJAPjymCWN3Ouf6oA/9b/rIsqM=","subject":"CN=Apple Public Server ECC CA 11 - G1,O=Apple Inc.,ST=California,C=US","subjectDN":"MGQxKzApBgNVBAMTIkFwcGxlIFB1YmxpYyBTZXJ2ZXIgRUNDIENBIDExIC0gRzExEzARBgNVBAoTCkFwcGxlIEluYy4xEzARBgNVBAgTCkNhbGlmb3JuaWExCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"159650c695404e21baee3c84c9de3b14321fc786ae0d79ab3c53f0265e742c3e","size":1179,"filename":"AW191Or9_rr7bm1xPdsvaWeUUt-lfxY77hstOrTylbc=.pem","location":"security-state-staging/intermediates/28078966-bfa4-4d0f-b3af-2e868d081f40.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AW191Or9/rr7bm1xPdsvaWeUUt+lfxY77hst
OrTylbc=","crlite_enrolled":false,"id":"b0ae8271-61f1-4d4d-89b4-39a4305bde48","last_modified":1576536533666},{"schema":1576535851987,"derHash":"lBuK7kvPHv6wR1+yef3dzzf8WyD2ToQs2doHcLFX6E0=","subject":"CN=QuoVadis Swiss Regulated CA G2x,O=QuoVadis Trustlink Schweiz AG,C=CH","subjectDN":"MH8xCzAJBgNVBAYTAkNIMSYwJAYDVQQKDB1RdW9WYWRpcyBUcnVzdGxpbmsgU2Nod2VpeiBBRzEeMBwGA1UEYQwVTlRSQ0gtQ0hFLTExMi4yMTAuMzQ5MSgwJgYDVQQDDB9RdW9WYWRpcyBTd2lzcyBSZWd1bGF0ZWQgQ0EgRzJ4","whitelist":false,"attachment":{"hash":"6908125b6436fe504186ad05f08f9ca8c51425e59416e586f9f37633a09be7f3","size":2564,"filename":"17usyAuuwq4vUDVkKKvhX_ccE7giLJSP0KwWdGbb-0k=.pem","location":"security-state-staging/intermediates/4b426595-1c8d-43aa-aec0-68f7d34d8ff0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"17usyAuuwq4vUDVkKKvhX/ccE7giLJSP0KwWdGbb+0k=","crlite_enrolled":false,"id":"f756cd0f-1e3b-4dc2-b9ec-0b4d23c9557c","last_modified":1576536533658},{"schema":1576535850582,"derHash":"dOswenisfoVwzBuuHFEQKmBTyW8zMtcDKF
p0O8vTXZ4=","subject":"CN=Symantec Class 3 ECC 256 bit SSL CA - G2,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGAMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxMTAvBgNVBAMTKFN5bWFudGVjIENsYXNzIDMgRUNDIDI1NiBiaXQgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"25db1a27864552963eca82334bf17c5f8a3fcd5136a534321802fe7faa031628","size":1878,"filename":"pvsOo_07kXBfe36yjJgm6H46EJRe7gurjSAeunJgFyg=.pem","location":"security-state-staging/intermediates/3b4e1c8b-6df4-468d-811d-6f9716be92d0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pvsOo/07kXBfe36yjJgm6H46EJRe7gurjSAeunJgFyg=","crlite_enrolled":true,"id":"f1c185b6-80ef-454d-904b-6d48cbff1b6f","last_modified":1576536533655},{"schema":1576535847703,"derHash":"DuTa9xqF2ELSP0kQ/UyQm3Jxhhkx8dX+rIaCJfUnAOI=","subject":"CN=Entrust Certification Authority - L1C,OU=www.entrust.net/rpa is incorporated by reference+OU=(c) 2009 Entrust\\, Inc.,O=Ent
rust\\, Inc.,C=US","subjectDN":"MIGxMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L3JwYSBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAwOSBFbnRydXN0LCBJbmMuMS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFD","whitelist":false,"attachment":{"hash":"47190803db64ab25e51ba6527fc97063b52701bffd05aa298e45e7e5dabf9efd","size":1780,"filename":"VFv5NemtodoRftw8KsvFb8AoCWwOJL6bOJS-Ui0bQ94=.pem","location":"security-state-staging/intermediates/af52194d-e2db-45ba-a919-c7d2518b2eb1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VFv5NemtodoRftw8KsvFb8AoCWwOJL6bOJS+Ui0bQ94=","crlite_enrolled":false,"id":"af3a7f96-b279-4002-b898-ea1e04bf6025","last_modified":1576536533651},{"schema":1576535844835,"derHash":"h7utTJFdVtLnTwRNciC5V9SoU9mhgYtS82JUF9tlXjo=","subject":"CN=DigiCert SHA2 Assured ID CA - G1,OU=DigiCert Organizational E-Mail Certificate,O=DigiCert Inc,C=US","subjectDN":"MIGEMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQg
SW5jMTMwMQYDVQQLEypEaWdpQ2VydCBPcmdhbml6YXRpb25hbCBFLU1haWwgQ2VydGlmaWNhdGUxKTAnBgNVBAMTIERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBDQSAtIEcx","whitelist":false,"attachment":{"hash":"87c92053d9938823a56b4253352209b1d9d45591fa0b90354ba17bc2dd0e6c6a","size":2121,"filename":"3iSMgpA0YuQJvvYFlTcCIByASHD5ze38kI_HcGk_5V0=.pem","location":"security-state-staging/intermediates/16516982-ac58-46e6-b7ac-4ff348b045ad.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3iSMgpA0YuQJvvYFlTcCIByASHD5ze38kI/HcGk/5V0=","crlite_enrolled":false,"id":"f9614db0-e95f-45ec-9e6a-44a7d7451bb4","last_modified":1576536533644},{"schema":1576535843434,"derHash":"Yt3PoFpjrPt8IHCkNSY/ImvyA5/BHRzPxzZ5LkRmmDs=","subject":"CN=BitCert RSA Extended Validation Secure Site CA,OU=Controlled by Sectigo exclusively for BitCert,O=\u6210\u90fd\u6570\u8bc1\u79d1\u6280\u6709\u9650\u516c\u53f8,L=Chengdu,ST=Sichuan,C=CN","subjectDN":"MIHLMQswCQYDVQQGEwJDTjEQMA4GA1UECBMHU2ljaHVhbjEQMA4GA1UEBxMHQ2hlbmdkdTEnMCUGA1UECgwe5oiQ6YO95pWw6K+B56
eR5oqA5pyJ6ZmQ5YWs5Y+4MTYwNAYDVQQLEy1Db250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIEJpdENlcnQxNzA1BgNVBAMTLkJpdENlcnQgUlNBIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"50c510f25b6df7566b8bdeb308314bae9b7f601ea6c791b72f5f9e4fc19c283d","size":2288,"filename":"zdcDW7Ob8cQk0OUfB1X4d7hxi0MhL_P6fBOYC60fvWs=.pem","location":"security-state-staging/intermediates/aedc46d5-227a-4543-b3d2-4bea3bd28a2b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zdcDW7Ob8cQk0OUfB1X4d7hxi0MhL/P6fBOYC60fvWs=","crlite_enrolled":false,"id":"8ee705aa-0876-4478-adde-0bfd21573307","last_modified":1576536533640},{"schema":1576535841997,"derHash":"bGZXjclq0T63toi9wJ20ctX78Ds70hMJZlBSqIbX6bQ=","subject":"CN=Apple Public Server RSA CA 11 - G1,O=Apple Inc.,ST=California,C=US","subjectDN":"MGQxKzApBgNVBAMTIkFwcGxlIFB1YmxpYyBTZXJ2ZXIgUlNBIENBIDExIC0gRzExEzARBgNVBAoTCkFwcGxlIEluYy4xEzARBgNVBAgTCkNhbGlmb3JuaWExCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"
961515735a466b16075e55c7da361418ee043d9647f04c36b42e00fdd5304fa3","size":2028,"filename":"xXDXs35ozcjwk0JgHOmIO-JXQxta1bb9rQ14FVEqdWE=.pem","location":"security-state-staging/intermediates/f51e2efe-1586-43cb-8513-42d7587139fd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xXDXs35ozcjwk0JgHOmIO+JXQxta1bb9rQ14FVEqdWE=","crlite_enrolled":false,"id":"b906d89b-573b-4733-920c-a0796309ee22","last_modified":1576536533636},{"schema":1576535840600,"derHash":"exZmp5kc/Ci2TaNx8XFB29b1Mh8huDoaZY1qQQ03TgU=","subject":"CN=EID-SK 2011,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MGExCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRQwEgYDVQQDDAtFSUQtU0sgMjAxMTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVl","whitelist":false,"attachment":{"hash":"89a20e4b68a5ddbe58c0227ee52ef3440a11519c35dff5be41948baf0eafaae1","size":1792,"filename":"TH9WdGlVHNg84FAVfGSYy4E-hezWZlRfg3kL9-E9txs=.pem","location":"security-state-staging/intermediates/3b232e22-80b5-4310-a0f3-ffe15d3325c9.pem","mimetype":
"application/x-pem-file"},"pubKeyHash":"TH9WdGlVHNg84FAVfGSYy4E+hezWZlRfg3kL9+E9txs=","crlite_enrolled":false,"id":"2294a4d1-a1d8-4963-beaf-58bf195a5728","last_modified":1576536533632},{"schema":1576535839167,"derHash":"Vk28anZVD9LU9LrGRIoRV7M8vY4LP9dtchB1QJZKhbU=","subject":"CN=Symantec Class 3 Secure Server CA - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEvMC0GA1UEAxMmU3ltYW50ZWMgQ2xhc3MgMyBTZWN1cmUgU2VydmVyIENBIC0gRzQ=","whitelist":false,"attachment":{"hash":"fde7df84fbe0edfbcf96535bc97d6525b3869212e9cada774905831935692c2f","size":1821,"filename":"9n0izTnSRF-W4W4JTq51avSXkWhQB8duS2bxVLfzXsY=.pem","location":"security-state-staging/intermediates/003fd367-2188-4dcf-9002-58cb555aca5f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9n0izTnSRF+W4W4JTq51avSXkWhQB8duS2bxVLfzXsY=","crlite_enrolled":true,"id":"72652e1b-dcd1-4778-8e82-d9e0cadea9d3","
last_modified":1576536533628},{"schema":1576535849224,"derHash":"m7XMhCevJ2vyFqdIrSV4XResur3eQoLmBtpSYs2UDzg=","subject":"CN=Cybertrust Global Root,O=Cybertrust\\, Inc","subjectDN":"MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA==","whitelist":false,"attachment":{"hash":"25ce176fa214e6e0fdebb7a1832dce5580bd8c52cea81154114f3b6cd553dbe6","size":1459,"filename":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=.pem","location":"security-state-staging/intermediates/12de7d43-38fd-47e4-abd4-cf2fd4a2bc1f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=","crlite_enrolled":true,"id":"884a0690-da65-400c-9fab-d03457385b58","last_modified":1576536533624},{"schema":1576535836297,"derHash":"z4iRXPmWkywrTL4wOQdtEZu3KLTzHkm2OlAi/mVImhI=","subject":"CN=AffirmTrust Extended Validation CA - EV1,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGDMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzAp
BgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMTAvBgNVBAMTKEFmZmlybVRydXN0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgLSBFVjE=","whitelist":false,"attachment":{"hash":"59f97b75ff4aa85380593bee67266d9df3536810543f8906024dce481dec03a9","size":1662,"filename":"xAD7ZgT8h1RQOQsz_6DxwKe17_oiwt-Jy6y1G1Akw00=.pem","location":"security-state-staging/intermediates/2d7384a5-c21e-4c9c-bab1-09bac6329f82.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xAD7ZgT8h1RQOQsz/6DxwKe17/oiwt+Jy6y1G1Akw00=","crlite_enrolled":true,"id":"de2d8ef8-81da-4d27-98dc-2aac5604a760","last_modified":1576536533616},{"schema":1576535831521,"derHash":"qpQuUStCh9W+7IWhxagcLd0TazzHBltoMPBoURBTBBI=","subject":"CN=FedEx Public Online CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=FedEx Corporation,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEaMBgGA1UEChMRRmVkRXggQ29ycG9yYXRpb24xPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEfMB0GA1UEAxMWRmVkRXggUHVibGljIE9ubGluZSBDQQ
==","whitelist":false,"attachment":{"hash":"5d96dd1daba1201584f62db2c1b9025798e5aaf6fa68c96d8f9fcbf8cba48a3a","size":2052,"filename":"_HtX-jLmvyksCJaoiBQGgnIqDG05H_g_Wm2PUhssqrc=.pem","location":"security-state-staging/intermediates/e46a68fc-41f3-4b6e-bdff-866d25e359cf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/HtX+jLmvyksCJaoiBQGgnIqDG05H/g/Wm2PUhssqrc=","crlite_enrolled":false,"id":"b8528abc-baa8-44b9-bd18-905904ccc434","last_modified":1576536533605},{"schema":1576535830116,"derHash":"Pr9f/sWC0nxpPRvDAQSmO7v8NlLHipUCfpG3+I2sY0U=","subject":"SERIALNUMBER=ZZZZZZV0,CN=Siemens Internet CA V1.0,OU=Copyright (C) Siemens AG 2011 All Rights Reserved,O=Siemens,C=DE","subjectDN":"MIGRMQswCQYDVQQGEwJERTEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaVjAxOjA4BgNVBAsMMUNvcHlyaWdodCAoQykgU2llbWVucyBBRyAyMDExIEFsbCBSaWdodHMgUmVzZXJ2ZWQxITAfBgNVBAMMGFNpZW1lbnMgSW50ZXJuZXQgQ0EgVjEuMA==","whitelist":false,"attachment":{"hash":"74b68a212aa3556e43f111197ff49f0b49384f017d5a0bf0f7691f07af8f
80df","size":1642,"filename":"rQOD_jrRH5t2JxCWlRagCWxoDrKXhsLELQ-GrW6LeRI=.pem","location":"security-state-staging/intermediates/a3a0159e-a06f-40cb-a535-7707bef95b3e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rQOD/jrRH5t2JxCWlRagCWxoDrKXhsLELQ+GrW6LeRI=","crlite_enrolled":false,"id":"0ed532dd-1eea-4b09-8cf1-7d776e31478a","last_modified":1576536533601},{"schema":1576535828734,"derHash":"z4qG5oA2cAGUyxeihzJWsMP0+HmxHpze2X+b2Um72s8=","subject":"SERIALNUMBER=202010,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDEw","whitelist":false,"attachment":{"hash":"c489aec141409cafd97e5f1081ec7447e97a8cc115dee8bf2856b9cfdc6b6a20","size":2333,"filename":"1Gj2oYHo5bx6UB6N1ZWaYH9p_JKTNdy9svwFXrtPOrE=.pem","location":"security-state-staging/intermediates/39a5b788-3acd-4c5a-95dd-da0e047288c7.pem","mimetype":"application/x-pem-file"},"pubKe
yHash":"1Gj2oYHo5bx6UB6N1ZWaYH9p/JKTNdy9svwFXrtPOrE=","crlite_enrolled":false,"id":"5c92465d-48b2-42ad-883f-f60b197d738b","last_modified":1576536533597},{"schema":1576535827277,"derHash":"f3VdwrnumesC1xyxgFBZqqu16z6FWNyowJodDeJY12c=","subject":"CN=DigiCert PKI Platform Class 3 Shared SMIME Organization CA,O=DigiCert\\, Inc.,C=US","subjectDN":"MGsxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjFDMEEGA1UEAxM6RGlnaUNlcnQgUEtJIFBsYXRmb3JtIENsYXNzIDMgU2hhcmVkIFNNSU1FIE9yZ2FuaXphdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"962146c4389406a5837448504ee8917c15a34a91f062837c24aae8379a53f649","size":2129,"filename":"kIMb0w91fvtIKY9SWGVWsLBdmzYR7ulapDwjSpj_sUw=.pem","location":"security-state-staging/intermediates/99ab416c-3ec0-4538-882f-0a8f848c39ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kIMb0w91fvtIKY9SWGVWsLBdmzYR7ulapDwjSpj/sUw=","crlite_enrolled":false,"id":"085b8109-df05-4f60-9f5b-24a135c8e502","last_modified":1576536533594},{"schema":1576535822371,"derHash":"
2HqtYV/nwjhQMiRNCM3+BusAVnWqGJLW5bgngPGfuH8=","subject":"O=Government Root Certification Authority,C=TW","subjectDN":"MD8xCzAJBgNVBAYTAlRXMTAwLgYDVQQKDCdHb3Zlcm5tZW50IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"3e9b27c1653abd1f49b5189ccb18ea591194a9d481d1174341a7cfca58f3cecc","size":2239,"filename":"pRovOgUOg4pQUGlleNu-2qwaEH7i2dSPrlBdGNDaXPg=.pem","location":"security-state-staging/intermediates/401c0af2-b653-4020-b4fc-748c2eb73eb0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pRovOgUOg4pQUGlleNu+2qwaEH7i2dSPrlBdGNDaXPg=","crlite_enrolled":true,"id":"e3ea9bb3-49c5-4737-8811-c946f0d12a7f","last_modified":1576536533586},{"schema":1576535825729,"derHash":"m+2DMyEROjZtb2zzecVtTY5w84AarBScRn3VR7lbgDA=","subject":"SERIALNUMBER=202001,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDIwMDE=","
whitelist":false,"attachment":{"hash":"1a6c080cdf1e6925db74f55875bcc4c9b4dee5cdc065acb74b17d9d378823ff6","size":2337,"filename":"wTIgzVyDobl0UXdknuaJLn7IjhxQWstWSpX0gYZxwSc=.pem","location":"security-state-staging/intermediates/33367ce4-c7a5-4a00-9a19-f5a75f62ec4e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wTIgzVyDobl0UXdknuaJLn7IjhxQWstWSpX0gYZxwSc=","crlite_enrolled":false,"id":"df664d63-b5f5-4b4c-9421-c7442a5e3d1f","last_modified":1576536533583},{"schema":1576535820935,"derHash":"M+8VHvsI0cRPuFzD8j7GhzAU6fiBaRvUk4t/JRWAtpQ=","subject":"CN=GlobalSign Root E46,O=GlobalSign nv-sa,C=BE","subjectDN":"MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQDExNHbG9iYWxTaWduIFJvb3QgRTQ2","whitelist":false,"attachment":{"hash":"41d424d3da88a84293ad6feed475c1a513b2a30cd740e6d86c7ec641141bd50e","size":1313,"filename":"4EoCLOMvTM8sf2BGKHuCijKpCfXnUUR_g_0scfb9gXM=.pem","location":"security-state-staging/intermediates/e4bdfc10-cf3c-4f1d-8566-19d3353552f5.pem","mimetype
":"application/x-pem-file"},"pubKeyHash":"4EoCLOMvTM8sf2BGKHuCijKpCfXnUUR/g/0scfb9gXM=","crlite_enrolled":false,"id":"59fa6d74-626e-410e-a605-3508e34fb522","last_modified":1576536533576},{"schema":1576535815181,"derHash":"ScWCcPcPG+C3wZ0bwsLrxB4v3g1IhdT6Ze8DcKzsegA=","subject":"CN=Trustwave Extended Validation SHA256 CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGxMQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE5MDcGA1UEAxMwVHJ1c3R3YXZlIEV4dGVuZGVkIFZhbGlkYXRpb24gU0hBMjU2IENBLCBMZXZlbCAxMR8wHQYJKoZIhvcNAQkBFhBjYUB0cnVzdHdhdmUuY29t","whitelist":false,"attachment":{"hash":"8d10fdb281e7d06718cfb07684595820b2ba91fe916794f089027ecd08741ae9","size":1808,"filename":"zE8XYBj3Yf6nXNVdTry0tXUx6LGqIbwnbyd7rIOKue0=.pem","location":"security-state-staging/intermediates/ce6b6bbd-6319-4603-8b73-cca667b9433f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zE8XYBj3Yf6nXNVdTry0tXUx6LGqIb
wnbyd7rIOKue0=","crlite_enrolled":true,"id":"9ae59d4e-7e03-474f-941d-3981e7735030","last_modified":1576536533565},{"schema":1576535813752,"derHash":"cqxCi7cV313Br4dXkwjozC6/pYhoa1Zykv1w7rD+6Lc=","subject":"O=Government Root Certification Authority,C=TW","subjectDN":"MD8xCzAJBgNVBAYTAlRXMTAwLgYDVQQKDCdHb3Zlcm5tZW50IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"9f2cd48065c65b19c1567155587ee5b2ea12096fc059100e9dae031f046e8223","size":2247,"filename":"pRovOgUOg4pQUGlleNu-2qwaEH7i2dSPrlBdGNDaXPg=.pem","location":"security-state-staging/intermediates/80b2e6eb-6ab0-45b0-934a-0bd551103c17.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pRovOgUOg4pQUGlleNu+2qwaEH7i2dSPrlBdGNDaXPg=","crlite_enrolled":true,"id":"5c8d7aa0-ea1f-4169-aad6-87d9f174d9b1","last_modified":1576536533561},{"schema":1576535810909,"derHash":"m1P2nYRHsBsB5FZbhT4oi2y4IpHagqW0G7wVwvOtZUg=","subject":"CN=OneSignSSL RSA EV Secure Server CA,OU=Controlled by Sectigo exclusively for One
Sign Pte. Ltd.,O=One Sign Pte. Ltd.,L=Singapore,ST=Singapore,C=SG","subjectDN":"MIHCMQswCQYDVQQGEwJTRzESMBAGA1UECBMJU2luZ2Fwb3JlMRIwEAYDVQQHEwlTaW5nYXBvcmUxGzAZBgNVBAoTEk9uZSBTaWduIFB0ZS4gTHRkLjFBMD8GA1UECxM4Q29udHJvbGxlZCBieSBTZWN0aWdvIGV4Y2x1c2l2ZWx5IGZvciBPbmUgU2lnbiBQdGUuIEx0ZC4xKzApBgNVBAMTIk9uZVNpZ25TU0wgUlNBIEVWIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"d526be8dbfd4f8a1f4fa720b72484238615a1d43b39f4d9644bcd8a645363d48","size":2276,"filename":"N8OD-hIuhMaCwngPwhlrWu8ly-IEZbRt_gL0S4FH9GU=.pem","location":"security-state-staging/intermediates/580704b8-c2d3-4b2b-ac3f-4f4088f817ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N8OD+hIuhMaCwngPwhlrWu8ly+IEZbRt/gL0S4FH9GU=","crlite_enrolled":false,"id":"2f63765d-9e3e-4f03-9bc9-57612db1fbf6","last_modified":1576536533557},{"schema":1576535812375,"derHash":"Qx9jChtd5vD/G3MxjQGqqf5KEl8wJsHMMOJc9KXLuj8=","subject":"CN=BitCert RSA Domain Secure Site CA,O=BitCert,L=Chengdu,ST=Sichuan,C=CN","subjectDN":"MG8x
CzAJBgNVBAYTAkNOMRAwDgYDVQQIEwdTaWNodWFuMRAwDgYDVQQHEwdDaGVuZ2R1MRAwDgYDVQQKEwdCaXRDZXJ0MSowKAYDVQQDEyFCaXRDZXJ0IFJTQSBEb21haW4gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"6ffbd17583806cfd9f9461e1213cba2e87fa5d6150d467d60f1bea3a6057e527","size":2129,"filename":"cNE8mPePscWLEKBJVbelkXANOrn4fk_NgWvF39Zm9FU=.pem","location":"security-state-staging/intermediates/082754db-89db-4a21-b19c-beb0cea8ad0e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cNE8mPePscWLEKBJVbelkXANOrn4fk/NgWvF39Zm9FU=","crlite_enrolled":false,"id":"67e2adbf-676e-4de8-b707-4616d1daef65","last_modified":1576536533550},{"schema":1576535808036,"derHash":"Fq1RJaCVWvAmQhhUXnSCfiw5oDLV0L9mWxfDv5nSNJY=","subject":"CN=BitCert ECC Extended Validation Secure Site CA,OU=Controlled by Sectigo exclusively for BitCert,O=\u6210\u90fd\u6570\u8bc1\u79d1\u6280\u6709\u9650\u516c\u53f8,L=Chengdu,ST=Sichuan,C=CN","subjectDN":"MIHLMQswCQYDVQQGEwJDTjEQMA4GA1UECBMHU2ljaHVhbjEQMA4GA1UEBxMHQ2hlbmdkdTEnMCUGA1UECgwe5o
iQ6YO95pWw6K+B56eR5oqA5pyJ6ZmQ5YWs5Y+4MTYwNAYDVQQLEy1Db250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIEJpdENlcnQxNzA1BgNVBAMTLkJpdENlcnQgRUNDIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"0bf8e9bb5d7d37aa96702157cb3f2294932a83c08a9d1b6c2b943e541fc807fb","size":1451,"filename":"7tz57vvcF4mLPHC5kUb-dwbT09hTvQJZuiNDyCG4Swc=.pem","location":"security-state-staging/intermediates/ae19039d-8a97-4be8-9215-27223a283e1e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7tz57vvcF4mLPHC5kUb+dwbT09hTvQJZuiNDyCG4Swc=","crlite_enrolled":false,"id":"402c61da-df23-4bb5-9b05-933a5fcc8719","last_modified":1576536533546},{"schema":1576535806599,"derHash":"f9zjv0EDwmhLOtu1eSiEvUXHUJTCF3iIY5UDRveckKM=","subject":"CN=Let's Encrypt Authority X1,O=Let's Encrypt,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQDExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBYMQ==","whitelist":false,"attachment":{"hash":"bbe724ea37646109cfdf462e31c712ce186
0c42f0c33c899f330a39c44c47cc9","size":1674,"filename":"YLh1dUR9y6Kja30RrAn7JKnbQG_uEtLMkBgFF2Fuihg=.pem","location":"security-state-staging/intermediates/ca8a4374-c876-45a5-a7e5-93bbf9babd0c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YLh1dUR9y6Kja30RrAn7JKnbQG/uEtLMkBgFF2Fuihg=","crlite_enrolled":false,"id":"0638efef-e35a-421b-af37-979d39b08cbc","last_modified":1576536533543},{"schema":1576535805086,"derHash":"U2dpLs5it1jQTZt+bfsNswf4WevGpstfd/8kVh18wAQ=","subject":"CN=USERTrust RSA Extended Validation Secure Server CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGVMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE7MDkGA1UEAxMyVVNFUlRydXN0IFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"e824527655464dd31a8c05c4d0472f598ceba1ccfa4c8b6f1f82aacae141213f","size":2174,"filename":"8E_u4IJLStWPqhVEn4td_2Ae6WYCii1AmJC2dgTCj1s=.pem","l
ocation":"security-state-staging/intermediates/81cfbb36-b77a-44c7-b9d5-e2c1a3bdf3fb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8E/u4IJLStWPqhVEn4td/2Ae6WYCii1AmJC2dgTCj1s=","crlite_enrolled":true,"id":"e80e13e0-9ae0-4852-86c7-1c266fe0906a","last_modified":1576536533536},{"schema":1576535803675,"derHash":"Hk/DTSbgeT1VnjIv4RHx4ZqdLjS8JdPEJ7AypI0sW2o=","subject":"CN=Encryption Everywhere ECC DV TLS CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLDAqBgNVBAMTI0VuY3J5cHRpb24gRXZlcnl3aGVyZSBFQ0MgRFYgVExTIENB","whitelist":false,"attachment":{"hash":"b2e5666f89f6d4fcf8a08fb74f9c91de3fd68ec696f62a873e86e4f8f9820119","size":1402,"filename":"Y08hSYf9OdhKAGME14XuWUxmQaPENh7XTciOu54_cJM=.pem","location":"security-state-staging/intermediates/e826a1f2-a878-4c8b-a4fe-e7e952f31ace.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y08hSYf9OdhKAGME14XuWUxmQaPENh7XTciOu54/cJM=","crlite_en
rolled":false,"id":"088948ef-fc2d-4e5d-8116-9d744c2d517a","last_modified":1576536533532},{"schema":1576535802266,"derHash":"X6UFXyQNl2NCYTkfBp1nNWiQpmaZrDU8h5bAIIfD9iU=","subject":"SERIALNUMBER=202005,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDIwMDU=","whitelist":false,"attachment":{"hash":"a1d2ba4c6e094c13518e23442e78edfc498b63f04ef46e0ff1d638ec4611959f","size":2337,"filename":"yXbKpkevIJYstXu3Y8aQhnKxJCsgkPusJy_04jWrd9k=.pem","location":"security-state-staging/intermediates/da35fd7e-cb9e-45b0-b785-a3544f24944a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yXbKpkevIJYstXu3Y8aQhnKxJCsgkPusJy/04jWrd9k=","crlite_enrolled":false,"id":"719da943-9eca-48e7-a6f7-8fabfaa691eb","last_modified":1576536533527},{"schema":1576535800599,"derHash":"EaJ2cYciZURctyWOsoRO5hTRR3e59vc76VMhIvIfrQ0=","subject":"CN=JPRS Domain Validation A
uthority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"4b63dd60cab5b91793fb269517be9ffd9aadf4f0d673182ce5c573d60f93a5f0","size":1792,"filename":"n1ufb8l1_ENW_uOKNKgHIeBe_NgVI39f0IzwWmCVHvE=.pem","location":"security-state-staging/intermediates/219df0bb-3a25-4e71-9a82-6e5b4dff8b72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n1ufb8l1/ENW/uOKNKgHIeBe/NgVI39f0IzwWmCVHvE=","crlite_enrolled":true,"id":"fa314713-1710-4998-8e47-324d8a08bbcb","last_modified":1576536533524},{"schema":1576535799214,"derHash":"PX/nnGA3ySsvcebuMuqOSJe+DlJHE/pXZv5QcKuuNbQ=","subject":"CN=OneSign OV Code Signing CA,O=One Sign Pte. Ltd.,L=Singapore,ST=Singapore,C=SG","subjectDN":"MHcxCzAJBgNVBAYTAlNHMRIwEAYDVQQIEwlTaW5nYXBvcmUxEjAQBgNVBAcTCVNpbmdhcG9yZTEbMBkGA1UEChMST25lIFNpZ24gUHRlLiBMdGQuMSMwIQYDVQQDExp
PbmVTaWduIE9WIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"d0d86e927bb45144063cad68a993a2989fc62706735c52f3bfe6e4f30652c741","size":2113,"filename":"5nYj6KpzYdmcxBc53ixNusk36BbU6mrGTXPVKqFZz4o=.pem","location":"security-state-staging/intermediates/6a639b4c-4c2d-449d-9944-d639bf15eea6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5nYj6KpzYdmcxBc53ixNusk36BbU6mrGTXPVKqFZz4o=","crlite_enrolled":false,"id":"9380b8fd-2e8a-4be6-8e33-2ac89816bd16","last_modified":1576536533520},{"schema":1576535797770,"derHash":"ceZTv79eclFbQJm71eyIcoErR8bsH6mt0yfhySyeoW0=","subject":"CN=Certigna Services CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MH0xCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlESElNWU9USVMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxHTAbBgNVBGEMFE5UUkZSLTQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQQDDBRDZXJ0aWduYSBTZXJ2aWNlcyBDQQ==","whitelist":false,"attachment":{"hash":"1e69d697d43d9ba8bb5bef41ca322d6effdfa8f6fb680b6b8c84759cb9c7151f","size":2170,"filename":"Vvyvg4-bOEbI6aO7K
28ioVsUfckLqCSKqlIqZTEB_uE=.pem","location":"security-state-staging/intermediates/fd277823-b07c-41b0-bff8-0cdb90cd2145.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vvyvg4+bOEbI6aO7K28ioVsUfckLqCSKqlIqZTEB/uE=","crlite_enrolled":true,"id":"e83a378a-19a8-4110-bf0b-0f49b8965b01","last_modified":1576536533516},{"schema":1576535796324,"derHash":"l8ZzTlSpCzt8D1QCU39IH95CN5ndsub4WybuGqctITQ=","subject":"SERIALNUMBER=202002,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDIwMDI=","whitelist":false,"attachment":{"hash":"c0fa3dc15aeb9baebdbfdfe25bcfee4127a355c5cb6c09e43c562da3b547eeea","size":2337,"filename":"2rt-W6yXxYkYjTahsDT5hHsIBPVpVTxJQpmpCAktRXo=.pem","location":"security-state-staging/intermediates/da70c200-aa3a-489e-b91c-90be8cf90677.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2rt+W6yXxYkYjTahsDT5hHsIBPVpVTxJQp
mpCAktRXo=","crlite_enrolled":false,"id":"47a787f1-e657-48ab-abc2-2282a260dd45","last_modified":1576536533512},{"schema":1576535793514,"derHash":"ndwuDVW0YeDHMigoLfVrK+8iTKI4VoHRe26MB3hSVzw=","subject":"CN=GlobalSign CA 4 for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"MEsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSEwHwYDVQQDExhHbG9iYWxTaWduIENBIDQgZm9yIEFBVEw=","whitelist":false,"attachment":{"hash":"1971e4bd393e616d4a85fc372108d3352c1321acd50f44ae8d74ec89a345738a","size":2089,"filename":"Xj0OpiKM5fkJ7g__pfUXsKnp9Ggz3CaAgIY6QU_Ml6I=.pem","location":"security-state-staging/intermediates/b5319024-9627-4d8d-b25c-c792f4e61e32.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Xj0OpiKM5fkJ7g//pfUXsKnp9Ggz3CaAgIY6QU/Ml6I=","crlite_enrolled":false,"id":"0e72f222-c8c3-4c56-8ae7-c680fea038a5","last_modified":1576536533509},{"schema":1576535791937,"derHash":"ixbUj3Id+rFXIUuazp3ajvuloGtO7ZAYBvCG0d+OrTc=","subject":"CN=Entrust Code Signing Certification Authority - L1D,OU=www.en
trust.net/rpa is incorporated by reference+OU=(c) 2009 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIG+MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L3JwYSBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAwOSBFbnRydXN0LCBJbmMuMTswOQYDVQQDEzJFbnRydXN0IENvZGUgU2lnbmluZyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEwxRA==","whitelist":false,"attachment":{"hash":"fdd58cea7e31810e5f8ba89b9c1c7613eb91f74984042fd3837aefe09410de81","size":1796,"filename":"q4FwU8-QScEfhsNqympCne6e65ZASaL3iUkrlGsfLn4=.pem","location":"security-state-staging/intermediates/8aed1bf7-b11b-476e-823d-17c0cf8948ee.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q4FwU8+QScEfhsNqympCne6e65ZASaL3iUkrlGsfLn4=","crlite_enrolled":false,"id":"1276d7f5-5c93-47a5-ba50-e376b6f24b77","last_modified":1576536533505},{"schema":1576535788951,"derHash":"OALkJFFveO6sMpqumx9gpBLb4dWwldesncDc3ePB9fs=","subject":"CN=Ford Motor Company - Enterprise Issuing CA01,O=Ford Motor Company
,L=Dearborn,ST=Michigan,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzEbMBkGA1UEChMSRm9yZCBNb3RvciBDb21wYW55MREwDwYDVQQHEwhEZWFyYm9ybjERMA8GA1UECBMITWljaGlnYW4xNTAzBgNVBAMTLEZvcmQgTW90b3IgQ29tcGFueSAtIEVudGVycHJpc2UgSXNzdWluZyBDQTAx","whitelist":false,"attachment":{"hash":"66305a50b272e38167edac50ea0ea4251e15c161604ba011e5ce7a459a47d597","size":2588,"filename":"CqwsdVHa6T0W9pos5-f88X2UNjXr4wKHpQ8Muq3ipRA=.pem","location":"security-state-staging/intermediates/7824b869-27a2-4934-a88c-9eb415787415.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CqwsdVHa6T0W9pos5+f88X2UNjXr4wKHpQ8Muq3ipRA=","crlite_enrolled":false,"id":"b7ef57bf-52b7-42de-ba58-d36fd3aa3e00","last_modified":1576536533498},{"schema":1576535794903,"derHash":"Xh2m6S4okrpqc/xQjkHzX5+SfkaEKCmA4XoBORii6lA=","subject":"CN=UIS-IntB-CA","subjectDN":"MBYxFDASBgNVBAMTC1VJUy1JbnRCLUNB","whitelist":false,"attachment":{"hash":"df9806c74f3765764c083de1480b0a52cd10e922c4f3954907a5dd627d515904","size":1707,"filename":"ijOSli4ZzEAaB9BJ
ofum10hbmy0ANTh-Hk3l6PItp34=.pem","location":"security-state-staging/intermediates/2005e5a9-9e1a-4fdd-92da-332b6cf65fe2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ijOSli4ZzEAaB9BJofum10hbmy0ANTh+Hk3l6PItp34=","crlite_enrolled":false,"id":"78dd32a3-453b-4588-8500-d6e3ba556e36","last_modified":1576536533495},{"schema":1576535787501,"derHash":"WXK5vUcQF9XzJwW+6RVwNiZXX4snCjnBwxLH+SRsENQ=","subject":"SERIALNUMBER=ZZZZZZA2,CN=Siemens Issuing CA EE Auth 2016,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGfMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQTIxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMSgwJgYDVQQDDB9TaWVtZW5zIElzc3VpbmcgQ0EgRUUgQXV0aCAyMDE2","whitelist":false,"attachment":{"hash":"b12e53720e7865f31d817d0aa08374ddea48a85382ed262c82bbeb55a1b88f0f","size":3133,"filename":"mK19rDzuSvRGMEDPJLlMOI0yXJx2HMcqf75ficQsHb4=.pem","location":"security-state-staging/intermediates/25f101
de-ca3e-462b-ae08-6d5c61e71bdb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mK19rDzuSvRGMEDPJLlMOI0yXJx2HMcqf75ficQsHb4=","crlite_enrolled":true,"id":"8555121f-5201-43c7-a55b-0a7a5c2bcaba","last_modified":1576536533491},{"schema":1576535784624,"derHash":"r2OdwLuxaO/3WxURfYiJN+tkwbBFPxaNG4xS7PBKy5M=","subject":"CN=AffirmTrust Networking Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=AffirmTrust,C=US","subjectDN":"MIGKMQswCQYDVQQGEwJVUzEUMBIGA1UECgwLQWZmaXJtVHJ1c3QxLTArBgNVBAsMJGh0dHA6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291cmNlczE2MDQGA1UEAwwtQWZmaXJtVHJ1c3QgTmV0d29ya2luZyBFeHRlbmRlZCBWYWxpZGF0aW9uIENB","whitelist":false,"attachment":{"hash":"567c0deb382057dc9c24a94f806ff056b5ca63c56b30305ac6dbb6b17fc7c414","size":1581,"filename":"DJdCClyMUYAHIPZVCPPJWty8pFkigRmSqua8RS8UJpk=.pem","location":"security-state-staging/intermediates/1e83b359-8021-4e03-997d-db1ee57d127d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DJdCClyMUYAHIPZVCPPJWty8pFkigRmSqua8RS8U
Jpk=","crlite_enrolled":false,"id":"c50530e0-79bd-45c9-a333-3de7cc66a670","last_modified":1576536533484},{"schema":1576535780113,"derHash":"c50MOnG2w3fL0cQIrnzBlzLCy++GINY7Fsn9AYXfmnE=","subject":"CN=Atos TrustedRoot Client-CA for equensWorldlinePartner 2 2019,O=Atos,C=DE","subjectDN":"MGMxRTBDBgNVBAMMPEF0b3MgVHJ1c3RlZFJvb3QgQ2xpZW50LUNBIGZvciBlcXVlbnNXb3JsZGxpbmVQYXJ0bmVyIDIgMjAxOTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"ccd6bf64b0fe85f84a39efc0e01f5c14bd29d87d463cebcb319c05a721bb707b","size":1963,"filename":"mYzVJyiW8rCGgYKsa2ZqYeJxDrP-AP2AAx-gS-JpbgI=.pem","location":"security-state-staging/intermediates/a180baa5-7ae1-4c2f-b681-e2005c81c50d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mYzVJyiW8rCGgYKsa2ZqYeJxDrP+AP2AAx+gS+JpbgI=","crlite_enrolled":false,"id":"9300e6b6-6f08-4bef-a127-adb3c76eefe1","last_modified":1576536533472},{"schema":1576535777302,"derHash":"/TOu/TOhYfrAGQ5B353VDDM56IPAP0nEoqsriVbvVNQ=","subject":"CN=Symantec C
lass 3 Organizational CA - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEwMC4GA1UEAxMnU3ltYW50ZWMgQ2xhc3MgMyBPcmdhbml6YXRpb25hbCBDQSAtIEc0","whitelist":false,"attachment":{"hash":"8bb58e69a554da25ed0e9a2e2c0f0b5c5c4a14229e342a65c32c6aac31ba5d3a","size":1894,"filename":"uNzZ9PuqZ750aAgYLpKabu6MjXW-QU_Qg4jjBcbvEik=.pem","location":"security-state-staging/intermediates/eab13c01-ef46-422e-9972-eae0610179d2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uNzZ9PuqZ750aAgYLpKabu6MjXW+QU/Qg4jjBcbvEik=","crlite_enrolled":false,"id":"ad42cc39-3cc7-493a-be53-30f0af27396d","last_modified":1576536533468},{"schema":1576535778745,"derHash":"djSK3uSOYdcynuSDEJZR6ksuC1wC998lg/4QdO2cb+w=","subject":"CN=SafeToOpen ClientCert ICA RSA R1,O=SafeToOpen Ltd,C=NZ","subjectDN":"MFExCzAJBgNVBAYTAk5aMRcwFQYDVQQKDA5TYWZlVG9PcGVuIEx0ZDEpMCcGA1UEAwwgU2FmZVRvT3BlbiBDbGllbnRDZX
J0IElDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"d2225a4c67341a1d2bb21c9161f9f20b36f3436d9503b4c0ed123d5c05200e9e","size":2483,"filename":"e9_bjft2byP0VwBVyMlQUiqIe4r0YRn4_rKl-kQ3Vt4=.pem","location":"security-state-staging/intermediates/3a631fc8-f14e-493b-9c86-1f3c36c6637d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e9/bjft2byP0VwBVyMlQUiqIe4r0YRn4/rKl+kQ3Vt4=","crlite_enrolled":false,"id":"709c1ccf-bcc4-4d2c-be64-a416ecaddacd","last_modified":1576536533464},{"schema":1576535771624,"derHash":"6H6ivtbGIDssVbAP5J0odvumRwIQWut0i4ZakYtcfSc=","subject":"CN=GlobalSign Domain Validation CA - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"d4e7ca7e1402409ada7f0f5a43f305ef2e3e302c74d18ba940f4da00d03dc570","size":1569,"filename":"TEb9SdyV5a_KjM7PCm4dOji-92ekxy7uuBKyI1Gg5v4=.pem","location":"security-state-staging/int
ermediates/9ee14808-899d-4024-8b79-c401b44fd1ea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TEb9SdyV5a/KjM7PCm4dOji+92ekxy7uuBKyI1Gg5v4=","crlite_enrolled":false,"id":"9b7b6720-a2ad-489f-9c69-dfd96a8c27b1","last_modified":1576536533450},{"schema":1576535770260,"derHash":"2jvitqbZcVwSlaQr5SbgAB0Q5ddUDwbnYxs05kSTSEg=","subject":"CN=Secure Site Pro ECC CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIjAgBgNVBAMTGVNlY3VyZSBTaXRlIFBybyBFQ0MgQ0EgRzI=","whitelist":false,"attachment":{"hash":"788b2f3686e8970c3f5cfad0711b04ffb48ca9be4a2d82a766de64e5a7aa6248","size":1394,"filename":"SM9Xyw9hNxw5i17xxTmtGrBPfKQFpQaYXQuRAEx9ygs=.pem","location":"security-state-staging/intermediates/f6d2b6fc-b4fb-4bad-81b8-9e27104a4e8c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SM9Xyw9hNxw5i17xxTmtGrBPfKQFpQaYXQuRAEx9ygs=","crlite_enrolled":true,"id":"8353b3ca-43b2-48d1-87b8-c28fcd0ba0e3",
"last_modified":1576536533447},{"schema":1576535768847,"derHash":"O5HEzWer3x1Scu67Lienee8C2CDOAvZLU7ncXnhnQ7g=","subject":"CN=Document Signing ECC ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MH4xCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMSQwIgYDVQQDDBtEb2N1bWVudCBTaWduaW5nIEVDQyBJQ0EgUjE=","whitelist":false,"attachment":{"hash":"1d398f18501d3a5e09a31afee26764aead55237baa53a49993a4afaa2acaff8e","size":1366,"filename":"FZ8xakLVjVKD3n_pRB8V9qVb1lmJuM7JBY6uzwl3Ht0=.pem","location":"security-state-staging/intermediates/a5f07e80-dd03-4fbe-b113-0487d431c83b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FZ8xakLVjVKD3n/pRB8V9qVb1lmJuM7JBY6uzwl3Ht0=","crlite_enrolled":false,"id":"c3150be2-0aba-41ac-86ce-a463eb088d4f","last_modified":1576536533443},{"schema":1576535767420,"derHash":"Bb3Zp8ZwbTnW2xpYCq/2fUZzAnts8B/RU2fY7YSokPA=","subject":"CN=Symantec Class 3 Organizational
CA - G2,OU=VeriSign Trust Network+OU=Terms of use at https://www.verisign.com/rpa (c)11,O=Symantec Corporation,C=US","subjectDN":"MIG8MQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOzA5BgNVBAsTMlRlcm1zIG9mIHVzZSBhdCBodHRwczovL3d3dy52ZXJpc2lnbi5jb20vcnBhIChjKTExMTAwLgYDVQQDEydTeW1hbnRlYyBDbGFzcyAzIE9yZ2FuaXphdGlvbmFsIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"ef5b81322c43753e4a9ea1ffbbe9bdcd81aa70b6aee06e7346ec6e8fab589497","size":2125,"filename":"8Vaa7hyPgvofrzXh1bAlF62L9kQg_5tbO-89MDeNtLQ=.pem","location":"security-state-staging/intermediates/038fe9fc-bab4-43ca-832c-ef6d0f3ba1fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8Vaa7hyPgvofrzXh1bAlF62L9kQg/5tbO+89MDeNtLQ=","crlite_enrolled":false,"id":"96bc6b19-4307-4508-8c1f-7093ac0bcddc","last_modified":1576536533439},{"schema":1576535765971,"derHash":"679NxgDBfaBDgd79z8EZw/NO+0oE0IYJELgTx3ktdYU=","subject":"CN=Certigna Entity CA,OU=0002 48146308100036,O=DHI
MYOTIS,C=FR","subjectDN":"MHsxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlESElNWU9USVMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxHTAbBgNVBGEMFE5UUkZSLTQ4MTQ2MzA4MTAwMDM2MRswGQYDVQQDDBJDZXJ0aWduYSBFbnRpdHkgQ0E=","whitelist":false,"attachment":{"hash":"ada86b610b9f472f00e1921d532cf509f6692c87cb45580cbdd6cdb13bc4ffbd","size":2170,"filename":"0Eiyrr-wFIp1JqShtXzNCtJt2yUU0-j_mDnLwk1-AHk=.pem","location":"security-state-staging/intermediates/f1c34a68-978a-4f12-85f8-06564ca3f194.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0Eiyrr+wFIp1JqShtXzNCtJt2yUU0+j/mDnLwk1+AHk=","crlite_enrolled":false,"id":"b641a082-df69-4132-a8a8-a1a801f83c2c","last_modified":1576536533436},{"schema":1576535764596,"derHash":"xa2jSGvdtUWzqn7JnGnBrtlCdNX+ynkz4BMuIS8CZnE=","subject":"CN=BitCert ECC Domain Secure Site CA,O=BitCert,L=Chengdu,ST=Sichuan,C=CN","subjectDN":"MG8xCzAJBgNVBAYTAkNOMRAwDgYDVQQIEwdTaWNodWFuMRAwDgYDVQQHEwdDaGVuZ2R1MRAwDgYDVQQKEwdCaXRDZXJ0MSowKAYDVQQDEyFCaXRDZXJ0IEVDQyBEb21haW4gU2VjdXJlIFNpdGUgQ0E=","
whitelist":false,"attachment":{"hash":"cf45883f3cb3aaa3f86e6fd95964673ab8be0ec688db38395556914cc50c457e","size":1288,"filename":"l03AMxIZai8wvW2nrYEfG_5pj3_oGL2PS1_B5kv47yg=.pem","location":"security-state-staging/intermediates/1dc1c5ba-377f-4791-bea6-1421a0da10d3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"l03AMxIZai8wvW2nrYEfG/5pj3/oGL2PS1/B5kv47yg=","crlite_enrolled":false,"id":"a06f0bc4-ae00-450f-9b23-5180ec001c0e","last_modified":1576536533432},{"schema":1576535763166,"derHash":"TElDueqhTqKmm4p+TY2okIHuoRyH6CKbm3T2inrTO3k=","subject":"CN=DigiCert High Assurance EV CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKDAmBgNVBAMTH0RpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEVWIENBLTE=","whitelist":false,"attachment":{"hash":"131d16f8a3827db506e21e62347e6935b0db5934f7cd31f78e3735432e71fcd8","size":2446,"filename":"suo4a3Sz765--hurzLhgwqwpR8K0KVkwTarqwwCDJB4=.pem","location":"security-sta
te-staging/intermediates/53ce7c2b-bdc9-4c39-8f4e-19e5a9954bb6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"suo4a3Sz765++hurzLhgwqwpR8K0KVkwTarqwwCDJB4=","crlite_enrolled":false,"id":"97d292c2-1d66-4cc8-8ec8-a8911cfaad9e","last_modified":1576536533429},{"schema":1576535759951,"derHash":"61fyBRE6WBFH4PHZcygnT7Aw7GnuyJyil9z1Wj+0Rjw=","subject":"CN=Cybertrust Japan Public CA G3,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MFoxCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEmMCQGA1UEAxMdQ3liZXJ0cnVzdCBKYXBhbiBQdWJsaWMgQ0EgRzM=","whitelist":false,"attachment":{"hash":"d0ce3f546a0b5b31ffeafd1b7b56cdfb890a2a42f77fbd7a34624bfeb1403b9e","size":1569,"filename":"QnKSPXOthAGsklSpx8zrmS9gtfzbJ28gPMA9AMjEoJc=.pem","location":"security-state-staging/intermediates/cfc9aae0-3939-46e2-b9b5-031113811434.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QnKSPXOthAGsklSpx8zrmS9gtfzbJ28gPMA9AMjEoJc=","crlite_enrolled":true,"id":"170fdc60-b3a3-4542-9702-1b3b2f475163
","last_modified":1576536533421},{"schema":1576535754283,"derHash":"A3YWMmo0L8B4DUr/tzRP8Okl0eD95Hgqt4L0q9W1MrA=","subject":"CN=Code Signing ECC ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHoxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMSAwHgYDVQQDDBdDb2RlIFNpZ25pbmcgRUNDIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"36f68794088b135f677cebba75e488317c36d03d79ae9a05ab74f929ff5b8764","size":1329,"filename":"jZT0dnUpZ1-v9bahYwUFxf9JNVofQeMD_ZBqvCPnxLA=.pem","location":"security-state-staging/intermediates/8e437135-4819-4662-96a1-702396b42c86.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jZT0dnUpZ1+v9bahYwUFxf9JNVofQeMD/ZBqvCPnxLA=","crlite_enrolled":false,"id":"090c1b74-da3c-4164-b879-475bec9c94e8","last_modified":1576536533413},{"schema":1576535752775,"derHash":"+/gAl7yu7qyhOf263rWt2YyRu2msHUpmnU3gPgg1TU8=","subject":"SERIALNUMBER=202006,CN=Citizen CA,O=Certi
post N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDA2","whitelist":false,"attachment":{"hash":"9b87f4ed0a777f1fe45c49dfb7ca4daed55e7e7a233f5f373c4019fba5815a9c","size":2333,"filename":"tmU4vIMx2B_mhNc1TEZrX5KYbxjUTIs_Eu0mrAh0UJ0=.pem","location":"security-state-staging/intermediates/d60c2192-fd0b-4214-a308-ffdc49d9ef23.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tmU4vIMx2B/mhNc1TEZrX5KYbxjUTIs/Eu0mrAh0UJ0=","crlite_enrolled":false,"id":"a470c28a-df12-4579-b9a6-1f16a4ca2214","last_modified":1576536533408},{"schema":1576535757125,"derHash":"A86bxxuR/bfLPFI1yuBwHLSGu9Yo1KreWEH8XwqjekY=","subject":"CN=DigiCert CN RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHjAcBgNVBAMTFURpZ2lDZXJ0IENOIFJTQSBDQSBHMQ==","whitelist":false,"attachment":{"hash":"59
5bf22b78664a42587deccbb284643462b25d170791f641b0fd546e4050d8f6","size":1829,"filename":"MIKoeatlSqVA3aCIrE0_JYoP9vF4XSCTPHy-c9vAsKk=.pem","location":"security-state-staging/intermediates/d17777aa-b2a4-484e-8441-343c9547032e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MIKoeatlSqVA3aCIrE0/JYoP9vF4XSCTPHy+c9vAsKk=","crlite_enrolled":true,"id":"03498728-f5b2-439d-81fe-b9e6d9610c07","last_modified":1576536533404},{"schema":1576535748430,"derHash":"9nh/qMrX0sJ5oDdL+1A4B8xq3MfCNwknPdWkBH0a73g=","subject":"CN=SZCA DV SSL CA,O=Shenzhen Digital Certificate Authority Center Co.\\, Ltd,C=CN","subjectDN":"MGcxCzAJBgNVBAYTAkNOMT8wPQYDVQQKDDZTaGVuemhlbiBEaWdpdGFsIENlcnRpZmljYXRlIEF1dGhvcml0eSBDZW50ZXIgQ28uLCBMdGQxFzAVBgNVBAMMDlNaQ0EgRFYgU1NMIENB","whitelist":false,"attachment":{"hash":"a9b2ca0380643dfb1ea6c1f34c39fa58988e778b07ffa23714878880023314a7","size":1756,"filename":"PPn3ERZq7pmEq4QyyPxBu8LvJxjiPlPsQLVTHYbOwbo=.pem","location":"security-state-staging/intermediates/da53fafc-fb80-
458f-bfea-530aa2404b02.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PPn3ERZq7pmEq4QyyPxBu8LvJxjiPlPsQLVTHYbOwbo=","crlite_enrolled":true,"id":"9edde23a-7218-41f2-abd4-607c025433f0","last_modified":1576536533388},{"schema":1576535745623,"derHash":"P4/Is8Q1eJGu6pafkGovTyLbVlRDYoMNAaQN/WmhezQ=","subject":"SERIALNUMBER=202019,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDE5","whitelist":false,"attachment":{"hash":"934630bc6dc2e4108e88dabcc6340b616f8eacb0881c9e46119b1dc2a356f2e5","size":2333,"filename":"ocfITRRhsDIXLV159O4zK-dM7Mn-83WfdL1qjoaRY60=.pem","location":"security-state-staging/intermediates/7d403344-5dc7-4250-8e51-ffe66db08bd4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ocfITRRhsDIXLV159O4zK+dM7Mn+83WfdL1qjoaRY60=","crlite_enrolled":false,"id":"85ec4838-2515-43b4-8bf6-1c66071fa3ed","last_modified":157653
6533373},{"schema":1576535744191,"derHash":"4R4GhhxNMI/ZRL8Xvl6QcqA0xPkwNMtZwC1RLTD3/EU=","subject":"CN=COMODO SHA-2 Pro Series Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGLMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDExMC8GA1UEAxMoQ09NT0RPIFNIQS0yIFBybyBTZXJpZXMgU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"20e0af1ce1afab12f371d4975120dcf56cf9ac794e09d91ed9f543ab66f3df9e","size":1691,"filename":"4gSqIYIbYqiQ1NfKCAfvkzCzqmOipsGL9CFJJdH7Ms4=.pem","location":"security-state-staging/intermediates/b573613e-98b2-442f-b706-7ff52a6c758a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4gSqIYIbYqiQ1NfKCAfvkzCzqmOipsGL9CFJJdH7Ms4=","crlite_enrolled":true,"id":"99771b0e-6ace-4444-871f-7a6c6e0bffa4","last_modified":1576536533370},{"schema":1576535742721,"derHash":"W2kOHNK8ABbk2yqrq1A3ReQfhrJEjy7AbSnySZnevKI=","subject":"CN=Symantec Class 3 Registrat
ion Authority Intermediate CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGPMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxQDA+BgNVBAMTN1N5bWFudGVjIENsYXNzIDMgUmVnaXN0cmF0aW9uIEF1dGhvcml0eSBJbnRlcm1lZGlhdGUgQ0E=","whitelist":false,"attachment":{"hash":"ea664603ffb12d1a1345ffb13a3ca44d29711f5043c16a6488fa3b9f2b64f3ba","size":2198,"filename":"vO3_XaIzmqGtcOO2LQL_yHzKa4ueBDChpnLbfwpiu8c=.pem","location":"security-state-staging/intermediates/fdc9f14c-56b9-4103-a6c5-aaa28d69e0dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vO3/XaIzmqGtcOO2LQL/yHzKa4ueBDChpnLbfwpiu8c=","crlite_enrolled":false,"id":"abf5170f-a490-479a-a959-03b3ec607959","last_modified":1576536533366},{"schema":1576535739800,"derHash":"pmQixORJ1GXLAjp/x2M96O0YFphcpBCT/JazZj7XpDs=","subject":"CN=GlobalSign Organization Validation CA - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMT
MwMQYDVQQDEypHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"8e16299210c970b497a721b3efd1e8535900deef5b981db9c57146ed85f7ff39","size":1577,"filename":"OqqTlivI4taTCDJE1oq61tAsdnSQ_13Ibp0QKE1H7tc=.pem","location":"security-state-staging/intermediates/5f6d485b-b94c-40e9-8cc6-7345b0d7d030.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OqqTlivI4taTCDJE1oq61tAsdnSQ/13Ibp0QKE1H7tc=","crlite_enrolled":false,"id":"01146bea-1246-4f33-8f61-a7813e0e2d87","last_modified":1576536533362},{"schema":1576535741259,"derHash":"nhLW4T3dU6iQorOjdCOuXkV3MaezShU5kvHvH1SJpF4=","subject":"CN=DigiCert Assured ID Client CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKTAnBgNVBAMTIERpZ2lDZXJ0IEFzc3VyZWQgSUQgQ2xpZW50IENBIEcy","whitelist":false,"attachment":{"hash":"aba4ac7f47cd3fa5c97a15e2f8e46b0e94ea9d901e60ab40b1dd3ef285a8e6ab","size":1922,"filename":"
9uNJKUqEgsV_TXwKFsvy0WrHpWynY8_2cDPAxVlPKwc=.pem","location":"security-state-staging/intermediates/4ea199af-90de-4f71-87de-cb9cd99b0573.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9uNJKUqEgsV/TXwKFsvy0WrHpWynY8/2cDPAxVlPKwc=","crlite_enrolled":false,"id":"61689adb-2a3b-46ab-9ad9-da8f662c67aa","last_modified":1576536533357},{"schema":1576535734060,"derHash":"J84nIGUCAw46ELyW06IMPYiV+HH7ar4dgEdKtFbzGvU=","subject":"CN=BitCert ECC Business Secure Site CA,O=BitCert,L=Chengdu,ST=Sichuan,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMRAwDgYDVQQIEwdTaWNodWFuMRAwDgYDVQQHEwdDaGVuZ2R1MRAwDgYDVQQKEwdCaXRDZXJ0MSwwKgYDVQQDEyNCaXRDZXJ0IEVDQyBCdXNpbmVzcyBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"21b09c09247dfb82fcc1068e7b44ec24f339af2145e053fa304feaccc96b5143","size":1293,"filename":"WavFTPiAKmlGYUqrK6pToCjDxiEpoNAPMXa5dEGGoi0=.pem","location":"security-state-staging/intermediates/bf93fc43-be30-4713-89f4-6c568e6e35a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":
"WavFTPiAKmlGYUqrK6pToCjDxiEpoNAPMXa5dEGGoi0=","crlite_enrolled":false,"id":"0a103d72-7904-480c-a650-b799dc30c443","last_modified":1576536533349},{"schema":1576535736902,"derHash":"SIVck1lFJzOdmESWifq3wxX/VGUGbFFsKdvc8YU5AdM=","subject":"CN=WebNIC RSA Business Secure Site CA,O=WebNIC,L=Singapore,C=SG","subjectDN":"MF8xCzAJBgNVBAYTAlNHMRIwEAYDVQQHEwlTaW5nYXBvcmUxDzANBgNVBAoTBldlYk5JQzErMCkGA1UEAxMiV2ViTklDIFJTQSBCdXNpbmVzcyBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"8d8a9aace8a73869057b9a3f4640419a8e8603f9acfbe1caa324a7884b5b0cdf","size":2093,"filename":"VEf8vFVDUxjsP3LYyFy549557yb431jkLHXGaJeeg0s=.pem","location":"security-state-staging/intermediates/3e1e18bc-6809-4b82-b004-81bb3abaf8d2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VEf8vFVDUxjsP3LYyFy549557yb431jkLHXGaJeeg0s=","crlite_enrolled":false,"id":"5e2d4521-debf-4170-bfa2-c04516822e90","last_modified":1576536533345},{"schema":1576535730952,"derHash":"RWO5NuNauXV29a7xk12bx+mXeEHwVzvS4WvKyVNKavk="
,"subject":"CN=AffirmTrust Certificate Authority - DV1,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGCMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMDAuBgNVBAMTJ0FmZmlybVRydXN0IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIERWMQ==","whitelist":false,"attachment":{"hash":"f469b6a26ab18f58e6fd0cfbda5e03e69cf3d3264a9c4790878f903d60151468","size":1674,"filename":"68BRY3XqvlKubfNnBJ64F_17BHUniDemUwxZNNvfdaA=.pem","location":"security-state-staging/intermediates/62e47fee-8839-40c8-9719-edf4a5d2615c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"68BRY3XqvlKubfNnBJ64F/17BHUniDemUwxZNNvfdaA=","crlite_enrolled":true,"id":"dd1c7414-0b47-4e26-8b61-6e686bc90126","last_modified":1576536533336},{"schema":1576535735514,"derHash":"rCuSLs/V4BcRdy/qjtNy3p0eIkX84/V6nNvsdylqQks=","subject":"CN=Apple IST CA 2 - G1,OU=Certification Authority,O=Apple Inc.,C=US","subjectDN":"MGIxHDAaBgNVBAMTE0FwcGxlIElTVCBDQSAyIC0gRzExIDAeB
gNVBAsTF0NlcnRpZmljYXRpb24gQXV0aG9yaXR5MRMwEQYDVQQKEwpBcHBsZSBJbmMuMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"601b5385fb06a628528a738d6141af6a10c29b3d7659e002ba224353ca089d38","size":1532,"filename":"tc-C1H75gj-ap48SMYbFLoh56oSw-CLJHYPgQnm3j9U=.pem","location":"security-state-staging/intermediates/e3bbb057-9c2f-4ddc-a720-28c4ff04b318.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tc+C1H75gj+ap48SMYbFLoh56oSw+CLJHYPgQnm3j9U=","crlite_enrolled":true,"id":"0c58ca4b-21b3-473e-bddb-a75c77a17971","last_modified":1576536533332},{"schema":1576535729560,"derHash":"2n5XePYvh2Vbj9JKieZR5XMp3JwHZacRWM5WRDykTpU=","subject":"CN=DigiCert Extended Validation CA-3 G3,OU=www.digicert.com,O=DigiCert\\, Inc.,C=US","subjectDN":"MHAxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEtMCsGA1UEAxMkRGlnaUNlcnQgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQS0zIEcz","whitelist":false,"attachment":{"hash":"6844a48cc10ea1a880af9e0aea02a3fc4be2786b3ce299bd1644cd2fc4
9c1f64","size":1187,"filename":"epA52XxQ9Mrum63GbS8dL1dkTIzeOueiCw6jHr7t_u8=.pem","location":"security-state-staging/intermediates/5d0c77a4-ad61-4b2d-9500-0ed1ce697602.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"epA52XxQ9Mrum63GbS8dL1dkTIzeOueiCw6jHr7t/u8=","crlite_enrolled":true,"id":"9bd31525-cabf-4b0e-acc5-1952d08e7761","last_modified":1576536533328},{"schema":1576535726603,"derHash":"6k7i+qV65LU5tjl3/luyBbavsy96c7KzY+S+As2Kkek=","subject":"CN=AffirmTrust Certificate Authority - OV1,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGCMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMDAuBgNVBAMTJ0FmZmlybVRydXN0IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIE9WMQ==","whitelist":false,"attachment":{"hash":"fc3aae931bd9e488d29bffc6c6628b5ba9b6c606359b942aad8056a2af13c8c0","size":1662,"filename":"RM5J-l4IeDRKjL4ZuWGG2Jt3Wae0v4pWKttrQv-DsGM=.pem","location":"security-state-staging/intermediates/8c875b16-e42
4-4471-88e1-1af28bb1e98b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RM5J+l4IeDRKjL4ZuWGG2Jt3Wae0v4pWKttrQv+DsGM=","crlite_enrolled":true,"id":"b68b971e-8343-4eb4-a930-a11700292076","last_modified":1576536533324},{"schema":1576535725125,"derHash":"lvvIq01wU+hwR4G6vuiaaY8yL87iAB0ezeriO1oN0NQ=","subject":"CN=SafeToOpen Code Signing ICA RSA R1,O=SafeToOpen Ltd,C=NZ","subjectDN":"MFMxCzAJBgNVBAYTAk5aMRcwFQYDVQQKDA5TYWZlVG9PcGVuIEx0ZDErMCkGA1UEAwwiU2FmZVRvT3BlbiBDb2RlIFNpZ25pbmcgSUNBIFJTQSBSMQ==","whitelist":false,"attachment":{"hash":"6dc110fcc3fff1cd11570485a2e45474f51f761c2f9b590aae82ec5444111a10","size":2467,"filename":"pjQ3wML2cKErfco7LBCiW12IeMTd7OO0vxtR3O4OUJk=.pem","location":"security-state-staging/intermediates/31e48b05-fa3c-4d5e-88b8-e31faca46e6f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pjQ3wML2cKErfco7LBCiW12IeMTd7OO0vxtR3O4OUJk=","crlite_enrolled":false,"id":"397e2ece-c82e-4f63-b9c9-9564ffbb0787","last_modified":1576536533319},{"schema":15765357281
95,"derHash":"v99M8/FDrQ25EtirOnwS9he56mDOix9ORPdCcPshsZs=","subject":"CN=GlobalSign Domain Validation CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzI=","whitelist":false,"attachment":{"hash":"afa822a679ac53a1fe787fd1b3418ea474613a029a776a216762efa2b870ff8b","size":1581,"filename":"PL1_TTDEe9Cm2lb2X0tixyQC7zaPREm_V0IHJscTCmw=.pem","location":"security-state-staging/intermediates/0ff9bf8a-8c2d-458a-843f-714bb4ae0838.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PL1/TTDEe9Cm2lb2X0tixyQC7zaPREm/V0IHJscTCmw=","crlite_enrolled":true,"id":"391141f8-c2c2-411c-b042-418ab514fd96","last_modified":1576536533315},{"schema":1576535720797,"derHash":"zteRflb0JG/xkH7v+SItfcgR0oZYOh8RbF9hdaiZX7E=","subject":"CN=Dodo Sign SMIME ICA RSA R1,O=Dodo Sign Ltd,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MHQxCzAJBgNVBAYTAk1VMRgwFgYDVQQIDA9QbGFpbmVzIFdpbGhlbXM
xDjAMBgNVBAcMBUViZW5lMRYwFAYDVQQKDA1Eb2RvIFNpZ24gTHRkMSMwIQYDVQQDDBpEb2RvIFNpZ24gU01JTUUgSUNBIFJTQSBSMQ==","whitelist":false,"attachment":{"hash":"9c0526ad9bdea4d1b9fe223be445e0031426ba95b4c6d4f9d11ea0576f6ac9dd","size":2450,"filename":"aQV1CuJZgAKpjACerkGg_CxArZYPkL2zgDhkI8ka1lw=.pem","location":"security-state-staging/intermediates/661841db-d069-4d57-994a-4d79d8389bd0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aQV1CuJZgAKpjACerkGg/CxArZYPkL2zgDhkI8ka1lw=","crlite_enrolled":false,"id":"11b21bdc-d76d-4edc-8894-61264ce40ffc","last_modified":1576536533307},{"schema":1576535719414,"derHash":"iC4BRtFdNIPuWYHjUGfxRJ5WK4niLsw/3zcnTt0xTNo=","subject":"CN=GDCA TrustAUTH R4 EV CodeSigning CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MHYxCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xLDAqBgNVBAMMI0dEQ0EgVHJ1c3RBVVRIIFI0IEVWIENvZGVTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"10f99f1db6de610fba
982c5f65250fa8086ea7f1cdce17fd51e1059ad62997f3","size":2068,"filename":"K1O1P19UCSRwBq2Y5xce7r_TavF-pDYjmdSYRVYHFXI=.pem","location":"security-state-staging/intermediates/8227657d-5641-4c7a-aa33-89019ad18fdf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"K1O1P19UCSRwBq2Y5xce7r/TavF+pDYjmdSYRVYHFXI=","crlite_enrolled":false,"id":"072a60e3-e6bd-435f-8486-855b8b3b6efe","last_modified":1576536533298},{"schema":1576535718042,"derHash":"HfYFTWZBQEYzZBu1+jdC/afQdeJRSECrYeAMy7t9NB0=","subject":"CN=GlobalSign Root E46,O=GlobalSign nv-sa,C=BE","subjectDN":"MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQDExNHbG9iYWxTaWduIFJvb3QgRTQ2","whitelist":false,"attachment":{"hash":"7e5ce727726952ca1f6cb21c02d6ca82c82baaaf53c5c69de963c2ddc3344595","size":1305,"filename":"4EoCLOMvTM8sf2BGKHuCijKpCfXnUUR_g_0scfb9gXM=.pem","location":"security-state-staging/intermediates/06349813-d93c-441c-a351-17e576175b0e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4EoCLOMvTM8sf2B
GKHuCijKpCfXnUUR/g/0scfb9gXM=","crlite_enrolled":false,"id":"60de9866-3e99-4374-b830-17ad74f56f75","last_modified":1576536533289},{"schema":1576535714600,"derHash":"+QrKY8uLtE+NkbhkR0u0Kq4XfnP9/m9Ky9EqATpBXBU=","subject":"CN=MKB SubCA 5,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"ME0xCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMRQwEgYDVQQDDAtNS0IgU3ViQ0EgNQ==","whitelist":false,"attachment":{"hash":"d609fc9e466cfe1aecec6216a280e25bf274686799575f8c7edd8f7e8232e669","size":2146,"filename":"PGgGeTzLYgdsBfTyNhkEXF4J3GMzNhuKWFmeFINeefQ=.pem","location":"security-state-staging/intermediates/d62c8770-b09d-44d0-a7bb-d6c9b93fd6b5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PGgGeTzLYgdsBfTyNhkEXF4J3GMzNhuKWFmeFINeefQ=","crlite_enrolled":false,"id":"875ecbce-accc-43a4-b056-d79c0f013227","last_modified":1576536533285},{"schema":1576535711746,"derHash":"k1BhvlLI6ojANLOa39UiuzFMv1ME5acGRzXdvaMkKq8=","subject":"CN=Certigna Entity Code Signing CA,OU=0002 481
46308100036,O=DHIMYOTIS,C=FR","subjectDN":"MIGIMQswCQYDVQQGEwJGUjESMBAGA1UECgwJREhJTVlPVElTMRwwGgYDVQQLDBMwMDAyIDQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQRhDBROVFJGUi00ODE0NjMwODEwMDAzNjEoMCYGA1UEAwwfQ2VydGlnbmEgRW50aXR5IENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"dfa52fac8680622c2c208aa337be1f107052398f893cb8cdaa1bc8ee0c3c1f93","size":2186,"filename":"u3ZvFIlkZqOQDQbj9Abh3WXDOESr4pASOdoob9Oo2YI=.pem","location":"security-state-staging/intermediates/a34d09dc-c1e9-4b35-bb0f-0c7ee3e64ad8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"u3ZvFIlkZqOQDQbj9Abh3WXDOESr4pASOdoob9Oo2YI=","crlite_enrolled":false,"id":"90283279-5bef-4526-8705-37883c1dc2bc","last_modified":1576536533281},{"schema":1576535710282,"derHash":"X00sDgy6fR+2AO3TUG1DMchmoR8g0TcFTuOc9RRXZnk=","subject":"CN=SSL.com Timestamping Issuing RSA CA R1,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxLzAtBgNVBAMMJlNTTC5jb2
0gVGltZXN0YW1waW5nIElzc3VpbmcgUlNBIENBIFIx","whitelist":false,"attachment":{"hash":"21e71885a88fc5db9ef891b88f7821fb1e634323d90b65bdc3268d422b8350ab","size":2483,"filename":"SiW6P63hxKyk7kypaOzuu6Vn7Ki7UXJCZjkLtFIcPCE=.pem","location":"security-state-staging/intermediates/05741471-0868-4508-b20f-758afe2658b8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SiW6P63hxKyk7kypaOzuu6Vn7Ki7UXJCZjkLtFIcPCE=","crlite_enrolled":false,"id":"af31000d-8c6b-4c8e-8969-c161e3b093b8","last_modified":1576536533277},{"schema":1576535713205,"derHash":"RUBA5JaQcEAcw1vffypOvOV5e7dpSucx2TqBFf1Zkpw=","subject":"CN=Starfield Root Certificate Authority - G2,OU=https://certs.starfieldtech.com/repository/,O=Starfield Technologies\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIHFMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE0MDIGA1UECxMraHR0cHM6Ly9jZXJ0cy5zdGFyZmllbGR0ZWNoLmNvbS9yZXBvc2l0b3J5LzEyMDAGA1UEAxMpU3RhcmZpZWxkIF
Jvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"9d2202937f8e54392d669c92cd8a75a53b1784157b44c73b0ce0c2614d485051","size":1735,"filename":"gI1os_q0iEpflxrOfRBVDXqVoWN3Tz7Dav_7IT--THQ=.pem","location":"security-state-staging/intermediates/25785222-2756-4269-a695-0a60c3918f3a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gI1os/q0iEpflxrOfRBVDXqVoWN3Tz7Dav/7IT++THQ=","crlite_enrolled":false,"id":"1515b293-9629-40ac-b90c-843783835be0","last_modified":1576536533268},{"schema":1576535705691,"derHash":"aB68GCKwebl+BATkaH2bbAwIksgg9Vc4ooKq5iUpvdg=","subject":"CN=Entrust Certification Authority - QTSP1,O=Entrust Datacard Europe S.L.,C=ES","subjectDN":"MIGAMTAwLgYDVQQDDCdFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gUVRTUDExGDAWBgNVBGEMD1ZBVEVTLUI4MTE4ODA0NzElMCMGA1UECgwcRW50cnVzdCBEYXRhY2FyZCBFdXJvcGUgUy5MLjELMAkGA1UEBhMCRVM=","whitelist":false,"attachment":{"hash":"1b36e574afaad2d084671e777c7351c3fb5ab139919e47a5ad362e0629f3d0a9","size":1784,"file
name":"aZtZPtGaXbm8qg3lvpcFEicPNLfVwGoRKVgV17tW99k=.pem","location":"security-state-staging/intermediates/ba3c2414-b8f6-4b6f-b58a-13bd454deef5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aZtZPtGaXbm8qg3lvpcFEicPNLfVwGoRKVgV17tW99k=","crlite_enrolled":true,"id":"d64bc41f-40a9-4404-b8e7-977885a8b020","last_modified":1576536533260},{"schema":1576535704194,"derHash":"pEnbq21MA1+q/Z0EWJH+mKvXPShiaKioP4VBRVUWkuM=","subject":"CN=DigiCert Global Client CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IEdsb2JhbCBDbGllbnQgQ0EgRzI=","whitelist":false,"attachment":{"hash":"527e07fba3c052bc204844ca180ab6b407338b8d533f579a75968162d959aa09","size":1906,"filename":"kJGSyUHCVurpr4HjTqx1jU6HMmuaNzGu5ukKqGV0I-Q=.pem","location":"security-state-staging/intermediates/fb4825ba-30a6-4680-a666-5e92f0755810.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kJGSyUHCVurp
r4HjTqx1jU6HMmuaNzGu5ukKqGV0I+Q=","crlite_enrolled":false,"id":"3c4a336f-4021-49ad-b28f-d8c1994bb54a","last_modified":1576536533257},{"schema":1576535701221,"derHash":"lMZj6epcJ+5PZBJ/m0JYY+mRqeFWwH3xoAgDrjF2QWI=","subject":"CN=DPDHL Global TLS CA - I4,O=Deutsche Post AG,L=Bonn,ST=Nordrhein-Westfalen,C=DE","subjectDN":"MHgxCzAJBgNVBAYTAkRFMRkwFwYDVQQKExBEZXV0c2NoZSBQb3N0IEFHMQ0wCwYDVQQHEwRCb25uMRwwGgYDVQQIExNOb3JkcmhlaW4tV2VzdGZhbGVuMSEwHwYDVQQDExhEUERITCBHbG9iYWwgVExTIENBIC0gSTQ=","whitelist":false,"attachment":{"hash":"82df1783f9ebe0247dd6ecbe16d4c18ae72f1dd07acc563c22457497332adccd","size":1687,"filename":"dDCzzRFNRKnMrHRFZT7PTt0huOU3tTdBT-09j4Qo0dw=.pem","location":"security-state-staging/intermediates/fd7aa6f3-e797-44a8-b182-386d30d9bae6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dDCzzRFNRKnMrHRFZT7PTt0huOU3tTdBT+09j4Qo0dw=","crlite_enrolled":true,"id":"4a157548-8ffc-4b18-9a39-6a3d034a4b20","last_modified":1576536533253},{"schema":1576535702771,"derHash":"fggrvFaXa
xWdRpZUCpa2AUhhS6m14psgNfeJvs+/Blc=","subject":"CN=KPN BV PKIoverheid Organisatie Server CA - G3,O=KPN B.V.,C=NL","subjectDN":"MHExCzAJBgNVBAYTAk5MMREwDwYDVQQKDAhLUE4gQi5WLjEXMBUGA1UEYQwOTlRSTkwtMjcxMjQ3MDExNjA0BgNVBAMMLUtQTiBCViBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBTZXJ2ZXIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"e14dfe0a090eadc281ff2db7ada84d99fae9eca05625d7c7e0e8301bff79fdd5","size":2584,"filename":"rW1GnpJmh2k9F6uNIGFDm27MmL0j4O1CwybyyFn-TXs=.pem","location":"security-state-staging/intermediates/5df062b7-6dbf-40fb-b4d3-69692b678a3d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rW1GnpJmh2k9F6uNIGFDm27MmL0j4O1CwybyyFn+TXs=","crlite_enrolled":true,"id":"256b5706-1f4a-4d46-bd99-cd98266a34c4","last_modified":1576536533248},{"schema":1576535698371,"derHash":"DzKEswasQimGyPVg6kYib9hCVRmm9hqpxVq1CCdLgtI=","subject":"CN=Solenis Public Online CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Solenis LLC,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzEUMBIGA1UEChM
LU29sZW5pcyBMTEMxPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEhMB8GA1UEAxMYU29sZW5pcyBQdWJsaWMgT25saW5lIENB","whitelist":false,"attachment":{"hash":"07c3a057b0a793ccc127ced6e4656951d395af324fbf13db505a5158e79cf5a1","size":2044,"filename":"FbUF4mDwk2lNgD-Pejjnol8xBCKJWyaJf_t3H9qx33E=.pem","location":"security-state-staging/intermediates/9dc2eb3c-f2a0-4921-b7ac-e9b351bc4271.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FbUF4mDwk2lNgD+Pejjnol8xBCKJWyaJf/t3H9qx33E=","crlite_enrolled":false,"id":"4eac52f2-55a9-4aad-a5ec-b460abc548b6","last_modified":1576536533244},{"schema":1576535699807,"derHash":"khi6uU59XR+B1i0Pwj4xyLvL7jVF0dfp0/0pswvBiMg=","subject":"CN=Apple IST CA 8 - G1,OU=Certification Authority,O=Apple Inc.,C=US","subjectDN":"MGIxHDAaBgNVBAMME0FwcGxlIElTVCBDQSA4IC0gRzExIDAeBgNVBAsMF0NlcnRpZmljYXRpb24gQXV0aG9yaXR5MRMwEQYDVQQKDApBcHBsZSBJbmMuMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"0be6834a2b742f4b697c05091ee
7071ce8419abe4ed8eed05d569d2e0029ffc6","size":1187,"filename":"4k-OjCGF2i9eiNRXnoF8R79ur7yFBfD5YP1aDfRHOtM=.pem","location":"security-state-staging/intermediates/52220f23-3b7c-41f2-8367-dacbf192340e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4k+OjCGF2i9eiNRXnoF8R79ur7yFBfD5YP1aDfRHOtM=","crlite_enrolled":true,"id":"6d2dd04d-c23f-4dde-8701-5d637684bb1f","last_modified":1576536533232},{"schema":1576535694050,"derHash":"VKiey5iaHcz0ATY584l0oLwHQsKZPftr0Mvx9GKWRQE=","subject":"CN=Buypass Class 2 CA 2,O=Buypass AS-983163327,C=NO","subjectDN":"MEsxCzAJBgNVBAYTAk5PMR0wGwYDVQQKDBRCdXlwYXNzIEFTLTk4MzE2MzMyNzEdMBsGA1UEAwwUQnV5cGFzcyBDbGFzcyAyIENBIDI=","whitelist":false,"attachment":{"hash":"0614048608f149da266521b3b029d5d9fbab892a53adc1151476ffbb67f64ea8","size":1849,"filename":"61MXD2Y0eBaJtXDtSP1wW5LIdaIPjtVmYYrVCM8GDDg=.pem","location":"security-state-staging/intermediates/807b4084-3ed6-4c3d-9105-8e356f3bdc73.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"61MXD2Y0eBaJ
tXDtSP1wW5LIdaIPjtVmYYrVCM8GDDg=","crlite_enrolled":true,"id":"ef80dba5-2722-4073-94a2-06a8e7cf1eee","last_modified":1576536533226},{"schema":1576535692634,"derHash":"wt/7PBuwbeTBCSblF/82b5OJLV4C3G95CAJ121f9b8g=","subject":"CN=TI Trust Technologies EV CA,OU=Controlled by Sectigo exclusively for TI Trust Technologies,O=Telecom Italia Trust Technologies S.R.L.,L=Pomezia,ST=Roma,C=IT","subjectDN":"MIHNMQswCQYDVQQGEwJJVDENMAsGA1UECBMEUm9tYTEQMA4GA1UEBxMHUG9tZXppYTExMC8GA1UEChMoVGVsZWNvbSBJdGFsaWEgVHJ1c3QgVGVjaG5vbG9naWVzIFMuUi5MLjFEMEIGA1UECxM7Q29udHJvbGxlZCBieSBTZWN0aWdvIGV4Y2x1c2l2ZWx5IGZvciBUSSBUcnVzdCBUZWNobm9sb2dpZXMxJDAiBgNVBAMTG1RJIFRydXN0IFRlY2hub2xvZ2llcyBFViBDQQ==","whitelist":false,"attachment":{"hash":"f3a3288bc3b67208c3f1e4164cb00b27794763ac59477eb6171158b3507ab3e8","size":2288,"filename":"lG0jsaBDRslBBApGfnJu_ukJ5x3uoc841KUU1OMrO1E=.pem","location":"security-state-staging/intermediates/48b456c7-6568-4b6a-b3a6-e6d3c9384968.pem","mimetype":"application/x-pem-file"},"pubKeyHa
sh":"lG0jsaBDRslBBApGfnJu/ukJ5x3uoc841KUU1OMrO1E=","crlite_enrolled":false,"id":"3eca5483-9836-4680-82c5-bb0774a0b4ad","last_modified":1576536533221},{"schema":1576535691263,"derHash":"j3Y2enra5GQiWOZYaiqWQqAPPsux63JfGLXnrT2Vrtk=","subject":"CN=Saudi Enaya Public Issuing CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Saudi Enaya Cooperative Insurance Company,C=SA","subjectDN":"MIGqMQswCQYDVQQGEwJTQTEyMDAGA1UEChMpU2F1ZGkgRW5heWEgQ29vcGVyYXRpdmUgSW5zdXJhbmNlIENvbXBhbnkxPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEmMCQGA1UEAxMdU2F1ZGkgRW5heWEgUHVibGljIElzc3VpbmcgQ0E=","whitelist":false,"attachment":{"hash":"f9a1cc1c0a4d31769022a32fa750c3366fb992b9cf15e57a75f7dec8fa1b0f43","size":2093,"filename":"cNHwIfttyOKzQurjMJbU9iw-zkVDSMIGzrkUphg-oZ8=.pem","location":"security-state-staging/intermediates/9a23fc37-8c51-4bb4-95e5-218e36e2fc5b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cNHwIfttyOKzQurjMJbU9iw+zkVDSMIGzrkUphg+oZ8="
,"crlite_enrolled":false,"id":"0faea224-cee9-4c13-9b49-037fb4c24a88","last_modified":1576536533217},{"schema":1576535689739,"derHash":"vkCBOGmrJ6Bx0SrWqIMFg+vDthjj8jRjWfSxGhyUNO4=","subject":"CN=GlobalSign CodeSigning CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFoxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTAwLgYDVQQDEydHbG9iYWxTaWduIENvZGVTaWduaW5nIENBIC0gU0hBMjU2IC0gRzI=","whitelist":false,"attachment":{"hash":"0e8e5deefe3f05a7aa5d9c40e35ec54cf376114dbb14eec1d7dd699f04481655","size":1650,"filename":"YAIydgGB-L3Y0NHNmsAGLQDXeo7ww8TLvpXGKFMPJ3s=.pem","location":"security-state-staging/intermediates/057a2b86-b448-4070-94c1-5f09ce2bfac7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YAIydgGB+L3Y0NHNmsAGLQDXeo7ww8TLvpXGKFMPJ3s=","crlite_enrolled":false,"id":"fe5a8e71-da19-42ab-acde-06d1d5cef1b9","last_modified":1576536533211},{"schema":1576535688336,"derHash":"4zB2/7UmffQZ9y3gbEbixspE/0ODtTFs99bmKOmNm/0=","subject":"CN=Saudi Telecom Company Email CA,OU=Cl
ass 2 DigiCert PKI Platform Individual Subscriber CA,O=Saudi Telecom Company,C=SA","subjectDN":"MIGXMQswCQYDVQQGEwJTQTEeMBwGA1UEChMVU2F1ZGkgVGVsZWNvbSBDb21wYW55MT8wPQYDVQQLEzZDbGFzcyAyIERpZ2lDZXJ0IFBLSSBQbGF0Zm9ybSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0ExJzAlBgNVBAMTHlNhdWRpIFRlbGVjb20gQ29tcGFueSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"ec9e4ca56df4d26db8f71b689f200f5196410806d42b92ded254322d04471378","size":2068,"filename":"1tmevyCqnyAoinSCzwcqiqEsILe2CvKE2FskRnaTgXI=.pem","location":"security-state-staging/intermediates/f7d99d4a-d900-4eaf-978b-09f11eda8642.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1tmevyCqnyAoinSCzwcqiqEsILe2CvKE2FskRnaTgXI=","crlite_enrolled":false,"id":"1dd892f7-1bad-4b9b-a81d-e331f72cdbe8","last_modified":1576536533204},{"schema":1576535685544,"derHash":"Rcsdh0ywO9XFtuB5yPwp5RUh7lYoSGMBlkpB+Uuln4g=","subject":"CN=GlobalSign Root R46,O=GlobalSign nv-sa,C=BE","subjectDN":"MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQDExN
HbG9iYWxTaWduIFJvb3QgUjQ2","whitelist":false,"attachment":{"hash":"6aeca6429f492ce0a1e976110a582cd7b8c66033c209b47b36f98a2ec75750f1","size":2231,"filename":"rn-WLLnmp9v3uDP7GPqbcaiRdd-UnCMrap73yz3yu_w=.pem","location":"security-state-staging/intermediates/7e4b802f-b595-45c5-b8c9-7a395c2592f2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rn+WLLnmp9v3uDP7GPqbcaiRdd+UnCMrap73yz3yu/w=","crlite_enrolled":false,"id":"db71c7f0-2fac-43c3-ad72-dd258c250fa5","last_modified":1576536533196},{"schema":1576535678404,"derHash":"Ocdjqc8Z2SP5d9I2JquJBEmkRKuLeVyBXvHvgf68Hjg=","subject":"CN=Amazon,OU=Server CA 1A,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQTEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"f399c4419d079a15a697f418e9a8d5ff90d3ac32db49507e30ee4a17491a1fd2","size":1544,"filename":"ZLtb2AMR-j9TvZlATKuHYq1uBIRH0Kl_IZ_OyhZh83w=.pem","location":"security-state-staging/intermediates/0bf45415-b984-4367-b6a5-c8d413
da9d72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZLtb2AMR+j9TvZlATKuHYq1uBIRH0Kl/IZ/OyhZh83w=","crlite_enrolled":false,"id":"ad381075-9d54-4e8f-9730-7b932a4f8b90","last_modified":1576536533183},{"schema":1576535676932,"derHash":"lqWizTmADPtqKoMO5S3PR/uwD/GwMgTbNpFc6jHxM0I=","subject":"CN=GDCA TrustAUTH R4 EV SSL CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MG4xCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJDAiBgNVBAMMG0dEQ0EgVHJ1c3RBVVRIIFI0IEVWIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"d72e2007f8b0bdbb9bfdfca3bc7bdf7eebe0d9a1b5b3e0aa3c49210a42752f35","size":2056,"filename":"LA_cQZEhZA_J3pK28of_Jf7Wn0WmfSQvp4eYJW5o8NQ=.pem","location":"security-state-staging/intermediates/2b13103f-f111-4488-951a-d948d81a84f6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LA/cQZEhZA/J3pK28of/Jf7Wn0WmfSQvp4eYJW5o8NQ=","crlite_enrolled":true,"id":"2a556f13-fd00-4e58-82e2-6de75321c936","last
_modified":1576536533172},{"schema":1576535675523,"derHash":"SUYzfTlUMF82dw7oMX9nz+/zlDV2gov1XBU4R2tKINg=","subject":"CN=Nedbank Limited Public CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Nedbank Limited,C=ZA","subjectDN":"MIGMMQswCQYDVQQGEwJaQTEYMBYGA1UEChMPTmVkYmFuayBMaW1pdGVkMT8wPQYDVQQLEzZDbGFzcyAyIERpZ2lDZXJ0IFBLSSBQbGF0Zm9ybSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0ExIjAgBgNVBAMTGU5lZGJhbmsgTGltaXRlZCBQdWJsaWMgQ0E=","whitelist":false,"attachment":{"hash":"43afb828d2dd6d74b9f5df2475c5670452bceb66714a87118006a59ad1cf74c6","size":2040,"filename":"9mmBieouT_9Ouiv7FZSLvox_uvaz5I2XlSgCRjt0g4U=.pem","location":"security-state-staging/intermediates/24be1fad-b770-4eaa-9f19-6ee181105daa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9mmBieouT/9Ouiv7FZSLvox/uvaz5I2XlSgCRjt0g4U=","crlite_enrolled":false,"id":"ef1b8ccf-e9c6-4f39-bdfa-c80513385093","last_modified":1576536533165},{"schema":1576535672682,"derHash":"wjofgxVTioZRgW6ZMsBE64VsAf2ZdxaQyGNnHSLEhWQ=","subject":"CN
=Entrust Class 1 Client CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAxMCBFbnRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDEgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"681c27ac05298a228c23d2463699b61b0aa53157638b6195793d2f53a4324aa3","size":1764,"filename":"Uhene3DQaQrqKhOQL-xFNX9JZl3IsIFfWho3SE3EtBQ=.pem","location":"security-state-staging/intermediates/023b7b2a-88b0-4538-a665-37a504c10e0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uhene3DQaQrqKhOQL+xFNX9JZl3IsIFfWho3SE3EtBQ=","crlite_enrolled":false,"id":"d6958925-96d0-4139-981d-d725a0cfcd01","last_modified":1576536533158},{"schema":1576535681283,"derHash":"piM+y3cFP3KTfolDcqYB7Tq+qQzDtdiVEnIL8//L3J0=","subject":"CN=GlobalSign Organization Validation CA - G2,O=GlobalSign nv-sa,C=B
E","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTMwMQYDVQQDEypHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"42a159a44078e6c0428cd2a9784e5d8186a3da87350930ca5180f61690f4056b","size":1488,"filename":"OqqTlivI4taTCDJE1oq61tAsdnSQ_13Ibp0QKE1H7tc=.pem","location":"security-state-staging/intermediates/89ddf5ba-0659-4630-8b16-885ce7e6d764.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OqqTlivI4taTCDJE1oq61tAsdnSQ/13Ibp0QKE1H7tc=","crlite_enrolled":false,"id":"fe1c2020-b88a-4748-9de2-7099a5ad0afb","last_modified":1576536533150},{"schema":1576535669802,"derHash":"nWEnnSIyqH4QjXir8uuhjSQRL4S1Y2ovQ7OaAPHqAHg=","subject":"CN=docSigning RSA ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHgxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMR4wHAYDVQQDDBVkb2NTaWduaW5nIFJTQSBJQ0EgUjE=","whitelist":false,"attachm
ent":{"hash":"5cd9fe248c1e6cfdd4496f76f7e9b0d9f810255c2d9fa5333ebee39edd8ffd14","size":2174,"filename":"xFyVKlUSjns3MjbWeJFTGcGIijP7GVc2KFJgm8bUeOc=.pem","location":"security-state-staging/intermediates/7109fecc-da82-4d0b-9fa5-b524a272ec72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xFyVKlUSjns3MjbWeJFTGcGIijP7GVc2KFJgm8bUeOc=","crlite_enrolled":false,"id":"126ded4d-8431-41b1-8aaa-6c0ce484cc26","last_modified":1576536533139},{"schema":1576535674127,"derHash":"tIzzartJglw7fEB4ZpWMJAhck4xgx8GkihjQCFnKNIw=","subject":"CN=Duerr Group Global IT CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Duerr IT Service GmbH,C=DE","subjectDN":"MIGRMQswCQYDVQQGEwJERTEeMBwGA1UEChMVRHVlcnIgSVQgU2VydmljZSBHbWJIMT8wPQYDVQQLEzZDbGFzcyAyIERpZ2lDZXJ0IFBLSSBQbGF0Zm9ybSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0ExITAfBgNVBAMTGER1ZXJyIEdyb3VwIEdsb2JhbCBJVCBDQQ==","whitelist":false,"attachment":{"hash":"928dad68e0291b5a5f266a4c55be650b95b1211ff60094db0f2bb89e3e2ba03a","size":2060,"filename":"bns
Fn2J9Leu9MsEXRbGO_q2R-jj5yi6VtDkLN6eGjeQ=.pem","location":"security-state-staging/intermediates/4accbbd5-64dc-41ec-b3a2-da410305e736.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bnsFn2J9Leu9MsEXRbGO/q2R+jj5yi6VtDkLN6eGjeQ=","crlite_enrolled":false,"id":"c4b02e84-aa88-460f-8418-ed2d4ce9c088","last_modified":1576536533131},{"schema":1576535668349,"derHash":"9QaMQpOiag5CDQKuS+8nAIN34+fs2OXPGUQoFi48QPQ=","subject":"CN=Symantec Class 3 Organizational CA - G2,OU=VeriSign Trust Network+OU=Terms of use at https://www.verisign.com/rpa (c)11,O=Symantec Corporation,C=US","subjectDN":"MIG8MQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOzA5BgNVBAsTMlRlcm1zIG9mIHVzZSBhdCBodHRwczovL3d3dy52ZXJpc2lnbi5jb20vcnBhIChjKTExMTAwLgYDVQQDEydTeW1hbnRlYyBDbGFzcyAzIE9yZ2FuaXphdGlvbmFsIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"79bca702d17f54c89c8f1e54a7956e70ff158d4f2d61e7f721612a7f3e4bd4fa","size":2337,"filename":"8Vaa7hyPgvofrzXh1b
AlF62L9kQg_5tbO-89MDeNtLQ=.pem","location":"security-state-staging/intermediates/e6d61643-b154-4216-bc90-f92e5b6fee88.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8Vaa7hyPgvofrzXh1bAlF62L9kQg/5tbO+89MDeNtLQ=","crlite_enrolled":false,"id":"e6faa6db-c65c-469e-908c-c757eb2ec1f2","last_modified":1576536533125},{"schema":1576535665468,"derHash":"MWAFjnKwWH51OssUyzfX+PZy17xTVJ9n1485yreGGCQ=","subject":"CN=SSL X Y & Z SMIME CA RSA R1,O=SSL X Y & Z Corp.,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHIxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExGjAYBgNVBAoMEVNTTCBYIFkgJiBaIENvcnAuMSQwIgYDVQQDDBtTU0wgWCBZICYgWiBTTUlNRSBDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"a097fe3436a48e1a1774823f1d3ec33dbaec7e073b22c598310479de26b737f6","size":2430,"filename":"MdoGDrhcCn8MTwSG3kgrfgj1b2G-u2wNnQpYY6Da_RI=.pem","location":"security-state-staging/intermediates/73a63257-cfe8-4332-909d-abd0ddfc4aff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MdoGDrhcCn8M
TwSG3kgrfgj1b2G+u2wNnQpYY6Da/RI=","crlite_enrolled":false,"id":"5020f660-2bdc-4078-8c20-598e0bcc3837","last_modified":1576536533121},{"schema":1576535664030,"derHash":"VQdJ/141xAfVFdmLMnUEvEhP2q4opxOv5OIoKYa+BOg=","subject":"CN=Atos TrustedRoot Client-CA 2019,O=Atos,C=DE","subjectDN":"MEYxKDAmBgNVBAMMH0F0b3MgVHJ1c3RlZFJvb3QgQ2xpZW50LUNBIDIwMTkxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"2763c7c0f3bcf025ec0ce357637ad9f89fd53a05004ea4e1da17b19062c0c5d2","size":1987,"filename":"CcXMYukvilEK0pDMWab7SEXh_fMs7tv1MLrQO9DXGDE=.pem","location":"security-state-staging/intermediates/d90a2b08-7306-4808-ad80-fe80b7cc54a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CcXMYukvilEK0pDMWab7SEXh/fMs7tv1MLrQO9DXGDE=","crlite_enrolled":false,"id":"326252ee-6763-4e00-9187-88a0d4172e5f","last_modified":1576536533108},{"schema":1576535662659,"derHash":"Gh+CWS4DO2IBlsuE5rYehctEiZJZXnDuKSR79cF3HYw=","subject":"SERIALNUMBER=202008,CN=Citizen CA,O=Certipost N.V./S.A
.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDA4","whitelist":false,"attachment":{"hash":"9ace3aac9b2541a7af8dfbb069619b62df30695152d476c2b4fd355300eb687e","size":2333,"filename":"psgf5vm4NPM1KfVsJMG2yfIKFfkuFfaruYmPA9y5EbU=.pem","location":"security-state-staging/intermediates/8cd8139f-8283-4cc1-92f7-5ae9c296893e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"psgf5vm4NPM1KfVsJMG2yfIKFfkuFfaruYmPA9y5EbU=","crlite_enrolled":false,"id":"1df62141-638d-4e30-b950-909f7bf55133","last_modified":1576536533102},{"schema":1576535661193,"derHash":"pP58fxUVXz8K73qqg89uBt65fKP5Cd+SCsFJCILUiO0=","subject":"CN=Apple IST CA 8 - G1,OU=Certification Authority,O=Apple Inc.,C=US","subjectDN":"MGIxHDAaBgNVBAMME0FwcGxlIElTVCBDQSA4IC0gRzExIDAeBgNVBAsMF0NlcnRpZmljYXRpb24gQXV0aG9yaXR5MRMwEQYDVQQKDApBcHBsZSBJbmMuMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"10c03710
7309161edc52970a837e5b2cfb01393b7a295c3a8af53adb4fe2e7dc","size":1215,"filename":"4k-OjCGF2i9eiNRXnoF8R79ur7yFBfD5YP1aDfRHOtM=.pem","location":"security-state-staging/intermediates/246c8ccb-37a5-4b40-8b4f-c83734302c40.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4k+OjCGF2i9eiNRXnoF8R79ur7yFBfD5YP1aDfRHOtM=","crlite_enrolled":true,"id":"4702383e-8507-468f-8710-add08465230d","last_modified":1576536533099},{"schema":1576535658276,"derHash":"Vyv4mf13Q2LcGSGWJezBV7tVQ06lFm1XWNxLT4kNZlM=","subject":"CN=ACCVCA-130,OU=PKIACCV,O=ACCV,C=ES","subjectDN":"MEMxEzARBgNVBAMMCkFDQ1ZDQS0xMzAxEDAOBgNVBAsMB1BLSUFDQ1YxDTALBgNVBAoMBEFDQ1YxCzAJBgNVBAYTAkVT","whitelist":false,"attachment":{"hash":"3bcfe77948ebaa1fe7f7bfb31339eeaba3e27a506d01e1f6704b54ecb78cc54a","size":2686,"filename":"Y4wPdQMFev6SAz6Zy7McH45VYp5uADyuOVtFnivRtu4=.pem","location":"security-state-staging/intermediates/ebb99ee5-c251-4021-80eb-3e74471c91bf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y4wPdQMFev6SAz6Zy7Mc
H45VYp5uADyuOVtFnivRtu4=","crlite_enrolled":false,"id":"b94aff1d-4802-4d47-9d29-833321cc8644","last_modified":1576536533095},{"schema":1576535659737,"derHash":"llvSWDiN3dTqe6r7d1TfSfiWzwLhW+CSXeM7ADjpkl8=","subject":"CN=ITsMine Document Signing CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=ITsMine LTD,C=IL","subjectDN":"MIGKMQswCQYDVQQGEwJJTDEUMBIGA1UEChMLSVRzTWluZSBMVEQxPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEkMCIGA1UEAxMbSVRzTWluZSBEb2N1bWVudCBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"2c67f2b0b0186aec64088386089a58adb768c7499823baa61f1f8a11a70658d3","size":2048,"filename":"cPOXn2iF_axKs58wv5vJ7sPiY84mMQ63aDplTinh778=.pem","location":"security-state-staging/intermediates/b929354d-ee94-4466-9b96-48bee5a5f6ea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cPOXn2iF/axKs58wv5vJ7sPiY84mMQ63aDplTinh778=","crlite_enrolled":false,"id":"0d633c6e-6482-476c-bcdb-4014ef17c4a3","last_modified":1576536533085},{
"schema":1576535656889,"derHash":"IR8wg7nnegHQgoVliXoc6UXuquBJQszDaQh9gIDJ5KY=","subject":"CN=Certigna Wild CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MHkxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlESElNWU9USVMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxHTAbBgNVBGEMFE5UUkZSLTQ4MTQ2MzA4MTAwMDM2MRkwFwYDVQQDDBBDZXJ0aWduYSBXaWxkIENB","whitelist":false,"attachment":{"hash":"5496347e4439fb545ba2bee7caa37b999d7fbae9c05425339345faf2c1e52d1f","size":2166,"filename":"6PsBH2V6vxU_w6DnSyY4EpqQYeF8QrYgohY-fWMfhmE=.pem","location":"security-state-staging/intermediates/fc3270ce-2a3b-48cd-9a3c-dba02a58d9a5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6PsBH2V6vxU/w6DnSyY4EpqQYeF8QrYgohY+fWMfhmE=","crlite_enrolled":true,"id":"fc74dd7b-d279-49bc-8b15-430100d07015","last_modified":1576536533078},{"schema":1576535655303,"derHash":"0gpAuxsFTRx0HPb0BHBUNoUfRo/ApFVklBzHx/dKEm8=","subject":"CN=BitCert SHA2 Assured ID CA,O=BitCert,L=Chengdu,ST=Sichuan,C=CN","subjectDN":"MGgxCzAJBgNVBAYTAkNOMRAwDgYD
VQQIEwdTaWNodWFuMRAwDgYDVQQHEwdDaGVuZ2R1MRAwDgYDVQQKEwdCaXRDZXJ0MSMwIQYDVQQDExpCaXRDZXJ0IFNIQTIgQXNzdXJlZCBJRCBDQQ==","whitelist":false,"attachment":{"hash":"cd452783d809de9bf053ff47432c701bae9479d5129875f8323deef141a7761e","size":2109,"filename":"Eb_J1AmK0wOeRgjXvartK-UnMX6tUpo4ieIOClF8g2Q=.pem","location":"security-state-staging/intermediates/61caf33f-9ace-4134-98fe-d165a8ec1c58.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Eb/J1AmK0wOeRgjXvartK+UnMX6tUpo4ieIOClF8g2Q=","crlite_enrolled":false,"id":"3aa5477f-8d27-4d3f-b148-e830916ccc30","last_modified":1576536533075},{"schema":1576535653934,"derHash":"C0Bc/ppr6wmP+5aRIcX2cQ8/f6nqEBpkGPevIB09OTg=","subject":"CN=Apple Public Server RSA CA 12 - G1,O=Apple Inc.,ST=California,C=US","subjectDN":"MGQxKzApBgNVBAMTIkFwcGxlIFB1YmxpYyBTZXJ2ZXIgUlNBIENBIDEyIC0gRzExEzARBgNVBAoTCkFwcGxlIEluYy4xEzARBgNVBAgTCkNhbGlmb3JuaWExCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"2f8960fd8a1b0bc311f2c5d7bb7825254affcf347c165514fa071119dc
28f794","size":1642,"filename":"1CC6SL5QjEUUEr5JiV4Zw8QxiSkGVmp2CRJ4mm1IhKU=.pem","location":"security-state-staging/intermediates/eb7ea53e-f578-4b8a-913a-dd87bcd7ab01.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1CC6SL5QjEUUEr5JiV4Zw8QxiSkGVmp2CRJ4mm1IhKU=","crlite_enrolled":true,"id":"6acdc223-21b9-4ff8-847f-e22f72f1795a","last_modified":1576536533071},{"schema":1576535651001,"derHash":"8DhCHwfyDWOiDTaR5aF4q4RZ6+VwwWR7dpBVTvI4dqs=","subject":"OU=AC Componentes Inform\u00e1ticos,O=FNMT-RCM,C=ES","subjectDN":"MEcxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTElMCMGA1UECwwcQUMgQ29tcG9uZW50ZXMgSW5mb3Jtw6F0aWNvcw==","whitelist":false,"attachment":{"hash":"711fb746c38ddfee6090169d62da5358968caf228ade2ad75cb8be4c4dd3832d","size":2430,"filename":"MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ-57NkgXsoGc=.pem","location":"security-state-staging/intermediates/0ab80520-1d1a-43c3-88ab-467f0681114b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ+57NkgXsoGc=","
crlite_enrolled":true,"id":"e28f2f6d-d594-43d7-8356-195ce9834fcf","last_modified":1576536533065},{"schema":1576535652494,"derHash":"tutPitGXBz/lID+Pzr/VxQnN6co6pl7FnSA4MUJBktQ=","subject":"CN=Secure Site Extended Validation CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLjAsBgNVBAMTJVNlY3VyZSBTaXRlIEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgRzI=","whitelist":false,"attachment":{"hash":"1fe012e3f79fed86fcbc44ecbe0623dc6e29f5661b7a0c3e9fa7227ba2d32481","size":1699,"filename":"GQ1NxZwFxMspL6F7W34V3JpBp8emVEoKYr5gy_rpnLc=.pem","location":"security-state-staging/intermediates/6a40c4ce-bac6-44bf-8873-e22c2cf6735c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GQ1NxZwFxMspL6F7W34V3JpBp8emVEoKYr5gy/rpnLc=","crlite_enrolled":true,"id":"d0ac7826-e8f7-4908-96fa-e77d77b7fca2","last_modified":1576536533061},{"schema":1576535649578,"derHash":"9swE4YU0YZ+y1l8ORbi0O8gVa11zzYets0fXPqgYDcE=","subject":"S
ERIALNUMBER=202005,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDA1","whitelist":false,"attachment":{"hash":"13a3958f8e97bcc176573c94065b0838280266505f4e21d65dd4652ed1624007","size":2333,"filename":"lHjVx8leNZfTqDhJ3N-kjJRU57zR6fm4BDZ5v0rEF0o=.pem","location":"security-state-staging/intermediates/2d8c25c1-f2c9-4bd9-9c5a-9e6d8c25207a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lHjVx8leNZfTqDhJ3N+kjJRU57zR6fm4BDZ5v0rEF0o=","crlite_enrolled":false,"id":"6b0e77ce-e0d4-4ab7-8c1b-739e111d122b","last_modified":1576536533052},{"schema":1576535648114,"derHash":"QA5ehSTzVZh5hXYxLnWlRRQKTktzFMHIxT/X7IIOd7U=","subject":"CN=Cybertrust Japan EV CA G2,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MFYxCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEiMCAGA1UEAxMZQ3liZXJ0cnVzdCBKYXBhbiBFViBDQSBHMg==","whitelist":fa
lse,"attachment":{"hash":"12d7e73666399e1632382096136702c7f6ddd26eafb3f820e0d875b2159deb98","size":1581,"filename":"9xjmuIhAK6exitWv2xYUaN-6SVHIiB-Ru97-tkgiEaQ=.pem","location":"security-state-staging/intermediates/4fe4936e-6ee1-4086-9e1a-96626e262d90.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9xjmuIhAK6exitWv2xYUaN+6SVHIiB+Ru97+tkgiEaQ=","crlite_enrolled":true,"id":"e1a63b90-4f19-42c3-b7d2-78e446b0ec66","last_modified":1576536533044},{"schema":1576535646650,"derHash":"jLPSG7slXb/q+hon0dH3AyDchFZCl7zoLim48uRh8nA=","subject":"CN=Entrust Class 1 Client CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAxMCBFbnRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDEgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"620328d479e891c69d0c67a2ec66fd71909d1fe90
36160c5d1b7bbe353e26461","size":1764,"filename":"Uhene3DQaQrqKhOQL-xFNX9JZl3IsIFfWho3SE3EtBQ=.pem","location":"security-state-staging/intermediates/27eee13f-f193-44ab-8232-40eb1212232b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uhene3DQaQrqKhOQL+xFNX9JZl3IsIFfWho3SE3EtBQ=","crlite_enrolled":false,"id":"bf2fe5fc-ec29-4166-b024-fc5fb8243944","last_modified":1576536533032},{"schema":1576535643788,"derHash":"7nk2QxmUdO1g79yMzeTTdEWSFoNZOqdRu/juSRo5Hpc=","subject":"CN=AlphaSSL CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MEwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSIwIAYDVQQDExlBbHBoYVNTTCBDQSAtIFNIQTI1NiAtIEcy","whitelist":false,"attachment":{"hash":"c96caf591ca234c790ecd0c0142086ce1cbad337effe808b85d29665b86b6406","size":1552,"filename":"amMeV6gb9QNx0Zf7FtJ19Wa_t2B7KpCF_1n2Js3UuSU=.pem","location":"security-state-staging/intermediates/79818100-f277-4947-a852-dfbece0f18ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"amMeV6gb9QNx0Zf7FtJ19Wa/
t2B7KpCF/1n2Js3UuSU=","crlite_enrolled":true,"id":"624fd6dc-c0b6-4c85-8fb1-295b309ec7f8","last_modified":1576536533028},{"schema":1576535642291,"derHash":"wC2KMO1psvhk7Y+xpjo+clUoiSDKKUvcow9jiY+5GVw=","subject":"CN=QuoVadis Qualified Web ICA G1,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MHAxCzAJBgNVBAYTAk5MMRcwFQYDVQRhDA5OVFJOTC0zMDIzNzQ1OTEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xJjAkBgNVBAMMHVF1b1ZhZGlzIFF1YWxpZmllZCBXZWIgSUNBIEcx","whitelist":false,"attachment":{"hash":"084445d2bd7f8a0ad35589c511c54697c31173f9ad36a47aa142a7a1118fa204","size":2487,"filename":"EWJY2DWEXe27fystTVa-0cHUmGdi6igRAeyxOTlgFDY=.pem","location":"security-state-staging/intermediates/24de9566-9a8e-45bb-a121-561374a4c6fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EWJY2DWEXe27fystTVa+0cHUmGdi6igRAeyxOTlgFDY=","crlite_enrolled":true,"id":"e84d58a8-f2a9-445a-9119-7dae1ad73849","last_modified":1576536533021},{"schema":1576535645226,"derHash":"my3U++6UH2UQ9xbASWmzZCiJJ2VGFwHvR9QbMolHXVA=","subje
ct":"CN=DigiCert Global CA-3 G2,OU=www.digicert.com,O=DigiCert\\, Inc.,C=US","subjectDN":"MGMxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEgMB4GA1UEAxMXRGlnaUNlcnQgR2xvYmFsIENBLTMgRzI=","whitelist":false,"attachment":{"hash":"757579da2f6f9930d26c82c4e92bc05ec07c1fcce3e1ee174551ff91391a2bd3","size":1662,"filename":"Ydb2Ke2rGfceHSy4YbkTNE4A8k1rexJ2dXAXXYa9sgk=.pem","location":"security-state-staging/intermediates/d3883f37-bd4a-41ad-8203-298556b22bf4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ydb2Ke2rGfceHSy4YbkTNE4A8k1rexJ2dXAXXYa9sgk=","crlite_enrolled":true,"id":"ec6de765-7e2e-48d2-89d5-fa17988865eb","last_modified":1576536533014},{"schema":1576535637770,"derHash":"WoF+raSteHNOuyz2dDUtl/Q1IpDEDq8Q52Sx6sB1sOY=","subject":"CN=AlphaSSL CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MEwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSIwIAYDVQQDExlBbHBoYVNTTCBDQSAtIFNIQTI1NiAtIEcy","whitelist":false,"attachment":{"hash"
:"9e22882f79ab3be980839bd320927657c042801062d09965a2ee7f9c37cb5ebb","size":1553,"filename":"amMeV6gb9QNx0Zf7FtJ19Wa_t2B7KpCF_1n2Js3UuSU=.pem","location":"security-state-staging/intermediates/eeca1f4a-6a10-4a9d-9ee9-def181a418dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"amMeV6gb9QNx0Zf7FtJ19Wa/t2B7KpCF/1n2Js3UuSU=","crlite_enrolled":true,"id":"7266f37e-582e-4266-8b74-bc9fb7fd3dd4","last_modified":1576536533008},{"schema":1576535639426,"derHash":"hGDMrqkbDoBatRx81G3fLowcSUgG2Isf4u0xPR1Ifi4=","subject":"CN=Belgium Root CA4,C=BE","subjectDN":"MCgxCzAJBgNVBAYTAkJFMRkwFwYDVQQDExBCZWxnaXVtIFJvb3QgQ0E0","whitelist":false,"attachment":{"hash":"c8eff8eef440160ccab900bf7031e1af09b3a4bef4d8c101696a37821bbec601","size":1768,"filename":"sVOKkHFwWpLZOOUGtzjaDK_Rrmauwu7dx1R51DO9h3Y=.pem","location":"security-state-staging/intermediates/f288db85-ff0a-4046-9f02-6da9c467e64f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sVOKkHFwWpLZOOUGtzjaDK/Rrmauwu7dx1R51DO9h3Y=","crlite_enro
lled":false,"id":"b2169a79-3567-43ba-8939-fa49dd624174","last_modified":1576536533004},{"schema":1576535634959,"derHash":"T4E3iCtte38au8/e0AgvDlzeyHC6OSPvhNCN3kLkN0k=","subject":"CN=Alcon Public Online CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Alcon Vision\\, LLC,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEaMBgGA1UEChMRQWxjb24gVmlzaW9uLCBMTEMxPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEfMB0GA1UEAxMWQWxjb24gUHVibGljIE9ubGluZSBDQQ==","whitelist":false,"attachment":{"hash":"af525935d6a89c209d6c44a4b29465804f968d30ea869b10f4edbb7b57813c09","size":2052,"filename":"WBomzJZ_qwkCDmRFxNmLqVSbWixOwsRY9u1EbzrMbPY=.pem","location":"security-state-staging/intermediates/7f8d798d-ec51-43f9-8b1a-a1597ea3a8a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WBomzJZ/qwkCDmRFxNmLqVSbWixOwsRY9u1EbzrMbPY=","crlite_enrolled":false,"id":"229edf78-3580-4ef7-b252-71bf9ceeb3c4","last_modified":1576536533000},{"schema":1576535640830,"derHash
":"RCLjoUGFsWfX5NsIUbYwclshQjpBQIaDF9/r+z7BL4Y=","subject":"SERIALNUMBER=202001,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDAx","whitelist":false,"attachment":{"hash":"a2cd59de0f5a95dd0fe8a1292a63d32d78185d5d4c846dd8a890d5e0e6d770aa","size":2333,"filename":"CI43x8FBUHvxfxoGbmHNltvH2MO4nkawMP-sUN2xS6Q=.pem","location":"security-state-staging/intermediates/7ff06f26-0a5b-405a-9d02-bd71339a3f76.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CI43x8FBUHvxfxoGbmHNltvH2MO4nkawMP+sUN2xS6Q=","crlite_enrolled":false,"id":"3d35aca1-8f69-4db1-8da3-924aa35ec02d","last_modified":1576536532997},{"schema":1576535631984,"derHash":"9cLyPGUY+dGbbzm+rqT7rhADG6ncmFzhVjpSDaCtQRY=","subject":"CN=Entrust Certification Authority - L1K,OU=See www.entrust.net/legal-terms+OU=(c) 2012 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US",
"subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTIgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFL","whitelist":false,"attachment":{"hash":"fe5ad678578f0f457c9742e59bdd7a274fc2a2703d89bb47f109be35c9fb47c2","size":1796,"filename":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0uc=.pem","location":"security-state-staging/intermediates/a8904bd0-aa03-46a0-bade-1596b9597a4c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0uc=","crlite_enrolled":true,"id":"9e54305c-cd5d-4716-a6ac-2c9ac161fb04","last_modified":1576536532992},{"schema":1576535636372,"derHash":"Za3JxpHTIVXmjOjVGTvzcildJaBAdUV7Me6FoEQbI/g=","subject":"CN=TI Trust Technologies Client CA,O=TI Trust Technologies S.R.L.,L=Pomezia,ST=Roma,C=IT","subjectDN":"MH8xCzAJBgNVBAYTAklUMQ0wCwYDVQQIEwRSb21hMRAwDgYDVQQHEwdQb21lemlhMSUwI
wYDVQQKExxUSSBUcnVzdCBUZWNobm9sb2dpZXMgUy5SLkwuMSgwJgYDVQQDEx9USSBUcnVzdCBUZWNobm9sb2dpZXMgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"d92ac436ba1cab3afb23073f014daa729cb95f0b615852f9ad3be08dcf2e2e6a","size":2142,"filename":"rQbgtNOOZtnMnXSS7fXZPfjIVzkUf2zOAwb-4IxU9Vc=.pem","location":"security-state-staging/intermediates/a3c72377-4d1f-40ea-9cb3-66cfd6d0ec67.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rQbgtNOOZtnMnXSS7fXZPfjIVzkUf2zOAwb+4IxU9Vc=","crlite_enrolled":false,"id":"de55f04b-e0f9-4d47-a8f4-5bb1ca8d24af","last_modified":1576536532989},{"schema":1576535633463,"derHash":"jCQQ92sUnKBitCCrYRtr8KBubnmaKVh+TU7BbQU3t+o=","subject":"CN=AlphaSSL CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MEwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSIwIAYDVQQDExlBbHBoYVNTTCBDQSAtIFNIQTI1NiAtIEcy","whitelist":false,"attachment":{"hash":"251b1c75021f8bc991e5055b95dc85d55b230fe1e51032acec934db9388e32bb","size":1548,"filename":"amMeV6gb9QNx0Zf7FtJ19Wa_t2B7Kp
CF_1n2Js3UuSU=.pem","location":"security-state-staging/intermediates/9f419b94-c769-4b88-9c1a-b128ea2e4c7f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"amMeV6gb9QNx0Zf7FtJ19Wa/t2B7KpCF/1n2Js3UuSU=","crlite_enrolled":true,"id":"d511b39d-be68-4a28-831e-12c61c4a9c8f","last_modified":1576536532983},{"schema":1576535630524,"derHash":"YTvHs5w3gkHulTuhpRno9f4wIjsEV/EMw14wpJM7oT8=","subject":"CN=EV TLS RSA ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHQxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMRowGAYDVQQDDBFFViBUTFMgUlNBIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"450066ddb6401419478134c6cc21c49591122f709bfab4eac6795f340d7fb7c0","size":2162,"filename":"gBX99XA0NOEUd6rWyM2Sljn_RHatTUjnhh-CTUMNF9Y=.pem","location":"security-state-staging/intermediates/42108e76-498d-4cf5-ba7d-c870ef1380c5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gBX99XA0NOEUd6rWyM2
Sljn/RHatTUjnhh+CTUMNF9Y=","crlite_enrolled":false,"id":"c15cd20b-10b4-4541-8ab4-4bc8b11d1ba3","last_modified":1576536532977},{"schema":1576535629122,"derHash":"h3oG24ul2jvaQClnYHePwqwYuRj9jcDs5C+q+U4OfgE=","subject":"CN=Code Signing RSA ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHoxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMSAwHgYDVQQDDBdDb2RlIFNpZ25pbmcgUlNBIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"8e6d563b0f09cfa72c95f8a2d88bfd3916fae9d8695168d0808b7a763383c67e","size":2146,"filename":"K1lPt4REdICzUhMjxOlgDpqJPE3nn9EmNsiWORHNbF8=.pem","location":"security-state-staging/intermediates/8cf01f2e-8b7a-4d6c-b286-017322ec9948.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"K1lPt4REdICzUhMjxOlgDpqJPE3nn9EmNsiWORHNbF8=","crlite_enrolled":false,"id":"610aab37-a863-4feb-bdec-615fe799f373","last_modified":1576536532971},{"schema":1576535881203,"derHash":"/FUnD
+zHzYsTnjTLDolmBrKwO79YSJMKUKJRNDo20Qw=","subject":"CN=SSL X Y & Z EV TLS CA RSA R1,O=SSL X Y & Z Corp.,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHMxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExGjAYBgNVBAoMEVNTTCBYIFkgJiBaIENvcnAuMSUwIwYDVQQDDBxTU0wgWCBZICYgWiBFViBUTFMgQ0EgUlNBIFIx","whitelist":false,"attachment":{"hash":"f056a95f23b4c48b57e03eb9655e5b2cdb76ae8ffb5a21b0c71900a4012e7ade","size":2446,"filename":"TJQd4p_Mb4gEcXc_faqyIKD02JVJuPcRmDP6eWrYj4U=.pem","location":"security-state-staging/intermediates/e7206eaf-5ba8-4318-9e57-7f0f7a5ab946.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TJQd4p/Mb4gEcXc/faqyIKD02JVJuPcRmDP6eWrYj4U=","crlite_enrolled":false,"id":"6cab8056-0a21-41cf-949d-aefefd3538ca","last_modified":1576536532962},{"schema":1576535627693,"derHash":"B3t19rf6cb5PgSHh7FL668oNCu0twBcRoPbc3Djnvzg=","subject":"CN=AffirmTrust Premium ECC Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=AffirmTrust,C=US","subjectDN":"MIGLMQswCQ
YDVQQGEwJVUzEUMBIGA1UECgwLQWZmaXJtVHJ1c3QxLTArBgNVBAsMJGh0dHA6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291cmNlczE3MDUGA1UEAwwuQWZmaXJtVHJ1c3QgUHJlbWl1bSBFQ0MgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"43b4e45ea693189a3d8c47075e8ca1933b10bcf2637194cee318ac943a3e3fb2","size":1284,"filename":"wbpI9B7IKa-_o7qnyxj6V-kvQMgcCDHDVt0t5EmhFCU=.pem","location":"security-state-staging/intermediates/9298955a-093a-4c5e-8b94-0cae2ef4d2f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wbpI9B7IKa+/o7qnyxj6V+kvQMgcCDHDVt0t5EmhFCU=","crlite_enrolled":false,"id":"dc12948f-61be-42e3-928b-19b5d31626c6","last_modified":1576536532957},{"schema":1576535624708,"derHash":"fYm6d2TP9v4u6a1Eg41WxdV/Pdc2+WBo3psKFxD7PUc=","subject":"CN=Henkel Secure E-mail CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Henkel AG & Co. KGaA,C=DE","subjectDN":"MIGPMQswCQYDVQQGEwJERTEdMBsGA1UECgwUSGVua2VsIEFHICYgQ28uIEtHYUExPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR
1YWwgU3Vic2NyaWJlciBDQTEgMB4GA1UEAwwXSGVua2VsIFNlY3VyZSBFLW1haWwgQ0E=","whitelist":false,"attachment":{"hash":"294ab264e7b4ee55cfa9efb8ae4aea5f4996733a4807ee05c08cc6a41b60767c","size":2385,"filename":"UgDmKmS9-uOo8N_FB448s8_bWQidaNeI-pMnokDiLt8=.pem","location":"security-state-staging/intermediates/b2fbe93c-f81d-447a-8e42-a4fbb3cfb908.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UgDmKmS9+uOo8N/FB448s8/bWQidaNeI+pMnokDiLt8=","crlite_enrolled":false,"id":"2c1552f1-bf67-4dd1-b718-1d94dca8ec29","last_modified":1576536532950},{"schema":1576535621506,"derHash":"dD4yjzKeGU2iUnEb9r/wDPY7akwKpmsuGWdxaRBniXE=","subject":"CN=TrustID Server CA E1,OU=TrustID Server,O=IdenTrust,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxFzAVBgNVBAsTDlRydXN0SUQgU2VydmVyMR0wGwYDVQQDExRUcnVzdElEIFNlcnZlciBDQSBFMQ==","whitelist":false,"attachment":{"hash":"0bdc1e653dd27bde4924c78842f2ce8a676e17e94570bcb4d9a68dbb15842d8a","size":2398,"filename":"ddXHjYup7j8-aweO9eKo5dPHP_ulMVLc4zqjLb
j0f6s=.pem","location":"security-state-staging/intermediates/a2c07257-f449-4845-8a46-396088d1f54d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ddXHjYup7j8+aweO9eKo5dPHP/ulMVLc4zqjLbj0f6s=","crlite_enrolled":false,"id":"3238adbc-8e16-4f0c-8de1-94a33d6b7601","last_modified":1576536532946},{"schema":1576535620060,"derHash":"GRHihJevksIKAdCKmO1CYcxLA1Vksxxv5J8zuUTv9KE=","subject":"SERIALNUMBER=202013,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDEz","whitelist":false,"attachment":{"hash":"f711bb1c2c21ddbf0b2e54b19b1d218c32f69ec21cd4b5d142e882fbb86962c0","size":2333,"filename":"OYSO5rBxTAxhmALfXxoU_JmeXYPpNe7f9A8A7RlSMpE=.pem","location":"security-state-staging/intermediates/87eea63e-7839-4503-9b98-e116df917240.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OYSO5rBxTAxhmALfXxoU/JmeXYPpNe7f9A8A7RlSMpE=","crlite_enroll
ed":false,"id":"6995e0b8-1596-4485-b620-cdacc2d62dd0","last_modified":1576536532938},{"schema":1576535615726,"derHash":"7Cnv0MXdRFP5Ehu+TJzOvolZVerYc8ks/nQ4VPW48Jw=","subject":"CN=UIS-IntB-CA","subjectDN":"MBYxFDASBgNVBAMTC1VJUy1JbnRCLUNB","whitelist":false,"attachment":{"hash":"4b6def81757fa93692e39ad391d859a97a2588dbee94fc28099ded53ed43507a","size":1711,"filename":"ijOSli4ZzEAaB9BJofum10hbmy0ANTh-Hk3l6PItp34=.pem","location":"security-state-staging/intermediates/15da25c3-a3b9-4737-9e47-9c5c770f1a5e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ijOSli4ZzEAaB9BJofum10hbmy0ANTh+Hk3l6PItp34=","crlite_enrolled":false,"id":"0d24cbb7-5903-4eb4-90ae-67ba7e8ac227","last_modified":1576536532931},{"schema":1576535617235,"derHash":"I93wiyI3PYYVjrnJn9tTZrGYBFYFMTct0g3OP7dm9Ww=","subject":"CN=GeoTrust CN RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHjAcBgNVBAMTFUdlb1RydXN0IENOIFJ
TQSBDQSBHMQ==","whitelist":false,"attachment":{"hash":"286b2d63e30e027855db802c9e0539ca23b9a9060c9f3e3b810fc02209173191","size":1829,"filename":"4H6OXny7MqJPbCOTpHyS0fSSUeHk_I5nKbIyuQwnfsA=.pem","location":"security-state-staging/intermediates/8e773633-0151-43b1-93be-e2074d328d67.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4H6OXny7MqJPbCOTpHyS0fSSUeHk/I5nKbIyuQwnfsA=","crlite_enrolled":true,"id":"5e1984cb-9f6f-403f-98dc-ede2f85ccbae","last_modified":1576536532928},{"schema":1576535612816,"derHash":"3OsG4EanZwa9HZKPotuJPbVQ0pc5FIQ8XMXb4tnZt50=","subject":"CN=RISE Signing CA,OU=IT,O=RISE Research Institutes of Sweden AB,L=Goteborg,ST=Vastra Gotalands Lan,C=SE","subjectDN":"MIGWMQswCQYDVQQGEwJTRTEdMBsGA1UECBMUVmFzdHJhIEdvdGFsYW5kcyBMYW4xETAPBgNVBAcTCEdvdGVib3JnMQswCQYDVQQLEwJJVDEuMCwGA1UEChMlUklTRSBSZXNlYXJjaCBJbnN0aXR1dGVzIG9mIFN3ZWRlbiBBQjEYMBYGA1UEAxMPUklTRSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"0b3130a1bf94bcc09068abf71183511b68ea44796ff137283c0bb9befe4
36a08","size":2341,"filename":"ABereoS4tHlP22V2SwqX-_gSDxY5zscHpMnIBdDpp1Q=.pem","location":"security-state-staging/intermediates/59dec23c-71c4-4991-91c4-fc481fb67086.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ABereoS4tHlP22V2SwqX+/gSDxY5zscHpMnIBdDpp1Q=","crlite_enrolled":false,"id":"46209f3f-7ba4-418d-bea7-e7fc955216a9","last_modified":1576536532924},{"schema":1576535609692,"derHash":"EAz34Tc+va4jPl+LGlOF/av+6KMfdS4zIZ00PeOvvJw=","subject":"CN=Ensured Root CA,O=Ensured B.V.,L=Heerhugowaard,ST=Noord-Holland,C=NL","subjectDN":"MG4xCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRYwFAYDVQQHEw1IZWVyaHVnb3dhYXJkMRUwEwYDVQQKEwxFbnN1cmVkIEIuVi4xGDAWBgNVBAMTD0Vuc3VyZWQgUm9vdCBDQQ==","whitelist":false,"attachment":{"hash":"dd7d8d5feb4991b7b316e15803451412027d152bba5f790538c890d7f73ad0a1","size":2020,"filename":"oFFz-dNXVxF2ZtWXUXfFMl3bcWWlI43L4JLhIemPN3w=.pem","location":"security-state-staging/intermediates/e5746ff6-3f16-468a-b066-d3abf5428ab8.pem","mimetype":"application/x-
pem-file"},"pubKeyHash":"oFFz+dNXVxF2ZtWXUXfFMl3bcWWlI43L4JLhIemPN3w=","crlite_enrolled":false,"id":"be465d19-94ce-4a45-8efa-c8ab0e3e3e75","last_modified":1576536532920},{"schema":1576535611170,"derHash":"7R/0Bw8IaOsgoDGfxgGRmAD25e/YI6YVayf4nLBLLCY=","subject":"CN=TLS ECC ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHExCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMRcwFQYDVQQDDA5UTFMgRUNDIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"cdef2916796079c83b6dca7ea4057f6349122487ca8f75c47a08e663b83d0ac2","size":1329,"filename":"x0b-nG3FvmwYXc4hymUVggr-35gjXzG-RtqvVgdjLaY=.pem","location":"security-state-staging/intermediates/3953305c-dd4c-413f-9c24-c98b0e5a57c2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x0b+nG3FvmwYXc4hymUVggr+35gjXzG+RtqvVgdjLaY=","crlite_enrolled":false,"id":"622d3ad6-978f-43e1-bfd5-8f6bebf7a53f","last_modified":1576536532916},{"schema":1576535
614276,"derHash":"cFYQcjyWE/ZBMYHK33PVEHG9dh/aSRQj4avQAVAbZPM=","subject":"CN=Digidentity BV PKIoverheid Organisatie Server CA - G3,O=Digidentity B.V.,C=NL","subjectDN":"MIGBMQswCQYDVQQGEwJOTDEZMBcGA1UECgwQRGlnaWRlbnRpdHkgQi5WLjEXMBUGA1UEYQwOTlRSTkwtMjczMjI2MzExPjA8BgNVBAMMNURpZ2lkZW50aXR5IEJWIFBLSW92ZXJoZWlkIE9yZ2FuaXNhdGllIFNlcnZlciBDQSAtIEcz","whitelist":false,"attachment":{"hash":"ea3643e9caf068468406f4fccd9435feabff55ebc6e0969f16722f970943804b","size":2609,"filename":"zm4euNC-JiW-4by3xDIvrjNA-47VRZb3MnFpy-xVE4E=.pem","location":"security-state-staging/intermediates/3a61810b-d2ad-4815-aed1-a1d77b4594fc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zm4euNC+JiW+4by3xDIvrjNA+47VRZb3MnFpy+xVE4E=","crlite_enrolled":true,"id":"5f89bdcc-376e-4489-9362-6be0bd69133c","last_modified":1576536532909},{"schema":1576535606746,"derHash":"OwzCA4StfyTrQ48rgMY+vgA/fyFbiHfkGOuwSEAo21c=","subject":"CN=Entrust Certification Authority - L1K,OU=See www.entrust.net/legal-terms+OU=(c) 2012 Ent
rust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTIgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFL","whitelist":false,"attachment":{"hash":"87d3147517902aed8e819b14b1dacf02ee1294c4c3b31b4bb42a0369c1435b9f","size":1711,"filename":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0uc=.pem","location":"security-state-staging/intermediates/5cc18fd8-15e6-494b-a189-5e1a98f43e77.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0uc=","crlite_enrolled":true,"id":"ca408a50-c8da-4bfe-967d-1c1fd0bb946c","last_modified":1576536532905},{"schema":1576535605336,"derHash":"VfOjWfCibXL/JEwu45b9UbwkAOolDJHvw1Xi+BA8mTk=","subject":"CN=DigiCert PKI Platform C2 Shared SMIME Individual Subscriber CA,O=DigiCert\\, Inc.,C=US","subjectDN":"MG8xC
zAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjFHMEUGA1UEAxM+RGlnaUNlcnQgUEtJIFBsYXRmb3JtIEMyIFNoYXJlZCBTTUlNRSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0E=","whitelist":false,"attachment":{"hash":"fd6efa96746cef0ca8ce8597e6e6fbc2f1cb6fa9dd9295250b112e46354ea94f","size":2182,"filename":"xCPd-4wOcg7RHCiFt8QndJQj0lTGpZNzZgqyMY0yEFw=.pem","location":"security-state-staging/intermediates/f079080e-f88e-4928-97ef-7f18e0a5938b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xCPd+4wOcg7RHCiFt8QndJQj0lTGpZNzZgqyMY0yEFw=","crlite_enrolled":false,"id":"e20477f8-f814-48f9-bd92-7e92a2bd12c3","last_modified":1576536532901},{"schema":1576535603787,"derHash":"gC4LEz1hRBoKaveZ3F5LJglymQ1ty4fcCs/FhdkIJhA=","subject":"CN=KAINOS-PUBLIC-TRUST,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Kainos Software Ltd,C=GB","subjectDN":"MIGKMQswCQYDVQQGEwJHQjEcMBoGA1UEChMTS2Fpbm9zIFNvZnR3YXJlIEx0ZDE/MD0GA1UECxM2Q2xhc3MgMiBEaWdpQ2VydCBQS0kgUGxhdGZvcm0gSW5kaXZpZHVhbCBTdWJzY3JpYmVyIENBMRwwGgYDVQQDExNLQUl
OT1MtUFVCTElDLVRSVVNU","whitelist":false,"attachment":{"hash":"f9b2ca117f05b362a6d654febf9b94ed53454c2fd3971b036e93ded0a1ca2a1e","size":2052,"filename":"c_Ep9MPvAU_vVs08JfE2_ztuEqYPDLwz_RD1oE_4__M=.pem","location":"security-state-staging/intermediates/e93cd091-763c-4dc9-a571-7c2da2b86a50.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"c/Ep9MPvAU/vVs08JfE2/ztuEqYPDLwz/RD1oE/4//M=","crlite_enrolled":false,"id":"46307b27-d96a-4832-a7c6-01140ad38819","last_modified":1576536532898},{"schema":1576535602401,"derHash":"Kosib1zF9+os4ESe64pxX4a7rSRB53XcX4m/f7BlphY=","subject":"SERIALNUMBER=202004,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDIwMDQ=","whitelist":false,"attachment":{"hash":"530c26605f6cc334c3b24de395cde5d524dc087c7e5d426c096ae73d47e5671b","size":2337,"filename":"YKoPQytsUiYv9XeHwk2Vn9vD9ArNj_LsZreUUWmHDPM=.pem","loca
tion":"security-state-staging/intermediates/f5b681e8-e2c0-4537-9b4a-5e7391c4a09a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YKoPQytsUiYv9XeHwk2Vn9vD9ArNj/LsZreUUWmHDPM=","crlite_enrolled":false,"id":"28a75208-9a9a-47d5-8400-f79e047b5462","last_modified":1576536532894},{"schema":1576535600960,"derHash":"z7IiWXstBVtHh9pyOnSNfi9Dd9t8i5T3/ZmvW9IWP8k=","subject":"SERIALNUMBER=202002,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDAy","whitelist":false,"attachment":{"hash":"513c238212527dc8f0129c6323cbf9607be77ea2434d5ba48063eaa65e8f1720","size":2333,"filename":"TXCiKaiHdI6ASTC6_M9mbHGeLbmkLX5hTPl45I7zvY8=.pem","location":"security-state-staging/intermediates/1ae2f1a9-4b9a-4207-8977-04f97bfd005b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TXCiKaiHdI6ASTC6/M9mbHGeLbmkLX5hTPl45I7zvY8=","crlite_enrolled":false,"id":"e
579267f-82d9-4f4c-8aa0-323312c433c5","last_modified":1576536532887},{"schema":1576535597671,"derHash":"4VXr+WM055ri4ofVXPyRhd4kk1plPxPFugWv+Bh3G8Y=","subject":"CN=GlobalSign CloudSSL CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIENsb3VkU1NMIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"55655605c7ce9c971ab03390d8184fc277ae70699910a9e487994de27fd1e269","size":1638,"filename":"-VZJxHgrOOiVyUxgMRbfoo-GIWrMKd4aellBBHtBcKg=.pem","location":"security-state-staging/intermediates/dd061739-a439-406c-bc1c-c3dcf1a5c2c5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+VZJxHgrOOiVyUxgMRbfoo+GIWrMKd4aellBBHtBcKg=","crlite_enrolled":true,"id":"53fa801b-05d6-4051-90f3-4350385d8e6c","last_modified":1576536532883},{"schema":1576535594773,"derHash":"G8OytG+vAPCtjmleK3WTvZNHNl0savqxSQ42CJbvbko=","subject":"SERIALNUMBER=202009,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subje
ctDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDA5","whitelist":false,"attachment":{"hash":"3ce81fe0691ef3beea65fca4658bd6387ac10bbe5f14ec28000785c58f4950a5","size":2333,"filename":"DSlbVTwQBYvCao9cl8EkWAC1CjW7Fie6KKpzjPDp1Rw=.pem","location":"security-state-staging/intermediates/34f0e639-4d4d-47c8-9598-8259f59ee104.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DSlbVTwQBYvCao9cl8EkWAC1CjW7Fie6KKpzjPDp1Rw=","crlite_enrolled":false,"id":"274acd87-6025-4bce-bb40-37e93b78302b","last_modified":1576536532879},{"schema":1576535596263,"derHash":"ANuGpwh6dQzgezJV0NMSnoiMqeDuys+ecr2ydrFxR+8=","subject":"CN=KLASS3-SK 2010,OU=Sertifitseerimisteenused,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MG0xCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMSEwHwYDVQQLExhTZXJ0aWZpdHNlZXJpbWlzdGVlbnVzZWQxFzAVBgNVBAMTDktMQVNTMy1TSyAyMDEw","whitelist":false,"attachment":{"hash":"042b094c75
aa054c83b0bfb76bf4cc6a362c77b88f8c7ddffc0770a77ea5ce75","size":1849,"filename":"21pSl8-gYIgzVrmihoLqfp4XlT3k97qo-M2ZGRQsy4Q=.pem","location":"security-state-staging/intermediates/8b165542-5819-4ea0-b9ec-4b1f31d1704c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"21pSl8+gYIgzVrmihoLqfp4XlT3k97qo+M2ZGRQsy4Q=","crlite_enrolled":false,"id":"c4e9303c-d86a-4819-adae-e6fbfe2cd985","last_modified":1576536532872},{"schema":1576535589142,"derHash":"ThU6WIh3aI8aDBA6CEwu2zrR2MSAzwPYq2/tR9kgQ3A=","subject":"CN=GlobalSign Domain Validation CA - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"76d0b5a6bef0132806bae16a534cb1699d6f053ea10a73a6a9f121dd15765520","size":1626,"filename":"TEb9SdyV5a_KjM7PCm4dOji-92ekxy7uuBKyI1Gg5v4=.pem","location":"security-state-staging/intermediates/0488e943-51c6-4a2a-9cc4-5979ebb4cc57.pem","mimetype":"appli
cation/x-pem-file"},"pubKeyHash":"TEb9SdyV5a/KjM7PCm4dOji+92ekxy7uuBKyI1Gg5v4=","crlite_enrolled":false,"id":"f366897a-f2ea-4b9e-be08-13b01c4f215c","last_modified":1576536532868},{"schema":1576535586284,"derHash":"Pwrls9BWUkcqEIwoVGNksxtaM9AVKLVV/qshr667Wzo=","subject":"CN=Trend Micro CA,O=Trend Micro Inc,C=US","subjectDN":"MEAxCzAJBgNVBAYTAlVTMRgwFgYDVQQKDA9UcmVuZCBNaWNybyBJbmMxFzAVBgNVBAMMDlRyZW5kIE1pY3JvIENB","whitelist":false,"attachment":{"hash":"61d3d2c76fff74929a739fafc9288572e7cb53a76ebc465347acb2c2000ca94c","size":1447,"filename":"qczcaUM72BvrELfBo2n2WlYnwx7A5w4eV0dgYXXe1Bk=.pem","location":"security-state-staging/intermediates/9c45e999-6dc2-4a83-b49b-687d87da1f29.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qczcaUM72BvrELfBo2n2WlYnwx7A5w4eV0dgYXXe1Bk=","crlite_enrolled":false,"id":"5cb4733e-13a4-4279-81c5-5692b01bd879","last_modified":1576536532862},{"schema":1576535587654,"derHash":"yHzgOv+13mMZwhmXHy7S2Pb1OJ4tU7It0sVipcmCf8A=","subject":"CN=GeoTrust EV CN RSA
G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHjAcBgNVBAMTFUdlb1RydXN0IEVWIENOIFJTQSBHMQ==","whitelist":false,"attachment":{"hash":"d222797c82dd7127576a516cb679acc7149d876ca1871f151665584a65c8958e","size":1678,"filename":"_AbtYXa2JlKxQyB1FnBObb2Wv8Q-bUxjsGRIXvzcvpQ=.pem","location":"security-state-staging/intermediates/018708e8-2e71-4cdd-808d-b307f41e71a2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/AbtYXa2JlKxQyB1FnBObb2Wv8Q+bUxjsGRIXvzcvpQ=","crlite_enrolled":true,"id":"dd86d747-415a-4663-841b-9d245710f0eb","last_modified":1576536532858},{"schema":1576535584747,"derHash":"cMfmgRnfrRKKiOHXr4501aGeKxmh9ejwCKnPUPRPLbs=","subject":"CN=SSL X Y & Z TLS CA RSA R1,O=SSL X Y & Z Corp.,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHAxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExGjAYBgNVBAoMEVNTTCBYIFkgJiBaIENvcnAuMSIwIAYDVQQDDBlTU0wgWCBZICYgWiBUTFMgQ0EgUlNBIFIx","w
hitelist":false,"attachment":{"hash":"fa1303b719e1d84c2d575bdb34a549d866cb7136d850a3400cbfd89b2f4ccbe5","size":2430,"filename":"R4T7HX6pKZp9r7OGr6NyCYcdUsEH_aad6Zft_LMvyf0=.pem","location":"security-state-staging/intermediates/5bb7f143-7660-4b95-878e-f1341fea8ea6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"R4T7HX6pKZp9r7OGr6NyCYcdUsEH/aad6Zft/LMvyf0=","crlite_enrolled":false,"id":"d62e32e9-67fb-4119-951f-c462ddffe4e7","last_modified":1576536532855},{"schema":1576535583284,"derHash":"2jvIEAX9u4U9aBp+lCZhrrojeJIRUl6vUiIfKFFMCcs=","subject":"CN=QuoVadis Issuing CA G4,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDExZRdW9WYWRpcyBJc3N1aW5nIENBIEc0","whitelist":false,"attachment":{"hash":"7b11a86250a18ac5dac6b4e9d9a5638069dc115c40cfdef38dc073726ccda870","size":1967,"filename":"Q3uGh6nrEU1_2eTHReUBvoLYNArYb3i7Qz286_nBn7Q=.pem","location":"security-state-staging/intermediates/35521446-cee1-4cf0-947c-c068c11acec1.pem","mi
metype":"application/x-pem-file"},"pubKeyHash":"Q3uGh6nrEU1/2eTHReUBvoLYNArYb3i7Qz286/nBn7Q=","crlite_enrolled":true,"id":"13ab7e91-4d7f-417d-9099-ffcf9e4bf594","last_modified":1576536532851},{"schema":1576535581658,"derHash":"en2t4IVo/Tv/JFPmm3qE1b9Bc7S/WM0GQ/8GDDX5Fl0=","subject":"CN=SSL X Y & Z TLS CA ECC R1,O=SSL X Y & Z Corp.,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHAxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExGjAYBgNVBAoMEVNTTCBYIFkgJiBaIENvcnAuMSIwIAYDVQQDDBlTU0wgWCBZICYgWiBUTFMgQ0EgRUNDIFIx","whitelist":false,"attachment":{"hash":"d9454a599aefed353e8d1bead50ae07d5bd45c94c6729e3d59e8c4c72306ab4e","size":1268,"filename":"TC1hkMikhbNbWT7TjUDnHdt4hkFz4dY7ULwwF8-lf3I=.pem","location":"security-state-staging/intermediates/14e678e7-d2fe-4b48-a544-60cfa82b3275.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TC1hkMikhbNbWT7TjUDnHdt4hkFz4dY7ULwwF8+lf3I=","crlite_enrolled":false,"id":"fc0bb8ef-4095-4f5b-98eb-34c572664019","last_modified":1576536532843},
{"schema":1576535578773,"derHash":"dO8zXl4YeIMH+52Jy3BL7BEqvSNIfb/0HE3tUHDyQdk=","subject":"CN=GlobalSign Organization Validation CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzI=","whitelist":false,"attachment":{"hash":"d127064c98a35e06b558457e35c1d15905d100eb14b73d7fd679b978441b5b0f","size":1589,"filename":"IQBnNBEiFuhj-8x6X8XLgh01V9Ic5_V3IRQLNFFc7v4=.pem","location":"security-state-staging/intermediates/a6c94cd4-4f33-46e2-8858-3eacc056bb12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IQBnNBEiFuhj+8x6X8XLgh01V9Ic5/V3IRQLNFFc7v4=","crlite_enrolled":true,"id":"f4e16820-98b9-49a9-8e18-7494d1d0dd70","last_modified":1576536532836},{"schema":1576535580153,"derHash":"Bip25RluTGIgrKfTKqQZdhEBN0wRhmw2J9X4oFXs4s4=","subject":"CN=Symantec Class 3 Admin Intermediate Certificate Authority,OU=Symantec Trust Network,O=Symantec Corporation,C=
US","subjectDN":"MIGRMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxQjBABgNVBAMTOVN5bWFudGVjIENsYXNzIDMgQWRtaW4gSW50ZXJtZWRpYXRlIENlcnRpZmljYXRlIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"6e68121c7da618c74b2bf94b41b68161d9de0843f9a65350b2b41464efdd6c36","size":2203,"filename":"DIqmg6q0EEYaGDu2kzw3JDDctRJMyX5PRKKp2nBoL5I=.pem","location":"security-state-staging/intermediates/1ebad936-5863-490b-a667-2a96eb695a7d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DIqmg6q0EEYaGDu2kzw3JDDctRJMyX5PRKKp2nBoL5I=","crlite_enrolled":false,"id":"9942326c-f86b-4922-895e-e23f9e021b32","last_modified":1576536532832},{"schema":1576535577287,"derHash":"80mVTo+21EARvLeJ2X2aLLIDK9XwtZjR+4oJn1hI1SM=","subject":"CN=GlobalSign,OU=GlobalSign ECC Root CA - R5,O=GlobalSign","subjectDN":"MFAxJDAiBgNVBAsTG0dsb2JhbFNpZ24gRUNDIFJvb3QgQ0EgLSBSNTETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbg==","whitelist":false,"attachment":{"
hash":"8e31af76b6ffba628ef77f3869f8354882f946eb5ff2352cf52785a9787b247b","size":1325,"filename":"fg6tdrtoGdwvVFEahDVPboswe53YIFjqbABPAdndpd8=.pem","location":"security-state-staging/intermediates/afbb8634-f114-41c2-98ab-86ef89d3a7f8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fg6tdrtoGdwvVFEahDVPboswe53YIFjqbABPAdndpd8=","crlite_enrolled":false,"id":"77a173f6-46fd-4be8-ba6f-c64b6308db3f","last_modified":1576536532829},{"schema":1576535575850,"derHash":"ZhFE0REXIkQICyTX/kp7zraow12gyZGMjppYY13Ekjw=","subject":"CN=Entrust Class 2 Client CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAxMCBFbnRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDIgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"4277e2a7f71129a3837869b4dc2390a017ee5641def4a8640f1b4f673b8
b643f","size":1760,"filename":"JloS0qeSNdA_zDy0D24iKRwsIsmYt-GFR_0g8UIjlUE=.pem","location":"security-state-staging/intermediates/eadd6041-e936-41dc-ae64-e03625e527ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JloS0qeSNdA/zDy0D24iKRwsIsmYt+GFR/0g8UIjlUE=","crlite_enrolled":true,"id":"f00a5631-60d1-4b34-9191-50b30924ed38","last_modified":1576536532825},{"schema":1576535572387,"derHash":"D+RlaG/uLc0BKaFqfVm6Kisz9lKbWYiXU7g+C+o7fgQ=","subject":"SERIALNUMBER=202007,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDA3","whitelist":false,"attachment":{"hash":"a5513b0fbc7d522403e4c0ca9a2ad46a72d21ee012f373b1b0db761e2ae7e601","size":2333,"filename":"sRTAvLuml1nZ25l3oqzol98ZuS1JG5EdhJ-TY63PwXo=.pem","location":"security-state-staging/intermediates/713bda9e-695b-47d5-bfb8-022892bf0b34.pem","mimetype":"application/x-pem-file"},"pubKe
yHash":"sRTAvLuml1nZ25l3oqzol98ZuS1JG5EdhJ+TY63PwXo=","crlite_enrolled":false,"id":"7914b6fe-1a40-47cf-8d43-5b437aec1f07","last_modified":1576536532821},{"schema":1576535569402,"derHash":"IpdXDb0sDe8bBQ2ZJ/6oldsP0guCuFluCgoTJezgjQU=","subject":"CN=SECOM Passport for Web SR 2.0 CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MF8xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSkwJwYDVQQDEyBTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIFNSIDIuMCBDQQ==","whitelist":false,"attachment":{"hash":"e915fd41e3e3cc034825e2e513688643882df2dd79b58f8738fe092993109c81","size":1520,"filename":"0CzdK_GELTntEyD4ub9b3f0cOshJkKpSgLbs7o9cHbA=.pem","location":"security-state-staging/intermediates/5b3e9b4a-ea34-4675-849e-8adbd915a261.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0CzdK/GELTntEyD4ub9b3f0cOshJkKpSgLbs7o9cHbA=","crlite_enrolled":false,"id":"9ec6f3e5-9aab-41f6-9ccf-5ede8da74e5e","last_modified":1576536532814},{"schema":1576535570874,"derHash":"D1e5b6ezEkfsOcswfTjKK/Oyn1Sv
1Qo1HRhTNSlRe0Y=","subject":"CN=DigiCert Transition Root G3,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBUcmFuc2l0aW9uIFJvb3QgRzM=","whitelist":false,"attachment":{"hash":"c080ef9080f906fa2c289ef910f8910848f4f26bfb328c0efd43ac77fcc52cc3","size":2040,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/ce901e54-cf68-4abc-b935-9640cec37430.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"fb9b4b7b-76ea-4ba8-b5f6-2f80547aa743","last_modified":1576536532811},{"schema":1576535567918,"derHash":"26EJdxDzximUPCPcdQOsgrkUKCXvBJ8cJlONs2tIBUk=","subject":"CN=thawte Primary Transition Root,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29t
MScwJQYDVQQDEx50aGF3dGUgUHJpbWFyeSBUcmFuc2l0aW9uIFJvb3Q=","whitelist":false,"attachment":{"hash":"89dee949e02c694fa984b3b8c8b7969c98ab3399e00e52dca4306446b0384992","size":1735,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/03b26244-8e28-4bfa-acb2-0df61add2abc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"af87efd1-445a-4171-8aef-7caaca23fb3f","last_modified":1576536532807},{"schema":1576535566488,"derHash":"KtkJUW/XLKcNgB7oMeS7heqvlsJSDI+Dy6aOm1Rz9Nk=","subject":"CN=TBS X509 CA Persona 3 (RSA),O=TBS INTERNET Ltd.,L=Douglas,ST=Isle of Man,C=IM","subjectDN":"MHcxCzAJBgNVBAYTAklNMRQwEgYDVQQIEwtJc2xlIG9mIE1hbjEQMA4GA1UEBxMHRG91Z2xhczEaMBgGA1UEChMRVEJTIElOVEVSTkVUIEx0ZC4xJDAiBgNVBAMTG1RCUyBYNTA5IENBIFBlcnNvbmEgMyAoUlNBKQ==","whitelist":false,"attachment":{"hash":"461a7cb9308661369347d20ce15e3c4d6ebfa7b32b74c4a2b3d2d306d0b9fe81","size":2125,"
filename":"z3pEJKBoO1fdk2jCBPfRIop6ygjEkto5FhQko4yPR9A=.pem","location":"security-state-staging/intermediates/9f88bad7-8b3a-4092-9c6c-c850ef8cf5c6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z3pEJKBoO1fdk2jCBPfRIop6ygjEkto5FhQko4yPR9A=","crlite_enrolled":false,"id":"b299de4d-2908-4fed-9755-f51ebc482510","last_modified":1576536532803},{"schema":1576535565134,"derHash":"x80C+uV4aHQ2n1NFdBbrcTNXFkf+kSIJ78Twd6jtcuM=","subject":"SERIALNUMBER=202015,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDE1","whitelist":false,"attachment":{"hash":"51ef9ce4079b75fb93d27cb9af4ed07b2bcd7336b6f53687b00e904458dcf0b3","size":2333,"filename":"kY1t8IGrljcRfRgo1nuCJj6b5Qn9itJ695GG1Rd1Bro=.pem","location":"security-state-staging/intermediates/c31bd631-14e9-4399-b33e-79c247091349.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kY1t8IGrljc
RfRgo1nuCJj6b5Qn9itJ695GG1Rd1Bro=","crlite_enrolled":false,"id":"5b90ea65-389e-4fb6-b10f-faef455a1c0b","last_modified":1576536532799},{"schema":1576535563725,"derHash":"6TJ6NHy+HLlM3JqlTLMbbkPWiWjRfQnOMmoJG/wvCxE=","subject":"CN=ACCVCA-110,OU=PKIACCV,O=ACCV,C=ES","subjectDN":"MEMxEzARBgNVBAMMCkFDQ1ZDQS0xMTAxEDAOBgNVBAsMB1BLSUFDQ1YxDTALBgNVBAoMBEFDQ1YxCzAJBgNVBAYTAkVT","whitelist":false,"attachment":{"hash":"88d175177fc311fc5ad5e439d61dfabfbe6a0cc3dbf7be58654a104156ba2dae","size":2686,"filename":"qX1E174XIirdC_7IZnHG6ACm0iCltwbZSr_U507C-Ck=.pem","location":"security-state-staging/intermediates/7b9e7264-b0e3-4c9e-bda1-908a922c5b3f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qX1E174XIirdC/7IZnHG6ACm0iCltwbZSr/U507C+Ck=","crlite_enrolled":false,"id":"772a5e91-e4ab-4bc1-b2a7-9d88c0c7e9bf","last_modified":1576536532792},{"schema":1576535560876,"derHash":"j7iGQfTiMc6BQ2N1E4pbNtKgajzCpJ5bH0aZmBvh5FE=","subject":"CN=Absa Group Limited Public CA,OU=Class 2 DigiCert PKI Platform In
dividual Subscriber CA,O=Absa Group Limited,C=ZA","subjectDN":"MIGSMQswCQYDVQQGEwJaQTEbMBkGA1UEChMSQWJzYSBHcm91cCBMaW1pdGVkMT8wPQYDVQQLEzZDbGFzcyAyIERpZ2lDZXJ0IFBLSSBQbGF0Zm9ybSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0ExJTAjBgNVBAMTHEFic2EgR3JvdXAgTGltaXRlZCBQdWJsaWMgQ0E=","whitelist":false,"attachment":{"hash":"51736122794efa7bfecf956b04e07f42516a9ed8361aa4a44f250170f90cfb86","size":2048,"filename":"vRb7HqdoT5ixhzzRCvN6PNUCaEBVGzIOVNy1MyJgmZU=.pem","location":"security-state-staging/intermediates/07490972-9ddc-4a60-8439-1f434b2f63a2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vRb7HqdoT5ixhzzRCvN6PNUCaEBVGzIOVNy1MyJgmZU=","crlite_enrolled":false,"id":"795ca4a8-041d-408c-99cf-62a09306cc8c","last_modified":1576536532788},{"schema":1576535558052,"derHash":"QNaZIOoFRW+gEX3mCLioATeQtUIJfjQ+wcvOLfuXE7A=","subject":"CN=Secure Site Pro Extended Validation CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaW
dpY2VydC5jb20xMjAwBgNVBAMTKVNlY3VyZSBTaXRlIFBybyBFeHRlbmRlZCBWYWxpZGF0aW9uIENBIEcy","whitelist":false,"attachment":{"hash":"8020f42d89c841697f922651d0d7b35319708585b4dae12e24e03526e2a96f83","size":1703,"filename":"C5iNVr6DMrTBS2Wvb08zPxdCQnB0DSWA-yu6a9MbQBI=.pem","location":"security-state-staging/intermediates/adec223e-eda3-4d12-bdab-c4e535e58e79.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"C5iNVr6DMrTBS2Wvb08zPxdCQnB0DSWA+yu6a9MbQBI=","crlite_enrolled":true,"id":"982fce8e-e441-4c2f-a4a8-2304fb7e2ac2","last_modified":1576536532781},{"schema":1576535555127,"derHash":"sTGQXMciEnBhO1KayeeGqiMKv+FUoKy+RSvDUL0e/ks=","subject":"CN=DigiCert CN RSA EV CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IENOIFJTQSBFViBDQSBHMQ==","whitelist":false,"attachment":{"hash":"4faf62df3f53a4fe26ac667c6b9d791fd8d952eec9c249782056ad06c4fead0d","size":1683,"filename":"mGDyZ
VimaL1gSwtTqcpINStgZay1F9wruRyUZy0wI3g=.pem","location":"security-state-staging/intermediates/20053df1-5626-4ba2-a024-3f6bb49f5e6b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mGDyZVimaL1gSwtTqcpINStgZay1F9wruRyUZy0wI3g=","crlite_enrolled":true,"id":"5ed1b67e-597a-44c5-bbf4-973e53cc5889","last_modified":1576536532777},{"schema":1576535556567,"derHash":"zXMOU/5zLY8J1ows2/0e/ZioVfXhSQIcAcsu7h2Bhuc=","subject":"CN=COMODO RSA Extended Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGSMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE4MDYGA1UEAxMvQ09NT0RPIFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"7d2f460009e99bedb3ed4c894ebf320d7eed0cf7460a7d81e4eb7dcfd8793cf7","size":2158,"filename":"Fbr_5aSOo4KRal8YE49t4lc76IOnK_oto9NWV1cSKWM=.pem","location":"security-state-staging/intermediates/0e5c6bab-00ba-4b47-8e
40-654d140bf187.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Fbr/5aSOo4KRal8YE49t4lc76IOnK/oto9NWV1cSKWM=","crlite_enrolled":true,"id":"5db685fc-9b69-480f-8fc6-f5e4386636ad","last_modified":1576536532774},{"schema":1576535552192,"derHash":"38x3XGRNtKM61xKTQz9GPI4xBXziLLJn+dMaA1P0/C8=","subject":"CN=Amazon,OU=Server CA 0A,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAwQTEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"beb147abe96d6e343843d2e2fd729d58e42b2dab74a3c0ccc41530639168e721","size":1666,"filename":"tYU57KoTkhzNuA0400h1_eZHHFoVnZvu8vpvmZg71hE=.pem","location":"security-state-staging/intermediates/e3003237-67fc-4118-adfa-35b22f4430b8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tYU57KoTkhzNuA0400h1/eZHHFoVnZvu8vpvmZg71hE=","crlite_enrolled":false,"id":"838bb94d-8f5e-4921-a93a-9035addc8ae6","last_modified":1576536532770},{"schema":1576535553697,"derHash":"I7zV16lqUTqYHq0nk25ZqAKKgHvXKGBBj2i
1VaKRFnA=","subject":"CN=Certigna Identity CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MIGCMQswCQYDVQQGEwJGUjESMBAGA1UECgwJREhJTVlPVElTMRwwGgYDVQQLDBMwMDAyIDQ4MTQ2MzA4MTAwMDM2MSIwIAYDVQRhDBlOVFJGUi0wMDAyIDQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQQDDBRDZXJ0aWduYSBJZGVudGl0eSBDQQ==","whitelist":false,"attachment":{"hash":"211c9fabe3b82a58caaded8a0e4fe51f77d8506e143103dc3f8db31704cb7e6e","size":2178,"filename":"lwJkDQYtogkGJEFJMX5DjskCXh2W7dNBRH_eJZlWjWo=.pem","location":"security-state-staging/intermediates/00c1f21f-a695-478a-9e33-19d48f9525d8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lwJkDQYtogkGJEFJMX5DjskCXh2W7dNBRH/eJZlWjWo=","crlite_enrolled":true,"id":"f695b618-333e-4759-a681-19c5f52aeb16","last_modified":1576536532767},{"schema":1576535550809,"derHash":"U5wT1vJzElL5ndK69D1AVZxGxYV1jE/EQQx+xILb7Wk=","subject":"CN=OneSignSSL ECC DV Secure Server CA,O=One Sign Pte. Ltd.,L=Singapore,ST=Singapore,C=SG","subjectDN":"MH8xCzAJBgNVBAYTAlNHMRIwEAYDVQQIEwlTaW5nYXBvcmUxEjAQBg
NVBAcTCVNpbmdhcG9yZTEbMBkGA1UEChMST25lIFNpZ24gUHRlLiBMdGQuMSswKQYDVQQDEyJPbmVTaWduU1NMIEVDQyBEViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"0e21e684e88796f0f844928dd52cc107b1280c4c7eae78e1934ca07301495bb1","size":1313,"filename":"8vM1dUqGdSXi2UQvVgGUGNw0L1p0-y-yK8MC0MVE9Zs=.pem","location":"security-state-staging/intermediates/86301532-3955-416c-9e34-7bcb144c4837.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8vM1dUqGdSXi2UQvVgGUGNw0L1p0+y+yK8MC0MVE9Zs=","crlite_enrolled":false,"id":"e0e26920-5001-4bb2-b934-8e6f0697161c","last_modified":1576536532763},{"schema":1576535547841,"derHash":"LeYg8tEgCqkLFsPM9nD9ftFDeasG+osDHP742gUepaI=","subject":"CN=ACCVCA-120,OU=PKIACCV,O=ACCV,C=ES","subjectDN":"MEMxEzARBgNVBAMMCkFDQ1ZDQS0xMjAxEDAOBgNVBAsMB1BLSUFDQ1YxDTALBgNVBAoMBEFDQ1YxCzAJBgNVBAYTAkVT","whitelist":false,"attachment":{"hash":"edd78aa1bd6255d7f1003657a126700b8500239227d9aba192fc06dd0a8d1d6b","size":2686,"filename":"XH3Wh5FuH9ZeZcCdLZM0VbsyQg3aeFV1wujvNEYNRQ8
=.pem","location":"security-state-staging/intermediates/65d00951-3633-4568-89cc-188eb82084b3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XH3Wh5FuH9ZeZcCdLZM0VbsyQg3aeFV1wujvNEYNRQ8=","crlite_enrolled":true,"id":"cf7c93de-8a6e-4b12-b0aa-7dc5ef535f84","last_modified":1576536532759},{"schema":1576535549332,"derHash":"ORIgcFt1vPPtPNSzYxIT9WnSz4ImEB4XB5mlNUqxKGE=","subject":"CN=Amazon Root CA 1,O=Amazon,C=US","subjectDN":"MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=","whitelist":false,"attachment":{"hash":"076400302106a1d71c433340807aa21af7fdcdd85ff586d57757cf6d6718dbc4","size":1646,"filename":"--MBgDH5WGvL9Bcn5Be30cRcL0f5O-NyoXuWtQdX1aI=.pem","location":"security-state-staging/intermediates/3f9e0d02-5eec-434a-9f82-730c885b8a36.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"++MBgDH5WGvL9Bcn5Be30cRcL0f5O+NyoXuWtQdX1aI=","crlite_enrolled":false,"id":"9cb19f7a-6a36-46ac-a938-502daee657ab","last_modified":1576536532756},{"schema":15765
35546460,"derHash":"DcCb1929fCwKuKBoB0wVc3SIj/qXYpAFFM8NWfqvNL8=","subject":"SERIALNUMBER=202011,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDEx","whitelist":false,"attachment":{"hash":"0bae1aae996ba5f02e57521b5020e6363bbc4090b93b9c08c78a8239a09bb853","size":2333,"filename":"q2i_RQ19XRNztaq5O0Vqrcxf0DOsBBy3DYkUcG-I2g0=.pem","location":"security-state-staging/intermediates/92c0c429-f2cd-4bb1-a505-09504e342281.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q2i/RQ19XRNztaq5O0Vqrcxf0DOsBBy3DYkUcG+I2g0=","crlite_enrolled":false,"id":"4ae8957f-b111-42f2-88e8-6d2e0d084617","last_modified":1576536532752},{"schema":1576535544989,"derHash":"pfS4JqWGN/kStp/oWZByQ73+qnGgLcRCnQZk4hSgqds=","subject":"CN=EV TLS ECC ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHQxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDq
TERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMRowGAYDVQQDDBFFViBUTFMgRUNDIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"a1b4c52e486a2016d66dc838bc590e59ddd948336f11ca09416ac685b53e9483","size":1341,"filename":"Hm-YeyBPf0CgyqM7jDoHDoSn9_W6pVfgP9SsXIGh6d4=.pem","location":"security-state-staging/intermediates/a3259a3d-6fb9-47b0-a295-0225b3cde342.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Hm+YeyBPf0CgyqM7jDoHDoSn9/W6pVfgP9SsXIGh6d4=","crlite_enrolled":false,"id":"8c7f006c-01ed-40dc-a748-e934bdf889f9","last_modified":1576536532749},{"schema":1576535542013,"derHash":"Oi++kokeV/4F1XCH9I5zDxflpfU+9APWGOW3TXp+bss=","subject":"CN=Go Daddy Root Certificate Authority - G2,O=GoDaddy.com\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIGDMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEaMBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xMTAvBgNVBAMTKEdvIERhZGR5IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachm
ent":{"hash":"28840eaf068daaa9dc2d390f16a3685d787b1538e5d8cb9b2977d2063d3719ba","size":1618,"filename":"Ko8tivDrEjiY90yGasP6ZpBU4jwXvHqVvQI0GS3GNdA=.pem","location":"security-state-staging/intermediates/9a9d5981-04f6-43af-9a85-cf7f8a3cfaf9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ko8tivDrEjiY90yGasP6ZpBU4jwXvHqVvQI0GS3GNdA=","crlite_enrolled":false,"id":"db9d1a57-7d79-44f0-a9c2-f880bce304dc","last_modified":1576536532745},{"schema":1576535540530,"derHash":"hTY6JMsbZubPYkTofSQ9u4MG9gc1fGFMucTCJKDgQ1g=","subject":"CN=QuoVadis PKIoverheid Organisatie Server CA - G3,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MIGCMQswCQYDVQQGEwJOTDEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xFzAVBgNVBGEMDk5UUk5MLTMwMjM3NDU5MTgwNgYDVQQDDC9RdW9WYWRpcyBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBTZXJ2ZXIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"2b9839d77bb3847c1706cb2e8bf87fef25e339114ceb10c8c50b05924d67ef9e","size":2609,"filename":"0RDPmiZ5chLjLl0zHCAarPh4229A9O3S02zEXEMOZL4=.pem","locat
ion":"security-state-staging/intermediates/5d4f4104-270d-401d-8122-44c0c565d211.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0RDPmiZ5chLjLl0zHCAarPh4229A9O3S02zEXEMOZL4=","crlite_enrolled":true,"id":"4cb231b7-c2c3-498a-b050-cb940c8ed420","last_modified":1576536532741},{"schema":1576535537496,"derHash":"xUU/fBRwFqmqD19LsdIX3r4cLTaMU890019VxSM8SYo=","subject":"CN=OKCERT R4 EV SSL CA G2,OU=Kingnettech,O=Kingnet Information Technology Co.\\, Ltd.,C=CN","subjectDN":"MHcxCzAJBgNVBAYTAkNOMTEwLwYDVQQKDChLaW5nbmV0IEluZm9ybWF0aW9uIFRlY2hub2xvZ3kgQ28uLCBMdGQuMRQwEgYDVQQLDAtLaW5nbmV0dGVjaDEfMB0GA1UEAwwWT0tDRVJUIFI0IEVWIFNTTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"7d588ca61738784840bbd7ff005ff17935bc0d1a36366ef3279871fa2e31ba71","size":1776,"filename":"fFdFUEieyjNs9DctpEE6fSI3FB56V1hzaJMiFIo0Rnk=.pem","location":"security-state-staging/intermediates/72d9b43e-856b-4662-a065-6f3500f76267.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fFdFUEieyjNs9DctpEE6fSI3FB56V1hz
aJMiFIo0Rnk=","crlite_enrolled":false,"id":"ee0c36d3-570c-4d2a-a081-be514ff0a94b","last_modified":1576536532733},{"schema":1576535535906,"derHash":"hsZwe74nzeEhXiXT+BRqUiKB4YxF3yy4xvt6A8FzNRA=","subject":"CN=GDCA TrustAUTH R4 Generic CA,O=GUANG DONG CERTIFICATE AUTHORITY CO.\\,LTD.,C=CN","subjectDN":"MGgxCzAJBgNVBAYTAkNOMTIwMAYDVQQKDClHVUFORyBET05HIENFUlRJRklDQVRFIEFVVEhPUklUWSBDTy4sTFRELjElMCMGA1UEAwwcR0RDQSBUcnVzdEFVVEggUjQgR2VuZXJpYyBDQQ==","whitelist":false,"attachment":{"hash":"3b6dea215a5d301b1acaa2f77d6d9182513b6bf335cd1cfaa9683bc4efe3d224","size":2060,"filename":"mXaq2dsX_TtlLffdUghF79fyMALXeMrXTTUzEgq6gv8=.pem","location":"security-state-staging/intermediates/74e3a779-4648-4fc7-8e96-17622071ed2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mXaq2dsX/TtlLffdUghF79fyMALXeMrXTTUzEgq6gv8=","crlite_enrolled":false,"id":"6ed2cbdd-26bb-461a-81d7-712abefd1ddd","last_modified":1576536532726},{"schema":1576535530119,"derHash":"FPr8qEvbiw7DJxknK+cw/hjW/CkwHFz3iUAFluxCmv4=","
subject":"CN=DigiCert Assured ID Client CA G3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKTAnBgNVBAMTIERpZ2lDZXJ0IEFzc3VyZWQgSUQgQ2xpZW50IENBIEcz","whitelist":false,"attachment":{"hash":"139cbdece29a63f10575c4fd3db1782db101a13332f52498f6d746d203036116","size":1471,"filename":"OwnA3IH2SexQr1cTjKzw_Xj6O5qxksjv4SAEa7AYVio=.pem","location":"security-state-staging/intermediates/c08a5a8f-f3b4-4fdb-8c64-e237b98f8316.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OwnA3IH2SexQr1cTjKzw/Xj6O5qxksjv4SAEa7AYVio=","crlite_enrolled":false,"id":"5f7e3c26-5dc5-4bca-820b-89b0835e925a","last_modified":1576536532722},{"schema":1576535533020,"derHash":"YvaSt0R5U9QgWrMbTjTUWgKhLKRWVK+CcP7NieLbPkc=","subject":"CN=AffirmTrust Commercial Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=AffirmTrust,C=US","subjectDN":"MIGKMQswCQYDVQQGEwJVUzEUMBIGA1UECgwLQWZmaXJtVHJ1c3QxLTArBgNVBAsMJGh0dH
A6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291cmNlczE2MDQGA1UEAwwtQWZmaXJtVHJ1c3QgQ29tbWVyY2lhbCBFeHRlbmRlZCBWYWxpZGF0aW9uIENB","whitelist":false,"attachment":{"hash":"27a3e81bf9f6497aaae6fec88eedc3a72c99ce9e8c856dcb65308fc860687bbc","size":1581,"filename":"cP3S-p60iPGa8-tLw-iQ2NE3CAx2vu0EeyZs6EXiCyo=.pem","location":"security-state-staging/intermediates/e3ba7120-a042-4465-9b24-297a54fa1d86.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cP3S+p60iPGa8+tLw+iQ2NE3CAx2vu0EeyZs6EXiCyo=","crlite_enrolled":false,"id":"4b12644e-fa2b-4185-8818-40f29402009d","last_modified":1576536532715},{"schema":1576535531565,"derHash":"JYR9Zo608E/dQLErawdAxWfafQJDCOtsLJb+QdneIY0=","subject":"CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQDExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBYMw==","whitelist":false,"attachment":{"hash":"de6da669c1368f77b7e9d695474ed9aa592423603bbbe6a546b8bd3c90c2f2fb","size":1646,"filename":"YLh1dUR9y6Kja30Rr
An7JKnbQG_uEtLMkBgFF2Fuihg=.pem","location":"security-state-staging/intermediates/3df213e3-41eb-4ad7-9716-411dd9ac133d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YLh1dUR9y6Kja30RrAn7JKnbQG/uEtLMkBgFF2Fuihg=","crlite_enrolled":false,"id":"096b6a86-f254-4a09-9836-f98ddf792a1a","last_modified":1576536532711},{"schema":1576535527226,"derHash":"YNNVEG3WRk9qvlT/Wc3Gi5yWFei3FScfV/yZb2zvIdw=","subject":"CN=S/MIME ECC ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHQxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMRowGAYDVQQDDBFTL01JTUUgRUNDIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"03d3ff16730384f2fc15daf75d20e0acad2849f2cee795ed8614e55a92fdd10f","size":1333,"filename":"KnJHdgWgUyBWr1LjNnzAFNzR0twTYLZWklBuL0-EpBY=.pem","location":"security-state-staging/intermediates/2f4e4051-4278-40b8-8687-b00bb9eb8d72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KnJHd
gWgUyBWr1LjNnzAFNzR0twTYLZWklBuL0+EpBY=","crlite_enrolled":false,"id":"c4e0a4c3-c9a2-4571-bb3e-18933abcc323","last_modified":1576536532708},{"schema":1576535524269,"derHash":"AgcFbRcsgL37bcRb6eWAiEYHjR5u7xtu1wJZqzMqZME=","subject":"CN=Cybertrust Japan SureServer CA G4,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MF4xCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEqMCgGA1UEAxMhQ3liZXJ0cnVzdCBKYXBhbiBTdXJlU2VydmVyIENBIEc0","whitelist":false,"attachment":{"hash":"d14576fded8dc8bc2c5e4595b2e25160155f8f967c80541b129ff564174309bd","size":1768,"filename":"rS4Ex7fMz9dQhgdB6qjxP-jJJQwjIeb-7RhvvdO6xy8=.pem","location":"security-state-staging/intermediates/8d6e839e-9d33-48c2-a9d9-40c21c559dd4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rS4Ex7fMz9dQhgdB6qjxP+jJJQwjIeb+7RhvvdO6xy8=","crlite_enrolled":true,"id":"278d6db3-b339-4446-8841-06784b687319","last_modified":1576536532704},{"schema":1576535525743,"derHash":"WOoGiLeQmqqOqqL/8287vo9KKtA71wJDs5A0adtIkPc=","
subject":"CN=Trustwave Organization Validation SHA256 CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIG1MQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE9MDsGA1UEAxM0VHJ1c3R3YXZlIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNIQTI1NiBDQSwgTGV2ZWwgMTEfMB0GCSqGSIb3DQEJARYQY2FAdHJ1c3R3YXZlLmNvbQ==","whitelist":false,"attachment":{"hash":"1844432d6d4b7a217e3b736de1419af2fca76a2f6ccc1ce30a69111d8d201479","size":1817,"filename":"OSqnIRIhJQGKEtc7abZMpS4Y3djh39opzqI2WqlYVqM=.pem","location":"security-state-staging/intermediates/cbb140b8-1fb0-4a2a-bd22-98b808d0732b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OSqnIRIhJQGKEtc7abZMpS4Y3djh39opzqI2WqlYVqM=","crlite_enrolled":true,"id":"d7fe49e4-283f-4e24-9961-b2cdc4d883ed","last_modified":1576536532690},{"schema":1576535519719,"derHash":"ARBV1IV/2QEDjrodDwNkCCvT94xpCwx3C/lEvCZLfrA=","subject":"CN=KIBSTrust Issuing CA for e-Signatures,OU=Class 2
DigiCert PKI Platform Individual Subscriber CA+OU=KIBS AD Trust Services,O=KIBS AD Skopje,C=MK","subjectDN":"MIHQMQswCQYDVQQGEwJNSzEXMBUGA1UEChMOS0lCUyBBRCBTa29wamUxFjAUBgNVBGETDU5UUk1LLTU1Mjk1ODExPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEfMB0GA1UECxMWS0lCUyBBRCBUcnVzdCBTZXJ2aWNlczEuMCwGA1UEAxMlS0lCU1RydXN0IElzc3VpbmcgQ0EgZm9yIGUtU2lnbmF0dXJlcw==","whitelist":false,"attachment":{"hash":"3f7958374c60f55cb8c9663d8487e680d5ac5b648c0b81613f75565c21da0b6c","size":2422,"filename":"yElc8NruRg-2MsMcl1chcF1INgoayZ7Rv3q4mzfz458=.pem","location":"security-state-staging/intermediates/e36f4085-6521-4c0d-8616-a938793d117b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yElc8NruRg+2MsMcl1chcF1INgoayZ7Rv3q4mzfz458=","crlite_enrolled":false,"id":"edec88d7-e1c6-4300-b142-8b497d3afd5c","last_modified":1576536532686},{"schema":1576535518197,"derHash":"YJkw64B61CCv2iqKphtnSDA5FozXZuCZQqSL/n873BA=","subject":"OU=Public Certification Authority - G2,O=C
hunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MGAxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEsMCoGA1UECwwjUHVibGljIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"b2b74d8c5d2ce4f283391974773f823f1441c476105a4e78f1b99db3e02f9528","size":2117,"filename":"tnFqrstaexEa6Zz-CVGGozhI8IF1FafM6uzX3zzHrUI=.pem","location":"security-state-staging/intermediates/b062306c-bad7-433f-bcc1-81512b1194eb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tnFqrstaexEa6Zz+CVGGozhI8IF1FafM6uzX3zzHrUI=","crlite_enrolled":true,"id":"4835ad01-5f2c-4639-abc1-05d2b5279fb5","last_modified":1576536532682},{"schema":1576535515302,"derHash":"lXG/6i8fVy7uNPnumfXlXMei7DobS1K3wyoihIK2zFc=","subject":"CN=Intertek Document Signing Authority,O=Intertek Group plc,C=GB","subjectDN":"MFgxCzAJBgNVBAYTAkdCMRswGQYDVQQKExJJbnRlcnRlayBHcm91cCBwbGMxLDAqBgNVBAMTI0ludGVydGVrIERvY3VtZW50IFNpZ25pbmcgQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"d20e9af16fa1f1de1
1830ddd2702a3577e2bab498eace1eead436cb9b2e8b063","size":1938,"filename":"YHxb7yqXsZo593tQi7lml-UbIYBZ-nRncrwmyt7z_jU=.pem","location":"security-state-staging/intermediates/0ae0900f-5f8b-42d2-b2b6-8bfb7d688e75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YHxb7yqXsZo593tQi7lml+UbIYBZ+nRncrwmyt7z/jU=","crlite_enrolled":false,"id":"9687202f-e5b6-4ba7-bbed-0b1ec1daf218","last_modified":1576536532679},{"schema":1576535516747,"derHash":"U8D8e2Y0ObwCvBRspo7SeX1czEBqSgM3DYhIOA4cKZY=","subject":"CN=Dodo Sign TLS ICA ECC R1,O=Dodo Sign Ltd,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MHIxCzAJBgNVBAYTAk1VMRgwFgYDVQQIDA9QbGFpbmVzIFdpbGhlbXMxDjAMBgNVBAcMBUViZW5lMRYwFAYDVQQKDA1Eb2RvIFNpZ24gTHRkMSEwHwYDVQQDDBhEb2RvIFNpZ24gVExTIElDQSBFQ0MgUjE=","whitelist":false,"attachment":{"hash":"ec04a4b626598cf051a07300496777b8ce46ba637f9f30d3f1dd8b58ae418fe6","size":1288,"filename":"gfr73neHKDZwYTmqZKhKtCIUMzhBNbVvVRuE1GZiSaw=.pem","location":"security-state-staging/intermediates/4f3693ee-a00e-4bd8
-8b08-9d368b3d9b64.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gfr73neHKDZwYTmqZKhKtCIUMzhBNbVvVRuE1GZiSaw=","crlite_enrolled":false,"id":"b281f90d-4780-4454-a47e-7aa979cc9791","last_modified":1576536532675},{"schema":1576535513673,"derHash":"uP/ATIaxUEHbjzqtpH/q8JfoWQqvKKDlnNutt3VqZjQ=","subject":"CN=thawte Primary G3 Transition Root,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSowKAYDVQQDEyF0aGF3dGUgUHJpbWFyeSBHMyBUcmFuc2l0aW9uIFJvb3Q=","whitelist":false,"attachment":{"hash":"dbc16836cd8731b78eb02f959a8c5a226e73133b8e253e8608ded9dd176ee060","size":1321,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/19fd9bb8-2f32-4d65-bc2f-3e4289158d4d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"7cec5d36-de25-4e2c-92e5-f32afca6422f","last
_modified":1576536532672},{"schema":1576535510916,"derHash":"MKqFj/PGdSZLs60Ed1feX8MHgZWswjh2tFjnqjUEmes=","subject":"SERIALNUMBER=202018,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDE4","whitelist":false,"attachment":{"hash":"6eee99c35c359ebfcd92b16092336017ae404339b3791de0aa56d50c02de20e9","size":2333,"filename":"F8qyHHv8MJtO-mb8tPNzX7jrf8zI4r_nHFRexuJgd9Q=.pem","location":"security-state-staging/intermediates/fda13208-5fb7-4d01-82e5-1b954ba9b283.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F8qyHHv8MJtO+mb8tPNzX7jrf8zI4r/nHFRexuJgd9Q=","crlite_enrolled":false,"id":"9dc1119e-7e46-4b76-915c-6a22a5706102","last_modified":1576536532668},{"schema":1576535509540,"derHash":"TJ0+I9iCkFiUl8NU8FIiA+8tlZ8/dgciV2rHxiIv5C0=","subject":"CN=OneSign RSA Client Authentication and Secure Email CA,O=One Sign Pte. Ltd.,L=Singapore,ST=Sin
gapore,C=SG","subjectDN":"MIGSMQswCQYDVQQGEwJTRzESMBAGA1UECBMJU2luZ2Fwb3JlMRIwEAYDVQQHEwlTaW5nYXBvcmUxGzAZBgNVBAoTEk9uZSBTaWduIFB0ZS4gTHRkLjE+MDwGA1UEAxM1T25lU2lnbiBSU0EgQ2xpZW50IEF1dGhlbnRpY2F0aW9uIGFuZCBTZWN1cmUgRW1haWwgQ0E=","whitelist":false,"attachment":{"hash":"0be83fe64c644cd30c1406de27e2a54ffe81b680b83cc329d886b1b2e95dfaf8","size":2166,"filename":"UbiEkYnpeEuDUAY38CtS5DK4aXovgdeK95X0LBk3N_o=.pem","location":"security-state-staging/intermediates/128a5920-e2e5-4b28-a24e-8acdf37e05fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UbiEkYnpeEuDUAY38CtS5DK4aXovgdeK95X0LBk3N/o=","crlite_enrolled":false,"id":"8da7888f-9413-4e57-a97f-aa917c25d4ca","last_modified":1576536532664},{"schema":1576535503850,"derHash":"ujYSYP8dRgMWhjBeCC3oNtSjIEZuDengE/AM3t3WIxc=","subject":"CN=DigiCert Global Client CA G3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IEdsb2JhbCBD
bGllbnQgQ0EgRzM=","whitelist":false,"attachment":{"hash":"555946571b12b9ab7e2734e4ecebf68a7935cc0d40a358be3d6474d971b56c9f","size":1451,"filename":"QfXubDxBsxQ0e_T0TZ377rKOF8NOU9JZSTSOaOBNNVU=.pem","location":"security-state-staging/intermediates/87d0e70e-5e2c-4f1b-bdf9-c8443e1f3856.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QfXubDxBsxQ0e/T0TZ377rKOF8NOU9JZSTSOaOBNNVU=","crlite_enrolled":false,"id":"830a6fb0-b074-4eb8-85eb-85de0f03e55e","last_modified":1576536532650},{"schema":1576535499570,"derHash":"iKBwc9RScGncnpeAU/NXKXBcBYMCZI7QLl/OZWFFnmE=","subject":"CN=DigiCert Universal Transition Root,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBVbml2ZXJzYWwgVHJhbnNpdGlvbiBSb290","whitelist":false,"attachment":{"hash":"d9217061d8cff01ff6b7275eb4591f00e32d8aadf1fb0695999ff14597211202","size":1756,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.
pem","location":"security-state-staging/intermediates/b9e17518-7c43-41a2-855f-b4eec55fd32f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"00d91a48-e1b8-4d9a-b3fc-0a777a762044","last_modified":1576536532639},{"schema":1576535498133,"derHash":"QWeLiJfmNd6gO25IVl4me6Wqw7j03Et0t6CpdIz9014=","subject":"CN=DigitalSign Qualified CA - G4,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=DigitalSign - Certificadora Digital,C=PT","subjectDN":"MIGkMQswCQYDVQQGEwJQVDEsMCoGA1UEChMjRGlnaXRhbFNpZ24gLSBDZXJ0aWZpY2Fkb3JhIERpZ2l0YWwxPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEmMCQGA1UEAxMdRGlnaXRhbFNpZ24gUXVhbGlmaWVkIENBIC0gRzQ=","whitelist":false,"attachment":{"hash":"e56f4437043f71e151d0d3f245590c77186eac4683a312733e8a9677ed235dc9","size":2280,"filename":"HA7gqrL9Koo73WVyp4BRDRAeWpsT9I2GiRiBbpD0lMI=.pem","location":"security-state-staging/intermediates/41219887-d
4bf-48c9-9a9e-bb89a747b0d9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HA7gqrL9Koo73WVyp4BRDRAeWpsT9I2GiRiBbpD0lMI=","crlite_enrolled":false,"id":"a3996fb4-2015-4418-8297-05a8746272a2","last_modified":1576536532636},{"schema":1576535496701,"derHash":"uaiFMJ5s8yFvtmJJB8YGbZmZvDDREJyuT/M4gNXfNJQ=","subject":"SERIALNUMBER=202003,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDAz","whitelist":false,"attachment":{"hash":"58f58c3cf17d7945abc83902b9f2678a79391eb5456d2b1c3efd3e5443dce15e","size":2333,"filename":"UobzRk-EBZtLQBfzMMAEk5fOkG1ShzOH3Qlw34ErLsA=.pem","location":"security-state-staging/intermediates/2ddb692a-500f-4fba-ab72-4a6e8a4b0541.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UobzRk+EBZtLQBfzMMAEk5fOkG1ShzOH3Qlw34ErLsA=","crlite_enrolled":false,"id":"f5b1872a-fb99-4559-b0ee-faa1166caa4e","last_modified":1
576536532632},{"schema":1576535493678,"derHash":"peJBV9FBq9Bp86I7wwVtxPRsZo+8GqbpwDCmOBYIkIY=","subject":"SERIALNUMBER=202012,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDEy","whitelist":false,"attachment":{"hash":"08c06e256f98afb4d9806d52e8f1a2b9cc165fa03702ad012b07cdd37f837621","size":2333,"filename":"3RdyBMMkedoxCUDA86JqdijXazSIloqW4_vNeBGZiCA=.pem","location":"security-state-staging/intermediates/cfdd00b1-4a8e-4641-bb24-31945e7273b2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3RdyBMMkedoxCUDA86JqdijXazSIloqW4/vNeBGZiCA=","crlite_enrolled":false,"id":"37becd26-64a0-4453-b1a8-0eac48c4d3a3","last_modified":1576536532625},{"schema":1576535490873,"derHash":"Pq1PcvBvEFSIHSco3gM6jhP63mvRZQhAGOuUPBc3jao=","subject":"CN=UZI-register Zorgverlener CA G3,O=CIBG,C=NL","subjectDN":"MF8xCzAJBgNVBAYTAk5MMQ0wCwYDVQQKDARDSUJHMRcwFQY
DVQRhDA5OVFJOTC01MDAwMDUzNTEoMCYGA1UEAwwfVVpJLXJlZ2lzdGVyIFpvcmd2ZXJsZW5lciBDQSBHMw==","whitelist":false,"attachment":{"hash":"329164edbb1b27621bd02bae2add97fcdcdabe45f217ab352c27f446203676e1","size":2536,"filename":"LJbktDpUTtQFxix-TH4PidTGLrt1SGxWZUTWK8SCn9Q=.pem","location":"security-state-staging/intermediates/58e65d2f-9c20-46d6-8b43-0497398cbe0c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LJbktDpUTtQFxix+TH4PidTGLrt1SGxWZUTWK8SCn9Q=","crlite_enrolled":false,"id":"7a4c15d1-a236-488f-9ad0-a2c5a64937bb","last_modified":1576536532618},{"schema":1576535500999,"derHash":"38zb8HfRQteSP2MW3UEeRix6i8BHgfK4cGWlxeJYp+A=","subject":"CN=SafeToOpen TLS ICA RSA R1,O=SafeToOpen Ltd,C=NZ","subjectDN":"MEoxCzAJBgNVBAYTAk5aMRcwFQYDVQQKDA5TYWZlVG9PcGVuIEx0ZDEiMCAGA1UEAwwZU2FmZVRvT3BlbiBUTFMgSUNBIFJTQSBSMQ==","whitelist":false,"attachment":{"hash":"08e4db6360bbce20665833a4342083987eea5f8cdc3e66fc6fc0292fcb38b032","size":2434,"filename":"uQ4czJaJhrriBdIxl7SyPwX8Wy4z12aj9ZqCb3mdYpo=.pem",
"location":"security-state-staging/intermediates/8e22945f-abae-4998-9dd4-d3dd5f4f878d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uQ4czJaJhrriBdIxl7SyPwX8Wy4z12aj9ZqCb3mdYpo=","crlite_enrolled":true,"id":"74d8f446-fb98-4c65-8f25-c0c00d3aab68","last_modified":1576536532610},{"schema":1576535485113,"derHash":"GKQ8UdCBdMOm2F8cExi9KQl1PnXZHPZZn3M0ewBwKJA=","subject":"SERIALNUMBER=Q2826004J,CN=AC Administraci\u00f3n P\u00fablica,OU=CERES,O=FNMT-RCM,C=ES","subjectDN":"MGoxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ0VSRVMxEjAQBgNVBAUTCVEyODI2MDA0SjEkMCIGA1UEAwwbQUMgQWRtaW5pc3RyYWNpw7NuIFDDumJsaWNh","whitelist":false,"attachment":{"hash":"b1b8087026dcff96160076000ab8ec70cb29448880359f0ce676c987951eea3d","size":2438,"filename":"uoKUEuwkPtDw_4xcvGkwXVXs-8X9iESzjMRl18SDGV0=.pem","location":"security-state-staging/intermediates/b3020299-7dbb-43c6-97f7-e87736a45fc9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uoKUEuwkPtDw/4xcvGkwXVXs+8X9iESzjMRl18SDGV0=","crl
ite_enrolled":true,"id":"aabec165-9b72-4d6a-8fa8-d4eeb29669f0","last_modified":1576536532600},{"schema":1576535483615,"derHash":"q8hnBsmNa/ZzcvkI7AGt9jGxkdczron4ND6wR7EIFEs=","subject":"CN=DexKo Global SMIME CA 2019,O=DexKo Global Inc.,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRowGAYDVQQKExFEZXhLbyBHbG9iYWwgSW5jLjEjMCEGA1UEAxMaRGV4S28gR2xvYmFsIFNNSU1FIENBIDIwMTk=","whitelist":false,"attachment":{"hash":"6e6ef760c62377e53a22b0da3f25f97f7be656c23736dda53dea01102617cf95","size":1857,"filename":"AHjdlX8_el8CCLz5JKmfBOMMvmJPx7t19z58Cw9zbng=.pem","location":"security-state-staging/intermediates/f82a276e-7fa2-447c-aad5-a331e918bde9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AHjdlX8/el8CCLz5JKmfBOMMvmJPx7t19z58Cw9zbng=","crlite_enrolled":false,"id":"f14ded04-2e06-4b3e-b8ca-3d16e25391d6","last_modified":1576536532596},{"schema":1576535474803,"derHash":"7AxspJamehM0L+xSIfaNSz5Tsbwi9uS8zJxo8EFc3qQ=","subject":"CN=Let's Encrypt Authority X2,O=Let's Encrypt,C=US","subjectDN":"MEoxCzAJ
BgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQDExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBYMg==","whitelist":false,"attachment":{"hash":"f87a7fc64b76ec8ff49f94aa8ea389cf8c8b37040fca79f64dcbcac12a49586d","size":1674,"filename":"sRHdihwgkaib1P1gxX8HFszlD-7_gTfNvuAybgLPNis=.pem","location":"security-state-staging/intermediates/68dfffac-ff48-4aca-935c-22a0f4d36894.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sRHdihwgkaib1P1gxX8HFszlD+7/gTfNvuAybgLPNis=","crlite_enrolled":false,"id":"07674fee-0d0d-440e-a3a1-7f554318a8ca","last_modified":1576536532578},{"schema":1576535471694,"derHash":"SkDUvn+wsF+b3KYLzjg/tZLEkgbbxceE+BnNdPKge+M=","subject":"CN=EC-PARLAMENT,OU=Serveis Publics de Certificacio+OU=Vegeu https://www.catcert.net/verCIC-2 (c)03+OU=Parlament de Catalunya,O=Agencia Catalana de Certificacio (NIF Q-0801176-I),L=Passatge de la Concepcio 11 08008 Barcelona,C=ES","subjectDN":"MIIBGTELMAkGA1UEBhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2VydGlmaWNhY2lvIChOSUYgUS0wODAxM
Tc2LUkpMTQwMgYDVQQHEytQYXNzYXRnZSBkZSBsYSBDb25jZXBjaW8gMTEgMDgwMDggQmFyY2Vsb25hMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYDVQQLEyxWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJDSUMtMiAoYykwMzEfMB0GA1UECxMWUGFybGFtZW50IGRlIENhdGFsdW55YTEVMBMGA1UEAxMMRUMtUEFSTEFNRU5U","whitelist":false,"attachment":{"hash":"9a9ee63a0194dbc598a491404da83c06957163a8fe0c70b3649c45a680f332da","size":2320,"filename":"LbXnRYPxl6yNMAXHjj6wiyi3rAmcF-GQQrZtCBAentM=.pem","location":"security-state-staging/intermediates/83499263-b834-4622-bb97-580ab14ab723.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LbXnRYPxl6yNMAXHjj6wiyi3rAmcF+GQQrZtCBAentM=","crlite_enrolled":false,"id":"9b0777fb-4e6d-413b-a3dd-5ee301810d9b","last_modified":1576536532570},{"schema":1576535476283,"derHash":"p0sMMrZblf4sT48JiUemi2lQM77QtR3YuYTsrolXG7Y=","subject":"CN=Let's Encrypt Authority X4,O=Let's Encrypt,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQDExpMZXQncyBFbmNyeXB0IEF1
dGhvcml0eSBYNA==","whitelist":false,"attachment":{"hash":"86e7dd996382dd285f7661e48620de68d357e550b0745d5154781c7e4df1074e","size":1646,"filename":"sRHdihwgkaib1P1gxX8HFszlD-7_gTfNvuAybgLPNis=.pem","location":"security-state-staging/intermediates/47db9996-ee4b-4494-92ef-73eda080d42a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sRHdihwgkaib1P1gxX8HFszlD+7/gTfNvuAybgLPNis=","crlite_enrolled":false,"id":"8d00314d-e387-477e-af43-6e68d3c1b1b6","last_modified":1576536532567},{"schema":1576535467347,"derHash":"9V+f/Lg8c0UyYWAcfgRNsVoPA0uTwFgw8oY174ic9nA=","subject":"CN=Amazon,OU=Server CA 1B,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"37adce7ce3a304a9a05f1f1f66ba3242182c5165a762ea08dab41ed3eb9b76f3","size":1544,"filename":"JSMzqOOrtyOT1kmau6zKhgT676hGgczD5VMdRMyJZFA=.pem","location":"security-state-staging/intermediates/e974e18f-9dbd-443f-ad0e-843d3b3588b0.pe
m","mimetype":"application/x-pem-file"},"pubKeyHash":"JSMzqOOrtyOT1kmau6zKhgT676hGgczD5VMdRMyJZFA=","crlite_enrolled":true,"id":"aa9b7129-b8e6-4ae5-b00f-5a7d58046865","last_modified":1576536532563},{"schema":1576535464512,"derHash":"5XIIy/0obOlxgmfkRJHLW0NclbsJ3Jcg9bZLJax5dM0=","subject":"CN=DigiCert Assured ID Code Signing CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLjAsBgNVBAMTJURpZ2lDZXJ0IEFzc3VyZWQgSUQgQ29kZSBTaWduaW5nIENBLTE=","whitelist":false,"attachment":{"hash":"7160a1203edefe6cdb7dde107be2606128ce7bed16da9e11d5999d17ec003921","size":2357,"filename":"RElq7qZGBSzuZ3oQFuu4t-dh5QqmqZDyU-EAqeRVfJ4=.pem","location":"security-state-staging/intermediates/8fc6e3b5-78f6-4638-8253-27ee2e7e031a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RElq7qZGBSzuZ3oQFuu4t+dh5QqmqZDyU+EAqeRVfJ4=","crlite_enrolled":false,"id":"339bd4fd-f044-40eb-b55d-92b7d38c137b","last_modified":157653
6532560},{"schema":1576535470193,"derHash":"frRF6jikamQR8KEqDhbNPQc+kbElZ5l3BB/7zoO+PBo=","subject":"CN=OKCERT R4 DV SSL CA G2,OU=Kingnettech,O=Kingnet Information Technology Co.\\, Ltd.,C=CN","subjectDN":"MHcxCzAJBgNVBAYTAkNOMTEwLwYDVQQKDChLaW5nbmV0IEluZm9ybWF0aW9uIFRlY2hub2xvZ3kgQ28uLCBMdGQuMRQwEgYDVQQLDAtLaW5nbmV0dGVjaDEfMB0GA1UEAwwWT0tDRVJUIFI0IERWIFNTTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"857ccc0777952ba7b08a36e3f5c6ace78f7260f270402953c6a16a68d3690e2a","size":1776,"filename":"Y9JE2NiQ3ArheJd2k5RFD7JxnbQzgfJYS2Z0JfG64Uo=.pem","location":"security-state-staging/intermediates/4b034577-3c79-416d-9af6-374a4c0b5405.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y9JE2NiQ3ArheJd2k5RFD7JxnbQzgfJYS2Z0JfG64Uo=","crlite_enrolled":true,"id":"9dfe1a67-5cce-4d31-a077-99d8791d279d","last_modified":1576536532556},{"schema":1576535465886,"derHash":"UtnfGzqxncGd8MQFkagy0aNHMcKA4pZkS5YwpIYTUtw=","subject":"SERIALNUMBER=202020,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,
C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDIw","whitelist":false,"attachment":{"hash":"efa4a8fe8f77910f0ba97261dd229810331d2057180f6a263b06ab238a56cce2","size":2333,"filename":"Dc-eCaAIIzKUTOxxbCJR_Q1XbU4XPdnAPaZrNBwsz4s=.pem","location":"security-state-staging/intermediates/5d61ee8f-24a7-4669-8345-a93e77ae00e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Dc+eCaAIIzKUTOxxbCJR/Q1XbU4XPdnAPaZrNBwsz4s=","crlite_enrolled":false,"id":"5c2785f7-cb84-413d-8cc2-e7cd5ea85b3e","last_modified":1576536532552},{"schema":1576535468794,"derHash":"UmJRhV4femM3wPNyDJ8yOHCm4BTGj4jteWw/e2n1t5M=","subject":"CN=COMODO Name Constraints Testing CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGFMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDErMCkGA1UEAxMiQ09NT0RPIE5hbWUgQ29uc3RyYWludHMgVGVz
dGluZyBDQQ==","whitelist":false,"attachment":{"hash":"a1bc51c8f527415890294e4c206d2ee571e40e60ed19bb1e45e327745f2ec267","size":1951,"filename":"jqMnv-0IEzdGPwNerQxiv2wxmlCcGT7awRI5CPRdDmE=.pem","location":"security-state-staging/intermediates/ffb0c961-02cc-4fd0-b678-54d536adca31.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jqMnv+0IEzdGPwNerQxiv2wxmlCcGT7awRI5CPRdDmE=","crlite_enrolled":false,"id":"b64380c5-1f6a-4f0a-bc6e-11a506873c41","last_modified":1576536532548},{"schema":1576535461580,"derHash":"k4xFV1ibcmPVmy8Pa4TL6yfvubI7pyTrPM1bfipYcW8=","subject":"CN=Trend Micro CA,O=Trend Micro Inc,C=US","subjectDN":"MEAxCzAJBgNVBAYTAlVTMRgwFgYDVQQKDA9UcmVuZCBNaWNybyBJbmMxFzAVBgNVBAMMDlRyZW5kIE1pY3JvIENB","whitelist":false,"attachment":{"hash":"768970dda8922e6ebf07cc524aaa977361d022fe143b092afeba179ec36c7f8d","size":1602,"filename":"qczcaUM72BvrELfBo2n2WlYnwx7A5w4eV0dgYXXe1Bk=.pem","location":"security-state-staging/intermediates/ed9d84de-064e-41d2-8681-3ac181eebe73.pem","mimetyp
e":"application/x-pem-file"},"pubKeyHash":"qczcaUM72BvrELfBo2n2WlYnwx7A5w4eV0dgYXXe1Bk=","crlite_enrolled":false,"id":"a87b472d-be5c-496b-a98b-6df181566b82","last_modified":1576536532545},{"schema":1576535460116,"derHash":"rxiY1/Bjh1HAddAULU4qDqcx/GIjJPFT/hvztq/ZrxM=","subject":"CN=DPDHL User CA I3,O=Deutsche Post,L=Bonn,ST=Nordrhein-Westfalen,C=DE","subjectDN":"MG0xCzAJBgNVBAYTAkRFMRwwGgYDVQQIExNOb3JkcmhlaW4tV2VzdGZhbGVuMQ0wCwYDVQQHEwRCb25uMRYwFAYDVQQKEw1EZXV0c2NoZSBQb3N0MRkwFwYDVQQDExBEUERITCBVc2VyIENBIEkz","whitelist":false,"attachment":{"hash":"db7cbd2598eed19261df59b9537f65a933ee5e3acf9d91abd8b284f4ddad2d90","size":4039,"filename":"U24C-tQ5-xqZXjJsjWmKnA3KCkx84xBNSPzVCzpko_A=.pem","location":"security-state-staging/intermediates/88f7058d-853e-4eab-98bc-8195c5c54535.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U24C+tQ5+xqZXjJsjWmKnA3KCkx84xBNSPzVCzpko/A=","crlite_enrolled":false,"id":"f20fecad-a88e-46ac-897b-f2f4f750d9b3","last_modified":1576536532540},{"schema":15765
35463138,"derHash":"wBljBZBwyyMG9LSGzPFQM1kgnphJnIEMK0nibjGkvXQ=","subject":"CN=GlobalSign CA 3 for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"MEsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSEwHwYDVQQDExhHbG9iYWxTaWduIENBIDMgZm9yIEFBVEw=","whitelist":false,"attachment":{"hash":"9e1c97c3c6f261707f3456f641117268b30609284db6d243177b47277422c123","size":1670,"filename":"RI4ORwwbrz7iTK-Bub6gGw9N1yaxwBY2kdx8dAAXKBo=.pem","location":"security-state-staging/intermediates/35ce22d9-16b3-4623-83ae-2d36944c1604.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RI4ORwwbrz7iTK+Bub6gGw9N1yaxwBY2kdx8dAAXKBo=","crlite_enrolled":false,"id":"0e67c136-94b1-4dff-9e85-e269cba38b1a","last_modified":1576536532537},{"schema":1576535458597,"derHash":"AsSjAKCcG4k7EflWdlmvlbu5u+eVOJPjbFuvF7VVzuM=","subject":"CN=Certigna Identity Plus CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MIGCMQswCQYDVQQGEwJGUjESMBAGA1UECgwJREhJTVlPVElTMRwwGgYDVQQLDBMwMDAyIDQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQRhDBROVF
JGUi00ODE0NjMwODEwMDAzNjEiMCAGA1UEAwwZQ2VydGlnbmEgSWRlbnRpdHkgUGx1cyBDQQ==","whitelist":false,"attachment":{"hash":"4f9b8c5d9910a9c5057de2bdaa15c263ccc9194055f0f6d438f7dd65e0000884","size":2178,"filename":"ywhSp1oF34bfFheBzKO3KqbsXi-qQbyfXu94SMYBxwg=.pem","location":"security-state-staging/intermediates/a9861ffb-3a18-416a-b622-b2317ad102ed.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ywhSp1oF34bfFheBzKO3KqbsXi+qQbyfXu94SMYBxwg=","crlite_enrolled":false,"id":"cd3a316e-5ab3-425f-9bd1-f6ef6ab8e077","last_modified":1576536532530},{"schema":1576536129891,"derHash":"JOVvSGBERtioNztDyinRocSXcuWquounwXZivWDajfY=","subject":"SERIALNUMBER=ZZZZZZV0,CN=Siemens Internet CA V1.0,OU=Copyright (C) Siemens AG 2011 All Rights Reserved,O=Siemens,C=DE","subjectDN":"MIGRMQswCQYDVQQGEwJERTEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaVjAxOjA4BgNVBAsMMUNvcHlyaWdodCAoQykgU2llbWVucyBBRyAyMDExIEFsbCBSaWdodHMgUmVzZXJ2ZWQxITAfBgNVBAMMGFNpZW1lbnMgSW50ZXJuZXQgQ0EgVjEuMA==","whitelist":false,"attachmen
t":{"hash":"11c8c1af993fd49e1d65508fa79b88655f291aabdc36b8721da6f945bdc405bf","size":1752,"filename":"rQOD_jrRH5t2JxCWlRagCWxoDrKXhsLELQ-GrW6LeRI=.pem","location":"security-state-staging/intermediates/af88eecd-44f5-40b7-8894-4af88bccad18.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rQOD/jrRH5t2JxCWlRagCWxoDrKXhsLELQ+GrW6LeRI=","crlite_enrolled":false,"id":"87540db7-8b67-47b6-9194-744d32ff9b43","last_modified":1576536532512},{"schema":1576536085205,"derHash":"zPSXrgDaWh5agidWuOjwOOANUtxD7S9dM2J5CXMr4L0=","subject":"CN=CertCenter Enterprise ECC OV CA,O=CertCenter AG,L=Giessen,ST=Hessen,C=DE","subjectDN":"MHIxCzAJBgNVBAYTAkRFMQ8wDQYDVQQIEwZIZXNzZW4xEDAOBgNVBAcTB0dpZXNzZW4xFjAUBgNVBAoTDUNlcnRDZW50ZXIgQUcxKDAmBgNVBAMTH0NlcnRDZW50ZXIgRW50ZXJwcmlzZSBFQ0MgT1YgQ0E=","whitelist":false,"attachment":{"hash":"ee2787fc54c594fa045213e347f917704a15e0ee9f6dba2054aafcfc80442b6d","size":1297,"filename":"bzjbLG4lOPyzYixFbEQ90vuRtQ04e0wlcXN7_CMDiqo=.pem","location":"security-state-staging/int
ermediates/b868b5dd-e624-413d-b9e5-61564e90b21f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bzjbLG4lOPyzYixFbEQ90vuRtQ04e0wlcXN7/CMDiqo=","crlite_enrolled":false,"id":"4ab3adfc-d739-4e1b-92c8-c0d1d2898090","last_modified":1576536532486},{"schema":1576536109129,"derHash":"ehQrGl4WIVGDoT6ECoYqQ34pPZNmkh2wfttU8TisDXg=","subject":"CN=TrustAsia OV SSL CA - C3,O=TrustAsia Technologies Inc.,C=CN","subjectDN":"MFYxCzAJBgNVBAYTAkNOMSQwIgYDVQQKDBtUcnVzdEFzaWEgVGVjaG5vbG9naWVzIEluYy4xITAfBgNVBAMMGFRydXN0QXNpYSBPViBTU0wgQ0EgLSBDMw==","whitelist":false,"attachment":{"hash":"bfb83a4526e35f2dc8e07512d6f16dfffedccf8e3263aebf657edd6423d54673","size":1691,"filename":"hEZRb0aBfyh_1yoi7II2m0TQ_JCkJgWwfLZni7lZUHY=.pem","location":"security-state-staging/intermediates/200bc2a0-44c0-40f1-b810-696bea5c140a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hEZRb0aBfyh/1yoi7II2m0TQ/JCkJgWwfLZni7lZUHY=","crlite_enrolled":false,"id":"c6d61ecf-df03-455e-b621-1a69e4c44ab9","last_modified":15765
36532463},{"schema":1576536111049,"derHash":"F2rr8pcr1vRxee3j3mOEixVDtFrilUvqRRhbFSU3ucQ=","subject":"CN=Hongkong Post Root CA 3,O=Hongkong Post,L=Hong Kong,ST=Hong Kong,C=HK","subjectDN":"MG8xCzAJBgNVBAYTAkhLMRIwEAYDVQQIEwlIb25nIEtvbmcxEjAQBgNVBAcTCUhvbmcgS29uZzEWMBQGA1UEChMNSG9uZ2tvbmcgUG9zdDEgMB4GA1UEAxMXSG9uZ2tvbmcgUG9zdCBSb290IENBIDM=","whitelist":false,"attachment":{"hash":"b4ba7c31c249eb874c39b6a3e78147e6623a6ccbab1429cce2313067069229b7","size":2020,"filename":"JUHlO6WzsHrL5wl6xKA-BAwRz3ptSmfLIT1Vi1AWegY=.pem","location":"security-state-staging/intermediates/15934ce0-b66f-41d1-9cc3-4f83f0c22828.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JUHlO6WzsHrL5wl6xKA+BAwRz3ptSmfLIT1Vi1AWegY=","crlite_enrolled":false,"id":"78e6c5d3-d8b9-4d7e-b67b-b08391bf0d23","last_modified":1576536532457},{"schema":1576536110684,"derHash":"BuXewxyR19M0NSAdLiIRbCBxk6h04KQmUyovaVMMhrU=","subject":"CN=SwissSign Server Silver CA 2008 - G2,O=SwissSign AG,C=CH","subjectDN":"MFMxCzAJBgNVBAYTAkNIM
RUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxLTArBgNVBAMTJFN3aXNzU2lnbiBTZXJ2ZXIgU2lsdmVyIENBIDIwMDggLSBHMg==","whitelist":false,"attachment":{"hash":"dae13d2d8c181bf4ec65a316a2ba892ac9d49b530d749454a41b697b93c0e4ad","size":2276,"filename":"pdw-szkFhaLHw56vsd_eV19nZd8tlYabs6ie9lk3vz0=.pem","location":"security-state-staging/intermediates/a8e67472-ca0f-418d-8e14-eded55f5c9b6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pdw+szkFhaLHw56vsd/eV19nZd8tlYabs6ie9lk3vz0=","crlite_enrolled":false,"id":"626a64c6-27bd-4788-ac43-961a6c286a2f","last_modified":1576536532446},{"schema":1576536114489,"derHash":"ultuXf69rhyAvXJ5C8hbzGU4q0YTAj2nBs6CZBX15bM=","subject":"CN=DigiCert TLS ICA VRSN Universal,OU=www.digicert.com,O=DigiCert\\, Inc.,C=US","subjectDN":"MGsxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEoMCYGA1UEAxMfRGlnaUNlcnQgVExTIElDQSBWUlNOIFVuaXZlcnNhbA==","whitelist":false,"attachment":{"hash":"aeb637f50e3be97e9cd0a8cd4338c79685bc9385f9eefd1c71be433f08
80aafc","size":1760,"filename":"syraymM-04Pk6mIoR9bwWpSF7IexVaZZTkmETpWCe50=.pem","location":"security-state-staging/intermediates/583c8c31-1235-464a-bfaf-2066acd4e1ff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"syraymM+04Pk6mIoR9bwWpSF7IexVaZZTkmETpWCe50=","crlite_enrolled":true,"id":"2bdacac2-2d88-4a2a-8592-2179c09c6c99","last_modified":1576536532435},{"schema":1576536097332,"derHash":"DWhporT133emr7A0Il6b7zRXQ88wbt827jW50Fr62Jw=","subject":"CN=emSign ECC CS CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGkxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMR4wHAYDVQQDExVlbVNpZ24gRUNDIENTIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"5deb0c464051d5e32daa2afa7cbadc82f6c069bab3db03b8117ad1300b8efda4","size":1167,"filename":"ChGUm4JufQCgxfjTELLQ1T93-EAuA3QrcKKFUAlKCdo=.pem","location":"security-state-staging/intermediates/c488046a-1f5d-4763-bc70-ec75ed1cde37.pem","mimetype":"application/x-pem-f
ile"},"pubKeyHash":"ChGUm4JufQCgxfjTELLQ1T93+EAuA3QrcKKFUAlKCdo=","crlite_enrolled":false,"id":"355bd93e-e57b-4170-916c-7d12208880f5","last_modified":1576536532411},{"schema":1576536130303,"derHash":"RS6EVSQQ1D3liEmeM7tdKNXnm4cXBklqP0JC6FS5Cls=","subject":"CN=Athens University of Economics and Business CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGPMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxOjA4BgNVBAMTMUF0aGVucyBVbml2ZXJzaXR5IG9mIEVjb25vbWljcyBhbmQgQnVzaW5lc3MgQ0EgUjI=","whitelist":false,"attachment":{"hash":"06410ad96ec056a34da29d0d86aca4b26e3a19fc5ae4df404e2443c0d36c688f","size":2552,"filename":"kE-j5ZgeypLRoFQ30V9GkRmfWhTimO6x5iKj24k9ovc=.pem","location":"security-state-staging/intermediates/fe193b1e-2de1-4771-9e79-df47a6e849de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kE+j5ZgeypLRoFQ30V9GkRmfWhTimO6x5iKj24k9ovc=","crlite_enrolled":true,"id":"60d94adc-b9
3d-44b3-8824-05e7d33b94e3","last_modified":1576536532398},{"schema":1576536118729,"derHash":"izWEZtZhJjEhIGRaWHWmpX48gdmEdqlnYEJEJU6sAPA=","subject":"CN=Amazon Root CA 2,O=Amazon,C=US","subjectDN":"MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDI=","whitelist":false,"attachment":{"hash":"099a90f379b0ecca696c3cde0f60b64211dbaafa0ce4ae4b1b13e1dc145c4f27","size":1991,"filename":"f0KW_FtqTjs108NpYj42SrGvOB2PpxIVM8nWxjPqJGE=.pem","location":"security-state-staging/intermediates/b138d0b5-195f-401a-8c97-1bd007ddf648.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"f0KW/FtqTjs108NpYj42SrGvOB2PpxIVM8nWxjPqJGE=","crlite_enrolled":false,"id":"4a7d284b-1295-4ae6-af24-7de01c05ab0d","last_modified":1576536532395},{"schema":1576536107246,"derHash":"cpVqHFql2RrGnNYxB6JaoYQ4Gd3CHFEI7B2X8yKWA84=","subject":"CN=USERTrust ECC Domain Validation Secure Server CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGTMQswCQYDVQQGEwJVUzETMBEGA1UECBM
KTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE5MDcGA1UEAxMwVVNFUlRydXN0IEVDQyBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"2a6313c6f238488f62807d206801b298319fe9aadc79bea5d1cb52261d84102a","size":1333,"filename":"-orpYE2E52U2_GRvH4NTBMqU6WeiGaMHjrIRWT8JypY=.pem","location":"security-state-staging/intermediates/a4a30987-f9be-4178-80b7-093289d197b3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+orpYE2E52U2/GRvH4NTBMqU6WeiGaMHjrIRWT8JypY=","crlite_enrolled":false,"id":"e697d669-10e9-4820-af92-62a85ce2e0a3","last_modified":1576536532387},{"schema":1576536081355,"derHash":"728p9jb2K91HUxIvQfNBnufCh3WHvkqYB631iUZFjn8=","subject":"CN=Telia Root CA v2,O=Telia Finland Oyj,C=FI","subjectDN":"MEQxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZMBcGA1UEAwwQVGVsaWEgUm9vdCBDQSB2Mg==","whitelist":false,"attachment":{"hash":"ef7efd4cbf4031585f1a5951e9b5d6bac8a753a47e1861138b45eaaf0f441821","size":2
284,"filename":"wrPDGkophQqo889HKhFp_3G0FlefakSC7HdEuD35iKw=.pem","location":"security-state-staging/intermediates/9808e62b-cdbd-44b3-941f-6f29f249116a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wrPDGkophQqo889HKhFp/3G0FlefakSC7HdEuD35iKw=","crlite_enrolled":false,"id":"8adb25e4-ae4d-4bdd-aa24-a1b07637fb72","last_modified":1576536532385},{"schema":1576536095821,"derHash":"iyVXlJH4XPV37CFyz60tskyiJVdC5uU0HPBuLL7F2QY=","subject":"CN=EUNETIC - EuropeanSSL Extended Validation Server CA 2,OU=Controlled by COMODO exclusively for EUNETIC GmbH,O=EUNETIC GmbH,L=Durmersheim,ST=Baden-W\u00fcrttemberg,C=DE","subjectDN":"MIHTMQswCQYDVQQGEwJERTEbMBkGA1UECAwSQmFkZW4tV8O8cnR0ZW1iZXJnMRQwEgYDVQQHEwtEdXJtZXJzaGVpbTEVMBMGA1UEChMMRVVORVRJQyBHbWJIMTowOAYDVQQLEzFDb250cm9sbGVkIGJ5IENPTU9ETyBleGNsdXNpdmVseSBmb3IgRVVORVRJQyBHbWJIMT4wPAYDVQQDEzVFVU5FVElDIC0gRXVyb3BlYW5TU0wgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZXJ2ZXIgQ0EgMg==","whitelist":false,"attachment":{"hash":"b32469934418bb2a41ae410f7cf1b81f731ab2
5583637ac43feedf2f48d3db72","size":2284,"filename":"nWdB0jAAGzhZiLNjLocqdxL16ZnFE4xjHkhnauNoK-A=.pem","location":"security-state-staging/intermediates/ff46e186-87f9-434d-a8c8-dfe148c39f56.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nWdB0jAAGzhZiLNjLocqdxL16ZnFE4xjHkhnauNoK+A=","crlite_enrolled":false,"id":"1c90cd8c-5291-49c3-afbf-9a91c6860b4b","last_modified":1576536532382},{"schema":1576536096203,"derHash":"n6n8tQDxqYNVCZ9wA0zw0u50Orpj9utn1VaF6pBlMos=","subject":"CN=GlobeSSL OV Certification Authority 2,O=Globe Hosting\\, Inc.,L=Wilmington,ST=DE,C=US","subjectDN":"MH0xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJERTETMBEGA1UEBxMKV2lsbWluZ3RvbjEcMBoGA1UEChMTR2xvYmUgSG9zdGluZywgSW5jLjEuMCwGA1UEAxMlR2xvYmVTU0wgT1YgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgMg==","whitelist":false,"attachment":{"hash":"e1ed99b56e89cca5568d4660da394400dfeaaad7eee9761ce8d918ba375252d3","size":2150,"filename":"iaAN4YIvVl4idrHfqCHBL-dZTUISZ2ANiVmgZiYqSUY=.pem","location":"security-state-staging/intermediates/9e584cc8-1
97d-4d8a-8610-9b7b49c2f306.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iaAN4YIvVl4idrHfqCHBL+dZTUISZ2ANiVmgZiYqSUY=","crlite_enrolled":false,"id":"d77ee3af-f063-4cbf-8b9b-f99976780075","last_modified":1576536532374},{"schema":1576536113725,"derHash":"h9zU3HRkCjIs0gVVJQbRvmTxJZYlgJZUSYa0hQvHJwY=","subject":"CN=Amazon Root CA 1,O=Amazon,C=US","subjectDN":"MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=","whitelist":false,"attachment":{"hash":"8f2766bb42744fe0fcf37f433c66191277a29d9bd4641cc4121ccf842ecf940c","size":1646,"filename":"--MBgDH5WGvL9Bcn5Be30cRcL0f5O-NyoXuWtQdX1aI=.pem","location":"security-state-staging/intermediates/6e41f0a0-496f-4745-a675-09b997850d04.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"++MBgDH5WGvL9Bcn5Be30cRcL0f5O+NyoXuWtQdX1aI=","crlite_enrolled":false,"id":"a3c4dda1-24a7-46e0-97f3-4ce13eb70857","last_modified":1576536532366},{"schema":1576536131430,"derHash":"1uoQYcKLPblv9bqhQKtXFOawtPXXGrzNJCpJubn03Cc="
,"subject":"CN=Trust Provider B.V. DV SSL CA - G1,OU=Domain Validated SSL,O=Trust Provider B.V.,C=NL","subjectDN":"MHcxCzAJBgNVBAYTAk5MMRwwGgYDVQQKExNUcnVzdCBQcm92aWRlciBCLlYuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDErMCkGA1UEAxMiVHJ1c3QgUHJvdmlkZXIgQi5WLiBEViBTU0wgQ0EgLSBHMQ==","whitelist":false,"attachment":{"hash":"6902fcbf7cbaa6113fef3012c5b4cb6b57eedbecb1246fd4d021980ddd8bb4a7","size":1910,"filename":"3XnCzH5cKkeCxK0I9DpYpRQZ9Cyf6P7e0ks_yr-wMIg=.pem","location":"security-state-staging/intermediates/1099e1c1-4d22-46ec-a2a6-2b6f7d5bc460.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3XnCzH5cKkeCxK0I9DpYpRQZ9Cyf6P7e0ks/yr+wMIg=","crlite_enrolled":false,"id":"d0259003-812c-49cc-bc2f-a76605c14baf","last_modified":1576536532363},{"schema":1576536088977,"derHash":"h8cVU0Res8M8PgcQcRuZ6cd3PwTZGsOKn0wILuJBAeo=","subject":"CN=GlobalSign ECC OV SSL CA 2018,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1HbG9iYWxTaWduIE
VDQyBPViBTU0wgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"390a77060a6993d4717518c954c7ca27a2d0f5fbf0e41a6b5af1c798425dcc9c","size":1102,"filename":"KJpedoXG-Rd6IJnYeOJjxUjlaDEDI8K1vCBBgzeJkC4=.pem","location":"security-state-staging/intermediates/87b2c54d-9bb3-4349-af42-cefe085827c4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KJpedoXG+Rd6IJnYeOJjxUjlaDEDI8K1vCBBgzeJkC4=","crlite_enrolled":true,"id":"9054318d-a1b1-4bd8-b4ea-20ce57f44d1f","last_modified":1576536532346},{"schema":1576536090109,"derHash":"myWmp71RvF9cTwbg0SGP03DdMfr9XNO2J8gvIC8bRlc=","subject":"CN=SSL.com EV SSL Enterprise Intermediate CA RSA R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MH0xCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxOTA3BgNVBAMMMFNTTC5jb20gRVYgU1NMIEVudGVycHJpc2UgSW50ZXJtZWRpYXRlIENBIFJTQSBSMg==","whitelist":false,"attachment":{"hash":"6a19f551792254e07344f7d7c4e7e861f60d6567194233434f62adc62f595f4e","size":2454,"filename":"vcL6kV
P3jP8hbTn5A-tyKe1IWIWBFnhvUva3qmvEG2I=.pem","location":"security-state-staging/intermediates/3fb0958a-3a98-489e-b496-28b535b8c59c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vcL6kVP3jP8hbTn5A+tyKe1IWIWBFnhvUva3qmvEG2I=","crlite_enrolled":false,"id":"65d2abf0-ea93-4b8d-9f45-2b5db33f4074","last_modified":1576536532324},{"schema":1576536101946,"derHash":"q6amXc6JVbrwaFq4iAm3aZwXRJbvnumRUzJRSU9DzhA=","subject":"CN=emSign ECC Class 1 CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MG4xCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMSMwIQYDVQQDExplbVNpZ24gRUNDIENsYXNzIDEgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"08dbb6b7acb073d4854e540ae8a5b481d4a53af8dfa6bbd5167547bab1bbfd6c","size":1146,"filename":"Vi90DKA5oebj_na5AG-8ED2AOxp_ezxWTtviS14jpQ4=.pem","location":"security-state-staging/intermediates/6af4e353-16ba-477f-8e14-bcd1749fbc26.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vi90
DKA5oebj/na5AG+8ED2AOxp/ezxWTtviS14jpQ4=","crlite_enrolled":false,"id":"2f009cfb-439c-4999-9f3b-77b9f7f84299","last_modified":1576536532313},{"schema":1576536098122,"derHash":"D1XyiI0WPKxaC2jmzsEJjFgsPO4DiUeryibWMhpmrY8=","subject":"CN=Fuji Xerox Product CA 2 - S,O=Fuji Xerox,C=JP","subjectDN":"MEgxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MSQwIgYDVQQDExtGdWppIFhlcm94IFByb2R1Y3QgQ0EgMiAtIFM=","whitelist":false,"attachment":{"hash":"4a691b4f9e237d7eaaea8136399d660fbe891126105e9bfe3f0956884bbd34fc","size":1601,"filename":"VB5huVvz3NIuvb6JobC09TJ-Z4tKvVOuqvLZ7m9792w=.pem","location":"security-state-staging/intermediates/ee8a45d5-2b62-47a3-a3bf-bd0a39f1b181.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VB5huVvz3NIuvb6JobC09TJ+Z4tKvVOuqvLZ7m9792w=","crlite_enrolled":false,"id":"08afddd5-844d-4c8d-99f7-fd8629fd2eb0","last_modified":1576536532303},{"schema":1576536090882,"derHash":"m6ZluG4nIfUe8GULcoVoqTwNabVtjTjmMFMOdF1mO08=","subject":"CN=MilleniumSign EV SSL Certificate CA R
SA R3,O=MilleniumSign Limited,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGMMQswCQYDVQQGEwJNVTEYMBYGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTMwMQYDVQQDDCpNaWxsZW5pdW1TaWduIEVWIFNTTCBDZXJ0aWZpY2F0ZSBDQSBSU0EgUjM=","whitelist":false,"attachment":{"hash":"c2d9efcecdb520559e5d07b646a51f926b8020b4f41b9f42712640a7ca83e215","size":2568,"filename":"Fd9SgizCQBs1fPfz5Y2Z-ByhTYsHK6yT0xbzqrSicsU=.pem","location":"security-state-staging/intermediates/bc7b9946-608d-4516-ab44-46715a90f0bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Fd9SgizCQBs1fPfz5Y2Z+ByhTYsHK6yT0xbzqrSicsU=","crlite_enrolled":false,"id":"945a7a27-6220-4db0-a327-1b00830d3cab","last_modified":1576536532298},{"schema":1576536108745,"derHash":"81Ft3MivyAh4i9iw6EC9orXiPGJEJSyjAAu2yHFwQCo=","subject":"CN=Symantec SHA256 TimeStamping CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MHcxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfM
B0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEoMCYGA1UEAxMfU3ltYW50ZWMgU0hBMjU2IFRpbWVTdGFtcGluZyBDQQ==","whitelist":false,"attachment":{"hash":"f6d7d6142a404fb7f198a9deab5fa8cebdd00388a6f9ed5db9f9955c9d6c8783","size":1869,"filename":"-6bBVDoKjNHndL1ldZpf1QyIXiLIV4dUkciVo24ddLw=.pem","location":"security-state-staging/intermediates/0e83b85f-9d85-4404-8403-e9292f674f6f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+6bBVDoKjNHndL1ldZpf1QyIXiLIV4dUkciVo24ddLw=","crlite_enrolled":false,"id":"8cf1f488-3cd4-4c5b-9414-22ff2ba90b1b","last_modified":1576536532288},{"schema":1576536124596,"derHash":"3IW4p987GGIXSqb8lxQ8npzCLW8Zp3bVxX5cHfcA2VE=","subject":"CN=SSL.com Object CA,OU=www.ssl.com,O=SSL.com,C=US","subjectDN":"MFExCzAJBgNVBAYTAlVTMRAwDgYDVQQKEwdTU0wuY29tMRQwEgYDVQQLEwt3d3cuc3NsLmNvbTEaMBgGA1UEAxMRU1NMLmNvbSBPYmplY3QgQ0E=","whitelist":false,"attachment":{"hash":"20323ec6ee175231bf323239854623c13b6833fd8c9e755fa77925793b58ca26","size":2085,"filename":"HgdIFDIn7_8ksxHClkFmw9q0QEIK
6fN7wZ7qkvDisFw=.pem","location":"security-state-staging/intermediates/ceccf42d-13a0-454c-a0db-f9e1976f0047.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HgdIFDIn7/8ksxHClkFmw9q0QEIK6fN7wZ7qkvDisFw=","crlite_enrolled":false,"id":"f309bff7-7186-4f3b-9b95-51df26462077","last_modified":1576536532278},{"schema":1576536121896,"derHash":"TptzFWcXfhd2qW1m2RILPesouACTfqRmJWWz717IAAs=","subject":"CN=emSign ECC Class 2 CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MG4xCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMSMwIQYDVQQDExplbVNpZ24gRUNDIENsYXNzIDIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"b2c9c934bd28c6cdde9ab4d84c6c8da067598d50410f83afa8df464ff780c749","size":1142,"filename":"e6icTYnqPAeqRyiV6T1Z-dePhAfjZW9RbzFi-_h840Q=.pem","location":"security-state-staging/intermediates/2a9db6d2-ba72-49aa-a083-f23d88661c4b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e6icTYnqPAeqRyiV6T1Z+dePhA
fjZW9RbzFi+/h840Q=","crlite_enrolled":false,"id":"6058b519-9e61-482a-8f27-01c5ffd80762","last_modified":1576536532275},{"schema":1576536094293,"derHash":"Maw0azEHPcDRNOKfwhLMShXtNTDuoe3PyNrLNkktXeQ=","subject":"CN=4fastssl.com,OU=3S2N Sp. z o.o.,O=3S2N Sp. z o.o.,C=PL","subjectDN":"MFgxCzAJBgNVBAYTAlBMMRgwFgYDVQQKDA8zUzJOIFNwLiB6IG8uby4xGDAWBgNVBAsMDzNTMk4gU3AuIHogby5vLjEVMBMGA1UEAwwMNGZhc3Rzc2wuY29t","whitelist":false,"attachment":{"hash":"cae137f6053594f20d796d4a5a5d5e9f305e814739d0e7870c9bd2f123fd1605","size":1630,"filename":"sN7Yv0qTyjW-BJTfkzdVvYxd1ExUFwl3cvwbLztk5Fc=.pem","location":"security-state-staging/intermediates/bea7e911-09b3-4259-995d-27e5b79f0dda.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sN7Yv0qTyjW+BJTfkzdVvYxd1ExUFwl3cvwbLztk5Fc=","crlite_enrolled":false,"id":"49094aa8-a7a0-4644-bc88-83ff76b96f56","last_modified":1576536532272},{"schema":1576536123068,"derHash":"Vtj24UWykfX7op65iYz1Ir3nsUqziSnQpMTR3dq6Kmk=","subject":"CN=Sectigo RSA Time Stamping CA,O
=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MH0xCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGDAWBgNVBAoTD1NlY3RpZ28gTGltaXRlZDElMCMGA1UEAxMcU2VjdGlnbyBSU0EgVGltZSBTdGFtcGluZyBDQQ==","whitelist":false,"attachment":{"hash":"56a8d17bc1d2247a5c19076e98bcbe74c2bf2b35c572ea145ef0bab20aeec262","size":2458,"filename":"HAzgkpPws05gdb_VUEsKyKptN9VTKZx6piTRmO_w1x8=.pem","location":"security-state-staging/intermediates/1f071dbb-1f95-42d5-b695-bf6623c56f06.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HAzgkpPws05gdb/VUEsKyKptN9VTKZx6piTRmO/w1x8=","crlite_enrolled":false,"id":"50b19790-5758-49b6-b055-5e746d518437","last_modified":1576536532266},{"schema":1576536068013,"derHash":"0MrmlHvHfwtJXKgI1s3mhfzSAiXh5TC2NbET7UByjvM=","subject":"CN=GlobalSign Timestamping CA,OU=Timestamping CA,O=GlobalSign","subjectDN":"MFQxGDAWBgNVBAsTD1RpbWVzdGFtcGluZyBDQTETMBEGA1UEChMKR2xvYmFsU2lnbjEjMCEGA1UEAxMaR2xvYmFsU2lnbiBUaW1lc3RhbXBpbmcgQ0E=","w
hitelist":false,"attachment":{"hash":"7806ad293fa3eb0a436e9a8ee203d8340d736f8be793ab3d5c685c08b945c6dd","size":1483,"filename":"cJyzJQR9magyD5d9C2fLGru8Aqi-PgtEQD7TM2Dq-qI=.pem","location":"security-state-staging/intermediates/0144b6ca-d91d-42e8-ab16-043dfc8b9b9b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cJyzJQR9magyD5d9C2fLGru8Aqi+PgtEQD7TM2Dq+qI=","crlite_enrolled":false,"id":"e3f03587-8572-466f-981a-ea6ccff203c5","last_modified":1576536532261},{"schema":1576536085955,"derHash":"65T44sjQyDOLuLpA4erWIkuELLr8mfJp7vB2HoOcQaY=","subject":"CN=Western Digital Technologies Certification Authority,O=Western Digital Technologies,L=Irvine,ST=CA,C=US","subjectDN":"MIGRMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExDzANBgNVBAcTBklydmluZTElMCMGA1UEChMcV2VzdGVybiBEaWdpdGFsIFRlY2hub2xvZ2llczE9MDsGA1UEAxM0V2VzdGVybiBEaWdpdGFsIFRlY2hub2xvZ2llcyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"27bab012779245048bd280aa6bede454d41b18d63a1152020a3b837b9f5ad7fd","size":2869
,"filename":"w5ZKTAj16cKbFb_ByP_gQe9CQupFYdX6HVmRkZZtm9w=.pem","location":"security-state-staging/intermediates/1eee0ce9-061c-466b-a247-b923fa34aa69.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"w5ZKTAj16cKbFb/ByP/gQe9CQupFYdX6HVmRkZZtm9w=","crlite_enrolled":false,"id":"7faa7ca0-252e-4c62-aa48-c3cd1eafa8e5","last_modified":1576536532253},{"schema":1576536136036,"derHash":"rAq5Y7tfPaBfvIaH+YwrbqC7SZ5hGMGpE2sbx8PHGms=","subject":"CN=GlobalSign CA for AATL - SHA384 - G4,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIENBIGZvciBBQVRMIC0gU0hBMzg0IC0gRzQ=","whitelist":false,"attachment":{"hash":"85c8ec5dd9e2aef22c301709411a40ca34de77ae66cdf3a22ea4e351f5965835","size":2251,"filename":"eXySzCsBWDIfmGF01cwDJgdAdt8Hj7D429qgL2aN-zU=.pem","location":"security-state-staging/intermediates/db81a002-ed02-457c-8ef2-9ceae481d3bf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eXySzCsBWDIfmGF01cwDJgdAdt8Hj7D42
9qgL2aN+zU=","crlite_enrolled":false,"id":"4267e1b8-a619-4607-8632-9f4be3c8c3b3","last_modified":1576536532222},{"schema":1576536084428,"derHash":"g5Tj0H780el+psuiFMOgVcF92afr+N3gAg/N23byhlM=","subject":"CN=SSL.com EV SSL Intermediate CA ECC R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxLjAsBgNVBAMMJVNTTC5jb20gRVYgU1NMIEludGVybWVkaWF0ZSBDQSBFQ0MgUjI=","whitelist":false,"attachment":{"hash":"ec67d7acaecbee9548bf5d3b578b728e2309b8a0884f20b3973a99b6a90d4f0a","size":1280,"filename":"d1tKuR2aFFnhw8eRBoNei7sB4YWR1iQmOEmGB337A0k=.pem","location":"security-state-staging/intermediates/2afb24cd-f81f-48bf-b601-fda65e8b7dcf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"d1tKuR2aFFnhw8eRBoNei7sB4YWR1iQmOEmGB337A0k=","crlite_enrolled":true,"id":"734d16c1-380a-4953-81ad-78c29e818910","last_modified":1576536532216},{"schema":1576536100444,"derHash":"noUsWd/G/Wq9ThfqgLX05W/AQZLRByWNVNqKklKGcNY=
","subject":"CN=Certum Global Services CA SHA2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGDMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MScwJQYDVQQDEx5DZXJ0dW0gR2xvYmFsIFNlcnZpY2VzIENBIFNIQTI=","whitelist":false,"attachment":{"hash":"8aa13e80c83c232b2f8047b3b1df764885c9c822e03078672b01899a2acd4a16","size":1723,"filename":"M7aD_Hmgy7CF8sTddr5so1MZWEBuNfLIdGe1jvy0X6E=.pem","location":"security-state-staging/intermediates/f51cd94a-f3bc-4f18-bbba-d7bc1b52c422.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M7aD/Hmgy7CF8sTddr5so1MZWEBuNfLIdGe1jvy0X6E=","crlite_enrolled":false,"id":"b69c3618-7b62-4d9b-ac74-c8f39cf75c4c","last_modified":1576536532214},{"schema":1576536132995,"derHash":"ZAF9eLXwwExBlzXWpKbVLsHSARUkOw18dFB+JX/6SkA=","subject":"CN=ABB ECC Intermediate CA 1,O=ABB","subjectDN":"MFwxEzARBgoJkiaJk/IsZAEZFgNDT00xEzARBgoJkiaJk/IsZAEZFgNBQkIxDDAKBgNVBAoTA0FCQjE
iMCAGA1UEAxMZQUJCIEVDQyBJbnRlcm1lZGlhdGUgQ0EgMQ==","whitelist":false,"attachment":{"hash":"3bf4e56157209c6ae799aba198d716c87bb03db2fff0a948a5bf6c6f8312cd00","size":1902,"filename":"vtfN7uXcmYy-xpK14sDzgUP-IgxdWGzKLJ7P5ZVQFQg=.pem","location":"security-state-staging/intermediates/c8e925dd-10ad-45bc-8572-9fa64ce3655a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vtfN7uXcmYy+xpK14sDzgUP+IgxdWGzKLJ7P5ZVQFQg=","crlite_enrolled":false,"id":"78f90a7c-db0b-4ba1-bac5-6b8d2f8d842e","last_modified":1576536532209},{"schema":1576536116032,"derHash":"DYiQDbtoxspUcfZT/KzUB+vXsVGQRvnguM7TwnT9EaE=","subject":"CN=DigiCert Transition RSA Root,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IFRyYW5zaXRpb24gUlNBIFJvb3Q=","whitelist":false,"attachment":{"hash":"49bdab403720cb448ce0da5276c296f3e531dbc84f9b34389b2dd8ce3d71aed4","size":1756,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJraf
AiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/04dff2a2-c62d-4f0e-912a-27aa436c85fc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"844e0b7d-1eab-45a2-9c34-a8152b8a194d","last_modified":1576536532206},{"schema":1576536085589,"derHash":"FCFFg+X0nOLbiLk8/j99gbZ4yGr7ypJAuqS55M6Qvyw=","subject":"CN=Symantec Class 3 ECC 384 bit SSL CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEsMCoGA1UEAxMjU3ltYW50ZWMgQ2xhc3MgMyBFQ0MgMzg0IGJpdCBTU0wgQ0E=","whitelist":false,"attachment":{"hash":"e892cc0b4f7fa3b87f4a7469bf3e6a34084c3d9fec4e10943e11df05f74981b4","size":1435,"filename":"6WrpsMoYWnzd1kOPyS8f--FOclfP_jONLsXqcE6_5MU=.pem","location":"security-state-staging/intermediates/857e59e8-e4eb-4c38-9d55-324c35931b83.pem","mimetype":"application/x-pem-file"},"pubKeyHash"
:"6WrpsMoYWnzd1kOPyS8f++FOclfP/jONLsXqcE6/5MU=","crlite_enrolled":false,"id":"0d8edf2b-c4b1-483c-8cb8-331321784db9","last_modified":1576536532203},{"schema":1576536139122,"derHash":"F4zizkHm0pkmyJNy7PAbESCte22YCtKYNUwu/TFB4Sk=","subject":"CN=GIAG4,O=Google Trust Services LLC,C=US","subjectDN":"MEExCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMQ4wDAYDVQQDEwVHSUFHNA==","whitelist":false,"attachment":{"hash":"173627aa7b741915b72ac66ef4c36175e19527dc12a9e064793b587bc24840df","size":1557,"filename":"AAGolo0N1iZa5uuvm02csZnkuZs8hvI-HRLhAHtNhqk=.pem","location":"security-state-staging/intermediates/0a69dac3-a94c-4464-9a5f-cb3c4dd4adcf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AAGolo0N1iZa5uuvm02csZnkuZs8hvI+HRLhAHtNhqk=","crlite_enrolled":true,"id":"563d4e1b-cc04-4563-aa02-3a2f24d91ee9","last_modified":1576536532192},{"schema":1576536098902,"derHash":"FesKdcZzq/vc0vr8AoI8kf5svDbgB4hELIdU1yvsNxc=","subject":"CN=Encryption Everywhere DV TLS CA - G1,OU=www.dig
icert.com,O=DigiCert Inc,C=US","subjectDN":"MG4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLTArBgNVBAMTJEVuY3J5cHRpb24gRXZlcnl3aGVyZSBEViBUTFMgQ0EgLSBHMQ==","whitelist":false,"attachment":{"hash":"6e79684a22734ca75ec32f3adf0f864295161310bce94980a2608da91fbdd285","size":1678,"filename":"GI75anSEdkuHj05mreE0Sd9jE6dVqUIzzXRHHlZBVbI=.pem","location":"security-state-staging/intermediates/f06c6294-7b8f-48d8-b0f8-2b14682e5159.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GI75anSEdkuHj05mreE0Sd9jE6dVqUIzzXRHHlZBVbI=","crlite_enrolled":true,"id":"0c722bda-522b-4e54-86de-6947716f1ec9","last_modified":1576536532190},{"schema":1576536127628,"derHash":"6UL/g/YzoI29ZeQ7VxmkNA3hPbfGG9aofNywuph1qWg=","subject":"CN=K Software Certificate Authority (OV) 2,O=K Software,L=Ashland,ST=KY,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJLWTEQMA4GA1UEBxMHQXNobGFuZDETMBEGA1UEChMKSyBTb2Z0d2FyZTEwMC4GA1UEAxMnSyBTb2Z0d2FyZSBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgKE
9WKSAy","whitelist":false,"attachment":{"hash":"aefeae002e54508394d61079ca1d8477c613220626f0529d41aa1d0c8df5be3b","size":2138,"filename":"afXDX7F7Ynjqxjg6ewL0PMjH-QIuDGSiQQ1PAGTTkE4=.pem","location":"security-state-staging/intermediates/11514566-7d13-4edb-80cc-b5dffd44649f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"afXDX7F7Ynjqxjg6ewL0PMjH+QIuDGSiQQ1PAGTTkE4=","crlite_enrolled":false,"id":"22df7292-b32a-48e1-bf8a-dba558e5fb9a","last_modified":1576536532187},{"schema":1576536068766,"derHash":"gK2NJI1gE+/wAzZkVs3abPhbxHkaZ4FS4XjHK1p/Es0=","subject":"CN=InterCloud Ventures CA for CodeSigning,O=InterCloud Ventures Inc,C=SC","subjectDN":"MGAxCzAJBgNVBAYTAlNDMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEvMC0GA1UEAwwmSW50ZXJDbG91ZCBWZW50dXJlcyBDQSBmb3IgQ29kZVNpZ25pbmc=","whitelist":false,"attachment":{"hash":"58c167ecb8625f5ed88a6385c37aabfbe34ed011345c4a3c3bf6314f851bb37f","size":2381,"filename":"WTN_ayqlb7AXN8GdgPK1i40EqHGWA4uaGPFpRKCY18U=.pem","location":"security-state-st
aging/intermediates/c29cf028-60a7-4ae0-a6d9-6ae37269fb43.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WTN/ayqlb7AXN8GdgPK1i40EqHGWA4uaGPFpRKCY18U=","crlite_enrolled":false,"id":"74797804-f7a2-4f5d-a135-11483ca97411","last_modified":1576536532158},{"schema":1576536127256,"derHash":"PzGbKv7UoPdRJ75ZklVQ0EKOaHY6CeJz62qf+NGNu1s=","subject":"CN=GlobalSign,OU=GlobalSign ECC Root CA - R5,O=GlobalSign","subjectDN":"MFAxJDAiBgNVBAsTG0dsb2JhbFNpZ24gRUNDIFJvb3QgQ0EgLSBSNTETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbg==","whitelist":false,"attachment":{"hash":"b003225e25a61e89168f5f77baef1eabcd91e2a9c9117c1f5602208a802290e3","size":1313,"filename":"fg6tdrtoGdwvVFEahDVPboswe53YIFjqbABPAdndpd8=.pem","location":"security-state-staging/intermediates/8d1d0d1d-6a84-49b1-8a6d-74b898777b5d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fg6tdrtoGdwvVFEahDVPboswe53YIFjqbABPAdndpd8=","crlite_enrolled":false,"id":"e97393c4-72ac-459c-8c42-ee0e57bd8a90","last_modified":157653653
2144},{"schema":1576536096573,"derHash":"e9C9d7T7i2+CUz5OzsPHVl61IKP1NUnBerElNX//TFo=","subject":"CN=CertAssure RSA OV Secure Server Certification Authority,O=CertAssure Inc.,L=San Jose,ST=CA,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExETAPBgNVBAcTCFNhbiBKb3NlMRgwFgYDVQQKEw9DZXJ0QXNzdXJlIEluYy4xQDA+BgNVBAMTN0NlcnRBc3N1cmUgUlNBIE9WIFNlY3VyZSBTZXJ2ZXIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"29c2f0e95cd6822b6a47aec4b666a7e3143b04825116f0db4a5268602ee77ea5","size":2166,"filename":"AFV-kOki635A1nbhk6e6ZQs4lmPcP6IboL5EBPOsVYE=.pem","location":"security-state-staging/intermediates/d75b1d9e-e92c-4e6a-8378-24a25dd4ed9d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AFV+kOki635A1nbhk6e6ZQs4lmPcP6IboL5EBPOsVYE=","crlite_enrolled":false,"id":"ede04aed-0845-44f9-b1a8-03b4525fd10b","last_modified":1576536532124},{"schema":1576536125351,"derHash":"N2N3/R+vS4pbFHJkenC5QQOaYtdM/plEfkhhb41jqXg=","subject":"CN=DigiCert EV Code Signing CA,OU=www
.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0IEVWIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"0eb4c47655aa0125f23ad7ce888e0b58b7d36dad717750fdf0a4fd40e8403de6","size":2385,"filename":"c7df1T6z2RjxaDctD21S-mkgZ71HlsdERYtYXJwYb1Y=.pem","location":"security-state-staging/intermediates/e5bcc777-d888-4a08-b42d-beffa2bd76b9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"c7df1T6z2RjxaDctD21S+mkgZ71HlsdERYtYXJwYb1Y=","crlite_enrolled":false,"id":"e71509c8-ac25-4827-b3b8-11b99c4357d4","last_modified":1576536532121},{"schema":1576536128757,"derHash":"VD2bf8KmRxzYT8pSws9hWd+D6/zYjYsIta8/iHN/UuY=","subject":"CN=Amazon Root CA 4,O=Amazon,C=US","subjectDN":"MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDQ=","whitelist":false,"attachment":{"hash":"529e23adcf592c5f3ead786e4cade919e70e5ce97467aa24135ffedb958ca909","size":1410,
"filename":"9-ze1cZgR9KO1kZrVDxA4HQ6voHRCSVNz4RdTCx4U8U=.pem","location":"security-state-staging/intermediates/7e2813c8-5040-4edb-82d1-6727b462247e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9+ze1cZgR9KO1kZrVDxA4HQ6voHRCSVNz4RdTCx4U8U=","crlite_enrolled":false,"id":"6fb12511-5167-469d-9692-07522e197a11","last_modified":1576536532102},{"schema":1576536112199,"derHash":"VYenKm9zjt7O9nOHEW3o0ZNw6vPGsnLEmvm6uheV/Yc=","subject":"CN=Intel External Issuing CA 6B,O=Intel Corporation,L=Santa Clara,ST=CA,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEUMBIGA1UEBxMLU2FudGEgQ2xhcmExGjAYBgNVBAoTEUludGVsIENvcnBvcmF0aW9uMSUwIwYDVQQDExxJbnRlbCBFeHRlcm5hbCBJc3N1aW5nIENBIDZC","whitelist":false,"attachment":{"hash":"730c860c6a1a3c3e77c108c43b0e00f56074e1d949ea0d71d28548bf7e864319","size":5302,"filename":"sCfIb8e9n-5ipNtw1OVRRBJh67L2MmLDTBHeYecn3kU=.pem","location":"security-state-staging/intermediates/13d73ff1-47cf-4d6e-8af3-9c233886a4fc.pem","mimetype":"application/x-pem-file"}
,"pubKeyHash":"sCfIb8e9n+5ipNtw1OVRRBJh67L2MmLDTBHeYecn3kU=","crlite_enrolled":false,"id":"16fc2ee5-bf2c-4cc5-8f57-bf1b29ba948f","last_modified":1576536532066},{"schema":1576536131064,"derHash":"nfDT1VQN6umWwbJtox0O1OYO/fOj2jm2P6g4HTuok9o=","subject":"CN=Ionian University SSL CA R1,O=Ionian University,L=Kerkyra,C=GR","subjectDN":"MGExCzAJBgNVBAYTAkdSMRAwDgYDVQQHEwdLZXJreXJhMRowGAYDVQQKExFJb25pYW4gVW5pdmVyc2l0eTEkMCIGA1UEAxMbSW9uaWFuIFVuaXZlcnNpdHkgU1NMIENBIFIx","whitelist":false,"attachment":{"hash":"364105dddbc9280a5dc7aac80e22fa9fd688d01ec8b0110999ac19afaded8a71","size":2454,"filename":"vBUhM35ax7DSrTLTDo3K4f4_Yd93zumJYU7QNR67YtU=.pem","location":"security-state-staging/intermediates/75df7b02-0780-4005-b8d8-783cc77d09c9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vBUhM35ax7DSrTLTDo3K4f4/Yd93zumJYU7QNR67YtU=","crlite_enrolled":false,"id":"612dfa9e-2e51-4254-a17e-f34d2cae3b73","last_modified":1576536532052},{"schema":1576536100826,"derHash":"H9McZrC0X5PmZwk2XXYL9nAnax05z
45waNSo4gu/8+A=","subject":"CN=Fuji Xerox Certification Authority - G2,O=Fuji Xerox,C=JP","subjectDN":"MFQxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MTAwLgYDVQQDEydGdWppIFhlcm94IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"ff0a48b0b443388798edbed20dce740060299f311eaec5dc02593af9d96d1bf1","size":1524,"filename":"wekvipZx96mzAem7jXzac4eapzJ0kMdCftv4NPCJWHI=.pem","location":"security-state-staging/intermediates/b38241d8-fdc6-4ea0-afb6-1b2e9733c067.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wekvipZx96mzAem7jXzac4eapzJ0kMdCftv4NPCJWHI=","crlite_enrolled":false,"id":"d9de2a31-3c1a-49cf-94be-d01d8a121fc3","last_modified":1576536532047},{"schema":1576536077185,"derHash":"HXCbKITsCT5dd6UElx6IcWMERzT22nDJI6Tz/41OW0k=","subject":"CN=SECOM TimeStamping CA1,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MFUxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMR8wHQYDVQQDExZTRUNPTSBUaW1lU3RhbXBpbmcgQ0Ex","whitelist":false,"at
tachment":{"hash":"2b40c9fd758859d4734cefde3fe5cd1175a48ac4ef24ea479ba390451fe539a5","size":1508,"filename":"bKZzNUt0-zNujbmPHn_6dYVxxpdXJumDRXx-2XvGdiU=.pem","location":"security-state-staging/intermediates/97e4eadc-10fe-4d84-9cec-1818af90d1b7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bKZzNUt0+zNujbmPHn/6dYVxxpdXJumDRXx+2XvGdiU=","crlite_enrolled":false,"id":"07b884ce-8837-4df7-98be-ec07ec4647fe","last_modified":1576536532018},{"schema":1576536112576,"derHash":"F/MCIZ/Pzo/RjKwXL4sNRJa6Xajkn4cavB+dDKqjYOU=","subject":"CN=KLASS3-SK 2010,OU=Sertifitseerimisteenused,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MG0xCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMSEwHwYDVQQLExhTZXJ0aWZpdHNlZXJpbWlzdGVlbnVzZWQxFzAVBgNVBAMTDktMQVNTMy1TSyAyMDEw","whitelist":false,"attachment":{"hash":"69e17cd00463182ef276c37a763b3e1a5148efde85621a344e83ef9f3a74623d","size":1678,"filename":"21pSl8-gYIgzVrmihoLqfp4XlT3k97qo-M2ZGRQsy4Q=.pem","location":"security-state-staging/i
ntermediates/5a20865e-48b8-4068-bc47-0a2bb83948ca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"21pSl8+gYIgzVrmihoLqfp4XlT3k97qo+M2ZGRQsy4Q=","crlite_enrolled":false,"id":"76af15b4-926a-4869-93cb-119affd2926c","last_modified":1576536532010},{"schema":1576536080221,"derHash":"m/WJZ1RZlhlFEtthdxUa/plwauo9o2/u562fizwFB8s=","subject":"CN=Go Daddy Root Certificate Authority - G2,OU=https://certs.godaddy.com/repository/,O=GoDaddy.com\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIGzMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEaMBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xLjAsBgNVBAsTJWh0dHBzOi8vY2VydHMuZ29kYWRkeS5jb20vcmVwb3NpdG9yeS8xMTAvBgNVBAMTKEdvIERhZGR5IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"f01b7da33411fa8ad18c3acbb3b660ca139a5179f86a05a17e7ed8579b7c64a1","size":1678,"filename":"Ko8tivDrEjiY90yGasP6ZpBU4jwXvHqVvQI0GS3GNdA=.pem","location":"security-state-staging/intermediates/32481f93-70cb-40f2-b608-39d1e
40518fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ko8tivDrEjiY90yGasP6ZpBU4jwXvHqVvQI0GS3GNdA=","crlite_enrolled":false,"id":"e7caf81b-a272-4ba4-ab9e-23e7d0270c4e","last_modified":1576536532002},{"schema":1576536099289,"derHash":"5/FSbqnVFHt6Xhrmq+MXN6RmbR6PA+YzcDvTw9mx43Y=","subject":"CN=Gehirn Managed Certification Authority - ECC DV,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIGCMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMTgwNgYDVQQDEy9HZWhpcm4gTWFuYWdlZCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDQyBEVg==","whitelist":false,"attachment":{"hash":"ba00e0cc1ef2c958c1e04e3258cb7126d14548e2dd931dcbef08cf72cc29b04e","size":1321,"filename":"gXehP87ukwK1hI7ZuoCGUFVeee8oPwN9F_lSos9o0ns=.pem","location":"security-state-staging/intermediates/f5997c64-0815-4e51-af66-9a8200623298.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gXehP87ukwK1hI7ZuoCGUFVeee8oPwN9F/lSos9o0ns=","crlite_enrolled":false,"id":"106fef5b-5
aa0-42a1-9b57-e378ad429a2d","last_modified":1576536531983},{"schema":1576536111786,"derHash":"g8Hqnp78ooO4QOFn+ep5xOMqzTODT1nROPzaudiAayA=","subject":"CN=Symantec Time Stamping Services CA - G2,O=Symantec Corporation,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEwMC4GA1UEAxMnU3ltYW50ZWMgVGltZSBTdGFtcGluZyBTZXJ2aWNlcyBDQSAtIEcy","whitelist":false,"attachment":{"hash":"5f5a445a9debe9c5e196f66f3b896b29dfaecc3edf8c69d98c4185b20314d170","size":1626,"filename":"oGumzLGyzl2o91wqGSYl0m7wwzZ3wViPyem6aWf2UBI=.pem","location":"security-state-staging/intermediates/fb9448bc-44dd-4282-85f1-c4aaf431ae38.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oGumzLGyzl2o91wqGSYl0m7wwzZ3wViPyem6aWf2UBI=","crlite_enrolled":false,"id":"7e13165b-c802-4b83-850e-2830259615ae","last_modified":1576536531977},{"schema":1576536119484,"derHash":"9rtbeYWoc2WUwUZ5+jFgOBRQKq619CgqaZhdyEpFB3c=","subject":"CN=Symantec Web PKI RSA Root - G1,OU=Symantec Trust Network,O=Symantec C
orporation,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEnMCUGA1UEAxMeU3ltYW50ZWMgV2ViIFBLSSBSU0EgUm9vdCAtIEcx","whitelist":false,"attachment":{"hash":"64b574e42d99825dad6ef8f064e0287d85641837ec9f03bf1bf83090374436e9","size":2044,"filename":"Gtk3r1evlBrs0hG3fm3VoM19daHexDWP__OCmeeMr5M=.pem","location":"security-state-staging/intermediates/34f3de0a-0ed3-4749-b3b5-3627781c6d0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Gtk3r1evlBrs0hG3fm3VoM19daHexDWP//OCmeeMr5M=","crlite_enrolled":false,"id":"91f64259-d321-4336-9692-f6d7385aee61","last_modified":1576536531975},{"schema":1576536091272,"derHash":"Ie5tT1/uSFrHoDXx1l3i/E3Q7SiXrNwqO2ecBNRZmug=","subject":"CN=DOMENY SSL EV Certification Authority,OU=Controlled by COMODO exclusively for DOMENY.PL sp. z o.o,O=DOMENY.PL sp. z o.o,L=Krak\u00f3w,ST=Ma\u0142opolskie,C=PL","subjectDN":"MIHHMQswCQYDVQQGEwJQTDEVMBMGA1UECAwMTWHFgm9wb2xza2llMRAwDgYDVQQHDAdLcm
Frw7N3MRwwGgYDVQQKExNET01FTlkuUEwgc3AuIHogby5vMUEwPwYDVQQLEzhDb250cm9sbGVkIGJ5IENPTU9ETyBleGNsdXNpdmVseSBmb3IgRE9NRU5ZLlBMIHNwLiB6IG8ubzEuMCwGA1UEAxMlRE9NRU5ZIFNTTCBFViBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"6970cf0b963db7eef40d70e72633e4c8ce08e846f279520c4999c0506b87d77e","size":2292,"filename":"QKMgYhV5InRJvYzUJ1ylX-BvwC9fUdLVL_e6cCnbdGM=.pem","location":"security-state-staging/intermediates/85329473-fb73-4c5c-867f-1f579e8084dd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QKMgYhV5InRJvYzUJ1ylX+BvwC9fUdLVL/e6cCnbdGM=","crlite_enrolled":false,"id":"3884c098-4ac5-4ebc-8315-ed00d73e0f3b","last_modified":1576536531969},{"schema":1576536113347,"derHash":"43IiEmajMN0T6xOI36rx+rEd8lS2M4XLY3v++PtftnU=","subject":"CN=QIDUOCA 2018 DV SSL,OU=Domain Validated SSL,O=Suzhou Qiduo Information Technology Co.\\, Ltd.,C=CN","subjectDN":"MIGCMQswCQYDVQQGEwJDTjE2MDQGA1UECgwtU3V6aG91IFFpZHVvIEluZm9ybWF0aW9uIFRlY2hub2xvZ3kgQ28uLCBMdGQuMR0wGwYDVQQLDBREb21haW
4gVmFsaWRhdGVkIFNTTDEcMBoGA1UEAwwTUUlEVU9DQSAyMDE4IERWIFNTTA==","whitelist":false,"attachment":{"hash":"0ba2fb2707f62d2ab80d7dea9b69d32058ae47514caecd5cf221db84eb014577","size":1752,"filename":"HjT11uxb0dXXxZnh6FUmEWVHULtStPZ1LLzRYdkdoqY=.pem","location":"security-state-staging/intermediates/b6478416-94fe-4096-b983-23b33e8a6d14.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HjT11uxb0dXXxZnh6FUmEWVHULtStPZ1LLzRYdkdoqY=","crlite_enrolled":false,"id":"774024b8-2afe-482e-ad94-a88d0107d630","last_modified":1576536531954},{"schema":1576536134135,"derHash":"E0fpe/W3HHjeAPKkSp0H33ji6ZfpjnA4t2JXZcl83Ec=","subject":"CN=InterCloud SSL Certificate CA RSA R2,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MIGBMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEtMCsGA1UEAwwkSW50ZXJDbG91ZCBTU0wgQ2VydGlmaWNhdGUgQ0EgUlNBIFIy","whitelist":false,"attachment":{"hash":"7e3b11492fce1b8ac408168e725129a5c774c0d4764c02c
60d7e653acf1e4856","size":2454,"filename":"zp3iAFlKcyLAMqe-MJZjgpwhwmLrQYDlVEHNTCciBQw=.pem","location":"security-state-staging/intermediates/c1f1ee12-bac1-479c-8f15-6e35034b9672.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zp3iAFlKcyLAMqe+MJZjgpwhwmLrQYDlVEHNTCciBQw=","crlite_enrolled":false,"id":"c591d861-86f8-4939-8c1c-a0b83d61b88a","last_modified":1576536531926},{"schema":1576536119117,"derHash":"3U4MF5APP8Klt7dzrkAhitcyFrXOXShev/zogw0PA0o=","subject":"CN=TERENA Personal CA 3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MGkxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEdMBsGA1UEAxMUVEVSRU5BIFBlcnNvbmFsIENBIDM=","whitelist":false,"attachment":{"hash":"ee4661bbdd2c4531f9ec0affb2c8462ab039ea1abc75584561047afbf60517fc","size":1792,"filename":"HOqz19sqhyR0ujgIsU9ml1UZS9cRaphqC_kcr3CVOg0=.pem","location":"security-state-staging/intermediates/3efac7ca-1e54-4d12-b5f9-b9a9bcb72512.pem","mimetype":"application/x-p
em-file"},"pubKeyHash":"HOqz19sqhyR0ujgIsU9ml1UZS9cRaphqC/kcr3CVOg0=","crlite_enrolled":false,"id":"f823a65d-ac05-44a5-adb6-73f57c876206","last_modified":1576536531896},{"schema":1576536089732,"derHash":"h1b6/vsKedj/Nhx/46TbP5rVIGVS5xpJXfmKM85laTw=","subject":"CN=CertAssure RSA DV Secure Server Certification Authority,O=CertAssure Inc.,L=San Jose,ST=CA,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExETAPBgNVBAcTCFNhbiBKb3NlMRgwFgYDVQQKEw9DZXJ0QXNzdXJlIEluYy4xQDA+BgNVBAMTN0NlcnRBc3N1cmUgUlNBIERWIFNlY3VyZSBTZXJ2ZXIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"59e582ca4786d9959908ac2fdee355c16c187ee8353d64d2648b55b2d448272f","size":2166,"filename":"XUK4_mOFBsai_iVZvPajZozACtYX_1Rgy6ZjFieNpck=.pem","location":"security-state-staging/intermediates/c0a3d994-1f2c-424b-b5a4-7fd2569d8f40.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XUK4/mOFBsai/iVZvPajZozACtYX/1Rgy6ZjFieNpck=","crlite_enrolled":false,"id":"0c8e5371-6bfd-4e3c-8fc1-214bbadc418
1","last_modified":1576536531888},{"schema":1576536128385,"derHash":"nDBRZJbhJbPQkx9Jh14pUW2dwlRz5dahBsH8+GbTBts=","subject":"CN=GTS Y2,O=Google Trust Services LLC,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMQ8wDQYDVQQDEwZHVFMgWTI=","whitelist":false,"attachment":{"hash":"e8c95c6e8334db472dd4dd81fc9057a756258573b6b2c815af66cdf0e960c6a0","size":1906,"filename":"zYGIkpoNQj_A8MrSV7BzubZdDqEk9LkLgAj8t8_U_ns=.pem","location":"security-state-staging/intermediates/4f5d4d0d-ab8d-454f-9170-45bee44c5db8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zYGIkpoNQj/A8MrSV7BzubZdDqEk9LkLgAj8t8/U/ns=","crlite_enrolled":true,"id":"510e0089-ae37-4b96-8605-c4ba8a4f38f3","last_modified":1576536531882},{"schema":1576536083630,"derHash":"1XCEwSeYcycess57hBWkHOkSa1RNhRi62H/xzlpgTaM=","subject":"CN=GTS CA 1D2,O=Google Trust Services,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxEzARBgNVBAMTCkdUUyBDQSAxRDI=","whitelist"
:false,"attachment":{"hash":"9111c956475abad64a74fc25f5dc5839249913246aeda37cded4b3651b45520e","size":1548,"filename":"qPerI4uMwY1VrtRE5aBY8jIQJopLUuBt2-GDUWMwZn4=.pem","location":"security-state-staging/intermediates/577bf05b-e334-4a66-bcb0-d3bb3cbb33d4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qPerI4uMwY1VrtRE5aBY8jIQJopLUuBt2+GDUWMwZn4=","crlite_enrolled":true,"id":"21baac25-4dc6-42e5-813f-8cb5b1d60305","last_modified":1576536531880},{"schema":1576536096939,"derHash":"307LFhEO3qq6B6eB7Lk/41SWGzEx0tpQctNKvgt01bg=","subject":"CN=SecureCore RSA OV CA,O=SecureCore,L=OSAKA,ST=OSAKA,C=JP","subjectDN":"MGExCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVPU0FLQTEOMAwGA1UEBxMFT1NBS0ExEzARBgNVBAoTClNlY3VyZUNvcmUxHTAbBgNVBAMTFFNlY3VyZUNvcmUgUlNBIE9WIENB","whitelist":false,"attachment":{"hash":"2967d56ddac89aa3e10b2450061c6d5258252e83a4ea9ffd3e0c4453b315d01f","size":2113,"filename":"i9YotTNYIfvzcEXlwG2eor_v3IOO_LhM0dufRqOf7Dk=.pem","location":"security-state-staging/intermediates/4750431c-6e17-
4977-8f5e-4aadf57f6f10.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i9YotTNYIfvzcEXlwG2eor/v3IOO/LhM0dufRqOf7Dk=","crlite_enrolled":false,"id":"060fd0ef-9267-43a4-be6a-5844fda14113","last_modified":1576536531877},{"schema":1576536119880,"derHash":"vVY5dW8Ng32ZohBnKiEMZJsj6lm0+nbeDW5C/XutIbk=","subject":"CN=SECOM Passport for Web SR 2.0 CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MF8xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSkwJwYDVQQDEyBTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIFNSIDIuMCBDQQ==","whitelist":false,"attachment":{"hash":"d513ae4a2e1cd882559b7cef11ccc51bab7106fa40baff92662c011fc57d40a7","size":1609,"filename":"0CzdK_GELTntEyD4ub9b3f0cOshJkKpSgLbs7o9cHbA=.pem","location":"security-state-staging/intermediates/fc037576-199b-471d-9159-805b07c72b77.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0CzdK/GELTntEyD4ub9b3f0cOshJkKpSgLbs7o9cHbA=","crlite_enrolled":false,"id":"c483233c-8b30-44c2-a3bc-bbba8ccd21f7","last_modified":1576536
531859},{"schema":1576536087107,"derHash":"Dve4Y/qrw4SmlP9jLar5vTHO0j6SRlWaWezXRydUzOY=","subject":"CN=emSign Class 1 CA - C1,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEfMB0GA1UEAxMWZW1TaWduIENsYXNzIDEgQ0EgLSBDMQ==","whitelist":false,"attachment":{"hash":"7794b1b190e82b18d7b5fa922d7bfc2eac719e69dd3bdb72cc135eddd69bc51c","size":1540,"filename":"tGZeupl-1fZilJwugiteFK3_QBrwzCRpRSZvX6uA41s=.pem","location":"security-state-staging/intermediates/1c8b5b0a-6ce6-460c-b68c-5b9e6dcd4acd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tGZeupl+1fZilJwugiteFK3/QBrwzCRpRSZvX6uA41s=","crlite_enrolled":false,"id":"3d7a069a-f29d-4118-9ac6-49aa45da46c3","last_modified":1576536531856},{"schema":1576536094670,"derHash":"NsfjKXUKQD2wuvBpyanzOWPlyYpmqKtXAW22+IzFYU0=","subject":"CN=MilleniumSign SSL Certificate CA RSA R2,O=MilleniumSign Limited,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGJMQswCQYDVQQGEwJNVTEYMB
YGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTAwLgYDVQQDDCdNaWxsZW5pdW1TaWduIFNTTCBDZXJ0aWZpY2F0ZSBDQSBSU0EgUjI=","whitelist":false,"attachment":{"hash":"3c3182c3f974165726acb2e2b6c35f9306b120ba4684e22ac91eef26e5ef70a1","size":2552,"filename":"1jNByu9N5tc5kL0IfWW4-AIUQnp6ljVLB3ROX-cA6b4=.pem","location":"security-state-staging/intermediates/03421df1-3916-4c0a-87eb-0d83ea93a06f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1jNByu9N5tc5kL0IfWW4+AIUQnp6ljVLB3ROX+cA6b4=","crlite_enrolled":true,"id":"17e6f300-d0c1-4ef6-ae0f-36ecd026b133","last_modified":1576536531841},{"schema":1576536072963,"derHash":"pBaiukkMRU4juFvwh9t7E39PR9l0fmD4aS/0yN8OBis=","subject":"CN=TrustOcean Certification Authority,O=QiaoKr Corporation Limited,C=CN","subjectDN":"MF8xCzAJBgNVBAYTAkNOMSMwIQYDVQQKDBpRaWFvS3IgQ29ycG9yYXRpb24gTGltaXRlZDErMCkGA1UEAwwiVHJ1c3RPY2VhbiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"40aa115c2456db4
5d24f826f71babce7e8711e6dadb79d51f81544b5cc127980","size":1703,"filename":"AqnxlVGHcuEywBdQxncOoMBd2w-idNlfoDEnTgEx5S4=.pem","location":"security-state-staging/intermediates/a719d773-6e0a-47c4-84e1-8f61cf95748f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AqnxlVGHcuEywBdQxncOoMBd2w+idNlfoDEnTgEx5S4=","crlite_enrolled":false,"id":"13b2016a-1e62-488b-bfaa-2c73a57c8dc9","last_modified":1576536531833},{"schema":1576536114857,"derHash":"LHPumlL/rQcWa4co12gdjL79makGYzRbJarPmx7x8zM=","subject":"CN=SignSec Certification Authority,OU=SSL Department,O=FBS Inc,L=Irvine,ST=CA,C=US","subjectDN":"MIGAMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExDzANBgNVBAcTBklydmluZTEQMA4GA1UEChMHRkJTIEluYzEXMBUGA1UECxMOU1NMIERlcGFydG1lbnQxKDAmBgNVBAMTH1NpZ25TZWMgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"62210923e47646adf9d060655571c4ce48eb821e4d6302a97121bed12dde39bc","size":2158,"filename":"41fzHe29HqEJ0_pGALXNvRuPsmNV1cP7w8L-2fi7OPc=.pem","location":"security-state-staging/int
ermediates/d72e3cd5-274b-4802-b95f-74a7558123ef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"41fzHe29HqEJ0/pGALXNvRuPsmNV1cP7w8L+2fi7OPc=","crlite_enrolled":false,"id":"b5c03b14-145c-4893-ae49-ec141b83889c","last_modified":1576536531830},{"schema":1576536097708,"derHash":"QMgm/bIroyovnbT5R3D3K4sdqcj/2nsR5vJ68kXIm14=","subject":"CN=Amazon Root CA 3,O=Amazon,C=US","subjectDN":"MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDM=","whitelist":false,"attachment":{"hash":"527804e0cdb3a780b57c0f3f7429e1a5b42984b3bd67157b9fda6ba75cdc6d0a","size":1370,"filename":"NqvDJlas_GRcYbcWE8S_IceH9cq77kg0jVhZeAPXq8k=.pem","location":"security-state-staging/intermediates/52ba3866-d596-48e9-9a8f-b80188b6a77a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NqvDJlas/GRcYbcWE8S/IceH9cq77kg0jVhZeAPXq8k=","crlite_enrolled":false,"id":"249a688b-b665-4574-a1c8-43ac8cff8067","last_modified":1576536531740},{"schema":1576536137962,"derHash":"WuRkvS+DkB/DPvK1DNiA9RGM
jb6x60pOlLL7BRKIBcI=","subject":"CN=TrustID CA A12,O=IdenTrust,C=US","subjectDN":"MDoxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxFzAVBgNVBAMTDlRydXN0SUQgQ0EgQTEy","whitelist":false,"attachment":{"hash":"5643f5bf1bb2b2cce3b4d8ebe783772927119005e011155e3846f1bbdbd4b89f","size":2337,"filename":"Bl-cWNKzUJ_jTvgry8Yjj5Z5DS-raoYNAW6LXHJZf5I=.pem","location":"security-state-staging/intermediates/d6c0cf43-3179-4734-93d2-2708d847db07.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Bl+cWNKzUJ/jTvgry8Yjj5Z5DS+raoYNAW6LXHJZf5I=","crlite_enrolled":false,"id":"058ccc29-07c2-417f-93d5-b3629027f1f1","last_modified":1576536531734},{"schema":1576536075645,"derHash":"z20DM9C+LGmkLUU5YN7p4QnZ6IQ+owYaFnHW6vhet9g=","subject":"CN=emSign Class 1 CA - G1,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGoxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMR8wHQYDVQQDExZlbVNpZ24gQ2xhc3MgMSBDQSAtIEcx","whitelist":false,"attachment":{"hash"
:"266278533c3786da3d8865fcd54e0e8fbedf26868dc64378e368d49cb3b7817b","size":1589,"filename":"8eYpGcWTiEZyMyyg19Q9T-bCQt78vGjuJDkLU10HGx8=.pem","location":"security-state-staging/intermediates/ca8d7c44-0de7-4fdb-a4bb-a07b24618b68.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8eYpGcWTiEZyMyyg19Q9T+bCQt78vGjuJDkLU10HGx8=","crlite_enrolled":false,"id":"1cb8aaf5-1bf5-4af2-992d-adeedaabcaa7","last_modified":1576536531692},{"schema":1576536075273,"derHash":"jxn/4C/Hle1wdl0UNq3fdy/g8Hc9pDbtvbQqLjDi6Cg=","subject":"CN=GlobalSign ECC EV SSL CA 2018,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1HbG9iYWxTaWduIEVDQyBFViBTU0wgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"f363653deddf2dfcf9778cf76ffb95c3df7a78ee504183ca843b0302e14a7651","size":1102,"filename":"OD_WDbD3VsfMwwNzzy9MWd9JXppKB77Vb3ST2wn9meg=.pem","location":"security-state-staging/intermediates/44d3815f-42a9-4cec-bf3e-876bdcd1f014.pem","mimetype":"applicat
ion/x-pem-file"},"pubKeyHash":"OD/WDbD3VsfMwwNzzy9MWd9JXppKB77Vb3ST2wn9meg=","crlite_enrolled":true,"id":"0fd62746-093f-43ab-bba0-8f8ee357a4e7","last_modified":1576536531682},{"schema":1576536080984,"derHash":"QtocVi+A5G2noyEkTvwj0Pqp/ru3qgN32WtC2eiKsgA=","subject":"CN=emSign Class 3 CA - G1,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGoxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMR8wHQYDVQQDExZlbVNpZ24gQ2xhc3MgMyBDQSAtIEcx","whitelist":false,"attachment":{"hash":"d7df1cc3c3cc232a8f51e22a5dd4ea1766aeacac640f8a976a7c227626346ed2","size":1589,"filename":"4d2pu0FN5HWVpPbYu-0cH1AeCZYz3dgz9eFeY0xuTh8=.pem","location":"security-state-staging/intermediates/dbf450a1-135d-4dc7-8677-00049ab4ecf1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4d2pu0FN5HWVpPbYu+0cH1AeCZYz3dgz9eFeY0xuTh8=","crlite_enrolled":false,"id":"6f7f445a-9db3-41b6-8e6e-c97091de4b0d","last_modified":1576536531660},{"schema":1576536092403,"de
rHash":"6KfgjGL0C3iqD3Asx6b38M4L/ghgnSI0mJDDpYs//20=","subject":"CN=CrossTrust OV CA1,O=CrossTrust,C=JP","subjectDN":"MD4xCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpDcm9zc1RydXN0MRowGAYDVQQDExFDcm9zc1RydXN0IE9WIENBMQ==","whitelist":false,"attachment":{"hash":"0f7649880bfb97b342488531ab9f62e71f04e868a7191e8ae54b03b2526a7b31","size":1475,"filename":"qCy2EaMHB8FwmEDmszuH-bVZvMg1fSM10j8JL_PqoF8=.pem","location":"security-state-staging/intermediates/b797cd73-20ba-443a-a101-20abc2160b1f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qCy2EaMHB8FwmEDmszuH+bVZvMg1fSM10j8JL/PqoF8=","crlite_enrolled":false,"id":"10c4381f-23c3-44d1-a6f7-2707055dca1d","last_modified":1576536531624},{"schema":1576536074509,"derHash":"/SmRsTTOV7+c1oaHiFSl7tXqZEMwAkUrpAOY2niEXKc=","subject":"CN=SwissSign Server Gold CA 2008 - G2,O=SwissSign AG,C=CH","subjectDN":"MFExCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxKzApBgNVBAMTIlN3aXNzU2lnbiBTZXJ2ZXIgR29sZCBDQSAyMDA4IC0gRzI=","whitelist":false,"attachment":{"hash":"f15b
b6ffc3798a8b4808913b8ac6cc390cb6a0a58fbd2d65caf2e689c58711c6","size":2268,"filename":"4wrJfevPFcxD_U4tiJM27RJ1g4zjbu-B3eTgC_qPxGg=.pem","location":"security-state-staging/intermediates/56bf7371-6dd1-4cf7-a321-74547c1d3616.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4wrJfevPFcxD/U4tiJM27RJ1g4zjbu+B3eTgC/qPxGg=","crlite_enrolled":false,"id":"6ea46eb8-ddab-4129-8cd8-2b50d6580b24","last_modified":1576536531598},{"schema":1576536084043,"derHash":"XbYMLWtr7PMUR3WJo6T7TM+EZJ1psLIbPWsquni9Nfs=","subject":"CN=GDCA TrustAUTH R4 Generic CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MG8xCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJTAjBgNVBAMMHEdEQ0EgVHJ1c3RBVVRIIFI0IEdlbmVyaWMgQ0E=","whitelist":false,"attachment":{"hash":"22066078c8b548595b3543e7f4efbc0819675c6d5799aab9f7eb51ee3085e95e","size":2056,"filename":"mXaq2dsX_TtlLffdUghF79fyMALXeMrXTTUzEgq6gv8=.pem","location":"security-state-staging/intermedi
ates/874fedb4-3946-494c-8f65-a56d07cb81a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mXaq2dsX/TtlLffdUghF79fyMALXeMrXTTUzEgq6gv8=","crlite_enrolled":false,"id":"67740d97-16e0-48d6-9078-18385eaf1f0c","last_modified":1576536531581},{"schema":1576536100074,"derHash":"wijZPb5VNqEgrCTtk0RnutcpL4t+sgJjSxcHConF/ps=","subject":"CN=GlobalSign PersonalSign 3 CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAzIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"bf2a244863f255c9fd22a4c3444454a1bcccd8d89f263ecd2121ad83d9dd4cee","size":1569,"filename":"6FXSznfWYgPxKc6WahR_l3YNNCjz1qGbLp4BZInCAps=.pem","location":"security-state-staging/intermediates/41e39ce7-b2aa-4851-98bc-78caa2fa6bf2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6FXSznfWYgPxKc6WahR/l3YNNCjz1qGbLp4BZInCAps=","crlite_enrolled":false,"id":"cb5f2e05-a07d-4855-b07c-6f225c2dc2da","last_modified":1576536531569},{"
schema":1576536089348,"derHash":"aMGCyP43TVwJTmMllVny8HZKWJdDWD9KA+P2O3TXruo=","subject":"CN=WISeKey CertifyID Qualified G1 CA,OU=Copyright (c) 2006 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGLMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEmMCQGA1UECxMdQ29weXJpZ2h0IChjKSAyMDA2IFdJU2VLZXkgU0ExFjAUBgNVBAsTDUludGVybmF0aW9uYWwxKjAoBgNVBAMTIVdJU2VLZXkgQ2VydGlmeUlEIFF1YWxpZmllZCBHMSBDQQ==","whitelist":false,"attachment":{"hash":"d121c53328227cbe05ca7fef5dd84f062e82ef7e4960906d63b965909c82c934","size":1792,"filename":"8rqHoUpCjtZnIU9Eqwsz8IZwJcJMjg593mwJBPG32DI=.pem","location":"security-state-staging/intermediates/6c5d5d70-f804-4ff4-ba96-0b7fbe2e30f1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8rqHoUpCjtZnIU9Eqwsz8IZwJcJMjg593mwJBPG32DI=","crlite_enrolled":false,"id":"3687c07b-0800-4cc1-aa2b-1e6741bc3428","last_modified":1576536531556},{"schema":1576536104206,"derHash":"WpoD8tP+WJvmPNoRggqfJfB0ySA09RwEfTQibSUuwCU=","subject":"CN=emSign ECC Class 3 CA - C3,OU=emSig
n PKI,O=eMudhra Inc,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEjMCEGA1UEAxMaZW1TaWduIEVDQyBDbGFzcyAzIENBIC0gQzM=","whitelist":false,"attachment":{"hash":"6a976c7c76045fe8433c1fea57e7ae1de19f27a18f1c7bac51939e901257ea89","size":1098,"filename":"7yfF5AdGH75Zx9ksuCGXlGlIQcXlTbPFVOh5ccaTF0o=.pem","location":"security-state-staging/intermediates/f7dc2c14-5d52-4c59-97e7-78062c62da07.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7yfF5AdGH75Zx9ksuCGXlGlIQcXlTbPFVOh5ccaTF0o=","crlite_enrolled":false,"id":"0e7af0a7-8aa0-4cbb-960e-7f7436ef41ed","last_modified":1576536531553},{"schema":1576536138735,"derHash":"Uk5bOlWNX/AafEYCahS1jHfPne+6aR6sjkoX+sKjo7Y=","subject":"CN=ABB Intermediate CA 4,O=ABB","subjectDN":"MFgxEzARBgoJkiaJk/IsZAEZFgNDT00xEzARBgoJkiaJk/IsZAEZFgNBQkIxDDAKBgNVBAoTA0FCQjEeMBwGA1UEAxMVQUJCIEludGVybWVkaWF0ZSBDQSA0","whitelist":false,"attachment":{"hash":"bcf24b7da92702c711a274a90adbcc4eb31cc77e3005b0f0418c5b579b3ded
bd","size":2690,"filename":"kaOrTzoe-Gh5cWt5XfatccAttrnblSCwYojFn7U0lhM=.pem","location":"security-state-staging/intermediates/914207d4-d1ef-4cdc-857d-aeea9ec81e43.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kaOrTzoe+Gh5cWt5XfatccAttrnblSCwYojFn7U0lhM=","crlite_enrolled":false,"id":"e8e0c38b-beec-4346-b2db-7c6cac67c695","last_modified":1576536531548},{"schema":1576536104947,"derHash":"dEaBgM5WS61+gSIQr3Q+hcqWy6RM9YUfoACCNBslNfU=","subject":"CN=GDCA TrustAUTH R4 DV SSL CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MG4xCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJDAiBgNVBAMMG0dEQ0EgVHJ1c3RBVVRIIFI0IERWIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"7cfea5fa9465373b3b94affa9d9aab2c113c1118cc633be2b62f93987ea69fa5","size":2052,"filename":"iBHlL3zuDBffc94FLYVkQWUl8ghEY26YFGj-wm1psHY=.pem","location":"security-state-staging/intermediates/99cb19eb-1375-4867-90aa-b0b2d298c16c.pem","mimetype":"
application/x-pem-file"},"pubKeyHash":"iBHlL3zuDBffc94FLYVkQWUl8ghEY26YFGj+wm1psHY=","crlite_enrolled":false,"id":"66719d09-7132-4513-86df-72ef54bba5b6","last_modified":1576536531539},{"schema":1576536126868,"derHash":"928NitMwrP1MW9BaWKHPFV3gC+LJj054mb4k6AoqvL8=","subject":"CN=thawte SHA256 Code Signing CA - G2,O=thawte\\, Inc.,C=US","subjectDN":"MFExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xKzApBgNVBAMTInRoYXd0ZSBTSEEyNTYgQ29kZSBTaWduaW5nIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"8d1b6568e0c9f839594eb1d21126334c08330175fdd7aa0dd5ef87b386381f2b","size":1813,"filename":"KxgL7ZzAwOK6VyuRh0Qgl8AO3GNYmmtOAageweXe2HM=.pem","location":"security-state-staging/intermediates/6623e0a2-ca3f-42df-9aab-1ae957647958.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KxgL7ZzAwOK6VyuRh0Qgl8AO3GNYmmtOAageweXe2HM=","crlite_enrolled":false,"id":"99881c4a-a35d-4f02-8c92-1bdb792da661","last_modified":1576536531530},{"schema":1576536077553,"derHash":"gQHDuvnQ7dcRgNHzfW11t3sOjPtZPTQ
sOjHkZ5hdSnQ=","subject":"SERIALNUMBER=PT507015851,CN=DigitalSign Primary CA,O=DigitalSign Certificadora Digital,L=Guimaraes (see current address at www.digitalsign.pt),C=PT","subjectDN":"MIGwMQswCQYDVQQGEwJQVDEqMCgGA1UECgwhRGlnaXRhbFNpZ24gQ2VydGlmaWNhZG9yYSBEaWdpdGFsMRQwEgYDVQQFEwtQVDUwNzAxNTg1MTE+MDwGA1UEBww1R3VpbWFyYWVzIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5kaWdpdGFsc2lnbi5wdCkxHzAdBgNVBAMMFkRpZ2l0YWxTaWduIFByaW1hcnkgQ0E=","whitelist":false,"attachment":{"hash":"a83022b4b30a88628db0ac26c6a3b7fd1211de3741122d444a90773a7113a376","size":2978,"filename":"lGHa44HE2Tf2byLm_zbLjYVyWUTCuVjs85wVs0pjx_4=.pem","location":"security-state-staging/intermediates/3ebbcd56-4f53-4881-9eb6-501675f8fa48.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lGHa44HE2Tf2byLm/zbLjYVyWUTCuVjs85wVs0pjx/4=","crlite_enrolled":false,"id":"7c2951dd-7bee-4774-8867-6403834d5206","last_modified":1576536531525},{"schema":1576536079076,"derHash":"20WR+Hj2Zy9bcHM6Zq18lTe5fm8K9cpJqrjsss4C+Gs=","subject":"CN=emSig
n ECC Class 2 CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEjMCEGA1UEAxMaZW1TaWduIEVDQyBDbGFzcyAyIENBIC0gQzM=","whitelist":false,"attachment":{"hash":"6726d4cd8b74a9dc90a4a784c54671d69630f8fb6349c445e838be1cfccdce15","size":1098,"filename":"6nBouKNAQSAKbMyn22fCnI3dwxK0fiT4UvzcTjEMQKo=.pem","location":"security-state-staging/intermediates/e7df3325-60f1-4ee6-9ef7-fad0411247c9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6nBouKNAQSAKbMyn22fCnI3dwxK0fiT4UvzcTjEMQKo=","crlite_enrolled":false,"id":"95e7d143-1acd-49b1-a78d-ad87dbf9fa68","last_modified":1576536531522},{"schema":1576536074889,"derHash":"2gr68VzTAONLUg+3ik+mjrQsRgHpObkD4LHXHfWWW/8=","subject":"CN=QuoVadis Code Signing CA G1,O=QuoVadis Limited,C=BM","subjectDN":"ME4xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSQwIgYDVQQDExtRdW9WYWRpcyBDb2RlIFNpZ25pbmcgQ0EgRzE=","whitelist":false,"attachment":{"hash":"0dc22657eb892ad49c75
f643d992174fea2c22fdc850b5792b0259b076e66faa","size":2272,"filename":"VCr-eF6_xVmjgcXvq31J5dzsT0JrmClTQ6o74gj6qE8=.pem","location":"security-state-staging/intermediates/4656eb34-6036-4f00-9758-cc94462b55e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VCr+eF6/xVmjgcXvq31J5dzsT0JrmClTQ6o74gj6qE8=","crlite_enrolled":false,"id":"55cb4262-db0c-4e46-9de7-bd25df1c58d9","last_modified":1576536531519},{"schema":1576536111418,"derHash":"RZCrAULHhnEfVuh9+B6/mJGngEPNaNBwKUM/NRjsdss=","subject":"CN=WebSpace-Forum Essential CA II,O=WebSpace-Forum e.K.,L=Berlin,ST=Berlin,C=DE","subjectDN":"MHYxCzAJBgNVBAYTAkRFMQ8wDQYDVQQIEwZCZXJsaW4xDzANBgNVBAcTBkJlcmxpbjEcMBoGA1UEChMTV2ViU3BhY2UtRm9ydW0gZS5LLjEnMCUGA1UEAxMeV2ViU3BhY2UtRm9ydW0gRXNzZW50aWFsIENBIElJ","whitelist":false,"attachment":{"hash":"93fcdf1909661393298dbc544f6986fede575481f68106dae6fa2e24691582ff","size":2138,"filename":"JLiByOVnWd2f8bAC0L_puQNtFwBfGt4XaQ6BRcqgrQ4=.pem","location":"security-state-staging/intermediates/1247d329-776e
-42bb-8a64-e61a2c46e6e0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JLiByOVnWd2f8bAC0L/puQNtFwBfGt4XaQ6BRcqgrQ4=","crlite_enrolled":false,"id":"fcf2e7fb-bc92-4de6-8e18-b79ce15100a5","last_modified":1576536531502},{"schema":1576536092777,"derHash":"dNNMp9NUf7PslV2O7+vE3PDLsK7z+XfhnFchIjxuW0M=","subject":"CN=InterCloud Code Signing Certificate CA RSA,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MIGHMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEzMDEGA1UEAwwqSW50ZXJDbG91ZCBDb2RlIFNpZ25pbmcgQ2VydGlmaWNhdGUgQ0EgUlNB","whitelist":false,"attachment":{"hash":"b6b52e4c73da45484c9e358a3b77a269cef709c7275e385f705525e41e5cd34f","size":2438,"filename":"kaEqLmvrlN2nJCNqgThzck5OGxBpaazwyCcRzxiCwdU=.pem","location":"security-state-staging/intermediates/cd8297a0-ead5-4928-9218-b14cf084fdfc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kaEqLmvrlN2nJCNqgThzck5OGxBpaazwyCcRzxiCwdU=","crlite_enr
olled":false,"id":"98c56f00-c9a1-49b1-8c3c-95dca890b9f9","last_modified":1576536531499},{"schema":1576536069912,"derHash":"QE5kPW7tO/z6/EnMV9bmvktt6ClxdsUZDxXgpe8R/pc=","subject":"SERIALNUMBER=A82743287,CN=AC Camerfirma Portugal - 2015,O=AC Camerfirma S.A.,L=Madrid (see current address at www.camerfirma.com/address),C=ES","subjectDN":"MIGrMQswCQYDVQQGEwJFUzEbMBkGA1UECgwSQUMgQ2FtZXJmaXJtYSBTLkEuMRIwEAYDVQQFEwlBODI3NDMyODcxQzBBBgNVBAcMOk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJmaXJtYS5jb20vYWRkcmVzcykxJjAkBgNVBAMMHUFDIENhbWVyZmlybWEgUG9ydHVnYWwgLSAyMDE1","whitelist":false,"attachment":{"hash":"a879f554628862eeeb50ede2ef4f18fa09e2fe831a737a081bbf05239bbf32ea","size":2930,"filename":"w12hFjmf7dfqB7Th3bbHbZCxFIvO6PueH3VrEWkJdmE=.pem","location":"security-state-staging/intermediates/3f702bc9-3fdf-4d61-9947-f953f2f91225.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"w12hFjmf7dfqB7Th3bbHbZCxFIvO6PueH3VrEWkJdmE=","crlite_enrolled":false,"id":"d89ad2c7-c77a-4a8a-8d0a-d54c
3b1492d7","last_modified":1576536531481},{"schema":1576536129511,"derHash":"9mCwwlZIHLK/xnZhweqP7uOVtxQbysNsNuBNCM2eFYI=","subject":"CN=DFN-Verein Certification Authority 2,OU=DFN-PKI,O=Verein zur Foerderung eines Deutschen Forschungsnetzes e. V.,C=DE","subjectDN":"MIGVMQswCQYDVQQGEwJERTFFMEMGA1UEChM8VmVyZWluIHp1ciBGb2VyZGVydW5nIGVpbmVzIERldXRzY2hlbiBGb3JzY2h1bmdzbmV0emVzIGUuIFYuMRAwDgYDVQQLEwdERk4tUEtJMS0wKwYDVQQDEyRERk4tVmVyZWluIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IDI=","whitelist":false,"attachment":{"hash":"6a4a495a8e0a5d05743b1038d796e892b2588f6e493314ad4c9bd9091e0e5590","size":1817,"filename":"nKACHrGIK7Y2Rip247vWnOEfapF_v8H8rewd_Mzla8U=.pem","location":"security-state-staging/intermediates/97909fb6-ddc3-470e-be2b-383bf9c3f177.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nKACHrGIK7Y2Rip247vWnOEfapF/v8H8rewd/Mzla8U=","crlite_enrolled":false,"id":"3cfbb558-f1ba-418a-9513-9ebf4f15523d","last_modified":1576536531457},{"schema":1576536073722,"derHash":"fXQDQbUZP1PmdeOh47SxCV5
gJQn2Wl+nV2sOOlRw+cY=","subject":"CN=GTS Y1,O=Google Trust Services LLC,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMQ8wDQYDVQQDEwZHVFMgWTE=","whitelist":false,"attachment":{"hash":"639a1475e5dc0801f220279c12f2a7afd908a3c78a3734cd6f1be16127a0c9d7","size":1906,"filename":"V7Wxjz1qgqxtHdP2QmPdLItv2zRjJ79Zl1N6X7TYHVA=.pem","location":"security-state-staging/intermediates/7190cdca-d03a-4a38-9344-112721e008fd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V7Wxjz1qgqxtHdP2QmPdLItv2zRjJ79Zl1N6X7TYHVA=","crlite_enrolled":true,"id":"a7a48ed8-bb53-4eac-b5dd-e7e62ded4fd6","last_modified":1576536531429},{"schema":1576536128013,"derHash":"EercU3mxUsGpDR2+AHIsUxZbMgAx9bpGmt9ZAv2x+kU=","subject":"CN=SSL.com Code Signing Enterprise Intermediate CA RSA R1,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MIGDMQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0b24xETAPBgNVBAoMCFNTTCBDb3JwMT8wPQYDVQQDDDZTU0wuY29tIENvZGUgU2lnbmluZyBFbnRlcnByaXN
lIEludGVybWVkaWF0ZSBDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"09d53bf64faddcead2273649e4cb3fa12dc7c5c6b11e5b058c2da05851cfa6b0","size":2438,"filename":"-HKIj9tLIUqgEj0Y5m5tNgY4LWGaXWYKZ86BvcEzblM=.pem","location":"security-state-staging/intermediates/63a0dcc7-5d7b-4f91-b6d4-59aa5af2f7d4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+HKIj9tLIUqgEj0Y5m5tNgY4LWGaXWYKZ86BvcEzblM=","crlite_enrolled":false,"id":"e5ed27bc-521e-4e8c-a344-7fcf0bfa9290","last_modified":1576536531403},{"schema":1576536117580,"derHash":"pCOjNJOzGVMibflkd2J9vQVnVnBCEQAbYWH7X4KZ3Do=","subject":"CN=Government Root Certification Authority - G1.5,O=\u884c\u653f\u9662,C=TW","subjectDN":"MFoxCzAJBgNVBAYTAlRXMRIwEAYDVQQKDAnooYzmlL/pmaIxNzA1BgNVBAMMLkdvdmVybm1lbnQgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcxLjU=","whitelist":false,"attachment":{"hash":"bd641cbfea8a068b2460fd4b90519d206aaa857dfae47763af8e3c24467355c9","size":2296,"filename":"C-F4mFTVkarDabMlcY1XHBga4Nw59VzZ4uPejwqVOg0=.pem","locati
on":"security-state-staging/intermediates/992aa19e-0103-45d3-bfc5-52baf8d7eab6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"C+F4mFTVkarDabMlcY1XHBga4Nw59VzZ4uPejwqVOg0=","crlite_enrolled":false,"id":"a1cc2141-ced4-48dd-9b77-c0596f7d704f","last_modified":1576536531327},{"schema":1576536076791,"derHash":"BabbOJOR35LgvpP9+k2x489TkDkYuNnYWpw5bLVd8DA=","subject":"SERIALNUMBER=10688435,CN=Starfield Secure Certification Authority,OU=http://certificates.starfieldtech.com/repository,O=Starfield Technologies\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIHcMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE5MDcGA1UECxMwaHR0cDovL2NlcnRpZmljYXRlcy5zdGFyZmllbGR0ZWNoLmNvbS9yZXBvc2l0b3J5MTEwLwYDVQQDEyhTdGFyZmllbGQgU2VjdXJlIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MREwDwYDVQQFEwgxMDY4ODQzNQ==","whitelist":false,"attachment":{"hash":"37d7bba2be8f3a98a69a003482d6d53844e60252e23b914f5352656847af97ff","size":1804,"filename":
"lpQNmRQZFRRQ0edfZiGPbyWU4d9K8xpa1nPJqHRoF84=.pem","location":"security-state-staging/intermediates/6300e821-542e-4fd8-affd-d5e6a763540c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lpQNmRQZFRRQ0edfZiGPbyWU4d9K8xpa1nPJqHRoF84=","crlite_enrolled":false,"id":"cad79643-368d-41c4-961a-f100b194b581","last_modified":1576536531299},{"schema":1576536109499,"derHash":"wWH1qt5A+8lyPwiS3pY9TRBAVWGmvcaacnmPkYvtGc0=","subject":"CN=GRnet SSL RSA SubCA R2,O=Greek Research and Technology Network,L=Athens,C=GR","subjectDN":"MG8xCzAJBgNVBAYTAkdSMQ8wDQYDVQQHDAZBdGhlbnMxLjAsBgNVBAoMJUdyZWVrIFJlc2VhcmNoIGFuZCBUZWNobm9sb2d5IE5ldHdvcmsxHzAdBgNVBAMMFkdSbmV0IFNTTCBSU0EgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"69b971bbf7810fedfe1e5c31583714084300973264f6030e959f6e28b6f4374c","size":2861,"filename":"AC8xqpj5E7pReTXZrh3N31yqqxl7UQm0Z14O0g7xxVE=.pem","location":"security-state-staging/intermediates/d83f633b-df4f-4572-92e9-553a186319eb.pem","mimetype":"application/x-pem-file"},"pubKeyHash
":"AC8xqpj5E7pReTXZrh3N31yqqxl7UQm0Z14O0g7xxVE=","crlite_enrolled":false,"id":"0d1c158e-15af-44d3-a9cf-1acb50435e20","last_modified":1576536531289},{"schema":1576536081735,"derHash":"5Wru6/KIBp7sLW4Ziifhn53zCRNQaM+pNUAmlD0k87E=","subject":"CN=InterCloud EV SSL Certificate CA RSA R3,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MIGEMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEwMC4GA1UEAwwnSW50ZXJDbG91ZCBFViBTU0wgQ2VydGlmaWNhdGUgQ0EgUlNBIFIz","whitelist":false,"attachment":{"hash":"fbc3954b7d52a01d40cab42d2bc9fc08eff3e597a5d428992bb9581b7a8c94e0","size":2471,"filename":"hPLzG6Vy1gf1PMWWgLY8z_a0WyqyMoej9-buHprroIU=.pem","location":"security-state-staging/intermediates/f78a36aa-8e5c-4bf1-a835-3ab514fc45cc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hPLzG6Vy1gf1PMWWgLY8z/a0WyqyMoej9+buHprroIU=","crlite_enrolled":false,"id":"edb99a2d-ef3a-4ae0-bf49-a63992885a1e","last_modified":15765365312
81},{"schema":1576536076033,"derHash":"o6/XI3XB16gzDmLVd+E1gbcjMsgGLfqc855RrmUIhYI=","subject":"CN=emSign ECC CS CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFgxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEeMBwGA1UEAxMVZW1TaWduIEVDQyBDUyBDQSAtIEMz","whitelist":false,"attachment":{"hash":"e78db72b2b20a263d8c00cd39c67f567bc602deb614b1af569a52798597a55a9","size":1122,"filename":"Qh3k9ZQZLXq0iPvXe_T_63H5TS-rZeD7d7TMPYB2nDQ=.pem","location":"security-state-staging/intermediates/c11d4e0a-dc97-4886-8df9-bb636b532d84.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Qh3k9ZQZLXq0iPvXe/T/63H5TS+rZeD7d7TMPYB2nDQ=","crlite_enrolled":false,"id":"0e5a0ce4-5b84-4080-a74e-7f228333f9b8","last_modified":1576536531267},{"schema":1576536126114,"derHash":"45ank0detv8VCmTWEzp+4KLHtndcvuumlbkNoB2BoEQ=","subject":"CN=Ensured Timestamping CA,O=Ensured B.V.,L=Heerhugowaard,ST=Noord-Holland,C=NL","subjectDN":"MHYxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMR
YwFAYDVQQHEw1IZWVyaHVnb3dhYXJkMRUwEwYDVQQKEwxFbnN1cmVkIEIuVi4xIDAeBgNVBAMTF0Vuc3VyZWQgVGltZXN0YW1waW5nIENB","whitelist":false,"attachment":{"hash":"cad6a53fe8c841dabf9443dcb6b3d99b137f49b1af74207c6d31953d096f1df7","size":2389,"filename":"VgegaX7G8tbYRNCFSwpzrgTk_xEr-tyezX0fkrC6Opw=.pem","location":"security-state-staging/intermediates/a6e7795d-6715-4499-b681-96e97a4e8fc4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VgegaX7G8tbYRNCFSwpzrgTk/xEr+tyezX0fkrC6Opw=","crlite_enrolled":false,"id":"1712421f-df63-4c5b-b4ee-0359adde1aa5","last_modified":1576536531238},{"schema":1576536098501,"derHash":"7aycRZCfTex7tl8KT79qigN15Srt1m4GiI/tfj7exTc=","subject":"CN=SSL.com SSL Enterprise Intermediate CA RSA R1,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHoxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxNjA0BgNVBAMMLVNTTC5jb20gU1NMIEVudGVycHJpc2UgSW50ZXJtZWRpYXRlIENBIFJTQSBSMQ==","whitelist":false,"attachment":{"hash":"42a56861b5ab133e4979bc
06ef0b003aa3dcaff205a11727c118fa7ddf6a0048","size":2438,"filename":"oKApNpDL2hzvB6fqN6yfWxbdoxF2lvnVZLw24c9MNWU=.pem","location":"security-state-staging/intermediates/81af418f-7a0f-4859-980a-b92c6e71ed11.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oKApNpDL2hzvB6fqN6yfWxbdoxF2lvnVZLw24c9MNWU=","crlite_enrolled":false,"id":"1ffc4914-2a3d-42d2-af2c-8f6f9dfaa60c","last_modified":1576536531230},{"schema":1576536121479,"derHash":"abDdCbmPNqnMe9f/6KANzTGaX8lHycivcskolNjoEJI=","subject":"CN=emSign Class 3 CA - C1,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEfMB0GA1UEAxMWZW1TaWduIENsYXNzIDMgQ0EgLSBDMQ==","whitelist":false,"attachment":{"hash":"3aa155eb8f98e023c61de4d46433bc4046b93234f688f14f6806cdbe52688ea5","size":1540,"filename":"196cBc4ZpZ-dgc2f9eiIzsTDKH1UcMUQklpeqjt81U8=.pem","location":"security-state-staging/intermediates/99544220-2852-47f5-be07-65330e576225.pem","mimetype":"application/x-pem-
file"},"pubKeyHash":"196cBc4ZpZ+dgc2f9eiIzsTDKH1UcMUQklpeqjt81U8=","crlite_enrolled":false,"id":"b1870974-fb66-409f-a707-cfab57324858","last_modified":1576536531194},{"schema":1576536083268,"derHash":"itR/bXCkT6gK8PkxEl/+OnaHb/rSGaTUChPAONyF5p4=","subject":"CN=TWCA Global Root CA,OU=Root CA,O=TAIWAN-CA,C=TW","subjectDN":"MFExCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExEDAOBgNVBAsTB1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3QgQ0E=","whitelist":false,"attachment":{"hash":"6e89794002729d6ef21257984707c517e72b2e5f2de8c602a8b0b3cdc1a90d19","size":1914,"filename":"xES1tmzl1x4bXkDyc4XJXL_SSgW1b3DKwJkvD1DDN5w=.pem","location":"security-state-staging/intermediates/9bf8c741-9386-401d-8c59-f5410390ae2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xES1tmzl1x4bXkDyc4XJXL/SSgW1b3DKwJkvD1DDN5w=","crlite_enrolled":false,"id":"954d0ac8-d979-4964-a8f1-6ae3ae761ebc","last_modified":1576536531183},{"schema":1576536078694,"derHash":"PzHbdYKNqpbk3luCoGeP4gI71bJGw/klDL9nGOEJWPU=","subject":"C
N=Domain The Net Technologies Ltd CA for EV SSL R2,O=Domain The Net Technologies Ltd,C=IL","subjectDN":"MHIxCzAJBgNVBAYTAklMMSgwJgYDVQQKDB9Eb21haW4gVGhlIE5ldCBUZWNobm9sb2dpZXMgTHRkMTkwNwYDVQQDDDBEb21haW4gVGhlIE5ldCBUZWNobm9sb2dpZXMgTHRkIENBIGZvciBFViBTU0wgUjI=","whitelist":false,"attachment":{"hash":"cf5351124dd205109785f9b65c288b991342bec54071a6a24020c197870d64f5","size":2487,"filename":"Lk19AkNIC7AwHNF5HsU_phCEnUBI-eiA0mbFhxxeQsQ=.pem","location":"security-state-staging/intermediates/e3c32426-ee59-4729-9b1d-1ad5faa81c2c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Lk19AkNIC7AwHNF5HsU/phCEnUBI+eiA0mbFhxxeQsQ=","crlite_enrolled":false,"id":"dafe281c-5c26-4b1e-b927-70b741e43b25","last_modified":1576536531160},{"schema":1576536136786,"derHash":"VyZLgqhk26HBHvP4CruUysNmBmKwwi9XH/mTs/vPdvs=","subject":"CN=GlobalSign R6 RSA EV SSL CA 2019,O=GlobalSign nv-sa,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIFI2IFJTQSBFViBTU0
wgQ0EgMjAxOQ==","whitelist":false,"attachment":{"hash":"3b45d522dacf5c2af31738aa7c87c46d04931ff0b15b7fac7f3a0f171300c60f","size":1963,"filename":"QOolPR845HC8Ff4855uLdJUjLioapW8oSD6M_yIMFwA=.pem","location":"security-state-staging/intermediates/8742ca82-49c0-4222-b980-771286d11f78.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QOolPR845HC8Ff4855uLdJUjLioapW8oSD6M/yIMFwA=","crlite_enrolled":true,"id":"ce348e68-e297-4df6-86a7-02c8ed110b86","last_modified":1576536531157},{"schema":1576536106491,"derHash":"fb38a9RGPU4iR5vaTkqXP1islIRdsL+GwPaes9cZaRo=","subject":"CN=Entrust Certificate Authority - VMC1,OU=See www.entrust.net/legal-terms+OU=(c) 2018 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG5MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTggRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS0wKwYDVQQDEyRFbnRydXN0IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIFZNQzE=","wh
itelist":false,"attachment":{"hash":"bb02397873f2c4d4ce4d00db9eb18931f8ed1d39d0b0013faf79e12d252bbf17","size":1845,"filename":"ccMHyN2s134FoF3tjZvYF97dSeZrfgLvt_bx5e-ZL6c=.pem","location":"security-state-staging/intermediates/3e0427b3-ebac-48e1-b923-b2775b46dba3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ccMHyN2s134FoF3tjZvYF97dSeZrfgLvt/bx5e+ZL6c=","crlite_enrolled":true,"id":"3817f2f2-2578-409e-ad5f-fe770e6cea9e","last_modified":1576536531128},{"schema":1576536084822,"derHash":"OrzpUwGd8lge2sq1i+jhQ/5pCn+Twow3PCB2J/gYJk4=","subject":"CN=University of Piraeus CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHkxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEkMCIGA1UEAxMbVW5pdmVyc2l0eSBvZiBQaXJhZXVzIENBIFIx","whitelist":false,"attachment":{"hash":"ba3408ac68d16d056b4d13b99108fdd4576e2f22a9d9433b1760f7042dff9c1e","size":2690,"filename":"2SDXGPdNzKQhI4oHjk5oMhN0ay9cD5oHXh
HLGzJftiI=.pem","location":"security-state-staging/intermediates/2d1416fb-780b-4826-b492-392b31a4d840.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2SDXGPdNzKQhI4oHjk5oMhN0ay9cD5oHXhHLGzJftiI=","crlite_enrolled":true,"id":"512ea919-32ec-46b7-bb60-30d517367583","last_modified":1576536531112},{"schema":1576536070287,"derHash":"BbMLP8RPhXUzS9gS75+opSp1dD4ZvDWlvjkS7KYsRmk=","subject":"CN=emSign Class 2 CA - C1,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEfMB0GA1UEAxMWZW1TaWduIENsYXNzIDIgQ0EgLSBDMQ==","whitelist":false,"attachment":{"hash":"9e607bd9110b39c805c7004ad3bfc08fe04b920a7b93635f51bf863efcf5e402","size":1540,"filename":"wS3fnwn6I-0aX-URrvRiO7hPWPjTnhX4ui6vAkztOls=.pem","location":"security-state-staging/intermediates/090d486e-d557-4442-bccd-17e9440798f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wS3fnwn6I+0aX+URrvRiO7hPWPjTnhX4ui6vAkztOls=","crlite_enrolled":false,"id":"2938bf
ef-51d8-4a22-8411-49848fd8bfc8","last_modified":1576536531087},{"schema":1576536072203,"derHash":"yvOiKdRUWX8mKTnwfhBWg6cf3PkWRvxgoyr2s1T+Uq4=","subject":"CN=GIAG4 ECC,O=Google Trust Services LLC,C=US","subjectDN":"MEUxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRIwEAYDVQQDEwlHSUFHNCBFQ0M=","whitelist":false,"attachment":{"hash":"d250d9ee687cf9e4246b82644cb5630d09a6b047ffbc09e2710c262db5258086","size":1033,"filename":"BZc_5XFEr4iNHxqv9J30g896n5jT5IJLYZJnXyqUkIU=.pem","location":"security-state-staging/intermediates/0586b336-44bf-4b57-81a3-a597aa6ac696.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BZc/5XFEr4iNHxqv9J30g896n5jT5IJLYZJnXyqUkIU=","crlite_enrolled":true,"id":"6b4f13f9-70f4-409d-8480-f02c4bff0feb","last_modified":1576536531082},{"schema":1576536117185,"derHash":"JKyImXRpR4nb1OEl/uGku6kVMgVnlcBSRLtmQAqdAxY=","subject":"CN=Intel External Issuing CA 6A,O=Intel Corporation,L=Santa Clara,ST=CA,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJ
DQTEUMBIGA1UEBxMLU2FudGEgQ2xhcmExGjAYBgNVBAoTEUludGVsIENvcnBvcmF0aW9uMSUwIwYDVQQDExxJbnRlbCBFeHRlcm5hbCBJc3N1aW5nIENBIDZB","whitelist":false,"attachment":{"hash":"689c11e7ec910735efff604833048c221777eab4f3a869452217208a6496c697","size":5302,"filename":"62Bjz2wUDypDAJAdgOWO6g4Q-xvhF2S5V9Ub4WaF38c=.pem","location":"security-state-staging/intermediates/0eb0ede0-3b40-4914-b328-d867d46793d0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"62Bjz2wUDypDAJAdgOWO6g4Q+xvhF2S5V9Ub4WaF38c=","crlite_enrolled":false,"id":"996fe70e-67a0-4e5f-bbb2-c6aa08b730f6","last_modified":1576536531076},{"schema":1576536109863,"derHash":"K2XkXqGBwcwhscyen7HhD1QSlDK7eJc/YIxmpBUfvw4=","subject":"CN=SwissSign Personal Gold CA 2008 - G2,O=SwissSign AG,C=CH","subjectDN":"MFMxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxLTArBgNVBAMTJFN3aXNzU2lnbiBQZXJzb25hbCBHb2xkIENBIDIwMDggLSBHMg==","whitelist":false,"attachment":{"hash":"598861c42588dab6e66731a8211dd284f0fd76066d4512d38abb614bf0c0fec1","size":2272,"file
name":"H8wvfs1_9UKqnEqfWrRdcjdulVUeWxShhG-KY5EtdAA=.pem","location":"security-state-staging/intermediates/c3f9f87d-4c3d-46e8-a9e5-97afdf8a5d56.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H8wvfs1/9UKqnEqfWrRdcjdulVUeWxShhG+KY5EtdAA=","crlite_enrolled":false,"id":"eebb6ed7-cb4d-4157-8fc3-1589b7cf744e","last_modified":1576536531073},{"schema":1576536134507,"derHash":"BMQG8UgFI5rZqnMOQEMJhCUGJjcjBPeIg8iy7sTh8Ow=","subject":"CN=CertAssure RSA EV Secure Server Certification Authority,OU=Controlled by COMODO exclusively for CertAssure Inc.,O=CertAssure Inc.,L=San Jose,ST=CA,C=US","subjectDN":"MIHIMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExETAPBgNVBAcTCFNhbiBKb3NlMRgwFgYDVQQKEw9DZXJ0QXNzdXJlIEluYy4xPTA7BgNVBAsTNENvbnRyb2xsZWQgYnkgQ09NT0RPIGV4Y2x1c2l2ZWx5IGZvciBDZXJ0QXNzdXJlIEluYy4xQDA+BgNVBAMTN0NlcnRBc3N1cmUgUlNBIEVWIFNlY3VyZSBTZXJ2ZXIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"39f2469fbb8df9e31c6e1ac1d1f7adde9b94b1d93547c15a7bca015ee52b5be9","size":2284,
"filename":"V-duof7YTC0BUw__nveYUxHnrma4qFXZJSOkbo7nmLA=.pem","location":"security-state-staging/intermediates/a6f51c91-d5c9-404f-a32f-c53011a17dcf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V+duof7YTC0BUw//nveYUxHnrma4qFXZJSOkbo7nmLA=","crlite_enrolled":false,"id":"a2fccee2-f622-4d53-8bcc-821725ef9be7","last_modified":1576536531041},{"schema":1576536138351,"derHash":"z/m1TQAiAQAbZbHrdHSkXNGWV0DLrWqpMTxgovUo4Pc=","subject":"CN=InterCloud Code Signing Certificate CA RSA R3,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MIGKMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzE2MDQGA1UEAwwtSW50ZXJDbG91ZCBDb2RlIFNpZ25pbmcgQ2VydGlmaWNhdGUgQ0EgUlNBIFIz","whitelist":false,"attachment":{"hash":"9e1ed4fa952f2f9b9a4fe771769f7256c676f3e12d757b982fdd175a6ede8bf3","size":2450,"filename":"yAZPLkv0qbo69hAf_tCw5gCcLyL1r_oksv9mX_yQPm4=.pem","location":"security-state-staging/intermediates/0f6e2365-6b15-47d3-
96f2-37104310baf8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yAZPLkv0qbo69hAf/tCw5gCcLyL1r/oksv9mX/yQPm4=","crlite_enrolled":false,"id":"d9ef7752-6373-47eb-8368-7254d44bc48d","last_modified":1576536531038},{"schema":1576536088599,"derHash":"k7KBvYHYPPmGZZ3/0K9XmTuS5uRhQWJTn3UFJM4Ru8s=","subject":"CN=Abitab SSL Extended Validation,OU=IDdigital,O=Abitab S.A.,C=UY","subjectDN":"MGAxCzAJBgNVBAYTAlVZMRQwEgYDVQQKDAtBYml0YWIgUy5BLjESMBAGA1UECwwJSURkaWdpdGFsMScwJQYDVQQDDB5BYml0YWIgU1NMIEV4dGVuZGVkIFZhbGlkYXRpb24=","whitelist":false,"attachment":{"hash":"a994aaf2225099f989467d317d95162a61ab0f2a8b48927a953540b65a87fe3e","size":1703,"filename":"y2KaAsU1VfJfWRQYPeq3HVxO1GVrwSw4xGq7rSJtyII=.pem","location":"security-state-staging/intermediates/972694b4-ca85-44f1-91f0-7e0a868a3149.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"y2KaAsU1VfJfWRQYPeq3HVxO1GVrwSw4xGq7rSJtyII=","crlite_enrolled":false,"id":"04ee2b55-620a-4d2e-a4c7-00b5c73ec962","last_modified":1576536531027},{"sch
ema":1576536117970,"derHash":"IqBmaJrJHHl9lwFGsLwTjhcDudqrpIFl/SVheSy3ApI=","subject":"CN=Ensured Root CA,O=Ensured B.V.,L=Heerhugowaard,ST=Noord-Holland,C=NL","subjectDN":"MG4xCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRYwFAYDVQQHEw1IZWVyaHVnb3dhYXJkMRUwEwYDVQQKEwxFbnN1cmVkIEIuVi4xGDAWBgNVBAMTD0Vuc3VyZWQgUm9vdCBDQQ==","whitelist":false,"attachment":{"hash":"58c6b3f9590beaac8c847b51838c79979c51e03d2e6837c39bec42dd614f1bbb","size":2499,"filename":"oFFz-dNXVxF2ZtWXUXfFMl3bcWWlI43L4JLhIemPN3w=.pem","location":"security-state-staging/intermediates/35e9d30a-5e67-4eb9-9300-626da1a8a5ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oFFz+dNXVxF2ZtWXUXfFMl3bcWWlI43L4JLhIemPN3w=","crlite_enrolled":false,"id":"b9b47555-b6c5-4ee0-a493-eddd58344aa5","last_modified":1576536531021},{"schema":1576536120269,"derHash":"cKsPoVhs3K9hbpRorYiZV9uIsvpRMmDVv7TXGGJLyas=","subject":"CN=InterCloud Client Certificate CA ECC R3,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":
"MIGEMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEwMC4GA1UEAwwnSW50ZXJDbG91ZCBDbGllbnQgQ2VydGlmaWNhdGUgQ0EgRUNDIFIz","whitelist":false,"attachment":{"hash":"15381690ccb8715220ee0f2d1bd5f129abc513efd4d1b81be9011a5cc970a66c","size":1313,"filename":"FAxGAbOZXGp0v7CYE5tx-qSnEMhHxrej_VYYc0sM8lM=.pem","location":"security-state-staging/intermediates/e5d3b545-57b5-48bb-b906-dee6c7d31674.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FAxGAbOZXGp0v7CYE5tx+qSnEMhHxrej/VYYc0sM8lM=","crlite_enrolled":false,"id":"7963f1dc-116f-42ab-9528-718e02a7037c","last_modified":1576536530984},{"schema":1576536095441,"derHash":"+tLphknxxgYVD1UmnrwDWuoi/6wTHeZLppAMddhEe34=","subject":"CN=emSign ECC Class 1 CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEjMCEGA1UEAxMaZW1TaWduIEVDQyBDbGFzcyAxIENBIC0gQzM=","whitelist":false,"attachment":{"hash":"c516b0ad
97b1477bff6c92128e355bb9684dfe454d1ed7edc1e2a015ab934271","size":1098,"filename":"EqlTjvAcH3DgHiMTTQZXlA45Cyry_ZcvmeEoRmnEl5k=.pem","location":"security-state-staging/intermediates/e0fbcccb-8a1c-4bef-bbd6-b6e85d8aa2bd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EqlTjvAcH3DgHiMTTQZXlA45Cyry/ZcvmeEoRmnEl5k=","crlite_enrolled":false,"id":"aa27b627-8f3f-4f46-a72d-a321873e033e","last_modified":1576536530924},{"schema":1576536123465,"derHash":"n4sFE38grN6bmWQQ9NC/eXGhAG3JnglMNG0nm5PP964=","subject":"CN=Certum Trusted Network CA 2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGAMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBIDI=","whitelist":false,"attachment":{"hash":"2ed8b49464676c3582a67b99f3e5cd0dd098cf86ea3a380a08fdb723ecff73a6","size":2081,"filename":"aztX6eyI0bs9AWN_8zx2mLPJdYJV6fAeqRePPn87K1I=.pem","location":"secu
rity-state-staging/intermediates/33541c6c-eb11-48ef-a315-ad9ba3237f2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aztX6eyI0bs9AWN/8zx2mLPJdYJV6fAeqRePPn87K1I=","crlite_enrolled":false,"id":"a3bedf42-c492-4e6c-a5b0-121be9c27b82","last_modified":1576536530917},{"schema":1576536115651,"derHash":"PIsNXCrfL3CQqbj/RSpBQYM96qBbX0TpUT25S/3x1r0=","subject":"CN=DigiCert Assured ID Code Signing CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLjAsBgNVBAMTJURpZ2lDZXJ0IEFzc3VyZWQgSUQgQ29kZSBTaWduaW5nIENBLTE=","whitelist":false,"attachment":{"hash":"e7bb74d116899e94bb94f4648506beb395c201e451b7a717b2597204d707f0da","size":2361,"filename":"RElq7qZGBSzuZ3oQFuu4t-dh5QqmqZDyU-EAqeRVfJ4=.pem","location":"security-state-staging/intermediates/00f269ef-41b3-49c1-a17f-997a67e72cc2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RElq7qZGBSzuZ3oQFuu4t+dh5QqmqZDyU+EAqeRVfJ4=","crlite_enrolled"
:false,"id":"5ad4c097-50a4-4cb9-96b5-464ffb534360","last_modified":1576536530901},{"schema":1576536132210,"derHash":"6j0fxryF0/KKJ5/s0nFu37JIAboKkXMdndT2HAAF3OA=","subject":"CN=InterCloud Client Certificate CA RSA,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MIGBMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEtMCsGA1UEAwwkSW50ZXJDbG91ZCBDbGllbnQgQ2VydGlmaWNhdGUgQ0EgUlNB","whitelist":false,"attachment":{"hash":"492e0463351fa0afda4ce4b8d543ce8bd04f92b6af7eb48b1ae6e6acc0a873d7","size":2458,"filename":"bTbQPhmklBVN2-MAzB_0isQMRAbBSvu6grjyvXYmNoA=.pem","location":"security-state-staging/intermediates/e0bfc4c4-4509-4b19-b44a-520e027bb6bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bTbQPhmklBVN2+MAzB/0isQMRAbBSvu6grjyvXYmNoA=","crlite_enrolled":false,"id":"7591fdc5-75b0-4980-b1f3-1a16f824a8d2","last_modified":1576536530898},{"schema":1576536071043,"derHash":"qvJSMNAwHa37HdV2g/rSUxk15z06evkfiM
IJLfZPHlU=","subject":"CN=Sectigo RSA Client Authentication and Secure Email CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGWMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxPjA8BgNVBAMTNVNlY3RpZ28gUlNBIENsaWVudCBBdXRoZW50aWNhdGlvbiBhbmQgU2VjdXJlIEVtYWlsIENB","whitelist":false,"attachment":{"hash":"972372f27d0e8a57aebece9d4ffd182cfe091eb2da10dc63ef24fb3e99505316","size":2162,"filename":"P4e3-L27Gol5FEOf4FvS1VtqCeuUHIS2ggBLqq2iVno=.pem","location":"security-state-staging/intermediates/51e4090e-a587-4bb4-95dd-3a21896e60ca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"P4e3+L27Gol5FEOf4FvS1VtqCeuUHIS2ggBLqq2iVno=","crlite_enrolled":true,"id":"79b1007e-6c07-4d7e-917c-835771f2207e","last_modified":1576536530893},{"schema":1576536101197,"derHash":"n0PVLoCMIK/2ngL6rCBarGhOaXUhPWYg+sZL3l/KtLw=","subject":"CN=Starfield Root Certificate Authority - G2,O=Starfield Technologies\\, Inc.,L=Scot
tsdale,ST=Arizona,C=US","subjectDN":"MIGPMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UEAxMpU3RhcmZpZWxkIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"789b9056f79d6141a6214c6b990151b3e4959ece572fb2004fd731b195d33a79","size":1662,"filename":"gI1os_q0iEpflxrOfRBVDXqVoWN3Tz7Dav_7IT--THQ=.pem","location":"security-state-staging/intermediates/f18299c6-f4da-4af4-9ec8-a8d711749b1c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gI1os/q0iEpflxrOfRBVDXqVoWN3Tz7Dav/7IT++THQ=","crlite_enrolled":false,"id":"bd0ecefd-cffd-4cd5-8a92-4ea3a0be8a89","last_modified":1576536530882},{"schema":1576536093158,"derHash":"PEa4r0DrgqOjMNjFvQfhy2FrRrHXAReeAls+aGbjyJ4=","subject":"CN=SECOM Passport for Web MH CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MFsxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSUwIwYDVQQDExxTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIE1
IIENB","whitelist":false,"attachment":{"hash":"1e77e83301dcd18767f1427a54e0da0cf6cfcca8d5a86931141a03a6aeeded7a","size":1630,"filename":"-WHNrFdX4L0XyuQsW7J364wRog3UU202mTVvLAgf0-Q=.pem","location":"security-state-staging/intermediates/df21fb52-0b48-4442-a551-4721b94d9185.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+WHNrFdX4L0XyuQsW7J364wRog3UU202mTVvLAgf0+Q=","crlite_enrolled":false,"id":"af3b1462-5642-48da-b488-f8d9f455609b","last_modified":1576536530854},{"schema":1576536126483,"derHash":"C62pebcUAv6GBpYDLPQOnSo/Qcy10DvjP7uUqA1//Hw=","subject":"CN=emSign ECC EV CS CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGwxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMSEwHwYDVQQDExhlbVNpZ24gRUNDIEVWIENTIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"ced67ca3e556805fc8dff2f88fe0a7eb2085c52e69c4487451bc0751f3fdd556","size":1171,"filename":"EJmcyHOC7lF3LeT2tA6NEeiAraOIeA9S1UYpt02xkfM=.pem","location
":"security-state-staging/intermediates/cbb4de63-2aae-4252-8c82-60ec375b9f75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EJmcyHOC7lF3LeT2tA6NEeiAraOIeA9S1UYpt02xkfM=","crlite_enrolled":false,"id":"ac6b7097-8d8e-48f7-95dd-c5b3f779e44b","last_modified":1576536530846},{"schema":1576536102706,"derHash":"+BMqOx0ZAlxebrPBt2tTRljBGlvmkETp1ER7V5Rju0U=","subject":"CN=SecureCore RSA EV CA,OU=Controlled by COMODO exclusively for SecureCore,O=SecureCore,L=OSAKA,ST=OSAKA,C=JP","subjectDN":"MIGbMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFT1NBS0ExDjAMBgNVBAcTBU9TQUtBMRMwEQYDVQQKEwpTZWN1cmVDb3JlMTgwNgYDVQQLEy9Db250cm9sbGVkIGJ5IENPTU9ETyBleGNsdXNpdmVseSBmb3IgU2VjdXJlQ29yZTEdMBsGA1UEAxMUU2VjdXJlQ29yZSBSU0EgRVYgQ0E=","whitelist":false,"attachment":{"hash":"5c3979464fc2a18f34c71294f923f114dd13022b37f77d094c13eeaebc622af7","size":2227,"filename":"4oLlji5ovjgkWA95bS8h_Ik9hO3Fy_mgx1aM3Jv7Bn0=.pem","location":"security-state-staging/intermediates/3b845211-4906-4376-af9c-f6badae8bcae.pem","mimetype":"applic
ation/x-pem-file"},"pubKeyHash":"4oLlji5ovjgkWA95bS8h/Ik9hO3Fy/mgx1aM3Jv7Bn0=","crlite_enrolled":false,"id":"ee5c06bc-0408-4c89-9c71-e4c6f1e26161","last_modified":1576536530832},{"schema":1576536077934,"derHash":"FFEKshf93SD6POLxcVg6RMXFP2ytCIa60Kkc+2ZmMtg=","subject":"CN=Fuji Xerox Xnet CA - S,O=Fuji Xerox,C=JP","subjectDN":"MEMxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MR8wHQYDVQQDExZGdWppIFhlcm94IFhuZXQgQ0EgLSBT","whitelist":false,"attachment":{"hash":"57dab81e035f1e449c6b003fbfe4285e15046b4a31eb117a8b448089a24297e2","size":1597,"filename":"gAO3JhjiAz1Zf0po-cZL3EE5-B8ldkQ96CMkLA6pwic=.pem","location":"security-state-staging/intermediates/e24ff5fa-e62b-4eda-8e09-f1f1ba2a144f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gAO3JhjiAz1Zf0po+cZL3EE5+B8ldkQ96CMkLA6pwic=","crlite_enrolled":false,"id":"6f18cf19-a326-40aa-92df-d8dd2db7b375","last_modified":1576536530823},{"schema":1576536102337,"derHash":"gAQlY9tfFi5FVjK1icYBUPN+9/7bd0xtwu1bpvuGUSA=","subject":"CN=Fuji Xerox Pr
oduct CA - S,O=Fuji Xerox,C=JP","subjectDN":"MEYxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MSIwIAYDVQQDExlGdWppIFhlcm94IFByb2R1Y3QgQ0EgLSBT","whitelist":false,"attachment":{"hash":"2bd8c47808af695a6613fd3fda43e5e89156aa141086ccc13c4c478f1db0e222","size":1601,"filename":"cC-MmfQjJ6-hHwnk1ddR_Ki1Ompz1JMISw5dkaAcWHU=.pem","location":"security-state-staging/intermediates/6d9a5767-2099-402d-afb9-4293160f950e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cC+MmfQjJ6+hHwnk1ddR/Ki1Ompz1JMISw5dkaAcWHU=","crlite_enrolled":false,"id":"be853ae0-909e-4510-9fd8-ad6fb1bf7e15","last_modified":1576536530792},{"schema":1576536082122,"derHash":"V8B4jlHXvRRHDPnk830z+8EEx3UB69lXFm0U9ExRbDA=","subject":"CN=eMudhra RSA Organization Validation Secure Server CA,O=eMudhra Technologies Limited,L=Bengaluru,ST=Karnataka,C=IN","subjectDN":"MIGbMQswCQYDVQQGEwJJTjESMBAGA1UECBMJS2FybmF0YWthMRIwEAYDVQQHEwlCZW5nYWx1cnUxJTAjBgNVBAoTHGVNdWRocmEgVGVjaG5vbG9naWVzIExpbWl0ZWQxPTA7BgNVBAMTNGVNdWRocmEgUlNBIE9yZ2Fu
aXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"1dc5009b8a187d80f4c2d4b64c686bc21f7c5271889d102e7e57b598f0844b51","size":2190,"filename":"D9NZ6oWac3feaXj7Ii5NCfiL5RG3s0UIV08ecGxPgtc=.pem","location":"security-state-staging/intermediates/86678ec4-fa06-4337-ae60-af7ccb4a876d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D9NZ6oWac3feaXj7Ii5NCfiL5RG3s0UIV08ecGxPgtc=","crlite_enrolled":true,"id":"141d5b09-0e83-42ba-ae07-12fff6f057fe","last_modified":1576536530789},{"schema":1576536090496,"derHash":"tm0ozXDm0bMhaI4cR+Y8Q8dqxQMSkJ1OMNePCLLtYFo=","subject":"CN=Gehirn Managed Certification Authority - RSA OV,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIGCMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMTgwNgYDVQQDEy9HZWhpcm4gTWFuYWdlZCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIFJTQSBPVg==","whitelist":false,"attachment":{"hash":"cc9bd6f9b4c416502e6664e834588afc8e552cabdfcd1da1a05bb57e4a8d2
08b","size":2158,"filename":"sshJv9IEWk4-_PzdkseeN0rxfdOaGYVax8sZbKeQegY=.pem","location":"security-state-staging/intermediates/1164b7bb-5691-4323-ad2c-7fdcd5cc1406.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sshJv9IEWk4+/PzdkseeN0rxfdOaGYVax8sZbKeQegY=","crlite_enrolled":false,"id":"070c5338-70b0-43f6-af7a-47b4b217d8b6","last_modified":1576536530783},{"schema":1576536082901,"derHash":"cGag9C9TDg21r+5yo7BN5hTn0jBcZ9EsdWuyFeN8uXU=","subject":"CN=emSign ECC Class 3 CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MG4xCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMSMwIQYDVQQDExplbVNpZ24gRUNDIENsYXNzIDMgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"a70534399006c5c9656d36fab666a70380eef9fb1048307630726609ee92f9e0","size":1146,"filename":"jCaXOAfJZSEcZ2svKHJ5NTIJpwnQiYsnkj_rOSON6UU=.pem","location":"security-state-staging/intermediates/87469897-2f9a-45ba-aabb-01e0de7e07a6.pem","mimetype":"applicat
ion/x-pem-file"},"pubKeyHash":"jCaXOAfJZSEcZ2svKHJ5NTIJpwnQiYsnkj/rOSON6UU=","crlite_enrolled":false,"id":"a029188c-564e-4bac-988a-0d1d88ede978","last_modified":1576536530747},{"schema":1576536091651,"derHash":"t8br3CobZe8YNtwAJQxE4VcDEhBSwatrnQOFoFgVOuM=","subject":"CN=TERENA Code Signing CA 3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MG0xCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEhMB8GA1UEAxMYVEVSRU5BIENvZGUgU2lnbmluZyBDQSAz","whitelist":false,"attachment":{"hash":"9595df35a7756d2f24d866de1c547105fb2d1a23c92599127ec1619cec0e5882","size":1829,"filename":"USGSmlpkcecWrLB5M3IEvxRSpeUQQE1OwxGf996ZYQc=.pem","location":"security-state-staging/intermediates/7b8f4903-0cfd-41f6-bf07-2c11090076ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"USGSmlpkcecWrLB5M3IEvxRSpeUQQE1OwxGf996ZYQc=","crlite_enrolled":false,"id":"93337ced-e601-42f7-8544-8ca9911b970e","last_modified":1576536530728},{"schema":1576536137180,"de
rHash":"18DvgKPaxNpcfpU8YlVVlmlZ3KkxIvInKIUL6q8XQa8=","subject":"CN=InterCloud Ventures CA for ClientCert RSA,O=InterCloud Ventures Inc,C=SC","subjectDN":"MGMxCzAJBgNVBAYTAlNDMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEyMDAGA1UEAwwpSW50ZXJDbG91ZCBWZW50dXJlcyBDQSBmb3IgQ2xpZW50Q2VydCBSU0E=","whitelist":false,"attachment":{"hash":"1a61b2027ba9e04f54ba2c1975baba6a7302e88dad005b69309298f28dcbb069","size":2418,"filename":"DVzxlQQTcDaxRb7Thp47SkJtXlhSGa2iHgnSPgAIcKY=.pem","location":"security-state-staging/intermediates/8798e2e6-3fd7-4fe3-9d33-05761fe4f040.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DVzxlQQTcDaxRb7Thp47SkJtXlhSGa2iHgnSPgAIcKY=","crlite_enrolled":false,"id":"b868818e-a798-4e90-a5b7-9df711eb98fb","last_modified":1576536530720},{"schema":1576536129132,"derHash":"AH0sixV4YjK6wOqjH2Cq4G3FcpIbrQ1Gx3EH2MLcpLM=","subject":"CN=DigiCert High Assurance Code Signing CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydC
BJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMjAwBgNVBAMTKURpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIENvZGUgU2lnbmluZyBDQS0x","whitelist":false,"attachment":{"hash":"82dca5587e213be35931a42824ef1b9490aed5a1516174a65dd432e88de10d4b","size":2402,"filename":"Ri51OBAOoLg9jnSXfa68LI5ByJkcEGrPLItVgWCXEi0=.pem","location":"security-state-staging/intermediates/547f9b3e-e076-4477-b8bb-03322f731f5f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ri51OBAOoLg9jnSXfa68LI5ByJkcEGrPLItVgWCXEi0=","crlite_enrolled":false,"id":"9653732b-f401-488c-af29-94e5348433f1","last_modified":1576536530696},{"schema":1576536073348,"derHash":"IBwGF8wzEMfyn8vka1dFm8Z4aouidTAY6yfB6AAWii4=","subject":"SERIALNUMBER=A82743287,CN=GLOBAL CORPORATE SERVER,O=AC Camerfirma S.A.,L=Madrid (see current address at www.camerfirma.com/address),C=ES","subjectDN":"MIGlMQswCQYDVQQGEwJFUzFDMEEGA1UEBww6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTEbMBkGA1UECgwSQUMgQ2FtZXJmaXJtYSBTLkEuMRIwEAYDVQQFEwlBODI3NDM
yODcxIDAeBgNVBAMMF0dMT0JBTCBDT1JQT1JBVEUgU0VSVkVS","whitelist":false,"attachment":{"hash":"793fb09204775121a36d94490bb1db8fac7223f956e39839e78312ddbc396881","size":2918,"filename":"cm983EKKIFObkQXG4Px6wK6fhcnGoOnGmpdiszhdgnc=.pem","location":"security-state-staging/intermediates/92d9580d-4cd2-40d0-b184-d1288a6e9346.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cm983EKKIFObkQXG4Px6wK6fhcnGoOnGmpdiszhdgnc=","crlite_enrolled":false,"id":"ca7f15aa-576e-4c11-b2ff-ab17d8fc59e4","last_modified":1576536530670},{"schema":1576536116411,"derHash":"Y6g2ncgkpCvHrm7l0mqv0y30r2d8oYuUG3pX4zseNVk=","subject":"CN=emSign Class 2 CA - G1,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGoxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMR8wHQYDVQQDExZlbVNpZ24gQ2xhc3MgMiBDQSAtIEcx","whitelist":false,"attachment":{"hash":"eed8ae8522e552261846735911703422edcda86f9319535078afc6d728d2a768","size":1585,"filename":"3bEiK1EHsF_yyH5kHV9sn
YO-hS_ijijvRBCS1wrrAuc=.pem","location":"security-state-staging/intermediates/d8c04dd9-2d2c-4510-a92e-286b8f977661.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3bEiK1EHsF/yyH5kHV9snYO+hS/ijijvRBCS1wrrAuc=","crlite_enrolled":false,"id":"26f75550-6f7c-4915-a0c5-6ce0fc78a16b","last_modified":1576536530666},{"schema":1576536103822,"derHash":"oEpRS7gRTAPLa9uYFyNgzwvmgun6EdXYBnMJztEVGHI=","subject":"CN=InterCloud Client Certificate CA RSA R3,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MIGEMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEwMC4GA1UEAwwnSW50ZXJDbG91ZCBDbGllbnQgQ2VydGlmaWNhdGUgQ0EgUlNBIFIz","whitelist":false,"attachment":{"hash":"d2ef1ad672c2124bb41aa28b4a68e4170c1d21b11ba0de3bce99cfad4c2d6ea4","size":2475,"filename":"RU7z7Sf2d5WOjWnAl8q-nWTzHsG_NR5njeswcm4xFwU=.pem","location":"security-state-staging/intermediates/49e4a997-d0fd-423c-bc13-8792ddab3f48.pem","mimetype":"application/
x-pem-file"},"pubKeyHash":"RU7z7Sf2d5WOjWnAl8q+nWTzHsG/NR5njeswcm4xFwU=","crlite_enrolled":false,"id":"8404d0aa-3718-4f57-ba78-f9cc2e58060e","last_modified":1576536530599},{"schema":1576536112949,"derHash":"EdXvRg2rNYK3QhIxJxJ9VAQPscIG4m8CXLWEWPIlERo=","subject":"CN=HARICA SSL ECC SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGGMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEgMB4GA1UEAwwXSEFSSUNBIFNTTCBFQ0MgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"90ccc75b0a6ae9b340199fa07f14417de52268b581d41473e2ece14b411f9423","size":1370,"filename":"nYO5UGTgmkq1Vf1wcAVPqg8McgUqLIhjZ8R8zTDqvQI=.pem","location":"security-state-staging/intermediates/937e41c4-b81a-4546-a469-03b67c321ff2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nYO5UGTgmkq1Vf1wcAVPqg8McgUqLIhjZ8R8zTDqvQI=","crlite_enrolled":true,"id":"03d21865-516a-4a83-bbed-64f440fbc
75e","last_modified":1576536530589},{"schema":1576536134890,"derHash":"2OGKZa94RUhUyqKPsvXnm1fsFB8BBCO8yKcav8BJbCw=","subject":"CN=GENIOUS RSA Extended Validation Secure Server CA,OU=Controlled by Sectigo exclusively for Genious Communications,O=Genious Communications,L=Marrakech,ST=Marrakech,C=MA","subjectDN":"MIHYMQswCQYDVQQGEwJNQTESMBAGA1UECBMJTWFycmFrZWNoMRIwEAYDVQQHEwlNYXJyYWtlY2gxHzAdBgNVBAoTFkdlbmlvdXMgQ29tbXVuaWNhdGlvbnMxRTBDBgNVBAsTPENvbnRyb2xsZWQgYnkgU2VjdGlnbyBleGNsdXNpdmVseSBmb3IgR2VuaW91cyBDb21tdW5pY2F0aW9uczE5MDcGA1UEAxMwR0VOSU9VUyBSU0EgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"dc505a925299ceeea43e708019d0fb1086a320d0a035fb0cf585b7e376d7e4f6","size":2304,"filename":"ImErDX6kNNxXp53lr4QRD49owJiK0A8orzjdda8pDb0=.pem","location":"security-state-staging/intermediates/ae100f8d-c411-4912-908b-ef0fe59832c9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ImErDX6kNNxXp53lr4QRD49owJiK0A8orzjdda8pDb0=","crlite_enrolled":fals
e,"id":"51c58311-bdec-4aab-a6cb-4a4f8e10e262","last_modified":1576536530584},{"schema":1576536110295,"derHash":"kK8R5XfHLJQLQOwvPVBQcxAJHuYZbJwWsiiIImSk2Ag=","subject":"CN=GeoTrust SSL CA - G2,O=GeoTrust Inc.,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQDExRHZW9UcnVzdCBTU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"49be8c4efb07895b3f53c063b0bdc42ec090d8ac6a5a50f4736bdd2382107b65","size":1569,"filename":"reIKrQPC-mmj-0OSUhJW0gQmUxXSm2O3N3bhso_ENzs=.pem","location":"security-state-staging/intermediates/739c1736-bb09-4fcb-a77b-16a00919c4aa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"reIKrQPC+mmj+0OSUhJW0gQmUxXSm2O3N3bhso/ENzs=","crlite_enrolled":false,"id":"39fd6999-98ad-4452-91c5-c5d5b9161f71","last_modified":1576536530579},{"schema":1576536133765,"derHash":"1I6qVcMuSUMaUxmHdr7HGeXDNZ2Mte5AYBbBhIFdBCk=","subject":"CN=UIS-IntB-CA","subjectDN":"MBYxFDASBgNVBAMTC1VJUy1JbnRCLUNB","whitelist":false,"attachment":{"hash":"de24f135c
7bca2cfda41bd1611ddc001fad23d8819325dec4bf6e386b932447e","size":1711,"filename":"ijOSli4ZzEAaB9BJofum10hbmy0ANTh-Hk3l6PItp34=.pem","location":"security-state-staging/intermediates/12455f4c-5005-4b7d-99a6-4f1d40b5c5b1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ijOSli4ZzEAaB9BJofum10hbmy0ANTh+Hk3l6PItp34=","crlite_enrolled":false,"id":"bfc29d7b-32c1-4544-908c-31f1a7428c70","last_modified":1576536530571},{"schema":1576536082514,"derHash":"UZEcAlmKOaJFWUp4F2j5UDxUaz7tsbcmGv4PpDbjN08=","subject":"CN=InCommon RSA Code Signing CA,OU=InCommon,O=Internet2,L=Ann Arbor,ST=MI,C=US","subjectDN":"MHwxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJNSTESMBAGA1UEBxMJQW5uIEFyYm9yMRIwEAYDVQQKEwlJbnRlcm5ldDIxETAPBgNVBAsTCEluQ29tbW9uMSUwIwYDVQQDExxJbkNvbW1vbiBSU0EgQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"719dda28e517227192940bf007a71318f0a32088f45d10ea1d875d6e8f7672fc","size":2113,"filename":"4tLfAbj1F8M2w2h5CGAbNDdfguBIooQNoy7lajKrCZc=.pem","location":"security-state-staging/intermedi
ates/043a58d3-97e0-428f-8f70-1cbb17254c84.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4tLfAbj1F8M2w2h5CGAbNDdfguBIooQNoy7lajKrCZc=","crlite_enrolled":false,"id":"556b9e93-5a6e-4158-a233-de0b8973e7c4","last_modified":1576536530558},{"schema":1562108705166,"derHash":"SVfe00EFRkETnLqzuWAGVF0JTUSVkPsIrpp40FpAvYM=","subject":"CN=LAWtrust2048 CA2,O=LAWtrust,C=ZA","subjectDN":"MDsxCzAJBgNVBAYTAlpBMREwDwYDVQQKEwhMQVd0cnVzdDEZMBcGA1UEAxMQTEFXdHJ1c3QyMDQ4IENBMg==","whitelist":false,"attachment":{"hash":"81d17bc1193286f68eb9189a96132eec7b01b9df70c5c0c8be545b723a8b9c97","size":1825,"filename":"tF23S1M73lGV_qIXyJDgt7QyCjnORfV2T1KQKOCPDnY=.pem","location":"security-state-staging/intermediates/c78792ca-adea-456a-8b5d-5e8ff14b0cd2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tF23S1M73lGV/qIXyJDgt7QyCjnORfV2T1KQKOCPDnY=","crlite_enrolled":false,"id":"211f757d-d852-4415-81e8-e7707c0574e6","last_modified":1562108762611},{"schema":1562108592560,"derHash":"GR4LSLeLfvpIIqRlrWmzRAW4
eNEL2FPY5Xy4udnlC4s=","subject":"CN=Trust Technologies Global CA,OU=Digital Identity and Security,O=Telecom Italia Trust Technologies S.r.l.,C=IT","subjectDN":"MIGPMQswCQYDVQQGEwJJVDExMC8GA1UEChMoVGVsZWNvbSBJdGFsaWEgVHJ1c3QgVGVjaG5vbG9naWVzIFMuci5sLjEmMCQGA1UECxMdRGlnaXRhbCBJZGVudGl0eSBhbmQgU2VjdXJpdHkxJTAjBgNVBAMTHFRydXN0IFRlY2hub2xvZ2llcyBHbG9iYWwgQ0E=","whitelist":false,"attachment":{"hash":"564c57bdee05db70d390e6bcb2f79dd54852bdaa6b303ee4de5c564d29d262a2","size":1683,"filename":"kCvviSGuWkulE1Rv-GhY_fjUuT622_2qjrGk96XfS6A=.pem","location":"security-state-staging/intermediates/a8b72e50-2b9d-4f2e-be8d-f11ffd8c9f52.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kCvviSGuWkulE1Rv+GhY/fjUuT622/2qjrGk96XfS6A=","crlite_enrolled":true,"id":"5c03ce12-486e-4b06-811e-bb3df097bbb5","last_modified":1562108593320},{"schema":1562108591793,"derHash":"cdLuTdolHZJE9858bUeOxVLUJO9xnwK3EDDyghtryFM=","subject":"CN=emSign ECC Time stamping CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN"
:"MGMxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEpMCcGA1UEAxMgZW1TaWduIEVDQyBUaW1lIHN0YW1waW5nIENBIC0gQzM=","whitelist":false,"attachment":{"hash":"ee2704d9b62a381d492b93995f8499745a688f458d3d292b4698475ed59f68c3","size":1134,"filename":"dcrqDFOyJxfpksjz9CO_ISerP6wmX7VYiV8TT8U2I8I=.pem","location":"security-state-staging/intermediates/3b0e96f2-8f14-48a7-bd67-cf26d4d5fabe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dcrqDFOyJxfpksjz9CO/ISerP6wmX7VYiV8TT8U2I8I=","crlite_enrolled":false,"id":"a64f2de2-3dce-4c3e-be2c-670cf9edd067","last_modified":1562108592552},{"schema":1562108591033,"derHash":"pKfQXyloVnnjwAoyLOa2zVf92l8u9CxsbnNYHIpHEHc=","subject":"CN=Trusted Secure ECC Certificate Authority DV,O=Corporation Service Company,L=Wilmington,ST=DE,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzELMAkGA1UECBMCREUxEzARBgNVBAcTCldpbG1pbmd0b24xJDAiBgNVBAoTG0NvcnBvcmF0aW9uIFNlcnZpY2UgQ29tcGFueTE0MDIGA1UEAxMrVHJ1c3RlZCBTZWN1cmUgRUNDIENlcnRpZmljYXRlIEF1dGhvcml
0eSBEVg==","whitelist":false,"attachment":{"hash":"a2edd0806e645f467b7b84c89a97ef301a4be56527999553d91e8ed132b3063b","size":1333,"filename":"qaGgP6zdlL_vHNs7F1JoC4tyJv8eGtwjguHkPQZ2HYg=.pem","location":"security-state-staging/intermediates/00575f53-f32f-4c7d-8588-1006e713455a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qaGgP6zdlL/vHNs7F1JoC4tyJv8eGtwjguHkPQZ2HYg=","crlite_enrolled":false,"id":"bb1af08a-d563-4c13-b15f-03b3860103a2","last_modified":1562108591785},{"schema":1562108590272,"derHash":"Oyffndk8ESqgiwYqauOXP355pRkdfpuV1wgXgODWrOo=","subject":"CN=certSIGN Enterprise CA Class 3 G2,OU=certSIGN Enterprise CA Class 3 G2,O=certSIGN,C=RO","subjectDN":"MHgxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEqMCgGA1UECxMhY2VydFNJR04gRW50ZXJwcmlzZSBDQSBDbGFzcyAzIEcyMSowKAYDVQQDEyFjZXJ0U0lHTiBFbnRlcnByaXNlIENBIENsYXNzIDMgRzI=","whitelist":false,"attachment":{"hash":"b4245e3bdf682d3b5991b85df5dc0d5234efbfa10c3e6191331eafc4de6d44b3","size":1638,"filename":"NgZU2Z5HKX3Ynzv2v13QXVNlTGQ
rS2rrCCv2W4gJn_o=.pem","location":"security-state-staging/intermediates/50534563-bc40-4117-a35e-c5f2825173e5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NgZU2Z5HKX3Ynzv2v13QXVNlTGQrS2rrCCv2W4gJn/o=","crlite_enrolled":true,"id":"44fdaa59-55ab-4b5a-9584-878de01ee51f","last_modified":1562108591025},{"schema":1562108589509,"derHash":"X2ZcusweNxceqD6oXFcPmGHK93usiIarxLsZs2mMCUo=","subject":"CN=DigiCert Governmental Direct CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKDAmBgNVBAMTH0RpZ2lDZXJ0IEdvdmVybm1lbnRhbCBEaXJlY3QgQ0E=","whitelist":false,"attachment":{"hash":"75cddcda9026b56305335b2fdbe4d7f15d3018e1a8d4ece32129f4dc33a90ca6","size":2109,"filename":"6TqJ4tJCAmwNBt54ibBuljs7KG-F8NTbgZ5U4gcrbnk=.pem","location":"security-state-staging/intermediates/74ab5016-866c-42c7-ba70-6936c7c09121.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6TqJ4tJCAmwNBt54ibBuljs7KG+F8NTbgZ5U4gc
rbnk=","crlite_enrolled":false,"id":"93219782-f847-4e1d-a437-b056f1a40b47","last_modified":1562108590264},{"schema":1562108587986,"derHash":"vsBvVTRMPeTxLNXYCJBs3idSNJUb4BdqeH5ijivn1R8=","subject":"CN=GDCA TrustAUTH R4 Extended Validation CodeSigning CA,O=GUANG DONG CERTIFICATE AUTHORITY CO.\\,LTD.,C=CN","subjectDN":"MIGAMQswCQYDVQQGEwJDTjEyMDAGA1UECgwpR1VBTkcgRE9ORyBDRVJUSUZJQ0FURSBBVVRIT1JJVFkgQ08uLExURC4xPTA7BgNVBAMMNEdEQ0EgVHJ1c3RBVVRIIFI0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZVNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"504b1a2b2ef9230c71054bc7a026d1827d3f8d8b714b5492dc42264973ecb432","size":2105,"filename":"K1O1P19UCSRwBq2Y5xce7r_TavF-pDYjmdSYRVYHFXI=.pem","location":"security-state-staging/intermediates/292a44cc-36e5-4678-b2da-b286cf71965d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"K1O1P19UCSRwBq2Y5xce7r/TavF+pDYjmdSYRVYHFXI=","crlite_enrolled":false,"id":"08dade63-03e8-4738-af5e-1139634ccf0f","last_modified":1562108588742},{"schema":1562108586421,"derHash"
:"XN2AnPRPX4Zl6sFQVVBMWwa3h6wYKUUFvbq0p35Q13Y=","subject":"CN=GlobalSign PersonalSign 2 RSA CA SHA 384 - G4,O=GlobalSign nv-sa,C=BE","subjectDN":"MGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAyIFJTQSBDQSBTSEEgMzg0IC0gRzQ=","whitelist":false,"attachment":{"hash":"5b298699387d70fa85da876e97c713c9b5f9d078e4f99d1aa8d2b372b1b2635c","size":2458,"filename":"qrYYY1IgVc8P6057Z-sQtrV3gsdG77COpxcpk5ExuDQ=.pem","location":"security-state-staging/intermediates/bb0e1ae1-8c37-4a42-9ca5-f39d3c77b419.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qrYYY1IgVc8P6057Z+sQtrV3gsdG77COpxcpk5ExuDQ=","crlite_enrolled":false,"id":"68e18044-c154-4952-88f5-513ffe55be79","last_modified":1562108587216},{"schema":1562108584875,"derHash":"aTBkc0LACuYloDhnMICQOmpUMaGPrmRAOuufSoOCibQ=","subject":"CN=COMODO ECC Client Authentication and Secure Email CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGXMQswCQYDVQQGEwJHQjEbMBkGA1U
ECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE9MDsGA1UEAxM0Q09NT0RPIEVDQyBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIFNlY3VyZSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"e6b81f970e0aebdf005be203087db76baba49f82e43eebe6ce07930d859c3a12","size":1305,"filename":"ztEQWck30AphjrV693Uu-2ykUUMpLPaPTr3q8O6AbrA=.pem","location":"security-state-staging/intermediates/e1042655-8614-4230-91ec-d6a21ec4ad1f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ztEQWck30AphjrV693Uu+2ykUUMpLPaPTr3q8O6AbrA=","crlite_enrolled":false,"id":"e22721ff-a0b1-47e9-b5b6-7c3c74b2432b","last_modified":1562108585623},{"schema":1562108584121,"derHash":"8AMiyXtXzqbWSmodNlxsa38OujCJh2wUMOEGPoqCpnY=","subject":"CN=UbiquiTLS\u2122 DV RSA Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGAMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDEmMCQGA1UEAwwdVWJpcXVpVExT4oSi
IERWIFJTQSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"34402ac995c9387b9c9835b6d19bbf5f738839e57491436e8fb9d880eabb284d","size":2129,"filename":"4FOjiY6IYxhWCosn04P8_UB9mAXrdVXjkoJw0SF4xqM=.pem","location":"security-state-staging/intermediates/8314b196-222a-4ea4-b73e-05d946a6b0f3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4FOjiY6IYxhWCosn04P8/UB9mAXrdVXjkoJw0SF4xqM=","crlite_enrolled":false,"id":"6a542733-c365-45a6-88e1-581fbf55eea9","last_modified":1562108584867},{"schema":1562108583348,"derHash":"jPY11qdHdQzxND6WNqptpBWMfOCbIG0Qgzuv5eTuBLM=","subject":"SERIALNUMBER=201905,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTA1","whitelist":false,"attachment":{"hash":"e20bc7cc8f53ffc223962f9bd966b021032bdfadb38bba1b518d8a4b5473fc84","size":2333,"filename":"STwxc4DljeWjithRB7fUiXJ-Av3LzSL1RArniQiNF8Y=.pem","locatio
n":"security-state-staging/intermediates/702560cb-abeb-40ac-8efe-9be95e6e64dd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"STwxc4DljeWjithRB7fUiXJ+Av3LzSL1RArniQiNF8Y=","crlite_enrolled":false,"id":"8ed0efa3-f0d7-42e8-a20a-cf5d56da716b","last_modified":1562108584113},{"schema":1562108578013,"derHash":"cqNKwrQkrtP2sLBHVbiMwCfczIBv3bIrTNfEd3OXPsA=","subject":"CN=Sectigo RSA Organization Validation Secure Server CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGVMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxPTA7BgNVBAMTNFNlY3RpZ28gUlNBIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"8b4a6a5a2f7b4562478f11cef6a2950d91dc8f9f63844b556396576c712a7556","size":2174,"filename":"RkhWTcfJAQN_YxOR12VkPo-PhmIoSfWd_JVkg44einY=.pem","location":"security-state-staging/intermediates/a5de32a1-0075-4479-b9c7-902f76532ee6.pem","mimetype":"application/
x-pem-file"},"pubKeyHash":"RkhWTcfJAQN/YxOR12VkPo+PhmIoSfWd/JVkg44einY=","crlite_enrolled":true,"id":"3137331f-d637-4d45-a845-5baf38ea0ae4","last_modified":1562108578764},{"schema":1562108576476,"derHash":"z8tgwfAYDGjj6l0ktKBenZkA2Hw9g9UDzhaQs8FlZFg=","subject":"CN=Qualified e-Szigno QCP CA 2012,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHlF1YWxpZmllZCBlLVN6aWdubyBRQ1AgQ0EgMjAxMjEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odQ==","whitelist":false,"attachment":{"hash":"0918a8dff15d27cbb4e8b360eb83374b19fa2947fb8fabb2c8200569d2b9b5ca","size":1780,"filename":"xa1dpEOu-k1shciGkpd-djS0kvHJPOmnvqja-16S2o0=.pem","location":"security-state-staging/intermediates/edcd1fb2-b2cf-4e62-a12a-5ba7788690ad.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xa1dpEOu+k1shciGkpd+djS0kvHJPOmnvqja+16S2o0=","crlite_enrolled":false,"id":"0f39cd6a-43ef-4feb-8856-6d300edaa87c","last_modified":1562108577246},{"sch
ema":1562108574941,"derHash":"ksdI7NEnrmBVsYCEZPO7ETzFGuAHNZGzaB7FJ8YXzIA=","subject":"CN=cPanel\\, Inc. Certification Authority 2,O=cPanel\\, Inc.,L=Houston,ST=TX,C=US","subjectDN":"MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJUWDEQMA4GA1UEBxMHSG91c3RvbjEVMBMGA1UEChMMY1BhbmVsLCBJbmMuMS8wLQYDVQQDEyZjUGFuZWwsIEluYy4gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgMg==","whitelist":false,"attachment":{"hash":"78d6f3be5c00899b98ae15d4fa3abf96f1139ea90f126dddc735831fa0309e49","size":2138,"filename":"HVDLzoiDeh9hx-Qx4o0Fjy44bVZy8Qv7zwbUSS7r4dQ=.pem","location":"security-state-staging/intermediates/8e628e92-767a-4b9c-9320-e85932918fc7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HVDLzoiDeh9hx+Qx4o0Fjy44bVZy8Qv7zwbUSS7r4dQ=","crlite_enrolled":false,"id":"dcd0fd78-79ac-4a9e-9cff-563f4bf1ce79","last_modified":1562108575720},{"schema":1562108568778,"derHash":"vmoNnh0RXyKT9qvxGz7I6ILiRCbu6wmqpQNZeZPneiU=","subject":"CN=TERENA SSL High Assurance CA 3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MH
MxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEnMCUGA1UEAxMeVEVSRU5BIFNTTCBIaWdoIEFzc3VyYW5jZSBDQSAz","whitelist":false,"attachment":{"hash":"effd0b7540a7b55bbbeb9e6a80bcdbd3b388bcd57d806539c76f81519c9d7595","size":1752,"filename":"XaQOs7GKv4Gx4JRA8ZmihabSl9wxIPx-hQBmJ54WmCs=.pem","location":"security-state-staging/intermediates/1bbb351c-9d45-49c1-b318-f589af9d1196.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XaQOs7GKv4Gx4JRA8ZmihabSl9wxIPx+hQBmJ54WmCs=","crlite_enrolled":true,"id":"181cc0ed-5e29-45f4-8d8a-642c6de7cd5e","last_modified":1562108569549},{"schema":1562108567270,"derHash":"HcpluGpXM2ulr7chSjb31u3mmOtPAzh8s61rvTqTurY=","subject":"CN=AlphaSSL CA - G2,O=AlphaSSL","subjectDN":"MC4xETAPBgNVBAoTCEFscGhhU1NMMRkwFwYDVQQDExBBbHBoYVNTTCBDQSAtIEcy","whitelist":false,"attachment":{"hash":"3a19247e72c0620bdf6ef309d6d8385eabd2ef9e5c5b61ab6fd98d4878db9492","size":1512,"filename":"yxgiWGK--SFB9ySwt3M3qpn5HO0ZLFY5D-h-G_vcT_
c=.pem","location":"security-state-staging/intermediates/9bc85edc-cae8-4042-b29e-895b1be37f71.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yxgiWGK++SFB9ySwt3M3qpn5HO0ZLFY5D+h+G/vcT/c=","crlite_enrolled":false,"id":"86b16dc2-9cb9-4271-acfe-4a80959ea5ea","last_modified":1562108568014},{"schema":1562108564189,"derHash":"XO2pkfE2Rtcy3832wQtjallx9FSxBxcswDtb7k0pBrs=","subject":"CN=Fuji Xerox Xnet CA - G2,O=Fuji Xerox,C=JP","subjectDN":"MEQxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MSAwHgYDVQQDExdGdWppIFhlcm94IFhuZXQgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"3f6deb7e20788638c3fd1a97de5a5390c10da49774515d8e6f3c11da176731a6","size":1483,"filename":"SWBebvlsLulUhE9tf8Z1RbIcTJY-kLhXO_sAB63M6tA=.pem","location":"security-state-staging/intermediates/89038819-ab40-47c3-ab8e-f9fba8ab86a2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SWBebvlsLulUhE9tf8Z1RbIcTJY+kLhXO/sAB63M6tA=","crlite_enrolled":false,"id":"ef301980-b77f-412d-8a81-1db73953b696","last_modified":1
562108564939},{"schema":1562108561881,"derHash":"KWyeU1fJwfIekGSjENG389qNEN7Eq96nw3K7TDdbm74=","subject":"SERIALNUMBER=201814,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODE0","whitelist":false,"attachment":{"hash":"fc14a5e8664374b8b9e73e78f636f520ad6627705388366008910d6dad4e0aea","size":2333,"filename":"YZlVjG_9bo_7G1Ld_UML44gp8CBlrnAhNWrF-z8r_Uk=.pem","location":"security-state-staging/intermediates/f34b8e30-671d-497f-a7a4-9c1fd484d573.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YZlVjG/9bo/7G1Ld/UML44gp8CBlrnAhNWrF+z8r/Uk=","crlite_enrolled":false,"id":"6d13d21e-c95b-4e10-bca3-e345c83ad59e","last_modified":1562108562629},{"schema":1562108558832,"derHash":"xKhCQ0rbUoCVJrbR6GmiZfU1tpuxZFSjAWZ8yUJnjVg=","subject":"CN=North Carolina Health Information Exchange CA,OU=Orion Health Direct Secure Messaging,O=North Carolina He
alth Information Exchange,C=US","subjectDN":"MIGpMQswCQYDVQQGEwJVUzEzMDEGA1UEChMqTm9ydGggQ2Fyb2xpbmEgSGVhbHRoIEluZm9ybWF0aW9uIEV4Y2hhbmdlMS0wKwYDVQQLEyRPcmlvbiBIZWFsdGggRGlyZWN0IFNlY3VyZSBNZXNzYWdpbmcxNjA0BgNVBAMTLU5vcnRoIENhcm9saW5hIEhlYWx0aCBJbmZvcm1hdGlvbiBFeGNoYW5nZSBDQQ==","whitelist":false,"attachment":{"hash":"033ec8c8c6591c333e976876a9b2dd85541a10a3a81cce7795dd6b11a2ff26db","size":2373,"filename":"sKMwLCLBC5txNEjL5HsQSJ1AllsHjsrcGecmnUBdJ_8=.pem","location":"security-state-staging/intermediates/abc29b05-2731-4492-a337-a40ee72b26ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sKMwLCLBC5txNEjL5HsQSJ1AllsHjsrcGecmnUBdJ/8=","crlite_enrolled":false,"id":"b56d935b-ae8c-4513-81f9-94e429220804","last_modified":1562108559596},{"schema":1562108558073,"derHash":"vxyw4hPY08cLrolCn8Ft4sdPdVlj0bm0iL0CYNvJG5w=","subject":"CN=DigiCert Baltimore CA-1 G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWd
pY2VydC5jb20xIzAhBgNVBAMTGkRpZ2lDZXJ0IEJhbHRpbW9yZSBDQS0xIEcy","whitelist":false,"attachment":{"hash":"8c3b20ef21e5a0850702c5b36f4116d9340de8e2ea3746b1051c95ee4a4615ff","size":1581,"filename":"EppRiUi9P-L8-u3LNh2t2P4La8TbSH4Xh_DCYKPwqts=.pem","location":"security-state-staging/intermediates/bbbed6f4-b330-448c-a685-127194973cd5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EppRiUi9P+L8+u3LNh2t2P4La8TbSH4Xh/DCYKPwqts=","crlite_enrolled":false,"id":"23c18ab5-afb4-4915-9211-0b1bc495e783","last_modified":1562108558823},{"schema":1562108557320,"derHash":"CSgpQz0jGUn0qbxmbL9Us6on1768oEjXXlkJPhWnLqU=","subject":"CN=TeliaSonera Class 2 CA v2,O=TeliaSonera,C=SE","subjectDN":"MEcxCzAJBgNVBAYTAlNFMRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEiMCAGA1UEAwwZVGVsaWFTb25lcmEgQ2xhc3MgMiBDQSB2Mg==","whitelist":false,"attachment":{"hash":"a3a1b4dfa388dfe0d25ab5674cfaeaf78ef03e5364e2cd9de1328b58f2a891b3","size":2528,"filename":"lqMfOTYct9rMx_Y2LpHI8aZt9xgWHX_TwLLQ51NQl04=.pem","location":"security-state-stag
ing/intermediates/d6d3711a-b7d2-4f85-a846-aca44739e149.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lqMfOTYct9rMx/Y2LpHI8aZt9xgWHX/TwLLQ51NQl04=","crlite_enrolled":false,"id":"0edb2d0c-78d4-4869-9399-77844e0f7698","last_modified":1562108558066},{"schema":1562108553418,"derHash":"BqV9HNWHn7ohNWEN2NclzCaNKm3opGPUJMS52omEhpY=","subject":"CN=MULTICERT SSL Certification Authority 001,OU=Certification Authority,O=MULTICERT - Servi\u00e7os de Certifica\u00e7\u00e3o Electr\u00f3nica S.A.,C=PT","subjectDN":"MIGnMQswCQYDVQQGEwJQVDFCMEAGA1UECgw5TVVMVElDRVJUIC0gU2VydmnDp29zIGRlIENlcnRpZmljYcOnw6NvIEVsZWN0csOzbmljYSBTLkEuMSAwHgYDVQQLDBdDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEyMDAGA1UEAwwpTVVMVElDRVJUIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAwMDE=","whitelist":false,"attachment":{"hash":"a4edffa6966beade48281eb732dd7be86742b1a9c74b4388c4d184c5f3707d9f","size":2970,"filename":"yxq9jBkkvQNgcVw-gq6-E8-0_Z-HVCg1PJ12mz_Ot1M=.pem","location":"security-state-staging/intermediates/9af4dc8b-5d79-4fe4-91a7
-1f528e522c34.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yxq9jBkkvQNgcVw+gq6+E8+0/Z+HVCg1PJ12mz/Ot1M=","crlite_enrolled":true,"id":"82333ba7-d875-4700-9521-e3450b26f275","last_modified":1562108554178},{"schema":1562108547322,"derHash":"0YY7VaBinzKl2thn0C3x0aRVCyOsQitTWB555Uj9Zhc=","subject":"CN=COMODO RSA Extended Validation Code Signing CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGRMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE3MDUGA1UEAxMuQ09NT0RPIFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"37c8cc316edcb62d120bb0cdb7f6d376a41995100929c1faae633cc5bbd5db9b","size":2186,"filename":"o0YMd50JaO9KHQa59-yeJR7mqkmBME4Yb2KrDeMsVpo=.pem","location":"security-state-staging/intermediates/638df8c9-7c2c-43c8-aa37-e137759f5495.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"o0YMd50JaO9KHQa59+yeJR7mqkmBME4Yb2KrDeMsVpo=",
"crlite_enrolled":false,"id":"41915ab2-d4a7-472f-9c9c-1aa184245482","last_modified":1562108548066},{"schema":1562108546547,"derHash":"snRdCptx2UjzTpIa9Z80Kt9uQH2IvFHTisUrWDoOvRU=","subject":"CN=Symantec Class 3 EV SSL SGC CA - G2,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEsMCoGA1UEAxMjU3ltYW50ZWMgQ2xhc3MgMyBFViBTU0wgU0dDIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"87eaf82db6f5848ee292c8bbd616cd095dc400e5299454872db01db7b0ce908f","size":1930,"filename":"RpiK7rBfp_gM93kpBie2lazUf8UesNcTJ-aL6W-Q06M=.pem","location":"security-state-staging/intermediates/634c9f70-8695-4f35-ab1c-be88bffa111f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RpiK7rBfp/gM93kpBie2lazUf8UesNcTJ+aL6W+Q06M=","crlite_enrolled":false,"id":"7ec41ffd-3b17-4b9b-ae03-cf4034674eda","last_modified":1562108547314},{"schema":1562108543508,"derHash":"kuN3Cx60T4TC8ssAl8L9cSa9ISt
BwmEOeN39iUZ2Fzg=","subject":"CN=Cybertrust Japan ECC EV CA,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MFcxCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEjMCEGA1UEAxMaQ3liZXJ0cnVzdCBKYXBhbiBFQ0MgRVYgQ0E=","whitelist":false,"attachment":{"hash":"f1536ae14b59510b0a578ef86b18c2742aeecff181da96be873249c707dce9a0","size":1171,"filename":"DR7QtcOJm6feIAao37U2Se9iaEVNLbTu7mKFz-uWIQs=.pem","location":"security-state-staging/intermediates/4177e11b-b581-4577-a6bf-acb75730661d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DR7QtcOJm6feIAao37U2Se9iaEVNLbTu7mKFz+uWIQs=","crlite_enrolled":false,"id":"0792354e-832d-44b5-86f7-9d8759ed1b08","last_modified":1562108544257},{"schema":1562108542761,"derHash":"4Yz41SmRiHUrFvPjw82Gc2GQRuLxueCI2rXTEWrqYb0=","subject":"CN=TrustAsia RSA Secure Client and Email CA,O=TrustAsia Technologies\\, Inc.,ST=Shanghai,C=CN","subjectDN":"MHoxCzAJBgNVBAYTAkNOMREwDwYDVQQIEwhTaGFuZ2hhaTElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLj
ExMC8GA1UEAxMoVHJ1c3RBc2lhIFJTQSBTZWN1cmUgQ2xpZW50IGFuZCBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"7385ded00c38eddd52d86a832caf6912d588fab55cfa476313cc762a9ee84eeb","size":2133,"filename":"rtkg6RrvnlbQH5J_vZPqsgnI9zzjiHs9IjqKSD9m6wA=.pem","location":"security-state-staging/intermediates/9e0c407a-c81b-4c6c-afca-584b65500eab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rtkg6RrvnlbQH5J/vZPqsgnI9zzjiHs9IjqKSD9m6wA=","crlite_enrolled":false,"id":"aebb965c-2a24-466b-a16b-3c0dae236232","last_modified":1562108543500},{"schema":1562108539744,"derHash":"qXyhN1uRlT5TalVHawrERMcIapUeSQo6PRNjChn0DNQ=","subject":"CN=TWCA InfoSec User CA,OU=User CA,O=TAIWAN-CA Inc.,C=TW","subjectDN":"MFcxCzAJBgNVBAYTAlRXMRcwFQYDVQQKEw5UQUlXQU4tQ0EgSW5jLjEQMA4GA1UECxMHVXNlciBDQTEdMBsGA1UEAxMUVFdDQSBJbmZvU2VjIFVzZXIgQ0E=","whitelist":false,"attachment":{"hash":"6aaaa07d5c201417999a0e22e73d6ede06b3ae7309353301a6d321d172316983","size":1703,"filename":"bqhl3DAHcc4Kg-bxpYCIoIh4Tjx38mrpuN4vD6gDaHY
=.pem","location":"security-state-staging/intermediates/a7eca8e3-d4e8-42fd-97a7-7b7589b511a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bqhl3DAHcc4Kg+bxpYCIoIh4Tjx38mrpuN4vD6gDaHY=","crlite_enrolled":false,"id":"53671fd7-9e3a-4f0c-a8fb-99fc788cacba","last_modified":1562108540486},{"schema":1562108538966,"derHash":"OYmjFwLp5qlIXzySp30hsYUsf2ci8j1EuMvnKpJuyFQ=","subject":"CN=Trustico ECC DV CA,O=The Trustico Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MG4xCzAJBgNVBAYTAkdCMQ8wDQYDVQQIEwZMb25kb24xEDAOBgNVBAcTB0Nyb3lkb24xHzAdBgNVBAoTFlRoZSBUcnVzdGljbyBHcm91cCBMdGQxGzAZBgNVBAMTElRydXN0aWNvIEVDQyBEViBDQQ==","whitelist":false,"attachment":{"hash":"8b1dd84a5acfc99c935c7937a7a736233a80c299b2fa9f230d20070f92594aa8","size":1272,"filename":"siFWwL8GHh0KXgWfKS8Gt9laNL7edvX8IB7dl6zLe-o=.pem","location":"security-state-staging/intermediates/d1d2f9ef-7d30-4f5a-a80c-8f0414545ab3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"siFWwL8GHh0KXgWfKS8Gt9laNL7edvX8IB7dl6zLe+o=","cr
lite_enrolled":false,"id":"7a3a1349-6283-418e-8d1b-090ce11da3f7","last_modified":1562108539733},{"schema":1562108538217,"derHash":"BXRs6sgws4RAWrc81iOd5Czp9IdVPvP6iwoGTleSaDw=","subject":"CN=WISeKey CertifyID Policy GA CA 1,O=WISeKey,C=CH","subjectDN":"MEoxCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSkwJwYDVQQDEyBXSVNlS2V5IENlcnRpZnlJRCBQb2xpY3kgR0EgQ0EgMQ==","whitelist":false,"attachment":{"hash":"2a6ff225010bbc9464e5d31c320657c525c3f0a392977f50123d28559f13fa21","size":1804,"filename":"xfM0VsUhSI6vKknRncbTW9di7pj0_a_oYa-o46JnDHQ=.pem","location":"security-state-staging/intermediates/d62ddced-fc46-4718-bdce-87c1b2f05042.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xfM0VsUhSI6vKknRncbTW9di7pj0/a/oYa+o46JnDHQ=","crlite_enrolled":false,"id":"82dadb91-864a-43ad-a206-42c281b95f08","last_modified":1562108538958},{"schema":1562108535152,"derHash":"SOJsWQSXTWoi5EL66IoqQYKQ4AY3uJhyChPyFDrNjrY=","subject":"SERIALNUMBER=201805,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","sub
jectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE4MDU=","whitelist":false,"attachment":{"hash":"ea45f8bf2666fc6e58e70aeda7b9ff6120dfa479bad56c7031ba318d09590473","size":2337,"filename":"0kb6t7LFkL6D6CBvoNnXYZ6COh6vj_xxmWb-ywmnExU=.pem","location":"security-state-staging/intermediates/4a069aba-7636-41cb-85d9-b37bfbf913c3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0kb6t7LFkL6D6CBvoNnXYZ6COh6vj/xxmWb+ywmnExU=","crlite_enrolled":false,"id":"5ff661bc-0b12-45ef-9197-4095d0f03d00","last_modified":1562108535892},{"schema":1562108532768,"derHash":"4M5cTvXSGGlj0rBK3kYSu694fhYEiltGj3Nnd2w6A94=","subject":"CN=GlobalSign ECC HV S/MIME CA 1,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1HbG9iYWxTaWduIEVDQyBIViBTL01JTUUgQ0EgMQ==","whitelist":false,"attachment":{"hash":"f7b7f1d2226533661c96045673837ee5eb504e816404882aa7cab4d769be6a
b2","size":1154,"filename":"pAR30VcYn-nY7bGwPT-4qhHggma7QWdsp1QPL8x_YMk=.pem","location":"security-state-staging/intermediates/90d68223-dc0d-417b-82e9-fc789af959ed.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pAR30VcYn+nY7bGwPT+4qhHggma7QWdsp1QPL8x/YMk=","crlite_enrolled":false,"id":"5ae5ab8e-6ce3-43fb-8540-fb4edf7170b7","last_modified":1562108533536},{"schema":1562108532023,"derHash":"9XCaLS9otTv29kW7F4rflTRvif2lxjv94IBComSSqrI=","subject":"CN=GlobalSign Qualified CA 1,O=GlobalSign nv-sa,C=BE","subjectDN":"MEwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSIwIAYDVQQDExlHbG9iYWxTaWduIFF1YWxpZmllZCBDQSAx","whitelist":false,"attachment":{"hash":"babdcd192e71c8b4c902d934518dcdf6ade0f8849accbf5f4b2633dbc59ae640","size":2109,"filename":"JLSkiSNPvaX8_Ng2Eq17tQJcAp2P6PnM2B-Ojyo8nYg=.pem","location":"security-state-staging/intermediates/56b7b3ba-16d7-43e7-9144-0bd4054c8b98.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JLSkiSNPvaX8/Ng2Eq17tQJcAp2P6PnM2B+Ojyo8nYg="
,"crlite_enrolled":false,"id":"842bb917-00d1-4d4d-b1dc-1cc655bce329","last_modified":1562108532760},{"schema":1562108529754,"derHash":"Elpf18ZA1eWfXOV2PNjJMvXll93cTq8dWWZ89LVWojc=","subject":"CN=USERTrust RSA Extended Validation Secure Server CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGVMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE7MDkGA1UEAxMyVVNFUlRydXN0IFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"094e42381d9f1d18441d7220fac73d64fd68198174b849e5d674adb912d6ccec","size":2174,"filename":"8E_u4IJLStWPqhVEn4td_2Ae6WYCii1AmJC2dgTCj1s=.pem","location":"security-state-staging/intermediates/307f6f1b-9a38-4046-97d3-4d36958e0f86.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8E/u4IJLStWPqhVEn4td/2Ae6WYCii1AmJC2dgTCj1s=","crlite_enrolled":true,"id":"49f70812-6671-41b7-a5d2-73cdf9cea32f","last_modified":1562108530510},{"schema
":1562108525881,"derHash":"NXVUztPEm6E93VWlaCYptvzirPxFGasr4Es6hgGlny8=","subject":"CN=HARICA Qualified Natural Entities SubCA R1,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGZMQswCQYDVQQGEwJHUjEPMA0GA1UEBxMGQXRoZW5zMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEzMDEGA1UEAxMqSEFSSUNBIFF1YWxpZmllZCBOYXR1cmFsIEVudGl0aWVzIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"bc6e90f6d202ea8d62cd470c2ea31d41ed599f457738d82b87cdab0e3a3a439f","size":2438,"filename":"c5tJhzRUh_mULK82PkMvvJo7eF3WcNRab2OwHVToIzo=.pem","location":"security-state-staging/intermediates/8793bf9d-751b-47d1-8043-947b65b5b2fa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"c5tJhzRUh/mULK82PkMvvJo7eF3WcNRab2OwHVToIzo=","crlite_enrolled":false,"id":"ed4c1bcb-36d5-4f02-98c1-028cbb6c8eee","last_modified":1562108526678},{"schema":1562108524365,"derHash":"NcC4pXfRHJS6Zl4kLeRdZodSKlMeORu02ZXSYfOCmrc=","subject":"CN=certS
IGN CA Class 2 G2,OU=certSIGN CA Class 2 G2,O=certSIGN,C=RO","subjectDN":"MGIxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEfMB0GA1UECxMWY2VydFNJR04gQ0EgQ2xhc3MgMiBHMjEfMB0GA1UEAxMWY2VydFNJR04gQ0EgQ2xhc3MgMiBHMg==","whitelist":false,"attachment":{"hash":"df0ec1a6797109126df83a75e016edf4ec5eae8f6a58946debcf2ddee8cf2524","size":1609,"filename":"noYGcVGJvDlxvfPLFE31WgvXSwkoZGrfCEpsm_L3qt4=.pem","location":"security-state-staging/intermediates/e03925b7-c8a0-4286-aa06-57ae5c110937.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"noYGcVGJvDlxvfPLFE31WgvXSwkoZGrfCEpsm/L3qt4=","crlite_enrolled":false,"id":"a0571407-53b3-407c-bbd4-0be77d0d2d3e","last_modified":1562108525121},{"schema":1562108523614,"derHash":"cBtDKsDN1NnPlbS4hMMr9cypDUTgFhq9E7k01o44BHI=","subject":"CN=GlobalSign PersonalSign 3 CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTMwMQYDVQQDEypHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAzIENBIC0gU0hBMjU2IC0gRzM=","whitelist":
false,"attachment":{"hash":"458cc82369b9a1032b78405e6806b74fd2952d39402bf697575b5d831cad259a","size":1670,"filename":"TB1kEWAFK_CTRZQanxy7YzsEBTcqSK49DqMWi8bxAek=.pem","location":"security-state-staging/intermediates/b62b5389-9e04-4c32-83bc-4bf85ed12fb6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TB1kEWAFK/CTRZQanxy7YzsEBTcqSK49DqMWi8bxAek=","crlite_enrolled":false,"id":"27438f07-1327-49d9-acd2-a58622706d5c","last_modified":1562108524357},{"schema":1562108522832,"derHash":"ztQGeH82ZG2JfkaLe4tdyuEDDDp1rxybEFUUuV7G6nA=","subject":"CN=GENIOUS ECC Extended Validation Secure Server CA,OU=Controlled by Sectigo exclusively for Genious Communications,O=Genious Communications,L=Marrakech,ST=Marrakech,C=MA","subjectDN":"MIHYMQswCQYDVQQGEwJNQTESMBAGA1UECBMJTWFycmFrZWNoMRIwEAYDVQQHEwlNYXJyYWtlY2gxHzAdBgNVBAoTFkdlbmlvdXMgQ29tbXVuaWNhdGlvbnMxRTBDBgNVBAsTPENvbnRyb2xsZWQgYnkgU2VjdGlnbyBleGNsdXNpdmVseSBmb3IgR2VuaW91cyBDb21tdW5pY2F0aW9uczE5MDcGA1UEAxMwR0VOSU9VUyBFQ0MgRXh0ZW5kZWQgVmFsaWRhd
GlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"0fdfe942ae38cec3fd4541c8578f5bb84c77d30b5d71964f0ddb9f5393c40ca8","size":1463,"filename":"lGB7vG_pOqUpHiqWKO7WQg8lfxBsfGVE0yulTTjMgJg=.pem","location":"security-state-staging/intermediates/2b90024e-92c3-45de-bb5a-9d61b0b7cf4a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lGB7vG/pOqUpHiqWKO7WQg8lfxBsfGVE0yulTTjMgJg=","crlite_enrolled":false,"id":"c3d27779-fe8a-421f-97c2-5d4a5bee385c","last_modified":1562108523606},{"schema":1562108522078,"derHash":"MA6zIZBXi5rFeOGh0oAEIZFFaYzjtj8p3yHuTFQsCIU=","subject":"CN=WISeKey Qualified Services CA 2,OU=Copyright (c) 2013 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGJMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEmMCQGA1UECxMdQ29weXJpZ2h0IChjKSAyMDEzIFdJU2VLZXkgU0ExFjAUBgNVBAsTDUludGVybmF0aW9uYWwxKDAmBgNVBAMTH1dJU2VLZXkgUXVhbGlmaWVkIFNlcnZpY2VzIENBIDI=","whitelist":false,"attachment":{"hash":"9807abddce6407d40c4c5529a15b7709518ba11092a254a7adc5d65af922e8d0"
,"size":1800,"filename":"TONsHZMTU75SEOmQ_8UnWZ1dToH3MjqDXKqHFFbSot0=.pem","location":"security-state-staging/intermediates/a0e40893-99c0-437f-a615-8d710f969d3c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TONsHZMTU75SEOmQ/8UnWZ1dToH3MjqDXKqHFFbSot0=","crlite_enrolled":false,"id":"0a716af8-e441-4f96-a8d7-aff6571d96e0","last_modified":1562108522824},{"schema":1562108521318,"derHash":"YA6XYBsLvF8FbwTu9nHvWA8qhYPG0tP61AG52CCqiDY=","subject":"CN=Valid Certificadora Digital SSL OV CA 2018,OU=VALID SSL OV,O=VALID CERTIFICADORA DIGITAL,L=S\u00c3O PAULO,ST=S\u00c3O PAULO,C=BR","subjectDN":"MIGpMQswCQYDVQQGEwJCUjETMBEGA1UECAwKU8ODTyBQQVVMTzETMBEGA1UEBwwKU8ODTyBQQVVMTzEVMBMGA1UECxMMVkFMSUQgU1NMIE9WMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgT1YgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"c4a550d79bb2b71f8c0928d49e7c96a982b4c362b1b8092cbbb975ca5e51df26","size":1886,"filename":"OOlpcVGqLfZfl2rK7MdW2Ff6TMhVD-PwR
f3XtFUUtLw=.pem","location":"security-state-staging/intermediates/1d251274-286b-4c35-be80-189120f190ea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OOlpcVGqLfZfl2rK7MdW2Ff6TMhVD+PwRf3XtFUUtLw=","crlite_enrolled":true,"id":"a9c8bb82-a5e4-41bd-9be3-20842827e5bc","last_modified":1562108522070},{"schema":1562108518267,"derHash":"2NOC430vk4Eao9lA7vTG7qR7s7pQJxqL8ujCTN05PFY=","subject":"CN=SSL.com EV Code Signing Intermediate CA RSA R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxNzA1BgNVBAMMLlNTTC5jb20gRVYgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBDQSBSU0EgUjI=","whitelist":false,"attachment":{"hash":"002fe1bcd61684d28427eba68ab1788bba7ded78e7dfbd283510a07be6c4fc4e","size":2511,"filename":"F9hW0k1yFI5zXeeLFdAPTsm--My7hmT-Wp09KwmK0Ic=.pem","location":"security-state-staging/intermediates/2e1d37e8-d5e8-4de3-b2d8-2b3181322a9b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F9hW0k1yFI5
zXeeLFdAPTsm++My7hmT+Wp09KwmK0Ic=","crlite_enrolled":false,"id":"f78ed066-8405-4a9e-a213-031511e661b5","last_modified":1562108519012},{"schema":1562108517488,"derHash":"z25rgsmXy1zBpVBmr19gyqx3WU6xBvtNSYvFDs3rijo=","subject":"CN=Beame.io CA 2,O=Beame.io Ltd,L=Tel Aviv-Jaffa,ST=Tel Aviv,C=IL","subjectDN":"MGgxCzAJBgNVBAYTAklMMREwDwYDVQQIEwhUZWwgQXZpdjEXMBUGA1UEBxMOVGVsIEF2aXYtSmFmZmExFTATBgNVBAoTDEJlYW1lLmlvIEx0ZDEWMBQGA1UEAxMNQmVhbWUuaW8gQ0EgMg==","whitelist":false,"attachment":{"hash":"0a359e91716bb249722632341e4f85f71d631e20e2ff0ee6379d782c54961a3c","size":1800,"filename":"9MtJhPjYwOW02TcCqan-4J_RHNT32dQraMIk0Pbgtsw=.pem","location":"security-state-staging/intermediates/ed0044e8-a7b6-4b07-ac80-b80f5eae9913.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9MtJhPjYwOW02TcCqan+4J/RHNT32dQraMIk0Pbgtsw=","crlite_enrolled":false,"id":"2cc06889-bf33-4a96-9d85-f0e243c76990","last_modified":1562108518259},{"schema":1562108515960,"derHash":"C4ljPxIvdYIZUK4n4LrdQNSbtQ8Msbde5PRmKs5Ms9g
=","subject":"CN=Technological Educational Institute of Western Greece CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGZMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO1RlY2hub2xvZ2ljYWwgRWR1Y2F0aW9uYWwgSW5zdGl0dXRlIG9mIFdlc3Rlcm4gR3JlZWNlIENBIFIx","whitelist":false,"attachment":{"hash":"d72696baad4643eb2d91dc268912327ed7fb5884f5fece72129c12a63a001e02","size":3328,"filename":"UHwj56cjJKum0BUjKMff1Ap3nL75-poJyKuT3GJwRPk=.pem","location":"security-state-staging/intermediates/c2e8bc36-2a68-4e45-84df-07e79a971076.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UHwj56cjJKum0BUjKMff1Ap3nL75+poJyKuT3GJwRPk=","crlite_enrolled":true,"id":"e7d5456b-323b-464b-9a57-3595df77606b","last_modified":1562108516718},{"schema":1562108515200,"derHash":"Ze7AzGyXDMHNc2WRFdyNkE5vEubcj9Tdo51UyzAiR4A=","subject":"CN=GlobalSign Organization Validated ECC CA - SHA256 - G4,O=GlobalSign
nv-sa,C=BE","subjectDN":"MGkxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMT8wPQYDVQQDEzZHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0ZWQgRUNDIENBIC0gU0hBMjU2IC0gRzQ=","whitelist":false,"attachment":{"hash":"865c9143e047b0121c8b2a402263e27dd9fbbd276406fe62b420613e3e28edda","size":1394,"filename":"4Xv9MflABt7Iaf_CjuYWBVtq_uG5yZJdQ3s5VSjCGoM=.pem","location":"security-state-staging/intermediates/cb10ff6b-2fd7-4bd4-b66d-314238afca50.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4Xv9MflABt7Iaf/CjuYWBVtq/uG5yZJdQ3s5VSjCGoM=","crlite_enrolled":false,"id":"d1ef766b-9934-4f69-b604-dcdd7cc578aa","last_modified":1562108515952},{"schema":1562108513681,"derHash":"JJvmXwx6sP47dkizDODrPPaRQCxy2stAzxRinGA8ujY=","subject":"CN=BlackCert\\, Inc. RSA DV Certification Authority,O=BlackCert\\, Inc.,L=Denver,ST=CO,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDTzEPMA0GA1UEBxMGRGVudmVyMRgwFgYDVQQKEw9CbGFja0NlcnQsIEluYy4xNzA1BgNVBAMTLkJsYWNrQ2VydCwgSW5jLiBSU0EgRFYgQ2VydGlmaWNhdGlvbiBBd
XRob3JpdHk=","whitelist":false,"attachment":{"hash":"d44215866949fb5ebbd47bf41f766c1cbccb5645c0bcc8ba38d8fb1bf6079e0d","size":2154,"filename":"dnTrbfgvJOGlJse4RxYg30jhwWfQfKyNYkL6SpGs_1I=.pem","location":"security-state-staging/intermediates/8b6b285b-820a-4bb9-95a5-2caace235136.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dnTrbfgvJOGlJse4RxYg30jhwWfQfKyNYkL6SpGs/1I=","crlite_enrolled":false,"id":"bc7c0580-5018-49e7-9009-b95e7f33663f","last_modified":1562108514431},{"schema":1562108511407,"derHash":"qV8jtSrxCJWIb7ZTI9KamHbqfTlvgF5MooDVYcJuPa0=","subject":"CN=Certyfikat SSL,O=home.pl S.A.,C=PL","subjectDN":"MD0xCzAJBgNVBAYTAlBMMRUwEwYDVQQKDAxob21lLnBsIFMuQS4xFzAVBgNVBAMMDkNlcnR5ZmlrYXQgU1NM","whitelist":false,"attachment":{"hash":"45a923fe0feea027c9100ec2d0aa873a99af0b2acd334a796bd4d4b8399213b0","size":1565,"filename":"5PJ4jB1sjJ5kx3a0Ds2noJPc07ZOb_y1vR1tN1t5FsQ=.pem","location":"security-state-staging/intermediates/907a7262-b883-4896-bb78-a84247ab3ab1.pem","mimetype":"appl
ication/x-pem-file"},"pubKeyHash":"5PJ4jB1sjJ5kx3a0Ds2noJPc07ZOb/y1vR1tN1t5FsQ=","crlite_enrolled":true,"id":"2c153960-0405-4d5f-8576-a05ed26e5b62","last_modified":1562108512178},{"schema":1562108509878,"derHash":"Yelzden22pgv9cGeL5TmbE41toN847kU0iRcf19lgl8=","subject":"CN=Sectigo ECC Domain Validation Secure Server CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGPMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxNzA1BgNVBAMTLlNlY3RpZ28gRUNDIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"4d1b7deaa365566deaed85adb3c7b35bb377cf800b13c07a8ae1e78b76e74645","size":1329,"filename":"6YBE8kK4d5J1qu1wEjyoKqzEIvyRY5HyM_NB2wKdcZo=.pem","location":"security-state-staging/intermediates/6cf98cdf-f1ba-4bfe-9130-5511f8e29381.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6YBE8kK4d5J1qu1wEjyoKqzEIvyRY5HyM/NB2wKdcZo=","crlite_enrolled":false,"id":"b57ef74e-65
5f-4231-a30d-f2cfe2066f04","last_modified":1562108510628},{"schema":1562108509119,"derHash":"TWP4dHqWgPgYgrYtD6mTwzWB0xTFtZb6Nz35Kyxl1P8=","subject":"CN=HARICA Client Authentication ECC SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGYMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEyMDAGA1UEAwwpSEFSSUNBIENsaWVudCBBdXRoZW50aWNhdGlvbiBFQ0MgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"32fe726d359401c573765c4caa155f44aeac7ff0db07e6c99717c13fd4d7a82f","size":1382,"filename":"RkjJ3_AfR7WnTEAv46GxRy7Zz598VYGQ238SwVsbHEc=.pem","location":"security-state-staging/intermediates/70f65e99-e8b2-48ee-bf42-4801c36cb68d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RkjJ3/AfR7WnTEAv46GxRy7Zz598VYGQ238SwVsbHEc=","crlite_enrolled":false,"id":"7048b675-56a5-4d07-87e6-3c72293658a5","last_modified":1562108509869},{"schema":1562108508335,"derHash":"
XYHQqjR29IpaZ11tPmq3Zr3IqhZ6GpTXnfkbQlEIL6Q=","subject":"CN=Symantec Class 3 Managed PKI Administrator CA - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGKMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxOzA5BgNVBAMTMlN5bWFudGVjIENsYXNzIDMgTWFuYWdlZCBQS0kgQWRtaW5pc3RyYXRvciBDQSAtIEc0","whitelist":false,"attachment":{"hash":"a2a98936c029075a8a6b565f8abca868b55374cab948eec361bad48dc9d73bd0","size":2162,"filename":"uIRohYy30h0StjFaVDICGnRrRRAkdbt9s-ofq2uF76o=.pem","location":"security-state-staging/intermediates/b173c1dc-300c-45c7-823f-87a260239e8d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uIRohYy30h0StjFaVDICGnRrRRAkdbt9s+ofq2uF76o=","crlite_enrolled":false,"id":"713b1d86-1417-4497-a763-6c7a9a07b477","last_modified":1562108509111},{"schema":1562108503735,"derHash":"OP32JQfO3uFrFFXpa9I9XG9sVlTWjH47JyONLHN0SoY=","subject":"CN=DigiCert Extended Validation CG CA,OU=www.digicert.com,O=DigiCert
Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNVBAMTIkRpZ2lDZXJ0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0cgQ0E=","whitelist":false,"attachment":{"hash":"a8bdae9244ca24b0d8b09a70bc032e9b5362540edd5a59cdeccad12958d1c5d5","size":1585,"filename":"eXcE_FEH8E-PslVO5TCIbyP752KLqMYODNwbD-LCR-E=.pem","location":"security-state-staging/intermediates/12975646-7816-4709-882d-0143bf1a5283.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eXcE/FEH8E+PslVO5TCIbyP752KLqMYODNwbD+LCR+E=","crlite_enrolled":false,"id":"9f5c8ac4-b008-49c0-b9bc-863426c26d90","last_modified":1562108504480},{"schema":1562108502976,"derHash":"7bc1PhgR5fN4UcYgz8fUWugoiZ6wV35P53Z0yGjcuJA=","subject":"CN=BlackCert\\, Inc. RSA Codesigning Certification Authority,O=BlackCert\\, Inc.,L=Denver,ST=CO,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPQmxhY2tDZXJ0LCBJbmMuMUAwPgYDVQQDEzdCbGFja0NlcnQsIEluYy4gUlNBIENvZGVzaWduaW
5nIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"83e714d2ebb72b6cd5797087fdeaa549882b84d809b88d45d29814a2953cf6e7","size":2138,"filename":"E7ZaNnwy2IYB-cbZdmFmsDqLQpBsyfd8D0Wla2IcsN0=.pem","location":"security-state-staging/intermediates/0945ea41-2704-48b4-b317-eefbc1b38066.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"E7ZaNnwy2IYB+cbZdmFmsDqLQpBsyfd8D0Wla2IcsN0=","crlite_enrolled":false,"id":"957cbb11-8361-4b15-b3eb-c82267f47a38","last_modified":1562108503727},{"schema":1562108499185,"derHash":"VBrwGZYXYO8Z6PtBNObUMIW15eCH8wGX3EKyCX4QSH4=","subject":"CN=DigiCert High Assurance EV CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKDAmBgNVBAMTH0RpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEVWIENBLTE=","whitelist":false,"attachment":{"hash":"cee9a5df6d83eab591096fe1d9a6f43cc80dad8b8a159436b567f21161cbc901","size":2450,"filename":"suo4a3Sz765--hurzLhgwqwpR8K0KVkwTarqw
wCDJB4=.pem","location":"security-state-staging/intermediates/b9c4edc6-247c-4b69-b0a5-a85ec816d3f7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"suo4a3Sz765++hurzLhgwqwpR8K0KVkwTarqwwCDJB4=","crlite_enrolled":false,"id":"ac2d44fb-7f7c-4ba9-91ea-9fb4a5225f72","last_modified":1562108499932},{"schema":1562108498428,"derHash":"E0qWmWjHDkdlE7N7AT2ME4whEEZpta1i1NX6sWhpueo=","subject":"CN=WISeKey CertifyID Standard Services CA 2,OU=Copyright (c) 2012 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGSMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEmMCQGA1UECxMdQ29weXJpZ2h0IChjKSAyMDEyIFdJU2VLZXkgU0ExFjAUBgNVBAsTDUludGVybmF0aW9uYWwxMTAvBgNVBAMTKFdJU2VLZXkgQ2VydGlmeUlEIFN0YW5kYXJkIFNlcnZpY2VzIENBIDI=","whitelist":false,"attachment":{"hash":"e48e0619d7002605f182e4ca2eb951af933322592b7bf6ada875554550da1467","size":1813,"filename":"d_Kor69hknpIfroNumzs6NkLxxCUNhMn46dzck_SZSQ=.pem","location":"security-state-staging/intermediates/abde4617-8fc5-4d49-8840-cd067fafc1be.pem","mimetype
":"application/x-pem-file"},"pubKeyHash":"d/Kor69hknpIfroNumzs6NkLxxCUNhMn46dzck/SZSQ=","crlite_enrolled":false,"id":"3f228a15-48bd-4095-9b49-153752372cad","last_modified":1562108499177},{"schema":1562108494477,"derHash":"7A6RbnSr8VDXJpuoha5sdB5IeFXP3QAhsfklDg8CQKQ=","subject":"CN=Digi-Sign CA Digi-SSL,O=Digi-Sign Limited,L=Dublin,ST=County Dublin,C=IE","subjectDN":"MHIxCzAJBgNVBAYTAklFMRYwFAYDVQQIEw1Db3VudHkgRHVibGluMQ8wDQYDVQQHEwZEdWJsaW4xGjAYBgNVBAoTEURpZ2ktU2lnbiBMaW1pdGVkMR4wHAYDVQQDExVEaWdpLVNpZ24gQ0EgRGlnaS1TU0w=","whitelist":false,"attachment":{"hash":"b97246136be3d99d20bf2f7603175d44195ddb23d6b06dc54798dbf020e157c7","size":2133,"filename":"SjhfW8JOPoS_CGVE2In9gc0KODUuyPow9mwTaYtMEq0=.pem","location":"security-state-staging/intermediates/8b3ac03e-2dd2-4039-a6c7-c35f9b0a128d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SjhfW8JOPoS/CGVE2In9gc0KODUuyPow9mwTaYtMEq0=","crlite_enrolled":true,"id":"6b2da634-a178-4fe0-a67a-69c7a80a110a","last_modified":1562108495264},{"sc
hema":1562108492940,"derHash":"wTFJn9hrIT213vqv1TERwoot2vS6RlyCZactbPc5tmg=","subject":"CN=GeoTrust ECC EV SSL CA,O=GeoTrust\\, Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5HZW9UcnVzdCwgSW5jLjEfMB0GA1UEAxMWR2VvVHJ1c3QgRUNDIEVWIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"588ba7e7e84de78bd2ee165c7c1929bd7112e182bf928a3c226efe5c273d8534","size":1370,"filename":"OO0Iaj51W5pVJ0cy2PVRI2a7tHdEEIid5kv96_bdYG0=.pem","location":"security-state-staging/intermediates/2d6eb50e-d96b-494b-b34f-d3b38e2fa2d3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OO0Iaj51W5pVJ0cy2PVRI2a7tHdEEIid5kv96/bdYG0=","crlite_enrolled":false,"id":"ca75d5de-dcb0-4e6c-906a-28cbb856e74b","last_modified":1562108493682},{"schema":1562108492186,"derHash":"fg4WwAVvQan0xh9XFQPDvPB54r3bIovyIZrDEgBJa1w=","subject":"CN=COMODO RSA Extended Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGSMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMR
AwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE4MDYGA1UEAxMvQ09NT0RPIFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"40fed6ab131f22b397c3c2ecb13e30bb474e343301e79a2b101da728c8f7e725","size":2158,"filename":"Fbr_5aSOo4KRal8YE49t4lc76IOnK_oto9NWV1cSKWM=.pem","location":"security-state-staging/intermediates/26792b4c-be44-42ef-b451-acdb85008cae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Fbr/5aSOo4KRal8YE49t4lc76IOnK/oto9NWV1cSKWM=","crlite_enrolled":true,"id":"42a678eb-ad85-4ddf-9bde-2a36dbf7e3f1","last_modified":1562108492932},{"schema":1562108489881,"derHash":"VJq1JOiGreznC92WoEtVSULDdL58KcDugYtjC98gDuE=","subject":"CN=COMODO ECC Organization Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGWMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE8MDoGA1UEAxMzQ09NT0RPIEVDQyBPcmdhbml6YXRpb24gVmFsa
WRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"6ff6976ecc5dc7e323e439ed8c254a856da8c9eb0f1d4d4530e0dc455cdeb727","size":1321,"filename":"ORuXcQB__xhdb52by_Vmo_qhrTuazztSjlMMhaafJZ0=.pem","location":"security-state-staging/intermediates/2ed754b8-5dad-47c1-9bf2-d49c86f2db2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ORuXcQB//xhdb52by/Vmo/qhrTuazztSjlMMhaafJZ0=","crlite_enrolled":true,"id":"b68c9aa1-a037-426c-872e-e863b1da96e0","last_modified":1562108490643},{"schema":1562108489123,"derHash":"vhOl0vXHj0QBGdSExxBCcyXrEM6pYj72IAyxGwT2UOE=","subject":"CN=Apple Public Client RSA CA 1 - G1,O=Apple Inc.,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSowKAYDVQQDEyFBcHBsZSBQdWJsaWMgQ2xpZW50IFJTQSBDQSAxIC0gRzE=","whitelist":false,"attachment":{"hash":"830fdd81ad376da5b83348ff96f33463a23ca58c58f45698a8cc7234d1ec4f2a","size":1613,"filename":"HI6y3qp-41VQ3mL9AJrkQaSsUBgehHMaI9RZeWJdLmk=.pem","location":"security-state-staging/intermediate
s/0e7aa9ac-77b4-49f7-9899-54a03c0c2d60.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HI6y3qp+41VQ3mL9AJrkQaSsUBgehHMaI9RZeWJdLmk=","crlite_enrolled":false,"id":"db20381e-1c9e-4baf-aab2-f2b9c195e30b","last_modified":1562108489873},{"schema":1562108488345,"derHash":"2w2hYDLxZDoklv3nQuK76B2spYzXYSBhQg4VTOG84r0=","subject":"OU=AC Componentes Inform\u00e1ticos,O=FNMT-RCM,C=ES","subjectDN":"MEcxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTElMCMGA1UECwwcQUMgQ29tcG9uZW50ZXMgSW5mb3Jtw6F0aWNvcw==","whitelist":false,"attachment":{"hash":"9667524969985c4cb1aa76f3e3c434be6441809f9c3d2bad6265165a0b509b08","size":2430,"filename":"MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ-57NkgXsoGc=.pem","location":"security-state-staging/intermediates/5bc2733e-1751-448d-9db9-b1e6c1f4afc4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ+57NkgXsoGc=","crlite_enrolled":true,"id":"43dee182-4f7e-46ed-8e3c-f6b84da2e351","last_modified":1562108489116},{"schema":1562108487565,"derHas
h":"2y8BlO3LeMup0br0w9uo1Wg32XsgIz1hfdULcTvTE8g=","subject":"CN=JPRS Organization Validation Authority - G2,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"eaa0461d01871fe7efef1f6dd76aeadd5f6a7fa6294b55d75e3356efb3bfffbc","size":1654,"filename":"54eZQ4rB3O8NcogAUW0xb-Kj8mUlz1CXsQbqAv5JoyE=.pem","location":"security-state-staging/intermediates/0d2373da-abe4-4f76-9197-bd953b05bcbe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"54eZQ4rB3O8NcogAUW0xb+Kj8mUlz1CXsQbqAv5JoyE=","crlite_enrolled":true,"id":"90ba5f7f-c6e6-46f1-9eed-ed13ab24ea34","last_modified":1562108488337},{"schema":1562108486020,"derHash":"dCZArGf41xssR3dQdK2MYLriwBI6sYNUwkwXGTLYYYM=","subject":"CN=eMudhra ECC Organization Validation Secure Server CA,O=eMudhra Technologies Limited,L=Bengaluru,ST=Karnataka,C=IN","s
ubjectDN":"MIGbMQswCQYDVQQGEwJJTjESMBAGA1UECBMJS2FybmF0YWthMRIwEAYDVQQHEwlCZW5nYWx1cnUxJTAjBgNVBAoTHGVNdWRocmEgVGVjaG5vbG9naWVzIExpbWl0ZWQxPTA7BgNVBAMTNGVNdWRocmEgRUNDIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"e34a770b073f3a5213a76f49963f984357b1953c6da5947b47e936a4e630f73b","size":1353,"filename":"1Mpue8qB6gEzwG3fbKc1IdTydXsa-PS26DWSlP08NHA=.pem","location":"security-state-staging/intermediates/a4456a24-aeff-4e5b-8141-b75819e0c374.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1Mpue8qB6gEzwG3fbKc1IdTydXsa+PS26DWSlP08NHA=","crlite_enrolled":false,"id":"2bf88053-7706-4881-a7fb-ac030ad0b530","last_modified":1562108486759},{"schema":1562108482958,"derHash":"8RiVmlrV6zfO2xJRjiNEiZ3thXwDTh1mYERGfHsq7Ck=","subject":"SERIALNUMBER=201722,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDV
QQFEwYyMDE3MjI=","whitelist":false,"attachment":{"hash":"0018cff73afd9fc80f48f5b2b28aa9e874f42ec1eadda135b207f08ab903561f","size":2402,"filename":"Mq0HXzU9lbGXxDh3OAHAmEOs6t-zrh0AMpitBhEV-go=.pem","location":"security-state-staging/intermediates/c6eae6ec-2815-40ed-ad49-db25026f1f41.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Mq0HXzU9lbGXxDh3OAHAmEOs6t+zrh0AMpitBhEV+go=","crlite_enrolled":false,"id":"369b0e86-2ce9-4e05-b98d-508abd7b4c38","last_modified":1562108483725},{"schema":1562108479933,"derHash":"wY1Tv5hk3Qm8vKz9Zy4lZtTIH2iJ42313UJcBCEdB2M=","subject":"CN=Hongkong Post e-Cert EV SSL CA 3 - 17,O=Hongkong Post,L=Hong Kong,ST=Hong Kong,C=HK","subjectDN":"MH0xCzAJBgNVBAYTAkhLMRIwEAYDVQQIEwlIb25nIEtvbmcxEjAQBgNVBAcTCUhvbmcgS29uZzEWMBQGA1UEChMNSG9uZ2tvbmcgUG9zdDEuMCwGA1UEAxMlSG9uZ2tvbmcgUG9zdCBlLUNlcnQgRVYgU1NMIENBIDMgLSAxNw==","whitelist":false,"attachment":{"hash":"e4408c6b03e1deb0777ad20ea8b3466779565bcb2d92a17de6ac350bdaa5de18","size":2097,"filename":"shxxZc44F1hF3pjK
zr0Oaoq-CwRFBKIr0_noGHUYkjA=.pem","location":"security-state-staging/intermediates/5092f509-515e-460e-b9cb-d9cdaff53b24.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"shxxZc44F1hF3pjKzr0Oaoq+CwRFBKIr0/noGHUYkjA=","crlite_enrolled":true,"id":"8a76611a-1aeb-45ed-90ff-d235f7264a64","last_modified":1562108480674},{"schema":1562108479189,"derHash":"oqZEIzcPKdJbx6jjGHumTn65rSxpSzKwpgSDt3ZKipk=","subject":"SERIALNUMBER=201726,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzI2","whitelist":false,"attachment":{"hash":"493a8723d33b245fb73ba475b1b71ef35f27d668af43408d38e274218fc62e66","size":2402,"filename":"CJitrQ5Xyw0ivYWDlDkdZhYGrR9n2v_BiXArqHx0E3k=.pem","location":"security-state-staging/intermediates/1be9953d-1cde-405a-b00c-7ba2d663a689.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CJitrQ5Xyw0ivYWDlDkdZhYGrR9n2v/BiXArqHx
0E3k=","crlite_enrolled":false,"id":"a1acb403-444a-4209-85b5-81f33f7e1947","last_modified":1562108479925},{"schema":1562108477627,"derHash":"ci1Qh02kVJbQKZYnQJd3YDqHNBpflDuInDLnuSgKj3E=","subject":"CN=MarketWare - Solu\u00e7\u00f5es para Mercados Digitais\\, Lda. RSA DV CA,O=MarketWare - Solu\u00e7\u00f5es para Mercados Digitais\\, Lda.,L=Lisboa,ST=Lisboa,C=PT","subjectDN":"MIG3MQswCQYDVQQGEwJQVDEPMA0GA1UECBMGTGlzYm9hMQ8wDQYDVQQHEwZMaXNib2ExPTA7BgNVBAoMNE1hcmtldFdhcmUgLSBTb2x1w6fDtWVzIHBhcmEgTWVyY2Fkb3MgRGlnaXRhaXMsIExkYS4xRzBFBgNVBAMMPk1hcmtldFdhcmUgLSBTb2x1w6fDtWVzIHBhcmEgTWVyY2Fkb3MgRGlnaXRhaXMsIExkYS4gUlNBIERWIENB","whitelist":false,"attachment":{"hash":"3ba8b2665039d7c2a7cf679634516d8d507d0415ddd08b1e41ac4a9c6c867605","size":2231,"filename":"0xvEIcXteNs-TYPZ7GyhN_WFNSBPpaBsyCLFCdhQQY0=.pem","location":"security-state-staging/intermediates/3319dc26-2db5-4b0e-ae5b-4709b309e91f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0xvEIcXteNs+TYPZ7GyhN/WFNSBPpaBsyCLFCdhQQY0=","c
rlite_enrolled":true,"id":"0b17a42e-ae1c-45f8-9f54-f23d38b3a873","last_modified":1562108478417},{"schema":1562108476077,"derHash":"JT48lzLfiHTD1U2lIsFxEULJjCzqdmRjUVKomgPuk2Q=","subject":"CN=Optum Public Trust CA 1,O=Optum,L=Minneapolis,ST=Minnesota,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRIwEAYDVQQIEwlNaW5uZXNvdGExFDASBgNVBAcTC01pbm5lYXBvbGlzMQ4wDAYDVQQKEwVPcHR1bTEgMB4GA1UEAxMXT3B0dW0gUHVibGljIFRydXN0IENBIDE=","whitelist":false,"attachment":{"hash":"e28866c72d971df063ce52b61094d04901ae33bf5dac1c98cee5f231443b1820","size":1796,"filename":"vKi3BXeuhSDWdRuvjranv-RWto4k9Z05PXzhtTz0LnA=.pem","location":"security-state-staging/intermediates/488fc2c3-5bb3-412f-813e-a4df6c553ea4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vKi3BXeuhSDWdRuvjranv+RWto4k9Z05PXzhtTz0LnA=","crlite_enrolled":false,"id":"1c890a1b-6c30-4168-b0b3-e6f8888a7ef6","last_modified":1562108476867},{"schema":1562108475274,"derHash":"wKHKNkddM7Rx5OWOVXTdkpTTVMRXKVlU21VbJOrSqks=","subject":"CN=COMODO/PKWARE Secure
Email CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGAMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDEmMCQGA1UEAxMdQ09NT0RPL1BLV0FSRSBTZWN1cmUgRW1haWwgQ0E=","whitelist":false,"attachment":{"hash":"536d387994d2fcf3c04c848acb66841104d87c9b0b1ed73ccec9768bd275d362","size":1979,"filename":"javoiDXitAWxKnEeWWJB_XeluETyAl8SAu8OHaB7Q0c=.pem","location":"security-state-staging/intermediates/6124ffbf-c334-4b41-82f5-92517e8e488e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"javoiDXitAWxKnEeWWJB/XeluETyAl8SAu8OHaB7Q0c=","crlite_enrolled":false,"id":"c7a0609a-ed94-40e7-b2ce-ac3e72d18619","last_modified":1562108476061},{"schema":1562108474475,"derHash":"SKfJxaNnNPyeIE1jzmu7zZ4hwZeGBHYM2NMNb0xntnw=","subject":"CN=Plex Devices High Assurance CA,O=Plex\\, Inc.,C=US","subjectDN":"MEsxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpQbGV4LCBJbmMuMScwJQYDVQQDEx5QbGV4IERldmljZXMgSGlnaCBBc3N1cmFuY2UgQ0E=","whit
elist":false,"attachment":{"hash":"3729070872ea8b8dcd9408300fc6e7708a388c0ab4515de46054748a7dbd7915","size":1670,"filename":"vLeOEXjDgoNqSXwuYXRAIm7pApi-S-w8e2zLIwsC76A=.pem","location":"security-state-staging/intermediates/9297fd9c-adef-430a-a45f-6a0e7715a25e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vLeOEXjDgoNqSXwuYXRAIm7pApi+S+w8e2zLIwsC76A=","crlite_enrolled":false,"id":"c99ad4f1-7ce1-4835-9f30-07a94e50f3dd","last_modified":1562108475266},{"schema":1562108472186,"derHash":"kgy86b1V08qNRGgIpZ7fPCIq1XZ6RFPGhu48b5T1W84=","subject":"CN=The University of Texas-Pan American RSA CA,OU=Information Technology,O=The University of Texas-Pan American,L=Edinburg,ST=TX,C=US","subjectDN":"MIGzMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVFgxETAPBgNVBAcTCEVkaW5idXJnMS0wKwYDVQQKEyRUaGUgVW5pdmVyc2l0eSBvZiBUZXhhcy1QYW4gQW1lcmljYW4xHzAdBgNVBAsTFkluZm9ybWF0aW9uIFRlY2hub2xvZ3kxNDAyBgNVBAMTK1RoZSBVbml2ZXJzaXR5IG9mIFRleGFzLVBhbiBBbWVyaWNhbiBSU0EgQ0E=","whitelist":false,"attachment":{"hash":"68a204c47
13144af9e565ce675099fc7333de3ce90a145da40d7e88cf87f1992","size":2211,"filename":"zDuCL0MFlm-s2lxuioDRbpVXq3F1pIFe3Ogdl6yJbPc=.pem","location":"security-state-staging/intermediates/93cc4789-ad8f-42af-a3d7-ba55126aae58.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zDuCL0MFlm+s2lxuioDRbpVXq3F1pIFe3Ogdl6yJbPc=","crlite_enrolled":false,"id":"803e4821-11f5-4be0-b520-db82af50d777","last_modified":1562108472928},{"schema":1562108470681,"derHash":"xJw1DlqCBeBj50xVSplDNbhDXJllJ9TvGisMe1FYSy0=","subject":"CN=Buypass Class 3 CA 3,O=Buypass AS-983163327,C=NO","subjectDN":"MEsxCzAJBgNVBAYTAk5PMR0wGwYDVQQKDBRCdXlwYXNzIEFTLTk4MzE2MzMyNzEdMBsGA1UEAwwUQnV5cGFzcyBDbGFzcyAzIENBIDM=","whitelist":false,"attachment":{"hash":"954fa22283314bcbe40077bc8cee7655cbcfce4fb215854858c5599d8c8b498f","size":1723,"filename":"b2TqrhO3HsQ2hHTQB23iQnAAL127LlWqd3L_IgvgTtk=.pem","location":"security-state-staging/intermediates/379744b3-624d-49d1-b082-83d5b607dc72.pem","mimetype":"application/x-pem-file"},"pubKey
Hash":"b2TqrhO3HsQ2hHTQB23iQnAAL127LlWqd3L/IgvgTtk=","crlite_enrolled":true,"id":"636e348f-d4b7-425a-aabb-4eab295a6c6e","last_modified":1562108471419},{"schema":1562108469933,"derHash":"geBxsB8B3EPuRYwOG9y8hItHRiwmtM4Z7pAVQWvG34k=","subject":"CN=DigiCert Class 3 RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGkRpZ2lDZXJ0IENsYXNzIDMgUlNBIENBIEcx","whitelist":false,"attachment":{"hash":"7669ec2c677f7c33ea164f3d8991239b21a5698efb50b48e0cb9ac939a508051","size":1658,"filename":"iHVCWDAkTkDEQzK_sRixqnC3Qp1KI3tOEHgKB14IEjE=.pem","location":"security-state-staging/intermediates/8c415eed-4867-4bda-81c4-10a03eb5b973.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iHVCWDAkTkDEQzK/sRixqnC3Qp1KI3tOEHgKB14IEjE=","crlite_enrolled":false,"id":"8fa42d62-2705-4c2b-8527-12fff6081ec6","last_modified":1562108470673},{"schema":1562108469181,"derHash":"T9c0GQRvkIaIJtWBU2kx0i5UlD680F
nLdiE5TXSTQ8U=","subject":"CN=STRATO SSL - G3,OU=Domain Validated SSL,O=STRATO AG,C=DE","subjectDN":"MFoxCzAJBgNVBAYTAkRFMRIwEAYDVQQKEwlTVFJBVE8gQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRgwFgYDVQQDEw9TVFJBVE8gU1NMIC0gRzM=","whitelist":false,"attachment":{"hash":"651a5cc911bb69e9769352cd79204ebad0b8c18a0618514fbc2f3b18fbf1985f","size":1699,"filename":"qvSFQBzCFM6BzrM7CfDEVTkxQPTvaKcxyp8jRACn-_g=.pem","location":"security-state-staging/intermediates/fe9022e1-381b-43c0-bf53-e4e296637182.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qvSFQBzCFM6BzrM7CfDEVTkxQPTvaKcxyp8jRACn+/g=","crlite_enrolled":false,"id":"f362a89a-ec51-4c83-b355-5992a88e47e8","last_modified":1562108469925},{"schema":1562108468428,"derHash":"P994ilpl5qKdjBVQ2CRJBqO4p7fT2pve3XSOQYOnY8k=","subject":"CN=GeoTrust DV SSL SHA256 CA - G2,OU=Domain Validated SSL,O=GeoTrust Inc.,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEnMCUGA1UEAxMeR2VvVHJ1c3
QgRFYgU1NMIFNIQTI1NiBDQSAtIEcy","whitelist":false,"attachment":{"hash":"c021152fa65496c7d3044515d2b06d1fae2374b0af0f3a15b7898923ab81ec9b","size":1723,"filename":"1i8gOxF9EpNXxb95VRtBODr-LfSjs4yA5TdHoH3gAeI=.pem","location":"security-state-staging/intermediates/6513678f-bcad-46a9-9e10-82fa65ea35db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1i8gOxF9EpNXxb95VRtBODr+LfSjs4yA5TdHoH3gAeI=","crlite_enrolled":false,"id":"1d033b5b-0c9c-49e6-8018-fe710f401820","last_modified":1562108469174},{"schema":1562108466881,"derHash":"tuTI2dV1phQE3laOJ71vMEjXsPgDBl4vZSYmC9yj0hE=","subject":"CN=Hewlett Packard Enterprise Collaboration CA G21,OU=Class 2 Managed PKI Individual Subscriber CA,O=Hewlett Packard Enterprise Company,C=US","subjectDN":"MIGrMQswCQYDVQQGEwJVUzErMCkGA1UEChMiSGV3bGV0dCBQYWNrYXJkIEVudGVycHJpc2UgQ29tcGFueTE1MDMGA1UECxMsQ2xhc3MgMiBNYW5hZ2VkIFBLSSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0ExODA2BgNVBAMTL0hld2xldHQgUGFja2FyZCBFbnRlcnByaXNlIENvbGxhYm9yYXRpb24gQ0EgRzIx","whitelist":false
,"attachment":{"hash":"96b02933ee42ce251c97ba41e496414d33f3c5e1c2a412abc53c2e02a4188766","size":2093,"filename":"Z90auS_kRdRG5Ao7y14bu7yNh6EQunNHlS4BvcxrXqg=.pem","location":"security-state-staging/intermediates/ca9b4a36-f032-4648-9039-916ec02a384f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z90auS/kRdRG5Ao7y14bu7yNh6EQunNHlS4BvcxrXqg=","crlite_enrolled":false,"id":"d6eec88c-c2ad-4bbc-8fa8-2a3910ffb27c","last_modified":1562108467674},{"schema":1562108465327,"derHash":"8BflEJGLd9pn5NAg4rdqQkYYdugi9iDFVzvLw7uzdAY=","subject":"CN=Gandi Secure Email CA,O=GANDI SAS,C=FR","subjectDN":"MEExCzAJBgNVBAYTAkZSMRIwEAYDVQQKEwlHQU5ESSBTQVMxHjAcBgNVBAMTFUdhbmRpIFNlY3VyZSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"7374bb117a04dbe56b2af679a65a85a2c734afce7e88acb81917ecd528ba648e","size":1719,"filename":"iFIEeQ06wWLDY4tmZC6npViJr_VFbFCHUdRkqmIc7OY=.pem","location":"security-state-staging/intermediates/dec7936f-0abc-4ce6-95ac-65368ca76b94.pem","mimetype":"application/x-pem-file
"},"pubKeyHash":"iFIEeQ06wWLDY4tmZC6npViJr/VFbFCHUdRkqmIc7OY=","crlite_enrolled":false,"id":"8561ee44-dd28-4da1-ad1c-2cd801669b4f","last_modified":1562108466116},{"schema":1562108464555,"derHash":"oloZVGgZ0EgADvnGV3xLzY0hVbHkNGpFmdbIt5eZ1KE=","subject":"CN=DarkMatter Secure CA,O=DarkMatter LLC,C=AE","subjectDN":"MEUxCzAJBgNVBAYTAkFFMRcwFQYDVQQKDA5EYXJrTWF0dGVyIExMQzEdMBsGA1UEAwwURGFya01hdHRlciBTZWN1cmUgQ0E=","whitelist":false,"attachment":{"hash":"17a8659515054ccd708b7578033a8260071fbc5776d9f8d781877d7eb0ab17fc","size":2446,"filename":"_NdsyiNH5c1bOTR_Uc9DZUtpor_JBzZwpr5H2HAebg4=.pem","location":"security-state-staging/intermediates/aae3464a-97e3-430d-abca-3a3589b81fef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/NdsyiNH5c1bOTR/Uc9DZUtpor/JBzZwpr5H2HAebg4=","crlite_enrolled":true,"id":"fb7a603d-e9a8-4251-ba50-4366055db1f3","last_modified":1562108465319},{"schema":1562108462256,"derHash":"jXNz845j2DDAzqosMzMPIaLHdAjuPPvFlcDS89MvQiQ=","subject":"CN=AlwaysOnSSL ECC CA G1,OU
=Domain Validated SSL,O=CertCenter AG,C=DE","subjectDN":"MGQxCzAJBgNVBAYTAkRFMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEeMBwGA1UEAxMVQWx3YXlzT25TU0wgRUNDIENBIEcx","whitelist":false,"attachment":{"hash":"6cd13823e7a07d0b6d63d3b9c92770bf894f5e25fefc4e8199730c15424c4112","size":1142,"filename":"40Fa99C7P_qSeG5RhWDK4bUcBBT4PiEO_gqhJF0vZqQ=.pem","location":"security-state-staging/intermediates/edeee72e-1d4e-43f0-b5b0-f8cdf445085f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"40Fa99C7P/qSeG5RhWDK4bUcBBT4PiEO/gqhJF0vZqQ=","crlite_enrolled":false,"id":"c9f1fa0d-0267-4cae-9099-43d21b02ada0","last_modified":1562108463012},{"schema":1562108461484,"derHash":"kPqY1kbdXwBgLWjRfddrVe5RzaPTki8NvdEEgPWZCs0=","subject":"O=Government Root Certification Authority,C=TW","subjectDN":"MD8xCzAJBgNVBAYTAlRXMTAwLgYDVQQKDCdHb3Zlcm5tZW50IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"461fb473d9abcb1549d2bb8dc7f25d3d5d8ffcd271bcfd212d93
39e162d6e4cf","size":2259,"filename":"pRovOgUOg4pQUGlleNu-2qwaEH7i2dSPrlBdGNDaXPg=.pem","location":"security-state-staging/intermediates/cd7dee2a-eebb-414f-bd65-a154eaf83a0f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pRovOgUOg4pQUGlleNu+2qwaEH7i2dSPrlBdGNDaXPg=","crlite_enrolled":true,"id":"80730951-6e3a-4fd6-83ff-a24e2b107f4f","last_modified":1562108462248},{"schema":1562108460724,"derHash":"uzlJcDXtlYPShs3nD7ZE65WAZZgJKx6NjxG8A116R2o=","subject":"CN=Riverbed Certificate Issuer,O=Riverbed Technology\\, Inc.,C=US","subjectDN":"MFcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlSaXZlcmJlZCBUZWNobm9sb2d5LCBJbmMuMSQwIgYDVQQDExtSaXZlcmJlZCBDZXJ0aWZpY2F0ZSBJc3N1ZXI=","whitelist":false,"attachment":{"hash":"380d64120c38a475d1d02f25161d62ca2438dd34d22cc5fdc5ff8914d2ee748e","size":1837,"filename":"mLNcfRP6zZz8Ur0uU9bhIs_pxrgspWgbw-3oVVm2LZM=.pem","location":"security-state-staging/intermediates/51c4f2c3-b6a5-4cf4-9883-a9fc87d42f7b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mLNcfRP
6zZz8Ur0uU9bhIs/pxrgspWgbw+3oVVm2LZM=","crlite_enrolled":false,"id":"b91bef53-0465-4340-bc6f-1b264e20858f","last_modified":1562108461476},{"schema":1562108459225,"derHash":"GUAL5bejH7czkXcAeJ0vCiRxwMnVBsDlBMBsFtfLF8A=","subject":"CN=DigiCert SHA2 High Assurance Server CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLzAtBgNVBAMTJkRpZ2lDZXJ0IFNIQTIgSGlnaCBBc3N1cmFuY2UgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"97ebf8501ebeef539292b72802d284d4a90895579053c7ca04829988d01099fd","size":1687,"filename":"k2v657xBsOVe1PQRwOsHsw3bsGT2VzIqz5K-59sNQws=.pem","location":"security-state-staging/intermediates/c00739e2-a5f0-4bfc-bd66-49b848083fe1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k2v657xBsOVe1PQRwOsHsw3bsGT2VzIqz5K+59sNQws=","crlite_enrolled":true,"id":"6bad67e8-353f-45a0-88bf-f84ca74f9d08","last_modified":1562108459963},{"schema":1562108457728,"derHash":"TJ4FOPmFaQ3p1c4c
OPFsJLTDmhcQwIgc2wbir9t1e00=","subject":"CN=Deutscher Bundestag CA - G02,O=Deutscher Bundestag,L=Berlin,ST=Berlin,C=DE","subjectDN":"MHQxCzAJBgNVBAYTAkRFMQ8wDQYDVQQIDAZCZXJsaW4xDzANBgNVBAcMBkJlcmxpbjEcMBoGA1UECgwTRGV1dHNjaGVyIEJ1bmRlc3RhZzElMCMGA1UEAwwcRGV1dHNjaGVyIEJ1bmRlc3RhZyBDQSAtIEcwMg==","whitelist":false,"attachment":{"hash":"691728107bc477123f2b50cf26ee2991f3ba95b969683fd4fe04926cd388a729","size":1999,"filename":"p-DGsZUedDpJ0iAR6valV2XZykAPIyB_t6FdqCpsNck=.pem","location":"security-state-staging/intermediates/801fd9f6-afcf-4260-913d-7cedfb8d1f69.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"p+DGsZUedDpJ0iAR6valV2XZykAPIyB/t6FdqCpsNck=","crlite_enrolled":true,"id":"4b7cd555-ac58-4744-b9ae-1f90ccfdbd42","last_modified":1562108458465},{"schema":1562108456943,"derHash":"KFJhsTo5JkWtzcIueVlPj8qLbvgVyW6iUI2MaJs11JA=","subject":"SERIALNUMBER=201917,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UECh
MTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTE3","whitelist":false,"attachment":{"hash":"b4c42fc4159a8e09a7be7d92b67f375fe8a4a1289555b5146e634c922dfebc7c","size":2333,"filename":"pJ115qaM3iy0fBjotKRhuL4ZOLmB8hkeEaSrcQjAX-E=.pem","location":"security-state-staging/intermediates/94254f29-2c38-49e2-aa81-74e7a43490e6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pJ115qaM3iy0fBjotKRhuL4ZOLmB8hkeEaSrcQjAX+E=","crlite_enrolled":false,"id":"2e788e05-bc12-4ee0-993f-0e4ce6728971","last_modified":1562108457720},{"schema":1562108455439,"derHash":"vzmkJB9C1SI2iUSz3FPtnqpax3NeJC4GJ8DdW7pxRIQ=","subject":"CN=VR IDENT EV SSL CA 2018,OU=VR IDENT,O=Fiducia & GAD IT AG,C=DE","subjectDN":"MGAxCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMREwDwYDVQQLDAhWUiBJREVOVDEgMB4GA1UEAwwXVlIgSURFTlQgRVYgU1NMIENBIDIwMTg=","whitelist":false,"attachment":{"hash":"771df57314c0ff60060e643c897bc3d2c750306ce65c3893ac7971eccbfaa626","size":2101,"filename":"WDFtLnObNhLxa9
b3x6LeuoWAZeafyD6K2Il4Wi_HzF0=.pem","location":"security-state-staging/intermediates/26d00339-07ff-4371-8b44-fe90949d947d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WDFtLnObNhLxa9b3x6LeuoWAZeafyD6K2Il4Wi/HzF0=","crlite_enrolled":true,"id":"d028614d-4a78-4253-b0be-7dafb1e46f70","last_modified":1562108456185},{"schema":1562108449412,"derHash":"hXYPd9sP0Nk8Ie4DZLjqsJuCz0m3hJgxA4IJtbEIE2M=","subject":"CN=DigiCert Federated ID L3 CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0IEZlZGVyYXRlZCBJRCBMMyBDQQ==","whitelist":false,"attachment":{"hash":"7688296a490812398f07da4054aa6c862d6971d10625571f6f958e6dcf89cf40","size":1861,"filename":"D_y1VvJ2qndIKmqJ6xcIr7CNwy7j0tZxmfALqY3I9DY=.pem","location":"security-state-staging/intermediates/dbf7ff78-daad-447b-9fd4-d935233f7746.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D/y1VvJ2qndIKmqJ6xcIr7CNwy7j0tZxmf
ALqY3I9DY=","crlite_enrolled":false,"id":"50c11f47-25d1-43c8-a40c-7dbbed4dec9b","last_modified":1562108450170},{"schema":1562108447119,"derHash":"7zVswpmqY3kWyBpIiRtbovMzogZNk6iboU9joUqmslE=","subject":"CN=Go Daddy Secure Code Signing Certificate Authority - G2,OU=http://certs.godaddy.com/repository/,O=GoDaddy.com\\, LLC,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIHAMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEZMBcGA1UEChMQR29EYWRkeS5jb20sIExMQzEtMCsGA1UECxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMUAwPgYDVQQDEzdHbyBEYWRkeSBTZWN1cmUgQ29kZSBTaWduaW5nIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcy","whitelist":false,"attachment":{"hash":"2a9da51343ba17fc69416527b4e61c230d78d040f1a4f4a653929473419fc67c","size":1776,"filename":"ZKrsHPc_itlBFX0ia7RhbHINkdKu7eJaRcSBtF1rbBk=.pem","location":"security-state-staging/intermediates/2354bf54-5e88-4dad-8baa-b8c573e7c4b1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZKrsHPc/itlBFX0ia7RhbHINkdKu7eJaRcSBtF1rbBk=","
crlite_enrolled":false,"id":"f9148830-33ed-4e5a-9e6a-dc463e9110ab","last_modified":1562108447878},{"schema":1562108446333,"derHash":"IOPoh0eo2I4RpSdSEDLcjK6SvDO0XJPu4E9iSnDckgo=","subject":"CN=Huntsville Hospital System CA,OU=Orion Health Direct Secure Messaging,O=Huntsville Hospital System,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzEjMCEGA1UEChMaSHVudHN2aWxsZSBIb3NwaXRhbCBTeXN0ZW0xLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEmMCQGA1UEAxMdSHVudHN2aWxsZSBIb3NwaXRhbCBTeXN0ZW0gQ0E=","whitelist":false,"attachment":{"hash":"4f9fab69c2825ed8051a167e929634c1a24478267e05efe7c084c5d300c59d25","size":2308,"filename":"4jZ0K-YfJqocNa6Q3OoluSDNkSjq0ytpvAtrDgTqLuQ=.pem","location":"security-state-staging/intermediates/8cf75bef-731d-4866-a120-e05cba8d7698.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4jZ0K+YfJqocNa6Q3OoluSDNkSjq0ytpvAtrDgTqLuQ=","crlite_enrolled":false,"id":"048d5070-4d74-42a3-bdd2-1e5791e0b347","last_modified":1562108447112},{"schema":1562108445570,"derH
ash":"gN2eNJfzVOMLis850EbdT1phj3iJI26zT3jVTRXNalA=","subject":"CN=Amazon,OU=Server CA 1A,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQTEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"f502b13e5af94af796e88c4080574a5ad68c2787ff0f7bdb34061720b135d3eb","size":1544,"filename":"ZLtb2AMR-j9TvZlATKuHYq1uBIRH0Kl_IZ_OyhZh83w=.pem","location":"security-state-staging/intermediates/b9e331a0-e39f-41ce-a5d3-a151079adcca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZLtb2AMR+j9TvZlATKuHYq1uBIRH0Kl/IZ/OyhZh83w=","crlite_enrolled":false,"id":"dd706920-48c4-43c2-ad79-708be9e0d652","last_modified":1562108446325},{"schema":1562108441761,"derHash":"RYRGunXZMukU8jwrV7fRku3bwhgdlY4Rga1SUXR6Hug=","subject":"CN=DigiCert ECC Secure Server CA,O=DigiCert Inc,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJjAkBgNVBAMTHURpZ2lDZXJ0IEVDQyBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"b2bcbebe7e
27673d1a6a02cea251d16fb5d61462c14b4e5f2959e1d241a38778","size":1333,"filename":"PZXN3lRAy-8tBKk2Ox6F7jIlnzr2Yzmwqc3JnyfXoCw=.pem","location":"security-state-staging/intermediates/64f57389-f6e8-4703-a733-9ac4ef7d0e9d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PZXN3lRAy+8tBKk2Ox6F7jIlnzr2Yzmwqc3JnyfXoCw=","crlite_enrolled":true,"id":"ec135dce-52fb-4ab9-b488-075172498a7c","last_modified":1562108442503},{"schema":1562108441013,"derHash":"ljBWsNlB2dviesd4BT2F5DzHn0dq00z915nCfjgYQOs=","subject":"CN=NCC Group Secure Server CA G3,O=NCC Group,C=US","subjectDN":"MEkxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlOQ0MgR3JvdXAxJjAkBgNVBAMTHU5DQyBHcm91cCBTZWN1cmUgU2VydmVyIENBIEcz","whitelist":false,"attachment":{"hash":"f16945e38e9d095d6f815613d6e34ba2de58cb018adf71a2eaff1dc03a45d3c5","size":1110,"filename":"o054ddOknAfLTeuaAC1q42pNk8GmJ-eXYrMMmlOPyUc=.pem","location":"security-state-staging/intermediates/75e73199-e46f-4f99-82bd-6bb22c48adc2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"o
054ddOknAfLTeuaAC1q42pNk8GmJ+eXYrMMmlOPyUc=","crlite_enrolled":false,"id":"90a2cf68-57ab-4964-a059-d6e9ca04d487","last_modified":1562108441753},{"schema":1562108438751,"derHash":"G9nTNskEXcF0JrmawmUvrjHLncKsPhmwQ5DCSwvUqKA=","subject":"CN=SSL.com NAESB Client Authentication Intermediate CA ECC R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0b24xETAPBgNVBAoMCFNTTCBDb3JwMUMwQQYDVQQDDDpTU0wuY29tIE5BRVNCIENsaWVudCBBdXRoZW50aWNhdGlvbiBJbnRlcm1lZGlhdGUgQ0EgRUNDIFIy","whitelist":false,"attachment":{"hash":"025ec4ec422a32861ce2ee1ff6519ff877f45473617ddfbc0cc4d2d65a1f3403","size":1284,"filename":"-XFI74y_3Si13bQVqU7peqlv_Bm1B62UTJzvE6VW0eg=.pem","location":"security-state-staging/intermediates/86db5367-7cdb-43be-bc89-89822bb5d464.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+XFI74y/3Si13bQVqU7peqlv/Bm1B62UTJzvE6VW0eg=","crlite_enrolled":false,"id":"f5fb2bf8-c421-4d28-86ec-271b94f105e5","last_modified":156210843949
1},{"schema":1562108437991,"derHash":"MoTgNczXH3odBjrpjimx5ZEjEa2fbZEYhMr513HTfE0=","subject":"CN=BlackCert\\, Inc. RSA OV Certification Authority,O=BlackCert\\, Inc.,L=Denver,ST=CO,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDTzEPMA0GA1UEBxMGRGVudmVyMRgwFgYDVQQKEw9CbGFja0NlcnQsIEluYy4xNzA1BgNVBAMTLkJsYWNrQ2VydCwgSW5jLiBSU0EgT1YgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"a606699a644f90e31cdac13ce9ab6fe654fc1b68e04d29ed2be0f02b771c6ddb","size":2150,"filename":"B5IV9Zui5uDR_htFQKKJviedASQLhuhY2W547xasQvc=.pem","location":"security-state-staging/intermediates/65c4a648-66cf-4447-ad46-c424ead1c1d0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B5IV9Zui5uDR/htFQKKJviedASQLhuhY2W547xasQvc=","crlite_enrolled":false,"id":"50ca3b4d-bf64-427e-b5f2-60f0150b7f77","last_modified":1562108438743},{"schema":1562108436479,"derHash":"2oVGgW2JHBJB6Th95DbRuffqcNuh6z0l9YJxzoFqerw=","subject":"CN=Apple Public Server ECC CA 2 - G1,O=Apple Inc.,C=US","subjec
tDN":"ME4xCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSowKAYDVQQDEyFBcHBsZSBQdWJsaWMgU2VydmVyIEVDQyBDQSAyIC0gRzE=","whitelist":false,"attachment":{"hash":"96414faae6fe080e422a2e6dffda79775450c27bd46afac2672914234e85706a","size":1358,"filename":"kKxRozcrd_eR6KCzq3nM59ZL2rXyJMQOx5NjXVurVaw=.pem","location":"security-state-staging/intermediates/08d896b9-e7d5-440e-a842-0552e86ff576.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kKxRozcrd/eR6KCzq3nM59ZL2rXyJMQOx5NjXVurVaw=","crlite_enrolled":false,"id":"1d2ac87d-efa3-4196-9b3d-7656b94384ac","last_modified":1562108437238},{"schema":1562108433427,"derHash":"NWpfTZlOnvp8rvxJF2iRHWXsJZd0ZbYQ4vKapEcmMcM=","subject":"CN=EC-SectorPublic,OU=Serveis P\u00fablics de Certificaci\u00f3,O=CONSORCI ADMINISTRACIO OBERTA DE CATALUNYA,C=ES","subjectDN":"MIGIMQswCQYDVQQGEwJFUzEzMDEGA1UECgwqQ09OU09SQ0kgQURNSU5JU1RSQUNJTyBPQkVSVEEgREUgQ0FUQUxVTllBMSowKAYDVQQLDCFTZXJ2ZWlzIFDDumJsaWNzIGRlIENlcnRpZmljYWNpw7MxGDAWBgNVBAMMD0VDLVNlY3RvclB1YmxpYw==","whi
telist":false,"attachment":{"hash":"8aa452217d865dd183b477c08181966ceab5ca68b4abe8ee3224d4a860effb60","size":2101,"filename":"VMk3U3j_saU9dzdCeDTxe0MSzuZR2tplayTBfNxG2oQ=.pem","location":"security-state-staging/intermediates/8e636754-d680-47c7-8862-2e0d71bd6568.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VMk3U3j/saU9dzdCeDTxe0MSzuZR2tplayTBfNxG2oQ=","crlite_enrolled":true,"id":"8a63a6e7-575b-46fb-bdf4-944f8aa5edcc","last_modified":1562108434176},{"schema":1562108432677,"derHash":"KMu04NnE7m0ErI8UcXYFrjpL2Mv40IGyevbtsvPXajI=","subject":"CN=DigiCert Grid Trust CA G2,OU=www.digicert.com,O=DigiCert Grid,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCBHcmlkMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSIwIAYDVQQDExlEaWdpQ2VydCBHcmlkIFRydXN0IENBIEcy","whitelist":false,"attachment":{"hash":"2030c0b03af2fba71a3c252cde6988edc7bbd22d1d2515bf5da0d0ccf16c5a03","size":1796,"filename":"5TmPqy9bKSAy0zKN0Mz_yBIgKGk_pgZ4TMaSTFRh9xw=.pem","location":"security-state-staging/interm
ediates/062c27f3-e7a5-48a0-8734-535cb038e150.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5TmPqy9bKSAy0zKN0Mz/yBIgKGk/pgZ4TMaSTFRh9xw=","crlite_enrolled":true,"id":"0aee0acd-3e30-437a-b011-55d61c8d46c4","last_modified":1562108433420},{"schema":1562108431893,"derHash":"PtCuZ6FDLIPYIQHeabLuXn8gMCcJ2VeQc6MC2pD0hTM=","subject":"CN=TrustSafe Domain Validated CA,OU=SSL Department,O=Isimtescil Bilisim Anonim Sirketi,L=Istanbul,C=TR","subjectDN":"MIGNMQswCQYDVQQGEwJUUjERMA8GA1UEBwwISXN0YW5idWwxKjAoBgNVBAoMIUlzaW10ZXNjaWwgQmlsaXNpbSBBbm9uaW0gU2lya2V0aTEXMBUGA1UECwwOU1NMIERlcGFydG1lbnQxJjAkBgNVBAMMHVRydXN0U2FmZSBEb21haW4gVmFsaWRhdGVkIENB","whitelist":false,"attachment":{"hash":"748834790eb69db784c3f00d7f2ef2b64cf353435e5de3e69ac4ca2c81299276","size":2247,"filename":"90w8QxLDw7OA3WHogRdF8WutmwS2zB2cr21T0-Sun5o=.pem","location":"security-state-staging/intermediates/32d1002c-6eee-400e-a7ec-8b0235165445.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"90w8QxLDw7OA3WHogRdF8WutmwS
2zB2cr21T0+Sun5o=","crlite_enrolled":true,"id":"29a0cb2e-7719-4c2f-9360-00c82a4a3c72","last_modified":1562108432669},{"schema":1562108430382,"derHash":"bEfTZcE7yMw9be9djwerjb6jyNSUXWUaqYVKnJo8xxw=","subject":"CN=Certum Extended Validation CA SHA2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGHMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSswKQYDVQQDEyJDZXJ0dW0gRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQSBTSEEy","whitelist":false,"attachment":{"hash":"0c8cfb3c29a92dbd2d2289a8b8babc8b12040ee59493a752f19f90d04a232032","size":1731,"filename":"HYLX8fqXEbN3Nn7-5kDCagbbzZnSoXsP-rAxbZJ4isM=.pem","location":"security-state-staging/intermediates/d9eaba09-d66e-487d-9974-8980bc0a838e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HYLX8fqXEbN3Nn7+5kDCagbbzZnSoXsP+rAxbZJ4isM=","crlite_enrolled":true,"id":"53f85a16-b4c6-49b5-b7ae-79f9a96b81be","last_modified":1562108431124},{"schema":1562108
429620,"derHash":"d9bCr1p7hvY9mRjIdTN3nyrwjTXPoU2kk4yAP1PeGKE=","subject":"CN=SwissSign Personal Gold CA 2014 - G22,O=SwissSign AG,C=CH","subjectDN":"MFQxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxLjAsBgNVBAMTJVN3aXNzU2lnbiBQZXJzb25hbCBHb2xkIENBIDIwMTQgLSBHMjI=","whitelist":false,"attachment":{"hash":"37ef04fb6f6156e237c6f04ae3b383028744a07d5a6a4197c49d3411c82108f0","size":2389,"filename":"l5kY-a2-qCNGMn7LXb_lGEENF-dZOLccQOZBKr40wVE=.pem","location":"security-state-staging/intermediates/6a316d67-95bd-4ab5-aef3-82bd300391d7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"l5kY+a2+qCNGMn7LXb/lGEENF+dZOLccQOZBKr40wVE=","crlite_enrolled":true,"id":"26a70827-d9ed-46cc-8952-77eb4121605e","last_modified":1562108430373},{"schema":1562108428868,"derHash":"CzOSEtfP8XosWeNWabWOdzUBM3UKeNqUBHcO3UcN73Y=","subject":"CN=GlobalSign Organization Validation CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYW
xTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzI=","whitelist":false,"attachment":{"hash":"0e6fef16a9dfd3b1fc541bf1ed445460dda807a212171958df2ea10863a94d13","size":1581,"filename":"IQBnNBEiFuhj-8x6X8XLgh01V9Ic5_V3IRQLNFFc7v4=.pem","location":"security-state-staging/intermediates/c31bd046-861b-47b4-b83f-7da8f65eb61e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IQBnNBEiFuhj+8x6X8XLgh01V9Ic5/V3IRQLNFFc7v4=","crlite_enrolled":true,"id":"065d9c56-c2d7-42eb-8986-f6e198626d65","last_modified":1562108429611},{"schema":1562108428107,"derHash":"xhkwd8YYnR37v4E7h9x8vwSYrPcniHvH7FQyCQbem8g=","subject":"CN=Deutsche Telekom AG Issuing CA 01,OU=Trust Center,O=Deutsche Telekom AG,C=DE","subjectDN":"MG4xCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNEZXV0c2NoZSBUZWxla29tIEFHMRUwEwYDVQQLDAxUcnVzdCBDZW50ZXIxKjAoBgNVBAMMIURldXRzY2hlIFRlbGVrb20gQUcgSXNzdWluZyBDQSAwMQ==","whitelist":false,"attachment":{"hash":"42323bfb5127113b4438824fb58d3af80732c28856150ce28e9ba8a079d9df2d","size":2333,"filename
":"6FKZ0XUSLykGJ_GTHFYeoN0IGYULT_v-FT0CIQgo_9k=.pem","location":"security-state-staging/intermediates/eb470e98-5598-4d83-8575-ea122484a072.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6FKZ0XUSLykGJ/GTHFYeoN0IGYULT/v+FT0CIQgo/9k=","crlite_enrolled":false,"id":"3aa58b0f-f271-443e-b359-6c266dbd9ca7","last_modified":1562108428860},{"schema":1562108427352,"derHash":"FfrEJaqEQEs2L6NInrZ9BV1donb4aFxNaY2hgw1CDw8=","subject":"CN=COMODO RSA Client Authentication and Secure Email CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGXMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE9MDsGA1UEAxM0Q09NT0RPIFJTQSBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIFNlY3VyZSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"6d952d782fa2f84e580c545480b40eeae3fab20a3eba7b734b158271c48b1117","size":2105,"filename":"mHI0vDHAQ12vglM3cO2DlsvGPmhqena8_DpLQz3BaYs=.pem","location":"security-state-staging/intermediates
/df4e2dce-92b3-41f1-8479-4de071dddbfe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mHI0vDHAQ12vglM3cO2DlsvGPmhqena8/DpLQz3BaYs=","crlite_enrolled":true,"id":"e9149e45-f71f-4714-887f-be55784c958e","last_modified":1562108428099},{"schema":1562108425846,"derHash":"qbrrbzgUtMNDENqE3tOsOC2gErhNIH1KObFnHPWB9ME=","subject":"CN=Gehirn Managed Certification Authority - RSA Digital ID,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIGKMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMUAwPgYDVQQDEzdHZWhpcm4gTWFuYWdlZCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIFJTQSBEaWdpdGFsIElE","whitelist":false,"attachment":{"hash":"9d3dd522c6781ec5c3a2a5d0e4fe04233096cafc6063899f7128d1dba3ae9a00","size":2158,"filename":"UbDxt_jWD-1wTemqPnXtZYGyWnVxg1DGdCspV6DLqOI=.pem","location":"security-state-staging/intermediates/d473bf66-6ea1-4118-ab26-b32ab412136a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UbDxt/jWD+1wTemqPnXtZYGyWnVxg1DGdCspV6DLq
OI=","crlite_enrolled":false,"id":"52cca6b4-44db-46a4-a159-3fb79dc4e263","last_modified":1562108426596},{"schema":1562108425078,"derHash":"NFcQZ1JAAhKQOjVFyjsu84SkVpcr2VHY2EDBsKN576E=","subject":"CN=Sectigo ECC Organization Validation Secure Server CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGVMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxPTA7BgNVBAMTNFNlY3RpZ28gRUNDIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"5b59d79497cc46bd9ade87bc119d6b5080a06bda160f1f1455a641a59af50c9d","size":1337,"filename":"NodEgLRdUtj_Cm5LdQFzr6BIONhbXlzcV7NAqMo879U=.pem","location":"security-state-staging/intermediates/81767626-1716-426f-855f-3a063a5ec84a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NodEgLRdUtj/Cm5LdQFzr6BIONhbXlzcV7NAqMo879U=","crlite_enrolled":true,"id":"5ce2d1bd-9d4d-4ded-b4fb-dfd347048cf8","last_modified":1562108425838},{"sc
hema":1562108423559,"derHash":"kemNCUfBJUlOqvKjjQh74Hga8g2KFO6MOf7NxILPX4I=","subject":"CN=JCAN Public CA1 - G3,OU=JCAN Public CA1 - G3,O=JIPDEC,C=JP","subjectDN":"MFwxCzAJBgNVBAYTAkpQMQ8wDQYDVQQKEwZKSVBERUMxHTAbBgNVBAsTFEpDQU4gUHVibGljIENBMSAtIEczMR0wGwYDVQQDExRKQ0FOIFB1YmxpYyBDQTEgLSBHMw==","whitelist":false,"attachment":{"hash":"8715c938f66a00c894f04f3ef621c7b599a8b2e13eb998f7287d00d756bc284b","size":1618,"filename":"9VucP103hsLA3O6-YdMs0Xb-Ebf2eG--F7ZVgCe-B7w=.pem","location":"security-state-staging/intermediates/fc3bc551-be4c-4643-b4a8-9c47defcf8e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9VucP103hsLA3O6+YdMs0Xb+Ebf2eG++F7ZVgCe+B7w=","crlite_enrolled":false,"id":"40053026-a20d-4902-a676-37e6280f263b","last_modified":1562108424314},{"schema":1562108422021,"derHash":"6GX1g6kozLanKGuU55IO4fSZjAMLQ4aJ6Vg7zNasUmE=","subject":"CN=Symantec SAS EV Code Signing CA,O=Symantec Corporation,C=US","subjectDN":"MFYxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEoMCY
GA1UEAxMfU3ltYW50ZWMgU0FTIEVWIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"337db3cb21f94b91820cbcc8f642633962faa317942d17c576ac1c2794189bff","size":1585,"filename":"ZxpdBOLTJS_kzdVgZXygrgtlyU-prl3vrT0h-s-62rw=.pem","location":"security-state-staging/intermediates/a306f3fa-06db-436a-a5c4-9e567203cfa7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZxpdBOLTJS/kzdVgZXygrgtlyU+prl3vrT0h+s+62rw=","crlite_enrolled":false,"id":"1570212f-0a9d-4cdc-8dc3-23b95d91c327","last_modified":1562108422770},{"schema":1562108420475,"derHash":"E8a3OVvGT8Bs7yzlP2bUuYAMUs2IFu43Uy86skuBZcw=","subject":"CN=K Software Certificate Authority (DV) 2,O=K Software,L=Ashland,ST=KY,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJLWTEQMA4GA1UEBxMHQXNobGFuZDETMBEGA1UEChMKSyBTb2Z0d2FyZTEwMC4GA1UEAxMnSyBTb2Z0d2FyZSBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgKERWKSAy","whitelist":false,"attachment":{"hash":"b5bebedbc80eec959a6861be597ae614a1b9569ca5c08388b478dd281dd1e7a7","size":2138,"filename":"fL2W
qC2l5uf2-UsREkC4vpvX1l1w6N47XmmbDTOPHoM=.pem","location":"security-state-staging/intermediates/6f39f731-4c07-4245-b48d-2f223af99539.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fL2WqC2l5uf2+UsREkC4vpvX1l1w6N47XmmbDTOPHoM=","crlite_enrolled":true,"id":"02bd1d38-93b5-4067-ba88-0ff77d58e2b1","last_modified":1562108421264},{"schema":1562108419697,"derHash":"F06drmVEoHySXOrjoACgPJJUJpOlVcH8nmC5js06wX4=","subject":"SERIALNUMBER=201912,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTEy","whitelist":false,"attachment":{"hash":"5b8b8402870a642d23670d933707eb7f84aa868a1d4eefc7cf0662245aa3ad21","size":2333,"filename":"xNZ3P4W2umfy0BWer-9Vg-Vb0i62qHEzfsjbZ50ayLs=.pem","location":"security-state-staging/intermediates/2d27de25-cdcc-4a6f-a95e-0256cdc2d762.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xNZ3P4W2umfy0BWer+9Vg+Vb0i6
2qHEzfsjbZ50ayLs=","crlite_enrolled":false,"id":"2613d4d8-6244-44f1-908d-c456ecf17c6e","last_modified":1562108420466},{"schema":1562108418936,"derHash":"zHI8pITxsETH1CotSfFz93pUdi5d3qRM5HtTHwSPMzo=","subject":"SERIALNUMBER=201816,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODE2","whitelist":false,"attachment":{"hash":"a44d57c6928b5d6fe4358c55101521dde08dec3196b3e455157ab3064e29e159","size":2333,"filename":"iZcoQqVY1Shs4RFS4buBmKFfplxRq_qotaDZ_dizH5s=.pem","location":"security-state-staging/intermediates/e402cac3-292a-4520-a48d-abe845e4e403.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iZcoQqVY1Shs4RFS4buBmKFfplxRq/qotaDZ/dizH5s=","crlite_enrolled":false,"id":"9db6356b-6c7b-4d8b-b48e-4766d60776cd","last_modified":1562108419689},{"schema":1562108418187,"derHash":"QRRL1BdMMVLhylJvd9n5zonevE66bHePgVwhFktRAdM=","subject":"CN=W
ISeKey CertifyID Advanced Services CA 4,OU=Copyright (c) 2016 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGSMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEmMCQGA1UECxMdQ29weXJpZ2h0IChjKSAyMDE2IFdJU2VLZXkgU0ExFjAUBgNVBAsTDUludGVybmF0aW9uYWwxMTAvBgNVBAMTKFdJU2VLZXkgQ2VydGlmeUlEIEFkdmFuY2VkIFNlcnZpY2VzIENBIDQ=","whitelist":false,"attachment":{"hash":"95344e4cd8faaef89e2c2b2a1e95b7a3f7cb66fe9f8125d2ad51a3eebb0fd966","size":1865,"filename":"czPh4iiE8c9phL0gdQlH3pi0J03JPqAzh4UnwUPK_Ho=.pem","location":"security-state-staging/intermediates/47311600-cf24-4f24-a91a-b0372535414e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"czPh4iiE8c9phL0gdQlH3pi0J03JPqAzh4UnwUPK/Ho=","crlite_enrolled":true,"id":"1d7c7208-5af5-41ba-bdf5-ba68ae6bfe91","last_modified":1562108418928},{"schema":1562108416654,"derHash":"nkNiqRiokAmHfHuLGQ52OuASrUfBzKX8zxZvwJK8Kt4=","subject":"CN=NETLOCK Trust Qualified QSCD CA,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"MGExCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdW
RhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMSgwJgYDVQQDDB9ORVRMT0NLIFRydXN0IFF1YWxpZmllZCBRU0NEIENB","whitelist":false,"attachment":{"hash":"a9db5eb17262cb517f68c8b87a2d5cdf87701cef4f06e04fc0682b56add2277d","size":2081,"filename":"olqhNjTm2Sp9m1ZCWJdK_014dkyXVLKhU2hA03JqJDI=.pem","location":"security-state-staging/intermediates/e8f32acc-3396-4ecf-80ac-5467edd7dc61.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"olqhNjTm2Sp9m1ZCWJdK/014dkyXVLKhU2hA03JqJDI=","crlite_enrolled":false,"id":"2a3597e8-9e52-40c9-8dcc-bdcde662da91","last_modified":1562108417422},{"schema":1562108415879,"derHash":"zHJT696ffpLLope1ut7Rsi5c6spSXiAbTcQQ9PNQS14=","subject":"CN=CFCA EV OCA,O=China Financial Certification Authority,C=CN","subjectDN":"MFUxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdDaGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFDASBgNVBAMMC0NGQ0EgRVYgT0NB","whitelist":false,"attachment":{"hash":"74214137d4d8e9fcca062824947ddab76b72e3385e4e90362d532dea748a76cf","size":1898,"filename":"Ub-bKk6h-qrzcElkX0
7080gHiz8CDNkXagA7GJtPu0I=.pem","location":"security-state-staging/intermediates/7b653369-09f2-4882-9c83-209a35b305e5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ub+bKk6h+qrzcElkX07080gHiz8CDNkXagA7GJtPu0I=","crlite_enrolled":true,"id":"2f50d8ff-d71a-4851-afa7-4fb7a4e14792","last_modified":1562108416646},{"schema":1562108414362,"derHash":"3VusTxu1NWrpjT8MjiTFnfhBmaVvePHBYRlqrXAoMJQ=","subject":"CN=HARICA Qualified Legal Entities ECC SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGbMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTE1MDMGA1UEAwwsSEFSSUNBIFF1YWxpZmllZCBMZWdhbCBFbnRpdGllcyBFQ0MgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"a4cd0b48e010309b799dbe232f333f24ec85e074e6fd8da5a72edd0e25b44499","size":1414,"filename":"gEkeI7w_XC0tO__4tVBt-LIgmfNb_WGyHCLBVLOc6dM=.pem","location":"security-state-staging/intermediates/1a8c88
f8-0214-411b-ba36-7189845bcd0d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gEkeI7w/XC0tO//4tVBt+LIgmfNb/WGyHCLBVLOc6dM=","crlite_enrolled":false,"id":"c6f7214a-3948-4a66-9853-a1cd614541b8","last_modified":1562108415116},{"schema":1562108410570,"derHash":"YHXaXOzRXWWExVYDItXAn8IZnlLep5IdkQQKp1JIZy4=","subject":"CN=NCC Group Secure Server CA G2,O=NCC Group,C=US","subjectDN":"MEkxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlOQ0MgR3JvdXAxJjAkBgNVBAMTHU5DQyBHcm91cCBTZWN1cmUgU2VydmVyIENBIEcy","whitelist":false,"attachment":{"hash":"f12f3260268153b74fe5f7a70e593d2e60ab8a06d81aedc45bbc58dfba23d7b3","size":1593,"filename":"I00VnH3kFOOpwcnmh-WRlnA_EFwJgSkqGVgxV5O2veg=.pem","location":"security-state-staging/intermediates/8e1d6726-9296-4299-8659-1eaa656eb71c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"I00VnH3kFOOpwcnmh+WRlnA/EFwJgSkqGVgxV5O2veg=","crlite_enrolled":true,"id":"9690b65c-a95f-41d0-b2fb-794178af9721","last_modified":1562108411311},{"schema":1562108409064,"derHash":"JBE2Mn
3ArshJc9H6my0NwCd5cDeuPtZUVk47hfx9siE=","subject":"CN=AffirmTrust Commercial Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=AffirmTrust,C=US","subjectDN":"MIGKMQswCQYDVQQGEwJVUzEUMBIGA1UECgwLQWZmaXJtVHJ1c3QxLTArBgNVBAsMJGh0dHA6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291cmNlczE2MDQGA1UEAwwtQWZmaXJtVHJ1c3QgQ29tbWVyY2lhbCBFeHRlbmRlZCBWYWxpZGF0aW9uIENB","whitelist":false,"attachment":{"hash":"3d38da18b7f343201573fda5c10ce7e844328f110190ddaa3e93682e93c4f324","size":1581,"filename":"cP3S-p60iPGa8-tLw-iQ2NE3CAx2vu0EeyZs6EXiCyo=.pem","location":"security-state-staging/intermediates/e3f6fafa-7ce4-4548-9824-9e111896a9f0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cP3S+p60iPGa8+tLw+iQ2NE3CAx2vu0EeyZs6EXiCyo=","crlite_enrolled":false,"id":"c5710470-cd77-44c2-83de-2a5580439c6a","last_modified":1562108409809},{"schema":1562108407555,"derHash":"TLXLcF1JUkl7TtfEaoVk6lyRNyefOMhre8qOiIOGiwk=","subject":"CN=Atos TrustedRoot Client-CA 2012,O=Atos,C=DE","subjectDN":"MEYxKDAmBgNVBA
MMH0F0b3MgVHJ1c3RlZFJvb3QgQ2xpZW50LUNBIDIwMTIxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"237c2a98d0510ae3a9b74e7c36f58c7ec853417862f70d9eb1c558c23bcff6d9","size":1544,"filename":"QmoGZPrbEdG8ih-gUVH1279QqNMzEBlTyT6SsmZm4wo=.pem","location":"security-state-staging/intermediates/33f056bb-fc6e-4125-8eda-19f374d949e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QmoGZPrbEdG8ih+gUVH1279QqNMzEBlTyT6SsmZm4wo=","crlite_enrolled":false,"id":"44de3fa2-feb4-4729-b8cc-b010e83aeb80","last_modified":1562108408307},{"schema":1562108406771,"derHash":"YrSPUeWGhnb9ebndnbmLqShJS6c0QDxYM5PELOAK1Eg=","subject":"CN=Valid Certificadora Digital SSL DV CA 2018,OU=VALID SSL DV,O=VALID CERTIFICADORA DIGITAL,L=S\u00c3O PAULO,ST=S\u00c3O PAULO,C=BR","subjectDN":"MIGpMQswCQYDVQQGEwJCUjETMBEGA1UECAwKU8ODTyBQQVVMTzETMBEGA1UEBwwKU8ODTyBQQVVMTzEVMBMGA1UECxMMVkFMSUQgU1NMIERWMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRh
bCBTU0wgRFYgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"de35a9e8e654d603d0f474837e0d281de2ee85cb77fc4e646d172e507ed6d447","size":1886,"filename":"2UPUODmQxMZsvFIsK7JgdFSPY-kZ_qKP-7aXPh1_bx8=.pem","location":"security-state-staging/intermediates/f3d5b520-757c-47d4-ad47-ad1a07b45316.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2UPUODmQxMZsvFIsK7JgdFSPY+kZ/qKP+7aXPh1/bx8=","crlite_enrolled":true,"id":"bee64529-5dc9-4da4-a777-437f3b51e31b","last_modified":1562108407547},{"schema":1562108404463,"derHash":"uITtZSdDNodifTUVfpBGkNLf9qXc084me7rxWcBvUFQ=","subject":"CN=Qualified e-Szigno CA 2009,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MH4xCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEjMCEGA1UEAwwaUXVhbGlmaWVkIGUtU3ppZ25vIENBIDIwMDkxHzAdBgkqhkiG9w0BCQEWEGluZm9AZS1zemlnbm8uaHU=","whitelist":false,"attachment":{"hash":"bf48fc2c3b14d73b262a97912ba1131615bfc904ad5308aa6b2e6cf791f65740","size":1756,"filename":"Z91mM3fIfALcmTPBS54fQeHpI3uGuUg9k
gkk7DDv-Fc=.pem","location":"security-state-staging/intermediates/177a6f68-3005-4b93-8a1d-b32344504ae0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z91mM3fIfALcmTPBS54fQeHpI3uGuUg9kgkk7DDv+Fc=","crlite_enrolled":false,"id":"88820ee2-60db-4e83-807f-ac34e6f6689a","last_modified":1562108405220},{"schema":1562108402917,"derHash":"pfL9DWbbTdd6KRTtPHR8vZfnNM9OK28hf7QapOr96tI=","subject":"CN=NetLock Min\u0151s\u00edtett Eat. Spec. (Class Q Legal Spec.) Kiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIG3MQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTFFMEMGA1UEAww8TmV0TG9jayBNaW7FkXPDrXRldHQgRWF0LiBTcGVjLiAoQ2xhc3MgUSBMZWdhbCBTcGVjLikgS2lhZMOz","whitelist":false,"attachment":{"hash":"960b0e99960f66aedab8032a321d21b1ee47b83c0bf8a84a35997f846a5cb818","size":2203,"filename":"ZFsXBjpAqEkgk5r4JAL_ikmxkDiIWah9rr
r4UEJ-IYE=.pem","location":"security-state-staging/intermediates/f4f080e9-09db-4a3b-b6ca-670808743e87.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZFsXBjpAqEkgk5r4JAL/ikmxkDiIWah9rrr4UEJ+IYE=","crlite_enrolled":false,"id":"b99f664a-470e-47f9-8280-2596d76a8af8","last_modified":1562108403692},{"schema":1562108402151,"derHash":"Gu3a3cHtdIVD6vWWDflq1R4hoxZPMKBkDLBzI2XTkGI=","subject":"CN=DigiCert Direct Non-Provider CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKDAmBgNVBAMTH0RpZ2lDZXJ0IERpcmVjdCBOb24tUHJvdmlkZXIgQ0E=","whitelist":false,"attachment":{"hash":"d70798a706e24279bc01aec7ee38e8a6f268c696909fd27a60301559bd6cac7c","size":2028,"filename":"P-Xat14QLgbjUjCT7mpCpRhoSz0DbCWgcxqMJ-N0cF4=.pem","location":"security-state-staging/intermediates/bda76267-a787-4598-8441-1baec31cfa9e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"P+Xat14QLgbjUjCT7mpCpRhoSz0DbCWgcxqMJ+N0cF4="
,"crlite_enrolled":false,"id":"baa93922-a81d-4284-9799-aba68348f2b1","last_modified":1562108402909},{"schema":1562108399777,"derHash":"D2ctkqCwbO6UjwOyclAmAsbjfSoq1pSjHV3jExlukoI=","subject":"CN=Certum Digital Identification CA SHA2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGKMQswCQYDVQQGEwJQTDEiMCAGA1UECgwZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECwweQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQDDCVDZXJ0dW0gRGlnaXRhbCBJZGVudGlmaWNhdGlvbiBDQSBTSEEy","whitelist":false,"attachment":{"hash":"dba1fd363ac38cad212628cf7ec587f5e6478eb1b348d0b671e2f4ecad1116ce","size":1731,"filename":"QdcqIv2OPNsD75w32d9tMDyai2-ClzSRt_49i0WYwbU=.pem","location":"security-state-staging/intermediates/a1b2a835-7618-44f6-a32a-dbdc1ae40941.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QdcqIv2OPNsD75w32d9tMDyai2+ClzSRt/49i0WYwbU=","crlite_enrolled":true,"id":"8110be87-231b-42a7-80a7-db15071d3b5a","last_modified":1562108400573},{"schema":1562108396760,"de
rHash":"OFE1qxjdGQoDvMBgGspvg86jZmQnkevgov2wWcL3dQo=","subject":"CN=Valid Certificadora Digital AlphaSSL CA 2018,OU=VALID AlphaSSL,O=VALID CERTIFICADORA DIGITAL,L=S\u00c3O PAULO,ST=S\u00c3O PAULO,C=BR","subjectDN":"MIGtMQswCQYDVQQGEwJCUjETMBEGA1UECAwKU8ODTyBQQVVMTzETMBEGA1UEBwwKU8ODTyBQQVVMTzEXMBUGA1UECxMOVkFMSUQgQWxwaGFTU0wxJDAiBgNVBAoTG1ZBTElEIENFUlRJRklDQURPUkEgRElHSVRBTDE1MDMGA1UEAxMsVmFsaWQgQ2VydGlmaWNhZG9yYSBEaWdpdGFsIEFscGhhU1NMIENBIDIwMTg=","whitelist":false,"attachment":{"hash":"1d845c0c12f1aa29e304d16f0a848dd922bec000e52dd07fd07e93aa887204fb","size":1894,"filename":"sXlIJeJFOOvNqrgfAHM5544oX_ySPnrWUt8M7eFF0BM=.pem","location":"security-state-staging/intermediates/ddbf549d-2f5c-4a1f-838b-8b58934c19ed.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sXlIJeJFOOvNqrgfAHM5544oX/ySPnrWUt8M7eFF0BM=","crlite_enrolled":true,"id":"1b4a7649-9862-4267-8efa-0fe6bf75a335","last_modified":1562108397499},{"schema":1562108393006,"derHash":"WUXcU0sLHzdzXVrtTrXWZBcvKFruYKnnsYJFqg4RmPY
=","subject":"CN=FujiSSL SHA2 Domain Secure Site CA,O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN":"MHUxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzETMBEGA1UEBxMKU2hpYnV5YS1rdTEUMBIGA1UEChMLTmlqaW1vIEsuSy4xKzApBgNVBAMTIkZ1amlTU0wgU0hBMiBEb21haW4gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"e26de9b3dc4701004f0c895f5950b7c3b99233b7974b7618e6c960f0736fd2ed","size":2138,"filename":"vaPiW3esM9sfzdxIpWhz2dO053le6lZAjqtv-y_vZN8=.pem","location":"security-state-staging/intermediates/c8cb6374-215c-4f0c-bd04-6477b7579404.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vaPiW3esM9sfzdxIpWhz2dO053le6lZAjqtv+y/vZN8=","crlite_enrolled":false,"id":"16682234-e483-4e72-9b5a-9a6efd36c796","last_modified":1562108393755},{"schema":1562108391480,"derHash":"ThB8mBtCrL5BwBBn4W1E22SBTUGT5XIxfqBLh8ecR18=","subject":"CN=Microsoft IT TLS CA 2,OU=Microsoft IT,O=Microsoft Corporation,L=Redmond,ST=Washington,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEB
xMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMRUwEwYDVQQLEwxNaWNyb3NvZnQgSVQxHjAcBgNVBAMTFU1pY3Jvc29mdCBJVCBUTFMgQ0EgMg==","whitelist":false,"attachment":{"hash":"fa0452ec65893af4305ad26caace601ac42397ffc2e9e076caf9a35747718fb4","size":2036,"filename":"wBdPad95AU7OgLRs0FU_E6ILO1MSCM84kJ9y0H-TT7s=.pem","location":"security-state-staging/intermediates/c642cb8e-2b2e-4332-a8a6-2d5d2c3b16d7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wBdPad95AU7OgLRs0FU/E6ILO1MSCM84kJ9y0H+TT7s=","crlite_enrolled":true,"id":"e5c4430f-8a00-49dd-acc5-6d71f306197e","last_modified":1562108392249},{"schema":1562108389969,"derHash":"yeQPToM5bzSnyGGBe07as9wfi6xpn9UMsmH6kSPVXvQ=","subject":"CN=SwissSign Personal Silver CA 2014 - G22,O=SwissSign AG,C=CH","subjectDN":"MFYxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxMDAuBgNVBAMTJ1N3aXNzU2lnbiBQZXJzb25hbCBTaWx2ZXIgQ0EgMjAxNCAtIEcyMg==","whitelist":false,"attachment":{"hash":"8b3dff1c600553b50452dcbd5783cbfaa219a177d66705c2de0f41eb51b439a5","
size":2398,"filename":"m0Mz3XVaph4DGN-UfcVV7i83DtSCwW0evxwDvZf_j18=.pem","location":"security-state-staging/intermediates/2b6e11e8-fc81-45eb-9865-4123414df1e4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m0Mz3XVaph4DGN+UfcVV7i83DtSCwW0evxwDvZf/j18=","crlite_enrolled":true,"id":"59ced421-04b9-4022-85c6-56f10093da01","last_modified":1562108390730},{"schema":1562108387700,"derHash":"O7dLHmfyh2k2ivEdxJmzH04EWaeG87DYSbautZ0JJAI=","subject":"CN=SSLs.com ECC OV Secure Server CA,O=SSLs.com,L=Phoenix,ST=Arizona,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRAwDgYDVQQHEwdQaG9lbml4MREwDwYDVQQKEwhTU0xzLmNvbTEpMCcGA1UEAxMgU1NMcy5jb20gRUNDIE9WIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"4939e1795fca3391bc0db9bc8f5811b9b0e674f81acfea9231d664951a81cb88","size":1293,"filename":"8OVFe7aea8Jz58DI1YaYq0kntK7F4fquqS_LHwOMg5o=.pem","location":"security-state-staging/intermediates/495221d4-c8f4-46e1-af68-9c7206d5a087.pem","mimetype":"application/x-pem-file
"},"pubKeyHash":"8OVFe7aea8Jz58DI1YaYq0kntK7F4fquqS/LHwOMg5o=","crlite_enrolled":false,"id":"e7f1ddc8-069b-4e0c-bc6d-e01d625d6a08","last_modified":1562108388457},{"schema":1562108386186,"derHash":"wwglzEhNigQOU88UmxrJfd23UxuquaApSZVd0ZOpI00=","subject":"CN=MilleniumSign Client Certificate CA RSA,O=MilleniumSign Limited,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGJMQswCQYDVQQGEwJNVTEYMBYGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTAwLgYDVQQDDCdNaWxsZW5pdW1TaWduIENsaWVudCBDZXJ0aWZpY2F0ZSBDQSBSU0E=","whitelist":false,"attachment":{"hash":"a54a84bb2453ebc048576af4fc423e61caeb9cdcd2fda841b2f06fa4c827ce22","size":2576,"filename":"hOFjGAY71ZLu8PPt7a2bECwp5eQ64MVhmY-YMuRoz9g=.pem","location":"security-state-staging/intermediates/16d6a3de-3853-4c67-bfb2-b55faf4ac55d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hOFjGAY71ZLu8PPt7a2bECwp5eQ64MVhmY+YMuRoz9g=","crlite_enrolled":false,"id":"b5e87096-07f0-434a-a474-cca6d773c227","las
t_modified":1562108386929},{"schema":1562108385424,"derHash":"LYGa85fiidxBcJxKr22jsZBHScN6mVhgdFgDcW19VpA=","subject":"CN=Greek Federation of Judicial Officers Client SubCA R1,O=Greek Federation of Judicial Officers,L=Athens,C=GR","subjectDN":"MIGOMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMS4wLAYDVQQKDCVHcmVlayBGZWRlcmF0aW9uIG9mIEp1ZGljaWFsIE9mZmljZXJzMT4wPAYDVQQDDDVHcmVlayBGZWRlcmF0aW9uIG9mIEp1ZGljaWFsIE9mZmljZXJzIENsaWVudCBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"0906c63c05fc31a8f79768dd10295ea5c4df3a910c3c3f60bacd569952f373aa","size":2653,"filename":"sUxJeFBsILOAdDVzCbynXcS6cAmOTI2zpF9_nG1gGVA=.pem","location":"security-state-staging/intermediates/ffb8f4dd-ad63-4ca3-a907-f70c1586c828.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sUxJeFBsILOAdDVzCbynXcS6cAmOTI2zpF9/nG1gGVA=","crlite_enrolled":false,"id":"6d3f8d5a-8bd5-4e16-a08b-1dd8bcf34dee","last_modified":1562108386178},{"schema":1562108383131,"derHash":"wG4wf3z8HTL6cqTAM8h7kAGa8hbwd11kl4ouymyKIw4=","subjec
t":"CN=GeoTrust TLS RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHzAdBgNVBAMTFkdlb1RydXN0IFRMUyBSU0EgQ0EgRzE=","whitelist":false,"attachment":{"hash":"79eaef52d1cceae208d6f4e81408cb6e81bd7358789d8d112f8acbab4bbf4f9c","size":1638,"filename":"SDG5orEv8iX6MNenIAxa8nQFNpROB_6-llsZdXHZNqs=.pem","location":"security-state-staging/intermediates/bbd8d31a-289d-443b-8947-9b039ab58447.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SDG5orEv8iX6MNenIAxa8nQFNpROB/6+llsZdXHZNqs=","crlite_enrolled":true,"id":"7c77748b-8cf1-488f-82d1-6b8f1e0d0a79","last_modified":1562108383872},{"schema":1562108376267,"derHash":"gi49jOlkYrTRnLaqwvzW0BvIAvknqYgBvuQaYAar2wg=","subject":"CN=MilleniumSign for Code Signing,O=MilleniumSign Limited,C=MU","subjectDN":"MFYxCzAJBgNVBAYTAk1VMR4wHAYDVQQKDBVNaWxsZW5pdW1TaWduIExpbWl0ZWQxJzAlBgNVBAMMHk1pbGxlbml1bVNpZ24gZm9yIENvZGUgU2lnbmluZw==","whitelist":false,"att
achment":{"hash":"0e4a98b456f055fcf5a701286182d62ceff18ce1934e29b1deadf3935437f5e0","size":2410,"filename":"qlXmtrIuqV9vnNsJSci6M_sJhZlMGXPnHJYHEN04TTk=.pem","location":"security-state-staging/intermediates/63c67f55-7a99-421c-b700-926ab61fe6a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qlXmtrIuqV9vnNsJSci6M/sJhZlMGXPnHJYHEN04TTk=","crlite_enrolled":false,"id":"9d070cd0-86dd-4c32-85c2-3a3f935d9318","last_modified":1562108377012},{"schema":1562108373975,"derHash":"DXcmr9BKeUiHGS2L5nVUxnqWJrZ8aYlrarFNk7b1IIY=","subject":"SERIALNUMBER=201813,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODEz","whitelist":false,"attachment":{"hash":"25d4248de319a28014ec0cf686ef1ddc39672abf62dc8c4f119a8b5b211c5176","size":2333,"filename":"gROmlz_cKoI7EYRQWxyKlftDUTbm3X5KMEAtOpzPXcU=.pem","location":"security-state-staging/intermediates/b554297
3-393c-4d34-aecf-bc7d0c94f780.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gROmlz/cKoI7EYRQWxyKlftDUTbm3X5KMEAtOpzPXcU=","crlite_enrolled":false,"id":"65a12163-eb84-4ce9-b597-ed03a1cda6e8","last_modified":1562108374721},{"schema":1562108373221,"derHash":"zXQZjUwj5HAd6leYkjIbnk9HoIvYN0cQuJmq0UlaSzU=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - INFRAESTRUCTURA,OU=Security Services,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGNMQswCQYDVQQGEwJFUzEeMBwGA1UECgwVRmlybWFwcm9mZXNpb25hbCBTLkEuMRowGAYDVQQLDBFTZWN1cml0eSBTZXJ2aWNlczESMBAGA1UEBRMJQTYyNjM0MDY4MS4wLAYDVQQDDCVBQyBGaXJtYXByb2Zlc2lvbmFsIC0gSU5GUkFFU1RSVUNUVVJB","whitelist":false,"attachment":{"hash":"8f2caf097fcff03e0699cc947be66db51b738d2ae4d9481b13fef2c166fac062","size":2487,"filename":"bB8VW561_UmK2rypmzhiK744upv6JxAcWmqJ9U-BKSI=.pem","location":"security-state-staging/intermediates/1cf6f683-a938-4991-9e52-8f8c6761d4a5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bB8VW561/UmK2rypmzhiK744upv6Jx
AcWmqJ9U+BKSI=","crlite_enrolled":true,"id":"9e8d85f9-dacd-4a25-bb9f-968c95b025bb","last_modified":1562108373967},{"schema":1562108370940,"derHash":"BhmQXJLK7Il4jbVXqxd7CkzVBTHj7Vfyc3C37I2sG1o=","subject":"CN=CEDEFOP CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MGsxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEWMBQGA1UEAxMNQ0VERUZPUCBDQSBSMQ==","whitelist":false,"attachment":{"hash":"595d6d2bf45a14ddc1ffd60f66b695249fe00d29fb53b62b1e1bcc2e0a9331d6","size":2853,"filename":"YuB-mSHGYquM5m3YPwjXfls_-AzEjXJZ5KYgzqCxIhA=.pem","location":"security-state-staging/intermediates/ba1f239b-a655-4016-97f1-a4013595e819.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YuB+mSHGYquM5m3YPwjXfls/+AzEjXJZ5KYgzqCxIhA=","crlite_enrolled":true,"id":"17daabb6-2075-4349-9159-d5089bab2f15","last_modified":1562108371712},{"schema":1562108369419,"derHash":"50ZE9Gzd7kcfz81lSMXzM9vRIspKTmfWUtWxaZ4Udn
k=","subject":"SERIALNUMBER=201808,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODA4","whitelist":false,"attachment":{"hash":"5ed7b09bd6e807a0a0a1b54c2def32df4bd844cc32727d659412c47d8d7300ee","size":2333,"filename":"bVohMFSMdT-k3psWkA0KlSPrIugikcLKV_UR1XtURGc=.pem","location":"security-state-staging/intermediates/343127c6-0767-4e2a-b078-bb03764a6aeb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bVohMFSMdT+k3psWkA0KlSPrIugikcLKV/UR1XtURGc=","crlite_enrolled":false,"id":"cfed6e41-e0df-488e-942e-aa80872d1f16","last_modified":1562108370177},{"schema":1562108368659,"derHash":"8i22V6GpKYQavKxSZxpc7op9BpWGr4XOFt4rBd2iIlI=","subject":"CN=KPN BV PKIoverheid Organisatie Services CA - G3,O=KPN B.V.,C=NL","subjectDN":"MHMxCzAJBgNVBAYTAk5MMREwDwYDVQQKDAhLUE4gQi5WLjEXMBUGA1UEYQwOTlRSTkwtMjcxMjQ3MDExODA2BgNVBAMML0tQTiBCViBQS0lvdmVyaGVpZC
BPcmdhbmlzYXRpZSBTZXJ2aWNlcyBDQSAtIEcz","whitelist":false,"attachment":{"hash":"55c902d78023e31283d149be854a3bbbbc37c60fa0b2039ba9f502851c94e5a3","size":2658,"filename":"R1jl1Axf32rFh-a9lHscwaUbU7s51_fPXWqGaLybSy4=.pem","location":"security-state-staging/intermediates/8a71784b-c95a-4df8-8a2d-fbb12104a39d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"R1jl1Axf32rFh+a9lHscwaUbU7s51/fPXWqGaLybSy4=","crlite_enrolled":false,"id":"373e81fd-20d6-4770-afa2-1ca53260afa4","last_modified":1562108369411},{"schema":1562108367880,"derHash":"UH22DSY9PQnSg94uOqQ139h3XlK8M1cC44Mru1fsHL0=","subject":"CN=UZI-register Zorgverlener CA G3,O=CIBG,C=NL","subjectDN":"MF8xCzAJBgNVBAYTAk5MMQ0wCwYDVQQKDARDSUJHMRcwFQYDVQRhDA5OVFJOTC01MDAwMDUzNTEoMCYGA1UEAwwfVVpJLXJlZ2lzdGVyIFpvcmd2ZXJsZW5lciBDQSBHMw==","whitelist":false,"attachment":{"hash":"075195032f66084393a80e78ea0276fb17f7871b6e35672e94580ec0b3e8eca5","size":2552,"filename":"LJbktDpUTtQFxix-TH4PidTGLrt1SGxWZUTWK8SCn9Q=.pem","location":"security-st
ate-staging/intermediates/b35760a9-b8ff-4af3-a942-4c05ac26f0ee.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LJbktDpUTtQFxix+TH4PidTGLrt1SGxWZUTWK8SCn9Q=","crlite_enrolled":false,"id":"fcc67e61-43b8-4146-9df6-e8af510e8ca5","last_modified":1562108368651},{"schema":1562108366331,"derHash":"R7LvvDZw59tLQfIsUfwC7oT7Lb8wgqSfLCaIEi6SEKE=","subject":"CN=emSign SSL CA - G1,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGYxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMRswGQYDVQQDExJlbVNpZ24gU1NMIENBIC0gRzE=","whitelist":false,"attachment":{"hash":"99a70855fffb043bc441083724ab6299ce68f28ce7c76547b9782e13a92d30ce","size":1622,"filename":"qvzNg6-PS7JbCFR-FL-eAfFZOiN6pXXsH1tc9auHlF8=.pem","location":"security-state-staging/intermediates/bc26b3e5-5243-4ed4-89a5-ee29b7471158.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qvzNg6+PS7JbCFR+FL+eAfFZOiN6pXXsH1tc9auHlF8=","crlite_enrolled":true,"id":"136071c8-bc0a-49
f6-9eed-0f027892d327","last_modified":1562108367113},{"schema":1562108365569,"derHash":"01M7cypRim2mjvJmCF4R39EUwOsAks1DUwpE1UuRPtE=","subject":"CN=Secure Site CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MFgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xFzAVBgNVBAMTDlNlY3VyZSBTaXRlIENB","whitelist":false,"attachment":{"hash":"93b4a44bb6fe2449a59754db745e41e1157b80bf49f3c2f364ac5f13eaca7195","size":1662,"filename":"3mc_12C2pwvtV5JjfcxLmbbWYQSbj9yqSWLXKfZcMUw=.pem","location":"security-state-staging/intermediates/23ace4b9-0495-4126-8dd9-71f058704b6b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3mc/12C2pwvtV5JjfcxLmbbWYQSbj9yqSWLXKfZcMUw=","crlite_enrolled":true,"id":"3901ad61-ba32-4e7e-985a-e7e654c02bf8","last_modified":1562108366323},{"schema":1562108364782,"derHash":"odJdKJQfr8DCpuueWWpUeG5zHQpKjjIdufHPLCT91gk=","subject":"CN=Actalis Authentication CA G3,O=Actalis S.p.A./03358520967,L=Milano,ST=Milano,C=IT","subjectDN":"M
HsxCzAJBgNVBAYTAklUMQ8wDQYDVQQIDAZNaWxhbm8xDzANBgNVBAcMBk1pbGFubzEjMCEGA1UECgwaQWN0YWxpcyBTLnAuQS4vMDMzNTg1MjA5NjcxJTAjBgNVBAMMHEFjdGFsaXMgQXV0aGVudGljYXRpb24gQ0EgRzM=","whitelist":false,"attachment":{"hash":"460a8caeba0a48e1b86b9aa61e29fe8358616f76304f1fbd67cb2527e77b9037","size":2243,"filename":"qqFYlKc1lGtPZDV3-S2Iiq7okt-fD5tWC2AM1QEBmEg=.pem","location":"security-state-staging/intermediates/8b0fb3aa-de5c-498b-ab03-3d295c24ca08.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qqFYlKc1lGtPZDV3+S2Iiq7okt+fD5tWC2AM1QEBmEg=","crlite_enrolled":true,"id":"0fdbe9d5-d2f3-4438-9a51-df510e92865a","last_modified":1562108365561},{"schema":1562108363263,"derHash":"2TUmaeKTSTKa9HRcVabBWdyXmrdFklFwoZgGaDgqy8A=","subject":"CN=Trusted Secure ECC Certificate Authority,O=Corporation Service Company,L=Wilmington,ST=DE,C=US","subjectDN":"MIGIMQswCQYDVQQGEwJVUzELMAkGA1UECBMCREUxEzARBgNVBAcTCldpbG1pbmd0b24xJDAiBgNVBAoTG0NvcnBvcmF0aW9uIFNlcnZpY2UgQ29tcGFueTExMC8GA1UEAxMoVHJ1c3RlZCBTZWN1cmUgRUNDIE
NlcnRpZmljYXRlIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"cfc396ec00d40088987be5a9ba74a98ac12898fa4a619448bddb134a79e30a67","size":1325,"filename":"qk3cnu1avJacTvFxrZGIIPiymx-oSzPLYsolI21B5Vc=.pem","location":"security-state-staging/intermediates/af01c122-e4e5-4b49-94d0-0ac4f64457b3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qk3cnu1avJacTvFxrZGIIPiymx+oSzPLYsolI21B5Vc=","crlite_enrolled":true,"id":"7a73afd8-6e01-43c6-b272-bf633048a56e","last_modified":1562108364018},{"schema":1562108362489,"derHash":"Z5dDYhTv7mfN59cDWNTYsA37941ch8YrSn55DXPde9k=","subject":"CN=DigiCert Federated ID US L4 CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJzAlBgNVBAMTHkRpZ2lDZXJ0IEZlZGVyYXRlZCBJRCBVUyBMNCBDQQ==","whitelist":false,"attachment":{"hash":"339cbbd71fc5cd220030216ee58f63f6971ca0554de6c15b8e71f2baa14c5b3f","size":1930,"filename":"B8z1mybAVZ9w8W-4h2REOU9xSFadYswGsHsY67HszP8
=.pem","location":"security-state-staging/intermediates/baed048b-daf3-4094-8898-29a31f22df0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B8z1mybAVZ9w8W+4h2REOU9xSFadYswGsHsY67HszP8=","crlite_enrolled":false,"id":"3326c102-8dd1-4eb1-aa2d-5c7f1b62cb2f","last_modified":1562108363256},{"schema":1562108360956,"derHash":"AqtX5OZ6DLSN0v80gw6KxA9EdvsIymvj9c2Eb2RoQPA=","subject":"CN=COMODO RSA Domain Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGQMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE2MDQGA1UEAxMtQ09NT0RPIFJTQSBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"39df71b20e752359b043877384440f181016fcba83909d1f0480b6b13d1238b7","size":2150,"filename":"klO23nT2ehFDXCfx3eHTDRESMz3asj1muO-4aIdjiuY=.pem","location":"security-state-staging/intermediates/e401cab5-bdc2-42ca-a7cd-4612737cdb04.pem","mimetype":"applicatio
n/x-pem-file"},"pubKeyHash":"klO23nT2ehFDXCfx3eHTDRESMz3asj1muO+4aIdjiuY=","crlite_enrolled":true,"id":"85dd2e16-bfc0-4ca0-8489-e28bc98da7e2","last_modified":1562108361731},{"schema":1562108355542,"derHash":"ufIWQyNjjc4LkiGLQ8QcGysmljiTKdsZ9c961Jtcs3I=","subject":"CN=Gandi Standard SSL CA 2,O=Gandi,L=Paris,ST=Paris,C=FR","subjectDN":"MF8xCzAJBgNVBAYTAkZSMQ4wDAYDVQQIEwVQYXJpczEOMAwGA1UEBxMFUGFyaXMxDjAMBgNVBAoTBUdhbmRpMSAwHgYDVQQDExdHYW5kaSBTdGFuZGFyZCBTU0wgQ0EgMg==","whitelist":false,"attachment":{"hash":"8b8a18be1cbca4662145d1b20e4f1e0f1394d7a0bcacd4d74108106348147956","size":2109,"filename":"WGJkyYjx1QMdMe0UqlyOKXtydPDVrk7sl2fV-nNm1r4=.pem","location":"security-state-staging/intermediates/63de5a2b-d709-4e92-b743-8310ba76d460.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WGJkyYjx1QMdMe0UqlyOKXtydPDVrk7sl2fV+nNm1r4=","crlite_enrolled":true,"id":"75d81643-efbd-4a64-a1d1-bc45d79dc4bc","last_modified":1562108356326},{"schema":1562108354774,"derHash":"CU94xT7F2AgrxdWq0bEdXflSvl
aTM1jb9ZY1QpE6UM0=","subject":"CN=HARICA Qualified Natural Entities SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGZMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEzMDEGA1UEAwwqSEFSSUNBIFF1YWxpZmllZCBOYXR1cmFsIEVudGl0aWVzIFN1YkNBIFIy","whitelist":false,"attachment":{"hash":"ed8b5c559e2fdf67dc679531bb2002bd0c1dcf26404c524d1707664a75852b12","size":2605,"filename":"ac0teCLoYEgCWHxksbpmW-G4cqCFgOJn4OxagiS1C-8=.pem","location":"security-state-staging/intermediates/b83579aa-a5ff-4575-adac-59e8ff66b1ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ac0teCLoYEgCWHxksbpmW+G4cqCFgOJn4OxagiS1C+8=","crlite_enrolled":false,"id":"edaf0f56-3588-493d-821d-fd24d28bc8c8","last_modified":1562108355535},{"schema":1562108354022,"derHash":"KvmI8m9u8Nq5BVaX8JQftOXEIkfKmCgmiV7ymYXTDNY=","subject":"CN=Apple Public Server ECC CA 1 - G1,O=Apple Inc.,C=US","subj
ectDN":"ME4xCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSowKAYDVQQDEyFBcHBsZSBQdWJsaWMgU2VydmVyIEVDQyBDQSAxIC0gRzE=","whitelist":false,"attachment":{"hash":"9965d9b518d900e8daeab6fe08b6e6227a1114bb092251f35ffa9176cc753453","size":1163,"filename":"jT8fGVx6BA9z4arxOCBTK2xfhH6Uhco7diQx-k5Yo38=.pem","location":"security-state-staging/intermediates/782181df-19dc-4eb7-bc29-2f853bbcd8f9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jT8fGVx6BA9z4arxOCBTK2xfhH6Uhco7diQx+k5Yo38=","crlite_enrolled":false,"id":"fdfcd022-f30c-40bf-a845-ed9f60c08730","last_modified":1562108354766},{"schema":1562108353265,"derHash":"kMZx4I5oI7hkbC7BgCN2msD8NDijPBAfZoO5XeMYBSQ=","subject":"CN=COMODO ECC Extended Validation Secure Server CA 2,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGUMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE6MDgGA1UEAxMxQ09NT0RPIEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIg
Q0EgMg==","whitelist":false,"attachment":{"hash":"c9c170b80feb89e0a62d9e1bc3a6e7612dcba1cdbb90d3e362acefa08fbc39b8","size":1366,"filename":"8BVB_xN70KohDkSwXqSXWyZjE3Wl2yUIqPlb8CShV54=.pem","location":"security-state-staging/intermediates/89831d8e-226f-4cf8-8e53-94bbf49b2c8f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8BVB/xN70KohDkSwXqSXWyZjE3Wl2yUIqPlb8CShV54=","crlite_enrolled":false,"id":"8544bcc4-1d96-4822-a172-bfaedf576aa9","last_modified":1562108354014},{"schema":1562108352498,"derHash":"bmzMzdeogw6iKI01dgUylUJcBfXunbS3JjKh4mnd0MM=","subject":"CN=United Parcel Service\\, Inc. RSA Codesigning CA,O=United Parcel Service\\, Inc.,L=Atlanta,ST=GA,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzELMAkGA1UECBMCR0ExEDAOBgNVBAcTB0F0bGFudGExJDAiBgNVBAoTG1VuaXRlZCBQYXJjZWwgU2VydmljZSwgSW5jLjE3MDUGA1UEAxMuVW5pdGVkIFBhcmNlbCBTZXJ2aWNlLCBJbmMuIFJTQSBDb2Rlc2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"4f65ee96ef6dbaf15ab703424d981e03c5b84da1123c789b217310553578e58a","size":21
25,"filename":"RPhKvLLQGKteXTbVCCrOIPDyAFANSXGqusA4X-LA8NE=.pem","location":"security-state-staging/intermediates/5f7d9e0e-c92a-47cf-bd97-24ecd52cfb08.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RPhKvLLQGKteXTbVCCrOIPDyAFANSXGqusA4X+LA8NE=","crlite_enrolled":false,"id":"cf08ce37-7a22-489d-80a6-bd86c0596d6b","last_modified":1562108353258},{"schema":1562108350087,"derHash":"GFwK5HBCO51GeKfBBVtbSNkHBVBbeU4hXAY4UTNpgfQ=","subject":"CN=GeoTrust EV RSA CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0dlb1RydXN0IEVWIFJTQSBDQSAyMDE4","whitelist":false,"attachment":{"hash":"a0a4b49c90bff29d9b9a8c5f2ef42bb769f854311f7a16f1b9861161f8870867","size":1666,"filename":"yWulDX8E5Q0XG4-9jVDljmO2FvAVzIRhn2MppW4vyUM=.pem","location":"security-state-staging/intermediates/7f58a4e2-a3f0-4b3c-bce7-96138c4ad930.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yWulDX8E5Q0XG4+9
jVDljmO2FvAVzIRhn2MppW4vyUM=","crlite_enrolled":true,"id":"da405d05-6b42-461a-ad4d-d8e77fcc80a3","last_modified":1562108350832},{"schema":1562108349322,"derHash":"XmCWWARGGTCsJ7bb40RWeerkExwir7iK96z2oZF7Wro=","subject":"CN=SecureTrust Domain Validation CA\\, Level 1,O=SecureTrust,L=Chicago,ST=Illinois,C=US","subjectDN":"MHwxMjAwBgNVBAMTKVNlY3VyZVRydXN0IERvbWFpbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMRQwEgYDVQQKEwtTZWN1cmVUcnVzdDEQMA4GA1UEBxMHQ2hpY2FnbzERMA8GA1UECBMISWxsaW5vaXMxCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"808680a0c2b3da12440074c2cecf8ba7b7a50796c469c901bf2bae7963658f5d","size":1618,"filename":"3MJ7kgH4AG-ip6CMzIBTeYe9X-9dSxFjCbnEIuYJlWA=.pem","location":"security-state-staging/intermediates/cfd0f4ac-b77c-4563-aeb5-243676326507.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3MJ7kgH4AG+ip6CMzIBTeYe9X+9dSxFjCbnEIuYJlWA=","crlite_enrolled":false,"id":"9bc337d9-2ebf-4b9a-a405-087a0a528af3","last_modified":1562108350078},{"schema":1562108348554,"derHash":"96h
OJOjg2JFUh0chxbZB9Ioe8P87GY9TvgIdtT8Je9A=","subject":"CN=GeoTrust Primary Issuing CA,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtHZW9UcnVzdCBQcmltYXJ5IElzc3VpbmcgQ0E=","whitelist":false,"attachment":{"hash":"4de8a182cd4692f539e1d1dd8938d2138d6e2c5e38b08e367a1f5223133d6790","size":1670,"filename":"N-1Ur2ovpcaBJa_gbazCpyWohrWTdX7YCwfN2n8jSvQ=.pem","location":"security-state-staging/intermediates/87eb41dc-9c52-4580-ad5c-4a0b65a013eb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N+1Ur2ovpcaBJa/gbazCpyWohrWTdX7YCwfN2n8jSvQ=","crlite_enrolled":false,"id":"ef45312a-79cb-4973-8c28-14dc799a414c","last_modified":1562108349314},{"schema":1562108347772,"derHash":"nwIC1JJY2uQREYrxPwVebQxuh239KUMJeiveVFI1YJg=","subject":"SERIALNUMBER=201906,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlw
b3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTA2","whitelist":false,"attachment":{"hash":"6be84562c866325f09ab7303e3c1001be8bb3c68f97aaab49df216cedbbb00ab","size":2333,"filename":"NgK9fKJF5ODcUC7yeq9jYkJgOh_aHc2YrfRLKoa7i20=.pem","location":"security-state-staging/intermediates/092e8bca-4b27-4d32-ab96-d805edc41385.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NgK9fKJF5ODcUC7yeq9jYkJgOh/aHc2YrfRLKoa7i20=","crlite_enrolled":false,"id":"6b470922-d941-49d7-a9f2-333a66bd4a69","last_modified":1562108348545},{"schema":1562108344661,"derHash":"Cqny59lccYt9HrfM29AWToYFeunWaSK8YPmQP5Sg8O8=","subject":"CN=GlobalSign Qualified CA 3,O=GlobalSign nv-sa,C=BE","subjectDN":"MEwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSIwIAYDVQQDExlHbG9iYWxTaWduIFF1YWxpZmllZCBDQSAz","whitelist":false,"attachment":{"hash":"71031147564393ba600fd320c83c634a774e41ba086cc8f9e545656fcdabcef3","size":2109,"filename":"Jq1QOk-soKGVmobJu53tx3FfjSDpUS8-6JHMIRiTfyY=.pem","location":"sec
urity-state-staging/intermediates/9f11ba63-2039-4037-aeaa-70bbf201813d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Jq1QOk+soKGVmobJu53tx3FfjSDpUS8+6JHMIRiTfyY=","crlite_enrolled":false,"id":"2566de5f-27d3-4c41-a2ac-70e1afaa43f0","last_modified":1562108345474},{"schema":1562108341582,"derHash":"uhMFYzTMdV9dJ6qwvpnly5cJ0DQ7QF4c5GlkMxu1xF8=","subject":"SERIALNUMBER=201722,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzIy","whitelist":false,"attachment":{"hash":"6c705a1aa9f045020109076b1368ee11c791ad581eae0d24f9ab47fce2b136c8","size":2402,"filename":"RPN8fKuwvw-VE_LlASEpAHzv7y7CFqofIc36APwmf6U=.pem","location":"security-state-staging/intermediates/4ea45b42-7029-4fa2-9cfa-12aa1c0511dd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RPN8fKuwvw+VE/LlASEpAHzv7y7CFqofIc36APwmf6U=","crlite_enrolled":false,"id":"fe9eaa47-9e
17-4a54-93e3-7e3ede93033a","last_modified":1562108342333},{"schema":1562108339272,"derHash":"GPzgkvo93kVUIjrnmwxJmiD0EUw2MHnSPY6v3JZzk2k=","subject":"CN=eMudhra ECC Domain Validation Secure Server CA,O=eMudhra Technologies Limited,L=Bengaluru,ST=Karnataka,C=IN","subjectDN":"MIGVMQswCQYDVQQGEwJJTjESMBAGA1UECBMJS2FybmF0YWthMRIwEAYDVQQHEwlCZW5nYWx1cnUxJTAjBgNVBAoTHGVNdWRocmEgVGVjaG5vbG9naWVzIExpbWl0ZWQxNzA1BgNVBAMTLmVNdWRocmEgRUNDIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"201778bdc7d2f1a79fae87f89e7f3c87563fb5ae692e5bef6d8a17870194a3d0","size":1345,"filename":"-OTJ6M1upuT7uMaCSaNjlP_D0AMYrqjwUWCEue0H24E=.pem","location":"security-state-staging/intermediates/776486c5-65f5-4d53-a6e6-5d510795f51c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+OTJ6M1upuT7uMaCSaNjlP/D0AMYrqjwUWCEue0H24E=","crlite_enrolled":false,"id":"7c0ed329-430c-4414-a659-6daec3ec0bc0","last_modified":1562108340038},{"schema":1562108336263,"derHash":"7AICWhoVeywCrE
n1Wai2zwchJvg3lJn658Uu0YPakBI=","subject":"CN=WISeKey CertifyID SSL GB CA 1,O=WISeKey,C=CH","subjectDN":"MEcxCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSYwJAYDVQQDEx1XSVNlS2V5IENlcnRpZnlJRCBTU0wgR0IgQ0EgMQ==","whitelist":false,"attachment":{"hash":"91c04850b4728e964f0c7a22327101d5caa482b389819d5ea41e8347b3216573","size":1711,"filename":"V3yMbpIwzARH7Q8FlejONqe3Rck6-AsElwszbRCUyLw=.pem","location":"security-state-staging/intermediates/180c7361-b19f-476a-9846-dea89f9af2d3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V3yMbpIwzARH7Q8FlejONqe3Rck6+AsElwszbRCUyLw=","crlite_enrolled":true,"id":"9d6c25a5-7949-4e2e-8ac2-d9926d5afd5f","last_modified":1562108337008},{"schema":1562108335514,"derHash":"CKJ3P5CLieNfg9wnCvuLxl6NGS8N0ktSEWFxaNYN06s=","subject":"CN=University of Western Macedonia CA R3,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGDMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3
JpdHkxLjAsBgNVBAMTJVVuaXZlcnNpdHkgb2YgV2VzdGVybiBNYWNlZG9uaWEgQ0EgUjM=","whitelist":false,"attachment":{"hash":"07a622c0054b947f643760306b50788cd9b381b0bfd2964a2a8bd78522022944","size":2536,"filename":"Ju8opIlP7q0-XAVutfqY3EgIGywyoMGPTAIfDTzsO3g=.pem","location":"security-state-staging/intermediates/189eb95b-2376-4f85-9562-34baa90ec24b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ju8opIlP7q0+XAVutfqY3EgIGywyoMGPTAIfDTzsO3g=","crlite_enrolled":true,"id":"cd81df63-b9f1-4a6f-8aca-f1449a8779f7","last_modified":1562108336255},{"schema":1562108334757,"derHash":"gOE6LoAIR1GeAj1k9PnPILQ8rdHUa6SBHSas4x4pX7s=","subject":"CN=SECOM Passport for Member PUB CA2,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTI=","whitelist":false,"attachment":{"hash":"1602b83
b6e798319142c013cdb2fe6a89a8b210d20430e1a52898b81763211ad","size":1581,"filename":"3kJ__srPn_Y0kPQ-6atqtlJmgndIlfmZnUwsK0S0epg=.pem","location":"security-state-staging/intermediates/fde92bcb-5acc-4c45-bd04-b6f99f59a57c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3kJ//srPn/Y0kPQ+6atqtlJmgndIlfmZnUwsK0S0epg=","crlite_enrolled":false,"id":"48e148bb-b6f8-45af-8c91-54771ca04156","last_modified":1562108335506},{"schema":1562108332475,"derHash":"s5xKRZbTGRr6Oz0lTSjlxIL80NUA4Kkzf5knfLii7vg=","subject":"CN=TrustID Server CA A52,OU=TrustID Server,O=IdenTrust,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxFzAVBgNVBAsTDlRydXN0SUQgU2VydmVyMR4wHAYDVQQDExVUcnVzdElEIFNlcnZlciBDQSBBNTI=","whitelist":false,"attachment":{"hash":"98d3cfa7dab9b95ecb8cc38637e485c249a12ae6ca445e96105f2708a82c09fa","size":2442,"filename":"baHWPQeCjK_t6GB-okH73C13ZXVDr2QAVt6jQTsq2Ys=.pem","location":"security-state-staging/intermediates/6d66de8a-8c0b-4ade-8054-7f91cdf6accb.pem","mimetype":"ap
plication/x-pem-file"},"pubKeyHash":"baHWPQeCjK/t6GB+okH73C13ZXVDr2QAVt6jQTsq2Ys=","crlite_enrolled":true,"id":"aa0a2c54-cd68-43b3-be06-0831027e3b6b","last_modified":1562108333245},{"schema":1562108330945,"derHash":"YXLXoZlsvvcaAYLdRLmenANXQqnr0DEapzqkczNExaY=","subject":"CN=CloudFlare Inc ECC CA-2,O=CloudFlare\\, Inc.,L=San Francisco,ST=CA,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQQ2xvdWRGbGFyZSwgSW5jLjEgMB4GA1UEAxMXQ2xvdWRGbGFyZSBJbmMgRUNDIENBLTI=","whitelist":false,"attachment":{"hash":"847a716b6f6114e3d4f88a0a3e8e573fce99330a3de33aadc98997578166aad9","size":1321,"filename":"3kcNJzkUJ1RqMXJzFX4Zxux5WfETK-uL6Viq9lJNn4o=.pem","location":"security-state-staging/intermediates/2aee9ab7-0837-4213-bf07-b65e7a210ea5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3kcNJzkUJ1RqMXJzFX4Zxux5WfETK+uL6Viq9lJNn4o=","crlite_enrolled":true,"id":"4f654672-7696-4bd6-84a2-503a66c6cfe4","last_modified":1562108331718},{"schema":15621
08330185,"derHash":"chMOOyiQA0khRhf01vP7hdCEde54vwlcWUWKFNGCiGY=","subject":"CN=Amazon,OU=Server CA 2A,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAyQTEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"2a82794488d990d2916a320c0881fba10016362c3188bf9954c30bf6848d39ec","size":2235,"filename":"G9pa__g3gTgL9wgZj599LbHgZ_FLuep7rnCqwLAwXns=.pem","location":"security-state-staging/intermediates/83918488-ba2c-4ac0-8d46-0bf63d394383.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G9pa//g3gTgL9wgZj599LbHgZ/FLuep7rnCqwLAwXns=","crlite_enrolled":false,"id":"b35b0a67-1556-41a4-a319-97a50209d163","last_modified":1562108330937},{"schema":1562108327127,"derHash":"ykOJyJ3fwxvsJsdLRKhJjFiy2DhRb6AbFPE5NinlikA=","subject":"CN=AffirmTrust Certificate Authority - DV1,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGCMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29
tL3JlcG9zaXRvcnkxMDAuBgNVBAMTJ0FmZmlybVRydXN0IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIERWMQ==","whitelist":false,"attachment":{"hash":"24062c77649490466b59b727862356b7b091396ef80b8d336e7a301146304ddf","size":1662,"filename":"68BRY3XqvlKubfNnBJ64F_17BHUniDemUwxZNNvfdaA=.pem","location":"security-state-staging/intermediates/4683bd6d-bd49-4e42-b154-69a18d94d8c8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"68BRY3XqvlKubfNnBJ64F/17BHUniDemUwxZNNvfdaA=","crlite_enrolled":true,"id":"dcda7a02-af57-41d8-9206-72360ea3f7c1","last_modified":1562108327880},{"schema":1562108325586,"derHash":"Go15Cvmys0191q9htapM8TgLhglcusK8qzW9Vm0BgMM=","subject":"CN=Secure Site Extended Validation CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNVBAMTIlNlY3VyZSBTaXRlIEV4dGVuZGVkIFZhbGlkYXRpb24gQ0E=","whitelist":false,"attachment":{"hash":"8c560a22b1260bcb7f9b8c62c6d191f6064d6125f0146ef483820a79ada1e21a","siz
e":1687,"filename":"GQ1NxZwFxMspL6F7W34V3JpBp8emVEoKYr5gy_rpnLc=.pem","location":"security-state-staging/intermediates/d890ff8b-cd56-49f2-b11e-4effc32732b0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GQ1NxZwFxMspL6F7W34V3JpBp8emVEoKYr5gy/rpnLc=","crlite_enrolled":true,"id":"2bbb4638-a2e8-488a-919c-7ebe87b2d089","last_modified":1562108326359},{"schema":1562108324809,"derHash":"4fLpUAD4FeEcgUkEMLXQLI2B0NJWyF32i1FtbCd2GSY=","subject":"CN=SECOM Passport for Web EV 2.0 CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MF8xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSkwJwYDVQQDEyBTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIEVWIDIuMCBDQQ==","whitelist":false,"attachment":{"hash":"11b2cc7c19c9ea658d73d93b55ba2118401c64553f83df52d6c23d8bb092eba4","size":1618,"filename":"Wa2FjlVfGKwvkiH0LYWh-y-ihHlaTmVQ-gqZEsR3RwY=.pem","location":"security-state-staging/intermediates/13abab2d-5558-442e-9c8c-9f54f283182e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wa2Fj
lVfGKwvkiH0LYWh+y+ihHlaTmVQ+gqZEsR3RwY=","crlite_enrolled":true,"id":"7310f222-43d0-494d-aa65-443d9a816261","last_modified":1562108325576},{"schema":1562108324028,"derHash":"cjdtWQ2aZl05alHSrqkzRjj9SxPW9emTKYMi80Tyt54=","subject":"CN=TrustSign ECC DV CA,O=Ziwit,L=Montpellier,ST=Herault,C=FR","subjectDN":"MGMxCzAJBgNVBAYTAkZSMRAwDgYDVQQIEwdIZXJhdWx0MRQwEgYDVQQHEwtNb250cGVsbGllcjEOMAwGA1UEChMFWml3aXQxHDAaBgNVBAMTE1RydXN0U2lnbiBFQ0MgRFYgQ0E=","whitelist":false,"attachment":{"hash":"c7de9b26efc4eb3648124f025156bdbc60d2ee4df9bc5f2b40e0f3889a11aa13","size":1276,"filename":"DuV9kinKceC5mT-5PkiRrL4kz_gqWVCOloO5GTLSA8I=.pem","location":"security-state-staging/intermediates/829cc9be-f9c4-483a-8537-7de6820e7357.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DuV9kinKceC5mT+5PkiRrL4kz/gqWVCOloO5GTLSA8I=","crlite_enrolled":false,"id":"cd8781e3-476c-41fc-b598-6657d68d188e","last_modified":1562108324796},{"schema":1562108323189,"derHash":"SytyugviemNHjCc6DFtS9puJ42marU86Gg6v5muZUmU=","subj
ect":"CN=MarketWare - Solu\u00e7\u00f5es para Mercados Digitais\\, Lda. RSA EV CA,OU=Controlled by COMODO exclusively for MarketWare,O=MarketWare - Solu\u00e7\u00f5es para Mercados Digitais\\, Lda.,L=Lisboa,ST=Lisboa,C=PT","subjectDN":"MIHxMQswCQYDVQQGEwJQVDEPMA0GA1UECBMGTGlzYm9hMQ8wDQYDVQQHEwZMaXNib2ExPTA7BgNVBAoMNE1hcmtldFdhcmUgLSBTb2x1w6fDtWVzIHBhcmEgTWVyY2Fkb3MgRGlnaXRhaXMsIExkYS4xODA2BgNVBAsTL0NvbnRyb2xsZWQgYnkgQ09NT0RPIGV4Y2x1c2l2ZWx5IGZvciBNYXJrZXRXYXJlMUcwRQYDVQQDDD5NYXJrZXRXYXJlIC0gU29sdcOnw7VlcyBwYXJhIE1lcmNhZG9zIERpZ2l0YWlzLCBMZGEuIFJTQSBFViBDQQ==","whitelist":false,"attachment":{"hash":"43c29684fc1791cf7a701d66ef4aad6b8f263f4f9493176e519013a2a3477626","size":2341,"filename":"qCF-PPuByTYruFr6MIeAiLpr2ebZPZHBVpg73sPCJwI=.pem","location":"security-state-staging/intermediates/9baba706-ea2c-4038-ab33-bc9d68d0a446.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qCF+PPuByTYruFr6MIeAiLpr2ebZPZHBVpg73sPCJwI=","crlite_enrolled":true,"id":"df37aefa-7686-4f4a-add4-d68ea15fb1
a2","last_modified":1562108324019},{"schema":1562108321668,"derHash":"OXFmwBiQoBUCgI2sxcjf1L8v383BpqzDyxQh2WzzOP0=","subject":"CN=Servision Certification Authority,O=Servision Inc.,C=JP","subjectDN":"MFIxCzAJBgNVBAYTAkpQMRcwFQYDVQQKEw5TZXJ2aXNpb24gSW5jLjEqMCgGA1UEAxMhU2VydmlzaW9uIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"b4a562f44b51aeba750b02340947d52861ec82d00fb13a3c4dba87c57c923205","size":1504,"filename":"kWvg0ZVt3GHilKKOdxJccr8EU2CMQ_ITo4JOlWmPamo=.pem","location":"security-state-staging/intermediates/dd6d3c00-964b-4bdf-8c35-9a318050af9d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kWvg0ZVt3GHilKKOdxJccr8EU2CMQ/ITo4JOlWmPamo=","crlite_enrolled":false,"id":"ccf0f9ed-32a8-4b69-bdeb-0fb197d51839","last_modified":1562108322404},{"schema":1562108320882,"derHash":"jNWR8zFL1XusdLP67i1wRxtdmWpP4ZfmQ4Crr56LMTM=","subject":"CN=Trend Micro S2 CA,O=Trend Micro Inc,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRgwFgYDVQQKDA9UcmVuZCBNaWNybyBJbmMxGjAYBgNVBA
MMEVRyZW5kIE1pY3JvIFMyIENB","whitelist":false,"attachment":{"hash":"660470ac98e8eeae43c687e25c3224ed8bd61fa05d1c8a53bdd72e466955e2f4","size":1609,"filename":"BuGwKUFbAtZDGEd6cE3s5OqR23M2h4ZmIiGT_aw3TpM=.pem","location":"security-state-staging/intermediates/5e931958-8e44-432d-ba06-12c98f350199.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BuGwKUFbAtZDGEd6cE3s5OqR23M2h4ZmIiGT/aw3TpM=","crlite_enrolled":false,"id":"81f56af1-98ca-4c3e-89b4-27e8810e31fe","last_modified":1562108321659},{"schema":1562108319370,"derHash":"kdAFBjP2JXL2eWFIhnZE7jEUCtciZuD5MFp8b9QED58=","subject":"CN=COMODO ECC Domain Validation Secure Server CA 3,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGSMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE4MDYGA1UEAxMvQ09NT0RPIEVDQyBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENBIDM=","whitelist":false,"attachment":{"hash":"32e13862aeb900961956b459740f0146d3e1e95489bfd8
fad22c21965d884d6e","size":1317,"filename":"yRx6JkdTon5X6I6GmE6-8BL0QUZRKbcRvDM_vt2Beyg=.pem","location":"security-state-staging/intermediates/cd53a4d9-0989-4748-90f0-77a5b878e898.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yRx6JkdTon5X6I6GmE6+8BL0QUZRKbcRvDM/vt2Beyg=","crlite_enrolled":false,"id":"9e611c86-fc3a-4ab7-b7e5-7c09eb2cf86a","last_modified":1562108320119},{"schema":1562108317833,"derHash":"VMP1AQQs3MCa6BQ8sZK9XlckyciKarOVqUoaevwmznw=","subject":"CN=DigiCert Federated Healthcare CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKTAnBgNVBAMTIERpZ2lDZXJ0IEZlZGVyYXRlZCBIZWFsdGhjYXJlIENB","whitelist":false,"attachment":{"hash":"fa3f2859e516d877140c95ce6b6cfcc20adcc0576479bd8660cd9467da8d8558","size":2182,"filename":"flPZhpoPaXju4AbnPIUI-vdHW4h2ksR2LklMnV9MpzE=.pem","location":"security-state-staging/intermediates/df4a48bc-c9d4-4f52-9280-98ca919d2d3f.pem","mimetype":"appli
cation/x-pem-file"},"pubKeyHash":"flPZhpoPaXju4AbnPIUI+vdHW4h2ksR2LklMnV9MpzE=","crlite_enrolled":false,"id":"8e0543db-7ee5-46cb-b691-0ecaa2627aa2","last_modified":1562108318607},{"schema":1562108317082,"derHash":"NyuPTOc77fyIcYxAe7az5tj5p5vpVxkNDnEBx7DvmjI=","subject":"CN=NetLock Expressz (Class C) Tan\u00fas\u00edtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIGqMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE4MDYGA1UEAwwvTmV0TG9jayBFeHByZXNzeiAoQ2xhc3MgQykgVGFuw7pzw610dsOhbnlraWFkw7M=","whitelist":false,"attachment":{"hash":"96ba448b3b21c633bd5e293f4383a8b88b67e802476a48d48ba20ffa8359a5ce","size":2182,"filename":"KS2adY6eMaWNhbLW6JREO3Oo34Qy_UvmA5f-f4ROpYw=.pem","location":"security-state-staging/intermediates/6380c544-10af-435b-ae2d-adad842694a3.pem","mimetype":"application/x-pem-file"},"pubKe
yHash":"KS2adY6eMaWNhbLW6JREO3Oo34Qy/UvmA5f+f4ROpYw=","crlite_enrolled":true,"id":"522256d0-e9e9-44e9-b35d-221ddf453cad","last_modified":1562108317826},{"schema":1562108316330,"derHash":"MMwfzLvsAuaJkblkWSD5qZbBJ8L8vQeVhPHXjYh1kbc=","subject":"SERIALNUMBER=201723,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzIz","whitelist":false,"attachment":{"hash":"e4164234795efd76a9f953b98749a822314de01401d5c5078837c4d956d5ba3f","size":2402,"filename":"qVzRfQ2NKawghyfy2P967HGyMNOAxaW-lqGIKQbYwb4=.pem","location":"security-state-staging/intermediates/df4f4f25-4ed1-4bf7-b1ea-24e88ce80fb3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qVzRfQ2NKawghyfy2P967HGyMNOAxaW+lqGIKQbYwb4=","crlite_enrolled":false,"id":"e3ba5f2e-ca62-462e-8dd5-91bc77510b2a","last_modified":1562108317074},{"schema":1562108314030,"derHash":"StuBnCUKLhgzE0BUmdhzUpnIj5c
KUBmidWayflgY9Bs=","subject":"CN=DigiCert SHA2 Assured ID Code Signing,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLjAsBgNVBAMTJURpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBDb2RlIFNpZ25pbmc=","whitelist":false,"attachment":{"hash":"9e9e20d7379e013d029c65c1b9f114e35b9cb392ec440ae8c6a13c462abaf8ff","size":1748,"filename":"-8NGthsZ4RousKQeaozXeiZJDbaHhZwcd6xncoIcZDs=.pem","location":"security-state-staging/intermediates/16ec3e96-c579-4008-bc71-57e4816d320d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+8NGthsZ4RousKQeaozXeiZJDbaHhZwcd6xncoIcZDs=","crlite_enrolled":false,"id":"41e0a36c-c55e-4508-a53e-8813c0916ed2","last_modified":1562108314770},{"schema":1562108312519,"derHash":"ZIU2E8JDY5lgPQ1WC1LwS7j4GoF0bkI4mIOk9ZpFZNU=","subject":"CN=Secure Site Starter DV SSL CA - G2,OU=Domain Validated SSL,O=GeoTrust\\, Inc.,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5HZW9UcnVzdCwgSW5jLjEdMBs
GA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxKzApBgNVBAMTIlNlY3VyZSBTaXRlIFN0YXJ0ZXIgRFYgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"aa3fd009b6c5b5c9c5458fc4dc6385393a7200967a4b5c20281e2f99cfcb3d8f","size":1788,"filename":"eDTKI6X9vxY2k_ZfHbRQ6gLLPTAmRP5hH5orVWntz8U=.pem","location":"security-state-staging/intermediates/8506f034-f774-4313-ae85-555f9a9aa758.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eDTKI6X9vxY2k/ZfHbRQ6gLLPTAmRP5hH5orVWntz8U=","crlite_enrolled":false,"id":"00c0da63-9255-49cb-9d1e-16085032d2d9","last_modified":1562108313269},{"schema":1562108311015,"derHash":"98fij7XnnzFKqsa7upMvFeGnIGn0NdTJ5wf5PKFILuM=","subject":"CN=Qualified e-Szigno TLS CA 2018,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHoxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJzAlBgNVBAMMHlF1YWxpZmllZCBlLVN6aWdubyBUTFMgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"f62124b291cbf9f0ce787625de446e21f2feb0426a05212db
c6111779c02cb02","size":2231,"filename":"B-kJdgVu-sQKTRurO5lOkBlDQ-2-UfVcgWNPVcJ2soQ=.pem","location":"security-state-staging/intermediates/b048750f-1cf2-47ec-9890-3fbaec58d1eb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B+kJdgVu+sQKTRurO5lOkBlDQ+2+UfVcgWNPVcJ2soQ=","crlite_enrolled":true,"id":"eb56311d-499d-4871-aa3c-4d3359fc4ec0","last_modified":1562108311758},{"schema":1562108310265,"derHash":"VHMudAahOPpIra7c2jFWGXKG1lLgiwB3MFc9ntTgOmQ=","subject":"CN=Entrust Class 1 Client CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAxMCBFbnRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDEgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"a8c67b40b563cf63c41b06a70037ad190e434c4ef19f56e4e425fce1a0f1c1c0","size":1760,"filename":"Uhene3DQaQrqKhOQL-xFNX9JZl
3IsIFfWho3SE3EtBQ=.pem","location":"security-state-staging/intermediates/50703850-cc99-4156-803a-48fed64fa2df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uhene3DQaQrqKhOQL+xFNX9JZl3IsIFfWho3SE3EtBQ=","crlite_enrolled":false,"id":"08551b17-2765-4c9f-abf8-ea28abf8f427","last_modified":1562108311008},{"schema":1562108308734,"derHash":"qonEZunQaILA2q9yvg8PvP58HvKqrRkGQMStRPVRfzQ=","subject":"CN=GlobalSign CA for AATL - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIENBIGZvciBBQVRMIC0gU0hBMjU2IC0gRzI=","whitelist":false,"attachment":{"hash":"faa26183cd8190e64a0334a9d0bc1653de74cdfe0addd4bd510ee4563a0b2664","size":1561,"filename":"Am8KjiB_BfHxcttxPcItD0PI_w1pckqm-saoOT32JQg=.pem","location":"security-state-staging/intermediates/d8f0e2b3-c3e9-4f66-a477-5ce6ec6be13f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Am8KjiB/BfHxcttxPcItD0PI/w1pckqm+saoOT32JQg=","crlite_enrolled":true,"id
":"f3363149-33ea-4e28-8538-b42875404ad1","last_modified":1562108309489},{"schema":1562108307971,"derHash":"ABds2DVvL0kt0EqJMAHG72ELHry7E8Yf38O3BUY6B8w=","subject":"SERIALNUMBER=201725,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzI1","whitelist":false,"attachment":{"hash":"92297ee53b100e26523fc1571e27142df221f691610b0e32df6e7afdf38e391e","size":2402,"filename":"P9ABMJpYdeY2_BVGAlcWULo2ZAn_I1lSLzQRDQ2Dduk=.pem","location":"security-state-staging/intermediates/6f729466-79f4-4719-8d47-79130027ab63.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"P9ABMJpYdeY2/BVGAlcWULo2ZAn/I1lSLzQRDQ2Dduk=","crlite_enrolled":false,"id":"d0b10adf-94cf-4423-947b-ba7caf6fa8a8","last_modified":1562108308726},{"schema":1562108306455,"derHash":"gptouX8R3uNEhXrBLrQM5QLuUmARIwFv3r8UIAkaQEg=","subject":"CN=Actalis Organization Validated Server CA G2,O=A
ctalis S.p.A./03358520967,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGVMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEjMCEGA1UECgwaQWN0YWxpcyBTLnAuQS4vMDMzNTg1MjA5NjcxNDAyBgNVBAMMK0FjdGFsaXMgT3JnYW5pemF0aW9uIFZhbGlkYXRlZCBTZXJ2ZXIgQ0EgRzI=","whitelist":false,"attachment":{"hash":"a6d698bddb2882ffe01874cc8b31fb4cd7cb7b59e5753aba4899ac8735e1c3d7","size":2328,"filename":"7OrVER1djNO1n973ik5pn3X3z2McXLh4_UHg4gcP8Qs=.pem","location":"security-state-staging/intermediates/a016d22f-4259-4a3a-a259-0b096b9d9603.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7OrVER1djNO1n973ik5pn3X3z2McXLh4/UHg4gcP8Qs=","crlite_enrolled":true,"id":"33150e34-4a0c-4a16-8c20-614694dcacbc","last_modified":1562108307204},{"schema":1562108305694,"derHash":"tuRKaTQthDY6sSGC8tK4iFAbBjp2vrADUOON3HRxUDQ=","subject":"CN=SSL.com Client Certificate Intermediate CA RSA R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwH
SG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxOjA4BgNVBAMMMVNTTC5jb20gQ2xpZW50IENlcnRpZmljYXRlIEludGVybWVkaWF0ZSBDQSBSU0EgUjI=","whitelist":false,"attachment":{"hash":"70033e723115a4788e75a0975cdeef29d5401951abddea70bbbf2d85524897b8","size":2463,"filename":"i08jg0QBQmEM-JqJgQx323fDRPRGdVoqKp1H7yz79IY=.pem","location":"security-state-staging/intermediates/327c4e9b-94d6-4642-b0c8-34c09ab42569.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i08jg0QBQmEM+JqJgQx323fDRPRGdVoqKp1H7yz79IY=","crlite_enrolled":false,"id":"b29278b7-cf9f-4a99-ac8c-29557d9756be","last_modified":1562108306447},{"schema":1562108304934,"derHash":"wrS770oaZD8zTtCFD5KIdtKuOuNkK5hgFNaMZzwE0IE=","subject":"CN=DigiCert Assured ID Intermediate CA (SHA2),OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMzAxBgNVBAMTKkRpZ2lDZXJ0IEFzc3VyZWQgSUQgSW50ZXJtZWRpYXRlIENBIChTSEEyKQ==","whitelist":false,"attachment":{"hash":"b1d19ffd1ee53e7e96
ff68523c9665541c7f0ad33953b984c40344cfd1b1b610","size":2414,"filename":"39FMK3AAz8IFXNAeBgxX6wMg9P7FiRLFT8ZlWfn_yN4=.pem","location":"security-state-staging/intermediates/310bb2a7-3082-4ca1-9b38-806b747f54a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"39FMK3AAz8IFXNAeBgxX6wMg9P7FiRLFT8ZlWfn/yN4=","crlite_enrolled":false,"id":"aff53e0c-f01a-44b2-8421-76ed33a192d6","last_modified":1562108305686},{"schema":1562108304182,"derHash":"gq1G7N6IJBMQaxyD72XcAtsMZbOHD290S2IoPfb6HVY=","subject":"CN=DigiCert SHA1 Assured ID Code Signing CA - G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xNjA0BgNVBAMTLURpZ2lDZXJ0IFNIQTEgQXNzdXJlZCBJRCBDb2RlIFNpZ25pbmcgQ0EgLSBHMQ==","whitelist":false,"attachment":{"hash":"7231d127229533342baeaa15873fec434cf18f783b1e0d40608577aef1cbf7c9","size":1898,"filename":"0w_4AUxe0Bd0wAJYMdu6EnJD9JmcIGhTrapIAusbp8g=.pem","location":"security-state-staging/intermediate
s/d099988a-680a-48ad-b2cb-9367e335da89.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0w/4AUxe0Bd0wAJYMdu6EnJD9JmcIGhTrapIAusbp8g=","crlite_enrolled":false,"id":"dd18bf6f-8293-49a7-b238-5944b684f761","last_modified":1562108304925},{"schema":1562108301877,"derHash":"RMUKyA7b6eVS48ls5b0RyDfHD1ajOsq88Y2Neps1Dgc=","subject":"CN=EC-PARLAMENT,OU=Serveis Publics de Certificacio+OU=Vegeu https://www.catcert.net/verCIC-2 (c)03+OU=Parlament de Catalunya,O=Agencia Catalana de Certificacio (NIF Q-0801176-I),L=Passatge de la Concepcio 11 08008 Barcelona,C=ES","subjectDN":"MIIBGTELMAkGA1UEBhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2VydGlmaWNhY2lvIChOSUYgUS0wODAxMTc2LUkpMTQwMgYDVQQHEytQYXNzYXRnZSBkZSBsYSBDb25jZXBjaW8gMTEgMDgwMDggQmFyY2Vsb25hMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYDVQQLEyxWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJDSUMtMiAoYykwMzEfMB0GA1UECxMWUGFybGFtZW50IGRlIENhdGFsdW55YTEVMBMGA1UEAxMMRUMtUEFSTEFNRU5U","whitelist":false,"attachment":{"hash":"
17e9173c46bb2384dba7fcb7a0f710c7b429cf4600461a89fba90b1af0a62645","size":2698,"filename":"LbXnRYPxl6yNMAXHjj6wiyi3rAmcF-GQQrZtCBAentM=.pem","location":"security-state-staging/intermediates/210f4610-3bf6-4547-b850-5fccce210bc1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LbXnRYPxl6yNMAXHjj6wiyi3rAmcF+GQQrZtCBAentM=","crlite_enrolled":false,"id":"8a3a7743-6b95-491c-a7fd-c508a3a3588e","last_modified":1562108302644},{"schema":1562108301127,"derHash":"Ol9O91ja1i5DaSRkReBo5Nrf3Uhi3Nw1LLyj9YyxAoo=","subject":"CN=University of Ioannina CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHoxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTElMCMGA1UEAxMcVW5pdmVyc2l0eSBvZiBJb2FubmluYSBDQSBSMg==","whitelist":false,"attachment":{"hash":"e55385a6a99893ba059ad902f14cf08fc7e50c21f0767e96dade7ae8ff26f9f3","size":2519,"filename":"3Z_Xeh-0zD0mx1ntkdzF2uRggW2jjvRv4YohPdsTyH0=.pem","location":"sec
urity-state-staging/intermediates/07946fd8-678e-432f-88dd-926d7a5b0651.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3Z/Xeh+0zD0mx1ntkdzF2uRggW2jjvRv4YohPdsTyH0=","crlite_enrolled":true,"id":"5b78a2dc-204e-4f05-87aa-7d9a687db350","last_modified":1562108301868},{"schema":1562108299591,"derHash":"yVqUJkEOEecO7ZR4Bv2H9vDed7mPHEVL4Q01xEQtwd0=","subject":"CN=Ionian University Client CA R1,O=Ionian University,L=Kerkyra,C=GR","subjectDN":"MGQxCzAJBgNVBAYTAkdSMRAwDgYDVQQHEwdLZXJreXJhMRowGAYDVQQKExFJb25pYW4gVW5pdmVyc2l0eTEnMCUGA1UEAxMeSW9uaWFuIFVuaXZlcnNpdHkgQ2xpZW50IENBIFIx","whitelist":false,"attachment":{"hash":"421344cbf9de9ea4c9deeba9fd22a377f8a6001c222e3d8cf3cdfa2a7da4ebaa","size":2491,"filename":"BKdxsSIs-ijJFbyYWEdpq7cKm2wjAKYw1xIPkxhoTzY=.pem","location":"security-state-staging/intermediates/6b710da6-690c-4e56-9130-7542629ed94f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BKdxsSIs+ijJFbyYWEdpq7cKm2wjAKYw1xIPkxhoTzY=","crlite_enrolled":false,"id":"72505e52-9154-4
1da-9415-e855003b7e6e","last_modified":1562108300343},{"schema":1562108298809,"derHash":"fmr1Cjqd0Bc3IE2RK3ch98CAnMzmQoRXiZIEmqzjSws=","subject":"CN=DigiCert Transition Root G3,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBUcmFuc2l0aW9uIFJvb3QgRzM=","whitelist":false,"attachment":{"hash":"1744c43c724806504fbec8f1f008c72fec893abcf74097d2a9736fa436694410","size":1305,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/c140c6ab-92f6-4c11-8843-daf10323b427.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"93532867-ac56-4307-89f7-2dd212381524","last_modified":1562108299582},{"schema":1562108298021,"derHash":"HhdBoS642ivXbqlsBPUgNZg5cQ9iDoCVL0jdAkChLNg=","subject":"CN=GlobalSign Organization Validated CA - SHA256 - G4,O=Global
Sign nv-sa,C=BE","subjectDN":"MGUxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTswOQYDVQQDEzJHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0ZWQgQ0EgLSBTSEEyNTYgLSBHNA==","whitelist":false,"attachment":{"hash":"f56fe012352f32771440b0a10b06d66c2f469fb83a06518748eaa15ab9720834","size":1622,"filename":"S7kwF_US-qCLAH7QPb4nX6Ms8I_NUy0GV9_-wVRxQe4=.pem","location":"security-state-staging/intermediates/30b37c7c-3a4d-4dfb-b2c4-e2d5477cf21a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S7kwF/US+qCLAH7QPb4nX6Ms8I/NUy0GV9/+wVRxQe4=","crlite_enrolled":false,"id":"8957e3a4-614b-4b99-a5c4-476646f00273","last_modified":1562108298801},{"schema":1562108297261,"derHash":"OYsUmc4Aol9hysPYvuVxYBiAgj7yiL6XcqTRM5hCJZU=","subject":"CN=Prodrive Technologies B.V. OV SSL Issuing CA,OU=IT Services,O=Prodrive Technologies B.V.,L=Son,ST=Noord-Brabant,C=NL","subjectDN":"MIGlMQswCQYDVQQGEwJOTDEWMBQGA1UECBMNTm9vcmQtQnJhYmFudDEMMAoGA1UEBxMDU29uMRQwEgYDVQQLEwtJVCBTZXJ2aWNlczEjMCEGA1UEChMaUHJvZHJpdmUgVGVj
aG5vbG9naWVzIEIuVi4xNTAzBgNVBAMTLFByb2RyaXZlIFRlY2hub2xvZ2llcyBCLlYuIE9WIFNTTCBJc3N1aW5nIENB","whitelist":false,"attachment":{"hash":"60af9aca37322fa5579658de5c5e1492cee409be5bf7326842071c595027df3f","size":1882,"filename":"-wd4uhPIbo8yHwCQuKSPir6tNrh9C4xO-yIp2mXFvWw=.pem","location":"security-state-staging/intermediates/11e8a6e5-dba1-4063-8a86-8ec3c096498d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+wd4uhPIbo8yHwCQuKSPir6tNrh9C4xO+yIp2mXFvWw=","crlite_enrolled":true,"id":"45dbad78-4cd0-4991-b5b2-47889daaaef8","last_modified":1562108298013},{"schema":1562108296484,"derHash":"Rx5dC46FdFDELa80KT6Dl2m6qpZkUQoVpIuDM2vvCmw=","subject":"CN=CSP Code Signing Service CA 2,O=CENTRAL SECURITY PATROLS CO.\\, LTD.,L=Shinjuku-ku,ST=Tokyo,C=JP","subjectDN":"MIGIMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xFDASBgNVBAcTC1NoaW5qdWt1LWt1MSswKQYDVQQKEyJDRU5UUkFMIFNFQ1VSSVRZIFBBVFJPTFMgQ08uLCBMVEQuMSYwJAYDVQQDEx1DU1AgQ29kZSBTaWduaW5nIFNlcnZpY2UgQ0EgMg==","whitelist":false,"attachment":{"hash":"f
3e215956535f23892f1f0bb74d9a78f5bb4021380b7e080da65339c11dfadd0","size":2138,"filename":"l_awPKBJ4UEI-z9_U5Rbx8t0nJMnpt5Zthvcoiu0J78=.pem","location":"security-state-staging/intermediates/23ecae1d-dd6b-4b7a-a260-e41bd9437c08.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"l/awPKBJ4UEI+z9/U5Rbx8t0nJMnpt5Zthvcoiu0J78=","crlite_enrolled":false,"id":"e71b7abd-b38b-4bdf-9596-8523c7cccf32","last_modified":1562108297253},{"schema":1562108295734,"derHash":"gCwq0dIV5XzckBDqQ3rOOZtlcZT71A47teALCA5klt8=","subject":"CN=DigiCert Extended Validation Intermediate CA (SHA2),OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MH0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xPDA6BgNVBAMTM0RpZ2lDZXJ0IEV4dGVuZGVkIFZhbGlkYXRpb24gSW50ZXJtZWRpYXRlIENBIChTSEEyKQ==","whitelist":false,"attachment":{"hash":"73904237d7f0a3a17b5f2c3f1b1275dae7eb95972b2f9bb854178fdf1f3c93ef","size":2450,"filename":"N8yNUCoqmVQZ-ft-5WHTEDP44ZaqSGYV9krPU-6GKxE=.pem","location":"secu
rity-state-staging/intermediates/946ac930-af2f-46ae-ba2b-8469d6da4d27.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N8yNUCoqmVQZ+ft+5WHTEDP44ZaqSGYV9krPU+6GKxE=","crlite_enrolled":false,"id":"00d32bfb-1f50-4f9a-b001-bcb7956c75f4","last_modified":1562108296476},{"schema":1562108294970,"derHash":"xunpk8JYtyEkqtPJwGi27yNXYVXzELMFczNh4gsXyUM=","subject":"CN=Entrust Class 1 Client CA - SHA256,OU=See www.entrust.net/legal-terms+OU=(c) 2015 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG3MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTUgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MSswKQYDVQQDEyJFbnRydXN0IENsYXNzIDEgQ2xpZW50IENBIC0gU0hBMjU2","whitelist":false,"attachment":{"hash":"79a53ad927c3de7c40691b9a6c3fb0d4a6a204940ea279fea186b55c6e73d429","size":1857,"filename":"lH0dapXaEQzIObJaHxVa7uB4l8j3w-wHYQbHKgXEZkQ=.pem","location":"security-state-staging/inter
mediates/49d12b14-17cb-4217-85c7-65e635580b00.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lH0dapXaEQzIObJaHxVa7uB4l8j3w+wHYQbHKgXEZkQ=","crlite_enrolled":false,"id":"3564ed73-7524-4710-8e3c-8934b9358650","last_modified":1562108295725},{"schema":1562108293455,"derHash":"rY1JjAjaJJk2urzdoHIGwTxx510WvjEgvqLY5XIMC7E=","subject":"CN=TrustID SAIC Public Email Issuing CA,O=SAIC,C=US","subjectDN":"MEsxCzAJBgNVBAYTAlVTMQ0wCwYDVQQKEwRTQUlDMS0wKwYDVQQDEyRUcnVzdElEIFNBSUMgUHVibGljIEVtYWlsIElzc3VpbmcgQ0E=","whitelist":false,"attachment":{"hash":"fe515a59c69804f303e416010886b99083e0d92387cf3175e7ad76b66b8064f5","size":2866,"filename":"xQtvQZq-EB3EN98Z5s79c3Oet8M4exlYihCVvU05dDc=.pem","location":"security-state-staging/intermediates/1118623a-93a7-4be6-89a9-07a8f0a9f4d1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xQtvQZq+EB3EN98Z5s79c3Oet8M4exlYihCVvU05dDc=","crlite_enrolled":false,"id":"c05d6677-609b-422a-ac39-28f20ba92e8a","last_modified":1562108294207},{"schema":156210829
2695,"derHash":"mHpclYS0a1mHjkJGD4Pk1h9MJyI2aUbU0hbzNqbxKPc=","subject":"CN=BlackCert\\, Inc. ECC DV Certification Authority,O=BlackCert\\, Inc.,L=Denver,ST=CO,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDTzEPMA0GA1UEBxMGRGVudmVyMRgwFgYDVQQKEw9CbGFja0NlcnQsIEluYy4xNzA1BgNVBAMTLkJsYWNrQ2VydCwgSW5jLiBFQ0MgRFYgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"4851b2159dadaebd9610ff68cc3a0abe70105ceae03d43c0259bae336294d8c6","size":1313,"filename":"UHhlKE9aTixVYvtmCIINV9nOgVj-gicuzrl4dZJypeA=.pem","location":"security-state-staging/intermediates/299ba25a-3c88-4a56-99fc-8d482eacf964.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UHhlKE9aTixVYvtmCIINV9nOgVj+gicuzrl4dZJypeA=","crlite_enrolled":false,"id":"aec144f1-19f3-4440-b9b2-ca0cfb03eabd","last_modified":1562108293448},{"schema":1562108290423,"derHash":"G5em8Nu9kMEgcKSyJFDIntfangDRsMHTLHOfkfBUQ2k=","subject":"CN=USERTrust ECC Extended Validation Code Signing CA,O=The USERTRUST Network,L=Jersey
City,ST=New Jersey,C=US","subjectDN":"MIGUMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE6MDgGA1UEAxMxVVNFUlRydXN0IEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"26dd31cde7427387d296f148833077d4fe20c284013c0fd9f15f8008f135d303","size":1362,"filename":"i7uClAe3_3wAhizAhhVydHbblUIZ4CnIbmP_37X1MDI=.pem","location":"security-state-staging/intermediates/6fd0a630-610a-4944-95e2-537aa76a82fb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i7uClAe3/3wAhizAhhVydHbblUIZ4CnIbmP/37X1MDI=","crlite_enrolled":false,"id":"c0e9c3ff-136b-4bae-bd6f-a2afc53d7dbc","last_modified":1562108291176},{"schema":1562108285841,"derHash":"dcFVADsRQcWwn9fdAy4vQTxHGV07ml2vbEUQOFzXsNo=","subject":"CN=SecureCore RSA Code Signing CA,O=SecureCore,L=OSAKA,ST=OSAKA,C=JP","subjectDN":"MGsxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVPU0FLQTEOMAwGA1UEBxMFT1NBS0ExEzARBgNVBAoTClNlY3VyZUNvcmUxJzAlBgNVBAMTHlNlY3
VyZUNvcmUgUlNBIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"fb6fbc5f3a298360a9e790f55bf514d36e1065ad69d9250a0546434fd60e20ef","size":2097,"filename":"axW2YlMTDWWhbpiLWaU3zkErVvrZfY_GQ6cyk5u5luY=.pem","location":"security-state-staging/intermediates/1730ea7b-88b9-4db4-a901-15e5a1fae90e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"axW2YlMTDWWhbpiLWaU3zkErVvrZfY/GQ6cyk5u5luY=","crlite_enrolled":false,"id":"3e6d940e-6a54-426f-aa37-1484d14106e9","last_modified":1562108286598},{"schema":1562025729992,"derHash":"6o4gUWI+TkcQ/Vvyek0s4L5lsXoeVDm4+rdOAcyoFXU=","subject":"CN=COMODO Domain Validation Secure Server CA 2,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGOMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE0MDIGA1UEAxMrQ09NT0RPIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0EgMg==","whitelist":false,"attachment":{"hash":"3d0e7c87aafe299697e93ab682a1740b5e0301d829
f1f0172b1c96434892d004","size":1849,"filename":"U76LrE_Rijw5XfoXk5OQHHM69VvOLx93TdrIf4lbJe0=.pem","location":"security-state-staging/intermediates/b77966b0-d8a8-461b-82c0-0b542d6d45b8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U76LrE/Rijw5XfoXk5OQHHM69VvOLx93TdrIf4lbJe0=","crlite_enrolled":false,"id":"ca6e3949-96ed-4927-a7ec-aa6983f017ca","last_modified":1562025730731},{"schema":1562025726215,"derHash":"3JRVykf1/Zvzu6u+rPiPPes7WL+oWvQE39IWF86QoN0=","subject":"CN=Academy of Athens SSL SubCA R2,O=Academy of Athens,L=Athens,C=GR","subjectDN":"MGMxCzAJBgNVBAYTAkdSMQ8wDQYDVQQHDAZBdGhlbnMxGjAYBgNVBAoMEUFjYWRlbXkgb2YgQXRoZW5zMScwJQYDVQQDDB5BY2FkZW15IG9mIEF0aGVucyBTU0wgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"f72510e5379e821a4e63803bde1b2d0379bf113c2844ef59caf0def0e2469437","size":2771,"filename":"JSBgh4-dzeoIV9S02ySUrHvvy_rDBARUsVV1tnTxX34=.pem","location":"security-state-staging/intermediates/3e79bdae-5627-434e-bea2-8834a203d78b.pem","mimetype":"application/x-pem
-file"},"pubKeyHash":"JSBgh4+dzeoIV9S02ySUrHvvy/rDBARUsVV1tnTxX34=","crlite_enrolled":false,"id":"cee3e6e9-42ed-4283-993c-cb0045e6be5b","last_modified":1562025726974},{"schema":1562025724722,"derHash":"L7qP6RVBUEmqlChXy1MTf/09nlpHsntXgtq5tNp9Yk0=","subject":"CN=GeoTrust SupremeSSL EV 1 ECC CA,OU=www.supremessl.com,O=SupremeSSL,C=NL","subjectDN":"MGkxCzAJBgNVBAYTAk5MMRMwEQYDVQQKEwpTdXByZW1lU1NMMRswGQYDVQQLExJ3d3cuc3VwcmVtZXNzbC5jb20xKDAmBgNVBAMTH0dlb1RydXN0IFN1cHJlbWVTU0wgRVYgMSBFQ0MgQ0E=","whitelist":false,"attachment":{"hash":"41ecc5811611c2cca06c08009be39d0f651319e8cea2f6913a6d81897be776be","size":1423,"filename":"A97Lx6chFTH9FkG_Io5Uc5oemCnN0d8O2NjR9d-Pr0w=.pem","location":"security-state-staging/intermediates/baa9711d-751b-4f52-b6fb-eae863fd4185.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"A97Lx6chFTH9FkG/Io5Uc5oemCnN0d8O2NjR9d+Pr0w=","crlite_enrolled":false,"id":"abb039f2-2555-43ce-acd5-8385099aac50","last_modified":1562025725454},{"schema":1562025723206,"derHash":"s
M1q57niDsX4MP7gH2ZtXZDm4inQa8RqMKzO3+yIlkg=","subject":"CN=GlobalSign ECC CloudSSL CA - SHA384 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTEwLwYDVQQDEyhHbG9iYWxTaWduIEVDQyBDbG91ZFNTTCBDQSAtIFNIQTM4NCAtIEcz","whitelist":false,"attachment":{"hash":"de1af3b87a33aa08369966e57403b2c34643335f40db514a7afc6b97b106c162","size":1394,"filename":"jvkkZQCW-mhUvg-i2GTn-E3FaOYoVhJ1eCS-o6Q4yNk=.pem","location":"security-state-staging/intermediates/9cc4ce11-6d6f-43c7-bb98-74044eaff317.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jvkkZQCW+mhUvg+i2GTn+E3FaOYoVhJ1eCS+o6Q4yNk=","crlite_enrolled":false,"id":"64bc9cda-86f9-4b20-91ec-08b77c65c922","last_modified":1562025723952},{"schema":1562025722450,"derHash":"fAkS5d6EeLuG6OpGulrmXcOHC878vC9GeV7uz2SM++c=","subject":"CN=DigiCert Extended Validation CA G3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC
5jb20xKzApBgNVBAMTIkRpZ2lDZXJ0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgRzM=","whitelist":false,"attachment":{"hash":"a9b8d926d5c6840a9c7cfbb16d22ea65f23628c6fdb4af615cb30e7d3ceaa1f1","size":1158,"filename":"26Ut6iLcm-3yJllopC51FzYrG4EvCSFIv9j5aRSvwvk=.pem","location":"security-state-staging/intermediates/d9eb8ff7-9305-49b0-b4e6-9b4a86ebd7f6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"26Ut6iLcm+3yJllopC51FzYrG4EvCSFIv9j5aRSvwvk=","crlite_enrolled":true,"id":"afc3f6a7-6865-4035-9978-68f1eaa2e5dc","last_modified":1562025723199},{"schema":1562025721682,"derHash":"daZZy9u+bJV+VBTbB4ySEm9jQ4IYnaG/XAojgP4MAVQ=","subject":"SERIALNUMBER=201902,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTAy","whitelist":false,"attachment":{"hash":"4b65325d9d02469390d5b023e714e4e9c753ef0799e3f6a10e5916619c16dcc1","size":2333,"filename":"UwHbo6A5SENp-x9pe
Fd6eLRH2pPK2OEh1Opi66naGmE=.pem","location":"security-state-staging/intermediates/3c472536-c16a-4f6a-8075-bc11e7725343.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UwHbo6A5SENp+x9peFd6eLRH2pPK2OEh1Opi66naGmE=","crlite_enrolled":false,"id":"8b83b14e-f66d-4d00-b7e1-4b8f9adff491","last_modified":1562025722443},{"schema":1562025718618,"derHash":"pIeewPNs+EtvLth65X7juUoHhcaGIjjNRUgQhNFS6xg=","subject":"CN=QuoVadis Global SSL ICA G2,O=QuoVadis Limited,C=BM","subjectDN":"ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMg==","whitelist":false,"attachment":{"hash":"95a08802015a5ec4188aae43d624318718b33b1845abd2cc08cde2dd08795dda","size":1898,"filename":"tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=.pem","location":"security-state-staging/intermediates/c20f4e11-fb50-446a-a3bf-298dcc6d3e94.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=","crlite_enrolled":true,"id":"d60313ed-8
6f7-4c58-b298-f728a4d599dd","last_modified":1562025719366},{"schema":1562025714026,"derHash":"zxCWu5Mj2XLcMktnNx3AT/nYGPgyX5sUJPr/xIYWF94=","subject":"CN=MilleniumSign Client Certificate CA RSA R3,O=MilleniumSign Limited,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGMMQswCQYDVQQGEwJNVTEYMBYGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTMwMQYDVQQDDCpNaWxsZW5pdW1TaWduIENsaWVudCBDZXJ0aWZpY2F0ZSBDQSBSU0EgUjM=","whitelist":false,"attachment":{"hash":"66dc6cdcca92c736db22d6b0528e851eca29640b778a93b8e2ca01e136e44de9","size":2597,"filename":"rxjVY4zcTYKtIONSk7n6L7MrJYe_ND2NwaXtNQUP5TM=.pem","location":"security-state-staging/intermediates/73e81b8a-cb82-42dc-a82c-b44aa5531cff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rxjVY4zcTYKtIONSk7n6L7MrJYe/ND2NwaXtNQUP5TM=","crlite_enrolled":false,"id":"f4577da3-a2f0-4bf9-8805-1bf7390a8200","last_modified":1562025714778},{"schema":1562025713265,"derHash":"M9VzWYMfh3VObnVda1tW5+cSl93f6h1jlw
hmBCgPb/w=","subject":"CN=Cybertrust Japan Secure Server CA,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MF4xCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEqMCgGA1UEAxMhQ3liZXJ0cnVzdCBKYXBhbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"3d3d273966feacef23b9bad6f99c08f1cc7d487295361ce8cc0b10c724baf67a","size":1711,"filename":"bVyC1r63wwzb47rnbZ46v-604DOoFUXTp4JA0srlZRE=.pem","location":"security-state-staging/intermediates/aa91ff40-8753-4ea6-bc6c-9c2f51e7c6a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bVyC1r63wwzb47rnbZ46v+604DOoFUXTp4JA0srlZRE=","crlite_enrolled":true,"id":"03556fa4-abec-492c-a31c-149b44f3f991","last_modified":1562025714019},{"schema":1562025711764,"derHash":"hDJGhhPZjK3s3wgWxJ6it/aZ9KEc7AD1eMK6NnsmHAg=","subject":"CN=XiPS CA,O=XiPS,C=JP","subjectDN":"MC4xCzAJBgNVBAYTAkpQMQ0wCwYDVQQKEwRYaVBTMRAwDgYDVQQDEwdYaVBTIENB","whitelist":false,"attachment":{"hash":"3b65f8702240ac2d635ce5225969970a6e8557d2b9dd5eb165f96cad
c14bfdc6","size":1455,"filename":"aqVWvShe1mzkhWFbetNw9nGqpsrVqF3oxvVKvhsIlK8=.pem","location":"security-state-staging/intermediates/5190658d-b50b-4f85-9700-87cd6e9064bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aqVWvShe1mzkhWFbetNw9nGqpsrVqF3oxvVKvhsIlK8=","crlite_enrolled":false,"id":"f181d5e2-48b8-4d91-a36f-3d0f2d8ee54b","last_modified":1562025712505},{"schema":1562025711016,"derHash":"H/7OCWgvhwJKKkSyyYex/M7jsrXPAh788jhpIkpMoVQ=","subject":"CN=Sectigo ECC Extended Validation Secure Server CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGRMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxOTA3BgNVBAMTMFNlY3RpZ28gRUNDIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"fd85716a6add00125b582d3433c00b0de6d6b0b552bfd0c8ca14d4b009f89167","size":1374,"filename":"tMfg7Fo2Cq1tZyZLF7qjiWh-5J3kMiUXlIyn4Vr5nX4=.pem","location":"security-state-stag
ing/intermediates/41bc169c-72dd-4bf8-b3cb-64ed94baec4a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tMfg7Fo2Cq1tZyZLF7qjiWh+5J3kMiUXlIyn4Vr5nX4=","crlite_enrolled":true,"id":"c6c4f0ce-0b29-4979-9287-aeced0243644","last_modified":1562025711756},{"schema":1562025708768,"derHash":"jSKvzLIsm24kJnzkILKZZVyB9dceKs/5B/5SqqU3qFg=","subject":"SERIALNUMBER=201802,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODAy","whitelist":false,"attachment":{"hash":"102da7f31c535ea34d89635c806e2f2a5b759361e5b43ab595e6034e13660279","size":2333,"filename":"60YC4wjR2aMWmgm6s6gc7QNiw4QMHharRlBVWIH_dEE=.pem","location":"security-state-staging/intermediates/4afbb779-dbbc-4b0b-89c7-7381a2898294.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"60YC4wjR2aMWmgm6s6gc7QNiw4QMHharRlBVWIH/dEE=","crlite_enrolled":false,"id":"9f54a066-75df-4d37-ade1-4dde
85e658ea","last_modified":1562025709507},{"schema":1562025708011,"derHash":"FwFvanA1ZeKKsd9+Kai5iNLjW42DKBeh+TediK1xFBE=","subject":"SERIALNUMBER=201801,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE4MDE=","whitelist":false,"attachment":{"hash":"e366da3a353529ab9e5aa4af9c4efab7baca0c8c3d39aac37cc5493de9185065","size":2337,"filename":"r1BqawCRtfiaTeSiVNjGZXvqScB9gfO7G-0GeWVXm80=.pem","location":"security-state-staging/intermediates/32f8564a-c764-4da5-a3f7-7bfa055ea02f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"r1BqawCRtfiaTeSiVNjGZXvqScB9gfO7G+0GeWVXm80=","crlite_enrolled":false,"id":"514257fc-5422-4e69-b26c-e204e375c4a0","last_modified":1562025708760},{"schema":1562025707263,"derHash":"JbdJ1yKw/IhOac9afqobCx/vHiWdbQfwi3mOb++CPgI=","subject":"CN=eMudhra RSA Client Authentication and Secure Email CA,O=eMudhra Technolo
gies Limited,L=Bengaluru,ST=Karnataka,C=IN","subjectDN":"MIGcMQswCQYDVQQGEwJJTjESMBAGA1UECBMJS2FybmF0YWthMRIwEAYDVQQHEwlCZW5nYWx1cnUxJTAjBgNVBAoTHGVNdWRocmEgVGVjaG5vbG9naWVzIExpbWl0ZWQxPjA8BgNVBAMTNWVNdWRocmEgUlNBIENsaWVudCBBdXRoZW50aWNhdGlvbiBhbmQgU2VjdXJlIEVtYWlsIENB","whitelist":false,"attachment":{"hash":"c27ec82343f0d00259fda513c138c7d65d666bc8fe8ef949140eb37491534dd1","size":2182,"filename":"iBP3IIWrGNTEuOlANBTEQYR6YtaX4fTgxoiY4wfOsAE=.pem","location":"security-state-staging/intermediates/549b17f7-c9e3-4a71-a5d4-4b62bb4e1916.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iBP3IIWrGNTEuOlANBTEQYR6YtaX4fTgxoiY4wfOsAE=","crlite_enrolled":false,"id":"c68ae40e-0221-459c-9b5b-4816b26eec06","last_modified":1562025708004},{"schema":1562025706478,"derHash":"dcWz8B/R9RosRHq3x4XXLmn6nEcsCFcefq3zuOq65ww=","subject":"CN=Entrust Certification Authority - L1M,OU=See www.entrust.net/legal-terms+OU=(c) 2014 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"
MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTQgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFN","whitelist":false,"attachment":{"hash":"0f6a7a76e82068b37ee6c3f29a6d0c18baf727d5d7df2bb42b93f0257d84d61a","size":1853,"filename":"VYZwGiJkq3NNo1YRI2RGiSTI1mqTWG8zDcRf1_KAN6I=.pem","location":"security-state-staging/intermediates/4c299a33-dc8e-4885-82a2-d1b50cc80a72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VYZwGiJkq3NNo1YRI2RGiSTI1mqTWG8zDcRf1/KAN6I=","crlite_enrolled":true,"id":"d372a7cc-1a5d-4429-8b38-67272cb151ed","last_modified":1562025707255},{"schema":1562025704941,"derHash":"0E25J8ZjqoyFPVRxbdbcKksv75w64b+yUER/xdd3Hlc=","subject":"CN=Entrust Extended Validation Code Signing CA - EVCS1,OU=See www.entrust.net/legal-terms+OU=(c) 2015 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIHI
MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTUgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MTwwOgYDVQQDEzNFbnRydXN0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZSBTaWduaW5nIENBIC0gRVZDUzE=","whitelist":false,"attachment":{"hash":"1bf84b7a3f77f8f67f9e51d9336139cbd80e4db10cc4953df2414b0be4f645fe","size":1861,"filename":"GcPkbBB-ik0_z7Ti-5ln9eO4LtiY-qTd63BI9Hcr__o=.pem","location":"security-state-staging/intermediates/0e96ba5e-bdf5-4987-9558-5a42128bc3f2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GcPkbBB+ik0/z7Ti+5ln9eO4LtiY+qTd63BI9Hcr//o=","crlite_enrolled":true,"id":"a2bd91d4-dd54-4a7c-92d7-9fff7bf0db8c","last_modified":1562025705694},{"schema":1562025703410,"derHash":"wzO2FjiwMV+oAcziHMTqlu9/ZaOZlFAYapnRm7IBKPc=","subject":"CN=Yandex CA,OU=Yandex Certification Authority,O=Yandex LLC,C=RU","subjectDN":"MF8xCzAJBgNVBAYTAlJVMRMwEQYDVQQKEwpZYW5kZXggTExDMScwJQYDVQQLEx5ZYW5kZXggQ2VydGlmaWNhdGlvbi
BBdXRob3JpdHkxEjAQBgNVBAMTCVlhbmRleCBDQQ==","whitelist":false,"attachment":{"hash":"af258c6dfdfa092e5143efddb130a9995d357d1ad61ae4f796479ef04168a7a4","size":1674,"filename":"LNFe-yc4_NZbJVynpxAeAd-brU3EPwGbtwF6VeUjI_Y=.pem","location":"security-state-staging/intermediates/479968c7-7027-4f7e-8b5c-3222fd1e1b98.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LNFe+yc4/NZbJVynpxAeAd+brU3EPwGbtwF6VeUjI/Y=","crlite_enrolled":true,"id":"bf9d3f01-d8b6-4d86-8653-747e081c93a4","last_modified":1562025704179},{"schema":1562025701871,"derHash":"KkG6gZ62Elr1y0uLDp6VTs55jCp+5D3Nr305WYfE1VI=","subject":"CN=AlwaysOnSSL TLS RSA CA G1,OU=Domain Validated SSL,O=CertCenter AG,C=DE","subjectDN":"MGgxCzAJBgNVBAYTAkRFMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEiMCAGA1UEAxMZQWx3YXlzT25TU0wgVExTIFJTQSBDQSBHMQ==","whitelist":false,"attachment":{"hash":"60ae06b06554f13d49fcd4ab75f5917d8c57dc17bd11f157428e11c66db10d22","size":1670,"filename":"DOdL2thyQw2ljWo5qhqUbm1_3EZBtYX
xLKw14G9PO30=.pem","location":"security-state-staging/intermediates/a5955525-beea-41cd-bc30-2fdc381e930d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DOdL2thyQw2ljWo5qhqUbm1/3EZBtYXxLKw14G9PO30=","crlite_enrolled":false,"id":"47d5ce96-0aef-4db0-a607-a2e1c9d545d8","last_modified":1562025702639},{"schema":1562025701131,"derHash":"+WkIgIGfBs3MCy8iSyB/KvYAP7VzObhnmhYPqVII1i0=","subject":"CN=DigiCert Baltimore CA-2 G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGkRpZ2lDZXJ0IEJhbHRpbW9yZSBDQS0yIEcy","whitelist":false,"attachment":{"hash":"bd36d2274e9da51b8bdff6a5034236a8cd4be11b09a0484694bb0d5786f90c06","size":1581,"filename":"56higu_MFWb_c2b0avLE5oN2ECS2C43RvzSUgx_2xIE=.pem","location":"security-state-staging/intermediates/95cd362d-50b9-447c-9a65-f2618e6ef5a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"56higu/MFWb/c2b0avLE5oN2ECS2C43RvzSUgx/2xIE=","crlite_e
nrolled":true,"id":"25183d60-3420-4e98-9619-5f0eec8fee1d","last_modified":1562025701864},{"schema":1562025699565,"derHash":"vOtfbxkOdDBvdGmeK/bfPaO4MnTJTaYnMHfexjAkvCs=","subject":"CN=USERTrust Extended Validation Code Signing CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGQMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE2MDQGA1UEAxMtVVNFUlRydXN0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"00ea6e2039bc7a594fce068cab36473f438d4d297b6a0dc47aefbfa0e23e48d6","size":1845,"filename":"qmiXmivqVtgR0GyawcxUjKYGCU2FpsPYSvuOnjXIl7A=.pem","location":"security-state-staging/intermediates/72c86bfc-7240-48e0-8b9e-f36bed44515a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qmiXmivqVtgR0GyawcxUjKYGCU2FpsPYSvuOnjXIl7A=","crlite_enrolled":false,"id":"6a69c8b2-71af-4964-b1b2-8cf7a40252ae","last_modified":1562025700328},{"schema":1562025698800,"derHas
h":"e+x4J+BdGTHdgmia9rLxmj9eTHVu+hYr1wjJJ50ank4=","subject":"CN=Hellenic Academic and Research Institutions AdminCA R5,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGUMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxPzA9BgNVBAMTNkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQWRtaW5DQSBSNQ==","whitelist":false,"attachment":{"hash":"8ca53e2983ea3a48eebfa803f1747e95b415a1cb5d2480b8f436856a80d4faaa","size":2938,"filename":"AreUX-bchtedTom4SB7dY0hDFUCi6QqZHbrsRYdMV5w=.pem","location":"security-state-staging/intermediates/e9bb19e6-d0ac-490f-a20c-8c91408b1553.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AreUX+bchtedTom4SB7dY0hDFUCi6QqZHbrsRYdMV5w=","crlite_enrolled":true,"id":"002552b1-47b6-4410-a854-a48b4b40c244","last_modified":1562025699557},{"schema":1562025696418,"derHash":"gwy0Q+kSkB77qP+Pjhu86XAyqpEjjoGdi9bq/NWFLVA=","subject":"CN=SSLs.com ECC DV Secure Server
CA,O=SSLs.com,L=Phoenix,ST=Arizona,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRAwDgYDVQQHEwdQaG9lbml4MREwDwYDVQQKEwhTU0xzLmNvbTEpMCcGA1UEAxMgU1NMcy5jb20gRUNDIERWIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"c384b3ab12ff6ea1b44a206f1afe0a9e294295d9b659f35735ad3b8f63df3777","size":1293,"filename":"dxXXi-wgMRVEkMxf8oNkW9S3knJacN3pyTKktpz6CO8=.pem","location":"security-state-staging/intermediates/e058b6fd-1598-40fa-bfc8-88653250ee88.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dxXXi+wgMRVEkMxf8oNkW9S3knJacN3pyTKktpz6CO8=","crlite_enrolled":false,"id":"f9d6e124-3ddc-44f9-bbe1-dbb93eca419a","last_modified":1562025697178},{"schema":1562025694846,"derHash":"q97sUxSQmPigsH79lys0Wom+3o7eaXXmG+le4Cbafvo=","subject":"CN=Actalis Client Authentication CA G1,O=Actalis S.p.A./03358520967,L=Milano,ST=Milano,C=IT","subjectDN":"MIGCMQswCQYDVQQGEwJJVDEPMA0GA1UECAwGTWlsYW5vMQ8wDQYDVQQHDAZNaWxhbm8xIzAhBgNVBAoMGkFjdGFsaXMgUy5wLkEuLzAzMzU4NTIwOTY3MSwwKgYD
VQQDDCNBY3RhbGlzIENsaWVudCBBdXRoZW50aWNhdGlvbiBDQSBHMQ==","whitelist":false,"attachment":{"hash":"737f0f0ce1590b65bb7efa52f0521e84ec1ac16313c8b4c6cd288064af2d127d","size":2235,"filename":"YsqG87ugr7iITRNFFaHeNX5oMmY80JlEVuqBCxAhZAM=.pem","location":"security-state-staging/intermediates/5df58a07-e383-4a1a-8af4-9471aa61c013.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YsqG87ugr7iITRNFFaHeNX5oMmY80JlEVuqBCxAhZAM=","crlite_enrolled":true,"id":"621a2382-280e-48de-b859-5293ba5379b7","last_modified":1562025695624},{"schema":1562025691799,"derHash":"Dc3Afsq7v+OKRga6ZjmHzbO9mBf8Z9HdDPCUrIyieH0=","subject":"CN=RapidSSL CA - G2,O=GeoTrust Inc.,C=US","subjectDN":"MEAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRkwFwYDVQQDExBSYXBpZFNTTCBDQSAtIEcy","whitelist":false,"attachment":{"hash":"aa7fa595813e97a484acd6547bac20c9e71b2d410cc8c1411ce7c8dff477d7d9","size":1561,"filename":"ECmYCLPqKAHbhvlT_55ArJLWPUg2ET7VnEs9qxe4WMY=.pem","location":"security-state-staging/intermediates/954d884
1-1fdb-4c14-b270-208ca50318c9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ECmYCLPqKAHbhvlT/55ArJLWPUg2ET7VnEs9qxe4WMY=","crlite_enrolled":false,"id":"43b0aa37-7f19-4ef9-a14a-884ae615c7ad","last_modified":1562025692543},{"schema":1562025690289,"derHash":"6Y3cwNFYh2g2zUtq2CbES/ClmjY4ls4mbJ8ObO3AQLw=","subject":"CN=SSL.com EV Code Signing Intermediate CA RSA R3,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxNzA1BgNVBAMMLlNTTC5jb20gRVYgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBDQSBSU0EgUjM=","whitelist":false,"attachment":{"hash":"32169e8329c248fa74da3ecdba2cb2ab5ddb103e65d9b25269226afcf1726058","size":2442,"filename":"A0PvmC7MDwMStpG2AMOTBGRwFSj4zczHavxDSYtMrUU=.pem","location":"security-state-staging/intermediates/29e6ec48-04e0-4511-8814-f046fc5fd80b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"A0PvmC7MDwMStpG2AMOTBGRwFSj4zczHavxDSYtMrUU=","crlite_enrolled":false,"id":"2195f4e
0-79ea-4388-98b0-6f42f8589dc9","last_modified":1562025691031},{"schema":1562025688012,"derHash":"sFR/1Gj7tuM3/gGwEINOU7TFsSZJ7O52+uw4uGQPiHg=","subject":"CN=Sectigo RSA Pro Series Secure Server CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGIMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxMDAuBgNVBAMTJ1NlY3RpZ28gUlNBIFBybyBTZXJpZXMgU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"21a5a5d98c08860c8bbdac09ecacbf28db1bf7fd896db33c56327c2680b27302","size":1699,"filename":"xTMa5n3gNYAxLuPmUb1OHXP8yMoC1p7qRTc2QnDh85w=.pem","location":"security-state-staging/intermediates/680c172b-fc67-4690-b97d-d1dea9a9f9be.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xTMa5n3gNYAxLuPmUb1OHXP8yMoC1p7qRTc2QnDh85w=","crlite_enrolled":false,"id":"dce12f32-7494-4a0b-a01f-b3b7fcaa5481","last_modified":1562025688751},{"schema":1562025687263,"derHash":"3izLCHRurwKZjmyV4ko9LPtv9KPUHq+/g/1XAGb
y8qg=","subject":"CN=Network Solutions OV Server CA 2,O=Network Solutions L.L.C.,L=Herndon,ST=VA,C=US","subjectDN":"MHoxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJWQTEQMA4GA1UEBxMHSGVybmRvbjEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMSkwJwYDVQQDEyBOZXR3b3JrIFNvbHV0aW9ucyBPViBTZXJ2ZXIgQ0EgMg==","whitelist":false,"attachment":{"hash":"523a86b5180b5ec7c1414d69ac133130ee5d4575bd013804765541e369aae790","size":2150,"filename":"hIBbkSty62Y4PvvLLkYxEHhqoAK2s9JgMSFHh6HeR60=.pem","location":"security-state-staging/intermediates/97e3a8c1-f036-4137-9c18-5bdaae60b5d3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hIBbkSty62Y4PvvLLkYxEHhqoAK2s9JgMSFHh6HeR60=","crlite_enrolled":true,"id":"fdf54b28-a69b-460f-a7af-12df7c5b6620","last_modified":1562025688004},{"schema":1562025682694,"derHash":"7gnUnHz0QYQNpRWNDnDUxsrrT8z+Z1juTMRccaKH3zk=","subject":"CN=Shuidi Webtrust SSL Organization Validated,O=Shanghai Ping An Credit Reference Company Limited,C=CN","subjectDN":"MH4xCzAJBgNVBAYTAkNOMTowOAYDVQQKDDFT
aGFuZ2hhaSBQaW5nIEFuIENyZWRpdCBSZWZlcmVuY2UgQ29tcGFueSBMaW1pdGVkMTMwMQYDVQQDDCpTaHVpZGkgV2VidHJ1c3QgU1NMIE9yZ2FuaXphdGlvbiBWYWxpZGF0ZWQ=","whitelist":false,"attachment":{"hash":"f975da322d7fcdc38e3cb51f4091077525b9e851b700830f29f444cceea7c7ca","size":1788,"filename":"bQEpVS_P2TaJBIhgpEXBC8jHqXLloS9b4EkKf3WILE8=.pem","location":"security-state-staging/intermediates/08ed8214-4b33-43b4-8ba3-b97456144534.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bQEpVS/P2TaJBIhgpEXBC8jHqXLloS9b4EkKf3WILE8=","crlite_enrolled":true,"id":"5ac2630d-d43f-4a21-8de4-363eea88f44e","last_modified":1562025683468},{"schema":1562025681943,"derHash":"SyTFIcR2AOg4AKP/DC1Y3ALIF3732ml8WoDB1IZ6Zt0=","subject":"CN=KPN CM PKIoverheid EV CA,O=KPN Corporate Market B.V.,C=NL","subjectDN":"MFQxCzAJBgNVBAYTAk5MMSIwIAYDVQQKDBlLUE4gQ29ycG9yYXRlIE1hcmtldCBCLlYuMSEwHwYDVQQDDBhLUE4gQ00gUEtJb3ZlcmhlaWQgRVYgQ0E=","whitelist":false,"attachment":{"hash":"a099dffc591861b7aafbe0f0a05c8b1f7bf81f559c01699413024d9884a31de1","s
ize":2422,"filename":"LTKzfVX5csoVECsYSoKgWD8fCxvpkV_QvnpzmSXD67E=.pem","location":"security-state-staging/intermediates/133d0516-cda0-41bf-b11e-001d82752fbb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LTKzfVX5csoVECsYSoKgWD8fCxvpkV/QvnpzmSXD67E=","crlite_enrolled":false,"id":"571566e8-e55e-4901-b8d3-2549845c752d","last_modified":1562025682686},{"schema":1562025681184,"derHash":"12QgV8oX4AY1zEEFPxSRmYSIjmVwvi2Wah+ug6ZKTjA=","subject":"CN=Thawte Class 3 ECC CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGFRoYXd0ZSBDbGFzcyAzIEVDQyBDQSBHMQ==","whitelist":false,"attachment":{"hash":"19920e1734805d1433e4ddbcc6556c5621f82552ecd3b1267802075ffe89b5bc","size":1118,"filename":"74qDh4tduGxF1WQBec7yb2TVAkVDQcZtSGFT6Fv2rKU=.pem","location":"security-state-staging/intermediates/b6b109d9-029d-47cb-9143-2b3f88a80822.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"74qD
h4tduGxF1WQBec7yb2TVAkVDQcZtSGFT6Fv2rKU=","crlite_enrolled":false,"id":"511368c0-9bad-4168-ba0e-8752f57a500e","last_modified":1562025681935},{"schema":1562025678880,"derHash":"tBq4Rcq025yx/mUFdl82oIaK3F30GbOJeftqT+QTH3A=","subject":"CN=TrustAsia DV SSL CA - G5,OU=Symantec Trust Network+OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MIGXMQswCQYDVQQGEwJDTjElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxITAfBgNVBAMTGFRydXN0QXNpYSBEViBTU0wgQ0EgLSBHNQ==","whitelist":false,"attachment":{"hash":"3bf080b95af149ffd2e506772a96b0a2877c5d8652f00df4e6bcc0cbb8a66cd9","size":1930,"filename":"IiSbZ4pMDEyXvtl7Lg8K3FNmJcTAhKUTrB2FQOaAO_s=.pem","location":"security-state-staging/intermediates/92184c22-dea5-4c8a-a75f-4d675f372117.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IiSbZ4pMDEyXvtl7Lg8K3FNmJcTAhKUTrB2FQOaAO/s=","crlite_enrolled":false,"id":"acd0d2d4-f089-4bc5-b759-b1
39cb3901cc","last_modified":1562025679624},{"schema":1562025678128,"derHash":"CQ3xIgpg6Ohl+GB7miS8O+ANkz1Dj7aGoxc978W/u0A=","subject":"CN=SecureTrust Timestamping CA\\, Level 1,O=SecureTrust,L=Chicago,ST=Illinois,C=US","subjectDN":"MHcxLTArBgNVBAMTJFNlY3VyZVRydXN0IFRpbWVzdGFtcGluZyBDQSwgTGV2ZWwgMTEUMBIGA1UEChMLU2VjdXJlVHJ1c3QxEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"4b45073fb2635b629bbf1095fb23e052ca68b981e23461115b479b6f22314bac","size":1691,"filename":"j2P1Z0mLSp4GAoBeesMfnj__nZWEBzdTPjXQKs135uY=.pem","location":"security-state-staging/intermediates/94b365b9-ee57-47ab-ae3e-0869f15a6ffc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"j2P1Z0mLSp4GAoBeesMfnj//nZWEBzdTPjXQKs135uY=","crlite_enrolled":false,"id":"7b52d53f-2f70-4371-93de-fb4749b36a27","last_modified":1562025678867},{"schema":1562025677364,"derHash":"Pzr5ycwsdZnvj23XylFs/BeX19EgAiVPO/0NTQ/p3oY=","subject":"CN=thawte SHA256 SSL CA,O=thawte\\, Inc.
,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xHTAbBgNVBAMTFHRoYXd0ZSBTSEEyNTYgU1NMIENB","whitelist":false,"attachment":{"hash":"b784117d8a3ab57799dc2c072d17609dee8c92bc8067b1e11b8a4900f0e83e05","size":1711,"filename":"_36ymPAVaJl3QDyB1lUkVf9GqJNug0R8JJPDN6348p8=.pem","location":"security-state-staging/intermediates/4e0ed124-2d83-43f1-9448-6fb4dd45e482.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/36ymPAVaJl3QDyB1lUkVf9GqJNug0R8JJPDN6348p8=","crlite_enrolled":true,"id":"943e3610-ed29-496d-9a3e-cbb01e1ef005","last_modified":1562025678120},{"schema":1562025675802,"derHash":"EL7dxICqJ1Y0gLG8qrbCW1KZXqg26aKs6D+PWSBuJJY=","subject":"CN=New Mexico Health Information Collaborative CA,OU=Orion Health Direct Secure Messaging,O=New Mexico Health Information Collaborative,C=US","subjectDN":"MIGrMQswCQYDVQQGEwJVUzE0MDIGA1UEChMrTmV3IE1leGljbyBIZWFsdGggSW5mb3JtYXRpb24gQ29sbGFib3JhdGl2ZTEtMCsGA1UECxMkT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nMTcwNQYDVQQDEy
5OZXcgTWV4aWNvIEhlYWx0aCBJbmZvcm1hdGlvbiBDb2xsYWJvcmF0aXZlIENB","whitelist":false,"attachment":{"hash":"3b860277584fea9df4295aab0745f897464dbf5e91296f9d2538f97974e21939","size":2349,"filename":"1m6_yYaaSZddN2cNjj0VawaRiHpS64DzwthprWkjdg8=.pem","location":"security-state-staging/intermediates/86f2c550-3b2e-4b7e-af76-e2becc64f74f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1m6/yYaaSZddN2cNjj0VawaRiHpS64DzwthprWkjdg8=","crlite_enrolled":false,"id":"f0a27a30-b268-4bf4-b255-1744ec057719","last_modified":1562025676587},{"schema":1562025673533,"derHash":"2N9+EYPW3vVh2E1W5iGm82oGXccX85Wbs7r8gkVW1Iw=","subject":"CN=NII Open Domain S/MIME CA,O=National Institute of Informatics,L=Academe,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMRAwDgYDVQQHEwdBY2FkZW1lMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxIjAgBgNVBAMTGU5JSSBPcGVuIERvbWFpbiBTL01JTUUgQ0E=","whitelist":false,"attachment":{"hash":"4e6542a6648b4213a588d591b628e5dc92a54b95e08df2450f8821dc95d1784d","size":1654,"filenam
e":"F9TkBe88zcRKkRsEqLE6JxhxN-bsw3hDKVMLUDn2y1M=.pem","location":"security-state-staging/intermediates/e43ae758-2dfb-4c9a-928e-c083c6da465e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F9TkBe88zcRKkRsEqLE6JxhxN+bsw3hDKVMLUDn2y1M=","crlite_enrolled":false,"id":"da5348e6-9e70-459c-bb07-1d2af71e7daf","last_modified":1562025674279},{"schema":1562025672771,"derHash":"6cUco5FHtXOPZPg1Jp0DTBAEc3VaQWnpbB/CNGmCGw4=","subject":"SERIALNUMBER=201820,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODIw","whitelist":false,"attachment":{"hash":"d2d13671c68a60835e1e652999025d0de6c631132ed3998cf5f6ee83d3144875","size":2333,"filename":"mL7LZxrYZ14X6ReGlhJRjYKddvqFCFZVLs-CL3gWAb8=.pem","location":"security-state-staging/intermediates/7338f0e5-344e-473a-93cb-121d6783b136.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mL7LZxrYZ14X6ReGlh
JRjYKddvqFCFZVLs+CL3gWAb8=","crlite_enrolled":false,"id":"b9608c79-4ea9-44ef-8289-87b4489939bf","last_modified":1562025673525},{"schema":1562025670493,"derHash":"DOv5fR+rxkdTeZ96mlCMfF8rWLko+xs83GxBCcDPLpk=","subject":"CN=Thawte SGC CA - G2,O=Thawte\\, Inc.,C=US","subjectDN":"MEExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxUaGF3dGUsIEluYy4xGzAZBgNVBAMTElRoYXd0ZSBTR0MgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"484ba258f69f5a37429f7d0b9ef2ef46b4d8b05206ce0450b1081e696c815fe5","size":1723,"filename":"W6zRQBarVwwnzzEuDHuqu0dzg_srzfCimk7kZe_lXt0=.pem","location":"security-state-staging/intermediates/c3d071a4-89cc-4281-9735-9bdbad9e3f93.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"W6zRQBarVwwnzzEuDHuqu0dzg/srzfCimk7kZe/lXt0=","crlite_enrolled":false,"id":"d5dd4bbc-e6c1-4112-8b6a-c0dd8f5aed77","last_modified":1562025671254},{"schema":1562025669735,"derHash":"75E4mTZU35LS+1hg4o3ogYqfSdtW7LaJpnp/wtWIHdI=","subject":"CN=DigiCert Secure Site Korea ECC CA,OU=www.digicert.com,O=DigiCert
Inc,C=US","subjectDN":"MGsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKjAoBgNVBAMTIURpZ2lDZXJ0IFNlY3VyZSBTaXRlIEtvcmVhIEVDQyBDQQ==","whitelist":false,"attachment":{"hash":"4b5bb15272048ea3f749dc2fa5eba0a04f9588364d8744af5fa74ba1eeced218","size":1410,"filename":"DqywqWwTJGFOkcrnV9IPNGtEO_GJMB1Y28mAQyChmRY=.pem","location":"security-state-staging/intermediates/9b369138-ca7e-43fa-806c-9e6cd4beea06.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DqywqWwTJGFOkcrnV9IPNGtEO/GJMB1Y28mAQyChmRY=","crlite_enrolled":false,"id":"df60b489-c782-4306-b537-e7d0761c45ae","last_modified":1562025670486},{"schema":1562025668215,"derHash":"VTJKmDJRL8bJnxW/Dp7T1r60OYzO4ZS3/4SdltkTDUQ=","subject":"CN=GDCA TrustAUTH R4 Extended Validation SSL CA,O=GUANG DONG CERTIFICATE AUTHORITY CO.\\,LTD.,C=CN","subjectDN":"MHgxCzAJBgNVBAYTAkNOMTIwMAYDVQQKDClHVUFORyBET05HIENFUlRJRklDQVRFIEFVVEhPUklUWSBDTy4sTFRELjE1MDMGA1UEAwwsR0RDQSBUcnVzdEFVVEggUjQgRXh0ZW5kZWQgVmFsaWRhdGl
vbiBTU0wgQ0E=","whitelist":false,"attachment":{"hash":"b7f589fd332a96773c813b272dcd486bc1231918f0643ed0662f171680cc3963","size":2093,"filename":"LA_cQZEhZA_J3pK28of_Jf7Wn0WmfSQvp4eYJW5o8NQ=.pem","location":"security-state-staging/intermediates/f42f0088-3a96-4549-833e-5948b8098639.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LA/cQZEhZA/J3pK28of/Jf7Wn0WmfSQvp4eYJW5o8NQ=","crlite_enrolled":true,"id":"eee3bb7d-8e10-46cc-af2c-14e1ec4763e3","last_modified":1562025668953},{"schema":1562025667477,"derHash":"WBTmy1Tq6VND2FmZKgFjD1krFVrxdSQx48G/OwVWJlA=","subject":"CN=CSP SSL Service CA 6,O=CENTRAL SECURITY PATROLS CO.\\, LTD.,L=Shinjuku-ku,ST=Tokyo,C=JP","subjectDN":"MH8xCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzEUMBIGA1UEBxMLU2hpbmp1a3Uta3UxKzApBgNVBAoTIkNFTlRSQUwgU0VDVVJJVFkgUEFUUk9MUyBDTy4sIExURC4xHTAbBgNVBAMTFENTUCBTU0wgU2VydmljZSBDQSA2","whitelist":false,"attachment":{"hash":"ea11110864b5c9817abbf5aa566a8057805deaf75f9481b604f2331ea70e98dc","size":2138,"filename":"q7drg9v6vXmd5nz
hVcopuDRYMQ_LMZeqBynfhpYbHOk=.pem","location":"security-state-staging/intermediates/df60022f-853f-4111-a78b-4f89480bba48.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q7drg9v6vXmd5nzhVcopuDRYMQ/LMZeqBynfhpYbHOk=","crlite_enrolled":false,"id":"5042a531-0af6-42d0-813f-e9ced7e21003","last_modified":1562025668207},{"schema":1562025665967,"derHash":"t6roJv/3LeP9azGIGlYiHXB3w9VcZLOUDO37ev0NzjU=","subject":"CN=Sectigo RSA Document Signing CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGAMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxKDAmBgNVBAMTH1NlY3RpZ28gUlNBIERvY3VtZW50IFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"1afce422c54b00d30a903b931affa5c308ec9659de65c8cd7d9e68a0f9d83799","size":2190,"filename":"-Oc83wrXpHfiURh-sv35nT6kTLieb8t5m99W0qLHamc=.pem","location":"security-state-staging/intermediates/f747522e-7e39-4df3-aa39-2ef6d207958b.pem","mimetype":"application/x-pem-
file"},"pubKeyHash":"+Oc83wrXpHfiURh+sv35nT6kTLieb8t5m99W0qLHamc=","crlite_enrolled":false,"id":"a628600a-3dd2-4224-8076-be7ce8f30dae","last_modified":1562025666707},{"schema":1562025664465,"derHash":"G2gobe/OA2USpdrHbIq9Bn0zoH1ODe93BwicmAB14ZI=","subject":"CN=Highmark Tapestry HIE CA,OU=Orion Health Direct Secure Messaging,O=High Mark HIE\\, LLC,C=US","subjectDN":"MHwxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJIaWdoIE1hcmsgSElFLCBMTEMxLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEhMB8GA1UEAxMYSGlnaG1hcmsgVGFwZXN0cnkgSElFIENB","whitelist":false,"attachment":{"hash":"5e734fa19464bfd827dba86f076eeb3d032d3ce3f019eee75129e92a6dd81e20","size":2284,"filename":"tvN1gIKzR86qPSQ2AwrqugmOi6GtrIpoHkme7sem91Y=.pem","location":"security-state-staging/intermediates/f6c02c5c-dc08-47eb-899a-ae6b83749d80.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tvN1gIKzR86qPSQ2AwrqugmOi6GtrIpoHkme7sem91Y=","crlite_enrolled":false,"id":"a6432f10-db63-4211-8287-ee5b3019add5","last_modified":1562025
665206},{"schema":1562025663727,"derHash":"6tYvQrs2ndQ89hMawtjXLk+f7oXmnUXar/4yaqwqRvE=","subject":"CN=thawte ECC EV SSL CA,O=thawte\\, Inc.,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xHTAbBgNVBAMTFHRoYXd0ZSBFQ0MgRVYgU1NMIENB","whitelist":false,"attachment":{"hash":"b9896b22533f91f08e44fd0d913e570893beda53a7ddaabc17bb5de4ac3715fa","size":1272,"filename":"v3yOKQDQnYnr9hQ5ns91kotLui5ZZWuKHuumsGg2skg=.pem","location":"security-state-staging/intermediates/7a20713d-c595-454a-aa10-6a71cb4cb5fc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"v3yOKQDQnYnr9hQ5ns91kotLui5ZZWuKHuumsGg2skg=","crlite_enrolled":false,"id":"9294ecd4-a4c2-4786-9f0b-a20345e54442","last_modified":1562025664458},{"schema":1562025662215,"derHash":"P7oKpJ+94cgUyoMIeO0Dx9JDI/Y0g+Ut7o/0LBU8I08=","subject":"CN=GlobeSSL EV Certification Authority 2,OU=Controlled by COMODO exclusively for Globe Hosting\\, Inc.,O=Globe Hosting\\, Inc.,L=Wilmington,ST=DE,C=US","subjectDN":"MIHAMQswCQYDVQQGEwJ
VUzELMAkGA1UECBMCREUxEzARBgNVBAcTCldpbG1pbmd0b24xHDAaBgNVBAoTE0dsb2JlIEhvc3RpbmcsIEluYy4xQTA/BgNVBAsTOENvbnRyb2xsZWQgYnkgQ09NT0RPIGV4Y2x1c2l2ZWx5IGZvciBHbG9iZSBIb3N0aW5nLCBJbmMuMS4wLAYDVQQDEyVHbG9iZVNTTCBFViBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAy","whitelist":false,"attachment":{"hash":"8081c701056c43713db349d2808d99c5a352629faf0a60a54c7e2008170fc91c","size":2276,"filename":"iQ6SmjjdklCphf7sBBL9m4lWWf44bngHmvy7B8dl6XQ=.pem","location":"security-state-staging/intermediates/a35dab3a-08bf-43e8-b264-b1f7fa410a12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iQ6SmjjdklCphf7sBBL9m4lWWf44bngHmvy7B8dl6XQ=","crlite_enrolled":true,"id":"4fc9e088-612e-4c87-9986-7ef73542a266","last_modified":1562025662944},{"schema":1562025661465,"derHash":"wGiop8wvCL4Omh3bDfAeL3rnm/5QMSLFUrt7M2of1vQ=","subject":"CN=LuxTrust SSL CA 5,O=LuxTrust S.A.,C=LU","subjectDN":"MEExCzAJBgNVBAYTAkxVMRYwFAYDVQQKDA1MdXhUcnVzdCBTLkEuMRowGAYDVQQDDBFMdXhUcnVzdCBTU0wgQ0EgNQ==","whitelist":false,"attachment":{"hash":"07e1eb
74359b90ce357ff15b2837652122ed2943ca4724c19f4a3192da301b57","size":2288,"filename":"bcglypvVD9g3zJapYfU5_6QrN_GcvIy5NZ1p98WA-tU=.pem","location":"security-state-staging/intermediates/3be807ca-d51c-486c-9724-945c312574a2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bcglypvVD9g3zJapYfU5/6QrN/GcvIy5NZ1p98WA+tU=","crlite_enrolled":true,"id":"412b16c9-e9a4-4fdd-8e97-755cf0cd9015","last_modified":1562025662207},{"schema":1562025659950,"derHash":"CCskMEe/APWEQB9Ti1BLrp7AYOAH//KLFZwIQXBoZU4=","subject":"CN=GlobalSign Organization Validation CA - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTMwMQYDVQQDEypHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"e673e3e0c445d31eaaf7607090b13063ce93218b2424fad674db3bc682f6265e","size":1634,"filename":"OqqTlivI4taTCDJE1oq61tAsdnSQ_13Ibp0QKE1H7tc=.pem","location":"security-state-staging/intermediates/d2a682c5-e5d3-4d5f-8e12-1a3cbf600d6b.pem",
"mimetype":"application/x-pem-file"},"pubKeyHash":"OqqTlivI4taTCDJE1oq61tAsdnSQ/13Ibp0QKE1H7tc=","crlite_enrolled":false,"id":"d5374ecb-80ce-47e5-b059-bece1cff031d","last_modified":1562025660705},{"schema":1562025658474,"derHash":"sZHt60y3cseYMVDAR1F/UL2SIcjLyTSaEdDMPn73K/0=","subject":"CN=CA A7,O=DST,C=US","subjectDN":"MCsxCzAJBgNVBAYTAlVTMQwwCgYDVQQKEwNEU1QxDjAMBgNVBAMTBUNBIEE3","whitelist":false,"attachment":{"hash":"234f347bea5e6f979a5a03efb10ec2fdad80a05a5cf9ded51547fb01294a97f9","size":1114,"filename":"pIEW0Ptmy7_0EoTnwa5tDDgFuFD-p6-tNOU0O__34jM=.pem","location":"security-state-staging/intermediates/2df0a451-ff09-4261-a690-b21e121528de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pIEW0Ptmy7/0EoTnwa5tDDgFuFD+p6+tNOU0O//34jM=","crlite_enrolled":false,"id":"fb10dfd0-dceb-4cf8-99d9-966518cbbe69","last_modified":1562025659202},{"schema":1562025656956,"derHash":"cC25BNQaA4wMkpXPdD/DHy0OoXzEIou/z4Hle5oTmPk=","subject":"CN=COMODO ECC Extended Validation Code Signing CA,O=CO
MODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGRMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE3MDUGA1UEAxMuQ09NT0RPIEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"86ad7eec9fe49f2da6658c805ff49b8cd4c0d919c347cd6ee2446088aacb544b","size":1345,"filename":"WD9JjqhTQMxwDO7l8vVZLuQPr1qlVa6IiVp1QVlgeRM=.pem","location":"security-state-staging/intermediates/7ad82a21-1226-4e6c-a4d1-f54dc95a4952.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WD9JjqhTQMxwDO7l8vVZLuQPr1qlVa6IiVp1QVlgeRM=","crlite_enrolled":false,"id":"ff63e1e4-f2df-4c1f-912d-140d9482d281","last_modified":1562025657724},{"schema":1562025656215,"derHash":"vTgAKIBt7svIM2r4cLeat0/5gsKOPn/wnbI2MARL3tk=","subject":"CN=CrossTrust DV CA1,O=CrossTrust,C=JP","subjectDN":"MD4xCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpDcm9zc1RydXN0MRowGAYDVQQDExFDcm9zc1RydXN0IERWIENBMQ==","whitelist":false,"attachm
ent":{"hash":"fec40cd025070029bdff6f3e4e23cc05a21fc2f02394834d05664e175bed593a","size":1475,"filename":"H7SdZc_IEjlBeqVzFuiez9bEZDA35H1qoMvWqNj3cTg=.pem","location":"security-state-staging/intermediates/9a1c5eae-ad1b-4c59-8e67-068aa1271cbe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H7SdZc/IEjlBeqVzFuiez9bEZDA35H1qoMvWqNj3cTg=","crlite_enrolled":false,"id":"5229c4ed-b6d6-49aa-ac06-ff9409e3fe51","last_modified":1562025656948},{"schema":1562025655469,"derHash":"3MpxYWfwKaqaMJ7oyj/x9AF9Gh89GYG9/55a8/UDaCo=","subject":"CN=Booz Allen Hamilton BA CA 01,OU=TrustID,O=IdenTrust,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxEDAOBgNVBAsTB1RydXN0SUQxJTAjBgNVBAMTHEJvb3ogQWxsZW4gSGFtaWx0b24gQkEgQ0EgMDE=","whitelist":false,"attachment":{"hash":"909f0042606279a43c7d642c24bb37ea7161ec199ee60c8c634d754172b1ea23","size":2040,"filename":"UdncogVDGpmz7WJo4cgW3yRJEEC_B94goUWpdotXqis=.pem","location":"security-state-staging/intermediates/5c0368c0-92c7-4bdf-a1bd-6456c1a6742
2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UdncogVDGpmz7WJo4cgW3yRJEEC/B94goUWpdotXqis=","crlite_enrolled":false,"id":"f48c0b76-fdb4-48ef-8265-f5936ac95931","last_modified":1562025656207},{"schema":1562025654686,"derHash":"t2ovsWJyFiIq+ksCXPTaey5Oyh7HvPdcXH8E+gnIJjo=","subject":"CN=TrustOcean SSL CA - ECC - 2018,OU=ECC Domain Validation Secure Server - 2018,O=TrustOcean Ltd.,L=Denver,ST=CO,C=US","subjectDN":"MIGjMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPVHJ1c3RPY2VhbiBMdGQuMTMwMQYDVQQLEypFQ0MgRG9tYWluIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciAtIDIwMTgxJzAlBgNVBAMTHlRydXN0T2NlYW4gU1NMIENBIC0gRUNDIC0gMjAxOA==","whitelist":false,"attachment":{"hash":"8563213d0beedc0bfe2aeaf6eea186a61ed41cc23c14a763c1ba2c84517a3a00","size":1362,"filename":"PKd-ld-FuxfPZ5wgPJhWwsUah7IUyvrd0dVMuPAcCHw=.pem","location":"security-state-staging/intermediates/dcc8872f-13cc-416b-b26c-72c8733ead48.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PKd+ld+FuxfPZ5wgPJhWws
Uah7IUyvrd0dVMuPAcCHw=","crlite_enrolled":true,"id":"90f1d6dd-0284-4beb-9154-f681754b0384","last_modified":1562025655462},{"schema":1562025647187,"derHash":"6sJBwEQKNoMBETgzNrwgysdAnCD26I1PhPSCe+kZ4zg=","subject":"CN=e-Szigno SSL CA 2014,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHgxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEdMBsGA1UEAwwUZS1Temlnbm8gU1NMIENBIDIwMTQxHzAdBgkqhkiG9w0BCQEWEGluZm9AZS1zemlnbm8uaHU=","whitelist":false,"attachment":{"hash":"a0cfba79ba47c056ad89715d67ca81adb743a5af504f88e8533bb086aa28c2a6","size":2268,"filename":"DuvXKXobTisU7ufJpGVYzPTgBJ3Vjeta2kpZtG9qXc8=.pem","location":"security-state-staging/intermediates/632fc789-8c70-460e-a724-365f1a2f468b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DuvXKXobTisU7ufJpGVYzPTgBJ3Vjeta2kpZtG9qXc8=","crlite_enrolled":true,"id":"b199af11-7ea2-49db-8145-22cd545ac30f","last_modified":1562025647917},{"schema":1562025646434,"derHash":"j3zEVemlUHgEEgZV1xORhiU+Q7AEIuc0JjoHadL4n30=",
"subject":"CN=ACCVCA-130,OU=PKIACCV,O=ACCV,C=ES","subjectDN":"MEMxEzARBgNVBAMMCkFDQ1ZDQS0xMzAxEDAOBgNVBAsMB1BLSUFDQ1YxDTALBgNVBAoMBEFDQ1YxCzAJBgNVBAYTAkVT","whitelist":false,"attachment":{"hash":"c7a672c81ca3a88f9f1026542e8a440443a8270bb0d1179ac7f197bfae1d5169","size":2686,"filename":"Y4wPdQMFev6SAz6Zy7McH45VYp5uADyuOVtFnivRtu4=.pem","location":"security-state-staging/intermediates/45659546-7b93-4a34-9576-89edb332e236.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y4wPdQMFev6SAz6Zy7McH45VYp5uADyuOVtFnivRtu4=","crlite_enrolled":false,"id":"fdbfe4a6-8fe3-4795-a5fa-49db19f65800","last_modified":1562025647179},{"schema":1562025644937,"derHash":"IxukAuKLNJXzvgythweNm4+9hgQRFq+bgEfnsc/6gtA=","subject":"CN=Medicity Direct CA,OU=www.medicity.com,O=Medicity Inc.,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1NZWRpY2l0eSBJbmMuMRkwFwYDVQQLExB3d3cubWVkaWNpdHkuY29tMRswGQYDVQQDExJNZWRpY2l0eSBEaXJlY3QgQ0E=","whitelist":false,"attachment":{"hash":"a8fe64d502cfb57f08bdf2b32b5b90927e1
34d559471c8aad19c666b7d29ebbc","size":2154,"filename":"Kcbe6mdTGz7kGQXiuqkZB-C5l9pbNG9BpLKyFU6s8MI=.pem","location":"security-state-staging/intermediates/1638d79d-0fa1-4196-828b-4100a5c9634d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Kcbe6mdTGz7kGQXiuqkZB+C5l9pbNG9BpLKyFU6s8MI=","crlite_enrolled":false,"id":"c64e8b9f-acff-4734-8fac-8fd5810cd9cd","last_modified":1562025645673},{"schema":1562025640410,"derHash":"D9marh/81dnwrXbt3cvva4hMyFwWv8+ktSRhVdZZftY=","subject":"CN=EC-Ciutadania,OU=Serveis P\u00fablics de Certificaci\u00f3,O=CONSORCI ADMINISTRACIO OBERTA DE CATALUNYA,C=ES","subjectDN":"MIGGMQswCQYDVQQGEwJFUzEzMDEGA1UECgwqQ09OU09SQ0kgQURNSU5JU1RSQUNJTyBPQkVSVEEgREUgQ0FUQUxVTllBMSowKAYDVQQLDCFTZXJ2ZWlzIFDDumJsaWNzIGRlIENlcnRpZmljYWNpw7MxFjAUBgNVBAMMDUVDLUNpdXRhZGFuaWE=","whitelist":false,"attachment":{"hash":"159d49dde4802a499bf0db5648ce2298fe56a96ce3f2e2800785445ea996088e","size":2097,"filename":"N2E0VULCCzFKdEp8VKghUqKDvpzc2iM_BQAAwtDlBw0=.pem","location":"security-
state-staging/intermediates/df04e35c-a63e-447a-a80e-73770c3aef84.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N2E0VULCCzFKdEp8VKghUqKDvpzc2iM/BQAAwtDlBw0=","crlite_enrolled":false,"id":"dca24481-e123-47e7-97bb-84d938fe8132","last_modified":1562025641172},{"schema":1562025637342,"derHash":"d6vmXfS+lOXsIi/JBeEjP4x31rOuKTM0agwvw7Lx9WA=","subject":"CN=Oklahoma State Department of Health CA,OU=Orion Health Direct Secure Messaging,O=Oklahoma State Department of Health,C=US","subjectDN":"MIGbMQswCQYDVQQGEwJVUzEsMCoGA1UEChMjT2tsYWhvbWEgU3RhdGUgRGVwYXJ0bWVudCBvZiBIZWFsdGgxLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEvMC0GA1UEAxMmT2tsYWhvbWEgU3RhdGUgRGVwYXJ0bWVudCBvZiBIZWFsdGggQ0E=","whitelist":false,"attachment":{"hash":"03627595711bc45e6bb6e4689b2bbe75b2cea7c9fd224b0697209dadce2df2d3","size":2324,"filename":"xQRTlo6N9UfoVMjpnJGZtpJr06LdDBpWpY-8ECdpOkk=.pem","location":"security-state-staging/intermediates/f4576b6f-cb28-441b-aa43-161c2d12c329.pem","mimetype":"app
lication/x-pem-file"},"pubKeyHash":"xQRTlo6N9UfoVMjpnJGZtpJr06LdDBpWpY+8ECdpOkk=","crlite_enrolled":false,"id":"797ff527-d050-47f9-8c3d-7f29381409db","last_modified":1562025638143},{"schema":1562025636604,"derHash":"ir/8+n0+Cd9TGnL/FkBls6bYCnfjPOxDbunT9g+EEzs=","subject":"CN=InterContinental Hotels Group RSA Client CA,O=Six Continents Hotels\\, Inc.,L=Dunwoody,ST=GA,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzELMAkGA1UECBMCR0ExETAPBgNVBAcTCER1bndvb2R5MSQwIgYDVQQKExtTaXggQ29udGluZW50cyBIb3RlbHMsIEluYy4xNDAyBgNVBAMTK0ludGVyQ29udGluZW50YWwgSG90ZWxzIEdyb3VwIFJTQSBDbGllbnQgQ0E=","whitelist":false,"attachment":{"hash":"5128156a66f41cfb94c396626f58c95d45092d39232a2feee7a7f2663ae33066","size":2138,"filename":"qv_cktSW8maQyApxu-hdyO0fqYE834dm-HuXQIPLkOo=.pem","location":"security-state-staging/intermediates/f700690a-57b2-42f5-8f69-7b97adf26565.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qv/cktSW8maQyApxu+hdyO0fqYE834dm+HuXQIPLkOo=","crlite_enrolled":false,"id":"1f3a6742-4807-4da5-8b
58-7b88abdece12","last_modified":1562025637335},{"schema":1562025635854,"derHash":"SJzJ8M0OKTehCtlqI3XAvRAxs+zFS9Bk1YWMwGK0GxA=","subject":"SERIALNUMBER=201812,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODEy","whitelist":false,"attachment":{"hash":"209782e4f2ac908d3abdd1e2c651c9a94332adacb8ef3bed6f67ee015f73a1f6","size":2333,"filename":"K_y7Bld60S98GQkoxgI2sf4UHNiS90hGcdg2ZT9Sv2g=.pem","location":"security-state-staging/intermediates/ccf20a3e-8818-446c-bec4-8f650112c804.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"K/y7Bld60S98GQkoxgI2sf4UHNiS90hGcdg2ZT9Sv2g=","crlite_enrolled":false,"id":"43c10a9f-ecd2-4c0b-b6c2-3c51ffbe80c8","last_modified":1562025636597},{"schema":1562025635117,"derHash":"RtO1D+3PjDa19nIjnMOi6eAu0V8zy9wMJiqGR4SUA/Q=","subject":"CN=USERTrust ECC Organization Validation Secure Server CA,O=The USERTRUST
Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGZMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE/MD0GA1UEAxM2VVNFUlRydXN0IEVDQyBPcmdhbml6YXRpb24gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"0b8353c2d7776cd1f3b5e4ebc5145432dc3af3be23f68d2a3eaf204e02a02b17","size":1337,"filename":"kRGhnbdY7rR4yOa8G3EFT4gmen6uTLPFQPPk_s1vl-M=.pem","location":"security-state-staging/intermediates/ca9f4481-d288-4f5b-80c8-2bd10db0c543.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kRGhnbdY7rR4yOa8G3EFT4gmen6uTLPFQPPk/s1vl+M=","crlite_enrolled":false,"id":"a4586dee-7ea9-4b73-90f6-cb41b7b9cdfe","last_modified":1562025635846},{"schema":1562025634359,"derHash":"eqRdb1sU2rHGhEwZwoBOFLWBHm7eHwKwrvBlp7NZxo8=","subject":"CN=ATT Organization Validated CA 2019,OU=ATT Business Wi-Fi Services,O=ATT Services Inc,L=Austin,ST=Texas,C=US","subjectDN":"MIGcMQswCQYDVQQGEwJVUzEZMBcGA1UEChMQQVRUIFNlcnZp
Y2VzIEluYzEkMCIGA1UECxMbQVRUIEJ1c2luZXNzIFdpLUZpIFNlcnZpY2VzMQ8wDQYDVQQHEwZBdXN0aW4xDjAMBgNVBAgTBVRleGFzMSswKQYDVQQDEyJBVFQgT3JnYW5pemF0aW9uIFZhbGlkYXRlZCBDQSAyMDE5","whitelist":false,"attachment":{"hash":"ce151b1a5253a78fd23ad82efdd0ffb88b59b41f34a9871b6e2f3552df194f91","size":1735,"filename":"YOMvMe2Iot921yxSyd-8wLY-a8b_zYZmd31zENECyFE=.pem","location":"security-state-staging/intermediates/412a704f-f9d7-4f8f-8eb9-faf3eb2b7c8d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YOMvMe2Iot921yxSyd+8wLY+a8b/zYZmd31zENECyFE=","crlite_enrolled":true,"id":"126186e4-fe3d-4610-a378-9d6ddff47030","last_modified":1562025635109},{"schema":1562025633607,"derHash":"ZeeA3/y1OHDqTtnhhLz5v8pGSEi00n5e7fY5GOabO4c=","subject":"CN=Don Dominio / MrDomain RSA OV CA,O=Soluciones Corporativas IP\\, SL,L=Manacor,ST=Illes Balears,C=ES","subjectDN":"MIGLMQswCQYDVQQGEwJFUzEWMBQGA1UECBMNSWxsZXMgQmFsZWFyczEQMA4GA1UEBxMHTWFuYWNvcjEnMCUGA1UEChMeU29sdWNpb25lcyBDb3Jwb3JhdGl2YXMgSVAsIFNMMSkwJwYDVQQDEyBEb24gRG9t
aW5pbyAvIE1yRG9tYWluIFJTQSBPViBDQQ==","whitelist":false,"attachment":{"hash":"14cfac3f01120e8fab0ace79a95549801b13c469346a2d0e6aee4c6c99a8f967","size":2170,"filename":"PDA9PcTMXiEjxDxKYS1P_SinvLjX1xMCDWv1_fCl8_Q=.pem","location":"security-state-staging/intermediates/27edf606-4cc9-4094-b4bf-458c740217ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PDA9PcTMXiEjxDxKYS1P/SinvLjX1xMCDWv1/fCl8/Q=","crlite_enrolled":false,"id":"116c9082-ffba-4a57-92f9-73cd7e530aaa","last_modified":1562025634351},{"schema":1562025632851,"derHash":"ppxZlm67zf7H9P8CiMhv9gNW+nhgIIuTtDoJWwYAzB4=","subject":"CN=nazwaSSL,OU=http://nazwa.pl,O=nazwa.pl sp. z o.o.,C=PL","subjectDN":"MFgxCzAJBgNVBAYTAlBMMRwwGgYDVQQKDBNuYXp3YS5wbCBzcC4geiBvLm8uMRgwFgYDVQQLDA9odHRwOi8vbmF6d2EucGwxETAPBgNVBAMMCG5hendhU1NM","whitelist":false,"attachment":{"hash":"882b6da025cdfc61d89e03806a350163dfdfc251470ff6e5f8433ca8370adea9","size":1605,"filename":"AW6U8qPqk114rfl2sAhiEim2Pf0mq_Rb_BeWSlVAiP4=.pem","location":"security-state
-staging/intermediates/4a692d29-8a7d-4aa6-b0fa-426ad6f59300.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AW6U8qPqk114rfl2sAhiEim2Pf0mq/Rb/BeWSlVAiP4=","crlite_enrolled":true,"id":"bbeb9d9e-3dd2-4546-8c96-d7fc9be4f2e6","last_modified":1562025633599},{"schema":1562025631337,"derHash":"KaTsi8oy3ZHxEg3hT1u0OTVtSO2AEg3xo6hmF+pIS8g=","subject":"CN=KeyNet Systems ECC DV CA,O=KeyNet Systems LLC,L=Las Vegas,ST=Nevada,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMQ8wDQYDVQQIEwZOZXZhZGExEjAQBgNVBAcTCUxhcyBWZWdhczEbMBkGA1UEChMSS2V5TmV0IFN5c3RlbXMgTExDMSEwHwYDVQQDExhLZXlOZXQgU3lzdGVtcyBFQ0MgRFYgQ0E=","whitelist":false,"attachment":{"hash":"05956e2bbe03a04e21687f1c9ca0133edafbb9211cbc05d0b3a5a99a07c8284b","size":1297,"filename":"BUAXj7DRPY9FwGYzytth18HC8DBDa4DvU_tIIX5dMkI=.pem","location":"security-state-staging/intermediates/a89204d4-8ae2-4fce-b46a-2384b1364511.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BUAXj7DRPY9FwGYzytth18HC8DBDa4DvU/tIIX5dMkI=","crlite_enrolled":false,"id":
"3e638609-9645-46cf-88c9-263cbcf1d0e0","last_modified":1562025632090},{"schema":1562025629816,"derHash":"UFG9aeGdbNA2FHlJrFu8+Zg0Vh8Rn2DceTgkjWHHe70=","subject":"CN=Sectigo RSA Code Signing CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MHwxCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGDAWBgNVBAoTD1NlY3RpZ28gTGltaXRlZDEkMCIGA1UEAxMbU2VjdGlnbyBSU0EgQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"b8513c9c5b4db1eb407ce93a963c2fdb99d70689e74421029f245511fb2897fd","size":2125,"filename":"Ez_HDfkC0S25jJCRx4IUnR4y_p77QuYeiWPHVhWZbQU=.pem","location":"security-state-staging/intermediates/cbc4d51d-ac52-4ef3-8e1c-7c0fd3382973.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ez/HDfkC0S25jJCRx4IUnR4y/p77QuYeiWPHVhWZbQU=","crlite_enrolled":true,"id":"c2a4d5c5-1885-48b1-9bb9-b33f5686ec39","last_modified":1562025630576},{"schema":1562025629070,"derHash":"13N+Xy0//KQpkC6fOIz9bFlZzTWg/BA87i9+k9HGalI=","subject":"CN=Digi
Cert Assured ID TLS CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGkRpZ2lDZXJ0IEFzc3VyZWQgSUQgVExTIENB","whitelist":false,"attachment":{"hash":"3acfd29ff87e4c65c2f222ef3a9d1cf2386bb9c35bc8466e5ff9d4b21ca177bf","size":1735,"filename":"wcEQuH5mngysd8OrgXuw0roT-SkrGkVZxVSpoNafgws=.pem","location":"security-state-staging/intermediates/0bd20a8e-99cf-4d4b-af90-c59deca2697a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wcEQuH5mngysd8OrgXuw0roT+SkrGkVZxVSpoNafgws=","crlite_enrolled":true,"id":"1a882256-e765-4db1-820b-0d4c76dcf9a5","last_modified":1562025629808},{"schema":1562025627540,"derHash":"M88fXJOW1+6egoOy529ADlBFBXXrFa0CyVbBxVdbGE0=","subject":"CN=MobileMD Direct Intermediate CA,OU=MobileMD,O=MobileMD Health Services,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMSEwHwYDVQQKExhNb2JpbGVNRCBIZWFsdGggU2VydmljZXMxETAPBgNVBAsTCE1vYmlsZU1EMSgwJgYDVQQDEx9Nb2JpbGVNRCBEaXJlY3QgSW5
0ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{"hash":"35d053969fc5821037b137191551940bcf7fc50bfa0647a305746da9e582adeb","size":2190,"filename":"KF8mfWmAHOhFnWmjw7qocu6GmfRi8m7LPwwcVgTMS7s=.pem","location":"security-state-staging/intermediates/a811cee7-9306-41ed-ac9d-dd0f6360c358.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KF8mfWmAHOhFnWmjw7qocu6GmfRi8m7LPwwcVgTMS7s=","crlite_enrolled":false,"id":"59b4f0d3-d12e-4839-9c4d-373f62ed31ef","last_modified":1562025628306},{"schema":1562025626775,"derHash":"JTA8/QvxuqHvJIwp8HP//C58gVgu4jtFx/HDsy40Gtg=","subject":"CN=EAEko HAetako langileen CA - CA personal de AAPP vascas (2),OU=AZZ Ziurtagiri publikoa - Certificado publico SCA,O=IZENPE S.A.,C=ES","subjectDN":"MIGlMQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xOjA4BgNVBAsMMUFaWiBaaXVydGFnaXJpIHB1Ymxpa29hIC0gQ2VydGlmaWNhZG8gcHVibGljbyBTQ0ExRDBCBgNVBAMMO0VBRWtvIEhBZXRha28gbGFuZ2lsZWVuIENBIC0gQ0EgcGVyc29uYWwgZGUgQUFQUCB2YXNjYXMgKDIp","whitelist":false,"attachment":{"hash":"33e5
893bceb45f8047a84fd02b68d534b9290eb9deebc53433c7defcf5607d2c","size":2572,"filename":"fIoFCop2r5Hw838PL7crV4ts16Lq1s1xjk7E-I98dE8=.pem","location":"security-state-staging/intermediates/9635a458-c14c-408e-9445-8e8074645a18.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fIoFCop2r5Hw838PL7crV4ts16Lq1s1xjk7E+I98dE8=","crlite_enrolled":true,"id":"ca492503-140b-4ef0-895d-d6ffd21fe324","last_modified":1562025627531},{"schema":1562025624539,"derHash":"vD8DpDYkDtul+DcU9vZ340s3+bHwwIweVY2YHieeggk=","subject":"CN=RapidSSL SHA256 CA - G3,O=GeoTrust Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSAwHgYDVQQDExdSYXBpZFNTTCBTSEEyNTYgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"6e37822b18adbba04ed1ed6f1d2b14f9a4d268516dd949736146f64d645e0617","size":1496,"filename":"6X0iNAQtPIjXKEVcqZBwyMcRwq1yW60549axatu3oDE=.pem","location":"security-state-staging/intermediates/f9e93d0f-a61e-467e-8adb-526e38c507be.pem","mimetype":"application/x-pem-file"},"pubKeyHash
":"6X0iNAQtPIjXKEVcqZBwyMcRwq1yW60549axatu3oDE=","crlite_enrolled":false,"id":"20d5332c-be89-418c-a8bb-b3fa2467c0f1","last_modified":1562025625274},{"schema":1562025623789,"derHash":"9kDlZDxAwfMp4QBDjijJV2ka+opT5AWjJvev63DCO8E=","subject":"CN=itsme Sign Issuing CA G1,O=QuoVadis Trustlink BVBA,C=BE","subjectDN":"MG0xCzAJBgNVBAYTAkJFMRkwFwYDVQRhDBBOVFJCRS0wNTM3Njk4MzE4MSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQlZCQTEhMB8GA1UEAwwYaXRzbWUgU2lnbiBJc3N1aW5nIENBIEcx","whitelist":false,"attachment":{"hash":"b2592a909119953ff1445030e304e8ee3639a647ff3a126baef272b71727b5d0","size":2467,"filename":"nUS99ZApOt7vAjJaTRPLXupkkwz8777d3Be6QJ9XmXI=.pem","location":"security-state-staging/intermediates/db061d36-ae08-416c-9b85-54031ca3196d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nUS99ZApOt7vAjJaTRPLXupkkwz8777d3Be6QJ9XmXI=","crlite_enrolled":false,"id":"32e98d40-0e1a-4f96-bbd6-8cea5f34753c","last_modified":1562025624531},{"schema":1562025622305,"derHash":"HlW5BHmnN+eLVvOctXBRSisdy9mvJJwG
GIaDeph8aVg=","subject":"CN=NII Open Domain Code Signing CA,O=National Institute of Informatics,L=Academe,C=JP","subjectDN":"MHUxCzAJBgNVBAYTAkpQMRAwDgYDVQQHEwdBY2FkZW1lMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxKDAmBgNVBAMTH05JSSBPcGVuIERvbWFpbiBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"1cf70e67f36acabb305f46fa93fe5f445a8d376d8408160bbec5c9104908fd83","size":1638,"filename":"m3mE8ZnK8HZ9jzJz9euIeftEUmi37GkgQPeuCCQJI8o=.pem","location":"security-state-staging/intermediates/d2643bff-aec0-4b5e-b8ae-f32d7a258f21.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m3mE8ZnK8HZ9jzJz9euIeftEUmi37GkgQPeuCCQJI8o=","crlite_enrolled":false,"id":"ba200c93-1e24-4cf0-b8ae-4f284461de5d","last_modified":1562025623035},{"schema":1562025620792,"derHash":"HMNYpt+gp2u1RwZg1487JfI8zWOVZn5JzPyCAdo9GS0=","subject":"CN=Certigna Entity CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MHsxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlESElNWU9USVMxHDAaBgNVBAsMEzAwMDIgNDgxNDY
zMDgxMDAwMzYxHTAbBgNVBGEMFE5UUkZSLTQ4MTQ2MzA4MTAwMDM2MRswGQYDVQQDDBJDZXJ0aWduYSBFbnRpdHkgQ0E=","whitelist":false,"attachment":{"hash":"61a81d4d9681c5c86696195f2dcb40c8e795f9b490e5f72a7fa8ab4d6fd0ada9","size":2507,"filename":"0Eiyrr-wFIp1JqShtXzNCtJt2yUU0-j_mDnLwk1-AHk=.pem","location":"security-state-staging/intermediates/bfaf2dab-dfcf-4771-bf64-700aa69c0281.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0Eiyrr+wFIp1JqShtXzNCtJt2yUU0+j/mDnLwk1+AHk=","crlite_enrolled":false,"id":"7c421e3b-f390-4235-af5f-e8a08ad5b7b3","last_modified":1562025621531},{"schema":1562025618556,"derHash":"VGyv+QYO7zD08+AiVfv1Ex5lfBcQyaZQAgEzqBi+wcg=","subject":"CN=GeoTrust EV SSL CA - G7,O=GeoTrust Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSAwHgYDVQQDExdHZW9UcnVzdCBFViBTU0wgQ0EgLSBHNw==","whitelist":false,"attachment":{"hash":"819ac09e5307805d7bca58b450e383b8d795a443c6fe0c3ad0f26bdea6357767","size":1906,"filename":"mSUoTJHVFJsXYTXqbA1e3I1MK46Hl_VXGBvp5bWWW4c=.pem"
,"location":"security-state-staging/intermediates/abc5e6d5-4632-4219-b8c8-fd208ce1314d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mSUoTJHVFJsXYTXqbA1e3I1MK46Hl/VXGBvp5bWWW4c=","crlite_enrolled":false,"id":"cbbe38e9-ee0e-4003-9c25-ae1e817de1e1","last_modified":1562025619303},{"schema":1562025617811,"derHash":"Zc+Tj9n7NCAMn235Pe1zqltxw2nMdKfEkfDkeh1edL4=","subject":"CN=MarketWare Server CA 2,O=MarketWare - Solu\u00e7\u00f5es para Mercados Digitais\\, Lda.,L=Lisboa,ST=Lisboa,C=PT","subjectDN":"MIGPMQswCQYDVQQGEwJQVDEPMA0GA1UECBMGTGlzYm9hMQ8wDQYDVQQHEwZMaXNib2ExPTA7BgNVBAoMNE1hcmtldFdhcmUgLSBTb2x1w6fDtWVzIHBhcmEgTWVyY2Fkb3MgRGlnaXRhaXMsIExkYS4xHzAdBgNVBAMTFk1hcmtldFdhcmUgU2VydmVyIENBIDI=","whitelist":false,"attachment":{"hash":"f386a64f34b7c17cb08c2a7db308298366857c0b6c8c079eb54b64e3e52da778","size":2174,"filename":"nDi1HIiT115x0MuCzNMX50C66I0SdrTtqTFxWKBs9TA=.pem","location":"security-state-staging/intermediates/db573702-d4d2-4f8b-8424-67deaebcb59b.pem","mimetype":"applica
tion/x-pem-file"},"pubKeyHash":"nDi1HIiT115x0MuCzNMX50C66I0SdrTtqTFxWKBs9TA=","crlite_enrolled":true,"id":"564405bd-7e8b-4930-98d8-7e9a66a09631","last_modified":1562025618549},{"schema":1562025616317,"derHash":"eO4jersjVKpnyo+14r+puRegv1Pi87PKs9rOweLDYeE=","subject":"CN=Gehirn Managed Certification Authority - ECC OV,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIGCMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMTgwNgYDVQQDEy9HZWhpcm4gTWFuYWdlZCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDQyBPVg==","whitelist":false,"attachment":{"hash":"cacee93de389613e7f6636cfe013384ae68d256770ea28771d8a6196b104fee6","size":1321,"filename":"oARzv0l1Eo_Mizi_3scY3T6AQ1Zfy7sDSJO-oLT0O0g=.pem","location":"security-state-staging/intermediates/eec8e59e-ea66-4a29-82fe-6c948d312095.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oARzv0l1Eo/Mizi/3scY3T6AQ1Zfy7sDSJO+oLT0O0g=","crlite_enrolled":false,"id":"648ea664-8a0e-4b8c-b41f-de5c67be76d9","last
_modified":1562025617054},{"schema":1562025614822,"derHash":"WKqSlhweA1BUrdpk6IO/rhshQ5y/etYeM/Z9xW4pX2o=","subject":"CN=National and Kapodistrian University of Athens CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGSMQswCQYDVQQGEwJHUjFEMEIGA1UECgw7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxPTA7BgNVBAMMNE5hdGlvbmFsIGFuZCBLYXBvZGlzdHJpYW4gVW5pdmVyc2l0eSBvZiBBdGhlbnMgQ0EgUjI=","whitelist":false,"attachment":{"hash":"5789381e4fdcbc89485d0d084b116ecc57eab7a3411841e4acba28a4454b7219","size":2207,"filename":"a-9SzP1XJW2jpz0QniNws25_KvsEBfsN9xrkka1dChc=.pem","location":"security-state-staging/intermediates/b5f529a5-f373-4883-8c9c-9d8f165824f1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"a+9SzP1XJW2jpz0QniNws25/KvsEBfsN9xrkka1dChc=","crlite_enrolled":true,"id":"2e2e2899-2ea5-4d68-b3d0-0c2c1ed211c9","last_modified":1562025615555},{"schema":1562025613331,"derHash":"WMldF5B+dD4SHO9H1IBk17OvMrUUvqPvdNKQpS1
wuWw=","subject":"CN=Trend Micro CA,O=Trend Micro Inc,C=US","subjectDN":"MEAxCzAJBgNVBAYTAlVTMRgwFgYDVQQKDA9UcmVuZCBNaWNybyBJbmMxFzAVBgNVBAMMDlRyZW5kIE1pY3JvIENB","whitelist":false,"attachment":{"hash":"33f2077021a616b53e063fdb38858c8315f1fa59cc4a6030f8c6a347c168de22","size":1459,"filename":"qczcaUM72BvrELfBo2n2WlYnwx7A5w4eV0dgYXXe1Bk=.pem","location":"security-state-staging/intermediates/263841e5-4107-4fe7-9f25-0ff66db32773.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qczcaUM72BvrELfBo2n2WlYnwx7A5w4eV0dgYXXe1Bk=","crlite_enrolled":false,"id":"e5df1dae-0e71-4c7f-8ed1-4926351e8dea","last_modified":1562025614072},{"schema":1562025611813,"derHash":"Js3s3ROkRt6hoLehqs8Xu4BRtoUJ6ZAK0lQdBFSgP/U=","subject":"SERIALNUMBER=201914,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTE0","whitelist":false,"attachment":{"hash":"33f2d6b3dab
769a53325ffbb9013e62f16a787048391ec59be9889656248794f","size":2333,"filename":"PaxxgvdBQW_hDijSBTN-csj_vsanAzF9gsjoa6ic5w4=.pem","location":"security-state-staging/intermediates/ed61ec49-d0f8-412c-9387-8b9b3409e56f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PaxxgvdBQW/hDijSBTN+csj/vsanAzF9gsjoa6ic5w4=","crlite_enrolled":false,"id":"17cb40e4-54d0-4f35-b236-070f94f267f4","last_modified":1562025612546},{"schema":1562025611073,"derHash":"ml7s7px9iYvYHcO/Bm2vau+42xxZZ2IG0r/daCMSxvY=","subject":"CN=Thawte RSA CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xGzAZBgNVBAMTElRoYXd0ZSBSU0EgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"5ab0596aa7dd3f7d6cf1c6d2df754c46aa3f5872ff617e4f9336bde88379619b","size":1634,"filename":"S0mHTmqv2QhJEfy5vyPVERSnyMEliJzdC8RXduOjhAs=.pem","location":"security-state-staging/intermediates/289fd54c-d874-4e7c-966c-99955002ec14.pem","mimetype":"
application/x-pem-file"},"pubKeyHash":"S0mHTmqv2QhJEfy5vyPVERSnyMEliJzdC8RXduOjhAs=","crlite_enrolled":true,"id":"d280501b-539b-4cdb-87d5-dd02b98025b3","last_modified":1562025611805},{"schema":1562025606564,"derHash":"p7dwK9Ju9/BnodOXXsFyC0bW4B/RAayTQi7rDW3iXzI=","subject":"CN=SecureCore RSA DV CA,O=SecureCore,L=OSAKA,ST=OSAKA,C=JP","subjectDN":"MGExCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVPU0FLQTEOMAwGA1UEBxMFT1NBS0ExEzARBgNVBAoTClNlY3VyZUNvcmUxHTAbBgNVBAMTFFNlY3VyZUNvcmUgUlNBIERWIENB","whitelist":false,"attachment":{"hash":"b3944ffa540226fa1a9e53714f5357803617cd5ef1176c921cf08e37c5a1f503","size":2113,"filename":"CrV-DCuu__rnw7hOV-VT2e3k97fReT_N7f4coJTynlM=.pem","location":"security-state-staging/intermediates/fb5448bb-8cd8-4448-abe0-785a2c069d60.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CrV+DCuu//rnw7hOV+VT2e3k97fReT/N7f4coJTynlM=","crlite_enrolled":true,"id":"9e84ec55-93b1-412d-b1ec-dd9a2fa6d851","last_modified":1562025607312},{"schema":1562025605823,"derHash":"YvubbNJjO5LZHb
JkzmeKmxnFdUFKsQrUbRV/B7uibv8=","subject":"CN=GeoTrust Secure Site Starter DV SSL CA - G1,OU=Domain Validated SSL,O=GeoTrust\\, Inc.,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5HZW9UcnVzdCwgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxNDAyBgNVBAMTK0dlb1RydXN0IFNlY3VyZSBTaXRlIFN0YXJ0ZXIgRFYgU1NMIENBIC0gRzE=","whitelist":false,"attachment":{"hash":"7fbb720621a1148fa1c1e47a4c221a58b477ab69560c12e200af131f56d400e8","size":1743,"filename":"INyHMxZOziIERyiIqDLB0VLBBRvnFowehelheu9bdZY=.pem","location":"security-state-staging/intermediates/4da4baa6-3ba3-4f18-b318-e556016cb10e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"INyHMxZOziIERyiIqDLB0VLBBRvnFowehelheu9bdZY=","crlite_enrolled":false,"id":"a2c4298c-6d7d-4e67-82d6-bba4f0fb4f9e","last_modified":1562025606556},{"schema":1562025602757,"derHash":"pesHtCHfz+1qnF4ucq5xBeKayGdaiWsrUijjVXYfr7Y=","subject":"CN=Digi-Sign CA Digi-ID,O=Digi-Sign Limited,L=Dublin,ST=County Dublin,C=IE","subjectDN":"MHExCzAJBgNVBAYTAklFMRYwFAY
DVQQIEw1Db3VudHkgRHVibGluMQ8wDQYDVQQHEwZEdWJsaW4xGjAYBgNVBAoTEURpZ2ktU2lnbiBMaW1pdGVkMR0wGwYDVQQDExREaWdpLVNpZ24gQ0EgRGlnaS1JRA==","whitelist":false,"attachment":{"hash":"49174c7fb3a07c4ee6bdd8f6d6366142a26863f173d39f278180b7de9c574c7a","size":2121,"filename":"lSWsBqNnQ74d1GG7ux7ThmLopqXERYuHcDLuXouxsyU=.pem","location":"security-state-staging/intermediates/975bf464-9aac-4785-9db4-bf6f599f9dfc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lSWsBqNnQ74d1GG7ux7ThmLopqXERYuHcDLuXouxsyU=","crlite_enrolled":false,"id":"c9ba0d28-eb09-4617-9b02-8109a727b905","last_modified":1562025603528},{"schema":1562025601957,"derHash":"XxqCwJy64jnU4/BwTJcHVVR+U+PPKQ+Uef5+mGZf7w8=","subject":"CN=Abbott Laboratories Secure Code Signing CA,O=Abbott Laboratories Inc.,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMSEwHwYDVQQKExhBYmJvdHQgTGFib3JhdG9yaWVzIEluYy4xMzAxBgNVBAMTKkFiYm90dCBMYWJvcmF0b3JpZXMgU2VjdXJlIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"c53bc185adf65cc1c3297afab1f667bf4
2bc5da4e68e8e1b18794a9385973297","size":1878,"filename":"Vgcwr9WVl0WnsAApvKgxDZM4Q7HznM_pP7X9u4ESS1I=.pem","location":"security-state-staging/intermediates/3ae5fbf0-e0db-481a-baad-a316a45d945a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vgcwr9WVl0WnsAApvKgxDZM4Q7HznM/pP7X9u4ESS1I=","crlite_enrolled":false,"id":"776078c7-791c-4564-8ce2-eb27e585f7b1","last_modified":1562025602746},{"schema":1562025600414,"derHash":"0roL/sQ/p4A4YM3mszd0IbH1Y+wSS1HZCEFbDpNzI+Y=","subject":"CN=QuoVadis Time-Stamping Authority CA G1,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MHkxCzAJBgNVBAYTAk5MMRcwFQYDVQRhDA5OVFJOTC0zMDIzNzQ1OTEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xLzAtBgNVBAMMJlF1b1ZhZGlzIFRpbWUtU3RhbXBpbmcgQXV0aG9yaXR5IENBIEcx","whitelist":false,"attachment":{"hash":"26a4176be473a14f31de29d1da3b12f02f12be34041e77269c5979e00db43293","size":2418,"filename":"6o4kS9EEt21KPoxCFXRoGxaVWapw68wCcDeVHVAcpik=.pem","location":"security-state-staging/intermediates/1b3a0d87-9421-4607-a1d3-76921
22d7547.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6o4kS9EEt21KPoxCFXRoGxaVWapw68wCcDeVHVAcpik=","crlite_enrolled":false,"id":"a14b051b-7d8e-4751-a0be-ea7845db3846","last_modified":1562025601175},{"schema":1562025597404,"derHash":"9ooj65c3qMdE7mcRLy/AJKrcUDu7sE8lze1PJXbJNIU=","subject":"CN=The Code Project Secure Email (S/mime) CA,O=The Code Project,C=CA","subjectDN":"MFwxCzAJBgNVBAYTAkNBMRkwFwYDVQQKExBUaGUgQ29kZSBQcm9qZWN0MTIwMAYDVQQDEylUaGUgQ29kZSBQcm9qZWN0IFNlY3VyZSBFbWFpbCAoUy9taW1lKSBDQQ==","whitelist":false,"attachment":{"hash":"e34a2353b9ea221ccf98cccc3d39c3562f1daceb776f42298bbc37afdd4fc54a","size":1752,"filename":"xtYGt02m4umLJCyy0kfaczCboF12WILjsGOb1umDfX0=.pem","location":"security-state-staging/intermediates/6a587b25-39c3-4ac6-95d6-78df25a40d97.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xtYGt02m4umLJCyy0kfaczCboF12WILjsGOb1umDfX0=","crlite_enrolled":false,"id":"9533ae64-4d6c-4fcd-bdaa-fbcf2aaf2775","last_modified":1562025598133},{"schema":156202
5596661,"derHash":"Xyt9WujUNLYt/EOqPjZ+iF993t2aQ6QtGGk5BAD7MUY=","subject":"SERIALNUMBER=201904,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTA0","whitelist":false,"attachment":{"hash":"c993ae91e5b73aeec9e80128be6a3eb8363cce5a8b6c955a24aa9c094b3764b8","size":2333,"filename":"_Eevym_zrvrIKVw8p8WS5pcOrGxY2QoyYX8eTm_Qcns=.pem","location":"security-state-staging/intermediates/98f269e6-220e-4aac-b625-a3681b2126a9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/Eevym/zrvrIKVw8p8WS5pcOrGxY2QoyYX8eTm/Qcns=","crlite_enrolled":false,"id":"72c868f6-7898-4524-8d73-77ed61951b94","last_modified":1562025597396},{"schema":1562025595171,"derHash":"zo4QUBzRiNIn73StCjQtl3ZDvS3j8hcWG17S/7BYEac=","subject":"CN=Don Dominio / MrDomain RSA Client CA,O=Soluciones Corporativas IP\\, SL,L=Manacor,ST=Illes Balears,C=ES","subjectDN":"MIGPMQswCQYDVQQGE
wJFUzEWMBQGA1UECBMNSWxsZXMgQmFsZWFyczEQMA4GA1UEBxMHTWFuYWNvcjEnMCUGA1UEChMeU29sdWNpb25lcyBDb3Jwb3JhdGl2YXMgSVAsIFNMMS0wKwYDVQQDEyREb24gRG9taW5pbyAvIE1yRG9tYWluIFJTQSBDbGllbnQgQ0E=","whitelist":false,"attachment":{"hash":"b532c1793ab65aa624c09708e7ebac6c4a98303c286d5b180809d182d9d544f3","size":2162,"filename":"bZXUokABdjKvAlZHkn4TVSe5U8voAYQQKs7PqX-3PkA=.pem","location":"security-state-staging/intermediates/0f7549c3-9c5e-48fd-b0c1-8791638b7e0c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bZXUokABdjKvAlZHkn4TVSe5U8voAYQQKs7PqX+3PkA=","crlite_enrolled":false,"id":"41d33eac-fc49-4e82-8895-d1613fe6d882","last_modified":1562025595903},{"schema":1562025594407,"derHash":"FDY4IlF+KYmwh9DJpC7vE0p3S9CyoGZNRVr3hLwI9NA=","subject":"CN=Trusted Secure Certificate Authority 5,O=Corporation Service Company,L=Wilmington,ST=DE,C=US","subjectDN":"MIGGMQswCQYDVQQGEwJVUzELMAkGA1UECBMCREUxEzARBgNVBAcTCldpbG1pbmd0b24xJDAiBgNVBAoTG0NvcnBvcmF0aW9uIFNlcnZpY2UgQ29tcGFueTEvMC0GA1UEAxMmVHJ1c3RlZCBTZWN
1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDU=","whitelist":false,"attachment":{"hash":"8a6494ec2603c5d7fa49b972528dee5f7e5ba0c42c069f06d9aeab2c7f90c7fa","size":2166,"filename":"PzYLl5g5RZkQsPcG4YUX6vzXQf86rOUEcSAhn7JxzNo=.pem","location":"security-state-staging/intermediates/e96bc34e-fa49-44d4-8bed-d0620ff47065.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PzYLl5g5RZkQsPcG4YUX6vzXQf86rOUEcSAhn7JxzNo=","crlite_enrolled":true,"id":"f9fe88db-9db6-4383-b17b-864a507f7e22","last_modified":1562025595163},{"schema":1562025591410,"derHash":"tnb/oxeeiBIJOhter+6HauemqvIxB42tG/shzSiTdko=","subject":"CN=GlobalSign RSA OV SSL CA 2018,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1HbG9iYWxTaWduIFJTQSBPViBTU0wgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"4a0e56bd3b0d5e1f85efac014a7e99c83489b11c4826b602e42b144c4f6e91da","size":1553,"filename":"hETpgVvaLC0bvcGG3t0cuqiHvr4XyP2MTwCiqhgRWwU=.pem","location":"security-state-staging/
intermediates/3f1383e4-4860-4b8b-bf8b-eac0b66ceb61.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hETpgVvaLC0bvcGG3t0cuqiHvr4XyP2MTwCiqhgRWwU=","crlite_enrolled":true,"id":"5ec3f078-2414-46ca-aaf8-e9630ae2109a","last_modified":1562025592175},{"schema":1562025590674,"derHash":"CQM/4jmW/kpZxMD1I9JWDjHf5MF9jqFAPUKalx9L1lo=","subject":"CN=WoTrus OV SSL Pro CA,O=WoTrus CA Limited,C=CN","subjectDN":"MEgxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1RydXMgQ0EgTGltaXRlZDEdMBsGA1UEAxMUV29UcnVzIE9WIFNTTCBQcm8gQ0E=","whitelist":false,"attachment":{"hash":"0e6c76a6d70346ff239c0a9320d8ebda8b750ae57610ff62a44fb8e221319a31","size":1861,"filename":"zACNb3_D6r-GIH58_Q4EDalNSChXFVVFbUJICvq7SIQ=.pem","location":"security-state-staging/intermediates/b1a606fe-50b5-4825-a5cc-14e050d9c0ae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zACNb3/D6r+GIH58/Q4EDalNSChXFVVFbUJICvq7SIQ=","crlite_enrolled":true,"id":"633e504e-6010-4677-ba99-3052463cf02f","last_modified":1562025591403},{"schema":1562025589184
,"derHash":"d3T6t1SJgiYrL+u0hmQ5sw+Ey7LRA1ed+esZ10tn/u4=","subject":"SERIALNUMBER=201919,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTE5","whitelist":false,"attachment":{"hash":"61e72b9bfdca750e62c110c66bf30a3e69326deb6d793993bc4a88ba37a6e64d","size":2333,"filename":"tMuaH8MohBI08k1zTBkJ34YXWEOTQLc48i1wOMHbmdE=.pem","location":"security-state-staging/intermediates/37c38782-e0a8-4754-9a6f-655f6a72e086.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tMuaH8MohBI08k1zTBkJ34YXWEOTQLc48i1wOMHbmdE=","crlite_enrolled":false,"id":"1c7d8111-6d2b-43cc-9d4f-8ac30ea4fe05","last_modified":1562025589921},{"schema":1562025586185,"derHash":"cQAks3vZ8OFTfBikwg+aMcS0hdEkjGQ/ILTADzcWuoU=","subject":"CN=DigiCert EV Server CA G4,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCAgSW5jMRkwFwYDVQ
QLExB3d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBFViBTZXJ2ZXIgQ0EgRzQ=","whitelist":false,"attachment":{"hash":"bfda2140f26102c7934ae20783fd8234f2b2f5bbbfe9aa291f7d91bb80b6078a","size":1951,"filename":"rSOteFVbBeX8qJ_1s6WFayDHdgaEKLjbWQS5PZDkdvg=.pem","location":"security-state-staging/intermediates/5b85823c-270a-414c-ab27-7a62b77143d1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rSOteFVbBeX8qJ/1s6WFayDHdgaEKLjbWQS5PZDkdvg=","crlite_enrolled":true,"id":"66f62e6d-0c5f-4d24-80c0-b99829e532cb","last_modified":1562025586928},{"schema":1562025585399,"derHash":"cJvk6rCjchI28osquA92/aJRMwsygvUV6l4LbHmuZyk=","subject":"CN=RUB-Chipcard CA G2,O=Ruhr-Universitaet Bochum,C=DE","subjectDN":"ME0xCzAJBgNVBAYTAkRFMSEwHwYDVQQKDBhSdWhyLVVuaXZlcnNpdGFldCBCb2NodW0xGzAZBgNVBAMMElJVQi1DaGlwY2FyZCBDQSBHMg==","whitelist":false,"attachment":{"hash":"5b3189496744b3baca10b9e288920f3c93f91a4cb9238792c8a84cb327282206","size":1947,"filename":"1LhrLd2v38EP1hLDpF6VhNqMjyRxu9cRaZL0r98r04o=.pem","loca
tion":"security-state-staging/intermediates/f9495b7a-e1af-4b97-bc3c-208ef9ce1a7e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1LhrLd2v38EP1hLDpF6VhNqMjyRxu9cRaZL0r98r04o=","crlite_enrolled":false,"id":"25ac7183-b98c-44a4-b022-6d05aaf05e96","last_modified":1562025586178},{"schema":1562025584632,"derHash":"TRCTIKejRvitcC3/8ad1jvy2E1v7L6OCQRclafAzLIM=","subject":"CN=COMODO Extended Validation Code Signing CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGNMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDEzMDEGA1UEAxMqQ09NT0RPIEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"8e7517a2e51225db3888dceafbd6ffe6b128140e61feec75ab7d84d1927194ce","size":1849,"filename":"7Hf58eWzQ6pqWMtrBn80g3KJoxUpyCJ8oVoYdu4VSr0=.pem","location":"security-state-staging/intermediates/cc2c49d0-3326-4e77-88c2-da405ccf308c.pem","mimetype":"application/x-pem-file"},"pub
KeyHash":"7Hf58eWzQ6pqWMtrBn80g3KJoxUpyCJ8oVoYdu4VSr0=","crlite_enrolled":false,"id":"3d00ad4a-5f8d-4f77-b665-1308530ca883","last_modified":1562025585390},{"schema":1562025581604,"derHash":"8DdiFAXg81ZQfiOfrdZHhC07UIV8PP+ECFkXT3L2/Rg=","subject":"CN=DPDHL User CA I3,O=Deutsche Post,L=Bonn,ST=Nordrhein-Westfalen,C=DE","subjectDN":"MG0xCzAJBgNVBAYTAkRFMRwwGgYDVQQIExNOb3JkcmhlaW4tV2VzdGZhbGVuMQ0wCwYDVQQHEwRCb25uMRYwFAYDVQQKEw1EZXV0c2NoZSBQb3N0MRkwFwYDVQQDExBEUERITCBVc2VyIENBIEkz","whitelist":false,"attachment":{"hash":"aa3ab0230e44f321498e54339387e4d5d251084f2d2be80234f5d282fff8ef58","size":4356,"filename":"U24C-tQ5-xqZXjJsjWmKnA3KCkx84xBNSPzVCzpko_A=.pem","location":"security-state-staging/intermediates/cc9371be-8d27-4657-9e1d-c89b3c6e3e4a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U24C+tQ5+xqZXjJsjWmKnA3KCkx84xBNSPzVCzpko/A=","crlite_enrolled":false,"id":"cf8eb580-18e7-4ef4-851c-a3845809da47","last_modified":1562025582348},{"schema":1562025578554,"derHash":"F7TgrQSCo9An9
YvfyKm9Vfdcq8jfBZpAVqFsyN7lM+8=","subject":"CN=University of Macedonia CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHsxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEmMCQGA1UEAxMdVW5pdmVyc2l0eSBvZiBNYWNlZG9uaWEgQ0EgUjE=","whitelist":false,"attachment":{"hash":"7827466be49a6ae3b8dcac1383f0357eeae5507bb485fc1f144a41c7f8a6aa64","size":2519,"filename":"Q3wUDE_KGR_qsDlo3z3iA92yNVJJgXo3pVbkHKiMh-g=.pem","location":"security-state-staging/intermediates/529eeb7b-a51a-4cc6-b552-835ff75ba795.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Q3wUDE/KGR/qsDlo3z3iA92yNVJJgXo3pVbkHKiMh+g=","crlite_enrolled":true,"id":"ce7d0110-67fe-41f1-92bf-c23fa3f7d1e5","last_modified":1562025579301},{"schema":1562025577754,"derHash":"hZlo+SeLTcgu4w/RGKXSl9KEtofLZM+XVauKnTjytw8=","subject":"CN=Trustwave Domain Validation SHA256 CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","s
ubjectDN":"MIGvMQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE3MDUGA1UEAxMuVHJ1c3R3YXZlIERvbWFpbiBWYWxpZGF0aW9uIFNIQTI1NiBDQSwgTGV2ZWwgMTEfMB0GCSqGSIb3DQEJARYQY2FAdHJ1c3R3YXZlLmNvbQ==","whitelist":false,"attachment":{"hash":"9eada92e3a97dd020d1e54af280aa60bf3400d8c05725aec56aa8357bd9c9bed","size":1768,"filename":"D2BA_wGfRVRt6vATeLdkNJ0B3ckV2GlyUIDdWUqCSDQ=.pem","location":"security-state-staging/intermediates/9e9ff0f0-f45d-41dc-8a17-414e7c15f484.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D2BA/wGfRVRt6vATeLdkNJ0B3ckV2GlyUIDdWUqCSDQ=","crlite_enrolled":true,"id":"60bc13d6-1760-488c-b696-f2dd9d3df1a2","last_modified":1562025578546},{"schema":1562025575484,"derHash":"JhjEFcFGupil8K1+pJiqWHgLpV+o47By0TwzDUEBBxc=","subject":"CN=EuropeanSSL Client CA,O=EUNETIC GmbH,C=DE","subjectDN":"MEQxCzAJBgNVBAYTAkRFMRUwEwYDVQQKEwxFVU5FVElDIEdtYkgxHjAcBgNVBAMTFUV1cm9wZWFuU1NMIENsaWVudCBDQQ==","whitelist":false,"attachment
":{"hash":"939382e857302d9c045c2918ffbab03973b2a29f5c566cfdd7e53388636562f6","size":1723,"filename":"6rE_4fpPwsenurNcVvOyU8xh7Vp9kamSGTFA4_9ffGI=.pem","location":"security-state-staging/intermediates/bfff1194-870c-47b2-ba6e-1180017f2936.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6rE/4fpPwsenurNcVvOyU8xh7Vp9kamSGTFA4/9ffGI=","crlite_enrolled":false,"id":"1b741d5d-51c9-4a71-92ad-b421a5c2824e","last_modified":1562025576254},{"schema":1562025573252,"derHash":"cLm6WVQSz4YUt2dH/Wg8yidZ9CZCFkg0++/diFBcTxw=","subject":"CN=emSign ECC Device CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MG0xCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMSIwIAYDVQQDExllbVNpZ24gRUNDIERldmljZSBDQSAtIEcz","whitelist":false,"attachment":{"hash":"d7af7c53238ed1dc9fffed6f3e5bce922f646c3ff9a60630c499d766352973cc","size":1142,"filename":"yETFaiH0jqwEN-yzu6pHbtmjgE5XzT3dvmi_Wzb31hM=.pem","location":"security-state-staging/intermedi
ates/b6e31f0d-7208-4e42-8621-2efeaacbb876.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yETFaiH0jqwEN+yzu6pHbtmjgE5XzT3dvmi/Wzb31hM=","crlite_enrolled":false,"id":"c71399ad-5c58-4c11-9f7a-9147f50eae00","last_modified":1562025573987},{"schema":1562025571754,"derHash":"jZkhf/gtYOTfWb6KESFiXN/8TyLyHhJjod8G0twLVA4=","subject":"CN=QuoVadis QVRCA3G1 SSL ICA,O=QuoVadis Limited,C=BM","subjectDN":"MEwxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSIwIAYDVQQDDBlRdW9WYWRpcyBRVlJDQTNHMSBTU0wgSUNB","whitelist":false,"attachment":{"hash":"4de419e355223a24032129dc3cd0fc679d92fcf36397afb5432936371479b9f5","size":2373,"filename":"m7H4WXNR3iGdK5BvRMFrKs78WAc-SoBCaPH-fLXigIw=.pem","location":"security-state-staging/intermediates/4ff3d1f9-4d98-4fa8-be76-8e1e5434cbdb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m7H4WXNR3iGdK5BvRMFrKs78WAc+SoBCaPH+fLXigIw=","crlite_enrolled":true,"id":"7be166ff-6cb1-402e-a354-a7337b7f2b7a","last_modified":1562025572488},{"schema":1562025571006
,"derHash":"cG7LIbCW9v/M3J6+WqG3dvZNuPrn8KXAMscQQeUCuY8=","subject":"CN=AlwaysOnSSL RSA CA G1,OU=Domain Validated SSL,O=CertCenter AG,C=DE","subjectDN":"MGQxCzAJBgNVBAYTAkRFMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEeMBwGA1UEAxMVQWx3YXlzT25TU0wgUlNBIENBIEcx","whitelist":false,"attachment":{"hash":"0f46d6d2cca30792c370bd3b90969ec1e9cea56ad57621f2bd0fbf01ad6694cf","size":1678,"filename":"e7puxxctXmI2MqLnC-hc5AHDs-k8kQisdTcQbwxeeVw=.pem","location":"security-state-staging/intermediates/3d06736e-8267-4a12-a633-3600f98ff6fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e7puxxctXmI2MqLnC+hc5AHDs+k8kQisdTcQbwxeeVw=","crlite_enrolled":false,"id":"e19127f4-02c2-4c09-a41d-a8487ab8ba3e","last_modified":1562025571746},{"schema":1562025570263,"derHash":"GpSMtekceQdDCTBFiJGmWg+q/o+zrweCSrY38iD2bSk=","subject":"CN=SecureTrust Secure Email CA\\, Level 1,O=SecureTrust,L=Chicago,ST=Illinois,C=US","subjectDN":"MHcxLTArBgNVBAMTJFNlY3VyZVRydXN0IFNlY3VyZSBFbWFpbC
BDQSwgTGV2ZWwgMTEUMBIGA1UEChMLU2VjdXJlVHJ1c3QxEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"ab9d76d98b7e15ddaff1cc6705503cc27e91b1c04e31e806f4bcea03dd345850","size":1707,"filename":"BGO27QFH6rNm9gr94hQ_pwpry227wWtyTaec9ZnAQMM=.pem","location":"security-state-staging/intermediates/4d0c7b73-fb1b-4ba2-852c-7b073f9b829c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BGO27QFH6rNm9gr94hQ/pwpry227wWtyTaec9ZnAQMM=","crlite_enrolled":false,"id":"b9dc7d52-8b0e-46d8-9878-51762ccd2aae","last_modified":1562025570998},{"schema":1562025567263,"derHash":"mp/DkCmr4TLWdNAy0ZnLhDGqyHjavObp4a7LgeyZ9Mw=","subject":"CN=thawte Primary Issuing CA,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSIwIAYDVQQDExl0aGF3dGUgUHJpbWFyeSBJc3N1aW5nIENB","whitelist":false,"attachment":{"hash":"bafc005b16bae347d59a3a7bf07a0c9eaf0f0e42cd9942af7404ef78c1
b79f57","size":1662,"filename":"GeZLo-BA_Z6e8rPBE9nX-x6kAYZSVx3EtzJm0kkmCi8=.pem","location":"security-state-staging/intermediates/058fe399-3919-4528-8452-fe055f2b4630.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GeZLo+BA/Z6e8rPBE9nX+x6kAYZSVx3EtzJm0kkmCi8=","crlite_enrolled":false,"id":"89d303d5-9a8c-4a13-8200-40cec4505421","last_modified":1562025567998},{"schema":1562025566502,"derHash":"W4fiIvIDRvo2KIFu1s5x+qughX+4vLpzd26h+lbNAFc=","subject":"CN=RapidSSL SHA256 CA - G4,O=GeoTrust Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSAwHgYDVQQDExdSYXBpZFNTTCBTSEEyNTYgQ0EgLSBHNA==","whitelist":false,"attachment":{"hash":"cee3d5e53c8fb88912d492c3a976adf689082cc7d09d8f1ad43ff0ab0ea3e52c","size":1670,"filename":"aef6IF2UF6jNEwA2pNmP7kpgT6NFSdt7Tqf5HzaIGWI=.pem","location":"security-state-staging/intermediates/e3b45219-1226-4cd3-b74a-ba627fc772be.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aef6IF2UF6jNEwA2pNmP7kpgT6NFSdt7Tqf5HzaIGWI=","crl
ite_enrolled":false,"id":"21950fe4-3bac-4f48-8082-d93e1d39f57f","last_modified":1562025567256},{"schema":1562025562772,"derHash":"32UwhcjtX4RMuwkWG4rgvy82gi+Te/e7Gmicb8i9V5o=","subject":"CN=cPanel Extended Validation ECC Certification Authority,OU=Controlled by COMODO exclusively for cPanel\\, Inc.,O=cPanel\\, Inc.,L=Houston,ST=TX,C=US","subjectDN":"MIHAMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVFgxEDAOBgNVBAcTB0hvdXN0b24xFTATBgNVBAoTDGNQYW5lbCwgSW5jLjE6MDgGA1UECxMxQ29udHJvbGxlZCBieSBDT01PRE8gZXhjbHVzaXZlbHkgZm9yIGNQYW5lbCwgSW5jLjE/MD0GA1UEAxM2Y1BhbmVsIEV4dGVuZGVkIFZhbGlkYXRpb24gRUNDIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"8a86e6f0dba359bf8534a11ef39bc706ea74fe3c37ef6c1ddc14e0fcf3a44a82","size":1427,"filename":"M0KI4Ko0g5TclE_ltD5sgAvt8tWcj6K5Je7fmwLXcmg=.pem","location":"security-state-staging/intermediates/ce27d567-565e-4cf1-97c8-01a6e490337d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M0KI4Ko0g5TclE/ltD5sgAvt8tWcj6K5Je7fmwLXcmg=","crlite_enrolle
d":false,"id":"7c78c5c2-4088-45e8-b0ba-2ab26ea31e01","last_modified":1562025563524},{"schema":1562025560509,"derHash":"ftGTYa1zTXA/ut8Cn1LsO2ZI2N1WuroIhO1PhZtbk3U=","subject":"CN=Herritar eta Erakundeen CA - CA de Ciudadanos y Entidades (4),OU=NZZ Ziurtagiri publikoa - Certificado publico SCI,O=IZENPE S.A.,C=ES","subjectDN":"MIGnMQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xOjA4BgNVBAsMMU5aWiBaaXVydGFnaXJpIHB1Ymxpa29hIC0gQ2VydGlmaWNhZG8gcHVibGljbyBTQ0kxRjBEBgNVBAMMPUhlcnJpdGFyIGV0YSBFcmFrdW5kZWVuIENBIC0gQ0EgZGUgQ2l1ZGFkYW5vcyB5IEVudGlkYWRlcyAoNCk=","whitelist":false,"attachment":{"hash":"4e2f85a9143fff0c499621d1b49e3f60d3c41d4a5456e8430b978d6171ec3334","size":2576,"filename":"psxZHe33uBE3X2CLur2frMJV_OKLVcjyPVVShpA--N4=.pem","location":"security-state-staging/intermediates/5cd6b31f-ffd5-4d52-a9e8-fa36ce7bbed8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"psxZHe33uBE3X2CLur2frMJV/OKLVcjyPVVShpA++N4=","crlite_enrolled":true,"id":"9827f84e-7c8f-4336-952d-450a06e83326","last
_modified":1562025561262},{"schema":1562025559768,"derHash":"m9+zg/lrCktUtdbBxMweogWCub7Cu8YzkEzeh+6u29E=","subject":"CN=SECOM Passport for Member PUB CA7,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTc=","whitelist":false,"attachment":{"hash":"2f01f21ca9e48571a30e9933457faf8d617a0fc0544b0e36c7d42ba4165df819","size":1695,"filename":"K_7TdwdfqZgQqXEvsippKe857WFIJ7-iGlYgYdHo0c8=.pem","location":"security-state-staging/intermediates/fea86beb-fe7e-4048-9530-d96971843fc5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"K/7TdwdfqZgQqXEvsippKe857WFIJ7+iGlYgYdHo0c8=","crlite_enrolled":false,"id":"7770d262-2bdb-4ef7-8e57-a12893469529","last_modified":1562025560501},{"schema":1562025559020,"derHash":"XekVK+0x+gUV3R/HRhM/EydWLvcqhM8tJAPnSKYE0NQ=","subject":"
CN=Let's Encrypt Authority X4,O=Let's Encrypt,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQDExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBYNA==","whitelist":false,"attachment":{"hash":"c715837b5cfccee20ea9dee2bf1248b0c86b0a49131fefcbe9dc28ff63dc5df4","size":1983,"filename":"sRHdihwgkaib1P1gxX8HFszlD-7_gTfNvuAybgLPNis=.pem","location":"security-state-staging/intermediates/fa35ef4b-12d7-45e2-b335-c02f0d599219.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sRHdihwgkaib1P1gxX8HFszlD+7/gTfNvuAybgLPNis=","crlite_enrolled":false,"id":"6c3e369b-f720-45e1-9370-4ea8065c7c95","last_modified":1562025559758},{"schema":1562025558267,"derHash":"nNBykOi+3ZnPc5f5TLASsi7sE9pS7ZTzAXoupBRuqY0=","subject":"CN=HARICA S/MIME ECC SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGJMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEjMCEGA1U
EAwwaSEFSSUNBIFMvTUlNRSBFQ0MgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"f66d479e18356da82e4d231247d8bd5278e9884bf74c3118df07be05c95aa7b6","size":1443,"filename":"axmO2GJ2kjqEicyms7TJ0lABBqiozjItK6Zso_S1D9M=.pem","location":"security-state-staging/intermediates/bc7fd8b5-70e3-49e4-8c10-9d9d29b1eb10.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"axmO2GJ2kjqEicyms7TJ0lABBqiozjItK6Zso/S1D9M=","crlite_enrolled":false,"id":"11cc2bb1-fc7d-4194-a61a-fddbefb3ca1c","last_modified":1562025559012},{"schema":1562025556764,"derHash":"KAu8NKmMx5YGqJaQ5Sq3L9xf/yddw2bEgnsWVjE+l5A=","subject":"CN=Don Dominio / MrDomain RSA DV CA,O=Soluciones Corporativas IP\\, SL,L=Manacor,ST=Illes Balears,C=ES","subjectDN":"MIGLMQswCQYDVQQGEwJFUzEWMBQGA1UECBMNSWxsZXMgQmFsZWFyczEQMA4GA1UEBxMHTWFuYWNvcjEnMCUGA1UEChMeU29sdWNpb25lcyBDb3Jwb3JhdGl2YXMgSVAsIFNMMSkwJwYDVQQDEyBEb24gRG9taW5pbyAvIE1yRG9tYWluIFJTQSBEViBDQQ==","whitelist":false,"attachment":{"hash":"f6b7422faba44515b2fbf75aa4b06572f321cea63e5a
19794440c400e5ac0cc9","size":2170,"filename":"k5zZlzm-7Ha5WKka7Wov4zebiiAPJ0-9cRslSNnRFWA=.pem","location":"security-state-staging/intermediates/356a0d2d-83bc-4215-8e84-dfade5405db5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k5zZlzm+7Ha5WKka7Wov4zebiiAPJ0+9cRslSNnRFWA=","crlite_enrolled":true,"id":"f9c8f2af-446a-4150-9b8c-e06c472f9754","last_modified":1562025557503},{"schema":1562025555273,"derHash":"Y+2VsX/9y3rjD+rGqHRlMJkmTiGyaNg22VeWbwsEvkM=","subject":"CN=Ericsson NL Individual CA v3,O=Ericsson,C=SE","subjectDN":"MEcxCzAJBgNVBAYTAlNFMREwDwYDVQQKDAhFcmljc3NvbjElMCMGA1UEAwwcRXJpY3Nzb24gTkwgSW5kaXZpZHVhbCBDQSB2Mw==","whitelist":false,"attachment":{"hash":"fbc57ea9c1b2e224c728dfb5633827b206e81886f616d127c7638d4158c30ee6","size":2402,"filename":"gdwzJYc_pmK1jRgbaVo-CtT9QF4X6E1CcSK_5j-CHnc=.pem","location":"security-state-staging/intermediates/0c3604ee-ea79-46ad-8e68-81764865032e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gdwzJYc/pmK1jRgbaVo+CtT9QF4X6E1CcSK/5
j+CHnc=","crlite_enrolled":false,"id":"9e2198dd-7423-466f-bd25-622f89d43770","last_modified":1562025556016},{"schema":1562025553755,"derHash":"LoFrz4UtgwJF3cNTS8+FpTsLGZkaUlzTKGJv10pA/II=","subject":"CN=GIS CA,OU=CA,O=GAZINFORMSERVICE Company limited,C=RU","subjectDN":"MFYxCzAJBgNVBAYTAlJVMSkwJwYDVQQKDCBHQVpJTkZPUk1TRVJWSUNFIENvbXBhbnkgbGltaXRlZDELMAkGA1UECwwCQ0ExDzANBgNVBAMMBkdJUyBDQQ==","whitelist":false,"attachment":{"hash":"4cedd57a38da64d6828aeb1b9ecfff34356abc080d413388c1ee191b7f2655dd","size":1601,"filename":"Bmyhj612-woocGRpHnc19r3dxL8Sz3qG4LDIr6VB3hY=.pem","location":"security-state-staging/intermediates/1c1b4e26-24a6-4505-9e5b-06e5e18d585a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Bmyhj612+woocGRpHnc19r3dxL8Sz3qG4LDIr6VB3hY=","crlite_enrolled":false,"id":"03ccc153-2946-4d3d-be6c-b0881bebecf6","last_modified":1562025554496},{"schema":1562025551490,"derHash":"vbz+EZP7uSOr7hTKZiKP7IkLGOAhAsDZqY7y6GJuyns=","subject":"CN=Technical University of Crete CA R1,O=Helle
nic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGBMQswCQYDVQQGEwJHUjFEMEIGA1UECgw7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxLDAqBgNVBAMMI1RlY2huaWNhbCBVbml2ZXJzaXR5IG9mIENyZXRlIENBIFIx","whitelist":false,"attachment":{"hash":"3db47bbdd3795e85ad600eb6fe393b0fcb6ae8991ef4af2e9bd7628b6f48f23b","size":2182,"filename":"ANwGE0ZaMhJXXiuIMDohCrwQWZohBpNfhyCEYW4H3dc=.pem","location":"security-state-staging/intermediates/9ac9ad25-52e0-46ee-a3e4-271e8e52c034.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ANwGE0ZaMhJXXiuIMDohCrwQWZohBpNfhyCEYW4H3dc=","crlite_enrolled":true,"id":"434a2f0e-2e97-40ee-b3ed-3b4161a532f7","last_modified":1562025552255},{"schema":1562025549998,"derHash":"1yERA4jKbyC7qf0ajbpO+4wWOSo9662XxVPurwrKyqw=","subject":"CN=TeliaSonera Server CA v2,O=TeliaSonera,C=FI","subjectDN":"MEYxCzAJBgNVBAYTAkZJMRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEhMB8GA1UEAwwYVGVsaWFTb25lcmEgU2VydmVyIENBIHYy","whitelist":false,"attachmen
t":{"hash":"2f9dcba71811d0e494412cb5ac40c7215fd1e0e68794cf9d419462eb22bfdd4d","size":2528,"filename":"Fq3YMR2ibLgpoD509egJDn5cPXPfnXC5MUd2IWwV_qA=.pem","location":"security-state-staging/intermediates/e40e2f56-df5c-40a6-85f6-694d1d00f167.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Fq3YMR2ibLgpoD509egJDn5cPXPfnXC5MUd2IWwV/qA=","crlite_enrolled":true,"id":"3082ff87-55fc-4380-b33c-8f226a13dcec","last_modified":1562025550741},{"schema":1562025548476,"derHash":"resKwbN/XaRKaEjhS3NZcPkg/5x2JdqKoJmonqbXfHI=","subject":"CN=Technological Educational Institution of Thessaloniki CA R3,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGZMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO1RlY2hub2xvZ2ljYWwgRWR1Y2F0aW9uYWwgSW5zdGl0dXRpb24gb2YgVGhlc3NhbG9uaWtpIENBIFIz","whitelist":false,"attachment":{"hash":"5b159fe11a04b001c33c5ad2e26f8314521fe4ba8377ff1dfa35fbb0d1c364c9","size":
2576,"filename":"qVNET7_Zz6zS9i8KHh-GZOmKOFwBKjPuzYbBnMqBfRo=.pem","location":"security-state-staging/intermediates/747153bd-4eb6-4465-8e57-ed57495ed0a4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qVNET7/Zz6zS9i8KHh+GZOmKOFwBKjPuzYbBnMqBfRo=","crlite_enrolled":true,"id":"b3fb74cf-8af2-47cc-b99e-55a1850ec31a","last_modified":1562025549240},{"schema":1562025547725,"derHash":"9BppSzgllC24lSPpd1+Zfbn6KZg5jcOadLcmcNrP1Gg=","subject":"CN=Starfield Secure Extended Validation Code Signing CA - G2,O=Starfield Technologies\\, LLC,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIGeMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEkMCIGA1UEChMbU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgTExDMUIwQAYDVQQDEzlTdGFyZmllbGQgU2VjdXJlIEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZSBTaWduaW5nIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"88f852539dedf76ad7544f8aeb8a7d5aec509c504852a87b3cd5ddb9ce509469","size":1813,"filename":"43LAOVcZZKWCk7veYuyGUt0baGZdRZsfIBAmB7OlE8s=.pem","location":"securi
ty-state-staging/intermediates/e9ab7ece-e153-4d24-ba09-e51a29208528.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"43LAOVcZZKWCk7veYuyGUt0baGZdRZsfIBAmB7OlE8s=","crlite_enrolled":false,"id":"32ab8607-6d98-4de9-aee6-d3993cd8c627","last_modified":1562025548468},{"schema":1562025546979,"derHash":"YD1pgiOBoL/CdLvtZwCbx98TPLkC+iQs9Yv3J9I9VJU=","subject":"CN=Sutter Health CA,OU=Orion Health Direct Secure Messaging,O=Sutter Health\\, a California nonprofit public benefit corporation,C=US","subjectDN":"MIGiMQswCQYDVQQGEwJVUzFJMEcGA1UEChNAU3V0dGVyIEhlYWx0aCwgYSBDYWxpZm9ybmlhIG5vbnByb2ZpdCBwdWJsaWMgYmVuZWZpdCBjb3Jwb3JhdGlvbjEtMCsGA1UECxMkT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nMRkwFwYDVQQDExBTdXR0ZXIgSGVhbHRoIENB","whitelist":false,"attachment":{"hash":"261d3dcbc380cdce3b0985f015ff39b28f560089caa3fe079b37d1dc1fd7db9c","size":2337,"filename":"5tfROj-rDBEjz6--464WIXkKw55dhqqzPscv3mBSipM=.pem","location":"security-state-staging/intermediates/7b819190-fb9a-4041-bc3b-78febdf0c849.
pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5tfROj+rDBEjz6++464WIXkKw55dhqqzPscv3mBSipM=","crlite_enrolled":false,"id":"edd6bf94-d421-4767-a0cc-afc7defb5666","last_modified":1562025547718},{"schema":1562025546244,"derHash":"FEIqG9WpHtunOXuGmJIjabavaYT/h6z2E52qkZ55WhQ=","subject":"CN=Hongkong Post e-Cert CA 1 - 14,O=Hongkong Post,C=HK","subjectDN":"ME4xCzAJBgNVBAYTAkhLMRYwFAYDVQQKEw1Ib25na29uZyBQb3N0MScwJQYDVQQDEx5Ib25na29uZyBQb3N0IGUtQ2VydCBDQSAxIC0gMTQ=","whitelist":false,"attachment":{"hash":"5a4d38e1effb5367e3fd8c4536f7e3be9e065be0cb93778e4484d32658a3c99c","size":1626,"filename":"vSKE_tMDVyGX2f0WYoCAXCvfnFi2nosboVhJtpmvc10=.pem","location":"security-state-staging/intermediates/44f50bf9-a77b-4072-997d-ecb9e4196036.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vSKE/tMDVyGX2f0WYoCAXCvfnFi2nosboVhJtpmvc10=","crlite_enrolled":false,"id":"05017875-8b94-4416-a852-fb1978415050","last_modified":1562025546971},{"schema":1562025544009,"derHash":"LmQsC+E6XeC8b7Pr5Cofrdt
2Io0k3k/ruVtsOlSVM+s=","subject":"CN=United Parcel Service\\, Inc. RSA Client CA,O=United Parcel Service\\, Inc.,L=Atlanta,ST=GA,C=US","subjectDN":"MIGGMQswCQYDVQQGEwJVUzELMAkGA1UECBMCR0ExEDAOBgNVBAcTB0F0bGFudGExJDAiBgNVBAoTG1VuaXRlZCBQYXJjZWwgU2VydmljZSwgSW5jLjEyMDAGA1UEAxMpVW5pdGVkIFBhcmNlbCBTZXJ2aWNlLCBJbmMuIFJTQSBDbGllbnQgQ0E=","whitelist":false,"attachment":{"hash":"16a99f6659e69c9ae43dce74e5f55c2821e4c4b8102837c4e4b42be118238fe0","size":2133,"filename":"ADxdm5JW4ZAlMiTPdTtze13AoPKn5Ek4CVg8v3KP1aY=.pem","location":"security-state-staging/intermediates/9378362f-f38c-4094-b57e-66057d63456e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ADxdm5JW4ZAlMiTPdTtze13AoPKn5Ek4CVg8v3KP1aY=","crlite_enrolled":false,"id":"213eee19-f9c9-4440-b1e9-e14ae86ebf53","last_modified":1562025544746},{"schema":1562025538762,"derHash":"yo0PRzZFSuy+xd7sgJmMnr9B0Gxyjzx2zKJBUbxi1GM=","subject":"CN=DigiCert SHA2 Assured ID Timestamping CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHIxCz
AJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMTAvBgNVBAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBUaW1lc3RhbXBpbmcgQ0E=","whitelist":false,"attachment":{"hash":"cd22b462d7f7734d96e2f18ec558531d69e068abc2e4e91aaf88f0e849995c68","size":1861,"filename":"HXt5TooTUF4biA-m_h8zYOgpzJhFWnTDzgXfFqp3j3U=.pem","location":"security-state-staging/intermediates/2214d2c0-44ec-41b4-9661-48f9f5cfec31.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HXt5TooTUF4biA+m/h8zYOgpzJhFWnTDzgXfFqp3j3U=","crlite_enrolled":true,"id":"89a2403e-23bf-426d-882a-8055a3e89d86","last_modified":1562025539506},{"schema":1562025537279,"derHash":"3/WD46HtNeV9lRBIF62CPAVfuQcc1ABDW1/HTmkggds=","subject":"CN=Symantec Basic DV SSL CA - G2,OU=Symantec Trust Network+OU=Domain Validated SSL,O=Symantec Corporation,C=US","subjectDN":"MIGUMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMSYwJAYDVQQDEx
1TeW1hbnRlYyBCYXNpYyBEViBTU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"847aebbd5575a61f84be32bdb3dd7939184b251b0eb1611ef8ddb3440581e832","size":1918,"filename":"vJ6JGRfCsYINcfiUwxxg4vmkhmQOTi3jksgxCavebo8=.pem","location":"security-state-staging/intermediates/9e75dfa5-ba9c-402f-96de-7b864ea83342.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vJ6JGRfCsYINcfiUwxxg4vmkhmQOTi3jksgxCavebo8=","crlite_enrolled":false,"id":"ae09b3e0-9e79-444e-995b-db575d939ffd","last_modified":1562025538011},{"schema":1562025535060,"derHash":"k8OBywezU6kgwqe+1r6/GVxoJ53QUn038gvdDZnDMPo=","subject":"CN=DigiCert Assured ID CA G2,O=DigiCert Inc,C=US","subjectDN":"MEgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxIjAgBgNVBAMTGURpZ2lDZXJ0IEFzc3VyZWQgSUQgQ0EgRzI=","whitelist":false,"attachment":{"hash":"b7c018817ad0fe311c0e3f46cb59e0998110a056304537716c2436a17916b212","size":1654,"filename":"dnPPE-JM_ZaNCC1Q198LELhQiAdfMsEPXi1LVYU-aPQ=.pem","location":"security-state-staging/intermediates/
dd6dcf5a-a932-4645-be43-cc51dd5ef65c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dnPPE+JM/ZaNCC1Q198LELhQiAdfMsEPXi1LVYU+aPQ=","crlite_enrolled":true,"id":"a29b66e0-76d3-421c-90a3-3ed1083fe7a9","last_modified":1562025535793},{"schema":1562025532067,"derHash":"9ujsmwB3XMNnEDaToAFW/6WrhE5kB7HShTsIQfRRlG8=","subject":"CN=TrustOcean SSL CA - RSA - 2018,OU=RSA Domain Validation Secure Server - 2018,O=TrustOcean Ltd.,L=Denver,ST=CO,C=US","subjectDN":"MIGjMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPVHJ1c3RPY2VhbiBMdGQuMTMwMQYDVQQLEypSU0EgRG9tYWluIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciAtIDIwMTgxJzAlBgNVBAMTHlRydXN0T2NlYW4gU1NMIENBIC0gUlNBIC0gMjAxOA==","whitelist":false,"attachment":{"hash":"ed8dcc0f133ed1d1d3a53ead175c2642a1c5993820e97d74208cf3d363b608c5","size":2203,"filename":"e6xirxtNeGowerSlFMxXXnPAZUkXIXVu3FhkcvhvI7w=.pem","location":"security-state-staging/intermediates/a505f7ec-abe1-4afe-9a42-cad25bf7f8cb.pem","mimetype":"application/x-pem-file"},"p
ubKeyHash":"e6xirxtNeGowerSlFMxXXnPAZUkXIXVu3FhkcvhvI7w=","crlite_enrolled":true,"id":"3a66312e-40aa-4141-b4bb-23159586906d","last_modified":1562025532803},{"schema":1562025529824,"derHash":"4F7UqeTHczCKk+hJhhIlrjSakrvUus3UkArU5zsTEQA=","subject":"CN=SECOM Passport for Web SR 3.0 CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MF8xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSkwJwYDVQQDEyBTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIFNSIDMuMCBDQQ==","whitelist":false,"attachment":{"hash":"10b46479f6babe96f43e63ab11f87d973a00150e7dc2e9e4b6ce7b5e22ab3005","size":1634,"filename":"Rhcj0dcdOovISeMPXTWpuUDiNf1EzyxSHeMUK0lfoR8=.pem","location":"security-state-staging/intermediates/ae31b0a6-8423-4c86-a060-ba964c79794d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Rhcj0dcdOovISeMPXTWpuUDiNf1EzyxSHeMUK0lfoR8=","crlite_enrolled":true,"id":"6ccb21c1-806e-410f-a6cb-594456ae82c0","last_modified":1562025530558},{"schema":1562025528330,"derHash":"eCbeG+QU5FTPyuDRexf/DK0S7m
jPSH81ezhJnidLAXE=","subject":"CN=certSIGN SSL EV CA Class 3 G2,OU=certSIGN SSL EV CA Class 3 G2,O=certSIGN,C=RO","subjectDN":"MHAxCzAJBgNVBAYTAlJPMREwDwYDVQQKDAhjZXJ0U0lHTjEmMCQGA1UECwwdY2VydFNJR04gU1NMIEVWIENBIENsYXNzIDMgRzIxJjAkBgNVBAMMHWNlcnRTSUdOIFNTTCBFViBDQSBDbGFzcyAzIEcy","whitelist":false,"attachment":{"hash":"bc1a9e940bb65deb19b1cb6d6aa4d8f360fdb2b2ae863c58bbf437c0cc0a4c6e","size":1626,"filename":"Yhf8lB-ohgsX4JNEP0LyfAgUEVbH6pn046hso3mF6Hg=.pem","location":"security-state-staging/intermediates/6017afd4-09df-42e0-9159-080ef3054310.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Yhf8lB+ohgsX4JNEP0LyfAgUEVbH6pn046hso3mF6Hg=","crlite_enrolled":false,"id":"092ca645-852e-4f2a-85d5-1fdaa3bbb874","last_modified":1562025529063},{"schema":1562025524408,"derHash":"qcjpcSWaLtbmX3IeB6qWfHLHzbR8e+EojYe/CNLzWA0=","subject":"CN=Accenture Federal Services External CA,O=Accenture Federal Services LLC,ST=DE,C=US","subjectDN":"MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJERTEnMCUGA1UEChMeQWNjZ
W50dXJlIEZlZGVyYWwgU2VydmljZXMgTExDMS8wLQYDVQQDEyZBY2NlbnR1cmUgRmVkZXJhbCBTZXJ2aWNlcyBFeHRlcm5hbCBDQQ==","whitelist":false,"attachment":{"hash":"65c088044cd4735247c82fee610957f89cac4992c45e988b083aeb47757d5c08","size":1869,"filename":"k3Rb5ZqNYk6_1pEsnBWNNE1yn9vfIlJ90ZV3vqb7oEU=.pem","location":"security-state-staging/intermediates/a12744fd-3faa-416a-921b-d4943319e43c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k3Rb5ZqNYk6/1pEsnBWNNE1yn9vfIlJ90ZV3vqb7oEU=","crlite_enrolled":false,"id":"c540bcea-ae3d-4bd9-ae0d-918e2ffbdbaa","last_modified":1562025525188},{"schema":1562025523636,"derHash":"C/jSeHGiXvvMcPVsJoyAxC0oxfHRimnAGA2YmyuNZxo=","subject":"CN=CertAssure ECC EV Secure Server Certification Authority,OU=Controlled by COMODO exclusively for CertAssure Inc.,O=CertAssure Inc.,L=San Jose,ST=CA,C=US","subjectDN":"MIHIMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExETAPBgNVBAcTCFNhbiBKb3NlMRgwFgYDVQQKEw9DZXJ0QXNzdXJlIEluYy4xPTA7BgNVBAsTNENvbnRyb2xsZWQgYnkgQ09NT0RPIGV4Y2x1c2l2ZWx5IGZvciBD
ZXJ0QXNzdXJlIEluYy4xQDA+BgNVBAMTN0NlcnRBc3N1cmUgRUNDIEVWIFNlY3VyZSBTZXJ2ZXIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"61bf81b404a388537069a6ca1778291879f9ac51e8f78d42e4e640af887d27ee","size":1443,"filename":"ok9f2xbTTMytgvbxoAC3WVM2u44IiamlaLqKpKO_Se0=.pem","location":"security-state-staging/intermediates/713b734a-dcb5-4488-8c91-fb386062b7b2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ok9f2xbTTMytgvbxoAC3WVM2u44IiamlaLqKpKO/Se0=","crlite_enrolled":false,"id":"64061b54-c2b8-41e0-9026-003c9204d5c4","last_modified":1562025524400},{"schema":1562025522880,"derHash":"6BsB+fVpLPOCPG/TWIZUK/ru/F6pT04kbkLEqfxf6Ks=","subject":"CN=GDCA TrustAUTH R4 OV SSL CA G2,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJzAlBgNVBAMMHkdEQ0EgVHJ1c3RBVVRIIFI0IE9WIFNTTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"62f632973d4566730fb0c215
f361db0c6377f4fe7015f37d2f43bbbff8b9422b","size":1727,"filename":"X_kDRJGyo1gr5XgS4hGkA1JH19Rbn0-jAdxRkGwOfis=.pem","location":"security-state-staging/intermediates/b0587fd9-8f56-4f2e-bb41-45600e3dd3f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"X/kDRJGyo1gr5XgS4hGkA1JH19Rbn0+jAdxRkGwOfis=","crlite_enrolled":true,"id":"242f8001-c709-472f-8e95-69caf24cb984","last_modified":1562025523628},{"schema":1562025522128,"derHash":"/UwrmT4DVukNT5+9I2He8aSYN4zuzrkt12/grX4sexY=","subject":"CN=LLB Root CA public v3,O=Liechtensteinische Landesbank AG,C=LI","subjectDN":"MFgxCzAJBgNVBAYTAkxJMSkwJwYDVQQKDCBMaWVjaHRlbnN0ZWluaXNjaGUgTGFuZGVzYmFuayBBRzEeMBwGA1UEAwwVTExCIFJvb3QgQ0EgcHVibGljIHYz","whitelist":false,"attachment":{"hash":"225f216bec9fd5f148f91a91fed5f24692bf9e5c51303a7c1e90b008dd44d103","size":2962,"filename":"NRgw95tt85HJuu4CfCZX4-xKo5pkkTNI_W6Iv9pV3vs=.pem","location":"security-state-staging/intermediates/6e7b78f9-c4f1-4ea2-80c7-6fdb9a4be85c.pem","mimetype":"application/x-pem-f
ile"},"pubKeyHash":"NRgw95tt85HJuu4CfCZX4+xKo5pkkTNI/W6Iv9pV3vs=","crlite_enrolled":false,"id":"5aaa9313-aa3d-449a-8c77-2cb032c7ce53","last_modified":1562025522872},{"schema":1562025521355,"derHash":"Kl6ti0GnzdwSaxDtJIou7+2oVWYDQvIio4zGYF1EPiI=","subject":"CN=InComm Agent Solutions Inc Root Certificate Authority,O=InComm Agent Solutions Inc,ST=Florida,C=US","subjectDN":"MIGEMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHRmxvcmlkYTEjMCEGA1UEChMaSW5Db21tIEFnZW50IFNvbHV0aW9ucyBJbmMxPjA8BgNVBAMTNUluQ29tbSBBZ2VudCBTb2x1dGlvbnMgSW5jIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"31c63a5f2d41e64fcaf44e0f09cb40d2b97a4cf96133e3e1218bd242f642bdef","size":3279,"filename":"gjRan45dFolfE5atUzE5YRyiRP-Ume28jutJGa4F52Q=.pem","location":"security-state-staging/intermediates/96a22330-b050-4b28-a9d7-0bf6f1c758b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gjRan45dFolfE5atUzE5YRyiRP+Ume28jutJGa4F52Q=","crlite_enrolled":false,"id":"b128a011-ab73-48c6-9a91-ff4aacf63d67","last_
modified":1562025522120},{"schema":1562025519874,"derHash":"CtdB2YqEw7nE51UuFb/x42m2gGg5RV26/KxjgSTV8QA=","subject":"CN=WISeKey CertifyID Advanced Services CA 2,OU=Copyright 2011 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGOMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZQ29weXJpZ2h0IDIwMTEgV0lTZUtleSBTQTEWMBQGA1UECxMNSW50ZXJuYXRpb25hbDExMC8GA1UEAxMoV0lTZUtleSBDZXJ0aWZ5SUQgQWR2YW5jZWQgU2VydmljZXMgQ0EgMg==","whitelist":false,"attachment":{"hash":"81fd96040b579082dcb68419d1094eb56463e3e20c10bd3fa17c3e16517983af","size":1804,"filename":"zdMfiH6IA0YPkhIz4JIAAig1qn2rsNG01lIg77-0Q_g=.pem","location":"security-state-staging/intermediates/7a9e18cd-0dc1-4345-8090-c78b5e715132.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zdMfiH6IA0YPkhIz4JIAAig1qn2rsNG01lIg77+0Q/g=","crlite_enrolled":false,"id":"e8a2ac9e-74de-4224-956d-e36511c05c5c","last_modified":1562025520610},{"schema":1562025518366,"derHash":"IELjj8VziPHbMiLHq1vhHG7bfkVL9FSHrkT/LWordkU=","subject":"CN=S
ymantec Class 3 SHA256 Code Signing CA - G2,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGEMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxNTAzBgNVBAMTLFN5bWFudGVjIENsYXNzIDMgU0hBMjU2IENvZGUgU2lnbmluZyBDQSAtIEcy","whitelist":false,"attachment":{"hash":"3603898500215969498b71d7763fd6c80194030c78e89cbe2cc4cd898da098a3","size":1890,"filename":"XTtvxiBTPOwi4pqFOHdXIcPbd4ypovT6ppPkiD6IopI=.pem","location":"security-state-staging/intermediates/5039c1ab-fbed-4c1c-85f8-8711a9c342ee.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XTtvxiBTPOwi4pqFOHdXIcPbd4ypovT6ppPkiD6IopI=","crlite_enrolled":true,"id":"18f77514-7954-4db7-97e6-ce50963c0834","last_modified":1562025519122},{"schema":1562025516726,"derHash":"SqgmR2MAt/BKTLjqBKPTTu/dczFwaqorN3DHY8bpgpw=","subject":"SERIALNUMBER=201920,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChM
TQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTIw","whitelist":false,"attachment":{"hash":"8be56415b479c3bd71fb4fa3f906ea2c8bee529abda29077c2168bb7dcec9bc3","size":2333,"filename":"agd4jcgZ7U9vszAHzkitYhaMypP6S1xWEdOio1i7XWk=.pem","location":"security-state-staging/intermediates/344fdd15-e8b8-4f4c-b0f7-32deb35dc5f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"agd4jcgZ7U9vszAHzkitYhaMypP6S1xWEdOio1i7XWk=","crlite_enrolled":false,"id":"a2b8c57d-821b-48be-bfd6-98b56202d19c","last_modified":1562025517463},{"schema":1562025515964,"derHash":"hXQ66mqXwTRF4IJMLh/lArl63RJKl+9RIP4H9VgS/DM=","subject":"CN=thawte Primary G3 Transition Root,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSowKAYDVQQDEyF0aGF3dGUgUHJpbWFyeSBHMyBUcmFuc2l0aW9uIFJvb3Q=","whitelist":false,"attachment":{"hash":"b966d0608f7e57b49cc48ab7642ec205cb99622392d0c5e8bbd97d67cac8c981","size":17
52,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/42f7fa9a-d4c9-4632-8f9a-43a30673af04.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"f8329b3a-3b2c-4155-93af-3674f94626d3","last_modified":1562025516717},{"schema":1562025515215,"derHash":"MWImoQ0g2iJE0dqLwLKCg1ral92pT5AVPDy/n9UI8/s=","subject":"CN=TERENA eScience SSL CA 2,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MG0xCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEhMB8GA1UEAxMYVEVSRU5BIGVTY2llbmNlIFNTTCBDQSAy","whitelist":false,"attachment":{"hash":"8581fa18f42b8918adea2532a23e06d00eb6673184af2b360f632d8d8810a0bf","size":2162,"filename":"oc7AIKwh7i1ZIjRUXdABQp1IDxMtDZil5mONjuWhNrw=.pem","location":"security-state-staging/intermediates/3d28f7d6-c877-4952-b501-934e0e63e91d.pem","mimetype":"application/x-pem-file"},"pubKeyHas
h":"oc7AIKwh7i1ZIjRUXdABQp1IDxMtDZil5mONjuWhNrw=","crlite_enrolled":false,"id":"6e49815a-23d0-44f5-acfb-3db27567251c","last_modified":1562025515957},{"schema":1562025512974,"derHash":"b5Cl/ZiPrszsWxflYS/zbRmciEVR85TzGquk+SHkKgU=","subject":"CN=WISeKey CertifyID Advanced Services CA 3,OU=Copyright (c) 2015 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGSMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEmMCQGA1UECxMdQ29weXJpZ2h0IChjKSAyMDE1IFdJU2VLZXkgU0ExFjAUBgNVBAsTDUludGVybmF0aW9uYWwxMTAvBgNVBAMTKFdJU2VLZXkgQ2VydGlmeUlEIEFkdmFuY2VkIFNlcnZpY2VzIENBIDM=","whitelist":false,"attachment":{"hash":"4393e05ab02178bc2ca8fb8233dcc75ea5ab977476ca3a1daac3f35467ee3bd1","size":1861,"filename":"LflM69jQUklvy4-1K0y670OKi5J-qdDMKD65BbHBC1w=.pem","location":"security-state-staging/intermediates/3f6ce260-ca71-4404-84a1-def903f8b228.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LflM69jQUklvy4+1K0y670OKi5J+qdDMKD65BbHBC1w=","crlite_enrolled":false,"id":"e371c1c1-08ab-45e5-808d-ac065dbcc
687","last_modified":1562025513720},{"schema":1562025512184,"derHash":"X/rEPg3cW0rytpb2vE236R3zFLuP4NBxOgsaetKmj6w=","subject":"CN=Microsoft IT TLS CA 4,OU=Microsoft IT,O=Microsoft Corporation,L=Redmond,ST=Washington,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMRUwEwYDVQQLEwxNaWNyb3NvZnQgSVQxHjAcBgNVBAMTFU1pY3Jvc29mdCBJVCBUTFMgQ0EgNA==","whitelist":false,"attachment":{"hash":"0a5d12cc2a6e89cac85a5cf8b44505305622b7fc2728ecbb1e917f31fa71a931","size":2036,"filename":"wUY9EOTJmS7Aj4fDVCu_KeE--mV7FgIcbn4WhMz1I2k=.pem","location":"security-state-staging/intermediates/585005f9-618d-4eba-8492-bc8713587608.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wUY9EOTJmS7Aj4fDVCu/KeE++mV7FgIcbn4WhMz1I2k=","crlite_enrolled":true,"id":"0978a1e0-b34b-4599-902a-03b07addc358","last_modified":1562025512966},{"schema":1562025509913,"derHash":"Qs/dpvZguOW0wcQRllpFGTElWeMmL422nS2uF7JrO6M=","subject":"CN=RNP IC
PEdu OV SSL CA 2019,OU=Gerencia de Servicos (GSer),O=Rede Nacional de Ensino e Pesquisa - RNP,L=Rio de Janeiro,ST=Rio de Janeiro,C=BR","subjectDN":"MIG8MQswCQYDVQQGEwJCUjExMC8GA1UEChMoUmVkZSBOYWNpb25hbCBkZSBFbnNpbm8gZSBQZXNxdWlzYSAtIFJOUDEkMCIGA1UECxMbR2VyZW5jaWEgZGUgU2Vydmljb3MgKEdTZXIpMRcwFQYDVQQHEw5SaW8gZGUgSmFuZWlybzEXMBUGA1UECBMOUmlvIGRlIEphbmVpcm8xIjAgBgNVBAMTGVJOUCBJQ1BFZHUgT1YgU1NMIENBIDIwMTk=","whitelist":false,"attachment":{"hash":"8ed792d583fe417ecf576ea9ba51a3b76f0ca1d1979263b866fdc1d260e49731","size":1934,"filename":"34rLDmx5N4tFlu_FTyuZjezXxhR4lhOmxmSZ9Pjypro=.pem","location":"security-state-staging/intermediates/99d3faaf-d109-49f0-af7e-ace9ffabe9e3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"34rLDmx5N4tFlu/FTyuZjezXxhR4lhOmxmSZ9Pjypro=","crlite_enrolled":true,"id":"dfb5e774-316b-43b6-a38e-c65e551ede8b","last_modified":1562025510662},{"schema":1562025509177,"derHash":"2IiPSoT3TJdN/7Vzob9bu6zRcTuQUJb46wFQYr85bE0=","subject":"CN=DarkMatter Assured CA,O=DarkMa
tter LLC,C=AE","subjectDN":"MEYxCzAJBgNVBAYTAkFFMRcwFQYDVQQKDA5EYXJrTWF0dGVyIExMQzEeMBwGA1UEAwwVRGFya01hdHRlciBBc3N1cmVkIENB","whitelist":false,"attachment":{"hash":"9ece1aca56a9484d62b81c93e6164987204a80f2f56507875c374fb0142f2469","size":2454,"filename":"wO0gU0a7veButWD1zuAqNjTiR0p-ds-PvvVjuxF90OM=.pem","location":"security-state-staging/intermediates/174ee1b5-dff7-441d-b8ae-bac7a4ea7395.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wO0gU0a7veButWD1zuAqNjTiR0p+ds+PvvVjuxF90OM=","crlite_enrolled":false,"id":"1eb36774-4682-48b8-99f8-89ba65d1dffb","last_modified":1562025509905},{"schema":1562025506918,"derHash":"3IYqPwJe9/JS+pQTy2DeJeV+aqfh+x3Ke1nSwiFxBuo=","subject":"CN=Staat der Nederlanden EV Intermediair CA,O=Staat der Nederlanden,C=NL","subjectDN":"MGAxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xMTAvBgNVBAMMKFN0YWF0IGRlciBOZWRlcmxhbmRlbiBFViBJbnRlcm1lZGlhaXIgQ0E=","whitelist":false,"attachment":{"hash":"20b32e71047d03130c5abee6c17e94b54266c39387aaeb2f3f2
0ab2a00293064","size":2385,"filename":"F2qGHcawUpLrFM3Bakvv1HLNsSuhZ3AjWvwFk_fsUlQ=.pem","location":"security-state-staging/intermediates/7c8c1e28-85f4-4b11-beb8-53223276d75f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F2qGHcawUpLrFM3Bakvv1HLNsSuhZ3AjWvwFk/fsUlQ=","crlite_enrolled":true,"id":"ee67625f-1d82-4696-87f0-db1c529812ba","last_modified":1562025507665},{"schema":1562025506179,"derHash":"Xk/zRijavtaFm6zy4SioB6CPSbDCWdm+LjP+4Gasevc=","subject":"CN=SecureTrust Code Signing CA\\, Level 1,O=SecureTrust,L=Chicago,ST=Illinois,C=US","subjectDN":"MHcxLTArBgNVBAMTJFNlY3VyZVRydXN0IENvZGUgU2lnbmluZyBDQSwgTGV2ZWwgMTEUMBIGA1UEChMLU2VjdXJlVHJ1c3QxEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"8309159fb3e9a032b16f326c2f3864df8c1f92301ff507d2950a27bea11c67f9","size":1613,"filename":"qWYqJU73KHoO_zICSkIr0M7QWK84NnIZGRhLvRLHocc=.pem","location":"security-state-staging/intermediates/a0f3e90d-4808-4c29-9d90-b6c75dd0bcea.p
em","mimetype":"application/x-pem-file"},"pubKeyHash":"qWYqJU73KHoO/zICSkIr0M7QWK84NnIZGRhLvRLHocc=","crlite_enrolled":false,"id":"80dce9dc-0e12-4410-be32-0a76c54ab462","last_modified":1562025506910},{"schema":1562025505422,"derHash":"m/lJZ3fRRCXtAIbBuywHB7YqYcGUxRYuTwdjev8Wa3Y=","subject":"CN=GlobalSign Timestamping CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTEwLwYDVQQDEyhHbG9iYWxTaWduIFRpbWVzdGFtcGluZyBDQSAtIFNIQTI1NiAtIEcy","whitelist":false,"attachment":{"hash":"ce3ed3382cfca8726ebcc664e631bed0756c90bb7140cddbdd109b12175fdab5","size":1475,"filename":"qNR-DwyanLNyMurMwcUpVijQXK6JlGydxz7b2CNJx5k=.pem","location":"security-state-staging/intermediates/f32b145b-de9c-4e75-9666-414e3c647a20.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qNR+DwyanLNyMurMwcUpVijQXK6JlGydxz7b2CNJx5k=","crlite_enrolled":true,"id":"eed033d2-f12a-4125-92b7-1990e51d7913","last_modified":1562025506171},{"schema":1562025502424,"derHas
h":"CsK2CG6xDbVXajobjrDkNECCwbfYMlBPy/laSATVGDQ=","subject":"CN=CERTSIGN FOR BANKING SIMPLE SSL TEST CA V3,OU=Certificat de test Test certificate,O=certSIGN,C=RO","subjectDN":"MIGDMQswCQYDVQQGEwJSTzERMA8GA1UEChMIY2VydFNJR04xLDAqBgNVBAsTI0NlcnRpZmljYXQgZGUgdGVzdCBUZXN0IGNlcnRpZmljYXRlMTMwMQYDVQQDEypDRVJUU0lHTiBGT1IgQkFOS0lORyBTSU1QTEUgU1NMIFRFU1QgQ0EgVjM=","whitelist":false,"attachment":{"hash":"301362625731dac5eb7b81495d7d67c27b4fb1d65a5cd95523b7a30f919868a6","size":1658,"filename":"BvkH8t9guVZzP7noiYDJM6l1ZztKvb9J8-54ik-6WFk=.pem","location":"security-state-staging/intermediates/de79005d-2e2f-4dc0-86e8-f105ed580da7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BvkH8t9guVZzP7noiYDJM6l1ZztKvb9J8+54ik+6WFk=","crlite_enrolled":false,"id":"1489788e-e63f-4fdc-8e4e-1a06fd2d279c","last_modified":1562025503177},{"schema":1562025500927,"derHash":"+p1t8a8CdTANUqSF0DawVDtT37REG+wLjJoN/4EbbYg=","subject":"CN=Entrust Code Signing Certification Authority - L1D,OU=www.entrust.net/rpa is
incorporated by reference+OU=(c) 2009 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIG+MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L3JwYSBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAwOSBFbnRydXN0LCBJbmMuMTswOQYDVQQDEzJFbnRydXN0IENvZGUgU2lnbmluZyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEwxRA==","whitelist":false,"attachment":{"hash":"3ab4f99522d4a1ebba62378e60fa3d93d465e523147db6f431462224a0e1fed6","size":1796,"filename":"q4FwU8-QScEfhsNqympCne6e65ZASaL3iUkrlGsfLn4=.pem","location":"security-state-staging/intermediates/7f63a308-cc37-4aa4-a0df-341d3c227db8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q4FwU8+QScEfhsNqympCne6e65ZASaL3iUkrlGsfLn4=","crlite_enrolled":false,"id":"bab7ff8a-caf1-417f-8c18-45de6956da8b","last_modified":1562025501666},{"schema":1562025500166,"derHash":"6uWboswzKBpc3exQz7/Z3QylVl8872mMk2ahDOwIf5c=","subject":"CN=Domain The Net Technologies Ltd CA for SSL R2,O=Domain The Net Technologies Ltd,C=
IL","subjectDN":"MG8xCzAJBgNVBAYTAklMMSgwJgYDVQQKDB9Eb21haW4gVGhlIE5ldCBUZWNobm9sb2dpZXMgTHRkMTYwNAYDVQQDDC1Eb21haW4gVGhlIE5ldCBUZWNobm9sb2dpZXMgTHRkIENBIGZvciBTU0wgUjI=","whitelist":false,"attachment":{"hash":"dc6270566751505a7936c7847e06bc81b9c0a9ca4b21fd6512fbeaa3d7d3bc7d","size":2483,"filename":"1FBqLyRsP8ibxXXsW64LYWGTeYMGSsUTMFEetUQakD8=.pem","location":"security-state-staging/intermediates/c052ede4-8c2e-4eed-97b4-5d3e127c78f8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1FBqLyRsP8ibxXXsW64LYWGTeYMGSsUTMFEetUQakD8=","crlite_enrolled":true,"id":"461724c9-5ae7-4021-be3d-b5c081e3b8d7","last_modified":1562025500918},{"schema":1562025498622,"derHash":"kY0pldob4hnjp+S6La+hGgJe6/TUo1o6iy25nnksaH4=","subject":"CN=Institute of Accelerating Systems and Applications SSL CA R1,O=Institute of Accelerating Systems and Applications,L=Athens,C=GR","subjectDN":"MIGiMQswCQYDVQQGEwJHUjEPMA0GA1UEBxMGQXRoZW5zMTswOQYDVQQKEzJJbnN0aXR1dGUgb2YgQWNjZWxlcmF0aW5nIFN5c3RlbXMgYW5kIEFwcGxpY2F0aW9
uczFFMEMGA1UEAxM8SW5zdGl0dXRlIG9mIEFjY2VsZXJhdGluZyBTeXN0ZW1zIGFuZCBBcHBsaWNhdGlvbnMgU1NMIENBIFIx","whitelist":false,"attachment":{"hash":"3227d4cd9162632a3344b5bf40179e61028d95d502e5747d6ff997f99e1464eb","size":2584,"filename":"at9jK6417LeuNsZ615BVxxLWrLPtoJLdMBfDe4WPAzQ=.pem","location":"security-state-staging/intermediates/bbefa09c-cafc-4275-a3e2-b647f7076851.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"at9jK6417LeuNsZ615BVxxLWrLPtoJLdMBfDe4WPAzQ=","crlite_enrolled":true,"id":"a1191fee-2efa-4764-8e64-b63579b09235","last_modified":1562025499398},{"schema":1562025497127,"derHash":"/CJFvlncZGHUEZw6Bu2+5NKIVWvYjEeeMO1fPoFhZGk=","subject":"CN=MPG CA - G02,O=Max-Planck-Gesellschaft,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MGoxCzAJBgNVBAYTAkRFMQ8wDQYDVQQIDAZCYXllcm4xETAPBgNVBAcMCE11ZW5jaGVuMSAwHgYDVQQKDBdNYXgtUGxhbmNrLUdlc2VsbHNjaGFmdDEVMBMGA1UEAwwMTVBHIENBIC0gRzAy","whitelist":false,"attachment":{"hash":"43c1869e7e9b39a3e88534fec1a8ad7b6aa63eab2ad5f1a0dc457dc65ab08804","size"
:1983,"filename":"KEB9gT0zG0ZMgr0_mhORKVvNbNKMDEvo89gurjLLzYk=.pem","location":"security-state-staging/intermediates/608fe6af-14bc-4de0-83bc-a7b26be45449.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KEB9gT0zG0ZMgr0/mhORKVvNbNKMDEvo89gurjLLzYk=","crlite_enrolled":true,"id":"271d3f60-f00e-48ab-a3ed-13509369476e","last_modified":1562025497855},{"schema":1562025496364,"derHash":"ek/LoHn1vdzwp2w7A6N34VWlMAlHShs+uPNJYaU72pw=","subject":"CN=SECOM Passport for Member PUB CA8,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTg=","whitelist":false,"attachment":{"hash":"c0684ee95f098f8e4e9d458872bee1f661763e16e08e9d6468a417a6866b21c0","size":1695,"filename":"knWHoMFrEpDYcH_bcs_miCxeOB-UDZ0Od9J53hcgFTo=.pem","location":"security-state-staging/intermediates/ed
d28ea1-49ec-45fe-9115-70331fce9330.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"knWHoMFrEpDYcH/bcs/miCxeOB+UDZ0Od9J53hcgFTo=","crlite_enrolled":false,"id":"d9b97f0b-1f33-4059-afc0-b9b22421d0da","last_modified":1562025497120},{"schema":1562025495613,"derHash":"uxwB6ITdCRmrlNWvVXXNb+tx5WCytYc1p4sVChDVS/M=","subject":"CN=AAMC Direct Intermediate CA,OU=AAMC Direct Messaging,O=Anne Arundel Medical Center,C=US","subjectDN":"MHkxCzAJBgNVBAYTAlVTMSQwIgYDVQQKExtBbm5lIEFydW5kZWwgTWVkaWNhbCBDZW50ZXIxHjAcBgNVBAsTFUFBTUMgRGlyZWN0IE1lc3NhZ2luZzEkMCIGA1UEAxMbQUFNQyBEaXJlY3QgSW50ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{"hash":"286bfecb53b0d9b29d26533c7d51c5fb420701ea2fd97d77c8c2e35b5527c23c","size":2203,"filename":"MX1pC2RK37-NPr5PI1QhpoQO1JlFoVx4eAWyShJegwo=.pem","location":"security-state-staging/intermediates/26ef4eb5-e69e-4422-ba08-cba5446f95be.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MX1pC2RK37+NPr5PI1QhpoQO1JlFoVx4eAWyShJegwo=","crlite_enrolled":false,"id":"
a9d06cda-c795-4dae-8f8d-e612bb618904","last_modified":1562025496356},{"schema":1562025493351,"derHash":"+gCOFtHli+acfT5VNTz0/KJtqc5D51sYJs7xabdxlk4=","subject":"SERIALNUMBER=201903,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTAz","whitelist":false,"attachment":{"hash":"3d9efb2320ac377e39214a083ef728e608468f15ac940b44b5ec026f6b5f5dd1","size":2333,"filename":"_ptmGnIhGIL555v-VzrWrwWliXZG-_Gtjaw3U9yq0Dk=.pem","location":"security-state-staging/intermediates/493165da-23b3-4744-a175-3a3659e553c7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/ptmGnIhGIL555v+VzrWrwWliXZG+/Gtjaw3U9yq0Dk=","crlite_enrolled":false,"id":"122cfda9-8350-4bd2-b226-92d6ec264cdd","last_modified":1562025494102},{"schema":1562025490333,"derHash":"tEwGMAOfZeXc5XF6fLCMvtg+EDtHFTWBkcxLIgeTBbo=","subject":"SERIALNUMBER=201907,CN=Citizen CA,O=Certipost N.V./S.
A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTA3","whitelist":false,"attachment":{"hash":"c4e57b87ffc99bca0261b099a9b314f1391c296d7b6d6fa3734ffe823fcb2976","size":2333,"filename":"gfBNwfL6MEQDNCljm2FFypvqnLrJmZGMO3sW47AmZDA=.pem","location":"security-state-staging/intermediates/23d7f272-7d2b-42c7-a799-ce1d5b201e01.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gfBNwfL6MEQDNCljm2FFypvqnLrJmZGMO3sW47AmZDA=","crlite_enrolled":false,"id":"b42c7c68-9e0f-4fe8-8a25-e74156a8a1a3","last_modified":1562025491074},{"schema":1562025489551,"derHash":"uo7RkOkyWu1DgsaERjECUB+DG5b2PojKNfL+G7yMIsA=","subject":"CN=Piraeus University of Applied Sciences CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGKMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxNTAzBgNVBAMTLFBpcmFldX
MgVW5pdmVyc2l0eSBvZiBBcHBsaWVkIFNjaWVuY2VzIENBIFIx","whitelist":false,"attachment":{"hash":"9da0c9629fca6be2e40503371efd3345089214f1c51772ce5424419163e0d8f2","size":2743,"filename":"yLZQpI_8sbjP1vWxETUhe0HsHKYOrjE111-yrrS8VHw=.pem","location":"security-state-staging/intermediates/bddc57bd-9002-4ae5-bbf1-5bc8f7478e4e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yLZQpI/8sbjP1vWxETUhe0HsHKYOrjE111+yrrS8VHw=","crlite_enrolled":false,"id":"b46c4aee-89d5-489f-952e-a0be25381950","last_modified":1562025490325},{"schema":1562025488811,"derHash":"hdsL7tBmjQTXB0AA+Y6EsI0P1UKf9KJi3ny8FSihodo=","subject":"CN=SSL.com EV SSL Intermediate CA RSA R3,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxLjAsBgNVBAMMJVNTTC5jb20gRVYgU1NMIEludGVybWVkaWF0ZSBDQSBSU0EgUjM=","whitelist":false,"attachment":{"hash":"c46e4dd819439f5a2d9a5d2211601d40b993e06abd5d732d23a35bb22ba8c164","size":2442,"filename":"4V6KJv09
j4wCTdB1kG8-rfM7XCExYEpiXCGzJNL58IQ=.pem","location":"security-state-staging/intermediates/d130da26-d0a0-4e38-8c36-21ff44017d65.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4V6KJv09j4wCTdB1kG8+rfM7XCExYEpiXCGzJNL58IQ=","crlite_enrolled":true,"id":"2e55d70f-46c9-4052-8db4-0a4d5811bae2","last_modified":1562025489544},{"schema":1562025486585,"derHash":"5mg+iDFc0ctAPAzqSQ98S0yCyRzUhQN0iarbqpCDn2E=","subject":"CN=RapidSSL SHA256 CA,O=GeoTrust Inc.,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJSYXBpZFNTTCBTSEEyNTYgQ0E=","whitelist":false,"attachment":{"hash":"0c427bb269700930378fdff9222a8084e44be120208a9d1c85da1818c55ccc4f","size":1553,"filename":"Slt48iBVTjuRQJTjbzopminRrHSGtndY0_sj0lFf9Qk=.pem","location":"security-state-staging/intermediates/51d0ad57-d709-4fd6-878e-800853fe44a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Slt48iBVTjuRQJTjbzopminRrHSGtndY0/sj0lFf9Qk=","crlite_enrolled":true,"id":"a1d663ba-8d2d-47cc-a3cf-34837
0fe97e5","last_modified":1562025487320},{"schema":1562025484343,"derHash":"Dugs637KJBzMKdTliAYsQ+RH7ebGlvE1rMQRlmEmuoM=","subject":"CN=Aristotle University of Thessaloniki SSL RSA SubCA R2,O=Aristotle University of Thessaloniki,L=Thessaloniki,C=GR","subjectDN":"MIGTMQswCQYDVQQGEwJHUjEVMBMGA1UEBwwMVGhlc3NhbG9uaWtpMS0wKwYDVQQKDCRBcmlzdG90bGUgVW5pdmVyc2l0eSBvZiBUaGVzc2Fsb25pa2kxPjA8BgNVBAMMNUFyaXN0b3RsZSBVbml2ZXJzaXR5IG9mIFRoZXNzYWxvbmlraSBTU0wgUlNBIFN1YkNBIFIy","whitelist":false,"attachment":{"hash":"01ab73a33c9d719f58a09c3705ba3a27f08494d6b98a58a3c1cf1a8b73c04830","size":2962,"filename":"MOR9elaY2GOSXRQ0lkPZuOKdFNjk0evRDxZV72l0G6Y=.pem","location":"security-state-staging/intermediates/ae130e5d-a17e-4033-9421-9945a803151d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MOR9elaY2GOSXRQ0lkPZuOKdFNjk0evRDxZV72l0G6Y=","crlite_enrolled":true,"id":"0cfe3154-7bb3-4615-b637-5cd7a868f07c","last_modified":1562025485073},{"schema":1562025478331,"derHash":"iHH5nI9khT2RZEZOWa+z6th7brIPmGSb
SweghO5sEk4=","subject":"SERIALNUMBER=201402,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTQwMg==","whitelist":false,"attachment":{"hash":"ec26f368737875a2881f23314886b24f9df446cc2759a1b454a725b37cc0fb48","size":1402,"filename":"5MRz3xew1J2eodt0I8LbElqYaptWQ2dbe84uXbsXefE=.pem","location":"security-state-staging/intermediates/fe54a667-4e34-4f87-9fa8-661cf2939604.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5MRz3xew1J2eodt0I8LbElqYaptWQ2dbe84uXbsXefE=","crlite_enrolled":false,"id":"4a757875-256e-4611-9250-7948cffd2e85","last_modified":1562025479062},{"schema":1562025477573,"derHash":"ICi1Ih3id+8elh9OMYKjxQDuWqZ79bVE06bVil6md30=","subject":"CN=RU-CENTER High Assurance Services CA 2,O=RU-Center (\u0417\u0410\u041e \u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0421\u0435\u0442\u0435\u0432\u043e\u0439 \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u042
6\u0435\u043d\u0442\u0440),L=Moscow,ST=Moscow,C=RU","subjectDN":"MIHNMQswCQYDVQQGEwJSVTEPMA0GA1UECBMGTW9zY293MQ8wDQYDVQQHEwZNb3Njb3cxazBpBgNVBAoMYlJVLUNlbnRlciAo0JfQkNCeINCg0LXQs9C40L7QvdCw0LvRjNC90YvQuSDQodC10YLQtdCy0L7QuSDQmNC90YTQvtGA0LzQsNGG0LjQvtC90L3Ri9C5INCm0LXQvdGC0YApMS8wLQYDVQQDEyZSVS1DRU5URVIgSGlnaCBBc3N1cmFuY2UgU2VydmljZXMgQ0EgMg==","whitelist":false,"attachment":{"hash":"2084d64f65967c43d9b17db5f8cdd4e5657fa8117b7544e8e70885c3ba03dc4d","size":2259,"filename":"Y8qWv3kk8QX9ecEOiluI35bMi7sfrRJPiD5ZnUYgq-g=.pem","location":"security-state-staging/intermediates/31475041-d093-493a-941d-b3b3020753fd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y8qWv3kk8QX9ecEOiluI35bMi7sfrRJPiD5ZnUYgq+g=","crlite_enrolled":true,"id":"8dae2c43-6457-4056-9435-7fd37736a650","last_modified":1562025478323},{"schema":1562025476821,"derHash":"vJI+nHvr5T9VyXMrFvUdU7dyAzmkSBtCgaQBP2Ypn7Y=","subject":"CN=SSL.com DV CA,OU=www.ssl.com,O=SSL.com,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMRAwDgYDVQQ
KEwdTU0wuY29tMRQwEgYDVQQLEwt3d3cuc3NsLmNvbTEWMBQGA1UEAxMNU1NMLmNvbSBEViBDQQ==","whitelist":false,"attachment":{"hash":"c5707914003f2e3348b2d819e8a3f836ef2d4b8d2553ceb75fe22a2b62af054c","size":2105,"filename":"Csnhxeh1vsuMPZmVPaq9zufjZbtCA2WDcjROo3ZMJmY=.pem","location":"security-state-staging/intermediates/641c5dbf-a4d3-4f33-854a-1c71bb717a3b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Csnhxeh1vsuMPZmVPaq9zufjZbtCA2WDcjROo3ZMJmY=","crlite_enrolled":true,"id":"4af93016-ef93-484b-9fb5-971506f15e7e","last_modified":1562025477565},{"schema":1562025476076,"derHash":"W49+r3XRjWdK5nBf+rQ8q6YISpWm8Z4YCPBvCwzTfw0=","subject":"SERIALNUMBER=PT507015851,CN=DIGITALSIGN QUALIFIED TSA CA,O=DigitalSign Certificadora Digital,L=Guimaraes (see current address at www.digitalsign.pt),C=PT","subjectDN":"MIG2MRQwEgYDVQQFEwtQVDUwNzAxNTg1MTELMAkGA1UEBhMCUFQxPjA8BgNVBAcTNUd1aW1hcmFlcyAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuZGlnaXRhbHNpZ24ucHQpMSowKAYDVQQKEyFEaWdpdGFsU2lnbiBDZXJ0aWZpY2Fkb3JhIERpZ2l0
YWwxJTAjBgNVBAMTHERJR0lUQUxTSUdOIFFVQUxJRklFRCBUU0EgQ0E=","whitelist":false,"attachment":{"hash":"de61aef599e63efcfa0754fb2e8a3dd87ffb49069188a24c4c267b8330852af3","size":2999,"filename":"eba3Dm8gkeBOmAEPMEXJUQJqoFAZpTSW0dUTpoKiXiU=.pem","location":"security-state-staging/intermediates/6ba896c9-1dbc-4dbb-a2b0-7b367394ce1a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eba3Dm8gkeBOmAEPMEXJUQJqoFAZpTSW0dUTpoKiXiU=","crlite_enrolled":false,"id":"533f7578-20dd-4424-9067-dcd3cd960b25","last_modified":1562025476813},{"schema":1562025475338,"derHash":"vs/eEkzt00TZJctV7dpmLZqcBoj6mghwzj27baQxPk4=","subject":"CN=QuoVadis PKIoverheid Organisatie Services CA - G3,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MIGEMQswCQYDVQQGEwJOTDEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xFzAVBgNVBGEMDk5UUk5MLTMwMjM3NDU5MTowOAYDVQQDDDFRdW9WYWRpcyBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBTZXJ2aWNlcyBDQSAtIEcz","whitelist":false,"attachment":{"hash":"ba1fd2a539b87d0e6ce58d2ff164fa4995802e3187facea07d2d4a47e255
4906","size":2682,"filename":"Dd3dL3h7MwKL57AT7SDAXLcnBsv-F-NSsju9HDfnIUM=.pem","location":"security-state-staging/intermediates/c00199d1-677f-403e-a72f-6661d2766c66.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Dd3dL3h7MwKL57AT7SDAXLcnBsv+F+NSsju9HDfnIUM=","crlite_enrolled":false,"id":"eada2bb2-7eee-4182-8069-0d14b9b2911e","last_modified":1562025476068},{"schema":1562025474587,"derHash":"I5/6htcQM7olWRR4IFfYfoQhrt1ZELeGkotqEkjD40E=","subject":"CN=CA Disig R2I3 Certification Service,O=Disig a.s.,L=Bratislava,C=SK","subjectDN":"MGUxCzAJBgNVBAYTAlNLMRMwEQYDVQQHDApCcmF0aXNsYXZhMRMwEQYDVQQKDApEaXNpZyBhLnMuMSwwKgYDVQQDDCNDQSBEaXNpZyBSMkkzIENlcnRpZmljYXRpb24gU2VydmljZQ==","whitelist":false,"attachment":{"hash":"3420f786d68e2c9b43dcb43b746ca258b7a646ade27a146a00fe8af877df4f59","size":2142,"filename":"QUf9pBcUZxnKMgP_Op4uLhRku-x-b_JvkEQPmCrNbZY=.pem","location":"security-state-staging/intermediates/ccf776b5-dad9-4394-b424-8c2cacda75f9.pem","mimetype":"application/x-pem-file"},"pub
KeyHash":"QUf9pBcUZxnKMgP/Op4uLhRku+x+b/JvkEQPmCrNbZY=","crlite_enrolled":false,"id":"85d742bd-cad8-4921-b914-8cb3b1931d2c","last_modified":1562025475330},{"schema":1562025473063,"derHash":"/SlUprx/R91EP2Fk2EVCRbsM/pz1Ws4327NbjkiVp9k=","subject":"CN=Technological Educational Institute of Epirus CA R3,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGRMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxPDA6BgNVBAMTM1RlY2hub2xvZ2ljYWwgRWR1Y2F0aW9uYWwgSW5zdGl0dXRlIG9mIEVwaXJ1cyBDQSBSMw==","whitelist":false,"attachment":{"hash":"258f0ec659e411b76f696a63b9b54690d12b54e96a2fb86e896474db260f8cae","size":2560,"filename":"ifNtHuGOosnfWP8xv-35qett4I3b7lw-i4hIbE8TRKQ=.pem","location":"security-state-staging/intermediates/d58bdb06-bf59-4f47-a90c-3aedbe736775.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ifNtHuGOosnfWP8xv+35qett4I3b7lw+i4hIbE8TRKQ=","crlite_enrolled":true,"id":"818fa4ff-655c-4
317-9fc1-6f97a7945f56","last_modified":1562025473803},{"schema":1562025472316,"derHash":"TWcjeyz6z/893IPC/xySqOCpinG9BO05+K/0Kq+ZNx0=","subject":"CN=Shuidi Webtrust SSL Domain Validated,O=Shanghai Ping An Credit Reference Company Limited,C=CN","subjectDN":"MHgxCzAJBgNVBAYTAkNOMTowOAYDVQQKDDFTaGFuZ2hhaSBQaW5nIEFuIENyZWRpdCBSZWZlcmVuY2UgQ29tcGFueSBMaW1pdGVkMS0wKwYDVQQDDCRTaHVpZGkgV2VidHJ1c3QgU1NMIERvbWFpbiBWYWxpZGF0ZWQ=","whitelist":false,"attachment":{"hash":"63bdeba64d270d7fe2be7ee4b7e9a192c4f735067578e4fd400929b5b7d868b1","size":1780,"filename":"z8UvZVIyaOTkJosl2Vn8Hbcn7ChKCosFEmKBgvRLh6U=.pem","location":"security-state-staging/intermediates/8c50117d-cf04-4cb1-a7c7-4359f02fe4df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z8UvZVIyaOTkJosl2Vn8Hbcn7ChKCosFEmKBgvRLh6U=","crlite_enrolled":true,"id":"d35f58a2-ee1e-4379-a992-e748ce904d72","last_modified":1562025473055},{"schema":1562025471549,"derHash":"HZNobKQscDlPvcK8H5hGHRmHHCoAB4uBVJkxLtn2/gw=","subject":"CN=NetLock \u00d
czleti Eat. (Class B Legal) Tan\u00fas\u00edtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIG0MQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTFCMEAGA1UEAww5TmV0TG9jayDDnHpsZXRpIEVhdC4gKENsYXNzIEIgTGVnYWwpIFRhbsO6c8OtdHbDoW55a2lhZMOz","whitelist":false,"attachment":{"hash":"4fba3ae97dd053930e8514eb3fdcdbc3ccccbadc3b59f72c390b9e8968b894f8","size":2198,"filename":"_vwER7WMeggAoauXgB8U4heDYF3dmMm_S99ZfAayhZ8=.pem","location":"security-state-staging/intermediates/77e0aaee-29fa-489c-be2e-6dfde8a27857.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/vwER7WMeggAoauXgB8U4heDYF3dmMm/S99ZfAayhZ8=","crlite_enrolled":false,"id":"7174ab51-9ffe-493a-89bf-49620f52a798","last_modified":1562025472308},{"schema":1562025470795,"derHash":"igrdrk8s+dLCTXpJ7tXIbIsd8chbpz3lxHfLFPoNE+k=","subject":"CN=TeleSec Serve
rPass Extended Validation Class 3 CA,OU=T-Systems Trust Center,O=T-Systems International GmbH,POSTALCODE=57250,STREET=Untere Industriestr. 20,L=Netphen,ST=Nordrhein Westfalen,C=DE","subjectDN":"MIHzMQswCQYDVQQGEwJERTElMCMGA1UECgwcVC1TeXN0ZW1zIEludGVybmF0aW9uYWwgR21iSDEfMB0GA1UECwwWVC1TeXN0ZW1zIFRydXN0IENlbnRlcjEcMBoGA1UECAwTTm9yZHJoZWluIFdlc3RmYWxlbjEOMAwGA1UEEQwFNTcyNTAxEDAOBgNVBAcMB05ldHBoZW4xIDAeBgNVBAkMF1VudGVyZSBJbmR1c3RyaWVzdHIuIDIwMTowOAYDVQQDDDFUZWxlU2VjIFNlcnZlclBhc3MgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDbGFzcyAzIENB","whitelist":false,"attachment":{"hash":"6a9bc970754ff10c0c32a05c6c462115e39db917fcb15d1f1100b01b47dd134b","size":2081,"filename":"MTsGouOKFT5kWxvdmCP_-h4QV7TzhyPSvGXJhG-g5f0=.pem","location":"security-state-staging/intermediates/05b2e8d3-5c0a-4ac8-a431-6bdcf5338f52.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MTsGouOKFT5kWxvdmCP/+h4QV7TzhyPSvGXJhG+g5f0=","crlite_enrolled":true,"id":"a0ea2a21-fe38-42f0-9e75-2978ac3f1b2b","last_modified":1562025471541},{"schem
a":1562025469311,"derHash":"E0XC05rktlzKceiOmispxx3JE/lS6TWoErAE26eueVc=","subject":"CN=ACCVCA-110,OU=PKIACCV,O=ACCV,C=ES","subjectDN":"MEMxEzARBgNVBAMMCkFDQ1ZDQS0xMTAxEDAOBgNVBAsMB1BLSUFDQ1YxDTALBgNVBAoMBEFDQ1YxCzAJBgNVBAYTAkVT","whitelist":false,"attachment":{"hash":"e6da6a137d62a7acc06ba43bbecbca249317995ef2a5821be7c4c3e4904d11cd","size":2649,"filename":"qX1E174XIirdC_7IZnHG6ACm0iCltwbZSr_U507C-Ck=.pem","location":"security-state-staging/intermediates/27528fc3-b963-415a-a99a-4f327d7d7c83.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qX1E174XIirdC/7IZnHG6ACm0iCltwbZSr/U507C+Ck=","crlite_enrolled":false,"id":"4dff9826-c4f5-4bad-9c0b-ef5d5c0bc30d","last_modified":1562025470044},{"schema":1562025468558,"derHash":"ZOtX2jVJwmWF6CxePNUpfaAGZWPNtISlVcVS/HZ3piA=","subject":"SERIALNUMBER=201804,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8w
DQYDVQQFEwYyMDE4MDQ=","whitelist":false,"attachment":{"hash":"fe1e835417bcb19ae6c16ab3e8a48ce53769d1e1bdfb3714b59bd2df2331e973","size":2337,"filename":"LzTtPR8Oe31ePAty2U7CsncdK3ci20JcLZlNrvPd6qQ=.pem","location":"security-state-staging/intermediates/2295f504-6018-4bf5-ae72-802108de8889.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LzTtPR8Oe31ePAty2U7CsncdK3ci20JcLZlNrvPd6qQ=","crlite_enrolled":false,"id":"9e0dab9a-1aa8-4da7-91a7-97d2690aa2f7","last_modified":1562025469304},{"schema":1562025467075,"derHash":"z8CPv6IZg+Ql6/lszMSnKsCehze6gUICoNaL34wVfCI=","subject":"CN=TrustAsia RSA Code Signing CA,O=TrustAsia Technologies\\, Inc.,ST=Shanghai,C=CN","subjectDN":"MG8xCzAJBgNVBAYTAkNOMREwDwYDVQQIEwhTaGFuZ2hhaTElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEmMCQGA1UEAxMdVHJ1c3RBc2lhIFJTQSBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"af7f22b3550a9db54d3cbd9e01b7c2e6a303d300c2051effaeb73379580070c4","size":2105,"filename":"uYRmb4FygkQFPiA00xhe4MbHYAXdVv1gWA7
3i6X9SiE=.pem","location":"security-state-staging/intermediates/e4543cc9-e587-4ab6-843b-44246185720c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uYRmb4FygkQFPiA00xhe4MbHYAXdVv1gWA73i6X9SiE=","crlite_enrolled":false,"id":"1a94f983-ff93-4236-9e20-5cc280aab20d","last_modified":1562025467809},{"schema":1562025464817,"derHash":"ORLFhecn8rB3iI9njwQ/2N3O6ekeZiimJFsbjrvMORI=","subject":"CN=Class2 e-Szigno SSL CA 2016,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHwxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEcMBoGA1UEYQwTVkFUSFUtMjM1ODQ0OTctMi00MTEkMCIGA1UEAwwbQ2xhc3MyIGUtU3ppZ25vIFNTTCBDQSAyMDE2","whitelist":false,"attachment":{"hash":"98b37ae1cc647006d33e1b0891b42ab2c5f41787f32cce3681803aba7fb66524","size":2580,"filename":"NZP4aC4bQmjlxXRAcygA6LF8yzeZlyKkTTGIC7B9glM=.pem","location":"security-state-staging/intermediates/410dd037-e90b-43ec-967e-bcf28d2920e0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NZP4aC4bQmjlxXRAcygA6LF8yzeZlyKkTT
GIC7B9glM=","crlite_enrolled":true,"id":"7c942e26-4b79-4354-935f-aa9e284f0568","last_modified":1562025465559},{"schema":1562025464078,"derHash":"JZptXtJOsgfNtf0U6tyHi94RHMt8y/uCdof3ecEYthI=","subject":"SERIALNUMBER=201404,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTQwNA==","whitelist":false,"attachment":{"hash":"889019d5ab04ba92e625e9b5cdc1390f99751d5c4a648649397c10e68edc795f","size":2097,"filename":"FvxdlGm9nh2LfyplssKej4AhCOWYExNd3MU9X-6cfPI=.pem","location":"security-state-staging/intermediates/1c5b7331-8fbe-451b-b06b-103d0b79a2b1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FvxdlGm9nh2LfyplssKej4AhCOWYExNd3MU9X+6cfPI=","crlite_enrolled":false,"id":"f4b85424-2c51-497a-8bbf-1463f03e920b","last_modified":1562025464810},{"schema":1562025462586,"derHash":"2VEjGV+gLBzEBXMzbmTI36IQsXc+PGEQtusm5UN+I6U=","subject":"CN=McAfee OV SSL CA 2,O=McAfee\\, Inc.,L=Santa Clara,ST=CA,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMQswC
QYDVQQIEwJDQTEUMBIGA1UEBxMLU2FudGEgQ2xhcmExFTATBgNVBAoTDE1jQWZlZSwgSW5jLjEbMBkGA1UEAxMSTWNBZmVlIE9WIFNTTCBDQSAy","whitelist":false,"attachment":{"hash":"1f4e1d5a686d456d53d5b5d7a9fcd1f0721fd2a598fe72d3071f05cc432b1bdd","size":2117,"filename":"KKKPHEdd8Vi-l7k78OoSVKsWZubT8CNhOr4ZCATqRXU=.pem","location":"security-state-staging/intermediates/2324e47a-771c-434f-a1f7-fd50942664f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KKKPHEdd8Vi+l7k78OoSVKsWZubT8CNhOr4ZCATqRXU=","crlite_enrolled":true,"id":"aab5604f-ab34-4e84-a719-7f0aed1db11d","last_modified":1562025463317},{"schema":1562025461841,"derHash":"PSkoopiCJ85OvDGao05lUunZiDnVziEU55+PXsK/neA=","subject":"CN=Jax HR Saint Vincents HIE CA,OU=Orion Health Direct Secure Messaging,O=Jax Health Records - SV HIE,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzEkMCIGA1UEChMbSmF4IEhlYWx0aCBSZWNvcmRzIC0gU1YgSElFMS0wKwYDVQQLEyRPcmlvbiBIZWFsdGggRGlyZWN0IFNlY3VyZSBNZXNzYWdpbmcxJTAjBgNVBAMTHEpheCBIUiBTYWludCBWaW5jZW50cyBISUUgQ0E=","whitelist":fal
se,"attachment":{"hash":"f03905d542a9fefa6497381ee3132f9939c39d55d0cc647dcf61331e4aba8e20","size":2300,"filename":"7TZ-ZhVf1UwnhC-sgYAt2zg5_E6FaYgFktauJbqafHQ=.pem","location":"security-state-staging/intermediates/3b25f76c-ae83-4275-88b5-ca42f7b985d8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7TZ+ZhVf1UwnhC+sgYAt2zg5/E6FaYgFktauJbqafHQ=","crlite_enrolled":false,"id":"d1c3009a-63fb-421f-9ad2-a297af5df98e","last_modified":1562025462578},{"schema":1562025457260,"derHash":"ku8vW1U1cGB9wpyAEOerwWKD/jVflVokglQpCiYKnrs=","subject":"CN=RapidSSL SHA256 CA - G2,O=GeoTrust Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSAwHgYDVQQDExdSYXBpZFNTTCBTSEEyNTYgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"b94d4cf0a2a3415cd22cc29ae5ef73b31f0116f5e5eb61e676261b110cbcd64e","size":1691,"filename":"hKt_n8XrJnP3czMTKgZLx5NhiiXfYrdLodt3B3OSBA4=.pem","location":"security-state-staging/intermediates/8633f6bc-e397-45d0-9bda-05a8c8b7ef4f.pem","mimetype":"applic
ation/x-pem-file"},"pubKeyHash":"hKt/n8XrJnP3czMTKgZLx5NhiiXfYrdLodt3B3OSBA4=","crlite_enrolled":true,"id":"64a37cce-9a75-4f11-a71a-39c90d2fd63f","last_modified":1562025458022},{"schema":1562025456487,"derHash":"Irbr3umwptpcn6ztJ7+dzgmAPCr8EfdrXAvPR7f31WA=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - OTC,OU=Certificados de un solo uso,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGLMQswCQYDVQQGEwJFUzEeMBwGA1UECgwVRmlybWFwcm9mZXNpb25hbCBTLkEuMSQwIgYDVQQLDBtDZXJ0aWZpY2Fkb3MgZGUgdW4gc29sbyB1c28xEjAQBgNVBAUTCUE2MjYzNDA2ODEiMCAGA1UEAwwZQUMgRmlybWFwcm9mZXNpb25hbCAtIE9UQw==","whitelist":false,"attachment":{"hash":"76dd537d45ecc45c75cf9dbe89c64546ab6cf31e13c36fa01e475159f98cf4dd","size":2312,"filename":"D2ZFPMrSYrfEIs9VT_eGkCEQbRZnAyvXpiKOfaN8FXQ=.pem","location":"security-state-staging/intermediates/d6327b17-6e10-4392-90ec-a8d158fe27a5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D2ZFPMrSYrfEIs9VT/eGkCEQbRZnAyvXpiKOfaN8FXQ=","crlite_enrolled":false,"id":"0275846e-4
b4d-4542-ad90-89c87fb603c5","last_modified":1562025457253},{"schema":1562025454957,"derHash":"Uabi7UEECq6OCJ+6v+JqONZW9bCFVjU1L+6VmChrsCE=","subject":"CN=MedicaSoft Direct Intermediate CA,OU=MedicaSoft Direct Messaging,O=MedicaSoft LLC,C=US","subjectDN":"MHgxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5NZWRpY2FTb2Z0IExMQzEkMCIGA1UECxMbTWVkaWNhU29mdCBEaXJlY3QgTWVzc2FnaW5nMSowKAYDVQQDEyFNZWRpY2FTb2Z0IERpcmVjdCBJbnRlcm1lZGlhdGUgQ0E=","whitelist":false,"attachment":{"hash":"daa2982cf7723c68da56f4044c110649777655603b75f03d055fbeb78ba7d7e5","size":2211,"filename":"V8jIbRTZ2Jcwh--xqrc07Wq7g1sX8qz4m2pdzkAfWc8=.pem","location":"security-state-staging/intermediates/3cb00065-23fe-4e73-b235-f88a1f25319e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V8jIbRTZ2Jcwh++xqrc07Wq7g1sX8qz4m2pdzkAfWc8=","crlite_enrolled":false,"id":"271f87bb-11bf-4a8f-af6d-f6ec1a72b45f","last_modified":1562025455725},{"schema":1562025453478,"derHash":"bWPqpzGCPYDkdiS+YLr6t52eQDDUPj0C4YW9W3fkZls=","subject":"CN=RapidSSL Class
3 ECC CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGlJhcGlkU1NMIENsYXNzIDMgRUNDIENBIEcx","whitelist":false,"attachment":{"hash":"2828a0ce5ac1a03d861de6a22cb781b8b05e9bd6f6a3e313f25c9f1c8758c0ee","size":1171,"filename":"lsi38yOVz7rsuYInzpsbotgnNxIGE0MBWmOuuxHxyzg=.pem","location":"security-state-staging/intermediates/77ea1cda-330e-46da-9e4f-65f7eac889a7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lsi38yOVz7rsuYInzpsbotgnNxIGE0MBWmOuuxHxyzg=","crlite_enrolled":false,"id":"e6c236d1-ffda-4acc-b341-2a7298a038e3","last_modified":1562025454210},{"schema":1562025452715,"derHash":"JvettyHMLT4m3wY6b+KHOYlLGEcGDDUdxvUxHFffC18=","subject":"CN=Harokopio University CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHgxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEjMCEGA1
UEAxMaSGFyb2tvcGlvIFVuaXZlcnNpdHkgQ0EgUjE=","whitelist":false,"attachment":{"hash":"54fc0649f327645e7044c8770a3bfba482784645cec24ffe4fcafdaedea25473","size":2775,"filename":"1hHFX5m3nX4IdanFE39sr-FVsRg1eVo-ThXvmiegp7I=.pem","location":"security-state-staging/intermediates/34bb8603-35d5-4679-9a06-6af37df069cd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1hHFX5m3nX4IdanFE39sr+FVsRg1eVo+ThXvmiegp7I=","crlite_enrolled":true,"id":"7946af96-326b-4ccb-a095-2e84cf59af33","last_modified":1562025453470},{"schema":1562025451214,"derHash":"L2iJlhp8pwZ+i6EDws+bmpJPjKKT8RF44joZeNLxM9M=","subject":"CN=DigiCert Cloud Services CA-1,O=DigiCert Inc,C=US","subjectDN":"MEsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJTAjBgNVBAMTHERpZ2lDZXJ0IENsb3VkIFNlcnZpY2VzIENBLTE=","whitelist":false,"attachment":{"hash":"a24b6873f5cedd0745b28d5b998ebab8816abfbde4a85fc3dfe456d4dedec97f","size":1646,"filename":"UgpUVparimk8QCjtWQaUQ7EGrtrykc_L8N66EhFY3VE=.pem","location":"security-state-staging/intermed
iates/ba6a6d30-b17d-4b39-9b81-2d721ab76ed4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UgpUVparimk8QCjtWQaUQ7EGrtrykc/L8N66EhFY3VE=","crlite_enrolled":true,"id":"d3fb3bfb-718d-4849-a53c-b80f49b89818","last_modified":1562025451944},{"schema":1562025450459,"derHash":"LNS3kUOdL0Zf/G/a+SXgB0q1C61Olxev1fXRvNnkh78=","subject":"CN=CertAssure ECC OV Secure Server Certification Authority,O=CertAssure Inc.,L=San Jose,ST=CA,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExETAPBgNVBAcTCFNhbiBKb3NlMRgwFgYDVQQKEw9DZXJ0QXNzdXJlIEluYy4xQDA+BgNVBAMTN0NlcnRBc3N1cmUgRUNDIE9WIFNlY3VyZSBTZXJ2ZXIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"ca79bd3721de515408fb2058459249c5b588a11756f3a9e50e91639438ddac55","size":1329,"filename":"RHKZjmRhs4WSRd8tMaFGldq7b6_ydn4V_z1gGMLw964=.pem","location":"security-state-staging/intermediates/deb41aaf-0afe-42e7-91f4-fb74aff5a9ca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RHKZjmRhs4WSRd8tMaFGldq7b6/ydn4V/z1gG
MLw964=","crlite_enrolled":false,"id":"027ee554-14f3-42b9-ae64-9bcbb2e51d23","last_modified":1562025451206},{"schema":1562025448935,"derHash":"iExR1kO+ESbnLzsbcji6V+AmjB1sSiKs3WJJwXWKU7Y=","subject":"CN=International Hellenic University CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGFMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxMDAuBgNVBAMTJ0ludGVybmF0aW9uYWwgSGVsbGVuaWMgVW5pdmVyc2l0eSBDQSBSMQ==","whitelist":false,"attachment":{"hash":"2796768ed94ab3131e06d64b6e4987fe576a2d613a5f396c616d09ef2dd46087","size":2556,"filename":"a-PXNvvwvG42Rv9bcpQohzLWt4DAOP3eKSIq1DrsZ4k=.pem","location":"security-state-staging/intermediates/daab4b93-62db-4a6b-bc6f-f46b286e4fee.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"a+PXNvvwvG42Rv9bcpQohzLWt4DAOP3eKSIq1DrsZ4k=","crlite_enrolled":true,"id":"abae3c7c-83c7-4697-a147-205cb29d7079","last_modified":1562025449682},{"schema":15620254481
85,"derHash":"3Syy7sUvXparHLhDCVL7Vsjmq9/yHqzXaEsc1ziqzP8=","subject":"CN=E-Tu\u011fra Nitelikli Elektronik Sertifika Hizmet Sa\u011flay\u0131c\u0131s\u0131 v2,OU=E-Tu\u011fra Sertifikasyon Merkezi,O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e.,L=Ankara,C=TR","subjectDN":"MIHVMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMUAwPgYDVQQKDDdFLVR1xJ9yYSBFQkcgQmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXptZXRsZXJpIEEuxZ4uMScwJQYDVQQLDB5FLVR1xJ9yYSBTZXJ0aWZpa2FzeW9uIE1lcmtlemkxSjBIBgNVBAMMQUUtVHXEn3JhIE5pdGVsaWtsaSBFbGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIHYy","whitelist":false,"attachment":{"hash":"d1b6e6e0491d73a71d4ad42658703114017fc34ddf82211704a567e8a79c91cd","size":2532,"filename":"fBnYIiBq8xqr_eWatE8_Qu_RG3xGQvVyMbLEBpH6IaQ=.pem","location":"security-state-staging/intermediates/72c4e87b-00b8-4b94-a865-6ba2f2366e87.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fBnYIiBq8xqr/eWatE8/Qu/RG3xGQvVyMbLEBpH6IaQ=","crlite_enrolled":true,"id":"dbbda893-cc25-
40e9-aa54-1d6afced3764","last_modified":1562025448928},{"schema":1562025445182,"derHash":"LmoMx4U6PnkmrnQQ6cF+UnpoGcLn3T3pe6LOH2lYtAs=","subject":"SERIALNUMBER=201705,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwNQ==","whitelist":false,"attachment":{"hash":"74b6e406eb7ac2bec1e58082e3ff46de50ed63b02ee3bd0365de88b16b813eda","size":2154,"filename":"19L-zJeDluxT1FLE36D0RrY9R7OicvzFnd7jRtuX_ls=.pem","location":"security-state-staging/intermediates/5d60b5c0-1b6e-4174-a75c-c9224f584b9f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"19L+zJeDluxT1FLE36D0RrY9R7OicvzFnd7jRtuX/ls=","crlite_enrolled":false,"id":"4627de1d-e106-4813-9f62-b85ac8e53227","last_modified":1562025445931},{"schema":1562025441417,"derHash":"ug4ra/LJjtLDscHAihu9yvknCsUooxlDAd0qC2tnubM=","subject":"CN=GlobalSign Domain Validation CA - G2,O=GlobalSign nv-sa,C=BE","su
bjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"b7c827e445973f494efe9677b4f9b1b7c035e10603815e752de4b506960b41f1","size":1479,"filename":"TEb9SdyV5a_KjM7PCm4dOji-92ekxy7uuBKyI1Gg5v4=.pem","location":"security-state-staging/intermediates/14161f5e-9367-4112-8960-f50cd50f3475.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TEb9SdyV5a/KjM7PCm4dOji+92ekxy7uuBKyI1Gg5v4=","crlite_enrolled":false,"id":"83447c12-f983-4f66-882b-bddaa6e4cd07","last_modified":1562025442176},{"schema":1562025440674,"derHash":"x2wI1+IYJ0x92stO0VxzUGt5QvOFHxh+XfpH8l6pV9U=","subject":"CN=SECOM Passport for Member PUB CA6,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVy
IFBVQiBDQTY=","whitelist":false,"attachment":{"hash":"c1024033ff8c20229e3f55fdfb0c9cb4089d0a286659024908308d6dcc485400","size":1695,"filename":"NnvJfXhU4z942ew_zWnITNVe12dq-KCFhcLn4ho0g8c=.pem","location":"security-state-staging/intermediates/18e2fcf0-545a-4a7c-8f38-feb7ce6a5e4f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NnvJfXhU4z942ew/zWnITNVe12dq+KCFhcLn4ho0g8c=","crlite_enrolled":false,"id":"12bf1fe5-ecba-49ad-9f42-1346d9ee9c9c","last_modified":1562025441409},{"schema":1562025439186,"derHash":"8wHcxRgblBCQqRd+n/q0eVt66afSNg6m/aPM4M8N5Jo=","subject":"CN=TrustAsia RSA DV SSL Server CA,O=TrustAsia Technologies\\, Inc.,ST=Shanghai,C=CN","subjectDN":"MHAxCzAJBgNVBAYTAkNOMREwDwYDVQQIEwhTaGFuZ2hhaTElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEnMCUGA1UEAxMeVHJ1c3RBc2lhIFJTQSBEViBTU0wgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"fcc7d966960447b3bda63af26542a4c1033c73ed22b3ac2fbee0dba7c662ad3d","size":2133,"filename":"tBDWSaHOpgXo2ifK2nGQRAAdZWCfbS8D7IHof7Oj_V
A=.pem","location":"security-state-staging/intermediates/0a629b5b-de56-4242-9a30-96c616e9eb5e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tBDWSaHOpgXo2ifK2nGQRAAdZWCfbS8D7IHof7Oj/VA=","crlite_enrolled":true,"id":"63bd0518-b42e-4edb-8fff-b0224b41d592","last_modified":1562025439917},{"schema":1562025437676,"derHash":"Y0/fJsmU52opGNnvxMq5xvyzRO9kKnnIkZK82g7VL0w=","subject":"CN=DigiCert Assured ID CA G3,O=DigiCert Inc,C=US","subjectDN":"MEgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxIjAgBgNVBAMTGURpZ2lDZXJ0IEFzc3VyZWQgSUQgQ0EgRzM=","whitelist":false,"attachment":{"hash":"e8fa45fec67bc1318a3819405f1bfb0e74f616a1846f577a9fcdd141b182ce2d","size":1118,"filename":"PvaHuwE2jRHMyjTCq1y7W0C__z4Wjsb057DegXU0Ars=.pem","location":"security-state-staging/intermediates/1b00f9cd-0690-430b-a511-38456b5cf3a6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PvaHuwE2jRHMyjTCq1y7W0C//z4Wjsb057DegXU0Ars=","crlite_enrolled":true,"id":"7bbbdeb7-763b-47bd-9665-cddbe3976c31","last_modif
ied":1562025438409},{"schema":1562025436923,"derHash":"XYvXudy+UOEcFjgLt+HFnUYsW3LpC38hCmghLsD5QAw=","subject":"SERIALNUMBER=201904,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE5MDQ=","whitelist":false,"attachment":{"hash":"91cf290158b38a029004e1e0ea7b17dda428f83a36f6b66fec3ebb782d024586","size":2337,"filename":"EoHXS07Vl2TiboKoTMwp40itNbiL0bRHZ1TdPrhGiY0=.pem","location":"security-state-staging/intermediates/1bf6c6fe-dcef-4e8e-9218-dba53d3ba51e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EoHXS07Vl2TiboKoTMwp40itNbiL0bRHZ1TdPrhGiY0=","crlite_enrolled":false,"id":"6bcffa6d-4137-4799-89aa-464eceb8efaa","last_modified":1562025437669},{"schema":1562025436165,"derHash":"vrjv6bGnPIQbN1qQ5f/4BIhI46KvZvbE3XuTjW/oxdg=","subject":"CN=TERENA SSL CA 3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MGQxCzAJBgNVBAYTAk5M
MRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEYMBYGA1UEAxMPVEVSRU5BIFNTTCBDQSAz","whitelist":false,"attachment":{"hash":"9d893e798bf07b02ee964606c0d5c4fc736a3465312d4895a2e8e195edc18959","size":1788,"filename":"8651wEkMkH5ftiaLp57oqmx3KHTFzDgp7ZeJXR0ToBs=.pem","location":"security-state-staging/intermediates/6bd257cc-8279-4f32-8333-4b6a39355c56.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8651wEkMkH5ftiaLp57oqmx3KHTFzDgp7ZeJXR0ToBs=","crlite_enrolled":true,"id":"1ca7f3e4-205e-41e8-ba7a-68ea492d0f45","last_modified":1562025436916},{"schema":1562025433930,"derHash":"WDRT7ArdhSaAHmL7hQePCySEXwtnYSgw3al+wOgp9B0=","subject":"CN=Trusted Secure Certificate Authority DV,O=Corporation Service Company,L=Wilmington,ST=DE,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzELMAkGA1UECBMCREUxEzARBgNVBAcTCldpbG1pbmd0b24xJDAiBgNVBAoTG0NvcnBvcmF0aW9uIFNlcnZpY2UgQ29tcGFueTEwMC4GA1UEAxMnVHJ1c3RlZCBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IERW","whitelist":false,"attac
hment":{"hash":"f504ba38fe591f0922dfc156b69cdcec8b16d9d143a6817c39f7ae33cef29428","size":2166,"filename":"tMbtz8E47Nvp7rWcxBxJwWfSw3stezSqn-KyFA3dAqo=.pem","location":"security-state-staging/intermediates/d7b06aac-8e2d-419e-ad53-1ef35a1631a9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tMbtz8E47Nvp7rWcxBxJwWfSw3stezSqn+KyFA3dAqo=","crlite_enrolled":true,"id":"5df16760-5ec9-4015-87fa-a2ef4bc3bed6","last_modified":1562025434671},{"schema":1562025430931,"derHash":"7c2Itr13/IomgOLsuP+6xFiY36D96YNCXg8b6wWMBLY=","subject":"CN=DigiCert EV Code Signing CA (SHA2) G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLjAsBgNVBAMTJURpZ2lDZXJ0IEVWIENvZGUgU2lnbmluZyBDQSAoU0hBMikgRzI=","whitelist":false,"attachment":{"hash":"a14f5dac8d6f50ed84b645b9217e55446e7d75de6489c65e580ab2df2e4bb02d","size":1804,"filename":"6YC6rxi_m1VJU_goQfoSx50MPPhsiwz8zgwBht5WJBI=.pem","location":"security-state-staging
/intermediates/e0f10167-e74d-4bfb-9146-e178b6346fd1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6YC6rxi/m1VJU/goQfoSx50MPPhsiwz8zgwBht5WJBI=","crlite_enrolled":false,"id":"b0a5917e-e060-4bff-9f8a-89d9957be49e","last_modified":1562025431667},{"schema":1562025430186,"derHash":"OIPm3kkXpGtZTswtKsapXUPn6qjgiakfm8EE/xbfjeY=","subject":"CN=Secure Site Pro Extended Validation CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLzAtBgNVBAMTJlNlY3VyZSBTaXRlIFBybyBFeHRlbmRlZCBWYWxpZGF0aW9uIENB","whitelist":false,"attachment":{"hash":"873a9affb573886082637d5874421893f652b55adfa77a32cb7cd76d35bb12b5","size":1695,"filename":"C5iNVr6DMrTBS2Wvb08zPxdCQnB0DSWA-yu6a9MbQBI=.pem","location":"security-state-staging/intermediates/1ded7fc2-cc24-4baa-9054-88cf1ffdb23f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"C5iNVr6DMrTBS2Wvb08zPxdCQnB0DSWA+yu6a9MbQBI=","crlite_enrolled":true,"id":"21893
de7-b8e7-47a3-b253-4e26a2326ac3","last_modified":1562025430923},{"schema":1562025428680,"derHash":"MafFefJNVWLNsgP6Fanyw/9dwfLmv3wL2V+8sBFMjSE=","subject":"CN=QuoVadis Swiss Advanced CA G3,O=QuoVadis Trustlink Schweiz AG,C=CH","subjectDN":"MH0xCzAJBgNVBAYTAkNIMR4wHAYDVQRhDBVOVFJDSC1DSEUtMTEyLjIxMC4zNDkxJjAkBgNVBAoMHVF1b1ZhZGlzIFRydXN0bGluayBTY2h3ZWl6IEFHMSYwJAYDVQQDDB1RdW9WYWRpcyBTd2lzcyBBZHZhbmNlZCBDQSBHMw==","whitelist":false,"attachment":{"hash":"4c229971fe06e9adf8da15571ba88a33b97732bcd7efb4c3096b84bafb019de0","size":2467,"filename":"KLQihRcKGkB7ukIgVMH3JF7JqQfl2YglDju59t5S7xc=.pem","location":"security-state-staging/intermediates/7560f454-7151-41fc-8d5c-cc244ed8aee2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KLQihRcKGkB7ukIgVMH3JF7JqQfl2YglDju59t5S7xc=","crlite_enrolled":false,"id":"3dff3c65-da33-4800-8dc5-549bfceca08d","last_modified":1562025429424},{"schema":1562025427924,"derHash":"jtUXtLzfL1DgXow27dMXMukt5m+9OAE5nCxj3PlkqRs=","subject":"SERIALNUMBER=201817,CN=C
itizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODE3","whitelist":false,"attachment":{"hash":"a87ea56cf878c4276c1f26db6f637964720a10b7fae2d35c645f81023350615c","size":2333,"filename":"kOdfzgDjsNVfydhVydVGyjvTw2nLr0bCdjn9_f-zdz8=.pem","location":"security-state-staging/intermediates/3dfa861d-ea88-4904-978a-0310ac3284bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kOdfzgDjsNVfydhVydVGyjvTw2nLr0bCdjn9/f+zdz8=","crlite_enrolled":false,"id":"f70b9a27-dfae-440f-b8b5-f77e5300d527","last_modified":1562025428672},{"schema":1562025426418,"derHash":"TY7Uo7Xzz3T+yHXoIEISpyGX1x3aOgeuX6W+/rYeycY=","subject":"CN=Trustico ECC EV CA,OU=Controlled by COMODO exclusively for The Trustico Group Ltd,O=The Trustico Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MIG0MQswCQYDVQQGEwJHQjEPMA0GA1UECBMGTG9uZG9uMRAwDgYDVQQHEwdDcm95ZG9uMR8wHQYDVQQKExZUaGUgV
HJ1c3RpY28gR3JvdXAgTHRkMUQwQgYDVQQLEztDb250cm9sbGVkIGJ5IENPTU9ETyBleGNsdXNpdmVseSBmb3IgVGhlIFRydXN0aWNvIEdyb3VwIEx0ZDEbMBkGA1UEAxMSVHJ1c3RpY28gRUNDIEVWIENB","whitelist":false,"attachment":{"hash":"442ba57bab9a7615f627b29e8f745bcc614a03a9a8babdc8c7460def49d525da","size":1406,"filename":"oSp7zLM2UdmSs3L-sF5vVgDPO3AMbxo2i3f5JYu4BYI=.pem","location":"security-state-staging/intermediates/9e0b0416-befa-4ad0-a1a0-07c5bc86cb3e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oSp7zLM2UdmSs3L+sF5vVgDPO3AMbxo2i3f5JYu4BYI=","crlite_enrolled":false,"id":"7e4c32a3-05e2-466f-a302-2d4cb7a34e45","last_modified":1562025427178},{"schema":1562025425668,"derHash":"4bKV4UZcJOCVHsC5D799owtnjp6c5EF9/+nzQELfQ4Y=","subject":"CN=TU Dresden CA,O=Technische Universitaet Dresden,L=Dresden,ST=Sachsen,C=DE","subjectDN":"MHMxCzAJBgNVBAYTAkRFMRAwDgYDVQQIDAdTYWNoc2VuMRAwDgYDVQQHDAdEcmVzZGVuMSgwJgYDVQQKDB9UZWNobmlzY2hlIFVuaXZlcnNpdGFldCBEcmVzZGVuMRYwFAYDVQQDDA1UVSBEcmVzZGVuIENB","whitelist":false,"attachment":{
"hash":"4bb4a85a2aef8c2bbc7477ee066a25d177f13127df617d2caa763c5c9f3f5c92","size":1995,"filename":"dc-5wn2Qr-3zgoir8SQHWj7HfNM321MTym4ESb5GtH0=.pem","location":"security-state-staging/intermediates/d5d6b138-b20a-438c-bed9-6af0e662b862.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dc+5wn2Qr+3zgoir8SQHWj7HfNM321MTym4ESb5GtH0=","crlite_enrolled":true,"id":"5aecaad6-1f2a-4e95-82f0-497d2e825f43","last_modified":1562025426410},{"schema":1562025424927,"derHash":"VvMhZ/AD2PLLc4qzhsNcoVJlzCmpjuEGbNPhrFVsoVw=","subject":"CN=WISeKey CertifyID Personal GB CA 2,O=WISeKey,C=CH","subjectDN":"MEwxCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSswKQYDVQQDEyJXSVNlS2V5IENlcnRpZnlJRCBQZXJzb25hbCBHQiBDQSAy","whitelist":false,"attachment":{"hash":"fcd1020e802ce305dd5335ac117db1394ba35eb66280a7147e781bbc14a2fd48","size":1719,"filename":"PWvk9TZyRU9m6dOhEkswhdztMm-gtB5E3LzgPz8CQ6c=.pem","location":"security-state-staging/intermediates/f115ee94-ac0c-470b-a0c0-cb926fb24dad.pem","mimetype":"application/x-p
em-file"},"pubKeyHash":"PWvk9TZyRU9m6dOhEkswhdztMm+gtB5E3LzgPz8CQ6c=","crlite_enrolled":false,"id":"fb909118-cd1d-4213-9faf-c66239f756d9","last_modified":1562025425660},{"schema":1562025424183,"derHash":"IQbMeQfGS4pdovwzjulN//EO9xHe27T8aU7gkuxTKx0=","subject":"CN=TrustCubes ICA G1,OU=www.trustcubes.com,O=TRUSTCUBES LIMITED,C=GB","subjectDN":"MIGhMQswCQYDVQQGEwJHQjEbMBkGA1UEChMSVFJVU1RDVUJFUyBMSU1JVEVEMRcwFQYIKwYBBAGEBwETCTIyMzAxMzcwMTEjMCEGCSsGAQQBg5gqARMUOTg0NTAwNTA1RkU4MENEME5FNTgxGzAZBgNVBAsTEnd3dy50cnVzdGN1YmVzLmNvbTEaMBgGA1UEAxMRVHJ1c3RDdWJlcyBJQ0EgRzE=","whitelist":false,"attachment":{"hash":"002d39d549b3edc3243fc8849e44a7320b6faab7fec61dbc7a17973a224b8dd3","size":1756,"filename":"WQNVf79ywhoSIaihn1jQE-5z8UKENBfhCeJcnklN0YQ=.pem","location":"security-state-staging/intermediates/0a4ef028-7d3c-4559-bee0-36cdd53068ab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WQNVf79ywhoSIaihn1jQE+5z8UKENBfhCeJcnklN0YQ=","crlite_enrolled":true,"id":"84388c52-0b35-4c7c-aa4f-ad6fe76d62
35","last_modified":1562025424920},{"schema":1562025423432,"derHash":"4b5ru7cPWiQec2/ETGohYL9s4ZuV7dZ7976JboN3h0U=","subject":"CN=TERENA eScience SSL CA 3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MG0xCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEhMB8GA1UEAxMYVEVSRU5BIGVTY2llbmNlIFNTTCBDQSAz","whitelist":false,"attachment":{"hash":"b0d4a431134fa5326c4d8941ca00bc9e05a182f5314e22010ce190dafef3b64a","size":1800,"filename":"mNPoBotkTew6fh29COIk7FfA9rKbI3N7z9F5Tl9pcMQ=.pem","location":"security-state-staging/intermediates/fb0d63fa-26c1-48ef-b408-173776b4675b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mNPoBotkTew6fh29COIk7FfA9rKbI3N7z9F5Tl9pcMQ=","crlite_enrolled":true,"id":"788f8e47-0819-4adb-a11b-e91c396886c0","last_modified":1562025424175},{"schema":1562025422689,"derHash":"eBrNIJ07hz8Uj12zHGgK2tztQCONjBvxotVTOR+l0PM=","subject":"CN=Certigna Entity Code Signing CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","
subjectDN":"MIGIMQswCQYDVQQGEwJGUjESMBAGA1UECgwJREhJTVlPVElTMRwwGgYDVQQLDBMwMDAyIDQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQRhDBROVFJGUi00ODE0NjMwODEwMDAzNjEoMCYGA1UEAwwfQ2VydGlnbmEgRW50aXR5IENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"08a562df9f7a4bc1c71eb903365f2523a36f48e8c67b7ab282f68e32bc060c3f","size":2523,"filename":"u3ZvFIlkZqOQDQbj9Abh3WXDOESr4pASOdoob9Oo2YI=.pem","location":"security-state-staging/intermediates/2eb117ef-3a3b-4901-9201-beb77a5e0cc8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"u3ZvFIlkZqOQDQbj9Abh3WXDOESr4pASOdoob9Oo2YI=","crlite_enrolled":false,"id":"0fb33d2f-f64b-456b-ac79-80910985aadd","last_modified":1562025423424},{"schema":1562025421934,"derHash":"Bb+2YF1IUWpXG6+af/dTdhMEcNpe5/9oTCZy6qDAyK0=","subject":"SERIALNUMBER=ZZZZZZA5,CN=Siemens Issuing CA Multi Purpose 2016,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGlMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8
GA1UEBRMIWlpaWlpaQTUxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMS4wLAYDVQQDDCVTaWVtZW5zIElzc3VpbmcgQ0EgTXVsdGkgUHVycG9zZSAyMDE2","whitelist":false,"attachment":{"hash":"af0f17b404fbe18f86b9a08fbf3a7290623dc40dfadc1ac8c5d13b301a225fb7","size":2629,"filename":"GXTRtJ2VY1qQoBilPBeqP3z474KaNpz5Yeg65lNpPkg=.pem","location":"security-state-staging/intermediates/dc6ad260-c1eb-49e3-8419-9c2c0123af72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GXTRtJ2VY1qQoBilPBeqP3z474KaNpz5Yeg65lNpPkg=","crlite_enrolled":false,"id":"1e840493-34d2-4a03-9e0f-4ab3736899a3","last_modified":1562025422681},{"schema":1562025420418,"derHash":"BRwjj618HcD860rvecrpf+SagtqJFqSgkg8weqzWD4E=","subject":"CN=GDCA TrustAUTH R4 CodeSigning CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MHMxCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xKTAnBgNVBAMMIEdEQ0EgVHJ1c3RBVVRIIFI0IENvZGVTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"7af1e
6c6f9dd99eac7019162f8379c26901b03968413c1d8c3c8744bfff66c86","size":2060,"filename":"5Zt41KtIYUpjoXvNDZtGlrN-S-X9juxZk0kJdwQpIlM=.pem","location":"security-state-staging/intermediates/9201b15f-d676-42cb-8b9d-46172588682e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5Zt41KtIYUpjoXvNDZtGlrN+S+X9juxZk0kJdwQpIlM=","crlite_enrolled":false,"id":"9e86f345-8b64-4b98-bb28-df4a1df1da0b","last_modified":1562025421177},{"schema":1562025418924,"derHash":"e+0pJ2rL7Z8Xbzi7o6Z85YFbXL8VIse7WezYawnhbtI=","subject":"CN=Amazon,OU=Server CA 4A,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSA0QTEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"80e7ade2cfaf2410560723bc955bfee6189c0738bf29f0cbef746f8ab6211ff5","size":1089,"filename":"F3CN_yt_rsnLG1IV67JCHZewVDyTb6ydbgK5LyDlxwc=.pem","location":"security-state-staging/intermediates/e35a1354-e5b2-4212-a952-670b71886c48.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F3CN/yt/r
snLG1IV67JCHZewVDyTb6ydbgK5LyDlxwc=","crlite_enrolled":false,"id":"e892e888-930b-4d65-ac61-bac8ebb2adc5","last_modified":1562025419658},{"schema":1562025417416,"derHash":"5/vS2obeMa5/4FHGQ/xF0x5nRUsqXNjkPG1lZyOujOo=","subject":"CN=FujiSSL SHA2 Extended Validation Secure Site CA,OU=Controlled by Sectigo exclusively for Nijimo K.K.,O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN":"MIG+MQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTClNoaWJ1eWEta3UxFDASBgNVBAoTC05pamltbyBLLksuMTowOAYDVQQLEzFDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIE5pamltbyBLLksuMTgwNgYDVQQDEy9GdWppU1NMIFNIQTIgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"5234da30ba635d594351c8f25c9d98755ed276e3fda91212595e2b9141b6a270","size":2268,"filename":"yGo0I_1jRNcQKZcAyqa4MRLItXyEYd7pWVmh6m8y4C4=.pem","location":"security-state-staging/intermediates/18b98149-a8eb-4ec8-80fc-928d1983db68.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yGo0I/1jRNcQKZcAyqa4MRLItX
yEYd7pWVmh6m8y4C4=","crlite_enrolled":false,"id":"742b99e6-7240-40bc-8afc-bf1d45a1a9bf","last_modified":1562025418168},{"schema":1562025416678,"derHash":"asFZtMK8jnKfO4RkLvEoa8yA13X+J4x0CtpGjVlDkCU=","subject":"CN=D-TRUST SSL Class 3 CA 1 2009,O=D-Trust GmbH,C=DE","subjectDN":"MEwxCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJjAkBgNVBAMMHUQtVFJVU1QgU1NMIENsYXNzIDMgQ0EgMSAyMDA5","whitelist":false,"attachment":{"hash":"554db3f3f6728e13a10d546724cfe973f631696acc81d3d80206909beb978612","size":1861,"filename":"9w0QP9HzLXkfs-4zENaUFq2XKcQON1oyksoJ-Gg2AZE=.pem","location":"security-state-staging/intermediates/bb452f94-c0b6-479f-b577-d019a89c31d7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9w0QP9HzLXkfs+4zENaUFq2XKcQON1oyksoJ+Gg2AZE=","crlite_enrolled":true,"id":"37dde6cf-08e9-4e8e-bad3-9c993d870f8d","last_modified":1562025417408},{"schema":1562025415204,"derHash":"BkM/yp91OYC1JiNt1yhG7Bsgdwv8x9MYjdZ7wOz7d4I=","subject":"CN=Greenville Health System CA,OU=Orion Health Direct S
ecure Messaging,O=Greenville Health System,C=US","subjectDN":"MIGFMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYR3JlZW52aWxsZSBIZWFsdGggU3lzdGVtMS0wKwYDVQQLEyRPcmlvbiBIZWFsdGggRGlyZWN0IFNlY3VyZSBNZXNzYWdpbmcxJDAiBgNVBAMTG0dyZWVudmlsbGUgSGVhbHRoIFN5c3RlbSBDQQ==","whitelist":false,"attachment":{"hash":"940f74f14744addbb8dcb7659509701cf0f713a02960e673bee265fefeaadb89","size":2300,"filename":"yPuMwpJMeMLa4pEq0C8FL_ugpU7_x3Zj_5fmOCHtRhI=.pem","location":"security-state-staging/intermediates/a9c6671b-774f-41f4-a46e-ff017860e2a5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yPuMwpJMeMLa4pEq0C8FL/ugpU7/x3Zj/5fmOCHtRhI=","crlite_enrolled":false,"id":"91d209d2-e7c2-47b4-bd68-058b8adbda03","last_modified":1562025415931},{"schema":1562025414466,"derHash":"khDT/rax8B7K+McmESV1iQW/iH6NCygkjKf6coTC9zk=","subject":"CN=USERTrust RSA Code Signing CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGAMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBg
NVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazEmMCQGA1UEAxMdVVNFUlRydXN0IFJTQSBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"d865305420305a96e03553e0290021ab08fd6bef8d5bf1f6233a13f4349c2159","size":2142,"filename":"PWFYjBN92SersAqUUJzfJ8E4Pj9cxCTLluiO-_6xWqc=.pem","location":"security-state-staging/intermediates/8a270672-a325-421c-aa0c-d8056f155544.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PWFYjBN92SersAqUUJzfJ8E4Pj9cxCTLluiO+/6xWqc=","crlite_enrolled":true,"id":"1f1fa5d7-28c2-4016-a238-a255210ad688","last_modified":1562025415197},{"schema":1562025411468,"derHash":"//4HdQP9cvDlM4sKe04hjn0f+C5JPn6FKuUaocdYXRc=","subject":"CN=GlobalSign CodeSigning CA - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFExCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMScwJQYDVQQDEx5HbG9iYWxTaWduIENvZGVTaWduaW5nIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"f95ebdf17b6cf9f6ae57dab7480084843c2e7cc2cad146c563a2ee1a97bad6eb","size":1646,"filename":"bAToA1Qda7M7XsA72vR3vK2dwxV3Eti
PeCfwswnDh44=.pem","location":"security-state-staging/intermediates/6fe38bdc-2f4e-4fcd-8665-de39d97dc15c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bAToA1Qda7M7XsA72vR3vK2dwxV3EtiPeCfwswnDh44=","crlite_enrolled":false,"id":"36efdaf9-8a7f-4d68-be5e-eae0852be93d","last_modified":1562025412213},{"schema":1562025410725,"derHash":"3eS+vyYsnY31y1T+T1mVGR6vWK3Lkv5a7TEorA0ZFsc=","subject":"CN=Symantec Class 3 Organizational CA - G2,OU=VeriSign Trust Network+OU=Terms of use at https://www.verisign.com/rpa (c)11,O=Symantec Corporation,C=US","subjectDN":"MIG8MQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOzA5BgNVBAsTMlRlcm1zIG9mIHVzZSBhdCBodHRwczovL3d3dy52ZXJpc2lnbi5jb20vcnBhIChjKTExMTAwLgYDVQQDEydTeW1hbnRlYyBDbGFzcyAzIE9yZ2FuaXphdGlvbmFsIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"2073f18bd8b760997037f65cea8c6463d57c287eeaf37cd78e0afde81beb50ad","size":2008,"filename":"8Vaa7hyPgvofrzXh1bAlF62L9kQg_5tbO-89MDeNtLQ=.p
em","location":"security-state-staging/intermediates/ca6cba07-b0ed-4b09-9c57-b753df3f5d0c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8Vaa7hyPgvofrzXh1bAlF62L9kQg/5tbO+89MDeNtLQ=","crlite_enrolled":false,"id":"472a34bc-59f2-4e7d-ab34-7e991d5266c8","last_modified":1562025411460},{"schema":1562025409209,"derHash":"64T8C0A9m2iSl6XYPqGGg447d3vGGO/aFip1t/6mZsE=","subject":"CN=DigiCert Federated ID US L3 CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJzAlBgNVBAMTHkRpZ2lDZXJ0IEZlZGVyYXRlZCBJRCBVUyBMMyBDQQ==","whitelist":false,"attachment":{"hash":"56a86bb48ed696de350c2df65d97e8c04077813d4858bfbee431f3e3a7b1e6f4","size":1869,"filename":"14vZQlpwjgYpJ-P-OWrCLfFBSxrpJvtuhoFlwDkZfKw=.pem","location":"security-state-staging/intermediates/d381d1d1-fd9f-4813-a5aa-4b22e940bbe5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"14vZQlpwjgYpJ+P+OWrCLfFBSxrpJvtuhoFlwDkZfKw=","crlite_enro
lled":false,"id":"b6ac63f3-779d-4f02-888a-0f181a3001d2","last_modified":1562025409946},{"schema":1562025407732,"derHash":"rjc+SI3RPe9xYR1S8LUXndZIJBo4H2eoBzT2YV/25so=","subject":"CN=LuxTrust Corporate CA,O=LuxTrust S.A.,C=LU","subjectDN":"MEUxCzAJBgNVBAYTAkxVMRYwFAYDVQQKEw1MdXhUcnVzdCBTLkEuMR4wHAYDVQQDExVMdXhUcnVzdCBDb3Jwb3JhdGUgQ0E=","whitelist":false,"attachment":{"hash":"14cabf521e5bbb849b1939229c0aaf15cee63afe34b235bcb187079f1ed2c596","size":2276,"filename":"1IJLHql-hNTPjvXDc2RSsXxNiuzg24zvLWDesq51de8=.pem","location":"security-state-staging/intermediates/f3beac36-1b74-49d5-9904-dcd3444e6570.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1IJLHql+hNTPjvXDc2RSsXxNiuzg24zvLWDesq51de8=","crlite_enrolled":false,"id":"b6d2831c-8bb2-45c7-8018-5016141d7585","last_modified":1562025408461},{"schema":1562025406966,"derHash":"SKL31+gNQucip1LYkjgcBu7EQUFVydZFKqUG7qTtQ/Y=","subject":"CN=Trustico ECC OV CA,O=The Trustico Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MG4xCzAJBgNVBAY
TAkdCMQ8wDQYDVQQIEwZMb25kb24xEDAOBgNVBAcTB0Nyb3lkb24xHzAdBgNVBAoTFlRoZSBUcnVzdGljbyBHcm91cCBMdGQxGzAZBgNVBAMTElRydXN0aWNvIEVDQyBPViBDQQ==","whitelist":false,"attachment":{"hash":"db16d66287fc83d7c7d389ce4e8d312e54908daf51f80a248788c398e0b5d751","size":1272,"filename":"WBn6yHQKpmzXFlZmp92hV73p71SuDLIwooOX99zzGBs=.pem","location":"security-state-staging/intermediates/d37260dd-6fc7-4943-aefe-3a877dde4827.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WBn6yHQKpmzXFlZmp92hV73p71SuDLIwooOX99zzGBs=","crlite_enrolled":false,"id":"dfad7acc-b54c-4fdb-9e08-0579d8b51981","last_modified":1562025407723},{"schema":1562025406218,"derHash":"d1N2gumgssW9XmK8HLNezrOPy+v30twyb35CDw3b7bM=","subject":"CN=RelayHealth Direct CA,O=RelayHealth,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRQwEgYDVQQKEwtSZWxheUhlYWx0aDEeMBwGA1UEAxMVUmVsYXlIZWFsdGggRGlyZWN0IENB","whitelist":false,"attachment":{"hash":"7b8ec633ea8e4ffb238a02aaa13742373bff1c0a3eca844f96bd5fdcf1a5858c","size":2101,"filename":"8r_WvGnNYwiJkaujq
kp9w8Cx_ydDtfGWD-u4L_ZVBUU=.pem","location":"security-state-staging/intermediates/99b1a459-48a1-4e6c-b286-32402da52a8a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8r/WvGnNYwiJkaujqkp9w8Cx/ydDtfGWD+u4L/ZVBUU=","crlite_enrolled":false,"id":"0433b918-a448-4953-9835-5d211669a194","last_modified":1562025406959},{"schema":1562025404691,"derHash":"K/TxtAQNvCkMF68cF3QVsV3nt6BeXWk9Gq2zSRmeknE=","subject":"CN=SSL.com Client Authentication and Email CA,OU=www.ssl.com,O=SSL.com,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMRAwDgYDVQQKEwdTU0wuY29tMRQwEgYDVQQLEwt3d3cuc3NsLmNvbTEzMDEGA1UEAxMqU1NMLmNvbSBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIEVtYWlsIENB","whitelist":false,"attachment":{"hash":"4a7e55df2d04b4fbf8ceb238621c3522b71ae629ff4a52cbdb209642962ced24","size":2129,"filename":"o-Stjubrf3fOy2A5YfQYHaRKuUFlHp7EwXfRxi0LD1M=.pem","location":"security-state-staging/intermediates/5ce5a3e3-2971-43e9-adc8-23ac4dbe924a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"o+Stjubrf3fOy2A5YfQYHaRKuUF
lHp7EwXfRxi0LD1M=","crlite_enrolled":false,"id":"6f2b7763-47bc-435d-90f4-e167839a82c1","last_modified":1562025405472},{"schema":1562025403937,"derHash":"YmFumxG9Djo1g2DIO3jbxb7qV1yQuX5oJEgz+zBDfGs=","subject":"CN=TERENA Personal CA,O=TERENA,C=NL","subjectDN":"MDsxCzAJBgNVBAYTAk5MMQ8wDQYDVQQKEwZURVJFTkExGzAZBgNVBAMTElRFUkVOQSBQZXJzb25hbCBDQQ==","whitelist":false,"attachment":{"hash":"b540a4b8690142678f25aaa6f34207fd3c4298612d40cac2034f5049aa748c3b","size":1711,"filename":"GrQOOcgaiD1vs9vGDvRaVMQKNDQm2_Nj7lPXTk4s2F0=.pem","location":"security-state-staging/intermediates/e89a4382-1535-4c37-8a30-6afc7db29ba0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GrQOOcgaiD1vs9vGDvRaVMQKNDQm2/Nj7lPXTk4s2F0=","crlite_enrolled":false,"id":"415dc948-b9c5-49ef-96c2-e37830540e67","last_modified":1562025404683},{"schema":1562025402414,"derHash":"YipCooytyD2WJ3HZ0JvTB4d9SrUTtP4M8uWFHnn/pv4=","subject":"CN=DigiCert Universal Issuing CA,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MG
gxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSYwJAYDVQQDEx1EaWdpQ2VydCBVbml2ZXJzYWwgSXNzdWluZyBDQQ==","whitelist":false,"attachment":{"hash":"f1a1ffb6fdb69d7a3855904617a2703d1eeacea8fdb96c2618a5d48d7cec562f","size":1678,"filename":"rpECg98Pqf-LyUsBhAF2Y2Or1rqJfjhDeTy2ZQhmgGI=.pem","location":"security-state-staging/intermediates/edab92da-32c4-4827-9208-230a7c26ad84.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rpECg98Pqf+LyUsBhAF2Y2Or1rqJfjhDeTy2ZQhmgGI=","crlite_enrolled":false,"id":"b7cfacc8-6fd6-4e82-8bc6-24d3074d4f66","last_modified":1562025403178},{"schema":1562025400184,"derHash":"Af1z715w9Sb8nBH2X+Lub3Els2k5SSJ//Y5Fnlg8RYo=","subject":"CN=Trusted Root CA SHA256 G2,OU=Trusted Root,O=GlobalSign nv-sa,C=BE","subjectDN":"MGMxCzAJBgNVBAYTAkJFMRUwEwYDVQQLEwxUcnVzdGVkIFJvb3QxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExIjAgBgNVBAMTGVRydXN0ZWQgUm9vdCBDQSBTSEEyNTYgRzI=","whitelist":false,"attachment":{"hash":"0176070032bd2aad1dd44b838d42fdda7
01908895fbf143871d5d749253510f1","size":1573,"filename":"HHWscHR-mXReMKBRZxCvqEg6wDv6HAbPzKN7NlLvq4c=.pem","location":"security-state-staging/intermediates/989c40e2-7ad5-4b2b-8323-8e4496275666.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HHWscHR+mXReMKBRZxCvqEg6wDv6HAbPzKN7NlLvq4c=","crlite_enrolled":true,"id":"6cfd8096-2b5c-403d-8580-437aceb14b2e","last_modified":1562025400918},{"schema":1562025399410,"derHash":"L8wAmq/bKOklZDBBCm+m52rwkwGxBE/qqsqwAhWqOeE=","subject":"CN=Secure Site Starter DV SSL CA - G3,OU=Domain Validated SSL,O=GeoTrust\\, Inc.,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5HZW9UcnVzdCwgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxKzApBgNVBAMTIlNlY3VyZSBTaXRlIFN0YXJ0ZXIgRFYgU1NMIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"92ee49d649aaf20a97caf2d91e00782df1925655b89795b19a68aa987d986f4f","size":1650,"filename":"pevGgdMM_FHMatT2CPKUmJVunG4EypGCZJqawFp8J-I=.pem","location":"security-state-staging/intermediates/3c4ee093-9c34-4fd0-816d-8
7fdc7c5588d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pevGgdMM/FHMatT2CPKUmJVunG4EypGCZJqawFp8J+I=","crlite_enrolled":false,"id":"ddc005b0-cf67-41f1-aae0-2e1f3912a13b","last_modified":1562025400176},{"schema":1562025397124,"derHash":"Js+iBnU+lq7Xww9WdOfG9aDLL5ODevahWWwveZxyU4U=","subject":"CN=Starfield Secure Code Signing Certificate Authority - G2,OU=http://certs.starfieldtech.com/repository/,O=Starfield Technologies\\, LLC,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIHSMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEkMCIGA1UEChMbU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgTExDMTMwMQYDVQQLEypodHRwOi8vY2VydHMuc3RhcmZpZWxkdGVjaC5jb20vcmVwb3NpdG9yeS8xQTA/BgNVBAMTOFN0YXJmaWVsZCBTZWN1cmUgQ29kZSBTaWduaW5nIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcy","whitelist":false,"attachment":{"hash":"e67baffceaaae8a33973769e8a0fee09f33d86447facacab10005c1e9966f816","size":1841,"filename":"pdrFwFVE08-U0RMwwjTWvOzvNV6eV6GCx6Vc3g5O3qQ=.pem","location":"security-state-staging/intermedia
tes/bd7d360c-039c-441f-b5c0-01b65c968a68.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pdrFwFVE08+U0RMwwjTWvOzvNV6eV6GCx6Vc3g5O3qQ=","crlite_enrolled":false,"id":"3783c081-1bbe-4271-a451-0a0cd17eccac","last_modified":1562025397888},{"schema":1562025396359,"derHash":"rRSmi+yUnoT2BjQZ1jRl0TfCrdPjqF4A6ePuguW0AY8=","subject":"CN=DigiCert Secure Site Japan CA,OU=www.digicert.co.jp,O=DigiCert Japan G.K.,C=JP","subjectDN":"MHAxCzAJBgNVBAYTAkpQMRwwGgYDVQQKExNEaWdpQ2VydCBKYXBhbiBHLksuMRswGQYDVQQLExJ3d3cuZGlnaWNlcnQuY28uanAxJjAkBgNVBAMTHURpZ2lDZXJ0IFNlY3VyZSBTaXRlIEphcGFuIENB","whitelist":false,"attachment":{"hash":"df60eb3da080f2840db9acafe44fcdcacda6ee46054e6e24d7990e36214d5715","size":1658,"filename":"RuOIM5KDx0FCWTkQrZiunZ5syXM7en8mBJBWgs2ZzpE=.pem","location":"security-state-staging/intermediates/59fe3a3f-e4cb-48ed-85fc-b4682138e5d2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RuOIM5KDx0FCWTkQrZiunZ5syXM7en8mBJBWgs2ZzpE=","crlite_enrolled":false,"id":"18f06aa2-9015-4
337-ac7b-12dfa481edb4","last_modified":1562025397117},{"schema":1562025395609,"derHash":"L1CGD5aAU6fboXhRNBdZsNXAQS+FeizRnzcx3TvtG2s=","subject":"CN=SecureTrust Client Authentication CA\\, Level 1,O=SecureTrust,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGAMTYwNAYDVQQDEy1TZWN1cmVUcnVzdCBDbGllbnQgQXV0aGVudGljYXRpb24gQ0EsIExldmVsIDExFDASBgNVBAoTC1NlY3VyZVRydXN0MRAwDgYDVQQHEwdDaGljYWdvMREwDwYDVQQIEwhJbGxpbm9pczELMAkGA1UEBhMCVVM=","whitelist":false,"attachment":{"hash":"7597ddd7590ab3bc97a1c2993f821d497d01ca156227cc8dd5576381cf270f76","size":1626,"filename":"mwNPmB4uqglX9MTEystm7SE6EITvH7E-j8zAmqo2488=.pem","location":"security-state-staging/intermediates/d1cfcb15-db46-4713-a13c-1c0c9d27bf59.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mwNPmB4uqglX9MTEystm7SE6EITvH7E+j8zAmqo2488=","crlite_enrolled":false,"id":"d86224d9-6318-425c-9d3d-655fbc029085","last_modified":1562025396352},{"schema":1562025394125,"derHash":"srsm0nHcgrtkc1S29xjQq/G01nQRoO2v8aqVm+Xe034=","subject":"CN=STRAT
O RSA CA,OU=Domain Validated SSL,O=STRATO AG,C=DE","subjectDN":"MFgxCzAJBgNVBAYTAkRFMRIwEAYDVQQKEwlTVFJBVE8gQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRYwFAYDVQQDEw1TVFJBVE8gUlNBIENB","whitelist":false,"attachment":{"hash":"d842b8e25f120d3ec31470876c77959fcf153a53f4a6457032a5ed3a0b71fa9a","size":1662,"filename":"oq0kkPtB7DgGV2afHdfrfKYwd5HqSWcvdyQogYh9c1A=.pem","location":"security-state-staging/intermediates/c5305a44-babf-450b-8d0a-a867e9e4e1db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oq0kkPtB7DgGV2afHdfrfKYwd5HqSWcvdyQogYh9c1A=","crlite_enrolled":false,"id":"acc31af2-0f15-4651-81d6-75626778da0f","last_modified":1562025394863},{"schema":1562025390366,"derHash":"XKBOk6WgfXTG+0r+Gz1NvGLCXOdNhhfH7mbLVDi6ZX8=","subject":"CN=KeyNet Systems ECC OV CA,O=KeyNet Systems LLC,L=Las Vegas,ST=Nevada,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMQ8wDQYDVQQIEwZOZXZhZGExEjAQBgNVBAcTCUxhcyBWZWdhczEbMBkGA1UEChMSS2V5TmV0IFN5c3RlbXMgTExDMSEwHwYDVQQDExhLZXlOZXQgU3lzdGVtcyBFQ0MgT1YgQ0E=","whi
telist":false,"attachment":{"hash":"fa718efade37d1ce6617cd424eb885b934990185cacf99b396a71b3ae4a20df9","size":1297,"filename":"px8fWni3abLFLZV9MOsgswaWeefS4bTPmddWxtEXiag=.pem","location":"security-state-staging/intermediates/9c7bf4e4-f185-47c3-8165-17f826f18051.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"px8fWni3abLFLZV9MOsgswaWeefS4bTPmddWxtEXiag=","crlite_enrolled":false,"id":"38fecd26-fc2d-4f68-b8af-3bc270e6db61","last_modified":1562025391119},{"schema":1562025388878,"derHash":"8mA2cL7erR2XfWmS+mVU5spZW8UPOwP0Ftzw8g2sNsI=","subject":"CN=NETLOCK Trust Advanced Plus CA,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"MGAxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMScwJQYDVQQDDB5ORVRMT0NLIFRydXN0IEFkdmFuY2VkIFBsdXMgQ0E=","whitelist":false,"attachment":{"hash":"540e442f30e4d92cc77c092424cd284037ee17d43f66a1f403d30efc07c2135e","size":2077,"filename":"mgqek_kZMpAjKUdlEROIUnDVMUVD0aenZnLSASM3iuY=.pem","location":"security-state-staging/intermediates/
51f17241-57ee-4ea5-a20b-800c39580154.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mgqek/kZMpAjKUdlEROIUnDVMUVD0aenZnLSASM3iuY=","crlite_enrolled":false,"id":"b922d207-71dc-413f-b0fe-110a94999f23","last_modified":1562025389609},{"schema":1562025388126,"derHash":"zW65N+4Xqfz/YKeQ+L3gypq8oHs+9GB03Rl48Lyk1Ek=","subject":"CN=EAEko Herri Administrazioen CA - CA AAPP Vascas (2),OU=AZZ Ziurtagiri publikoa - Certificado publico SCA,O=IZENPE S.A.,C=ES","subjectDN":"MIGdMQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xOjA4BgNVBAsMMUFaWiBaaXVydGFnaXJpIHB1Ymxpa29hIC0gQ2VydGlmaWNhZG8gcHVibGljbyBTQ0ExPDA6BgNVBAMMM0VBRWtvIEhlcnJpIEFkbWluaXN0cmF6aW9lbiBDQSAtIENBIEFBUFAgVmFzY2FzICgyKQ==","whitelist":false,"attachment":{"hash":"8a1839dcde98a8a35e268cfeba8b062ef97d7715e9cc268450315ee23cfb2c2c","size":2560,"filename":"1du3EfOp93FwG10en54tLejZ-LiGC4VDvyvFeaa50D8=.pem","location":"security-state-staging/intermediates/9e4524c0-0fc8-4de5-bb45-2b4a4446d9a8.pem","mimetype":"application/x-pem-file"},
"pubKeyHash":"1du3EfOp93FwG10en54tLejZ+LiGC4VDvyvFeaa50D8=","crlite_enrolled":true,"id":"ae24e0ff-b8b9-4d71-8508-3ceac79ef326","last_modified":1562025388871},{"schema":1562025385874,"derHash":"zSZAlXz4hhBHDO/UCdhdm+BZYvfWwpmcT0MavMw0EYw=","subject":"CN=Corepoint Direct Intermediate CA,O=Corepoint Health,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBDb3JlcG9pbnQgSGVhbHRoMSkwJwYDVQQDEyBDb3JlcG9pbnQgRGlyZWN0IEludGVybWVkaWF0ZSBDQQ==","whitelist":false,"attachment":{"hash":"cc2a17a1ba1f2e38700e08a8b7dab378470299c34a9c211c703448e725d29381","size":2158,"filename":"pcwA2IetNTivVxDNYKmF_fNcmwNsIBxp87A1i9fW_gU=.pem","location":"security-state-staging/intermediates/ed6cd416-0abe-4039-9b98-dc18290ffe88.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pcwA2IetNTivVxDNYKmF/fNcmwNsIBxp87A1i9fW/gU=","crlite_enrolled":false,"id":"01be0b37-1a80-45ba-b618-581f8d1328e9","last_modified":1562025386617},{"schema":1562025380611,"derHash":"9dLSumgXp6mqDiE1S78Ob5XF4ofuiM8vJ58P/sTtrBU=","subjec
t":"CN=GlobalSign PersonalSign 1 CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTMwMQYDVQQDEypHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAxIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"e9535932b8ce7d0bcef6a5462309da7a327feffdbd8c14e093b83b0b4776caf3","size":1650,"filename":"iMfFHGybWVH4E_m1d7Ieopj7M_3ilnXGAP523KziGTA=.pem","location":"security-state-staging/intermediates/3ae8b875-d65b-4139-9c40-0ca7a4303014.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iMfFHGybWVH4E/m1d7Ieopj7M/3ilnXGAP523KziGTA=","crlite_enrolled":true,"id":"90b74927-605a-46c7-859e-2feb24cd258f","last_modified":1562025381350},{"schema":1562025379866,"derHash":"yyEJeZJAIJcDN64y2lw/mBqeBXFOwiuxw0If5pXlFXo=","subject":"CN=emSign ECC EV CS CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEhMB8GA1UEAxMYZW1TaWduIEVDQyBFViBDUyBDQSAtIEMz","whitelist":false,"a
ttachment":{"hash":"aa29641172fa5da3efadfcea19729a3a0972cd59a4c482c07d9a8f59a9c97b65","size":1122,"filename":"FTdvRLCxhXvzdqcyZyetYe4NaeD_whho2peMBnvy3_0=.pem","location":"security-state-staging/intermediates/29775bdf-351a-4b9a-b8b8-09ec37b40fe8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FTdvRLCxhXvzdqcyZyetYe4NaeD/whho2peMBnvy3/0=","crlite_enrolled":false,"id":"5caabcbd-5f17-4a1a-a3e9-8c20b1c1e213","last_modified":1562025380604},{"schema":1562025379117,"derHash":"d1MwBWSsZl1W/vW9r9mciKcxwh6tjjmWyzc+ea39v9w=","subject":"CN=SignSec High-Assurance OV Authority,OU=SSL Department,O=FBS Inc,L=Irvine,ST=CA,C=US","subjectDN":"MIGEMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExDzANBgNVBAcTBklydmluZTEQMA4GA1UEChMHRkJTIEluYzEXMBUGA1UECxMOU1NMIERlcGFydG1lbnQxLDAqBgNVBAMTI1NpZ25TZWMgSGlnaC1Bc3N1cmFuY2UgT1YgQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"2ee05e9e143fedbf63ea31b25f8a8a197a00c108b7da824449f25fbee96ca62d","size":2162,"filename":"-NJzGF6Gew8FPxWa8xRHx0tz0t0bJjNH38uDaSIgIqI=.
pem","location":"security-state-staging/intermediates/87e188d2-04c0-4db5-8bc2-d4a9c755752d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+NJzGF6Gew8FPxWa8xRHx0tz0t0bJjNH38uDaSIgIqI=","crlite_enrolled":false,"id":"f00ff66e-82b8-4bdc-9031-f7847d7239b7","last_modified":1562025379858},{"schema":1562025377619,"derHash":"wYlJ42Wf998isw7E2mtDQa+L7gDkF3p/hv9ZvEa2ukA=","subject":"CN=TrustAsia Technologies\\, Inc. DV SSL CA - G2,OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MIGJMQswCQYDVQQGEwJDTjElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxNDAyBgNVBAMTK1RydXN0QXNpYSBUZWNobm9sb2dpZXMsIEluYy4gRFYgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"e6cbbd0f9a61cf86b9fd7623d20287f4ac3e43cb278f02f2894ed63fec82069e","size":1703,"filename":"g64L97C6AazxVe3Bk6Wn6SXfqUejdhEXe57ga44NS3c=.pem","location":"security-state-staging/intermediates/2ff3c56d-10d9-4b33-a883-344736f96843.pem","mimetype":"application/x-p
em-file"},"pubKeyHash":"g64L97C6AazxVe3Bk6Wn6SXfqUejdhEXe57ga44NS3c=","crlite_enrolled":false,"id":"de1e3c3e-b52c-47c5-b13a-b6c6fe5ba8f9","last_modified":1562025378352},{"schema":1562025376125,"derHash":"lItxEa9C9UbVec/1ziveyCE03ZkUhCvdsMUocutgTjk=","subject":"CN=SSL.com SSL Intermediate CA ECC R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxKzApBgNVBAMMIlNTTC5jb20gU1NMIEludGVybWVkaWF0ZSBDQSBFQ0MgUjI=","whitelist":false,"attachment":{"hash":"29138ba36283c37133babfb45ad6da91b908056c4bc777229a9b6114c29bb9d7","size":1264,"filename":"zGgA4OU4DjJdvpRYUqbi5Vh2g9W5Oc_PgKihy9mkLsE=.pem","location":"security-state-staging/intermediates/583bc538-020a-40af-92a9-40c3653a90e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zGgA4OU4DjJdvpRYUqbi5Vh2g9W5Oc/PgKihy9mkLsE=","crlite_enrolled":true,"id":"a0acdb7c-e477-4e0c-8f54-b838e76497f5","last_modified":1562025376857},{"schema":1562025375368,"derH
ash":"O8UYVgQK1/9mg6qFoNNPnqaAzSPDfLigQjsPiaJEBbk=","subject":"CN=ACCVCA-120,OU=PKIACCV,O=ACCV,C=ES","subjectDN":"MEMxEzARBgNVBAMMCkFDQ1ZDQS0xMjAxEDAOBgNVBAsMB1BLSUFDQ1YxDTALBgNVBAoMBEFDQ1YxCzAJBgNVBAYTAkVT","whitelist":false,"attachment":{"hash":"5c48e95a58a4d10758544929296f57524a51140212f8479daff1c315fe338caf","size":2686,"filename":"XH3Wh5FuH9ZeZcCdLZM0VbsyQg3aeFV1wujvNEYNRQ8=.pem","location":"security-state-staging/intermediates/fd767b1f-850e-4779-ad1c-fcb1520983b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XH3Wh5FuH9ZeZcCdLZM0VbsyQg3aeFV1wujvNEYNRQ8=","crlite_enrolled":true,"id":"ea1bd9a0-1903-47bb-b8fb-ecb8955b6d38","last_modified":1562025376117},{"schema":1562025373104,"derHash":"+GhNKBK6mKUv6UUoxMsVI3ii1zqCiBCox7hSmHXGRnQ=","subject":"CN=Qualified Pseudonymous e-Szigno CA 2009,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGLMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xMDAuBgNVBAMMJ1F1YWxpZmllZCBQc2V1ZG9ueW1vdXMgZS1Temlnbm8gQ0EgMj
AwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odQ==","whitelist":false,"attachment":{"hash":"347542aaaf94389452ec241deb4e9b0659bd7e3fbfa082767360ebd2bdc7f554","size":1776,"filename":"Q-MM9a5IVpTJcjzEB7Wyr_KGLpH4y_1V4wt5h4NJjQc=.pem","location":"security-state-staging/intermediates/84a1e40e-aa66-419a-a6e0-b29ad9504f47.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Q+MM9a5IVpTJcjzEB7Wyr/KGLpH4y/1V4wt5h4NJjQc=","crlite_enrolled":false,"id":"2bda9927-7780-4c65-80cf-88e65081a941","last_modified":1562025373847},{"schema":1562025372359,"derHash":"xcX8r25L0K2VvYvr0a6/Fl0dv0SagS8Swatuq2zHkV4=","subject":"CN=KeyNet Systems RSA DV CA,O=KeyNet Systems LLC,L=Las Vegas,ST=Nevada,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMQ8wDQYDVQQIEwZOZXZhZGExEjAQBgNVBAcTCUxhcyBWZWdhczEbMBkGA1UEChMSS2V5TmV0IFN5c3RlbXMgTExDMSEwHwYDVQQDExhLZXlOZXQgU3lzdGVtcyBSU0EgRFYgQ0E=","whitelist":false,"attachment":{"hash":"fb85ea9df4ce4fb7563cf8ffdcd79a5d2a7b3e955ba403f48d67f4e38d6ad1b0","size":2138,"filename":"VTJmz2gV
hXT9nFPyCAVJ7HDpV4Rfyg-dNTgE3kbMShE=.pem","location":"security-state-staging/intermediates/a488d2fa-2e4f-4f72-aeaf-6d6787bb87bc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VTJmz2gVhXT9nFPyCAVJ7HDpV4Rfyg+dNTgE3kbMShE=","crlite_enrolled":false,"id":"7db20a5a-a12b-4255-adc3-47c77bc3c921","last_modified":1562025373097},{"schema":1562025370878,"derHash":"MdqiXRQtCLkOZA1LxQsknw/jl4XJjV5T4jMlnA+uk5g=","subject":"CN=Online e-Szigno SSL CA 2016,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHwxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEcMBoGA1UEYQwTVkFUSFUtMjM1ODQ0OTctMi00MTEkMCIGA1UEAwwbT25saW5lIGUtU3ppZ25vIFNTTCBDQSAyMDE2","whitelist":false,"attachment":{"hash":"a70c67eb66b82e4075e34248c87882934b44064980cd89b1e783b12797290157","size":2580,"filename":"x0t02qhpw-MVPvpI409gZ7KlO9C8TZ6yqNYTYIDmB98=.pem","location":"security-state-staging/intermediates/168326d2-eb32-4449-8388-890b59e9496f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x0t02qh
pw+MVPvpI409gZ7KlO9C8TZ6yqNYTYIDmB98=","crlite_enrolled":true,"id":"2f2ec8eb-d0d3-4ccb-bfe9-6771b302aa0e","last_modified":1562025371611},{"schema":1562025367867,"derHash":"EYJiwgiO4VKOINg20gcIVHB8DY+OgPvjlvns1LkUG1s=","subject":"CN=GlobalSign PersonalSign Partners CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTowOAYDVQQDEzFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiBQYXJ0bmVycyBDQSAtIFNIQTI1NiAtIEcy","whitelist":false,"attachment":{"hash":"a54cee1e50e97652bc6ebb1bf9a786f65fb993c0da0a2f5ca227f33c14524401","size":1577,"filename":"F0bWPekPIC9_nkgAJD7EPawdSSYBw9Bv3fNGdTH1Brg=.pem","location":"security-state-staging/intermediates/22cd08f8-f4e5-4acd-b7cf-81fafc4917c8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F0bWPekPIC9/nkgAJD7EPawdSSYBw9Bv3fNGdTH1Brg=","crlite_enrolled":true,"id":"dd412308-f307-4318-883b-63990c7dea29","last_modified":1562025368603},{"schema":1562025366345,"derHash":"s5nv5CwBoFvcOJeER6eOlQRneT+xHBtrQmxBmg
/HORE=","subject":"CN=BEKB - BCBE Issuing CA G2,OU=Issuing Certification Authority,O=Berner Kantonalbank AG,C=CH","subjectDN":"MHwxCzAJBgNVBAYTAkNIMR8wHQYDVQQKExZCZXJuZXIgS2FudG9uYWxiYW5rIEFHMSgwJgYDVQQLEx9Jc3N1aW5nIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIwIAYDVQQDExlCRUtCIC0gQkNCRSBJc3N1aW5nIENBIEcy","whitelist":false,"attachment":{"hash":"79f462ae20c0a610ce0ab12fc2fd9ca90da21f17887100f85355c97675d7b986","size":2434,"filename":"EEAYW3FK7bntpT70XsEpdNLi9KK69z7ix9M0UPRAGKc=.pem","location":"security-state-staging/intermediates/6bdb371b-20a1-42c8-86dd-bf77318e8c7a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EEAYW3FK7bntpT70XsEpdNLi9KK69z7ix9M0UPRAGKc=","crlite_enrolled":false,"id":"d0dbcc6e-4eba-4b25-a0b6-c8e83527e696","last_modified":1562025367118},{"schema":1562025365609,"derHash":"20djOcy/zJ5L0dbLYGyifwBnnh74pYHnI2MJudY//jc=","subject":"CN=CA de Certificados SSL EV,OU=BZ Ziurtagiri publikoa - Certificado publico EV,O=IZENPE S.A.,C=ES","subjectDN":"MIGBMQswCQYDVQQGEwJFUzEUMBIG
A1UECgwLSVpFTlBFIFMuQS4xODA2BgNVBAsML0JaIFppdXJ0YWdpcmkgcHVibGlrb2EgLSBDZXJ0aWZpY2FkbyBwdWJsaWNvIEVWMSIwIAYDVQQDDBlDQSBkZSBDZXJ0aWZpY2Fkb3MgU1NMIEVW","whitelist":false,"attachment":{"hash":"6fa0a579644b4f4e2520de6c187e3d213f16c5035b15ab14690651899dbc5ca9","size":2523,"filename":"BjaOlbGE-OH8-vlWV2hZE4pvFyfXCm2QvaM1twHCrYk=.pem","location":"security-state-staging/intermediates/2ea9cda5-c628-44e6-aa94-ad77c8ed451b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BjaOlbGE+OH8+vlWV2hZE4pvFyfXCm2QvaM1twHCrYk=","crlite_enrolled":true,"id":"e6c4396d-16a0-4773-a029-036b775926fd","last_modified":1562025366337},{"schema":1562025364848,"derHash":"DgJX8GBri+586ev0UCPKT9ohooMMBJxG7Sr66bKGB8I=","subject":"SERIALNUMBER=201401,CN=Government AA,C=BE","subjectDN":"MDYxCzAJBgNVBAYTAkJFMRYwFAYDVQQDEw1Hb3Zlcm5tZW50IEFBMQ8wDQYDVQQFEwYyMDE0MDE=","whitelist":false,"attachment":{"hash":"d4f0990c106c419b6d20070f298a396846b330490701c9ca58136a2a2e4202d5","size":2097,"filename":"zrqsI0LYhlXwV2fOwnlFX_c-r
936bwTFFC4u2Tdf-98=.pem","location":"security-state-staging/intermediates/d3d76b39-0f66-4732-a4a7-8ad736b104df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zrqsI0LYhlXwV2fOwnlFX/c+r936bwTFFC4u2Tdf+98=","crlite_enrolled":false,"id":"d9480fb9-51ff-4517-9cc8-92edd9a9ca6a","last_modified":1562025365601},{"schema":1562025364107,"derHash":"L6MV3BVMIT3AwW/RL6Ahupl08MmuFC4kvzrtFQp85vw=","subject":"CN=CA A8,O=DST,C=US","subjectDN":"MCsxCzAJBgNVBAYTAlVTMQwwCgYDVQQKEwNEU1QxDjAMBgNVBAMTBUNBIEE4","whitelist":false,"attachment":{"hash":"8ad25b6dba8e6a3e3eca82e8365e4be66a513461f80510fe2ad4afcf84a4b772","size":1114,"filename":"pMXM3on84rb3AQQVIojjeyZgOk0b95eNmbuYHSssTTQ=.pem","location":"security-state-staging/intermediates/ebd92230-8819-4a34-b485-619e524048de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pMXM3on84rb3AQQVIojjeyZgOk0b95eNmbuYHSssTTQ=","crlite_enrolled":false,"id":"4f938f2f-addb-409f-807b-7832954e7976","last_modified":1562025364841},{"schema":1562025360337,"derHa
sh":"QD4GKiZTBZETKFuvgKDUrkIshIyfePrQH8lLxbh/7xo=","subject":"CN=DigiCert SHA2 Extended Validation Server CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xNDAyBgNVBAMTK0RpZ2lDZXJ0IFNIQTIgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"a542625d5511b8e15e375edee06b6d656bea32f3a9e2fd08246b0b447f1dea45","size":1695,"filename":"RRM1dGqnDFsCJXBTHky16vi1obOlCgFFn_yOhI_y-ho=.pem","location":"security-state-staging/intermediates/15c21eca-d96f-43c9-94b1-fd4217f81575.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RRM1dGqnDFsCJXBTHky16vi1obOlCgFFn/yOhI/y+ho=","crlite_enrolled":true,"id":"ac18b0e8-cf04-4b62-9dde-6c8bb64149e8","last_modified":1562025361073},{"schema":1562025359563,"derHash":"w6qJpPn3DBiw/qXN/bNeSH2gLBCrbT9g3nmtTJSuKEw=","subject":"CN=GoGetSSL RSA OV CA,O=GoGetSSL,L=Riga,C=LV","subjectDN":"MEwxCzAJBgNVBAYTAkxWMQ0wCwYDVQQHEwRSaWdhMREwDwYDVQQKEwh
Hb0dldFNTTDEbMBkGA1UEAxMSR29HZXRTU0wgUlNBIE9WIENB","whitelist":false,"attachment":{"hash":"fd420f93d752f6ead1f685f98f4967e9d026eca00d116052e6b9968a41b636a5","size":2085,"filename":"hvk5zQ4_wW8fexIq-RQp19DbNh0mDLs7XtlPnYskzOc=.pem","location":"security-state-staging/intermediates/a9a7e749-c9b5-4bd8-9269-90fbfcbcdf38.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hvk5zQ4/wW8fexIq+RQp19DbNh0mDLs7XtlPnYskzOc=","crlite_enrolled":true,"id":"5aa56c83-a91d-4f50-92ea-251d98d465d1","last_modified":1562025360329},{"schema":1562025357329,"derHash":"rUeIOkjIajRp4yyXKzmj7hVYBNMr9T/wAgALyhHSldk=","subject":"CN=NetLock K\u00f6zjegyz\u0151i Eat. (Class A Legal) Tan\u00fas\u00edtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIG5MQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTFHMEUGA1UEAww+TmV0TG9jayBLw7Z6amV
neXrFkWkgRWF0LiAoQ2xhc3MgQSBMZWdhbCkgVGFuw7pzw610dsOhbnlraWFkw7M=","whitelist":false,"attachment":{"hash":"98303cceb1fcd3ad4d4b766a36ae284b0b6b241967294bab6fa6f499c160964b","size":2203,"filename":"EZuZGAg4_KSV7oRx6yGMpZK9lx1i1gH3UJCYV6YepzM=.pem","location":"security-state-staging/intermediates/00bf4a30-9a87-4885-a9ec-6c5c8d3d8a9a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EZuZGAg4/KSV7oRx6yGMpZK9lx1i1gH3UJCYV6YepzM=","crlite_enrolled":false,"id":"a705c138-e0f7-4581-9978-d55ab5621403","last_modified":1562025358063},{"schema":1562025355822,"derHash":"F2qui91d0Gp9vUKGLcFzvYOP/jATEDsJe5Zxw3umrhQ=","subject":"CN=Certum Extended Validation Code Signing CA SHA2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGUMQswCQYDVQQGEwJQTDEiMCAGA1UECgwZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECwweQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MTgwNgYDVQQDDC9DZXJ0dW0gRXh0ZW5kZWQgVmFsaWRhdGlvbiBDb2RlIFNpZ25pbmcgQ0EgU0hBMg==","whitelist":false,"attachment":{"
hash":"29d062f3902f4c9626af092bcc8aead3944e31783d2e8c305ab8d18685552360","size":1776,"filename":"KmFi5E38OAi9iIt74jct7iJHQ0ASbjOOwdK57OFDu8U=.pem","location":"security-state-staging/intermediates/93162f40-a74d-43ed-b57a-2be36de6b390.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KmFi5E38OAi9iIt74jct7iJHQ0ASbjOOwdK57OFDu8U=","crlite_enrolled":false,"id":"79034794-4993-4207-9a13-888fe3887be9","last_modified":1562025356564},{"schema":1562025354324,"derHash":"Uz/pfrRfztJASeQe/p2yVKXdnZDf1TyVEsYgftsh2Cw=","subject":"CN=Digidentity BV PKIoverheid Organisatie Persoon CA - G3,O=Digidentity B.V.,C=NL","subjectDN":"MIGCMQswCQYDVQQGEwJOTDEZMBcGA1UECgwQRGlnaWRlbnRpdHkgQi5WLjEXMBUGA1UEYQwOTlRSTkwtMjczMjI2MzExPzA9BgNVBAMMNkRpZ2lkZW50aXR5IEJWIFBLSW92ZXJoZWlkIE9yZ2FuaXNhdGllIFBlcnNvb24gQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"24f901fd76e07be5ca74ae59a1209d08e86fd511e3a76ea3542c5285750f7541","size":2601,"filename":"MjKBWfIUno5zpHZcoox_zRpAEZ7AAFwqwtLT51BhL-Y=.pem","location":"s
ecurity-state-staging/intermediates/0424da4d-ff44-499a-93e0-aa4ca3226dcb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MjKBWfIUno5zpHZcoox/zRpAEZ7AAFwqwtLT51BhL+Y=","crlite_enrolled":false,"id":"2a0dcf45-1337-46ef-a43e-971523626591","last_modified":1562025355065},{"schema":1562025352786,"derHash":"TFbKejwQ61h2Xg/8+ANcV8nzvbAUhi9nZ1bPeJGT8Q4=","subject":"CN=Sonavation IoT CA,OU=sonavation.com,O=Sonavation\\, Inc.,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBTb25hdmF0aW9uLCBJbmMuMRcwFQYDVQQLEw5zb25hdmF0aW9uLmNvbTEaMBgGA1UEAxMRU29uYXZhdGlvbiBJb1QgQ0E=","whitelist":false,"attachment":{"hash":"18ab135d1a2faf6a0b5c5c5d02d5b9070887cd3dd8d6c059c6956151b5af592a","size":1695,"filename":"vVP8FQS5b7BRuCncy0juht2sjHUUGqg1uuyGap7EMKI=.pem","location":"security-state-staging/intermediates/a3f91b25-e0b3-450f-8129-2c07431d1e59.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vVP8FQS5b7BRuCncy0juht2sjHUUGqg1uuyGap7EMKI=","crlite_enrolled":false,"id":"67cfe98d-cc06-44e2-84e3-
4aeab1b20424","last_modified":1562025353534},{"schema":1562025352049,"derHash":"BOy6j5K/90WMSl58aSYfx+LvUtWvVPvdkrFxQbvgZR8=","subject":"CN=QuoVadis Qualified Web ICA G1,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MHAxCzAJBgNVBAYTAk5MMRcwFQYDVQRhDA5OVFJOTC0zMDIzNzQ1OTEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xJjAkBgNVBAMMHVF1b1ZhZGlzIFF1YWxpZmllZCBXZWIgSUNBIEcx","whitelist":false,"attachment":{"hash":"af6f343ca612b312217ca30cee00b9efa009722998fd072580bde0f44d349962","size":2487,"filename":"EWJY2DWEXe27fystTVa-0cHUmGdi6igRAeyxOTlgFDY=.pem","location":"security-state-staging/intermediates/c5ad5e32-69bd-4133-b577-c545ff03e7de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EWJY2DWEXe27fystTVa+0cHUmGdi6igRAeyxOTlgFDY=","crlite_enrolled":true,"id":"e93aa26a-ab72-42de-ac2b-960617064295","last_modified":1562025352778},{"schema":1562025350573,"derHash":"Fp2vg8CHCriSfJnT/Ad03fNPuiiwK4gdzQtjO21xsro=","subject":"CN=Symantec Class 3 Extended Validation Code Signing CA,OU=Symantec Tr
ust Network,O=Symantec Corporation,C=US","subjectDN":"MIGMMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxPTA7BgNVBAMTNFN5bWFudGVjIENsYXNzIDMgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"2238ffd72ef99d7a932f6493708f5024fbb4da32672fc7a40feea3e027effdad","size":1938,"filename":"zktT0aLlN3tuuQeEOrKYTII7ybGAXJcvbxNyvqGo1dQ=.pem","location":"security-state-staging/intermediates/db401534-395d-4f9b-8dff-298f6e23b3a8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zktT0aLlN3tuuQeEOrKYTII7ybGAXJcvbxNyvqGo1dQ=","crlite_enrolled":false,"id":"eda0f897-de94-418d-a287-4a4be71422cd","last_modified":1562025351305},{"schema":1562025348314,"derHash":"0oAzSTpc/vQJwq6oWbnUL3azhlkVj47bs/tPilh6SJE=","subject":"CN=YourNet SSL for domain,O=FreeBit Co.\\,Ltd.,C=JP","subjectDN":"MEkxCzAJBgNVBAYTAkpQMRkwFwYDVQQKExBGcmVlQml0IENvLixMdGQuMR8wHQYDVQQDExZZb3VyTmV0IFNTTCBmb3IgZG9tYWlu","whitelist":false,"att
achment":{"hash":"0d491f1c30a69a0f0803421936a5ebe0b20f2c5ee70ff5705f7fbb8af76a895d","size":1492,"filename":"w0rNtXTKlMHqqX8us7SezMP-EqOqUzMJ5-x9IOvyYjs=.pem","location":"security-state-staging/intermediates/e9645405-ee30-48c7-b9cf-7be06e589c2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"w0rNtXTKlMHqqX8us7SezMP+EqOqUzMJ5+x9IOvyYjs=","crlite_enrolled":false,"id":"7e641533-b4be-442b-bb14-aced7bf58fdb","last_modified":1562025349057},{"schema":1562025347548,"derHash":"Ce1umR/DJz2P6jF9M5wCBBhhlzVJz6bhVY9BHxEhGqM=","subject":"SERIALNUMBER=07969287,CN=Go Daddy Secure Certification Authority,OU=http://certificates.godaddy.com/repository,O=GoDaddy.com\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIHKMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEaMBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xMzAxBgNVBAsTKmh0dHA6Ly9jZXJ0aWZpY2F0ZXMuZ29kYWRkeS5jb20vcmVwb3NpdG9yeTEwMC4GA1UEAxMnR28gRGFkZHkgU2VjdXJlIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MREwDwYDVQQFEwgwNzk2OTI4Nw==","white
list":false,"attachment":{"hash":"3336e31997f16a6b0c8e3b2ca5641682721662f5ee9f648956959daaf8b8ab8d","size":1748,"filename":"MrZLZnJ6IGPkBm87lYywqu5Xal7O_ZUzmbuIdHMdlYc=.pem","location":"security-state-staging/intermediates/9d9449dc-fc0a-41b3-8e29-e1185a4d4526.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MrZLZnJ6IGPkBm87lYywqu5Xal7O/ZUzmbuIdHMdlYc=","crlite_enrolled":true,"id":"dbfd9482-8c71-4e1a-b80a-37fbb3beee31","last_modified":1562025348307},{"schema":1562025346055,"derHash":"zfJ+6gw6VRI2kQj9dGNdLUz1DpTWyhmb7X3oGw0JozY=","subject":"CN=HARICA Qualified Legal Entities SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGXMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTExMC8GA1UEAwwoSEFSSUNBIFF1YWxpZmllZCBMZWdhbCBFbnRpdGllcyBTdWJDQSBSMg==","whitelist":false,"attachment":{"hash":"8a0bdbb8b96dee2791a488b9ce949588e7f3341a346c5b8cc52119c67b607
537","size":2605,"filename":"aP4JUCD4l8Gb5cKoQl0ai7usQVAOHgsjtOGEe__rD5I=.pem","location":"security-state-staging/intermediates/8dac66c0-21aa-435e-9911-91551650b659.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aP4JUCD4l8Gb5cKoQl0ai7usQVAOHgsjtOGEe//rD5I=","crlite_enrolled":false,"id":"ee438ee6-5459-4f0f-94e6-ccd27fac2655","last_modified":1562025346789},{"schema":1562025344551,"derHash":"WC3B2Xp5DvBP4lZ7HsiMJrA79umZN8rmoLUDl60gu/g=","subject":"CN=Symantec Class 3 SHA256 Code Signing CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEwMC4GA1UEAxMnU3ltYW50ZWMgQ2xhc3MgMyBTSEEyNTYgQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"82513c1a54e82926dd75722ae90d375351d27823d1ce05f32bf41a71f2d4218f","size":1914,"filename":"s8kzVzbZoCJLMAVvClIf4wDT-C0efzYgJqpBI0uFLh8=.pem","location":"security-state-staging/intermediates/aa02826e-48b4-4d27-b078-6
d7e1b49f241.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"s8kzVzbZoCJLMAVvClIf4wDT+C0efzYgJqpBI0uFLh8=","crlite_enrolled":true,"id":"969300bd-569a-4e2c-abfc-86ab18116743","last_modified":1562025345310},{"schema":1562025343069,"derHash":"nomO0D+kaWlpDa1zxylmdQRf+bWgEAo5m+uENamPUYU=","subject":"CN=GlobalSign RSA DV SSL CA 2018,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1HbG9iYWxTaWduIFJTQSBEViBTU0wgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"cca208f1e570c01764f76eb5afafc8222abf5a3e3cc7d91541a8791abf93a1dd","size":1609,"filename":"zf-i_fasW4ALe6PM9XFmRtKN_HFCpamlq2FK8z_Vuvs=.pem","location":"security-state-staging/intermediates/1cfc6d0a-1bef-47dd-8656-2dd4ebf008d4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zf+i/fasW4ALe6PM9XFmRtKN/HFCpamlq2FK8z/Vuvs=","crlite_enrolled":true,"id":"99897585-23f4-4f35-9dd3-4022885dd187","last_modified":1562025343805},{"schema":1562025342325,"derHash":"bs9ljM6
ospvmDIWQT0rdfMt5UM9YyXu/YNV86kmicD0=","subject":"CN=North Dakota Information Technology Department CA,OU=Orion Health Direct Secure Messaging,O=North Dakota Information Technology Department,C=US","subjectDN":"MIGxMQswCQYDVQQGEwJVUzE3MDUGA1UEChMuTm9ydGggRGFrb3RhIEluZm9ybWF0aW9uIFRlY2hub2xvZ3kgRGVwYXJ0bWVudDEtMCsGA1UECxMkT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nMTowOAYDVQQDEzFOb3J0aCBEYWtvdGEgSW5mb3JtYXRpb24gVGVjaG5vbG9neSBEZXBhcnRtZW50IENB","whitelist":false,"attachment":{"hash":"5f9cc0ce3c5d93329379d369ff1e0047e498fe1ffedc203f830e46ad0b803c71","size":2357,"filename":"e6QJ3uaxtddKrpwxGhdDIibY-LwCvEaQVA-SewcDHuw=.pem","location":"security-state-staging/intermediates/0decedaf-e893-43bf-8eb8-39ecf09e9125.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e6QJ3uaxtddKrpwxGhdDIibY+LwCvEaQVA+SewcDHuw=","crlite_enrolled":false,"id":"7e063cdc-6733-4883-9098-251e456f3adc","last_modified":1562025343058},{"schema":1562025339315,"derHash":"lqB17d0HKQVakyquJYcPfR9c+eOQGn3CzY6RbMbisQ
s=","subject":"SERIALNUMBER=201807,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODA3","whitelist":false,"attachment":{"hash":"7e4d7c6e3a95158f919f57bb217238677995616ec31959d9d20ad76ed10aa9a5","size":2333,"filename":"Via59R_X7HXx5CA2nQ7ywLT26zw0YGiYBhwVzUuDX_s=.pem","location":"security-state-staging/intermediates/9d6bef93-9690-4c8b-a6fb-c17565b52221.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Via59R/X7HXx5CA2nQ7ywLT26zw0YGiYBhwVzUuDX/s=","crlite_enrolled":false,"id":"35982461-e9d0-4e1e-aabe-25f6f5f51428","last_modified":1562025340065},{"schema":1562025337828,"derHash":"tc/msLKqhhoLNnwMBTlaU4rUk6nfARVEqO/EaH/bLMg=","subject":"CN=NQ-SK 2016,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MF8xCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRcwFQYDVQRhDA5OVFJFRS0xMDc0NzAxMzETMBEGA1UEAwwKTlEtU0sgMjAxNg==","whi
telist":false,"attachment":{"hash":"b9044318369543a1b181fe0448d08b456293cdbd66d3eb0cf081c7c872466eb7","size":2272,"filename":"-_v9mzheDZaz7Hjj0hmoJAfy8SckawyPQ6Kx_01hio4=.pem","location":"security-state-staging/intermediates/376ae8a1-60ca-43e7-b0fb-7acb9896ba24.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+/v9mzheDZaz7Hjj0hmoJAfy8SckawyPQ6Kx/01hio4=","crlite_enrolled":false,"id":"b2430e92-ecf6-470a-82d0-ee268da554fa","last_modified":1562025338559},{"schema":1562025337064,"derHash":"qlNFLViQaevZFCODT+woinisxqe51NDxQ9jJLguD2Ok=","subject":"CN=CERTSIGN FOR BANKING QUALIFIED DS PRODUCTION CA V3,OU=Certificat de productie Production certificate,O=certSIGN,C=RO","subjectDN":"MIGWMQswCQYDVQQGEwJSTzERMA8GA1UECgwIY2VydFNJR04xNzA1BgNVBAsMLkNlcnRpZmljYXQgZGUgcHJvZHVjdGllIFByb2R1Y3Rpb24gY2VydGlmaWNhdGUxOzA5BgNVBAMMMkNFUlRTSUdOIEZPUiBCQU5LSU5HIFFVQUxJRklFRCBEUyBQUk9EVUNUSU9OIENBIFYz","whitelist":false,"attachment":{"hash":"eaa0de7b4753356246d652e36cc56d60e8a923001719aa842e83a1fbfb036c
a1","size":1683,"filename":"lgaybEWhquJ9CUpEl0ci8n7TT_mQu7ls6VLD9gC0u2g=.pem","location":"security-state-staging/intermediates/b16e7431-1a00-4dad-9c47-46be383bcfe4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lgaybEWhquJ9CUpEl0ci8n7TT/mQu7ls6VLD9gC0u2g=","crlite_enrolled":false,"id":"515bc65f-fec1-4f6b-98db-30c867438ca2","last_modified":1562025337821},{"schema":1562025334820,"derHash":"ZOshqAA2VUiOliDtwrIXy81VklPEU+c15VJwZpXOGHg=","subject":"CN=TrustID HID Enterprise CA 1,O=HID Global,C=US","subjectDN":"MEgxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpISUQgR2xvYmFsMSQwIgYDVQQDExtUcnVzdElEIEhJRCBFbnRlcnByaXNlIENBIDE=","whitelist":false,"attachment":{"hash":"3675fee67c57748a850ca3d25b38e888d086b6e291f15e60fc5955aae4ebdbd8","size":2858,"filename":"cpBDVSnEXaonbErjbbQ5nxA8Mek-w3LsQ6tRL149lGg=.pem","location":"security-state-staging/intermediates/ac3b37a3-2818-4aa7-8d6c-957f5d5ddfd4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cpBDVSnEXaonbErjbbQ5nxA8Mek+w3LsQ6tRL149lGg=","crlite
_enrolled":false,"id":"536b01cb-8380-4de7-9d91-20f761c15500","last_modified":1562025335558},{"schema":1562025334072,"derHash":"S3M04diZmCK6+o/2iIElOJsYpOWrJv+mJMf2j9yB8Ms=","subject":"CN=GlobalSign CloudSSL CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIENsb3VkU1NMIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"2d52ef3ad1bf79d364b9204631f8b1fedcd6e4e13aadf92c4b6af52d751e96dd","size":1634,"filename":"-VZJxHgrOOiVyUxgMRbfoo-GIWrMKd4aellBBHtBcKg=.pem","location":"security-state-staging/intermediates/67867c84-32d8-4600-aa2f-a51493938ab0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+VZJxHgrOOiVyUxgMRbfoo+GIWrMKd4aellBBHtBcKg=","crlite_enrolled":true,"id":"8f1617bd-0e32-4828-b630-2a3c510a24ef","last_modified":1562025334812},{"schema":1562025333317,"derHash":"wSP1r6zJ+QloCYUDVeW/eMqTdzSBEbUWepZN3twETek=","subject":"CN=TERENA Personal CA 3 G3,O=TERENA,L=Amsterdam,ST=Noor
d-Holland,C=NL","subjectDN":"MGwxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEgMB4GA1UEAxMXVEVSRU5BIFBlcnNvbmFsIENBIDMgRzM=","whitelist":false,"attachment":{"hash":"d97fd351c70f4186ab1a1b6d07d4d7cd23c138d05ff6501f8793a7a457d714a0","size":1561,"filename":"YT82u8O68j48N4ShltJlLRPwW9t8uCpdZikMmWEu9ro=.pem","location":"security-state-staging/intermediates/465904a4-0fb5-43d2-a5c9-9857ba6ecc74.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YT82u8O68j48N4ShltJlLRPwW9t8uCpdZikMmWEu9ro=","crlite_enrolled":false,"id":"834c434b-e007-4e04-818f-bd61ceb2e53a","last_modified":1562025334065},{"schema":1562025331082,"derHash":"j8HBdj9jF6sJBhxaeNTp1nAB7+Cnn+QFc7BIwG6yFlg=","subject":"CN=Thawte Class 3 RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGFRoYXd0ZSBDbGFzcyAzIFJTQSBDQSBHMQ==","whitelist":false,"attachment":{"hash":
"81ef8a4772629958118da223f884373db6f97ecd96c968ed91322150dc9cf583","size":1654,"filename":"YYguLfuEMtW11fy4mtQV_FlyFQDLr4EfWdDyGPSae9A=.pem","location":"security-state-staging/intermediates/47b2de9a-7c71-4e03-9275-544fee336f55.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YYguLfuEMtW11fy4mtQV/FlyFQDLr4EfWdDyGPSae9A=","crlite_enrolled":false,"id":"1e02fcc7-2993-47ca-940f-86653e3cecbe","last_modified":1562025331813},{"schema":1562025330338,"derHash":"fo+RQRm7EJDWIEkI5a4fQL4kwUkc19XPtqk2GMvAD9k=","subject":"CN=GlobalSign Partners TSA CA for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"MFYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSwwKgYDVQQDEyNHbG9iYWxTaWduIFBhcnRuZXJzIFRTQSBDQSBmb3IgQUFUTA==","whitelist":false,"attachment":{"hash":"ac692c130dd61ad078ca128601e56417964e4f3c303740c7446aef653a0bf756","size":2036,"filename":"H92PKGXpuffyCKbwBGAY4e4XY990BbquJeNZ072shzw=.pem","location":"security-state-staging/intermediates/79bbb0c5-7608-426c-a235-c0262afa84a4.pem","mimety
pe":"application/x-pem-file"},"pubKeyHash":"H92PKGXpuffyCKbwBGAY4e4XY990BbquJeNZ072shzw=","crlite_enrolled":false,"id":"0471bdec-38ad-4b8d-86bd-3f137555792b","last_modified":1562025331074},{"schema":1562025329599,"derHash":"9AUHfHF0cDuXgceVRKe+mUJjhU0VFz5hqNGaKM96SrE=","subject":"CN=TERENA eScience Personal CA,O=TERENA,C=NL","subjectDN":"MEQxCzAJBgNVBAYTAk5MMQ8wDQYDVQQKEwZURVJFTkExJDAiBgNVBAMTG1RFUkVOQSBlU2NpZW5jZSBQZXJzb25hbCBDQQ==","whitelist":false,"attachment":{"hash":"0ff25cb8ace98409f31247ecb59b650b17e31d145ec2485517081e2ac1dfa4fb","size":1743,"filename":"rfAIoQEXwIYxHVXIaa2COA8XlDmE8FsumvzEWCU7MfU=.pem","location":"security-state-staging/intermediates/8dd56ca7-dc47-487f-bb0a-fde60bbeab18.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rfAIoQEXwIYxHVXIaa2COA8XlDmE8FsumvzEWCU7MfU=","crlite_enrolled":false,"id":"707787e0-3c77-41ba-a894-946cb1999932","last_modified":1562025330331},{"schema":1562025328112,"derHash":"ZuricJtUzdFpMXexMy/wNs3Q9yPbMDntMRVVpsv1/z4=","subject":"
SERIALNUMBER=A82743287,CN=Camerfirma Corporate Server II - 2015,OU=AC CAMERFIRMA,O=AC Camerfirma S.A.,L=Madrid (see current address at https://www.camerfirma.com/address),C=ES","subjectDN":"MIHTMQswCQYDVQQGEwJFUzEWMBQGA1UECwwNQUMgQ0FNRVJGSVJNQTEbMBkGA1UECgwSQUMgQ2FtZXJmaXJtYSBTLkEuMRIwEAYDVQQFEwlBODI3NDMyODcxSzBJBgNVBAcMQk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCBodHRwczovL3d3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTEuMCwGA1UEAwwlQ2FtZXJmaXJtYSBDb3Jwb3JhdGUgU2VydmVyIElJIC0gMjAxNQ==","whitelist":false,"attachment":{"hash":"df2d8a40bc28188df68d3c6579cec37ec903635f58cc869dcf759dfef7fa0eaf","size":3031,"filename":"m6nepCtxe9G9HhpXqQbCc7VSQX41KwYqD6LqFDqntKk=.pem","location":"security-state-staging/intermediates/4e0e9856-a536-495f-8223-f662f7a6e556.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m6nepCtxe9G9HhpXqQbCc7VSQX41KwYqD6LqFDqntKk=","crlite_enrolled":true,"id":"f3d9c664-5684-4d40-b74b-f45fc70887d8","last_modified":1562025328852},{"schema":1562025327350,"derHash":"sayM+xgbnJNU4Xdf
y9/P54mMXMmhfXYxW1fBEu7lUjQ=","subject":"CN=Encryption Everywhere DV TLS CA - G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLTArBgNVBAMTJEVuY3J5cHRpb24gRXZlcnl3aGVyZSBEViBUTFMgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"c75d6fc5179d7bb7baea5ffe48d9fda3810fdcb1340a3ca83e1e7b97a4af6478","size":1678,"filename":"gxeKFFaZ2HFJIsTdTjEl6nVo3ckTCX-qzRMqb9Xoa1w=.pem","location":"security-state-staging/intermediates/36b3d43a-f83c-40a5-af78-851b6283fd64.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gxeKFFaZ2HFJIsTdTjEl6nVo3ckTCX+qzRMqb9Xoa1w=","crlite_enrolled":false,"id":"0d9d974c-bea1-4d7f-9958-e5dd76763236","last_modified":1562025328104},{"schema":1562025326608,"derHash":"AB14v0Ck2vlM1WS0IZRVg3sAVtMhayu4/3kZZrQbE24=","subject":"CN=Intel External Issuing CA 7A,O=Intel Corporation,L=Santa Clara,ST=CA,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEUMBIGA1UEBxMLU2FudG
EgQ2xhcmExGjAYBgNVBAoTEUludGVsIENvcnBvcmF0aW9uMSUwIwYDVQQDExxJbnRlbCBFeHRlcm5hbCBJc3N1aW5nIENBIDdB","whitelist":false,"attachment":{"hash":"d813527cd54737fcfb5de10708464c3c058ae6b88a50b01c6d0f86657fd1e6ff","size":2588,"filename":"F1nC3g4x7xWb67o-xWeC3pUpqn2PqsssGrUzVFcrPlM=.pem","location":"security-state-staging/intermediates/5b73c6e2-ee41-4b2d-9a29-be9bf1eb744f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F1nC3g4x7xWb67o+xWeC3pUpqn2PqsssGrUzVFcrPlM=","crlite_enrolled":false,"id":"d1150731-818c-4e50-9788-d789004759e5","last_modified":1562025327343},{"schema":1562025325869,"derHash":"hgm9zvleSk1CZJe1zY7UsAHJU6XBRHHKr1j7ZQ34q/A=","subject":"CN=Spirit AeroSystems SHA256 CA - G2,O=Spirit AeroSystems\\, Inc.,ST=KS,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJLUzEhMB8GA1UEChMYU3Bpcml0IEFlcm9TeXN0ZW1zLCBJbmMuMSowKAYDVQQDEyFTcGlyaXQgQWVyb1N5c3RlbXMgU0hBMjU2IENBIC0gRzI=","whitelist":false,"attachment":{"hash":"2102b7e34260128aa8eddddcb68a23f8f43ef3852bbd09e6ddf31829ea3f4
e94","size":1857,"filename":"-eZm38gBRNSIDBYrgLDj3YjRs2ABUSD5_ssqnCDgYlM=.pem","location":"security-state-staging/intermediates/45b38ccd-17b9-415e-a888-2b1631eceec9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+eZm38gBRNSIDBYrgLDj3YjRs2ABUSD5/ssqnCDgYlM=","crlite_enrolled":false,"id":"d0de06c4-5ab3-460f-8fcb-23b27889568f","last_modified":1562025326601},{"schema":1562025322865,"derHash":"CbwbE3wDEjnveIZz6U6xf18+yrB9Otv7SF51q/qvO5o=","subject":"CN=GlobalSign Domain Validation CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"4827709bafd08a7e0584c4d4411937345e9fa8505ca1a15d2c4483e729c804a6","size":1626,"filename":"1kflsxIeB1bcxW1C61yFNdNQjO_xuF0ORdL9EtMe-Rs=.pem","location":"security-state-staging/intermediates/fdb62a70-c092-4d32-81b3-d72418696f57.pem","mimetype":"application/x-pem-file"},"pubKeyHas
h":"1kflsxIeB1bcxW1C61yFNdNQjO/xuF0ORdL9EtMe+Rs=","crlite_enrolled":true,"id":"1c345873-cf2f-48aa-a6a3-93a5661939df","last_modified":1562025323597},{"schema":1562025322116,"derHash":"C8OTcHISi55bzDosak5VMe/T2W0wLByKDfVQ/geKCDo=","subject":"SERIALNUMBER=201915,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTE1","whitelist":false,"attachment":{"hash":"3b8b7b4968d2d4a4042e69f27592e569862bdc2f143e41ebbe1a0c11736d81f0","size":2333,"filename":"kM1AzUSn_oORQFEI2x5nOsi3ZlZJxf6FjYmxYSu74Co=.pem","location":"security-state-staging/intermediates/66b03c59-a25d-40f2-8d5f-dae76d3270d0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kM1AzUSn/oORQFEI2x5nOsi3ZlZJxf6FjYmxYSu74Co=","crlite_enrolled":false,"id":"5e3b9614-e826-466b-8b48-3c5f863463b1","last_modified":1562025322857},{"schema":1562025319082,"derHash":"Lkph5SOOVW6M7bzAtPPeIXgkVmSgvhl
bOFW0yF297v8=","subject":"CN=USERTrust RSA Organization Validation Secure Server CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGZMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE/MD0GA1UEAxM2VVNFUlRydXN0IFJTQSBPcmdhbml6YXRpb24gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"261660739939209c93938fbc278a1e17a758bea711e15624adbd1203f98c95d1","size":2178,"filename":"qmZOfgEUaNPh43JyVsa1dSCvAFxPKkxkytll6bY4_4E=.pem","location":"security-state-staging/intermediates/00deca06-8d9c-4815-b9cd-3365ade55c61.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qmZOfgEUaNPh43JyVsa1dSCvAFxPKkxkytll6bY4/4E=","crlite_enrolled":true,"id":"f52a51f2-1d8f-4dee-b214-c65760473054","last_modified":1562025319823},{"schema":1562025318342,"derHash":"GJWNA6+0CWh6G8Jjhg0Nc1oloASrYODw5F1jM1h0N64=","subject":"CN=GoGetSSL Business Validation CA SHA2,OU=GoGetSSL Certification Authorit
y,O=EnVers Group SIA,C=LV","subjectDN":"MIGCMQswCQYDVQQGEwJMVjEZMBcGA1UECgwQRW5WZXJzIEdyb3VwIFNJQTEpMCcGA1UECwwgR29HZXRTU0wgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxLTArBgNVBAMMJEdvR2V0U1NMIEJ1c2luZXNzIFZhbGlkYXRpb24gQ0EgU0hBMg==","whitelist":false,"attachment":{"hash":"bbda288904603261a16251c2a9b280cba6dabc71d51dcff1d3c4f6b0447c1a3b","size":1752,"filename":"WhJb1Rhj6-UXftVUkeVV5CiOZwfWF4gdskEVvyWpNxM=.pem","location":"security-state-staging/intermediates/1ce075cb-f977-4ccb-b47f-6aedf5a3162b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WhJb1Rhj6+UXftVUkeVV5CiOZwfWF4gdskEVvyWpNxM=","crlite_enrolled":false,"id":"bf5482ce-06f3-4976-a653-c8d2aced7246","last_modified":1562025319075},{"schema":1562025317595,"derHash":"lzpBJ2/9AeAnoqrUnjTDeEbT6Xb/amILZxLjODIEGqY=","subject":"CN=Go Daddy Secure Certificate Authority - G2,OU=http://certs.godaddy.com/repository/,O=GoDaddy.com\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIG0MQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2Nvd
HRzZGFsZTEaMBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xLTArBgNVBAsTJGh0dHA6Ly9jZXJ0cy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5LzEzMDEGA1UEAxMqR28gRGFkZHkgU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcy","whitelist":false,"attachment":{"hash":"a111efc20329e87b541cfc3e7f526fc54bb24624fddf210f4347b9fadfb1ab6b","size":1727,"filename":"8Rw90Ej3Ttt8RRkrg-WYDS9n7IS03bk5bjP_UXPtaY8=.pem","location":"security-state-staging/intermediates/a2a04dfe-6201-4d0a-b8cf-80d2975bfb51.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8Rw90Ej3Ttt8RRkrg+WYDS9n7IS03bk5bjP/UXPtaY8=","crlite_enrolled":true,"id":"549c92e2-3738-4c8c-ae37-407e4e6158ce","last_modified":1562025318334},{"schema":1562025314617,"derHash":"eZ4gVk1FSE36DyjtcmA3/wcNZsUd6OI0MoTeyrD8mZE=","subject":"CN=Network Solutions EV Server CA 2,O=Network Solutions L.L.C.,L=Herndon,ST=VA,C=US","subjectDN":"MHoxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJWQTEQMA4GA1UEBxMHSGVybmRvbjEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMSkwJwYDVQQDEyBOZXR3b3JrIFNvbHV0aW9ucyBFViBTZXJ2ZXIg
Q0EgMg==","whitelist":false,"attachment":{"hash":"e31f1427ec6db92529d090d990064b3f8fd08dc7b1f02e0b68d1ef7ff9e4505c","size":1857,"filename":"uY4iOhjFT5ZJncBPVcvV4Vp7MzDa5mJyEdEtzpD6i28=.pem","location":"security-state-staging/intermediates/397f2aa1-bd87-47da-b308-5ddefa3c9e3c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uY4iOhjFT5ZJncBPVcvV4Vp7MzDa5mJyEdEtzpD6i28=","crlite_enrolled":true,"id":"3b08d1c1-eaa3-447e-a837-aa1abd1be8a4","last_modified":1562025315352},{"schema":1562025313862,"derHash":"tf1vgAM09WUDawmZ+DELWwvXJoOV2LJnAFaXr3MBxeg=","subject":"CN=AffirmTrust Certificate Authority - OV1,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGCMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMDAuBgNVBAMTJ0FmZmlybVRydXN0IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIE9WMQ==","whitelist":false,"attachment":{"hash":"0444cfdbccd513e2a46e37f1768b21669333660cb0c9e2802b9e5041b414be02","size":1674,"filename":"RM5
J-l4IeDRKjL4ZuWGG2Jt3Wae0v4pWKttrQv-DsGM=.pem","location":"security-state-staging/intermediates/eb61a73a-5fdb-41c0-848b-e07b9e3a24e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RM5J+l4IeDRKjL4ZuWGG2Jt3Wae0v4pWKttrQv+DsGM=","crlite_enrolled":true,"id":"be2ceaf1-8ba0-4cab-bd2a-0cdb7f118523","last_modified":1562025314608},{"schema":1562025313115,"derHash":"x/VG8Mdsmg2pmS6YhOYki3yiu2reg4vXoDqMQe4qMGQ=","subject":"CN=WoSign OV SSL CA,O=WoSign CA Limited,C=CN","subjectDN":"MEQxCzAJBgNVBAYTAkNOMRowGAYDVQQKDBFXb1NpZ24gQ0EgTGltaXRlZDEZMBcGA1UEAwwQV29TaWduIE9WIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"048dba35914e23e206772fb60d80b4ca80d87cf337af50dd6dc2287381e3e76a","size":1691,"filename":"MZKD2c60FHEBoj-uZNlegylIGvCafu0tBZ2eUHao0-0=.pem","location":"security-state-staging/intermediates/b60c5c46-1be6-40b6-8d56-cd82c562287f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MZKD2c60FHEBoj+uZNlegylIGvCafu0tBZ2eUHao0+0=","crlite_enrolled":true,"id":"2a6ed91a-06ad-49ae
-94d2-9fd509326fda","last_modified":1562025313853},{"schema":1562025310863,"derHash":"b1h9G+4vFhxPwuZiBT35z/7+URRM6SfTFD5KTDSLhWc=","subject":"CN=GENIOUS ECC Organization Validation Secure Server CA,O=Genious Communications,L=Marrakech,ST=Marrakech,C=MA","subjectDN":"MIGVMQswCQYDVQQGEwJNQTESMBAGA1UECBMJTWFycmFrZWNoMRIwEAYDVQQHEwlNYXJyYWtlY2gxHzAdBgNVBAoTFkdlbmlvdXMgQ29tbXVuaWNhdGlvbnMxPTA7BgNVBAMTNEdFTklPVVMgRUNDIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"a15ce7808aa99574fda608941c7b79aeebab97da5fdca6096ca97147951f3fab","size":1345,"filename":"9JEABMnN_SwMIz1lP1QSJXAr9u9DfOC_51G3sB_hgvg=.pem","location":"security-state-staging/intermediates/11e95b57-aa8c-455b-bf47-2ce89665585e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9JEABMnN/SwMIz1lP1QSJXAr9u9DfOC/51G3sB/hgvg=","crlite_enrolled":false,"id":"eba108e8-2131-4af1-aa97-148aa27d0bbd","last_modified":1562025311599},{"schema":1562025307101,"derHash":"jDhVsKoIU/ZTfHcnrEFqJ
HYcioE54n2B4Ssz67dzhdg=","subject":"SERIALNUMBER=201908,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTA4","whitelist":false,"attachment":{"hash":"cccaf9299dbfe420f3015ef4d158c1965fe160e99937c153a0290d2f9bc45873","size":2333,"filename":"Yuh8cRCxqhDPCJCNLDTVXWmhSaBY8Jl6YlQFhDVMYrU=.pem","location":"security-state-staging/intermediates/261862b1-2bce-41b6-ad40-c999c0dfa834.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Yuh8cRCxqhDPCJCNLDTVXWmhSaBY8Jl6YlQFhDVMYrU=","crlite_enrolled":false,"id":"2f9d0c1d-b80d-43af-a476-95278b1e87b8","last_modified":1562025307842},{"schema":1562025305606,"derHash":"3QwL6c4JBB8Wty1rPWKluPU4Qn7BpC2DMa8bWd/mlEY=","subject":"CN=AffirmTrust Networking Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=AffirmTrust,C=US","subjectDN":"MIGKMQswCQYDVQQGEwJVUzEUMBIGA1UECgwLQWZmaXJtVHJ1c3QxLTAr
BgNVBAsMJGh0dHA6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291cmNlczE2MDQGA1UEAwwtQWZmaXJtVHJ1c3QgTmV0d29ya2luZyBFeHRlbmRlZCBWYWxpZGF0aW9uIENB","whitelist":false,"attachment":{"hash":"c7b2667e5d9802f3d9c42a37d05f6c68fba7119a56843956b872ec74a1115970","size":1581,"filename":"DJdCClyMUYAHIPZVCPPJWty8pFkigRmSqua8RS8UJpk=.pem","location":"security-state-staging/intermediates/9050ab70-b46f-45d7-90b4-edff1e8b4d24.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DJdCClyMUYAHIPZVCPPJWty8pFkigRmSqua8RS8UJpk=","crlite_enrolled":false,"id":"4db21147-aaec-40a6-b50d-3790bbcfd4f4","last_modified":1562025306340},{"schema":1562025304867,"derHash":"450+2Iblo68mudarYIAovG+8UuWZyzI9p+nndbUwM3w=","subject":"CN=Amazon,OU=Server CA 0A,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAwQTEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"a68a630350b255e6f2fc6123fbd732917d5259386f485d3136d80a777271ef2a","size":1666,"filename":"tYU57KoTkhzNuA0400h1_e
ZHHFoVnZvu8vpvmZg71hE=.pem","location":"security-state-staging/intermediates/ad29234d-055c-47ec-b5fb-78bb146b74e2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tYU57KoTkhzNuA0400h1/eZHHFoVnZvu8vpvmZg71hE=","crlite_enrolled":false,"id":"e243a4ba-3208-4938-97f4-f4fe00c73c5e","last_modified":1562025305598},{"schema":1562025303361,"derHash":"43EPDGZ+WJ3o5K6jfnAa+vP7tidXYub+o/1mKVRCedY=","subject":"CN=Symantec Class 3 Organizational CA - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEwMC4GA1UEAxMnU3ltYW50ZWMgQ2xhc3MgMyBPcmdhbml6YXRpb25hbCBDQSAtIEc0","whitelist":false,"attachment":{"hash":"a14b89bb2062f598bd836c642489dc372a04cf0bc46001ed6613adf12484de00","size":1849,"filename":"uNzZ9PuqZ750aAgYLpKabu6MjXW-QU_Qg4jjBcbvEik=.pem","location":"security-state-staging/intermediates/0eafa101-533d-4a28-a0f1-4d0fe9c795a3.pem","mimetype":"application/x-pem-file
"},"pubKeyHash":"uNzZ9PuqZ750aAgYLpKabu6MjXW+QU/Qg4jjBcbvEik=","crlite_enrolled":false,"id":"4ad1dc4a-0a9b-4057-867a-1d1aaef8e793","last_modified":1562025304109},{"schema":1562025302614,"derHash":"3Bqx78ogg/4eptDT3Ep4edXMbT2j8KgelMhpnTqnyw4=","subject":"CN=Institute of Accelerating Systems and Applications Client CA R1,O=Institute of Accelerating Systems and Applications,L=Athens,C=GR","subjectDN":"MIGlMQswCQYDVQQGEwJHUjEPMA0GA1UEBxMGQXRoZW5zMTswOQYDVQQKEzJJbnN0aXR1dGUgb2YgQWNjZWxlcmF0aW5nIFN5c3RlbXMgYW5kIEFwcGxpY2F0aW9uczFIMEYGA1UEAxM/SW5zdGl0dXRlIG9mIEFjY2VsZXJhdGluZyBTeXN0ZW1zIGFuZCBBcHBsaWNhdGlvbnMgQ2xpZW50IENBIFIx","whitelist":false,"attachment":{"hash":"3c6264fd3d686bf2adb8496b232e035774c7efe61bb19a690633eaeb3995552c","size":2621,"filename":"IhXE146qQEkPE3NDCXQL_XCLpRiVTVuOAnKEHxg0A3w=.pem","location":"security-state-staging/intermediates/a6fe91af-3457-4d40-97b4-e7ac3e0bf68a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IhXE146qQEkPE3NDCXQL/XCLpRiVTVuOAnKEHxg0A3w=","
crlite_enrolled":false,"id":"c10c0ae5-e174-4d1e-8333-c111ab28da33","last_modified":1562025303351},{"schema":1562025298880,"derHash":"rftaDyWTCRIrzR8DAmAHmIJRclX1s40z+Nq5c8tg4LY=","subject":"CN=FujiSSL ECC Domain Secure Site CA,O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN":"MHQxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzETMBEGA1UEBxMKU2hpYnV5YS1rdTEUMBIGA1UEChMLTmlqaW1vIEsuSy4xKjAoBgNVBAMTIUZ1amlTU0wgRUNDIERvbWFpbiBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"a956c6214bc00a3983c1ec59a5c5b4fef7452a3a94862da4f2b186ac1f059736","size":1297,"filename":"2rgbkrRXysWSf_k1kOj6EDKWKuKW-YVR38ExFhGbHac=.pem","location":"security-state-staging/intermediates/bfdd4e7d-8b03-4761-b3d1-ab4103ab8df3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2rgbkrRXysWSf/k1kOj6EDKWKuKW+YVR38ExFhGbHac=","crlite_enrolled":false,"id":"f1917f9a-0c69-4510-a86a-08ce3db84cf9","last_modified":1562025299610},{"schema":1562025295880,"derHash":"6QSgV9g5vL5jEJK0IV3YzE+ISbqHtRqvJyi3HmSs51E=","subj
ect":"CN=DREAMHOST SECURE EMAIL CA,O=DREAMHOST CERTIFICATION AUTHORITY,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMSowKAYDVQQKEyFEUkVBTUhPU1QgQ0VSVElGSUNBVElPTiBBVVRIT1JJVFkxIjAgBgNVBAMTGURSRUFNSE9TVCBTRUNVUkUgRU1BSUwgQ0E=","whitelist":false,"attachment":{"hash":"bd46e6b3068ecccbabe7da0273be8a3d35a413fdfcca05bc18847e7402db16fa","size":1756,"filename":"63NWnCfq1JadpotgYBS_ORAIQ4nhhoHBm9FjkLxi1nA=.pem","location":"security-state-staging/intermediates/f2757c69-e3af-4940-ab12-328e5089e118.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"63NWnCfq1JadpotgYBS/ORAIQ4nhhoHBm9FjkLxi1nA=","crlite_enrolled":false,"id":"1c2b0263-fa38-44fa-be13-95992ca973b2","last_modified":1562025296626},{"schema":1562025295127,"derHash":"7WeTcIOwc58wI5b5dK+0G/umSEc5Z3gLLFm4isQSGtQ=","subject":"CN=Volusion\\, Inc. DV SSL CA - G4,OU=Domain Validated SSL,O=Volusion\\, Inc.,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5Wb2x1c2lvbiwgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxJjAkBgNVBAMTHVZvbHVzaW9uL
CBJbmMuIERWIFNTTCBDQSAtIEc0","whitelist":false,"attachment":{"hash":"2345f19d6cfb45db379df441b2cdc6a5cfc3cb08f620d38c40c9b1efd1aae341","size":1642,"filename":"2vpFY_GsHi5tYScV5TkSw7SuQkJ1Qtyos25uI1C0Cok=.pem","location":"security-state-staging/intermediates/b12a2c62-5974-4e93-b3de-d12852b5fe03.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2vpFY/GsHi5tYScV5TkSw7SuQkJ1Qtyos25uI1C0Cok=","crlite_enrolled":false,"id":"d468c55f-58fb-4439-a16d-69f3fafd2500","last_modified":1562025295872},{"schema":1562025292866,"derHash":"dK/O7OBzFYe0XDzae8IQ/JF1AqMjQB6TLoZbw9eX56s=","subject":"CN=Atos TrustedRoot Issuing CA for WWE 2015,O=Atos,C=DE","subjectDN":"ME8xMTAvBgNVBAMMKEF0b3MgVHJ1c3RlZFJvb3QgSXNzdWluZyBDQSBmb3IgV1dFIDIwMTUxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"0c5d1ea52b767af0853d6af41c73f1d188589a66e9c919e2858bc429241f4ffc","size":1573,"filename":"IA32tKC4ljNAfmi44SQR9xeWWNipPKjmUmjtzoT6pkY=.pem","location":"security-state-staging/intermediates/
345d4a3f-ed22-4e47-af57-c4da221aa0cd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IA32tKC4ljNAfmi44SQR9xeWWNipPKjmUmjtzoT6pkY=","crlite_enrolled":false,"id":"69330f6b-0bbf-4528-a402-c89b6262cce4","last_modified":1562025293606},{"schema":1562025292126,"derHash":"K/lNoe25VOkofJ5F4p/2ptKvuPiJDPJzO9dkEdV9vv4=","subject":"SERIALNUMBER=201402,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDI=","whitelist":false,"attachment":{"hash":"ae7283dfb872e87e5821a01f3bc4d8820099528e2f30c0e7e063e4d650afe62e","size":1402,"filename":"0EXmMnZ8pOr9XL2evHgo2vhHefnCt2aq-aHmDVgtjKU=.pem","location":"security-state-staging/intermediates/614d38fd-2482-4116-9af6-e749766cd34f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0EXmMnZ8pOr9XL2evHgo2vhHefnCt2aq+aHmDVgtjKU=","crlite_enrolled":false,"id":"f1f158d2-8546-42eb-9aba-1e797216092b","last_modified":1562025292859},{"schema":1562025291368,"derHash":"/ToPPdRIAJK21FBHPeuSAaCzCKiAeDOjxzj4oH
64HtM=","subject":"CN=GlobalSign Qualified CA 2,O=GlobalSign nv-sa,C=BE","subjectDN":"MEwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSIwIAYDVQQDExlHbG9iYWxTaWduIFF1YWxpZmllZCBDQSAy","whitelist":false,"attachment":{"hash":"666808b17b5d5c0349aaa78a66212cf4825a5213929f0923b1a7e7ad57f22de8","size":2109,"filename":"6gTNFHlwskoXv_3BC7UG_CElyhyz-r3yoROD5FPGkK0=.pem","location":"security-state-staging/intermediates/adcf2001-8f21-4761-be6c-9e62f61e8388.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6gTNFHlwskoXv/3BC7UG/CElyhyz+r3yoROD5FPGkK0=","crlite_enrolled":false,"id":"e1f44dc0-1060-4ef8-9484-d4260f68e10d","last_modified":1562025292119},{"schema":1562025290627,"derHash":"K97vpzX/cAXf6C5mZBdy2CXno2GbvKyxPP4gEGYOPZ0=","subject":"CN=FujiSSL ECC Business Secure Site CA,O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN":"MHYxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzETMBEGA1UEBxMKU2hpYnV5YS1rdTEUMBIGA1UEChMLTmlqaW1vIEsuSy4xLDAqBgNVBAMTI0Z1amlTU0wgRUNDIEJ1c2luZXNzIFNlY3VyZSBT
aXRlIENB","whitelist":false,"attachment":{"hash":"a386eaf0d14a248038d2dbe1176d0e3ce1059635e00d20a970a14c70e2aea71e","size":1301,"filename":"VSIhlyLVTq0piI3j7ajNA5ZmdmgumlgTW-MV_okesCc=.pem","location":"security-state-staging/intermediates/931dec64-f845-46f7-8d31-c72027306d9c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VSIhlyLVTq0piI3j7ajNA5ZmdmgumlgTW+MV/okesCc=","crlite_enrolled":false,"id":"5e423d91-6fa8-4e19-9256-bcceaf49c94a","last_modified":1562025291360},{"schema":1562025287648,"derHash":"f2iJ/+iwIEXiysmaLy7k9MLu0kk0tlIYctNL+BJnHEs=","subject":"CN=Oracle SSL CA,OU=VeriSign Trust Network+OU=Class 3 MPKI Secure Server CA,O=Oracle Corporation,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEbMBkGA1UEChMST3JhY2xlIENvcnBvcmF0aW9uMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMSYwJAYDVQQLEx1DbGFzcyAzIE1QS0kgU2VjdXJlIFNlcnZlciBDQTEWMBQGA1UEAxMNT3JhY2xlIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"7ee4ae6d41d1ebeeccf162c75257607ac06eccb9355c405dd9feb4a7974e24a3","size":1760,
"filename":"jAlQJcRUeMgTS65SuJLkC6qE2B093mGImtHccMYGG44=.pem","location":"security-state-staging/intermediates/78a7a038-46d1-4bda-b8d6-a3b6d6b8054b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jAlQJcRUeMgTS65SuJLkC6qE2B093mGImtHccMYGG44=","crlite_enrolled":false,"id":"87511250-6e4a-46a5-b783-2c8da9c8699a","last_modified":1562025288390},{"schema":1562025285415,"derHash":"Ut/XNdStpK6sstd5aPlxEUP7DDxag7UKxN65h6h45Qk=","subject":"CN=USERTrust ECC Client Authentication and Secure Email CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGaMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazFAMD4GA1UEAxM3VVNFUlRydXN0IEVDQyBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIFNlY3VyZSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"502ff44158f951d41a26530bc84cf7795c28a1df29c855cfcef1ccac9b79ffea","size":1329,"filename":"vjKVj54qS0DDdeD0OJ1UYEfRr3NvN4Z5QRmAX66bxB8=.pem","location":"security-state-stagi
ng/intermediates/fceaa33d-3b3c-40c0-9a8f-8de7dc41a6c5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vjKVj54qS0DDdeD0OJ1UYEfRr3NvN4Z5QRmAX66bxB8=","crlite_enrolled":false,"id":"de9349f5-db91-4241-8540-d0370d7c4de3","last_modified":1562025286167},{"schema":1562025284669,"derHash":"OZfHIYk7OSbTk4oxHKB6Jhsq4i4B3Fh/GB3/FbmLTqY=","subject":"CN=TrustAsia Technologies\\, Inc. DV SSL CA - G1,OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MIGJMQswCQYDVQQGEwJDTjElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxNDAyBgNVBAMTK1RydXN0QXNpYSBUZWNobm9sb2dpZXMsIEluYy4gRFYgU1NMIENBIC0gRzE=","whitelist":false,"attachment":{"hash":"11872ef0761a794cdfd0a48bdcaf7cd23daea461861f20c6fd25fe349bf445b0","size":1934,"filename":"OOzymZtqtOUPeO7RggB8hPhhnT-cN00YxTIniP-3dbM=.pem","location":"security-state-staging/intermediates/2198bb6c-f4f0-49d8-a771-38b6a5d3d95f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OOzymZtqtOUPe
O7RggB8hPhhnT+cN00YxTIniP+3dbM=","crlite_enrolled":false,"id":"990db375-32be-4512-98dd-189df3712cf5","last_modified":1562025285408},{"schema":1562025283917,"derHash":"+jl96NtvEQp/o00QG6yKkUdQ9TsCI6i9L7gS51cVXCA=","subject":"CN=SwissSign Personal Silver CA 2008 - G2,O=SwissSign AG,C=CH","subjectDN":"MFUxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxLzAtBgNVBAMTJlN3aXNzU2lnbiBQZXJzb25hbCBTaWx2ZXIgQ0EgMjAwOCAtIEcy","whitelist":false,"attachment":{"hash":"c1c9d52213575e65ceed56f35a6ed33a249d8d1c3a280659df44920339ef7ffe","size":2280,"filename":"jyhVT5llCBR7-xwGoq2SlKQcMasWHqmouxTYUO1Fhiw=.pem","location":"security-state-staging/intermediates/ea4ea5bd-3a75-4cd2-a235-c3e8ef18c8c6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jyhVT5llCBR7+xwGoq2SlKQcMasWHqmouxTYUO1Fhiw=","crlite_enrolled":false,"id":"4f348dc6-e98b-4a77-a839-d0327398fe7f","last_modified":1562025284661},{"schema":1562025283171,"derHash":"U8Ra7/0YwhQHTBmDD/T1u0+g9sQkUIt7wEMhZThoXlo=","subject":"SERIALNUMBER=201805,
CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODA1","whitelist":false,"attachment":{"hash":"e34007490624a17574e785aa940bb4a087283cee6f3c794ed80db3caecae05b0","size":2333,"filename":"ioQjHVX2Sgc0RK99U3WoHL7qOrrxLgG4Vk0NB28dfkU=.pem","location":"security-state-staging/intermediates/e1e9dbef-94d9-4968-b370-92830e644fe3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ioQjHVX2Sgc0RK99U3WoHL7qOrrxLgG4Vk0NB28dfkU=","crlite_enrolled":false,"id":"c1417a0b-e2ff-4c67-bbcb-92f31268a84c","last_modified":1562025283909},{"schema":1562025282408,"derHash":"fjI2jiSizEjT0p6IOyYOQM7aIq+XGJx4/FuShITpoBA=","subject":"CN=COMODO ECC Domain Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGQMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTG
ltaXRlZDE2MDQGA1UEAxMtQ09NT0RPIEVDQyBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"abc0795848f66d2488b81a62506ef09e4d6d926185ae30b0ab7290d81e4c61f4","size":1313,"filename":"EohwrK1N7rr3bRQphPj4j2cel-B2d0NNbM9PWHNDXpM=.pem","location":"security-state-staging/intermediates/6f4d4854-993d-42ab-936d-589d8c7fd633.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EohwrK1N7rr3bRQphPj4j2cel+B2d0NNbM9PWHNDXpM=","crlite_enrolled":true,"id":"693849c2-1989-4277-9217-80926c45cb4f","last_modified":1562025283163},{"schema":1562025280120,"derHash":"M8+wYs0pUeTdGiVr7RVr6lPykNA53u+4W+leGQEhajY=","subject":"CN=Trustico RSA DV CA,O=The Trustico Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MG4xCzAJBgNVBAYTAkdCMQ8wDQYDVQQIEwZMb25kb24xEDAOBgNVBAcTB0Nyb3lkb24xHzAdBgNVBAoTFlRoZSBUcnVzdGljbyBHcm91cCBMdGQxGzAZBgNVBAMTElRydXN0aWNvIFJTQSBEViBDQQ==","whitelist":false,"attachment":{"hash":"02328d098993eca5c1b5bf2cc236d3f542a361cb3ed4b2e31d3d3ae57be6d2d2","size":21
13,"filename":"B_bkhTDI5DJw6nXXzz0RfEQettWUxxESQlnc8VMZ4uk=.pem","location":"security-state-staging/intermediates/087c9b71-a0a9-4909-9e5f-c7b1e4f77ee3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B/bkhTDI5DJw6nXXzz0RfEQettWUxxESQlnc8VMZ4uk=","crlite_enrolled":true,"id":"7e702c67-68fb-441f-a66f-cf0a09acdafd","last_modified":1562025280864},{"schema":1562025279350,"derHash":"dNmS05ELz340uLXNKPkerrT0Hz2mOU14uMQ2ctQ/Tw8=","subject":"CN=ESTEID-SK 2015,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MGMxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRcwFQYDVQRhDA5OVFJFRS0xMDc0NzAxMzEXMBUGA1UEAwwORVNURUlELVNLIDIwMTU=","whitelist":false,"attachment":{"hash":"e79288e6283a6cf8e401f46b989c7aba65f6bce135c24772fae33f54a7339c1e","size":2292,"filename":"cl4xfKuRdlBntQEBobDSd3nPt8GamO_lYQLJgp-QIK8=.pem","location":"security-state-staging/intermediates/3e90d73f-3a85-419c-8bab-c12f148d4549.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cl4xfKuRdlBntQEBobDSd3nPt8Gam
O/lYQLJgp+QIK8=","crlite_enrolled":false,"id":"d4fae966-1bfe-4fcc-858e-bd9b0868c507","last_modified":1562025280113},{"schema":1562025278609,"derHash":"g/yJGzUNng1+vm3Spr/j0LD0ZT/KBIYVpd7rvAOaP2Y=","subject":"CN=GlobalSign AATL Partners CA 2019,O=GlobalSign nv-sa,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIEFBVEwgUGFydG5lcnMgQ0EgMjAxOQ==","whitelist":false,"attachment":{"hash":"d000e3224251910e8fb77335b40609ff5b3d0205b628feaf700f6e228504357a","size":2320,"filename":"lhJQC7F2rtgQWIaZBt4zOXO4E9P82bsb47uEijI-pcM=.pem","location":"security-state-staging/intermediates/9525d4df-8f6a-4b8f-b69e-ce869574f13c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lhJQC7F2rtgQWIaZBt4zOXO4E9P82bsb47uEijI+pcM=","crlite_enrolled":false,"id":"643f92c8-d792-43c2-a342-b580ba9e0749","last_modified":1562025279342},{"schema":1562025277127,"derHash":"wSRamgOcxRG8+zpQvh2JqYmTNDHyXA+WZbqXf5T4dsE=","subject":"CN=TeliaSonera Mobile ID CA v2,O=Telia
Sonera Finland Oyj,C=FI","subjectDN":"MFUxCzAJBgNVBAYTAkZJMSAwHgYDVQQKDBdUZWxpYVNvbmVyYSBGaW5sYW5kIE95ajEkMCIGA1UEAwwbVGVsaWFTb25lcmEgTW9iaWxlIElEIENBIHYy","whitelist":false,"attachment":{"hash":"eaf431cf6c23f62a0ea543c5ad0adc1419e73f94ab2cab3d87029b9c730e91b4","size":2418,"filename":"cDMfyugvFsXyMurrO5J9HB6avAWXo9wMS1nT_8Mt7KA=.pem","location":"security-state-staging/intermediates/ada98906-2009-431a-ae1c-97f895b6b074.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cDMfyugvFsXyMurrO5J9HB6avAWXo9wMS1nT/8Mt7KA=","crlite_enrolled":false,"id":"10063ad2-f0b0-4c5f-96ba-842b66ad98f5","last_modified":1562025277858},{"schema":1562025276325,"derHash":"2eRFsixvyzeylvzRMxSGVpZRqNuYBxdT/vxz0sl79zI=","subject":"CN=Qualified KET e-Szigno CA 2018,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHoxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJzAlBgNVBAMMHlF1YWxpZmllZCBLRVQgZS1Temlnbm8gQ0EgMjAxOA==","whitelist":false,"attachment":{
"hash":"6b304876a14dedb4738c9754f4bc04eec54cc78cd3212181152603a8af2bcd15","size":2231,"filename":"oknJfA6HpIW3Guv29R8tlmS5hAgGjhhUfpBsZPu2Pds=.pem","location":"security-state-staging/intermediates/2563636d-ab39-462e-8e03-eeda6388ea2a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oknJfA6HpIW3Guv29R8tlmS5hAgGjhhUfpBsZPu2Pds=","crlite_enrolled":false,"id":"0a5a0741-ed12-460d-8ae6-94cb14567a42","last_modified":1562025277120},{"schema":1562025273330,"derHash":"TmKiUlkvnXH/4gN3V/hV1KAjXWY4vRBenvFwhs4rvCU=","subject":"CN=SECOM Passport for Web MH CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MFsxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSUwIwYDVQQDExxTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIE1IIENB","whitelist":false,"attachment":{"hash":"4325c7065bb83e9d92f3718a9948fddc4a55dc191e11a5d9b3164c843c5def37","size":1670,"filename":"q9I-r-WPX4f6FsDftbkgFglISBQJtf5Dqt8hXHPa7-U=.pem","location":"security-state-staging/intermediates/4c0cdeb1-6b0a-4cc1-8425-c5d64b1
a5c3a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q9I+r+WPX4f6FsDftbkgFglISBQJtf5Dqt8hXHPa7+U=","crlite_enrolled":true,"id":"a48f8f7b-e4c4-4695-b74a-c002a3d4d4c9","last_modified":1562025274069},{"schema":1562025270327,"derHash":"JNBrln5wvIziH/yv0+tbaaTi4suvNruc1k6rzdFCPE4=","subject":"CN=Ericsson NL Individual CA v2,O=Ericsson","subjectDN":"MDoxETAPBgNVBAoMCEVyaWNzc29uMSUwIwYDVQQDDBxFcmljc3NvbiBOTCBJbmRpdmlkdWFsIENBIHYy","whitelist":false,"attachment":{"hash":"9bd44a9602e69344b4bafda91c3b4a8dd3d025582daf9faf359359dd39289296","size":2385,"filename":"w-D6Z-19kKBN5dh4sJv7cmEtM_38D_ZKyomDU56r6Gs=.pem","location":"security-state-staging/intermediates/0ae9ba0f-5da4-47f6-be43-46d84e790e1f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"w+D6Z+19kKBN5dh4sJv7cmEtM/38D/ZKyomDU56r6Gs=","crlite_enrolled":false,"id":"643acb4e-7965-4eb4-98eb-22787679daf9","last_modified":1562025271070},{"schema":1562025267327,"derHash":"nG0IkzIBQH+/KxJUC2fMDkyWZvEy4VBHYqcXy66PP9Y=","subject":"C
N=HydrantID SSL ICA G2,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMTAwLgYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHTAbBgNVBAMTFEh5ZHJhbnRJRCBTU0wgSUNBIEcy","whitelist":false,"attachment":{"hash":"c4fbca9a15eb275e83118896e4839aba070abde056cf047aa1a57afdd78af927","size":2406,"filename":"400Fim9IQe4j-Gj-Ci4R44M3gA6J1_TRh8LlPSLF3I8=.pem","location":"security-state-staging/intermediates/a6966be8-fd40-411c-9f57-e4027bd92592.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"400Fim9IQe4j+Gj+Ci4R44M3gA6J1/TRh8LlPSLF3I8=","crlite_enrolled":true,"id":"c6e5ffe6-a302-4ac5-a6b6-3b6b960d5347","last_modified":1562025268059},{"schema":1562025265805,"derHash":"CCf2v9u/MOoP6s8be9Bu72XbJxrNfptdJpoPLzcrIek=","subject":"CN=EuropeanSSL Server CA 2,O=EUNETIC GmbH,L=Durmersheim,ST=Baden-W\u00fcrttemberg,C=DE","subjectDN":"MHkxCzAJBgNVBAYTAkRFMRswGQYDVQQIDBJCYWRlbi1Xw7xydHRlbWJlcmcxFDASBgNVBAcTC0R1cm1lcnNoZWltMRUwEwYDVQQKEwxFVU5FVElDIEdtYkgxIDAe
BgNVBAMTF0V1cm9wZWFuU1NMIFNlcnZlciBDQSAy","whitelist":false,"attachment":{"hash":"09d22bba9126989782eb2682c0b1fab55cbf0dc7dc8b1afbd39bcf120f1c52fe","size":2142,"filename":"voGNYzoU7vT-Rbv9zjL5yL6Z294ZkClnxHkt0bjiTWM=.pem","location":"security-state-staging/intermediates/0e75900a-af17-4c88-b8e2-a11d13588bd9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"voGNYzoU7vT+Rbv9zjL5yL6Z294ZkClnxHkt0bjiTWM=","crlite_enrolled":true,"id":"497678fd-cecb-41ae-8247-6870a5a994e1","last_modified":1562025266548},{"schema":1562025264327,"derHash":"aezbwxR/WB39y1Itne+yYLJnhK1JVcdOalJSLMxMRAg=","subject":"CN=Hongkong Post e-Cert SSL CA 3 - 17,O=Hongkong Post,L=Hong Kong,ST=Hong Kong,C=HK","subjectDN":"MHoxCzAJBgNVBAYTAkhLMRIwEAYDVQQIEwlIb25nIEtvbmcxEjAQBgNVBAcTCUhvbmcgS29uZzEWMBQGA1UEChMNSG9uZ2tvbmcgUG9zdDErMCkGA1UEAxMiSG9uZ2tvbmcgUG9zdCBlLUNlcnQgU1NMIENBIDMgLSAxNw==","whitelist":false,"attachment":{"hash":"d819d0da20d45c8f93a0efb0d37fd86e274107134845bf5480d9b3697bb0711d","size":2093,"filename":
"SUe0dPoWC5QKoJyXReRB3haevgxOd9ZVd5sn7N65_DY=.pem","location":"security-state-staging/intermediates/b1839acb-c26b-4d29-aa46-65f25e6250c5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SUe0dPoWC5QKoJyXReRB3haevgxOd9ZVd5sn7N65/DY=","crlite_enrolled":true,"id":"4d1c3055-4469-4d11-a7a0-e646d9c6bd59","last_modified":1562025265062},{"schema":1562025263575,"derHash":"yrAWxeoyBhvQZf4TpVpA+mEFiyezSn+NF19xAe4GPjs=","subject":"CN=DigiCert Federated ID L1 CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0IEZlZGVyYXRlZCBJRCBMMSBDQQ==","whitelist":false,"attachment":{"hash":"7a2334ef63e735c7a9de8317fb1bbca56541bf3f0d2bd5aa7df6733294d35767","size":1845,"filename":"PUDyhbzncnmmUQ8SN4OwZj01ukzlqryo_kEquVWErUo=.pem","location":"security-state-staging/intermediates/ddd65303-64d3-475c-8530-62101b203d10.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PUDyhbzncnmmUQ8SN4O
wZj01ukzlqryo/kEquVWErUo=","crlite_enrolled":false,"id":"97566edd-1d57-4cb3-8126-4a4c2b0482b8","last_modified":1562025264319},{"schema":1562025262823,"derHash":"F+9vtce+3y8P555xsbzMjYnnWgreFvVuo6qt3x0BLtg=","subject":"SERIALNUMBER=201818,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODE4","whitelist":false,"attachment":{"hash":"1974a713335bdf0f88de6d1870fe48c4da9b47a0591e661657ce8e67bc14c9b4","size":2333,"filename":"Kb5-3Axv89fCYAIhhiEJWD0TJRRx0BZ7FLrkwQkAMBA=.pem","location":"security-state-staging/intermediates/dcc6ed3d-ff66-4c1a-97b7-b513478a0679.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Kb5+3Axv89fCYAIhhiEJWD0TJRRx0BZ7FLrkwQkAMBA=","crlite_enrolled":false,"id":"8f13126f-ea09-4860-bb62-7c3995e356bf","last_modified":1562025263567},{"schema":1562025262072,"derHash":"/ciYbPrE818azVF+D2G4eYgq4HbiuoC3e9Pw/lzviGI=","subjec
t":"CN=DigiCert ECC Extended Validation Server CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMzAxBgNVBAMTKkRpZ2lDZXJ0IEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"31ecd5e8057fdfa62dc602519feac045085c66fc65b202627b24662a21a6de2f","size":1414,"filename":"WOINGBsGlG95B7s_6U7XB_KM7U73y-sXgtLqZpn3G88=.pem","location":"security-state-staging/intermediates/60a912ac-30e3-4cf3-b9c7-b3c3a357755f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WOINGBsGlG95B7s/6U7XB/KM7U73y+sXgtLqZpn3G88=","crlite_enrolled":true,"id":"7ea2d3a5-3815-43a7-93ac-94921c661784","last_modified":1562025262816},{"schema":1562025261328,"derHash":"Sw0TktORVzUyB6ZMyxRoPd6dLO0ftYsW4Di+VwfCeBM=","subject":"CN=GlobalSign HV ECC DV SSL CA 2018,O=GlobalSign nv-sa,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIEhWIEVDQyBEViB
TU0wgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"1acd32da9feed3e2e4ee157a2618013352d326fef642f7bfd585f8ae92c7d2ed","size":1163,"filename":"0fnBFUmy_VBjGa_Pg7kDaXRGAe4mSax_PZ77vht_SZk=.pem","location":"security-state-staging/intermediates/0463ef18-4ed8-456d-b684-8528412f482c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0fnBFUmy/VBjGa/Pg7kDaXRGAe4mSax/PZ77vht/SZk=","crlite_enrolled":false,"id":"8ada5368-0eb6-43b5-9561-ebab68b2417b","last_modified":1562025262065},{"schema":1562025258340,"derHash":"NFpS8WTfYTRjyHKIQmytJGurAoJFKU3b+mGMa7O+PDw=","subject":"CN=USERTrust ECC Code Signing CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGAMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazEmMCQGA1UEAxMdVVNFUlRydXN0IEVDQyBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"6d2fff64af8033e0034b6470f651280afccd50ced99453f4d67c9f2930b76ba3","size":1301,"filename":"0pKpvg7
zRQ3q1ij8opewIS6KAUpC33v2uz9IDAj7Vm8=.pem","location":"security-state-staging/intermediates/0945ec2b-c44f-4f2b-a547-56c1007278dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0pKpvg7zRQ3q1ij8opewIS6KAUpC33v2uz9IDAj7Vm8=","crlite_enrolled":false,"id":"b8be43b3-c5c5-42cd-9032-02ad84857d12","last_modified":1562025259081},{"schema":1562025254563,"derHash":"EEUVQJRXCA2yCi6SH0e71q+nd1Wa272Xz8KtnXtBO2M=","subject":"CN=TERENA Personal CA 2,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MGkxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEdMBsGA1UEAxMUVEVSRU5BIFBlcnNvbmFsIENBIDI=","whitelist":false,"attachment":{"hash":"ab5e9dc41345f4e069db5085e2e2163cca665a1acb76e2027588a96dfe55d4c1","size":2109,"filename":"lYumc4BVxXiIXDsLhm-7RneF4K3-Oq0Y7tWzE53jpdY=.pem","location":"security-state-staging/intermediates/f6cf20f8-9d99-4e75-86db-8ea4091ef3a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lYumc4BVxXiIXDsLhm+7RneF4K
3+Oq0Y7tWzE53jpdY=","crlite_enrolled":false,"id":"e2f6d9c6-6f0b-4bc2-a31b-53a2c110e920","last_modified":1562025255321},{"schema":1562025253083,"derHash":"q0nGSsXSf5s2iMqAqjiSfxw3zRZZZBQIY/NDJ84FAiw=","subject":"SERIALNUMBER=A82743287,CN=Camerfirma TSA - 2013,O=AC Camerfirma S.A.,L=Madrid (see current address at https://www.camerfirma.com/address),C=ES","subjectDN":"MIGrMQswCQYDVQQGEwJFUzEbMBkGA1UEChMSQUMgQ2FtZXJmaXJtYSBTLkEuMRIwEAYDVQQFEwlBODI3NDMyODcxSzBJBgNVBAcTQk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCBodHRwczovL3d3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTEeMBwGA1UEAxMVQ2FtZXJmaXJtYSBUU0EgLSAyMDEz","whitelist":false,"attachment":{"hash":"06bc7202aab2c07f1258303519c61f00bb59c17c80441fdb907ded166ba74a1b","size":2922,"filename":"EUdCx9qvs_LbJR4oy_CzU4P-rk_mcz-RAiT7758aSxE=.pem","location":"security-state-staging/intermediates/2ca3ac52-97ea-42f0-ac7f-0cceb0f6b524.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EUdCx9qvs/LbJR4oy/CzU4P+rk/mcz+RAiT7758aSxE=","crlite_enrolled":false,"id
":"e582d41c-4c40-4138-8e0e-bab122025d20","last_modified":1562025253818},{"schema":1562025251569,"derHash":"CP1BixGIU0hP0bBm8ZIqgPVx2P/3Jo1Ziwht8YtYCtg=","subject":"CN=Atos TrustedRoot Server-CA 2019,O=Atos,C=DE","subjectDN":"MEYxKDAmBgNVBAMMH0F0b3MgVHJ1c3RlZFJvb3QgU2VydmVyLUNBIDIwMTkxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"e9026c05fca12f79a992b5c8a7d90af2ccafac750d96e6d2a420590a55a54e3c","size":1922,"filename":"SD8O2olCwqFt3wL6_lvBiVzprjUyo7vWr7bIS3B3am8=.pem","location":"security-state-staging/intermediates/c310d05d-c0b0-4149-9d40-04e0f46a1fab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SD8O2olCwqFt3wL6/lvBiVzprjUyo7vWr7bIS3B3am8=","crlite_enrolled":true,"id":"4f5ba09a-4228-4ae3-b9fb-e261273f7b68","last_modified":1562025252319},{"schema":1562025250085,"derHash":"YK+eXznYc7I2vhQrxwbaVxhJrtf65jX8WhRhoM90WcU=","subject":"CN=Qualified e-Szigno Organization CA 2016,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGIMQswCQYDVQQGEwJIVTERMA8
GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xHDAaBgNVBGEME1ZBVEhVLTIzNTg0NDk3LTItNDExMDAuBgNVBAMMJ1F1YWxpZmllZCBlLVN6aWdubyBPcmdhbml6YXRpb24gQ0EgMjAxNg==","whitelist":false,"attachment":{"hash":"dc2952bb2d73640240643f13334e8d01c2d9e778dde282b5c91837df5e8fae4e","size":2601,"filename":"WWpF25055wfjcZBv75P1HqErKnpSgGY5RThLltVZ-uo=.pem","location":"security-state-staging/intermediates/4a7927f3-053b-4fb2-b88a-f0952955b74b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WWpF25055wfjcZBv75P1HqErKnpSgGY5RThLltVZ+uo=","crlite_enrolled":false,"id":"e0a7a8fd-452f-48c1-a2d9-8dc311bf2cf1","last_modified":1562025250818},{"schema":1562025249333,"derHash":"N9IgpsdSJ5kCEZE0nBg/kXvhvoYmz5JrD9bgqGge4DE=","subject":"SERIALNUMBER=ZZZZZZAD,CN=Siemens Issuing CA EE Network Smartcard Auth 2016,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGxMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQUQxHTAbBg
NVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMTowOAYDVQQDDDFTaWVtZW5zIElzc3VpbmcgQ0EgRUUgTmV0d29yayBTbWFydGNhcmQgQXV0aCAyMDE2","whitelist":false,"attachment":{"hash":"83492b707e3f19c0afa5426bfb86e053d1a36c3bb7f6b2a1fbbe180edc9522b1","size":2662,"filename":"ela416lvtgHOV0XkKFtPo_tjgfnex9VPmwFMF-IIdz4=.pem","location":"security-state-staging/intermediates/69464078-b92d-4ac6-a641-b03a66daeab5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ela416lvtgHOV0XkKFtPo/tjgfnex9VPmwFMF+IIdz4=","crlite_enrolled":false,"id":"ea3a7109-fc97-48d4-8817-07a2ab0f437f","last_modified":1562025250077},{"schema":1562025247810,"derHash":"LEkPUwE2ARY8fpunSHAYGYnaRwC9vK6ZrSFk6UKF+0E=","subject":"CN=MilleniumSign SSL Certificate CA ECC R2,O=MilleniumSign Limited,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGJMQswCQYDVQQGEwJNVTEYMBYGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTAwLgYDVQQDDCdNaWxsZW5pdW1TaWduIFNTTCBDZXJ0aWZpY2F0ZSBDQSBFQ0MgUjI=","whitelist":false,"
attachment":{"hash":"388484e855dcfa09a1d7e93bed5665fdab3d7827d888db660bc23756917d5656","size":1402,"filename":"rZHx6oWsQ4M32pcJKskm--yrHi1znChiiNn-Hyx1h8M=.pem","location":"security-state-staging/intermediates/705ae7c2-bcc3-48a7-a342-3aa6bbff0d09.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rZHx6oWsQ4M32pcJKskm++yrHi1znChiiNn+Hyx1h8M=","crlite_enrolled":false,"id":"50fb555a-6152-4dbe-945c-1397deedac59","last_modified":1562025248555},{"schema":1562025247064,"derHash":"yucvZtYa+5ppczjo9TWNgHG6+krk0nF8fmNftepD02U=","subject":"CN=CERTSIGN FOR BANKING SIMPLE SSL PRODUCTION CA V3,OU=Certificat de productie Production certificate,O=certSIGN,C=RO","subjectDN":"MIGUMQswCQYDVQQGEwJSTzERMA8GA1UECgwIY2VydFNJR04xNzA1BgNVBAsMLkNlcnRpZmljYXQgZGUgcHJvZHVjdGllIFByb2R1Y3Rpb24gY2VydGlmaWNhdGUxOTA3BgNVBAMMMENFUlRTSUdOIEZPUiBCQU5LSU5HIFNJTVBMRSBTU0wgUFJPRFVDVElPTiBDQSBWMw==","whitelist":false,"attachment":{"hash":"9c05002f5f1bd3a2e682040ad3ca45aa65b80fbea14f287d0b612d125aae2b87","size":1678,"
filename":"dSEYX-UXMMv7WVy6VlLFnfcCjxt0nH-xwgRrYqDvmpA=.pem","location":"security-state-staging/intermediates/86434fba-a8fc-495a-9af1-290826501bfc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dSEYX+UXMMv7WVy6VlLFnfcCjxt0nH+xwgRrYqDvmpA=","crlite_enrolled":false,"id":"9a546d40-8e30-4cfa-b711-298337b46008","last_modified":1562025247802},{"schema":1562025246330,"derHash":"3apfcuEP060HKtLA0hlY2/FwnnrtE7OMJkco/OXJuh4=","subject":"CN=Academy of Athens Client CA R1,O=Academy of Athens,L=Athens,C=GR","subjectDN":"MGMxCzAJBgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxGjAYBgNVBAoTEUFjYWRlbXkgb2YgQXRoZW5zMScwJQYDVQQDEx5BY2FkZW15IG9mIEF0aGVucyBDbGllbnQgQ0EgUjE=","whitelist":false,"attachment":{"hash":"738c602f730b5e939f0962cda747abb3d84044de87505427faa5ed30e21e2ffc","size":2507,"filename":"E3sk6OwcCzO2DS5RQD94etvklmoU-SzyHf0OMzBriOs=.pem","location":"security-state-staging/intermediates/0e543b1f-c433-4a49-9b06-a28052d1a2d4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"E3sk6OwcCzO2DS5
RQD94etvklmoU+SzyHf0OMzBriOs=","crlite_enrolled":false,"id":"83b9cbcd-5447-49b5-9b7b-1016057c6718","last_modified":1562025247057},{"schema":1562025245561,"derHash":"qyicYDV+1pBQ3F6ZlX8xZMyc+so7Q+IMsVGYnXbjIBk=","subject":"CN=GoGetSSL RSA Codesigning CA,O=GoGetSSL,L=Riga,C=LV","subjectDN":"MFUxCzAJBgNVBAYTAkxWMQ0wCwYDVQQHEwRSaWdhMREwDwYDVQQKEwhHb0dldFNTTDEkMCIGA1UEAxMbR29HZXRTU0wgUlNBIENvZGVzaWduaW5nIENB","whitelist":false,"attachment":{"hash":"56b2b32dff5d71ed02e3e1749067d61d2a4a19ce62f7b78032a17588c7de239f","size":2068,"filename":"OlrioTffYEv0uD6tvV0JN2CtnQFZNo8zTIfkc_7jV4k=.pem","location":"security-state-staging/intermediates/6ff3a14d-3bfb-4b39-a5de-5a8dd144f7d4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OlrioTffYEv0uD6tvV0JN2CtnQFZNo8zTIfkc/7jV4k=","crlite_enrolled":false,"id":"0da20e8d-2bbd-4b52-a722-8736b486c6f2","last_modified":1562025246322},{"schema":1562025244064,"derHash":"Ns3MfI84P3SFZYRm/ZUOdT/LAZ4lD9G8GgbFmB2KQYg=","subject":"CN=InterCloud SSL Certificate
CA ECC R2,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MIGBMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEtMCsGA1UEAwwkSW50ZXJDbG91ZCBTU0wgQ2VydGlmaWNhdGUgQ0EgRUNDIFIy","whitelist":false,"attachment":{"hash":"2cd63ff457b9092043714375c47ef5c79b689924fd883a1846c0ee4e9a49871d","size":1288,"filename":"YZPwIxnplYZBGJ6aDvGcMHWqSiLPmhSwJq2dfNdJpTs=.pem","location":"security-state-staging/intermediates/08672d16-76ef-46ff-aa4a-125020548103.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YZPwIxnplYZBGJ6aDvGcMHWqSiLPmhSwJq2dfNdJpTs=","crlite_enrolled":false,"id":"9c2507f9-b425-4085-9b3c-64ab602d5412","last_modified":1562025244801},{"schema":1562025239559,"derHash":"fPdfAGzP+Now1uoqL3xQ0ER6olE/9KSje/KSRwu6jIU=","subject":"CN=FujiSSL Public Certification Authority - G1,O=Nijimo\\, Inc.,C=JP","subjectDN":"MFoxCzAJBgNVBAYTAkpQMRUwEwYDVQQKEwxOaWppbW8sIEluYy4xNDAyBgNVBAMTK0Z1amlTU0wgUHVibGljIENlcnRpZmljYX
Rpb24gQXV0aG9yaXR5IC0gRzE=","whitelist":false,"attachment":{"hash":"cbb38aed230419e776913b69c50f5489e2883ea7de0a1c182db31c687d9a5917","size":1626,"filename":"QrPwZsEgVVVbnQwEikJnQTnAiO0XvqNOi9gKQj7Xt4Q=.pem","location":"security-state-staging/intermediates/4c7aeb8b-1028-40e6-ae83-98ccf972fed1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QrPwZsEgVVVbnQwEikJnQTnAiO0XvqNOi9gKQj7Xt4Q=","crlite_enrolled":true,"id":"fd898cc0-617c-40fc-bcda-7dbae1c4d2f6","last_modified":1562025240312},{"schema":1562025237334,"derHash":"YvT7eFosKeEJ3xAx70hMJERrkkoHQATp44PKZH+OsLo=","subject":"CN=Fuji Xerox Endorsement CA - G2,O=Fuji Xerox,C=JP","subjectDN":"MEsxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MScwJQYDVQQDEx5GdWppIFhlcm94IEVuZG9yc2VtZW50IENBIC0gRzI=","whitelist":false,"attachment":{"hash":"0bb50bc4474c1ca0ef3bbc22a21bf0edf96e41de9c858df8b08a934e21799aa0","size":1492,"filename":"THZ4O6mY6jclidc9TcI2ggOB6Kjgqp1Yft1QUe3A3jU=.pem","location":"security-state-staging/intermediates/942e28d9-1
950-44b5-bbd0-8cb87c3ac2ff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"THZ4O6mY6jclidc9TcI2ggOB6Kjgqp1Yft1QUe3A3jU=","crlite_enrolled":false,"id":"b2054ca3-7428-4e5a-a9c9-22f757e254b3","last_modified":1562025238075},{"schema":1562025235807,"derHash":"eM28aqlcqlR0SDefjNOtAXIsrRwox80BbqMDIXi2+Q4=","subject":"CN=Trustico RSA Codesigning CA,O=The Trustico Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MHcxCzAJBgNVBAYTAkdCMQ8wDQYDVQQIEwZMb25kb24xEDAOBgNVBAcTB0Nyb3lkb24xHzAdBgNVBAoTFlRoZSBUcnVzdGljbyBHcm91cCBMdGQxJDAiBgNVBAMTG1RydXN0aWNvIFJTQSBDb2Rlc2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"b39728ee3f57d600c272e6b0909784e9e2d5977b9e37926796e1b2fa95ed5211","size":2097,"filename":"Ug92Z2BWdjAeqBPInm_J2qZ7xpu0c9WPKfLenpi1D2E=.pem","location":"security-state-staging/intermediates/2b80c2a4-5245-46e5-b987-b293156a093f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ug92Z2BWdjAeqBPInm/J2qZ7xpu0c9WPKfLenpi1D2E=","crlite_enrolled":false,"id":"fd01dcdb-5d23-4b8b
-a726-5631f3601fed","last_modified":1562025236542},{"schema":1562025235061,"derHash":"xCSF/f8jKRjjUqV58BiWUT/M1V8oe5lPL30MsaF9rvI=","subject":"SERIALNUMBER=201801,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODAx","whitelist":false,"attachment":{"hash":"2e3e7c68603bc963d5ce38fcf7b7a0867d685fa12317d9ae8f34b7122733cd28","size":2333,"filename":"CLJidSOXyNp7QB-C-rgFknAe-a-PnfNwE0NWaNnWuhs=.pem","location":"security-state-staging/intermediates/663df175-b989-4842-abee-ef65aef3cdbf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CLJidSOXyNp7QB+C+rgFknAe+a+PnfNwE0NWaNnWuhs=","crlite_enrolled":false,"id":"02d7902f-27a7-4d28-96ee-40819eabe73f","last_modified":1562025235799},{"schema":1562025234319,"derHash":"ic+8j7/3/gJrbPLqaIQZvei7wftFEynIZdbGy89r0Jc=","subject":"CN=Optioncare CA,OU=Orion Health Direct Secure Messaging,O=Optioncare,C
=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpPcHRpb25jYXJlMS0wKwYDVQQLEyRPcmlvbiBIZWFsdGggRGlyZWN0IFNlY3VyZSBNZXNzYWdpbmcxFjAUBgNVBAMTDU9wdGlvbmNhcmUgQ0E=","whitelist":false,"attachment":{"hash":"c5ec747cb1ece7fc513e3ffe6733e3f68858c6fd41a0df7bb58477429286e633","size":2255,"filename":"1cowHAof9qXhiitFN7riBHrm51fUMtgurbQOt2XdQSg=.pem","location":"security-state-staging/intermediates/db238548-ddd1-4d86-9ce7-662bcca2a1a7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1cowHAof9qXhiitFN7riBHrm51fUMtgurbQOt2XdQSg=","crlite_enrolled":false,"id":"6dfdcc6d-af98-4e9a-844c-6ebaa3d2567d","last_modified":1562025235053},{"schema":1562025233549,"derHash":"MAO/iFNCfHuRAj91OYU9mHxY3E4Ru+BH0qkwXAGmFSw=","subject":"CN=certSIGN Non-Repudiation CA Class 4 G2,OU=certSIGN Non-Repudiation CA Class 4 G2,O=certSIGN,C=RO","subjectDN":"MIGCMQswCQYDVQQGEwJSTzERMA8GA1UEChMIY2VydFNJR04xLzAtBgNVBAsTJmNlcnRTSUdOIE5vbi1SZXB1ZGlhdGlvbiBDQSBDbGFzcyA0IEcyMS8wLQYDVQQDEyZjZXJ0U0lHTiBOb24tUmVwdWRpYXRpb24g
Q0EgQ2xhc3MgNCBHMg==","whitelist":false,"attachment":{"hash":"bb516b77cbf95fd334340bb2777b602490882a3aa757c5d82da5214f34585cda","size":1654,"filename":"5z5YTIwg2yLkx8NYmJAGw7XsuJfhisYA72CTV71K7Tc=.pem","location":"security-state-staging/intermediates/052ceaa4-fdf0-40d7-8242-4aa8fcb41d3e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5z5YTIwg2yLkx8NYmJAGw7XsuJfhisYA72CTV71K7Tc=","crlite_enrolled":false,"id":"0d31579b-64f1-4e30-bf5f-c484b7588ede","last_modified":1562025234312},{"schema":1562025232809,"derHash":"Q1bGYhulfb0NN3DWzJiEcS3zZEQMBb+diFmwqAbdd/M=","subject":"SERIALNUMBER=201401,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDE=","whitelist":false,"attachment":{"hash":"839021b1de60208540a9123dea7576e3773b96d12a1357c006d16c4aa25c7596","size":1402,"filename":"uihwVCIO6RorncQNk_rHAVOp0_Y9MCzVk-hzMA_tgMY=.pem","location":"security-state-staging/intermediates/39a1490f-f91b-4254-bbf7-a7d0b9bff451.pem","mimetype":"applic
ation/x-pem-file"},"pubKeyHash":"uihwVCIO6RorncQNk/rHAVOp0/Y9MCzVk+hzMA/tgMY=","crlite_enrolled":false,"id":"ae0b7dd9-df0c-4681-9ebc-abcc95a6d27a","last_modified":1562025233541},{"schema":1562025231317,"derHash":"A0+AFHT5ncDUIOdhFXGK4fZpRzkycmc7k2H9teKJN/w=","subject":"SERIALNUMBER=201905,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE5MDU=","whitelist":false,"attachment":{"hash":"b628ed8414cbc809f0141003c3ea00ee92d3457c7ed6f91d2953e53243f6cac2","size":2337,"filename":"Uw1jSWXDQtfEXIm3dx0aXt7NdGNEukGrjvGgZ8NxRGc=.pem","location":"security-state-staging/intermediates/d8ee1247-7d8f-4043-af7f-c7115e3531ae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uw1jSWXDQtfEXIm3dx0aXt7NdGNEukGrjvGgZ8NxRGc=","crlite_enrolled":false,"id":"5acf219e-ab7d-4369-a193-be85c2a1505f","last_modified":1562025232055},{"schema":1562025229059,"derHa
sh":"6sumyWWYtKQf1T1pq57Z+7sTgRVMRTRWcgwXT/5XbR0=","subject":"CN=ICPEdu,OU=Gerencia de Servicos (GSer),O=Rede Nacional de Ensino e Pesquisa - RNP,L=Rio de Janeiro,ST=Rio de Janeiro,C=BR","subjectDN":"MIGpMQswCQYDVQQGEwJCUjEXMBUGA1UECBMOUmlvIGRlIEphbmVpcm8xFzAVBgNVBAcTDlJpbyBkZSBKYW5laXJvMSQwIgYDVQQLExtHZXJlbmNpYSBkZSBTZXJ2aWNvcyAoR1NlcikxMTAvBgNVBAoTKFJlZGUgTmFjaW9uYWwgZGUgRW5zaW5vIGUgUGVzcXVpc2EgLSBSTlAxDzANBgNVBAMTBklDUEVkdQ==","whitelist":false,"attachment":{"hash":"c399340277a2b92eeb636040d4463ee38fe895ba4563359367c2497d50c84824","size":1833,"filename":"m_Zke2f6Q6acou-ZOFg-8OdSCzint_5uosSYaFXE3EM=.pem","location":"security-state-staging/intermediates/df2eaa98-44e8-4093-9bfb-24b2af701dad.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m/Zke2f6Q6acou+ZOFg+8OdSCzint/5uosSYaFXE3EM=","crlite_enrolled":true,"id":"cca3b0f0-63dc-4374-bde8-b4fe6d44c0af","last_modified":1562025229802},{"schema":1562025226011,"derHash":"QVMi85cMjND1QxHg+TxfXDe6MFn9sQ9SQKwgk0cX+EA=","subject":"CN=We
stern Connecticut Health Network CA,OU=Orion Health Direct Secure Messaging,O=Western Connecticut Health Network,C=US","subjectDN":"MIGZMQswCQYDVQQGEwJVUzErMCkGA1UEChMiV2VzdGVybiBDb25uZWN0aWN1dCBIZWFsdGggTmV0d29yazEtMCsGA1UECxMkT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nMS4wLAYDVQQDEyVXZXN0ZXJuIENvbm5lY3RpY3V0IEhlYWx0aCBOZXR3b3JrIENB","whitelist":false,"attachment":{"hash":"ad34e17b2be6fc08447c7875e5f068cf3dd45d3ea5df594843ac89c847de456f","size":2341,"filename":"Iq5P_COu5eY2kCVZTJFfILRT5F6wWOLsVM192K5sD14=.pem","location":"security-state-staging/intermediates/d1e9c620-48f6-4c4a-bf6c-e4d32ec89be3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Iq5P/COu5eY2kCVZTJFfILRT5F6wWOLsVM192K5sD14=","crlite_enrolled":false,"id":"ebf707dd-ec7f-4c61-81fd-7b93ee38276a","last_modified":1562025226761},{"schema":1562025223722,"derHash":"yXeSPHceGmbJJaK29QFzLmeNyYh6/mv6rAOdHZpx8Ow=","subject":"CN=GlobalSign Timestamping CA - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFIxCzAJBgNVBAYTAkJFMRk
wFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSgwJgYDVQQDEx9HbG9iYWxTaWduIFRpbWVzdGFtcGluZyBDQSAtIEcy","whitelist":false,"attachment":{"hash":"3f735d53cbfc9c9cf464dca8c6fec3be339e6b3042e8ae4d78624f83a2135a3b","size":1475,"filename":"CB1u_HwQPTTVFNyruoDBDUle8-oPzUs0Sos_KZuLoSY=.pem","location":"security-state-staging/intermediates/bb2c1a75-d1fe-4b31-b963-c069bbd87014.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CB1u/HwQPTTVFNyruoDBDUle8+oPzUs0Sos/KZuLoSY=","crlite_enrolled":true,"id":"79f0cde1-be3d-490c-9393-5d6adae7c88b","last_modified":1562025224469},{"schema":1562025221473,"derHash":"wH6QN8uBAS0wRmEyhcFLY6AoSWSk9agh/DsY7N66CmY=","subject":"CN=Indian Health Service-RPMS DIRECT Messaging CA,OU=directihs.net,O=Indian Health Service,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVJbmRpYW4gSGVhbHRoIFNlcnZpY2UxFjAUBgNVBAsTDWRpcmVjdGlocy5uZXQxNzA1BgNVBAMTLkluZGlhbiBIZWFsdGggU2VydmljZS1SUE1TIERJUkVDVCBNZXNzYWdpbmcgQ0E=","whitelist":false,"attachment":{"hash":"cfcfe7b0a5865bb762fcc4c6
90048647d5174092a26326b321a32e470af9ee79","size":2215,"filename":"5eKTKcGalwhgde85C8DNZVC8RLow23EfZRE9nPGBklk=.pem","location":"security-state-staging/intermediates/19418a87-7f85-49d7-8d1b-48a0ab485687.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5eKTKcGalwhgde85C8DNZVC8RLow23EfZRE9nPGBklk=","crlite_enrolled":false,"id":"820a6f72-9c51-491b-855e-1305b0e08ad5","last_modified":1562025222211},{"schema":1562025220729,"derHash":"DDtpZy66vh+WyvPL5Zj3dHwB94AUr2URkZUNZz/ZF4Q=","subject":"CN=Trafigura PTE DocuSign CA,O=Trafigura PTE,C=SG","subjectDN":"MEkxCzAJBgNVBAYTAlNHMRYwFAYDVQQKEw1UcmFmaWd1cmEgUFRFMSIwIAYDVQQDExlUcmFmaWd1cmEgUFRFIERvY3VTaWduIENB","whitelist":false,"attachment":{"hash":"5760d5ba17953454835f4fb2e9c885e596eb48574236b7e06e685ecad224f48a","size":5420,"filename":"tY3lwWb8C3Hpe9A51N8X716yDkdDsNb-UNhyod7-RYs=.pem","location":"security-state-staging/intermediates/c927acb3-ab62-4b1f-b81c-a42d0a6faa7d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tY3lwWb8C3Hpe9
A51N8X716yDkdDsNb+UNhyod7+RYs=","crlite_enrolled":false,"id":"fb955dbd-342c-4a10-9095-ad50f6ec1593","last_modified":1562025221465},{"schema":1562025216188,"derHash":"xCKrhsFynoifvK9c1z8hfgPCn+KsUCEvRRMH2RWGn0c=","subject":"CN=emSign ECC Time stamping CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MHQxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMSkwJwYDVQQDEyBlbVNpZ24gRUNDIFRpbWUgc3RhbXBpbmcgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"43563791245e66f7d04d4403f12dee8bbb8f7711661317ba5453f4c6e767bc3d","size":1183,"filename":"YoOJpTBtL_MN54SktLirvc0ScusOCm7NbSR29u1TcCo=.pem","location":"security-state-staging/intermediates/c327bd51-d114-4fdf-adb9-e757346beb61.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YoOJpTBtL/MN54SktLirvc0ScusOCm7NbSR29u1TcCo=","crlite_enrolled":false,"id":"0f491dc5-c66c-42dd-ad69-90150f1e3cfc","last_modified":1562025216956},{"schema":1562025213182,"derHash":"Sh/2u/SBFw
07dzzsHzqE3jtQlldc2/iwhDIgkxjKD70=","subject":"CN=Amazon,OU=Server CA 1B,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"c0bc37b96bec8011b8d307eeca3d00c574601d10020be55221559de429641537","size":1544,"filename":"JSMzqOOrtyOT1kmau6zKhgT676hGgczD5VMdRMyJZFA=.pem","location":"security-state-staging/intermediates/a7a30d9c-6953-4f41-8b0e-5c00269c7884.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JSMzqOOrtyOT1kmau6zKhgT676hGgczD5VMdRMyJZFA=","crlite_enrolled":true,"id":"5f8eb034-72cd-45a6-8a55-0c083afa34dd","last_modified":1562025213926},{"schema":1562025211675,"derHash":"RDyBWCZHEMC3aKgXDlm/H65AedK8OZOaefqDkXTtga4=","subject":"CN=SCHIEx Direct CA,OU=SCHIEx Direct Messaging,O=SCHIEx,ST=SC,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJTQzEPMA0GA1UEChMGU0NISUV4MSAwHgYDVQQLExdTQ0hJRXggRGlyZWN0IE1lc3NhZ2luZzEZMBcGA1UEAxMQU0NISUV4IERpcmVjdCBDQQ==","whitelist":f
alse,"attachment":{"hash":"e1b38bc809d0be6e2f28dd9d87bf7af46bc55ec35074ec8a61ba5e97efc85679","size":2166,"filename":"lJMFEIPnHjQE1GKzbE6JzsSjl__N_NEFBDFqOtNsnjI=.pem","location":"security-state-staging/intermediates/69582fad-b5af-41e4-a398-1f36db772037.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lJMFEIPnHjQE1GKzbE6JzsSjl//N/NEFBDFqOtNsnjI=","crlite_enrolled":false,"id":"7551978d-4ce2-43d8-8b1a-c0b5d20b4978","last_modified":1562025212421},{"schema":1562025210934,"derHash":"9Rjwu3FlIfCib9tAwwT/m4L72+esvUa/DvI6GAGI61w=","subject":"CN=Apple Public Server RSA CA 2 - G1,O=Apple Inc.,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSowKAYDVQQDEyFBcHBsZSBQdWJsaWMgU2VydmVyIFJTQSBDQSAyIC0gRzE=","whitelist":false,"attachment":{"hash":"6dce70aef7f5bbcfc26a7b76bf285c6b1f15fd77bc1eb1294734cad5fb239722","size":1634,"filename":"GszFzuV0vZD9UeeCY9kvsItQltvQTZsjBfB9INf-GEk=.pem","location":"security-state-staging/intermediates/38288d50-1e5f-4fae-8d28-8249bf4ffc30.pem","
mimetype":"application/x-pem-file"},"pubKeyHash":"GszFzuV0vZD9UeeCY9kvsItQltvQTZsjBfB9INf+GEk=","crlite_enrolled":false,"id":"cc783f4c-70a8-49b7-b913-26b52dfbccbc","last_modified":1562025211668},{"schema":1562025209421,"derHash":"ubiFHCX2zDXUjhsrd+Pr8FftysmIWkF3rLWjlgRYJh4=","subject":"CN=COMODO/HP Secure Email CA 2,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MH4xCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMSQwIgYDVQQDExtDT01PRE8vSFAgU2VjdXJlIEVtYWlsIENBIDI=","whitelist":false,"attachment":{"hash":"c2e03a2f920b43601df9788753597b0274b7e0641144be0fdf9aa2a4260f9f94","size":2129,"filename":"P0GLZRFPpkxNALwZ7Kj6O3PmIpBgliTbY_rTcBxfLB0=.pem","location":"security-state-staging/intermediates/18a8ce01-f094-4111-ab9e-0578a28dc363.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"P0GLZRFPpkxNALwZ7Kj6O3PmIpBgliTbY/rTcBxfLB0=","crlite_enrolled":false,"id":"b4b7e711-5c6d-4248-b6b2-35bffa9748ae
","last_modified":1562025210174},{"schema":1562025208671,"derHash":"+KplFlF7ONNQEltzHky6I6dQe/XN/T3vPbiRvR3C1Ak=","subject":"SERIALNUMBER=201811,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODEx","whitelist":false,"attachment":{"hash":"5688ca317891d45d552cff0a5b80364d8be585ddc70976061e528244a5262255","size":2333,"filename":"-_BX4AN6l--82ldfEPa8Jt09pmz7zqnrp7P6A0cmnN8=.pem","location":"security-state-staging/intermediates/b549103e-cbc3-4b61-b560-80a0727877c2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+/BX4AN6l++82ldfEPa8Jt09pmz7zqnrp7P6A0cmnN8=","crlite_enrolled":false,"id":"7303be73-95b7-47d9-9433-2c3c91042451","last_modified":1562025209413},{"schema":1562025203410,"derHash":"B/LOVcoapsuZJxmx5CPB0Cwep1mm4uq04VDIgoLiJVA=","subject":"CN=Certigna Services CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MH0xCzAJBgN
VBAYTAkZSMRIwEAYDVQQKDAlESElNWU9USVMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxHTAbBgNVBGEMFE5UUkZSLTQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQQDDBRDZXJ0aWduYSBTZXJ2aWNlcyBDQQ==","whitelist":false,"attachment":{"hash":"daabfa439246bec01c439eeb12080417731f3b5fc130616edf23facbe1995d4b","size":2511,"filename":"Vvyvg4-bOEbI6aO7K28ioVsUfckLqCSKqlIqZTEB_uE=.pem","location":"security-state-staging/intermediates/eafb024c-95d9-45ad-af85-982024cc73e9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vvyvg4+bOEbI6aO7K28ioVsUfckLqCSKqlIqZTEB/uE=","crlite_enrolled":true,"id":"42115fab-f048-4a66-92be-15d909da568b","last_modified":1562025204181},{"schema":1562025202667,"derHash":"myLn+gjT+MbW6fQg2PdWx5E15m0bLXCweQNyHwPb5bY=","subject":"CN=DOMENY SSL OV Certification Authority,O=DOMENY.PL sp. z o.o,L=Krak\u00f3w,ST=Ma\u0142opolskie,C=PL","subjectDN":"MIGEMQswCQYDVQQGEwJQTDEVMBMGA1UECAwMTWHFgm9wb2xza2llMRAwDgYDVQQHDAdLcmFrw7N3MRwwGgYDVQQKExNET01FTlkuUEwgc3AuIHogby5vMS4wLAYDVQQDEyVET01FTlkgU1NMIE9WIENlcnRpZmlj
YXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"6d124a8da18e0ea28bdde6bbae190816c6220594402c01c09264ca9940d4a150","size":2154,"filename":"y6RI9X1eeUkKidF2MrXM7RymKK9CUcax6TB8EJO15E4=.pem","location":"security-state-staging/intermediates/6219f215-f8b2-4671-94d1-1f28176da5df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"y6RI9X1eeUkKidF2MrXM7RymKK9CUcax6TB8EJO15E4=","crlite_enrolled":true,"id":"ac25e523-d7a1-4700-87a8-f528654cc35b","last_modified":1562025203402},{"schema":1562025201928,"derHash":"MTH/29ln180dd3Qq+XcvEFH/TJrkE3WfQ0/h6BERngM=","subject":"CN=TrustOcean EV SSL CA - RSA - 2019,OU=Controlled by Sectigo exclusively for TrustOcean Ltd.+OU=RSA Extended Validation Secure Server - 2019,O=TrustOcean Ltd.,L=Denver,ST=CO,C=US","subjectDN":"MIHoMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPVHJ1c3RPY2VhbiBMdGQuMT4wPAYDVQQLEzVDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIFRydXN0T2NlYW4gTHRkLjE1MDMGA1UECxMsUlNBIEV4dGVuZGVkIFZhbGlkYXR
pb24gU2VjdXJlIFNlcnZlciAtIDIwMTkxKjAoBgNVBAMTIVRydXN0T2NlYW4gRVYgU1NMIENBIC0gUlNBIC0gMjAxOQ==","whitelist":false,"attachment":{"hash":"bb57de69afc6d6f5f59b1c80758edf0ef1791b7a08530fed8903ef18cd25188e","size":2324,"filename":"uG18SfTnbrT8g2zCkpa7kWClIcTyqEW_1iPtChk9nTQ=.pem","location":"security-state-staging/intermediates/6020590f-b065-482b-9549-d56eb98c4b60.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uG18SfTnbrT8g2zCkpa7kWClIcTyqEW/1iPtChk9nTQ=","crlite_enrolled":true,"id":"12413a5f-6a98-4669-8438-f936d9b86ea3","last_modified":1562025202660},{"schema":1562025200417,"derHash":"sQhhc3s+ybEfphVNI5cP+y2r/Ciuamv1bD8yBCZiOa0=","subject":"CN=SECOM Passport for Member PUB CA4,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTQ=","whitelist":false,"attac
hment":{"hash":"100ce60a3bd64526f68ff84f5c51cf0fabb69da5d8bf4709a02d9b8381cf053e","size":1695,"filename":"e0UlwaDksSng0NsuhQLDMdL3HdRLRk89Csk7QJK7Xm4=.pem","location":"security-state-staging/intermediates/5fe7d18d-a5f7-47cc-b17d-78176befba8d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e0UlwaDksSng0NsuhQLDMdL3HdRLRk89Csk7QJK7Xm4=","crlite_enrolled":true,"id":"43cd6bcc-8fa9-4afc-8ef7-d30357eb5641","last_modified":1562025201171},{"schema":1562025198927,"derHash":"SWlaXw9+9u32mBk9me1Iuq3iDqRXQDwRzq1JLEWGZdo=","subject":"CN=TWCA Global EVSSL Certification Authority,OU=Global EVSSL Sub-CA,O=TAIWAN-CA,C=TW","subjectDN":"MHMxCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExHDAaBgNVBAsTE0dsb2JhbCBFVlNTTCBTdWItQ0ExMjAwBgNVBAMTKVRXQ0EgR2xvYmFsIEVWU1NMIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"4f777697d0c427439f9282b53a652b4a868074c5e1ae55a6dfe51dc32d19b817","size":1955,"filename":"3sXbPfqhHfn3hza4ob3X6iuMjfN9qdgOhBAC5GOp-TY=.pem","location":"security-state
-staging/intermediates/d4e10b9c-0b97-413b-97b1-5b93a2c878a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3sXbPfqhHfn3hza4ob3X6iuMjfN9qdgOhBAC5GOp+TY=","crlite_enrolled":true,"id":"b7f1ffd4-4c9e-4762-a0b9-1a840835047b","last_modified":1562025199670},{"schema":1562025196669,"derHash":"Uu+YG6hbwFTFl/CcbKyxNLffl9Yf6u4lF/Tb2Cv47Mo=","subject":"OU=\u7d44\u7e54\u53ca\u5718\u9ad4\u6191\u8b49\u7ba1\u7406\u4e2d\u5fc3,O=\u884c\u653f\u9662,C=TW","subjectDN":"ME0xCzAJBgNVBAYTAlRXMRIwEAYDVQQKDAnooYzmlL/pmaIxKjAoBgNVBAsMIee1hOe5lOWPiuWcmOmrlOaGkeitieeuoeeQhuS4reW/gw==","whitelist":false,"attachment":{"hash":"b85fc65fd55253ce8f8d9427e4bc632f8277e15047e0e4a7d1babca0069e73ab","size":1853,"filename":"b7VNMgYVBy0ME-PSGiNUKsoQ56R9SOLrQt2AlaXwxvc=.pem","location":"security-state-staging/intermediates/fbbe5d3f-d9db-41ad-bfb6-ba438ae13b11.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"b7VNMgYVBy0ME+PSGiNUKsoQ56R9SOLrQt2AlaXwxvc=","crlite_enrolled":false,"id":"62db3b82-de0b-4257-93e2-126
1643f7872","last_modified":1562025197408},{"schema":1562025195931,"derHash":"YoSgO6+uhhow46JaAwQoMG9+tSvQuld6HZYqgJqDDJ4=","subject":"CN=NetLock Min\u0151s\u00edtett Eat. (Class Q Legal) Tan\u00fas\u00edtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIG5MQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTFHMEUGA1UEAww+TmV0TG9jayBNaW7FkXPDrXRldHQgRWF0LiAoQ2xhc3MgUSBMZWdhbCkgVGFuw7pzw610dsOhbnlraWFkw7M=","whitelist":false,"attachment":{"hash":"be44ba2f0e98d91976e0b376d14bfcfbf5e04990413aeb73457eb447f773a585","size":2203,"filename":"wbqAvjVExNzYgkWT-psQa7MDcYIscGSOYZa0cm5x83M=.pem","location":"security-state-staging/intermediates/602c1224-b665-4b69-848a-f07cbc00e0be.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wbqAvjVExNzYgkWT+psQa7MDcYIscGSOYZa0cm5x83M=","crlite_enrolled":true,"id":"73e86e8a-47
ad-4f60-be1d-64ed2011a0bb","last_modified":1562025196662},{"schema":1562025193661,"derHash":"rtXdmlM5aF37Ap9tiaFDNallEsPKzFKymUr4trN/pNI=","subject":"CN=GlobalSign Extended Validation CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MGIxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTgwNgYDVQQDEy9HbG9iYWxTaWduIEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgLSBTSEEyNTYgLSBHMw==","whitelist":false,"attachment":{"hash":"bbc372d9ecdf9fa392a04587c4d036f042f3f09c6f0914cc81e10d9e8e8a3a02","size":1577,"filename":"86fLIetopQLDNxFZ0uMI66Xpl1pFgLlHHn9v6kT0i4I=.pem","location":"security-state-staging/intermediates/a42b26ca-6177-4156-b30c-df67c447df2e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"86fLIetopQLDNxFZ0uMI66Xpl1pFgLlHHn9v6kT0i4I=","crlite_enrolled":true,"id":"6faa42a8-09b8-46c4-9167-2568ddb696c8","last_modified":1562025194416},{"schema":1562025192919,"derHash":"boFQk3bJP7znlHLIQ6Vo6IPLXSPs7qgpmly+nFe87hw=","subject":"CN=Atos TrustedRoot Mailgateway CA 2019,O=Atos,C=DE","subjectD
N":"MEsxLTArBgNVBAMMJEF0b3MgVHJ1c3RlZFJvb3QgTWFpbGdhdGV3YXkgQ0EgMjAxOTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"66f8b8a94ed51f0047bea1a83138cfd3a5d139f5c67d0a0513a6ffab9d53aa8d","size":1930,"filename":"EQQkSccU6u9HYRYQa9ZtgDlg8dInLePxpauqH5cu3yk=.pem","location":"security-state-staging/intermediates/1392833e-1a88-42fa-b9ee-58bdaea81a4e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EQQkSccU6u9HYRYQa9ZtgDlg8dInLePxpauqH5cu3yk=","crlite_enrolled":false,"id":"40af8905-ec8c-43f0-8c5c-3d64cbd00b59","last_modified":1562025193654},{"schema":1562025191421,"derHash":"BHIXdyBR0pIjjzNV9cVDXpuENkzNFD/En5wxzWBUOfA=","subject":"CN=TrustAsia Secure Email CA,OU=www.trustasia.com,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MHQxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMRowGAYDVQQLExF3d3cudHJ1c3Rhc2lhLmNvbTEiMCAGA1UEAxMZVHJ1c3RBc2lhIFNlY3VyZSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"d82324ec120fcf3fcfe7449f
972f518f8bbf990131866eba4f7c7f561bcf6a0f","size":1699,"filename":"TjLSAwYTumO8ghSNmQQzwjA7CtZ3wO75cLt3bYVVIro=.pem","location":"security-state-staging/intermediates/d8683bc8-f975-48c3-94c9-f332895c7592.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TjLSAwYTumO8ghSNmQQzwjA7CtZ3wO75cLt3bYVVIro=","crlite_enrolled":false,"id":"28ed55e4-b148-4d29-9d8d-c9e528950d61","last_modified":1562025192172},{"schema":1562025186932,"derHash":"ecQJGwWxXBaDEot6NV4KrWLhu7w+Xzc1NwwGzE0a+0Q=","subject":"CN=CrossTrust OV CA5,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MFAxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMRowGAYDVQQDExFDcm9zc1RydXN0IE9WIENBNQ==","whitelist":false,"attachment":{"hash":"bd3caa1f305a9f0b5a55466e00fb389199886a78055b526ee4a8fd5a2c317e51","size":1642,"filename":"9QmSs2TRmBuBXXpRPhom-2y54_RQ3KsK4te_JED6g0Q=.pem","location":"security-state-staging/intermediates/0cd79666-328f-4d26-a58d-65b8203303df.pem","mimetype":"application/x-pem-file"},"pubKey
Hash":"9QmSs2TRmBuBXXpRPhom+2y54/RQ3KsK4te/JED6g0Q=","crlite_enrolled":true,"id":"b6b1d83f-6615-4c21-bf97-c5dba8c7d925","last_modified":1562025187668},{"schema":1562025186186,"derHash":"6u77CNVo5/bPbYksq2oi4U8gxvEOOkGM+0KxIwkzM2c=","subject":"CN=MHIN Direct CA,OU=www.mhin.com,O=Michiana Health Information Network,C=US","subjectDN":"MGsxCzAJBgNVBAYTAlVTMSwwKgYDVQQKEyNNaWNoaWFuYSBIZWFsdGggSW5mb3JtYXRpb24gTmV0d29yazEVMBMGA1UECxMMd3d3Lm1oaW4uY29tMRcwFQYDVQQDEw5NSElOIERpcmVjdCBDQQ==","whitelist":false,"attachment":{"hash":"623c45a2681ba34512932f4d0345ac733c2eff7148c61bfbd81939fd0dbde54a","size":2166,"filename":"yM7_IeYu7HtJ1cALcYpLZhIj1S7pQNxaHt7sIarSmPk=.pem","location":"security-state-staging/intermediates/d47781dd-8df0-46fb-ab8f-62555bc1bec2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yM7/IeYu7HtJ1cALcYpLZhIj1S7pQNxaHt7sIarSmPk=","crlite_enrolled":false,"id":"ee38fa45-bfe8-4470-8e7a-828569883e63","last_modified":1562025186923},{"schema":1562025183926,"derHash":"EmUF6SkzTMP
HPugm5aThxK25DHEIBXWfbLaf+st2onY=","subject":"CN=Trust Provider B.V. RSA CA G1,OU=Domain Validated SSL,O=Trust Provider B.V.,C=NL","subjectDN":"MHIxCzAJBgNVBAYTAk5MMRwwGgYDVQQKExNUcnVzdCBQcm92aWRlciBCLlYuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEmMCQGA1UEAxMdVHJ1c3QgUHJvdmlkZXIgQi5WLiBSU0EgQ0EgRzE=","whitelist":false,"attachment":{"hash":"e0afbf8c38e3854bdf1fa7f03733cec06fb616292b10ea38c79ba608c5a91db2","size":1695,"filename":"8zsd4iJkDVP9ORk6JvjRp3miQdmu0pE5mlQEcNsLlgw=.pem","location":"security-state-staging/intermediates/3af9fc7d-4e85-4eae-b097-00f4c9fcc597.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8zsd4iJkDVP9ORk6JvjRp3miQdmu0pE5mlQEcNsLlgw=","crlite_enrolled":false,"id":"b2561bcb-96c7-4c29-a072-a3ed78f089d7","last_modified":1562025184653},{"schema":1562025182429,"derHash":"zIW/mX0pKdOPwB6BIrMw+e++ONs789gBd9wSvVWQAsQ=","subject":"CN=XiPS CA2,O=XiPS,C=JP","subjectDN":"MC8xCzAJBgNVBAYTAkpQMQ0wCwYDVQQKEwRYaVBTMREwDwYDVQQDEwhYaVBTIENBMg==","whitelist":false,"attachmen
t":{"hash":"5663f50d87b7c18b3c99b0b5ad1bf10363286a03fcb05ab9c0fb34760c55e21f","size":1561,"filename":"PaXj-eLR-CVXHDdDFA2h3HDdlslWT-0lS7xNjPnqusM=.pem","location":"security-state-staging/intermediates/ed9b6200-0079-4951-a12a-4ee37a29fadf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PaXj+eLR+CVXHDdDFA2h3HDdlslWT+0lS7xNjPnqusM=","crlite_enrolled":false,"id":"123b4df1-cf35-410b-bfd9-b8a9714c0056","last_modified":1562025183180},{"schema":1562025181676,"derHash":"P3hQJbzPrKRwGhc0zg97MM5BBpQsjZL0G3CwZ+1l01Q=","subject":"CN=KPN PKIoverheid Organisatie Persoon CA - G3,O=KPN Corporate Market B.V.,C=NL","subjectDN":"MGcxCzAJBgNVBAYTAk5MMSIwIAYDVQQKDBlLUE4gQ29ycG9yYXRlIE1hcmtldCBCLlYuMTQwMgYDVQQDDCtLUE4gUEtJb3ZlcmhlaWQgT3JnYW5pc2F0aWUgUGVyc29vbiBDQSAtIEcz","whitelist":false,"attachment":{"hash":"0e097c3463e82d7ba7f80fa33b0a12ba5995651fc226460fb6047bcb593fe4a7","size":2511,"filename":"z6o4qaIdcAF_cYD5IoV-HIyALNwwhBoQqpMK1NirbXg=.pem","location":"security-state-staging/intermediates/5
becb1c9-6ed2-4cdd-bba9-0ecc641e7d12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z6o4qaIdcAF/cYD5IoV+HIyALNwwhBoQqpMK1NirbXg=","crlite_enrolled":false,"id":"9324909c-8842-426a-9bd9-339ea000a9a5","last_modified":1562025182421},{"schema":1562025179816,"derHash":"ZP1/ZrgF7w+uCdrAbq0amrXCjm8krQdZmW00mYf+5+I=","subject":"CN=HERTZ SHA256 CA - G2,O=The HERTZ Corporation,ST=Florida,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdGbG9yaWRhMR4wHAYDVQQKExVUaGUgSEVSVFogQ29ycG9yYXRpb24xHTAbBgNVBAMTFEhFUlRaIFNIQTI1NiBDQSAtIEcy","whitelist":false,"attachment":{"hash":"e265e407a875697a7f656b762252ca51920bf962f795981ca45b3df5305744ad","size":1841,"filename":"0mE9i9waw6FU7T9jthzR6RWqVlYfOZWnDt__W7w0MbE=.pem","location":"security-state-staging/intermediates/b47806d4-9344-4686-991c-48d34375975f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0mE9i9waw6FU7T9jthzR6RWqVlYfOZWnDt//W7w0MbE=","crlite_enrolled":false,"id":"aac644a1-6f9b-40fb-899e-d6c96e2ef1dc","last_modified":15620251
80912},{"schema":1562025176064,"derHash":"8SJB7jTAOmCNNNvA6kZeG9GqEwkVVPnU0IYlP/POg9Q=","subject":"CN=DC Government SHA2 EV Intermediate CA,OU=Office of the Chief Technology Officer,O=Government of the District of Columbia,C=US","subjectDN":"MIGfMQswCQYDVQQGEwJVUzEvMC0GA1UEChMmR292ZXJubWVudCBvZiB0aGUgRGlzdHJpY3Qgb2YgQ29sdW1iaWExLzAtBgNVBAsTJk9mZmljZSBvZiB0aGUgQ2hpZWYgVGVjaG5vbG9neSBPZmZpY2VyMS4wLAYDVQQDEyVEQyBHb3Zlcm5tZW50IFNIQTIgRVYgSW50ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{"hash":"14472d3dc922dcba7c834374f5b8121efcd08cab9d0778d052e329913bee403d","size":2073,"filename":"D6bVPPyHKUFV0WmvSS6nCMgaQId_SQKugGjOOT48QXE=.pem","location":"security-state-staging/intermediates/7e3f4ba8-098a-4f7e-a594-d98f5caa1fa9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D6bVPPyHKUFV0WmvSS6nCMgaQId/SQKugGjOOT48QXE=","crlite_enrolled":true,"id":"2316b3da-de73-40e0-8b36-7f2ad4206eec","last_modified":1562025176800},{"schema":1562025175329,"derHash":"Uc8P/8MlP8ATr3hvlbGQEJ+Mh/NN/RzsRMRY
iHifU1U=","subject":"CN=GeoTrust DV SSL CA - G3,OU=Domain Validated SSL,O=GeoTrust Inc.,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEgMB4GA1UEAxMXR2VvVHJ1c3QgRFYgU1NMIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"63a067013ea0d27be1b9a024be996607207d1aa923f90c6456d060fae4240284","size":1597,"filename":"l2yRLumd__mpm_WYi63mkNBZrNOpv-iqbuuqZHz2FZk=.pem","location":"security-state-staging/intermediates/ed2fd4a4-5cbc-463b-bc2a-b41bc797b801.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"l2yRLumd//mpm/WYi63mkNBZrNOpv+iqbuuqZHz2FZk=","crlite_enrolled":true,"id":"0fbfc5ef-c42c-4bdc-ad8a-b5c8aacf75c5","last_modified":1562025176056},{"schema":1562025173823,"derHash":"SC9pNhYtrE73dG5hz4HzVzwwip8M5rQatuLj+Jt59bo=","subject":"CN=MilleniumSign for ClientCert RSA,O=MilleniumSign Limited,C=MU","subjectDN":"MFgxCzAJBgNVBAYTAk1VMR4wHAYDVQQKDBVNaWxsZW5pdW1TaWduIExpbWl0ZWQxKTAnBgNVBAMMIE1pbGxlbml1bVNpZ24gZm9yIENsaWVudEN
lcnQgUlNB","whitelist":false,"attachment":{"hash":"222e53090c93ea7a3779daaa08cc08cf97e15f2266f97a6ad486be1ac818b4b2","size":2446,"filename":"7RR-mxCqu0zXAK2CPP57e8q0pE8ACz7Hfr7VCAPuMzs=.pem","location":"security-state-staging/intermediates/d35d4472-28b5-4102-be24-ddb035487984.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7RR+mxCqu0zXAK2CPP57e8q0pE8ACz7Hfr7VCAPuMzs=","crlite_enrolled":false,"id":"e8790135-766c-4bf9-83a4-b937fd0e2db0","last_modified":1562025174583},{"schema":1562025173067,"derHash":"kf3rUtQmUSC4Q7GV0bbNtc5hJRhlpFo+kg5hD92mYNM=","subject":"CN=DigiCert Federated ID L2 CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0IEZlZGVyYXRlZCBJRCBMMiBDQQ==","whitelist":false,"attachment":{"hash":"730111e89089443c53b0d835562133c99ad97378a9c7763e7061ed7377bd59ae","size":1825,"filename":"uFgNVuVHMiQAV8MwYU1yjg_jHUWYZx_q2sWdfqJ0Pfo=.pem","location":"security
-state-staging/intermediates/8c127577-0572-4da9-9b18-64d923f10edb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uFgNVuVHMiQAV8MwYU1yjg/jHUWYZx/q2sWdfqJ0Pfo=","crlite_enrolled":false,"id":"eaa80a7d-defb-4cf5-94e8-a99a54278063","last_modified":1562025173815},{"schema":1562025172327,"derHash":"9051Cl3PANXoUWimDJY+wq69yjrbApHTKB2PUhumo70=","subject":"CN=SSL.com Code Signing Intermediate CA ECC R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHgxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxNDAyBgNVBAMMK1NTTC5jb20gQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBDQSBFQ0MgUjI=","whitelist":false,"attachment":{"hash":"5addb3224fc91346ad8299e095d7d8bb81f96f9f55d9ed65dae3f496519b4909","size":1264,"filename":"i4YxhNKtWxupjB-UY-D9fvW_PWFEagq-NIqDjFBiMww=.pem","location":"security-state-staging/intermediates/5e0dbc1f-6963-4872-9057-16ae085e9dd3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i4YxhNKtWxupjB+UY+D9fvW/PWFEagq+NIqDjFBiMww=","crlite_
enrolled":false,"id":"fe2dcca1-885e-4fd3-99b5-2ac3a3ac9bf6","last_modified":1562025173060},{"schema":1562025171561,"derHash":"kdp6XKYTSHUAiZTCUNrZIh8MXi1OPglz95Ydy9+3Q+w=","subject":"CN=Sectigo ECC Client Authentication and Secure Email CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGWMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxPjA8BgNVBAMTNVNlY3RpZ28gRUNDIENsaWVudCBBdXRoZW50aWNhdGlvbiBhbmQgU2VjdXJlIEVtYWlsIENB","whitelist":false,"attachment":{"hash":"77d9497e0c15f70b924892d7c86e086a085789309a6a79986df9aee018ada485","size":1325,"filename":"rYhp-cXTMtrastq0z_cB6bdqkXAleWeAfwJUCvBPVtw=.pem","location":"security-state-staging/intermediates/34a6b890-81a2-488f-a509-9e82908e5f74.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rYhp+cXTMtrastq0z/cB6bdqkXAleWeAfwJUCvBPVtw=","crlite_enrolled":false,"id":"fa31210d-e75b-4ca0-a8d2-7401b0b5850f","last_modified":1562025172319},{"schema":15620
25170804,"derHash":"Viy7y96+6zy1WUa9ziSMpKYj0rpud7Y7dU06Vx9n36I=","subject":"CN=Fraunhofer User CA - G02,OU=Fraunhofer Corporate PKI,O=Fraunhofer,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGMMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjETMBEGA1UECgwKRnJhdW5ob2ZlcjEhMB8GA1UECwwYRnJhdW5ob2ZlciBDb3Jwb3JhdGUgUEtJMSEwHwYDVQQDDBhGcmF1bmhvZmVyIFVzZXIgQ0EgLSBHMDI=","whitelist":false,"attachment":{"hash":"432002444ca45071e8819aab9fc1a1245de7b320fabca6185adea7a8e46ddb6f","size":2024,"filename":"tI25lyfua-OITC74D7J6Z7TyLi_ZfzDhng7frVgmB8Q=.pem","location":"security-state-staging/intermediates/50b461d3-a1bf-4841-8d0b-db184a8ef60c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tI25lyfua+OITC74D7J6Z7TyLi/ZfzDhng7frVgmB8Q=","crlite_enrolled":false,"id":"a40de547-e3aa-46b0-bb6e-12b28685b132","last_modified":1562025171553},{"schema":1562025168582,"derHash":"nmvF+ezFJGDo7cAsZE0b4cufIxb0Ha87YWoLIFgpSzE=","subject":"CN=Symantec Class 3 EV SSL CA - G3,OU=Symantec Trust Netwo
rk,O=Symantec Corporation,C=US","subjectDN":"MHcxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEoMCYGA1UEAxMfU3ltYW50ZWMgQ2xhc3MgMyBFViBTU0wgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"608d82155649d760dc44ec6d53af4233429881ad64762476c94fdf570c9f572e","size":1853,"filename":"gMxWOrX4PMQesK9qFNbYBxjBfjUvlkn_vN1n-L9lE5E=.pem","location":"security-state-staging/intermediates/7e855262-9907-44b6-b613-7e7c05da23f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gMxWOrX4PMQesK9qFNbYBxjBfjUvlkn/vN1n+L9lE5E=","crlite_enrolled":true,"id":"01baeb08-779e-4097-bfb8-cb384ac992d8","last_modified":1562025169317},{"schema":1562025166063,"derHash":"4i5rJZCOEQemB68GDgsk5QxtlWL/BPRVvg+N9BpQMsA=","subject":"CN=SZAFIR Trusted CA2,O=Krajowa Izba Rozliczeniowa S.A.,C=PL","subjectDN":"MFQxCzAJBgNVBAYTAlBMMSgwJgYDVQQKDB9LcmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRswGQYDVQQDDBJTWkFGSVIgVHJ1c3RlZCBDQTI=","whitelist":false,"attachment":{"ha
sh":"b998d1830338d9ca1bada5e5e1a33ef3a5f89c9c13ccfa1b8ea7a2f3aea980a1","size":1825,"filename":"Ea2smccTC5mFDdTrs5gKD6HaYthL4lhPx97QmLgbFQc=.pem","location":"security-state-staging/intermediates/f9a9ee57-a010-4240-a6e4-f16037c4556f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ea2smccTC5mFDdTrs5gKD6HaYthL4lhPx97QmLgbFQc=","crlite_enrolled":true,"id":"acce9c9e-9a82-41d4-b3c0-5cd8eeaf7bef","last_modified":1562025166794},{"schema":1562025165326,"derHash":"eNycpfTCkT8/t0rFLf/80jANpady/CuExToudEN+3SA=","subject":"CN=STRATO SSL - G2,OU=Domain Validated SSL,O=STRATO AG,C=DE","subjectDN":"MFoxCzAJBgNVBAYTAkRFMRIwEAYDVQQKEwlTVFJBVE8gQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRgwFgYDVQQDEw9TVFJBVE8gU1NMIC0gRzI=","whitelist":false,"attachment":{"hash":"97b250a9bb08b735bbb140ac1e4a20bfc87008a831c5820e8596eafb6230e542","size":1524,"filename":"sHuZJYYMcPPO0syUwdicHEjFhiXf8r_Bt_cMNeh2WcA=.pem","location":"security-state-staging/intermediates/19be972c-855b-4247-9a3f-930662fc00db.pem","mi
metype":"application/x-pem-file"},"pubKeyHash":"sHuZJYYMcPPO0syUwdicHEjFhiXf8r/Bt/cMNeh2WcA=","crlite_enrolled":false,"id":"01f90665-8998-4aa2-9af5-82d8cc7e756c","last_modified":1562025166055},{"schema":1562025162348,"derHash":"DOM6QnGx5Gz/tDLbg6T5xSYa+IvyRR2K75Ah9gsgvmU=","subject":"CN=Atos TrustedRoot Client-CA for equensWorldlinePartner 2019,O=Atos,C=DE","subjectDN":"MGExQzBBBgNVBAMMOkF0b3MgVHJ1c3RlZFJvb3QgQ2xpZW50LUNBIGZvciBlcXVlbnNXb3JsZGxpbmVQYXJ0bmVyIDIwMTkxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"a0b74fdfcd60684e6ae62fd67423cdebb5cd9e677c08d4fd376a50429722dfac","size":1959,"filename":"iwM-2PVlSP6blr9vu-dLHZGkTj3xQhLSJ2vrN5miZ0Q=.pem","location":"security-state-staging/intermediates/06cc9ce9-20a6-4fd8-baf1-d9b6179addf9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iwM+2PVlSP6blr9vu+dLHZGkTj3xQhLSJ2vrN5miZ0Q=","crlite_enrolled":false,"id":"d9d8d521-dd27-47c2-b709-26ac9a7fd92a","last_modified":1562025163074},{"schema":1562025161609
,"derHash":"jXxJnX/p7uwF2etC8D7+QCgHkZgD6ObNbB8r9e9qfY8=","subject":"CN=GeoTrust Code Signing CA - G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJjAkBgNVBAMTHUdlb1RydXN0IENvZGUgU2lnbmluZyBDQSAtIEcy","whitelist":false,"attachment":{"hash":"249e928f4de591132364a871e84037a9815e30634a553077a2fe538b4236fdde","size":1796,"filename":"f8Aqq2cYQjeMInX4NF9BwX9DWyG90RZdekvgJeybb6E=.pem","location":"security-state-staging/intermediates/1193d8fc-a0a0-449e-813d-6f173f7abfcd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"f8Aqq2cYQjeMInX4NF9BwX9DWyG90RZdekvgJeybb6E=","crlite_enrolled":false,"id":"436fecb6-3d28-4509-af27-78c80daf1fa7","last_modified":1562025162340},{"schema":1562025160859,"derHash":"rB7FVjGOPqcPjwTgOg8mM7/nOZI1moEBRf/fGkJzlu4=","subject":"CN=TeleSec ServerPass Class 2 CA,OU=T-Systems Trust Center,O=T-Systems International GmbH,POSTALCODE=57250,STREET=Untere Industriestr. 20,L=
Netphen,ST=Nordrhein Westfalen,C=DE","subjectDN":"MIHfMQswCQYDVQQGEwJERTElMCMGA1UECgwcVC1TeXN0ZW1zIEludGVybmF0aW9uYWwgR21iSDEfMB0GA1UECwwWVC1TeXN0ZW1zIFRydXN0IENlbnRlcjEcMBoGA1UECAwTTm9yZHJoZWluIFdlc3RmYWxlbjEOMAwGA1UEEQwFNTcyNTAxEDAOBgNVBAcMB05ldHBoZW4xIDAeBgNVBAkMF1VudGVyZSBJbmR1c3RyaWVzdHIuIDIwMSYwJAYDVQQDDB1UZWxlU2VjIFNlcnZlclBhc3MgQ2xhc3MgMiBDQQ==","whitelist":false,"attachment":{"hash":"76978532a4380253c7bbfe0ea07b7f0f9f595824a78f411a83835514c3a8d76f","size":2052,"filename":"c3jf-L8VIAFQnJJDM6Mfb4MtI1JnhVS8JwZHMwJj28M=.pem","location":"security-state-staging/intermediates/54f348f3-2ed6-4b67-a108-3c418ed93826.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"c3jf+L8VIAFQnJJDM6Mfb4MtI1JnhVS8JwZHMwJj28M=","crlite_enrolled":true,"id":"b19a4517-16ee-477e-bdf2-a6c9a655f216","last_modified":1562025161601},{"schema":1562025160116,"derHash":"ApUjhC0j7zlfVynjUlIvgEJlhRgL02dowayt0i2Op9o=","subject":"CN=The University of Texas Health Science Center at Houston RSA CA,O=The University
of Texas Health Science Center at Houston,L=Houston,ST=TX,C=US","subjectDN":"MIG5MQswCQYDVQQGEwJVUzELMAkGA1UECBMCVFgxEDAOBgNVBAcTB0hvdXN0b24xQTA/BgNVBAoTOFRoZSBVbml2ZXJzaXR5IG9mIFRleGFzIEhlYWx0aCBTY2llbmNlIENlbnRlciBhdCBIb3VzdG9uMUgwRgYDVQQDEz9UaGUgVW5pdmVyc2l0eSBvZiBUZXhhcyBIZWFsdGggU2NpZW5jZSBDZW50ZXIgYXQgSG91c3RvbiBSU0EgQ0E=","whitelist":false,"attachment":{"hash":"14f00997a0e1aae935a7e964b272b85446ca14ca29a7f9a1a75c583f98a17633","size":2223,"filename":"X8zUA8bZTNKvwOf9_GKpmKtl4dD17EdNxWTm4nwRGgI=.pem","location":"security-state-staging/intermediates/2221c890-496b-4c16-b0bd-1ead2b97e050.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"X8zUA8bZTNKvwOf9/GKpmKtl4dD17EdNxWTm4nwRGgI=","crlite_enrolled":false,"id":"987637d9-0c2e-42f7-b676-b2e53c0955f0","last_modified":1562025160852},{"schema":1562025159345,"derHash":"I7o6l8WA3ywxZiTX+l92Y1gCYcsgSBQsc6PoaxE+sm0=","subject":"CN=Mass HIway CA,OU=Orion Health Direct Secure Messaging,O=Massachusetts Health Information Highway (Mass
HIway),C=US","subjectDN":"MIGUMQswCQYDVQQGEwJVUzE+MDwGA1UEChM1TWFzc2FjaHVzZXR0cyBIZWFsdGggSW5mb3JtYXRpb24gSGlnaHdheSAoTWFzcyBISXdheSkxLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEWMBQGA1UEAxMNTWFzcyBISXdheSBDQQ==","whitelist":false,"attachment":{"hash":"71b0cd912fe6d5f87208dacb9ba968dcd735896e9970ece8e45dd1ecf0cc4d6e","size":2239,"filename":"PVEW06JTRRwMsNF9P6Oq0ePQfB7-eaqQtzqjaUZbq3Y=.pem","location":"security-state-staging/intermediates/9410489c-fa40-4eaa-8d3b-da65e27f51ef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PVEW06JTRRwMsNF9P6Oq0ePQfB7+eaqQtzqjaUZbq3Y=","crlite_enrolled":false,"id":"07055610-8ad6-4cb4-bbe5-1cd78eaed258","last_modified":1562025160109},{"schema":1562025158603,"derHash":"YGNr4vKU7AePTHJpZLTdUCscguCZz3dWMeiD/u5F+VE=","subject":"CN=EC-GENCAT,OU=Serveis Publics de Certificacio ECV-1+OU=Vegeu https://www.catcert.net/verCIC-1 (c)03+OU=Generalitat de Catalunya,O=Agencia Catalana de Certificacio (NIF Q-0801176-I),C=ES","subjectDN":"MIH
pMQswCQYDVQQGEwJFUzE7MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8gKE5JRiBRLTA4MDExNzYtSSkxLjAsBgNVBAsTJVNlcnZlaXMgUHVibGljcyBkZSBDZXJ0aWZpY2FjaW8gRUNWLTExNjA0BgNVBAsTLVZlZ2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQubmV0L3ZlckNJQy0xICAoYykwMzEhMB8GA1UECxMYR2VuZXJhbGl0YXQgZGUgQ2F0YWx1bnlhMRIwEAYDVQQDEwlFQy1HRU5DQVQ=","whitelist":false,"attachment":{"hash":"ed647ac49271c35288aad77057c157edd24e55f000681fa746f99ab847142e8f","size":2629,"filename":"plh85tWIetVs5VcJnItuNLDy-XNaKKGitW1elxmTBeI=.pem","location":"security-state-staging/intermediates/93a7595b-5765-4a71-9a9d-ad56d74a8ce0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"plh85tWIetVs5VcJnItuNLDy+XNaKKGitW1elxmTBeI=","crlite_enrolled":false,"id":"1b234c30-ce6d-4884-9629-a002cc6d89fb","last_modified":1562025159338},{"schema":1562025156354,"derHash":"QZsMmta4cqixu4c0GvY+6S5psnuZZmLnMwMvEogQjfs=","subject":"CN=GeoTrust EV SSL CA - G6,O=GeoTrust Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSAwHgYDV
QQDExdHZW9UcnVzdCBFViBTU0wgQ0EgLSBHNg==","whitelist":false,"attachment":{"hash":"e3ace3997f5254862ba31b6b1b032f6e2ffc20f9bba4c0f616b8909fecf8009e","size":1906,"filename":"wrSQwdbHfW1CspprUJ7cm0XLtkDB3nyY2bZn6MZqHL8=.pem","location":"security-state-staging/intermediates/24479845-1d51-479a-8e01-ffa788643f1a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wrSQwdbHfW1CspprUJ7cm0XLtkDB3nyY2bZn6MZqHL8=","crlite_enrolled":false,"id":"3b445982-59e3-490a-8362-c15f65d89a41","last_modified":1562025157120},{"schema":1562025155566,"derHash":"tpG0appRDb1muYnamtBpBKwGRz2NDXnyGV1rE/+0oYM=","subject":"CN=TrustSign ECC OV CA,O=Ziwit,L=Montpellier,ST=Herault,C=FR","subjectDN":"MGMxCzAJBgNVBAYTAkZSMRAwDgYDVQQIEwdIZXJhdWx0MRQwEgYDVQQHEwtNb250cGVsbGllcjEOMAwGA1UEChMFWml3aXQxHDAaBgNVBAMTE1RydXN0U2lnbiBFQ0MgT1YgQ0E=","whitelist":false,"attachment":{"hash":"ec54abad16f8fa60b0a392691a78c2f7503476682a33ddb306dfe52826034ecf","size":1276,"filename":"zdcn7aFVDOpjk4ry7Di1KqCcZhqCF7892ueBmfuRY2g=.pem","loc
ation":"security-state-staging/intermediates/3a07e49f-0b15-4531-b4f7-785fc87be9ff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zdcn7aFVDOpjk4ry7Di1KqCcZhqCF7892ueBmfuRY2g=","crlite_enrolled":false,"id":"0a2ba468-3c5c-4619-add7-a43dba6c5dce","last_modified":1562025156346},{"schema":1562025154811,"derHash":"/alHIIv6MgOmxXuHFKZHtwCeUWjoiVE0VFCx0tP5Gn0=","subject":"CN=TERENA eScience Personal CA 3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MHIxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEmMCQGA1UEAxMdVEVSRU5BIGVTY2llbmNlIFBlcnNvbmFsIENBIDM=","whitelist":false,"attachment":{"hash":"7ea6124756c90b6331413e85db4359452c378d63911d5b07dbce10ad0631a783","size":1804,"filename":"D4s14JIoSBMzTNeUUcWADRb_-SykkRSe9uuLuoU5ots=.pem","location":"security-state-staging/intermediates/409968e6-3674-4763-a739-1304627ae2d5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D4s14JIoSBMzTNeUUcWADRb/+SykkRSe9uuLuoU5ots=","crlit
e_enrolled":true,"id":"03f1b517-d8b6-4d50-8c17-fb4f5025f7b1","last_modified":1562025155558},{"schema":1562025153323,"derHash":"jNlTxQYii/HXTWBi6R5+CHPq67sZ+/IArK3CODAAa4M=","subject":"CN=TrustAsia RSA EV SSL Server CA,OU=Controlled by COMODO exclusively for TrustAsia Technologies,O=TrustAsia Technologies\\, Inc.,ST=Shanghai,C=CN","subjectDN":"MIG2MQswCQYDVQQGEwJDTjERMA8GA1UECBMIU2hhbmdoYWkxJTAjBgNVBAoTHFRydXN0QXNpYSBUZWNobm9sb2dpZXMsIEluYy4xRDBCBgNVBAsTO0NvbnRyb2xsZWQgYnkgQ09NT0RPIGV4Y2x1c2l2ZWx5IGZvciBUcnVzdEFzaWEgVGVjaG5vbG9naWVzMScwJQYDVQQDEx5UcnVzdEFzaWEgUlNBIEVWIFNTTCBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"70e45d2feec0fc507a7142b382526e399bb9e3bc67d30403aa926b3762d1921b","size":2263,"filename":"GxkkcEUvgSYWq0Iy2T9NnbqmBzYGl6Xday5FGhp66kM=.pem","location":"security-state-staging/intermediates/f9ebbc5b-f149-4a4f-8052-4b6f0b63152b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GxkkcEUvgSYWq0Iy2T9NnbqmBzYGl6Xday5FGhp66kM=","crlite_enrolled":false,"id":"e58a
1d0e-c454-44c3-a00f-02c0d4483afc","last_modified":1562025154062},{"schema":1562025152565,"derHash":"Y1r2iJ9JBg/g57q8DyMxT7EY87GCQ90X9H2GR6aWhLE=","subject":"CN=Thawte Partner CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MFsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xGjAYBgNVBAMTEVRoYXd0ZSBQYXJ0bmVyIENB","whitelist":false,"attachment":{"hash":"60ece73007734d78c9e04b93695af5557289e36eb46cfe36246074d65ebbd645","size":1630,"filename":"W91BaGXmCLPVN1dHiQP6qf3bRnkklNI0e470b1Yl6Hc=.pem","location":"security-state-staging/intermediates/b4cae8e4-1f4c-4f8f-8e6b-a5611240bcf7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"W91BaGXmCLPVN1dHiQP6qf3bRnkklNI0e470b1Yl6Hc=","crlite_enrolled":false,"id":"238b8a15-e417-4895-866a-8dc86bb8a4c8","last_modified":1562025153315},{"schema":1562025151821,"derHash":"lb5tPC4qOidpXzsxO26vDLoT7VRQ0gQdR9zVeu98e+s=","subject":"CN=MilleniumSign Code Signing Certificate CA RSA R3,O=MilleniumSign Limited,L=Eb
ene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGSMQswCQYDVQQGEwJNVTEYMBYGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTkwNwYDVQQDDDBNaWxsZW5pdW1TaWduIENvZGUgU2lnbmluZyBDZXJ0aWZpY2F0ZSBDQSBSU0EgUjM=","whitelist":false,"attachment":{"hash":"aa16bf81f675c6d11a25b78e5994acc69a324c06f3cc278413284cf9ec7b3b19","size":2584,"filename":"l_0NH_ikSLrTCKMvvz6dkNzfx-BPk9wO2rAM1fHHEpE=.pem","location":"security-state-staging/intermediates/632dc22f-8e34-49f2-8ae9-bf7551b8d988.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"l/0NH/ikSLrTCKMvvz6dkNzfx+BPk9wO2rAM1fHHEpE=","crlite_enrolled":false,"id":"3dc118b2-773a-4754-a647-50c4ea325ca4","last_modified":1562025152558},{"schema":1562025150329,"derHash":"w2g/fZF1Qhna2k6Nww5LGL05KLU9Ork9BzhLxYcc41U=","subject":"CN=Cybertrust Japan Secure Server ECC CA,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MGIxCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEuMCwGA1UEAxMlQ3liZXJ0cnVzdCBKYXB
hbiBTZWN1cmUgU2VydmVyIEVDQyBDQQ==","whitelist":false,"attachment":{"hash":"4ef5e6f2d2f8ff4b8ddd818cd5d7d27891e39644ea2ce02225a9d9ce00621aa3","size":1187,"filename":"QNrgssEKlwJV3LCOAwSPpkc3S6pOvGY2WT_YKfPuvVU=.pem","location":"security-state-staging/intermediates/e169883d-c67d-422b-9497-6e692391df75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QNrgssEKlwJV3LCOAwSPpkc3S6pOvGY2WT/YKfPuvVU=","crlite_enrolled":false,"id":"1add0595-65df-4e38-a378-f1ca21b6bd9f","last_modified":1562025151073},{"schema":1562025148047,"derHash":"o1f9tXSI6jf48c1poBa4Z3+thZJjKlGtqULEcVvxfh4=","subject":"CN=FUJIFILM Fnet CA - G2,O=Fuji Xerox,C=JP","subjectDN":"MEIxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MR4wHAYDVQQDExVGVUpJRklMTSBGbmV0IENBIC0gRzI=","whitelist":false,"attachment":{"hash":"7284b6f8f1a8e6cb3529c35f3bc5ec0859430fef3c6f8a621fc05d84037e0f40","size":1479,"filename":"7zYxtJ9jLwFb0WEOBLAAo-vuoQMJ0Xpx70rmlp9xdfY=.pem","location":"security-state-staging/intermediates/06378283-1c8c-45ce-a045
-f2e678089f5f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7zYxtJ9jLwFb0WEOBLAAo+vuoQMJ0Xpx70rmlp9xdfY=","crlite_enrolled":false,"id":"c88511d0-5e08-4e63-9656-6e16d27f3978","last_modified":1562025148790},{"schema":1562025146538,"derHash":"z28k/+SPhAinXPrfK2X4pOQXLzt8JMQbW3SB0kAYGXw=","subject":"CN=Symantec Class 3 Organizational CA - G3,OU=Symantec Trust Network+OU=Insattningsgaranti Service CA,O=Symantec Corporation,C=US","subjectDN":"MIGnMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxJjAkBgNVBAsTHUluc2F0dG5pbmdzZ2FyYW50aSBTZXJ2aWNlIENBMTAwLgYDVQQDEydTeW1hbnRlYyBDbGFzcyAzIE9yZ2FuaXphdGlvbmFsIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"c79aef06bad6276fc86a2e31fb1c6f204f6e41a307a218d5e07fd3e65032588b","size":2097,"filename":"nqV8AzrYXrBySpqYUyy2yG0H7CWZY0WpjPUzO0eO4bE=.pem","location":"security-state-staging/intermediates/d5d01852-cb45-4081-80e5-4f7ff5e74906.pem","mimetype":"application/x-pem-file"},"pubKeyH
ash":"nqV8AzrYXrBySpqYUyy2yG0H7CWZY0WpjPUzO0eO4bE=","crlite_enrolled":false,"id":"649f0c89-bf4f-4775-9d3c-d22bb75f0d0c","last_modified":1562025147299},{"schema":1562025145776,"derHash":"0cIAnUcoNa+6lMyKywbdDHJxOK4ec4NDlNJ7DAbPEmU=","subject":"CN=KeystoneHIE KeyHIE CA,OU=Orion Health Direct Secure Messaging,O=Keystone Health Information Exchange (KeyHIE),C=US","subjectDN":"MIGUMQswCQYDVQQGEwJVUzE2MDQGA1UEChMtS2V5c3RvbmUgSGVhbHRoIEluZm9ybWF0aW9uIEV4Y2hhbmdlIChLZXlISUUpMS0wKwYDVQQLEyRPcmlvbiBIZWFsdGggRGlyZWN0IFNlY3VyZSBNZXNzYWdpbmcxHjAcBgNVBAMTFUtleXN0b25lSElFIEtleUhJRSBDQQ==","whitelist":false,"attachment":{"hash":"98e266e29f1b0debc92e5f5f678ff38e4063e78bd781620b0312e9323a4d89b4","size":2316,"filename":"BqFOY5ec4fQq7Sh8blvP9sX_mHtMzqYivI5aRbj6LMc=.pem","location":"security-state-staging/intermediates/da472eb5-f686-41e8-ac2a-b967448f0e11.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BqFOY5ec4fQq7Sh8blvP9sX/mHtMzqYivI5aRbj6LMc=","crlite_enrolled":false,"id":"66d93205-2931-4627
-8a5d-ea5331932a90","last_modified":1562025146529},{"schema":1562025145009,"derHash":"VnmkMeedTrnulnxg2HA8fHj0Q/cduXFX5DBZ3kLYUN8=","subject":"CN=KPN BV PKIoverheid Organisatie Server CA - G3,O=KPN B.V.,C=NL","subjectDN":"MHExCzAJBgNVBAYTAk5MMREwDwYDVQQKDAhLUE4gQi5WLjEXMBUGA1UEYQwOTlRSTkwtMjcxMjQ3MDExNjA0BgNVBAMMLUtQTiBCViBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBTZXJ2ZXIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"afa70e68747e22a197469ee8aea83455014ad7e290fde28fd13e2f68a485c72c","size":2601,"filename":"rW1GnpJmh2k9F6uNIGFDm27MmL0j4O1CwybyyFn-TXs=.pem","location":"security-state-staging/intermediates/317d0f28-56a8-47b7-b730-5bc6a31489ae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rW1GnpJmh2k9F6uNIGFDm27MmL0j4O1CwybyyFn+TXs=","crlite_enrolled":true,"id":"2780fe8e-e8a3-4eae-bb45-d2eddbf234bf","last_modified":1562025145768},{"schema":1562025142734,"derHash":"wAqBg8mGWghHwBFY94Wl813Li1lse/Rv1kl/cvAuXjI=","subject":"CN=TWCA InfoSec User CA,OU=User CA,O=TAIWAN-CA Inc.,C=TW","
subjectDN":"MFcxCzAJBgNVBAYTAlRXMRcwFQYDVQQKEw5UQUlXQU4tQ0EgSW5jLjEQMA4GA1UECxMHVXNlciBDQTEdMBsGA1UEAxMUVFdDQSBJbmZvU2VjIFVzZXIgQ0E=","whitelist":false,"attachment":{"hash":"6f175666ee2b368e75d584321a8ac5028a163f7f1f691e5f36e059f87f6f5015","size":1666,"filename":"0XL_diXmZHRX9sGpYNhcrViPrqHXxyYwucHs8TA_5W8=.pem","location":"security-state-staging/intermediates/8e6bf5f6-5604-4d8c-a6d9-257414f5b6cd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0XL/diXmZHRX9sGpYNhcrViPrqHXxyYwucHs8TA/5W8=","crlite_enrolled":false,"id":"dd2b472f-d1f1-474f-b861-276f1cbec0eb","last_modified":1562025143470},{"schema":1562025141974,"derHash":"OLJs9FyTLqKAGdk+RArHK66D+cv1LWrZE2mLGPzIcX0=","subject":"CN=EINS/PKI Public Certification Authority V4,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMTMwMQYDVQQDEypFSU5TL1BLSSBQdWJsaWMgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgVjQ=","whitelist":false,"attachment":{"hash":"3b9ae4a74d5261ecc85f
6b9d358b4c4079b49f0f3a8e227d829b9ac02d03ca98","size":1674,"filename":"hMBp2m4PvojCldfsrzoX4dPk_9MctmHJZLUZTqPmBYk=.pem","location":"security-state-staging/intermediates/dc89c814-2876-4b30-b10a-bc5d94abe445.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hMBp2m4PvojCldfsrzoX4dPk/9MctmHJZLUZTqPmBYk=","crlite_enrolled":true,"id":"179db5f9-cfdb-44f1-a333-5ce2db577865","last_modified":1562025142725},{"schema":1562025140477,"derHash":"gPWw0W+ujnK58TRv7deIg9SmKdE4L7z8aU9Uv8Hu3Tw=","subject":"CN=NII Open Domain CA - G5,O=National Institute of Informatics,C=JP","subjectDN":"MFsxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxIDAeBgNVBAMTF05JSSBPcGVuIERvbWFpbiBDQSAtIEc1","whitelist":false,"attachment":{"hash":"748e4489edca7296798a29e5a219a2b19349b29db773ac9e517d14e1ea4fe49b","size":1630,"filename":"aj-4mbqOOY7cgtDqWtgGaLG69EShl59AQocV--hJAk8=.pem","location":"security-state-staging/intermediates/50ef58fd-9c22-4ac3-9f5e-c898ab5bfbe2.pem","mimetype":"applicat
ion/x-pem-file"},"pubKeyHash":"aj+4mbqOOY7cgtDqWtgGaLG69EShl59AQocV++hJAk8=","crlite_enrolled":true,"id":"8b6f71a8-715d-4aba-96bb-ca79f1ec64c7","last_modified":1562025141214},{"schema":1562025136731,"derHash":"vD8K3F/4aks3TcaR+P4nOxuH3HPkOCT1/n82w+AAgxE=","subject":"CN=STRATO SSL - G4,OU=Domain Validated SSL,O=STRATO AG,C=DE","subjectDN":"MFoxCzAJBgNVBAYTAkRFMRIwEAYDVQQKEwlTVFJBVE8gQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRgwFgYDVQQDEw9TVFJBVE8gU1NMIC0gRzQ=","whitelist":false,"attachment":{"hash":"4e6d887b47fddc0e152fedf91f701e3e14afa9cb17d66c66aff6b81f3b2bf2b0","size":1618,"filename":"5oR-PNh3bknmMosEFMizpVd_K6NW9Mg35aMUY2g_tJ0=.pem","location":"security-state-staging/intermediates/082bceb0-77d7-47d4-9492-01e6b2283094.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5oR+PNh3bknmMosEFMizpVd/K6NW9Mg35aMUY2g/tJ0=","crlite_enrolled":false,"id":"f41316d7-e91d-4076-bd60-7bc27fef2ae5","last_modified":1562025137472},{"schema":1562025134484,"derHash":"Q8rDHvjouhtLFrggbkwKJsW62y/D
qgnpAXDkG2bC/WQ=","subject":"CN=GoGetSSL RSA DV CA,O=GoGetSSL,L=Riga,C=LV","subjectDN":"MEwxCzAJBgNVBAYTAkxWMQ0wCwYDVQQHEwRSaWdhMREwDwYDVQQKEwhHb0dldFNTTDEbMBkGA1UEAxMSR29HZXRTU0wgUlNBIERWIENB","whitelist":false,"attachment":{"hash":"416a15c9d2f048314780b6da5dc96d6d118331d05d84edecee9e19189b209bfb","size":2085,"filename":"T-6uyT5C6WT480t2wqX2OJ3ZrNt2j8v52bWLj-XIvz8=.pem","location":"security-state-staging/intermediates/15643bb1-316f-4368-ab99-a8a038c5fe52.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"T+6uyT5C6WT480t2wqX2OJ3ZrNt2j8v52bWLj+XIvz8=","crlite_enrolled":true,"id":"61d52502-e268-4365-9df4-7e0aacbfa38e","last_modified":1562025135235},{"schema":1562025133747,"derHash":"QqtNnxgJRU6+wkXY2wb/YaqCibBaJj3+6WYtrJFmYEM=","subject":"SERIALNUMBER=ZZZZZZA6,CN=Siemens Issuing CA Medium Strength Authentication 2016,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIG2MQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWV
uczERMA8GA1UEBRMIWlpaWlpaQTYxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMT8wPQYDVQQDDDZTaWVtZW5zIElzc3VpbmcgQ0EgTWVkaXVtIFN0cmVuZ3RoIEF1dGhlbnRpY2F0aW9uIDIwMTY=","whitelist":false,"attachment":{"hash":"e0621966aec1e2621a278a766224cf528557ebcfab4270f199e7eea7d2675623","size":2653,"filename":"DrWu4Hq8850SEsM72-PVKQ1tYB6sBR3LCdZJGICQePQ=.pem","location":"security-state-staging/intermediates/272b7db7-0908-4ffc-840c-eef0cb622efd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DrWu4Hq8850SEsM72+PVKQ1tYB6sBR3LCdZJGICQePQ=","crlite_enrolled":false,"id":"2d630350-e60d-4235-9fda-8b0f08314a1c","last_modified":1562025134476},{"schema":1562025132263,"derHash":"6tDFB3yZ+PpAzFVtvC6spB9U6dmevUaJVq6ovsWq92o=","subject":"CN=SSL.com Client Certificate Intermediate CA ECC R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxOjA4BgNVBAMMMVNTTC5jb20gQ2xpZW50IENlcnRpZmljYXRlIEludGVybWVkaWF0ZSBDQSBFQ0MgUjI=","wh
itelist":false,"attachment":{"hash":"c32940ffc93bbf65d67b3107fd8491c272d8a8bf1f1ee00f8ed0c79366ba5152","size":1301,"filename":"Z0cAXCbw1xo4sVpeEsdPDoiHdluFH7wEtczt9XdK7Sc=.pem","location":"security-state-staging/intermediates/7dc0f3f4-c262-4358-bf27-85f5085b55b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z0cAXCbw1xo4sVpeEsdPDoiHdluFH7wEtczt9XdK7Sc=","crlite_enrolled":false,"id":"9a625a71-583a-4afa-9248-664ad9eae363","last_modified":1562025133003},{"schema":1562025130010,"derHash":"uVrlT4OOOr8LV6zMGxJm3GjHo/p3QBX6Eo1gzdGq4oA=","subject":"CN=TeliaSonera Class 1 CA v2,O=TeliaSonera,C=FI","subjectDN":"MEcxCzAJBgNVBAYTAkZJMRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEiMCAGA1UEAwwZVGVsaWFTb25lcmEgQ2xhc3MgMSBDQSB2Mg==","whitelist":false,"attachment":{"hash":"158d92505eb3b45b3e6b4f6ad2ec4039c093d61b3bfe9fd73d31588465d0a2da","size":2532,"filename":"7iiRGudmfB5TF0Xjv7u_ECYjflwjOVVvuWfXqeDL9v8=.pem","location":"security-state-staging/intermediates/caafc12b-ae2e-4f72-b6dc-37355ce3511f.pem","mimet
ype":"application/x-pem-file"},"pubKeyHash":"7iiRGudmfB5TF0Xjv7u/ECYjflwjOVVvuWfXqeDL9v8=","crlite_enrolled":false,"id":"08d229d0-4919-4ab4-9baa-f3b645c75af6","last_modified":1562025130755},{"schema":1562025129265,"derHash":"7T23SNbXju/wuUUrxqAuA5A5xVB1pDkyO4uoX7Ibndo=","subject":"CN=QuoVadis PKIoverheid EV CA,O=QuoVadis Trustlink BV,C=NL","subjectDN":"MFIxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVRdW9WYWRpcyBUcnVzdGxpbmsgQlYxIzAhBgNVBAMMGlF1b1ZhZGlzIFBLSW92ZXJoZWlkIEVWIENB","whitelist":false,"attachment":{"hash":"36c648cb7bd3c186d7d9e0859c485e365c65a8548541b6aa3bbf6e5145b6c94c","size":2422,"filename":"_4M8fiegSVHwMhxeXXG0hHTjicxrP4MocMfnDzRve4Y=.pem","location":"security-state-staging/intermediates/b4128fcb-cc63-4709-a527-2228c4e5c0e6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/4M8fiegSVHwMhxeXXG0hHTjicxrP4MocMfnDzRve4Y=","crlite_enrolled":true,"id":"636a1114-c599-4e1e-9b78-725c0460b51e","last_modified":1562025130001},{"schema":1562025127747,"derHash":"F1cpGj19C7W5uc+IAvGyrhc+VrC
TWXD8hrY6J0mdteI=","subject":"CN=Mississippi Division of Medicaid CA,OU=Orion Health Direct Secure Messaging,O=Mississippi Division of Medicaid,C=US","subjectDN":"MIGVMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgTWlzc2lzc2lwcGkgRGl2aXNpb24gb2YgTWVkaWNhaWQxLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEsMCoGA1UEAxMjTWlzc2lzc2lwcGkgRGl2aXNpb24gb2YgTWVkaWNhaWQgQ0E=","whitelist":false,"attachment":{"hash":"cca273f49f71c1ff7f8f40ea75ee3f2df48645b9f0d620d081223e02dc8f3321","size":2316,"filename":"QSHb9BKVt3sbbZcpbsYhza74RWYYrCyW2TRiOuRYm24=.pem","location":"security-state-staging/intermediates/0a2a8364-6973-4442-8eef-5927bc28bcef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QSHb9BKVt3sbbZcpbsYhza74RWYYrCyW2TRiOuRYm24=","crlite_enrolled":false,"id":"cef1bd37-f531-4ab9-959c-5a8c3ce41d8a","last_modified":1562025128479},{"schema":1562025127010,"derHash":"0CxXxteEvH/1xNAzwizbpac6L4fZ4diA7HjNGuD4J04=","subject":"CN=TERENA eScience Personal CA 2,O=TERENA,L=Amsterdam,ST=Noord-Hollan
d,C=NL","subjectDN":"MHIxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEmMCQGA1UEAxMdVEVSRU5BIGVTY2llbmNlIFBlcnNvbmFsIENBIDI=","whitelist":false,"attachment":{"hash":"e1127ebdc239f9dd82e4c2cde697bb33a369369a3c114af4dbb2d849aba0ddd1","size":2142,"filename":"PRDfx01D2tGMhHfAORezk6RxRuzL198DON5jY4n-V-4=.pem","location":"security-state-staging/intermediates/b176cf5c-6fd4-4e00-9e7b-cf987807af32.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PRDfx01D2tGMhHfAORezk6RxRuzL198DON5jY4n+V+4=","crlite_enrolled":false,"id":"404f7c65-b381-4bf3-af34-70c1b2e70fba","last_modified":1562025127739},{"schema":1562025126254,"derHash":"IlETztpo+6teYo4CFKFaZRxHqn7nu/R2CZtuFC7syOw=","subject":"CN=SECOM TimeStamping CA2,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MFUxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMR8wHQYDVQQDExZTRUNPTSBUaW1lU3RhbXBpbmcgQ0Ey","whitelist":false,"attachment":{"hash":"b79bcebbdbe1d9b2e2ea489
fca18c99a683e821b17174c6fea226b5019dbe31c","size":1622,"filename":"kFsLMWudOm7QLAlLqDicbVVw7Daqh252pLGjqKrHPQ4=.pem","location":"security-state-staging/intermediates/3a2cfed7-d044-40b7-a016-e67672e57467.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kFsLMWudOm7QLAlLqDicbVVw7Daqh252pLGjqKrHPQ4=","crlite_enrolled":false,"id":"3f00218c-7886-47cf-8ee9-5b1518d9ef10","last_modified":1562025127002},{"schema":1562025121762,"derHash":"Q49HPr/IiE710+DVLSZM2+Vso4LZ6/xonXdIlAn1Wm4=","subject":"CN=Google CA1,O=Google\\, Inc.,L=Mountain View,ST=CA,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEVMBMGA1UEChMMR29vZ2xlLCBJbmMuMRMwEQYDVQQDEwpHb29nbGUgQ0Ex","whitelist":false,"attachment":{"hash":"3af4c41659b8039f273a6dacdf6c94bac5d0c669051cf7c3193a04011fdc1079","size":1695,"filename":"JqNL7R3G-I-oNR0Uoa1_QE7RwLsPo10K2QlsnoYQ8eg=.pem","location":"security-state-staging/intermediates/f88caf87-4bc1-4a4c-a37c-266f3dbed491.pem","mimetype":"application/x-pe
m-file"},"pubKeyHash":"JqNL7R3G+I+oNR0Uoa1/QE7RwLsPo10K2QlsnoYQ8eg=","crlite_enrolled":false,"id":"9f917307-df70-4aef-9de2-d3f38129efe8","last_modified":1562025122497},{"schema":1562025120279,"derHash":"CgXEYnVjkN0fHV3YJ5TDAPBL54nc521+MS95DWj9OFo=","subject":"CN=InCommon RSA Server CA,OU=InCommon,O=Internet2,L=Ann Arbor,ST=MI,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJNSTESMBAGA1UEBxMJQW5uIEFyYm9yMRIwEAYDVQQKEwlJbnRlcm5ldDIxETAPBgNVBAsTCEluQ29tbW9uMR8wHQYDVQQDExZJbkNvbW1vbiBSU0EgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"3959f96c1c3a6e88dfd1193a6ce41b3322674ad833793a0ff92f5a272c114f9f","size":2129,"filename":"b1JA6-4svjmZnxGjAiQY3RS0A9FtjKLCWaRlVmCPM28=.pem","location":"security-state-staging/intermediates/ca260223-49d4-4648-b181-def80753276d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"b1JA6+4svjmZnxGjAiQY3RS0A9FtjKLCWaRlVmCPM28=","crlite_enrolled":true,"id":"4c82bc48-ddcd-4b3d-a03a-9eb182f2f7d6","last_modified":1562025121016},{"schema":156202511874
5,"derHash":"N+micetHJck82vGDVix9fZ6o/BOfg3T/5BjXfTJCj+A=","subject":"CN=New Hampshire Health Information Organization CA,OU=Orion Health Direct Secure Messaging,O=New Hampshire Health Information Organization Corporation,C=US","subjectDN":"MIG7MQswCQYDVQQGEwJVUzFCMEAGA1UEChM5TmV3IEhhbXBzaGlyZSBIZWFsdGggSW5mb3JtYXRpb24gT3JnYW5pemF0aW9uIENvcnBvcmF0aW9uMS0wKwYDVQQLEyRPcmlvbiBIZWFsdGggRGlyZWN0IFNlY3VyZSBNZXNzYWdpbmcxOTA3BgNVBAMTME5ldyBIYW1wc2hpcmUgSGVhbHRoIEluZm9ybWF0aW9uIE9yZ2FuaXphdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"2922fb883b4e192002b98a3501ca3ae60c4ab145c5b910af0e2f4bd8c5fc8929","size":2369,"filename":"FcaQBKoKOodq4LMiSFEUzCJa0dFILZ6txuxivUIQWA4=.pem","location":"security-state-staging/intermediates/8f263fea-ce90-415d-94b7-527302ef2d65.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FcaQBKoKOodq4LMiSFEUzCJa0dFILZ6txuxivUIQWA4=","crlite_enrolled":false,"id":"3b9c9c53-a91e-4f93-aeef-79ae47ea63fc","last_modified":1562025119531},{"schema":1562025118011,"derHas
h":"roIgH1ZeBDm39K1okydZTrl0pPeBsabL/tWb04IxfxM=","subject":"CN=Thawte TLS ECC CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHTAbBgNVBAMTFFRoYXd0ZSBUTFMgRUNDIENBIEcx","whitelist":false,"attachment":{"hash":"add9d8816c4153cd678d313dec7135ed32f3b5d71e1c1b6f73bf061cd4162394","size":1142,"filename":"Z2FuypjaQ1wWJ4YxsCzQZPBTleqi8I6cEO-bYvpiEQI=.pem","location":"security-state-staging/intermediates/5724bc90-8b80-4c0c-b710-f8b313c76589.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z2FuypjaQ1wWJ4YxsCzQZPBTleqi8I6cEO+bYvpiEQI=","crlite_enrolled":false,"id":"dff3760d-8e5d-4c69-8668-9cf682af48a9","last_modified":1562025118738},{"schema":1562025117267,"derHash":"xdgUZyz2W5U+b2nnAsfCOl69pFeWqliDQSHfsNBsCEY=","subject":"CN=thawte Primary Transition Root,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaW
NlcnQuY29tMScwJQYDVQQDEx50aGF3dGUgUHJpbWFyeSBUcmFuc2l0aW9uIFJvb3Q=","whitelist":false,"attachment":{"hash":"d074ef6628a7cb58702f27da00b4aba9b3b74c4953ec5393a085dd2c691a1552","size":1313,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/89580d25-17ba-4667-ac01-e3e72a6b9158.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"e8972f4c-b265-4859-871b-9a07bfcd532d","last_modified":1562025118003},{"schema":1562025116492,"derHash":"j+l3I5D20iqVPZjbzRl1SsvTQJILDHDdyh/v5Icyl1A=","subject":"CN=EINS/PKI Public Certification Authority V2,O=INTEC INC.,C=JP","subjectDN":"MFcxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpJTlRFQyBJTkMuMTMwMQYDVQQDEypFSU5TL1BLSSBQdWJsaWMgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgVjI=","whitelist":false,"attachment":{"hash":"991ddc8794f0daa071f015020faf9f96b617452fc700241d6b2e77450d2deaea","size":1597,"filename":"UAXhCsI8VFL2KFAMyEK1fRS-4Xo9P8T-q-ZMcJBf
vcs=.pem","location":"security-state-staging/intermediates/29482520-eeb7-4ff7-b611-fda14001a03b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UAXhCsI8VFL2KFAMyEK1fRS+4Xo9P8T+q+ZMcJBfvcs=","crlite_enrolled":false,"id":"b388d70b-38e4-4ec1-9c8d-095362f5d6e3","last_modified":1562025117259},{"schema":1562025114922,"derHash":"qYyM7ZP5pDYxq+RXOGTgbFGSkAcj6X0e7SwNfGiy0Hk=","subject":"CN=Advanced Code Signing Class2 e-Szigno CA 2016,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGOMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xHDAaBgNVBGEME1ZBVEhVLTIzNTg0NDk3LTItNDExNjA0BgNVBAMMLUFkdmFuY2VkIENvZGUgU2lnbmluZyBDbGFzczIgZS1Temlnbm8gQ0EgMjAxNg==","whitelist":false,"attachment":{"hash":"64067aab0874bc037193b6acdb923c5b3f8be5f6ce9e88eeefe2ebd7d958132b","size":2609,"filename":"xFdYXbpSYOTcKmpFvTeBEjUJFCvx6SNaltd9jtCg594=.pem","location":"security-state-staging/intermediates/8c58155b-730e-4bd1-a4a4-a9d2120083b4.pem","mimetype":"application/x-pem-file"},"pubKey
Hash":"xFdYXbpSYOTcKmpFvTeBEjUJFCvx6SNaltd9jtCg594=","crlite_enrolled":false,"id":"f3a00705-bb5f-44e5-aefb-59098a06f4e5","last_modified":1562025115705},{"schema":1562025114183,"derHash":"G6RA9+sEikAqhwkcSUB0BGJUmirzli+LxxhK0LBLgx0=","subject":"CN=University of Patras CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHgxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEjMCEGA1UEAxMaVW5pdmVyc2l0eSBvZiBQYXRyYXMgQ0EgUjE=","whitelist":false,"attachment":{"hash":"21e16a0dccadb707cc68dc9e26f6d00380e449c017fe72bffa76423cc88355f7","size":2584,"filename":"yWuLmWbmLueFjc04Qp7TQPUOOX-6i8azb2QoXYNtOv8=.pem","location":"security-state-staging/intermediates/fb23a6f7-db94-4b12-a05d-b7c2f1a2c437.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yWuLmWbmLueFjc04Qp7TQPUOOX+6i8azb2QoXYNtOv8=","crlite_enrolled":true,"id":"ea530e37-2e6a-4377-bcbe-2c0bb0fb334f","last_modified":1562025114914},{"schema":
1562025113418,"derHash":"91Qc9p0d4ayVOrwfrW94B6NO3+nhLBHmahlZMMI61sY=","subject":"CN=DigiCert Global CA G3,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFURpZ2lDZXJ0IEdsb2JhbCBDQSBHMw==","whitelist":false,"attachment":{"hash":"caf0ca58fa4e543dbd0a13f2d28c0f3ba36a68e2ce4db8f05cbe1c0cc102e4ce","size":1106,"filename":"lh6fRVDi7gDQENRcjLNsiTdmqn9awnJtmhUMzPTx6FM=.pem","location":"security-state-staging/intermediates/d3b97027-ab86-4c2f-bde3-30d9f0e79337.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lh6fRVDi7gDQENRcjLNsiTdmqn9awnJtmhUMzPTx6FM=","crlite_enrolled":true,"id":"042596bd-887e-46b0-a897-969aef8e476a","last_modified":1562025114175},{"schema":1562025112681,"derHash":"buBlr1i3BDyyNy/GY540hjBPzQlNnLaDjXaojOIMMN0=","subject":"CN=USERTrust RSA Domain Validation Secure Server CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGTMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpd
HkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE5MDcGA1UEAxMwVVNFUlRydXN0IFJTQSBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"f6e9d1e1c2c0f490e19c26afc850c4184e1f2eebd9f9245a8d6557c5030b419f","size":2170,"filename":"jPQXFCdXn0NxGIW3P3JUl22ASU1QS7BTE83baBiuZpc=.pem","location":"security-state-staging/intermediates/87e7a783-ce18-4cab-8226-a64514640d48.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jPQXFCdXn0NxGIW3P3JUl22ASU1QS7BTE83baBiuZpc=","crlite_enrolled":true,"id":"37b1fced-36f9-4c04-b5ef-93347b78666e","last_modified":1562025113411},{"schema":1562025111941,"derHash":"e88cihLuCyhUobQQcGUrAyXn0MILnETUrOnGQzh/FDE=","subject":"CN=Class3 KET e-Szigno CA 2018,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJDAiBgNVBAMMG0NsYXNzMyBLRVQgZS1Temlnbm8gQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"b8363cf53cbc0d53826cb443efcf270
b8480d872fe5f866c272fe115ac7daa95","size":2227,"filename":"9cUMZguTNlS7SsqERbenmwQ2nFpq1XEyXFYq20LBYKQ=.pem","location":"security-state-staging/intermediates/1e730201-a474-4fd9-b805-d7a04496b3b5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9cUMZguTNlS7SsqERbenmwQ2nFpq1XEyXFYq20LBYKQ=","crlite_enrolled":false,"id":"a393de41-fe5f-4381-951c-6e5fcf3cb617","last_modified":1562025112674},{"schema":1562025111185,"derHash":"nwMezP+1xfZqL3CFOCDqWrVKfa4bBzwGfQVI2Lx0vms=","subject":"CN=SecureCore RSA Secure Client and Email CA,O=SecureCore,L=OSAKA,ST=OSAKA,C=JP","subjectDN":"MHYxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVPU0FLQTEOMAwGA1UEBxMFT1NBS0ExEzARBgNVBAoTClNlY3VyZUNvcmUxMjAwBgNVBAMTKVNlY3VyZUNvcmUgUlNBIFNlY3VyZSBDbGllbnQgYW5kIEVtYWlsIENB","whitelist":false,"attachment":{"hash":"2bc5fded9a0980430c28b69a3f3a55e6fec28e75e562e0274a8eec10fca95c6d","size":2129,"filename":"KBLXQ9-jOdoOf7rJ1mS67CFv5GiWDtEk9tpsMiIQhZ4=.pem","location":"security-state-staging/intermediates/18a2a864-4b38-4e2d-a9ec-
0a188a9bf902.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KBLXQ9+jOdoOf7rJ1mS67CFv5GiWDtEk9tpsMiIQhZ4=","crlite_enrolled":false,"id":"8530b5fa-bac9-4fe6-873e-22d0ae2c14a8","last_modified":1562025111933},{"schema":1562025110415,"derHash":"lcB041kCoUq9nRmvtuf4Dmaf+OI2MnBTnZY2E/BKqiE=","subject":"CN=GTS CA 1O1,O=Google Trust Services,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxEzARBgNVBAMTCkdUUyBDQSAxTzE=","whitelist":false,"attachment":{"hash":"6b83970dc396a58790e6b658e13c63e57dafec798ebdec22b4b70519932de38c","size":1548,"filename":"YZPgTZ-woNCCCIW3LH2CxQeLzB_1m42QcCTBSdgayjs=.pem","location":"security-state-staging/intermediates/d1df4cf2-b819-43ed-a6e3-59e264ed21b2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YZPgTZ+woNCCCIW3LH2CxQeLzB/1m42QcCTBSdgayjs=","crlite_enrolled":true,"id":"73b3dfa7-731a-4bfe-b218-d585c8e45d6d","last_modified":1562025111178},{"schema":1562025108184,"derHash":"A2oY9fDrndXuAreFTfXDOEVgHYk5z7e2B/adFCw
B2Qk=","subject":"CN=TrustAsia TLS RSA CA G8,OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MHUxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEgMB4GA1UEAxMXVHJ1c3RBc2lhIFRMUyBSU0EgQ0EgRzg=","whitelist":false,"attachment":{"hash":"cbb7a86cf96f690954bcd21bb8c71a00ef436ee942cd65831bf21c11cbc25909","size":1687,"filename":"rnv8EixdQFjoJF2hhedxVmsIlmFhW2jkp1llCWfHEvw=.pem","location":"security-state-staging/intermediates/d04ab9f3-2fc4-47a8-931d-4b644bd07cbf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rnv8EixdQFjoJF2hhedxVmsIlmFhW2jkp1llCWfHEvw=","crlite_enrolled":false,"id":"6687c4bb-a959-4fee-9b6b-63f4d03a8c85","last_modified":1562025108917},{"schema":1562025107419,"derHash":"WNehl/CabqVSuOprGlMYWgMKOtjVIiDADETj9FDk+5A=","subject":"CN=NETLOCK Trust CA,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"MFIxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMRkwFwYDVQQDDB
BORVRMT0NLIFRydXN0IENB","whitelist":false,"attachment":{"hash":"162d2ef1f5f7a945a8033cb0bb83b55948d4915840c9e5f98f83b3666f2aec62","size":2060,"filename":"JNdSz2IBG96B7N8LkEnVH6myMdo7MCXP8kJ-NPi5A64=.pem","location":"security-state-staging/intermediates/645b58d9-0779-4656-9fe8-ac5478c57d4f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JNdSz2IBG96B7N8LkEnVH6myMdo7MCXP8kJ+NPi5A64=","crlite_enrolled":false,"id":"9784e5cb-7f50-43e5-853d-bce88eb86d00","last_modified":1562025108176},{"schema":1562025105176,"derHash":"2C+H+T0x1fyBjdZr1Q5/MZrhefwcXQBUe2WOjrP0zlY=","subject":"CN=NETLOCK Trust Advanced CA,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"MFsxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMSIwIAYDVQQDDBlORVRMT0NLIFRydXN0IEFkdmFuY2VkIENB","whitelist":false,"attachment":{"hash":"d2114d074fdd6d510393f4e4475f26c915693c1226b230324cdcc50ab4dec84b","size":2073,"filename":"vUlRVy11U4UcMGkV_J50oacQuaDzZcAvkc6eUz9yR9c=.pem","location":"security-state-staging
/intermediates/ad1cf639-62d7-4f1c-ae01-76b1bce15693.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vUlRVy11U4UcMGkV/J50oacQuaDzZcAvkc6eUz9yR9c=","crlite_enrolled":false,"id":"4772163f-50e2-43cd-9d63-17d1e8176bd8","last_modified":1562025105914},{"schema":1562025102913,"derHash":"yJwktBWnLJQJZn6I+15ukqONVgnDyZ5V2ZtLHUWJkPk=","subject":"CN=certSIGN Qualified CA Class 3 G2,OU=certSIGN Qualified CA Class 3 G2,O=certSIGN,C=RO","subjectDN":"MHYxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEpMCcGA1UECxMgY2VydFNJR04gUXVhbGlmaWVkIENBIENsYXNzIDMgRzIxKTAnBgNVBAMTIGNlcnRTSUdOIFF1YWxpZmllZCBDQSBDbGFzcyAzIEcy","whitelist":false,"attachment":{"hash":"8790a1c05eb34050a0518d6b450074d0a070eab4fdfc196e7812a7cc01b12fc8","size":1634,"filename":"UPMbIpu91S39VXXONt79PssKsPf6YLoNySvPP-qGdwY=.pem","location":"security-state-staging/intermediates/dcc54254-18e6-46af-8584-ac6c726a3de5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UPMbIpu91S39VXXONt79PssKsPf6YLoNySvPP+qGdwY=","crlite_enrolled":fa
lse,"id":"17f3db66-1a26-4fc2-b72b-4734ccc0cd35","last_modified":1562025103641},{"schema":1562025101431,"derHash":"XSh2HL8wTq/NEns01hT+F5rHdE8VUq8cMSmEJa0FonU=","subject":"CN=Aetna Inc. Secure CA2,O=Aetna Inc,C=US","subjectDN":"MEExCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZXRuYSBJbmMxHjAcBgNVBAMTFUFldG5hIEluYy4gU2VjdXJlIENBMg==","whitelist":false,"attachment":{"hash":"79fdcd0fdb21095bb95b3fb6c0d2e5a49a456e49968efb573d826c26b3cca0e5","size":1683,"filename":"NIgvyyhcGFo7vlL_K_w6cn8iFWO9ftJXWrIU77O5hMI=.pem","location":"security-state-staging/intermediates/f1b50907-9001-4396-aa45-939f75f991c6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NIgvyyhcGFo7vlL/K/w6cn8iFWO9ftJXWrIU77O5hMI=","crlite_enrolled":true,"id":"65d41ecf-d71f-4a7d-bf9b-57d8825ab674","last_modified":1562025102166},{"schema":1562025100681,"derHash":"V9i9zViVWlWQpXxqr6WB7ZuWvtdvr+6WmxORh8Wocsc=","subject":"CN=Sectigo RSA Extended Validation Secure Server CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN
":"MIGRMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxOTA3BgNVBAMTMFNlY3RpZ28gUlNBIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"3c04f880fa1e0f0085d430978a6bc33abae6717b85151f854d3ff05199bf6410","size":2211,"filename":"hEJ5FNYP7ZpNILySZtJgiP6UtW3ClYUTRFxXGqWSWQ0=.pem","location":"security-state-staging/intermediates/37a9c68e-c8d4-4809-882d-5b941bdb7165.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hEJ5FNYP7ZpNILySZtJgiP6UtW3ClYUTRFxXGqWSWQ0=","crlite_enrolled":true,"id":"3b4f8ef4-d9a1-4755-85ba-fe5df21a98c3","last_modified":1562025101423},{"schema":1562025099203,"derHash":"3Nd+NLRtUwrvZFpRM4nNT/wPfRlqEVuPYqX9DVV9RsY=","subject":"CN=Hyperion SMIME CA 2018,O=Hyperion Services Ltd.,L=London,ST=London,C=GB","subjectDN":"MHExCzAJBgNVBAYTAkdCMQ8wDQYDVQQIEwZMb25kb24xDzANBgNVBAcTBkxvbmRvbjEfMB0GA1UEChMWSHlwZXJpb24gU2VydmljZXMgTHRkLjEfMB0GA1UEAxMWSHlwZXJpb24gU01JTUUgQ
0EgMjAxOA==","whitelist":false,"attachment":{"hash":"3fbf797d090a78ef888fdc499ae42541542cf7827762b8ccc489eb873eddc923","size":1873,"filename":"KZbbX3n6ko-IU98hurc1EgrFvk1o2vwDfC6xMZH_7aA=.pem","location":"security-state-staging/intermediates/2cfb2953-ca27-4ba1-9b23-acac7070e2e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KZbbX3n6ko+IU98hurc1EgrFvk1o2vwDfC6xMZH/7aA=","crlite_enrolled":false,"id":"22df953a-4459-4148-a0a1-a104c0645863","last_modified":1562025099933},{"schema":1562025097714,"derHash":"JHptgH/xZAMeDrIsqF3jKaOk5mA9vGID8MbigqnJ6oQ=","subject":"SERIALNUMBER=07945211006,CN=InfoCert Organization Validation CA 3,OU=WSA Trust Service Provider,O=InfoCert S.p.A.,C=IT","subjectDN":"MIGSMQswCQYDVQQGEwJJVDEYMBYGA1UECgwPSW5mb0NlcnQgUy5wLkEuMSMwIQYDVQQLDBpXU0EgVHJ1c3QgU2VydmljZSBQcm92aWRlcjEUMBIGA1UEBRMLMDc5NDUyMTEwMDYxLjAsBgNVBAMMJUluZm9DZXJ0IE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIDM=","whitelist":false,"attachment":{"hash":"f6ce0e2e3315e95e38e3c168f1b2993eea7b2b1811d7782d5c
fe1f74278a911d","size":2942,"filename":"a-x8kAay98aATSdhIwydXnat5b0q__ixXZNoxswIZ1o=.pem","location":"security-state-staging/intermediates/2161ca2c-c902-4553-8e92-c331a903b4d7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"a+x8kAay98aATSdhIwydXnat5b0q//ixXZNoxswIZ1o=","crlite_enrolled":true,"id":"0ad6adc0-7bae-4a0d-8a0a-ff78e01348df","last_modified":1562025098460},{"schema":1562025096209,"derHash":"6+ABXvZBxICVTtKmiEL8zSqKeSE67tg23fpigujqj2o=","subject":"CN=BlackCert\\, Inc. RSA EV Certification Authority,OU=Controlled by COMODO exclusively for BlackCert\\, Inc.,O=BlackCert\\, Inc.,L=Denver,ST=CO,C=US","subjectDN":"MIG9MQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPQmxhY2tDZXJ0LCBJbmMuMT0wOwYDVQQLEzRDb250cm9sbGVkIGJ5IENPTU9ETyBleGNsdXNpdmVseSBmb3IgQmxhY2tDZXJ0LCBJbmMuMTcwNQYDVQQDEy5CbGFja0NlcnQsIEluYy4gUlNBIEVWIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"cc5e72b6d860c3d9cb108395e1dbe41b4443dcb561415f556b6aa1f3f763729b","
size":2272,"filename":"nq1PHRuOp_qQ-vlMQDWIjBXQS9CPEsH5CLd-dlkam7U=.pem","location":"security-state-staging/intermediates/6e6eaa86-3ce0-4465-ab9e-337525dba314.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nq1PHRuOp/qQ+vlMQDWIjBXQS9CPEsH5CLd+dlkam7U=","crlite_enrolled":false,"id":"df82f80e-3b6f-455e-ae56-4770117ecbdb","last_modified":1562025096954},{"schema":1562025094676,"derHash":"kz5KLY2x/5/w5QjqfxY34HT2YP5vNloiM9/CtSyInZg=","subject":"CN=AlphaSSL CA - SHA256 - G2,O=AlphaSSL","subjectDN":"MDcxETAPBgNVBAoTCEFscGhhU1NMMSIwIAYDVQQDExlBbHBoYVNTTCBDQSAtIFNIQTI1NiAtIEcy","whitelist":false,"attachment":{"hash":"387ae998795c0cb5d04b22c0bbfb366d42adc2767c993a0b6254218326a44c7b","size":1512,"filename":"amMeV6gb9QNx0Zf7FtJ19Wa_t2B7KpCF_1n2Js3UuSU=.pem","location":"security-state-staging/intermediates/0c0cebe7-5e9b-4eac-b906-9e157cfd6a82.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"amMeV6gb9QNx0Zf7FtJ19Wa/t2B7KpCF/1n2Js3UuSU=","crlite_enrolled":true,"id":"6044f076-a6cf-42
15-82f0-8b5ff9aa3ffc","last_modified":1562025095417},{"schema":1562025093933,"derHash":"bjKjW1mekIe7GrNc5zAi7C4mrzS+OIkZQZyVcAzY5/s=","subject":"CN=Trusted Root CA G2,OU=Trusted Root,O=GlobalSign nv-sa,C=BE","subjectDN":"MFwxCzAJBgNVBAYTAkJFMRUwEwYDVQQLEwxUcnVzdGVkIFJvb3QxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExGzAZBgNVBAMTElRydXN0ZWQgUm9vdCBDQSBHMg==","whitelist":false,"attachment":{"hash":"c6c5a13b2392745618b20f994004aa62c9b088be893958a18f79135b156a42cb","size":1573,"filename":"W66tP4wePoAO-Y8UjUlgyqqFM7jqIJHVT7pIzmYXOtI=.pem","location":"security-state-staging/intermediates/744cf51d-71fb-49fc-8ab6-fe14dce35ca1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"W66tP4wePoAO+Y8UjUlgyqqFM7jqIJHVT7pIzmYXOtI=","crlite_enrolled":true,"id":"7be6334e-99cf-4ea5-b61c-2c199025e86b","last_modified":1562025094668},{"schema":1562025093184,"derHash":"cLahDAynbeznrb6XC3ajfYoChXsTTHUFsYTr1fyk8+o=","subject":"CN=HARICA SSL RSA SubCA R3,O=Hellenic Academic and Research Institutions Cert. Authority
,L=Athens,C=GR","subjectDN":"MIGGMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEgMB4GA1UEAwwXSEFSSUNBIFNTTCBSU0EgU3ViQ0EgUjM=","whitelist":false,"attachment":{"hash":"cedc43d39f09a719a27599d55f251f9b11242c16b81336fe59c19b7813994c1e","size":2503,"filename":"jBZXnMw3910qHNl4GpA8ufttU_ABxauO7Xs8rkNWmHE=.pem","location":"security-state-staging/intermediates/5542e9c0-bf1d-4c98-b99d-c78ac7be7cf1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jBZXnMw3910qHNl4GpA8ufttU/ABxauO7Xs8rkNWmHE=","crlite_enrolled":true,"id":"6a0c4fba-c9c1-4273-b116-3435c8b09dd6","last_modified":1562025093925},{"schema":1562025092426,"derHash":"DnhDTsitZhNWLIOQ2LMwb8YIfgWTx9WsL6+a0mOHl0U=","subject":"CN=DigiCert Accredited Direct Med CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKjAoBgNVBAMTIURpZ2lDZXJ0IEFjY3JlZGl0ZWQgRGlyZ
WN0IE1lZCBDQQ==","whitelist":false,"attachment":{"hash":"53d0dac262584f5d7ebc0923e541b5828cbf1d3a5c1e0cf334be28b3dd82033e","size":2300,"filename":"bJKSpALMZEtN8MtL5JhmKs5KNAAP3Z3m_oaeTa7A8vQ=.pem","location":"security-state-staging/intermediates/c074475f-6f2f-494a-a050-d78b1d741b26.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bJKSpALMZEtN8MtL5JhmKs5KNAAP3Z3m/oaeTa7A8vQ=","crlite_enrolled":false,"id":"28327394-cfae-4edb-aa78-e5f8d18caf65","last_modified":1562025093176},{"schema":1562025090182,"derHash":"EorBG0j05isu5XngkyLjmhc15zo9lk9eXXInF5b+CjY=","subject":"CN=Oregon State Treasury RSA Client CA,OU=Office of the State Treasurer,O=Oregon State Treasury,L=Salem,ST=Oregon,C=US","subjectDN":"MIGkMQswCQYDVQQGEwJVUzEPMA0GA1UECBMGT3JlZ29uMQ4wDAYDVQQHEwVTYWxlbTEeMBwGA1UEChMVT3JlZ29uIFN0YXRlIFRyZWFzdXJ5MSYwJAYDVQQLEx1PZmZpY2Ugb2YgdGhlIFN0YXRlIFRyZWFzdXJlcjEsMCoGA1UEAxMjT3JlZ29uIFN0YXRlIFRyZWFzdXJ5IFJTQSBDbGllbnQgQ0E=","whitelist":false,"attachment":{"hash":"fff008b20f8ee90e4c5aaa
17d09ef3f8aed6655a427538e3fb2d3504b6906b60","size":2174,"filename":"xv6VIcmRAUtsQmMX6xbFZdKy9CyqZlAGKv6q2fNSHWU=.pem","location":"security-state-staging/intermediates/4e1beacd-8dc6-4ec4-a0a1-34c554c6811c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xv6VIcmRAUtsQmMX6xbFZdKy9CyqZlAGKv6q2fNSHWU=","crlite_enrolled":false,"id":"52f6a804-6e60-45ab-9e53-115bc19880ea","last_modified":1562025090915},{"schema":1562025089412,"derHash":"fOHbfRbpv+gGkyFKPXxiY6okeJ45kBfmnt5IAuz29xE=","subject":"CN=NETLOCK Trust Qualified SCD CA,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"MGAxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMScwJQYDVQQDDB5ORVRMT0NLIFRydXN0IFF1YWxpZmllZCBTQ0QgQ0E=","whitelist":false,"attachment":{"hash":"efcaaf465785dda6f37158642f960522b0fbb28b652b8dd1d415feb8b3843a40","size":2077,"filename":"e2y-IcyyWA7mZKQQFWLVH34cdYOha_33T_SE2Yj7jp8=.pem","location":"security-state-staging/intermediates/da84341e-9c4a-411d-81b2-cba5084edf77.pem","mimetype":"appl
ication/x-pem-file"},"pubKeyHash":"e2y+IcyyWA7mZKQQFWLVH34cdYOha/33T/SE2Yj7jp8=","crlite_enrolled":false,"id":"33b62fc5-1349-4933-8a0b-bac57c2adc38","last_modified":1562025090175},{"schema":1562025085617,"derHash":"QyY5E7SD628LAgVA+Pe+Ch18nOdlL+D7R0PXITOTVRw=","subject":"CN=Beame.io CA 1,O=Beame.io Ltd,L=Tel Aviv-Jaffa,ST=Tel Aviv,C=IL","subjectDN":"MGgxCzAJBgNVBAYTAklMMREwDwYDVQQIEwhUZWwgQXZpdjEXMBUGA1UEBxMOVGVsIEF2aXYtSmFmZmExFTATBgNVBAoTDEJlYW1lLmlvIEx0ZDEWMBQGA1UEAxMNQmVhbWUuaW8gQ0EgMQ==","whitelist":false,"attachment":{"hash":"2ede44f6018db9de8c44fdb625cfc55d1f5acf992c2e1601671f84f30bf8b229","size":1800,"filename":"5fxJ002g5Il0LSaAZtiEC7BeF8z-cxBoMLk7llE9WeI=.pem","location":"security-state-staging/intermediates/75df26fa-72c6-408e-b18d-8816a9d5bcfd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5fxJ002g5Il0LSaAZtiEC7BeF8z+cxBoMLk7llE9WeI=","crlite_enrolled":false,"id":"d73fd51e-4861-4081-91b1-760652365c4d","last_modified":1562025086359},{"schema":1562025083342,"derHash
":"XIDlafzuk/FaK8BDUQKyagT1qh7JkSwToFiBwarVAtI=","subject":"CN=Cleverbase ID PKIoverheid Burger CA - G3,O=Cleverbase ID B.V.,C=NL","subjectDN":"MHYxCzAJBgNVBAYTAk5MMRswGQYDVQQKDBJDbGV2ZXJiYXNlIElEIEIuVi4xFzAVBgNVBGEMDk5UUk5MLTY3NDE5OTI1MTEwLwYDVQQDDChDbGV2ZXJiYXNlIElEIFBLSW92ZXJoZWlkIEJ1cmdlciBDQSAtIEcz","whitelist":false,"attachment":{"hash":"aac14b1ffb25fc6fffba063081448afc1a36690e2d88f82e7b95e6c951203ba5","size":2515,"filename":"c3WqQNTp8NSwj6Ar5Z3bAzdLCkLGhqGXOVps_pS8BKM=.pem","location":"security-state-staging/intermediates/3ed57a24-3064-4897-9209-cdf438896a68.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"c3WqQNTp8NSwj6Ar5Z3bAzdLCkLGhqGXOVps/pS8BKM=","crlite_enrolled":false,"id":"0279ebd1-4242-44b7-a1a2-73190b4f1f39","last_modified":1562025084103},{"schema":1562025081828,"derHash":"yrnBLb3jrV0rwCAbVLGL4gnNXhRqqghau98kGwlt/0c=","subject":"CN=QuoVadis Global SSL ICA G3,O=QuoVadis Limited,C=BM","subjectDN":"ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYD
VQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMw==","whitelist":false,"attachment":{"hash":"02738114b030370213ecaf8808b823088a25f270059a42ccf2185bd1d5cdbf7f","size":2170,"filename":"KM3iZPSceB-hgYuNI-cSg4LRgTiUxCeGjrfXRQAY6Rs=.pem","location":"security-state-staging/intermediates/fb6d60a1-e61a-44fd-961d-965bb7c9fb88.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KM3iZPSceB+hgYuNI+cSg4LRgTiUxCeGjrfXRQAY6Rs=","crlite_enrolled":true,"id":"6356ab18-9e19-400c-8782-0d5c6bbea774","last_modified":1562025082569},{"schema":1562025081075,"derHash":"PXdLZe6V/W79HIcytX5gfJvuQjw25G9uHMjKHwrmLiM=","subject":"CN=TrustAsia Secure Enterprise Email CA,OU=www.trustasia.com,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MH8xCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMRowGAYDVQQLExF3d3cudHJ1c3Rhc2lhLmNvbTEtMCsGA1UEAxMkVHJ1c3RBc2lhIFNlY3VyZSBFbnRlcnByaXNlIEVtYWlsIENB","whitelist":false,"attachment":{"hash":"20b01b33815a02bfa2f3c548a9482ee66729f3a9eb6744f9b7b7a0a4acbf9d6f",
"size":1711,"filename":"5AZRODSr4yzVRSQdofdzrLh4-_fDra8nT16mH7dhrIA=.pem","location":"security-state-staging/intermediates/4a0d1ac7-535b-4466-a0e8-0dd4b614ecc7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5AZRODSr4yzVRSQdofdzrLh4+/fDra8nT16mH7dhrIA=","crlite_enrolled":false,"id":"94318fe7-87ee-4ceb-b386-6938eb65acae","last_modified":1562025081815},{"schema":1562025077308,"derHash":"IxbQWi4tNH+hQRNbmO0J9W6B8c9WeXk9OzndbY5GGkg=","subject":"CN=D-TRUST CA 2-2 EV 2016,O=D-Trust GmbH,C=DE","subjectDN":"MF4xCzAJBgNVBAYTAkRFMRUwEwYDVQQKEwxELVRydXN0IEdtYkgxHzAdBgNVBAMTFkQtVFJVU1QgQ0EgMi0yIEVWIDIwMTYxFzAVBgNVBGETDk5UUkRFLUhSQjc0MzQ2","whitelist":false,"attachment":{"hash":"0825406b026a6a7eccc3247066b51626c668bc7f4c309505d5c1e32a1af60822","size":2182,"filename":"i6ujKRFlQ2Ig06L83VzPhB9sBlGOZCDwkUjNLjHtSJo=.pem","location":"security-state-staging/intermediates/8b7d4055-606f-43ea-83f8-a86a2a904797.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i6ujKRFlQ2Ig06L83VzPhB9sBlGOZCDw
kUjNLjHtSJo=","crlite_enrolled":true,"id":"6fc15004-2622-45ba-a821-4bcba503d6f5","last_modified":1562025078039},{"schema":1562025076548,"derHash":"vzLalUVxZZqvcVwT7nA+NkPfy67uLYIRDKaOtXy2fOA=","subject":"CN=TUBITAK Kamu SM SSL Sertifika Hizmet Saglayicisi - Surum 1,OU=Kamu Sertifikasyon Merkezi - Kamu SM,O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK,L=Gebze - Kocaeli,C=TR","subjectDN":"MIHfMQswCQYDVQQGEwJUUjEYMBYGA1UEBwwPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKDDlUdXJraXllIEJpbGltc2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklUQUsxLTArBgNVBAsMJEthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBTTTFDMEEGA1UEAww6VFVCSVRBSyBLYW11IFNNIFNTTCBTZXJ0aWZpa2EgSGl6bWV0IFNhZ2xheWljaXNpIC0gU3VydW0gMQ==","whitelist":false,"attachment":{"hash":"ab10fd30609bc30f75d3ede708f810cf2fdb009802424fd6ed3e4c6bf308db7c","size":2296,"filename":"FUrqo5K2woGDo0xUxDmAoLHpCJRt3-d67a7xGdVm1s8=.pem","location":"security-state-staging/intermediates/56f71156-d839-4560-9fe4-299ea364f331.pem","mimetype":"appli
cation/x-pem-file"},"pubKeyHash":"FUrqo5K2woGDo0xUxDmAoLHpCJRt3+d67a7xGdVm1s8=","crlite_enrolled":true,"id":"461c30ef-db33-4e0c-bcf1-c4fb264c2a61","last_modified":1562025077300},{"schema":1562025075778,"derHash":"zWwQig5kHyyhIqqm0D+CZ1nK58b4AOq/dtxItnzQg84=","subject":"CN=COMODO ECC Domain Validation Secure Server CA 2,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGSMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE4MDYGA1UEAxMvQ09NT0RPIEVDQyBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENBIDI=","whitelist":false,"attachment":{"hash":"7facb26c244929edfadc101e9d19a9d34d32396b62ea53c5d23503e6bc13eb7d","size":1317,"filename":"x9SZw6TwIqfmvrLZ_kz1o0Ossjmn728BnBKpUFqGNVM=.pem","location":"security-state-staging/intermediates/fffcaf3e-173f-4e58-b6c4-9954f5874559.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x9SZw6TwIqfmvrLZ/kz1o0Ossjmn728BnBKpUFqGNVM=","crlite_enrolled":true,"id":"c6b246
3c-5d7d-46a7-81b3-08d470deb2cb","last_modified":1562025076540},{"schema":1562025073491,"derHash":"x+l2qnfpJJHCaYQLLxRh5lFHorsYHuWatjvNhnBP5FY=","subject":"CN=SHECA RSA Code Signing CA G3,O=UniTrust,C=CN","subjectDN":"MEcxCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDElMCMGA1UEAwwcU0hFQ0EgUlNBIENvZGUgU2lnbmluZyBDQSBHMw==","whitelist":false,"attachment":{"hash":"04a5c4549fb8f38d3d8667477114ebb450959d81527a986faab3d950083f6f57","size":1999,"filename":"1ZF5amwL4aSG-YZ86E54FJywudjHd13EF9RlMionCIk=.pem","location":"security-state-staging/intermediates/7f712404-bc1b-47a2-932b-37e11e83d004.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1ZF5amwL4aSG+YZ86E54FJywudjHd13EF9RlMionCIk=","crlite_enrolled":false,"id":"494cbaa5-812e-4b2f-955d-b47b33fc6092","last_modified":1562025074261},{"schema":1562025072011,"derHash":"UCx6hwNB175n2ybb+s+WR6/YmoVL+IEvpO9ww1bsE+U=","subject":"CN=VR IDENT SSL CA 2018,OU=VR IDENT,O=Fiducia & GAD IT AG,C=DE","subjectDN":"MF0xCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2
lhICYgR0FEIElUIEFHMREwDwYDVQQLDAhWUiBJREVOVDEdMBsGA1UEAwwUVlIgSURFTlQgU1NMIENBIDIwMTg=","whitelist":false,"attachment":{"hash":"bef7765a6512b8ca9ae0249e5ae13feb4bab372a421c7f5baac1aa38a4051dc3","size":2097,"filename":"9frFyfDp-D9WCFjQblKwXUi5EgVRtx22594YJETOc_Y=.pem","location":"security-state-staging/intermediates/82a38024-ae36-439e-82e2-33dccd4b696e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9frFyfDp+D9WCFjQblKwXUi5EgVRtx22594YJETOc/Y=","crlite_enrolled":true,"id":"d70ce8a6-7038-4f00-b159-048f0e1bb4a7","last_modified":1562025072738},{"schema":1562025065222,"derHash":"Z7vZFEbTre+bIcBXaZbc2OZmjWsMEz8Ha5H6cc7mtCg=","subject":"CN=eMudhra ECC Extended Validation Secure Server CA,OU=Controlled by Sectigo exclusively for eMudhra Technologies Ltd.,O=eMudhra Technologies Limited,L=Bengaluru,ST=Karnataka,C=IN","subjectDN":"MIHhMQswCQYDVQQGEwJJTjESMBAGA1UECBMJS2FybmF0YWthMRIwEAYDVQQHEwlCZW5nYWx1cnUxJTAjBgNVBAoTHGVNdWRocmEgVGVjaG5vbG9naWVzIExpbWl0ZWQxSDBGBgNVBAsTP0NvbnRyb2xsZWQgY
nkgU2VjdGlnbyBleGNsdXNpdmVseSBmb3IgZU11ZGhyYSBUZWNobm9sb2dpZXMgTHRkLjE5MDcGA1UEAxMwZU11ZGhyYSBFQ0MgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"f4e2753836be21882cf81baaf3794e45c6251465fdc3122487eaf955a4717b2c","size":1475,"filename":"4ilprzeauYUkRwucZKCyuMuQcVH9en_FzR8kab23FUw=.pem","location":"security-state-staging/intermediates/5dde594d-faa8-45b6-b6dc-05a87417963b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4ilprzeauYUkRwucZKCyuMuQcVH9en/FzR8kab23FUw=","crlite_enrolled":false,"id":"2a3b5d82-65bb-4191-8f82-c390f1255cee","last_modified":1562025065952},{"schema":1562025064486,"derHash":"n+MG5mPkWWRGRPYKcVOiIUNvuXAaDr2RJO74FZ0Vy0M=","subject":"CN=Volusion\\, Inc. DV SSL CA - G5,OU=Domain Validated SSL,O=Volusion\\, Inc.,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5Wb2x1c2lvbiwgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxJjAkBgNVBAMTHVZvbHVzaW9uLCBJbmMuIERWIFNTTCBDQSAtIEc1","whitelist":false,"attachment":{"hash":"d6
00675b0ea244526a7e982b0b42e29a9e2f8c443783402839710f9d61aa039d","size":1780,"filename":"0qaE-lR_HlMyGUft-kaWwHccbGBGkL_WTsxQSJfcsSY=.pem","location":"security-state-staging/intermediates/7aa3b67a-7df3-4fce-87db-ff1f1ed65a32.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0qaE+lR/HlMyGUft+kaWwHccbGBGkL/WTsxQSJfcsSY=","crlite_enrolled":false,"id":"0a95c72f-274f-4fd6-82c2-b58fc7d5898c","last_modified":1562025065214},{"schema":1562025063738,"derHash":"DagZ5S3YXGv8iJljXIvbtq8PtPKDBK4R22eaZ+q2jtU=","subject":"CN=Gehirn Managed Certification Authority - RSA Code Signing,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMUIwQAYDVQQDEzlHZWhpcm4gTWFuYWdlZCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIFJTQSBDb2RlIFNpZ25pbmc=","whitelist":false,"attachment":{"hash":"35d2dd8a48c50a74aef445ab0ec7bae08b2819039adc788c1de3b36cf7650cff","size":2146,"filename":"5rb709u6Spj2XvBxL9BirCoj9Rgkne_qaJSTgc_p
_BE=.pem","location":"security-state-staging/intermediates/f20a11f5-df0f-477e-a442-c14708d9220b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5rb709u6Spj2XvBxL9BirCoj9Rgkne/qaJSTgc/p/BE=","crlite_enrolled":false,"id":"7c6dfd39-8b1c-4df2-8ef3-b8c4f355d6db","last_modified":1562025064478},{"schema":1562025062950,"derHash":"z3z6T528y8ptIO/evq1OFzs052vaHrHmGfROBulfwgg=","subject":"CN=Wells Fargo Public Trust Certification Authority 01 G2,OU=Organization Validated TLS,O=Wells Fargo & Company,C=US","subjectDN":"MIGTMQswCQYDVQQGEwJVUzEeMBwGA1UECgwVV2VsbHMgRmFyZ28gJiBDb21wYW55MSMwIQYDVQQLExpPcmdhbml6YXRpb24gVmFsaWRhdGVkIFRMUzE/MD0GA1UEAxM2V2VsbHMgRmFyZ28gUHVibGljIFRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IDAxIEcy","whitelist":false,"attachment":{"hash":"6a95abe84c8fbfe5c918a8ab12dc0a36ee395740e96f9b6ac44f84ce7b6f2fd0","size":1727,"filename":"piL8cJbKkJ2PJeful08_TUBtZu6QcnuC-5qgNu13n_c=.pem","location":"security-state-staging/intermediates/997b2303-b010-4dfd-b758-6970b5ab0dad.pem","mim
etype":"application/x-pem-file"},"pubKeyHash":"piL8cJbKkJ2PJeful08/TUBtZu6QcnuC+5qgNu13n/c=","crlite_enrolled":true,"id":"a1e2fd83-de14-4ea7-89a4-a885aa53e074","last_modified":1562025063730},{"schema":1562025062205,"derHash":"/x4NIzGWt+wgvt/GWYjgrhmF7GrDMqea3/5xuGvAIIo=","subject":"CN=Trustwave Organization Validation SHA256 CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIG1MQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE9MDsGA1UEAxM0VHJ1c3R3YXZlIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNIQTI1NiBDQSwgTGV2ZWwgMTEfMB0GCSqGSIb3DQEJARYQY2FAdHJ1c3R3YXZlLmNvbQ==","whitelist":false,"attachment":{"hash":"c4e85dd715d693fa9930a447454ded3d627e3d3b3b286d7920644bb09c1f9485","size":1788,"filename":"OSqnIRIhJQGKEtc7abZMpS4Y3djh39opzqI2WqlYVqM=.pem","location":"security-state-staging/intermediates/47da45ba-e89b-4a33-9469-9f4ccb00099f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OSqnIRIhJQGKEt
c7abZMpS4Y3djh39opzqI2WqlYVqM=","crlite_enrolled":true,"id":"146dea34-1807-4e59-b4c6-47e194cb050a","last_modified":1562025062941},{"schema":1562025061470,"derHash":"ypcck2xpm8XWpgnSUp+QOmD24UGizxK+cjE9pQymThc=","subject":"CN=Entrust Certification Authority - L1C,OU=www.entrust.net/rpa is incorporated by reference+OU=(c) 2009 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGxMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L3JwYSBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAwOSBFbnRydXN0LCBJbmMuMS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFD","whitelist":false,"attachment":{"hash":"e336697d6d6d247a3534a773c8f042c58cc674921c708305291fc08c2c8f71c1","size":1780,"filename":"VFv5NemtodoRftw8KsvFb8AoCWwOJL6bOJS-Ui0bQ94=.pem","location":"security-state-staging/intermediates/05273d59-b2eb-4c09-919e-6bb3e8f76735.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VFv5NemtodoRftw8KsvFb8AoCWwOJL6bOJS+Ui0bQ94=","crlite
_enrolled":false,"id":"173e072b-5593-4d2c-a599-a3f87cc0518b","last_modified":1562025062198},{"schema":1562025059950,"derHash":"mxby9oDXxL1qZ/YJNA2mQWq/nkPxMmsBuYgZInHQtfI=","subject":"CN=TWCA Secure SSL Certification Authority,OU=Secure SSL Sub-CA,O=TAIWAN-CA,C=TW","subjectDN":"MG8xCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExGjAYBgNVBAsTEVNlY3VyZSBTU0wgU3ViLUNBMTAwLgYDVQQDEydUV0NBIFNlY3VyZSBTU0wgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"acd717a163c1e31ec674bb2953f2f16be424838b5d36e703984df5d77c80d023","size":2032,"filename":"8hqbhsMMFPaPA8t81pxqFer9-neHBcQvO7-TAKjWkb0=.pem","location":"security-state-staging/intermediates/264eee83-19f9-4406-ab9f-ae5fc55e9a70.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8hqbhsMMFPaPA8t81pxqFer9+neHBcQvO7+TAKjWkb0=","crlite_enrolled":true,"id":"2535f8ba-07ba-4b54-85a8-742db433036d","last_modified":1562025060710},{"schema":1562025058467,"derHash":"eUxj2yRLpz+yhvFdq40MpUJVCDgemIRJVOY4I7tdf3Q=","subject":"CN=TER
ENA Code Signing CA 3 G3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MHAxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEkMCIGA1UEAxMbVEVSRU5BIENvZGUgU2lnbmluZyBDQSAzIEcz","whitelist":false,"attachment":{"hash":"67d12a6df588120ded0c554ece180c84351d42fc41dbf982b6948dab2df22467","size":1597,"filename":"FeQyg5uKifHhVqnOqFJSwfGgb8uYTvS8cKI3bV75nCc=.pem","location":"security-state-staging/intermediates/62b75d9a-a2dd-494d-a88d-c787419e47d1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FeQyg5uKifHhVqnOqFJSwfGgb8uYTvS8cKI3bV75nCc=","crlite_enrolled":false,"id":"539ffd44-f8ec-443f-8e22-8157ceeced08","last_modified":1562025059208},{"schema":1562025056217,"derHash":"8crKarI1CnZowT5BlgkIaB2vzH42jcuNR/7PljE5BIE=","subject":"CN=TrustAsia ECC OV TLS Pro CA,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFoxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSQwIgYDVQQDExtUcnVzdEFzaWEgRUNDIE9WIFRMUyBQcm8
gQ0E=","whitelist":false,"attachment":{"hash":"6c1475f6577a7d8b8cd4032290f9d3b4f16ef261f5dea618390de753433264ba","size":1435,"filename":"Gk60bmqo_Mr2nOHuGjR4JqFa8B4v-ZsjwYEWTGOxLZ8=.pem","location":"security-state-staging/intermediates/80dd276f-7f90-4ae3-bab0-8c263d2a1ebf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Gk60bmqo/Mr2nOHuGjR4JqFa8B4v+ZsjwYEWTGOxLZ8=","crlite_enrolled":true,"id":"63b7bdc2-0b6c-4e17-a4de-f25eb0e600ee","last_modified":1562025056958},{"schema":1562025054736,"derHash":"YaAep+jYAWzO+S/xPj2+CC4HecTLZL9vDDFiWNYhD1w=","subject":"CN=Postecom CS5,OU=Servizi di Certificazione,O=Postecom S.p.A.,C=IT","subjectDN":"MGIxCzAJBgNVBAYTAklUMRgwFgYDVQQKEw9Qb3N0ZWNvbSBTLnAuQS4xIjAgBgNVBAsTGVNlcnZpemkgZGkgQ2VydGlmaWNhemlvbmUxFTATBgNVBAMTDFBvc3RlY29tIENTNQ==","whitelist":false,"attachment":{"hash":"f73449e65874ddaf76a68ad4ca913f3ef07165a4119dcb650289f8ff2ba6de0e","size":1821,"filename":"S7BcBDWMjWvsvh-sjH2B5aN-jXOOiQoUlhVMqtpLSWw=.pem","location":"security-state-stagi
ng/intermediates/cdd87641-44fd-450b-9842-0b4bacada09c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S7BcBDWMjWvsvh+sjH2B5aN+jXOOiQoUlhVMqtpLSWw=","crlite_enrolled":false,"id":"89689b27-7f23-4f31-a04c-fef27fbc6e21","last_modified":1562025055469},{"schema":1562025053217,"derHash":"1B0jxRVZ9l5cIlA9enq/XNll7DnGHGmKfZjXl69we0g=","subject":"CN=QuoVadis PKIoverheid Burger CA - G3,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MHYxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEXMBUGA1UEYQwOTlRSTkwtMzAyMzc0NTkxLDAqBgNVBAMMI1F1b1ZhZGlzIFBLSW92ZXJoZWlkIEJ1cmdlciBDQSAtIEcz","whitelist":false,"attachment":{"hash":"c7a9f074902a6aa68cc5daf09ea2342f7c79943b0a12ce3c81b74e5b11a70d93","size":2515,"filename":"yXbbq97SU3naAOm_9b7Z3abjalu8evwL90mvR5tYrxI=.pem","location":"security-state-staging/intermediates/31886e5b-8fc9-43a9-be21-dedceb3da392.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yXbbq97SU3naAOm/9b7Z3abjalu8evwL90mvR5tYrxI=","crlite_enrolled":false,"id":"6ff3e4
34-3089-4258-9de6-40967e5f4132","last_modified":1562025053958},{"schema":1562025050938,"derHash":"RN/NLFcxEOdL9OhZA1lfZgZQ7ZJbcwZULFToc5ZnHwM=","subject":"CN=Entrust Timestamping CA - TS1,OU=See www.entrust.net/legal-terms+OU=(c) 2015 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIGyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTUgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MSYwJAYDVQQDEx1FbnRydXN0IFRpbWVzdGFtcGluZyBDQSAtIFRTMQ==","whitelist":false,"attachment":{"hash":"577dbd9da74652ee25974192c61a23516212a969fc34528add1fcc80925bd074","size":1821,"filename":"2ZRlUMP6KnCWtb1kDwzUvFMy7HFk7d75zoOnwZikIso=.pem","location":"security-state-staging/intermediates/d1400fc2-ba20-411a-a9ec-82f2036a0d41.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2ZRlUMP6KnCWtb1kDwzUvFMy7HFk7d75zoOnwZikIso=","crlite_enrolled":true,"id":"2e96e934-bc60-4e45-b1ae-6ac3cd4d7192","l
ast_modified":1562025051685},{"schema":1562025050182,"derHash":"WkmxWuYP9ifaJyqHQ9ZxYrrKEJYWggMhOs+CJ69MSUI=","subject":"CN=Herritar eta Erakundeen CA - CA de Ciudadanos y Entidades (3),OU=NZZ Ziurtagiri publikoa - Certificado publico SCI,O=IZENPE S.A.,C=ES","subjectDN":"MIGnMQswCQYDVQQGEwJFUzEUMBIGA1UEChMLSVpFTlBFIFMuQS4xOjA4BgNVBAsTMU5aWiBaaXVydGFnaXJpIHB1Ymxpa29hIC0gQ2VydGlmaWNhZG8gcHVibGljbyBTQ0kxRjBEBgNVBAMTPUhlcnJpdGFyIGV0YSBFcmFrdW5kZWVuIENBIC0gQ0EgZGUgQ2l1ZGFkYW5vcyB5IEVudGlkYWRlcyAoMyk=","whitelist":false,"attachment":{"hash":"d85bcef74f09e1dbd2ce16da48da2ee5fc7a20a7fff9caa5dc49af6709f5f48c","size":2576,"filename":"bMhIINBfI65xm4qrUlaPfhKn2U2zsWEE7sOwUjKeoT8=.pem","location":"security-state-staging/intermediates/d89eb328-693b-4b24-90f8-34bf2e499dca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bMhIINBfI65xm4qrUlaPfhKn2U2zsWEE7sOwUjKeoT8=","crlite_enrolled":true,"id":"fb272741-7da4-469b-ab59-52ece6f412f9","last_modified":1562025050930},{"schema":1562025048669,"derH
ash":"O21wEzGoy4CUQ+QqcyutZ18iWxXMQ5rPJqCVh8iF7P0=","subject":"CN=Symantec Class 3 ECC 256 bit SSL CA - G2,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGAMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxMTAvBgNVBAMTKFN5bWFudGVjIENsYXNzIDMgRUNDIDI1NiBiaXQgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"dd8428516f7ee04d365e81abc17f14b27db1dd65e497858fb5076ee6a42789d1","size":1544,"filename":"pvsOo_07kXBfe36yjJgm6H46EJRe7gurjSAeunJgFyg=.pem","location":"security-state-staging/intermediates/c43cbcd9-1879-4ef8-a529-ade872f5c07d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pvsOo/07kXBfe36yjJgm6H46EJRe7gurjSAeunJgFyg=","crlite_enrolled":true,"id":"76183d88-9a69-4233-a9d4-377d8af9daef","last_modified":1562025049405},{"schema":1562025045660,"derHash":"IR3fUFkimzV3dg1iPVFI25Ly0FJupTA+fuoDANn6/z8=","subject":"CN=GeoTrust SSL CA - G4,O=GeoTrust Inc.,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRYwFAY
DVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQDExRHZW9UcnVzdCBTU0wgQ0EgLSBHNA==","whitelist":false,"attachment":{"hash":"4b9e0e629f273674af2b982675d640bf5da8b3cc39e14022da35f88d46659b08","size":1492,"filename":"QoTQx7p3k0wVLzWrcAjFS6UajzFlS4Lr9rtoIZxCk4g=.pem","location":"security-state-staging/intermediates/c774e78c-fcab-4c20-88c0-0ac1d943184e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QoTQx7p3k0wVLzWrcAjFS6UajzFlS4Lr9rtoIZxCk4g=","crlite_enrolled":false,"id":"eefd72ee-9737-4b19-895e-8b65b055fa5f","last_modified":1562025046407},{"schema":1562025044898,"derHash":"VIN+97WsSqI2BqFe8w3kbpu34j5g9u1PJhIJK5Ttxo8=","subject":"CN=Data Management Intermediate Certificate Authority,OU=Fresenius Kabi USA,O=Fresenius Kabi AG,C=US","subjectDN":"MIGDMQswCQYDVQQGEwJVUzEaMBgGA1UEChMRRnJlc2VuaXVzIEthYmkgQUcxGzAZBgNVBAsTEkZyZXNlbml1cyBLYWJpIFVTQTE7MDkGA1UEAxMyRGF0YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDZXJ0aWZpY2F0ZSBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"e31d3bb304fdcef75199ff47761dd7
a91e1a654cedec5485da203640dc0eee39","size":1748,"filename":"6tOYk51VDHXklgQiMTHvUHAqQsHRj8do_RweZi812do=.pem","location":"security-state-staging/intermediates/941016f3-c0dc-47ea-8440-1a189d509dbf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6tOYk51VDHXklgQiMTHvUHAqQsHRj8do/RweZi812do=","crlite_enrolled":true,"id":"1e9a1998-a52f-498c-8217-0418e4aaeb12","last_modified":1562025045652},{"schema":1562025043405,"derHash":"umoMEXDhxzI4YHSbXnsO02WXXY/JB0CxXXD4Q6I5SUI=","subject":"CN=Secure Site Pro CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xGzAZBgNVBAMTElNlY3VyZSBTaXRlIFBybyBDQQ==","whitelist":false,"attachment":{"hash":"66b49fd854d0f3af5d909f8ce76dcf4b94b573305dd98b683cde0582e3dfb8c4","size":1674,"filename":"yFzqzO6UfU8CG8Xw6hrhKs8Wc7kjwaPPHpMW5A4WT3k=.pem","location":"security-state-staging/intermediates/c371d115-079f-4788-8e8b-6a4ee2c482b2.pem","mimetype":"application/x-pem-fi
le"},"pubKeyHash":"yFzqzO6UfU8CG8Xw6hrhKs8Wc7kjwaPPHpMW5A4WT3k=","crlite_enrolled":true,"id":"283d1332-2aae-4370-8412-97de93ae7f53","last_modified":1562025044153},{"schema":1562025041146,"derHash":"ayMo5//1mLKt+Qt/PqQrRfpgbXjisRe31g6Z6CjPdWU=","subject":"CN=SecurityMetrics DigiCert EV CA,OU=www.securitymetrics.com,O=SecurityMetrics,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMRgwFgYDVQQKEw9TZWN1cml0eU1ldHJpY3MxIDAeBgNVBAsTF3d3dy5zZWN1cml0eW1ldHJpY3MuY29tMScwJQYDVQQDEx5TZWN1cml0eU1ldHJpY3MgRGlnaUNlcnQgRVYgQ0E=","whitelist":false,"attachment":{"hash":"336f835546bcbd7bfe88c38d0c674fd47a6a5c5be1a5486d4daa23f269db4fcd","size":2316,"filename":"f8vazxLVGT76Jd96F8flimC6GezMF1z65oKBNglhwWI=.pem","location":"security-state-staging/intermediates/7c79f9fa-67cb-4c11-82e6-64052aec3db6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"f8vazxLVGT76Jd96F8flimC6GezMF1z65oKBNglhwWI=","crlite_enrolled":false,"id":"628f9c50-cfa7-4a7f-b0c3-3351d5f5cf3a","last_modified":1562025041897},{"schema":156202503
5890,"derHash":"ZJkbaYayLPAGSdr4+pIu2aFNyDBcznzYNyy/SGXmrzU=","subject":"CN=InCommon RSA Standard Assurance Client CA,OU=InCommon,O=Internet2,L=Ann Arbor,ST=MI,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzELMAkGA1UECBMCTUkxEjAQBgNVBAcTCUFubiBBcmJvcjESMBAGA1UEChMJSW50ZXJuZXQyMREwDwYDVQQLEwhJbkNvbW1vbjEyMDAGA1UEAxMpSW5Db21tb24gUlNBIFN0YW5kYXJkIEFzc3VyYW5jZSBDbGllbnQgQ0E=","whitelist":false,"attachment":{"hash":"5516a3bdf31fbe862f6d40c679b1e72adff036e89dc6da16d3f805c225393b32","size":2146,"filename":"eMuPzKB_rex8LWz8BNirHFcDvwMQzLyJm8N3Lt63-H0=.pem","location":"security-state-staging/intermediates/993a6a3b-3703-47e1-b7d3-1b59393d7302.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eMuPzKB/rex8LWz8BNirHFcDvwMQzLyJm8N3Lt63+H0=","crlite_enrolled":true,"id":"f5dcc1de-de9d-438d-96d4-2168936f35d2","last_modified":1562025036647},{"schema":1562025035117,"derHash":"RCLpY+5TzVjMn4XNQL9f/sAJX98aFUU1ZhwcBrytxps=","subject":"CN=RapidSSL TLS RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","su
bjectDN":"MGAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHzAdBgNVBAMTFlJhcGlkU1NMIFRMUyBSU0EgQ0EgRzE=","whitelist":false,"attachment":{"hash":"69d032f5f19ec96ac1d0f6f0b439e8d2c2bfd00ab74cdabf88312932bac1b34f","size":1691,"filename":"E3tYcwo9CiqATmKtpMLW5V-pzIq-ZoDmpXSiJlXGmTo=.pem","location":"security-state-staging/intermediates/375bde0a-beb6-483a-9339-61f13f530c25.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"E3tYcwo9CiqATmKtpMLW5V+pzIq+ZoDmpXSiJlXGmTo=","crlite_enrolled":true,"id":"59d85ee5-bf80-40cd-a805-345268365f1f","last_modified":1562025035883},{"schema":1562025032835,"derHash":"qOuP4Jnphs1iLWIRX+xzCnBUIvTTRlns8XvdbSZe+WQ=","subject":"SERIALNUMBER=201724,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzI0","whitelist":false,"attachment":{"hash":"c362bc91d6eb297cf53c9ce9a9b934a
f9e305ffa3e0cc90c664c495fee09c6ff","size":2402,"filename":"YTmDkSKXvIVulXo3XSSMwIrhUc6vs-5me4IYjfUANq4=.pem","location":"security-state-staging/intermediates/c1485633-198e-4497-9bc4-30b5e3e29c77.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YTmDkSKXvIVulXo3XSSMwIrhUc6vs+5me4IYjfUANq4=","crlite_enrolled":false,"id":"f7154206-f444-4a55-bee3-ce319dda62c2","last_modified":1562025033589},{"schema":1562025031339,"derHash":"ghzFXOfsXHT+u0L2JOtqNsR4IVox7Wfjz3I6Z+jHXro=","subject":"CN=cPanel\\, Inc. Certification Authority,O=cPanel\\, Inc.,L=Houston,ST=TX,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJUWDEQMA4GA1UEBxMHSG91c3RvbjEVMBMGA1UEChMMY1BhbmVsLCBJbmMuMS0wKwYDVQQDEyRjUGFuZWwsIEluYy4gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"cc5ca55f55fe8db39161538d89c9181ab530eb451e3e3b5363c71f91b98190bd","size":2121,"filename":"hOF1upiO-xevnDEQ13g3aY3M3Uqa44RN5rVlwvU2WC8=.pem","location":"security-state-staging/intermediates/5083a119-aa5f-40e8-ad0e-86d5
bc86d01f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hOF1upiO+xevnDEQ13g3aY3M3Uqa44RN5rVlwvU2WC8=","crlite_enrolled":true,"id":"7e0a7eb1-8624-47dc-a0e1-488b57b12c42","last_modified":1562025032080},{"schema":1562025030594,"derHash":"RbKjpNBu5lLpQPq8pc2HIcH7f+7Yt1sMx/Bn4dJuLP4=","subject":"CN=TrustAsia ECC CA G9,OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEcMBoGA1UEAxMTVHJ1c3RBc2lhIEVDQyBDQSBHOQ==","whitelist":false,"attachment":{"hash":"bd06281ba8b65c487bcaf02e8c67fced703516ea1e968c14dad4048435006cb1","size":1158,"filename":"E_JWIAleox34urTjQsyJItGCeb7utaBK4A4Q4BxWn7Q=.pem","location":"security-state-staging/intermediates/53fd78cb-a50d-4f97-aae6-46787d4f5ee8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"E/JWIAleox34urTjQsyJItGCeb7utaBK4A4Q4BxWn7Q=","crlite_enrolled":false,"id":"2c378a94-8c79-4f69-9f15-f546474cf1e0","la
st_modified":1562025031331},{"schema":1562025026869,"derHash":"Y0wIQiwQQdC0OZj4cgnfyt+ALReYKkGINkYQ47JwIuY=","subject":"CN=TrustOcean EV SSL CA - ECC - 2019,OU=Controlled by Sectigo exclusively for TrustOcean Ltd.+OU=ECC Extended Validation Secure Server - 2019,O=TrustOcean Ltd.,L=Denver,ST=CO,C=US","subjectDN":"MIHoMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPVHJ1c3RPY2VhbiBMdGQuMT4wPAYDVQQLEzVDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIFRydXN0T2NlYW4gTHRkLjE1MDMGA1UECxMsRUNDIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciAtIDIwMTkxKjAoBgNVBAMTIVRydXN0T2NlYW4gRVYgU1NMIENBIC0gRUNDIC0gMjAxOQ==","whitelist":false,"attachment":{"hash":"c519d329637101adf8248c369a8ab756f60797499dbf135d441c9e2ce13d0271","size":1488,"filename":"Vc2_CgGqt67rbPDmVebdbcjW8DdUmegpdRVNRHMHKK8=.pem","location":"security-state-staging/intermediates/500b6284-ebaf-43a0-9c1b-6ef5e20dd053.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vc2/CgGqt67rbPDmVebdbcjW8DdUmegpdRVNRHMHKK8
=","crlite_enrolled":false,"id":"bbdc2c26-85fe-4475-95d7-a38dbd368c3e","last_modified":1562025027604},{"schema":1562025022401,"derHash":"Jb/bHF/izOBR7G378rsk54yS+WmxuzeGfa7fk9Gnrn4=","subject":"CN=SHECA Extended Validation SSL CA,O=UniTrust,C=CN","subjectDN":"MEsxCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEpMCcGA1UEAwwgU0hFQ0EgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTU0wgQ0E=","whitelist":false,"attachment":{"hash":"42b647c52ed57012729814fa390a3a85ee801287cea6820f002c3e2d0f8cb467","size":1959,"filename":"J1sjCSbhps4X1wNpt4UhFDB8y_McQPnMa3S-sE4q0u0=.pem","location":"security-state-staging/intermediates/270af4bc-d20d-421d-baa5-121348e70203.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"J1sjCSbhps4X1wNpt4UhFDB8y/McQPnMa3S+sE4q0u0=","crlite_enrolled":false,"id":"d83176fc-a4d2-461d-84e7-446080d64684","last_modified":1562025023133},{"schema":1562025021661,"derHash":"vbeqKPFk5LwV1pIHM7Ij7ZjlUiCj5W87Hs/QTofTC3E=","subject":"CN=InCommon ECC Server CA,OU=InCommon,O=Internet2,L=Ann Arbor,ST=MI,C=US
","subjectDN":"MHYxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJNSTESMBAGA1UEBxMJQW5uIEFyYm9yMRIwEAYDVQQKEwlJbnRlcm5ldDIxETAPBgNVBAsTCEluQ29tbW9uMR8wHQYDVQQDExZJbkNvbW1vbiBFQ0MgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"bd2692889db0e772b2adde17ac8a48c54a2d7f098304383c50e831df081e8097","size":1293,"filename":"8Ped1-_2NPqUB2Q-UJri8oBJaaIrldtkbw8LmkGTkrE=.pem","location":"security-state-staging/intermediates/c7b87f92-6e81-430b-96fe-25ebc26395bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8Ped1+/2NPqUB2Q+UJri8oBJaaIrldtkbw8LmkGTkrE=","crlite_enrolled":true,"id":"f7abff5f-fd5e-4449-bd72-971145c852f0","last_modified":1562025022393},{"schema":1562025020924,"derHash":"qfjQ7GD3LYrIefbjzDgOUACYvACAwHrFOfrmglQ//AI=","subject":"CN=UbiquiTLS\u2122 DV ECC Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGAMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDEmMCQGA1UEAwwdVWJpcXVpVExT4oSiIER
WIEVDQyBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"1cf7f75e73f68c6177fe790e1d4a9c2fe8833648fe4b568093a3cd04201f3bce","size":1293,"filename":"PCnX_sRleYJP1z0cO3yKQbR6-NN9ywVZIPJzzytrEH8=.pem","location":"security-state-staging/intermediates/322e50ca-ba44-4200-89bd-bdf704bce13c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PCnX/sRleYJP1z0cO3yKQbR6+NN9ywVZIPJzzytrEH8=","crlite_enrolled":false,"id":"da8c9975-55f9-4df4-8621-e6a574681b68","last_modified":1562025021653},{"schema":1562025017923,"derHash":"d/6HahxHY0n165rpv1P3gUoK5BFWJmfFi37SeGnFQJE=","subject":"CN=Symantec Class 3 ECC 384 bit Extended Validation CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxPDA6BgNVBAMTM1N5bWFudGVjIENsYXNzIDMgRUNDIDM4NCBiaXQgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"4d67dc1e033fc9d483ce72d6b2665130f2837b5d642207e8d127e5fa91
24e5fb","size":1451,"filename":"Rj9-JX3TAMGFOmCkoBiFCNUGzpcbKCjKv1dH5mqR0wo=.pem","location":"security-state-staging/intermediates/0c746153-158f-4efa-a07b-d38f5298431c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Rj9+JX3TAMGFOmCkoBiFCNUGzpcbKCjKv1dH5mqR0wo=","crlite_enrolled":false,"id":"f5db4a59-ac54-49e3-b94d-2b61159c94ce","last_modified":1562025018653},{"schema":1562025017174,"derHash":"Rh+0YuUdVKWaBBzVplF2CuhHrhwnwQOIfVLsCV9o5zw=","subject":"CN=Oracle RSA CA G1,OU=Organization Validated SSL,O=Oracle Corporation,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJPcmFjbGUgQ29ycG9yYXRpb24xIzAhBgNVBAsTGk9yZ2FuaXphdGlvbiBWYWxpZGF0ZWQgU1NMMRkwFwYDVQQDExBPcmFjbGUgUlNBIENBIEcx","whitelist":false,"attachment":{"hash":"c6475b4f4c4fecb05c8501f5cc0843d9255b24c61d4ff8f2e5c97fbc6b780faf","size":1687,"filename":"5YjN9RnyFnf-H3-j50ooFCdGoEN44UPUyAMy2UFnZYY=.pem","location":"security-state-staging/intermediates/12c5bd58-7852-4637-a5cb-95ca447bc7e3.pem","mimetype":"application/x-pem
-file"},"pubKeyHash":"5YjN9RnyFnf+H3+j50ooFCdGoEN44UPUyAMy2UFnZYY=","crlite_enrolled":false,"id":"0ee8a5b9-c069-43f3-ada0-e50684926783","last_modified":1562025017915},{"schema":1562025016420,"derHash":"S5bvoShnuKvyrZtO2/op2eCJsYO7XLfIG4OT+mlr0ME=","subject":"SERIALNUMBER=201901,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE5MDE=","whitelist":false,"attachment":{"hash":"19844f98179cd99f2c77dee6696880e76d7b2450ccdd651197a6ff8fd22b5edd","size":2337,"filename":"42J41ut5RRKEnkyB1fMHY7UKcEEByr5294Y5ffs_a6Q=.pem","location":"security-state-staging/intermediates/30bef80e-101a-4453-bd8d-ac9065a9f125.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"42J41ut5RRKEnkyB1fMHY7UKcEEByr5294Y5ffs/a6Q=","crlite_enrolled":false,"id":"93b323b4-b4ee-4918-b6e5-97943a6135df","last_modified":1562025017166},{"schema":1562025015677,"derHash":"LQaxte
c1DZSaC9WAU9/tbwJgrlMV1BMqDMg/8Ilck8o=","subject":"CN=University of Texas Health Science Center at San Antonio RSA CA,O=The University of Texas Health Science Center at San Antonio,L=San Antonio,ST=TX,C=US","subjectDN":"MIHBMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVFgxFDASBgNVBAcTC1NhbiBBbnRvbmlvMUUwQwYDVQQKEzxUaGUgVW5pdmVyc2l0eSBvZiBUZXhhcyBIZWFsdGggU2NpZW5jZSBDZW50ZXIgYXQgU2FuIEFudG9uaW8xSDBGBgNVBAMTP1VuaXZlcnNpdHkgb2YgVGV4YXMgSGVhbHRoIFNjaWVuY2UgQ2VudGVyIGF0IFNhbiBBbnRvbmlvIFJTQSBDQQ==","whitelist":false,"attachment":{"hash":"b5fb6720dcb740e7f089749a940f3ceaa8902143d027d65eff3d9013fa534d8e","size":2231,"filename":"nuC4L1p-OVZKcOe0o9CULKzfd9QuBwKRkV8NDZkcSAg=.pem","location":"security-state-staging/intermediates/e6c015a5-266c-46ba-907e-17bb1e4fc7c4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nuC4L1p+OVZKcOe0o9CULKzfd9QuBwKRkV8NDZkcSAg=","crlite_enrolled":false,"id":"8bda349b-e57d-4195-bbfb-0da391a25173","last_modified":1562025016412},{"schema":1562025014914,"derHash":"8y3q8iznJ
GYfU9UocxGv8lQes47K9J3Yd7lAI+OhGx8=","subject":"CN=SecurityMetrics DigiCert CA,OU=www.securitymetrics.com,O=SecurityMetrics,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRgwFgYDVQQKEw9TZWN1cml0eU1ldHJpY3MxIDAeBgNVBAsTF3d3dy5zZWN1cml0eW1ldHJpY3MuY29tMSQwIgYDVQQDExtTZWN1cml0eU1ldHJpY3MgRGlnaUNlcnQgQ0E=","whitelist":false,"attachment":{"hash":"0970375d7d27699620d3d11d4a82a61d6886f73e51c1c1866db791381de6880f","size":2312,"filename":"m-VKH0mPQWihT4uaJ80flL4auSAFAu5yhBL9G2W29xk=.pem","location":"security-state-staging/intermediates/291f4913-8df6-4e94-90b5-40989c03e635.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m+VKH0mPQWihT4uaJ80flL4auSAFAu5yhBL9G2W29xk=","crlite_enrolled":false,"id":"27307236-88cc-41cc-9958-6934903e04cc","last_modified":1562025015669},{"schema":1562025013420,"derHash":"T/QE8C4s0AGI8V0cAPS20eOLWjlc+FMU6uuoVbamS3U=","subject":"CN=Microsoft IT TLS CA 1,OU=Microsoft IT,O=Microsoft Corporation,L=Redmond,ST=Washington,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzETMBEGA1UEC
BMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMRUwEwYDVQQLEwxNaWNyb3NvZnQgSVQxHjAcBgNVBAMTFU1pY3Jvc29mdCBJVCBUTFMgQ0EgMQ==","whitelist":false,"attachment":{"hash":"dce0811c755bec02d9ace622121eef2a9874cd68090b416d4540e1b26ea3b012","size":2036,"filename":"xjXxgkOYlag7jCtR5DreZm9b61iaIhd-J3-b2LiybIw=.pem","location":"security-state-staging/intermediates/b826eaa3-3ebe-4464-bcb2-be9746c24afd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xjXxgkOYlag7jCtR5DreZm9b61iaIhd+J3+b2LiybIw=","crlite_enrolled":true,"id":"4dca8bde-78f0-4bc1-85cc-35b0938a893a","last_modified":1562025014163},{"schema":1562025012668,"derHash":"Ke2X6fDrxVWu4P2KN1niFsmHoKQLPvQvEbTlKW3w+38=","subject":"SERIALNUMBER=201704,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwNA==","whitelist":false,"attachment":{"hash":"05f39765de9a3b2
c8e30da66ee7955b8b5c1c1e49f4d56492af3ea16cc171541","size":2154,"filename":"ABkwhuUeukpacod9kYjopDaXWUb8vzCg9Sj51UrwBKY=.pem","location":"security-state-staging/intermediates/10b90d8e-2ee1-4303-8ce4-db7d6b0ca543.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ABkwhuUeukpacod9kYjopDaXWUb8vzCg9Sj51UrwBKY=","crlite_enrolled":false,"id":"767b3e09-f0c8-4aea-baa1-cf3c6d1f147c","last_modified":1562025013412},{"schema":1562025007428,"derHash":"klO/tmjz50OlJeSLX3UKimYDX4Bil8JfgTTcisljW9g=","subject":"CN=JCSI TLSSign Public CA,O=Cybertrust Japan Co.\\,Ltd.,C=JP","subjectDN":"MFIxCzAJBgNVBAYTAkpQMSIwIAYDVQQKExlDeWJlcnRydXN0IEphcGFuIENvLixMdGQuMR8wHQYDVQQDExZKQ1NJIFRMU1NpZ24gUHVibGljIENB","whitelist":false,"attachment":{"hash":"b6c1ba4e4707652fffa0f770954eae8f4d1bb58417950efc707c48d89d30379b","size":2044,"filename":"qU78sJ3fTvtBYPBxk_PfpIZWlA7ptK9MTP1UDx9LWdc=.pem","location":"security-state-staging/intermediates/27590e7a-01bd-4184-a4db-a987fa097a73.pem","mimetype":"application/x-pem-fil
e"},"pubKeyHash":"qU78sJ3fTvtBYPBxk/PfpIZWlA7ptK9MTP1UDx9LWdc=","crlite_enrolled":false,"id":"2038b122-978e-4534-b273-996f254ac1a8","last_modified":1562025008171},{"schema":1562025006676,"derHash":"ini5Zsc9dpBAwagcMhaM74ubnpbswtM8xKu1oM+MHGc=","subject":"CN=DigiCert EV Code Signing CA (SHA2) G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLjAsBgNVBAMTJURpZ2lDZXJ0IEVWIENvZGUgU2lnbmluZyBDQSAoU0hBMikgRzE=","whitelist":false,"attachment":{"hash":"bc63ae4e19f31debb6845226b79533d07f1386d720b838d6942383f100b944b4","size":1748,"filename":"oL6bQvdAH7Gl51lEx4-NJT-zVM6WKnbdLvbYv351Fbs=.pem","location":"security-state-staging/intermediates/d77d5ade-5702-4224-8823-39f280c0be1b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oL6bQvdAH7Gl51lEx4+NJT+zVM6WKnbdLvbYv351Fbs=","crlite_enrolled":false,"id":"38109b7d-ce77-4cd9-8bf6-6b5796a2ed2c","last_modified":1562025007420},{"schema":1562025005179,"d
erHash":"LWArHxZtYxba/Ua0se3W3PxU0q+KlEvjWIWP1QSqoWs=","subject":"CN=Care360 Direct Intermediate CA,OU=Care360 Direct Messaging,O=Quest Diagnostics Care360,C=US","subjectDN":"MH0xCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlRdWVzdCBEaWFnbm9zdGljcyBDYXJlMzYwMSEwHwYDVQQLExhDYXJlMzYwIERpcmVjdCBNZXNzYWdpbmcxJzAlBgNVBAMTHkNhcmUzNjAgRGlyZWN0IEludGVybWVkaWF0ZSBDQQ==","whitelist":false,"attachment":{"hash":"394755e945b33d461689f0afa1f1b626c96ad37e6df57aef74a65fd0c84c83db","size":2211,"filename":"4Vc-jglRQEtySvKvXdV2CykmL03fYouL0fdSgW7wqJQ=.pem","location":"security-state-staging/intermediates/532713a0-fee2-4438-97d6-ee210e310465.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4Vc+jglRQEtySvKvXdV2CykmL03fYouL0fdSgW7wqJQ=","crlite_enrolled":false,"id":"7f28c5f6-4818-447e-93d8-79fc00dc0c4a","last_modified":1562025005925},{"schema":1562024994614,"derHash":"pDSq5OFaVRnpsRH9COwZD9Kt8Tu+MIFcbhYGVVyzFFA=","subject":"CN=SwissSign EV Gold CA 2014 - G22,O=SwissSign AG,C=CH","subjectDN":"ME4xCzAJBgNVBAYTAkNI
MRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxKDAmBgNVBAMTH1N3aXNzU2lnbiBFViBHb2xkIENBIDIwMTQgLSBHMjI=","whitelist":false,"attachment":{"hash":"6adec53afaeac81fd0e85e675219c92a638f9f249f381dfac8c6f8f4b591b137","size":2389,"filename":"mDKR5ptpp7PqVUefxx2Ftq5ymsEuzCEg-EVrLOrQFB8=.pem","location":"security-state-staging/intermediates/0cec1d67-bead-4bb6-85d5-a11312ecfaf8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mDKR5ptpp7PqVUefxx2Ftq5ymsEuzCEg+EVrLOrQFB8=","crlite_enrolled":true,"id":"ef05a6b5-bda6-4917-a51a-a6ce6523d866","last_modified":1562024995347},{"schema":1562024993127,"derHash":"wUkuup9JLsv21OTxHTm8GpATYz/Ae17pYwHXrUY7128=","subject":"SERIALNUMBER=201911,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTEx","whitelist":false,"attachment":{"hash":"d093c41f1c66976da5a572a9fb9b4b9208f861756be1e55d561bddec0254d48d","size":2333,"filena
me":"jRLIyyb8zq9aIC8U6liq7FbbVW4DdfKK62nTd3qe12w=.pem","location":"security-state-staging/intermediates/488eb0e2-16c6-4962-8e20-ebbc1a7c6761.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jRLIyyb8zq9aIC8U6liq7FbbVW4DdfKK62nTd3qe12w=","crlite_enrolled":false,"id":"99c80d37-3b7e-41e4-93f6-5362973877d1","last_modified":1562024993860},{"schema":1562024988613,"derHash":"4l3pcKqLaFzfVUF4l/Zd5kxjpV1h7p5LgwJh3Pu//7Q=","subject":"CN=MRO Direct Intermediate CA,OU=MRO HIE Solutions,O=MRO Corporation,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRgwFgYDVQQKEw9NUk8gQ29ycG9yYXRpb24xGjAYBgNVBAsTEU1STyBISUUgU29sdXRpb25zMSMwIQYDVQQDExpNUk8gRGlyZWN0IEludGVybWVkaWF0ZSBDQQ==","whitelist":false,"attachment":{"hash":"403c39acc06a843ef717880f0c744c3f6ac52dd30b6649cca22a386369ec3ecd","size":2178,"filename":"MJuewyCldXsYBFl3uqjzMgQjNypJNP7P7ZPLxer309A=.pem","location":"security-state-staging/intermediates/2dfbb453-65fa-4e13-833b-1cec6684dbb7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MJuewyC
ldXsYBFl3uqjzMgQjNypJNP7P7ZPLxer309A=","crlite_enrolled":false,"id":"0d7367cd-10af-416d-b55b-0ed7e9bd4837","last_modified":1562024989346},{"schema":1562024987874,"derHash":"xW8PKGYYweew4RLJe57pb+tNceeUlsFR+h/oqM69Bs0=","subject":"CN=NetLock CodeSign CA,OU=Certification Services,O=NetLock Ltd.,L=Budapest,C=HU","subjectDN":"MHYxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTmV0TG9jayBMdGQuMR8wHQYDVQQLDBZDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzMRwwGgYDVQQDDBNOZXRMb2NrIENvZGVTaWduIENB","whitelist":false,"attachment":{"hash":"a44be497ab772a1eb6e68b4bcd8d66f873262b6f8c218a461eb1a2916e56e4b6","size":2109,"filename":"e9x__uYSnevFMntPG5wGBZVLvAL83lTxZlVS9aGJ_-I=.pem","location":"security-state-staging/intermediates/3e50c772-6e6b-44a6-a9ca-2b159d8e0abb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e9x//uYSnevFMntPG5wGBZVLvAL83lTxZlVS9aGJ/+I=","crlite_enrolled":false,"id":"5f1127b1-8e1f-4f9e-9512-92bcde094385","last_modified":1562024988606},{"schema":1562024987134,"derHash":"Cziq5n+j6
fbTIP4QuVM9i3roJkNf/DsWYC+HtpQszCQ=","subject":"CN=The University of Texas at Arlington RSA CA,O=The University of Texas at Arlington,L=Arlington,ST=TX,C=US","subjectDN":"MIGTMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVFgxEjAQBgNVBAcTCUFybGluZ3RvbjEtMCsGA1UEChMkVGhlIFVuaXZlcnNpdHkgb2YgVGV4YXMgYXQgQXJsaW5ndG9uMTQwMgYDVQQDEytUaGUgVW5pdmVyc2l0eSBvZiBUZXhhcyBhdCBBcmxpbmd0b24gUlNBIENB","whitelist":false,"attachment":{"hash":"2e87cf020f45d832fc00b304e12e590eb787d2539a48b3bc2f6aff63a1a3cf09","size":2170,"filename":"wT2LAU5h7_aI1jsj78C99RVlZNnZPvQSzQqLGcbu7Uk=.pem","location":"security-state-staging/intermediates/cc09a6bf-8ff9-4fb9-ba26-61a14b27a987.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wT2LAU5h7/aI1jsj78C99RVlZNnZPvQSzQqLGcbu7Uk=","crlite_enrolled":false,"id":"f6f27ed3-c922-4dcb-b829-40b0606e9b95","last_modified":1562024987867},{"schema":1562024986357,"derHash":"g/LOgfLybg7KtSqVk16bQzzxBP0PORQ9ZV7D1M02tW8=","subject":"CN=Fnet CA,O=Fuji Xerox,C=JP","subjectDN":"MDQxCzAJBgNVBAYTAkpQMR
MwEQYDVQQKEwpGdWppIFhlcm94MRAwDgYDVQQDEwdGbmV0IENB","whitelist":false,"attachment":{"hash":"448a08a68d7ed7754d89d12a72062cbf75a30c4bdeeb77d37613086121b56eb9","size":1451,"filename":"puqOSkJtbeGTV0fhGgxvlO9lSKK1aR1y6oqyJFioMi4=.pem","location":"security-state-staging/intermediates/d5ef565a-81ca-48d8-a11a-721cb32eb894.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"puqOSkJtbeGTV0fhGgxvlO9lSKK1aR1y6oqyJFioMi4=","crlite_enrolled":false,"id":"404ee307-3112-4ff7-89cb-5fb71099a17f","last_modified":1562024987126},{"schema":1562024983335,"derHash":"Sv/k/vOUZNF4jGYK9ZHV5gGyYcSBHfCj3Z1hyv6OXtg=","subject":"CN=TrustAsia EV TLS Pro CA,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFYxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSAwHgYDVQQDExdUcnVzdEFzaWEgRVYgVExTIFBybyBDQQ==","whitelist":false,"attachment":{"hash":"9a34bc6ed9a54f81e18afe77e80e21229b781d54bc55db04519ecea2fb3e30f4","size":1658,"filename":"JTqDYh_WILx03HF-qMSr0wy2uDSoWh4uqNea4MnbzZ8=.pem","loca
tion":"security-state-staging/intermediates/76f83317-0be3-4d36-a0dc-2b78af79a99f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JTqDYh/WILx03HF+qMSr0wy2uDSoWh4uqNea4MnbzZ8=","crlite_enrolled":true,"id":"75933b65-c630-416f-89b3-52bbbcf4d983","last_modified":1562024984092},{"schema":1562024982596,"derHash":"9ybIiRM2sbl8vIb1lvEmf8GAFSEiVz521RRafGTiz/c=","subject":"CN=Symantec Class 3 Extended Validation Code Signing CA - G2,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGRMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxQjBABgNVBAMTOVN5bWFudGVjIENsYXNzIDMgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDb2RlIFNpZ25pbmcgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"4acbc7350c18a439fcd9681ed171a05b0aba786ddff1a08ac60f669b1f7794a5","size":1910,"filename":"CFimR36T4UVCwZbUriIJlppqe23sbqJ64330exu8p_E=.pem","location":"security-state-staging/intermediates/43af4419-cea4-45e7-84eb-b0074f3bc2fc.pem","mimetype":"applicatio
n/x-pem-file"},"pubKeyHash":"CFimR36T4UVCwZbUriIJlppqe23sbqJ64330exu8p/E=","crlite_enrolled":true,"id":"a1648fd0-9e8b-4b9c-9d33-48ad6a04d424","last_modified":1562024983328},{"schema":1562024981077,"derHash":"8O5ZFO2UxyUtBYtOOYCK7m+o9izwl0+31tKp3xbjqH8=","subject":"CN=Microsoft IT TLS CA 5,OU=Microsoft IT,O=Microsoft Corporation,L=Redmond,ST=Washington,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMRUwEwYDVQQLEwxNaWNyb3NvZnQgSVQxHjAcBgNVBAMTFU1pY3Jvc29mdCBJVCBUTFMgQ0EgNQ==","whitelist":false,"attachment":{"hash":"bc66460eac4ecba1a41893560649ac0a5935b0618344e6870fbfc87ef5c59e56","size":2036,"filename":"RCbqB-W8nwjznTeP4O6VjqcwdxIgI79eBpnBKRr32gc=.pem","location":"security-state-staging/intermediates/92736656-01e9-4228-8ea5-b1cfef7a3342.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RCbqB+W8nwjznTeP4O6VjqcwdxIgI79eBpnBKRr32gc=","crlite_enrolled":true,"id":"45047569-986c-460d-82a8-316c641d6
f88","last_modified":1562024981814},{"schema":1562024978115,"derHash":"ZVAQN34j5M3+LlLK9YzjDFwDlcxgRvgTvdvgey84VEg=","subject":"CN=KDDI Web Communications Certification Authority,O=KDDI Web Communications Inc.,C=JP","subjectDN":"MG4xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxLRERJIFdlYiBDb21tdW5pY2F0aW9ucyBJbmMuMTgwNgYDVQQDEy9LRERJIFdlYiBDb21tdW5pY2F0aW9ucyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"378ac91ceeae997985a7faae969763fb3d5806a36440e8baeeca771c46b0aa15","size":1646,"filename":"2TEQYmL1HeKriROlREzt-6M8lVW8avv9NztuQOiIHJc=.pem","location":"security-state-staging/intermediates/be8f4741-ecef-4de6-9965-23801913e2a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2TEQYmL1HeKriROlREzt+6M8lVW8avv9NztuQOiIHJc=","crlite_enrolled":false,"id":"c9cc94c9-20c2-4321-9fa0-3872b56b5712","last_modified":1562024978848},{"schema":1562024975124,"derHash":"kbznVEFGkIq0vPnf9/mAZ2VaabDGQuEXoDHNIsfJoO4=","subject":"CN=SECOM Passport for Web SR 3.0 CA,O=SECOM Trust Syste
ms CO.\\,LTD.,C=JP","subjectDN":"MF8xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSkwJwYDVQQDEyBTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIFNSIDMuMCBDQQ==","whitelist":false,"attachment":{"hash":"0aed52ecc835b26d13f5c55cf98dedf45a8623cee6253f8013906f15eabdc316","size":1626,"filename":"-HZ42z-6jzbfrf-8zoB-rhhWo8lWk9UMNlhPseiUpJs=.pem","location":"security-state-staging/intermediates/e15b0493-c6fc-4d99-8375-9654323114dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+HZ42z+6jzbfrf+8zoB+rhhWo8lWk9UMNlhPseiUpJs=","crlite_enrolled":true,"id":"de8d47ad-573c-43a2-991b-fc87c4e56b69","last_modified":1562024975861},{"schema":1562024973611,"derHash":"25mk8oTM8Qsm3nt6XWUXJbhXy8hx67MwKNZ7VVEO/Nk=","subject":"CN=Abbott Laboratories Secure Authentication CA,O=Abbott Laboratories Inc.,C=US","subjectDN":"MGcxCzAJBgNVBAYTAlVTMSEwHwYDVQQKExhBYmJvdHQgTGFib3JhdG9yaWVzIEluYy4xNTAzBgNVBAMTLEFiYm90dCBMYWJvcmF0b3JpZXMgU2VjdXJlIEF1dGhlbnRpY2F0aW9uIENB","whitelist":false,"attachment":{"has
h":"13601b8d2aa24812d2d72f675f124723372e60d0db7dcd9dbd16be20186f8b46","size":1772,"filename":"S-zMrWUPK-hCylswDO1ieeWHUSws1lexaXMxp-YEjWA=.pem","location":"security-state-staging/intermediates/6392bedf-a3cb-40b5-99a3-490d9af06a71.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S+zMrWUPK+hCylswDO1ieeWHUSws1lexaXMxp+YEjWA=","crlite_enrolled":false,"id":"c68bc179-b841-4682-980d-88ac74913ba3","last_modified":1562024974352},{"schema":1562024971359,"derHash":"enfL1FjGKCtA8DN/0ESj5JqJzSexLFM9SDYViKQJ1OE=","subject":"SERIALNUMBER=201916,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTE2","whitelist":false,"attachment":{"hash":"43eb426da20061d8e11cdc54684699286087e17729e81f3bf24d6525dd7985e3","size":2333,"filename":"2y31tlf1YoSIRQOCqKCNs6piLK00d-zLVvBxXCTMeP4=.pem","location":"security-state-staging/intermediates/fc5d3e6b-45ce-4919-90
c0-55d81d291dd3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2y31tlf1YoSIRQOCqKCNs6piLK00d+zLVvBxXCTMeP4=","crlite_enrolled":false,"id":"c1ff1c6b-3e3b-420d-9cae-90bcf936a0a3","last_modified":1562024972112},{"schema":1562024970613,"derHash":"OKdSUCLJZYyq/GBgdk/VHGpcW+8jLT5sfkivB6CY3x4=","subject":"CN=Comodo Japan RSA DV CA,O=Comodo Japan\\, Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MHAxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzETMBEGA1UEBxMKQ2hpeW9kYS1rdTEbMBkGA1UEChMSQ29tb2RvIEphcGFuLCBJbmMuMR8wHQYDVQQDExZDb21vZG8gSmFwYW4gUlNBIERWIENB","whitelist":false,"attachment":{"hash":"7754006695792a630cfa6e7a5b8fe4f962d29eee1dd2bbc7b03206053e6f4be5","size":1658,"filename":"oGI3G9oW9P0H6HjREnI-teLBhK_5fC1XowTKkZ9VZXE=.pem","location":"security-state-staging/intermediates/4adec782-7ba7-4345-8a85-84d81c3c9fc1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oGI3G9oW9P0H6HjREnI+teLBhK/5fC1XowTKkZ9VZXE=","crlite_enrolled":true,"id":"0e5bba7c-894d-4422-b61d-6d49e9b23b36","last_mod
ified":1562024971351},{"schema":1562024969871,"derHash":"hJZThEmAOcyUWGEDGDA/nM/EUuI2eA+93EdIVn8FoO4=","subject":"CN=GoGetSSL ECC DV CA,O=GoGetSSL,L=Riga,C=LV","subjectDN":"MEwxCzAJBgNVBAYTAkxWMQ0wCwYDVQQHEwRSaWdhMREwDwYDVQQKEwhHb0dldFNTTDEbMBkGA1UEAxMSR29HZXRTU0wgRUNDIERWIENB","whitelist":false,"attachment":{"hash":"807962d5b256b434822d5d9ee5e1b629a71afab5fe9af4608367d7743aee656d","size":1244,"filename":"v7s8gnnUIPgE_G0J6878I42tOsH3uq3oEiIBuxWKvb0=.pem","location":"security-state-staging/intermediates/ccba3bfc-711d-4e2e-a31b-afcbae08c836.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"v7s8gnnUIPgE/G0J6878I42tOsH3uq3oEiIBuxWKvb0=","crlite_enrolled":true,"id":"3a5b6d43-a56f-44c7-a487-449a4d8e3f0f","last_modified":1562024970606},{"schema":1562024969125,"derHash":"xNGOCljk7/0X7XfIQLYT7xX1UQduqSwrd/ZgmmwlV8c=","subject":"CN=thawte SHA256 Code Signing CA,O=thawte\\, Inc.,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xJjAkBgNVBAMTHXRoYXd0ZSBTSEEyNTYgQ29kZSB
TaWduaW5nIENB","whitelist":false,"attachment":{"hash":"7a9762f73747c344e67453177689676cd25a9659658b4626a5d7842d1c01eb29","size":1654,"filename":"ojV9zYWXKz1QGxqVDyQznbwp3_f7lG2Vs-Z5lATJD2M=.pem","location":"security-state-staging/intermediates/8de8ac8a-71bf-46f1-830c-1ec0ce8056a4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ojV9zYWXKz1QGxqVDyQznbwp3/f7lG2Vs+Z5lATJD2M=","crlite_enrolled":true,"id":"21e0f087-5d81-48a8-b990-98815b457492","last_modified":1562024969863},{"schema":1562024966122,"derHash":"OcedKkz/4Jxh3mnsFJkdjpXOcTTs9x7weZANCtVHjK0=","subject":"CN=BlackCert\\, Inc. ECC EV Certification Authority,OU=Controlled by COMODO exclusively for BlackCert\\, Inc.,O=BlackCert\\, Inc.,L=Denver,ST=CO,C=US","subjectDN":"MIG9MQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPQmxhY2tDZXJ0LCBJbmMuMT0wOwYDVQQLEzRDb250cm9sbGVkIGJ5IENPTU9ETyBleGNsdXNpdmVseSBmb3IgQmxhY2tDZXJ0LCBJbmMuMTcwNQYDVQQDEy5CbGFja0NlcnQsIEluYy4gRUNDIEVWIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","w
hitelist":false,"attachment":{"hash":"3e9b2e222d9547e06e86f360ff56f36e2b15cde91ae5eb113a95f14ef5c1f462","size":1431,"filename":"YMJYGd5waNYmUtnRh_uwLFzS5lXUfdRoNphUMGKD7UY=.pem","location":"security-state-staging/intermediates/4174b4d5-c45c-40ea-b665-296b00f2ea1d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YMJYGd5waNYmUtnRh/uwLFzS5lXUfdRoNphUMGKD7UY=","crlite_enrolled":false,"id":"6e42b6df-14db-44eb-9daf-29923f5c3a88","last_modified":1562024966861},{"schema":1562024964611,"derHash":"LQvIZWSOoHW6VI6/4WovmR6PlkX/IfZpX4YQeeqeIso=","subject":"SERIALNUMBER=201903,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE5MDM=","whitelist":false,"attachment":{"hash":"88b1a3bb821a4aa6daecaa570343ddee62505d9f82cdfe9acc77cada464e44ae","size":2337,"filename":"TMl7JzGd02XF7Rijnv4x-FJ-6ciY9o6J9WjsDU6WBQE=.pem","location":"security-state-sta
ging/intermediates/67e6e792-85bb-461f-b45f-ad508502c59a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TMl7JzGd02XF7Rijnv4x+FJ+6ciY9o6J9WjsDU6WBQE=","crlite_enrolled":false,"id":"b1e9bced-d3da-4da6-a020-71ab0611072e","last_modified":1562024965358},{"schema":1562024963870,"derHash":"7TyZFGbLxFtf0dooECj5WHuCGVI2R+DKG0fyxSfSkg8=","subject":"CN=AffirmTrust Extended Validation CA - EV1,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGDMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMTAvBgNVBAMTKEFmZmlybVRydXN0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgLSBFVjE=","whitelist":false,"attachment":{"hash":"22bb58450c6234f294cba177f1dbd93e6d193576017408e8cdc292f4bc6a925e","size":1674,"filename":"xAD7ZgT8h1RQOQsz_6DxwKe17_oiwt-Jy6y1G1Akw00=.pem","location":"security-state-staging/intermediates/cfde6906-9b1c-47ff-a5d9-15c5809705bd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xAD7ZgT8h1RQOQsz/6DxwKe17/oiw
t+Jy6y1G1Akw00=","crlite_enrolled":true,"id":"ee7fb2cb-357d-4c77-afde-598161638058","last_modified":1562024964604},{"schema":1562024963124,"derHash":"sZGhVdUN2u+xLvX4KbzNXZ/oqeh3Z7c3S/XDbOdA/0o=","subject":"CN=TBS X509 CA persona 2,OU=TBS INTERNET CA,O=TBS INTERNET,L=Caen,ST=Calvados,C=FR","subjectDN":"MIGAMQswCQYDVQQGEwJGUjERMA8GA1UECBMIQ2FsdmFkb3MxDTALBgNVBAcTBENhZW4xFTATBgNVBAoTDFRCUyBJTlRFUk5FVDEYMBYGA1UECxMPVEJTIElOVEVSTkVUIENBMR4wHAYDVQQDExVUQlMgWDUwOSBDQSBwZXJzb25hIDI=","whitelist":false,"attachment":{"hash":"a9859ca50ce84ad6bdf91b9d7c46e32fe61f11d14399189c7c6b462117149bc7","size":2142,"filename":"ubjhAc6yaPi98oC31QdS1V0UUGGet-1zQl2VpfOY61s=.pem","location":"security-state-staging/intermediates/eaf1e313-1e14-43ec-b8b1-51ccf3548f15.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ubjhAc6yaPi98oC31QdS1V0UUGGet+1zQl2VpfOY61s=","crlite_enrolled":false,"id":"462860d8-3e72-4f5d-b4eb-60c9db3e94ef","last_modified":1562024963862},{"schema":1562024962352,"derHash":"fp3eEfdWaw+sY
iigCQWoTmNg6VAacBs+f8gy6juf2ng=","subject":"CN=Don Dominio / MrDomain RSA EV CA,OU=Controlled by COMODO CA for Soluciones Corporativas IP\\, SL,O=Soluciones Corporativas IP\\, SL,L=Manacor,ST=Illes Balears,C=ES","subjectDN":"MIHQMQswCQYDVQQGEwJFUzEWMBQGA1UECBMNSWxsZXMgQmFsZWFyczEQMA4GA1UEBxMHTWFuYWNvcjEnMCUGA1UEChMeU29sdWNpb25lcyBDb3Jwb3JhdGl2YXMgSVAsIFNMMUMwQQYDVQQLEzpDb250cm9sbGVkIGJ5IENPTU9ETyBDQSBmb3IgU29sdWNpb25lcyBDb3Jwb3JhdGl2YXMgSVAsIFNMMSkwJwYDVQQDEyBEb24gRG9taW5pbyAvIE1yRG9tYWluIFJTQSBFViBDQQ==","whitelist":false,"attachment":{"hash":"a1afd055411579d9c95224e1ed86afb5c615d247f595fa414519966b8ea70d3d","size":2296,"filename":"w0Shysnt57XAAwS7oiySGBbwyEZ1Xlrn5_wYfb_pOfc=.pem","location":"security-state-staging/intermediates/9ffa0a17-2adf-4743-a19e-380a5f3e825d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"w0Shysnt57XAAwS7oiySGBbwyEZ1Xlrn5/wYfb/pOfc=","crlite_enrolled":false,"id":"4f9a8f8f-970a-480c-ab7f-f9d5a51599a8","last_modified":1562024963117},{"schema":156202496
1614,"derHash":"dJzFKc2qua4oWBR8SwAa4dW+BY/BZcPnSvlwQTHF4cE=","subject":"CN=nazwaSSL,OU=http://nazwa.pl,O=nazwa.pl S.A.,C=PL","subjectDN":"MFIxCzAJBgNVBAYTAlBMMRYwFAYDVQQKDA1uYXp3YS5wbCBTLkEuMRgwFgYDVQQLDA9odHRwOi8vbmF6d2EucGwxETAPBgNVBAMMCG5hendhU1NM","whitelist":false,"attachment":{"hash":"897f59110ae0cae8614eb96580a96fd7cb3225869d9da4c4530b1281bf753e8a","size":1597,"filename":"sPhpJMOX1_QEIjMN_nLy-YioxkO0pBGSK7c-Mj9wybw=.pem","location":"security-state-staging/intermediates/ca6a636d-2b32-4c6b-91b3-5dba3a3cbee6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sPhpJMOX1/QEIjMN/nLy+YioxkO0pBGSK7c+Mj9wybw=","crlite_enrolled":false,"id":"d51ec63a-9f60-4dd7-b26b-29c22b1fe537","last_modified":1562024962345},{"schema":1562024960127,"derHash":"v6r5kLmNkWhGap8HV9wvFhS5+Tizp0URuZSiuFjhSQ4=","subject":"CN=TWCA InfoSec User CA,OU=User CA,O=TAIWAN-CA Inc.,C=TW","subjectDN":"MFcxCzAJBgNVBAYTAlRXMRcwFQYDVQQKEw5UQUlXQU4tQ0EgSW5jLjEQMA4GA1UECxMHVXNlciBDQTEdMBsGA1UEAxMUVFdDQSBJbmZvU2VjIFVzZX
IgQ0E=","whitelist":false,"attachment":{"hash":"e46a74573c0c8d261f43c664107450c8cb57b01ae5173762e958d2af50e63b9b","size":2089,"filename":"aLyS-WCb9RvbNJeSwszhasSrqQSVJntxtPR2ngWYjN4=.pem","location":"security-state-staging/intermediates/f35c712d-0fc6-4650-9043-5ad0afcd052e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aLyS+WCb9RvbNJeSwszhasSrqQSVJntxtPR2ngWYjN4=","crlite_enrolled":false,"id":"fd553303-b2b5-4e92-8d4a-684fe1d7afb0","last_modified":1562024960856},{"schema":1562024957869,"derHash":"/QI2IkTzEmbK/wBYGNEATsTrCPsjmq+qr/9HSX1gBdY=","subject":"CN=Certum Organization Validation CA SHA2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGLMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS8wLQYDVQQDEyZDZXJ0dW0gT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQ0EgU0hBMg==","whitelist":false,"attachment":{"hash":"ee9903c59449e4d0acc7b6208d9d0397e473dfb4bdf3dca7397b4cf26911831b","size":
1735,"filename":"51GveKNrpJjtGpXY5QDx03s3YTQwaQic6dWBqo3zX6s=.pem","location":"security-state-staging/intermediates/aec69216-92cf-49fb-ad18-7c895d138dbb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"51GveKNrpJjtGpXY5QDx03s3YTQwaQic6dWBqo3zX6s=","crlite_enrolled":true,"id":"c76e2118-173c-4a95-bf4e-159a6ad00ee9","last_modified":1562024958614},{"schema":1562024956351,"derHash":"Pu122wpAy9GW3k+yfKQEgNKkKs4l/zYpHuHaECjWGQc=","subject":"CN=USERTrust RSA Extended Validation Code Signing CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGUMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE6MDgGA1UEAxMxVVNFUlRydXN0IFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"aec6dfea40b2d04b6ee1fd349f0e964f718375be85967b2e3dfdd434447a0017","size":2203,"filename":"SVno834iaJ-fItrISzwy9bMXxU9xtlSDOEkUWWB44AY=.pem","location":"security-state-staging/interme
diates/006c3f08-81d7-4a4a-82dc-53df3731dc3e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SVno834iaJ+fItrISzwy9bMXxU9xtlSDOEkUWWB44AY=","crlite_enrolled":false,"id":"d02af984-79a3-414d-aec0-6fa0a598a299","last_modified":1562024957121},{"schema":1562024955607,"derHash":"FVf2W6YclYt076SlgruuvdYqbZtl/pWoDV7VGPRu2H8=","subject":"CN=EY LLP SHA256 CA - G2,O=Ernst & Young LLP,C=GB","subjectDN":"MEkxCzAJBgNVBAYTAkdCMRowGAYDVQQKDBFFcm5zdCAmIFlvdW5nIExMUDEeMBwGA1UEAxMVRVkgTExQIFNIQTI1NiBDQSAtIEcy","whitelist":false,"attachment":{"hash":"3b35a96418cedad712c8b5fc962614860bf163aa01cf6e82be4b937ec1e0dc64","size":1833,"filename":"hd2ITqtCyMy8qkh7o5Jz3cR0DAFmxakpv2WbEWWJe5U=.pem","location":"security-state-staging/intermediates/0bcf042f-21c7-4509-9592-de8e0d2f9af4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hd2ITqtCyMy8qkh7o5Jz3cR0DAFmxakpv2WbEWWJe5U=","crlite_enrolled":false,"id":"3be1086f-07b3-4571-9167-80dd1baddcc3","last_modified":1562024956343},{"schema":1562024954119,"de
rHash":"j6xXZDnJ/T7xU7Ufnt0NOBtd97h1Wc6+ygQpfdRKY5s=","subject":"CN=DigiCert Global CA G2,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFURpZ2lDZXJ0IEdsb2JhbCBDQSBHMg==","whitelist":false,"attachment":{"hash":"f974f77c91205dbd3c9e89bb41254df4a42a70a49efa60ce9c07db31dbcc3712","size":1634,"filename":"njN4rRG-22dNXAi-yb8e3UMypgzPUPHlv4-foULwl1g=.pem","location":"security-state-staging/intermediates/d91dd6ee-e83b-47b7-b9dd-835d20657b98.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"njN4rRG+22dNXAi+yb8e3UMypgzPUPHlv4+foULwl1g=","crlite_enrolled":true,"id":"a41a5511-de35-4c5d-af6a-1283493ecab1","last_modified":1562024954850},{"schema":1562024953354,"derHash":"lya+H9YsztPzIzYV3DJMoKfnh+tCJzyL5M4903m/nXA=","subject":"SERIALNUMBER=201815,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjA
xODE1","whitelist":false,"attachment":{"hash":"9471b05e41efc78e40a6ced8077181e9a004a285dfd308ae6ab1cd57fe38d124","size":2333,"filename":"0xXaKHZeQsGiM_TY67qlJLl3VSY03py-NLYxVTNDz2g=.pem","location":"security-state-staging/intermediates/9e215d26-d89c-494e-8ab1-0238205d9a31.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0xXaKHZeQsGiM/TY67qlJLl3VSY03py+NLYxVTNDz2g=","crlite_enrolled":false,"id":"37714fea-c69d-4735-a2af-5aedaeaec17f","last_modified":1562024954111},{"schema":1562024952617,"derHash":"Vh3Hg1H15+5aRkrG5YoNFk7ydo+Y8C5u5lUBEg/NnF4=","subject":"CN=SwissSign Server Gold CA 2014 - G22,O=SwissSign AG,C=CH","subjectDN":"MFIxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxLDAqBgNVBAMTI1N3aXNzU2lnbiBTZXJ2ZXIgR29sZCBDQSAyMDE0IC0gRzIy","whitelist":false,"attachment":{"hash":"b44b7aee422e730e14cf3b845c69862c0c573458ff55af4b3a534005005b358a","size":2389,"filename":"skyozdmp140ljrHvjRijq3v2_yQ1nyfFyBiA9uOKuw8=.pem","location":"security-state-staging/intermediates/ef30ec5a-365b-4
7f4-b6c5-f11d5c720e99.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"skyozdmp140ljrHvjRijq3v2/yQ1nyfFyBiA9uOKuw8=","crlite_enrolled":true,"id":"e9049b0c-8a98-4b05-abb3-fa6928effd62","last_modified":1562024953346},{"schema":1562024949623,"derHash":"RREUUPsx71E35LfP+e4r7yPou/0WUIbfvZPfLzKbeF4=","subject":"OU=\u5167\u653f\u90e8\u6191\u8b49\u7ba1\u7406\u4e2d\u5fc3,O=\u884c\u653f\u9662,C=TW","subjectDN":"MEcxCzAJBgNVBAYTAlRXMRIwEAYDVQQKDAnooYzmlL/pmaIxJDAiBgNVBAsMG+WFp+aUv+mDqOaGkeitieeuoeeQhuS4reW/gw==","whitelist":false,"attachment":{"hash":"1d2e89002031e2f067f634eb677f5895443049d3c69a01ca96c7142c7730442b","size":1845,"filename":"hqLmhgIEASticguKuke6YdSMZ139HmKHWRNfNRObcW4=.pem","location":"security-state-staging/intermediates/ca34cab1-fdc7-4bad-a028-8564f3760c53.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hqLmhgIEASticguKuke6YdSMZ139HmKHWRNfNRObcW4=","crlite_enrolled":false,"id":"b59c56ec-1e6c-4d20-a5df-9d80375a71e9","last_modified":1562024950356},{"schema":156202
4948867,"derHash":"XLnp3jKxh+QLoU/fIA/aYse0+/iNZPd84C3W6+a8wbA=","subject":"CN=Hongkong Post e-Cert CA 1 - 15,O=Hongkong Post,L=Hong Kong,ST=Hong Kong,C=HK","subjectDN":"MHYxCzAJBgNVBAYTAkhLMRIwEAYDVQQIEwlIb25nIEtvbmcxEjAQBgNVBAcTCUhvbmcgS29uZzEWMBQGA1UEChMNSG9uZ2tvbmcgUG9zdDEnMCUGA1UEAxMeSG9uZ2tvbmcgUG9zdCBlLUNlcnQgQ0EgMSAtIDE1","whitelist":false,"attachment":{"hash":"b1dec54f97f654e9b417aea0e0d23a22852001ddaf0a4b9b7a4c8d05cb468de6","size":1743,"filename":"nJWwmV0E5pEw1Pt8yzqltuQOo94m9iy9I53BzzbPaqE=.pem","location":"security-state-staging/intermediates/75266247-0a7b-4385-ae5c-7bde1cbc59fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nJWwmV0E5pEw1Pt8yzqltuQOo94m9iy9I53BzzbPaqE=","crlite_enrolled":true,"id":"143884ed-af2d-4415-8a20-84ab1314e2dc","last_modified":1562024949615},{"schema":1562024948125,"derHash":"66NMexCWcWFMNn4d4HUSTDlUzhn4X6z2EJDsMZ9/Gn8=","subject":"CN=GlobalSign CA 4 for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"MEsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iY
WxTaWduIG52LXNhMSEwHwYDVQQDExhHbG9iYWxTaWduIENBIDQgZm9yIEFBVEw=","whitelist":false,"attachment":{"hash":"45bcc3a929864966eb19baeecc3aa340568be7939f1cd9bdae711d351e223a9f","size":2121,"filename":"Xj0OpiKM5fkJ7g__pfUXsKnp9Ggz3CaAgIY6QU_Ml6I=.pem","location":"security-state-staging/intermediates/52fadff7-e23b-4528-893e-fd86c53c6e69.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Xj0OpiKM5fkJ7g//pfUXsKnp9Ggz3CaAgIY6QU/Ml6I=","crlite_enrolled":false,"id":"1e71a145-4354-432c-a01b-1f3771722c5a","last_modified":1562024948860},{"schema":1562024947352,"derHash":"v4q+kn0Y62bvn7Ul7SDuCR63gqSP2m9M8jLQZo/NXMY=","subject":"CN=Technological Educational Institution of Thessaly CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGVMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMTN1RlY2hub2xvZ2ljYWwgRWR1Y2F0aW9uYWwgSW5zdGl0dXRpb24gb2YgVGhlc3NhbHkgQ0EgUjI=","whitelist":false,"attachme
nt":{"hash":"0ec1a3ac7824be699c0d1bf1d695a867cac5c011afa5daf8ebbdc748d654d68c","size":2645,"filename":"ErB7rPO_p1d_EBICC4d-nI1lPmPDMPf4n9dW9Nx2nu8=.pem","location":"security-state-staging/intermediates/6371394b-44d6-4eeb-be22-579f6186536f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ErB7rPO/p1d/EBICC4d+nI1lPmPDMPf4n9dW9Nx2nu8=","crlite_enrolled":true,"id":"a786d069-c3bd-425a-8944-bc17028a3e53","last_modified":1562024948117},{"schema":1562024945836,"derHash":"M4VzODYez8SFjd/2ue9ic+PbhWq5zqHA4sZZJdHIeXg=","subject":"CN=Entrust Class 3 Client CA - SHA256,OU=See www.entrust.net/legal-terms+OU=(c) 2015 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG3MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTUgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MSswKQYDVQQDEyJFbnRydXN0IENsYXNzIDMgQ2xpZW50IENBIC0gU0hBMjU2","whitelist":false,"attachment":{"hash":"6deba95e7ac3
93b234997f0c4cd6212d2cb0447abafefd772a54537cf31c4507","size":1869,"filename":"9km003uGP3CTXdUQ8RZMVSb0qYwAyhU4oBMh8XI9xmc=.pem","location":"security-state-staging/intermediates/94f7fa6c-549d-4332-b94d-12a8c60a36c2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9km003uGP3CTXdUQ8RZMVSb0qYwAyhU4oBMh8XI9xmc=","crlite_enrolled":false,"id":"3afa9f9b-e103-4f63-8488-e4fb026802cf","last_modified":1562024946596},{"schema":1562024944329,"derHash":"FZF8TLdLswHERaLgMM3SkJGMgDIDgQBpJ9IqQ/1B/9E=","subject":"SERIALNUMBER=201803,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODAz","whitelist":false,"attachment":{"hash":"e75d3c411b9b5678ad1021ffbd8366c426026c0b8b6fdd4af5fd216c6cdbdc36","size":2333,"filename":"TOFoosa_0iP5q1cejoIgepaH1pVPDAFbd9NYScqLFhY=.pem","location":"security-state-staging/intermediates/1eaa8ed0-14ac-40e9-8ae8-f64252e79d83.
pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TOFoosa/0iP5q1cejoIgepaH1pVPDAFbd9NYScqLFhY=","crlite_enrolled":false,"id":"6cc509c0-8aca-497b-8718-d4ff8163244b","last_modified":1562024945067},{"schema":1562024942072,"derHash":"x0It4hzryS7K5r6dzX5xHuZQ0wrtcR+7Dfayx4S2xPs=","subject":"CN=Digidentity BV PKIoverheid Organisatie Server CA - G3,O=Digidentity B.V.,C=NL","subjectDN":"MIGBMQswCQYDVQQGEwJOTDEZMBcGA1UECgwQRGlnaWRlbnRpdHkgQi5WLjEXMBUGA1UEYQwOTlRSTkwtMjczMjI2MzExPjA8BgNVBAMMNURpZ2lkZW50aXR5IEJWIFBLSW92ZXJoZWlkIE9yZ2FuaXNhdGllIFNlcnZlciBDQSAtIEcz","whitelist":false,"attachment":{"hash":"610bbc1d7e1b7d3eb20a159a94adbb060737aeebfce7662b453045c143b00aad","size":2625,"filename":"zm4euNC-JiW-4by3xDIvrjNA-47VRZb3MnFpy-xVE4E=.pem","location":"security-state-staging/intermediates/a5a5281d-d3a3-48cd-a934-751e77014391.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zm4euNC+JiW+4by3xDIvrjNA+47VRZb3MnFpy+xVE4E=","crlite_enrolled":true,"id":"cd3a32e6-e26e-49f5-ac44-49cbd2d4c3
44","last_modified":1562024942810},{"schema":1562024941330,"derHash":"MG6XOeNFj/RUaHe3BLLjkF5YsjXWTjL08CaskbcpXRU=","subject":"CN=GlobalSign CA 5 for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"MEsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSEwHwYDVQQDExhHbG9iYWxTaWduIENBIDUgZm9yIEFBVEw=","whitelist":false,"attachment":{"hash":"285c007491cf789ba43976f05e189adf64a0f29b5e14db89718cee363825ccba","size":2089,"filename":"QgVxWR5NsnuI7x6GKGlxVsQHK7mDlibMZigdzw2qsxU=.pem","location":"security-state-staging/intermediates/907deced-77e9-464c-98c8-40c0f0871333.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QgVxWR5NsnuI7x6GKGlxVsQHK7mDlibMZigdzw2qsxU=","crlite_enrolled":false,"id":"4d25ca1b-87f3-41f4-864a-04927784f280","last_modified":1562024942064},{"schema":1562024939817,"derHash":"xjVDcpo3DCaVK0fh0dGuqEyxsH8bD5ZML+3cUj/Xx5U=","subject":"CN=Advanced Class 2 e-Szigno CA 2009,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGFMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNV
BAoMDU1pY3Jvc2VjIEx0ZC4xKjAoBgNVBAMMIUFkdmFuY2VkIENsYXNzIDIgZS1Temlnbm8gQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odQ==","whitelist":false,"attachment":{"hash":"b0b37eca6a850f10df2d2f0f58151a4dde91bb13056fb825499ebe669a693f7c","size":1768,"filename":"TldDn68qkoctgHZQtrMac-o1wa3jCibE3kU6UUsRCkk=.pem","location":"security-state-staging/intermediates/6cc7acac-4c52-41c2-aa25-5c066d9c2b1d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TldDn68qkoctgHZQtrMac+o1wa3jCibE3kU6UUsRCkk=","crlite_enrolled":false,"id":"5f2ec7fc-3106-4948-a7e0-9fa8387772ef","last_modified":1562024940568},{"schema":1562024937487,"derHash":"GtUWhBmK+R6iQ525x5ID9Hp0nr2JYnm3fcYn+D/+SdY=","subject":"CN=Network Solutions DV Server CA 2,O=Network Solutions L.L.C.,L=Herndon,ST=VA,C=US","subjectDN":"MHoxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJWQTEQMA4GA1UEBxMHSGVybmRvbjEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMSkwJwYDVQQDEyBOZXR3b3JrIFNvbHV0aW9ucyBEViBTZXJ2ZXIgQ0EgMg==","whitelist":false,"attachment":{"hash":"
52fbbb1f5aa39c3d13d1e3d0c45b2292cba37ce769970a1ceca9ed32e4131b1d","size":2150,"filename":"G8g19iXohPy9KZGriQ807A59lcylMu81Zi8hXz5xxsM=.pem","location":"security-state-staging/intermediates/6949f924-1eec-45ee-a7db-edf592b5bd93.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G8g19iXohPy9KZGriQ807A59lcylMu81Zi8hXz5xxsM=","crlite_enrolled":true,"id":"c62bc944-30d0-4aec-98f6-e797e9e832cb","last_modified":1562024938279},{"schema":1562024936752,"derHash":"EleqwvTurGyklCwsg/C2e0GjtHEgxNU0KZKVE6ytRow=","subject":"CN=DFN-Verein Global Issuing CA,OU=DFN-PKI,O=Verein zur Foerderung eines Deutschen Forschungsnetzes e. V.,C=DE","subjectDN":"MIGNMQswCQYDVQQGEwJERTFFMEMGA1UECgw8VmVyZWluIHp1ciBGb2VyZGVydW5nIGVpbmVzIERldXRzY2hlbiBGb3JzY2h1bmdzbmV0emVzIGUuIFYuMRAwDgYDVQQLDAdERk4tUEtJMSUwIwYDVQQDDBxERk4tVmVyZWluIEdsb2JhbCBJc3N1aW5nIENB","whitelist":false,"attachment":{"hash":"69e4d49fecfd6be962aff5ae8fab5ea53f3d878ed48ee7a692e4baadc6b9b1cc","size":2028,"filename":"2plWEFSbja5Tz0pERjlr4FL2fr0H4L
48Rt0ZF3sKBEQ=.pem","location":"security-state-staging/intermediates/8de4ccb4-4260-4e43-8cbf-5a833dadfdd3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2plWEFSbja5Tz0pERjlr4FL2fr0H4L48Rt0ZF3sKBEQ=","crlite_enrolled":true,"id":"93b2b132-1d87-4798-b133-b6722f1ba378","last_modified":1562024937479},{"schema":1562024931476,"derHash":"dKYa3Z8g+RRhicb328ifV3ViRP01ZmQQja44uCo7UlA=","subject":"CN=YourNet SSL for domain2,O=FreeBit Co.\\,Ltd.,C=JP","subjectDN":"MEoxCzAJBgNVBAYTAkpQMRkwFwYDVQQKExBGcmVlQml0IENvLixMdGQuMSAwHgYDVQQDExdZb3VyTmV0IFNTTCBmb3IgZG9tYWluMg==","whitelist":false,"attachment":{"hash":"b7dad8429dcfc03d08d7ba14a861340cb74932bd40ccbada03ee17a7a6637fef","size":1597,"filename":"zd0UqyvGX7-jgJxlCj_Bzwg3ZZtVY-37N2N0HaQW9N8=.pem","location":"security-state-staging/intermediates/1469d0ba-cd8f-4e5e-b64a-17afac0c6c59.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zd0UqyvGX7+jgJxlCj/Bzwg3ZZtVY+37N2N0HaQW9N8=","crlite_enrolled":false,"id":"977ddfb9-da2c-424d-958a-3172
269a99e2","last_modified":1562024932228},{"schema":1562024930729,"derHash":"bqy5/qbMa/RZW0nCIsJgBNiTceuThK5I7Be5V4SUhlE=","subject":"CN=GENIOUS RSA Domain Validation Secure Server CA,O=Genious Communications,L=Marrakech,ST=Marrakech,C=MA","subjectDN":"MIGPMQswCQYDVQQGEwJNQTESMBAGA1UECBMJTWFycmFrZWNoMRIwEAYDVQQHEwlNYXJyYWtlY2gxHzAdBgNVBAoTFkdlbmlvdXMgQ29tbXVuaWNhdGlvbnMxNzA1BgNVBAMTLkdFTklPVVMgUlNBIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"e1cfbd7e1821deb85427599da6afff700f4fe6bbd50a6617c015a36c7081220d","size":2178,"filename":"fpm00n1Dh8cybnaCvT8lZPwH6X-P_MKtYFzCSSgBorQ=.pem","location":"security-state-staging/intermediates/ce167ca1-2411-4863-820e-956dec419f09.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fpm00n1Dh8cybnaCvT8lZPwH6X+P/MKtYFzCSSgBorQ=","crlite_enrolled":false,"id":"34d6c620-1aeb-4e81-b738-dc70ae0d0f79","last_modified":1562024931469},{"schema":1562024929222,"derHash":"Z/kfJvW/v6SHOL4GeN0vj3X3uAdh1WVng8qLkgqqVlk="
,"subject":"CN=SwissSign Server Silver CA 2014 - G22,O=SwissSign AG,C=CH","subjectDN":"MFQxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxLjAsBgNVBAMTJVN3aXNzU2lnbiBTZXJ2ZXIgU2lsdmVyIENBIDIwMTQgLSBHMjI=","whitelist":false,"attachment":{"hash":"a57cf71c0388c65ff88458240a3172504ec1bec49381cd3711b4403c60d9cd06","size":2393,"filename":"mJwcSA1WE5bfCsQ5o79wGCvasvwdVsznZlqR1H3YPdI=.pem","location":"security-state-staging/intermediates/7cd962f0-d1e7-4935-b0c3-8a88414cbafc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mJwcSA1WE5bfCsQ5o79wGCvasvwdVsznZlqR1H3YPdI=","crlite_enrolled":true,"id":"e5b5ea99-6ffd-494f-a33d-c7e05abcd103","last_modified":1562024929964},{"schema":1562024928479,"derHash":"ydaRPz/t3v8YTJ7h1+F8WuyQiG7tXMPW6YEFgxyMDgs=","subject":"CN=TERENA SSL CA 3 G3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MGcxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEbMBkGA1UEAxMSVEVSRU5BIFNTTCBDQSAzIEcz","whitelist":f
alse,"attachment":{"hash":"545222651c83bbd8eccbb5048089e729de4cba6f967e78628258418fa0ea02a4","size":1557,"filename":"CZ7AmTfjAN5e7IHESKlD7oZew2o25fDM7eqsgsH2OSk=.pem","location":"security-state-staging/intermediates/c3c1fb06-2e31-41ec-8ec1-1a01c2fc381f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CZ7AmTfjAN5e7IHESKlD7oZew2o25fDM7eqsgsH2OSk=","crlite_enrolled":false,"id":"e64924af-35f5-4a17-be7d-7a374e1f9cf9","last_modified":1562024929214},{"schema":1562024925387,"derHash":"z/qcAexZwp5xjQ3Q71R58JtRyVeAr7e9adPIBUr+TSg=","subject":"CN=Belgium Root CA2,C=BE","subjectDN":"MCgxCzAJBgNVBAYTAkJFMRkwFwYDVQQDExBCZWxnaXVtIFJvb3QgQ0Ey","whitelist":false,"attachment":{"hash":"6421003db92dad67986e00159b3cab338f36443058a88decb98d278a0b730b9c","size":1423,"filename":"-OX5BbyTmREme4PVCBSpAyO1Hhg2KdtS1PwtVGilpXg=.pem","location":"security-state-staging/intermediates/c45f186f-ef1c-4bec-a5dc-28abe0872ea5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+OX5BbyTmREme4PVCBSpAyO1Hhg2KdtS
1PwtVGilpXg=","crlite_enrolled":true,"id":"687db8f3-9aec-4b32-855e-3e940b432c69","last_modified":1562024926156},{"schema":1562024924614,"derHash":"gQUcNV7J9aifupHRpb0/BQHqzYDvk7IYAD2VzyUadnA=","subject":"CN=Trust Provider B.V. DV SSL CA - G2,OU=Domain Validated SSL,O=Trust Provider B.V.,C=NL","subjectDN":"MHcxCzAJBgNVBAYTAk5MMRwwGgYDVQQKExNUcnVzdCBQcm92aWRlciBCLlYuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDErMCkGA1UEAxMiVHJ1c3QgUHJvdmlkZXIgQi5WLiBEViBTU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"79e96ea8b4bed312f4e2620cb89f3da3150daf80c22aa93eee8d0cf97382d481","size":1674,"filename":"Ug7hbhTOgcIi7lxx_EXJNjbE7vY2XIM8TCIVY7FWyPM=.pem","location":"security-state-staging/intermediates/78a192bf-c52b-4e45-8953-0741da28873a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ug7hbhTOgcIi7lxx/EXJNjbE7vY2XIM8TCIVY7FWyPM=","crlite_enrolled":true,"id":"c35703ef-e86e-40c0-95b4-ccee1457e97a","last_modified":1562024925376},{"schema":1562024923845,"derHash":"1cAJMS+EXF7IUG6tVg1iRHv
/SmCpwlIQURIXrW3nau0=","subject":"CN=Adobe Analytics - DigiCert CA,OU=Adobe Systems Incorporated\\, DMBU,O=Adobe Systems Incorporated,C=US","subjectDN":"MIGFMQswCQYDVQQGEwJVUzEjMCEGA1UEChMaQWRvYmUgU3lzdGVtcyBJbmNvcnBvcmF0ZWQxKTAnBgNVBAsTIEFkb2JlIFN5c3RlbXMgSW5jb3Jwb3JhdGVkLCBETUJVMSYwJAYDVQQDEx1BZG9iZSBBbmFseXRpY3MgLSBEaWdpQ2VydCBDQQ==","whitelist":false,"attachment":{"hash":"4524101b35f64af46493e4d82f8fb77b7173f9cc3a97eeea5fb649665c7fe151","size":1683,"filename":"j7zHvn8BNXTYE-Zg6cBClkcvbJgxCRanrqi66iJkxxo=.pem","location":"security-state-staging/intermediates/29a72042-a98e-4486-97aa-78d4b0c0c60a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"j7zHvn8BNXTYE+Zg6cBClkcvbJgxCRanrqi66iJkxxo=","crlite_enrolled":false,"id":"5151b0c7-4782-496c-bb80-783f0674974d","last_modified":1562024924606},{"schema":1562024922323,"derHash":"lyIUU7shRkLB3Fq82nn+Tu218rA5RPACuBuEfDn4D+w=","subject":"CN=Trustico RSA Client CA,O=The Trustico Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MHIxCzAJB
gNVBAYTAkdCMQ8wDQYDVQQIEwZMb25kb24xEDAOBgNVBAcTB0Nyb3lkb24xHzAdBgNVBAoTFlRoZSBUcnVzdGljbyBHcm91cCBMdGQxHzAdBgNVBAMTFlRydXN0aWNvIFJTQSBDbGllbnQgQ0E=","whitelist":false,"attachment":{"hash":"0b4273439c52956ab9ed46383b38f3889b55a43dd0e5c392028e3b83cf98beb5","size":2105,"filename":"xnvxH2EA9Kd3kwOIpzC0bRhbt111r-GKHT4GfHQAyYY=.pem","location":"security-state-staging/intermediates/059c4a4d-bd05-446b-bf6c-5d06af8e64a5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xnvxH2EA9Kd3kwOIpzC0bRhbt111r+GKHT4GfHQAyYY=","crlite_enrolled":false,"id":"514fb8e7-4b80-456a-821d-b96dd274be16","last_modified":1562024923058},{"schema":1562024920801,"derHash":"+7d3rIzcz3mT7zkk/4zQn5X7FnOQp4zB88hSwfFaZtM=","subject":"CN=MarketWare Secure Email / Client Authentication CA 2,O=MarketWare - Solu\u00e7\u00f5es para Mercados Digitais\\, Lda.,L=Lisboa,ST=Lisboa,C=PT","subjectDN":"MIGtMQswCQYDVQQGEwJQVDEPMA0GA1UECBMGTGlzYm9hMQ8wDQYDVQQHEwZMaXNib2ExPTA7BgNVBAoMNE1hcmtldFdhcmUgLSBTb2x1w6fDtWVzIHBhcmEgTWVyY2Fkb3
MgRGlnaXRhaXMsIExkYS4xPTA7BgNVBAMTNE1hcmtldFdhcmUgU2VjdXJlIEVtYWlsIC8gQ2xpZW50IEF1dGhlbnRpY2F0aW9uIENBIDI=","whitelist":false,"attachment":{"hash":"de3143439ab3c01030021cca448210d408e58781f63a29dfb9094fa44dc57533","size":2203,"filename":"IjeaRrgYP7bL-bSu8xuukrup5xA-eP8RJIWT1wBPIDQ=.pem","location":"security-state-staging/intermediates/7b4805c7-0159-47ce-9559-bf93d0bd7e46.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IjeaRrgYP7bL+bSu8xuukrup5xA+eP8RJIWT1wBPIDQ=","crlite_enrolled":false,"id":"a6626126-010b-4880-b496-85eb7715c636","last_modified":1562024921543},{"schema":1562024919307,"derHash":"IFFUt3ftxVpRRlhaXlTgVKcL5KrTuF0CMY2ie/gHrfE=","subject":"CN=Amazon,OU=Server CA 3A,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAzQTEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"05a3b22929a248fe09c8e080b25d2e2076a990ab5c629c24916624485d790547","size":1008,"filename":"fFO133kTXZr2GV72u3OrmMLImVC4krGS3_14TbklpBw=.pem
","location":"security-state-staging/intermediates/88877557-2163-4dde-bcc8-c9e7b0b12206.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fFO133kTXZr2GV72u3OrmMLImVC4krGS3/14TbklpBw=","crlite_enrolled":false,"id":"7760fae2-5a3c-4718-9149-d102bf58eb33","last_modified":1562024920055},{"schema":1562024918544,"derHash":"dkoNhNVVLNWHLHNGTzfwIXXNpwWIECsTraKgGZ/EA+k=","subject":"CN=QuoVadis QVRCA3G3 SSL ICA,O=QuoVadis Limited,C=BM","subjectDN":"MEwxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSIwIAYDVQQDDBlRdW9WYWRpcyBRVlJDQTNHMyBTU0wgSUNB","whitelist":false,"attachment":{"hash":"0b6a1e6291e43621aa0cf422b683e1c4f2016acae9e2ca13b4b504d63ea22bab","size":2381,"filename":"GGH9ZFzlZtn0UI4iUubJxa5wjuMzMBq88DKTwhDzjDY=.pem","location":"security-state-staging/intermediates/c140db1c-419f-4e1f-a41d-5e757e022a04.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GGH9ZFzlZtn0UI4iUubJxa5wjuMzMBq88DKTwhDzjDY=","crlite_enrolled":true,"id":"8208fd07-a06e-42eb-a618-7e951831700f","last_mo
dified":1562024919299},{"schema":1562024917049,"derHash":"bN+dy/NRCju0AnYdYtDF5OevxR2c/wHwK9UyVtxWet8=","subject":"CN=GDCA TrustAUTH R4 DV SSL CA G2,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJzAlBgNVBAMMHkdEQ0EgVHJ1c3RBVVRIIFI0IERWIFNTTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"6649636f2813ad008e8133da4658e92771065ef07c503f24fb1bf0e9efebc92c","size":1727,"filename":"cfsQj68ZkIybk1gX6hizWacoE7hvqJNujNu2E03n_3g=.pem","location":"security-state-staging/intermediates/38a31f82-83ee-41b4-80ac-dd89b54a7ece.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cfsQj68ZkIybk1gX6hizWacoE7hvqJNujNu2E03n/3g=","crlite_enrolled":true,"id":"93bffb7c-4c34-4987-80a0-4fcbf72ce0d6","last_modified":1562024917781},{"schema":1562024916313,"derHash":"9U9s7VbPaCtXCmyuwxPpSCdg3hLo+SiuMEUsTGasdho=","subject":"CN=GeoTrust Primary Transition Root,OU=www.digicert.com,O=Di
giCert\\, Inc,C=US","subjectDN":"MGsxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSkwJwYDVQQDEyBHZW9UcnVzdCBQcmltYXJ5IFRyYW5zaXRpb24gUm9vdA==","whitelist":false,"attachment":{"hash":"2cfe9c1ecf88a44a669b657cddd2e2a0e0ab6a7d532af76b531f030235c27d6d","size":1695,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/b797792a-0c11-40a3-a801-622d9f8c11a6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"ea98bddb-7dc4-4f7a-a7a0-7c56ac081855","last_modified":1562024917040},{"schema":1562024915551,"derHash":"kP/FFQzgU1Bp5+Xvlh5AR/sIYaFAcyyM7cfo1Y61m9E=","subject":"OU=\u5de5\u5546\u6191\u8b49\u7ba1\u7406\u4e2d\u5fc3,O=\u884c\u653f\u9662,C=TW","subjectDN":"MEQxCzAJBgNVBAYTAlRXMRIwEAYDVQQKDAnooYzmlL/pmaIxITAfBgNVBAsMGOW3peWVhuaGkeitieeuoeeQhuS4reW/gw==","whitelist":false,"attachment":{"hash":"49892e8be74428a0ec09f0541
dce4e2ccb3e57d9c14435714a4659b3e422dede","size":1845,"filename":"G0Nm8-uK2OHaJz-7F_jtcJoRpm0-pac0NTsSs2ZA7uo=.pem","location":"security-state-staging/intermediates/fe5ab866-5d0d-4e4d-a1b6-e542c1902f86.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G0Nm8+uK2OHaJz+7F/jtcJoRpm0+pac0NTsSs2ZA7uo=","crlite_enrolled":false,"id":"851210ea-741c-422f-9fe9-5eb4577556dc","last_modified":1562024916305},{"schema":1562024914016,"derHash":"rWEyfumbQGE+SAdRtWaRoJZBLGj3T0ASsp+g9Iu5JMk=","subject":"CN=COMODO SHA-256 Client Authentication and Secure Email CA 3,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGdMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDFDMEEGA1UEAxM6Q09NT0RPIFNIQS0yNTYgQ2xpZW50IEF1dGhlbnRpY2F0aW9uIGFuZCBTZWN1cmUgRW1haWwgQ0EgMw==","whitelist":false,"attachment":{"hash":"41505d9d2e6bf1388086b3492cd202a6456bbb9c4959479a2a8caca9c66b3c4b","size":1699,"filename":"DTkS_gGeaXlwZz7Tk6HjzE
MiE0e5gCVs3AQrkI99SgE=.pem","location":"security-state-staging/intermediates/0d4ea80a-907c-4083-8c4b-e70ff8c1a53c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DTkS/gGeaXlwZz7Tk6HjzEMiE0e5gCVs3AQrkI99SgE=","crlite_enrolled":false,"id":"0e0066de-bfb1-4731-a2b3-aaf190da061c","last_modified":1562024914790},{"schema":1562024913272,"derHash":"UEjbq/Qb2e99UAlAX0G2dxrIiN4+rJCzBY9VWWS35F8=","subject":"CN=eMudhra RSA Domain Validation Secure Server CA,O=eMudhra Technologies Limited,L=Bengaluru,ST=Karnataka,C=IN","subjectDN":"MIGVMQswCQYDVQQGEwJJTjESMBAGA1UECBMJS2FybmF0YWthMRIwEAYDVQQHEwlCZW5nYWx1cnUxJTAjBgNVBAoTHGVNdWRocmEgVGVjaG5vbG9naWVzIExpbWl0ZWQxNzA1BgNVBAMTLmVNdWRocmEgUlNBIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"00d80076905e12a61bd293836d9efa12e45d6f81308bde3faf55d751f38d04b5","size":2186,"filename":"17G136GRsFqQDON1NPTY6yR_UA1QudGkzCd3wo7sczM=.pem","location":"security-state-staging/intermediates/38dffa99-f6ff-42b2-9d56-b21dbb
250217.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"17G136GRsFqQDON1NPTY6yR/UA1QudGkzCd3wo7sczM=","crlite_enrolled":false,"id":"d2e8bfc6-485a-4d20-9405-978f2701ee3f","last_modified":1562024914008},{"schema":1562024912527,"derHash":"/x017UZAY9YDHHHkFCYswjEOjFR6t/fPKVXJ4DSeUz8=","subject":"CN=GeoTrust True Identity CA 2,OU=GeoTrust Authentication Services,O=GeoTrust Inc.,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSkwJwYDVQQLEyBHZW9UcnVzdCBBdXRoZW50aWNhdGlvbiBTZXJ2aWNlczEkMCIGA1UEAxMbR2VvVHJ1c3QgVHJ1ZSBJZGVudGl0eSBDQSAy","whitelist":false,"attachment":{"hash":"9e7e3dd482a7bdcb8d715576fc589613eb0fbcc6f9f72fee1cd6c9983cd5c477","size":1467,"filename":"Er8r3dSx8J_PXp27RON-7OVuMvwD0SXXfHReZYPBxZk=.pem","location":"security-state-staging/intermediates/3ea3e629-0567-49c6-8887-7e3cd5bed8f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Er8r3dSx8J/PXp27RON+7OVuMvwD0SXXfHReZYPBxZk=","crlite_enrolled":false,"id":"a6e16a57-0717-40f8-a342-1fc4a1910e9
a","last_modified":1562024913264},{"schema":1562024911771,"derHash":"++rLHuW9XzNRXGSsdS/weCJNiO5AZHTDMflUPUtyGEY=","subject":"CN=Eastern Macedonia and Thrace Institute of Technology CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGYMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQzBBBgNVBAMTOkVhc3Rlcm4gTWFjZWRvbmlhIGFuZCBUaHJhY2UgSW5zdGl0dXRlIG9mIFRlY2hub2xvZ3kgQ0EgUjE=","whitelist":false,"attachment":{"hash":"3e7b18ea08168c2467503f094fb014bcf205cd1d07595f29010fea2ccb0b995a","size":2905,"filename":"y2aPBkC8F76dsQ5qfH5V18duuXnA5-zq0P4A9k8kX6E=.pem","location":"security-state-staging/intermediates/9cb657da-04ae-45f1-9d33-7b531bf463ee.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"y2aPBkC8F76dsQ5qfH5V18duuXnA5+zq0P4A9k8kX6E=","crlite_enrolled":false,"id":"40dc7a33-428e-4422-b0f7-34f7b111042c","last_modified":1562024912519},{"schema":1562024908759,"derHash":"Iar6t69YPihlmM/s
qL1DWMN9es7Vy2NwrIEQuDmL5HY=","subject":"CN=Ensured Document Signing CA,O=Ensured B.V.,L=Heerhugowaard,ST=Noord-Holland,C=NL","subjectDN":"MHoxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRYwFAYDVQQHEw1IZWVyaHVnb3dhYXJkMRUwEwYDVQQKEwxFbnN1cmVkIEIuVi4xJDAiBgNVBAMTG0Vuc3VyZWQgRG9jdW1lbnQgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"efbe87dfeb2b83d30e35e6c5c075f7f20e9de0cfb5641f51604664608a01290c","size":6426,"filename":"1Zha9XtDFk7GUo708OAH26oRT9eyA9hRP_RqCmrxNXE=.pem","location":"security-state-staging/intermediates/f9f6418c-24fe-4995-8172-964073611677.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1Zha9XtDFk7GUo708OAH26oRT9eyA9hRP/RqCmrxNXE=","crlite_enrolled":false,"id":"02d9cb51-9bed-4f96-ab41-c69994b18edc","last_modified":1562024909499},{"schema":1562024907269,"derHash":"Vu2G7YaauIYxFohjEruZFbidmaRWI+DwZfgcvVaTeRk=","subject":"CN=DOMENY CODE SIGNING Certification Authority,O=DOMENY.PL sp. z o.o,L=Krak\u00f3w,ST=Ma\u0142opolskie,C=PL","subjectDN":"MIGKMQs
wCQYDVQQGEwJQTDEVMBMGA1UECAwMTWHFgm9wb2xza2llMRAwDgYDVQQHDAdLcmFrw7N3MRwwGgYDVQQKExNET01FTlkuUEwgc3AuIHogby5vMTQwMgYDVQQDEytET01FTlkgQ09ERSBTSUdOSU5HIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"31b35ca440069dcffe73ec5d1e038d21abe790f988c05d40aa78e21b0d3b5f6b","size":2142,"filename":"g-0D2wOqufSPZH-me0ymwpfpamM9jgCd7MkOiEusGXo=.pem","location":"security-state-staging/intermediates/a5765b22-16fc-422d-9560-37857b9737e5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"g+0D2wOqufSPZH+me0ymwpfpamM9jgCd7MkOiEusGXo=","crlite_enrolled":false,"id":"9d5405c6-1956-4e48-928b-cdd098e7fcac","last_modified":1562024908001},{"schema":1562024904264,"derHash":"8YRCvt9wtNFSETVscrZZMyvtA//Tu6evqqvm3p1yMAI=","subject":"CN=QuoVadis EV SSL ICA G3,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpcyBFViBTU0wgSUNBIEcz","whitelist":false,"attachment":{"hash":"310b7d0c2f7140dbbd2962b07906fd9f4eb3be23c393d1303
30bb6e59f58ed81","size":2389,"filename":"S0SyfMJffMM5SZRx8KboH82naxKe-XlFltR_gu3qSzg=.pem","location":"security-state-staging/intermediates/5b636dd9-7860-4f2d-a4f2-0410d642b8f7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S0SyfMJffMM5SZRx8KboH82naxKe+XlFltR/gu3qSzg=","crlite_enrolled":true,"id":"88048931-9c43-47bf-a3ce-2295c41a573d","last_modified":1562024905000},{"schema":1562024903501,"derHash":"nyURoj5w2V+2J5hQimdsw4lkEAk2pubTyudxVMApDwI=","subject":"CN=thawte DV SSL CA - G2,OU=Domain Validated SSL,O=thawte\\, Inc.,C=US","subjectDN":"MGMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMR4wHAYDVQQDExV0aGF3dGUgRFYgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"f71b79c8c35cf956e94a6b78786c73cbd2346bbd250a0683171d0423afef9a5d","size":1731,"filename":"Uu5hqMmQleSn68vgjrmAQIz2tFLJ3ra_RLK7zEgYYms=.pem","location":"security-state-staging/intermediates/7cd6c71a-dc1a-4a9a-b73c-14d4ba922009.pem","mimetype":"application/x-pem-file
"},"pubKeyHash":"Uu5hqMmQleSn68vgjrmAQIz2tFLJ3ra/RLK7zEgYYms=","crlite_enrolled":true,"id":"eff1a811-4b4d-4b86-8d1f-bababea8deae","last_modified":1562024904256},{"schema":1562024901246,"derHash":"/h7K297g5VgGjdvHszq3jdV9DcIvzBw2ARkBA3Wwphs=","subject":"CN=TrustCor Basic Secure Site (CA1),OU=TrustCor Network,O=TrustCor Systems S. de R.L.,ST=Panama,C=PA","subjectDN":"MIGKMQswCQYDVQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xGTAXBgNVBAsMEFRydXN0Q29yIE5ldHdvcmsxKTAnBgNVBAMMIFRydXN0Q29yIEJhc2ljIFNlY3VyZSBTaXRlIChDQTEp","whitelist":false,"attachment":{"hash":"0c4ee3d67969b7bf371502575c7bef43da7ea5edee6add68dfe802d1f2c36baf","size":2211,"filename":"kHJg-GOK0x_65nWqv_uV70OMsqljk0LjqTDnfjQ6eRQ=.pem","location":"security-state-staging/intermediates/dca168d0-9454-4b21-b712-c05956c90dd3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kHJg+GOK0x/65nWqv/uV70OMsqljk0LjqTDnfjQ6eRQ=","crlite_enrolled":true,"id":"eeb9f30c-488c-4fe2-93ea-864c9148aca8","las
t_modified":1562024901976},{"schema":1562024899001,"derHash":"SPyVnQBBkI2cUV2RnTJbxOxb5DMKJ8Kz+eksJAAu7ys=","subject":"SERIALNUMBER=201721,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE3MjE=","whitelist":false,"attachment":{"hash":"98ae387ad7d37d7bf83007c8ca8c278365e35ebb6b41eb3c75e62eed755f88cb","size":2402,"filename":"hGCOQw-9K-ytxK5hhBre3AMERQA7tOvG__AJlpFRH_E=.pem","location":"security-state-staging/intermediates/0e6eb2bb-7490-4624-b32e-43fc18094a3b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hGCOQw+9K+ytxK5hhBre3AMERQA7tOvG//AJlpFRH/E=","crlite_enrolled":false,"id":"29600948-951b-472f-8a33-6580a407ab3e","last_modified":1562024899747},{"schema":1562024896760,"derHash":"b/b2P2oNPWNEbNqlI9Jic7EmwC+SLgXXPEdI64m4Y5M=","subject":"CN=Volusion\\, Inc. DV SSL CA - G2,OU=Domain Validated SSL,O=Volusion\\, Inc.,C=US","subj
ectDN":"MG0xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5Wb2x1c2lvbiwgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxJjAkBgNVBAMTHVZvbHVzaW9uLCBJbmMuIERWIFNTTCBDQSAtIEcy","whitelist":false,"attachment":{"hash":"6c0bf8e4ade43f22681e0a5f5f70b6e770a636633f3800c6f35346253ffa38a1","size":1548,"filename":"wL1M1GDAtMuwpOcLt4IiLDqjQ5yipn_-RaBKCU2F-YI=.pem","location":"security-state-staging/intermediates/50fda369-641f-4a5a-8256-ccd79c520165.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wL1M1GDAtMuwpOcLt4IiLDqjQ5yipn/+RaBKCU2F+YI=","crlite_enrolled":false,"id":"2012eb92-99b2-46a4-8952-d6cf483cfcfb","last_modified":1562024897497},{"schema":1562024896021,"derHash":"KgFVMaXzpM5Ym9hTxx3QaVhzIvV02Fycm5+d+PhsB14=","subject":"CN=GlobalSign Partners Timestamping CA - SHA384 - G4,O=GlobalSign nv-sa,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTowOAYDVQQDEzFHbG9iYWxTaWduIFBhcnRuZXJzIFRpbWVzdGFtcGluZyBDQSAtIFNIQTM4NCAtIEc0","whitelist":false,"attachment":{"hash":"55fd7cdb607
d62d8b1e1502661056767eac9a992e199601d101161e96d67bbfd","size":2272,"filename":"MV3IyrkNFIBvx9PowOoHv2BarAqZ3RsECQExDLC8gdA=.pem","location":"security-state-staging/intermediates/06afec3c-1c14-4055-9ca7-b51b1cd0e043.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MV3IyrkNFIBvx9PowOoHv2BarAqZ3RsECQExDLC8gdA=","crlite_enrolled":false,"id":"39acce96-ef65-4549-8e3c-54f9f3bf3d7e","last_modified":1562024896753},{"schema":1562024895272,"derHash":"gkB0wh8cKJfynCb/24Lk5ru4WWdqtVb/XJXGbG9YGMg=","subject":"SERIALNUMBER=201918,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTE4","whitelist":false,"attachment":{"hash":"3899b94862bfa35c040a240dbb5dd3a8ee30015cac42cc3bff7ebae9452fa971","size":2333,"filename":"6Byf7EtTwdFgQUzD4t4l9RcQFmGVUYrB7tEJzMqqaSg=.pem","location":"security-state-staging/intermediates/003cc6b1-20a9-4b60-9df1-68e892602e8a
.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6Byf7EtTwdFgQUzD4t4l9RcQFmGVUYrB7tEJzMqqaSg=","crlite_enrolled":false,"id":"17ba986d-94e9-4bb8-9c12-7f0f31e1300d","last_modified":1562024896012},{"schema":1562024893766,"derHash":"D0UXSH/QqLoxlKYSJFCnsyyYf/8W8tSvVObttv7Wjgg=","subject":"CN=Cloudflare ECC DV CA,O=Cloudflare\\, Inc.,L=San Francisco,ST=CA,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQQ2xvdWRmbGFyZSwgSW5jLjEdMBsGA1UEAxMUQ2xvdWRmbGFyZSBFQ0MgRFYgQ0E=","whitelist":false,"attachment":{"hash":"6e91e6887bc3aa9215d3f27e6515378a675129324d6ddbde54d654d70a2bfe9e","size":1398,"filename":"TItdfwmeIeGsIvsAjHCM7VsLyRqqdj5W2ECpVF4S9pI=.pem","location":"security-state-staging/intermediates/34573d47-f19f-4053-b767-2aeb0f372e6e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TItdfwmeIeGsIvsAjHCM7VsLyRqqdj5W2ECpVF4S9pI=","crlite_enrolled":false,"id":"c3e60f9b-aa45-41d4-9e47-576137eaf347","last_modified":1562024894503},
{"schema":1562024893016,"derHash":"xBXOv6P8LvPHQJK4QmW61kw/yZlMkRd5ZWZ9er7pBYg=","subject":"OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MF0xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTI=","whitelist":false,"attachment":{"hash":"646b73a99fcc560ca1fe3ce6a321bf45c814a8676d3322ace82a7e7e8897f46a","size":1601,"filename":"M4BwmvOwlr48wqQFSBQsClIAKNsJ4st3riIGYWq2y7Q=.pem","location":"security-state-staging/intermediates/461fedad-31f0-49a0-8419-88fcb971810f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M4BwmvOwlr48wqQFSBQsClIAKNsJ4st3riIGYWq2y7Q=","crlite_enrolled":true,"id":"441e263c-474f-4706-8caf-067062a7022a","last_modified":1562024893759},{"schema":1562024892262,"derHash":"Um4w3ta/nVziFvUMgyQCtIq3DVWu2pGKGHOliD69sbU=","subject":"CN=Symantec Basic DV SSL CA - G1,OU=Symantec Trust Network+OU=Domain Validated SSL,O=Symantec Corporation,C=US","subjectDN":"MIGUMQ
swCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMSYwJAYDVQQDEx1TeW1hbnRlYyBCYXNpYyBEViBTU0wgQ0EgLSBHMQ==","whitelist":false,"attachment":{"hash":"d57957d42aa2c6e0e84d528db5cf8a57338ce285705866b2655d9da23d3170af","size":1926,"filename":"ELaoZg6JkSInELBlz5pqy_4JobLWGrsC0OXAhqypqQI=.pem","location":"security-state-staging/intermediates/dec3f331-de15-4e97-9ad1-29047e1ac63f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ELaoZg6JkSInELBlz5pqy/4JobLWGrsC0OXAhqypqQI=","crlite_enrolled":false,"id":"cb5a05ef-ee16-4785-876e-987ea32b123e","last_modified":1562024893008},{"schema":1562024890738,"derHash":"vAh4y7xODa96naRkqxYmKiNb/a7TO5+VaboY/zSZdYA=","subject":"CN=TrustAsia EV SSL CA - C3,O=TrustAsia Technologies Inc.,C=CN","subjectDN":"MFYxCzAJBgNVBAYTAkNOMSQwIgYDVQQKDBtUcnVzdEFzaWEgVGVjaG5vbG9naWVzIEluYy4xITAfBgNVBAMMGFRydXN0QXNpYSBFViBTU0wgQ0EgLSBDMw==","whitelist":false,"attachment":{"hash":
"9a649e99d2774f04cb0fae10618205891e66d84669058b04828430921f6da774","size":1691,"filename":"3zvhr9FLox_6HK-CLvR_wE4XKQjtqDvzNPxSr0M8jeY=.pem","location":"security-state-staging/intermediates/3b83a2b4-a052-4057-8763-f1e172ed3331.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3zvhr9FLox/6HK+CLvR/wE4XKQjtqDvzNPxSr0M8jeY=","crlite_enrolled":false,"id":"c43c72cc-d8f7-448e-b348-fab85a1d5fad","last_modified":1562024891481},{"schema":1562024889996,"derHash":"yXO+rKZUSUUeXEExVw0F5y800q3r2U2y5R6aVE4eAQE=","subject":"CN=University of the Peloponnese CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGBMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxLDAqBgNVBAMTI1VuaXZlcnNpdHkgb2YgdGhlIFBlbG9wb25uZXNlIENBIFIy","whitelist":false,"attachment":{"hash":"547632361fdb2ec2e526aa18221cf86e10f3968c0f48f91c1a655af07e963108","size":2532,"filename":"KxXWghXPpQcg84tdgEguQr8nOCM52RJF_m1eSznAo90=.pem"
,"location":"security-state-staging/intermediates/4741d96b-ad99-4071-94b3-1919ec36f478.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KxXWghXPpQcg84tdgEguQr8nOCM52RJF/m1eSznAo90=","crlite_enrolled":true,"id":"d85352f9-9695-4bfe-89a2-ff7538e82f56","last_modified":1562024890730},{"schema":1562024889244,"derHash":"5TBRElnTP7Pt044OeZ/56PmdTbLaDe4I6vWm0VzOm/w=","subject":"CN=HARICA S/MIME RSA SubCA R1,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGJMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEjMCEGA1UEAwwaSEFSSUNBIFMvTUlNRSBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"aa6ee4b6bf9ece9b618b29f123445ced2df4d96772d25b1990276d8d2d624806","size":2194,"filename":"xM8U6lxZu3SNSAyNpbQ36H-EvxjEnARVpIOCGxsLfKk=.pem","location":"security-state-staging/intermediates/6078f10c-0713-49fb-9a6f-f79c11264457.pem","mimetype":"application/x-pem-file"},
"pubKeyHash":"xM8U6lxZu3SNSAyNpbQ36H+EvxjEnARVpIOCGxsLfKk=","crlite_enrolled":false,"id":"15c738ed-e049-4949-a3f5-3ecff5b5e781","last_modified":1562024889988},{"schema":1562024888485,"derHash":"mrJcHnlchaMhQZ0wYvhLUhMrqo9xiEOoPjH7+Z/tw9c=","subject":"SERIALNUMBER=PT507015851,CN=DigitalSign CA,O=DigitalSign Certificadora Digital,L=Guimaraes (see current address at www.digitalsign.pt),C=PT","subjectDN":"MIGoMRQwEgYDVQQFEwtQVDUwNzAxNTg1MTELMAkGA1UEBhMCUFQxPjA8BgNVBAcTNUd1aW1hcmFlcyAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuZGlnaXRhbHNpZ24ucHQpMSowKAYDVQQKEyFEaWdpdGFsU2lnbiBDZXJ0aWZpY2Fkb3JhIERpZ2l0YWwxFzAVBgNVBAMTDkRpZ2l0YWxTaWduIENB","whitelist":false,"attachment":{"hash":"a7bf3cbf3d969531a35ed1576876c52a36fedd914f4726823a39f4a86e4c2a2a","size":2991,"filename":"TTc5T1QJhP_HGF4fhXRILAEsILItrPkhDWbrKLF-g48=.pem","location":"security-state-staging/intermediates/df358802-1b62-4be3-af9c-0be569798451.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TTc5T1QJhP/HGF4fhXRILAEsILItrPkhDWbrKLF+
g48=","crlite_enrolled":false,"id":"4e1247f1-3352-47d6-a70b-918f9ff41f43","last_modified":1562024889236},{"schema":1562024887746,"derHash":"SOWl4mSjzyYbv+Ay7d4d2LS0sPXdDdDJ/YXYbXg/fMk=","subject":"CN=Fuji Xerox Xnet CA - S2,O=Fuji Xerox,C=JP","subjectDN":"MEQxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MSAwHgYDVQQDExdGdWppIFhlcm94IFhuZXQgQ0EgLSBTMg==","whitelist":false,"attachment":{"hash":"ca7f1f00fc7733732971935188acb56d2f10501bcf1785f9529278c0af6da1e7","size":1597,"filename":"B7_wi5BX-cgrZ8uOuYuwLz2cFlyRGuCKCG8QhI13A_8=.pem","location":"security-state-staging/intermediates/ff8c919b-9df1-4a2d-a30a-dd1b88ea5a03.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B7/wi5BX+cgrZ8uOuYuwLz2cFlyRGuCKCG8QhI13A/8=","crlite_enrolled":true,"id":"f12a157c-5c8a-4341-bb3e-fa661dc4fd0a","last_modified":1562024888478},{"schema":1562024880268,"derHash":"jCdFNSKJ6ZSz6jSURbHPZBjlF0DhYU+LVmfa0pkKrvs=","subject":"CN=Intermediate Certificate DV SSL CA,OU=Domain Validated SSL,O=Intermediate Certific
ate,C=NL","subjectDN":"MHwxCzAJBgNVBAYTAk5MMSEwHwYDVQQKExhJbnRlcm1lZGlhdGUgQ2VydGlmaWNhdGUxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMSswKQYDVQQDEyJJbnRlcm1lZGlhdGUgQ2VydGlmaWNhdGUgRFYgU1NMIENB","whitelist":false,"attachment":{"hash":"b4d9375ac158ea565d87e19563efe0bffa2d9b35d0a3ec1cb40439fcbf57c2b9","size":1585,"filename":"XtinDwVCH8wSv8pJHbNpWDeamHpqtaKQzHBMJWbcb0o=.pem","location":"security-state-staging/intermediates/c970cff7-e508-4abb-a23d-c648d2a7eb09.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XtinDwVCH8wSv8pJHbNpWDeamHpqtaKQzHBMJWbcb0o=","crlite_enrolled":false,"id":"9ea12716-014d-47bb-96ee-1f04e7bc9e0f","last_modified":1562024881013},{"schema":1562024879513,"derHash":"f0UljqJ7Vv/P072WlaAdAIM1hbAsotQAHyB8rnB9TP0=","subject":"SERIALNUMBER=201810,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODEw","whitelist":false,"at
tachment":{"hash":"f66ae0ff53aa01cd3d96a637d858b40b7dcb40083da89b0ed48517ba8002be4e","size":2333,"filename":"gYvJdgfG4RYNxCReph78bEwJe4ZMUTH4m5WdTSGBQO0=.pem","location":"security-state-staging/intermediates/f86f76f4-0c31-4f6e-a700-fd319376608e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gYvJdgfG4RYNxCReph78bEwJe4ZMUTH4m5WdTSGBQO0=","crlite_enrolled":false,"id":"c30168e6-4b85-420c-a9db-c6867770efbe","last_modified":1562024880259},{"schema":1562024878761,"derHash":"NkXg8F4ZW+js1FblGMjCPBuyWc1s9GkfKcdErvDBH90=","subject":"CN=HIN Health Info Net CA G2,O=Health Info Net AG,C=CH","subjectDN":"MG4xCzAJBgNVBAYTAkNIMR4wHAYDVQRhDBVOVFJDSC1DSEUtMTAzLjQ4OS4yMTgxGzAZBgNVBAoMEkhlYWx0aCBJbmZvIE5ldCBBRzEiMCAGA1UEAwwZSElOIEhlYWx0aCBJbmZvIE5ldCBDQSBHMg==","whitelist":false,"attachment":{"hash":"1f02a00631f077e6d497487633ace61595a152bb13130f7f948399a4ea859165","size":2426,"filename":"2qRzikSeSMqF3GAhuSwDDfCPaZ7WK5_fh-ltdqq_pHs=.pem","location":"security-state-staging/intermediates/dcf188a
e-a660-4584-90f3-d516c6bb0812.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2qRzikSeSMqF3GAhuSwDDfCPaZ7WK5/fh+ltdqq/pHs=","crlite_enrolled":false,"id":"2c275aa5-fa4a-4954-9766-eb65a05fd92c","last_modified":1562024879504},{"schema":1562024878021,"derHash":"PHUECYgkhtZBUfTLtb1hQypKe/QvSKhRmNJFpkrqIRc=","subject":"CN=DigiCert Global CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHTAbBgNVBAMTFERpZ2lDZXJ0IEdsb2JhbCBDQS0x","whitelist":false,"attachment":{"hash":"5488bc0ff40136ae2cb36b9c6832c59747d8afaa43a7f76b52325e286d34753c","size":2377,"filename":"RvzX55Asf6l-cqO5SkbhR9BWb7l3-NErRBT107Elrz0=.pem","location":"security-state-staging/intermediates/91bf19a3-1e46-4902-9fb2-2c722c9e1323.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RvzX55Asf6l+cqO5SkbhR9BWb7l3+NErRBT107Elrz0=","crlite_enrolled":false,"id":"e6419a66-4917-4c6b-b43e-d95def76ef80","last_modified":1562024878754}
,{"schema":1562024875071,"derHash":"KwqXLcDa4hjpR3OW09gt64LeEYhn3Rnh0v/9lYy7bak=","subject":"CN=DigiCert EV Code Signing CA (SHA2) G3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLjAsBgNVBAMTJURpZ2lDZXJ0IEVWIENvZGUgU2lnbmluZyBDQSAoU0hBMikgRzM=","whitelist":false,"attachment":{"hash":"5a448b983252a58eb053810201b198c8e0ca3708ef783d3d423dee742a47828d","size":1926,"filename":"KR5gTc0QATJ3BazYGPqHpEWyJKctmA4D8rAR_G5ZTDs=.pem","location":"security-state-staging/intermediates/74a045f9-4415-4b62-913a-1db386925e23.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KR5gTc0QATJ3BazYGPqHpEWyJKctmA4D8rAR/G5ZTDs=","crlite_enrolled":false,"id":"15028061-f9e6-499d-821f-65d2a86999f4","last_modified":1562024875804},{"schema":1562024872072,"derHash":"WLOFt2/SjmH2ymHh1eQbMr0rb/UR0vWuoKQCkwT05Io=","subject":"SERIALNUMBER=201721,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBg
NVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzIx","whitelist":false,"attachment":{"hash":"1aab2c75a3e101a669521b32a31699e957880a8fc9dcd0800083e61ec235ea1c","size":2402,"filename":"pA5xKViHaau-7Y9W7OAVG-tXBMCXmY-y21N9sBCDKfo=.pem","location":"security-state-staging/intermediates/dde7f3bf-969b-40ba-9d5d-5624e9ef8fd6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pA5xKViHaau+7Y9W7OAVG+tXBMCXmY+y21N9sBCDKfo=","crlite_enrolled":false,"id":"c2d88b2d-3ae6-4af0-855f-e79a625e0121","last_modified":1562024872816},{"schema":1562024869815,"derHash":"ZChKpfjchpfUPZc3z04mZiVBTkScAZZncUU3/37eMbc=","subject":"CN=Cerner Corporation Resonance Intermediate CA,OU=Cerner Resonance,O=Cerner Corporation,C=US","subjectDN":"MHwxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJDZXJuZXIgQ29ycG9yYXRpb24xGTAXBgNVBAsTEENlcm5lciBSZXNvbmFuY2UxNTAzBgNVBAMTLENlcm5lciBDb3Jwb3JhdGlvbiBSZXNvbmFuY2UgSW50ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{
"hash":"9f624f222fa5cd4a2856e02e5004f9842d469f56e8872ab89c0f7bc51516c2ed","size":1991,"filename":"4C07Vx9oeNSH3l4niOhQm70ScZnmEeg8OqJMEHi4z9U=.pem","location":"security-state-staging/intermediates/f70d825c-cf4d-49f0-9b9c-d3f0ced63101.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4C07Vx9oeNSH3l4niOhQm70ScZnmEeg8OqJMEHi4z9U=","crlite_enrolled":false,"id":"20f6264e-9de5-41e5-a881-6e3b1f47e8fe","last_modified":1562024870559},{"schema":1562024869073,"derHash":"oaBOTPxW/RkX60gfxGYpouRmVnVvoI4iSH9Utk4co+c=","subject":"CN=GRnet Client RSA SubCA R1,O=Greek Research and Technology Network,L=Athens,C=GR","subjectDN":"MHIxCzAJBgNVBAYTAkdSMQ8wDQYDVQQHDAZBdGhlbnMxLjAsBgNVBAoMJUdyZWVrIFJlc2VhcmNoIGFuZCBUZWNobm9sb2d5IE5ldHdvcmsxIjAgBgNVBAMMGUdSbmV0IENsaWVudCBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"4c50596281c571a054e43965332daf357b3937daf3f45b7d2f565f691bec1c33","size":2897,"filename":"MH1lWQOCumqlkszCNDBuz80yo8Fj_thQXg9jnFecWgc=.pem","location":"security-state-staging/
intermediates/17214962-d27b-4854-babd-44e89df3ac9f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MH1lWQOCumqlkszCNDBuz80yo8Fj/thQXg9jnFecWgc=","crlite_enrolled":false,"id":"509309e3-6189-400c-ae81-c45c2abac5d3","last_modified":1562024869808},{"schema":1562024868324,"derHash":"X3xuYEHapRPL/j1OB/3ITiMNohry3hhkYMnsBIFRbas=","subject":"CN=RTI SHA256 CA - G2,O=RTI International,ST=NC,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJOQzEaMBgGA1UEChMRUlRJIEludGVybmF0aW9uYWwxGzAZBgNVBAMTElJUSSBTSEEyNTYgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"cbef60c762d29886a600043acf7949a95177ebc650a28e59784022968b60ab80","size":1825,"filename":"xFFKZx2Nrui3Dfx2WCyqmSMf_fKapm_iSGqD9HeReZ4=.pem","location":"security-state-staging/intermediates/e251dce3-60e0-45ea-bd46-4bb8e8ba5648.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xFFKZx2Nrui3Dfx2WCyqmSMf/fKapm/iSGqD9HeReZ4=","crlite_enrolled":false,"id":"74348592-3637-4bdf-ba15-78a85d3d0e6b","last_modified":1562024869065},{
"schema":1562024863814,"derHash":"UQRHBr0je5G4m3gTN+bWJlbGnw/P++jkN0E2eUgSeGI=","subject":"CN=DigiCert SHA2 Assured ID Code Signing CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMTAvBgNVBAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"dd0b79ea02b6563d3e84faf5dc0697b11407132275d90389c15a9ddd28522099","size":1857,"filename":"Aku_IBq7yK9olk3VEZXtYwXrnZNnmT_LG0IJShBEL8A=.pem","location":"security-state-staging/intermediates/a74bcd6c-f384-4fde-ad3b-504cc56e416a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Aku/IBq7yK9olk3VEZXtYwXrnZNnmT/LG0IJShBEL8A=","crlite_enrolled":true,"id":"ca7e6cd9-9ffa-4c56-b2cf-5e35e31952c1","last_modified":1562024864546},{"schema":1562024861561,"derHash":"KDymk5UwwbVQORUFGTY3iuNocZZ7A+TC58JD8Uln3rE=","subject":"CN=Advanced Code Signing Class3 e-Szigno CA 2016,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN
":"MIGOMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xHDAaBgNVBGEME1ZBVEhVLTIzNTg0NDk3LTItNDExNjA0BgNVBAMMLUFkdmFuY2VkIENvZGUgU2lnbmluZyBDbGFzczMgZS1Temlnbm8gQ0EgMjAxNg==","whitelist":false,"attachment":{"hash":"12682a46c377cf0af1a09b1c08ef498ef4f1a96910c1f5442eb2b93d74c1a63c","size":2609,"filename":"IRoGHWUMgrIjO51yPcDjQ7km1QjZxz45uOOJou6I2pc=.pem","location":"security-state-staging/intermediates/fa8ed706-b516-4b1c-8125-839eea7101ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IRoGHWUMgrIjO51yPcDjQ7km1QjZxz45uOOJou6I2pc=","crlite_enrolled":false,"id":"0b5fdf3a-67b2-4466-b789-59a7d9a1889a","last_modified":1562024862308},{"schema":1562024860822,"derHash":"JiqVadYPuN5epRi4pxYib6dOsA3M6+zfq4e3cEr1Kxo=","subject":"CN=UIS-IsuB1-CA","subjectDN":"MFkxEzARBgoJkiaJk/IsZAEZFgNjb20xFjAUBgoJkiaJk/IsZAEZFgZ1bmlzeXMxEzARBgoJkiaJk/IsZAEZFgN1aXMxFTATBgNVBAMTDFVJUy1Jc3VCMS1DQQ==","whitelist":false,"attachment":{"hash":"a08272301840b097781c274e5446f676d11778715
9bb8f518efb6ddbed72cb4a","size":2487,"filename":"nPyHHj3iaTRtU8JqSy01uXEKmAdoIJseqjWg0UAG7tk=.pem","location":"security-state-staging/intermediates/a30aa611-1168-414f-a8bc-4c66f0ab693f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nPyHHj3iaTRtU8JqSy01uXEKmAdoIJseqjWg0UAG7tk=","crlite_enrolled":false,"id":"8410f360-6f88-469b-9196-dfbaf3acd285","last_modified":1562024861553},{"schema":1562024859332,"derHash":"KqvkLLVo6V1CjT+vWya+QHJOzfyZeEDgVVvVi2LE7yM=","subject":"CN=Sectigo ECC Extended Validation Code Signing CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGQMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxODA2BgNVBAMTL1NlY3RpZ28gRUNDIEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"9828e13ba39934a6990e6451aa9158a8e684732373e595b1c319b8df4be3ea5b","size":1313,"filename":"5JDYk2l2fSok8gLeyXpwC1pk8SkhbPX0CmZF5u-n-x4=.pem","location":"security-
state-staging/intermediates/c642714a-7fa3-43bd-9bc7-a3fe279072c4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5JDYk2l2fSok8gLeyXpwC1pk8SkhbPX0CmZF5u+n+x4=","crlite_enrolled":false,"id":"9271e1a4-5616-4363-8211-35732600e9ab","last_modified":1562024860073},{"schema":1562024857065,"derHash":"WTxKtgZs32GFBn9WJnf93/UzZW20vS1XdzUwFwQVAhg=","subject":"CN=HARICA S/MIME RSA SubCA R3,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGJMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEjMCEGA1UEAwwaSEFSSUNBIFMvTUlNRSBSU0EgU3ViQ0EgUjM=","whitelist":false,"attachment":{"hash":"a83f0a21e25c370f20d5b261f8c0144f52b2dbaee8bc152173328d14b5b5333d","size":2576,"filename":"mAFvZFLJVXz5g-NekMLk2KNs8YG2rW6wdyEVN_f39oo=.pem","location":"security-state-staging/intermediates/b247282b-5d94-4b53-9606-a3673633c9ef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mAFvZFL
JVXz5g+NekMLk2KNs8YG2rW6wdyEVN/f39oo=","crlite_enrolled":false,"id":"2a41a971-f7dc-43b7-8399-58834c275ffa","last_modified":1562024857807},{"schema":1562024856324,"derHash":"wWhWg/PIWQ6IWAGX8hnKuZ5UgqFWhjX1ltCYZ7L0Bb0=","subject":"CN=Postecom CS4,OU=Servizi di Certificazione,O=Postecom S.p.A.,C=IT","subjectDN":"MGIxCzAJBgNVBAYTAklUMRgwFgYDVQQKEw9Qb3N0ZWNvbSBTLnAuQS4xIjAgBgNVBAsTGVNlcnZpemkgZGkgQ2VydGlmaWNhemlvbmUxFTATBgNVBAMTDFBvc3RlY29tIENTNA==","whitelist":false,"attachment":{"hash":"de76f670947dcff8a54c28b36c13874dd66e9d06b895c4db7e7d1a6f868e235c","size":1630,"filename":"PBHUzxe1k4g4H4IZx6Fgmys4v5LbfykzxSURHhuSvZU=.pem","location":"security-state-staging/intermediates/bb160719-35aa-4b66-8da3-d888d2e69d82.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PBHUzxe1k4g4H4IZx6Fgmys4v5LbfykzxSURHhuSvZU=","crlite_enrolled":false,"id":"cfba4ef3-ee7d-4149-a5c5-2ee13435b22f","last_modified":1562024857057},{"schema":1562024855553,"derHash":"6BRDFB48EjLQZGXhG70fbKcYGj4Df4FbuPqurea+vtE="
,"subject":"CN=USERTrust ECC Extended Validation Secure Server CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGVMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE7MDkGA1UEAxMyVVNFUlRydXN0IEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"73ad2394da4b0573e87030992e5584fa70d07050a7e76cd42001999693620fa7","size":1362,"filename":"H-5ErRMlCt-Y6SWx-LsLzsfdqO6rR8VCeSlgzeC0WN4=.pem","location":"security-state-staging/intermediates/9082d08a-28cc-471e-be19-5909cd26b697.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H+5ErRMlCt+Y6SWx+LsLzsfdqO6rR8VCeSlgzeC0WN4=","crlite_enrolled":true,"id":"e9b57d1a-9af1-4e57-9928-32303fcf43bb","last_modified":1562024856315},{"schema":1562024854039,"derHash":"WtzFRRSRawLb9eBllS6cEwvsWUIeD+oc6WR/AgULfsY=","subject":"CN=AffirmTrust Premium ECC Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=Affi
rmTrust,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEUMBIGA1UECgwLQWZmaXJtVHJ1c3QxLTArBgNVBAsMJGh0dHA6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291cmNlczE3MDUGA1UEAwwuQWZmaXJtVHJ1c3QgUHJlbWl1bSBFQ0MgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"7c6fa8fcab000dee92f2ec0db7f18ca2b144e6a21ce56a5a139a14b4bbf233cd","size":1130,"filename":"wbpI9B7IKa-_o7qnyxj6V-kvQMgcCDHDVt0t5EmhFCU=.pem","location":"security-state-staging/intermediates/45dd76ee-2745-409b-bee9-161e415c43f9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wbpI9B7IKa+/o7qnyxj6V+kvQMgcCDHDVt0t5EmhFCU=","crlite_enrolled":false,"id":"b0b9a2da-1db8-477b-8f2d-fd982ccf1c1f","last_modified":1562024854781},{"schema":1562024851756,"derHash":"K/IbQe5Lg2ylXm8kcrh9DKPPSz/gpRtvrzwvLZx06tg=","subject":"CN=KAGOYA JAPAN Certification Authority,O=KAGOYA JAPAN Inc.,C=JP","subjectDN":"MFgxCzAJBgNVBAYTAkpQMRowGAYDVQQKExFLQUdPWUEgSkFQQU4gSW5jLjEtMCsGA1UEAxMkS0FHT1lBIEpBUEFOIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":fals
e,"attachment":{"hash":"1a080603b98669a1a61cbd208ffc3f06e5b85723a23cbba442d7126215e92d9c","size":1601,"filename":"wsjiB7F9r4B6PJrOA__iDtqeFteT01LDiESeoSm0aZI=.pem","location":"security-state-staging/intermediates/fe7eede0-1dba-45e7-9192-31be08622204.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wsjiB7F9r4B6PJrOA//iDtqeFteT01LDiESeoSm0aZI=","crlite_enrolled":false,"id":"1a7227e1-a59c-4b29-ab18-0f65195a0fa1","last_modified":1562024852483},{"schema":1562024851020,"derHash":"dM6MFjHvnzjnpBl9o/VHTbw08AHylnwltZmVYrzIydQ=","subject":"CN=QuoVadis Grid ICA G2,O=QuoVadis Limited,C=BM","subjectDN":"MEcxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR0wGwYDVQQDExRRdW9WYWRpcyBHcmlkIElDQSBHMg==","whitelist":false,"attachment":{"hash":"068ffe7d3845059cb2339b66db36d7eb98f9f4a3f6355a0096a5afacba936f8b","size":2235,"filename":"5rlUfVlXaS82HCd6DZI7w8rIamphHCdjnXNpXREZynQ=.pem","location":"security-state-staging/intermediates/e056a24a-4812-4978-a64d-ee15e4344a04.pem","mimetype":"applica
tion/x-pem-file"},"pubKeyHash":"5rlUfVlXaS82HCd6DZI7w8rIamphHCdjnXNpXREZynQ=","crlite_enrolled":true,"id":"b4215e2b-457b-4e7f-a5b1-31fb5a7d6a9b","last_modified":1562024851748},{"schema":1562024846502,"derHash":"MGKRjZ3WF5JScbx/gIC4pqXSGFu9iA94Yv1MBDsZQZE=","subject":"CN=Buypass Class 2 CA 5,O=Buypass AS-983163327,C=NO","subjectDN":"MEsxCzAJBgNVBAYTAk5PMR0wGwYDVQQKDBRCdXlwYXNzIEFTLTk4MzE2MzMyNzEdMBsGA1UEAwwUQnV5cGFzcyBDbGFzcyAyIENBIDU=","whitelist":false,"attachment":{"hash":"fd5a69fd438ea769861dbb346922f606e66c972bf1b76d0b4b699d88aef6ef6a","size":2170,"filename":"QlGZmcMUM6a8-CxL2TmTAfoYCm-fXAouAzzKYCxGoss=.pem","location":"security-state-staging/intermediates/d6a8096b-9b05-41b8-984a-b244edc193b6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QlGZmcMUM6a8+CxL2TmTAfoYCm+fXAouAzzKYCxGoss=","crlite_enrolled":true,"id":"355287c5-30e3-4992-b72c-8013c887d757","last_modified":1562024847233},{"schema":1562024844261,"derHash":"c2uZbTOWhHKcQ8s5fRuysvP0p4FqXjxdWJID+IXF1Hw=","subject":
"CN=Certigna Identity Plus CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MIGCMQswCQYDVQQGEwJGUjESMBAGA1UECgwJREhJTVlPVElTMRwwGgYDVQQLDBMwMDAyIDQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQRhDBROVFJGUi00ODE0NjMwODEwMDAzNjEiMCAGA1UEAwwZQ2VydGlnbmEgSWRlbnRpdHkgUGx1cyBDQQ==","whitelist":false,"attachment":{"hash":"f191c1abecb352ea767687d0c74090ae61fb68eaf1b3c23628b26f00a9933fe1","size":2519,"filename":"ywhSp1oF34bfFheBzKO3KqbsXi-qQbyfXu94SMYBxwg=.pem","location":"security-state-staging/intermediates/ac1807a4-6a83-4902-a18f-cc1d275b7d34.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ywhSp1oF34bfFheBzKO3KqbsXi+qQbyfXu94SMYBxwg=","crlite_enrolled":false,"id":"e7d0d7ea-579e-4b38-893f-de28d80bc3ba","last_modified":1562024844993},{"schema":1562024843491,"derHash":"91pNSaUrBD/HMkuPJjrIqbe9IqMohoWIvfyTfTw5brY=","subject":"CN=Belgium Root CA3,C=BE","subjectDN":"MCgxCzAJBgNVBAYTAkJFMRkwFwYDVQQDExBCZWxnaXVtIFJvb3QgQ0Ez","whitelist":false,"attachment":{"hash":"241dee2e8ef4e0f89c5b6071322dc968ba5
e5de346e84839261ec88e12c3706e","size":1768,"filename":"x7xeSTcmu_Ux9i_F9VE6wD6tgTr03NRFszBbo9PVM3Q=.pem","location":"security-state-staging/intermediates/052d56a4-4cca-49d4-9fc4-3c121e75f3b0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x7xeSTcmu/Ux9i/F9VE6wD6tgTr03NRFszBbo9PVM3Q=","crlite_enrolled":true,"id":"9d3cfb47-14a6-4dab-9b93-a2164cae62c4","last_modified":1562024844254},{"schema":1562024842011,"derHash":"Bq+ECc5a1B4bfs/c0yF3PhiGlafpD+eWM4VKBAsH8Io=","subject":"SERIALNUMBER=201909,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTA5","whitelist":false,"attachment":{"hash":"155fee7f4485ec5abbb06ea19377003c4720b3678db5e8260b1327ab444e7b9a","size":2333,"filename":"HqqnLyY4pkP41GQ_CWZPTbAhR6NJ_qx2zkp_fCPzaqM=.pem","location":"security-state-staging/intermediates/d07f50ce-d0fe-4f38-b04d-fc8bb21111e9.pem","mimetype":"applica
tion/x-pem-file"},"pubKeyHash":"HqqnLyY4pkP41GQ/CWZPTbAhR6NJ/qx2zkp/fCPzaqM=","crlite_enrolled":false,"id":"637b4b4d-19c6-49e1-a72d-3cb503859a46","last_modified":1562024842745},{"schema":1562024841257,"derHash":"oF7kPlVsjCo4dm0Dd/tIaAbRaeoZXmnNhzOB2Oq3380=","subject":"OU=\u91ab\u4e8b\u6191\u8b49\u7ba1\u7406\u4e2d\u5fc3,O=\u884c\u653f\u9662,C=TW","subjectDN":"MEQxCzAJBgNVBAYTAlRXMRIwEAYDVQQKDAnooYzmlL/pmaIxITAfBgNVBAsMGOmGq+S6i+aGkeitieeuoeeQhuS4reW/gw==","whitelist":false,"attachment":{"hash":"5aac98b3e8004b6852a1a3686b2d78a1cf8f9b3caf283358f17bead0b43dc7a8","size":1841,"filename":"shQPJLnlxje6ndMEVR9GtIQdN2YEIsFYAHMiwD_1bdE=.pem","location":"security-state-staging/intermediates/c36c8a14-915a-43a4-81be-aad60c6c0113.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"shQPJLnlxje6ndMEVR9GtIQdN2YEIsFYAHMiwD/1bdE=","crlite_enrolled":false,"id":"9db46b42-5447-4d92-b0f4-4701e9a0e1d9","last_modified":1562024842003},{"schema":1562024840500,"derHash":"ATeet7hfaO3CRltCQ4CXaH6+Hq5JMZY5v7NC
78PO+h0=","subject":"CN=CERTSIGN FOR BANKING QUALIFIED DS TEST CA V3,OU=Certificat de test Test certificate,O=certSIGN,C=RO","subjectDN":"MIGFMQswCQYDVQQGEwJSTzERMA8GA1UEChMIY2VydFNJR04xLDAqBgNVBAsTI0NlcnRpZmljYXQgZGUgdGVzdCBUZXN0IGNlcnRpZmljYXRlMTUwMwYDVQQDEyxDRVJUU0lHTiBGT1IgQkFOS0lORyBRVUFMSUZJRUQgRFMgVEVTVCBDQSBWMw==","whitelist":false,"attachment":{"hash":"bf0841437cff0c49b20954c90edf74119d9005723c6fac5a22f5b7e9949b7562","size":1658,"filename":"KWZVh2Uo0VJTsQaEe-fd3OibRGv0EhYSgphzM6kiYeY=.pem","location":"security-state-staging/intermediates/4e2829f2-e770-4a7b-bf5f-26dc917d6fd4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KWZVh2Uo0VJTsQaEe+fd3OibRGv0EhYSgphzM6kiYeY=","crlite_enrolled":false,"id":"9ad29fec-b9bc-433a-96c0-21647e2caaa0","last_modified":1562024841250},{"schema":1562024839008,"derHash":"1eetJ1qin9TUXn+dPf9X78ywlPGFOxqhrSKWjLGLLMU=","subject":"CN=SECOM Passport for Code Signing CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MGExCzAJBgNVBAYTAkpQMSUw
IwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSswKQYDVQQDEyJTRUNPTSBQYXNzcG9ydCBmb3IgQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"b1b8376a419f1cdb25298ba405e9601b0a8815e1b993c4cc0dba4d36e4cb899c","size":1613,"filename":"nbl62DjAbORsYtz-i6CUcy6Va4Bn0Wb6XbbJyf7h5t4=.pem","location":"security-state-staging/intermediates/5a196805-7716-4404-94c8-0d7c6d6fce7f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nbl62DjAbORsYtz+i6CUcy6Va4Bn0Wb6XbbJyf7h5t4=","crlite_enrolled":false,"id":"b915a10c-dc02-4bcf-af1a-9f479bfa83fd","last_modified":1562024839746},{"schema":1562024836744,"derHash":"XCpjKbe9Gi//HB7dcyUxSJLfEUkbOUKoP08LE2lMzAE=","subject":"SERIALNUMBER=201730,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzMw","whitelist":false,"attachment":{"hash":"48e5e3e9a19fd493091deb28a383f2a979a45f74c5f56b81826daf977e48c075
","size":2402,"filename":"MGswEonwdtFVVnhmZzb1mw5D9KJSfCyi_dRuQSn64sY=.pem","location":"security-state-staging/intermediates/7eb06311-8888-4d7c-8cc1-7b7b92e20d3e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MGswEonwdtFVVnhmZzb1mw5D9KJSfCyi/dRuQSn64sY=","crlite_enrolled":false,"id":"80c699b8-5637-4698-b774-eefba7401a08","last_modified":1562024837488},{"schema":1562024834509,"derHash":"fTOuYYzWJVM3fSU9LryihdhOmKkk2J+Y1L5P7jH5Kqg=","subject":"SERIALNUMBER=ZZZZZZB9,CN=Siemens Issuing CA Internet Server 2017,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGnMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQjkxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMTAwLgYDVQQDDCdTaWVtZW5zIElzc3VpbmcgQ0EgSW50ZXJuZXQgU2VydmVyIDIwMTc=","whitelist":false,"attachment":{"hash":"c9439a1dc15fd344909f598016e2c848de6e40651f0f2294891f78e59cb26f4a","size":2804,"filename":"f4p5PJI5fILNPQJUbuMdNzd-JMnwHZgjMi4ZjRUXTTk
=.pem","location":"security-state-staging/intermediates/a4a5c871-1de7-4529-bc71-a59dfdc2f199.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"f4p5PJI5fILNPQJUbuMdNzd+JMnwHZgjMi4ZjRUXTTk=","crlite_enrolled":true,"id":"491aff6b-5922-48f6-b983-555e06fe0188","last_modified":1562024835254},{"schema":1562024833018,"derHash":"yIOz7MasDe51zdWF5zogkoe8DJ+dedSIhg9j4uqKfSw=","subject":"CN=GlobalSign EC Administration CA2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIEVDIEFkbWluaXN0cmF0aW9uIENBMg==","whitelist":false,"attachment":{"hash":"fa6f0725fd87b33f403012750721939c96d5375455d0c99502d8483d16257b3e","size":1077,"filename":"zzbDiHfMkWT0L5Kqak7r2CbmLNItoOhMZrRdT1c4eHQ=.pem","location":"security-state-staging/intermediates/5a9babab-e54e-4213-a0a3-463e6b9c5fc7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zzbDiHfMkWT0L5Kqak7r2CbmLNItoOhMZrRdT1c4eHQ=","crlite_enrolled":true,"id":"fc596052-49ff-470b-807f
-143c5f421b18","last_modified":1562024833753},{"schema":1562024832266,"derHash":"kaMhrX/TyXgSFNdvXijrDTGshml+33AOmvlMdIX1tSE=","subject":"CN=GoGetSSL RSA EV CA,OU=Controlled by COMODO CA exclusively for GoGetSSL,O=GoGetSSL,L=Riga,C=LV","subjectDN":"MIGHMQswCQYDVQQGEwJMVjENMAsGA1UEBxMEUmlnYTERMA8GA1UEChMIR29HZXRTU0wxOTA3BgNVBAsTMENvbnRyb2xsZWQgYnkgQ09NT0RPIENBIGV4Y2x1c2l2ZWx5IGZvciBHb0dldFNTTDEbMBkGA1UEAxMSR29HZXRTU0wgUlNBIEVWIENB","whitelist":false,"attachment":{"hash":"b3e85c26c77bebd92394771e7fb3c0466dd42cb33e30893cb845e25d76146b7f","size":2198,"filename":"kr1IBiy8TZumRDu-iU8HD2GILSEqTPUTw6G9jcHRek4=.pem","location":"security-state-staging/intermediates/a2855c8c-ae89-46bc-b28d-664f3cdf95d9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kr1IBiy8TZumRDu+iU8HD2GILSEqTPUTw6G9jcHRek4=","crlite_enrolled":true,"id":"0e87223f-7e82-4b81-82ee-0ac036409b87","last_modified":1562024833010},{"schema":1562024830009,"derHash":"aNCy6Mhb8Am02zmsi14vqOH9n9HlAocE6pKIx+Ryqus=","subject":"CN=T
rustAsia TLS ECC CA,OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MHIxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEdMBsGA1UEAxMUVHJ1c3RBc2lhIFRMUyBFQ0MgQ0E=","whitelist":false,"attachment":{"hash":"7ee8d9739388c554cf3b1e8c694adbfcc8987281bc7d6e0e3f70e444d02785f6","size":1406,"filename":"x-B4VfwG1Q5TkeQLpvUFHvsaT9cd8FIf8sfKwgA4sCE=.pem","location":"security-state-staging/intermediates/c71c3a1a-6e42-4bc5-a94e-780ef1d291b0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x+B4VfwG1Q5TkeQLpvUFHvsaT9cd8FIf8sfKwgA4sCE=","crlite_enrolled":false,"id":"70288a6a-8a68-4abd-90d8-88c8a920eafb","last_modified":1562024830748},{"schema":1562024829266,"derHash":"ahdFsxF2+sKEQgorzvZ7WeIqHTd1OrryzFGy9XKSJYg=","subject":"CN=Google S/MIME Authority,O=Google Inc,ST=California,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpHb29nbGUgSW5jMRMwEQYDVQQIEwpDYWxpZm9ybmlhMSAwHgYDVQQDExdHb29nbGUgUy9NSU1FIEF
1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"1e75e1f63fa5904dbac0ed5fd58f6d1fa0b06f2923a05d13e1a380f9de1994d7","size":1516,"filename":"6OsRXz4NaQTtHc0exgRVipVz12OxHvsJx91beGJIISY=.pem","location":"security-state-staging/intermediates/6905c2d3-33a3-4d80-820f-a4e4667c46ea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6OsRXz4NaQTtHc0exgRVipVz12OxHvsJx91beGJIISY=","crlite_enrolled":false,"id":"af05d3d2-2dc9-4bc1-bb41-e70d4ddeebbb","last_modified":1562024830001},{"schema":1562024826951,"derHash":"ybBswIMYYiBhjmGodyZA+CTfadVhrVa9wVrVbQzghgg=","subject":"CN=Apple IST CA 2 - G1,OU=Certification Authority,O=Apple Inc.,C=US","subjectDN":"MGIxHDAaBgNVBAMTE0FwcGxlIElTVCBDQSAyIC0gRzExIDAeBgNVBAsTF0NlcnRpZmljYXRpb24gQXV0aG9yaXR5MRMwEQYDVQQKEwpBcHBsZSBJbmMuMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"d84962e6ad0e174b509f0b27d7aca095081588308e85148f0e798c3dcccfd511","size":1662,"filename":"tc-C1H75gj-ap48SMYbFLoh56oSw-CLJHYPgQnm3j9U=.pem","location":"security-st
ate-staging/intermediates/811c650d-5339-4109-9f5c-e9b038422338.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tc+C1H75gj+ap48SMYbFLoh56oSw+CLJHYPgQnm3j9U=","crlite_enrolled":true,"id":"acc298cc-782a-430e-96f7-3ba5d0bc27cf","last_modified":1562024827724},{"schema":1562024825471,"derHash":"FD3+ZYMuID5NKOww+2C6c77jru4wij+NGUu2Hn0dm8A=","subject":"CN=FujiSSL ECC Extended Validation Secure Site CA,OU=Controlled by Sectigo exclusively for Nijimo K.K.,O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN":"MIG9MQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTClNoaWJ1eWEta3UxFDASBgNVBAoTC05pamltbyBLLksuMTowOAYDVQQLEzFDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIE5pamltbyBLLksuMTcwNQYDVQQDEy5GdWppU1NMIEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTaXRlIENB","whitelist":false,"attachment":{"hash":"7fd1609480c2d19f3b96f886987e7f05a7ffd31bd99533859f434d8cadcdc8d2","size":1427,"filename":"2e_93k3ZMkd5hB-WURSs0iPYqDfeY-hXB4RKemS8IaE=.pem","location":"security-state-staging/intermediat
es/9d3d3199-435c-45cd-86ba-6042d28ece9d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2e/93k3ZMkd5hB+WURSs0iPYqDfeY+hXB4RKemS8IaE=","crlite_enrolled":false,"id":"3cfe9cd7-b3f2-44ad-a875-c7796e21f3a9","last_modified":1562024826204},{"schema":1562024823958,"derHash":"4ImK1mJHS591PHm+qHgDHJpdY0pJ7dYxC5YKsCPALA4=","subject":"CN=Symantec Class 3 Secure Server SHA256 SSL CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGEMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxNTAzBgNVBAMTLFN5bWFudGVjIENsYXNzIDMgU2VjdXJlIFNlcnZlciBTSEEyNTYgU1NMIENB","whitelist":false,"attachment":{"hash":"6856696d26dbf4f188099804b32d22a587d73027e302a1bade4f49e4827ad115","size":1894,"filename":"UUrclr9NL3MR9M9GTzAcVbt7zjo5AEKuhrEWmsJftnM=.pem","location":"security-state-staging/intermediates/adf7b301-8924-4c07-87fb-659291ed7d21.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UUrclr9NL3MR9M9GTzAcVbt7zjo5AEKuhrEWmsJftnM=
","crlite_enrolled":true,"id":"7376bf35-99c0-4599-b55b-4372cc68156e","last_modified":1562024824721},{"schema":1562024823207,"derHash":"2xKx0/jMUv/0h08Ki4Xp+2ogUIYbGxxhSBp0OsDTPVo=","subject":"CN=Rush Health CA,OU=Orion Health Direct Secure Messaging,O=Rush Health,C=US","subjectDN":"MGsxCzAJBgNVBAYTAlVTMRQwEgYDVQQKEwtSdXNoIEhlYWx0aDEtMCsGA1UECxMkT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nMRcwFQYDVQQDEw5SdXNoIEhlYWx0aCBDQQ==","whitelist":false,"attachment":{"hash":"777756dbdf8987198ed063115b1af53ee0bec8ee20305ff10783615126df2832","size":2259,"filename":"H4lnk1fnK8QrG5dwIupUznM6vj1SaMgHe3uXgdSHJ-o=.pem","location":"security-state-staging/intermediates/06583537-d1cb-435e-b252-acc108705a5d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H4lnk1fnK8QrG5dwIupUznM6vj1SaMgHe3uXgdSHJ+o=","crlite_enrolled":false,"id":"8d5c4590-b907-4274-953c-6e4dcad27053","last_modified":1562024823950},{"schema":1562024821713,"derHash":"MrSzdoylpNgOnfjVV7dCT4CvVWCxFI0FVI3D12p+1hk=","subject":"CN=Ap
ple Public Client RSA CA 2 - G1,O=Apple Inc.,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSowKAYDVQQDEyFBcHBsZSBQdWJsaWMgQ2xpZW50IFJTQSBDQSAyIC0gRzE=","whitelist":false,"attachment":{"hash":"29d465ec2e13b115b26b4088d20107aae09a74247d8056a2222d2c038b00e1a9","size":1593,"filename":"yARYMQ6SJG9XZEjFw3uGtG-NvMLIHJJ92EADe2HF4R8=.pem","location":"security-state-staging/intermediates/46b493f4-0121-4083-874f-08b85d4a39b0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yARYMQ6SJG9XZEjFw3uGtG+NvMLIHJJ92EADe2HF4R8=","crlite_enrolled":false,"id":"19e6f602-273b-4858-ad46-71682dead98a","last_modified":1562024822460},{"schema":1562024817950,"derHash":"Zp53J6kr5y2XGOFpItwbwUkrGvM/pHk+aNh3jxmi6+A=","subject":"CN=GlobalSign Domain Validation CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzI=","whitelist":false,"attachment":{"hash":"a1b
fe295fb75b101ae4073c6fbcf06f41c7f851774b0b9fd6b9cac8bea35926a","size":1573,"filename":"PL1_TTDEe9Cm2lb2X0tixyQC7zaPREm_V0IHJscTCmw=.pem","location":"security-state-staging/intermediates/29e7705d-08aa-4026-aa35-5039e8543166.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PL1/TTDEe9Cm2lb2X0tixyQC7zaPREm/V0IHJscTCmw=","crlite_enrolled":true,"id":"b87cbd17-c73d-4c6b-a126-fb3cff29f8f3","last_modified":1562024818708},{"schema":1562024816467,"derHash":"L3IBnLRbB6sFyxu47MMHbXByZgtXop5C6+KqV7g7xgs=","subject":"CN=Symantec Class 3 Shared Public Organization CA - SHA256,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGPMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxQDA+BgNVBAMTN1N5bWFudGVjIENsYXNzIDMgU2hhcmVkIFB1YmxpYyBPcmdhbml6YXRpb24gQ0EgLSBTSEEyNTY=","whitelist":false,"attachment":{"hash":"a99b6543f5b69ea99d4f440cdea24736cc6e6c9b19053da4a191265ee6e04b02","size":1910,"filename":"-TjXJ8RrycvnPfZ2ADExTGcSG5s
KLN4p4fett5kkFVc=.pem","location":"security-state-staging/intermediates/28645f83-6522-408d-967b-8b5b43d0b945.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+TjXJ8RrycvnPfZ2ADExTGcSG5sKLN4p4fett5kkFVc=","crlite_enrolled":false,"id":"edd90e50-1b90-45ae-834d-6d43597478f3","last_modified":1562024817197},{"schema":1562024815714,"derHash":"CJKAkjZZMWGXWfK4tE7Sq8Aw2K9sPDFJ+8sHx4qWzjY=","subject":"CN=SSLs.com RSA EV Secure Server CA,OU=Controlled by Sectigo exclusively for SSLs.com,O=SSLs.com (Namecheap\\, Inc.),L=Phoenix,ST=Arizona,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTEQMA4GA1UEBxMHUGhvZW5peDEjMCEGA1UEChMaU1NMcy5jb20gKE5hbWVjaGVhcCwgSW5jLikxNzA1BgNVBAsTLkNvbnRyb2xsZWQgYnkgU2VjdGlnbyBleGNsdXNpdmVseSBmb3IgU1NMcy5jb20xKTAnBgNVBAMTIFNTTHMuY29tIFJTQSBFViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"cf68f2c97f44e659a8fec4a8a0a3cf961eacf7dd93197d05df0d3970f3157ec6","size":2263,"filename":"e3CoG9n5TuSLIlY6MxPqo4fACcPQacL73N47EKEZh80=.pem","loc
ation":"security-state-staging/intermediates/45afb960-c21a-415e-a67c-c856bb993f2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e3CoG9n5TuSLIlY6MxPqo4fACcPQacL73N47EKEZh80=","crlite_enrolled":false,"id":"77895549-6665-42c1-957c-27c5953f4670","last_modified":1562024816459},{"schema":1562024814967,"derHash":"7r7fhG8dug6Iqba5qw/2Xwl/KEwGpkqTnujFyebzE/Q=","subject":"CN=WISeKey CertifyID Personal GB CA 1,O=WISeKey,C=CH","subjectDN":"MEwxCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSswKQYDVQQDEyJXSVNlS2V5IENlcnRpZnlJRCBQZXJzb25hbCBHQiBDQSAx","whitelist":false,"attachment":{"hash":"eeb8f2892ae58328e19191b4b5160a2d5d690fcb71232c4a0298be7be4686bee","size":1752,"filename":"O0NXa9mctJwNcofSAYnjRkrOXQmaULQorTfUS7KRo6c=.pem","location":"security-state-staging/intermediates/4c416bc6-29ca-4a1d-8453-554ce8e86371.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"O0NXa9mctJwNcofSAYnjRkrOXQmaULQorTfUS7KRo6c=","crlite_enrolled":false,"id":"85c5274a-871e-4fd7-80bf-bd6711023ec2","last_modifie
d":1562024815705},{"schema":1562024814212,"derHash":"ZVXWYdN/JJSiPC1fg0eeeAUbbedqFHtQbWvqKIK00GY=","subject":"CN=DigiCert Secure Site Korea CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJjAkBgNVBAMTHURpZ2lDZXJ0IFNlY3VyZSBTaXRlIEtvcmVhIENB","whitelist":false,"attachment":{"hash":"fc29957f16bdc0486d762dbf5aedac6a8beb9dcb70bffc98c77fdf64a61c982a","size":1646,"filename":"trjGmNMo7m2JbQME1aNrIcNXkG-fscWHZcrs2zCZOHg=.pem","location":"security-state-staging/intermediates/0494e722-cc07-4c6a-9de7-04ad4fe72e28.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"trjGmNMo7m2JbQME1aNrIcNXkG+fscWHZcrs2zCZOHg=","crlite_enrolled":false,"id":"1d1dcdf6-815c-4995-b5e9-5396aa70d4dc","last_modified":1562024814959},{"schema":1562024813469,"derHash":"xUgNe/+VLRvoYXj/cT8R9Rz3QjLuVnb8WhcNSmpv5Qo=","subject":"CN=IdenTrust ACES CA 2,OU=IdenTrust Public Sector,O=IdenTrust,C=US","subjectDN":"MGExCzAJBgNVBAYTAl
VTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxIDAeBgNVBAsTF0lkZW5UcnVzdCBQdWJsaWMgU2VjdG9yMRwwGgYDVQQDExNJZGVuVHJ1c3QgQUNFUyBDQSAy","whitelist":false,"attachment":{"hash":"70fc07993b6ce80dd61ad20839fdb1f4a131a992c9111b6d78359f0a6afee877","size":2374,"filename":"IwMaflbabx_L7ZJzQfxYFjeJq6DfrV4DtdtBvNHuyNQ=.pem","location":"security-state-staging/intermediates/d40df6fc-5112-4daa-a568-3a1638209e5c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IwMaflbabx/L7ZJzQfxYFjeJq6DfrV4DtdtBvNHuyNQ=","crlite_enrolled":true,"id":"0edeebe3-9085-404e-9104-ccf70090f4dc","last_modified":1562024814204},{"schema":1562024812732,"derHash":"pccVHarAwyimncZNZ3vWZwM3EIZ/0+IZ5H4qSeC7Qr8=","subject":"CN=MilleniumSign Code Signing Certificate CA RSA,O=MilleniumSign Limited,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGPMQswCQYDVQQGEwJNVTEYMBYGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTYwNAYDVQQDDC1NaWxsZW5pdW1TaWduIENvZGUgU2lnbmluZyBDZXJ0aWZpY2F0ZSBDQSBSU0E=","white
list":false,"attachment":{"hash":"aeaa40b5d73d509719af557963bf77aa71b1368ff2b832b2653f0c0046c65710","size":2568,"filename":"WdSLOooV5TQ8cmS2oXIK3QCY0LIp5kupdZbbUo5psYU=.pem","location":"security-state-staging/intermediates/5605ff36-2876-486c-8365-4842b367be04.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WdSLOooV5TQ8cmS2oXIK3QCY0LIp5kupdZbbUo5psYU=","crlite_enrolled":false,"id":"8f581b38-d44e-4f78-8b77-d374d71b3718","last_modified":1562024813461},{"schema":1562024811611,"derHash":"1XuYcrHu+OgDKrLoyw5jtoXRZVxRxFTyP5l136Ktfgo=","subject":"CN=AffirmTrust Premium Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=AffirmTrust,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzEUMBIGA1UECgwLQWZmaXJtVHJ1c3QxLTArBgNVBAsMJGh0dHA6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291cmNlczEzMDEGA1UEAwwqQWZmaXJtVHJ1c3QgUHJlbWl1bSBFeHRlbmRlZCBWYWxpZGF0aW9uIENB","whitelist":false,"attachment":{"hash":"0e5a29ad6919bb5ec5d101857ea182d71e759e19915b21684a1d1cde6ed06b13","size":2414,"filename":"3gMCuDMv_
P0gIb194xpHJCsdZogzAhE3N6usv_7BXhk=.pem","location":"security-state-staging/intermediates/199b0582-a65b-42a8-ba15-7d0fbdcf2937.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3gMCuDMv/P0gIb194xpHJCsdZogzAhE3N6usv/7BXhk=","crlite_enrolled":false,"id":"17ae7da2-5633-4d3a-92b0-82782ee74321","last_modified":1562024812723},{"schema":1562024809754,"derHash":"7cc0xQFQHceidEj6AsdJMfhXi/KXsXPzS4QegsZpGSY=","subject":"CN=GlobalSign RSA EV QWAC CA 2019,O=GlobalSign nv-sa,C=BE","subjectDN":"MFExCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMScwJQYDVQQDEx5HbG9iYWxTaWduIFJTQSBFViBRV0FDIENBIDIwMTk=","whitelist":false,"attachment":{"hash":"e36e727ca82d6250ef1552ffd1b955b45f64f8d642e3b0b7c74440a913343a99","size":1959,"filename":"sHs4J5kRzSpOR8B4w5hjWaDPqfeO_b7HlAyT-cooapo=.pem","location":"security-state-staging/intermediates/3a1b3cff-c7d5-48dd-a11d-654a654eafc5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sHs4J5kRzSpOR8B4w5hjWaDPqfeO/b7HlAyT+cooapo=","crlite_enrolled":false
,"id":"4f4e7833-37a9-4ab5-b9b6-773e1a6dd497","last_modified":1562024810490},{"schema":1562024808990,"derHash":"gP3kKCEq8MoKxTHu5u0t89PCpFV9/OhXBw/JR5IumyQ=","subject":"CN=HydrantID EV SSL ICA G1,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMTAwLgYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxIDAeBgNVBAMTF0h5ZHJhbnRJRCBFViBTU0wgSUNBIEcx","whitelist":false,"attachment":{"hash":"73d01cd825755ae10a290835ef3db09ca9ed8937d4f11bcf9f033cd8a7315522","size":2438,"filename":"EnmchGPCp5YYVoSwFIxrS6A7RJUxstcXt8NlMXfA6Tw=.pem","location":"security-state-staging/intermediates/50c0d7df-0130-4f21-b8b8-42dd52838404.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EnmchGPCp5YYVoSwFIxrS6A7RJUxstcXt8NlMXfA6Tw=","crlite_enrolled":true,"id":"fc1f6c56-2813-4b76-9707-d6f69619e349","last_modified":1562024809746},{"schema":1562024803886,"derHash":"VU464xSv8mTT/efyu8gY8uc02UszYgjt7+fDexYrapY=","subject":"CN=SSL.com EV Timestamping Intermediate CA RSA R1
,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxNzA1BgNVBAMMLlNTTC5jb20gRVYgVGltZXN0YW1waW5nIEludGVybWVkaWF0ZSBDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"1854e08a78906263193fd2a0a983ae57a216a24ba67d1eb24771dd1d729d9465","size":2511,"filename":"gaRV9R7xQa8c6ov_2Zq2uULuRvjacPoz06QTG4LB0h0=.pem","location":"security-state-staging/intermediates/a423da0f-3134-4795-a33f-2cf3af4e8559.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gaRV9R7xQa8c6ov/2Zq2uULuRvjacPoz06QTG4LB0h0=","crlite_enrolled":false,"id":"36d7107c-26e1-4e68-8d92-fcb78298673e","last_modified":1562024808982},{"schema":1562024803135,"derHash":"Kp0NAYu0n96hTWwW6boKlC8oM7mq3/utEwbjAbSVz7c=","subject":"CN=DigiCert SHA2 Assured ID Code Signing CA - G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xNjA0BgNVBAMTLURpZ2lDZXJ0IFN
IQTIgQXNzdXJlZCBJRCBDb2RlIFNpZ25pbmcgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"2ad03492e4239b9829ba99cbc77972e7aa518670367cb6c29b439894422fba8b","size":1817,"filename":"moFjHuv-moWxld4bAnXe_iuvG8CdWVGn1hd1j6npb7s=.pem","location":"security-state-staging/intermediates/aa96186c-483d-49db-ae7f-f3087565a3d3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"moFjHuv+moWxld4bAnXe/iuvG8CdWVGn1hd1j6npb7s=","crlite_enrolled":false,"id":"6376e328-15c0-4ccf-9703-eebe193ffcc1","last_modified":1562024803879},{"schema":1562024800131,"derHash":"Ep+13lAeJAQc0UqBB1/RzeJXQI1KNT5jaRLji92i0/s=","subject":"CN=Certum Domain Validation CA SHA2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGFMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSkwJwYDVQQDEyBDZXJ0dW0gRG9tYWluIFZhbGlkYXRpb24gQ0EgU0hBMg==","whitelist":false,"attachment":{"hash":"e25bdf92d0be8655e107328d6904320e57365813d9a1
9f81ea387cb5426c4296","size":1727,"filename":"S4AbJNGvyS57nzJwv8sPMUML8VHSqH1vbiBftdPcErI=.pem","location":"security-state-staging/intermediates/4ebda4af-1b27-4b52-bf3e-baac3a47d395.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S4AbJNGvyS57nzJwv8sPMUML8VHSqH1vbiBftdPcErI=","crlite_enrolled":true,"id":"61249918-c227-4afe-9de6-22348a31422d","last_modified":1562024800874},{"schema":1562024798615,"derHash":"sFBb8pR/CAerri1CwZND6vCNHd4/h0WwWJpXNieS5HA=","subject":"CN=DigiCert Secure Site Korea EV ECC CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLTArBgNVBAMTJERpZ2lDZXJ0IFNlY3VyZSBTaXRlIEtvcmVhIEVWIEVDQyBDQQ==","whitelist":false,"attachment":{"hash":"8f3ba34bb39284e4eac1c23c6af465a31d3ec30f7896fbb885e6a74b38a9ce11","size":1427,"filename":"AdP_iRzhlqZTNB5kWPVQycXqelrhzOIKeur3cseH-6k=.pem","location":"security-state-staging/intermediates/8ae1458e-7b25-4f7f-8570-16c7af6e2a7c.pem","mim
etype":"application/x-pem-file"},"pubKeyHash":"AdP/iRzhlqZTNB5kWPVQycXqelrhzOIKeur3cseH+6k=","crlite_enrolled":false,"id":"92ca13e1-2098-42b2-aa2b-5dbe4643c974","last_modified":1562024799347},{"schema":1562024797879,"derHash":"TJGYtnNVCFh5mtJ0TMCDwboAJ+d9O4/W1Wz1NiDQmeI=","subject":"CN=emSign Device CA - G1,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGkxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMR4wHAYDVQQDExVlbVNpZ24gRGV2aWNlIENBIC0gRzE=","whitelist":false,"attachment":{"hash":"8956d067022b96359ff3d30c6bcb351e2ba5eb96b50837b275bedd8c2468cc4f","size":1585,"filename":"Ivw7wv5XpckfdFlOxj37SBDwiI0WAhkp1WOGE3r2BvU=.pem","location":"security-state-staging/intermediates/20d32f63-93e8-4cc0-9495-4924fe795c22.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ivw7wv5XpckfdFlOxj37SBDwiI0WAhkp1WOGE3r2BvU=","crlite_enrolled":false,"id":"74cd2ebb-684e-40ec-a833-df95792630aa","last_modified":1562024798607},{"schema":1
562024797128,"derHash":"L/GDLeb5UGqsnSx3V+oHV2TsaMyccKDs4z7MYWB8vkM=","subject":"CN=TERENA SSL CA 2,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MGQxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEYMBYGA1UEAxMPVEVSRU5BIFNTTCBDQSAy","whitelist":false,"attachment":{"hash":"56a3b2875df755c4075fee31fc3820a0cdcd21908ed25a2a21a9e02e177112f2","size":2129,"filename":"PYHJ7Ok9y2OoV3yMZFAcH45HI64yll_qcT9kRYmQFTY=.pem","location":"security-state-staging/intermediates/ca22d756-cc29-4f7f-a172-a93147c9b473.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PYHJ7Ok9y2OoV3yMZFAcH45HI64yll/qcT9kRYmQFTY=","crlite_enrolled":false,"id":"d1f8117c-a369-49f0-88ac-e00cc462a0ab","last_modified":1562024797871},{"schema":1562024796371,"derHash":"FtgJ7RVcKsfpSJ4aIEEWydFu++TJH1M2lyWis5VTXig=","subject":"CN=WIPO CA - G4,OU=Class 2 Managed PKI Individual Subscriber CA,O=World Intellectual Property Organization,C=CH","subjectDN":"MIGOMQswCQYDVQQGE
wJDSDExMC8GA1UEChMoV29ybGQgSW50ZWxsZWN0dWFsIFByb3BlcnR5IE9yZ2FuaXphdGlvbjE1MDMGA1UECxMsQ2xhc3MgMiBNYW5hZ2VkIFBLSSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0ExFTATBgNVBAMTDFdJUE8gQ0EgLSBHNA==","whitelist":false,"attachment":{"hash":"086054c0052cdacea72072357a2b79945d9bf92ef3447038cc5e5e68475271d3","size":2044,"filename":"PU8NkYLfLUTa_7ny2Z-c1CJ0H02QfjBsjXu9EWq22IM=.pem","location":"security-state-staging/intermediates/33189e7d-6c9b-4f44-bef2-771f215db497.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PU8NkYLfLUTa/7ny2Z+c1CJ0H02QfjBsjXu9EWq22IM=","crlite_enrolled":false,"id":"2d7e382f-d25c-4413-b71f-3ec5aeb49509","last_modified":1562024797121},{"schema":1562024794876,"derHash":"Hgo6uZMVdxcoHUKr+AHrZN7tUA5BaMpwbWpx2BA8c6I=","subject":"CN=DigiCert Grid Trust CA,OU=www.digicert.com,O=DigiCert Grid,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCBHcmlkMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMR8wHQYDVQQDExZEaWdpQ2VydCBHcmlkIFRydXN0IENB","whitelist":false,"attachment":{"hash":"3b
e9651d72ef4f44fcb67274ba0d3e7ae2eb7c8388fcf0a3ab02a3a2c72077f8","size":2316,"filename":"TBKoZNHPiEWnnKpVqLc_CHX3Z3iNpZdilsVXHJhcqkw=.pem","location":"security-state-staging/intermediates/1ddc95cc-acc5-4a61-b546-b433d299fd22.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TBKoZNHPiEWnnKpVqLc/CHX3Z3iNpZdilsVXHJhcqkw=","crlite_enrolled":false,"id":"a43ec252-2c43-4461-a2b2-56c2fe1b0e7a","last_modified":1562024795608},{"schema":1562024794135,"derHash":"phmVYVOcSoqwGesTaz/Q12kBddQa5/WKO/SKHwsTKCg=","subject":"CN=FujiSSL RSA Client Authentication and Secure Email CA,O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN":"MIGIMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTClNoaWJ1eWEta3UxFDASBgNVBAoTC05pamltbyBLLksuMT4wPAYDVQQDEzVGdWppU1NMIFJTQSBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIFNlY3VyZSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"eb739dda586a45fc7a126da56fa0e1975b84e84d1a11dc5cf2a1e059668b71cd","size":2154,"filename":"XTsWwydKIeLgLUHk_CjpouCdZpEZv977b3O3Y6fz7A8=.pem
","location":"security-state-staging/intermediates/bf387768-b33b-4aac-a92d-f931ea2d2f89.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XTsWwydKIeLgLUHk/CjpouCdZpEZv977b3O3Y6fz7A8=","crlite_enrolled":false,"id":"1eb1cf61-0810-46cc-9db3-87bd5b0eda59","last_modified":1562024794868},{"schema":1562024793401,"derHash":"q/OAPNKTniaAPlIoCoH2fEbD4O51/Nux4w+wOjIaz60=","subject":"SERIALNUMBER=ZZZZZZA3,CN=Siemens Issuing CA EE Enc 2016,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGeMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQTMxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMScwJQYDVQQDDB5TaWVtZW5zIElzc3VpbmcgQ0EgRUUgRW5jIDIwMTY=","whitelist":false,"attachment":{"hash":"e179d01b41716c0c072162345534013646eeb1fc9debcf658c9fe6ecf951163f","size":2641,"filename":"27n7khZ5-Np87z6aLw4RQRXZ3DgzlUK97JppGYxBCL4=.pem","location":"security-state-staging/intermediates/0a84edea-9e19-41cc-b761-52eb6a135d6c.pe
m","mimetype":"application/x-pem-file"},"pubKeyHash":"27n7khZ5+Np87z6aLw4RQRXZ3DgzlUK97JppGYxBCL4=","crlite_enrolled":true,"id":"efb1c9d1-30cf-4343-bcb1-91ee6610e777","last_modified":1562024794128},{"schema":1562024792628,"derHash":"cD6goXPiBCNV8d/rEHkpLUHqaMBGydRcxg3FQQEE9Hg=","subject":"CN=SSLs.com RSA DV Secure Server CA,O=SSLs.com,L=Phoenix,ST=Arizona,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRAwDgYDVQQHEwdQaG9lbml4MREwDwYDVQQKEwhTU0xzLmNvbTEpMCcGA1UEAxMgU1NMcy5jb20gUlNBIERWIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"9ff134c8ecf90893574b07ad8b3c077f8d5360967fc1094e63da8fb49c97f7e3","size":2129,"filename":"rvbtHIVTfnQ4hhhu4JyOGPoRZ3c9W-uCcbjlRAfUPXM=.pem","location":"security-state-staging/intermediates/a97db1f4-38f2-4210-9c42-fd651e18de13.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rvbtHIVTfnQ4hhhu4JyOGPoRZ3c9W+uCcbjlRAfUPXM=","crlite_enrolled":false,"id":"a11d7ecc-7398-48bb-89de-0e90aa0466c9","last_modified":1562024793393}
,{"schema":1562024791880,"derHash":"alR0N7H1K3KnLMcwGTqHPKmz0D45krGj+uwQp4BU4qE=","subject":"CN=Fuji Xerox Xnet CA 2,O=Fuji Xerox,C=JP","subjectDN":"MEExCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MR0wGwYDVQQDExRGdWppIFhlcm94IFhuZXQgQ0EgMg==","whitelist":false,"attachment":{"hash":"9217faaa39a466f5d9d9788fdda62aeff7af0b31e46484feab2f84c35486efa6","size":1471,"filename":"LnpLBgKouhAPdvkLl4dk97HUdhFGLO_43TBsKNajdA4=.pem","location":"security-state-staging/intermediates/f4af1e17-0334-407c-a8cb-77b3a44b5f11.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LnpLBgKouhAPdvkLl4dk97HUdhFGLO/43TBsKNajdA4=","crlite_enrolled":false,"id":"010baff6-15c0-4fe2-915b-96e9c9e53168","last_modified":1562024792620},{"schema":1562024791135,"derHash":"Zd4yKh73r/7etzhxOMJgYIJbCMwn4Zkt2erIM3KXlXs=","subject":"CN=SpaceSSL CA,OU=SpaceSSL Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MHIxCzAJBgNVBAYTAlBMMSIwIAYDVQQKDBlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMSkwJwYDVQQLDCBTcGFjZVNTTCBDZ
XJ0aWZpY2F0aW9uIEF1dGhvcml0eTEUMBIGA1UEAwwLU3BhY2VTU0wgQ0E=","whitelist":false,"attachment":{"hash":"52e6e18f68c49814eb88ea228460269803ebcae2f04a71366b605d06fd85ae21","size":1638,"filename":"AOXy6QeFRXr3Le2jy9VUHVc0TY6NofDQseFQcaDRlow=.pem","location":"security-state-staging/intermediates/189976ec-c00a-4ec0-bc47-3f11ee1374ff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AOXy6QeFRXr3Le2jy9VUHVc0TY6NofDQseFQcaDRlow=","crlite_enrolled":true,"id":"a846caeb-4b0d-4bb1-af76-d203f6bd83ea","last_modified":1562024791871},{"schema":1562024789653,"derHash":"DhC93udRLb156/C09I/u18g8K9PdgXZVZfT/EQt7+kI=","subject":"CN=Cybertrust Japan Extended Validation Server CA,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MGsxCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjE3MDUGA1UEAxMuQ3liZXJ0cnVzdCBKYXBhbiBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"e3d590ab4b71fbd20183713733b3253b32ef24a73382153319f8916fc66d3c1d","size":1678,"filename"
:"VfKdH3KeIRG8iIljlHEf2ck5OXG4Z8_yf2AOohCgqgk=.pem","location":"security-state-staging/intermediates/222e4d33-ee5a-4885-add5-c30b4495b281.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VfKdH3KeIRG8iIljlHEf2ck5OXG4Z8/yf2AOohCgqgk=","crlite_enrolled":true,"id":"92292d1f-471b-4db3-ba30-6f423a7d649b","last_modified":1562024790389},{"schema":1562024786680,"derHash":"/ikDnS1H0CkoTZqoz7He1yb/DiX955/oSpVAGHhktLc=","subject":"SERIALNUMBER=201819,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODE5","whitelist":false,"attachment":{"hash":"05b1a5a6497b489b6d6a517b7b39506cb13e79efc9a9ba91d6c7fc2fc2c20683","size":2333,"filename":"-K9Xx7VSSzN1D6LkHvOiAdN5OId_n4uHBErF19bWM-A=.pem","location":"security-state-staging/intermediates/635f8211-242f-4cc5-8ffa-a716fe7af988.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+K9Xx7VSSzN1D6LkHvOiA
dN5OId/n4uHBErF19bWM+A=","crlite_enrolled":false,"id":"90bc409e-b5d7-4431-bbe4-21feadabcedd","last_modified":1562024787417},{"schema":1562024785925,"derHash":"Xwo1uk+Epl9osW1KM/ZRfAl3CDk+qv0oVvuak0GHGfQ=","subject":"CN=SGTRUST EMAIL AND CLIENT CA,O=SGssl,C=KR","subjectDN":"MEMxCzAJBgNVBAYTAktSMQ4wDAYDVQQKEwVTR3NzbDEkMCIGA1UEAxMbU0dUUlVTVCBFTUFJTCBBTkQgQ0xJRU5UIENB","whitelist":false,"attachment":{"hash":"17a9b911f686f237aa390ea2ff06319ae420ccb51198aeed267a5518db5715c4","size":1723,"filename":"gQN5MDXBIRQe70cFfEaNKKTh3AELpmBrtzu-04X41Po=.pem","location":"security-state-staging/intermediates/4fecef25-4c06-47de-9524-159f4379ebf8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gQN5MDXBIRQe70cFfEaNKKTh3AELpmBrtzu+04X41Po=","crlite_enrolled":false,"id":"65f004f2-8ee7-4e50-a1d2-01f1ae7a9bd2","last_modified":1562024786673},{"schema":1562024783680,"derHash":"PKGOHtvmhg1wkU6aoNuOYeGT5+9UfNq4tN9UX0bexrs=","subject":"CN=BlackCert\\, Inc. ECC OV Certification Authority,O=BlackCert\\, Inc
.,L=Denver,ST=CO,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDTzEPMA0GA1UEBxMGRGVudmVyMRgwFgYDVQQKEw9CbGFja0NlcnQsIEluYy4xNzA1BgNVBAMTLkJsYWNrQ2VydCwgSW5jLiBFQ0MgT1YgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"1f0b0920e94a21420191c41211ce3bcffb04a7ce995f0af6bd0b824c3b294700","size":1313,"filename":"bQkT-mQD0009MLZyZZBcx4FuOI9_hOoj322Ms-tQWFo=.pem","location":"security-state-staging/intermediates/7feaca48-406a-4093-b833-11b132d33bdd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bQkT+mQD0009MLZyZZBcx4FuOI9/hOoj322Ms+tQWFo=","crlite_enrolled":false,"id":"9e10f424-cd96-43ca-bfe4-a236bf60a4c6","last_modified":1562024784419},{"schema":1562024782184,"derHash":"xRuDoN5JogGl++lHAywEcC+Mp8LQKt8otz1CyKzRw2I=","subject":"CN=DigiCert SHA2 High Assurance Code Signing CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xNTAzBgNVBAMTLERpZ2lDZXJ0IFNIQTIgSGlnaC
BBc3N1cmFuY2UgQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"54b858a92a75d1898919ae2dbf0249a5192fa1abe37b3e993d38ef789c3653cc","size":1902,"filename":"SOMlUK5lwhJe91sGwPNVv0zyq01iywv_f4ztkbkD4Rs=.pem","location":"security-state-staging/intermediates/5ba14d1f-2ebf-414a-a378-e6c4bae24fd8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SOMlUK5lwhJe91sGwPNVv0zyq01iywv/f4ztkbkD4Rs=","crlite_enrolled":true,"id":"e3b58caf-2eb9-4b25-9732-0c4502a01f62","last_modified":1562024782921},{"schema":1562024775415,"derHash":"1Dn4jo8vgKMG+RDc3lSNcbv9mahfxwNO+2EON0lVCTI=","subject":"CN=Cloudflare RSA DV CA,O=Cloudflare\\, Inc.,L=San Francisco,ST=CA,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQQ2xvdWRmbGFyZSwgSW5jLjEdMBsGA1UEAxMUQ2xvdWRmbGFyZSBSU0EgRFYgQ0E=","whitelist":false,"attachment":{"hash":"0937a5bef35a20366a9d1dce5f361e3ec0fce9ea799d8c4f053763a0f051e116","size":1634,"filename":"HyqqOGaeH9zg7Bg12wtuQNNUB5DZwfj2c0W_o
WqDLI0=.pem","location":"security-state-staging/intermediates/c91a2caf-3079-4edb-9866-0831343c6e4a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HyqqOGaeH9zg7Bg12wtuQNNUB5DZwfj2c0W/oWqDLI0=","crlite_enrolled":false,"id":"e4608891-f782-40aa-8ec9-06ab2e2cf7b0","last_modified":1562024776157},{"schema":1562024774677,"derHash":"U39guIoxdvSyFWdH23H34sEGaEUm2fp/UmtukUQXi1U=","subject":"CN=McAfee Code Signing CA 2,O=McAfee\\, Inc.,L=Santa Clara,ST=CA,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEUMBIGA1UEBxMLU2FudGEgQ2xhcmExFTATBgNVBAoTDE1jQWZlZSwgSW5jLjEhMB8GA1UEAxMYTWNBZmVlIENvZGUgU2lnbmluZyBDQSAy","whitelist":false,"attachment":{"hash":"ae65196a88f85c709ece2d8f3936cb8d958a94c0968600b289b616617e38e411","size":2097,"filename":"UOb_aKj9K46D2KVYS2zC_0EO6gN1gKFCU77O9fiUQAI=.pem","location":"security-state-staging/intermediates/8811b1a8-349c-4b4e-8801-f5594cc329e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UOb/aKj9K46D2KVYS2zC/0EO6gN1gKFCU77O9fiUQAI=","crlite
_enrolled":false,"id":"67bc7ab5-6413-4e91-b1c4-078571161042","last_modified":1562024775407},{"schema":1562024773191,"derHash":"n048Qvr+2jz4jAXMS0rwwK8wZBXDDT0e6+3r99F3qYI=","subject":"CN=Hostpoint DV SSL CA - G1,OU=Domain Validated SSL,O=Hostpoint AG,C=CH","subjectDN":"MGYxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxIb3N0cG9pbnQgQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMSEwHwYDVQQDExhIb3N0cG9pbnQgRFYgU1NMIENBIC0gRzE=","whitelist":false,"attachment":{"hash":"31c545df0c9287df1891ee7b1dfb383d83b9b321cd47a06cd0839a7276526477","size":1886,"filename":"KgLIfe7B9GImTO2eqwyHoxC8kpEMc7pC4vGNYZbchyA=.pem","location":"security-state-staging/intermediates/8daa3e79-7c44-475e-b300-0f7bce72bc93.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KgLIfe7B9GImTO2eqwyHoxC8kpEMc7pC4vGNYZbchyA=","crlite_enrolled":false,"id":"ebd61b76-f146-485d-8454-4f96842fc39f","last_modified":1562024773933},{"schema":1562024772426,"derHash":"O4u3vuWk6yHqjZJ58/RWyvO4nFbW3Uxpo/vX+eTtnNM=","subject":"CN=SSLs.com ECC EV Secure
Server CA,OU=Controlled by Sectigo exclusively for SSLs.com,O=SSLs.com (Namecheap\\, Inc.),L=Phoenix,ST=Arizona,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTEQMA4GA1UEBxMHUGhvZW5peDEjMCEGA1UEChMaU1NMcy5jb20gKE5hbWVjaGVhcCwgSW5jLikxNzA1BgNVBAsTLkNvbnRyb2xsZWQgYnkgU2VjdGlnbyBleGNsdXNpdmVseSBmb3IgU1NMcy5jb20xKTAnBgNVBAMTIFNTTHMuY29tIEVDQyBFViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"153e25238ab589a8e93ff09e8b7ffa6150358fa68c68b93cc94f92faa5455a28","size":1423,"filename":"Ym-0KV9EAV6PC8waJvh5eI-QjQ_3STgXc-UH0obWlKM=.pem","location":"security-state-staging/intermediates/1dbfb594-d15e-4c6d-8944-fa5c1ca6d499.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ym+0KV9EAV6PC8waJvh5eI+QjQ/3STgXc+UH0obWlKM=","crlite_enrolled":false,"id":"e298cb45-294a-447d-a70e-9e33908895ee","last_modified":1562024773182},{"schema":1562024771685,"derHash":"1Ia/o/ANFl7iz2Jw/afQCBfljNot9Polbg8usSLPjwI=","subject":"CN=TeleSec PKS CA 8,OU=T-Systems Trust Center,O=T-Sys
tems International GmbH,C=DE","subjectDN":"MHAxCzAJBgNVBAYTAkRFMSUwIwYDVQQKExxULVN5c3RlbXMgSW50ZXJuYXRpb25hbCBHbWJIMR8wHQYDVQQLExZULVN5c3RlbXMgVHJ1c3QgQ2VudGVyMRkwFwYDVQQDExBUZWxlU2VjIFBLUyBDQSA4","whitelist":false,"attachment":{"hash":"6429eb3f7af5f32d22260a3d57e029842bb6095362c3ccacc7482be3a501efcc","size":1597,"filename":"cQ5-P7xFNQKPQ_CQI4rTW9uBJQm8ZTcsHGP7IsAVuSM=.pem","location":"security-state-staging/intermediates/76092767-ec1d-46b8-804e-59e91f2d0727.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cQ5+P7xFNQKPQ/CQI4rTW9uBJQm8ZTcsHGP7IsAVuSM=","crlite_enrolled":false,"id":"8208c8e6-ee6a-4515-bd16-3d2ff082836a","last_modified":1562024772418},{"schema":1562024770934,"derHash":"UNPXH8DNfjatrjIiH+++jMKbJna6MmwJuPobJNvnVRQ=","subject":"CN=Plex Devices High Assurance CA2,O=Plex\\, Inc.,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpQbGV4LCBJbmMuMSgwJgYDVQQDEx9QbGV4IERldmljZXMgSGlnaCBBc3N1cmFuY2UgQ0Ey","whitelist":false,"attachment":{"hash":"67f35d42ba7361bbc47c1f3a29
680a229ed60061b9fa502c40e4669b0794e8aa","size":1699,"filename":"ymL44ll2Q9SIPAQZkomkZ5uFqCHuOYoXpsbrXWfyZkg=.pem","location":"security-state-staging/intermediates/17ca09ba-dca0-4d29-ba41-22b2b69e084a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ymL44ll2Q9SIPAQZkomkZ5uFqCHuOYoXpsbrXWfyZkg=","crlite_enrolled":false,"id":"2a05f09e-4930-43ff-891b-351f3751cce6","last_modified":1562024771677},{"schema":1562024769411,"derHash":"6mljaWdQVkoiiz64jg/UMExdonp6+S0dQZk1elAHgxU=","subject":"CN=WoTrus EV SSL CA,O=WoTrus CA Limited,C=CN","subjectDN":"MEQxCzAJBgNVBAYTAkNOMRowGAYDVQQKDBFXb1RydXMgQ0EgTGltaXRlZDEZMBcGA1UEAwwQV29UcnVzIEVWIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"fc57e3fad962bd4b00feeaae47893e01b5b42af32dadb1d3e0e55cad0d68a007","size":1691,"filename":"bfm30K2ufQC3gQINxl7OwREoFSQEJrK4ecMD3jy_Qlc=.pem","location":"security-state-staging/intermediates/744615e6-3b14-49f9-9fef-3d7691a5c6d6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bfm30K2ufQC3gQINxl7OwREoF
SQEJrK4ecMD3jy/Qlc=","crlite_enrolled":true,"id":"9cb658c6-3e52-4a94-b178-1d2ab7a03ad7","last_modified":1562024770176},{"schema":1562024768666,"derHash":"eErKEGO+RwCzpi9Fwvk7fu+L8jD7hpYQ6GT8Szoj0J8=","subject":"CN=GeoTrust DV SSL SHA256 CA,OU=Domain Validated SSL,O=GeoTrust Inc.,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEiMCAGA1UEAxMZR2VvVHJ1c3QgRFYgU1NMIFNIQTI1NiBDQQ==","whitelist":false,"attachment":{"hash":"336b710bd635c00f02cb1abb4dfdd7642880004f653cb1e6b7aaa8dc272df643","size":1735,"filename":"jP-_jyFvpl2RHZrfgoObTO1xpirwu4KeuFSYhdPgDno=.pem","location":"security-state-staging/intermediates/c7c73925-4bfb-4972-94cf-7df88442e3bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jP+/jyFvpl2RHZrfgoObTO1xpirwu4KeuFSYhdPgDno=","crlite_enrolled":true,"id":"ace5b1a2-9c9e-48ab-8146-03a2d8f88d8f","last_modified":1562024769403},{"schema":1562024767927,"derHash":"UnpgsCq/OkpVGcT2L7vVYOMDQHTu7IuHmaqTaGk/420=","subj
ect":"CN=SSL.com RSA SSL subCA,O=SSL Corporation,L=Houston,ST=Texas,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMR4wHAYDVQQDDBVTU0wuY29tIFJTQSBTU0wgc3ViQ0E=","whitelist":false,"attachment":{"hash":"19883ec948ba65cabab87774d50633120945ef053a62f8362d2e09b43597fe1a","size":2292,"filename":"7LcB5Z8ATVz4rcQtIY5xJir8_-F3e_HPi8IDdCnjCaE=.pem","location":"security-state-staging/intermediates/23914bfd-6f12-4a9d-8c1a-a2c9e445a1bf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7LcB5Z8ATVz4rcQtIY5xJir8/+F3e/HPi8IDdCnjCaE=","crlite_enrolled":true,"id":"b976a3a6-3c96-4aca-9c5f-fc654e3c4f6c","last_modified":1562024768658},{"schema":1562024767188,"derHash":"cx09nPqgYUh6HXFEWkL2ffCvyipsLS+Y/3s84RKx9Wg=","subject":"CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQDExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBYMw==","whitelist":false,"attachment":{"ha
sh":"657ef5d80546aa62cbfc4df47ce7b6d13a55f1a365959985c45ff6cd95bbba49","size":1983,"filename":"YLh1dUR9y6Kja30RrAn7JKnbQG_uEtLMkBgFF2Fuihg=.pem","location":"security-state-staging/intermediates/56cc56ae-6c42-4e45-a1ee-4dff7ceb2ed4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YLh1dUR9y6Kja30RrAn7JKnbQG/uEtLMkBgFF2Fuihg=","crlite_enrolled":false,"id":"dd797093-8a63-4153-8bb1-7f1ad9eb78d4","last_modified":1562024767919},{"schema":1562024764929,"derHash":"wwmtIoGSEzUs3Jlx0brY2/2MGlwnflYHm9xLFfPC+IY=","subject":"SERIALNUMBER=201420,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MjA=","whitelist":false,"attachment":{"hash":"82baf28c8e8f2f5eed9bfa651ab576ae26debfdbe468a8da9e531007866fd3f4","size":2093,"filename":"BXPYBHLDcjLdWqfbeS-3Wn3FyXMcPOt4MLp_WZ3dNRE=.pem","location":"security-state-staging/intermediates/c37fe368-288e-403b-92f1-5f67e7fb18b0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BXPYBHLDcjLdWqfbeS+3Wn3F
yXMcPOt4MLp/WZ3dNRE=","crlite_enrolled":false,"id":"f5badd92-19cd-42f3-8fd9-bca16a2010de","last_modified":1562024765675},{"schema":1562024764185,"derHash":"OwstKZr3dNbDMrK/q7RfRNhmQyuVUuoJTVKbbtElBIs=","subject":"SERIALNUMBER=A82743287,CN=Camerfirma Codesign II - 2014,OU=AC CAMERFIRMA,O=AC Camerfirma S.A.,L=Madrid (see current address at https://www.camerfirma.com/address),C=ES","subjectDN":"MIHLMQswCQYDVQQGEwJFUzEWMBQGA1UECwwNQUMgQ0FNRVJGSVJNQTEbMBkGA1UECgwSQUMgQ2FtZXJmaXJtYSBTLkEuMRIwEAYDVQQFEwlBODI3NDMyODcxSzBJBgNVBAcMQk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCBodHRwczovL3d3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTEmMCQGA1UEAwwdQ2FtZXJmaXJtYSBDb2Rlc2lnbiBJSSAtIDIwMTQ=","whitelist":false,"attachment":{"hash":"f1869c6545bc1c6234532651e68563d726b9b578290681c53ff1d9eb8955d278","size":3011,"filename":"8es0CNrSdbjFtrocXsDOpgrVyEAq0-J-uvoksmifuDk=.pem","location":"security-state-staging/intermediates/a6d8c412-ac3b-422e-8b40-1476c1f2271d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8e
s0CNrSdbjFtrocXsDOpgrVyEAq0+J+uvoksmifuDk=","crlite_enrolled":false,"id":"de0d0798-3da0-4c1c-b5e2-d1f8d2450c88","last_modified":1562024764922},{"schema":1562024763424,"derHash":"f6T/aOwEqZ11KNUIX5SQf00d0cU4G6zcgy7VyWAhRnY=","subject":"CN=Sectigo RSA Domain Validation Secure Server CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGPMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxNzA1BgNVBAMTLlNlY3RpZ28gUlNBIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"c5bc13ba28e3fad9bb69c25f294e5bebe315acc4947330a5cd0d2ce7928e2994","size":2166,"filename":"4a6cPehI7OG6cuDZka5NDZ7FR8a60d3auda-sKfg4Ng=.pem","location":"security-state-staging/intermediates/c2e0bcef-51d3-4306-93e1-9a40a8e77b7e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4a6cPehI7OG6cuDZka5NDZ7FR8a60d3auda+sKfg4Ng=","crlite_enrolled":false,"id":"6598d3bd-466d-49c7-b158-9ec07c6d53ac","last_mod
ified":1562024764178},{"schema":1562024762680,"derHash":"k63XyEhr8VpBaUnhY3vCGaNFXjdODq+YAVMDWrF/PsU=","subject":"CN=HARICA Qualified Legal Entities SubCA R1,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGXMQswCQYDVQQGEwJHUjEPMA0GA1UEBxMGQXRoZW5zMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTExMC8GA1UEAxMoSEFSSUNBIFF1YWxpZmllZCBMZWdhbCBFbnRpdGllcyBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"bc6cc8a34a080067df5a211a1ee0cc3ef6a1dcf5be3086883e888f22e2186b93","size":2434,"filename":"3NY0njQdFfwxsQu3sKMmdqGNJfWSRtz3x_GJn2JrJSM=.pem","location":"security-state-staging/intermediates/0c53d623-ca04-458c-a73c-43feafde8b16.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3NY0njQdFfwxsQu3sKMmdqGNJfWSRtz3x/GJn2JrJSM=","crlite_enrolled":false,"id":"892e29c1-f423-4b27-9ee7-bc21c7e30e3d","last_modified":1562024763416},{"schema":1562024761185,"derHash":"XEvFlykauccCP7ZEX9YDgaZcYN3UBPEk5foUP
+mLBfM=","subject":"CN=Trustwave S/MIME SHA256 CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGkMQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjEsMCoGA1UEAxMjVHJ1c3R3YXZlIFMvTUlNRSBTSEEyNTYgQ0EsIExldmVsIDExHzAdBgkqhkiG9w0BCQEWEGNhQHRydXN0d2F2ZS5jb20=","whitelist":false,"attachment":{"hash":"ed83656947f250a6c5ddc676c7ae6695bbf83f8d233c9e01dcb0ae8574c80def","size":1833,"filename":"0ziypZGtbQSlJkd3bO6sa64Aaev_F9DMXoWrdIPMuic=.pem","location":"security-state-staging/intermediates/322a4690-6387-44f2-8714-f8ecfa2909cb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0ziypZGtbQSlJkd3bO6sa64Aaev/F9DMXoWrdIPMuic=","crlite_enrolled":true,"id":"e02c5baa-af93-44fd-a07d-a4dc0f77962f","last_modified":1562024761923},{"schema":1562024760432,"derHash":"mZNeIEJFNewBbzN7K+aPE0neZszkylqzZ/jzc4IVuDM=","subject":"CN=DigiCert Secure Site ECC CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subject
DN":"MGcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJjAkBgNVBAMTHURpZ2lDZXJ0IFNlY3VyZSBTaXRlIEVDQyBDQS0x","whitelist":false,"attachment":{"hash":"c1873c9110b38d6483be9516efcc79cdd751a74f8f10ff176ee411a27f5e6802","size":1374,"filename":"Z5_2RtWXrCvvJsLXdZ4t9HEaVg21e9AhczULn9tmg4M=.pem","location":"security-state-staging/intermediates/63cecafd-26c5-4442-a764-6a7ef05785ca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z5/2RtWXrCvvJsLXdZ4t9HEaVg21e9AhczULn9tmg4M=","crlite_enrolled":true,"id":"38a4e0fc-47a6-4351-8c6e-d512e40ea47b","last_modified":1562024761178},{"schema":1562024759684,"derHash":"l4vPOcPDqs7+EEj6A2AoPcLr+lFQAkxeN4UU0+decpU=","subject":"CN=Ecclesiastical Academy of Vella Client RSA SubCA R1,O=University Ecclesiastical Academy of Vella of Ioannina,L=Ioannina,C=GR","subjectDN":"MIGfMQswCQYDVQQGEwJHUjERMA8GA1UEBwwISW9hbm5pbmExPzA9BgNVBAoMNlVuaXZlcnNpdHkgRWNjbGVzaWFzdGljYWwgQWNhZGVteSBvZiBWZWxsYSBvZiBJb2FubmluYTE8MDoGA1UEAwwzRW
NjbGVzaWFzdGljYWwgQWNhZGVteSBvZiBWZWxsYSBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"1ea505bcb0b55faef63c1cc254b9f6612d99491beb1b6b0958f3ee1c4f3c1675","size":2463,"filename":"BMcD2w-cJB838WspMeM-A5JCa6C9qk45hCCtD2798To=.pem","location":"security-state-staging/intermediates/649a06eb-0758-4347-a0b6-aee78ce4e55a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BMcD2w+cJB838WspMeM+A5JCa6C9qk45hCCtD2798To=","crlite_enrolled":false,"id":"9598a752-8f67-4ba2-b7dc-4c47cdf017e6","last_modified":1562024760423},{"schema":1562024758184,"derHash":"rtqeEp5fuhJTynkRau2ZDd+qqyS9SKHMvZmn4Dyd25Y=","subject":"CN=WISeKey CertifyID Standard G1 CA,OU=Copyright (c) 2005 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGKMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEmMCQGA1UECxMdQ29weXJpZ2h0IChjKSAyMDA1IFdJU2VLZXkgU0ExFjAUBgNVBAsTDUludGVybmF0aW9uYWwxKTAnBgNVBAMTIFdJU2VLZXkgQ2VydGlmeUlEIFN0YW5kYXJkIEcxIENB","whitelist":false,"attachment":{"hash":"99f53a0f0a04102d0dc798862
f7cddb908d4b19a382c02d2a501e95f73f888a4","size":1796,"filename":"V-iy-tAeMX9lDedsiiJL_8dZxPz-eL1s19Q5oU1d1Vg=.pem","location":"security-state-staging/intermediates/6968a7e4-49ad-4bc8-966e-16c6348b8280.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V+iy+tAeMX9lDedsiiJL/8dZxPz+eL1s19Q5oU1d1Vg=","crlite_enrolled":true,"id":"7af2b755-f8c2-4221-b4d9-98a4a40d8f82","last_modified":1562024758924},{"schema":1562024757412,"derHash":"E++zmi9mVOjGe9BPTG1MkM1sq1CRvO3HN4f2t309P+c=","subject":"CN=Entrust Certification Authority - L1K,OU=See www.entrust.net/legal-terms+OU=(c) 2012 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTIgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFL","whitelist":false,"attachment":{"hash":"2317985189faf07f31bc3c665a12f23068191e79899
2ad37652b74c99ac9bb73","size":1813,"filename":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0uc=.pem","location":"security-state-staging/intermediates/18eafa54-0261-4c50-a26c-e36ab1883d27.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0uc=","crlite_enrolled":true,"id":"760c1e85-d14f-45de-9089-5346d069bb23","last_modified":1562024758176},{"schema":1562024755893,"derHash":"fYmukYslr9+RA27uXBXljGAPQiZoZqjeAccdvGNcocA=","subject":"CN=AlwaysOnSSL CA - G2,OU=Domain Validated SSL,O=CertCenter AG,C=DE","subjectDN":"MGIxCzAJBgNVBAYTAkRFMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEcMBoGA1UEAxMTQWx3YXlzT25TU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"5a3569b6f9543f3155c9ebc71c27e7c74e57fd312e089d9ad6781dcd5667723d","size":1646,"filename":"ssE7QqKUKKZNwPdkucGxKcejYYKjpfRsYXOHhO9vDYI=.pem","location":"security-state-staging/intermediates/97de2daa-b660-43e4-9979-80e4f6a0f540.pem","mimetype":"application/x-pem-f
ile"},"pubKeyHash":"ssE7QqKUKKZNwPdkucGxKcejYYKjpfRsYXOHhO9vDYI=","crlite_enrolled":false,"id":"d788b871-e71a-4146-9d20-3e2d8c9eecac","last_modified":1562024756665},{"schema":1562024754381,"derHash":"XMXixoF272PUrFuyRW0vzBMohPpzVWgy+TJ1HXZdpy8=","subject":"SERIALNUMBER=201727,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzI3","whitelist":false,"attachment":{"hash":"5a7146a77461838f5a1843035d4a48aa4c82961a25f1da94dc025a7f4abcdd8b","size":2402,"filename":"bB9c6AN2JnHasyK5D2eIB9oxCfM50LTPnnl3kB89YXE=.pem","location":"security-state-staging/intermediates/22cae430-9901-4519-aec3-bbc56ed82b06.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bB9c6AN2JnHasyK5D2eIB9oxCfM50LTPnnl3kB89YXE=","crlite_enrolled":false,"id":"0b86594c-f5d4-4575-b6f7-b68483bebf4b","last_modified":1562024755141},{"schema":1562024751078,"derHash":"CYa1occxTvsE+2
SLnitXz0hC/R1DRdKOUglMkKn+y/4=","subject":"CN=NAESB Issuing CA - SHA384 - G3,O=GMO GlobalSign Inc.,L=Portsmouth,ST=New Hampshire,C=US","subjectDN":"MIGBMQswCQYDVQQGEwJVUzEWMBQGA1UECBMNTmV3IEhhbXBzaGlyZTETMBEGA1UEBxMKUG9ydHNtb3V0aDEcMBoGA1UEChMTR01PIEdsb2JhbFNpZ24gSW5jLjEnMCUGA1UEAxMeTkFFU0IgSXNzdWluZyBDQSAtIFNIQTM4NCAtIEcz","whitelist":false,"attachment":{"hash":"d49a532b85e082e491e221c8f33b16fe8422a94bea4c35c9948650604f3ca837","size":2073,"filename":"LV_Lp60GpBfNPlUINSof9qendyj5Iph8haNKt4Ks1OU=.pem","location":"security-state-staging/intermediates/d212f5ca-0adf-4e01-8ef0-908775f6b878.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LV/Lp60GpBfNPlUINSof9qendyj5Iph8haNKt4Ks1OU=","crlite_enrolled":false,"id":"7b2c039b-5a89-4f22-9b42-e0bd5d57c6b3","last_modified":1562024752817},{"schema":1562024749921,"derHash":"Lx4jkI1LNfslICo2QLpXBUvq3mextgcP+Jb+AQ9UYTs=","subject":"CN=FUJIFILM Fnet CA - S,O=FUJIFILM,C=JP","subjectDN":"MD8xCzAJBgNVBAYTAkpQMREwDwYDVQQKEwhGVUpJRklMTTEdMBsGA1UEAx
MURlVKSUZJTE0gRm5ldCBDQSAtIFM=","whitelist":false,"attachment":{"hash":"1d23dc7789b794fe7d42ddcfba44e339a63d08faa95b81febad9709dab455441","size":1589,"filename":"HklRNHbqiczty-mu_7-EsslYyqJV5eL1EXnD11xrky0=.pem","location":"security-state-staging/intermediates/1eed61f6-1e57-4d9d-adb4-743c366a80ed.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HklRNHbqiczty+mu/7+EsslYyqJV5eL1EXnD11xrky0=","crlite_enrolled":false,"id":"4d214f92-f862-44fa-a108-b0165201355b","last_modified":1562024751070},{"schema":1562024749130,"derHash":"efH1q2l96/GV9bfaZflTmWgu2uuAEVudQqauXi+piAI=","subject":"CN=TrustAsia TLS RSA CA,OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MHIxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEdMBsGA1UEAxMUVHJ1c3RBc2lhIFRMUyBSU0EgQ0E=","whitelist":false,"attachment":{"hash":"9c4047b27b1b439594f0eb24b088e1d1ed2f32b8eaf4ad49dd4d2745b8add3f5","size":1683,"filename":"jzqM6_58ozsPRvxUzg
0hzjM-GcfwhTbU_G0TCDvL7hU=.pem","location":"security-state-staging/intermediates/2c6b0e8d-5db7-43f4-ac20-43f2a3577b50.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jzqM6/58ozsPRvxUzg0hzjM+GcfwhTbU/G0TCDvL7hU=","crlite_enrolled":false,"id":"985da675-4aa3-4fc4-a366-147d9cc6b52b","last_modified":1562024749914},{"schema":1562024743075,"derHash":"48UkTRX44LA09QCQO32hHFfBZWF1uGYIx/zcVh0IG/Y=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - CFEA,OU=Certificados de Firma Electronica Avanzada,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGbMQswCQYDVQQGEwJFUzEeMBwGA1UECgwVRmlybWFwcm9mZXNpb25hbCBTLkEuMTMwMQYDVQQLDCpDZXJ0aWZpY2Fkb3MgZGUgRmlybWEgRWxlY3Ryb25pY2EgQXZhbnphZGExEjAQBgNVBAUTCUE2MjYzNDA2ODEjMCEGA1UEAwwaQUMgRmlybWFwcm9mZXNpb25hbCAtIENGRUE=","whitelist":false,"attachment":{"hash":"388c7390fd655de86c6807905f53164ea046c0a2c453eea6afb6887f81eba392","size":2337,"filename":"KO9CWWzDLCHF2tkv_s3T4tkDZ1JcNCoaADD2wa1h9Es=.pem","location":"security-state-staging/intermediates/c
1de4d24-123b-4648-9d5d-4b7609ce59a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KO9CWWzDLCHF2tkv/s3T4tkDZ1JcNCoaADD2wa1h9Es=","crlite_enrolled":false,"id":"17c9e6f6-0f5d-41db-af92-89fb0e502421","last_modified":1562024743816},{"schema":1562024742327,"derHash":"EjRl7sQJL4z3q/6SuMcBrAnqeaSY8dP2oCwXFPOahCM=","subject":"CN=DKHS Device CA,OU=GeoRoot Certification Authority,O=NTT DOCOMO\\, INC.,C=JP","subjectDN":"MGsxCzAJBgNVBAYTAkpQMRkwFwYDVQQKExBOVFQgRE9DT01PLCBJTkMuMSgwJgYDVQQLEx9HZW9Sb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRcwFQYDVQQDEw5ES0hTIERldmljZSBDQQ==","whitelist":false,"attachment":{"hash":"0dad32db64d125e5bd490ac9ead766806e1830e2dd3231d12e06165af78bc99f","size":1435,"filename":"2csLg17pewpYWpMoGlL9tpqZNfK0Xiyb8-ZdoxQJDfw=.pem","location":"security-state-staging/intermediates/215e95e7-dbc9-41ad-beca-82dc6583e809.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2csLg17pewpYWpMoGlL9tpqZNfK0Xiyb8+ZdoxQJDfw=","crlite_enrolled":false,"id":"1d5ac6e1-d38a-4677-b3a5-943
3b4cd1a5a","last_modified":1562024743067},{"schema":1562024741573,"derHash":"fwEpH2i6JJHUuT3A+YPz27ahQ8MAeqs+ShIEPKtdOe0=","subject":"SERIALNUMBER=201806,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODA2","whitelist":false,"attachment":{"hash":"d8c1a6a0b861a09c8788da6425106999f114b15b2b5e416683ce65f3f97232d2","size":2333,"filename":"HUkqo7ks9SSqrwVtx5-EbZ5_X2pu1urVxQlJdSbTQ6A=.pem","location":"security-state-staging/intermediates/eca3931d-d300-4dec-a61c-e938b033c589.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HUkqo7ks9SSqrwVtx5+EbZ5/X2pu1urVxQlJdSbTQ6A=","crlite_enrolled":false,"id":"d6563e6e-19de-4000-b6b1-f6915fc1fa4e","last_modified":1562024742319},{"schema":1562024740056,"derHash":"RgOPYyYijNtWYZxSJmYT2gTIykmeDQOw7c/8EQ1c/HA=","subject":"CN=GlobalSign PersonalSign 2 ECC CA SHA 384 - G4,O=GlobalSign nv-sa,C=BE","subje
ctDN":"MGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAyIEVDQyBDQSBTSEEgMzg0IC0gRzQ=","whitelist":false,"attachment":{"hash":"c7d733918214f65618244169320b852165e4cf03e0cdcbb3c09a1516a67e706c","size":1317,"filename":"lna5HZAGsocA3Pju5zM06F95XywtOa-LxU5QUgC3EX8=.pem","location":"security-state-staging/intermediates/b72356d7-b40c-46a5-a245-76ee8e592a3a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lna5HZAGsocA3Pju5zM06F95XywtOa+LxU5QUgC3EX8=","crlite_enrolled":false,"id":"ab4c9864-87dc-43a9-b4a5-f4d223bebbb7","last_modified":1562024740795},{"schema":1562024739285,"derHash":"/QKa3j96gKmNb//JQpBGWF7x2MuBk6F/YhQxfQZS18M=","subject":"CN=COMODO/HP Secure Email CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MHwxCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMSIwIAYDVQQDExlDT01PRE8vSFAgU2VjdXJlIEVtYWlsIENB","whitelist":false,"attachme
nt":{"hash":"adb2966a8c1fc1a877edbb79b2d43109f804829872e34bd8667f85ba432153e5","size":1975,"filename":"VQkNSqdqPoVan53-i1N5YrjNCMnJRtvNFB7icXr9un8=.pem","location":"security-state-staging/intermediates/c3470c12-1607-4586-9888-c399a9291d93.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VQkNSqdqPoVan53+i1N5YrjNCMnJRtvNFB7icXr9un8=","crlite_enrolled":false,"id":"851cd0f4-450c-474d-8fd8-6090b0b6f5f4","last_modified":1562024740048},{"schema":1562024737001,"derHash":"lylXMEAxI07Rdnn9y5dVbWFz1fK/Dm5m1hJoDKbndoU=","subject":"CN=UZI-register Medewerker niet op naam CA G3,O=CIBG,C=NL","subjectDN":"MGoxCzAJBgNVBAYTAk5MMQ0wCwYDVQQKDARDSUJHMRcwFQYDVQRhDA5OVFJOTC01MDAwMDUzNTEzMDEGA1UEAwwqVVpJLXJlZ2lzdGVyIE1lZGV3ZXJrZXIgbmlldCBvcCBuYWFtIENBIEcz","whitelist":false,"attachment":{"hash":"a6ad25c671822cfc5a55526a91ef47c754a74a1c8a12fd7b454e85652c742c79","size":2645,"filename":"io70m-V_59D3apVL30ZLD4BQjGAhNUmM2cLS-be8t_s=.pem","location":"security-state-staging/intermediates/c7d2ec98-db00-4406
-89b7-d86ce3937af3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"io70m+V/59D3apVL30ZLD4BQjGAhNUmM2cLS+be8t/s=","crlite_enrolled":false,"id":"74733176-ea07-49c5-b60a-dbd7c1256529","last_modified":1562024737740},{"schema":1562024733253,"derHash":"j6YC//WQ31g6NtUJwmX2w+qMNKnVbP+GKF+/6ZNr/FU=","subject":"CN=JCAN Sub Root CA0,OU=JCAN Sub Root CA0,O=JIPDEC,C=JP","subjectDN":"MFYxCzAJBgNVBAYTAkpQMQ8wDQYDVQQKEwZKSVBERUMxGjAYBgNVBAsTEUpDQU4gU3ViIFJvb3QgQ0EwMRowGAYDVQQDExFKQ0FOIFN1YiBSb290IENBMA==","whitelist":false,"attachment":{"hash":"871cbff3d95fe676c0cd3b4745350c714edd6aadf6d40bd13bf176dce9ea6e41","size":1382,"filename":"I02P_H74AjyBi_GfR4lBhtey51ZDKA2W-fOZZSid4V4=.pem","location":"security-state-staging/intermediates/7b2549ac-1575-477f-9793-1ddb62c1fd9f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"I02P/H74AjyBi/GfR4lBhtey51ZDKA2W+fOZZSid4V4=","crlite_enrolled":true,"id":"496c9bfb-8161-4544-af96-3b6e9fdff991","last_modified":1562024733996},{"schema":1562024730949,"de
rHash":"Y7BwFldXT8YPNIx4UFj4MKft0MhjxysSkPjUfV2Sh/s=","subject":"SERIALNUMBER=201803,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE4MDM=","whitelist":false,"attachment":{"hash":"152a682a8ba56d789b2a9e4fca605dec1b7b9981f653fa67f030bcf66f10a6ad","size":2337,"filename":"K4GLd4lfZhixwmB0xbzzoe824xrytO-tH5fMEZ6ifsM=.pem","location":"security-state-staging/intermediates/9d8577c4-554c-403a-ac20-21abaafba3d0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"K4GLd4lfZhixwmB0xbzzoe824xrytO+tH5fMEZ6ifsM=","crlite_enrolled":false,"id":"77846c07-4d7d-4170-ba9e-bc880bed629a","last_modified":1562024731705},{"schema":1562024729465,"derHash":"2Haggfs4J7oipAh99nUSb/ipaquQNkvGH2LOjpUHqpM=","subject":"CN=Intermediate Certificate DV SSL CA - G2,OU=Domain Validated SSL,O=Intermediate Certificate,C=NL","subjectDN":"MIGBMQswCQYDVQQGEwJOTDEhMB8GA1
UEChMYSW50ZXJtZWRpYXRlIENlcnRpZmljYXRlMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEwMC4GA1UEAxMnSW50ZXJtZWRpYXRlIENlcnRpZmljYXRlIERWIFNTTCBDQSAtIEcy","whitelist":false,"attachment":{"hash":"82dcd057921f6bd85130996e035be697fc268a9a31d1830d5ee055f355b2dee8","size":1577,"filename":"pJ9PrX4U-hWFvZYgO5Qo0PX4C-dnEo-R9p0ek-2ssDE=.pem","location":"security-state-staging/intermediates/bbbdb8ec-d55b-42f0-a90b-e0f5e445ce73.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pJ9PrX4U+hWFvZYgO5Qo0PX4C+dnEo+R9p0ek+2ssDE=","crlite_enrolled":false,"id":"eca16d96-e44c-48e8-b1a7-205586e51810","last_modified":1562024730202},{"schema":1562024728714,"derHash":"DrvfFG5j9w+qWSfujlNG6clsXw2b3TISsE7WaHF5h00=","subject":"CN=AC Firmaprofesional - CA1,OU=Consulte http://www.firmaprofesional.com+OU=Jerarquia de Certificacion Firmaprofesional,O=Firmaprofesional S.A. NIF A-62634068,L=C/ Muntaner 244 Barcelona,C=ES","subjectDN":"MIIBFjELMAkGA1UEBhMCRVMxJzAlBgkqhkiG9w0BCQEWGGNhMUBmaXJtYXByb2Zlc2lvbmFsLmNvbTEiMCAG
A1UEBxMZQy8gTXVudGFuZXIgMjQ0IEJhcmNlbG9uYTExMC8GA1UECxMoQ29uc3VsdGUgaHR0cDovL3d3dy5maXJtYXByb2Zlc2lvbmFsLmNvbTE0MDIGA1UECxMrSmVyYXJxdWlhIGRlIENlcnRpZmljYWNpb24gRmlybWFwcm9mZXNpb25hbDEtMCsGA1UEChMkRmlybWFwcm9mZXNpb25hbCBTLkEuIE5JRiBBLTYyNjM0MDY4MSIwIAYDVQQDExlBQyBGaXJtYXByb2Zlc2lvbmFsIC0gQ0Ex","whitelist":false,"attachment":{"hash":"bbdd4921a8930b33ba74748b849b85b781995c1df4ff5eb07b3e4a285a958904","size":2093,"filename":"B_ap-qAli0QgK_GmwkqkWS5Ta20el3pYN4MTgORZMjo=.pem","location":"security-state-staging/intermediates/e4d22c71-7375-4c8e-a206-47116103869e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B/ap+qAli0QgK/GmwkqkWS5Ta20el3pYN4MTgORZMjo=","crlite_enrolled":true,"id":"dcfb6515-9873-4150-b71a-c2af481fddfe","last_modified":1562024729458},{"schema":1562024727955,"derHash":"BsJ0YcBBfVE84PY0+rWt0wyI7w4lyE/eDkISW4jKBHU=","subject":"CN=COMODO ECC Extended Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGSMQswCQYDVQQGEwJHQjE
bMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE4MDYGA1UEAxMvQ09NT0RPIEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"f0ed2d7d6e60382f01a548b254343b7f5848f74af3472fd2ceae1c155e23ddb0","size":1321,"filename":"YH3gQW7-dkqR106QZabQ1Aj-6wtLuy70aAZpWreNcBc=.pem","location":"security-state-staging/intermediates/15b589e4-c214-4d65-96a6-5424c2514a86.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YH3gQW7+dkqR106QZabQ1Aj+6wtLuy70aAZpWreNcBc=","crlite_enrolled":true,"id":"acf6d715-9a75-4c95-8c4d-840c47d4fdfd","last_modified":1562024728706},{"schema":1562024724215,"derHash":"AzAobfNhLA6Wjc1RinoxbV4HkNHKMkuQaw7wF8C+Pqc=","subject":"CN=WoSign DV SSL CA,O=WoSign CA Limited,C=CN","subjectDN":"MEQxCzAJBgNVBAYTAkNOMRowGAYDVQQKDBFXb1NpZ24gQ0EgTGltaXRlZDEZMBcGA1UEAwwQV29TaWduIERWIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"a75ee51db3cb9c7a4b54e1099fdadd77ab4124acdb08f7ba375a7b614929984
f","size":1691,"filename":"G_V-4AYI9XAkNjdk4SZqLrWkylfZbgPG1S4cNnAU1F4=.pem","location":"security-state-staging/intermediates/d43405c6-d4c4-41e3-baac-5b53fab6891e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G/V+4AYI9XAkNjdk4SZqLrWkylfZbgPG1S4cNnAU1F4=","crlite_enrolled":true,"id":"24d073eb-1380-4a6f-b7e1-f8821cd871c7","last_modified":1562024724959},{"schema":1562024722725,"derHash":"Ln5luxoBPa8L32k4UC5D44IX/gDXbKL5n3qp4pj0hTQ=","subject":"CN=STRATO SSL,OU=Domain Validated SSL,O=STRATO AG,C=DE","subjectDN":"MFUxCzAJBgNVBAYTAkRFMRIwEAYDVQQKEwlTVFJBVE8gQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRMwEQYDVQQDEwpTVFJBVE8gU1NM","whitelist":false,"attachment":{"hash":"cb6ed07ea2573518382e2f2f838842a96f379ada0bbc5db15e4288b7b8384a9f","size":1532,"filename":"_LT0CMe5E7VgQyKeEQ6GlQp8nKPL1MNFw-rtCUA-0ak=.pem","location":"security-state-staging/intermediates/511003bd-4380-40cc-ac6c-e0ea641c6692.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/LT0CMe5E7VgQyKeEQ6GlQp8nKPL1MNFw
+rtCUA+0ak=","crlite_enrolled":false,"id":"ad34bc25-64e6-458b-baf2-26022a492da8","last_modified":1562024723456},{"schema":1562024721984,"derHash":"pXbClIH1oqyx30dQBimmD5b2rKMk6Hj/3Pq9heVkmu8=","subject":"CN=The Koble Group CA,OU=Orion Health Direct Secure Messaging,O=The Koble Group\\, LLC,C=US","subjectDN":"MHgxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRUaGUgS29ibGUgR3JvdXAsIExMQzEtMCsGA1UECxMkT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nMRswGQYDVQQDExJUaGUgS29ibGUgR3JvdXAgQ0E=","whitelist":false,"attachment":{"hash":"26d2fe9de89376ac8e1c6629f7c329bd897418bfef5bfd6e1f96183eb3015d65","size":2276,"filename":"-bxu-yaG1XG4Y7p1WLTMN9VfkKOEpBn_Bsu7tJsi2U4=.pem","location":"security-state-staging/intermediates/60227b91-2842-47e3-8043-43cd17252c0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+bxu+yaG1XG4Y7p1WLTMN9VfkKOEpBn/Bsu7tJsi2U4=","crlite_enrolled":false,"id":"df4be940-d330-4c3a-9923-bafa52a3e054","last_modified":1562024722717},{"schema":1562024721169,"derHash":"SUKtBEEhiuwi2sQXrEm
dfeTFTsvT0zXzSl+LBo9ubJY=","subject":"CN=Actalis Extended Validation Server CA G1,O=Actalis S.p.A./03358520967,L=Milano,ST=Milano,C=IT","subjectDN":"MIGHMQswCQYDVQQGEwJJVDEPMA0GA1UECAwGTWlsYW5vMQ8wDQYDVQQHDAZNaWxhbm8xIzAhBgNVBAoMGkFjdGFsaXMgUy5wLkEuLzAzMzU4NTIwOTY3MTEwLwYDVQQDDChBY3RhbGlzIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VydmVyIENBIEcx","whitelist":false,"attachment":{"hash":"9dca42b206384547c8a9ebe8126b177b165c1f506a22d83e63775bee433d5029","size":2243,"filename":"iiRAhRCKHfD_Hl73m_3kvrRJsjFUTTQ3Xaw6E8qVac4=.pem","location":"security-state-staging/intermediates/0bd6f9b1-1826-400c-9fc8-549c1432ff92.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iiRAhRCKHfD/Hl73m/3kvrRJsjFUTTQ3Xaw6E8qVac4=","crlite_enrolled":true,"id":"d9a1301f-ca8e-47e1-b6ae-ce1d56900f3c","last_modified":1562024721910},{"schema":1562024719663,"derHash":"00E47RRYrn3k7eo27TmS5PRubsnPHmM+U43p/w84+OU=","subject":"CN=Orion Health Direct Secure Messaging Public HISP CA,OU=Orion Health Direct Secure Messaging,O=Orion H
ealth Inc.,C=US","subjectDN":"MIGWMQswCQYDVQQGEwJVUzEaMBgGA1UEChMRT3Jpb24gSGVhbHRoIEluYy4xLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzE8MDoGA1UEAxMzT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nIFB1YmxpYyBISVNQIENB","whitelist":false,"attachment":{"hash":"94c25258c628090ccbfef78173fce5207a7b7d7d0786b01453aea545d1cc641f","size":2320,"filename":"_DkDZj8zqrqts7ngR8veYl3QLQiCdaFvI7j3ovLJLjQ=.pem","location":"security-state-staging/intermediates/e2ed17bc-c0a2-4f50-8600-d93fffa8427b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/DkDZj8zqrqts7ngR8veYl3QLQiCdaFvI7j3ovLJLjQ=","crlite_enrolled":false,"id":"a445528f-2000-4f16-a7e8-904d69b05da8","last_modified":1562024720406},{"schema":1562024718918,"derHash":"7qNsD/o/VP/bDPFLO9NKU+x7d19UBT3YsH39L4vskIM=","subject":"CN=Trustwave Extended Validation SHA256 CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGxMQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBg
NVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE5MDcGA1UEAxMwVHJ1c3R3YXZlIEV4dGVuZGVkIFZhbGlkYXRpb24gU0hBMjU2IENBLCBMZXZlbCAxMR8wHQYJKoZIhvcNAQkBFhBjYUB0cnVzdHdhdmUuY29t","whitelist":false,"attachment":{"hash":"621b7f65d119f8cacb26cf5956b7a206e1d42c2d931a41cf4311fdbc0bf8501e","size":1825,"filename":"zE8XYBj3Yf6nXNVdTry0tXUx6LGqIbwnbyd7rIOKue0=.pem","location":"security-state-staging/intermediates/1cd64f4c-6774-4383-aea2-1be395858f0e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zE8XYBj3Yf6nXNVdTry0tXUx6LGqIbwnbyd7rIOKue0=","crlite_enrolled":true,"id":"3ba57112-f78c-4fa3-94f7-1eb77f9f8f2f","last_modified":1562024719654},{"schema":1562024717416,"derHash":"M+ik7UiTB2DOGtei1E8HmyL2YAUnU5dhCeb8dHUlUr0=","subject":"CN=TrustAsia OV TLS Pro CA,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFYxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSAwHgYDVQQDExdUcnVzdEFzaWEgT1YgVExTIFBybyBDQQ==","whitelist":false,"attachment":{"hash":"8f0250802a5effb55f9283f5becfe9736b
17e0bdec2123b985d6c547798bc239","size":1666,"filename":"cJhQtqu9DZRLxNRS1bDaM1E3d1GuJZmxfwKcfb-Gx3Y=.pem","location":"security-state-staging/intermediates/2a54b660-4cce-4591-9297-660cc2220117.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cJhQtqu9DZRLxNRS1bDaM1E3d1GuJZmxfwKcfb+Gx3Y=","crlite_enrolled":true,"id":"4f9e9017-56da-4481-8083-248564e69585","last_modified":1562024718171},{"schema":1562024715170,"derHash":"nN/YJZbRusnkTT5JHiwH2NzJIEGZFf1vNhz3Ch5DOxA=","subject":"CN=DigiCert SHA2 Assured ID Code Signing CA - G3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xNjA0BgNVBAMTLURpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBDb2RlIFNpZ25pbmcgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"e43fe8619c09201ff336d2be7ea7b065245035b10edefc0d0c9cc445a0098b2d","size":1898,"filename":"jKeOrq37W9ZMRnlHh4gnOcrawDmxuqzbS5Om5m6Qyak=.pem","location":"security-state-staging/intermediates/73ad83c3-1e6c-4
031-bb8e-e7800b1bb2b3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jKeOrq37W9ZMRnlHh4gnOcrawDmxuqzbS5Om5m6Qyak=","crlite_enrolled":false,"id":"fd568972-755f-4a1e-8c44-f58d86c73a15","last_modified":1562024715911},{"schema":1562024714413,"derHash":"/IiJpBHRkQt6beFZ+zKPhN/9J1ajmnjpHLm7kMb+puQ=","subject":"CN=University of Crete CA R3,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHcxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEiMCAGA1UEAxMZVW5pdmVyc2l0eSBvZiBDcmV0ZSBDQSBSMw==","whitelist":false,"attachment":{"hash":"3f38972b3ba184fdd5a88bd5edfc309ffb146203c5e6710ef016700d3f649337","size":2775,"filename":"2tJ14hiF-3qIssF_Ns01wnvA9a1i8i26VjWdV82Wlq4=.pem","location":"security-state-staging/intermediates/9342a366-b470-4d8b-a331-808dee9e9d0a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2tJ14hiF+3qIssF/Ns01wnvA9a1i8i26VjWdV82Wlq4=","crlite_enrolled":true,"id":"ea5f5ef2-
9532-40eb-8804-ddc6a420ae90","last_modified":1562024715162},{"schema":1562024712927,"derHash":"HLRwcoz1bzAgA7sOTrBiQU+hHU+X4/BhFwyWyIBx1xE=","subject":"SERIALNUMBER=A11029279,CN=SIGNE Autoridad de Certificacion,O=SIGNE S.A.,L=Avenida de la Industria 18. Tres Cantos 28760-Madrid,C=ES","subjectDN":"MIGgMQswCQYDVQQGEwJFUzE9MDsGA1UEBww0QXZlbmlkYSBkZSBsYSBJbmR1c3RyaWEgMTguIFRyZXMgQ2FudG9zIDI4NzYwLU1hZHJpZDETMBEGA1UECgwKU0lHTkUgUy5BLjESMBAGA1UEBRMJQTExMDI5Mjc5MSkwJwYDVQQDDCBTSUdORSBBdXRvcmlkYWQgZGUgQ2VydGlmaWNhY2lvbg==","whitelist":false,"attachment":{"hash":"3f6d219cd54b538f11bc52eddaf32c9cbcb619f67f7a017b15a8e82efc886d08","size":2503,"filename":"ynelJ6-KsF0J-NiKpRriqZWi-wy8fLZiL_E1OPI9m7Q=.pem","location":"security-state-staging/intermediates/6843e057-b3a1-4c75-9cf3-558a38373e40.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ynelJ6+KsF0J+NiKpRriqZWi+wy8fLZiL/E1OPI9m7Q=","crlite_enrolled":false,"id":"5871aa8f-9987-4d45-9022-05b4d7183a7e","last_modified":1562024713662},{"schema":
1562024711406,"derHash":"NEe3S15QClSZg/os7XOlZC5qrseIKVRhWEN99m10Nbg=","subject":"CN=Entrust Certification Authority - L1J,OU=See www.entrust.net/legal-terms+OU=(c) 2016 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTYgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFK","whitelist":false,"attachment":{"hash":"2e07048ca86219c4ca3243524ce82f92bd4d6ee5a455e2f0788fa0719d8fec57","size":1414,"filename":"jI4Ykls9hjddSkzQ6huOlUndX7rjGTHuF5_d41IfoQg=.pem","location":"security-state-staging/intermediates/4cf5d4e3-3abb-470a-8f2f-a06b53c04f64.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jI4Ykls9hjddSkzQ6huOlUndX7rjGTHuF5/d41IfoQg=","crlite_enrolled":true,"id":"b9f11e18-5206-4146-9bc4-ddabac60444f","last_modified":1562024712167},{"schema":1562024710635,"der
Hash":"/bNF0mk3ftnTQwi7eIVjKzDmH46vt+tedfgCTV/U4Yc=","subject":"CN=Actalis Extended Validation Server CA G2,O=Actalis S.p.A./03358520967,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGSMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEjMCEGA1UECgwaQWN0YWxpcyBTLnAuQS4vMDMzNTg1MjA5NjcxMTAvBgNVBAMMKEFjdGFsaXMgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZXJ2ZXIgQ0EgRzI=","whitelist":false,"attachment":{"hash":"d7c5ffb611bebe89f018d16c77607820250f80793e311df76f8f922e05af8915","size":2324,"filename":"7BceCt47nBUwA0apsyAFMrAwZEtOsJ0HcCBwBjIkXMs=.pem","location":"security-state-staging/intermediates/f89bbfa9-5e8b-4f74-96f3-c9bd84205f7e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7BceCt47nBUwA0apsyAFMrAwZEtOsJ0HcCBwBjIkXMs=","crlite_enrolled":true,"id":"d203afe2-d732-4a47-a358-8ca78084b518","last_modified":1562024711399},{"schema":1562024709882,"derHash":"3tsxy87F+Z046G7MTXaUXfQPLlR8lOSwEkCUh1r2pVg=","subject":"CN=GeoTrust DV SSL CA - G2,OU=Domain Validated SSL,
O=GeoTrust Inc.,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEgMB4GA1UEAxMXR2VvVHJ1c3QgRFYgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"3439739bc1e7266a65a0e40c9f19967c1c86002e0c6cd9b795217957c2717c7c","size":1613,"filename":"mgUGy5n-uULtn7glVMU3OUXx8savFGjLQd6g3PsZv7U=.pem","location":"security-state-staging/intermediates/d591331f-b5b9-4283-9332-79fed3577527.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mgUGy5n+uULtn7glVMU3OUXx8savFGjLQd6g3PsZv7U=","crlite_enrolled":false,"id":"76e9e952-cf99-4bca-a810-f8e7f646e88e","last_modified":1562024710628},{"schema":1562024709140,"derHash":"QPR5Vb6j6nJsraxdP+YSl/57665bBQnh73spyDj0nSA=","subject":"CN=Atos TrustedRoot Client Issuing CA 2015,O=Atos,C=DE","subjectDN":"ME4xMDAuBgNVBAMMJ0F0b3MgVHJ1c3RlZFJvb3QgQ2xpZW50IElzc3VpbmcgQ0EgMjAxNTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"dd579a2edbed1e53c1f47b7a826616a0d492b19006
df01fe4ca95fec7212d82c","size":1569,"filename":"tjnIUgKXmzH2ph7qdeq_3nm1xMqgGPtNJ8mM19Zcu-M=.pem","location":"security-state-staging/intermediates/f292bc25-f1b7-45ff-9df5-d56c9893901c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tjnIUgKXmzH2ph7qdeq/3nm1xMqgGPtNJ8mM19Zcu+M=","crlite_enrolled":false,"id":"4f00eb7d-2e3c-402b-9dbb-97c1958dac20","last_modified":1562024709874},{"schema":1562024708399,"derHash":"wXYR23sxE2HiDXuCMarfR4vLf/oL5YXAbeIwkiPC74o=","subject":"CN=OMC,OU=ENTIDAD DE CERTIFICACION,O=ORGANIZACION MEDICA COLEGIAL,C=ES","subjectDN":"MGUxCzAJBgNVBAYTAkVTMSUwIwYDVQQKDBxPUkdBTklaQUNJT04gTUVESUNBIENPTEVHSUFMMSEwHwYDVQQLDBhFTlRJREFEIERFIENFUlRJRklDQUNJT04xDDAKBgNVBAMMA09NQw==","whitelist":false,"attachment":{"hash":"a803776f3d271b2b4cfdeef5d9a51f8db279dd9d598247889cc6742ab3d3d9ff","size":3165,"filename":"Lx99wFPK21XD3G9yPdiQ9625RbrSgNFJnI9V5mXPXkE=.pem","location":"security-state-staging/intermediates/12aab6e1-bfdf-437e-bbc8-fcb724a9ed52.pem","mimetype":"applicatio
n/x-pem-file"},"pubKeyHash":"Lx99wFPK21XD3G9yPdiQ9625RbrSgNFJnI9V5mXPXkE=","crlite_enrolled":false,"id":"6cd35988-abd6-4b5b-ad02-7e3a0e83da05","last_modified":1562024709132},{"schema":1562024706892,"derHash":"Zj/elPiDah/r2DvoMQl5MS1l/4wbcWOU5o9B2COWwfg=","subject":"CN=Aristotle University of Thessaloniki Client RSA SubCA R1,O=Aristotle University of Thessaloniki,L=Thessaloniki,C=GR","subjectDN":"MIGWMQswCQYDVQQGEwJHUjEVMBMGA1UEBwwMVGhlc3NhbG9uaWtpMS0wKwYDVQQKDCRBcmlzdG90bGUgVW5pdmVyc2l0eSBvZiBUaGVzc2Fsb25pa2kxQTA/BgNVBAMMOEFyaXN0b3RsZSBVbml2ZXJzaXR5IG9mIFRoZXNzYWxvbmlraSBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"e884941029a92f7cc721cf8f87b2dacfc378d2d5a064c4b6ddba7ad39417d4ee","size":3027,"filename":"ytEFkkfmakfLzegbNdjrBvQKQbWEW2YFusfFkTp1XZ4=.pem","location":"security-state-staging/intermediates/a3aaecf9-aaf9-426f-bad7-768214675cd3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ytEFkkfmakfLzegbNdjrBvQKQbWEW2YFusfFkTp1XZ4=","crlite_enrolled":false,
"id":"5a75985c-ec69-4abe-a08c-8eaaa1d12c61","last_modified":1562024707639},{"schema":1562024706143,"derHash":"Pk8J1lQ4tc9+RWKIwI/p9H7U4+1mknnIGu+rC6+4agk=","subject":"CN=Louisiana Health Care Quality Forum CA,OU=Orion Health Direct Secure Messaging,O=Louisiana Health Care Quality Forum,C=US","subjectDN":"MIGbMQswCQYDVQQGEwJVUzEsMCoGA1UEChMjTG91aXNpYW5hIEhlYWx0aCBDYXJlIFF1YWxpdHkgRm9ydW0xLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEvMC0GA1UEAxMmTG91aXNpYW5hIEhlYWx0aCBDYXJlIFF1YWxpdHkgRm9ydW0gQ0E=","whitelist":false,"attachment":{"hash":"428c87d34cb911d650c2ead42003657d5e3523f033beb76ce916b9717250c2ef","size":2324,"filename":"0oFe6aMlwHnzOWvJ6PJOW1sZTMXgzyY1_0iznwf8fjM=.pem","location":"security-state-staging/intermediates/20dc63b8-33e7-40a2-a18f-047fda833f52.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0oFe6aMlwHnzOWvJ6PJOW1sZTMXgzyY1/0iznwf8fjM=","crlite_enrolled":false,"id":"5f45c22c-a691-4926-a7a5-bc9262b58299","last_modified":1562024706884},{"schema":
1562024704660,"derHash":"wCLVzqonXypiaPp5rDVlOzpzDe+kH5zYgX1tFZvTMJc=","subject":"CN=DigiCert Secure Site Korea EV CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKTAnBgNVBAMTIERpZ2lDZXJ0IFNlY3VyZSBTaXRlIEtvcmVhIEVWIENB","whitelist":false,"attachment":{"hash":"f253f14a706e3542ba2225ccb86204637d0ef708b5d912aeccc04e74d10e5e16","size":1699,"filename":"GU23iW3XanBnTnSB-qHY60G9W7OWfde0SLEvQJL9stY=.pem","location":"security-state-staging/intermediates/3311e594-a7f2-4770-9ef8-99ef2e365393.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GU23iW3XanBnTnSB+qHY60G9W7OWfde0SLEvQJL9stY=","crlite_enrolled":false,"id":"5839e0ee-6dfe-4352-a923-db68e62acab8","last_modified":1562024705394},{"schema":1562024703916,"derHash":"twIbzzRuhQKxJ1+ABX87l0Z6yLinYWCDQOz4SE7DhIw=","subject":"CN=Symantec Shared Individual Email Certificate Authority,OU=Symantec Trust Network+OU=Universal Root Managed PKI Indivi
dual Subscriber CA,O=Symantec Corporation,C=US","subjectDN":"MIHMMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxPDA6BgNVBAsTM1VuaXZlcnNhbCBSb290IE1hbmFnZWQgUEtJIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTE/MD0GA1UEAxM2U3ltYW50ZWMgU2hhcmVkIEluZGl2aWR1YWwgRW1haWwgQ2VydGlmaWNhdGUgQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"0e66a63db740bfecf6042b8f34f2aab90907ba00e5cafe54ab3cc5faa750bc35","size":1999,"filename":"2ZRuq3rGjU72BNFg4TcN1Ix1HL_bYnlwehHZPK517-I=.pem","location":"security-state-staging/intermediates/40eebf4d-76e5-448b-8f3f-e6f66e68137d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2ZRuq3rGjU72BNFg4TcN1Ix1HL/bYnlwehHZPK517+I=","crlite_enrolled":false,"id":"c86ad407-3434-41bc-b9a3-1e139da7091e","last_modified":1562024704651},{"schema":1562024701623,"derHash":"uNXWXCP/nYyQL/5r7B3S8gaTryDpiuR3UfHsspgSe24=","subject":"CN=Certigna Wild CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MHkxCzAJBgNVBAYTAkZSMRIwE
AYDVQQKDAlESElNWU9USVMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxHTAbBgNVBGEMFE5UUkZSLTQ4MTQ2MzA4MTAwMDM2MRkwFwYDVQQDDBBDZXJ0aWduYSBXaWxkIENB","whitelist":false,"attachment":{"hash":"c9d1b633464898b551171e5655c6d033a8158730020ca58cbc318d75b497caf4","size":2503,"filename":"6PsBH2V6vxU_w6DnSyY4EpqQYeF8QrYgohY-fWMfhmE=.pem","location":"security-state-staging/intermediates/26d15fd4-439e-44a4-9647-68a200a9c445.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6PsBH2V6vxU/w6DnSyY4EpqQYeF8QrYgohY+fWMfhmE=","crlite_enrolled":true,"id":"eea82515-872e-42a6-a344-f0b1c78abfca","last_modified":1562024702399},{"schema":1562024699344,"derHash":"Q3hZMD0Bg4Yqlvar+LA/KmnUy9MXIXZmAV4aujyEqhE=","subject":"CN=Alaska eHealth Network CA,OU=Orion Health Direct Secure Messaging,O=Alaska eHealth Network\\, Inc.,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzElMCMGA1UEChMcQWxhc2thIGVIZWFsdGggTmV0d29yaywgSW5jLjEtMCsGA1UECxMkT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nMSIwIAYDVQQDExlBbGFza2EgZUhlYWx0aCBOZXR3b
3JrIENB","whitelist":false,"attachment":{"hash":"4091de3751ab313e7e649ce44c803e724201dd6805e79a8cbff59e9c013089eb","size":2300,"filename":"dfkE-bSHbmrjRBwkrMH5PQwaIQkos_AmfwEJJXYOIa0=.pem","location":"security-state-staging/intermediates/e5662ed0-eac1-4eab-9ce5-b207ced92959.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dfkE+bSHbmrjRBwkrMH5PQwaIQkos/AmfwEJJXYOIa0=","crlite_enrolled":false,"id":"56f1c6ae-fc7f-4290-82fb-07952074ad17","last_modified":1562024700095},{"schema":1562024698606,"derHash":"QzoJ/92y7tgu6p+RjIYMBMvqsTgaSN/ixI5C4T01r4E=","subject":"CN=RapidSSL Class 3 RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGlJhcGlkU1NMIENsYXNzIDMgUlNBIENBIEcx","whitelist":false,"attachment":{"hash":"000067152686f177585432d9dbf083f3ba0e9247714199a6a0a4dd88853060d8","size":1707,"filename":"A5Wm0DA34lHONfES5fxD574yGj-Q4hJ_2RLfym2qyMQ=.pem","location":"security-state-
staging/intermediates/39d021b4-045d-4df0-bd97-f97c1c1ce4d6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"A5Wm0DA34lHONfES5fxD574yGj+Q4hJ/2RLfym2qyMQ=","crlite_enrolled":false,"id":"d9651719-df4a-45d3-b841-cec02ae95cdc","last_modified":1562024699336},{"schema":1562024697831,"derHash":"ZWldUAEX/XJw8QJ+0SHwWUJnAHVGHTN+7sf2pbdXpHo=","subject":"SERIALNUMBER=A82743287,CN=Camerfirma TSA II - 2014,OU=AC CAMERFIRMA,O=AC Camerfirma S.A.,L=Madrid (see current address at https://www.camerfirma.com/address),C=ES","subjectDN":"MIHGMQswCQYDVQQGEwJFUzEWMBQGA1UECwwNQUMgQ0FNRVJGSVJNQTEbMBkGA1UECgwSQUMgQ2FtZXJmaXJtYSBTLkEuMRIwEAYDVQQFEwlBODI3NDMyODcxSzBJBgNVBAcMQk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCBodHRwczovL3d3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTEhMB8GA1UEAwwYQ2FtZXJmaXJtYSBUU0EgSUkgLSAyMDE0","whitelist":false,"attachment":{"hash":"06cdf05da15710413bcdb3c16b8e3f0453970466f63bdc6906fdb88c05ed5da0","size":2987,"filename":"GnaOorQmNxUdFpJsmrLyIIkCM1_g9iZ0es7p5xqkBxY=.pem","location":"securi
ty-state-staging/intermediates/ee5ffdeb-6347-45c1-89a8-f3d1d0d39dc9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GnaOorQmNxUdFpJsmrLyIIkCM1/g9iZ0es7p5xqkBxY=","crlite_enrolled":false,"id":"31a8767d-3150-41ae-b216-4dca0fa22970","last_modified":1562024698597},{"schema":1562024697080,"derHash":"OOlHN3L2M8nct0O+Jx25JIgQYTqfiyh+Ld8Ns1l8jNs=","subject":"CN=UIS-IsuB1-CA","subjectDN":"MFkxEzARBgoJkiaJk/IsZAEZFgNjb20xFjAUBgoJkiaJk/IsZAEZFgZ1bmlzeXMxEzARBgoJkiaJk/IsZAEZFgN1aXMxFTATBgNVBAMTDFVJUy1Jc3VCMS1DQQ==","whitelist":false,"attachment":{"hash":"c2b1f3688781af36e6d27a330a09d939105128f808804a477bb1ecbd9f6eb250","size":2487,"filename":"vDj0a53UpusZTxtxcI-9ZUwj-RyW5jTHxGzrsv1qKs0=.pem","location":"security-state-staging/intermediates/12fc4555-cc24-4d7c-8d3f-2853ba40865b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vDj0a53UpusZTxtxcI+9ZUwj+RyW5jTHxGzrsv1qKs0=","crlite_enrolled":false,"id":"11cf500b-368e-4976-9070-e14a563874d2","last_modified":1562024697823},{"schema":156
2024696338,"derHash":"25gZTlW5NtJubLP0YKJi62ymYzfnv/F6C/wIMlH2NiY=","subject":"CN=DigiCert Transition ECC Root,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IFRyYW5zaXRpb24gRUNDIFJvb3Q=","whitelist":false,"attachment":{"hash":"a503ee47d948586edc2de135a04ad0a5bf079f3430c38e4fa52765f5414feddd","size":1260,"filename":"fKyaD_MVOHdQuouv2xwrwps_C7oWNiypOpD4TaLfXz4=.pem","location":"security-state-staging/intermediates/1d50ac3c-c208-4965-8496-e94edb6ae235.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fKyaD/MVOHdQuouv2xwrwps/C7oWNiypOpD4TaLfXz4=","crlite_enrolled":false,"id":"8f14a185-27bb-46c9-8a7d-f062d9508611","last_modified":1562024697073},{"schema":1562024693355,"derHash":"4SHBaU2nN8F7hkSK7cYU7r15Rqe0uR+zACW2NgcCOeo=","subject":"CN=TU Dortmund Chipcard CA 2,O=Technische Universitaet Dortmund,C=DE","subjectDN":"MFwxCzAJBgNVBAYTAkRFMSkwJwYDVQQKDCBUZWNobmlzY2hl
IFVuaXZlcnNpdGFldCBEb3J0bXVuZDEiMCAGA1UEAwwZVFUgRG9ydG11bmQgQ2hpcGNhcmQgQ0EgMg==","whitelist":false,"attachment":{"hash":"0bc67e75f1a550023d6bf6415f76c4bbfa22728373423b60d4e7e69eaa7bc87b","size":1967,"filename":"-p4rAAgYbHPbwWrr_BlNozrzb4GHt5BSuZwneaDRlOs=.pem","location":"security-state-staging/intermediates/41136d39-9edf-4465-ab5f-af073bc975d6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+p4rAAgYbHPbwWrr/BlNozrzb4GHt5BSuZwneaDRlOs=","crlite_enrolled":false,"id":"f972f74e-4035-4b85-850c-b92110d4c782","last_modified":1562024694110},{"schema":1562024691129,"derHash":"wYxXFOSGGJ3Sw+b1Y8WpdDTQzgpTkzDyP1ghPrhWirI=","subject":"CN=The University of Texas at Dallas RSA CA,OU=Information Security Office,O=The University of Texas at Dallas,L=Richardson,ST=TX,C=US","subjectDN":"MIG0MQswCQYDVQQGEwJVUzELMAkGA1UECBMCVFgxEzARBgNVBAcTClJpY2hhcmRzb24xKjAoBgNVBAoTIVRoZSBVbml2ZXJzaXR5IG9mIFRleGFzIGF0IERhbGxhczEkMCIGA1UECxMbSW5mb3JtYXRpb24gU2VjdXJpdHkgT2ZmaWNlMTEwLwYDVQQDEyhUaGUgVW5pdmVyc2l
0eSBvZiBUZXhhcyBhdCBEYWxsYXMgUlNBIENB","whitelist":false,"attachment":{"hash":"d83db0100dd0651aed7a1f9d2f176811876df6ea0bbd93799a522ec2d121b897","size":2215,"filename":"oSg8JaDAQ9ImWQdr0rRFk3oUkfB2cH07F8NSCR7dQiw=.pem","location":"security-state-staging/intermediates/46cfac9c-1592-4289-82a4-76a735c25a0a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oSg8JaDAQ9ImWQdr0rRFk3oUkfB2cH07F8NSCR7dQiw=","crlite_enrolled":false,"id":"1e473b20-47b2-43a7-a660-2f7f01c79bea","last_modified":1562024691858},{"schema":1562024690373,"derHash":"2Sv46fqGfb2LeUxqSeb/H8+scfPX9K5Vu5WH6ySsZIk=","subject":"CN=Intel External Issuing CA 7B,O=Intel Corporation,L=Santa Clara,ST=CA,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEUMBIGA1UEBxMLU2FudGEgQ2xhcmExGjAYBgNVBAoTEUludGVsIENvcnBvcmF0aW9uMSUwIwYDVQQDExxJbnRlbCBFeHRlcm5hbCBJc3N1aW5nIENBIDdC","whitelist":false,"attachment":{"hash":"3252f7b7ea0a73ee0dc29fb52054976ceefcfe385a3ed7d3230c1b17bc3b0a51","size":2584,"filename":"nNwmZpaXyiCdG3FOv6Ua
yFdR2hD6Jp81-ByKuK4m0hc=.pem","location":"security-state-staging/intermediates/0635c17f-ed6f-4dda-9c17-ad7e86ea81de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nNwmZpaXyiCdG3FOv6UayFdR2hD6Jp81+ByKuK4m0hc=","crlite_enrolled":true,"id":"71f46dcf-1163-4ae4-82d0-70227f0d13aa","last_modified":1562024691121},{"schema":1562024689525,"derHash":"Fgi/h0FM3Pq0J5ECoZcC2dWZapEynj3y+ASVRzqthsY=","subject":"CN=GROB-WERKE GmbH und Co. KG SMIME CA,O=GROB-WERKE GmbH und Co. KG,L=Mindelheim,ST=Bayern,C=DE","subjectDN":"MIGGMQswCQYDVQQGEwJERTEPMA0GA1UECBMGQmF5ZXJuMRMwEQYDVQQHEwpNaW5kZWxoZWltMSMwIQYDVQQKExpHUk9CLVdFUktFIEdtYkggdW5kIENvLiBLRzEsMCoGA1UEAxMjR1JPQi1XRVJLRSBHbWJIIHVuZCBDby4gS0cgU01JTUUgQ0E=","whitelist":false,"attachment":{"hash":"e902888764e15f459260d581daca513e4d9312ed891f8366f61cfa3a818da4eb","size":1898,"filename":"9C6CMkucrjEzjuHJ0_Yvi_3haIQNwSsvg6dURAGCvQw=.pem","location":"security-state-staging/intermediates/2eeedbc9-d767-4120-9f52-1b8596e7016e.pem","mimetype":"applicatio
n/x-pem-file"},"pubKeyHash":"9C6CMkucrjEzjuHJ0/Yvi/3haIQNwSsvg6dURAGCvQw=","crlite_enrolled":false,"id":"aa9c5926-0cf0-4383-8c7c-86fbb9e3275c","last_modified":1562024690364},{"schema":1562024688131,"derHash":"WWFWvCpDFet2jIJtfMoykVjK48b492BTaWW+58ra9u0=","subject":"CN=GENIOUS RSA Organization Validation Secure Server CA,O=Genious Communications,L=Marrakech,ST=Marrakech,C=MA","subjectDN":"MIGVMQswCQYDVQQGEwJNQTESMBAGA1UECBMJTWFycmFrZWNoMRIwEAYDVQQHEwlNYXJyYWtlY2gxHzAdBgNVBAoTFkdlbmlvdXMgQ29tbXVuaWNhdGlvbnMxPTA7BgNVBAMTNEdFTklPVVMgUlNBIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"b67d95389481054676ee7593a657285e90ebc97092559fd2c290b35a70e6adb4","size":2186,"filename":"TGPK3krjByA1NGzfFpJE6yAuNxJS1sOdosy48yS34bY=.pem","location":"security-state-staging/intermediates/bb436925-661b-4c7d-b6d9-4cadc9fee665.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TGPK3krjByA1NGzfFpJE6yAuNxJS1sOdosy48yS34bY=","crlite_enrolled":false,"id":"1d
14fc34-cfca-4720-bd7d-f6bab37335af","last_modified":1562024689517},{"schema":1562024682352,"derHash":"pahZzgMQqF9CpUEdpj+DtBROuUvIplqZdayGgvZn23c=","subject":"CN=KLASS3-SK 2016,OU=Sertifitseerimisteenused,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MIGGMQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECwwYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMRcwFQYDVQRhDA5OVFJFRS0xMDc0NzAxMzEXMBUGA1UEAwwOS0xBU1MzLVNLIDIwMTY=","whitelist":false,"attachment":{"hash":"c86690eaf270e47aa47657df040ad7c00e44765f0541b6f39df22674b68d953a","size":2316,"filename":"xef4f3N5BNZP0Q0QcNP_K4mvKbkyVm6HUsu5v4fhkxw=.pem","location":"security-state-staging/intermediates/61e6fc9a-cbb9-46d0-a853-873ffe0a401b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xef4f3N5BNZP0Q0QcNP/K4mvKbkyVm6HUsu5v4fhkxw=","crlite_enrolled":false,"id":"f96d8ef1-2281-4fea-82fe-99e436804069","last_modified":1562024683335},{"schema":1562024680960,"derHash":"FaWN4H88JJ4m/o6pDWtxqWU210V50tO+z6ct66KP5uI=","subject":"
SERIALNUMBER=201802,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE4MDI=","whitelist":false,"attachment":{"hash":"97f5722cd07529a5c144cd8737c75d9df0894a3a632ef8cd9ed63f6dd432fd99","size":2337,"filename":"5Jza1_aAF2D2CllpCE_uElJfffYV4G7_ri5y_L78I7k=.pem","location":"security-state-staging/intermediates/81cbc5f5-72e7-4902-9d9c-06c7bc371cce.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5Jza1/aAF2D2CllpCE/uElJfffYV4G7/ri5y/L78I7k=","crlite_enrolled":false,"id":"a598405e-8a6e-4c07-a762-15192c3040d1","last_modified":1562024682344},{"schema":1562024675733,"derHash":"1AT6+kui9Ca2bNIZxtqE+RwPt8tYQp7IB34qdkMU1V0=","subject":"CN=SHECA RSA Extended Validation Code Signing CA,O=UniTrust,C=CN","subjectDN":"MFgxCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDE2MDQGA1UEAwwtU0hFQ0EgUlNBIEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZSBTaWduaW5nIENB","whitel
ist":false,"attachment":{"hash":"a15897802d23e699976d747ab51f10c55e3269b1d232e8dc8dfd3c1939062fec","size":2056,"filename":"FFIzlMw5Xc6E2LQuZDJSIUp6ilY_hMZ3pV79yOdqxT8=.pem","location":"security-state-staging/intermediates/072a73d3-de48-413f-ae4c-8ece54ee2d74.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FFIzlMw5Xc6E2LQuZDJSIUp6ilY/hMZ3pV79yOdqxT8=","crlite_enrolled":false,"id":"651de304-28d1-4884-8d67-d193d89dce21","last_modified":1562024676798},{"schema":1562024670128,"derHash":"djFLQcutTTf+2gYd//UKywPsgAfmXTYsZSPOGcQaaho=","subject":"CN=SSL Blindado 2,OU=Certifica\u00e7\u00e3o Digital,O=Site Blindado S.A.,L=S\u00e3o Paulo,ST=SP,C=BR","subjectDN":"MIGGMQswCQYDVQQGEwJCUjELMAkGA1UECBMCU1AxEzARBgNVBAcMClPDo28gUGF1bG8xGzAZBgNVBAoTElNpdGUgQmxpbmRhZG8gUy5BLjEfMB0GA1UECwwWQ2VydGlmaWNhw6fDo28gRGlnaXRhbDEXMBUGA1UEAxMOU1NMIEJsaW5kYWRvIDI=","whitelist":false,"attachment":{"hash":"fa57ea713308d04440c58d4fa7a1500999cf041024985d5f8f20c47c1e4a3ee9","size":2162,"filename":"4-iqNnPo4Sq4xW
zqc2uPKOdxlIAOrvZz-berOkTMMI4=.pem","location":"security-state-staging/intermediates/589c3c5b-ea54-467b-96cd-c34e117bb8a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4+iqNnPo4Sq4xWzqc2uPKOdxlIAOrvZz+berOkTMMI4=","crlite_enrolled":true,"id":"6d3bd155-89d6-4c5a-9aff-142261690ccc","last_modified":1562024671131},{"schema":1562024668446,"derHash":"rL+uvcvOGshMmM8kFAtgYalzGOkmIVQJ3Az0x75QZiA=","subject":"CN=Fraunhofer Service CA - G02,OU=Fraunhofer Corporate PKI,O=Fraunhofer,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGPMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjETMBEGA1UECgwKRnJhdW5ob2ZlcjEhMB8GA1UECwwYRnJhdW5ob2ZlciBDb3Jwb3JhdGUgUEtJMSQwIgYDVQQDDBtGcmF1bmhvZmVyIFNlcnZpY2UgQ0EgLSBHMDI=","whitelist":false,"attachment":{"hash":"f5d44378aebefee88f997f5baa67fce4e41c10b120f38a27f2ed2087d1347498","size":2028,"filename":"k3nI5IvSB1BwykyJ-lu8LZoHsTKb-Zq2JRhAXR7OjBU=.pem","location":"security-state-staging/intermediates/86390395-14c7-4e6b-8840-51150f08950a.pem","m
imetype":"application/x-pem-file"},"pubKeyHash":"k3nI5IvSB1BwykyJ+lu8LZoHsTKb+Zq2JRhAXR7OjBU=","crlite_enrolled":true,"id":"97c725bf-dfc1-4940-bed8-defc980dd7a3","last_modified":1562024669293},{"schema":1562024663411,"derHash":"GPQ2j+k7PK4CUjC85+rTQP2Q+yf5oQ42/uifxFTyJ4g=","subject":"CN=CrossTrust DV CA5,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MFAxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMRowGAYDVQQDExFDcm9zc1RydXN0IERWIENBNQ==","whitelist":false,"attachment":{"hash":"2095edba6d54418256b1c82c2499bd9f75e39608c3dc0e3b395dac7a8870a119","size":1642,"filename":"mfydQPGtsWNlYaYdaD2eprRgxX0MdeoAw0G537kLXzk=.pem","location":"security-state-staging/intermediates/779275d4-b98f-4e5c-9606-7d98a85e2d32.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mfydQPGtsWNlYaYdaD2eprRgxX0MdeoAw0G537kLXzk=","crlite_enrolled":true,"id":"70cd95b5-008a-41bf-b38e-525ca51982fb","last_modified":1562024664425},{"schema":1562024662659,"derHash":"oEZpf7hZ8MJrsTYMDebkqRSz
uujAYxpW7GiJI/lUHuo=","subject":"CN=Greek School Network CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHgxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEjMCEGA1UEAxMaR3JlZWsgU2Nob29sIE5ldHdvcmsgQ0EgUjI=","whitelist":false,"attachment":{"hash":"80378669992df895fe7c174b9406850901e279fea75c842fd6b3c2ff6c14043b","size":2515,"filename":"98TGXZmp4DiQ3clcfPyaWFAMTYcQaD8IUO2NCCrpEK0=.pem","location":"security-state-staging/intermediates/01368076-14b4-4b4e-b1c1-b9b490b60ec0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"98TGXZmp4DiQ3clcfPyaWFAMTYcQaD8IUO2NCCrpEK0=","crlite_enrolled":true,"id":"589d8720-2ba2-4203-acda-9cb678c4e712","last_modified":1562024663402},{"schema":1562024661916,"derHash":"HyAocW4zWE8z+pIKgCR77s3D18smUZVUxkTOTExgd6k=","subject":"CN=Gandi Pro SSL CA 2,O=Gandi,L=Paris,ST=Paris,C=FR","subjectDN":"MFoxCzAJBgNVBAYTAkZSMQ4wDAYDVQQIEwVQYXJpczEOMAwGA1UEBxMFUGFyaXM
xDjAMBgNVBAoTBUdhbmRpMRswGQYDVQQDExJHYW5kaSBQcm8gU1NMIENBIDI=","whitelist":false,"attachment":{"hash":"0b14e4838611e1040d16acabdae7756870a021f18844011f2f87c5ebfbf97f22","size":2101,"filename":"XQpYwYiHpVLml4eYccUVEZJpEOh5QrryTkXbWPum2FM=.pem","location":"security-state-staging/intermediates/da1204ed-4700-4361-bbeb-cffde787f323.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XQpYwYiHpVLml4eYccUVEZJpEOh5QrryTkXbWPum2FM=","crlite_enrolled":true,"id":"2e2be106-0cd8-423e-acc8-a99f0741c76c","last_modified":1562024662650},{"schema":1562024659671,"derHash":"o6MQwwU6lC/Rbc0oOqm5qYtOvFAShttTSERFwtQGQ5U=","subject":"SERIALNUMBER=201728,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzI4","whitelist":false,"attachment":{"hash":"f88597ad972bcb415157d862d83d8ba205b08e3b6f81f186151e052143d9c2c1","size":2402,"filename":"Zm0n84A8Hfky-2Hxedi6vT
c2e7xTRFGkgkHRccK9SQA=.pem","location":"security-state-staging/intermediates/1aa3c537-650e-493f-b57a-b13c3670115b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Zm0n84A8Hfky+2Hxedi6vTc2e7xTRFGkgkHRccK9SQA=","crlite_enrolled":false,"id":"329c9535-9fd6-4a5d-b07b-307647627c7b","last_modified":1562024660408},{"schema":1562024655926,"derHash":"CA5+NrPH+pbsxn239NQc7OHRlEAa8ZakpHt5vcSXBXQ=","subject":"CN=FR03,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"ME4xCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlESElNWU9USVMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxDTALBgNVBAMMBEZSMDM=","whitelist":false,"attachment":{"hash":"0e878e377f71dc53a8708f58d1a029dab3d1ba19aae19818ecaa81b11ff7f98c","size":2361,"filename":"5aXOeu2kcFD4gRajILogB4nDzNx-0ZsGl_VZJJ4Bcck=.pem","location":"security-state-staging/intermediates/ed40f0b5-5f1f-4858-b1a9-0e0e454d7a2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5aXOeu2kcFD4gRajILogB4nDzNx+0ZsGl/VZJJ4Bcck=","crlite_enrolled":false,"id":"f6f0bd28-e216-439a-b
50e-0eb0e9c39fd4","last_modified":1562024656668},{"schema":1562024654415,"derHash":"JEobcwyh11pppS9eX0IbtUfHl+JK++nPuZyZNIjNwnE=","subject":"CN=SSLs.com RSA OV Secure Server CA,O=SSLs.com,L=Phoenix,ST=Arizona,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRAwDgYDVQQHEwdQaG9lbml4MREwDwYDVQQKEwhTU0xzLmNvbTEpMCcGA1UEAxMgU1NMcy5jb20gUlNBIE9WIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"d9c03b9d8ce926db05361c2a2e9ebb41169021361e35605f6762ed68c201c0f8","size":2129,"filename":"Zyd1gFi_OihMqmE83KKHmgjVpD3p-B1OSbDcm-Mh1HI=.pem","location":"security-state-staging/intermediates/5b7360a4-d5af-4db0-a175-6ac34f6f359c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Zyd1gFi/OihMqmE83KKHmgjVpD3p+B1OSbDcm+Mh1HI=","crlite_enrolled":false,"id":"ede190ce-6e19-49ed-b777-76affc7a59c3","last_modified":1562024655178},{"schema":1562024653662,"derHash":"FcgTItoi8e58gjGswLUuTxenrmswgRui9mfmSP+C2Ko=","subject":"CN=GeoTrust Class 3 RSA CA G1,OU=www.digicert.com,O=Digi
Cert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGkdlb1RydXN0IENsYXNzIDMgUlNBIENBIEcx","whitelist":false,"attachment":{"hash":"35c33dbfaa3357dd26c043e304c3f067c93a1570a4a61d76b2cbd5f28ce68451","size":1658,"filename":"yQ3gGILmNT91r7IExWW0hjmSsOFoarXP2l8w_rCiqjI=.pem","location":"security-state-staging/intermediates/b9dc0b3e-4e93-4c74-a2a2-70baecda5ec8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yQ3gGILmNT91r7IExWW0hjmSsOFoarXP2l8w/rCiqjI=","crlite_enrolled":false,"id":"986f0086-4142-4ea7-a032-8318876fe49c","last_modified":1562024654408},{"schema":1562024650671,"derHash":"jP4TFbFn/L/IsanrVOl/Eygu4lB+DSOwFI0FOuhzb+M=","subject":"CN=Greek Academic Network CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHoxCzAJBgNVBAYTAkdSMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTElMCMGA1UEAwwcR3JlZWsgQWNhZGVtaWMgTmV0d29yayB
DQSBSMg==","whitelist":false,"attachment":{"hash":"afcea3835e49125880e2099105b71bc7371bb52e07197ab0d7790bdb0e1cdff8","size":2182,"filename":"oioxNDiUVFIA2kOPSehGUrby06Q-zdTupeexlqTUVGg=.pem","location":"security-state-staging/intermediates/27abd690-5eb8-49e0-b7dc-56479e0f2e1e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oioxNDiUVFIA2kOPSehGUrby06Q+zdTupeexlqTUVGg=","crlite_enrolled":true,"id":"d8c20a63-2574-4aa9-99cf-2c559248f49e","last_modified":1562024651416},{"schema":1562024648439,"derHash":"YBKTyiCwmgMpXRliVsaVP/nrqBHbjjzhQEE8G//pqGk=","subject":"CN=AC FNMT Usuarios,OU=Ceres,O=FNMT-RCM,C=ES","subjectDN":"MEsxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ2VyZXMxGTAXBgNVBAMMEEFDIEZOTVQgVXN1YXJpb3M=","whitelist":false,"attachment":{"hash":"98c05c3829d90c10dc917b2cce8e171d89d2621e2a69fdf4104f2ca5c4e1d9b5","size":2434,"filename":"CyFyC5Hw5FxD8ufLGF9VLrfeftRrKsFy7jm1CEFxCm8=.pem","location":"security-state-staging/intermediates/c63e246e-e4a9-41cd-9d0c-d6bd4563f4
d5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CyFyC5Hw5FxD8ufLGF9VLrfeftRrKsFy7jm1CEFxCm8=","crlite_enrolled":false,"id":"e7b7334d-1c42-4373-af42-028c694f4f20","last_modified":1562024649177},{"schema":1562024647686,"derHash":"x5C0cShEfsC2DyK/y3ldccMm3ZEO4Sy7TMWoYZHrkbw=","subject":"CN=RapidSSL RSA CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHTAbBgNVBAMTFFJhcGlkU1NMIFJTQSBDQSAyMDE4","whitelist":false,"attachment":{"hash":"8d48a4abde2999b864fb9607b6e2b43144a92714cdf63de21b44d83e923ae297","size":1687,"filename":"nKWcsYrc-y5I8vLf1VGByjbt-Hnasjl-9h8lNKJytoE=.pem","location":"security-state-staging/intermediates/fbead98d-cbd8-4432-90ef-c600588aad52.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nKWcsYrc+y5I8vLf1VGByjbt+Hnasjl+9h8lNKJytoE=","crlite_enrolled":true,"id":"1bc7f624-5af1-4e32-adc2-850bcbe509c2","last_modified":1562024648431},{"schema":1562024646934,"de
rHash":"mMJUWiwFo0LtsiqfbHzMH+mNh1lWduOimK3pf3sBKR0=","subject":"CN=Telia Extended Validation CA v3,O=Telia Finland Oyj,C=FI","subjectDN":"MFMxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEoMCYGA1UEAwwfVGVsaWEgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQSB2Mw==","whitelist":false,"attachment":{"hash":"cfccad2513e8a79668b0439df943a8027f9cf6e9df609184e5a59ecb4652c42a","size":2357,"filename":"M64GXqmJRZS4-HYfzVBON86Fc4RrWpo0uUMAaJSGSoo=.pem","location":"security-state-staging/intermediates/976a3c1d-a72a-4df1-86ae-0d14b9abe958.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M64GXqmJRZS4+HYfzVBON86Fc4RrWpo0uUMAaJSGSoo=","crlite_enrolled":false,"id":"36618487-dec3-4f3c-bbcb-9c997d3da4cd","last_modified":1562024647677},{"schema":1562024645415,"derHash":"aGG71MvtoqoBBmv0dr+PL+bqnwCMsKyOF1Xioyj6WTM=","subject":"CN=GeoTrust SupremeSSL 1 ECC CA,OU=www.supremessl.com,O=SupremeSSL,C=NL","subjectDN":"MGYxCzAJBgNVBAYTAk5MMRMwEQYDVQQKEwpTdXByZW1lU1NMMRswGQYDVQQLExJ3d3cuc3VwcmVtZXNzbC5jb20xJTAjBgN
VBAMTHEdlb1RydXN0IFN1cHJlbWVTU0wgMSBFQ0MgQ0E=","whitelist":false,"attachment":{"hash":"373aa2e25b056cec6efe1e730bddc90c02ef00673b9fcdbdecf27f45022767f5","size":1435,"filename":"MvWcqevnkZnFHxjKilcZrsSWbR8T5JBIZ9pHPT2t7c4=.pem","location":"security-state-staging/intermediates/e13233f4-f7b1-4bda-a820-d84b3227b772.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MvWcqevnkZnFHxjKilcZrsSWbR8T5JBIZ9pHPT2t7c4=","crlite_enrolled":false,"id":"d0d43bdc-8347-4819-898f-44ee3a2094bc","last_modified":1562024646178},{"schema":1562024643925,"derHash":"t9/cJ+X/nzXv7J9LxTLDX3J3ibackKBIm0AkcpnZcDg=","subject":"CN=NCC Group Secure Server CA G4,O=NCC Group,C=US","subjectDN":"MEkxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlOQ0MgR3JvdXAxJjAkBgNVBAMTHU5DQyBHcm91cCBTZWN1cmUgU2VydmVyIENBIEc0","whitelist":false,"attachment":{"hash":"6bba8a4f7467c485c33229430bcdc46f0a8e260ecda70283cadc4c16d46d3efc","size":2259,"filename":"MVk5FViYCK7Pj5OrMzdLFaJfz4vqivN-THyz125ar_w=.pem","location":"security-state-staging/intermedia
tes/92243c0e-e056-4cbe-8c9c-46b2431e55f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MVk5FViYCK7Pj5OrMzdLFaJfz4vqivN+THyz125ar/w=","crlite_enrolled":false,"id":"1be64318-c01e-4e05-9642-ba1a140b8f77","last_modified":1562024644659},{"schema":1562024643182,"derHash":"rYBqk1e4fR6x3YWlo8CS0CBLpEf/SzcU4/EDT0096KA=","subject":"CN=TrustAsia ECC DV SSL CA - G7,OU=Symantec Trust Network+OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MIGbMQswCQYDVQQGEwJDTjElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxJTAjBgNVBAMTHFRydXN0QXNpYSBFQ0MgRFYgU1NMIENBIC0gRzc=","whitelist":false,"attachment":{"hash":"ebbd88e3ff6a42d32837fa50a25dbd9d8cd0a7160b4513be3bff457a5f2f9a2e","size":1662,"filename":"HxpZpgA2aeZ4tewEwREYzhJ-jiwtTgrvLw0DLcn9Zuo=.pem","location":"security-state-staging/intermediates/73491823-ff56-4639-bfd4-809dcebab607.pem","mimetype":"application/x-pem-file"},"pubKey
Hash":"HxpZpgA2aeZ4tewEwREYzhJ+jiwtTgrvLw0DLcn9Zuo=","crlite_enrolled":false,"id":"c1afb7e3-58f3-4382-aff3-6da3ae7cf800","last_modified":1562024643918},{"schema":1562024641634,"derHash":"bLxbMwid37MlI3QGbYrgu+v7p3nbrldHJ5gmygzQXao=","subject":"SERIALNUMBER=201520,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MjA=","whitelist":false,"attachment":{"hash":"f8368bcc57ccb54a60e5cd5f771bae93885dd835ac9c7d93fb4bf0c6879f2be4","size":2093,"filename":"dUEUuB5jxCsvgh9iUJs0gNgF5SUPlP6kHDXYF6TI0qg=.pem","location":"security-state-staging/intermediates/b8123175-0124-4b42-9ca9-8fa735e58ffb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dUEUuB5jxCsvgh9iUJs0gNgF5SUPlP6kHDXYF6TI0qg=","crlite_enrolled":false,"id":"b66503e2-5ae2-40cd-9a39-31e70edc2fe8","last_modified":1562024642398},{"schema":1562024640879,"derHash":"7g9kewN50+S9JLTNpvhwe2fETVUR9aJbMd0pk+0TuZE=","subject":"CN=KeyNet Systems RSA Codesigning CA,O=KeyNet Systems LLC,L=Las Veg
as,ST=Nevada,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMQ8wDQYDVQQIEwZOZXZhZGExEjAQBgNVBAcTCUxhcyBWZWdhczEbMBkGA1UEChMSS2V5TmV0IFN5c3RlbXMgTExDMSowKAYDVQQDEyFLZXlOZXQgU3lzdGVtcyBSU0EgQ29kZXNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"d806fefd7fc730cee01857ae79aa61d872cec7e504d5fdc5b237d214bbe49a0e","size":2121,"filename":"yF0wtp1jCZD5CVHOt8FGpYuYs0KHDFYkMO7rLbCWnxs=.pem","location":"security-state-staging/intermediates/ea4041b7-4458-4530-b792-3dd083eb24ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yF0wtp1jCZD5CVHOt8FGpYuYs0KHDFYkMO7rLbCWnxs=","crlite_enrolled":false,"id":"b8a82aab-854e-43df-8a83-e56b2abc56a3","last_modified":1562024641626},{"schema":1562024640128,"derHash":"dKvl5czrdUkf9yxM8yVAXYrb/jkOGJz0MLpg5ieYh44=","subject":"CN=GlobalSign Qualified Time Stamping CA 2019,O=GlobalSign nv-sa,C=BE","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTMwMQYDVQQDEypHbG9iYWxTaWduIFF1YWxpZmllZCBUaW1lIFN0YW1waW5nIENBIDIwMTk=","whitelist":false,"att
achment":{"hash":"390e714997d51e1e6c2518f0577114169f70bf99bf7075c17ede8ab266418f8b","size":2333,"filename":"wa9IwR3KKWRyfMtS73Nt1hUWl63Qj3Pfg6VDVR2hZZc=.pem","location":"security-state-staging/intermediates/9d78e16e-5b65-4571-a961-a72d55244348.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wa9IwR3KKWRyfMtS73Nt1hUWl63Qj3Pfg6VDVR2hZZc=","crlite_enrolled":false,"id":"9e5df267-d269-49ba-accc-7148af1740ec","last_modified":1562024640872},{"schema":1562024639346,"derHash":"ce/DA7efYnc6YgZQkGKRCRN2Ftr6OBT3ZPKk8t4wjJc=","subject":"CN=Don Dominio / MrDomain RSA Codesigning CA,O=Soluciones Corporativas IP\\, SL,L=Manacor,ST=Illes Balears,C=ES","subjectDN":"MIGUMQswCQYDVQQGEwJFUzEWMBQGA1UECBMNSWxsZXMgQmFsZWFyczEQMA4GA1UEBxMHTWFuYWNvcjEnMCUGA1UEChMeU29sdWNpb25lcyBDb3Jwb3JhdGl2YXMgSVAsIFNMMTIwMAYDVQQDEylEb24gRG9taW5pbyAvIE1yRG9tYWluIFJTQSBDb2Rlc2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"93809ce288569e0a80022d76b567f6111be181c1409952f6104a03054e439930","size":2158,"filename"
:"CrN64DaXdgi0ZeV86ffGFSIF8l-3irYcKimQA8lXRvc=.pem","location":"security-state-staging/intermediates/83703eb2-f064-48c1-a37b-48595cd66e27.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CrN64DaXdgi0ZeV86ffGFSIF8l+3irYcKimQA8lXRvc=","crlite_enrolled":false,"id":"827ccb06-0216-48bc-9dc5-0e275639a416","last_modified":1562024640120},{"schema":1562024636330,"derHash":"6GvBbMZJHl9LmXYxOEKz0CyZ6iY66x3CI9iY+ofISEU=","subject":"CN=Intermediate Certificate DV SSL CA - G3,OU=Domain Validated SSL,O=Intermediate Certificate,C=NL","subjectDN":"MIGBMQswCQYDVQQGEwJOTDEhMB8GA1UEChMYSW50ZXJtZWRpYXRlIENlcnRpZmljYXRlMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEwMC4GA1UEAxMnSW50ZXJtZWRpYXRlIENlcnRpZmljYXRlIERWIFNTTCBDQSAtIEcz","whitelist":false,"attachment":{"hash":"195afb969c8619e4ae9d77e800d89622d5b5e6863724ca0b08cfc1acf51e176f","size":1752,"filename":"RttTLrYI9IiksyY9ikb6Z5G21gXd-PC6JavBmeoUhFQ=.pem","location":"security-state-staging/intermediates/3c8e4cea-ada4-4d01-99ef-c17583cd2e32.pem","mim
etype":"application/x-pem-file"},"pubKeyHash":"RttTLrYI9IiksyY9ikb6Z5G21gXd+PC6JavBmeoUhFQ=","crlite_enrolled":false,"id":"19f456b7-aefd-4a74-bfc2-4c69c84b227b","last_modified":1562024637072},{"schema":1562024634825,"derHash":"/NczzyQ6oyLxiQoZuSL2+q3PM8RJhTcvH9QDYOXbRUA=","subject":"CN=HEAL-LINK Hellenic Academic Libraries Link CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGOMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxOTA3BgNVBAMTMEhFQUwtTElOSyBIZWxsZW5pYyBBY2FkZW1pYyBMaWJyYXJpZXMgTGluayBDQSBSMg==","whitelist":false,"attachment":{"hash":"faa326d8a1f2b480e44d115d21b8ede6d23515f18895ccd916c77df67e3b3fe3","size":2572,"filename":"7sJ8RMpnyY2DImVRw5k-1OVZMBQjegMbRJJlc8JvQYw=.pem","location":"security-state-staging/intermediates/744082c5-b92f-4e8b-b2a4-62c76f2ed069.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7sJ8RMpnyY2DImVRw5k+1OVZMBQjegMbRJJlc8JvQYw=","crlite_enroll
ed":true,"id":"e3ec2766-2033-4174-b315-24dfed391391","last_modified":1562024635558},{"schema":1562024634083,"derHash":"k1abJqpTXj4HyJHGvS+p3Ak5wk20s3Jq2FMe2xfEl8o=","subject":"CN=Thawte EV RSA CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHjAcBgNVBAMTFVRoYXd0ZSBFViBSU0EgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"aa41f2f1317c4207a1ce000f100f89792938ebbd08ccc7367391461f45499ac8","size":1662,"filename":"LrLVqGD-UOnCQjaFUpgBUORdtTIaWwBeJtZ2JTpAm_U=.pem","location":"security-state-staging/intermediates/96e7bbbb-d73b-4033-b2a1-e8243524a5bf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LrLVqGD+UOnCQjaFUpgBUORdtTIaWwBeJtZ2JTpAm/U=","crlite_enrolled":true,"id":"85dafc08-0b93-4086-a997-de6c1c290cdb","last_modified":1562024634817},{"schema":1562024633327,"derHash":"EYDDOuHyMiiSP2rmmMnBDccp4NgR/IsuwCcm4twm4uQ=","subject":"CN=Mary Washington Healthcare CA,OU=Orion Health D
irect Secure Messaging,O=Mary Washington Healthcare,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzEjMCEGA1UEChMaTWFyeSBXYXNoaW5ndG9uIEhlYWx0aGNhcmUxLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEmMCQGA1UEAxMdTWFyeSBXYXNoaW5ndG9uIEhlYWx0aGNhcmUgQ0E=","whitelist":false,"attachment":{"hash":"f27a0d7f7099ac8f18503b8f3e491b2a79d0e29e512d0183a401f13211fb332e","size":2308,"filename":"3fZZys3pCVAZzGIvFjCN9qPTAa_HZxcHFvElXaL0oEo=.pem","location":"security-state-staging/intermediates/90afa439-0588-4864-86ca-7342ec654bef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3fZZys3pCVAZzGIvFjCN9qPTAa/HZxcHFvElXaL0oEo=","crlite_enrolled":false,"id":"7f4afbf6-84ea-4275-bf34-2df9f0ef7ec1","last_modified":1562024634075},{"schema":1562024631064,"derHash":"fwfBL/9GU9a7ZfnM/RoOnuRmiE6wdyd7ubtF12JDzCI=","subject":"CN=cPanel Extended Validation RSA Certification Authority,OU=Controlled by COMODO exclusively for cPanel\\, Inc.,O=cPanel\\, Inc.,L=Houston,ST=TX,C=US","subjectDN":"MIHAMQswCQYD
VQQGEwJVUzELMAkGA1UECBMCVFgxEDAOBgNVBAcTB0hvdXN0b24xFTATBgNVBAoTDGNQYW5lbCwgSW5jLjE6MDgGA1UECxMxQ29udHJvbGxlZCBieSBDT01PRE8gZXhjbHVzaXZlbHkgZm9yIGNQYW5lbCwgSW5jLjE/MD0GA1UEAxM2Y1BhbmVsIEV4dGVuZGVkIFZhbGlkYXRpb24gUlNBIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"d1bbc1da043caed75d76f28bd38fb18682563dac07cd7bf50225a2df8a59a870","size":2263,"filename":"KpHjtz2O9rMfP4azz-Q54sswiBTZMPXTpgqz8YbaLxY=.pem","location":"security-state-staging/intermediates/9f5ff8d2-5dad-434f-96b3-f774d101a4f0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KpHjtz2O9rMfP4azz+Q54sswiBTZMPXTpgqz8YbaLxY=","crlite_enrolled":false,"id":"6210dc38-77f8-4be4-9d9d-dc0af9f6a298","last_modified":1562024631797},{"schema":1562024627331,"derHash":"yBksMve0nH8yocoAFZWn+eNsnnIFjW6qG6t3UqjBZxg=","subject":"CN=GlobalSign SMIME CA 2018,O=GlobalSign nv-sa,C=BE","subjectDN":"MEsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSEwHwYDVQQDExhHbG9iYWxTaWduIFNNSU1FIENBIDIwMTg=","whitelist":fals
e,"attachment":{"hash":"60387e84f4510d6de07955c632fa7b57744fec7421e7a6c71b8146efbe767f1e","size":1646,"filename":"5METmo6RU7kSFFHasy87-Yr-zR3pFY6GNCY1M084qpg=.pem","location":"security-state-staging/intermediates/7f667502-8313-4684-ad31-beaae087ae6e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5METmo6RU7kSFFHasy87+Yr+zR3pFY6GNCY1M084qpg=","crlite_enrolled":false,"id":"d6835983-aca8-442a-ad58-55908e0b7315","last_modified":1562024628080},{"schema":1562024626566,"derHash":"/CgbGiVMKgBz2Vk/GCOBvieHBl47UiE0VClMXC8RlTc=","subject":"CN=Sectigo RSA Extended Validation Code Signing CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGQMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxODA2BgNVBAMTL1NlY3RpZ28gUlNBIEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"33e7c322675e7bdb5f32c2d6d1233bffe8d9634feda4861f4b95735289052139","size":2154,"filename":"Mn6dnr
ahNIa08AjqfJouU0xQyNvIF6P_y5xeJthQTwI=.pem","location":"security-state-staging/intermediates/e05a0dc7-704c-497d-8660-79aca583ade4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Mn6dnrahNIa08AjqfJouU0xQyNvIF6P/y5xeJthQTwI=","crlite_enrolled":false,"id":"3af61df4-c217-4f92-90ea-5bb3de3f7043","last_modified":1562024627323},{"schema":1562024624262,"derHash":"S8xeI0/oHt5Or4g6oZwxM1sLJuheBmuZReTLYVPrIMI=","subject":"CN=Thawte TLS RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHTAbBgNVBAMTFFRoYXd0ZSBUTFMgUlNBIENBIEcx","whitelist":false,"attachment":{"hash":"ab46e21b2e6e52647007f65c64b45ece54a6f9162bf19babfd723021d1ed126d","size":1634,"filename":"42b9RNOnyb3tlC0KYtNPA3KKpJluskyU6aG-CipUmaM=.pem","location":"security-state-staging/intermediates/2deee9f5-6f96-4266-860b-0f80cf881111.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"42b9RNOnyb3tlC0KYtNPA3KKpJluskyU6aG+CipUmaM=
","crlite_enrolled":true,"id":"30af8c0a-f879-42ef-9671-106eda3c7cbb","last_modified":1562024625011},{"schema":1562024623475,"derHash":"gNnttFt/WSzTAlTlW8MWu/ROR9/AwASjgygcA/NFujk=","subject":"CN=Volusion\\, Inc. DV SSL CA - G3,OU=Domain Validated SSL,O=Volusion\\, Inc.,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5Wb2x1c2lvbiwgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxJjAkBgNVBAMTHVZvbHVzaW9uLCBJbmMuIERWIFNTTCBDQSAtIEcz","whitelist":false,"attachment":{"hash":"0898be28f7290da5c6273dfad054616ae1855f6aa5901d7922a67344d09f7763","size":1723,"filename":"RMqGtQ81XY6e9YblNqPQsG-I-Vl4drli249zNcNSNG8=.pem","location":"security-state-staging/intermediates/9634597d-175a-49aa-8c22-d757966db0e3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RMqGtQ81XY6e9YblNqPQsG+I+Vl4drli249zNcNSNG8=","crlite_enrolled":false,"id":"6b1ed47e-c61a-4822-abd2-60fe59426945","last_modified":1562024624251},{"schema":1562024622714,"derHash":"ERAGN4r76OmbsCuoc5DKQp/KJ3P3TX9+tXRPXd9oAUs=","subject":
"CN=COMODO RSA Organization Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGWMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE8MDoGA1UEAxMzQ09NT0RPIFJTQSBPcmdhbml6YXRpb24gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"392b7ffb2a6d72092399d66449152de878985c5738c191f6ef26addba3d8eb50","size":2158,"filename":"EgNpQklEUNXn9Nl6RoIOC532j1g5-EFw0ZpLxxJq9Ms=.pem","location":"security-state-staging/intermediates/c80aa8eb-6981-4908-8d72-212d3bd441de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EgNpQklEUNXn9Nl6RoIOC532j1g5+EFw0ZpLxxJq9Ms=","crlite_enrolled":true,"id":"a6d34d17-e949-4454-abaa-0a9d4b0491c3","last_modified":1562024623466},{"schema":1562024621218,"derHash":"TywMFwG94Btr7tptF8M2BCQhr3MRcGM0f36Xt2rYl/U=","subject":"CN=GlobalSSL Secure E-Mail and Client Authentication CA,O=GlobalSSL,C=DE","subjectDN":"MGAxCzAJBgNVBAYTAkR
FMRIwEAYDVQQKEwlHbG9iYWxTU0wxPTA7BgNVBAMTNEdsb2JhbFNTTCBTZWN1cmUgRS1NYWlsIGFuZCBDbGllbnQgQXV0aGVudGljYXRpb24gQ0E=","whitelist":false,"attachment":{"hash":"b2019acf4321d57d1f4034c278f7761779e2fc130bbf2ca87aabbe5a7047c614","size":1760,"filename":"rvxRPOOErynHJj6lYghacyWHWiAPuUDhnQ7bzVQe7nA=.pem","location":"security-state-staging/intermediates/877ea40c-279d-4cd8-b03b-99944b427bcb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rvxRPOOErynHJj6lYghacyWHWiAPuUDhnQ7bzVQe7nA=","crlite_enrolled":false,"id":"f9c9ddb7-531e-4937-a263-83d2c27d3642","last_modified":1562024621953},{"schema":1562024619702,"derHash":"EMP0Dpu+F7SPCzx8IpyrCiCHH86+zMz2orsyDwYAxV0=","subject":"CN=GENIOUS ECC Domain Validation Secure Server CA,O=Genious Communications,L=Marrakech,ST=Marrakech,C=MA","subjectDN":"MIGPMQswCQYDVQQGEwJNQTESMBAGA1UECBMJTWFycmFrZWNoMRIwEAYDVQQHEwlNYXJyYWtlY2gxHzAdBgNVBAoTFkdlbmlvdXMgQ29tbXVuaWNhdGlvbnMxNzA1BgNVBAMTLkdFTklPVVMgRUNDIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","white
list":false,"attachment":{"hash":"f3a06e4e586746c718894b7aa2c2e9bd671253ab6b338d4df2627f4a2d14d8d7","size":1337,"filename":"1cqz0JJYdVUqvZUaW4P8qx8yIL49CzeX5G4oCYvH4Rk=.pem","location":"security-state-staging/intermediates/1a177cfa-33d9-4c35-9cdd-4a73c7973fc6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1cqz0JJYdVUqvZUaW4P8qx8yIL49CzeX5G4oCYvH4Rk=","crlite_enrolled":false,"id":"7c266e3a-9521-4d0f-9d73-3c71c87172f8","last_modified":1562024620466},{"schema":1562024618939,"derHash":"5z8fGaRFmmBnpF6E21hdbB348SpznXM/WyiZZUbxh1o=","subject":"CN=EID-SK 2016,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MGAxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRcwFQYDVQRhDA5OVFJFRS0xMDc0NzAxMzEUMBIGA1UEAwwLRUlELVNLIDIwMTY=","whitelist":false,"attachment":{"hash":"d1877d7e7d6896cdc30b2a96d22c25da8e88a3850982a8200030af501da20c0d","size":2446,"filename":"WjtwJIwch5NRyJIrp2ugEDPftPNWvNEABHOUTFt-3Ts=.pem","location":"security-state-staging/intermediates/7aa7841a-915a-45b2-
ac5b-777c1b425ffa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WjtwJIwch5NRyJIrp2ugEDPftPNWvNEABHOUTFt+3Ts=","crlite_enrolled":false,"id":"77f687a7-202f-4434-8803-51beb26f0c1e","last_modified":1562024619694},{"schema":1562024617416,"derHash":"HnLYPtlJnLpoaWhFK+WRxIgW7JGBORpdA8H007oWWNw=","subject":"CN=Inland Empire Health Information Exchange,OU=Inland Empire Health Information Exchange,O=Inland Empire EHR Resource Center,C=US","subjectDN":"MIGhMQswCQYDVQQGEwJVUzEqMCgGA1UEChMhSW5sYW5kIEVtcGlyZSBFSFIgUmVzb3VyY2UgQ2VudGVyMTIwMAYDVQQLEylJbmxhbmQgRW1waXJlIEhlYWx0aCBJbmZvcm1hdGlvbiBFeGNoYW5nZTEyMDAGA1UEAxMpSW5sYW5kIEVtcGlyZSBIZWFsdGggSW5mb3JtYXRpb24gRXhjaGFuZ2U=","whitelist":false,"attachment":{"hash":"56a96226dc0a4ebcd492c2ba0a04368f7c5f5189a22e885261c55391d2562b9a","size":2333,"filename":"q6gCaPEu6hA3-78YqCU97RQxanv-hMImmAKou_5S3gk=.pem","location":"security-state-staging/intermediates/b63f11e8-55f8-4280-920f-f5c9455fdaef.pem","mimetype":"application/x-pem-file"},"pubKeyHash
":"q6gCaPEu6hA3+78YqCU97RQxanv+hMImmAKou/5S3gk=","crlite_enrolled":false,"id":"38ae9eda-30d4-49fa-9452-56249cf4e96f","last_modified":1562024618180},{"schema":1562024616673,"derHash":"jMNOEcFnBFgkreYcSQemRA7bLEOY6ZwRKoWdZh+OK8c=","subject":"CN=GeoTrust RSA CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHTAbBgNVBAMTFEdlb1RydXN0IFJTQSBDQSAyMDE4","whitelist":false,"attachment":{"hash":"a013c9348417f4076dc717cab4baf557d42e0c77d49f5a42c13f09fafee4a167","size":1634,"filename":"zUIraRNo-4JoAYA7ROeWjARtIoN4rIEbCpfCRQT6N6A=.pem","location":"security-state-staging/intermediates/be8a1d98-433a-4bf6-941e-c31bcf350d57.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zUIraRNo+4JoAYA7ROeWjARtIoN4rIEbCpfCRQT6N6A=","crlite_enrolled":true,"id":"5fa2fd0c-5f29-4a58-ab51-5fee7d3956b4","last_modified":1562024617409},{"schema":1562024615906,"derHash":"qyyT4BzCFYB/BM2/w2KAjYiUCnss7nAjjTVtjZSVbfk=","s
ubject":"CN=COMODO RSA Extended Validation Secure Server CA 2,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGUMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE6MDgGA1UEAxMxQ09NT0RPIFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0EgMg==","whitelist":false,"attachment":{"hash":"c9ffc8c4cf8f0c1b8f57788dbb13ef5542a34da4b3a7f581d414769ea5f86cde","size":2207,"filename":"_KV5PqHI-A-AHDl7BRjU7Yfi8xL4XtBw8FQAx1HWgH4=.pem","location":"security-state-staging/intermediates/0741c886-1069-4fed-ba52-8aa03fd43e8f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/KV5PqHI+A+AHDl7BRjU7Yfi8xL4XtBw8FQAx1HWgH4=","crlite_enrolled":false,"id":"9d095dee-9b79-4c70-bbe1-b0414439ac0d","last_modified":1562024616665},{"schema":1562024612891,"derHash":"CBmY09n35M2dpqQpRwv11EKAMlJE+g4B7l+XLKGfSFI=","subject":"CN=D-TRUST CA 2-1 2015,O=D-Trust GmbH,L=Berlin,C=DE","subjectDN":"MFMxCzAJBgNVBAYTAkRFMQ8wDQYDVQQHE
wZCZXJsaW4xFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEcMBoGA1UEAxMTRC1UUlVTVCBDQSAyLTEgMjAxNQ==","whitelist":false,"attachment":{"hash":"3ee88758fbc42936cdbaed638d306033285f883f6fc602279794d4d88452d2fd","size":2064,"filename":"tBmQRPuFevsHIbhhN0kSgAJhEeKQhFq-DxUdV4m8qjA=.pem","location":"security-state-staging/intermediates/ec9f953f-facc-41f4-b5d0-2c6a1e31915a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tBmQRPuFevsHIbhhN0kSgAJhEeKQhFq+DxUdV4m8qjA=","crlite_enrolled":false,"id":"eaf29e12-56d5-477b-8328-1ce42f6733c7","last_modified":1562024613656},{"schema":1562024612131,"derHash":"QuDAWgD8Lkc9jQdu+0SnAXzv+/YEBisWrLZE7q4e//w=","subject":"CN=GoGetSSL RSA Client CA,O=GoGetSSL,L=Riga,C=LV","subjectDN":"MFAxCzAJBgNVBAYTAkxWMQ0wCwYDVQQHEwRSaWdhMREwDwYDVQQKEwhHb0dldFNTTDEfMB0GA1UEAxMWR29HZXRTU0wgUlNBIENsaWVudCBDQQ==","whitelist":false,"attachment":{"hash":"2beb77fd6eea7febde47fc783ed0bf34a16601fd477256a11c28da821d02c17e","size":2077,"filename":"AZIBKLEh9RhLmf8irgJ9nlzVJAU1ySO6mTPIPOHqRuY=.p
em","location":"security-state-staging/intermediates/55adcf08-23d6-4397-bed3-bd2a8d244e6f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AZIBKLEh9RhLmf8irgJ9nlzVJAU1ySO6mTPIPOHqRuY=","crlite_enrolled":false,"id":"d2998b45-cbc9-462d-b3c6-e56dda5c943b","last_modified":1562024612884},{"schema":1562024001225,"derHash":"mQI8Yjbaexn/sUgzuCDZIGOTi4/OE2kMY8TAS2V/qy0=","subject":"SERIALNUMBER=PT507015851,CN=DIGITALSIGN QUALIFIED CA,O=DigitalSign Certificadora Digital,L=Guimaraes (see current address at www.digitalsign.pt),C=PT","subjectDN":"MIGyMRQwEgYDVQQFEwtQVDUwNzAxNTg1MTELMAkGA1UEBhMCUFQxPjA8BgNVBAcTNUd1aW1hcmFlcyAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuZGlnaXRhbHNpZ24ucHQpMSowKAYDVQQKEyFEaWdpdGFsU2lnbiBDZXJ0aWZpY2Fkb3JhIERpZ2l0YWwxITAfBgNVBAMTGERJR0lUQUxTSUdOIFFVQUxJRklFRCBDQQ==","whitelist":false,"attachment":{"hash":"b675985300d025f65fe9827dec53d33102a6f925454c266cf8c101e39ca1f3a1","size":3007,"filename":"XnyavelRFrecWitFpdKCH6tt4uvYXn4uWw85BpJFc8Q=.pem","location":"security-sta
te-staging/intermediates/c244d547-6237-434a-b7ea-3dfbab9f0c2d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XnyavelRFrecWitFpdKCH6tt4uvYXn4uWw85BpJFc8Q=","crlite_enrolled":false,"id":"3691181e-ad54-44dd-b4b5-442c1cea58d0","last_modified":1562024612123},{"schema":1562023998218,"derHash":"g/bwF8JTbXRUt7mEhnTzZAEpz1Vd0H2D02KhfIG3Ul8=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - AAPP,OU=Certificados Digitales para la Administracion Publica,O=Firmaprofesional SA,C=ES","subjectDN":"MIGkMQswCQYDVQQGEwJFUzEcMBoGA1UEChMTRmlybWFwcm9mZXNpb25hbCBTQTE+MDwGA1UECxM1Q2VydGlmaWNhZG9zIERpZ2l0YWxlcyBwYXJhIGxhIEFkbWluaXN0cmFjaW9uIFB1YmxpY2ExEjAQBgNVBAUTCUE2MjYzNDA2ODEjMCEGA1UEAxMaQUMgRmlybWFwcm9mZXNpb25hbCAtIEFBUFA=","whitelist":false,"attachment":{"hash":"b98bc5a31792d37a50d2b260b8ed96c230e3529f2d97f627c3072c493daca57e","size":2381,"filename":"hLz0sJLVz-CYXLdvw4BHmbCD3Gt3C5gAep7ycaEAChw=.pem","location":"security-state-staging/intermediates/ac3a8a6e-7ab4-4f2b-9899-75eafdb945b1
.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hLz0sJLVz+CYXLdvw4BHmbCD3Gt3C5gAep7ycaEAChw=","crlite_enrolled":false,"id":"8f582949-0077-4497-9855-078b473ca565","last_modified":1562023998962},{"schema":1562023997464,"derHash":"t3h0inkrj5HwSwG6/DGjHtfvanEq/4C2YQ2are4get8=","subject":"CN=GlobalSign PersonalSign 2 CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTMwMQYDVQQDEypHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAyIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"55ef97771e1a5db3bed9a55930e18bfa8c515f42eed6a6898d2b9fe5be13bf50","size":1760,"filename":"moVGXeLu33Z1sQyVonZDRMiCGiG4C1YXJPZjuqaf0vE=.pem","location":"security-state-staging/intermediates/04ad1207-747d-4bbc-aec8-534ace9d0ce2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"moVGXeLu33Z1sQyVonZDRMiCGiG4C1YXJPZjuqaf0vE=","crlite_enrolled":true,"id":"b37f92b2-240f-4970-87fb-063ff1d871ed","last_modified":1562023998206},{"schema":1562023995947
,"derHash":"eILZ+qSai7NR8Pxu1oXvH8UVQdDOCkIiB00dnhb9wws=","subject":"CN=TrustCor External PKI (ECA1),OU=TrustCor Network,O=TrustCor Systems S. de R.L.,ST=Panama,C=PA","subjectDN":"MIGGMQswCQYDVQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xGTAXBgNVBAsMEFRydXN0Q29yIE5ldHdvcmsxJTAjBgNVBAMMHFRydXN0Q29yIEV4dGVybmFsIFBLSSAoRUNBMSk=","whitelist":false,"attachment":{"hash":"f8c6a9c5a539d228e33a4f7d992ac66e08c7b640cc56f5001fc6d112058b9557","size":1841,"filename":"r8bpcGxaP_Y16yqulxob7gpE3Q_rlYtNW1KdjRa2f1s=.pem","location":"security-state-staging/intermediates/2bf859ab-2a88-4ff7-af17-307ea95d877a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"r8bpcGxaP/Y16yqulxob7gpE3Q/rlYtNW1KdjRa2f1s=","crlite_enrolled":true,"id":"9284e1ce-82d9-41fe-905b-061a3bc6e3f9","last_modified":1562023996685},{"schema":1562023992214,"derHash":"bGa3bmjWx5+v5clOm30M91PHFcyFOH4RMjt5NfhhwYc=","subject":"CN=Symantec Class 3 EV SSL CA - G2,OU=Symantec Trust Network,O=Symantec C
orporation,C=US","subjectDN":"MHcxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEoMCYGA1UEAxMfU3ltYW50ZWMgQ2xhc3MgMyBFViBTU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"5a78e0580a5b4a406494a8640e18f7ea3ff821f8be3f9b0ee6a91001569a7da2","size":1853,"filename":"9vTUviB31wX_C0Yzx-HkTZxJmAcqoWvp_aPTgD-kyr8=.pem","location":"security-state-staging/intermediates/0135fea2-a052-473e-8cb6-2b987f16c6ef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9vTUviB31wX/C0Yzx+HkTZxJmAcqoWvp/aPTgD+kyr8=","crlite_enrolled":false,"id":"fbb73ec4-342b-4aa9-9df7-3ca9f646f690","last_modified":1562023992953},{"schema":1562023989959,"derHash":"H5NmbaV+HuQ7Gec2f3IlFR1EqWZxhDrWJiKI20qoA3c=","subject":"CN=FujiSSL SHA2 Business Secure Site CA,O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN":"MHcxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzETMBEGA1UEBxMKU2hpYnV5YS1rdTEUMBIGA1UEChMLTmlqaW1vIEsuSy4xLTArBgNVBAMTJEZ1amlTU0wgU0hBMiBCdXNpbmVzcyBTZWN
1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"482afe899c6f0d8f22e431adaae4099bcc9ca90c82b6bbf311ea220ad7be3fbc","size":2142,"filename":"AapugBjS_xPRoLxwSH9ER41rNad1oyfyVH7OwZcxPkY=.pem","location":"security-state-staging/intermediates/eb5a1c32-ead7-49e1-a96f-02cc6acc3d51.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AapugBjS/xPRoLxwSH9ER41rNad1oyfyVH7OwZcxPkY=","crlite_enrolled":true,"id":"b25cf132-6ed5-42dd-95be-9a1049d9494f","last_modified":1562023990717},{"schema":1562023989217,"derHash":"oNFSOgv2Y1UOuQgem93toSgU+VcLdpfZXfLqU9T/deM=","subject":"CN=RapidSSL ECC CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHTAbBgNVBAMTFFJhcGlkU1NMIEVDQyBDQSAyMDE4","whitelist":false,"attachment":{"hash":"ee5666095b0adbea4d0fc0e22f86c954e59f68c2eb5a347a7c6c3eaf8db0a25f","size":1410,"filename":"zJax49jXNWVm12ouj-dVmlW_r0Zw4NbjfsoCxV3-blM=.pem","location":"security-state-stagi
ng/intermediates/79d47d47-5626-42ac-99ee-cfbdac6397b1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zJax49jXNWVm12ouj+dVmlW/r0Zw4NbjfsoCxV3+blM=","crlite_enrolled":true,"id":"763411e1-8114-46f4-8c40-92fecd1f7cc4","last_modified":1562023989952},{"schema":1562023988478,"derHash":"83b25b9mD2vtt2jc0TA+rdSpby7XqXcX6Hj65rtZWfo=","subject":"CN=thawte EV Code Signing CA,O=thawte\\, Inc.,C=US","subjectDN":"MEgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xIjAgBgNVBAMTGXRoYXd0ZSBFViBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"9f1b61ed157098a541e167d69899a6e220062c8853f21e51e158779d17889570","size":1792,"filename":"iHlBWPUQuLqy-fke8htnHN-RscOd6sowyaclmFVQdC8=.pem","location":"security-state-staging/intermediates/e9705c73-c0fc-4403-9fbc-82eb39aac338.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iHlBWPUQuLqy+fke8htnHN+RscOd6sowyaclmFVQdC8=","crlite_enrolled":false,"id":"4cdf6681-6886-48ea-a0fa-e4c2dddbb9de","last_modified":1562023989209},{"schema":1562023
987725,"derHash":"Q2/tMIldbH8NbcCdtiGrO4jsYyHFbKb9SdeYEeKlmMo=","subject":"CN=TBS X509 CA business 2,OU=TBS INTERNET CA,O=TBS INTERNET,L=Caen,ST=Calvados,C=FR","subjectDN":"MIGBMQswCQYDVQQGEwJGUjERMA8GA1UECBMIQ2FsdmFkb3MxDTALBgNVBAcTBENhZW4xFTATBgNVBAoTDFRCUyBJTlRFUk5FVDEYMBYGA1UECxMPVEJTIElOVEVSTkVUIENBMR8wHQYDVQQDExZUQlMgWDUwOSBDQSBidXNpbmVzcyAy","whitelist":false,"attachment":{"hash":"10ac6fea486a331fa522b3ef2a2198adfa12ebeac4d525146320a9a4dc9c4ac0","size":2154,"filename":"SSBQnpJB4S4xChF_ht4nYT6NSI2ORtzmPESVfewnepc=.pem","location":"security-state-staging/intermediates/ec1f383e-adad-4dea-b81f-b702db7ee117.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SSBQnpJB4S4xChF/ht4nYT6NSI2ORtzmPESVfewnepc=","crlite_enrolled":true,"id":"9ddcb45e-54b3-4bf4-979b-25e170de22f3","last_modified":1562023988470},{"schema":1562023986956,"derHash":"ZjpOZY+790/BmwFV8vrLEsybaXBY9EfveRF4/puNBz0=","subject":"CN=Trustico RSA EV CA,OU=Controlled by COMODO exclusively for The Trustico Group Ltd,O=T
he Trustico Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MIG0MQswCQYDVQQGEwJHQjEPMA0GA1UECBMGTG9uZG9uMRAwDgYDVQQHEwdDcm95ZG9uMR8wHQYDVQQKExZUaGUgVHJ1c3RpY28gR3JvdXAgTHRkMUQwQgYDVQQLEztDb250cm9sbGVkIGJ5IENPTU9ETyBleGNsdXNpdmVseSBmb3IgVGhlIFRydXN0aWNvIEdyb3VwIEx0ZDEbMBkGA1UEAxMSVHJ1c3RpY28gUlNBIEVWIENB","whitelist":false,"attachment":{"hash":"eee3863ef1b6090102296c0bb3ae3aaa94c133aa41d948886a83f0d998f0ab01","size":2247,"filename":"KwL2fukG72afNxr2mfIc-zRSfV9FvVkQd67wLyLhGLY=.pem","location":"security-state-staging/intermediates/9063beaf-04d5-4fc4-9fe6-18bd29f50ff9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KwL2fukG72afNxr2mfIc+zRSfV9FvVkQd67wLyLhGLY=","crlite_enrolled":true,"id":"720c9041-549b-4132-9f95-9f7f40057140","last_modified":1562023987718},{"schema":1562023985472,"derHash":"Abnz0I4xqejhYA0RjCq/2FaHXqYIJwIEaYZbokLuvhw=","subject":"CN=KIT-CA,O=Karlsruhe Institute of Technology,L=Karlsruhe,ST=Baden-Wuerttemberg,C=DE","subjectDN":"MHsxCzAJBgNVBAYTAkRFMRswGQYDVQQID
BJCYWRlbi1XdWVydHRlbWJlcmcxEjAQBgNVBAcMCUthcmxzcnVoZTEqMCgGA1UECgwhS2FybHNydWhlIEluc3RpdHV0ZSBvZiBUZWNobm9sb2d5MQ8wDQYDVQQDDAZLSVQtQ0E=","whitelist":false,"attachment":{"hash":"57d86dbb18c2e8959844b08e15275c9f4e998e6bdecb15b2b7a77730e1c220a5","size":2008,"filename":"DvZiVD0jtzGADZxUQnbhnHsFjD8JVapxjCjP6aLBeoY=.pem","location":"security-state-staging/intermediates/5e91cd24-d2d6-4885-96ae-f41fd7f2fa91.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DvZiVD0jtzGADZxUQnbhnHsFjD8JVapxjCjP6aLBeoY=","crlite_enrolled":true,"id":"3131956b-39c5-40b6-93ef-b46c278f30de","last_modified":1562023986203},{"schema":1562023980906,"derHash":"y64nZ+6M1/tJtmK0Ivch20Ui62dM2/FstiCeRcxMuZ4=","subject":"CN=DigiCert Class 3 ECC CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGkRpZ2lDZXJ0IENsYXNzIDMgRUNDIENBIEcx","whitelist":false,"attachment":{"hash":"b9fa0a6f524e0d4ba96ac6f144f478c2eb0b8b3e
26130eff45513a544d53f51a","size":1122,"filename":"zEmSNnW6fJ5Iqjj7nFju1Oo-THW233SD1mcA_AYTsIQ=.pem","location":"security-state-staging/intermediates/c1f0a12d-cef9-4764-926e-63bc50c9dc83.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zEmSNnW6fJ5Iqjj7nFju1Oo+THW233SD1mcA/AYTsIQ=","crlite_enrolled":false,"id":"4cd2d258-9f4c-4594-8f6f-ffd1ffda2a7e","last_modified":1562023981651},{"schema":1562023979410,"derHash":"Vtpu/vHVBBNMcu7cOuRKp/oRuEiCDb+qhsqONdYO2wQ=","subject":"CN=FujiSSL Public Validation Authority - G3,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MGcxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMTEwLwYDVQQDEyhGdWppU1NMIFB1YmxpYyBWYWxpZGF0aW9uIEF1dGhvcml0eSAtIEcz","whitelist":false,"attachment":{"hash":"bbb89301ab3ea4fd79d1448f5c852927551328811eee186c33c831d20d5e0ae0","size":1674,"filename":"dzjq2willdWoAe9M1lz4AuLGmmFYgxAD2zYIXMhbzjo=.pem","location":"security-state-staging/intermediates/f2374571-0b80-42e0-8883-fda71075451e.pem","mimetype
":"application/x-pem-file"},"pubKeyHash":"dzjq2willdWoAe9M1lz4AuLGmmFYgxAD2zYIXMhbzjo=","crlite_enrolled":true,"id":"77918a2e-3fdb-4dcf-8e32-cbe1b39f74f4","last_modified":1562023980153},{"schema":1562023978668,"derHash":"g4aYGG3Qb45zbDnK+95k5C1Yq6Y2zirZ3/jRhV6peQo=","subject":"SERIALNUMBER=201901,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTAx","whitelist":false,"attachment":{"hash":"84159d3c932465ae7a84a6ccf35cde1f35966c191eeea2c094ac2d5ee1eac878","size":2333,"filename":"1CTr2EMZuVrTNlxyZgkW5swxcLs2mFupZgcP-OxRDww=.pem","location":"security-state-staging/intermediates/09b4f348-2689-46a4-8c8c-7f747f843a72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1CTr2EMZuVrTNlxyZgkW5swxcLs2mFupZgcP+OxRDww=","crlite_enrolled":false,"id":"dfa4b7da-e066-4c3e-baff-3786a59cfc48","last_modified":1562023979402},{"schema":1562023977920,"der
Hash":"BS8CbB5i5pekeRPgfOJN6DyIG/MAo8wkzAydRuyCR7s=","subject":"CN=TBS X509 CA pro hosting 2,OU=TBS INTERNET CA,O=TBS INTERNET,L=Caen,ST=Calvados,C=FR","subjectDN":"MIGEMQswCQYDVQQGEwJGUjERMA8GA1UECBMIQ2FsdmFkb3MxDTALBgNVBAcTBENhZW4xFTATBgNVBAoTDFRCUyBJTlRFUk5FVDEYMBYGA1UECxMPVEJTIElOVEVSTkVUIENBMSIwIAYDVQQDExlUQlMgWDUwOSBDQSBwcm8gaG9zdGluZyAy","whitelist":false,"attachment":{"hash":"993599686a8894c81c679246e879ef9412dfdb43d1397ad6267c2c8fed59290d","size":2162,"filename":"XVLXL83TODHCORI1qq2fNoRUOUkHLj4GCQZqTjJ6v8Q=.pem","location":"security-state-staging/intermediates/c78d6da1-ce01-48ea-a32a-17541a01fbfe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XVLXL83TODHCORI1qq2fNoRUOUkHLj4GCQZqTjJ6v8Q=","crlite_enrolled":true,"id":"8599ae99-290a-4ccb-9b99-261d95b6f43f","last_modified":1562023978660},{"schema":1562023977173,"derHash":"3Ist7lDdR4qxNcrCac6miFFVepEpq82Y31ITsj2/s80=","subject":"CN=QuoVadis Europe SSL CA G1,O=QuoVadis Trustlink BVBA,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAk
JFMSAwHgYDVQQKExdRdW9WYWRpcyBUcnVzdGxpbmsgQlZCQTEiMCAGA1UEAxMZUXVvVmFkaXMgRXVyb3BlIFNTTCBDQSBHMQ==","whitelist":false,"attachment":{"hash":"871e25e4b9ca85246a4b37ec76971395d8cc080cda844fd7e9419affa5171af1","size":2308,"filename":"k3XnEYQCK79AtL9GYnT_nyhsabas03V-bhRQYHQbpXU=.pem","location":"security-state-staging/intermediates/84a519a2-7323-495a-8f7c-1fb9364bc534.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k3XnEYQCK79AtL9GYnT/nyhsabas03V+bhRQYHQbpXU=","crlite_enrolled":true,"id":"3413fc51-a47b-4ef2-ba0b-c5c737f0aa91","last_modified":1562023977912},{"schema":1562023976406,"derHash":"XbHSLXBmhPBxnokC+4azRrP8nk0aH5IoOkiLw9GgSEs=","subject":"CN=KPN PKIoverheid EV CA,O=KPN B.V.,C=NL","subjectDN":"MEAxCzAJBgNVBAYTAk5MMREwDwYDVQQKDAhLUE4gQi5WLjEeMBwGA1UEAwwVS1BOIFBLSW92ZXJoZWlkIEVWIENB","whitelist":false,"attachment":{"hash":"3223a6f20d3bcb5d806c34644dc513be43f488b74f0a98a8bd87b2f973f3e5e1","size":2398,"filename":"I3seYPBcqTLCDRX732wxVtBaCAQOzNasd4KqO6a0mHk=.pem","location":"se
curity-state-staging/intermediates/e35603f8-d7e3-4a6f-9359-4ce261a49d75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"I3seYPBcqTLCDRX732wxVtBaCAQOzNasd4KqO6a0mHk=","crlite_enrolled":true,"id":"574422ec-9c83-49c3-af28-f0b84daaad6f","last_modified":1562023977164},{"schema":1562023974115,"derHash":"TY60k4Dscqyf3yH+HG2y6UkMdr6t0fe1KMPM0nLI/ig=","subject":"CN=GlobalSign TSA CA for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"ME0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSMwIQYDVQQDExpHbG9iYWxTaWduIFRTQSBDQSBmb3IgQUFUTA==","whitelist":false,"attachment":{"hash":"b66664c300d9d856dd6eef13fa063334f34d358466c922d8c47b40ad0c0b0e44","size":2024,"filename":"49lIjSAnHwOuVWuOR-RTuElzQhgXaCC3y9iz_nrQN2I=.pem","location":"security-state-staging/intermediates/a857ed41-1550-4d26-8db7-818835c03d40.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"49lIjSAnHwOuVWuOR+RTuElzQhgXaCC3y9iz/nrQN2I=","crlite_enrolled":false,"id":"e77711f5-130c-4fb9-ba65-f13cf7fe4e7a","last_modified":156
2023974847},{"schema":1562023971865,"derHash":"ziMyOQIIdCoaymUTl0xMnbJpHq9FaLUz5KF+1d2pc+Y=","subject":"CN=QuoVadis PKIoverheid Organisatie Server CA - G3,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MIGCMQswCQYDVQQGEwJOTDEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xFzAVBgNVBGEMDk5UUk5MLTMwMjM3NDU5MTgwNgYDVQQDDC9RdW9WYWRpcyBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBTZXJ2ZXIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"9525b72d3221be1b9347991e7b0d27ed63304244a37e568e02a881198dd0e180","size":2625,"filename":"0RDPmiZ5chLjLl0zHCAarPh4229A9O3S02zEXEMOZL4=.pem","location":"security-state-staging/intermediates/911f64d6-2761-4b8b-af66-93fe6683dfd1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0RDPmiZ5chLjLl0zHCAarPh4229A9O3S02zEXEMOZL4=","crlite_enrolled":true,"id":"1334321a-2837-4638-a78c-39d8abf02ec7","last_modified":1562023972605},{"schema":1562023971111,"derHash":"JbZjkN1CWGfsDeWKaxmPWYW+WKQ6RgXhoLjG81uS1+4=","subject":"CN=DigiCert Transition Issuing CA G3,OU=www.digicert.com,
O=DigiCert\\, Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSowKAYDVQQDEyFEaWdpQ2VydCBUcmFuc2l0aW9uIElzc3VpbmcgQ0EgRzM=","whitelist":false,"attachment":{"hash":"3db9cade05807e7d695419e46f030bf8947492fa115aa4f663b14352e0c42ac5","size":1666,"filename":"vWZ6uLUEEYECEjKFJEMsz_6EwAfw1zYwbvVxr4xS6Jg=.pem","location":"security-state-staging/intermediates/a9d455c2-351f-466e-86bd-080e8839a158.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vWZ6uLUEEYECEjKFJEMsz/6EwAfw1zYwbvVxr4xS6Jg=","crlite_enrolled":false,"id":"204c48d8-5783-4bf9-b862-a37638c87cd4","last_modified":1562023971857},{"schema":1562023970347,"derHash":"CSIy5d8b+Ly/7Rr02R81U/JWYYTgky5L6vcdFqWa1sg=","subject":"SERIALNUMBER=201729,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzI5","whitelist":false,"attachme
nt":{"hash":"07d0f80c6b777643e464217a9b873097b3f26ba8bc375ca90b6908c3d7bcc0df","size":2402,"filename":"NcK6oyN11YK2iroVd4M8_YvV2-gLKHeDevPGXmnoWlk=.pem","location":"security-state-staging/intermediates/58253a8a-2a3d-4341-ad75-d94d0251c68c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NcK6oyN11YK2iroVd4M8/YvV2+gLKHeDevPGXmnoWlk=","crlite_enrolled":false,"id":"77d3b8ac-c30b-4922-ab9c-caf13765cb69","last_modified":1562023971104},{"schema":1562023969605,"derHash":"kfSGCmh2DlX08hWEeOZ/lYvWN7fA+2CT6ekE36RqwzQ=","subject":"CN=Intertek Document Signing Authority,O=Intertek Group plc,C=GB","subjectDN":"MFgxCzAJBgNVBAYTAkdCMRswGQYDVQQKExJJbnRlcnRlayBHcm91cCBwbGMxLDAqBgNVBAMTI0ludGVydGVrIERvY3VtZW50IFNpZ25pbmcgQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"19af2bba948c39703d8d3595df8354c3acc80e9e5a764f484112a95dc145a505","size":1938,"filename":"YHxb7yqXsZo593tQi7lml-UbIYBZ-nRncrwmyt7z_jU=.pem","location":"security-state-staging/intermediates/3d7ae7b9-a9e4-46bd-99ae-9325d76b8bd
a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YHxb7yqXsZo593tQi7lml+UbIYBZ+nRncrwmyt7z/jU=","crlite_enrolled":false,"id":"aa97eece-537e-4d3c-8f70-b629fb852344","last_modified":1562023970339},{"schema":1562023968860,"derHash":"428WX/dznNkAolYnZ7Pq++Z6NMg8OoL0wh1fUcPtGR4=","subject":"CN=WoTrus DV Server CA,OU=Controlled by Sectigo exclusively for WoTrus CA Limited,O=WoTrus CA Limited,L=Shenzhen,ST=Guangdong,C=CN","subjectDN":"MIGwMQswCQYDVQQGEwJDTjESMBAGA1UECBMJR3Vhbmdkb25nMREwDwYDVQQHEwhTaGVuemhlbjEaMBgGA1UEChMRV29UcnVzIENBIExpbWl0ZWQxQDA+BgNVBAsTN0NvbnRyb2xsZWQgYnkgU2VjdGlnbyBleGNsdXNpdmVseSBmb3IgV29UcnVzIENBIExpbWl0ZWQxHDAaBgNVBAMTE1dvVHJ1cyBEViBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"ad4c5148267048017f28179ac20a4ea5bfdb82d16c59f8f2a51e279ab002cf1e","size":2203,"filename":"BhCtKhlg16YgpKtkvEyMb10W4rnVIagCz4ZLBicH1aQ=.pem","location":"security-state-staging/intermediates/1293d917-4168-4c3c-89cd-afa2186222ca.pem","mimetype":"application/x-pem-file"},"pubKey
Hash":"BhCtKhlg16YgpKtkvEyMb10W4rnVIagCz4ZLBicH1aQ=","crlite_enrolled":false,"id":"324811d1-4f0b-4ec9-8ed5-314d562ded2c","last_modified":1562023969598},{"schema":1562023965880,"derHash":"jLMkgs2vON1o4yKrm0Q053ORDzOy9W+AItUVYghGVBc=","subject":"CN=SSL.com EV Code Signing Intermediate CA ECC R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxNzA1BgNVBAMMLlNTTC5jb20gRVYgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBDQSBFQ0MgUjI=","whitelist":false,"attachment":{"hash":"188db821b5f6a15b8ce89543363312e52cf935460178da5aef5d0ab64099ddec","size":1276,"filename":"weV6wI2oYtFTmDbezTHq8MAYi-4aJnVykEP6-ixWceA=.pem","location":"security-state-staging/intermediates/170e0ef4-125c-4da5-85a5-f176eaed09fd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"weV6wI2oYtFTmDbezTHq8MAYi+4aJnVykEP6+ixWceA=","crlite_enrolled":false,"id":"0163c88a-9ef4-4162-9ca4-17556a156a94","last_modified":1562023966614},{"schema":1562023
961331,"derHash":"EUdT6I0ADnWZYVqZB+Jrc7bYUTF/8rJ6yp24/FBWkqc=","subject":"CN=E-Tugra Organization Validated CA,OU=E-Tu\u011fra Sertifikasyon Merkezi,O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e.,L=Ankara,C=TR","subjectDN":"MIG1MQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMUAwPgYDVQQKDDdFLVR1xJ9yYSBFQkcgQmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXptZXRsZXJpIEEuxZ4uMScwJQYDVQQLDB5FLVR1xJ9yYSBTZXJ0aWZpa2FzeW9uIE1lcmtlemkxKjAoBgNVBAMMIUUtVHVncmEgT3JnYW5pemF0aW9uIFZhbGlkYXRlZCBDQQ==","whitelist":false,"attachment":{"hash":"c20540a909d14bde73c51dde53da2ff3fea4d75a0c875924065198ab7de00da3","size":2304,"filename":"2C9V2-VZ5v93wYg0HupOPel5wBqM8YEDtTLQWSkHjis=.pem","location":"security-state-staging/intermediates/375b6c2a-70ea-49da-8638-9e7de1fc7e9b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2C9V2+VZ5v93wYg0HupOPel5wBqM8YEDtTLQWSkHjis=","crlite_enrolled":true,"id":"14fdc6a9-ae04-401c-9371-d01b4bbb58b9","last_modified":1562023962077},{"schema":1562023959068,"derHash"
:"6DVm5vWZSBZ4wNmYkhach/d5FMYh/fHmWccIV3LUpIc=","subject":"CN=Aristotle University of Thessaloniki Central CA R5,O=Aristotle University of Thessaloniki,C=GR","subjectDN":"MHkxCzAJBgNVBAYTAkdSMS0wKwYDVQQKDCRBcmlzdG90bGUgVW5pdmVyc2l0eSBvZiBUaGVzc2Fsb25pa2kxOzA5BgNVBAMMMkFyaXN0b3RsZSBVbml2ZXJzaXR5IG9mIFRoZXNzYWxvbmlraSBDZW50cmFsIENBIFI1","whitelist":false,"attachment":{"hash":"f877b8c5582fb9b976cbb608c45d7c53f404146e9e3ee07dd3debe10f13b2c90","size":2186,"filename":"ZJk1YGaQpyFBeYVERrAwWxnil7BDdshNsfqH9K0pdvo=.pem","location":"security-state-staging/intermediates/161bd307-4be8-4e31-b933-2e65f5bcb068.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZJk1YGaQpyFBeYVERrAwWxnil7BDdshNsfqH9K0pdvo=","crlite_enrolled":true,"id":"7fd49ce7-75fa-47b3-85d9-7a6cb059c9f9","last_modified":1562023959799},{"schema":1562023958320,"derHash":"L9Qqlsgw/SxVKywnZg7ukwfYRwbem3XPOa51DrIhue4=","subject":"CN=COMODO ECC Code Signing CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"M
H0xCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMSMwIQYDVQQDExpDT01PRE8gRUNDIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"ad1f4bf9e94339cc0664891d79fb8cf7ded16cf12929ccc6122ce1a2c2ccddbc","size":1256,"filename":"jBwB7HG5X1XDblx25nsCjVULW3dw9vJXmqth06gcMAw=.pem","location":"security-state-staging/intermediates/2694c0d7-dac9-4e5f-a10a-2c02e92f7442.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jBwB7HG5X1XDblx25nsCjVULW3dw9vJXmqth06gcMAw=","crlite_enrolled":false,"id":"59606746-4b04-433d-be2b-fe782421a43c","last_modified":1562023959061},{"schema":1562023956056,"derHash":"j9p6iBNUb5p8sGXNMtNlDVtWorf5QrlJmutCqGo+nVY=","subject":"CN=Volusion\\, Inc. DV SSL CA,OU=Domain Validated SSL,O=Volusion\\, Inc.,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5Wb2x1c2lvbiwgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxITAfBgNVBAMTGFZvbHVzaW9uLCBJbmMuIERWIFNTTCBDQQ==","whitelist":false,"attachme
nt":{"hash":"6b16f64a748628562ece61ff4693d637b4798e23d8849bb6e47281bd75358aa8","size":1447,"filename":"5zFyfNsHCq6F08mNF-IWy_ZJ7qypkZPj-t1dA4DZi4E=.pem","location":"security-state-staging/intermediates/c96d8299-16b6-4c87-9985-df5013adb3e5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5zFyfNsHCq6F08mNF+IWy/ZJ7qypkZPj+t1dA4DZi4E=","crlite_enrolled":false,"id":"ae81bf57-add1-4988-8063-af83aaa1406d","last_modified":1562023956793},{"schema":1562023955312,"derHash":"6ppDUV4Tj/d4L8rNucfo4aYc/R0XCW7V3dH0ANArA/U=","subject":"CN=certSIGN SSL DV CA Class 3 G2,OU=certSIGN SSL DV CA Class 3 G2,O=certSIGN,C=RO","subjectDN":"MHAxCzAJBgNVBAYTAlJPMREwDwYDVQQKDAhjZXJ0U0lHTjEmMCQGA1UECwwdY2VydFNJR04gU1NMIERWIENBIENsYXNzIDMgRzIxJjAkBgNVBAMMHWNlcnRTSUdOIFNTTCBEViBDQSBDbGFzcyAzIEcy","whitelist":false,"attachment":{"hash":"27c0349500f0a3bb1a05e55a47d5c9fb8216d028bb4be566fb5acd95419f5850","size":1626,"filename":"FZ9KA10aaA0Pq9Q4xOxYK99jgxb3tQy47R4dIFgxFUo=.pem","location":"security-state-staging/
intermediates/24cf3b35-2f29-40e6-9bca-d871a307ae78.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FZ9KA10aaA0Pq9Q4xOxYK99jgxb3tQy47R4dIFgxFUo=","crlite_enrolled":true,"id":"d4028f7a-433e-4118-9af5-f556af86871c","last_modified":1562023956048},{"schema":1562023953811,"derHash":"ChpSIfON1Fg2eiDVJ9sYgAgqzO72moVG+2fTAlP5CCQ=","subject":"CN=Atos TrustedRoot CodeSigning-CA 2013,O=Atos,C=DE","subjectDN":"MEsxLTArBgNVBAMMJEF0b3MgVHJ1c3RlZFJvb3QgQ29kZVNpZ25pbmctQ0EgMjAxMzENMAsGA1UECgwEQXRvczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"1fe6385ba0486b50631ee6ded9d813fe00c7b69915bb5ff98811bac7db2a494a","size":1565,"filename":"pxAruQtiJ4aLD27HqNd4qfvv07MUns2jaoeSYYi6OrQ=.pem","location":"security-state-staging/intermediates/54d610af-b3dc-447e-b948-7032624747a7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pxAruQtiJ4aLD27HqNd4qfvv07MUns2jaoeSYYi6OrQ=","crlite_enrolled":true,"id":"d043bdbb-43b3-4701-b169-93da04b081aa","last_modified":1562023954561},{"schema":156202
3952325,"derHash":"g8k180xQt2ZUCUBK/l36B63LXHtSsr7wrG6ZPABUXXY=","subject":"CN=Symantec Class 3 Registration Authority Intermediate CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGPMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxQDA+BgNVBAMTN1N5bWFudGVjIENsYXNzIDMgUmVnaXN0cmF0aW9uIEF1dGhvcml0eSBJbnRlcm1lZGlhdGUgQ0E=","whitelist":false,"attachment":{"hash":"0a89ba17c46d9d5fd2bd15423a6b0a3bb0763fbd740bf73f58873f2a18d9d1cf","size":2194,"filename":"vO3_XaIzmqGtcOO2LQL_yHzKa4ueBDChpnLbfwpiu8c=.pem","location":"security-state-staging/intermediates/359077c3-cc8f-44fc-bdbe-4b64c1d935e9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vO3/XaIzmqGtcOO2LQL/yHzKa4ueBDChpnLbfwpiu8c=","crlite_enrolled":false,"id":"02300412-fd6e-43bc-9cbd-ebe9ef836aa7","last_modified":1562023953055},{"schema":1562023951552,"derHash":"SMShxTleK0mdLj6+Ju76kdEc813V+hSTfu5egHov9Ic=","subject":"CN=TrustAsia RSA CA G8,OU=Domain Vali
dated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEcMBoGA1UEAxMTVHJ1c3RBc2lhIFJTQSBDQSBHOA==","whitelist":false,"attachment":{"hash":"ece1d5f1cba9be7739a5e4813740471d2c9732eb9a89dfa2e75b6222568df132","size":1695,"filename":"9SkVUsat-0_UDRvolgMzKIdw6JFpvrT-hOa-1EbArt8=.pem","location":"security-state-staging/intermediates/0a0070ca-9c1d-47fe-b759-75e6dfa7238e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9SkVUsat+0/UDRvolgMzKIdw6JFpvrT+hOa+1EbArt8=","crlite_enrolled":false,"id":"afe0b493-5e68-46df-9fdb-0eb4f37545a6","last_modified":1562023952317},{"schema":1562023950036,"derHash":"clY8yYraLF0hJlQqzJCBVK6x+db36DpVwJdEx9et3bo=","subject":"CN=RVBD Certificate Issuer,O=Riverbed Technology\\, Inc.,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlSaXZlcmJlZCBUZWNobm9sb2d5LCBJbmMuMSAwHgYDVQQDExdSVkJEIENlcnRpZmljYXRlIElzc3Vlcg==","whitelist":false,"attac
hment":{"hash":"071b981d1ae8525753515a159884613e388dc310fd76b561f152df246b6c732d","size":1829,"filename":"L2Gt7r61eOKqKfbZ0LwGLCzvrPMMGMdsveQQC5X4gOQ=.pem","location":"security-state-staging/intermediates/3ab21025-6c92-4a25-9b0e-4d9d46ea3cda.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"L2Gt7r61eOKqKfbZ0LwGLCzvrPMMGMdsveQQC5X4gOQ=","crlite_enrolled":false,"id":"666ea0f5-3d53-451c-908f-bbd0a6c22b1c","last_modified":1562023950800},{"schema":1562023949273,"derHash":"v0ZV8WqjONfH/yvclJpSS9R5e4s8g0HGCMn2XLHLgXc=","subject":"CN=Axesson Direct CA,OU=www.axesson.com,O=Axesson Inc.,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxBeGVzc29uIEluYy4xGDAWBgNVBAsTD3d3dy5heGVzc29uLmNvbTEaMBgGA1UEAxMRQXhlc3NvbiBEaXJlY3QgQ0E=","whitelist":false,"attachment":{"hash":"e00a1132c4bf94763c577e4704af4bd328ddb8ee906a302c2ff86110798085ff","size":2146,"filename":"x2wj42-CVwbXi4SeWBzRyyv7rEjRu1AKF3yyj6_VNrM=.pem","location":"security-state-staging/intermediates/4eb92e47-69fe-4c31-b0c5-8f8304767
c3f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x2wj42+CVwbXi4SeWBzRyyv7rEjRu1AKF3yyj6/VNrM=","crlite_enrolled":false,"id":"01d796b9-a372-4e2b-b2c0-678b11ec5dc0","last_modified":1562023950010},{"schema":1562023947759,"derHash":"wj0BuOlYVhPiYOyOpIW/+PWYcpjV/ALAcGTFRGIj+cc=","subject":"CN=Fuji Xerox Xnet CA - C,O=Fuji Xerox,C=JP","subjectDN":"MEMxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MR8wHQYDVQQDExZGdWppIFhlcm94IFhuZXQgQ0EgLSBD","whitelist":false,"attachment":{"hash":"3288f4c254a9b840d254a43033b88864319168b9ff573c3fa182d9cf4867edf6","size":1597,"filename":"Rctcx_fiaRRDpUcitk3vPz1ZUD7o5sV-LHA0YdyXVl4=.pem","location":"security-state-staging/intermediates/e5f2e418-ce6e-4298-b8e8-6373e43518f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Rctcx/fiaRRDpUcitk3vPz1ZUD7o5sV+LHA0YdyXVl4=","crlite_enrolled":false,"id":"08956575-33ad-4922-a433-8c4193d67244","last_modified":1562023948487},{"schema":1562023947011,"derHash":"ATkyRl7k/CRI0Mmu7qBJ3pBjr153PopQGrYm8JV+E0U=",
"subject":"CN=HARICA Code Signing ECC SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGPMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEpMCcGA1UEAwwgSEFSSUNBIENvZGUgU2lnbmluZyBFQ0MgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"b6cc45afa6490d756cabf21fa29ea89943fa6d3af2dce38e2cc35b97dde4cc34","size":1370,"filename":"outUmoUrqbkdis1hc4ahnCRx1jVCZxK-HiBp0_inK-8=.pem","location":"security-state-staging/intermediates/bfbea10f-5ad5-49e0-94d8-61a172b54ab2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"outUmoUrqbkdis1hc4ahnCRx1jVCZxK+HiBp0/inK+8=","crlite_enrolled":false,"id":"46837ec3-9bf7-4f67-9c60-6fef82636bf0","last_modified":1562023947751},{"schema":1562023946273,"derHash":"0tfUvuj/G33rpCd0AIHAf3sYai8poSNg1T+MINRVU40=","subject":"CN=TrustAsia RSA OV SSL Server CA,O=TrustAsia Technologies\\, Inc.,ST=Shanghai,C=CN","subjectDN":"MHAxC
zAJBgNVBAYTAkNOMREwDwYDVQQIEwhTaGFuZ2hhaTElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEnMCUGA1UEAxMeVHJ1c3RBc2lhIFJTQSBPViBTU0wgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"cef0257132e6443d4fa6a6f012339e0c0a90ba4eb8ce5d8083038ca1f5461393","size":2133,"filename":"ZyqPojkZzOKu3M2n4NkoNEh6f1YBTiJm2DtfHJroAWA=.pem","location":"security-state-staging/intermediates/f5b72560-0bb5-40bd-b68b-381a9e82b9e3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZyqPojkZzOKu3M2n4NkoNEh6f1YBTiJm2DtfHJroAWA=","crlite_enrolled":false,"id":"e944087f-76e7-41f9-a1bb-8ef5a2cd787a","last_modified":1562023947003},{"schema":1562023944727,"derHash":"ODDbjqFSC2zfV+HgCl8Sl74R2eZDDINgcXYhL/hdLbg=","subject":"CN=TrustCor Enhanced Secure Site (CA2),OU=TrustCor Network,O=TrustCor Systems S. de R.L.,ST=Panama,C=PA","subjectDN":"MIGNMQswCQYDVQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xGTAXBgNVBAsMEFRydXN0Q29yIE5ldHdvcmsxLDAqBgNVBAMMI1RydXN0Q29yIEVuaGFuY2VkIFN
lY3VyZSBTaXRlIChDQTIp","whitelist":false,"attachment":{"hash":"26631969fe5fbc543132a914eb2829ace13e9b418495495a837a47d8936c69b6","size":2564,"filename":"gTvKBlqs6VknFEiItiUhp5K_Oy0UnzZd7vVB6Ko3ZeE=.pem","location":"security-state-staging/intermediates/e49aa502-2469-4f4f-b00b-3d32c9f282e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gTvKBlqs6VknFEiItiUhp5K/Oy0UnzZd7vVB6Ko3ZeE=","crlite_enrolled":true,"id":"7f04f0ef-3fdc-4bfa-9cc5-c76e75f35add","last_modified":1562023945471},{"schema":1562023943248,"derHash":"Cd5/pznuR8BikYRfLg6Knhx8wpAK01TPFnMW4COGvZs=","subject":"CN=Cerner Corporation Direct Intermediate CA,OU=Cerner Direct,O=Cerner Corporation,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJDZXJuZXIgQ29ycG9yYXRpb24xFjAUBgNVBAsTDUNlcm5lciBEaXJlY3QxMjAwBgNVBAMTKUNlcm5lciBDb3Jwb3JhdGlvbiBEaXJlY3QgSW50ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{"hash":"329d75edeca644875431ecdfbb5af45d15a5d4adf45ec91ae5b365a31878c6fc","size":2215,"filename":"tmPespZP4I0UhQJaBGkHjo
K6goz4XFag5dWMseOeDQk=.pem","location":"security-state-staging/intermediates/6fceb1fd-4fdf-4c6b-a721-8f40ce85ab00.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tmPespZP4I0UhQJaBGkHjoK6goz4XFag5dWMseOeDQk=","crlite_enrolled":false,"id":"8e67b7d0-aea3-4831-96a3-f712c2d261f8","last_modified":1562023943981},{"schema":1562023941722,"derHash":"edd4kk/Qj3FTEuV+EHVmqBYeoeaGSb1F6okYSqYuox4=","subject":"CN=CertAssure RSA Client Personal ID CA,O=CertAssure Inc.,L=San Jose,ST=CA,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTERMA8GA1UEBxMIU2FuIEpvc2UxGDAWBgNVBAoTD0NlcnRBc3N1cmUgSW5jLjEtMCsGA1UEAxMkQ2VydEFzc3VyZSBSU0EgQ2xpZW50IFBlcnNvbmFsIElEIENB","whitelist":false,"attachment":{"hash":"87b59b94993c9ea590060a739644ad092c822a230b0bb1cfbd3eae497e596c3e","size":2125,"filename":"_vhenjJborDchqObw9eZLKuYlEq8pfTiwJCmJYlaDZI=.pem","location":"security-state-staging/intermediates/3e846fdd-caff-49a4-bd01-ee3bbf26d40a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/vhenjJborDc
hqObw9eZLKuYlEq8pfTiwJCmJYlaDZI=","crlite_enrolled":false,"id":"88958b83-c5cb-4066-84f3-102a6c5c4376","last_modified":1562023942475},{"schema":1562023940958,"derHash":"0o20NeMSEqO9zPh2IPZUS5mpwCMov5g+iC/QYnodEw8=","subject":"CN=UZI-register Medewerker op naam CA G3,O=CIBG,C=NL","subjectDN":"MGUxCzAJBgNVBAYTAk5MMQ0wCwYDVQQKDARDSUJHMRcwFQYDVQRhDA5OVFJOTC01MDAwMDUzNTEuMCwGA1UEAwwlVVpJLXJlZ2lzdGVyIE1lZGV3ZXJrZXIgb3AgbmFhbSBDQSBHMw==","whitelist":false,"attachment":{"hash":"a73ac4ff82e89f690fe1a921d0ad61b7d5629b27b30eea5b1c3ca475ef79e8ad","size":2560,"filename":"dCyrxAKUK8j5RoQJISk_QPQ9eWh1wvDZFjkJxvysY1M=.pem","location":"security-state-staging/intermediates/5c181d64-4ff2-4921-9364-d3cd368e9d22.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dCyrxAKUK8j5RoQJISk/QPQ9eWh1wvDZFjkJxvysY1M=","crlite_enrolled":false,"id":"8c74a361-cbc0-45c9-a37d-003f782ada17","last_modified":1562023941715},{"schema":1562023940219,"derHash":"jIi6UQUptkJjzLIac9grpXJaVcFEbyVHvOMB/NxDFNs=","subject":"CN=S
TRATO SSL - G5,OU=Domain Validated SSL,O=STRATO AG,C=DE","subjectDN":"MFoxCzAJBgNVBAYTAkRFMRIwEAYDVQQKEwlTVFJBVE8gQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRgwFgYDVQQDEw9TVFJBVE8gU1NMIC0gRzU=","whitelist":false,"attachment":{"hash":"c65817fb1a8da16ce1ca58346c65942c26cda3152c3eb9738efe79a6bda4f603","size":1756,"filename":"rO8kkFRlJlAkz68GeZxazuE37UKFGkLltXPH90hYNf4=.pem","location":"security-state-staging/intermediates/b2d5fa66-b400-4078-8efd-b61b8db30d33.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rO8kkFRlJlAkz68GeZxazuE37UKFGkLltXPH90hYNf4=","crlite_enrolled":false,"id":"5c8bab04-380f-453a-9c0a-b774af2e2428","last_modified":1562023940950},{"schema":1562023939469,"derHash":"0DSxh1G+4Qqq+UwvFDUNP2VOW5NNDdpZKzHlgYekiVI=","subject":"CN=emSign Device CA - C1,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFgxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEeMBwGA1UEAxMVZW1TaWduIERldmljZSBDQSAtIEMx","whitelist":false,"attachment":{"hash":"b85abdf5
3b134a2c1985785da850d5d78657dd1abcc923a85eeaf3cf7d536125","size":1540,"filename":"W7hjn_Iwl5OzSJsB1o-RIXEUKhNjgqs-85cgtFliENM=.pem","location":"security-state-staging/intermediates/7214b980-7213-4794-a274-6fe5036d46c7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"W7hjn/Iwl5OzSJsB1o+RIXEUKhNjgqs+85cgtFliENM=","crlite_enrolled":false,"id":"b06160c1-50d8-44e1-9e0d-33cf64458a5c","last_modified":1562023940210},{"schema":1562023937221,"derHash":"kFjVBl+PPppjqv5c6Jp2RHCw3vnc87nsfQWH+riP66A=","subject":"CN=QuoVadis QVRCA1G1 SSL ICA,O=QuoVadis Limited,C=BM","subjectDN":"MEwxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSIwIAYDVQQDDBlRdW9WYWRpcyBRVlJDQTFHMSBTU0wgSUNB","whitelist":false,"attachment":{"hash":"472285bb2b9a0e36f7a8b4405e5b35d448a9333872ca825e8bdcd79a53f8a41b","size":2101,"filename":"oB-l9fuJRX8mzgRrGC4yGRLXF1IEiTrPchG7uV0y8-M=.pem","location":"security-state-staging/intermediates/be28a1da-7adf-4d5a-8b3e-a96a20b3fd9b.pem","mimetype":"application/x-pem-file"},"pubK
eyHash":"oB+l9fuJRX8mzgRrGC4yGRLXF1IEiTrPchG7uV0y8+M=","crlite_enrolled":true,"id":"dadb9e8a-9a0b-4816-b5fc-66b000ef66cf","last_modified":1562023937947},{"schema":1562023936475,"derHash":"zJ+q2DwzUJQ9TkX6QWxPi8Vk96qUz0stK850IJ0EZMk=","subject":"CN=Mirth Direct Intermediate CA,OU=NextGen Share,O=Mirth,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMQ4wDAYDVQQKEwVNaXJ0aDEWMBQGA1UECxMNTmV4dEdlbiBTaGFyZTElMCMGA1UEAxMcTWlydGggRGlyZWN0IEludGVybWVkaWF0ZSBDQQ==","whitelist":false,"attachment":{"hash":"539031ec4b7416b127f8b73f71eba2b81bda87c227f140052c0721557ef4488c","size":2162,"filename":"P70tJuapBoh4Tl7BeWUQnpl9vnyfhOQmuZVfj1BLPIg=.pem","location":"security-state-staging/intermediates/76c6f679-67dc-4207-b000-4770f729fc56.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"P70tJuapBoh4Tl7BeWUQnpl9vnyfhOQmuZVfj1BLPIg=","crlite_enrolled":false,"id":"f4127efd-aef8-424a-a432-057bf7e21c0f","last_modified":1562023937213},{"schema":1562023935734,"derHash":"vtDxntRtlJANKp/NfG9mC2H/dYjYtxz48nnV+qMCHM8=
","subject":"CN=LuxTrust Global Qualified CA 3,O=LuxTrust S.A.,C=LU","subjectDN":"ME4xCzAJBgNVBAYTAkxVMRYwFAYDVQQKDA1MdXhUcnVzdCBTLkEuMScwJQYDVQQDDB5MdXhUcnVzdCBHbG9iYWwgUXVhbGlmaWVkIENBIDM=","whitelist":false,"attachment":{"hash":"93020ca6fa27c7dae09b0247af1d912eac8f119d08b590855a6f996090d750ba","size":2296,"filename":"x3DBF1xU5o--Dvt6U6adkDhvC8kWrK1IWtJJZ5jBw18=.pem","location":"security-state-staging/intermediates/09d46878-7261-4162-8336-5e064910a9d3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x3DBF1xU5o++Dvt6U6adkDhvC8kWrK1IWtJJZ5jBw18=","crlite_enrolled":true,"id":"738ef4a9-0311-42bb-beae-391d42ce751f","last_modified":1562023936464},{"schema":1562023934966,"derHash":"MBEZvOt6cufie4rYeV/JsursZXV/b/9PWroWGhomjoo=","subject":"CN=MilleniumSign Client Certificate CA ECC R3,O=MilleniumSign Limited,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGMMQswCQYDVQQGEwJNVTEYMBYGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTMwMQYDVQQ
DDCpNaWxsZW5pdW1TaWduIENsaWVudCBDZXJ0aWZpY2F0ZSBDQSBFQ0MgUjM=","whitelist":false,"attachment":{"hash":"2b567d87b851810362c037e0cadc2da1bfc7a9dd2b898019e90062e63bcdd632","size":1447,"filename":"83d1IVr2xTvH_PaNkbnTL4kci6miUaFtd7QLI-w-A1w=.pem","location":"security-state-staging/intermediates/c9394921-1e7c-4fa2-9f34-0493b374d212.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"83d1IVr2xTvH/PaNkbnTL4kci6miUaFtd7QLI+w+A1w=","crlite_enrolled":false,"id":"f4d37b0b-9a53-48a5-9e2a-1d0c4bd49c5e","last_modified":1562023935726},{"schema":1562023933480,"derHash":"uQ4Xq0uHeLEPnyjLqnZk3i7j1m4a/FdNFo7dJKEDOf8=","subject":"CN=TrustAsia DV SSL CA - G6,OU=Symantec Trust Network+OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MIGXMQswCQYDVQQGEwJDTjElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxITAfBgNVBAMTGFRydXN0QXNpYSBEViBTU0wgQ0EgLSBHNg==","whitelist":false,"attachment":{"ha
sh":"b6f89d614177e86c720fc91f770d85edcaff24350a854408afba9ab2b9d78c2f","size":1922,"filename":"MUj3ElSyDVu0X3TYBNY9f0axqYEtb7fmFTLy2Z8_l-Y=.pem","location":"security-state-staging/intermediates/bfe8252d-cbe0-4d5f-a88b-2792eb490b4d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MUj3ElSyDVu0X3TYBNY9f0axqYEtb7fmFTLy2Z8/l+Y=","crlite_enrolled":false,"id":"57d894ba-559b-4b7e-95cd-c42a4377eb6b","last_modified":1562023934224},{"schema":1562023931233,"derHash":"jD+rWYVBF760BGZwH4nMgiQZakUOsXwvT9iNNJfqJoc=","subject":"CN=Domain The Net Technologies Ltd CA for Code Signing R2,O=Domain The Net Technologies Ltd,C=IL","subjectDN":"MHgxCzAJBgNVBAYTAklMMSgwJgYDVQQKDB9Eb21haW4gVGhlIE5ldCBUZWNobm9sb2dpZXMgTHRkMT8wPQYDVQQDDDZEb21haW4gVGhlIE5ldCBUZWNobm9sb2dpZXMgTHRkIENBIGZvciBDb2RlIFNpZ25pbmcgUjI=","whitelist":false,"attachment":{"hash":"6cd1244808cf3297acbc1db3a6698bcaeff589f795304830aad10b260c06c428","size":2515,"filename":"tQ28VcCBKgtvuytE6MNlMdLWjjmOUZ1OHheIJqaPxx0=.pem","location":"secu
rity-state-staging/intermediates/9444ad32-c97b-4b63-a2ca-32dc448a17e1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tQ28VcCBKgtvuytE6MNlMdLWjjmOUZ1OHheIJqaPxx0=","crlite_enrolled":false,"id":"471e9599-0ffc-49b2-b37a-c79bfd133af1","last_modified":1562023931974},{"schema":1562023927515,"derHash":"/BbVMgO9kYfWnMmdLaVRB2tNyymBQNZ1H3oBKWbJn90=","subject":"CN=RapidSSL TLS ECC CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHzAdBgNVBAMTFlJhcGlkU1NMIFRMUyBFQ0MgQ0EgRzE=","whitelist":false,"attachment":{"hash":"5ab29482e9032bced4020a6ffd28ba40b857897ed628b88bc1554bc73e84f763","size":1199,"filename":"cBtUiO-mwdgMfNeEp_qKuEHswRn2nHp2FDUKVi_aTDw=.pem","location":"security-state-staging/intermediates/a7d241d1-10f7-486a-be9d-7d013030af11.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cBtUiO+mwdgMfNeEp/qKuEHswRn2nHp2FDUKVi/aTDw=","crlite_enrolled":false,"id":"f21e7595-bb74-4d43-876
5-075259ddef98","last_modified":1562023928253},{"schema":1562023926016,"derHash":"MZiW45VNUQ2jpLdTh+jIcLO8LDIo2FUJFuvpq9y3+SE=","subject":"CN=Oracle TLS RSA CA G1,OU=Organization Validated SSL,O=Oracle Corporation,C=US","subjectDN":"MG4xCzAJBgNVBAYTAlVTMRswGQYDVQQKExJPcmFjbGUgQ29ycG9yYXRpb24xIzAhBgNVBAsTGk9yZ2FuaXphdGlvbiBWYWxpZGF0ZWQgU1NMMR0wGwYDVQQDExRPcmFjbGUgVExTIFJTQSBDQSBHMQ==","whitelist":false,"attachment":{"hash":"450ac021db301c37c528daccbe40e94f74a28f7ae6f6ba039650b6aae3c3d13e","size":1678,"filename":"92UUNzSFrSZZ2mG20rm7eFX2MV_e3zCq8ck0jTA9zMw=.pem","location":"security-state-staging/intermediates/ab1e19a8-c972-4ca6-84ee-d4ca47a1a385.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"92UUNzSFrSZZ2mG20rm7eFX2MV/e3zCq8ck0jTA9zMw=","crlite_enrolled":false,"id":"c2b42df2-4fa8-48f7-8666-741d1b771779","last_modified":1562023926759},{"schema":1562023922211,"derHash":"hv/qQPNvppEyeHEP6rqbIG8yiNo/0cZSvFtYlaKxqHc=","subject":"CN=Oregon Health Authority Direct CA,O=Oregon Healt
h Authority,C=US","subjectDN":"MFsxCzAJBgNVBAYTAlVTMSAwHgYDVQQKExdPcmVnb24gSGVhbHRoIEF1dGhvcml0eTEqMCgGA1UEAxMhT3JlZ29uIEhlYWx0aCBBdXRob3JpdHkgRGlyZWN0IENB","whitelist":false,"attachment":{"hash":"c479fa9505d835f1638c400911242170ff9011865fabe90fab5ee2126ba98139","size":2170,"filename":"DNdYJRYEP9-HYWq0AW8zHl7xzEsYssaB1vCUHUipRQM=.pem","location":"security-state-staging/intermediates/5f655899-434c-4631-b137-de14b7b959a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DNdYJRYEP9+HYWq0AW8zHl7xzEsYssaB1vCUHUipRQM=","crlite_enrolled":false,"id":"35ca3b80-9261-4b67-9e34-b6b8216de1bc","last_modified":1562023922942},{"schema":1562023921473,"derHash":"OSWDVDuTsQ4FBt511pOZ/LvBRpyN45YGbHVgiLkiQdo=","subject":"CN=Apple Public Server RSA CA 1 - G1,O=Apple Inc.,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSowKAYDVQQDEyFBcHBsZSBQdWJsaWMgU2VydmVyIFJTQSBDQSAxIC0gRzE=","whitelist":false,"attachment":{"hash":"35b8ea0b8b208776616acd154fabbd1d3abade4a57f7a5e656ec072d1b474f
8a","size":1654,"filename":"9Vw5Oz-M36bapAlDoz-njgwaF-AaQLrKSmhcZZnxAcY=.pem","location":"security-state-staging/intermediates/76b79706-32a3-45c2-94cf-fd61a2eb2c5d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9Vw5Oz+M36bapAlDoz+njgwaF+AaQLrKSmhcZZnxAcY=","crlite_enrolled":false,"id":"14809122-3e00-45ce-b8d8-b63bb3ff0adf","last_modified":1562023922204},{"schema":1562023920721,"derHash":"9t/e1h/4jvELnm3PvODxYV4Fhmzrr81tSK7oATLHA0c=","subject":"CN=WoSign EV Code Signing Pro CA,O=WoSign CA Limited,C=CN","subjectDN":"MFExCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRlZDEmMCQGA1UEAxMdV29TaWduIEVWIENvZGUgU2lnbmluZyBQcm8gQ0E=","whitelist":false,"attachment":{"hash":"8536611d113671c5cb3dc75d5e0bf12a809bddbed4952eaf259b6465f9545d7d","size":1731,"filename":"5zUpCObCLFLZgrnR6TGCOtmLjBBbI4mpEj9CP409UWY=.pem","location":"security-state-staging/intermediates/f5f030c6-0035-459e-81c9-43944f596b65.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5zUpCObCLFLZgrnR6TGCOtmLjBBbI4mp
Ej9CP409UWY=","crlite_enrolled":false,"id":"e1447988-52dc-409e-b96d-b1fdba0c492c","last_modified":1562023921465},{"schema":1562023919958,"derHash":"XXTtYdCzEemBu88PQZo1+p+h7HD/Gut0LXO8/roGz/8=","subject":"CN=GeoTrust True Credentials CA 3,O=GeoTrust\\, Inc.,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5HZW9UcnVzdCwgSW5jLjEnMCUGA1UEAxMeR2VvVHJ1c3QgVHJ1ZSBDcmVkZW50aWFscyBDQSAz","whitelist":false,"attachment":{"hash":"b66df6fdfbd926e26674fc928d090142497594ed9f7d8d0cdbc90dff7e9ee618","size":1414,"filename":"o2dN2rQs101OU1N1FNLbW2U6i4ApoFhY-pI9wu1fcyw=.pem","location":"security-state-staging/intermediates/17b26a4b-cf0e-4d42-b68e-e4e72b00cb85.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"o2dN2rQs101OU1N1FNLbW2U6i4ApoFhY+pI9wu1fcyw=","crlite_enrolled":false,"id":"3bc639af-b93f-4769-a1de-d9721dba182a","last_modified":1562023920713},{"schema":1562023919206,"derHash":"zJ9yVE/2F8FM6+goMZSnDx6Jgc8WPVo/2NzP2EbV3Bo=","subject":"CN=NetLock OnlineSSL (Class Online) Tan\u00fas\u00e
dtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIGwMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE+MDwGA1UEAww1TmV0TG9jayBPbmxpbmVTU0wgKENsYXNzIE9ubGluZSkgVGFuw7pzw610dsOhbnlraWFkw7M=","whitelist":false,"attachment":{"hash":"72ae8f0a0087c7b13f79d2f02193b9bca142172f3053cad4b927af716cd0534a","size":2190,"filename":"He6eOdoX1CHCLhtg75AtdDdI18-x-VfWOYW5_LCt5kk=.pem","location":"security-state-staging/intermediates/6bab6451-8f63-49f3-a556-455c6b868bd1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"He6eOdoX1CHCLhtg75AtdDdI18+x+VfWOYW5/LCt5kk=","crlite_enrolled":true,"id":"ca8f61c9-fe67-45a0-8bc2-f0a8348e2cdb","last_modified":1562023919950},{"schema":1562023917707,"derHash":"2GoYtfdpUrc26Jots/D9+QcHEUYBFLagjWScpieTXJY=","subject":"CN=COMODO SHA-256 Client Authentication and Secure Email CA 2,O=
COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGdMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDFDMEEGA1UEAxM6Q09NT0RPIFNIQS0yNTYgQ2xpZW50IEF1dGhlbnRpY2F0aW9uIGFuZCBTZWN1cmUgRW1haWwgQ0EgMg==","whitelist":false,"attachment":{"hash":"047895ba02981d540016dd3f1b11f8959d568808c8392376e4f72812219bfd23","size":1719,"filename":"MV-oXptPSGVj-n7_WowdFiUjBX7WRZeHO7XdRoAt_Ro=.pem","location":"security-state-staging/intermediates/4b905e58-de32-42f6-9817-56b9d2cf0c30.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MV+oXptPSGVj+n7/WowdFiUjBX7WRZeHO7XdRoAt/Ro=","crlite_enrolled":false,"id":"ef2f4901-d741-470a-9b1b-3be0635e43d9","last_modified":1562023918464},{"schema":1562023916205,"derHash":"XJfg/R69bhNqcWJvhgq11lt5fn7TwcG/TmU4IjdaRkQ=","subject":"CN=HARICA S/MIME RSA SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGJMQswCQYDVQQGEwJHUjEPMA0GA1U
EBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEjMCEGA1UEAwwaSEFSSUNBIFMvTUlNRSBSU0EgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"d4e941ad40230b5c13c3996c883aa85ff7b6445f041b6bbd0143d744129cbd81","size":2564,"filename":"o79a142SfRPFvEK57ct8ocJ_tHYpTuDy-1a3i-te0aQ=.pem","location":"security-state-staging/intermediates/9c236c6d-f2eb-44ea-9409-6eae4d0e468d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"o79a142SfRPFvEK57ct8ocJ/tHYpTuDy+1a3i+te0aQ=","crlite_enrolled":false,"id":"ed331ef0-35ea-4e53-9633-07cd14412686","last_modified":1562023916945},{"schema":1562023914706,"derHash":"nvyRAnEJS4hr2aj8njlNvyrlFHeMs3NUQIWvgVyr/i0=","subject":"CN=Go Daddy Secure Extended Validation Code Signing CA - G2,O=GoDaddy Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIGOMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEVMBMGA1UEChMMR29EYWRkeSBJbmMuMUEwPwYDVQQDEzhHbyBEYWRkeSBTZWN1cmUgRXh0ZW5kZWQgVmFsaWRhd
GlvbiBDb2RlIFNpZ25pbmcgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"3517f89c468b80d775015979f32eb5377e091426aa65e2fe810ff308ae2351a7","size":1752,"filename":"UNzTXQQxA4weEEFceBlgOF0AeE9rV8ZoIXwFOgNm31I=.pem","location":"security-state-staging/intermediates/0f02d488-dc83-4cb0-9899-40a3ec673425.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UNzTXQQxA4weEEFceBlgOF0AeE9rV8ZoIXwFOgNm31I=","crlite_enrolled":false,"id":"1515b6bc-9090-44ac-bbf4-00e69844929a","last_modified":1562023915452},{"schema":1562023913211,"derHash":"9bzzqnotFhoYISBPUlM3xs+UnnNa09M25HZLJadsKlo=","subject":"CN=TrustSign RSA DV CA,O=Ziwit,L=Montpellier,ST=Herault,C=FR","subjectDN":"MGMxCzAJBgNVBAYTAkZSMRAwDgYDVQQIEwdIZXJhdWx0MRQwEgYDVQQHEwtNb250cGVsbGllcjEOMAwGA1UEChMFWml3aXQxHDAaBgNVBAMTE1RydXN0U2lnbiBSU0EgRFYgQ0E=","whitelist":false,"attachment":{"hash":"e7641150501f3bf2c280ba7a371a352089b2a8c465adf46df5630b5d4e2d3556","size":2113,"filename":"jEvvAqAI3_5hDMtldisHHkOwAFpxjTzbkoL_r-GTKJU=.pem","locatio
n":"security-state-staging/intermediates/00ed82e9-9d56-4db6-bd16-63bf411f4e53.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jEvvAqAI3/5hDMtldisHHkOwAFpxjTzbkoL/r+GTKJU=","crlite_enrolled":false,"id":"f14daf92-a223-40b9-8d99-37d837b4cc5c","last_modified":1562023913938},{"schema":1562023912477,"derHash":"ewvDVj1DMJEY9WCmyZoiHDU5mxApP3O+QaEqygM4B18=","subject":"CN=WoSign Code Signing CA,O=WoSign CA Limited,C=CN","subjectDN":"MEoxCzAJBgNVBAYTAkNOMRowGAYDVQQKDBFXb1NpZ24gQ0EgTGltaXRlZDEfMB0GA1UEAwwWV29TaWduIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"308987b783a08ed974b3fb4505d7eaaa4169b07441c7afec1b5e1c24e45bc2ef","size":1687,"filename":"FZS0F__J7FHzpNqv22fhTZZ1ns8livqEaiB9NftdioU=.pem","location":"security-state-staging/intermediates/67e1b6cb-99f1-41b3-853e-8dbea4618741.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FZS0F//J7FHzpNqv22fhTZZ1ns8livqEaiB9NftdioU=","crlite_enrolled":false,"id":"84a9e3a2-9105-45c4-b36d-4db6f5938b74","last_modified":156
2023913204},{"schema":1562023910995,"derHash":"Qz0QPeCZzD80FNAE+HD02lyef0Gki6isuvP5Hu/LDWA=","subject":"CN=USERTrust RSA Client Authentication and Secure Email CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGaMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazFAMD4GA1UEAxM3VVNFUlRydXN0IFJTQSBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIFNlY3VyZSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"8f747b0e65ff509fb91eb3e429e3530a8e8fb3bd2c74bbbcb8af53fada5d42d3","size":2170,"filename":"GxuU4F5l6xPkmDYqjOmR8nS3Nr2bV2oJ0CV0Jx-NWD4=.pem","location":"security-state-staging/intermediates/55af3597-6627-40c7-8e2b-4e91e9bff09a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GxuU4F5l6xPkmDYqjOmR8nS3Nr2bV2oJ0CV0Jx+NWD4=","crlite_enrolled":false,"id":"6c1153d9-3eb0-4419-a890-9743512226f3","last_modified":1562023911730},{"schema":1562023906470,"derHash":"l/QDkKXK4ljW+y/40COxmHdf9Haku+wdG6rBM05XtuE=","
subject":"SERIALNUMBER=201804,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODA0","whitelist":false,"attachment":{"hash":"abd99c8a6f8baad7db821237b5df895c2d6df0ba6af78ec83ff206eee062e281","size":2333,"filename":"jfS6UYK1YqR7g1U9V5MqubOAgnB-fPO0u-eN8q0c0yE=.pem","location":"security-state-staging/intermediates/109e6702-5f02-415c-bf5a-dc562a660188.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jfS6UYK1YqR7g1U9V5MqubOAgnB+fPO0u+eN8q0c0yE=","crlite_enrolled":false,"id":"ae00e3ac-d2d1-428e-852a-47f7e58676c3","last_modified":1562023907207},{"schema":1562023901967,"derHash":"zf8nr6Pa+fcGqnrFMCmDN+UgyLEKIvZRTgDiH9KHO3k=","subject":"CN=Ecclesiastical Academy of Vella SSL RSA SubCA R2,O=University Ecclesiastical Academy of Vella of Ioannina,L=Ioannina,C=GR","subjectDN":"MIGcMQswCQYDVQQGEwJHUjERMA8GA1UEBwwISW9hbm5pbmExPzA9BgNVBAoMNlVua
XZlcnNpdHkgRWNjbGVzaWFzdGljYWwgQWNhZGVteSBvZiBWZWxsYSBvZiBJb2FubmluYTE5MDcGA1UEAwwwRWNjbGVzaWFzdGljYWwgQWNhZGVteSBvZiBWZWxsYSBTU0wgUlNBIFN1YkNBIFIy","whitelist":false,"attachment":{"hash":"156b5156f2e0bc0a6ad31fb9b70bcedf0e5c8d29fe23f55ec3d22943f3bf990d","size":2995,"filename":"W-LP2L6GtiR5yYoztYP5ABaxz_faz3yBSub4W5M0wa4=.pem","location":"security-state-staging/intermediates/4236385b-60c6-4921-9be8-258e10ac5db3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"W+LP2L6GtiR5yYoztYP5ABaxz/faz3yBSub4W5M0wa4=","crlite_enrolled":false,"id":"13c7f02d-d089-4c63-8bad-0087f66298cf","last_modified":1562023902725},{"schema":1562023901225,"derHash":"ZObglZJvUkdRFsFk1qhemyEyKitIZ99+cqHGMvjHQUM=","subject":"CN=GeoTrust Class 3 ECC CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGkdlb1RydXN0IENsYXNzIDMgRUNDIENBIEcx","whitelist":false,"attachment":{"hash":"b1a1311c8d0ca5a0ab5a0d77e54
b396512314e1b99f25b6b72a10008ee7cd248","size":1122,"filename":"PidygEfLQ98SYkWF8QWGCdIeWhyfGPy00o2Y6-8L4Ug=.pem","location":"security-state-staging/intermediates/4bb37b11-2e9e-4e32-9e80-ce030b4910fc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PidygEfLQ98SYkWF8QWGCdIeWhyfGPy00o2Y6+8L4Ug=","crlite_enrolled":false,"id":"32550637-f3c2-475b-a788-7ef9bd526589","last_modified":1562023901959},{"schema":1562023900475,"derHash":"XMofL/OaSokko2BgNtiq3i4jwCTvyv89wsZnWf73dvs=","subject":"CN=Symantec Class 3 Organizational CA - G5,OU=Symantec Trust Network+OU=Insattningsgaranti Service SHA256 CA,O=Symantec Corporation,C=US","subjectDN":"MIGuMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxLTArBgNVBAsTJEluc2F0dG5pbmdzZ2FyYW50aSBTZXJ2aWNlIFNIQTI1NiBDQTEwMC4GA1UEAxMnU3ltYW50ZWMgQ2xhc3MgMyBPcmdhbml6YXRpb25hbCBDQSAtIEc1","whitelist":false,"attachment":{"hash":"ee77c69da5c00a9b0ba61a8658517885313b3b057bb2e374617159832a3c99dc","size":195
9,"filename":"cBpmTzPT3skhhtGMrQJfEnBDG3RXp4d1W_TeftxNX5o=.pem","location":"security-state-staging/intermediates/aa26f891-6509-4035-811b-356b1da5cab9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cBpmTzPT3skhhtGMrQJfEnBDG3RXp4d1W/TeftxNX5o=","crlite_enrolled":false,"id":"b801a445-982a-48d0-9791-5fec6b93b05b","last_modified":1562023901218},{"schema":1562023899695,"derHash":"O/fPS2GSO651p8JX9VBwAD7Pcn4c2mufy4VR/GSdb+s=","subject":"CN=GlobeSSL DV Certification Authority 2,O=Globe Hosting\\, Inc.,L=Wilmington,ST=DE,C=US","subjectDN":"MH0xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJERTETMBEGA1UEBxMKV2lsbWluZ3RvbjEcMBoGA1UEChMTR2xvYmUgSG9zdGluZywgSW5jLjEuMCwGA1UEAxMlR2xvYmVTU0wgRFYgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgMg==","whitelist":false,"attachment":{"hash":"c70f8758f89a5a215393c93d186b22f43da0b0f148d6226d96c339271c9d9ad6","size":2150,"filename":"lQ_FKBR5nsUo6XzQqIOg6_wickZMgocia2x_uINY_uw=.pem","location":"security-state-staging/intermediates/70120228-d3eb-46ce-8660-044d1c900414.pem","mimet
ype":"application/x-pem-file"},"pubKeyHash":"lQ/FKBR5nsUo6XzQqIOg6/wickZMgocia2x/uINY/uw=","crlite_enrolled":true,"id":"78baa603-1046-4055-bcea-dbb019a819d2","last_modified":1562023900467},{"schema":1562023898952,"derHash":"N/a9m+4MdPYI3UdLVqcvgYMHffwmYq95v+PU+rzwscQ=","subject":"CN=thawte EV SSL CA - G2,O=thawte\\, Inc.,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xHjAcBgNVBAMTFXRoYXd0ZSBFViBTU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"cdc8303c392107878e951abcd532ced1f3ec3f8ad0b3e91a30dacf150ddcf945","size":1683,"filename":"UsnhaVdJ4pzPc4oJoB-DvYML3sL25lZj8K42HWaTu_M=.pem","location":"security-state-staging/intermediates/c940d8a5-f84d-43f4-ba77-b676afec2504.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UsnhaVdJ4pzPc4oJoB+DvYML3sL25lZj8K42HWaTu/M=","crlite_enrolled":false,"id":"cc6703a8-cebe-49cc-bd39-4e1a7a3f620e","last_modified":1562023899687},{"schema":1562023898215,"derHash":"9r+Isqjc1P60AVmE7C8UJ8gBfRQM9B8i7mieDWcYAS8=","subject"
:"CN=WoTrus OV SSL CA,O=WoTrus CA Limited,C=CN","subjectDN":"MEQxCzAJBgNVBAYTAkNOMRowGAYDVQQKDBFXb1RydXMgQ0EgTGltaXRlZDEZMBcGA1UEAwwQV29UcnVzIE9WIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"ce4ba30cb7d9fab70ae32267594148013d61f09cd075d7e3e07f4792e46d517c","size":1691,"filename":"xxDKJ6WsrIZ1X_E1XI1IQgUNGc1SquSk5UkyOBHKq4I=.pem","location":"security-state-staging/intermediates/b8d761f5-e513-43c4-ba77-4138f539938e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xxDKJ6WsrIZ1X/E1XI1IQgUNGc1SquSk5UkyOBHKq4I=","crlite_enrolled":true,"id":"773ec055-4ebc-48c9-84a6-04ffd1e4b40d","last_modified":1562023898944},{"schema":1562023897472,"derHash":"WfjLfX6eE8t3j/YhmOvgVVG1FaWLu6LvGcM8dgyCORY=","subject":"CN=Symantec Class 3 Secure Server CA - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEvMC0GA1UEAxMmU3ltYW50ZWMgQ2xhc3MgMyBTZWN1cmUgU2VydmVyIENBIC0gRz
Q=","whitelist":false,"attachment":{"hash":"872450a43824a979c2e9576d217c927280ea4a1bfb4504ea3330e00aa649136e","size":1865,"filename":"9n0izTnSRF-W4W4JTq51avSXkWhQB8duS2bxVLfzXsY=.pem","location":"security-state-staging/intermediates/efda7551-5b7a-460b-a28b-26cdc37bca68.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9n0izTnSRF+W4W4JTq51avSXkWhQB8duS2bxVLfzXsY=","crlite_enrolled":true,"id":"696e4f33-7c3d-43d1-afc8-c045f8b1043c","last_modified":1562023898207},{"schema":1562023896701,"derHash":"9/veuCvpnUHNykGfyRhZ0+UobAdiBODpA9Z4uyE+2Js=","subject":"CN=Hostpoint TLS RSA CA,OU=Domain Validated SSL,O=Hostpoint AG,C=CH","subjectDN":"MGIxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxIb3N0cG9pbnQgQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMR0wGwYDVQQDExRIb3N0cG9pbnQgVExTIFJTQSBDQQ==","whitelist":false,"attachment":{"hash":"e06a612c20a2679cb1522f8e77265194fd2509fa105e19f74503f5f6e26acc68","size":1662,"filename":"Q5l5uNBWZnOf3EnCFMK3ciNhPZboa_YPtUtL6yZ_DvU=.pem","location":"security-state-staging/
intermediates/c78cb670-c087-4971-a213-9724dc2bf071.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Q5l5uNBWZnOf3EnCFMK3ciNhPZboa/YPtUtL6yZ/DvU=","crlite_enrolled":false,"id":"71101667-ae1e-451f-a1e6-bbf37b5d1c15","last_modified":1562023897463},{"schema":1562023895955,"derHash":"MM5AljESCgxaxUir+yMXiahHQRw4GKVumwb+sXI855c=","subject":"OU=\u653f\u5e9c\u6191\u8b49\u7ba1\u7406\u4e2d\u5fc3,O=\u884c\u653f\u9662,C=TW","subjectDN":"MEQxCzAJBgNVBAYTAlRXMRIwEAYDVQQKDAnooYzmlL/pmaIxITAfBgNVBAsMGOaUv+W6nOaGkeitieeuoeeQhuS4reW/gw==","whitelist":false,"attachment":{"hash":"136cce10aa7fe302678af5476af5c33cd4f4b62cc81c3a7400d01d1ad4402def","size":1845,"filename":"9SrSmq9hgCZP8N1M7kFgIC_97LEKOAceLOYuCEt3NPA=.pem","location":"security-state-staging/intermediates/7eaa26ca-66dc-4067-bf06-faea7b0778c2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9SrSmq9hgCZP8N1M7kFgIC/97LEKOAceLOYuCEt3NPA=","crlite_enrolled":false,"id":"bb082824-c5dc-4766-82b5-bf6bca3cd472","last_modified":15620238966
94},{"schema":1562023895217,"derHash":"fBQwkslrZFn1QwaU4m/C/TIE2z6l4joNhOFBBDHY86o=","subject":"CN=Sectigo ECC Code Signing CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MHwxCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGDAWBgNVBAoTD1NlY3RpZ28gTGltaXRlZDEkMCIGA1UEAxMbU2VjdGlnbyBFQ0MgQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"9a2de842160f7d190ed3b3cba30dbb63769ac15807d220080a3a2bd9bd1b666f","size":1288,"filename":"w6yFEnzGbuGwNdmUt6sCUgKBh2h32AoeHYoMDYzuK_k=.pem","location":"security-state-staging/intermediates/0747832d-f5b5-4a97-a9bc-25a37db463a6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"w6yFEnzGbuGwNdmUt6sCUgKBh2h32AoeHYoMDYzuK/k=","crlite_enrolled":false,"id":"db0253fc-b96f-4659-99b7-c03a04b8abb8","last_modified":1562023895947},{"schema":1562023892959,"derHash":"qFyEoIJaoBncCPqaAsTDnj/UGTR7LpLfBGM+5CbZAHc=","subject":"SERIALNUMBER=PT507015851,CN=DigitalSign TSA CA,O=DigitalSign Certificado
ra Digital,L=Guimaraes (see current address at www.digitalsign.pt),C=PT","subjectDN":"MIGsMRQwEgYDVQQFEwtQVDUwNzAxNTg1MTELMAkGA1UEBhMCUFQxPjA8BgNVBAcTNUd1aW1hcmFlcyAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuZGlnaXRhbHNpZ24ucHQpMSowKAYDVQQKEyFEaWdpdGFsU2lnbiBDZXJ0aWZpY2Fkb3JhIERpZ2l0YWwxGzAZBgNVBAMTEkRpZ2l0YWxTaWduIFRTQSBDQQ==","whitelist":false,"attachment":{"hash":"b810a0659616ef9705eed08822a6adc2f20b3b1253e9c32d6a67b5d6516f3a48","size":2983,"filename":"14wpPqI0rKKu2wfgxtYzi79V21Q-G8MMRfL27MMj9Iw=.pem","location":"security-state-staging/intermediates/be9846a9-01e0-44bc-8be5-f15f96a33766.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"14wpPqI0rKKu2wfgxtYzi79V21Q+G8MMRfL27MMj9Iw=","crlite_enrolled":false,"id":"aa36797b-9b27-45db-b8cc-8675b7b7187e","last_modified":1562023893696},{"schema":1562023890715,"derHash":"F81lBLJ1pmNO4AFu/+U7Jr/8yiicfe1KHI9DU80FsJw=","subject":"CN=SSL.com Client Certificate Enterprise Intermediate CA RSA R1,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"M
IGJMQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0b24xETAPBgNVBAoMCFNTTCBDb3JwMUUwQwYDVQQDDDxTU0wuY29tIENsaWVudCBDZXJ0aWZpY2F0ZSBFbnRlcnByaXNlIEludGVybWVkaWF0ZSBDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"6c7e49020c5475b9abc349acd61d6b88925429b682acd6e2e5abe999f3b60a83","size":2475,"filename":"h9sqkTNlvbHEc_SCe09NcuKt0lMiI1LoVjl_27pfS1w=.pem","location":"security-state-staging/intermediates/d4e928bc-793e-4205-bd4e-edef3135e988.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"h9sqkTNlvbHEc/SCe09NcuKt0lMiI1LoVjl/27pfS1w=","crlite_enrolled":false,"id":"64099b82-85e1-4bae-a95e-a86a258020a2","last_modified":1562023891466},{"schema":1562023889965,"derHash":"uoscVM+tNpROU5GJH2sP8P7BZTOXmEynDUHH1JJfloE=","subject":"CN=YourNet SSL for business2,O=FreeBit Co.\\,Ltd.,C=JP","subjectDN":"MEwxCzAJBgNVBAYTAkpQMRkwFwYDVQQKExBGcmVlQml0IENvLixMdGQuMSIwIAYDVQQDExlZb3VyTmV0IFNTTCBmb3IgYnVzaW5lc3My","whitelist":false,"attachment":{"hash":"9e6dd2fa6e9bc32016adf0bfa400528e72
306689a6ec1eca064f3dd27a85822f","size":1601,"filename":"oYqPK-xVUS7-RcUnQeCetmqmeRrQMdovxW4BWxh-Emk=.pem","location":"security-state-staging/intermediates/4bbf284e-2f36-40c1-bd92-f2b16be4d3ae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oYqPK+xVUS7+RcUnQeCetmqmeRrQMdovxW4BWxh+Emk=","crlite_enrolled":false,"id":"c47d3556-f86b-4ab6-9b3d-f9af03cd2bd9","last_modified":1562023890707},{"schema":1562023889223,"derHash":"Z3dGRFHJm4WxKtMj9z9xNsgr9NE+F16VCCWPwTdcc8c=","subject":"CN=Technological Educational Institution of Central Macedonia CA R3,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGeMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxSTBHBgNVBAMTQFRlY2hub2xvZ2ljYWwgRWR1Y2F0aW9uYWwgSW5zdGl0dXRpb24gb2YgQ2VudHJhbCBNYWNlZG9uaWEgQ0EgUjM=","whitelist":false,"attachment":{"hash":"36ffb3046dd658ff9ccba6ea9eb4df83e4add8be6a87212bf86afc91550e4239","size":2576,"filename":"I0fdRdZ1pQ-XM4d
JAEPngv0L1YgRqn0kogIzrBTN_tk=.pem","location":"security-state-staging/intermediates/5079f208-5c1b-44b7-a9f4-c02be180c2ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"I0fdRdZ1pQ+XM4dJAEPngv0L1YgRqn0kogIzrBTN/tk=","crlite_enrolled":true,"id":"539cd105-51fc-4e3e-a033-4aacc41b639c","last_modified":1562023889956},{"schema":1562023888479,"derHash":"P+i+OSoIaEuZ9JfmGMfd9aAqQom/nQjllQRZMb+6gU8=","subject":"CN=QuoVadis EV SSL ICA G1,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDExZRdW9WYWRpcyBFViBTU0wgSUNBIEcx","whitelist":false,"attachment":{"hash":"551cf1c482303e95516618b5d32f583a46517b1ec9aad2cf0021a782aa675281","size":1959,"filename":"2ZnCTNQBrKShr4c1olKfwNG53KiL6qoNcQi65YGRBn8=.pem","location":"security-state-staging/intermediates/c17b1b5f-620a-4306-968a-5c4260d25ab8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2ZnCTNQBrKShr4c1olKfwNG53KiL6qoNcQi65YGRBn8=","crlite_enrolled":true,"id":"0314ca5c-23af-4a2b-bc
71-b2e37c50ac54","last_modified":1562023889215},{"schema":1562023887737,"derHash":"RqKjoPEeA8A6QfPlF1/Vi+wQIvuB65NJMX4f26ZMw9Q=","subject":"CN=WISeKey CertifyID Advanced G1 CA,OU=Copyright (c) 2005 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGKMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEmMCQGA1UECxMdQ29weXJpZ2h0IChjKSAyMDA1IFdJU2VLZXkgU0ExFjAUBgNVBAsTDUludGVybmF0aW9uYWwxKTAnBgNVBAMTIFdJU2VLZXkgQ2VydGlmeUlEIEFkdmFuY2VkIEcxIENB","whitelist":false,"attachment":{"hash":"20233f4415718b169b238134dbe831bb4d946d37afb8c1b48c1adb10fe7ac94e","size":1792,"filename":"tv0EwdMH3jyu8FHFCeLpxbPmlyakqJMlF9pChboTB90=.pem","location":"security-state-staging/intermediates/09a7a43f-5d95-4f5a-8572-f43ac38325eb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tv0EwdMH3jyu8FHFCeLpxbPmlyakqJMlF9pChboTB90=","crlite_enrolled":true,"id":"8cf5872b-da2d-4b66-ba16-f07b1a526a9c","last_modified":1562023888471},{"schema":1562023887003,"derHash":"owdxJdafyc2Ztdqnz+gKDvKy6YTm1x7QeL8kJOmmz9U=","subj
ect":"CN=Hellenic Academic and Research Institutions AdminCA R6,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGUMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxPzA9BgNVBAMTNkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQWRtaW5DQSBSNg==","whitelist":false,"attachment":{"hash":"e97b90c29ca08c32a29e1dcb3016225c5d29421decefc81fdce9995717f8465d","size":2767,"filename":"D6zzR3_KFUAa348dTG5H2yMt4bp9Pii8OwW14yQxJEM=.pem","location":"security-state-staging/intermediates/aca214f4-7536-4d5a-85ee-9a4aa5638493.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D6zzR3/KFUAa348dTG5H2yMt4bp9Pii8OwW14yQxJEM=","crlite_enrolled":true,"id":"f2248a36-d454-482f-958b-a9dc15720d84","last_modified":1562023887729},{"schema":1562023884749,"derHash":"hxHuU550IT9fQS60oYqYw7WNpiC01D51sFQq/Dn8YDM=","subject":"CN=Apple IST CA 8 - G1,O=Apple Inc.,C=US","subjectDN":"MEAxHDAaBgNVBAMME0FwcGxlIElTVCBDQ
SA4IC0gRzExEzARBgNVBAoMCkFwcGxlIEluYy4xCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"2cd6b163c464a522511c510d8e9b798eae4d6dbe7d90880114a485a3a0e1f2a7","size":1142,"filename":"4k-OjCGF2i9eiNRXnoF8R79ur7yFBfD5YP1aDfRHOtM=.pem","location":"security-state-staging/intermediates/64c1ffef-d9d4-4408-8e40-276c0ba9cfd9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4k+OjCGF2i9eiNRXnoF8R79ur7yFBfD5YP1aDfRHOtM=","crlite_enrolled":true,"id":"f27a949a-d1d5-478e-9330-6841cb12ffa8","last_modified":1562023885487},{"schema":1562023883962,"derHash":"qbVpjFJjvv89YHINwYRMuV0W8G4EJovOO+TWAoKwHvk=","subject":"CN=KPN BV PKIoverheid Organisatie Persoon CA - G3,O=KPN B.V.,C=NL","subjectDN":"MHIxCzAJBgNVBAYTAk5MMREwDwYDVQQKDAhLUE4gQi5WLjEXMBUGA1UEYQwOTlRSTkwtMjcxMjQ3MDExNzA1BgNVBAMMLktQTiBCViBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBQZXJzb29uIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"2322b3b033011ddfda96b303a8450928d8781e9758dbd8686a93db915c70ebbc","size":2560,"filename":"8zXk1x8L1cy7ge
8UwVX_L83jPq3uLmMVnaXX38tAKyU=.pem","location":"security-state-staging/intermediates/b202526e-54f8-4a28-b669-5130627cb3d3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8zXk1x8L1cy7ge8UwVX/L83jPq3uLmMVnaXX38tAKyU=","crlite_enrolled":false,"id":"da1e6bb9-7ead-4982-b7d5-d844af089570","last_modified":1562023884741},{"schema":1562023882482,"derHash":"Wyroq/Xn5WO7w0yXoiVU6COT16zAnBdl5QSuCMFXtaw=","subject":"CN=GeoTrust EV SSL CA - G5,O=GeoTrust Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSAwHgYDVQQDExdHZW9UcnVzdCBFViBTU0wgQ0EgLSBHNQ==","whitelist":false,"attachment":{"hash":"00efa1f665aec6aaf8d6c9e15cc2e0d9bc291c7fff5e9a1cadfc599437b40520","size":1553,"filename":"LIGFMT2Zjq8CjsXF7zcvXgMX9FcE9iAsUb9iDx11IOI=.pem","location":"security-state-staging/intermediates/43bb4adf-b41c-4f49-bb65-d43dc9c92894.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LIGFMT2Zjq8CjsXF7zcvXgMX9FcE9iAsUb9iDx11IOI=","crlite_enrolled":false,"id":"dd7d6e8c-53bd-4231-9
3b3-7b92a36e951f","last_modified":1562023883212},{"schema":1562023881733,"derHash":"YcEGcIOuBE7x1knOWQu/CdnXOeAl2o0ZX3HPqtbrrmk=","subject":"CN=GlobalSign Timestamping CA - R3,OU=Timestamping CA,O=GlobalSign","subjectDN":"MFkxGDAWBgNVBAsTD1RpbWVzdGFtcGluZyBDQTETMBEGA1UEChMKR2xvYmFsU2lnbjEoMCYGA1UEAxMfR2xvYmFsU2lnbiBUaW1lc3RhbXBpbmcgQ0EgLSBSMw==","whitelist":false,"attachment":{"hash":"00f7896c16a21188e61de02a8277feaa52a4b1ce711c256892645e3a7a78fd28","size":1479,"filename":"6p1mBoam4p5pkVPKIbd2jwQWyu5AebEnipX-25eoiRg=.pem","location":"security-state-staging/intermediates/4ad73b23-357c-4ee7-a6d4-d7ae4fc9f8bc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6p1mBoam4p5pkVPKIbd2jwQWyu5AebEnipX+25eoiRg=","crlite_enrolled":false,"id":"ab3640fa-d9d9-4510-b69b-b6ff0623c0c9","last_modified":1562023882474},{"schema":1562023880998,"derHash":"PsOaz5ZsvBfYm/zy4HsVW5sEcWzeynPNhkwm8rL6mnA=","subject":"CN=FujiSSL OV Code Signing CA (SHA2),O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN"
:"MHQxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzETMBEGA1UEBxMKU2hpYnV5YS1rdTEUMBIGA1UEChMLTmlqaW1vIEsuSy4xKjAoBgNVBAMTIUZ1amlTU0wgT1YgQ29kZSBTaWduaW5nIENBIChTSEEyKQ==","whitelist":false,"attachment":{"hash":"c3ee0faf6bb6497407e15442afbf1069e1247899461c8c8cf1fa146a55f2d49e","size":2109,"filename":"H0gCzGcWIGHafa3ydC73l4EDYZ7SkdVJeqxNBsDIwiI=.pem","location":"security-state-staging/intermediates/4d2197a4-c1c3-40c8-883f-68f1ca50c471.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H0gCzGcWIGHafa3ydC73l4EDYZ7SkdVJeqxNBsDIwiI=","crlite_enrolled":false,"id":"b7cdd2ff-51a0-4519-a7a6-d23a1614880e","last_modified":1562023881725},{"schema":1562023880256,"derHash":"MEFZ/FBwfewu32ZazJeoH0Ojr8ok9K5anyEdl7VATGQ=","subject":"SERIALNUMBER=201402,CN=Government CA,C=BE","subjectDN":"MDYxCzAJBgNVBAYTAkJFMRYwFAYDVQQDEw1Hb3Zlcm5tZW50IENBMQ8wDQYDVQQFEwYyMDE0MDI=","whitelist":false,"attachment":{"hash":"4e4514cdc5a28e277b3f89386cc021171cf1d2b50f73a6c8b73f5f77ca2d5f4d","size":2097,"filename":"xSTwUEQSIf
xcbg4xCuj23Ya2b3QZup1o-rlGYv1hOiQ=.pem","location":"security-state-staging/intermediates/b8a1adb7-8ae3-4bbb-a046-664664ff0771.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xSTwUEQSIfxcbg4xCuj23Ya2b3QZup1o+rlGYv1hOiQ=","crlite_enrolled":false,"id":"843b14ea-2a93-4f34-b1f5-453e4b96af8a","last_modified":1562023880990},{"schema":1562023879494,"derHash":"dFCEYqXCpPJb3LVcslkxCgVrfWI92OVTUfO0Lx0ySGs=","subject":"CN=TrustSign RSA OV CA,O=Ziwit,L=Montpellier,ST=Herault,C=FR","subjectDN":"MGMxCzAJBgNVBAYTAkZSMRAwDgYDVQQIEwdIZXJhdWx0MRQwEgYDVQQHEwtNb250cGVsbGllcjEOMAwGA1UEChMFWml3aXQxHDAaBgNVBAMTE1RydXN0U2lnbiBSU0EgT1YgQ0E=","whitelist":false,"attachment":{"hash":"e4f8e4c2fc7a0eebc4bc552e536ebdd76c0b0553eb218e1bff323f7729969d80","size":2117,"filename":"chB881BfDWAiJ-J0Xbjx2_V5kxVs4F8Bof_rFzQm8kw=.pem","location":"security-state-staging/intermediates/3712897c-ea80-4f7b-a166-8193962ca35d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"chB881BfDWAiJ+J0Xbjx2/V5kxVs4F8Bof/rFzQm8kw
=","crlite_enrolled":true,"id":"23cc5cfc-37c0-40fb-a746-f53e5d03c584","last_modified":1562023880249},{"schema":1562023875682,"derHash":"sJNdwEtOYMDELe9+xXobHY+VjReYjnHMgKjPXmNbpbQ=","subject":"CN=D-TRUST SSL Class 3 CA 1 EV 2009,O=D-Trust GmbH,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKTAnBgNVBAMMIEQtVFJVU1QgU1NMIENsYXNzIDMgQ0EgMSBFViAyMDA5","whitelist":false,"attachment":{"hash":"a0be570032309c0aac96a0960dbae7ab544e4e0e1377b894c66b261ef8bb0ed5","size":1886,"filename":"lv5BNZ5aWd27ooolULDolFTwIaaWjHvG4yyH3rss4X8=.pem","location":"security-state-staging/intermediates/b08f7a1d-1d7f-4bb2-943d-d367a79b03d1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lv5BNZ5aWd27ooolULDolFTwIaaWjHvG4yyH3rss4X8=","crlite_enrolled":true,"id":"6a2eddcc-3e30-4ca4-9940-4edce439b163","last_modified":1562023876500},{"schema":1562023874934,"derHash":"cjnS93D6/zsc+L4qBewD7eqsBTtVT5DTaSEVW6gFGYE=","subject":"SERIALNUMBER=A82743287,CN=Camerfirma AAPP II - 2014,OU=AC CAMERFIR
MA,O=AC Camerfirma S.A.,L=Madrid (see current address at https://www.camerfirma.com/address),C=ES","subjectDN":"MIHHMQswCQYDVQQGEwJFUzEWMBQGA1UECwwNQUMgQ0FNRVJGSVJNQTEbMBkGA1UECgwSQUMgQ2FtZXJmaXJtYSBTLkEuMRIwEAYDVQQFEwlBODI3NDMyODcxSzBJBgNVBAcMQk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCBodHRwczovL3d3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTEiMCAGA1UEAwwZQ2FtZXJmaXJtYSBBQVBQIElJIC0gMjAxNA==","whitelist":false,"attachment":{"hash":"0a86bcc0922d8e5aedf06717254f6bb2250c686e3881dcb8d9e29b4a3af1d342","size":3015,"filename":"LvwNZPeX39Q9uSy8R8xO89Ml4v-I1qwWGFHanFIzBuE=.pem","location":"security-state-staging/intermediates/3ec75359-9645-4c2e-be4e-fa2cd9e3db8c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LvwNZPeX39Q9uSy8R8xO89Ml4v+I1qwWGFHanFIzBuE=","crlite_enrolled":true,"id":"25860e85-f410-4572-8308-d25aa0771aed","last_modified":1562023875674},{"schema":1562023873412,"derHash":"Xm0viPYX3IuAmu5xJEWkGzzeJq+HSiIancmOodxo49U=","subject":"CN=COMODO RSA Code Signing CA,O=COMODO CA Limited,L=S
alford,ST=Greater Manchester,C=GB","subjectDN":"MH0xCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMSMwIQYDVQQDExpDT01PRE8gUlNBIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"0689264a1352756f294e4a44cb5daff0f733aa53157d8380f3178406b9372a24","size":2097,"filename":"i8_I5MKP3MSfyB8JAq96_ACK-uEGN_MBobZRhsYHU98=.pem","location":"security-state-staging/intermediates/69c6bb50-ff62-440f-b50b-6465b81903ba.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i8/I5MKP3MSfyB8JAq96/ACK+uEGN/MBobZRhsYHU98=","crlite_enrolled":true,"id":"fe9571ec-d486-4292-aac0-966f5f1838e7","last_modified":1562023874180},{"schema":1562023872662,"derHash":"j3JA8WCTbx/UBr8CizW11gm2SzvQ4x4TzG3Zq3yhLm8=","subject":"CN=GLOBE SSL SECURE EMAIL CA,O=GLOBE HOSTING CERTIFICATION AUTHORITY,C=RO","subjectDN":"MGExCzAJBgNVBAYTAlJPMS4wLAYDVQQKEyVHTE9CRSBIT1NUSU5HIENFUlRJRklDQVRJT04gQVVUSE9SSVRZMSIwIAYDVQQDExlHTE9CRSBTU0wgU0VDVVJFIEVNQUlMI
ENB","whitelist":false,"attachment":{"hash":"1cf3286ce0babb75314968445c3959acec4c2fb01d7342d74be3d80efd77125a","size":1764,"filename":"_eRFHz8wxXnTOa1eOct617RUUVoCS6wHVpWc2LKjvVg=.pem","location":"security-state-staging/intermediates/6ea4ccfe-618c-4d73-a015-3e42e8920b65.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/eRFHz8wxXnTOa1eOct617RUUVoCS6wHVpWc2LKjvVg=","crlite_enrolled":false,"id":"da8a31fa-d3a3-48b0-bda4-897fb3c4ad78","last_modified":1562023873404},{"schema":1562023869671,"derHash":"+XXzzjruzi6EIWgumY669R3qIzk01r7QmAOW1OnTBfM=","subject":"SERIALNUMBER=201910,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTEw","whitelist":false,"attachment":{"hash":"0fbf6add7408151179d37d5abe61f87abcdd4c99bab406623bb0febcb40eedc5","size":2333,"filename":"jW7wLbKuIJZUC7-BzA_NfMVouvtE6dzFjDevOw1XW6E=.pem","location":"security-state-st
aging/intermediates/77c35205-5000-4e7d-b8c5-c0c77986d218.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jW7wLbKuIJZUC7+BzA/NfMVouvtE6dzFjDevOw1XW6E=","crlite_enrolled":false,"id":"2d54b6a4-823a-43d6-a133-dec0ecd5ae88","last_modified":1562023870410},{"schema":1562023868924,"derHash":"w/kIp5zdgMEwJctTI7ERrHkJnrgBIvmZ27IvGqFmLdw=","subject":"CN=JPRS Domain Validation Authority - G2,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"16d77651077ea51b94f72d3624452d07aaab57511a1fe8d9e10625a11e43a9d7","size":1646,"filename":"p7rWc93y9zFUE3P3-6IYKwtnR1GvtybOoTPGXdSMN6A=.pem","location":"security-state-staging/intermediates/eab9d35c-019e-4c89-b21c-0c8b8c620889.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"p7rWc93y9zFUE3P3+6IYKwtnR1GvtybOoTPGXdSMN6A=","crlite_enrolled":true,"id":"439235
e2-cd11-4053-986f-d05773a53816","last_modified":1562023869663},{"schema":1562023868186,"derHash":"gmxqphDvGQvi18A+ItAyQFsomATjMZ4jPEw3/78wXxo=","subject":"CN=Allina Health Connect HIE Intermediate CA,OU=Information Services,O=Allina Health System,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRBbGxpbmEgSGVhbHRoIFN5c3RlbTEdMBsGA1UECxMUSW5mb3JtYXRpb24gU2VydmljZXMxMjAwBgNVBAMTKUFsbGluYSBIZWFsdGggQ29ubmVjdCBISUUgSW50ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{"hash":"3fed557524a047ca7ae40592d462cee185e97808c1e5320c1eb52c5a7a4d8298","size":2227,"filename":"kuL4whKnDZSJ1xWg0SN5QgraxcT7tVGkaZ4bhp_RHE0=.pem","location":"security-state-staging/intermediates/e891c8b2-5e6d-48ee-83c8-adb90530ee92.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kuL4whKnDZSJ1xWg0SN5QgraxcT7tVGkaZ4bhp/RHE0=","crlite_enrolled":false,"id":"d006724b-20f0-4f42-a4d0-36155fc63363","last_modified":1562023868916},{"schema":1562023866678,"derHash":"9s9db/hQ0U2wgsyc98BWvGDjax5U8cyj4kvfOTlIl40=","subject"
:"CN=thawte Primary Issuing CA G3,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSUwIwYDVQQDExx0aGF3dGUgUHJpbWFyeSBJc3N1aW5nIENBIEcz","whitelist":false,"attachment":{"hash":"b1b90ae5480250915ff746025d104e268a490964caffb8c60f83a5cb64b9d82b","size":1674,"filename":"hMS-T3DAYkVPWmsj2FHZdA-NePI3o2weSSK33d653rE=.pem","location":"security-state-staging/intermediates/231cc96c-85ed-46e6-842c-512d94373031.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hMS+T3DAYkVPWmsj2FHZdA+NePI3o2weSSK33d653rE=","crlite_enrolled":false,"id":"1d7a0db8-9a29-4c6a-b445-a3a7ae5430b2","last_modified":1562023867410},{"schema":1562023865931,"derHash":"/Zi0DrlKrAl2IhefHjrN2s0/PJUnzWl03DYU0JrTeq4=","subject":"CN=Actalis Domain Validation Server CA G1,O=Actalis S.p.A./03358520967,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGQMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEjM
CEGA1UECgwaQWN0YWxpcyBTLnAuQS4vMDMzNTg1MjA5NjcxLzAtBgNVBAMMJkFjdGFsaXMgRG9tYWluIFZhbGlkYXRpb24gU2VydmVyIENBIEcx","whitelist":false,"attachment":{"hash":"6acbc0db9e14c20b7451ac6a4370d052bc7c3e5998ac0c9ffd0579f1e572ba26","size":2255,"filename":"BJJEqWcyIOaOIv8i-zwBwibnq29_3M0jCAjL4VG3bvU=.pem","location":"security-state-staging/intermediates/7dfd8c65-c838-4d5b-9e31-7514f9077c07.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BJJEqWcyIOaOIv8i+zwBwibnq29/3M0jCAjL4VG3bvU=","crlite_enrolled":true,"id":"8508b975-2be6-4467-9f9f-2771caa111e4","last_modified":1562023866670},{"schema":1562023865184,"derHash":"yW8kxFET/ZGuL55A4QZlO/oP+8+gfiCVJMhE58jaQUg=","subject":"CN=CA Disig R2I2 Certification Service,O=Disig a.s.,L=Bratislava,C=SK","subjectDN":"MGUxCzAJBgNVBAYTAlNLMRMwEQYDVQQHDApCcmF0aXNsYXZhMRMwEQYDVQQKDApEaXNpZyBhLnMuMSwwKgYDVQQDDCNDQSBEaXNpZyBSMkkyIENlcnRpZmljYXRpb24gU2VydmljZQ==","whitelist":false,"attachment":{"hash":"f15a1b6085ecf56bcc317ea1be8002f3c662d6a3a7e4bb6320daa95d1ef0
2dee","size":2142,"filename":"v1zylIDkrVcStoBb1ajeFz3xSjTmFzgYYMJDQsfaIxo=.pem","location":"security-state-staging/intermediates/74dc56b9-2278-47d0-9591-8771a0e9d98a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"v1zylIDkrVcStoBb1ajeFz3xSjTmFzgYYMJDQsfaIxo=","crlite_enrolled":true,"id":"bf754a3f-1f3e-4515-933a-fcb359cafde5","last_modified":1562023865923},{"schema":1562023864420,"derHash":"y2/O5BxV4kd03wK+Nd5tQY6U71gR99sTc6+ICc9wfyo=","subject":"CN=E-Tugra Domain Validated CA,OU=E-Tu\u011fra Sertifikasyon Merkezi,O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e.,L=Ankara,C=TR","subjectDN":"MIGvMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMUAwPgYDVQQKDDdFLVR1xJ9yYSBFQkcgQmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXptZXRsZXJpIEEuxZ4uMScwJQYDVQQLDB5FLVR1xJ9yYSBTZXJ0aWZpa2FzeW9uIE1lcmtlemkxJDAiBgNVBAMMG0UtVHVncmEgRG9tYWluIFZhbGlkYXRlZCBDQQ==","whitelist":false,"attachment":{"hash":"c6b2887b29d06c3a32442bacd3087e92f206a5fa698d64deded68c4d8bb5d347","size":2296,"filename":"
DReMCzHTvlRp8z0vjOXH2lx0lpHIz5iXick53RZbRT8=.pem","location":"security-state-staging/intermediates/570f1b75-429e-4c79-b0e9-d7653e227ce7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DReMCzHTvlRp8z0vjOXH2lx0lpHIz5iXick53RZbRT8=","crlite_enrolled":true,"id":"feefbefd-6161-49d5-84fd-5b09c850c80c","last_modified":1562023865176},{"schema":1562023862132,"derHash":"rw42PK5t9Inyl2ooTRLUwzyUsTX6d/ieiSmNdJHpmXQ=","subject":"CN=DigiCert Universal Transition Root,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBVbml2ZXJzYWwgVHJhbnNpdGlvbiBSb290","whitelist":false,"attachment":{"hash":"44f2ec36fe8de0e388d84737946813eb0731ca6601ec2a951ad5c73c0f6dc2e8","size":1325,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/8af928e7-9473-4306-ab1b-3e6f07091c8e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rF
C1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"1405f90f-5565-4eaf-b839-4cc432f5d0d6","last_modified":1562023862873},{"schema":1562023861362,"derHash":"xbZ5EGlYFS+D+1iG3cQfB4UZPvZ8aXW+PlCfF/KbeoY=","subject":"CN=GlobalSign R6 Admin CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIFI2IEFkbWluIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"d411527b2215bfc1772e8bbc2166bf5747830130b17f09875dd24cc7a2e36616","size":2003,"filename":"2TuBICswiXipsvQWl-U2oY732gn0rOk3bqUON3nbD5I=.pem","location":"security-state-staging/intermediates/77f7915f-d31c-40af-b0b8-7aed1e3c67b3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2TuBICswiXipsvQWl+U2oY732gn0rOk3bqUON3nbD5I=","crlite_enrolled":true,"id":"8056d838-0202-4784-ba86-3b2c1652b669","last_modified":1562023862124},{"schema":1562023860621,"derHash":"77Kj83Jz01iQR5GYJepTN+m5OKjBeLYcGMK0JwuWZaw=","subject":"CN=D
igiCert Federated ID L4 CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0IEZlZGVyYXRlZCBJRCBMNCBDQQ==","whitelist":false,"attachment":{"hash":"e33421e9de9bb46d59d4535e270f3a16d15114db462071faf04cdfb5ded34219","size":1922,"filename":"5fYPs_zqPfuLvwmwbyYHfEa_uzaWa2EbbczMDStZEYY=.pem","location":"security-state-staging/intermediates/bc53ef2a-bdb3-4134-a63e-f5e5443ce163.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5fYPs/zqPfuLvwmwbyYHfEa/uzaWa2EbbczMDStZEYY=","crlite_enrolled":false,"id":"2b3c12c4-e1b4-4036-aea5-c8c07ccc99d3","last_modified":1562023861354},{"schema":1562023858358,"derHash":"GDWw5ILqZVNvwBDkvBPAYPZWaBZfupfi9ULOlspt/vw=","subject":"CN=Entrust Certification Authority - L1F,OU=See www.entrust.net/legal-terms+OU=(c) 2016 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwg
SW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTYgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFG","whitelist":false,"attachment":{"hash":"b215df35bd16df20092886331099193a624ea14d00398b12325bb57279cf4181","size":1410,"filename":"45FtWowsHe863G4x3FzC8qT3R9tgrLIVwZGjN5hwd80=.pem","location":"security-state-staging/intermediates/60dd4560-425b-4a39-9729-7bc1fc60adbc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"45FtWowsHe863G4x3FzC8qT3R9tgrLIVwZGjN5hwd80=","crlite_enrolled":true,"id":"7cb091bb-e197-494b-8caa-a6f3725b7737","last_modified":1562023859119},{"schema":1562023856875,"derHash":"M3rFbzn7iHe58FJFVLdV0YNagH/8kFjfxt4bcH9pYSM=","subject":"CN=Certum Class I CA,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MHYxCzAJBgNVBAYTAlBMMSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGjAYBgN
VBAMTEUNlcnR1bSBDbGFzcyBJIENB","whitelist":false,"attachment":{"hash":"1c717a79efa6612fceeb4dd338a92b801131469bafdebec7a6c46a0ecbc22049","size":2414,"filename":"Wr7s1eee1m0JS_6tdr5Yu_rJOpqsjsb8IeNchmSjkL4=.pem","location":"security-state-staging/intermediates/475a2a7a-38fc-478b-ae6a-f0659a08775d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wr7s1eee1m0JS/6tdr5Yu/rJOpqsjsb8IeNchmSjkL4=","crlite_enrolled":false,"id":"b84bfc47-4590-4d6c-b85e-ceb5465f3c63","last_modified":1562023857605},{"schema":1562023856138,"derHash":"AJhxw6TGBzEeWukvAQlfm/dhALh5SrCppSEOZ5TIYHw=","subject":"CN=Trust Provider B.V. TLS RSA CA G1,OU=Domain Validated SSL,O=Trust Provider B.V.,C=NL","subjectDN":"MHYxCzAJBgNVBAYTAk5MMRwwGgYDVQQKExNUcnVzdCBQcm92aWRlciBCLlYuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEqMCgGA1UEAxMhVHJ1c3QgUHJvdmlkZXIgQi5WLiBUTFMgUlNBIENBIEcx","whitelist":false,"attachment":{"hash":"be93cbc768b2a781054d69b3d1b32596d09aabb573a067ff44e5770bc18fb99e","size":1687,"filename":"DZ2CNIcIqZj3a
rOg4dqY2nkxRPJTRypLcTMN_FbGZLM=.pem","location":"security-state-staging/intermediates/00957b9f-f181-49ab-a3e6-7197b2141488.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DZ2CNIcIqZj3arOg4dqY2nkxRPJTRypLcTMN/FbGZLM=","crlite_enrolled":true,"id":"478147bd-3418-4c7f-8860-2be1d4c12427","last_modified":1562023856867},{"schema":1562023855404,"derHash":"B0VB7N+I7Zku1a3j7N3vJ6JrobREgKGVwKja2uJSHY4=","subject":"CN=GeoTrust SSL CA - G3,O=GeoTrust Inc.,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQDExRHZW9UcnVzdCBTU0wgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"4e997aea59ed936c28e58cecab18f43ae0848c11ca0390f85e3cd97d9a16b9ee","size":1553,"filename":"PbNCVpVasMJxps3IqFfLTRKkVnRCLrTlZVc5kspqlkw=.pem","location":"security-state-staging/intermediates/3a8a386b-c548-4e8c-a1a3-cc450d46c6e2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PbNCVpVasMJxps3IqFfLTRKkVnRCLrTlZVc5kspqlkw=","crlite_enrolled":true,"id":"b3409488-e32c-4056-88d1-f4d8
9941e37e","last_modified":1562023856130},{"schema":1562023852415,"derHash":"/5EtVAP9psuxpyS+tgtK0bT5vllFJe4fFkiMA5840u4=","subject":"CN=BlackCert\\, Inc. RSA Client Certification Authority,O=BlackCert\\, Inc.,L=Denver,ST=CO,C=US","subjectDN":"MIGCMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPQmxhY2tDZXJ0LCBJbmMuMTswOQYDVQQDEzJCbGFja0NlcnQsIEluYy4gUlNBIENsaWVudCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"820b9d9225f295df2cec72638271e9e4972f857ab19ffd4040452777bda1e8dc","size":2146,"filename":"J0cNZ23ANHAptnJJaXt70Dv2laxN8JC5meZIFs6ch2Q=.pem","location":"security-state-staging/intermediates/decccfcf-7e23-48b9-afd0-c27621db52cd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"J0cNZ23ANHAptnJJaXt70Dv2laxN8JC5meZIFs6ch2Q=","crlite_enrolled":false,"id":"64a81e56-72d4-4533-aad1-0048e8806a7a","last_modified":1562023853161},{"schema":1562023851676,"derHash":"Xxg5DyFJApKglf/zgPLokn3TFZIjp2ET7eNXqisxHB8=","subject":"CN=Gehirn Man
aged Certification Authority - ECC EV,OU=Controlled by COMODO CA exclusively for Gehirn Inc.,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIHAMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMTwwOgYDVQQLEzNDb250cm9sbGVkIGJ5IENPTU9ETyBDQSBleGNsdXNpdmVseSBmb3IgR2VoaXJuIEluYy4xODA2BgNVBAMTL0dlaGlybiBNYW5hZ2VkIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRUNDIEVW","whitelist":false,"attachment":{"hash":"9430085f782a8e581ee60b50f4aee87fd9ca49475d6c5378b586ff578827bbc5","size":1435,"filename":"qSizb9i49llI7pUZp1-Y6gXcrABhDgM-8a1v9VWvTnY=.pem","location":"security-state-staging/intermediates/52c95b67-44ae-45fe-a516-574047902f4c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qSizb9i49llI7pUZp1+Y6gXcrABhDgM+8a1v9VWvTnY=","crlite_enrolled":false,"id":"2fece5dc-21db-4816-a010-1fbd706af66a","last_modified":1562023852406},{"schema":1562023850204,"derHash":"/yAcoSyHpvDLpkPpq7PJVMkVWt0xObLi6u0RS/n3XTE=","subject":"CN=COMODO RSA Domain Validat
ion Secure Server CA 2,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGSMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE4MDYGA1UEAxMvQ09NT0RPIFJTQSBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENBIDI=","whitelist":false,"attachment":{"hash":"c3af80c298bee7bb78b92a6907c2737f0f2499d7469ab1445b6ac2c3afca282e","size":2154,"filename":"EULHwYvGhknyznoBvyvgbidiBH3JX3eFHHlIO3YK8Ek=.pem","location":"security-state-staging/intermediates/8acfb92a-ce66-4fb5-b98b-4972b2012e02.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EULHwYvGhknyznoBvyvgbidiBH3JX3eFHHlIO3YK8Ek=","crlite_enrolled":true,"id":"d7edf4f6-8ea9-48ae-8d08-69ed5736f29e","last_modified":1562023850930},{"schema":1562023847212,"derHash":"lA0vISoqOcyEvULQ9txPe6TEd+elqZIslrn17BTkpsg=","subject":"SERIALNUMBER=ZZZZZZA2,CN=Siemens Issuing CA EE Auth 2016,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGfMQswCQYD
VQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQTIxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMSgwJgYDVQQDDB9TaWVtZW5zIElzc3VpbmcgQ0EgRUUgQXV0aCAyMDE2","whitelist":false,"attachment":{"hash":"1bc1c575c0c25eabed479a2d3598ce3f07b4fa37c821f8112919dea06b3659f9","size":2637,"filename":"mK19rDzuSvRGMEDPJLlMOI0yXJx2HMcqf75ficQsHb4=.pem","location":"security-state-staging/intermediates/c93ab0f3-290e-4e26-865c-fad95f2e5e95.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mK19rDzuSvRGMEDPJLlMOI0yXJx2HMcqf75ficQsHb4=","crlite_enrolled":true,"id":"73d53000-4514-4e59-9781-f064a11afe8f","last_modified":1562023847950},{"schema":1562023846475,"derHash":"pq55WaGVdJyohzhvoESCvRadwRV+MS0wGw1cMz+vKwI=","subject":"CN=IBM New Zealand Limited Public CA,OU=Symantec Trust Network,O=IBM New Zealand Limited,C=NZ","subjectDN":"MHwxCzAJBgNVBAYTAk5aMSAwHgYDVQQKExdJQk0gTmV3IFplYWxhbmQgTGltaXRlZDEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEqMCgGA1UEAxMhS
UJNIE5ldyBaZWFsYW5kIExpbWl0ZWQgUHVibGljIENB","whitelist":false,"attachment":{"hash":"e26288de5e13511bcb13ccfd1f3dfda1cb52a4b8d5f3b28f5c139bc3c2323669","size":1398,"filename":"Zq0nTmnMxQ4X8EbS5Miz_8_bZskoyMZcrqwzFr53uGY=.pem","location":"security-state-staging/intermediates/bbd5d60b-441a-4059-9ca1-2294ac6e4d52.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Zq0nTmnMxQ4X8EbS5Miz/8/bZskoyMZcrqwzFr53uGY=","crlite_enrolled":false,"id":"69507212-dd76-4998-9e40-0c068a88a0b1","last_modified":1562023847205},{"schema":1562023844992,"derHash":"GlzNcUq9fHr1Kg+pRrycj4aWvL8ifYEzlDDl0zlOzJc=","subject":"CN=TU Ilmenau CA G2,O=Technische Universitaet Ilmenau,C=DE","subjectDN":"MFIxCzAJBgNVBAYTAkRFMSgwJgYDVQQKDB9UZWNobmlzY2hlIFVuaXZlcnNpdGFldCBJbG1lbmF1MRkwFwYDVQQDDBBUVSBJbG1lbmF1IENBIEcy","whitelist":false,"attachment":{"hash":"ac88cae9a73fc870c8732cac7b3ef3c93112a4abcf6b7e4ed2de251558a6cd88","size":1951,"filename":"6SXfWL___HfILksBCAAWXWAQClUVsEeSl6Lg8jmVlWo=.pem","location":"security-state
-staging/intermediates/4aa70727-c6f8-46b4-9a57-73a0a9d47ebd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6SXfWL///HfILksBCAAWXWAQClUVsEeSl6Lg8jmVlWo=","crlite_enrolled":true,"id":"4a92eec8-9b5a-4058-aff9-c75fd8949758","last_modified":1562023845732},{"schema":1562023844250,"derHash":"2uNDT2lvyfD2UuGypvabXpJz0J9DvTvdRxfWFB+M0sI=","subject":"OU=Public Certification Authority - G2,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MGAxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEsMCoGA1UECwwjUHVibGljIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"d35775690c65ebee8113249b23f19a293655d0ed08e999f64243089ed009db1b","size":2129,"filename":"tnFqrstaexEa6Zz-CVGGozhI8IF1FafM6uzX3zzHrUI=.pem","location":"security-state-staging/intermediates/07e9d719-440e-4db5-9e24-7f15cd5cee54.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tnFqrstaexEa6Zz+CVGGozhI8IF1FafM6uzX3zzHrUI=","crlite_enrolled":true,"id":"9bae286e-930a-4285-8a27-5
4c6509f3077","last_modified":1562023844984},{"schema":1562023843492,"derHash":"8Hu73gdvm0DFfMS+/t6Xyh9Tua4UfwNdKEy/U/NDL7g=","subject":"CN=CFCA OV OCA,O=China Financial Certification Authority,C=CN","subjectDN":"MFUxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdDaGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFDASBgNVBAMMC0NGQ0EgT1YgT0NB","whitelist":false,"attachment":{"hash":"bc37658d1568750ae385b92be54ede64df31899d30f67211fd1e015c9dc7803b","size":1963,"filename":"uc0FPx73f1ObHGmGZOcevy371Uo9asVjdabpiS0lKgQ=.pem","location":"security-state-staging/intermediates/8a832b56-3f0a-4b5f-8966-8a1da5242863.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uc0FPx73f1ObHGmGZOcevy371Uo9asVjdabpiS0lKgQ=","crlite_enrolled":true,"id":"b2b776e5-2b2f-4c8e-819d-026b8d3855d2","last_modified":1562023844242},{"schema":1562023842756,"derHash":"OuaZ2U6P69rLhtT5DUCQMzNHjmXgZVxDJFEZfjP6B/I=","subject":"CN=DarkMatter High Assurance CA,O=DarkMatter LLC,C=AE","subjectDN":"ME0xCzAJBgNVBAYTAkFFMRcwFQYDVQQKDA5EYXJrT
WF0dGVyIExMQzElMCMGA1UEAwwcRGFya01hdHRlciBIaWdoIEFzc3VyYW5jZSBDQQ==","whitelist":false,"attachment":{"hash":"29e18c8b9486962fd829de646542f3e70fd375aee342613cc9acf89995787849","size":2467,"filename":"eBpM8ukkUvPuAdDDgaQhTzkEFlw5CtvWH80RJE4Jstw=.pem","location":"security-state-staging/intermediates/11f4327c-4223-417d-ade5-2d4d436b18d2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eBpM8ukkUvPuAdDDgaQhTzkEFlw5CtvWH80RJE4Jstw=","crlite_enrolled":true,"id":"c5819102-1052-4780-bcdd-3eaa82f68270","last_modified":1562023843484},{"schema":1562023842017,"derHash":"aXDjlmIUF9zuMVqsKLteoxYfF1Ag9/Tpuhfa3ljbsI0=","subject":"CN=WoTrus DV SSL CA,O=WoTrus CA Limited,C=CN","subjectDN":"MEQxCzAJBgNVBAYTAkNOMRowGAYDVQQKDBFXb1RydXMgQ0EgTGltaXRlZDEZMBcGA1UEAwwQV29UcnVzIERWIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"c00640d76f2191d5d2fd5624662ed82ab5430015987a69f81f883cdc4d5a7b43","size":1691,"filename":"qo1QyzYCUCM6TTpkflyWle2ERuNQ8q7_99oCt1RmDgk=.pem","location":"security-state-stagin
g/intermediates/ac244e93-fe89-4324-8196-d9da2b7bf0b9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qo1QyzYCUCM6TTpkflyWle2ERuNQ8q7/99oCt1RmDgk=","crlite_enrolled":true,"id":"b97451e0-61f4-46a5-908d-5fd947861af6","last_modified":1562023842749},{"schema":1562023841259,"derHash":"tquNsRC19tNf2aa1/3Bx2EJmWBJsQlYpvHzaMTVPTNA=","subject":"CN=FUJIFILM Fnet CA - C,O=FUJIFILM,C=JP","subjectDN":"MD8xCzAJBgNVBAYTAkpQMREwDwYDVQQKEwhGVUpJRklMTTEdMBsGA1UEAxMURlVKSUZJTE0gRm5ldCBDQSAtIEM=","whitelist":false,"attachment":{"hash":"cdd8e18850561e92de8d49cb4cb56e71a16a242cdd3c288f43a03ddfa92e4412","size":1589,"filename":"BF0M6q5HK3EucyPuMYh1-P2tykWlFWnyzlFrzFQqvGQ=.pem","location":"security-state-staging/intermediates/2ec396dc-b563-4cbd-930d-7de56991f018.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BF0M6q5HK3EucyPuMYh1+P2tykWlFWnyzlFrzFQqvGQ=","crlite_enrolled":false,"id":"2fa5f637-6677-49f4-906f-ffde7b0d2f40","last_modified":1562023842008},{"schema":1562023839762,"derHash":"qmojgK
foJU2tRiCuCJXedAR/M/Umh1jc8nxNKAs4SlA=","subject":"CN=Trust Technologies Global Client CA,OU=Digital Identity and Security,O=Telecom Italia Trust Technologies S.r.l.,C=IT","subjectDN":"MIGWMQswCQYDVQQGEwJJVDExMC8GA1UEChMoVGVsZWNvbSBJdGFsaWEgVHJ1c3QgVGVjaG5vbG9naWVzIFMuci5sLjEmMCQGA1UECxMdRGlnaXRhbCBJZGVudGl0eSBhbmQgU2VjdXJpdHkxLDAqBgNVBAMTI1RydXN0IFRlY2hub2xvZ2llcyBHbG9iYWwgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"a1ebd3c53dcb40baac891b57ab477f14d4b3afc34c91a62b5b8c580f800493e3","size":1707,"filename":"BbI65NDhxD_m5B-mPY1xvko26icvW3iWYISpR9SvWC8=.pem","location":"security-state-staging/intermediates/115c0963-8f7c-4505-be5a-c66871482aea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BbI65NDhxD/m5B+mPY1xvko26icvW3iWYISpR9SvWC8=","crlite_enrolled":false,"id":"f99c32e0-0924-4435-8934-7158db6251b8","last_modified":1562023840499},{"schema":1562023839017,"derHash":"RVTCEMdRrIIRtuIEa3n2iv/ICCJ0rqSJA4ZgYgxBgt0=","subject":"CN=SECOM Passport for Member PUB CA3,OU=SECOM P
assport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTM=","whitelist":false,"attachment":{"hash":"96b4ebc82851db1b6b6ae2984c856e75f401999eefa282134fbfd11c3a759e77","size":1581,"filename":"MVOOkY-CSvhzP9Q_l-rKIx-_Qt7f3yC8pbQgH0FQpXQ=.pem","location":"security-state-staging/intermediates/436cd56f-7584-4ad0-a820-72c2b5a9f1f7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MVOOkY+CSvhzP9Q/l+rKIx+/Qt7f3yC8pbQgH0FQpXQ=","crlite_enrolled":false,"id":"5b698c8f-82c1-4637-a282-76a058f19fab","last_modified":1562023839754},{"schema":1562023837538,"derHash":"9unOsfPDaJhR+IYFVTHacu0LxeVtFkkls65/3OhxfXA=","subject":"CN=KeyNet Systems RSA OV CA,O=KeyNet Systems LLC,L=Las Vegas,ST=Nevada,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMQ8wDQYDVQQIEwZOZXZhZGExEjAQBgNVBAcTCUxhcyBWZWdhczEbMBk
GA1UEChMSS2V5TmV0IFN5c3RlbXMgTExDMSEwHwYDVQQDExhLZXlOZXQgU3lzdGVtcyBSU0EgT1YgQ0E=","whitelist":false,"attachment":{"hash":"6834156d59e4d2f03dd0abbc702c34e050c4e798044b5f6fd911b3a37b351e43","size":2138,"filename":"yZ5Axfrz6TT2LCftMDwKgTE4QQ41sZW0CP1oieeztpI=.pem","location":"security-state-staging/intermediates/db3a4237-c968-435f-bb9d-f34cd5995771.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yZ5Axfrz6TT2LCftMDwKgTE4QQ41sZW0CP1oieeztpI=","crlite_enrolled":false,"id":"f5924da9-0730-47bb-8e5a-9c4b647cc493","last_modified":1562023838272},{"schema":1562023834547,"derHash":"tgQCajWQOSq++2sY6BdkU2VhFdKgBg9xPhkan9B2Uyo=","subject":"CN=CompuGroup Medical Certificate Authority,OU=IT,O=Compugroup Medical\\, Inc,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMSAwHgYDVQQKExdDb21wdWdyb3VwIE1lZGljYWwsIEluYzELMAkGA1UECxMCSVQxMTAvBgNVBAMTKENvbXB1R3JvdXAgTWVkaWNhbCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"3a3807e9e6c4883a2bab883da53e548b6e33e80835bb71a8d682deec8a1bc5a9
","size":2207,"filename":"jiFd49hgJ7OqvKchE20pWzOluAN8L1TBxe0YBzN5oPc=.pem","location":"security-state-staging/intermediates/f37211f9-f5d2-4ab2-8d21-68f22e873847.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jiFd49hgJ7OqvKchE20pWzOluAN8L1TBxe0YBzN5oPc=","crlite_enrolled":false,"id":"7d0b7d8e-c334-41a4-92af-d211360e2f37","last_modified":1562023835290},{"schema":1562023831541,"derHash":"h38kznD0owR+TqcL7BvDG+m2Uzrf86OT/5v7PIEClEY=","subject":"CN=TrustAsia TLS ECC CA G9,OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MHUxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEgMB4GA1UEAxMXVHJ1c3RBc2lhIFRMUyBFQ0MgQ0EgRzk=","whitelist":false,"attachment":{"hash":"619365f9c59d0f0dcfcb64ba525d68621f75fadebe181e15429e3dc854262b7c","size":1191,"filename":"z_Y0aMrBs7J0RBthUJnRbIqFivDK0vBrLe1Q3OF0GjQ=.pem","location":"security-state-staging/intermediates/94070f05-b053-49e6-8de7-0b2dba8ba010.pem","mimet
ype":"application/x-pem-file"},"pubKeyHash":"z/Y0aMrBs7J0RBthUJnRbIqFivDK0vBrLe1Q3OF0GjQ=","crlite_enrolled":false,"id":"5ba8fcec-1524-40f5-bf99-0dd3b9641a19","last_modified":1562023832267},{"schema":1562023830806,"derHash":"V0NCratO1573gY6CmQWOHAcawOQx/kIcq7Yt9NTp5MU=","subject":"CN=Atos TrustedRoot Issuing CA for Primetals 2015,O=Atos,C=DE","subjectDN":"MFUxNzA1BgNVBAMMLkF0b3MgVHJ1c3RlZFJvb3QgSXNzdWluZyBDQSBmb3IgUHJpbWV0YWxzIDIwMTUxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"5ade36d683c37e2eead15d6a475ad0cea29346f577f4600faa9a32397f52bb2c","size":1581,"filename":"Ed79H7X5vQv3PR5-yCPH4ihzJhZFJlA-HsWA-xT7qAI=.pem","location":"security-state-staging/intermediates/8efad479-fc51-47cc-b880-7913a377291d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ed79H7X5vQv3PR5+yCPH4ihzJhZFJlA+HsWA+xT7qAI=","crlite_enrolled":false,"id":"05eaf66f-1805-4619-9d87-bf6d7bfd6e36","last_modified":1562023831534},{"schema":1562023828546,"derHash":"qClEStL7SAeaWV+72Ix
OZY7iCJpeEpuJqqzOhRGY/9c=","subject":"CN=Symantec Class 3 Shared Public Organization CA - SHA1,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGNMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxPjA8BgNVBAMTNVN5bWFudGVjIENsYXNzIDMgU2hhcmVkIFB1YmxpYyBPcmdhbml6YXRpb24gQ0EgLSBTSEEx","whitelist":false,"attachment":{"hash":"021a80512da52a65049663e34f330aa42c4e0cc02a4cee9b9008dadeb792a9d4","size":2194,"filename":"2U0T8GZhpLigHF6ChDBAZpgEBhCK4QPSSnTb09TAv6I=.pem","location":"security-state-staging/intermediates/e26d09a9-b1e2-47b9-b856-b66a98cf8a8f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2U0T8GZhpLigHF6ChDBAZpgEBhCK4QPSSnTb09TAv6I=","crlite_enrolled":false,"id":"d2495fba-828e-4b4f-bc15-e38ee9827c0a","last_modified":1562023829273},{"schema":1562023826316,"derHash":"Aldk5uGdkLxsxwZpRFWT1T/A2YNve5QoA2IIYQtTmUM=","subject":"CN=TrustSign ECC EV CA,OU=Controlled by Sectigo exclusively for Ziwit,O=Ziwit,L=M
ontpellier,ST=Herault,C=FR","subjectDN":"MIGZMQswCQYDVQQGEwJGUjEQMA4GA1UECBMHSGVyYXVsdDEUMBIGA1UEBxMLTW9udHBlbGxpZXIxDjAMBgNVBAoTBVppd2l0MTQwMgYDVQQLEytDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIFppd2l0MRwwGgYDVQQDExNUcnVzdFNpZ24gRUNDIEVWIENB","whitelist":false,"attachment":{"hash":"eb2d6f05c96f188381bd1171d6fa4afb21d12035743de566ce609f7ca5bda596","size":1382,"filename":"JtXGnD_eYf2MNlncNj_WbCi9uD6VYCdIXyT735ieGbg=.pem","location":"security-state-staging/intermediates/1010923c-cbc6-4d1e-8ed2-ffce2c0fa2fb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JtXGnD/eYf2MNlncNj/WbCi9uD6VYCdIXyT735ieGbg=","crlite_enrolled":false,"id":"04d89624-479a-4a19-a2f7-29d3230db81f","last_modified":1562023827049},{"schema":1562023825546,"derHash":"Yy/Wl7rK8e0jJRfsm3Yit8JeFEiwzGJrMyhnGeNRzoo=","subject":"CN=Giesecke and Devrient CA,OU=Corporate CA,O=Giesecke and Devrient,L=Munich,C=DE","subjectDN":"MHgxCzAJBgNVBAYTAkRFMQ8wDQYDVQQHEwZNdW5pY2gxHjAcBgNVBAoTFUdpZXNlY2tlIGFuZCBEZXZyaWVudDEVMBM
GA1UECxMMQ29ycG9yYXRlIENBMSEwHwYDVQQDExhHaWVzZWNrZSBhbmQgRGV2cmllbnQgQ0E=","whitelist":false,"attachment":{"hash":"e464f73793737913979fd573cde24680aa6beb3d0a1536caf6f84d2dd0928efd","size":2832,"filename":"x-foNQ4x_jlYBHMXga5zVB0UNOMRxxnju5lOjtuhUmo=.pem","location":"security-state-staging/intermediates/3350d069-eb24-4e49-887f-4b126aa2bbcf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x+foNQ4x/jlYBHMXga5zVB0UNOMRxxnju5lOjtuhUmo=","crlite_enrolled":false,"id":"c48b6fd8-b06a-407e-aa0d-d68bddb6bea1","last_modified":1562023826309},{"schema":1562023823312,"derHash":"+Tc4W4j2WYQJCUB7gOTrJfJcW0rq757ieYgO4L8F7e8=","subject":"CN=Certification Authority,OU=Ministry of Defense,O=Japanese Government,C=JP","subjectDN":"MGsxCzAJBgNVBAYTAkpQMRwwGgYDVQQKExNKYXBhbmVzZSBHb3Zlcm5tZW50MRwwGgYDVQQLExNNaW5pc3RyeSBvZiBEZWZlbnNlMSAwHgYDVQQDExdDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"98d0179cfafdd09af29ed667827cfc04e1bc4ad4d0f7eec2b6d464dd2cf6b378","size":1650,"fil
ename":"KbQxsgiSt363tFvyQehFWksqyFq4Y5_GQHqCruQ7lPA=.pem","location":"security-state-staging/intermediates/313fc711-872f-4c90-bbdc-d86cea66d801.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KbQxsgiSt363tFvyQehFWksqyFq4Y5/GQHqCruQ7lPA=","crlite_enrolled":false,"id":"26fa37cb-aba7-4e95-8382-5b64698bfbee","last_modified":1562023824045},{"schema":1562023819546,"derHash":"u2YddQxTFmGBgHpomP1GQGXOWSmJhq1m2db//LvUc4o=","subject":"CN=NetLock Expressz Eat. (Class C Legal) Tan\u00fas\u00edtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIG1MQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTFDMEEGA1UEAww6TmV0TG9jayBFeHByZXNzeiBFYXQuIChDbGFzcyBDIExlZ2FsKSBUYW7DunPDrXR2w6FueWtpYWTDsw==","whitelist":false,"attachment":{"hash":"cf7c4f8886152f1548287e1f1314115b3db7ea5a596a43daa585a1a0e2f9e79c","size":2198,"fi
lename":"-QUSW1ozNhu9biYeUP4qycv4BLZu3JGAci7jNGIo4PI=.pem","location":"security-state-staging/intermediates/408172d6-6f39-4e21-9ed3-d79b6dd424a4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+QUSW1ozNhu9biYeUP4qycv4BLZu3JGAci7jNGIo4PI=","crlite_enrolled":false,"id":"9ccfdb3e-9fe2-4d0c-a088-5e0ba1450d2e","last_modified":1562023820285},{"schema":1562023816556,"derHash":"KzDV6RKQY1jJrW+1f9ezaKAaeOOVtOwRZFxbmKCWfeg=","subject":"CN=KDDI Web Communications Certification Authority 3,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MHAxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMTowOAYDVQQDEzFLRERJIFdlYiBDb21tdW5pY2F0aW9ucyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAz","whitelist":false,"attachment":{"hash":"060dbe29951ae1012870c4ee26bb98926968e0fea64e43fdc0746acf31108a56","size":1687,"filename":"jIWLX2MDYLP12p947FUGxwdJR8AY8yPcYv_TpWUNDQQ=.pem","location":"security-state-staging/intermediates/a8e2cd0b-0920-44ce-9620-e32ff03bd8cd.pem","mimetype":"application/x-pem
-file"},"pubKeyHash":"jIWLX2MDYLP12p947FUGxwdJR8AY8yPcYv/TpWUNDQQ=","crlite_enrolled":true,"id":"7fe81ac3-e601-4e9c-ac30-be5018f136a5","last_modified":1562023817313},{"schema":1562023815806,"derHash":"c/gpVfkx3GgCvQfF0d+UBBE/PCJPel5yBAvkQuQfMvw=","subject":"OU=Trustis FPS FF Issuing Authority,O=Trustis Limited,C=GB","subjectDN":"MFIxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9UcnVzdGlzIExpbWl0ZWQxKTAnBgNVBAsTIFRydXN0aXMgRlBTIEZGIElzc3VpbmcgQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"25f4051ff993ea304d7f826c473763beaba1048c4d81074983e9c6f45e52dd86","size":1951,"filename":"dcSuTd19rcEF97RhSta5TbUNWKHIOxrSRcDupjDbXZk=.pem","location":"security-state-staging/intermediates/cc33bc05-8ad8-4986-be9b-8acea0f3c2ea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dcSuTd19rcEF97RhSta5TbUNWKHIOxrSRcDupjDbXZk=","crlite_enrolled":true,"id":"f6fd8e6c-c71d-462f-afa0-7dad266d9359","last_modified":1562023816547},{"schema":1562023814315,"derHash":"eZjyXc21sR/yrpRhu9mNAn3vIuCOW4LkuvvLYLeeziM=","subj
ect":"SERIALNUMBER=201401,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTQwMQ==","whitelist":false,"attachment":{"hash":"b8bed1769b1a6ef9bcc9789fbb84f0881a40be844acb824e8b7f3703ba48b3a3","size":1402,"filename":"fvtABvaKOw2PF9nCsZUaEY9iC6VzN_FdQiP1jFR7a-s=.pem","location":"security-state-staging/intermediates/d5d9747a-bbb1-42d0-8885-da78b8cf26f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fvtABvaKOw2PF9nCsZUaEY9iC6VzN/FdQiP1jFR7a+s=","crlite_enrolled":false,"id":"dab01327-2eca-4caf-840f-1812c8c9f612","last_modified":1562023815061},{"schema":1562023813549,"derHash":"teRJHPHgoGwZRB+sKVtngiZClgP8xBTGJuIQsu/JXwA=","subject":"CN=Certigna Identity CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MIGCMQswCQYDVQQGEwJGUjESMBAGA1UECgwJREhJTVlPVElTMRwwGgYDVQQLDBMwMDAyIDQ4MTQ2MzA4MTAwMDM2MSIwIAYDVQRhDBlOVFJGUi0wMDAyIDQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQQDDBRDZXJ0aWduYSBJZGVudGl0eSBDQQ==","whitelist":false,"attachment":{"hash":
"8fffbc881ae6f4ef224bc772397cce665787accfbbd9be25a200ea93e8a42613","size":2515,"filename":"lwJkDQYtogkGJEFJMX5DjskCXh2W7dNBRH_eJZlWjWo=.pem","location":"security-state-staging/intermediates/56d8fb27-0de0-4b61-ab41-299e1d0c14c9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lwJkDQYtogkGJEFJMX5DjskCXh2W7dNBRH/eJZlWjWo=","crlite_enrolled":true,"id":"52365c35-c17b-4e16-abb3-36a0687ea4c5","last_modified":1562023814306},{"schema":1562023812811,"derHash":"zhA5EhatpGw3a3MzcVd3p5LY1CK9fF4G/i63laANx+w=","subject":"CN=McAfee Client/Email CA 2,O=McAfee\\, Inc.,L=Santa Clara,ST=CA,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEUMBIGA1UEBxMLU2FudGEgQ2xhcmExFTATBgNVBAoTDE1jQWZlZSwgSW5jLjEhMB8GA1UEAxMYTWNBZmVlIENsaWVudC9FbWFpbCBDQSAy","whitelist":false,"attachment":{"hash":"5bc268b7826fdc5d76c11010496322362492a8274003d0c6398bb7a54848e55a","size":2113,"filename":"TPnIj68eKdodJLOk1P1H6qztrjvIWD_sPyWq4s3vSGk=.pem","location":"security-state-staging/intermediates/1885f863-9e79-45a0-
8f72-a556a1d3cb95.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TPnIj68eKdodJLOk1P1H6qztrjvIWD/sPyWq4s3vSGk=","crlite_enrolled":false,"id":"55049def-d1d5-49b8-b27e-784120a1d096","last_modified":1562023813542},{"schema":1562023812053,"derHash":"a+fQTiD/wo8ZjKiPwMNkR4T9FWkDvweBMPuWTAJY26A=","subject":"CN=United Parcel Service\\, Inc. RSA OV CA,O=United Parcel Service\\, Inc.,L=Atlanta,ST=GA,C=US","subjectDN":"MIGCMQswCQYDVQQGEwJVUzELMAkGA1UECBMCR0ExEDAOBgNVBAcTB0F0bGFudGExJDAiBgNVBAoTG1VuaXRlZCBQYXJjZWwgU2VydmljZSwgSW5jLjEuMCwGA1UEAxMlVW5pdGVkIFBhcmNlbCBTZXJ2aWNlLCBJbmMuIFJTQSBPViBDQQ==","whitelist":false,"attachment":{"hash":"392ca8f231a1c38f1201cf145dde7d73e1d632d11a6ea3ed9f59160e766185e2","size":2142,"filename":"SwXmbcFTOEV-82sxJhAl0R-uGVTqV9eWCnYAM12xQYs=.pem","location":"security-state-staging/intermediates/f3550763-54ff-4877-a395-498babc118ff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SwXmbcFTOEV+82sxJhAl0R+uGVTqV9eWCnYAM12xQYs=","crlite_enrolled":false,"i
d":"9ef159f4-984f-41ba-974e-093e836bf9ed","last_modified":1562023812803},{"schema":1562023811314,"derHash":"U1cNBeQNxi+d+R0Vr7AVtWqqaAwgzBaObVfZRsnOJoQ=","subject":"CN=QuoVadis Swiss Regulated CA G1,O=QuoVadis Trustlink Schweiz AG,C=CH","subjectDN":"MH4xCzAJBgNVBAYTAkNIMR4wHAYDVQRhDBVOVFJDSC1DSEUtMTEyLjIxMC4zNDkxJjAkBgNVBAoMHVF1b1ZhZGlzIFRydXN0bGluayBTY2h3ZWl6IEFHMScwJQYDVQQDDB5RdW9WYWRpcyBTd2lzcyBSZWd1bGF0ZWQgQ0EgRzE=","whitelist":false,"attachment":{"hash":"22b9742847b9ab6abdad54c699e9692ed9618e8671e4046c99fa2af1b0a3a426","size":2540,"filename":"60b_Hr5z04YiWfrcZlkQZtKfGEaLb5KOd9VjN9uVRks=.pem","location":"security-state-staging/intermediates/f24f46f5-7719-4f04-9db5-6e705c7e8bd8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"60b/Hr5z04YiWfrcZlkQZtKfGEaLb5KOd9VjN9uVRks=","crlite_enrolled":true,"id":"b33e1999-4a4d-4f36-a44d-123037de65e1","last_modified":1562023812045},{"schema":1562023809819,"derHash":"aQ7yFLwRTvHXJr1+8D5UbNbLe+W8I/rNORJjv/tXlwo=","subject":"CN=cPanel High
Assurance RSA Certification Authority,O=cPanel\\, Inc.,L=Houston,ST=TX,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJUWDEQMA4GA1UEBxMHSG91c3RvbjEVMBMGA1UEChMMY1BhbmVsLCBJbmMuMTowOAYDVQQDEzFjUGFuZWwgSGlnaCBBc3N1cmFuY2UgUlNBIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"515ad74a8a9644ed7d7e651b809dee9f927e0c09028aa60161f5dd268ff3777d","size":6117,"filename":"btauesE0qNPMvYa1wCIsn_jg_om1G73FWer38Ur7kQE=.pem","location":"security-state-staging/intermediates/1a7b6383-a8d8-4f48-b6bb-f5a5cbc9883b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"btauesE0qNPMvYa1wCIsn/jg/om1G73FWer38Ur7kQE=","crlite_enrolled":true,"id":"97a2119a-a356-445c-8eb8-989fd062161b","last_modified":1562023810560},{"schema":1561997070297,"derHash":"gw/yBa5pSFBZw/sjdqfy+e4cKmHeJZ3QnQu2rWn4iDI=","subject":"SERIALNUMBER=Q2826004J,CN=AC Administraci\u00f3n P\u00fablica,OU=CERES,O=FNMT-RCM,C=ES","subjectDN":"MGoxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ0VSRVMxEjAQBg
NVBAUTCVEyODI2MDA0SjEkMCIGA1UEAwwbQUMgQWRtaW5pc3RyYWNpw7NuIFDDumJsaWNh","whitelist":false,"attachment":{"hash":"1a643193c39cf1aa75be19f71a124a43c4ff5403f87361b228eed95bdccebd66","size":2438,"filename":"uoKUEuwkPtDw_4xcvGkwXVXs-8X9iESzjMRl18SDGV0=.pem","location":"security-state-staging/intermediates/b2066e9b-2ccd-4607-b8f6-e71ba0621bca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uoKUEuwkPtDw/4xcvGkwXVXs+8X9iESzjMRl18SDGV0=","crlite_enrolled":true,"id":"a37e40f6-ffa2-4d26-992d-432521bce7f9","last_modified":1562023808306},{"schema":1559867790401,"derHash":"x0YLDt2htEyOIWSyNOvsw5YqajepNrdKbn1GaCk48IQ=","subject":"CN=DigiCert EV Code Signing CA (SHA2),OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNVBAMTIkRpZ2lDZXJ0IEVWIENvZGUgU2lnbmluZyBDQSAoU0hBMik=","whitelist":false,"attachment":{"hash":"66fbaa9bc2d541bb65b103b1e7beea732f29148f830f01aa655d2aa8a2fe0db4","size":2393,"filena
me":"pcpyVjsv8yFFdFLHtUAzS7ZJt2VTimUM6OuTLzMOqPM=.pem","location":"security-state-staging/intermediates/07f62659-5a1e-4940-901b-98a97d5a2c45.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pcpyVjsv8yFFdFLHtUAzS7ZJt2VTimUM6OuTLzMOqPM=","crlite_enrolled":true,"id":"aa338e39-dbdc-4d4b-a5fe-9098e2a81760","last_modified":1559867791204},{"schema":1559867775772,"derHash":"2byXP4iQlpbaEIMxl5RMpYrEqIhHd5yRMzdCZxAO7Fg=","subject":"CN=VeriSign Class 3 Public Primary Certification Authority - G5,OU=VeriSign Trust Network+OU=(c) 2006 VeriSign\\, Inc. - For authorized use only,O=VeriSign\\, Inc.,C=US","subjectDN":"MIHKMQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAyMDA2IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHNQ==","whitelist":false,"attachment":{"hash":"8c27ef0472925897276a375939fcfb0a9923a56d945831850f7684af74691ce
d","size":2223,"filename":"JbQbUG5JMJUoI6brnx0x3vZF6jilxsapbXGVfjhN8Fg=.pem","location":"security-state-staging/intermediates/26497f8c-d5cd-43b4-a151-49c3160d6679.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JbQbUG5JMJUoI6brnx0x3vZF6jilxsapbXGVfjhN8Fg=","crlite_enrolled":true,"id":"ca224e06-34d2-4a49-b0ac-eb7f3ad7719a","last_modified":1559867776576},{"schema":1559867708766,"derHash":"WuT3d0JrvFqoWYbKSNMZJwxVNiENyOoaKNUC9rNZUTg=","subject":"CN=Inpriva Direct Federated CA,O=Inpriva Inc,C=US","subjectDN":"MEkxCzAJBgNVBAYTAlVTMRQwEgYDVQQKEwtJbnByaXZhIEluYzEkMCIGA1UEAxMbSW5wcml2YSBEaXJlY3QgRmVkZXJhdGVkIENB","whitelist":false,"attachment":{"hash":"f7ea7da994e7d75e4255611ed437f7a154e0e25a76711ae142337c1b96640839","size":2138,"filename":"EbPRGHnlhhe6ua7F4tDHdk9b21suw0adgBJmLt7jZrk=.pem","location":"security-state-staging/intermediates/352fbe3e-0fa8-4a62-b3f6-bed976b2f7e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EbPRGHnlhhe6ua7F4tDHdk9b21suw0adgBJmLt7jZrk=","crlite_
enrolled":false,"id":"343e0db4-ae27-43dc-a56b-2ab4c75e4c98","last_modified":1559867709576},{"schema":1559867705094,"derHash":"U3xcgHI2PhR8hNIdDSJItrmamopDMRZZg17DOSbaKGA=","subject":"CN=thawte DV SSL SHA256 CA,OU=Domain Validated SSL,O=thawte\\, Inc.,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMSAwHgYDVQQDExd0aGF3dGUgRFYgU1NMIFNIQTI1NiBDQQ==","whitelist":false,"attachment":{"hash":"7209c671afa40e770c49789601b57a8d17edff8f2a2e501da1b9703f954ca286","size":1743,"filename":"Rgf6Wnwbdv9nEsdxDeB2gCPXUB6C3Y3dDbU7tDwQ4Ic=.pem","location":"security-state-staging/intermediates/3584c5e9-3feb-421a-8dda-eee21cf023ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Rgf6Wnwbdv9nEsdxDeB2gCPXUB6C3Y3dDbU7tDwQ4Ic=","crlite_enrolled":true,"id":"2ad7d7e1-56fc-4751-a1c3-0c70bb9794d2","last_modified":1559867705882},{"schema":1559867684823,"derHash":"9nIr5ErNrltaizsLSvn0v15fvDlhz1JsvZdp0cbhSFk=","subject":"CN=Sectigo ECC Domain Valid
ation Secure Server CA 2,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGRMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxOTA3BgNVBAMTMFNlY3RpZ28gRUNDIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0EgMg==","whitelist":false,"attachment":{"hash":"ad8ca4ef91dbda033c17e8dbf198a410d147227e58e0981a280cafe1867ccc27","size":1329,"filename":"Js263FpzCgFxGxbtSYGcowFcKG4SjKAkg5R8oucb6bk=.pem","location":"security-state-staging/intermediates/42ec9fe3-884f-4466-82dc-da23d6c795ca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Js263FpzCgFxGxbtSYGcowFcKG4SjKAkg5R8oucb6bk=","crlite_enrolled":false,"id":"814ba8eb-43a2-4b3e-9b40-cf9cb1b220b3","last_modified":1559867685643},{"schema":1559867653200,"derHash":"TvqqEECsL0TT3uIG2VIqKI2E7Djd9ZKYySbgL0ydmu8=","subject":"CN=TrustCor Basic Secure Site 2048 (CA1),OU=TrustCor Network,O=TrustCor Systems S. de R.L.,ST=Panama,C=PA","subjectDN":"MIGPMQswCQYDVQQGEwJQQT
EPMA0GA1UECAwGUGFuYW1hMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xGTAXBgNVBAsMEFRydXN0Q29yIE5ldHdvcmsxLjAsBgNVBAMMJVRydXN0Q29yIEJhc2ljIFNlY3VyZSBTaXRlIDIwNDggKENBMSk=","whitelist":false,"attachment":{"hash":"da4d2d1acf769f58428741b22d18919f6c746cc708fc5aab39f601e0afbd27f6","size":1869,"filename":"eBBAlQ999Dnt37FkvhzStv4GMlSaWJN88WDxZob6g0Y=.pem","location":"security-state-staging/intermediates/6fc43816-7b30-430f-950f-7f7adea2e3d4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eBBAlQ999Dnt37FkvhzStv4GMlSaWJN88WDxZob6g0Y=","crlite_enrolled":true,"id":"1d9c258c-3953-4116-8203-74400019183e","last_modified":1559867653993},{"schema":1559867619107,"derHash":"ucMHOq10s2iDL1SXlY4nmx0nd8r4hBcTsoqxCkuqCBA=","subject":"CN=DigiCert Document Signing CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IERvY3VtZW50IFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"ha
sh":"f147cd6f9b30e75b6857e07676867168a2183790b5061a3544fa187e9c41df4e","size":2263,"filename":"d1lOi04HgnJxWnVWramDVXKL69TmdcUrD0KFSyHCY7M=.pem","location":"security-state-staging/intermediates/8b2d6f14-b216-4dec-b3ae-6faa8dc57067.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"d1lOi04HgnJxWnVWramDVXKL69TmdcUrD0KFSyHCY7M=","crlite_enrolled":false,"id":"fcc7df4d-c24e-429a-bdf8-9b73dadce6d1","last_modified":1559867619903},{"schema":1559867617469,"derHash":"e0ZNw4T9saUlwswnntDHz60kvs9yxGp9cJPRV8IXYH4=","subject":"CN=JCAN Public CA1 - G4,OU=JCAN Public CA1 - G4,O=JIPDEC,C=JP","subjectDN":"MFwxCzAJBgNVBAYTAkpQMQ8wDQYDVQQKEwZKSVBERUMxHTAbBgNVBAsTFEpDQU4gUHVibGljIENBMSAtIEc0MR0wGwYDVQQDExRKQ0FOIFB1YmxpYyBDQTEgLSBHNA==","whitelist":false,"attachment":{"hash":"30c35cbb85ffebbe17e8f88a88493ac33ccc34dfc4b87197d625a66ab72e0a78","size":1959,"filename":"3tMZPGsnKWPtXhCY57EqxEpfZ4PjoCUq1LLWjhMG9I8=.pem","location":"security-state-staging/intermediates/8f3170db-bb69-4c39-a416-2be83ba51135.p
em","mimetype":"application/x-pem-file"},"pubKeyHash":"3tMZPGsnKWPtXhCY57EqxEpfZ4PjoCUq1LLWjhMG9I8=","crlite_enrolled":false,"id":"19617ac9-88d7-4f7a-967f-f43305320ae5","last_modified":1559867618287},{"schema":1559867612590,"derHash":"lrL4CiPKaOPLUzisX2izeqwZ4vPAhu79SlNBsR6uUIM=","subject":"SERIALNUMBER=201902,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE5MDI=","whitelist":false,"attachment":{"hash":"cbd7381d18982609b76855fd51bb7687605553c2c1995b88a61490857c5f2586","size":2337,"filename":"NU7LgS9pQbEK9tCUN7bjxgyP0twtIeis03XF3HkJgko=.pem","location":"security-state-staging/intermediates/fa6b4ebc-c0e3-4078-aec5-1bc0ea106000.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NU7LgS9pQbEK9tCUN7bjxgyP0twtIeis03XF3HkJgko=","crlite_enrolled":false,"id":"06a6e126-9df4-4e5a-a8a0-9e1d0340a8c1","last_modified":1559867613377},{"schema
":1559867554956,"derHash":"YbrWiZIy9kFd4N6i1DTqTs3A8E7ztpDXyiPSfUa7BRU=","subject":"CN=Digi-Sign CA Digi-Code,O=Digi-Sign Limited,L=Dublin,ST=County Dublin,C=IE","subjectDN":"MHMxCzAJBgNVBAYTAklFMRYwFAYDVQQIEw1Db3VudHkgRHVibGluMQ8wDQYDVQQHEwZEdWJsaW4xGjAYBgNVBAoTEURpZ2ktU2lnbiBMaW1pdGVkMR8wHQYDVQQDExZEaWdpLVNpZ24gQ0EgRGlnaS1Db2Rl","whitelist":false,"attachment":{"hash":"ea5ce76b51e50b3bb54759596ed823dbf7f69f7a27c63ed3c45189716ca0a3a7","size":2109,"filename":"5jhR4E5Gjr25Cvky8Qt5e4EoRerWxLnksVkkE5tu9uo=.pem","location":"security-state-staging/intermediates/63f428cb-1cd8-493c-a2d7-46ccf1d6edcf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5jhR4E5Gjr25Cvky8Qt5e4EoRerWxLnksVkkE5tu9uo=","crlite_enrolled":false,"id":"6b150bfe-21b9-4e05-a6d9-1ecfadbf8d34","last_modified":1559867555756},{"schema":1559867552520,"derHash":"i8G51978yhzNCbrNqI8ndiCS8e1KNK5eRgK7nMkVxQY=","subject":"CN=GeoTrust DV SSL CA - G4,OU=Domain Validated SSL,O=GeoTrust Inc.,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlV
TMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEgMB4GA1UEAxMXR2VvVHJ1c3QgRFYgU1NMIENBIC0gRzQ=","whitelist":false,"attachment":{"hash":"0ab32076e7222afcf3887c9ad0bcc8513aa15c6353f66bfec1ca95e57c3b215f","size":1540,"filename":"47vMpYDaFnUzDRQdNlsSppZ2DbMBfK5uwhBNakbz2n4=.pem","location":"security-state-staging/intermediates/457a8046-b1c4-40d2-866e-01d5c77d468d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"47vMpYDaFnUzDRQdNlsSppZ2DbMBfK5uwhBNakbz2n4=","crlite_enrolled":false,"id":"cd7ae099-d32b-48df-9cc0-5f040e73307f","last_modified":1559867553330},{"schema":1559867489166,"derHash":"J83Wmd4V7oigW7EO2d8vxeTKJbX91CmIljo47IlA1Vo=","subject":"SERIALNUMBER=10810700152,CN=Intesa Sanpaolo Organization Validation CA,OU=WSA Trust Service Provider,O=Intesa Sanpaolo S.p.A.,C=IT","subjectDN":"MIGeMQswCQYDVQQGEwJJVDEfMB0GA1UECgwWSW50ZXNhIFNhbnBhb2xvIFMucC5BLjEjMCEGA1UECwwaV1NBIFRydXN0IFNlcnZpY2UgUHJvdmlkZXIxFDASBgNVBAUTCzEwODEwNzAwMTUyMTMwMQYDVQQDDCpJbnRlc2EgU2
FucGFvbG8gT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQ0E=","whitelist":false,"attachment":{"hash":"521f6ad8cf11723e0d6a63d6246310675e5590a80d8e44dac4de2ecee9be0a46","size":2958,"filename":"DZug655eTUjrJRXnExUEtKkFrsw9LgUACiAkLII7f2s=.pem","location":"security-state-staging/intermediates/ac398d21-7a9d-46bf-9fd1-971750487c1f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DZug655eTUjrJRXnExUEtKkFrsw9LgUACiAkLII7f2s=","crlite_enrolled":true,"id":"cdcb922e-b3df-4980-a0fd-4e03c4069b46","last_modified":1559867489952},{"schema":1559867484297,"derHash":"zFt6Dl1ncbo0jT12N1LwZnAms1McU5btviStzpMhVyM=","subject":"CN=Entrust Code Signing CA - OVCS1,OU=See www.entrust.net/legal-terms+OU=(c) 2015 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG0MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTUgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MSgwJgYDVQQDEx9FbnRydXN0IENvZGUgU2lnbmluZy
BDQSAtIE9WQ1Mx","whitelist":false,"attachment":{"hash":"cfac676380794f70d7d94b6076893414ccd8e2cee343208d8b11e8ba2a0ecc68","size":1833,"filename":"ZKpNzfvWKu9J0YxLZCHZ7ZuSkFgadPTP6L772QDWNs0=.pem","location":"security-state-staging/intermediates/73affa8d-5765-4e6f-9c74-ce08b71fecb1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZKpNzfvWKu9J0YxLZCHZ7ZuSkFgadPTP6L772QDWNs0=","crlite_enrolled":true,"id":"7894d85e-6a23-4249-bc0a-35e6df37cf77","last_modified":1559867485088},{"schema":1559867458908,"derHash":"pSJvM0dLUzkmZSmLSPTmEpgk6YvU04304x67zxT6M80=","subject":"CN=Cal INDEX CA,OU=Orion Health Direct Secure Messaging,O=California Integrated Data Exchange\\, Inc.,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzEyMDAGA1UEChMpQ2FsaWZvcm5pYSBJbnRlZ3JhdGVkIERhdGEgRXhjaGFuZ2UsIEluYy4xLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEVMBMGA1UEAxMMQ2FsIElOREVYIENB","whitelist":false,"attachment":{"hash":"34264be5346b44e8b15bc7137a26395abb6e18063abe3ee90589cd695348b957","size":230
0,"filename":"9GtwDsjMtADoYOwb1RfJrsaX3bJbRRZHhkQATNIEJgs=.pem","location":"security-state-staging/intermediates/04188e49-53db-4da6-8a95-bdc1c98aa34a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9GtwDsjMtADoYOwb1RfJrsaX3bJbRRZHhkQATNIEJgs=","crlite_enrolled":false,"id":"71693213-c8af-4415-8506-ccbce004ca0d","last_modified":1559867459702},{"schema":1559867457298,"derHash":"0OOap9L6U1gQCKFdglxX0lvUkkeDRDH4oieinCgKHAw=","subject":"CN=Advanced Pseudonymous e-Szigno CA 2009,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGKMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xLzAtBgNVBAMMJkFkdmFuY2VkIFBzZXVkb255bW91cyBlLVN6aWdubyBDQSAyMDA5MR8wHQYJKoZIhvcNAQkBFhBpbmZvQGUtc3ppZ25vLmh1","whitelist":false,"attachment":{"hash":"28e4ef20b258d0cd99dc8ed4bbb7f34994c1e6d05e6098c32453f0ff79651007","size":1776,"filename":"32Xpx0UBvg8xkUwG8UN0XoE1SdCOILkoXK07BeFi7sc=.pem","location":"security-state-staging/intermediates/75abdb27-3ceb-4f0f-8207-29811aa50f7b.pem","mime
type":"application/x-pem-file"},"pubKeyHash":"32Xpx0UBvg8xkUwG8UN0XoE1SdCOILkoXK07BeFi7sc=","crlite_enrolled":false,"id":"c4f80d62-a618-4681-a631-871006820e7b","last_modified":1559867458091},{"schema":1559867439398,"derHash":"WzErfhG3DQfBTgq5nwjQB0iWYJjFKqhaBqCCK75ZoCw=","subject":"CN=Telia Domain Validation CA v2,O=Telia Finland Oyj,C=FI","subjectDN":"MFExCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEmMCQGA1UEAwwdVGVsaWEgRG9tYWluIFZhbGlkYXRpb24gQ0EgdjI=","whitelist":false,"attachment":{"hash":"e50f92a6a1126e1974b698dc74b5324cb74a1bf0a656d8fa21ae230568387c3f","size":2328,"filename":"gB4lDqs5uw6KjxweLgOqWfxNkncJhFCg7rB3hEJ4fvo=.pem","location":"security-state-staging/intermediates/8258df94-c3d1-471b-9fb1-34f2157ac923.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gB4lDqs5uw6KjxweLgOqWfxNkncJhFCg7rB3hEJ4fvo=","crlite_enrolled":true,"id":"52f5910f-78f9-4bc2-b611-367c69c58d8d","last_modified":1559867440189},{"schema":1559867436992,"derHash":"R1EWKfK8O3z4Tv7J8yeYpDr2JS5
VC2yudqOFWHEuN9g=","subject":"CN=DigiCert High Assurance Intermediate CA (SHA2),OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xNzA1BgNVBAMTLkRpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEludGVybWVkaWF0ZSBDQSAoU0hBMik=","whitelist":false,"attachment":{"hash":"cefb259a9f513a1d4ee0dc081cff6c0050d8cc359ce9c5db5ac79bc7fe7b2b8e","size":2442,"filename":"3tMIKnnueOFiBfBxInvJjOJo4QLv6wmIUMfKgDFmgvs=.pem","location":"security-state-staging/intermediates/8607ec3d-cee7-41e3-9bf2-dce699146209.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3tMIKnnueOFiBfBxInvJjOJo4QLv6wmIUMfKgDFmgvs=","crlite_enrolled":false,"id":"7eeef585-e240-41af-81bb-b177c89b7b32","last_modified":1559867437775},{"schema":1559867432168,"derHash":"EYj4MclJpi6c1PYONvclRPCvkk3gf52pkuJuRMmW7uA=","subject":"CN=DigiCert High Assurance EV CA-2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJb
mMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKDAmBgNVBAMTH0RpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEVWIENBLTI=","whitelist":false,"attachment":{"hash":"b145b565a9904eaa02b6a72abb75193f832000fd38aeafaa780db87365ff2c14","size":2259,"filename":"xIR53dzZj47wArExuiNyNGwPlWUfxINMgw3ePpMqhtM=.pem","location":"security-state-staging/intermediates/3743430c-e300-4654-9602-bfdefe2354b7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xIR53dzZj47wArExuiNyNGwPlWUfxINMgw3ePpMqhtM=","crlite_enrolled":false,"id":"78f96e89-32b4-40fe-af94-7cb1e85e9957","last_modified":1559867432960},{"schema":1559867405286,"derHash":"QyArnocGWZIfnaJu2p5Hv2mQ2wMaC8CyOvoeeWjtPpk=","subject":"CN=Rochester RHIO Intermediate CA,OU=Rochester RHIO HISP,O=Rochester RHIO,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5Sb2NoZXN0ZXIgUkhJTzEcMBoGA1UECxMTUm9jaGVzdGVyIFJISU8gSElTUDEnMCUGA1UEAxMeUm9jaGVzdGVyIFJISU8gSW50ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{"hash":"870292cce395c5649329f68463094135ea65bace91ee902f32f937816f
15274d","size":2190,"filename":"OQ7Veo7DPNU0rXuY4y1SzFyKRrZc4T0S8rWwrqbKPVQ=.pem","location":"security-state-staging/intermediates/6691c4dc-77ad-402f-a799-57f985d82c4c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OQ7Veo7DPNU0rXuY4y1SzFyKRrZc4T0S8rWwrqbKPVQ=","crlite_enrolled":false,"id":"6c3aaa16-0a8b-42c2-9f23-e3180b8d9479","last_modified":1559867406096},{"schema":1559867394636,"derHash":"q0gNj31yChYclnGEPq3qqqvFRH79nvjzRwh02SfMuGE=","subject":"CN=Hewlett Packard Enterprise Collaboration CA G22,OU=Class 2 Managed PKI Individual Subscriber CA,O=Hewlett Packard Enterprise Company,C=US","subjectDN":"MIGrMQswCQYDVQQGEwJVUzErMCkGA1UEChMiSGV3bGV0dCBQYWNrYXJkIEVudGVycHJpc2UgQ29tcGFueTE1MDMGA1UECxMsQ2xhc3MgMiBNYW5hZ2VkIFBLSSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0ExODA2BgNVBAMTL0hld2xldHQgUGFja2FyZCBFbnRlcnByaXNlIENvbGxhYm9yYXRpb24gQ0EgRzIy","whitelist":false,"attachment":{"hash":"4be6df8ee06a84caf5b78062f1a42d87be4b1918f83ac5ea7795f5f93eb25506","size":2081,"filename":"cFn8YV7QznqAeNsQc
3EMF3ITUowUDECD7omXX1kLh0E=.pem","location":"security-state-staging/intermediates/e4f4b248-458f-4d2e-87fc-272e282734b6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cFn8YV7QznqAeNsQc3EMF3ITUowUDECD7omXX1kLh0E=","crlite_enrolled":false,"id":"2c51902b-f7f1-41a4-bb72-5618f37b1dbf","last_modified":1559867395440},{"schema":1559867368777,"derHash":"hu5KL5MTfKiIdnQHizlAcPGJswSd0tJAU66SkkJUxmg=","subject":"CN=SHECA RSA Time Stamp Authority G1,O=UniTrust,C=CN","subjectDN":"MEwxCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEqMCgGA1UEAwwhU0hFQ0EgUlNBIFRpbWUgU3RhbXAgQXV0aG9yaXR5IEcx","whitelist":false,"attachment":{"hash":"fdc548ebeba5d0a525e38967a6ebcf6047b11e25ea4b1a9b19e976873339445d","size":1991,"filename":"ksHDA5DDxQ9GXo8e3jhl08TIZyMS1ynjRcsLB6SLRH8=.pem","location":"security-state-staging/intermediates/e726ca51-983e-49a8-a4fc-fd76141f0092.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ksHDA5DDxQ9GXo8e3jhl08TIZyMS1ynjRcsLB6SLRH8=","crlite_enrolled":false,"id":"5518046d-1529-
4ce9-94ef-3cf0e4622489","last_modified":1559867369577},{"schema":1559867329817,"derHash":"l9J2xf3y3JRTmrueF7w5lXMM1Rc56ulbD2eznpmQXxE=","subject":"CN=INTEGRIS Direct Intermediate CA,OU=INTEGRIS DIRECT Messaging HISP,O=INTEGRIS,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMREwDwYDVQQKEwhJTlRFR1JJUzEnMCUGA1UECxMeSU5URUdSSVMgRElSRUNUIE1lc3NhZ2luZyBISVNQMSgwJgYDVQQDEx9JTlRFR1JJUyBEaXJlY3QgSW50ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{"hash":"3f8040fd714dac482df84f0d9e6f2c8de009105ca26473f8a3c3447ed69c8154","size":2198,"filename":"VIqwZkD738CQKqG0EwMQGMJq2KPiGa3oaemfSdZMHQU=.pem","location":"security-state-staging/intermediates/bc855478-972a-4e0c-a292-8e721c232afc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VIqwZkD738CQKqG0EwMQGMJq2KPiGa3oaemfSdZMHQU=","crlite_enrolled":false,"id":"bb561a33-9fcd-4d7a-aa33-413a7f86d171","last_modified":1559867330632},{"schema":1559867302256,"derHash":"BPehwRJgflk5KP7HhsxgIb1uvZUAHxxpO4xLOE6xn2o=","subject":"CN=TrustSign BR Certification Auth
ority (DV) 2,O=TrustSign Certificadora Dig. & Solu\u00e7\u00f5es Seguran\u00e7a da Inf. Ltda.,L=S\u00e3o Jos\u00e9 dos Campos,ST=S\u00e3o Paulo,C=BR","subjectDN":"MIHFMQswCQYDVQQGEwJCUjETMBEGA1UECAwKU8OjbyBQYXVsbzEeMBwGA1UEBwwVU8OjbyBKb3PDqSBkb3MgQ2FtcG9zMUswSQYDVQQKDEJUcnVzdFNpZ24gQ2VydGlmaWNhZG9yYSBEaWcuICYgU29sdcOnw7VlcyBTZWd1cmFuw6dhIGRhIEluZi4gTHRkYS4xNDAyBgNVBAMTK1RydXN0U2lnbiBCUiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAoRFYpIDI=","whitelist":false,"attachment":{"hash":"c0b20fc2f58fbdde9863a50434876955a72362820cb00b3c4b28524916c15ae3","size":2247,"filename":"BWKUCA6WpdRrjXTT5uzsuXJ6Gb81wQGRLjW5bslnp7k=.pem","location":"security-state-staging/intermediates/57ae4bf8-97bc-4406-a91c-b9050a07787e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BWKUCA6WpdRrjXTT5uzsuXJ6Gb81wQGRLjW5bslnp7k=","crlite_enrolled":true,"id":"2e0e37b3-09ed-4d09-9512-e4f61413080c","last_modified":1559867303051},{"schema":1559867247253,"derHash":"t6ivKkpD8KhrFWBN5kYSCcnNdolNiwdIvJnZp5cBO7A=","subject":"CN=tha
wte SSL CA - G2,O=thawte\\, Inc.,C=US","subjectDN":"MEExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xGzAZBgNVBAMTEnRoYXd0ZSBTU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"c454ede86932cb7288384504fd67f0db2369a6367c8a2aa8310001339c7f976a","size":1687,"filename":"aR6DUqN8qK4HQGhBpcDLVnkRAvOHH1behpQUU1Xl7fE=.pem","location":"security-state-staging/intermediates/ae73053a-5449-4b9b-904d-11588789fc75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aR6DUqN8qK4HQGhBpcDLVnkRAvOHH1behpQUU1Xl7fE=","crlite_enrolled":true,"id":"a1f2fc0b-8850-43fc-8db2-3f9e546df871","last_modified":1559867248041},{"schema":1559867226214,"derHash":"9kJBjk0MY97Hhclg76aLp0XziFF0TvgfIly4kwUxTVA=","subject":"CN=GlobalSign Timestamping CA - SHA384 - G4,O=GlobalSign nv-sa,C=BE","subjectDN":"MFsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTEwLwYDVQQDEyhHbG9iYWxTaWduIFRpbWVzdGFtcGluZyBDQSAtIFNIQTM4NCAtIEc0","whitelist":false,"attachment":{"hash":"a6ba61ac5f4cc0f9765d5d0f0def7f6c14969571829df
90422bff82e1730c78b","size":2259,"filename":"bxL2hYprHPwXRcMzTOZMDGOgJ8V36UngBYWMNmpyTUA=.pem","location":"security-state-staging/intermediates/0431a6e2-dcab-4cb9-905c-49a692134a41.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bxL2hYprHPwXRcMzTOZMDGOgJ8V36UngBYWMNmpyTUA=","crlite_enrolled":false,"id":"ef392ac2-e86d-44ea-9ba4-44c1128fd89f","last_modified":1559867227001},{"schema":1559867193847,"derHash":"B0hA46Z9zSYAtrAE4Rh6yAvf6JbK9JPflMw9mjymiBQ=","subject":"CN=TWCA InfoSec User CA,OU=User CA,O=TAIWAN-CA Inc.,C=TW","subjectDN":"MFcxCzAJBgNVBAYTAlRXMRcwFQYDVQQKEw5UQUlXQU4tQ0EgSW5jLjEQMA4GA1UECxMHVXNlciBDQTEdMBsGA1UEAxMUVFdDQSBJbmZvU2VjIFVzZXIgQ0E=","whitelist":false,"attachment":{"hash":"45844bd66bf712d05a01885a5ed8fe191938dc90ceb1c6bb05a732c72ec77002","size":1703,"filename":"ffKwXiiyZfl8ltFLZ9k5urWtoCKNBNklL8cqiHHZUUQ=.pem","location":"security-state-staging/intermediates/c5276bf0-c900-4b43-8dd3-e46484423040.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ffKwXiiy
Zfl8ltFLZ9k5urWtoCKNBNklL8cqiHHZUUQ=","crlite_enrolled":false,"id":"c4144e37-5fca-4438-94df-2524de197266","last_modified":1559867194628},{"schema":1559867189046,"derHash":"FVSRh0kDFPUXdkHwvrMmNKoSMOss8sKK2cc5FPsYq6A=","subject":"CN=GlobalSign ECC384 EV SSL CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIEVDQzM4NCBFViBTU0wgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"7761a3e40e444b8b7f00e4e6441a2b460b5e4ae76245aa2678f0336e0e77d193","size":1150,"filename":"MjwImBXGPClGSmdJpCliwmnLG4rkiw8r8qhz04EBHZc=.pem","location":"security-state-staging/intermediates/3237ec26-03ed-426d-8bbb-f3fa278bb2fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MjwImBXGPClGSmdJpCliwmnLG4rkiw8r8qhz04EBHZc=","crlite_enrolled":false,"id":"353fb3cf-1f87-44ed-b343-5cb7de582468","last_modified":1559867189833},{"schema":1559867180142,"derHash":"x7V6Avk3rgvj4hAnAwWSydR6cNcBPrOqlNvDt7WrBmI=","subject":"CN=GeoTrust Exten
ded Validation SSL CA - G2,O=GeoTrust Inc.,C=US","subjectDN":"MFgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTEwLwYDVQQDEyhHZW9UcnVzdCBFeHRlbmRlZCBWYWxpZGF0aW9uIFNTTCBDQSAtIEcy","whitelist":false,"attachment":{"hash":"bbcdd9edbc938bb3f1c719ebf87a28c4a802a927298570655845e0d44a1d420f","size":1654,"filename":"Kd5qpztW2P94BhrmO1KRqfDixvm8E3VliyctI5P6oks=.pem","location":"security-state-staging/intermediates/6cd04e7b-d31a-4806-8481-dc02856dc1a7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Kd5qpztW2P94BhrmO1KRqfDixvm8E3VliyctI5P6oks=","crlite_enrolled":false,"id":"44491442-f7d8-45f4-8fa7-6e193c6865c9","last_modified":1559867180939},{"schema":1559867069047,"derHash":"BCEZUzoNtnjQMEJn359fHfGXlR4C9eXbLmCgFlgC4h4=","subject":"CN=TERENA Code Signing CA 2,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MG0xCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEhMB8GA1UEAxMYVEVSRU5BIENvZGUgU2lnbmluZyBDQSAy","whitelist":false,"
attachment":{"hash":"5a4b2dc41430a1c37846768f9ed9f04a7107d359857715f5554bd632169998ee","size":2101,"filename":"G7K9EGaf5R7AraL3XsZSjPH6XvzQTbq95skwp70Gnx4=.pem","location":"security-state-staging/intermediates/c5775c4d-5958-4b2b-83ff-e5631228bb61.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G7K9EGaf5R7AraL3XsZSjPH6XvzQTbq95skwp70Gnx4=","crlite_enrolled":false,"id":"a366d93c-802b-490b-b7a2-ece154bf2242","last_modified":1559867069830},{"schema":1559867055312,"derHash":"9x2jKCMcMNfjwFnGJhQj0QxP8sjrkuuQk6XZr3Fgq1U=","subject":"CN=Democritus University of Thrace CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGDMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxLjAsBgNVBAMTJURlbW9jcml0dXMgVW5pdmVyc2l0eSBvZiBUaHJhY2UgQ0EgUjE=","whitelist":false,"attachment":{"hash":"c43aa72137f3367b18b9c9cdb80ca11d2b08d6aba913f5f508664257f1537f20","size":2536,"filename":"gPfhVfTSpL0dgTS2T3BMSUx
NDeNWIjEDX2cYu3mNZOA=.pem","location":"security-state-staging/intermediates/daaa7c64-7a3f-43f5-96ea-26752c457e1f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gPfhVfTSpL0dgTS2T3BMSUxNDeNWIjEDX2cYu3mNZOA=","crlite_enrolled":true,"id":"9a504e2c-d2ab-45f2-85da-d3bbb9ae038c","last_modified":1559867056099},{"schema":1559867028528,"derHash":"opwQSxAMOnkzRz5i5L5jcdZToWBNBO2q0CyVgGBlzuM=","subject":"CN=Advanced eIDAS Class2 e-Szigno CA 2016,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGHMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xHDAaBgNVBGEME1ZBVEhVLTIzNTg0NDk3LTItNDExLzAtBgNVBAMMJkFkdmFuY2VkIGVJREFTIENsYXNzMiBlLVN6aWdubyBDQSAyMDE2","whitelist":false,"attachment":{"hash":"bcff9a806f140a24db8d80fb25e53c8830ceeeeaad81257e333c72d97c0070d8","size":2597,"filename":"cnBaSiDjhxiyXuUvokBKGtmAg7IeqDnVkrWBvwTBrJU=.pem","location":"security-state-staging/intermediates/9fcf94ff-9fb8-4a24-a227-cc9c133af787.pem","mimetype":"application/x-pem-file"},"pubKeyHas
h":"cnBaSiDjhxiyXuUvokBKGtmAg7IeqDnVkrWBvwTBrJU=","crlite_enrolled":false,"id":"312fdb56-c1ae-466b-92aa-cce0b03303a3","last_modified":1559867029341},{"schema":1559867026115,"derHash":"TZYa7g0t0K30M7SqwmHOWHFmXPOfyhtIOK5mINpoUEY=","subject":"CN=HARICA Qualified Natural Entities ECC SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGdMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTE3MDUGA1UEAwwuSEFSSUNBIFF1YWxpZmllZCBOYXR1cmFsIEVudGl0aWVzIEVDQyBTdWJDQSBSMg==","whitelist":false,"attachment":{"hash":"c5cfa630e56da489c7904c80eb445823e31980801b41160832fdce4a344a2109","size":1418,"filename":"cnhqpBVFEnKDZQ8sXe9NIGzIRWdFqCxZ68tJNsX30s0=.pem","location":"security-state-staging/intermediates/5540f483-9acf-43cb-991a-4867bc3a6abc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cnhqpBVFEnKDZQ8sXe9NIGzIRWdFqCxZ68tJNsX30s0=","crlite_enrolled":false,"id":"
71f797a0-3380-4843-9f9a-7aba5ecb9a32","last_modified":1559867026905},{"schema":1559866996817,"derHash":"kUfDjgO0bIzl3dsCyqKTLx4WdcCgAVKRODNu0Q2ZmDo=","subject":"CN=COMODO RSA Domain Validation Secure Server CA 3,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGSMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE4MDYGA1UEAxMvQ09NT0RPIFJTQSBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENBIDM=","whitelist":false,"attachment":{"hash":"3ba031befb11cb2e743b864c59c22110bcfd40f33272315977867894ca4b1fa5","size":2158,"filename":"InQsVwxFxCARGa9oRQJcZVg2VPAXkUYSVkDc3jhuVUM=.pem","location":"security-state-staging/intermediates/ea43abf3-9b67-42be-94ae-a65fa4d80a69.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"InQsVwxFxCARGa9oRQJcZVg2VPAXkUYSVkDc3jhuVUM=","crlite_enrolled":false,"id":"d35555ee-80e5-40db-a2ef-82628963df98","last_modified":1559866997668},{"schema":1559866987126,"derHash":"Ak8WKx0J9q
CGjDi0yLQlfB7qbFoxWJQW1SDPFiSRfrM=","subject":"CN=.NET Foundation Projects Code Signing CA,O=.NET Foundation,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRgwFgYDVQQKEw8uTkVUIEZvdW5kYXRpb24xMTAvBgNVBAMTKC5ORVQgRm91bmRhdGlvbiBQcm9qZWN0cyBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"fd0dab3f4c0a11b4e19fa79479ab2bfa7f47262b7b73263a5fdd5c73368352dd","size":1642,"filename":"OosLbidguElYKU6vSGfwNmwHxjVMbSr5S9pcbc5E6I0=.pem","location":"security-state-staging/intermediates/61ff11b3-dfff-4ceb-b1d4-cfc06f31e971.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OosLbidguElYKU6vSGfwNmwHxjVMbSr5S9pcbc5E6I0=","crlite_enrolled":false,"id":"05e74429-ac3c-4843-b05d-b405a1eebf3d","last_modified":1559866987914},{"schema":1559866984705,"derHash":"EdkzDRojmFCN1Q0wlOsosbRJANmSj4wisl73p4G9tAM=","subject":"CN=SecureTrust Organization Validation CA\\, Level 1,O=SecureTrust,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGCMTgwNgYDVQQDEy9TZWN1cmVUcnVzdCBPcmdhbml6YXRpb24gVmFsaWRhdGlvbiBDQSwgTGV2
ZWwgMTEUMBIGA1UEChMLU2VjdXJlVHJ1c3QxEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"2fbb26d89a7df4499089ee4d2d7d54042f375261e865316c51caa6ea3d367c5f","size":1642,"filename":"naxobvdvRxrUbxomHwj81l5L4m0vZobqUIuxo5hwUQY=.pem","location":"security-state-staging/intermediates/db3a6f95-518e-4c87-a822-e3be67b873a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"naxobvdvRxrUbxomHwj81l5L4m0vZobqUIuxo5hwUQY=","crlite_enrolled":false,"id":"0446d2af-40a8-49d1-b3fe-9e83881afe72","last_modified":1559866985488},{"schema":1559866981460,"derHash":"70R46wlMSPuf6soJc2JwSZylLrBOP47kwbLtyZYDmP0=","subject":"CN=AlwaysOnSSL CA - G1,OU=Domain Validated SSL,O=CertCenter AG,C=DE","subjectDN":"MGIxCzAJBgNVBAYTAkRFMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEcMBoGA1UEAxMTQWx3YXlzT25TU0wgQ0EgLSBHMQ==","whitelist":false,"attachment":{"hash":"1040fe16193b9f02fff18e80e4c535f43ee66775f4e96c4201662bd96f48aa79","size"
:1882,"filename":"YtTxIzDWQbqdohOzNgNqrqMUDSKPiJZV2NK7zUOskPo=.pem","location":"security-state-staging/intermediates/c40d000c-7f78-42cf-9cf1-975d8ebb0b77.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YtTxIzDWQbqdohOzNgNqrqMUDSKPiJZV2NK7zUOskPo=","crlite_enrolled":false,"id":"c979bd2e-d167-46e9-8799-de7753f057f0","last_modified":1559866982272},{"schema":1559866974197,"derHash":"W7I4LSDgmuVrTzpRV4OPe65J5C485TSE1m7rLAdH70o=","subject":"CN=GlobalSign Extended Validation CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGIxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTgwNgYDVQQDEy9HbG9iYWxTaWduIEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgLSBTSEEyNTYgLSBHMg==","whitelist":false,"attachment":{"hash":"3497281a6231e63615ec1be2b86c286a4a28fe2dd8a949446fcda3829105d665","size":1573,"filename":"LvRiGEjRqfzurezaWuj8Wie2gyHMrW5Q06LspMnox7A=.pem","location":"security-state-staging/intermediates/8908cf91-36bb-46af-a060-a0d350cf371a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"L
vRiGEjRqfzurezaWuj8Wie2gyHMrW5Q06LspMnox7A=","crlite_enrolled":false,"id":"422c153b-2663-4f06-8d24-a04ce31d1da3","last_modified":1559866974990},{"schema":1559866972593,"derHash":"3SM1XGHVmXBCMARyl5XK73ev2zl2enlXQNTgTLYVipk=","subject":"CN=SecureTrust Extended Validation CA\\, Level 1,O=SecureTrust,L=Chicago,ST=Illinois,C=US","subjectDN":"MH4xNDAyBgNVBAMTK1NlY3VyZVRydXN0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EsIExldmVsIDExFDASBgNVBAoTC1NlY3VyZVRydXN0MRAwDgYDVQQHEwdDaGljYWdvMREwDwYDVQQIEwhJbGxpbm9pczELMAkGA1UEBhMCVVM=","whitelist":false,"attachment":{"hash":"d0105c5ecad0b2ab41480518899e2653e240f06b4a8927ca3d5283c60f63c72e","size":1634,"filename":"DfrsmfuM5QjUozBeqZ75qybJwEDwRIG64DTyM3Kx5Wg=.pem","location":"security-state-staging/intermediates/b46f9bc3-cb55-4302-b52b-e519808c0128.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DfrsmfuM5QjUozBeqZ75qybJwEDwRIG64DTyM3Kx5Wg=","crlite_enrolled":false,"id":"110bade2-6494-40e6-869c-71f45a348718","last_modified":1559866973381},{"schema":155986
6970155,"derHash":"zx6hXcnAWrxyrw5ixI2TQ0rgJxsapDGL41RBJtJLYYQ=","subject":"CN=Certum Extended Validation CA,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGCMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSYwJAYDVQQDEx1DZXJ0dW0gRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"e34ed85d8f7cd8d8572bc535cef388fdeca726b0b1f570db12ecb2c658c3cfaf","size":1727,"filename":"M9jfvUTOEXqakcClNZh0xICWc12quCpR9R8l41FetpI=.pem","location":"security-state-staging/intermediates/aa0b4687-ec1c-483c-878f-31363ebb0565.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M9jfvUTOEXqakcClNZh0xICWc12quCpR9R8l41FetpI=","crlite_enrolled":false,"id":"52a1bed3-2ae3-4c96-8566-936ef8a25df3","last_modified":1559866970939},{"schema":1559866925659,"derHash":"PUUR0KgKqUmm2ZslOhc0cXl8RFkYemMp5zbDfLVJPkY=","subject":"CN=emSign ECC Device CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","su
bjectDN":"MFwxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEiMCAGA1UEAxMZZW1TaWduIEVDQyBEZXZpY2UgQ0EgLSBDMw==","whitelist":false,"attachment":{"hash":"01af63ee9e2b37ec4c8865ff21ae0e4cdb096992d7907932ef24acf8eedfdc46","size":1098,"filename":"bpFe8tgoaUQ4GlAAa0fUVmVkLEKAO1rs9xELs8ndVnE=.pem","location":"security-state-staging/intermediates/1d4a8c13-e9b9-41ba-ab80-6e38c400e23f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bpFe8tgoaUQ4GlAAa0fUVmVkLEKAO1rs9xELs8ndVnE=","crlite_enrolled":false,"id":"e7091d6a-54ab-4e1a-ace6-0cf33cabe180","last_modified":1559866926464},{"schema":1559866729252,"derHash":"CtanM0paI8mGmA9v7NJQBrVjoLbxvKplwDRbotlpKNM=","subject":"CN=SGN FISGLOBAL PUBLIC CA,OU=Class 2 Managed PKI Individual Subscriber CA,O=Fidelity National Information Services\\, Inc.,C=US","subjectDN":"MIGdMQswCQYDVQQGEwJVUzE1MDMGA1UEChMsRmlkZWxpdHkgTmF0aW9uYWwgSW5mb3JtYXRpb24gU2VydmljZXMsIEluYy4xNTAzBgNVBAsTLENsYXNzIDIgTWFuYWdlZCBQS0kgSW5kaXZpZHVhbCBTdWJ
zY3JpYmVyIENBMSAwHgYDVQQDExdTR04gRklTR0xPQkFMIFBVQkxJQyBDQQ==","whitelist":false,"attachment":{"hash":"0abf8df1e687f2286bcfbc92d9bfc4d0d5a85f3deab34f15b0928b32afd8f3c5","size":2064,"filename":"tjF4OWI3FI1EgkyujCVcvW3y0P7Ff83RiLHthEN0kg4=.pem","location":"security-state-staging/intermediates/2f6e2f02-425a-4545-a425-4709a1bf2225.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tjF4OWI3FI1EgkyujCVcvW3y0P7Ff83RiLHthEN0kg4=","crlite_enrolled":false,"id":"25fce179-8c18-4b02-96e2-d10b51c7103d","last_modified":1559866730048},{"schema":1559866635925,"derHash":"eKle2CGAocM6nzTtt15ndP1Ltzqix8QSFFPdtifbG68=","subject":"CN=GeoTrust Code Signing CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGEdlb1RydXN0IENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"0ebb76cc437a4875e1965d802d1ef4116c3f64f24eec194afb86a70ad1667e59","size":1869,"filename":"W2U41SQHEtuuIcPdtOMy4IlYK
K8SkwxCszZpM88De1Y=.pem","location":"security-state-staging/intermediates/c65c285e-2d6e-46de-95f1-d00412600e1b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"W2U41SQHEtuuIcPdtOMy4IlYKK8SkwxCszZpM88De1Y=","crlite_enrolled":false,"id":"29f9902f-3092-43f3-9002-cb3213388a72","last_modified":1559866636749},{"schema":1559866615732,"derHash":"0fJlasg4JzmjsIfEerXKuUWjLxYrYUnDCHg8fgaviug=","subject":"CN=TeliaSonera Email CA v4,O=TeliaSonera,C=SE","subjectDN":"MEUxCzAJBgNVBAYTAlNFMRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEgMB4GA1UEAwwXVGVsaWFTb25lcmEgRW1haWwgQ0EgdjQ=","whitelist":false,"attachment":{"hash":"50a551c554a5b7ee132109ae7bf90dc4b34f3526462e40e5e30612608a8a6257","size":2528,"filename":"t0Th3Tcrbh3qBKdPTiMoiViMapdZEGG29yWyhWFOnu8=.pem","location":"security-state-staging/intermediates/a4ac8e27-46ae-4971-8848-eb9b6cfdfa8e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"t0Th3Tcrbh3qBKdPTiMoiViMapdZEGG29yWyhWFOnu8=","crlite_enrolled":false,"id":"f80be745-7d54-490b-8882-57a4fbcdda3f"
,"last_modified":1559866616522},{"schema":1559866583346,"derHash":"3GxErIo81cNFEnP0QxUmsu9mYGLudjJYqSj2C9COOf4=","subject":"CN=GlobalSign ECC384 SSL CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1HbG9iYWxTaWduIEVDQzM4NCBTU0wgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"e381db75fa5b615dfa1e287a661d1ef2ff0990637741a94dcc8712b342a4f1a8","size":1146,"filename":"LhF0h0iYJokyuUHZnRxfXT7YSYW3qA1meoPEmJTNIfU=.pem","location":"security-state-staging/intermediates/b8ef29b4-3d13-4379-ac25-f77f41bfebe1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LhF0h0iYJokyuUHZnRxfXT7YSYW3qA1meoPEmJTNIfU=","crlite_enrolled":false,"id":"21d88639-9ac9-4590-834c-f2ca7f76d6a7","last_modified":1559866584144},{"schema":1559866569358,"derHash":"aZ1Ut0gqXTKTMeoEFcwu3NYP2gHRnnHQVBlrzgZ3c1w=","subject":"CN=GlobalSign Organization Validation CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBH
bG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"2503aecef7682dc86265404bb3212730e5bfa9316dbc827331274d72deee9383","size":1634,"filename":"19e9lxa6ojidVP5dVZZuTl4VDK62HtqIUx9aA4Kc3aw=.pem","location":"security-state-staging/intermediates/d382ff16-ea91-4cd3-a050-90c8d6613505.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"19e9lxa6ojidVP5dVZZuTl4VDK62HtqIUx9aA4Kc3aw=","crlite_enrolled":true,"id":"018fd818-2416-4ecf-bd00-0eae97797a59","last_modified":1559866570149},{"schema":1559866548393,"derHash":"2eDGSrJ6ZNeczPQqNOx1olGn5UM1PBnphKcOsvVGzf8=","subject":"CN=GeoTrust SHA256 SSL CA,O=GeoTrust Inc.,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR8wHQYDVQQDExZHZW9UcnVzdCBTSEEyNTYgU1NMIENB","whitelist":false,"attachment":{"hash":"41395f394b5b7a1a1e7b37a2168f0c8b0544a4478ce5c008e2b0663391ae26c1","size":1715,"filename":"PuXtzNBJoFElmIPIBszvOE5GbIMi7uXkODinPrxfy5U=
.pem","location":"security-state-staging/intermediates/52586f92-f320-4c76-aaa4-6210328fc3c5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PuXtzNBJoFElmIPIBszvOE5GbIMi7uXkODinPrxfy5U=","crlite_enrolled":true,"id":"af213913-9965-48ef-8e0e-aed1b914c7c8","last_modified":1559866549194},{"schema":1559866541061,"derHash":"94rk1tq8dGQEkKrjY3V3p3LjzCffMiuWnDCXlVf1kg0=","subject":"SERIALNUMBER=201809,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODA5","whitelist":false,"attachment":{"hash":"d046cdd580c6ff2d0057e1c6da6748bdb7c41b15d2ac26075435915b2a31a78e","size":2333,"filename":"fjrmK24DSG4huN9mrwx93lBvNqivEcAx2KuPtpwutKQ=.pem","location":"security-state-staging/intermediates/a1046294-5e59-48a1-aff1-9aa052f00742.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fjrmK24DSG4huN9mrwx93lBvNqivEcAx2KuPtpwutKQ=","crlite_enrolled":fal
se,"id":"4ab2e721-a85d-44aa-9af2-f0c18f2c3671","last_modified":1559866541896},{"schema":1559866535109,"derHash":"UVh8hnv2bzXs5VSgjgpBwTuLvZtZ0mLSBKcDCaZyvuY=","subject":"CN=QuoVadis QVRCA1G3 SSL ICA,O=QuoVadis Limited,C=BM","subjectDN":"MEwxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSIwIAYDVQQDDBlRdW9WYWRpcyBRVlJDQTFHMyBTU0wgSUNB","whitelist":false,"attachment":{"hash":"461a8ce2869e6d66752413bc1efe37ae1166b3ddb02f5fd89ee6f16b8ab72340","size":2381,"filename":"qHlqfHd5vL1EFqEmnKfLFiwdoWaMNSlifKAdh9Bgr6g=.pem","location":"security-state-staging/intermediates/796036c7-0924-44a1-8f29-5c91b93cfd73.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qHlqfHd5vL1EFqEmnKfLFiwdoWaMNSlifKAdh9Bgr6g=","crlite_enrolled":true,"id":"8983e814-f99a-4bfe-b043-6a5194bef244","last_modified":1559866535949},{"schema":1559866454656,"derHash":"16BtRir8gNcRg9lKOYstzIJYNefGbaXkVAVXLwSwWl0=","subject":"CN=Actalis Domain Validation Server CA G2,O=Actalis S.p.A./03358520967,L=Ponte San Pietro,ST=Ber
gamo,C=IT","subjectDN":"MIGQMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEjMCEGA1UECgwaQWN0YWxpcyBTLnAuQS4vMDMzNTg1MjA5NjcxLzAtBgNVBAMMJkFjdGFsaXMgRG9tYWluIFZhbGlkYXRpb24gU2VydmVyIENBIEcy","whitelist":false,"attachment":{"hash":"0199eefe8b3b2e90fd118ce82599499a60c5ed728bed0078537ce1245a0de359","size":2320,"filename":"MmeNHRDuDHyx0vNfPkV0ZBTuO5ScnOMjw2AkNv1Fs0c=.pem","location":"security-state-staging/intermediates/9ddd3d98-2360-458a-af24-f87fae1c19de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MmeNHRDuDHyx0vNfPkV0ZBTuO5ScnOMjw2AkNv1Fs0c=","crlite_enrolled":true,"id":"fe4ab240-fcee-45f1-b8d0-1b25ebe22007","last_modified":1559866455447},{"schema":1559866449762,"derHash":"vRk8R15OZ5OL7zQSK5i1WKKILn7ZQ2mmywETIO8VYjw=","subject":"CN=AlwaysOnSSL TLS ECC CA G1,OU=Domain Validated SSL,O=CertCenter AG,C=DE","subjectDN":"MGgxCzAJBgNVBAYTAkRFMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEiMCAGA1UEAxMZQWx3YXlzT25TU0wgVExTI
EVDQyBDQSBHMQ==","whitelist":false,"attachment":{"hash":"499064f03f4574c2c427e17330ae382a5058acecff6c7f5b7cbdc36b9933961b","size":1175,"filename":"0W9t3LKpNLN0CxCis6AJXuaxxouX1FIp8IEuXgow59U=.pem","location":"security-state-staging/intermediates/3d30c347-f98b-4558-b56e-baf0b4674e1a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0W9t3LKpNLN0CxCis6AJXuaxxouX1FIp8IEuXgow59U=","crlite_enrolled":false,"id":"6362cd69-7d81-45cb-a636-f824de74bb36","last_modified":1559866450581},{"schema":1559866428654,"derHash":"81DahhtR0XBWfbzg3nv2a7M0DfxFliFjENRmK8HeoFg=","subject":"CN=CertAssure RSA Code Signing CA,O=CertAssure Inc.,L=San Jose,ST=CA,C=US","subjectDN":"MHAxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTERMA8GA1UEBxMIU2FuIEpvc2UxGDAWBgNVBAoTD0NlcnRBc3N1cmUgSW5jLjEnMCUGA1UEAxMeQ2VydEFzc3VyZSBSU0EgQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"d08d74bc10327226964aa652c768fce52a6591a2b4862e85a9d609f39ca1042b","size":2105,"filename":"weu0ISLSXTD6wlo6q1m3T52id0ynkK2BySe0U6d6YY0=.pem"
,"location":"security-state-staging/intermediates/381e9263-c700-4217-b439-38ec819aa09a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"weu0ISLSXTD6wlo6q1m3T52id0ynkK2BySe0U6d6YY0=","crlite_enrolled":false,"id":"a9831a62-e083-46ea-bf4e-f22664378357","last_modified":1559866429443},{"schema":1559866415399,"derHash":"mUQsj4OjxQkMpQwcCx3ksy7UGP8Kp8MkDpEjAVnz578=","subject":"CN=GDCA TrustAUTH R4 IV SSL CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MG4xCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJDAiBgNVBAMMG0dEQ0EgVHJ1c3RBVVRIIFI0IElWIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"c9c27dde9ab53fa7533998d21fe575c8d337e49fedce536ed71cebe74d6a82cb","size":2052,"filename":"h9ljtPIsvf1wnqfE3LU5OJSEC20BaNan3CxC8wbqBnI=.pem","location":"security-state-staging/intermediates/b5bec3ea-ca92-493c-af9a-8fe3ef022434.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"h9ljtPIsvf1wnqfE3LU5OJSEC20BaNan3CxC8w
bqBnI=","crlite_enrolled":false,"id":"ae50a764-96b4-4d80-b152-ecb7f2d01363","last_modified":1559866416201},{"schema":1559866398418,"derHash":"Xey2HOk6UEC1tqToEdDlxuDxYW4MiZB3hlAUT7EdJXw=","subject":"CN=YourNet SSL for business,O=FreeBit Co.\\,Ltd.,C=JP","subjectDN":"MEsxCzAJBgNVBAYTAkpQMRkwFwYDVQQKExBGcmVlQml0IENvLixMdGQuMSEwHwYDVQQDExhZb3VyTmV0IFNTTCBmb3IgYnVzaW5lc3M=","whitelist":false,"attachment":{"hash":"9280f070bd7ccd133be66b2af02627550abac320372a484ed962540661f58759","size":1492,"filename":"qnqdzr4K7xpxYew1TDa1ckxZsejonO8Q8GR4TeQmBYw=.pem","location":"security-state-staging/intermediates/0656eeb9-3387-4f80-bf11-98daf8e669e9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qnqdzr4K7xpxYew1TDa1ckxZsejonO8Q8GR4TeQmBYw=","crlite_enrolled":false,"id":"2df52334-2163-4a35-bb33-5f7f57df2d91","last_modified":1559866399208},{"schema":1559866372407,"derHash":"T9b6UnFX7qRjaJ16TCuTTvIiJ5clQTiT2YRyQshcqd8=","subject":"CN=SHECA RSA Extended Validation Server CA,O=UniTrust,C=CN","subj
ectDN":"MFIxCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEwMC4GA1UEAwwnU0hFQ0EgUlNBIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VydmVyIENB","whitelist":false,"attachment":{"hash":"b58523d4da82d8049eb9b4115799b963aab05526caa6f6e0040ca88e05ad2be8","size":2012,"filename":"dSFJXz4vHOWleaG1OgAbLF3rUHbSM2AR6Viu9xdSol8=.pem","location":"security-state-staging/intermediates/ca826164-049f-4c05-91f0-9b1e9243437b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dSFJXz4vHOWleaG1OgAbLF3rUHbSM2AR6Viu9xdSol8=","crlite_enrolled":true,"id":"346f5cdb-b18d-404b-86c1-ae1ab80747f8","last_modified":1559866373200},{"schema":1559866343126,"derHash":"FUxDPEkZKcXvaG6DjjI2ZKAOag2CLMyVj7TasD5JoI8=","subject":"CN=DigiCert SHA2 Secure Server CA,O=DigiCert Inc,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"6edb4a81fe4f8f9a18de8035d87dad2c701e2cc7fc5ce3832cbdce4468bd31f3","size":1646,"filename":"5kJvNEMw0
KjrCAu7eXY5HZdvyCS13BbA0VJG1RSP91w=.pem","location":"security-state-staging/intermediates/2dade068-5ff0-4ce7-9d2b-b1fca06fd9e1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5kJvNEMw0KjrCAu7eXY5HZdvyCS13BbA0VJG1RSP91w=","crlite_enrolled":true,"id":"e8a303db-012e-4b10-88d9-69dca19e2f97","last_modified":1559866343924},{"schema":1559866340662,"derHash":"bQvW4awOw5juhTeQbZjzePx6tJweKWryMzdPpaJx2zQ=","subject":"CN=Symantec Class 3 Admin Intermediate Certificate Authority,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGRMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxQjBABgNVBAMTOVN5bWFudGVjIENsYXNzIDMgQWRtaW4gSW50ZXJtZWRpYXRlIENlcnRpZmljYXRlIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"cb4c35653304cbbfbea275d095cbd84d649442d21ab4c00b648177f91feb4d65","size":2194,"filename":"DIqmg6q0EEYaGDu2kzw3JDDctRJMyX5PRKKp2nBoL5I=.pem","location":"security-state-staging/intermediates/353215d3-c3a1-49c1
-ba8b-cb6140386874.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DIqmg6q0EEYaGDu2kzw3JDDctRJMyX5PRKKp2nBoL5I=","crlite_enrolled":false,"id":"366de8fc-cf57-431a-ba80-da16e22073d1","last_modified":1559866341455},{"schema":1559866293718,"derHash":"7gIE40wLTUXMg5zzuQFc7slGo2Yc8r8QlyM5Qmxg6Ak=","subject":"CN=SECOM Passport for Member PUB CA10,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGNMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSswKQYDVQQDEyJTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTEw","whitelist":false,"attachment":{"hash":"d95bc4e2ec72de93175628906114d8bd0f3ff59ffce75734d73b793fa608330a","size":1727,"filename":"XDUzAHVq4IiaHQw3QSgU1eRxAmLfVjwgS3LDYc5B1Rs=.pem","location":"security-state-staging/intermediates/2f5b94f0-6f0d-4e3d-b050-b1bff1646988.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XDUzAHVq4IiaHQw3QSgU1eRxAmLfVjwgS3LDYc5B1R
s=","crlite_enrolled":false,"id":"fdb09588-35e0-4e80-b131-9a36bdcb8201","last_modified":1559866294504},{"schema":1559866270982,"derHash":"EoYXPm8BAve90ywvgwkQlTSJvyLBYpXYTdkKPaE3Fko=","subject":"CN=COMODO SHA-2 Pro Series Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGLMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDExMC8GA1UEAxMoQ09NT0RPIFNIQS0yIFBybyBTZXJpZXMgU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"854a130598ea11463a70a791d66099b64bccbb45f4ed76af30c587e4646f7d96","size":1707,"filename":"4gSqIYIbYqiQ1NfKCAfvkzCzqmOipsGL9CFJJdH7Ms4=.pem","location":"security-state-staging/intermediates/9b47dd14-9620-411c-bf2a-407266084564.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4gSqIYIbYqiQ1NfKCAfvkzCzqmOipsGL9CFJJdH7Ms4=","crlite_enrolled":true,"id":"6f99857c-e0a6-49e1-9764-895a594d08cd","last_modified":1559866271774},{"schema":1559866232465,"de
rHash":"TApYiMNKoBt0X066JoaWssyz9KoxyO3LOv6PqEy3TME=","subject":"CN=iShare Medical Direct Intermediate CA,O=iShare Medical,C=US","subjectDN":"MFYxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5pU2hhcmUgTWVkaWNhbDEuMCwGA1UEAxMlaVNoYXJlIE1lZGljYWwgRGlyZWN0IEludGVybWVkaWF0ZSBDQQ==","whitelist":false,"attachment":{"hash":"16347dce0fe6fabddcac6b1ee3422faca2c7a11714ff833f84a2a28c0cd1e616","size":2166,"filename":"yCqFvFSoWlrlSkhYTl28RzjG38okJneuXy8b6cUfEV0=.pem","location":"security-state-staging/intermediates/b7278ac4-4783-40b3-8817-affe98a900a5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yCqFvFSoWlrlSkhYTl28RzjG38okJneuXy8b6cUfEV0=","crlite_enrolled":false,"id":"290cdd36-d7c6-4c5b-aaee-b3f6b84c3e6b","last_modified":1559866233281},{"schema":1559866219394,"derHash":"qMCpKw2Q6CFszKNMGhaDs060dY1GDIksqMUSqKKswI8=","subject":"CN=Hostpoint RSA CA,OU=Domain Validated SSL,O=Hostpoint AG,C=CH","subjectDN":"MF4xCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxIb3N0cG9pbnQgQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRkw
FwYDVQQDExBIb3N0cG9pbnQgUlNBIENB","whitelist":false,"attachment":{"hash":"bd0b77e1ad7c766478cf2792f2390fc6dbc81b708a0c71c36c53e208635a60a4","size":1670,"filename":"KdhTtQeOQpuAPS1eltTuWsDPY1eewAMFmlvc5UIbk4k=.pem","location":"security-state-staging/intermediates/b3c11b52-e6f8-45e1-ae00-9da7044abefc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KdhTtQeOQpuAPS1eltTuWsDPY1eewAMFmlvc5UIbk4k=","crlite_enrolled":false,"id":"62c93f86-ae45-4b99-a827-2170f2416255","last_modified":1559866220196},{"schema":1559866176457,"derHash":"GUzCtbBkk8DvCwqfqDdvlYviQqJ0ral0rLyRAjNoeNw=","subject":"CN=DOMENY SSL DV Certification Authority,O=DOMENY.PL sp. z o.o,L=Krak\u00f3w,ST=Ma\u0142opolskie,C=PL","subjectDN":"MIGEMQswCQYDVQQGEwJQTDEVMBMGA1UECAwMTWHFgm9wb2xza2llMRAwDgYDVQQHDAdLcmFrw7N3MRwwGgYDVQQKExNET01FTlkuUEwgc3AuIHogby5vMS4wLAYDVQQDEyVET01FTlkgU1NMIERWIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"4ae7713a7c33e45405293b35aa867f795213ba9becc489f35146c71f51673521",
"size":2154,"filename":"c4Z4xm0MVOlxzaOy4OXC86lTgsofdZML4CYOmaSpWYM=.pem","location":"security-state-staging/intermediates/8ecc0bf4-31de-41ef-b195-d3d4e799c302.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"c4Z4xm0MVOlxzaOy4OXC86lTgsofdZML4CYOmaSpWYM=","crlite_enrolled":true,"id":"d5ea596c-6fe9-45d3-84b0-0f1eb9ea2b08","last_modified":1559866177285},{"schema":1559866168360,"derHash":"znrcGXdXpS5pogFMzgPZgGMlAnZHQsKSPXOAVo4hAKY=","subject":"CN=E-Tugra Extended Validated CA,OU=E-Tu\u011fra Sertifikasyon Merkezi,O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e.,L=Ankara,C=TR","subjectDN":"MIGxMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMUAwPgYDVQQKDDdFLVR1xJ9yYSBFQkcgQmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXptZXRsZXJpIEEuxZ4uMScwJQYDVQQLDB5FLVR1xJ9yYSBTZXJ0aWZpa2FzeW9uIE1lcmtlemkxJjAkBgNVBAMMHUUtVHVncmEgRXh0ZW5kZWQgVmFsaWRhdGVkIENB","whitelist":false,"attachment":{"hash":"12ff7eb3fc7ad0d030464cfca8808d4239fab2f60c03f47a3f76ec1c962d10f8","size":2296,"filename":"CbsS
UO015uoyaPW3UoozNFDyIZuKJooRSCguLZLEHjg=.pem","location":"security-state-staging/intermediates/b4924736-081c-4006-83d9-18747abe70b7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CbsSUO015uoyaPW3UoozNFDyIZuKJooRSCguLZLEHjg=","crlite_enrolled":true,"id":"7c935540-4c03-4352-b768-16756b45aed8","last_modified":1559866169149},{"schema":1559866096673,"derHash":"pUK8oJxeRXnGGXdK5ZCCvOD4bSYcWnpaD2IXwQJ56nw=","subject":"CN=DigiCert SHA2 Assured ID CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBDQQ==","whitelist":false,"attachment":{"hash":"4e3c1ebfbeec02bf731c95b85a98fa732e6965367dac4484c3c1874f56b577ca","size":2247,"filename":"KFZYqX5VzrLyLTGNVQGlkHRFKrLkZ3UddPIGfeE7tKI=.pem","location":"security-state-staging/intermediates/73e8da81-d69e-4de2-ac9b-c40d075bd421.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KFZYqX5VzrLyLTGNVQGlkHRF
KrLkZ3UddPIGfeE7tKI=","crlite_enrolled":true,"id":"f2f88f3f-b9b1-45b6-a155-beb11a1c37aa","last_modified":1559866097495},{"schema":1559866042836,"derHash":"NlH5s2odqYMgDG7k787PpN78BZRmaJ2qGm22hKVMnns=","subject":"CN=Actalis Organization Validated Server CA G1,O=Actalis S.p.A./03358520967,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGVMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEjMCEGA1UECgwaQWN0YWxpcyBTLnAuQS4vMDMzNTg1MjA5NjcxNDAyBgNVBAMMK0FjdGFsaXMgT3JnYW5pemF0aW9uIFZhbGlkYXRlZCBTZXJ2ZXIgQ0EgRzE=","whitelist":false,"attachment":{"hash":"6abedb9881ea66af627c7960fe41956b260b02726a2719d0ac283185d97e16cf","size":2263,"filename":"pmKuxMFaLv7ve9PLjGilItvtdgTK9uISTaDGBZSO3kQ=.pem","location":"security-state-staging/intermediates/a33bcad3-47f9-4423-ab8e-92ad859cc5ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pmKuxMFaLv7ve9PLjGilItvtdgTK9uISTaDGBZSO3kQ=","crlite_enrolled":true,"id":"041225c6-347b-421b-89b7-20269162c1f4","last_modified":155
9866043641},{"schema":1559866037153,"derHash":"Pmk2hUsVb7sV7phEye47v5L4SSiXp3L5CSxS7ShQfr8=","subject":"SERIALNUMBER=201913,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTEz","whitelist":false,"attachment":{"hash":"14ef386b3d7bd03ea81423a233913c96bfeca45ba0cefee666bff7c27ba50b1e","size":2333,"filename":"Jsk0sModzjZIxYKO3IRJSdYqtPzqR6bbb8LX6PhSPwY=.pem","location":"security-state-staging/intermediates/2f6d5ee7-2efc-4fd2-aa08-a955d2c93f94.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Jsk0sModzjZIxYKO3IRJSdYqtPzqR6bbb8LX6PhSPwY=","crlite_enrolled":false,"id":"e795ec9e-893e-4bd9-9c1a-075665a007e8","last_modified":1559866037946},{"schema":1559866019917,"derHash":"ACfIUuagp06thEtfrCQ0zCSWaFPITOYyEkaIgbYWZl0=","subject":"CN=SMBC Certificate Authority CA2,OU=SMBC Authority,O=Sumitomo Mitsui Banking Corporation,C=JP","subjectDN":"M
H0xCzAJBgNVBAYTAkpQMSwwKgYDVQQKEyNTdW1pdG9tbyBNaXRzdWkgQmFua2luZyBDb3Jwb3JhdGlvbjEXMBUGA1UECxMOU01CQyBBdXRob3JpdHkxJzAlBgNVBAMTHlNNQkMgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IENBMg==","whitelist":false,"attachment":{"hash":"a2117111540332765fe1764c3bf9435092c6e93c8fe8ee65054259b3a4832ed3","size":1674,"filename":"8DUaRM2LbmS8cveWB1rUODjdayFFeT7IHpAqhCLVI4c=.pem","location":"security-state-staging/intermediates/af2004b4-f64d-4c8e-9247-07ccfeacefb4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8DUaRM2LbmS8cveWB1rUODjdayFFeT7IHpAqhCLVI4c=","crlite_enrolled":false,"id":"654df36c-da2e-4178-82ee-f75edff4129f","last_modified":1559866020722},{"schema":1559866009149,"derHash":"F1LCGdAzcBm8jBk0fJ8rvjcIH6bMGxsJoDdY5gwwfgk=","subject":"CN=Gehirn Managed Certification Authority - RSA DV,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIGCMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMTgwNgYDVQQDEy9HZWhpcm4gTWFuYWdlZCBDZXJ0aWZpY2F0aW9uIEF1dGh
vcml0eSAtIFJTQSBEVg==","whitelist":false,"attachment":{"hash":"2a599a3d41037f018b5b829d6ebee32d6e3022d7811d0629fc6a1ab8cedfbbce","size":2158,"filename":"SWuXVKtSHOw5ZPbQM2Hw49GYwfpJkXf6azkkNwpZ9TQ=.pem","location":"security-state-staging/intermediates/d88294ca-5505-4a98-9cda-33ec41b77048.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SWuXVKtSHOw5ZPbQM2Hw49GYwfpJkXf6azkkNwpZ9TQ=","crlite_enrolled":true,"id":"c2f8d5bf-b34e-4d22-b008-bc3dd0b9a6a4","last_modified":1559866009943},{"schema":1559865975116,"derHash":"ayP62JAYDDN7hkFV2uDem62e8L2njREvLL3D0CrReVY=","subject":"CN=NetLock \u00dczleti (Class B) Tan\u00fas\u00edtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIGpMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE3MDUGA1UEAwwuTmV0TG9jayDDnHpsZXRpIChDbGFzcyBCKSBUYW7DunPDrXR2w6FueWtpYWTDsw==","
whitelist":false,"attachment":{"hash":"573f7ca4199a4ab7b67cf4b5b1c8e25a89da7c93d3296ece5e8301e5bf64c39b","size":2182,"filename":"1YROuDznuNvrat3sL9gwGR124PRLocGQQWd6IoM50Ls=.pem","location":"security-state-staging/intermediates/5ae11eb3-59e2-4f2f-a3ad-09d610869295.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1YROuDznuNvrat3sL9gwGR124PRLocGQQWd6IoM50Ls=","crlite_enrolled":true,"id":"1a8145a6-66a3-4c40-914b-e027086ea091","last_modified":1559865975919},{"schema":1559865954402,"derHash":"bGniAWVkQOuYzQh1dkoe0ZAV7YxEJ2Aaypxor6iXOVk=","subject":"CN=Abbott Laboratories Secure Server CA,O=Abbott Laboratories Inc.,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMSEwHwYDVQQKExhBYmJvdHQgTGFib3JhdG9yaWVzIEluYy4xLTArBgNVBAMTJEFiYm90dCBMYWJvcmF0b3JpZXMgU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"eff2021a84dc350c344035f14d9ace98bd2aff4df26812ac44f35532c31dc995","size":1670,"filename":"WLek4rSUF1hqMCGoR58aNhDKwFpMOcmhWVSaGRqkM5Y=.pem","location":"security-state-staging/inter
mediates/fd41a272-a56d-4cc1-8ab0-48e779b64f93.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WLek4rSUF1hqMCGoR58aNhDKwFpMOcmhWVSaGRqkM5Y=","crlite_enrolled":false,"id":"dd1862ea-9ff3-42ff-907f-f83e355dd278","last_modified":1559865955200},{"schema":1559865922818,"derHash":"eBbHsFZrRng7HBXYoo2LDSDP6yCz0T95RG4VxKUckd8=","subject":"CN=Certum Extended Validation CA,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGCMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSYwJAYDVQQDEx1DZXJ0dW0gRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"0705626e2fe60aaf3f2b067419aa1d9994ec7c33fd5519e98851d2477d71ba8e","size":2430,"filename":"rxmDSIbuiNS8fzkHrqwb5gM8fGXYXY7Egq5fLYyEn4s=.pem","location":"security-state-staging/intermediates/ad1b09ec-5983-4577-b17f-3bcdc6f7349d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rxmDSIbuiNS8fzkHrqwb5gM8fGXYXY7Egq5fLYyE
n4s=","crlite_enrolled":true,"id":"a6162e7a-0ad4-4d74-9ccf-7528c89121b2","last_modified":1559865923624},{"schema":1559865909816,"derHash":"h6pxrwMuNr1p2vQBT8rY8nM6oA3quVkzWuOGbkttOh0=","subject":"CN=RapidSSL Enterprise CA,OU=For Internal Use Only,O=GeoTrust\\, Inc.,C=US","subjectDN":"MGcxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5HZW9UcnVzdCwgSW5jLjEeMBwGA1UECxMVRm9yIEludGVybmFsIFVzZSBPbmx5MR8wHQYDVQQDExZSYXBpZFNTTCBFbnRlcnByaXNlIENB","whitelist":false,"attachment":{"hash":"d814cbeb3bba9c4301c57cac75040699c4d480925c5650fee8c11fffffdc68df","size":1508,"filename":"NU79QJ5AFUOrmQDTq80lNzSOHvYG8jU1KQoGfjQbehg=.pem","location":"security-state-staging/intermediates/6a07c4a8-7692-4de3-b7e2-381dbbbffdb6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NU79QJ5AFUOrmQDTq80lNzSOHvYG8jU1KQoGfjQbehg=","crlite_enrolled":false,"id":"039f2d8c-c45f-47df-8c82-7db505c836b6","last_modified":1559865910620},{"schema":1559865898453,"derHash":"FRo1kbdl0Cw1nuycVu2N2tDFTnVqSX0Cv5efqN1dlbs=","subject":"CN=Catholic
Health Initiatives CA,OU=Orion Health Direct Secure Messaging,O=Catholic Health Initiatives,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEkMCIGA1UEChMbQ2F0aG9saWMgSGVhbHRoIEluaXRpYXRpdmVzMS0wKwYDVQQLEyRPcmlvbiBIZWFsdGggRGlyZWN0IFNlY3VyZSBNZXNzYWdpbmcxJzAlBgNVBAMTHkNhdGhvbGljIEhlYWx0aCBJbml0aWF0aXZlcyBDQQ==","whitelist":false,"attachment":{"hash":"ee6a309e0de6cb67ace3bdaab607e586d5285e59b539600424872e26eb2416c6","size":2304,"filename":"eGgIb9Mf8R2HbnNEy1RdxWcW2zycYmpZml33v8IU60Y=.pem","location":"security-state-staging/intermediates/cf1968f2-109b-48cb-b587-0b7b16705e3b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eGgIb9Mf8R2HbnNEy1RdxWcW2zycYmpZml33v8IU60Y=","crlite_enrolled":false,"id":"e21eb37a-004c-4f2f-b310-00ae5b96e7e5","last_modified":1559865899247},{"schema":1559865897655,"derHash":"wmfcEV1X3QImJ5s0bfGVPdLAeoXLSKDYmf1XJPWvaB8=","subject":"CN=Symantec Class 3 Extended Validation Code Signing CA - G3,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIG
RMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxQjBABgNVBAMTOVN5bWFudGVjIENsYXNzIDMgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDb2RlIFNpZ25pbmcgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"207fc06b42669c71ee04aa593840172f925d130cfd82a1c6286bbb57a47662ba","size":1902,"filename":"QVwcabwoERXIBspXIsZlwkJ7SmEfO8TMs3IiG5iwXM8=.pem","location":"security-state-staging/intermediates/303eb490-7274-4466-9fa5-888d4a682229.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QVwcabwoERXIBspXIsZlwkJ7SmEfO8TMs3IiG5iwXM8=","crlite_enrolled":false,"id":"43d4e068-b019-457b-a223-234db563b467","last_modified":1559865898440},{"schema":1559865883837,"derHash":"7toVugALAG6tSaIbvnafO6bOdckknwEU2N2ILfwPLBs=","subject":"CN=GoGetSSL Extended Validation CA SHA2,OU=GoGetSSL Certification Authority,O=EnVers Group SIA,C=LV","subjectDN":"MIGCMQswCQYDVQQGEwJMVjEZMBcGA1UECgwQRW5WZXJzIEdyb3VwIFNJQTEpMCcGA1UECwwgR29HZXRTU0wgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxLTArBgNVB
AMMJEdvR2V0U1NMIEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgU0hBMg==","whitelist":false,"attachment":{"hash":"3f571450d63eacb78406320bff9a534186fb3c5714e38ef5e9421cc30dd0f091","size":1752,"filename":"BPECx6wNq90p8gu0YpJ1Fc0Dx7h0SmkteDK5xDmXT5Y=.pem","location":"security-state-staging/intermediates/69c28a8d-33ee-4e47-bb72-44abfc083dca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BPECx6wNq90p8gu0YpJ1Fc0Dx7h0SmkteDK5xDmXT5Y=","crlite_enrolled":false,"id":"30f7ecb1-568f-400d-8562-fef6ac31428f","last_modified":1559865884636},{"schema":1559865881436,"derHash":"xhApyO7jzgh1XVYrtQxfdeDvhJIUlwsTvZkYU2fR0Rk=","subject":"CN=DigiCert Provisional Direct Med CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNVBAMTIkRpZ2lDZXJ0IFByb3Zpc2lvbmFsIERpcmVjdCBNZWQgQ0E=","whitelist":false,"attachment":{"hash":"9db67e54d72b0ed5cb3af0e6d5ae65878c009c049543ecb722e8c2429928a21d","size":2138,"filename":"qrhUgzehJ
mpLBJORSXw5Rr74Be05U1eHnv0PnDNXUX4=.pem","location":"security-state-staging/intermediates/2fdc0c6f-f377-4cd0-acf8-21d1f34ac6a5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qrhUgzehJmpLBJORSXw5Rr74Be05U1eHnv0PnDNXUX4=","crlite_enrolled":false,"id":"8ad399aa-03ed-477e-aefd-6f8675cf5313","last_modified":1559865882224},{"schema":1559865879001,"derHash":"V2XGaWoOtcgWRFcyPcQbYSmWHuXFWMEeygKagGdd4to=","subject":"CN=InCommon IGTF Server CA,OU=InCommon,O=Internet2,C=US","subjectDN":"MFYxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJbnRlcm5ldDIxETAPBgNVBAsTCEluQ29tbW9uMSAwHgYDVQQDExdJbkNvbW1vbiBJR1RGIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"adb731d717bfcd68bba75cde81004aa2c9510de557a9130c02d3f1b558d3dd61","size":2105,"filename":"eKK5WQ3iY2Qjww9Titbu9ylESXstB780TnTJBT7c0zI=.pem","location":"security-state-staging/intermediates/fc1eec87-d8f8-4300-91ea-b217ad53fb3b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eKK5WQ3iY2Qjww9Titbu9ylESXstB780TnTJBT7c0zI=","crlite_enrolled"
:true,"id":"bab3a8d0-faa9-4a2d-9faa-bf897b48540b","last_modified":1559865879785},{"schema":1559865877396,"derHash":"2OJppusIy8M3rWV4xyE1eHSEyZ0vsIzO0CnoBr4QQPw=","subject":"CN=GeoTrust ECC CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHTAbBgNVBAMTFEdlb1RydXN0IEVDQyBDQSAyMDE4","whitelist":false,"attachment":{"hash":"ed3ea6d09c5ea1ee4aff94776f7636c5caa4a1f898b7cf38a7a51186ce041b2e","size":1362,"filename":"A0W8sBH3jBrKa3ukj8kse0jYSSeQM5e5tb8obnMQvak=.pem","location":"security-state-staging/intermediates/d91f6034-4d0e-4712-b034-11eafafca044.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"A0W8sBH3jBrKa3ukj8kse0jYSSeQM5e5tb8obnMQvak=","crlite_enrolled":true,"id":"a4d953b4-251b-4c06-931a-1e3ed439794e","last_modified":1559865878190},{"schema":1559865862835,"derHash":"eFhUEwsU9vHun5hCV6urtiVbBajb77doDTNACsKP6Qk=","subject":"CN=certSIGN Code Signing CA Class 3 G2,OU=certSIGN Code Si
gning CA Class 3 G2,O=certSIGN,C=RO","subjectDN":"MHwxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEsMCoGA1UECxMjY2VydFNJR04gQ29kZSBTaWduaW5nIENBIENsYXNzIDMgRzIxLDAqBgNVBAMTI2NlcnRTSUdOIENvZGUgU2lnbmluZyBDQSBDbGFzcyAzIEcy","whitelist":false,"attachment":{"hash":"979d813e8beb4bc5b97e32b32670bc7d542475a2869e021c2f5258073fc2683f","size":1723,"filename":"JfGTViyEYla3GTtoAL7NpEIwzj14wMFgtWvcWICwEsM=.pem","location":"security-state-staging/intermediates/729b520d-7781-44fd-a627-50fb1479e236.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JfGTViyEYla3GTtoAL7NpEIwzj14wMFgtWvcWICwEsM=","crlite_enrolled":false,"id":"586b6f01-c7f7-4a5e-ba71-e7dca3e77add","last_modified":1559865863642}]}
\ No newline at end of file
+{"data":[{"schema":1613038646447,"derHash":"AzAobfNhLA6Wjc1RinoxbV4HkNHKMkuQaw7wF8C+Pqc=","subject":"CN=WoSign DV SSL CA,O=WoSign CA Limited,C=CN","subjectDN":"MEQxCzAJBgNVBAYTAkNOMRowGAYDVQQKDBFXb1NpZ24gQ0EgTGltaXRlZDEZMBcGA1UEAwwQV29TaWduIERWIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"a75ee51db3cb9c7a4b54e1099fdadd77ab4124acdb08f7ba375a7b614929984f","size":1691,"filename":"G_V-4AYI9XAkNjdk4SZqLrWkylfZbgPG1S4cNnAU1F4=.pem","location":"security-state-staging/intermediates/d43405c6-d4c4-41e3-baac-5b53fab6891e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G/V+4AYI9XAkNjdk4SZqLrWkylfZbgPG1S4cNnAU1F4=","crlite_enrolled":false,"id":"24d073eb-1380-4a6f-b7e1-f8821cd871c7","last_modified":1613051914944},{"schema":1612990167405,"derHash":"P2H4DHzQVrhJO+ROmXmaC7cPAbpi89UfZGvCdrG5WjE=","subject":"CN=PSW GROUP (ECC) OV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChFQ0MpIE9WIENB",
"whitelist":false,"attachment":{"hash":"e7d82692768b2794e477d38f8e3271c281dfe90261a14bfba0ef64fe28034f5e","size":1240,"filename":"VXaG8WOJDIeerycUKi_172jWyS0TrTMTpOCs-dvdVZM=.pem","location":"security-state-staging/intermediates/880b8025-ed2d-416c-8f55-1449ab4ea1b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VXaG8WOJDIeerycUKi/172jWyS0TrTMTpOCs+dvdVZM=","crlite_enrolled":false,"id":"bda23813-3d9a-48fd-b4e9-56ad249b43cb","last_modified":1612990731051},{"schema":1612990168863,"derHash":"puYUXPpzIrIt1vuvHfgzN4jbefGbEbaVz8kHtA0paQg=","subject":"CN=PSW GROUP (RSA) OV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChSU0EpIE9WIENB","whitelist":false,"attachment":{"hash":"89a81c5442a54c9e5195381aa5bf5118b69c785fe73b5919acc00fa7735b5960","size":2081,"filename":"XJxD3hWuTDkFb4_QXFPChkZ3hlp9UIhypa5Cf40iwOE=.pem","location":"security-state-staging/intermediates/6a71e6de-c8f9-49e0-9c0e-502ed
d1a9306.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XJxD3hWuTDkFb4/QXFPChkZ3hlp9UIhypa5Cf40iwOE=","crlite_enrolled":false,"id":"6a4533e4-8a59-4074-9053-0d72e8e0847b","last_modified":1612990731041},{"schema":1612990170347,"derHash":"BrtWd3HEJpFMGaY47cGACPWQG5KBSpd0v+iBW6t+puk=","subject":"CN=PSW GROUP (RSA) DV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChSU0EpIERWIENB","whitelist":false,"attachment":{"hash":"2309ba2120931c2bd1e257481f59a22880eb3ccb912c468a99cbe78779e2bab1","size":2081,"filename":"Yv80yzPUjOuufrMJGuItTe5sk6C7c0w4o5O_8F6HdQw=.pem","location":"security-state-staging/intermediates/278cef20-85ec-4a45-b0b8-3a5dc6846e0f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Yv80yzPUjOuufrMJGuItTe5sk6C7c0w4o5O/8F6HdQw=","crlite_enrolled":false,"id":"54fd4933-9970-4281-a7d4-51b0ef2ccc06","last_modified":1612990731030},{"schema":1612990171765,"derHash":"G4NI2aBj2IEPdz
Wz0gXEXb2EuzqHxnQ/4yKGMNvC1zs=","subject":"CN=PSW GROUP (ECC) DV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChFQ0MpIERWIENB","whitelist":false,"attachment":{"hash":"626cee21526231cf35b1c70dbeba777d80f68d2e3d5cf4fd81d3ef7fd3e88f2c","size":1240,"filename":"PmqkRAF1ZpNBGgE1fKwSFH2jXK5foG8fHryhWbon5ec=.pem","location":"security-state-staging/intermediates/c2ed546c-f2d6-4b24-b43d-73e4177d3d99.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PmqkRAF1ZpNBGgE1fKwSFH2jXK5foG8fHryhWbon5ec=","crlite_enrolled":false,"id":"58845907-aeea-43e8-8c44-d167ce488163","last_modified":1612990731019},{"schema":1612990173208,"derHash":"RJkQo/SqqB2u7RSgHPh/Mk/ogKh53feCjlXEd1iWIK4=","subject":"CN=PSW GROUP (RSA) EV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChSU0EpIEVWIENB","whitelist":false,"attachment":{"ha
sh":"4ef1ea74d0ed35541584683cd6b16a145fbbac5a0393fb3d086f0a2943e09085","size":2113,"filename":"NDJIxRHObvxpsBbETDEpHT9Zbz7P7Fm134T9ImWjIH4=.pem","location":"security-state-staging/intermediates/424bf228-4578-4443-a7de-d3595ca810ca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NDJIxRHObvxpsBbETDEpHT9Zbz7P7Fm134T9ImWjIH4=","crlite_enrolled":false,"id":"4fb8ad4a-6514-497a-9781-46458be04226","last_modified":1612990731009},{"schema":1612990174597,"derHash":"cZQ0Ojqs2mKaJMULZF+fDMTlGUJ3mqByAnapTyG/VfY=","subject":"CN=PSW GROUP (ECC) EV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChFQ0MpIEVWIENB","whitelist":false,"attachment":{"hash":"4d19cdf769fa665440c3421e63f272f8801ef322e8104d621a6fd9581c87fb55","size":1272,"filename":"scuMyj9NwSFH70ot_DBsYulkVhwaNFAbwDAK6FaE-io=.pem","location":"security-state-staging/intermediates/7a2066fe-0691-4cc1-9fa8-eff98ffb10e5.pem","mimetype":"applicatio
n/x-pem-file"},"pubKeyHash":"scuMyj9NwSFH70ot/DBsYulkVhwaNFAbwDAK6FaE+io=","crlite_enrolled":false,"id":"89df0ae6-6012-4879-99b7-2d958b6690c9","last_modified":1612990730997},{"schema":1612986596417,"derHash":"P2H4DHzQVrhJO+ROmXmaC7cPAbpi89UfZGvCdrG5WjE=","subject":"CN=PSW GROUP (ECC) OV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChFQ0MpIE9WIENB","whitelist":false,"attachment":{"hash":"e7d82692768b2794e477d38f8e3271c281dfe90261a14bfba0ef64fe28034f5e","size":1240,"filename":"VXaG8WOJDIeerycUKi_172jWyS0TrTMTpOCs-dvdVZM=.pem","location":"security-state-staging/intermediates/3154e7ce-e991-4878-9043-78d1cfafcb91.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VXaG8WOJDIeerycUKi/172jWyS0TrTMTpOCs+dvdVZM=","crlite_enrolled":false,"id":"f62ab8ab-ff98-421c-904c-7882c1471772","last_modified":1612987116318},{"schema":1612986597850,"derHash":"G4NI2aBj2IEPdzWz0gXEXb2EuzqHxnQ/4yKGMNvC1zs=","su
bject":"CN=PSW GROUP (ECC) DV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChFQ0MpIERWIENB","whitelist":false,"attachment":{"hash":"626cee21526231cf35b1c70dbeba777d80f68d2e3d5cf4fd81d3ef7fd3e88f2c","size":1240,"filename":"PmqkRAF1ZpNBGgE1fKwSFH2jXK5foG8fHryhWbon5ec=.pem","location":"security-state-staging/intermediates/9d4f6796-52a3-4545-81c8-176a4c5f8355.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PmqkRAF1ZpNBGgE1fKwSFH2jXK5foG8fHryhWbon5ec=","crlite_enrolled":false,"id":"6e77eee0-0c1d-4ec2-9edc-e3c9edf3dc12","last_modified":1612987116307},{"schema":1612986599280,"derHash":"puYUXPpzIrIt1vuvHfgzN4jbefGbEbaVz8kHtA0paQg=","subject":"CN=PSW GROUP (RSA) OV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChSU0EpIE9WIENB","whitelist":false,"attachment":{"hash":"89a81c5442a54c9e5195381aa5bf51
18b69c785fe73b5919acc00fa7735b5960","size":2081,"filename":"XJxD3hWuTDkFb4_QXFPChkZ3hlp9UIhypa5Cf40iwOE=.pem","location":"security-state-staging/intermediates/fd88e402-467b-4897-96f3-beae3fa9c6cf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XJxD3hWuTDkFb4/QXFPChkZ3hlp9UIhypa5Cf40iwOE=","crlite_enrolled":false,"id":"8413fadc-57b1-477d-a97c-450d25c5fb5f","last_modified":1612987116297},{"schema":1612986600724,"derHash":"RJkQo/SqqB2u7RSgHPh/Mk/ogKh53feCjlXEd1iWIK4=","subject":"CN=PSW GROUP (RSA) EV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChSU0EpIEVWIENB","whitelist":false,"attachment":{"hash":"4ef1ea74d0ed35541584683cd6b16a145fbbac5a0393fb3d086f0a2943e09085","size":2113,"filename":"NDJIxRHObvxpsBbETDEpHT9Zbz7P7Fm134T9ImWjIH4=.pem","location":"security-state-staging/intermediates/5db222f7-0ee8-4708-874f-0ccf1a1eb1bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NDJIxR
HObvxpsBbETDEpHT9Zbz7P7Fm134T9ImWjIH4=","crlite_enrolled":false,"id":"a139c99e-adbb-4531-abdc-4d4dc790b554","last_modified":1612987116286},{"schema":1612986602144,"derHash":"cZQ0Ojqs2mKaJMULZF+fDMTlGUJ3mqByAnapTyG/VfY=","subject":"CN=PSW GROUP (ECC) EV CA,O=PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChFQ0MpIEVWIENB","whitelist":false,"attachment":{"hash":"4d19cdf769fa665440c3421e63f272f8801ef322e8104d621a6fd9581c87fb55","size":1272,"filename":"scuMyj9NwSFH70ot_DBsYulkVhwaNFAbwDAK6FaE-io=.pem","location":"security-state-staging/intermediates/139b5165-7a9a-47cb-ad1b-c4b682d1859c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"scuMyj9NwSFH70ot/DBsYulkVhwaNFAbwDAK6FaE+io=","crlite_enrolled":false,"id":"c7424679-a9ee-4087-ace1-3338892ff8d9","last_modified":1612987116276},{"schema":1612986603624,"derHash":"BrtWd3HEJpFMGaY47cGACPWQG5KBSpd0v+iBW6t+puk=","subject":"CN=PSW GROUP (RSA) DV CA,O=
PSW GROUP GmbH & Co. KG,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMSAwHgYDVQQKDBdQU1cgR1JPVVAgR21iSCAmIENvLiBLRzEeMBwGA1UEAxMVUFNXIEdST1VQIChSU0EpIERWIENB","whitelist":false,"attachment":{"hash":"2309ba2120931c2bd1e257481f59a22880eb3ccb912c468a99cbe78779e2bab1","size":2081,"filename":"Yv80yzPUjOuufrMJGuItTe5sk6C7c0w4o5O_8F6HdQw=.pem","location":"security-state-staging/intermediates/3d1d5f49-03d1-496a-8c63-e794cc8e56e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Yv80yzPUjOuufrMJGuItTe5sk6C7c0w4o5O/8F6HdQw=","crlite_enrolled":false,"id":"692a7afe-4a2b-49dc-a76f-30a046239487","last_modified":1612987116265},{"schema":1612900699058,"derHash":"cj4fieqqwPVrn5OF8TEvbNvXVFQGl7pGNA3yrjDqWec=","subject":"CN=SSL.com High Assurance CA,OU=www.ssl.com,O=SSL.com,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRAwDgYDVQQKEwdTU0wuY29tMRQwEgYDVQQLEwt3d3cuc3NsLmNvbTEiMCAGA1UEAxMZU1NMLmNvbSBIaWdoIEFzc3VyYW5jZSBDQQ==","whitelist":false,"attachment":{"hash":"71002c2662ef686fd97b1ed39205f25720a2a54c2d5da1
8fc7df07bfe9b794d0","size":2121,"filename":"Ck8cX6ydytkZDI6Az0ES3m8TykmMPRUEb5UVDjRtJ_w=.pem","location":"security-state-staging/intermediates/c9101671-f46c-4528-bbd3-0ebe60946c0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ck8cX6ydytkZDI6Az0ES3m8TykmMPRUEb5UVDjRtJ/w=","crlite_enrolled":true,"id":"28852233-ff69-424d-9c51-72ed58ffda41","last_modified":1612922307167},{"schema":1612899696277,"derHash":"tl/mob8tUv9ot9Pp0PBrMAocPySDCbcEBcp73sBUvd0=","subject":"CN=GlobalSign Atlas R3 DV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFUxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSswKQYDVQQDEyJHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIw","whitelist":false,"attachment":{"hash":"f6ba4b244d0f4d8748bdeb3905b09e20d0bb70b28d5fe8f7a5d9f622031a27cd","size":1687,"filename":"xW7Bujpo5E-lsgAwIN5FP5ndgl7TMJJdKhiprnoOP6k=.pem","location":"security-state-staging/intermediates/2ce89d4c-981f-4db3-a423-8e54ac84e6e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xW7Bujpo5
E+lsgAwIN5FP5ndgl7TMJJdKhiprnoOP6k=","crlite_enrolled":true,"id":"c5667f47-199d-42d7-93fc-7add87a67e78","last_modified":1612900698152},{"schema":1612900168130,"derHash":"tl/mob8tUv9ot9Pp0PBrMAocPySDCbcEBcp73sBUvd0=","subject":"CN=GlobalSign Atlas R3 DV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFUxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSswKQYDVQQDEyJHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIw","whitelist":false,"attachment":{"hash":"f6ba4b244d0f4d8748bdeb3905b09e20d0bb70b28d5fe8f7a5d9f622031a27cd","size":1687,"filename":"xW7Bujpo5E-lsgAwIN5FP5ndgl7TMJJdKhiprnoOP6k=.pem","location":"security-state-staging/intermediates/6e62179d-8cf7-4dd3-8b7a-23c5f44fed60.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xW7Bujpo5E+lsgAwIN5FP5ndgl7TMJJdKhiprnoOP6k=","crlite_enrolled":true,"id":"e4665b3f-67e0-41db-a6da-e7462f9cf059","last_modified":1612900698134},{"schema":1612796133106,"derHash":"F0S0dBAf5qkZNvXmAwfGPaWLiEBbBFMj3sjIwAF2r3c=","subject":"CN=National and Ka
podistrian University of Athens TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGQMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTFIMEYGA1UEAww/TmF0aW9uYWwgYW5kIEthcG9kaXN0cmlhbiBVbml2ZXJzaXR5IG9mIEF0aGVucyBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"36053c828d125835e8d94289286aea2da2d611fec7d55eabcf9ed7ff6f47c393","size":2922,"filename":"PmFP9aUtjAk7nFzQ7X_3QtLDOEdeNBJ9s0RIbfOFB9Y=.pem","location":"security-state-staging/intermediates/54a5ee4d-75d7-428c-82ca-9a69b743198e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PmFP9aUtjAk7nFzQ7X/3QtLDOEdeNBJ9s0RIbfOFB9Y=","crlite_enrolled":true,"id":"bb3988df-aa14-46bc-8a96-cb5ed802ce77","last_modified":1612835915627},{"schema":1612835361276,"derHash":"Jv1MQ2fkY9OccXlq5AEOUzgNyTvBMvsBnWcYpoc+gfQ=","subject":"CN=SHECA RSA Organization Validation Server CA G3,O=UniTrust,C=CN","subjectDN":"MFkxCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVz
dDE3MDUGA1UEAwwuU0hFQ0EgUlNBIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlcnZlciBDQSBHMw==","whitelist":false,"attachment":{"hash":"a02a5c8205e62c2ef5dc42345a1585558c86f166ed9875d861601a465bcc4651","size":2016,"filename":"0JA1q1ctk_4J8qS0t-GhJaG5egVDq9SB33oMY7SMpfs=.pem","location":"security-state-staging/intermediates/caec957d-379a-4c23-bf42-3bd122e7cf33.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0JA1q1ctk/4J8qS0t+GhJaG5egVDq9SB33oMY7SMpfs=","crlite_enrolled":true,"id":"10ec0271-99d5-4c06-a20d-1c03ccf7d780","last_modified":1612835915610},{"schema":1612576168069,"derHash":"DFoJ24rt99LR3eFNzMLbbqlZvPbwEDYNg2w0LGJNfg4=","subject":"CN=Entrust Certification Authority - L1F,OU=See www.entrust.net/legal-terms+OU=(c) 2016 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTYgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS
4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFG","whitelist":false,"attachment":{"hash":"0f073bd985840e123b19311aa4772e90dcd0ac807527490689309ef0b449e371","size":1613,"filename":"45FtWowsHe863G4x3FzC8qT3R9tgrLIVwZGjN5hwd80=.pem","location":"security-state-staging/intermediates/9b3cc3eb-ea08-4278-a4c3-b86ffe4570a8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"45FtWowsHe863G4x3FzC8qT3R9tgrLIVwZGjN5hwd80=","crlite_enrolled":true,"id":"a62aae33-e09c-4f50-95fc-8f7ec5599006","last_modified":1612576697229},{"schema":1612576169113,"derHash":"ClUqZfIv+CDn7D1Du/iLAqvDS9JH4MNQWJG2NC8WpfI=","subject":"CN=SHECA RSA Domain Validation Server CA G3,O=UniTrust,C=CN","subjectDN":"MFMxCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDExMC8GA1UEAwwoU0hFQ0EgUlNBIERvbWFpbiBWYWxpZGF0aW9uIFNlcnZlciBDQSBHMw==","whitelist":false,"attachment":{"hash":"42516b0068507cb60d6383aaefa05ac169921cff9e4616761151efe098d3e1fe","size":2008,"filename":"N6OrM0KKQgR1zORoDKkLLFEKAYCmS_84dpbLl_qNOnU=.pem","lo
cation":"security-state-staging/intermediates/525578e5-a94b-4525-b9e7-801be6e0ff89.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N6OrM0KKQgR1zORoDKkLLFEKAYCmS/84dpbLl/qNOnU=","crlite_enrolled":true,"id":"4b6a2421-1677-41c0-8103-bc13fb7e09f9","last_modified":1612576697210},{"schema":1612490285281,"derHash":"J+CT6INgfk4OC7Hrq64snA5Vqc8CA3O/ojT+Bf4Lp0M=","subject":"CN=JPRS Domain Validation Authority - G1,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzE=","whitelist":false,"attachment":{"hash":"1da93e47ca6470e85dad24c31ce916537588a3cf88f1d43d1fc9c4e57de8b5ff","size":1646,"filename":"WE8wuQpM8OwqLW_H3ejlZ_VMPcJMYTOA_ggrGWbSpNc=.pem","location":"security-state-staging/intermediates/6d6e0e82-8f55-40fc-8d62-72fab0b6a905.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WE8wuQpM8OwqLW/H3ejlZ/VMPcJMYTOA/ggrGWbSpNc=","crlite_en
rolled":false,"id":"90de290c-9563-4a88-8fa6-d2179534ff34","last_modified":1612511954021},{"schema":1612489777568,"derHash":"DluAQLOrYKUNLV+xHhmusuRbVkszW3nXc9QrgdghnHU=","subject":"CN=DKB CA 1O1,O=Deutsche Kreditbank AG,C=DE","subjectDN":"MEMxCzAJBgNVBAYTAkRFMR8wHQYDVQQKExZEZXV0c2NoZSBLcmVkaXRiYW5rIEFHMRMwEQYDVQQDEwpES0IgQ0EgMU8x","whitelist":false,"attachment":{"hash":"0d6a04b61a3f6fe0d25a45ebce669b61b803818acf9fec52dce995e7820a5646","size":2369,"filename":"6mn1Oob4B3Gc-G5_S1wP0LQc9KpzGrXRD5LWKSS3GlE=.pem","location":"security-state-staging/intermediates/0abef2b9-f3eb-4326-b533-c2518a91342f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6mn1Oob4B3Gc+G5/S1wP0LQc9KpzGrXRD5LWKSS3GlE=","crlite_enrolled":false,"id":"5f3d2450-bc1b-4592-b9c5-d733f00a7357","last_modified":1612490284282},{"schema":1612391844656,"derHash":"ansqo0FAOaZj1di7q4JWo5eahMMyv14e6PbQ4K2oRmg=","subject":"CN=DigiCert QV EV TLS ICA G1,O=DigiCert\\, Inc.,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRcwFQYDVQQKDA5EaW
dpQ2VydCwgSW5jLjEiMCAGA1UEAwwZRGlnaUNlcnQgUVYgRVYgVExTIElDQSBHMQ==","whitelist":false,"attachment":{"hash":"da7ebd3537612c5ba7de71120be602b9e04c9127ce688075aa408dbe6025f441","size":1943,"filename":"WlGHvWN6kWbS5I0pZA1mzBa36H7tg_dkp0nOMyIfpIg=.pem","location":"security-state-staging/intermediates/fdd44b41-87a8-41b1-b24d-bc629efb1193.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WlGHvWN6kWbS5I0pZA1mzBa36H7tg/dkp0nOMyIfpIg=","crlite_enrolled":true,"id":"2b7934df-863e-4ca7-a586-c7e3f8289d51","last_modified":1612403909546},{"schema":1612231259909,"derHash":"k6B4mNibLMoWa6bx+KFBOM5Dgo5JG4MZJryCR9ORzHI=","subject":"CN=Starfield Secure Certificate Authority - G2,OU=http://certs.starfieldtech.com/repository/,O=Starfield Technologies\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIHGMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEzMDEGA1UECxMqaHR0cDovL2NlcnRzLnN0YXJmaWVsZHRlY2guY29tL3JlcG9zaXRvcnkvMTQwMg
YDVQQDEytTdGFyZmllbGQgU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcy","whitelist":false,"attachment":{"hash":"4283da4ef9b6b21e475fb4a88aff9532a5c74e35282cb5459a20ee419646571c","size":1792,"filename":"8kGWrpQHhmc0jwLo43RYo6bmqtHgsNxhARjM5yFCe_w=.pem","location":"security-state-staging/intermediates/f0b4b8ab-658e-452d-a259-15b15f68060a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8kGWrpQHhmc0jwLo43RYo6bmqtHgsNxhARjM5yFCe/w=","crlite_enrolled":true,"id":"eda1d6cc-95f3-4925-b185-1972acc69e5a","last_modified":1612252662151},{"schema":1612116449436,"derHash":"93zhWdOIjqK8w13UZHLO2MwzAH4NpsiROc06Jw2JADM=","subject":"CN=JPRS Organization Validation Authority - G1,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzE=","whitelist":false,"attachment":{"hash":"92d9886b691320b334b799e6516c3dd2b5983372bd2bcc7f08fc2d333da9d9c1","size":
1654,"filename":"L5ieGJdPRxC_98J-9PhsO1f9uxRZOzwq8bdfg4akGmk=.pem","location":"security-state-staging/intermediates/e7a0f9c3-8c87-4bc7-9d6f-14e84b6a4cac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"L5ieGJdPRxC/98J+9PhsO1f9uxRZOzwq8bdfg4akGmk=","crlite_enrolled":false,"id":"462bd0e2-8618-4ee3-9643-5aae497bb252","last_modified":1612123127856},{"schema":1611862893040,"derHash":"G095TXcNxuBdx6QVhFD4JZVy621Z3mZ6PD++CNoBJIE=","subject":"CN=Global Trust CA - OV (RSA),O=Global Digital Inc.,C=TW","subjectDN":"MFAxCzAJBgNVBAYTAlRXMRwwGgYDVQQKExNHbG9iYWwgRGlnaXRhbCBJbmMuMSMwIQYDVQQDExpHbG9iYWwgVHJ1c3QgQ0EgLSBPViAoUlNBKQ==","whitelist":false,"attachment":{"hash":"136048afa3b294583ccc15f0a0a6102dcca6cc9bf7d5c19811460c54c4e79fce","size":2089,"filename":"K6VGZ_ktzZYufpj5GSQX1fCds5dLtjs5vlSRcV-Oe8U=.pem","location":"security-state-staging/intermediates/002c6e58-6238-435b-9b0d-7b0691d17ed4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"K6VGZ/ktzZYufpj5GSQX1fCds5dLtjs5vlSRcV+Oe8U=
","crlite_enrolled":false,"id":"d6d94677-fd6d-4901-bbae-6817f8abcd97","last_modified":1611867512219},{"schema":1611841764484,"derHash":"dYlNTJTCLXKW7hn7RHYjJYwlkbFwMSiLs4aiCqHw4KY=","subject":"CN=NetLock K\u00f6zjegyz\u0151i (Class A) Tan\u00fas\u00edtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIGuMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE8MDoGA1UEAwwzTmV0TG9jayBLw7Z6amVneXrFkWkgKENsYXNzIEEpIFRhbsO6c8OtdHbDoW55a2lhZMOz","whitelist":false,"attachment":{"hash":"4327de015aac627d028d4696e3b582048933e2f87d179c261b01897e32b67a1d","size":2190,"filename":"RWiIGgLo9cnu9JGiGhnz5uw6FBH1Y5qDY4qGsl5Q9EM=.pem","location":"security-state-staging/intermediates/27099d75-dfc0-441a-a1de-81e112a1d6e5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RWiIGgLo9cnu9JGiGhnz5uw6FBH1Y5qDY4qGsl5Q9EM=","crlite_
enrolled":true,"id":"a76d3004-9787-484d-a4d9-2e5555cd8b56","last_modified":1611842278578},{"schema":1611841764915,"derHash":"7dT7pAzTq64U8XW732cGprcoAHprRthmyge3Z0Ov9Cw=","subject":"CN=FUJIFILM Fnet CA - S2,O=FUJIFILM,C=JP","subjectDN":"MEAxCzAJBgNVBAYTAkpQMREwDwYDVQQKEwhGVUpJRklMTTEeMBwGA1UEAxMVRlVKSUZJTE0gRm5ldCBDQSAtIFMy","whitelist":false,"attachment":{"hash":"47545f66891e5ed5a53c7991cbcd4359aa9cb6dec5626532dac2ca678d6e15d4","size":1593,"filename":"FoZrORtfOQVQIdnaO-pphxZC_MNQQ1WYobR981Jaydk=.pem","location":"security-state-staging/intermediates/63ad0bdd-0afc-4d0e-9d2c-da6d4dd9a811.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FoZrORtfOQVQIdnaO+pphxZC/MNQQ1WYobR981Jaydk=","crlite_enrolled":false,"id":"5c93d10c-ee60-4257-80b8-06c25ca75baf","last_modified":1611842278561},{"schema":1611690096545,"derHash":"I+4SqNqdOFScVKMrweShi68VcEiBB9Fp69c039ozCw4=","subject":"CN=DigiCert TLS ICA Universal 2021,O=DigiCert\\, Inc.,C=US","subjectDN":"MFAxCzAJBgNVBAYTAlVTMRcwFQYDVQQKDA5EaW
dpQ2VydCwgSW5jLjEoMCYGA1UEAwwfRGlnaUNlcnQgVExTIElDQSBVbml2ZXJzYWwgMjAyMQ==","whitelist":false,"attachment":{"hash":"f7a32beef09e7d3328e95a02e7de4b8289bde9e6576ff0539631563e17335f64","size":1780,"filename":"FyZQNdKyPwjhBkpsQgMcukRcpU9Dkiohe52CEzj_KKQ=.pem","location":"security-state-staging/intermediates/b26a10da-8699-4d76-b47b-e628ed81a01d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FyZQNdKyPwjhBkpsQgMcukRcpU9Dkiohe52CEzj/KKQ=","crlite_enrolled":true,"id":"df64e8a9-edb2-4d98-8507-de8774d5566e","last_modified":1611734348675},{"schema":1611647872433,"derHash":"51WunELBMV8n3NBkUcar4LxqrW7dwuVjXPxJGBktNEw=","subject":"CN=sslTrus (RSA) EV CA,O=sslTrus (\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8),C=CN","subjectDN":"MGQxCzAJBgNVBAYTAkNOMTcwNQYDVQQKDC5zc2xUcnVzICjkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gpMRwwGgYDVQQDExNzc2xUcnVzIChSU0EpIEVWIENB","whitelist":false,"attachment":{"hash":"55e848660f48e2a6b95e8759ec0b776099131c63ec8883a1ef8dcf779b
d72355","size":2138,"filename":"i8sF2qLB7tRF7sIqB2OmU30xW1URXbosyF-3an-ceXg=.pem","location":"security-state-staging/intermediates/bb6ab381-a252-4a1a-9f54-f0b14b386a85.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i8sF2qLB7tRF7sIqB2OmU30xW1URXbosyF+3an+ceXg=","crlite_enrolled":true,"id":"3a6d2131-dd47-4cf1-b60b-f13c183a5c95","last_modified":1611669586304},{"schema":1611626281458,"derHash":"nbCiDDBVQeFegYqIDQZXmHapyQG47s2WhILFjZun8Kc=","subject":"CN=TrustAsia EV TLS Pro CA G3,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFkxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSMwIQYDVQQDExpUcnVzdEFzaWEgRVYgVExTIFBybyBDQSBHMw==","whitelist":false,"attachment":{"hash":"4e4f81e693158e50a56fefb6a5aca6b3e4574f9fe988f6c8784cddc95d070ff8","size":1650,"filename":"qPCsIegto8XzD_ooUOSN32SyAwuprv0BX_QDRc0K3aI=.pem","location":"security-state-staging/intermediates/4ac60b8e-b3bd-4e52-a97e-bd3b83cc2ec5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qPCsIeg
to8XzD/ooUOSN32SyAwuprv0BX/QDRc0K3aI=","crlite_enrolled":true,"id":"0b7fb8d7-395a-4a87-bbca-e9f0494cbbd2","last_modified":1611647871486},{"schema":1611583083156,"derHash":"jYPWn6YVqiaDsT14lEgsVCsLzxi7ktMPAV+0JHGvu2Y=","subject":"CN=TrustAsia ECC EV TLS Pro CA G3,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MF0xCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMScwJQYDVQQDEx5UcnVzdEFzaWEgRUNDIEVWIFRMUyBQcm8gQ0EgRzM=","whitelist":false,"attachment":{"hash":"02177e95a053529e56a44df11a7524e3b40ddadc426f737c2d9c84e00dc43f28","size":1382,"filename":"xgkVHlf2XyODr7l-8b1HSx2m_0yRG8ZF5HdfiYwDwaY=.pem","location":"security-state-staging/intermediates/5b9163c5-db6d-4370-8fa7-c89bcf81e95b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xgkVHlf2XyODr7l+8b1HSx2m/0yRG8ZF5HdfiYwDwaY=","crlite_enrolled":true,"id":"b866ec0b-ef71-426c-8709-aab24aae0fbd","last_modified":1611626280479},{"schema":1611582564518,"derHash":"OBiZWyigkNg6YWZxF9UMd8Hx3HoTdoDy5VznVTFPLQo=","subj
ect":"CN=Yekta Domain Validated SSL CA 1,O=Pardazeshgaran Shahr Hooshmand Yekta Co.,C=IR","subjectDN":"MGoxCzAJBgNVBAYTAklSMTEwLwYDVQQKDChQYXJkYXplc2hnYXJhbiBTaGFociBIb29zaG1hbmQgWWVrdGEgQ28uMSgwJgYDVQQDDB9ZZWt0YSBEb21haW4gVmFsaWRhdGVkIFNTTCBDQSAx","whitelist":false,"attachment":{"hash":"bb7867525742b369a2d4aa0d32435efc5335cb5345f63c531ba57670798dd390","size":1760,"filename":"H9EWOWmPlQDDBwAbp_31T2xDnk5xl_tppGco9Jp0eOk=.pem","location":"security-state-staging/intermediates/4300d654-d85c-40f8-97a8-d15d616ba1c3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H9EWOWmPlQDDBwAbp/31T2xDnk5xl/tppGco9Jp0eOk=","crlite_enrolled":false,"id":"1ebb8ae1-2451-4e9b-9bbf-440aa561b615","last_modified":1611583082268},{"schema":1611582562982,"derHash":"F/CKT13DjEm7F9zWSyznQs/quZvltn28FMLolnccYOE=","subject":"CN=Yekta Organization Validated SSL CA 1,O=Pardazeshgaran Shahr Hooshmand Yekta Co.,C=IR","subjectDN":"MHAxCzAJBgNVBAYTAklSMTEwLwYDVQQKDChQYXJkYXplc2hnYXJhbiBTaGFociBIb29zaG1hbmQgWWVrdGEgQ2
8uMS4wLAYDVQQDDCVZZWt0YSBPcmdhbml6YXRpb24gVmFsaWRhdGVkIFNTTCBDQSAx","whitelist":false,"attachment":{"hash":"486e0a3b6a007b50af4caea8b8eb13afd585138e57d8fe341eec1ec7a20adc71","size":1768,"filename":"Ufih1VeDxhjbteVJNXygXP2MY_Q8c5bmwG0Ll8AQXTY=.pem","location":"security-state-staging/intermediates/1e2884de-0e02-466d-87d3-08333e45105e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ufih1VeDxhjbteVJNXygXP2MY/Q8c5bmwG0Ll8AQXTY=","crlite_enrolled":false,"id":"382c3d21-f0c0-430a-9512-eb2ca7e514b4","last_modified":1611583082256},{"schema":1611517292726,"derHash":"RksOwKYC8Bk9tfM5EYhaOmGSGtFtJmTiW++rEM+m7SU=","subject":"OU=Public Certification Authority,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MFsxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEnMCUGA1UECwweUHVibGljIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"49845caec147a9f80e7f49b5e4b2b8629653bccf72d7aa8dfa0b7029f5d75514","size":1934,"filename":"qMjf0br8Ay71_wiJ0t25y4v3IWwirr
3SF1bWHJzkbnE=.pem","location":"security-state-staging/intermediates/cabaf189-98ae-41ee-8da3-966fb99dbea2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qMjf0br8Ay71/wiJ0t25y4v3IWwirr3SF1bWHJzkbnE=","crlite_enrolled":true,"id":"201bbcbe-98a9-4e1d-9ba8-1d91ccaef4d5","last_modified":1611539904877},{"schema":1611539375844,"derHash":"S9FvSVXz88nI6kjvmZUyTaUSFyT4mRXV8skesLrvIzc=","subject":"OU=Public Certification Authority,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MFsxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEnMCUGA1UECwweUHVibGljIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"689c7ab13bb497838c62b566e5da7f914f4cf9354f08643500263bcfb46a32a3","size":2105,"filename":"qMjf0br8Ay71_wiJ0t25y4v3IWwirr3SF1bWHJzkbnE=.pem","location":"security-state-staging/intermediates/c2017a82-2237-4c28-8656-5764f263e185.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qMjf0br8Ay71/wiJ0t25y4v3IWwirr3SF1bWHJzkbnE=","crlite_enrolled":tru
e,"id":"a869aa70-b82b-40fc-b8b7-123af99bb58e","last_modified":1611539904857},{"schema":1611539375365,"derHash":"4KSpHFCvxPss7N60HtjK5yvwFE+w1ii0k/6sUREg/XM=","subject":"CN=Atos TrustedRoot Client-CA 2013,O=Atos,C=DE","subjectDN":"MEYxKDAmBgNVBAMMH0F0b3MgVHJ1c3RlZFJvb3QgQ2xpZW50LUNBIDIwMTMxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"8f4098af61d8dad073dd0771e4efd2ee78f3b9dde5b20990c03fe1075bdd678a","size":1561,"filename":"x1544Iz8YLSNjqF0CQ1JdKEkifn0AZ3h_QZt_MioExg=.pem","location":"security-state-staging/intermediates/92c082b5-f8f5-4f02-a1a2-d0a7112d4a35.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x1544Iz8YLSNjqF0CQ1JdKEkifn0AZ3h/QZt/MioExg=","crlite_enrolled":true,"id":"8b0d5b38-6f90-4466-8606-bde07a3e12e8","last_modified":1611539904837},{"schema":1611431378144,"derHash":"E/ezfMH4RCqM4T57RCIhfY6JlXz+qFDDy751y+Vh53Q=","subject":"CN=CertCloud ECC EV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2x
vdWQgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgRUNDIEVWIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"68a6d4de039d26f711386d924105e95da6fb2c74e019e46d3006b1d43a0281f3","size":1272,"filename":"S9iaDtfedpswiFg99kL_1fGIcuuU0gvf0uBHeNGHlmw=.pem","location":"security-state-staging/intermediates/da97892c-7184-4868-809e-e2de1fd11f77.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S9iaDtfedpswiFg99kL/1fGIcuuU0gvf0uBHeNGHlmw=","crlite_enrolled":true,"id":"0b514bd5-5bab-4144-8394-f91d8e5083cb","last_modified":1611431878700},{"schema":1611370662565,"derHash":"E/ezfMH4RCqM4T57RCIhfY6JlXz+qFDDy751y+Vh53Q=","subject":"CN=CertCloud ECC EV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgRUNDIEVWIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"68a6d4de039d26f711386d924105e95da6fb2c74e019e46d3006b1d43a0281f3","size":1272,"filename":"S9iaDtfedpswiFg99kL_1fGIcuuU0gvf0uBHeNGHlmw=.pem","location":"se
curity-state-staging/intermediates/ef7d0921-b722-44bd-a037-89afdb97564f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S9iaDtfedpswiFg99kL/1fGIcuuU0gvf0uBHeNGHlmw=","crlite_enrolled":true,"id":"1f8cd9e7-71f5-4ee1-a557-c82739d93206","last_modified":1611431878681},{"schema":1611370183951,"derHash":"bZn7Jl6xxbN0R2X8vGSPPNjhv/r9xML5m51Hz3/xwk8=","subject":"CN=ISRG Root X1,O=Internet Security Research Group,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgx","whitelist":false,"attachment":{"hash":"86a0c0e53489095cfdcd1e9c6049c12959ed799d970b71fbc0c240c1b79da98a","size":1923,"filename":"C5-lpZ7tcVwmwQIMcRtPbsQtWLABXhQzejna0wHFr8M=.pem","location":"security-state-staging/intermediates/928d3ca7-d059-41ac-9690-a9c2eb4fc4e2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"C5+lpZ7tcVwmwQIMcRtPbsQtWLABXhQzejna0wHFr8M=","crlite_enrolled":false,"id":"7936015d-855d-4e07-aed5-76453d4732dd","last_modified":1
611370661678},{"schema":1611366598719,"derHash":"bZn7Jl6xxbN0R2X8vGSPPNjhv/r9xML5m51Hz3/xwk8=","subject":"CN=ISRG Root X1,O=Internet Security Research Group,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgx","whitelist":false,"attachment":{"hash":"86a0c0e53489095cfdcd1e9c6049c12959ed799d970b71fbc0c240c1b79da98a","size":1923,"filename":"C5-lpZ7tcVwmwQIMcRtPbsQtWLABXhQzejna0wHFr8M=.pem","location":"security-state-staging/intermediates/37c110cd-256f-49fb-9fd5-a14d160b2c0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"C5+lpZ7tcVwmwQIMcRtPbsQtWLABXhQzejna0wHFr8M=","crlite_enrolled":false,"id":"c0bdaa91-8116-4b90-b419-b8b946e77a2c","last_modified":1611367071551},{"schema":1611280168224,"derHash":"JpesuWpJviv8XAbDk5SfDY51EGrW1Mc+LaFyqQgxqFo=","subject":"CN=Abbott Laboratories Secure Authentication CA G2,O=Abbott Laboratories Inc.,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMSEwHwYDVQQKExhBYmJvdHQgTGFib3JhdG9
yaWVzIEluYy4xODA2BgNVBAMTL0FiYm90dCBMYWJvcmF0b3JpZXMgU2VjdXJlIEF1dGhlbnRpY2F0aW9uIENBIEcy","whitelist":false,"attachment":{"hash":"2dd82d3bd0accbba61c96af89b612f8a1d398765d793f42607d3afc8b8dad683","size":1723,"filename":"bzDvo6S9sfCilsvuF3s9e-vz0NDErb57SOX9rMVGnlE=.pem","location":"security-state-staging/intermediates/7ab12434-0d0c-4347-822a-1a018c7369ba.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bzDvo6S9sfCilsvuF3s9e+vz0NDErb57SOX9rMVGnlE=","crlite_enrolled":false,"id":"88d5e263-ca11-45bf-82b8-fcdbe867c000","last_modified":1611280673595},{"schema":1611176243692,"derHash":"xCpNjAkEuyEZBvQ7RBu7ybWgA7o2EYef00rldvfC92Q=","subject":"CN=DigiCert QuoVadis TLS ICA QV Root CA 1 G3,O=DigiCert\\, Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRYwFAYDVQQKDA1EaWdpQ2VydCwgSW5jMTIwMAYDVQQDDClEaWdpQ2VydCBRdW9WYWRpcyBUTFMgSUNBIFFWIFJvb3QgQ0EgMSBHMw==","whitelist":false,"attachment":{"hash":"f131ca0a9a73adfbd8b9dbf2f0ffc7a130b98e7064f31563619f38656747629e","size":1967,"filename":"mDRXN3fhA
PbsEZzZ6KgUrT9K8v0Uy1_lYQrkjelgldw=.pem","location":"security-state-staging/intermediates/59c08984-5d90-4b92-b199-9c225bbad4af.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mDRXN3fhAPbsEZzZ6KgUrT9K8v0Uy1/lYQrkjelgldw=","crlite_enrolled":true,"id":"d6e5312b-851e-4527-a9d9-ab6b24c9674e","last_modified":1611194257322},{"schema":1611193770229,"derHash":"DVG2zc80qfIhRHh/P9kg3IgA+2BJC/yNKJoZU+D72k0=","subject":"CN=TrustAsia EV TLS Pro CA G2,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFkxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSMwIQYDVQQDExpUcnVzdEFzaWEgRVYgVExTIFBybyBDQSBHMg==","whitelist":false,"attachment":{"hash":"8410138c0818efe36c3c5e447194465f2a0b00c3453529916ca8fa0c0abaf130","size":1670,"filename":"JTqDYh_WILx03HF-qMSr0wy2uDSoWh4uqNea4MnbzZ8=.pem","location":"security-state-staging/intermediates/622cc492-e266-42bf-8807-edd1fafd23b3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JTqDYh/WILx03HF+qMSr0wy2uDSoWh4uqNea4MnbzZ8=","c
rlite_enrolled":true,"id":"0188e712-0f9b-4e95-8c28-48e3eaae9945","last_modified":1611194257302},{"schema":1611193769761,"derHash":"E5rDa9hTmLu7RYhofCDcNoJ9A6X0Kq34fwK+zEvpv8I=","subject":"CN=DigiCert Secure Site EV CN CA G3,O=DigiCert Inc,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERpZ2lDZXJ0IFNlY3VyZSBTaXRlIEVWIENOIENBIEcz","whitelist":false,"attachment":{"hash":"0b1f6ecad39cb939686ab17ee9e4168992c49d49dadf8783292a36743b0eabd0","size":1638,"filename":"q0mT-mtnAchq7xXJEtVo25yl_8a1e08EqUu2Ww5ybfQ=.pem","location":"security-state-staging/intermediates/1ce4670b-c3e7-4e29-9f89-30844efb4ed9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q0mT+mtnAchq7xXJEtVo25yl/8a1e08EqUu2Ww5ybfQ=","crlite_enrolled":true,"id":"bcd47841-6736-4533-bf49-4312192e3896","last_modified":1611194257283},{"schema":1611172171309,"derHash":"VEpvYpl1bsreT3w0gRBUGBtqI8D/g+sKwaKM6/4Nrj4=","subject":"CN=DigiCert TLS ICA GeoTrust PCA-G2,O=DigiCert\\, Inc.,C=US","subjectDN
":"MFExCzAJBgNVBAYTAlVTMRcwFQYDVQQKDA5EaWdpQ2VydCwgSW5jLjEpMCcGA1UEAwwgRGlnaUNlcnQgVExTIElDQSBHZW9UcnVzdCBQQ0EtRzI=","whitelist":false,"attachment":{"hash":"00e542d0e9877f5102e0eb89a416335ccd3cc75c8bcbbb047083bb3eeee4c75b","size":1280,"filename":"6x30RuzH_PkHDnVOldX1g-KzUe-dgbggRwF4KJQ285Q=.pem","location":"security-state-staging/intermediates/bfe0d174-db9a-48fc-99f4-b5cb2e90f039.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6x30RuzH/PkHDnVOldX1g+KzUe+dgbggRwF4KJQ285Q=","crlite_enrolled":true,"id":"2da53828-c1ac-41a0-a435-992841f4686c","last_modified":1611172676894},{"schema":1611172171765,"derHash":"oF/kUpqQVCR0C8Yedzx7gplRGJNOQJQhYyOXwf5tCUg=","subject":"CN=DigiCert QuoVadis TLS ICA QuoVadis RCA,O=DigiCert\\, Inc,C=US","subjectDN":"MFYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKDA1EaWdpQ2VydCwgSW5jMS8wLQYDVQQDDCZEaWdpQ2VydCBRdW9WYWRpcyBUTFMgSUNBIFF1b1ZhZGlzIFJDQQ==","whitelist":false,"attachment":{"hash":"61fb1e00c120b7d8eb29a55826f8925947f9053b6bbd5d3ffe964cc05e6d6dde","size":1683,"fi
lename":"Bh60Y6NbOPMA-3_NfhiqlTDjW2fQRTnUly_tdwJWP90=.pem","location":"security-state-staging/intermediates/2ef170a4-24c1-4ae1-b6c9-847620f12f10.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Bh60Y6NbOPMA+3/NfhiqlTDjW2fQRTnUly/tdwJWP90=","crlite_enrolled":true,"id":"ab58fcb7-0eaf-4652-99c8-7753a75f235f","last_modified":1611172676874},{"schema":1611171692672,"derHash":"oF/kUpqQVCR0C8Yedzx7gplRGJNOQJQhYyOXwf5tCUg=","subject":"CN=DigiCert QuoVadis TLS ICA QuoVadis RCA,O=DigiCert\\, Inc,C=US","subjectDN":"MFYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKDA1EaWdpQ2VydCwgSW5jMS8wLQYDVQQDDCZEaWdpQ2VydCBRdW9WYWRpcyBUTFMgSUNBIFF1b1ZhZGlzIFJDQQ==","whitelist":false,"attachment":{"hash":"61fb1e00c120b7d8eb29a55826f8925947f9053b6bbd5d3ffe964cc05e6d6dde","size":1683,"filename":"Bh60Y6NbOPMA-3_NfhiqlTDjW2fQRTnUly_tdwJWP90=.pem","location":"security-state-staging/intermediates/edaf7e4f-93c0-431c-8fb2-7e01cb7c3a80.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Bh60Y6NbOPMA+3/NfhiqlTDjW2fQRTnUly/td
wJWP90=","crlite_enrolled":true,"id":"0600918a-adab-4c3d-b3dc-9a7b6228f2ed","last_modified":1611172676855},{"schema":1610999377196,"derHash":"VKdoR9KTrLj6HYhd5LtEmVa3UJL5Yj+kNEGrRF3Vcoo=","subject":"CN=sslTrus (ECC) DV CA,O=sslTrus,C=CN","subjectDN":"MD0xCzAJBgNVBAYTAkNOMRAwDgYDVQQKEwdzc2xUcnVzMRwwGgYDVQQDExNzc2xUcnVzIChFQ0MpIERWIENB","whitelist":false,"attachment":{"hash":"d23a03f951a5dfe7bf99283e17aa1a0e3634eb69ae9022b26bb71e6aa6efe532","size":1219,"filename":"UMr9k5clLq6HrdNc5SEiok4r2rONjYgWHW_eisDP7Gg=.pem","location":"security-state-staging/intermediates/1d61d630-620f-4687-a644-af28a0f2ddba.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UMr9k5clLq6HrdNc5SEiok4r2rONjYgWHW/eisDP7Gg=","crlite_enrolled":false,"id":"dde93a7d-dca5-41a4-be12-90191a32e81b","last_modified":1610999846095},{"schema":1610999375657,"derHash":"hopBQA1CWpONfsBsKQlzALEnBttHO2p5UFZfmNcE8ZY=","subject":"CN=sslTrus (RSA) OV CA,O=sslTrus,C=CN","subjectDN":"MD0xCzAJBgNVBAYTAkNOMRAwDgYDVQQKEwdzc2xUcnVzMRwwG
gYDVQQDExNzc2xUcnVzIChSU0EpIE9WIENB","whitelist":false,"attachment":{"hash":"54246aebbe7a4d8ef4d93c1d30e24da1f159d200a8068aa45dd6ce1ed5a64c8a","size":2056,"filename":"ih0R75GcT4FHFDlYK3QnWp_EQJYdcLVZ69u4d3mIJwE=.pem","location":"security-state-staging/intermediates/f21a0945-9117-41c3-8ce9-28d388e80ddf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ih0R75GcT4FHFDlYK3QnWp/EQJYdcLVZ69u4d3mIJwE=","crlite_enrolled":false,"id":"62476175-38d3-4790-b161-8b62f8d0c883","last_modified":1610999846084},{"schema":1610999372596,"derHash":"7xULGjNxR1yLPtEdv5O/kIQL1Tlca1+mrju/p0b69Vs=","subject":"CN=sslTrus (ECC) OV CA,O=sslTrus,C=CN","subjectDN":"MD0xCzAJBgNVBAYTAkNOMRAwDgYDVQQKEwdzc2xUcnVzMRwwGgYDVQQDExNzc2xUcnVzIChFQ0MpIE9WIENB","whitelist":false,"attachment":{"hash":"c25150f600b9ae1b33b9a7f827d9d373cd09a7b2060bbadde57f8118c48fb0cb","size":1215,"filename":"pJxjodLJbnAgcHt9MNFsEIq5_2tWVNeIo2xYSRJE4SE=.pem","location":"security-state-staging/intermediates/92d458c7-50e1-47a2-9326-7cea715455
20.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pJxjodLJbnAgcHt9MNFsEIq5/2tWVNeIo2xYSRJE4SE=","crlite_enrolled":false,"id":"1b2793b6-b285-4eca-8925-4bb04f23de95","last_modified":1610999846072},{"schema":1610999374114,"derHash":"VGBJatScuCHWJ9rIqAUSmCK6skK5KaDjGV1wV2HR0Ww=","subject":"CN=sslTrus (RSA) DV CA,O=sslTrus,C=CN","subjectDN":"MD0xCzAJBgNVBAYTAkNOMRAwDgYDVQQKEwdzc2xUcnVzMRwwGgYDVQQDExNzc2xUcnVzIChSU0EpIERWIENB","whitelist":false,"attachment":{"hash":"641b2f28494debbb041a369cddea9252e11f7786dec7357bcdd5598f11cc6a1f","size":2056,"filename":"sz42Xvj0IDwSUHcevD4ns_3KOoE01yS63MA_HmP7uMM=.pem","location":"security-state-staging/intermediates/755b0ece-1ba5-476e-a318-239851989683.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sz42Xvj0IDwSUHcevD4ns/3KOoE01yS63MA/HmP7uMM=","crlite_enrolled":false,"id":"2780ce74-15ac-4292-b126-97ed74d0137a","last_modified":1610999846060},{"schema":1610999380345,"derHash":"Nrpwuq7fY3tMFrVGUa7DYFna9k3PbK4NlMuIwstMJwI=","subject":"CN=s
slTrus (ECC) EV CA,O=sslTrus (\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8),C=CN","subjectDN":"MGQxCzAJBgNVBAYTAkNOMTcwNQYDVQQKDC5zc2xUcnVzICjkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gpMRwwGgYDVQQDExNzc2xUcnVzIChFQ0MpIEVWIENB","whitelist":false,"attachment":{"hash":"baf590aadcc3af627203f8fb1dbe5cde59de59e5ae2426004f5e7f218b2f6d38","size":1301,"filename":"D9cufgL1WPvVfln-nAZCjnwBzvm0PkPT02NbL_keD3w=.pem","location":"security-state-staging/intermediates/155817d2-108f-4320-bf47-8ab1a2921a77.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D9cufgL1WPvVfln+nAZCjnwBzvm0PkPT02NbL/keD3w=","crlite_enrolled":false,"id":"721ae378-ec64-48a3-a56d-34fd12f08946","last_modified":1610999846045},{"schema":1610979409846,"derHash":"AUU/ZFzZHiM7dISCfyP4pXP9ZBAp6opr/lSe9O2LMj0=","subject":"CN=HydrantID SSL ICA G2,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMTAwLgYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHTAb
BgNVBAMTFEh5ZHJhbnRJRCBTU0wgSUNBIEcy","whitelist":false,"attachment":{"hash":"7210ab4fd67176c39b121dc273d719681e6df16720f1ec337d1ed98f2f42397f","size":2410,"filename":"400Fim9IQe4j-Gj-Ci4R44M3gA6J1_TRh8LlPSLF3I8=.pem","location":"security-state-staging/intermediates/d86830f0-be1c-4699-823a-14b96b05fedd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"400Fim9IQe4j+Gj+Ci4R44M3gA6J1/TRh8LlPSLF3I8=","crlite_enrolled":true,"id":"03652dfb-4639-4ce5-a586-d186a812f8e7","last_modified":1610981840623},{"schema":1610979414905,"derHash":"2rP6DW6CEAb+cJrhIXarovOXcGzJxx9cHA0JgETa69w=","subject":"CN=HARICA QWAC RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),L=Athens,C=GR","subjectDN":"MIHBMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMSswKQYDVQQKDCJHcmVlayBVbml2ZXJzaXRpZXMgTmV0d29yayAoR1VuZXQpMRgwFgYDVQRhDA9WQVRHUi0wOTkwMjgyMjAxNzA1BgNVBAsMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ0ExITAfBgNVBAMMGEhBUklDQSBRV0FDIFJTQSBTdWJDQS
BSMQ==","whitelist":false,"attachment":{"hash":"f227a120f73f7c94eea56c73047fd7bc0c8d6c1c7f2e43d3dc8bc4bfe55156dd","size":2568,"filename":"4_BwvJtY4Tb6_B1gdFJmSV4cG4FmBSDa7puZdnWS2Pk=.pem","location":"security-state-staging/intermediates/9864323a-90b7-4153-a038-810578cb55eb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4/BwvJtY4Tb6/B1gdFJmSV4cG4FmBSDa7puZdnWS2Pk=","crlite_enrolled":true,"id":"310263a5-bb52-41c2-8048-2d24f253c95e","last_modified":1610981840591},{"schema":1610979414404,"derHash":"mFFAkZNCI5yJCGsi38qkUIWQsRo94KQj4l68Pdr4kQ0=","subject":"CN=DigiCert Secure Site Pro ECC CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxLjAsBgNVBAMTJURpZ2lDZXJ0IFNlY3VyZSBTaXRlIFBybyBFQ0MgQ04gQ0EgRzM=","whitelist":false,"attachment":{"hash":"abadc7dab3aa3ce9c3b3984b57de541e8e2155f1acb9659ec05255d0505f836a","size":1341,"filename":"ljUnYjVBy0mvbfWJdhWfQmd_OGXEqZ6sBA-BZTbrSVY=.pem","location":"security-state-staging/intermediates/69abe7b3-
bea5-4ac4-b147-b7a9c256cfae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ljUnYjVBy0mvbfWJdhWfQmd/OGXEqZ6sBA+BZTbrSVY=","crlite_enrolled":true,"id":"d5251cce-28fd-44ee-97af-2b2fea57506d","last_modified":1610981840573},{"schema":1610979412957,"derHash":"9HCuinNxgA/J85Tu1xZ7ReaqOOqwIAk4ZJhcFcHouMs=","subject":"CN=HARICA SSL Intermediate CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHsxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEmMCQGA1UEAxMdSEFSSUNBIFNTTCBJbnRlcm1lZGlhdGUgQ0EgUjE=","whitelist":false,"attachment":{"hash":"997b5da84e547b4e65bbddcfe29ea4027d3d6ce01f5f270b51fe30c6cd9722b6","size":2280,"filename":"lDFmKX0HYK-C3X2D0e1_amheVD9e-SBgplm0VfZ1IZI=.pem","location":"security-state-staging/intermediates/5b577c97-5cb6-437b-a5de-28458c59e3bf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lDFmKX0HYK+C3X2D0e1/amheVD9e+SBgplm0VfZ1IZI=","crlite_enrolled":false,"
id":"dc04d826-cf54-4953-bf3c-7ba7846ef9f5","last_modified":1610981840553},{"schema":1610979413407,"derHash":"TM8XwMjBwQ1YduxeMoD+jRNN82rt2ERCibmQvDdB508=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - CUALIFICADOS,OU=Certificados Cualificados,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGSMQswCQYDVQQGEwJFUzEeMBwGA1UEChMVRmlybWFwcm9mZXNpb25hbCBTLkEuMSIwIAYDVQQLExlDZXJ0aWZpY2Fkb3MgQ3VhbGlmaWNhZG9zMRIwEAYDVQQFEwlBNjI2MzQwNjgxKzApBgNVBAMTIkFDIEZpcm1hcHJvZmVzaW9uYWwgLSBDVUFMSUZJQ0FET1M=","whitelist":false,"attachment":{"hash":"b3e4e383491cfa05a6e5858dc73ac1a4018938ed5c15a0d37c708311bd252227","size":2251,"filename":"xpW9XED3U765P2UyAqPWNU7eDdISlf2JSghpvjZnU-Y=.pem","location":"security-state-staging/intermediates/2b8e2bc0-c68e-4dce-9e23-322c77fed80d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xpW9XED3U765P2UyAqPWNU7eDdISlf2JSghpvjZnU+Y=","crlite_enrolled":false,"id":"3a7a7325-7f7b-40b5-86ed-594919a759ac","last_modified":1610981840535},{"schema":1610979412514,"derH
ash":"K3XMTzZ1nPxMZjex4OVDWUV9tX503k0txdAs3f8pYM8=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - CUALIFICADOS,OU=Certificados Cualificados,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGSMQswCQYDVQQGEwJFUzEeMBwGA1UEChMVRmlybWFwcm9mZXNpb25hbCBTLkEuMSIwIAYDVQQLExlDZXJ0aWZpY2Fkb3MgQ3VhbGlmaWNhZG9zMRIwEAYDVQQFEwlBNjI2MzQwNjgxKzApBgNVBAMTIkFDIEZpcm1hcHJvZmVzaW9uYWwgLSBDVUFMSUZJQ0FET1M=","whitelist":false,"attachment":{"hash":"4d2dfe0fc860422f305f1ad6329bd436365d1605d8d9a03702b07b42faebbed8","size":2410,"filename":"xpW9XED3U765P2UyAqPWNU7eDdISlf2JSghpvjZnU-Y=.pem","location":"security-state-staging/intermediates/0101c000-f69c-425a-97e2-af8490d77aba.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xpW9XED3U765P2UyAqPWNU7eDdISlf2JSghpvjZnU+Y=","crlite_enrolled":false,"id":"971a56e0-c3e7-431a-840f-f4f65604621f","last_modified":1610981840515},{"schema":1610053110240,"derHash":"tfYuw4ExzRSx/JW4d/TSEL5L+sx+amqhQi2J40t6xME=","subject":"CN=GoGetSSL Domain Validation CA SHA2,OU
=GoGetSSL Certification Authority,O=EnVers Group SIA,C=LV","subjectDN":"MIGAMQswCQYDVQQGEwJMVjEZMBcGA1UECgwQRW5WZXJzIEdyb3VwIFNJQTEpMCcGA1UECwwgR29HZXRTU0wgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxKzApBgNVBAMMIkdvR2V0U1NMIERvbWFpbiBWYWxpZGF0aW9uIENBIFNIQTI=","whitelist":false,"attachment":{"hash":"1a7005883cb2d9190f4111d29fd64d2d6eb960cc76830263a72234e826bbf517","size":1748,"filename":"p185bYxiFO-ZwKAV-mIneHw-vuH2rqpYkDOyjKN7DyE=.pem","location":"security-state-staging/intermediates/eaf84a71-fc34-486e-afdf-26e1ecaca22a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"p185bYxiFO+ZwKAV+mIneHw+vuH2rqpYkDOyjKN7DyE=","crlite_enrolled":false,"id":"35456425-adac-45ee-84d4-3a5c1b317e14","last_modified":1610071145242},{"schema":1610052572719,"derHash":"Zz6P7rEWgnfQFTER0g7Tjp2lH0QL5/1QshhUCTd0Gkg=","subject":"CN=DigiCert QuoVadis TLS ICA QuoVadis Root CA 2,O=DigiCert\\, Inc,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRYwFAYDVQQKDA1EaWdpQ2VydCwgSW5jMTUwMwYDVQQDDCxEaWdpQ2VydCBRdW9WYWRpcyBUTFMgSUNBIFF
1b1ZhZGlzIFJvb3QgQ0EgMg==","whitelist":false,"attachment":{"hash":"1972543fba2841f4a4d34b8431f1bd5c4f6ebc8c99b64d08cdf482a4c3962399","size":1975,"filename":"tZqVkxHOD3FG-_Ed3JNxf_Hs9TQHX1EhCqi5gjq2-HE=.pem","location":"security-state-staging/intermediates/8b90e2ec-7b60-42fb-8d9b-51fa5fa279be.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tZqVkxHOD3FG+/Ed3JNxf/Hs9TQHX1EhCqi5gjq2+HE=","crlite_enrolled":false,"id":"3c1f2484-7cfc-487b-b0c0-63f29e6a8de5","last_modified":1610053109357},{"schema":1610048986321,"derHash":"Zz6P7rEWgnfQFTER0g7Tjp2lH0QL5/1QshhUCTd0Gkg=","subject":"CN=DigiCert QuoVadis TLS ICA QuoVadis Root CA 2,O=DigiCert\\, Inc,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRYwFAYDVQQKDA1EaWdpQ2VydCwgSW5jMTUwMwYDVQQDDCxEaWdpQ2VydCBRdW9WYWRpcyBUTFMgSUNBIFF1b1ZhZGlzIFJvb3QgQ0EgMg==","whitelist":false,"attachment":{"hash":"1972543fba2841f4a4d34b8431f1bd5c4f6ebc8c99b64d08cdf482a4c3962399","size":1975,"filename":"tZqVkxHOD3FG-_Ed3JNxf_Hs9TQHX1EhCqi5gjq2-HE=.pem","location":"secu
rity-state-staging/intermediates/bf574586-936d-4800-bb8e-1c163a869b5f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tZqVkxHOD3FG+/Ed3JNxf/Hs9TQHX1EhCqi5gjq2+HE=","crlite_enrolled":false,"id":"de480be3-8754-46f9-9fbf-6b423796a971","last_modified":1610049515581},{"schema":1609443692100,"derHash":"TKNPcQp+EDdNpQYzfXVj/b2PraRt6PCm5SL9L6whNts=","subject":"CN=CrossTrust OV CA3,O=CrossTrust,C=JP","subjectDN":"MD4xCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpDcm9zc1RydXN0MRowGAYDVQQDExFDcm9zc1RydXN0IE9WIENBMw==","whitelist":false,"attachment":{"hash":"36e858212fd3a35823f7631743852eaacd6260657261d3400fb64bd1cbe22e7c","size":1581,"filename":"NRDKWT0450v5op6gvs41KoV3CLtbD8-8t8IphVrIvqM=.pem","location":"security-state-staging/intermediates/71e0b574-d31e-4f97-a406-ea5014ad14db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NRDKWT0450v5op6gvs41KoV3CLtbD8+8t8IphVrIvqM=","crlite_enrolled":false,"id":"6098095f-4cec-4428-9aa8-fa4e3e7c40fc","last_modified":1609444767338},{"schema":1608861456264,
"derHash":"p+OsttcN/1U2hSW8O+I2xgJSk/umCbPEQfSZRPoGAB8=","subject":"SERIALNUMBER=201510,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MTA=","whitelist":false,"attachment":{"hash":"28e1ef70f8de2a776568ca7bdc90bf54323d92557e04219bd3266354c5029a9c","size":2093,"filename":"l6QMc6rTKdl0AehazkNhC6i7uekp05bi-O4TLl8ebbE=.pem","location":"security-state-staging/intermediates/ca92f10f-e298-4db4-9442-e61019866e69.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"l6QMc6rTKdl0AehazkNhC6i7uekp05bi+O4TLl8ebbE=","crlite_enrolled":true,"id":"7c2ace93-b725-4eb3-93be-ed978b60fe4e","last_modified":1608904653190},{"schema":1608731356438,"derHash":"MlNBL9rUUjEIwJi7DuDv7df6/dAPsw5Hxrup/j4c24g=","subject":"CN=GDCA TrustAUTH R4 Primer CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MG4xCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJDAiBgNVBAMMG0dEQ0EgVHJ1c3RBVVRIIFI0IFBya
W1lciBDQQ==","whitelist":false,"attachment":{"hash":"63e5b17371590f3ec401bd9eb3b8ed4d9589063e1d6eef4f8889c34e61e19155","size":2056,"filename":"0QPovc90TjBNTpee1IAatbvOdHFYmqVUPYNToEldWCY=.pem","location":"security-state-staging/intermediates/5786a959-598e-4837-8220-7a23733b51ce.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0QPovc90TjBNTpee1IAatbvOdHFYmqVUPYNToEldWCY=","crlite_enrolled":false,"id":"ac8f566c-4341-4d69-9204-a2ed8524ca5e","last_modified":1608731862281},{"schema":1608651068348,"derHash":"wWnWndPSbTbLgt8TXFf+M27P9+fqQB6Z484ZF6j7gYA=","subject":"CN=CSP SSL Service CA 5,O=CENTRAL SECURITY PATROLS CO.\\, LTD.,L=Shinjuku-ku,ST=Tokyo,C=JP","subjectDN":"MH8xCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzEUMBIGA1UEBxMLU2hpbmp1a3Uta3UxKzApBgNVBAoTIkNFTlRSQUwgU0VDVVJJVFkgUEFUUk9MUyBDTy4sIExURC4xHTAbBgNVBAMTFENTUCBTU0wgU2VydmljZSBDQSA1","whitelist":false,"attachment":{"hash":"a26a3bb69b8762ccb5f00b997d7f14a0fe3eccca50cf54a3b76508a75d97353c","size":2154,"filename":"feELO37IL4l2CJfi
vsLI0VTQkKQc7sskntJ5vxPVVW8=.pem","location":"security-state-staging/intermediates/adfaf648-0669-46cc-a5d4-251b1d33f435.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"feELO37IL4l2CJfivsLI0VTQkKQc7sskntJ5vxPVVW8=","crlite_enrolled":false,"id":"ee30cbe2-04fc-4d99-8ef4-c0cc6362bfcc","last_modified":1608688660806},{"schema":1608256159665,"derHash":"dOq1c9p9sZUJe+DpDzNJNMekyJ6Ag3WdtDM6AO3SQ9k=","subject":"CN=DigiCert High Assurance TLS Hybrid ECC SHA256 2020 CA1,O=DigiCert\\, Inc.,C=US","subjectDN":"MGcxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjE/MD0GA1UEAxM2RGlnaUNlcnQgSGlnaCBBc3N1cmFuY2UgVExTIEh5YnJpZCBFQ0MgU0hBMjU2IDIwMjAgQ0Ex","whitelist":false,"attachment":{"hash":"11a50056d6027ba92a4d016bbdd72de6b8e7498171f12762ce2eda7a60762e6e","size":1483,"filename":"vnCogm4QYze_Bc9r88xdA6NTQY74p4BAz2w5gxkLG2M=.pem","location":"security-state-staging/intermediates/7bf16759-da8d-43e0-b260-f55aac6a39b7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vnCogm4QYze/Bc9r88xdA6NT
QY74p4BAz2w5gxkLG2M=","crlite_enrolled":false,"id":"ce744321-7f4d-4f9c-9da1-63454f6d33bb","last_modified":1608321440489},{"schema":1608256158159,"derHash":"m/7T2dyVI2vP/LNdSxINsOOGf2Kx/QFako2gswOWZoM=","subject":"CN=DigiCert High Assurance TLS RSA SHA256 2020 CA1,O=DigiCert\\, Inc.,C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjE4MDYGA1UEAxMvRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2UgVExTIFJTQSBTSEEyNTYgMjAyMCBDQTE=","whitelist":false,"attachment":{"hash":"007b4991e764dfb6fc682cc922b8e457508cb343dfd1edc993260455daaf7c3b","size":1748,"filename":"KKzhMaY72_nD-ZVShAg153XyomvfRUrrKjaWxh3ZCRo=.pem","location":"security-state-staging/intermediates/d3e8c2ab-b791-4d1a-9686-b3075fe8b947.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KKzhMaY72/nD+ZVShAg153XyomvfRUrrKjaWxh3ZCRo=","crlite_enrolled":false,"id":"44ffb93f-8613-4234-ae12-7682b310843a","last_modified":1608321440478},{"schema":1608234551224,"derHash":"RLVFqool5lpzyhXcJ/w20kwcuZU6BmU5sRWC3Eh7SDM=","subject":"CN
=Hellenic Academic and Research Institutions ECC RootCA 2015,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGqMQswCQYDVQQGEwJHUjEPMA0GA1UEBxMGQXRoZW5zMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTFEMEIGA1UEAxM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBFQ0MgUm9vdENBIDIwMTU=","whitelist":false,"attachment":{"hash":"c0ac75ba366ac172e14ea829ea033e50cfad846dda99a812e6cc75e5ee716e26","size":1016,"filename":"u1IIbQY56NszJ3Wsj06ENdks6wD04k8o_A6r4kB3LoA=.pem","location":"security-state-staging/intermediates/7d4b43b6-4fd7-4438-a41f-6edb60308600.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"u1IIbQY56NszJ3Wsj06ENdks6wD04k8o/A6r4kB3LoA=","crlite_enrolled":false,"id":"547c8ddc-885a-4577-b1a9-9c8488b81b16","last_modified":1608321440466},{"schema":1608256163558,"derHash":"YD23B6WEADvtbx1D3NTq4TzRjXmOgn3i86MfMZP8Daw=","subject":"CN=NII Open Domain CA - G7 RSA,O=SECOM Trust Systems
CO.\\,LTD.,C=JP","subjectDN":"MFoxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSQwIgYDVQQDExtOSUkgT3BlbiBEb21haW4gQ0EgLSBHNyBSU0E=","whitelist":false,"attachment":{"hash":"c415b80eaca6cc1fe0d46f93c28c3f50a71fdc2d34c05596ad432c7d1071765c","size":1772,"filename":"gdcmbbO--ObnWtuH5s-3w7lzQiYlLeXyMGuHZ7bgaG0=.pem","location":"security-state-staging/intermediates/921112a4-f1b9-4d7d-ab3a-4e36fab6dc15.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gdcmbbO++ObnWtuH5s+3w7lzQiYlLeXyMGuHZ7bgaG0=","crlite_enrolled":true,"id":"8e4c3aba-f9c2-4fae-891a-3f9906c7f95d","last_modified":1608321440455},{"schema":1608000560645,"derHash":"xesadjm52NcLT4Kt2AeUF17ktqPbGGGzhxfJb8GRSSc=","subject":"CN=NAVER Secure Certification Authority 1,O=NAVER BUSINESS PLATFORM Corp.,C=KR","subjectDN":"MGYxCzAJBgNVBAYTAktSMSYwJAYDVQQKDB1OQVZFUiBCVVNJTkVTUyBQTEFURk9STSBDb3JwLjEvMC0GA1UEAwwmTkFWRVIgU2VjdXJlIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IDE=","whitelist":false,"attachment":{"hash":"99d81a11
ba4ee9372795e89c14a2c5c6011f433176a402bb5dd5889a378b6c0b","size":1991,"filename":"cJ2mHuIKySslEdkckvymNSKxLhYRvvY9Z8ivbKik0Tg=.pem","location":"security-state-staging/intermediates/d534a023-2aac-45ec-9bca-b6f031bcf4a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cJ2mHuIKySslEdkckvymNSKxLhYRvvY9Z8ivbKik0Tg=","crlite_enrolled":true,"id":"9fe92629-6232-4af7-a10f-6fe9d20f1fa8","last_modified":1608001043200},{"schema":1607996964517,"derHash":"xesadjm52NcLT4Kt2AeUF17ktqPbGGGzhxfJb8GRSSc=","subject":"CN=NAVER Secure Certification Authority 1,O=NAVER BUSINESS PLATFORM Corp.,C=KR","subjectDN":"MGYxCzAJBgNVBAYTAktSMSYwJAYDVQQKDB1OQVZFUiBCVVNJTkVTUyBQTEFURk9STSBDb3JwLjEvMC0GA1UEAwwmTkFWRVIgU2VjdXJlIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IDE=","whitelist":false,"attachment":{"hash":"99d81a11ba4ee9372795e89c14a2c5c6011f433176a402bb5dd5889a378b6c0b","size":1991,"filename":"cJ2mHuIKySslEdkckvymNSKxLhYRvvY9Z8ivbKik0Tg=.pem","location":"security-state-staging/intermediates/30dde061-e042-4d6a-b9ff
-b5b063040817.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cJ2mHuIKySslEdkckvymNSKxLhYRvvY9Z8ivbKik0Tg=","crlite_enrolled":true,"id":"b91d1139-0ac1-45fb-bf47-cea7ab32882e","last_modified":1607997452848},{"schema":1607715692979,"derHash":"/KiES2J8Nx3kp/kQpS6OkM3CmBOqJNY3Hf0e8MFKH4Y=","subject":"SERIALNUMBER=201507,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDc=","whitelist":false,"attachment":{"hash":"e08c53caafa23be5fba08037729fa1585b1cf96c14f77428038d77f5b1670e27","size":2093,"filename":"sTL0G6l0dolGcB2vAkf3KGdhh0Glca9lcMoxggaMDQs=.pem","location":"security-state-staging/intermediates/6dc6b7a6-cead-4228-b8e4-0e086a453f57.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sTL0G6l0dolGcB2vAkf3KGdhh0Glca9lcMoxggaMDQs=","crlite_enrolled":true,"id":"499c3a9b-8ef3-47e9-a544-38e54edc5ba3","last_modified":1607759852380},{"schema":1607694534261,"derHash":"bzNd181Kqh2RQPKQ6eezSYp8w1okSqMA4Ua6LZ0CuWA=","subject":"CN=Glo
balSign Atlas ECCR5 DV TLS CA 2020-12,O=GlobalSign nv-sa,C=BE","subjectDN":"MFsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTEwLwYDVQQDEyhHbG9iYWxTaWduIEF0bGFzIEVDQ1I1IERWIFRMUyBDQSAyMDIwLTEy","whitelist":false,"attachment":{"hash":"c382d90e02609513d21d5c25d700a6f8e6b01f00b16e0cc3be89ad8d2de7a642","size":1248,"filename":"V_K2Vnq-QG5Dg_lYp-FnfgtMGvtLYZ1qAfYtkKQAILg=.pem","location":"security-state-staging/intermediates/32b8806d-e3fb-4c24-838a-25c957f58b64.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V/K2Vnq+QG5Dg/lYp+FnfgtMGvtLYZ1qAfYtkKQAILg=","crlite_enrolled":false,"id":"9d98e0ae-79dc-42dd-b2ab-457585b3b2e0","last_modified":1607695036009},{"schema":1607694531126,"derHash":"pgMsw1Lx4uNijhYqMEe8fWR+LWAaLA8myq+ar3pUI5w=","subject":"CN=GlobalSign Atlas R3 OV TLS CA 2020-12,O=GlobalSign nv-sa,C=BE","subjectDN":"MFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIE9WIFRMUyBDQSAyMDIwLTEy","whitelist":false,"attachment":{"ha
sh":"87bb6f2c47bbed017d590d273e3e104b9a51d89c90f2d746b6d5c6b22a32b5e5","size":1691,"filename":"q8RzYVnv8u4WxSzLeEvOffFfpsrmgSIHiNuWJdK7BlU=.pem","location":"security-state-staging/intermediates/45a9ec2b-ccc8-4abc-9d7c-a2ad83a3fca5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q8RzYVnv8u4WxSzLeEvOffFfpsrmgSIHiNuWJdK7BlU=","crlite_enrolled":false,"id":"5176fc36-9fd7-446d-aa9d-773e2d5f82c2","last_modified":1607695035994},{"schema":1607694532759,"derHash":"LrihMXKI8IIz5og86+Z+pqCYniKspCxY1Z9ag04CxRM=","subject":"CN=GlobalSign Atlas ECCR5 OV TLS CA 2020-12,O=GlobalSign nv-sa,C=BE","subjectDN":"MFsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTEwLwYDVQQDEyhHbG9iYWxTaWduIEF0bGFzIEVDQ1I1IE9WIFRMUyBDQSAyMDIwLTEy","whitelist":false,"attachment":{"hash":"0da48dd5abf0b542d1a4a62dc458f758e9c3517117e8ec13525dc3dc3e0ac628","size":1248,"filename":"pE2Mn6zDBy5ZUUx_Fz25_Wr_c2YZWOT8FCJpeRfpTXQ=.pem","location":"security-state-staging/intermediates/c3fa086f-e7d9-478c-8836-1bc02ce096dd
.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pE2Mn6zDBy5ZUUx/Fz25/Wr/c2YZWOT8FCJpeRfpTXQ=","crlite_enrolled":false,"id":"7313f33d-0022-4715-8279-106b6ce53a40","last_modified":1607695035982},{"schema":1607676521432,"derHash":"WfX/krYIoBGf8d18YD4OsW9P6tnUcXrDvGLShq45nNo=","subject":"CN=GlobalSign Atlas R3 DV TLS CA 2020-12,O=GlobalSign nv-sa,C=BE","subjectDN":"MFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIwLTEy","whitelist":false,"attachment":{"hash":"978bbc0b5187a94f5a992a6478523b1f397eaf3bfd62a8b8256dc53cc30af2bb","size":1691,"filename":"qHEiXUiOfz6Ni9Jz-z5RQSnsI3DqTIU9kw0X_YkfXsU=.pem","location":"security-state-staging/intermediates/15b5c177-d7da-4308-9c80-e5eb34a8193e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qHEiXUiOfz6Ni9Jz+z5RQSnsI3DqTIU9kw0X/YkfXsU=","crlite_enrolled":false,"id":"93403c3f-2de2-47f2-9594-d1e0c59935f0","last_modified":1607677034093},{"schema":1607672928470,"derHash":"
WfX/krYIoBGf8d18YD4OsW9P6tnUcXrDvGLShq45nNo=","subject":"CN=GlobalSign Atlas R3 DV TLS CA 2020-12,O=GlobalSign nv-sa,C=BE","subjectDN":"MFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIwLTEy","whitelist":false,"attachment":{"hash":"978bbc0b5187a94f5a992a6478523b1f397eaf3bfd62a8b8256dc53cc30af2bb","size":1691,"filename":"qHEiXUiOfz6Ni9Jz-z5RQSnsI3DqTIU9kw0X_YkfXsU=.pem","location":"security-state-staging/intermediates/9e8e5ad0-dd70-48a0-9802-7115a4b06295.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qHEiXUiOfz6Ni9Jz+z5RQSnsI3DqTIU9kw0X/YkfXsU=","crlite_enrolled":false,"id":"9ffa3358-512a-4c95-ac0f-0699656bcaad","last_modified":1607673449938},{"schema":1607241495452,"derHash":"RVtfptakcuI/CsDxwUqj9egFUyA8p/9CgPwRJQVFdP0=","subject":"CN=CrossTrust OV CA4,O=CrossTrust,C=JP","subjectDN":"MD4xCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpDcm9zc1RydXN0MRowGAYDVQQDExFDcm9zc1RydXN0IE9WIENBNA==","whitelist":false,"attachment":{"hash
":"97a527f046f5624a30b63930ccf621cb3a3547798bbad1b604eb580bffb8488e","size":1589,"filename":"7cvw7u1H41D6YEAbLwb40cb22xC4hWT1GJJedbVdsVU=.pem","location":"security-state-staging/intermediates/ed8a8352-aa21-42b8-a131-1abe9284bf80.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7cvw7u1H41D6YEAbLwb40cb22xC4hWT1GJJedbVdsVU=","crlite_enrolled":false,"id":"47fc2392-f7e9-4142-bf2f-b04268d380c2","last_modified":1607263109979},{"schema":1607197292996,"derHash":"kAFLo7mQAYSoTKKkZW0DxgU1fyAu/z9ZF2ylTJgALLE=","subject":"CN=CrossTrust DV CA3,O=CrossTrust,C=JP","subjectDN":"MD4xCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpDcm9zc1RydXN0MRowGAYDVQQDExFDcm9zc1RydXN0IERWIENBMw==","whitelist":false,"attachment":{"hash":"a4299ae8c6d64201f117d7faa1cc4ab82a9fd681134ae157d8e4d73f3048227e","size":1581,"filename":"qfSK-xETySSQi4hk8YejfqWMDWTFyNRPmj8rfRp62tA=.pem","location":"security-state-staging/intermediates/5ffe7bf6-caee-4f37-8a1b-a823dd866066.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qfSK+xETyS
SQi4hk8YejfqWMDWTFyNRPmj8rfRp62tA=","crlite_enrolled":false,"id":"f345a14d-3b2d-4084-b276-a9357ebc2988","last_modified":1607241494575},{"schema":1607050675439,"derHash":"zx+PmJ+XXQUabw2VI65XMqOn4jRObFQPu2Q94pVRnmc=","subject":"CN=CSP SSL Service CA 4,O=CENTRAL SECURITY PATROLS CO.\\, LTD.,L=Shinjuku-ku,ST=Tokyo,C=JP","subjectDN":"MH8xCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzEUMBIGA1UEBxMLU2hpbmp1a3Uta3UxKzApBgNVBAoTIkNFTlRSQUwgU0VDVVJJVFkgUEFUUk9MUyBDTy4sIExURC4xHTAbBgNVBAMTFENTUCBTU0wgU2VydmljZSBDQSA0","whitelist":false,"attachment":{"hash":"5680447216a29294af84501384f90dd03d987feb70a168dc884d807c1ce6dcb1","size":2154,"filename":"6cmFGKSet-uN9lExNlA28Wy9f_epSW1jDhpODTW1QyI=.pem","location":"security-state-staging/intermediates/2efe3c65-93ec-4c6e-bc4f-8354baae1d21.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6cmFGKSet+uN9lExNlA28Wy9f/epSW1jDhpODTW1QyI=","crlite_enrolled":false,"id":"fca3cb91-0e32-4135-a6e7-e231918a3734","last_modified":1607090289374},{"schema":1607050148986,
"derHash":"RLVFqool5lpzyhXcJ/w20kwcuZU6BmU5sRWC3Eh7SDM=","subject":"CN=Hellenic Academic and Research Institutions ECC RootCA 2015,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGqMQswCQYDVQQGEwJHUjEPMA0GA1UEBxMGQXRoZW5zMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTFEMEIGA1UEAxM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBFQ0MgUm9vdENBIDIwMTU=","whitelist":false,"attachment":{"hash":"68247409e722cb630f0449b14b3db230f4582f5b0b6b21e2acf7724783a35df9","size":1016,"filename":"u1IIbQY56NszJ3Wsj06ENdks6wD04k8o_A6r4kB3LoA=.pem","location":"security-state-staging/intermediates/ed532c05-a2de-4cc3-a825-b66ee8628364.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"u1IIbQY56NszJ3Wsj06ENdks6wD04k8o/A6r4kB3LoA=","crlite_enrolled":false,"id":"0becdd95-da83-4547-ab7c-c6cbfee44235","last_modified":1607050674570},{"schema":1607046545967,"derHash":"RLVFqool5lpzyhXcJ/w20kwcuZU6BmU5sRWC3Eh7
SDM=","subject":"CN=Hellenic Academic and Research Institutions ECC RootCA 2015,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGqMQswCQYDVQQGEwJHUjEPMA0GA1UEBxMGQXRoZW5zMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTFEMEIGA1UEAxM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBFQ0MgUm9vdENBIDIwMTU=","whitelist":false,"attachment":{"hash":"68247409e722cb630f0449b14b3db230f4582f5b0b6b21e2acf7724783a35df9","size":1016,"filename":"u1IIbQY56NszJ3Wsj06ENdks6wD04k8o_A6r4kB3LoA=.pem","location":"security-state-staging/intermediates/57f1e4b9-a9f7-461b-ba56-09907e258ee8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"u1IIbQY56NszJ3Wsj06ENdks6wD04k8o/A6r4kB3LoA=","crlite_enrolled":false,"id":"bfd16bc3-34f1-440a-a9fd-89a869068333","last_modified":1607047075462},{"schema":1606917474805,"derHash":"r+FZXnCXzN+0Ms6mOb3uhs8ldsJ982+caRzwPhMkwdQ=","subject":"CN=Trustico RSA OV CA,O=The Trusti
co Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MG4xCzAJBgNVBAYTAkdCMQ8wDQYDVQQIEwZMb25kb24xEDAOBgNVBAcTB0Nyb3lkb24xHzAdBgNVBAoTFlRoZSBUcnVzdGljbyBHcm91cCBMdGQxGzAZBgNVBAMTElRydXN0aWNvIFJTQSBPViBDQQ==","whitelist":false,"attachment":{"hash":"4aaceec6690459b455ad73585e25a07a65b1b302c94a4e198062875402f68530","size":2113,"filename":"hZa79Z70L3tWUM25OQ658Ld4Rg65tj7Rn6OQXFiJPkg=.pem","location":"security-state-staging/intermediates/38b03aee-b8d2-4bb3-982e-18487f59c304.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hZa79Z70L3tWUM25OQ658Ld4Rg65tj7Rn6OQXFiJPkg=","crlite_enrolled":false,"id":"fff9a2df-08f2-4fef-b8f3-e1462f74c9dd","last_modified":1606939082092},{"schema":1606917034925,"derHash":"Efukp+5XnHDh1X+fm2qMIJ4SGcTx04Rvg//OdOnl4s4=","subject":"CN=Soluti CA - EV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,C=BR","subjectDN":"MF8xCzAJBgNVBAYTAkJSMTcwNQYDVQQKEy5TT0xVVEkgLSBTT0xVQ09FUyBFTSBORUdPQ0lPUyBJTlRFTElHRU5URVMgUy9BMRcwFQYDVQQDEw5Tb2x1dGkgQ0EgLSBFVg==","whitelist":
false,"attachment":{"hash":"b45919819e02ad79724a514eaf858e77f666b1352e04efbd7b970ef878509a6a","size":1776,"filename":"Z6aApIGWlcMWZHFtBmP1FgZhyLKarTalSo0g5-EeG0U=.pem","location":"security-state-staging/intermediates/fa38118a-b0dd-4170-b25b-2077e50db1af.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z6aApIGWlcMWZHFtBmP1FgZhyLKarTalSo0g5+EeG0U=","crlite_enrolled":true,"id":"036fbcb0-0139-4457-840c-cb0e018adfe6","last_modified":1606917473706},{"schema":1606916930155,"derHash":"Efukp+5XnHDh1X+fm2qMIJ4SGcTx04Rvg//OdOnl4s4=","subject":"CN=Soluti CA - EV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,C=BR","subjectDN":"MF8xCzAJBgNVBAYTAkJSMTcwNQYDVQQKEy5TT0xVVEkgLSBTT0xVQ09FUyBFTSBORUdPQ0lPUyBJTlRFTElHRU5URVMgUy9BMRcwFQYDVQQDEw5Tb2x1dGkgQ0EgLSBFVg==","whitelist":false,"attachment":{"hash":"b45919819e02ad79724a514eaf858e77f666b1352e04efbd7b970ef878509a6a","size":1776,"filename":"Z6aApIGWlcMWZHFtBmP1FgZhyLKarTalSo0g5-EeG0U=.pem","location":"security-state-staging/intermediates/2c
39ac03-7820-4419-beb2-d08951cc6726.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z6aApIGWlcMWZHFtBmP1FgZhyLKarTalSo0g5+EeG0U=","crlite_enrolled":true,"id":"7f207e9f-d31a-4ba4-957d-09d4f8291836","last_modified":1606917473688},{"schema":1606916931468,"derHash":"q3SxQRrSPiIn+4iiqTBKGkWlxIQLNjXxA2pG6DdCeaw=","subject":"CN=Soluti CA - OV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,C=BR","subjectDN":"MF8xCzAJBgNVBAYTAkJSMTcwNQYDVQQKEy5TT0xVVEkgLSBTT0xVQ09FUyBFTSBORUdPQ0lPUyBJTlRFTElHRU5URVMgUy9BMRcwFQYDVQQDEw5Tb2x1dGkgQ0EgLSBPVg==","whitelist":false,"attachment":{"hash":"1289ff9c033377f8edc9f2ded9318205d7263d8c7040b70ff2db68630eaac699","size":1776,"filename":"rCbpz2JPbnICZtM69Lt2eclqdTss0Mj0Z4ejXMF1nD4=.pem","location":"security-state-staging/intermediates/d46e5729-e1a1-4a1d-b398-9fae0f398bf1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rCbpz2JPbnICZtM69Lt2eclqdTss0Mj0Z4ejXMF1nD4=","crlite_enrolled":true,"id":"c9dfa791-474d-4cd4-b016-5e238a4e2c8f","last_modified"
:1606917473670},{"schema":1606916931901,"derHash":"q3SxQRrSPiIn+4iiqTBKGkWlxIQLNjXxA2pG6DdCeaw=","subject":"CN=Soluti CA - OV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,C=BR","subjectDN":"MF8xCzAJBgNVBAYTAkJSMTcwNQYDVQQKEy5TT0xVVEkgLSBTT0xVQ09FUyBFTSBORUdPQ0lPUyBJTlRFTElHRU5URVMgUy9BMRcwFQYDVQQDEw5Tb2x1dGkgQ0EgLSBPVg==","whitelist":false,"attachment":{"hash":"1289ff9c033377f8edc9f2ded9318205d7263d8c7040b70ff2db68630eaac699","size":1776,"filename":"rCbpz2JPbnICZtM69Lt2eclqdTss0Mj0Z4ejXMF1nD4=.pem","location":"security-state-staging/intermediates/7ff46c16-7f19-481d-b990-fd4bc6aabfe9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rCbpz2JPbnICZtM69Lt2eclqdTss0Mj0Z4ejXMF1nD4=","crlite_enrolled":true,"id":"3908bde0-cc20-4ee6-af97-f8c7e04833ac","last_modified":1606917473651},{"schema":1606916930579,"derHash":"uxcLOXhNAnhDJc6pONkjFMYX3egIyGfjPirRYdVLPoo=","subject":"CN=Soluti CA - EV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,L=Goi\u00e2nia,ST=Goi\u00e1s,C=BR","subjectD
N":"MIGDMQswCQYDVQQGEwJCUjEPMA0GA1UECAwGR29pw6FzMREwDwYDVQQHDAhHb2nDom5pYTE3MDUGA1UEChMuU09MVVRJIC0gU09MVUNPRVMgRU0gTkVHT0NJT1MgSU5URUxJR0VOVEVTIFMvQTEXMBUGA1UEAxMOU29sdXRpIENBIC0gRVY=","whitelist":false,"attachment":{"hash":"19fefd4f70ea48cb5d6ea309efe68d11ffa03632cea4cfeec8dc09417da36fa2","size":1837,"filename":"Z6aApIGWlcMWZHFtBmP1FgZhyLKarTalSo0g5-EeG0U=.pem","location":"security-state-staging/intermediates/d2973af0-94cb-4052-9f9a-a6c552deb9a9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z6aApIGWlcMWZHFtBmP1FgZhyLKarTalSo0g5+EeG0U=","crlite_enrolled":true,"id":"cc2e3096-5b34-4e12-8901-72cacec6b510","last_modified":1606917473614},{"schema":1606916929707,"derHash":"5ukpyEVsAU6NpzOs5OmBRVInK4EXYFChPqRagjIAsUs=","subject":"CN=Soluti CA - OV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,L=Goi\u00e2nia,ST=Goi\u00e1s,C=BR","subjectDN":"MIGDMQswCQYDVQQGEwJCUjEPMA0GA1UECAwGR29pw6FzMREwDwYDVQQHDAhHb2nDom5pYTE3MDUGA1UEChMuU09MVVRJIC0gU09MVUNPRVMgRU0gTkVHT0NJT1MgSU5URUxJR0VOVE
VTIFMvQTEXMBUGA1UEAxMOU29sdXRpIENBIC0gT1Y=","whitelist":false,"attachment":{"hash":"19cb0ae44011765535de42c22ddec245a2178d13094aa7cc8d2ebfe5143caa64","size":1837,"filename":"rCbpz2JPbnICZtM69Lt2eclqdTss0Mj0Z4ejXMF1nD4=.pem","location":"security-state-staging/intermediates/801d6b0f-a466-4902-99e1-de0020c43f0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rCbpz2JPbnICZtM69Lt2eclqdTss0Mj0Z4ejXMF1nD4=","crlite_enrolled":true,"id":"e78a46ec-c8ec-4fbb-9d87-67247c3ba782","last_modified":1606917473595},{"schema":1606830635261,"derHash":"IIOI6/mbEhiIUvEd15Rme145laJ2etslXpuPXUz1BXY=","subject":"CN=CertCloud RSA EV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgUlNBIEVWIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"12724d564e2cbda02a9fc1327e4c62a1bc03b1b2e93f870d923346a811dc27a5","size":2109,"filename":"qtoy2s5rEsyXk3LyvPdOnjlq0FouOkWa_MxbJugEHms=.pem","location":"security-state-staging/in
termediates/e4655ca7-9066-423f-985a-340112104daf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qtoy2s5rEsyXk3LyvPdOnjlq0FouOkWa/MxbJugEHms=","crlite_enrolled":true,"id":"172b1f94-1468-4b3a-8538-b1071e17c256","last_modified":1606831071215},{"schema":1606830533191,"derHash":"cQLZcsJOnKaNDm+f9TxfZYzZuGSfKOrY28M2wt9QSBE=","subject":"CN=CertCloud RSA OV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgUlNBIE9WIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"8d771de489696047446dd891e36b2c199bc714a871f4de9a134028e7dd330872","size":2081,"filename":"ORYJiVkIJCqtrNqVHJ4iw_q-R2u46OEMcFExxBr8_5Y=.pem","location":"security-state-staging/intermediates/3b08e799-b31b-4131-a15e-06ba6cd0b067.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ORYJiVkIJCqtrNqVHJ4iw/q+R2u46OEMcFExxBr8/5Y=","crlite_enrolled":true,"id":"1e513d59-b8f5-4b2d-b079-bf21291f788f","last_modified":1606831071197},{"schema":16
06830635701,"derHash":"yYqJmVEeL2CJUFOv9MU5vRtnZXVOu3s1OJaz8pdO2D8=","subject":"CN=CertCloud ECC OV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgRUNDIE9WIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"8ea4ce61b55373639b30bc8f5a9bc1599c0d2d52d91a015219632c719b540bb9","size":1240,"filename":"q6ASqDW7KvwqyTSX_m1w95QebvKZnwudV__ETDG8YTc=.pem","location":"security-state-staging/intermediates/50537f53-efe3-47c3-934b-9e406a3ffdce.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q6ASqDW7KvwqyTSX/m1w95QebvKZnwudV//ETDG8YTc=","crlite_enrolled":true,"id":"677706c1-d0ab-48a0-9227-8df475ae33b1","last_modified":1606831071178},{"schema":1606830532323,"derHash":"IIOI6/mbEhiIUvEd15Rme145laJ2etslXpuPXUz1BXY=","subject":"CN=CertCloud RSA EV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgUlNBIEVWIFRMUyBDQQ==","wh
itelist":false,"attachment":{"hash":"12724d564e2cbda02a9fc1327e4c62a1bc03b1b2e93f870d923346a811dc27a5","size":2109,"filename":"qtoy2s5rEsyXk3LyvPdOnjlq0FouOkWa_MxbJugEHms=.pem","location":"security-state-staging/intermediates/d12087b1-5f70-4a41-8e7f-7a3fdbda8505.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qtoy2s5rEsyXk3LyvPdOnjlq0FouOkWa/MxbJugEHms=","crlite_enrolled":true,"id":"02e3f60f-46b3-4774-9f8c-0bc4cc9893db","last_modified":1606831071159},{"schema":1606830531854,"derHash":"cQLZcsJOnKaNDm+f9TxfZYzZuGSfKOrY28M2wt9QSBE=","subject":"CN=CertCloud RSA OV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgUlNBIE9WIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"8d771de489696047446dd891e36b2c199bc714a871f4de9a134028e7dd330872","size":2081,"filename":"ORYJiVkIJCqtrNqVHJ4iw_q-R2u46OEMcFExxBr8_5Y=.pem","location":"security-state-staging/intermediates/85b0d8c2-29b3-4346-9080-e95bce35f8b
6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ORYJiVkIJCqtrNqVHJ4iw/q+R2u46OEMcFExxBr8/5Y=","crlite_enrolled":true,"id":"b87a1d31-36bc-448e-ba4b-6a58e79386ba","last_modified":1606831071136},{"schema":1606830532756,"derHash":"yYqJmVEeL2CJUFOv9MU5vRtnZXVOu3s1OJaz8pdO2D8=","subject":"CN=CertCloud ECC OV TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"ME0xCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMSAwHgYDVQQDExdDZXJ0Q2xvdWQgRUNDIE9WIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"8ea4ce61b55373639b30bc8f5a9bc1599c0d2d52d91a015219632c719b540bb9","size":1240,"filename":"q6ASqDW7KvwqyTSX_m1w95QebvKZnwudV__ETDG8YTc=.pem","location":"security-state-staging/intermediates/c59c8cb7-d94d-4f73-8a7f-702018c3797f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q6ASqDW7KvwqyTSX/m1w95QebvKZnwudV//ETDG8YTc=","crlite_enrolled":true,"id":"577f165f-8a63-4889-afea-e7ee828bc7c3","last_modified":1606831071111},{"schema":1606787357745,"derHash":"I+ywPuwXM4xOM6a0ikHcPNoS
KBu8P/gTwFidbMI4dSI=","subject":"CN=GTS CA 1C3,O=Google Trust Services LLC,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMUMz","whitelist":false,"attachment":{"hash":"88a6ecb70d888765711d7b8ea76f793d4b228fedad48e215e01fc948196b7baf","size":1995,"filename":"zCTnfLwLKbS9S2sbp-uFz4KZOocFvXxkV06Ce9O5M2w=.pem","location":"security-state-staging/intermediates/8274b76f-2423-4a90-b8c0-15fb22c3d9a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zCTnfLwLKbS9S2sbp+uFz4KZOocFvXxkV06Ce9O5M2w=","crlite_enrolled":true,"id":"bb2cfbac-beea-4199-9bfb-7822a906f054","last_modified":1606787861390},{"schema":1606787486997,"derHash":"ZOKGt2BjYCo3Lv1gzejbJlaknuFehCVLPW61/jj0KIs=","subject":"CN=GTS CA 1D4,O=Google Trust Services LLC,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMUQ0","whitelist":false,"attachment":{"hash":"3eeab8b593f9b526e5e441336b3c99ef183d6618c02890e5
bab1825e1a95744b","size":1983,"filename":"cXjPgKdVe6iojP8s0YQJ3rtmDFHTnYZxcYvmYGFiYME=.pem","location":"security-state-staging/intermediates/a56bd323-af0f-48aa-9258-720471d08a2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cXjPgKdVe6iojP8s0YQJ3rtmDFHTnYZxcYvmYGFiYME=","crlite_enrolled":true,"id":"06a19215-a3f8-41c0-b91d-c0119027036e","last_modified":1606787861369},{"schema":1606753452631,"derHash":"ZOKGt2BjYCo3Lv1gzejbJlaknuFehCVLPW61/jj0KIs=","subject":"CN=GTS CA 1D4,O=Google Trust Services LLC,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMUQ0","whitelist":false,"attachment":{"hash":"3eeab8b593f9b526e5e441336b3c99ef183d6618c02890e5bab1825e1a95744b","size":1983,"filename":"cXjPgKdVe6iojP8s0YQJ3rtmDFHTnYZxcYvmYGFiYME=.pem","location":"security-state-staging/intermediates/2e90889f-7abd-4634-9a0e-0b6484068790.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cXjPgKdVe6iojP8s0YQJ3rtmDFHTnYZxcYvmYGFiYME=",
"crlite_enrolled":true,"id":"d80b8959-3c46-49da-8258-57d90d760838","last_modified":1606787861349},{"schema":1606787357308,"derHash":"I+ywPuwXM4xOM6a0ikHcPNoSKBu8P/gTwFidbMI4dSI=","subject":"CN=GTS CA 1C3,O=Google Trust Services LLC,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMUMz","whitelist":false,"attachment":{"hash":"88a6ecb70d888765711d7b8ea76f793d4b228fedad48e215e01fc948196b7baf","size":1995,"filename":"zCTnfLwLKbS9S2sbp-uFz4KZOocFvXxkV06Ce9O5M2w=.pem","location":"security-state-staging/intermediates/d5e42a4e-f2c4-48cb-b4db-dff2bdeaa25a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zCTnfLwLKbS9S2sbp+uFz4KZOocFvXxkV06Ce9O5M2w=","crlite_enrolled":true,"id":"006e939d-ce4c-47b3-83b6-1106c0cbe038","last_modified":1606787861330},{"schema":1606744134795,"derHash":"kxqqHsmyug+lmoIwL0+DBijIbZstKlCk0bLOiVxMxkg=","subject":"CN=Actalis Organization Validated Server CA G3,O=Actalis S.p.A.,L=Ponte San Pietro,ST=Berg
amo,C=IT","subjectDN":"MIGJMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEXMBUGA1UECgwOQWN0YWxpcyBTLnAuQS4xNDAyBgNVBAMMK0FjdGFsaXMgT3JnYW5pemF0aW9uIFZhbGlkYXRlZCBTZXJ2ZXIgQ0EgRzM=","whitelist":false,"attachment":{"hash":"71fafcd9a9832cc1330204b9331c40ce9c1fbcedeb9bd11114cd6cc2e1618b06","size":2645,"filename":"bX2Ri6lz4UqCdYdntmbFTrpmv0zVxEqhgCHCu9QV278=.pem","location":"security-state-staging/intermediates/eedc60b7-37aa-42bf-bad4-6909eaa5094d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bX2Ri6lz4UqCdYdntmbFTrpmv0zVxEqhgCHCu9QV278=","crlite_enrolled":false,"id":"62176a9a-7824-4b40-9921-687fd3033eb6","last_modified":1606744672041},{"schema":1606744133804,"derHash":"kxqqHsmyug+lmoIwL0+DBijIbZstKlCk0bLOiVxMxkg=","subject":"CN=Actalis Organization Validated Server CA G3,O=Actalis S.p.A.,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGJMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEXMBUGA1UECgwOQWN0YWxpcyBTLnAu
QS4xNDAyBgNVBAMMK0FjdGFsaXMgT3JnYW5pemF0aW9uIFZhbGlkYXRlZCBTZXJ2ZXIgQ0EgRzM=","whitelist":false,"attachment":{"hash":"71fafcd9a9832cc1330204b9331c40ce9c1fbcedeb9bd11114cd6cc2e1618b06","size":2645,"filename":"bX2Ri6lz4UqCdYdntmbFTrpmv0zVxEqhgCHCu9QV278=.pem","location":"security-state-staging/intermediates/6a86241e-e0c9-4fa3-9aa2-ff1afa4b55b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bX2Ri6lz4UqCdYdntmbFTrpmv0zVxEqhgCHCu9QV278=","crlite_enrolled":false,"id":"3107a9df-8e66-4472-ad36-f1062492c3e0","last_modified":1606744672021},{"schema":1606678892869,"derHash":"ROvwEj4n/x2wSXvS2uGBVbKkFOa82cbI+49IOYRJuek=","subject":"CN=TeleSec Business CA 1,OU=T-Systems Trust Center,O=T-Systems International GmbH,C=DE","subjectDN":"MHUxCzAJBgNVBAYTAkRFMSUwIwYDVQQKExxULVN5c3RlbXMgSW50ZXJuYXRpb25hbCBHbWJIMR8wHQYDVQQLExZULVN5c3RlbXMgVHJ1c3QgQ2VudGVyMR4wHAYDVQQDExVUZWxlU2VjIEJ1c2luZXNzIENBIDE=","whitelist":false,"attachment":{"hash":"5f456791aae0975819a267a4b01e2b4e0fcb12b375c5334b5a72562ee
fa58948","size":1947,"filename":"XmXOT9NXQoum_vwr876xEH0qCXmA3ZncBDyibtkXpQU=.pem","location":"security-state-staging/intermediates/085cace9-264b-4a9a-9330-f554e6585359.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XmXOT9NXQoum/vwr876xEH0qCXmA3ZncBDyibtkXpQU=","crlite_enrolled":false,"id":"eda28108-1b54-44e6-b8c5-1b6afcf10b67","last_modified":1606744671982},{"schema":1606333742190,"derHash":"M55rkr5UWfJqjcPF83IJM8g44jZgGwUASMBHoSPm+Oc=","subject":"CN=Sectigo Qualified Website Authentication CA Natural R35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MG0xCzAJBgNVBAYTAkVTMRwwGgYDVQQKExNTZWN0aWdvIChFdXJvcGUpIFNMMUAwPgYDVQQDEzdTZWN0aWdvIFF1YWxpZmllZCBXZWJzaXRlIEF1dGhlbnRpY2F0aW9uIENBIE5hdHVyYWwgUjM1","whitelist":false,"attachment":{"hash":"2fdbc0c44bbbeb793ee6210c10f58a2b439a31b2c4f3ad98fc85188c1f0f7741","size":2272,"filename":"8SDm7JR9Lr5k8CRbSJ0R2_L6J0y30uLS_XkBNMdspCI=.pem","location":"security-state-staging/intermediates/af7fd13b-b101-4e0c-b915-c07e51012dae.pem","mimetype":"ap
plication/x-pem-file"},"pubKeyHash":"8SDm7JR9Lr5k8CRbSJ0R2/L6J0y30uLS/XkBNMdspCI=","crlite_enrolled":false,"id":"6e195515-4482-4668-8fe4-f5027666c37a","last_modified":1606334252701},{"schema":1606333739838,"derHash":"qYQdLkfL5tcdj6/fODh/k/Q9dteSUE77F6IQIMWMC4k=","subject":"CN=Sectigo Qualified Website Authentication CA Natural E35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MG0xCzAJBgNVBAYTAkVTMRwwGgYDVQQKExNTZWN0aWdvIChFdXJvcGUpIFNMMUAwPgYDVQQDEzdTZWN0aWdvIFF1YWxpZmllZCBXZWJzaXRlIEF1dGhlbnRpY2F0aW9uIENBIE5hdHVyYWwgRTM1","whitelist":false,"attachment":{"hash":"7444706a13ee3d249ce6a3beee972c7b398c8ea8de04ca1731c7f2a672dc84f2","size":1256,"filename":"_E4OWM1It5EGPdb8mrqad2xJL7i_-r8fvlJCYaFSPu8=.pem","location":"security-state-staging/intermediates/48775c2f-29fa-4215-9452-7af9caeaf04e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/E4OWM1It5EGPdb8mrqad2xJL7i/+r8fvlJCYaFSPu8=","crlite_enrolled":false,"id":"ffb4d38b-871d-4d95-90a0-f5a3af5f65aa","last_modified":1606334252687},{"sche
ma":1606161750920,"derHash":"zAslEu4gKAw28w1XCErLa4Y22UtIF0LkJDNcd2fnWMY=","subject":"CN=SZCA OV SSL CA,O=Shenzhen Digital Certificate Authority Center Co.\\, Ltd,C=CN","subjectDN":"MGcxCzAJBgNVBAYTAkNOMT8wPQYDVQQKDDZTaGVuemhlbiBEaWdpdGFsIENlcnRpZmljYXRlIEF1dGhvcml0eSBDZW50ZXIgQ28uLCBMdGQxFzAVBgNVBAMMDlNaQ0EgT1YgU1NMIENB","whitelist":false,"attachment":{"hash":"f14773351856d24a716ac777ab1f49b20bc3e773a90bd6e81448699608ed3745","size":1756,"filename":"bJ62__O9KMouzGPMfpN1AzgR1FpzP3mVaUCWzzs5FjI=.pem","location":"security-state-staging/intermediates/2377fa54-4f75-4365-adcf-533a61b44d4d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bJ62//O9KMouzGPMfpN1AzgR1FpzP3mVaUCWzzs5FjI=","crlite_enrolled":true,"id":"31bbaba6-e6cc-4825-8c0e-724e8d0c9398","last_modified":1606298245517},{"schema":1606160494313,"derHash":"oX1hDWhKT/Iokus8AyW8b36ux4cUuHZyHsuwMzV2FyY=","subject":"CN=FujiSSL Public Certification Authority - G2,O=Nijimo\\, Inc.,C=JP","subjectDN":"MFoxCzAJBgNVBAYTAkpQMRUwEwYDVQQK
EwxOaWppbW8sIEluYy4xNDAyBgNVBAMTK0Z1amlTU0wgUHVibGljIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"af126afe4039f135d0760332f28490f6b342c6bae42eabf97eb795c14726eb23","size":1626,"filename":"9JHVNVBfHJmPYVl2MYnHpVngU078_w25VD2RfhBP-xk=.pem","location":"security-state-staging/intermediates/39b0118b-e68a-47ca-8de4-28f23d41335a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9JHVNVBfHJmPYVl2MYnHpVngU078/w25VD2RfhBP+xk=","crlite_enrolled":false,"id":"6287a280-58bd-4c6c-8833-22c9b30a93d0","last_modified":1606161750117},{"schema":1605878542738,"derHash":"vf2E2QKq0BDE4IExd1r7c2VpTugcm4ri33ZBnz7fG+E=","subject":"CN=TrustSign BR Certification Authority (OV) 2,O=TrustSign Certificadora Dig. & Solu\u00e7\u00f5es Seguran\u00e7a da Inf. Ltda.,L=S\u00e3o Jos\u00e9 dos Campos,ST=S\u00e3o Paulo,C=BR","subjectDN":"MIHFMQswCQYDVQQGEwJCUjETMBEGA1UECAwKU8OjbyBQYXVsbzEeMBwGA1UEBwwVU8OjbyBKb3PDqSBkb3MgQ2FtcG9zMUswSQYDVQQKDEJUcnVzdFNpZ24gQ2VydGlmaWNhZG9yYSBEaWcuICY
gU29sdcOnw7VlcyBTZWd1cmFuw6dhIGRhIEluZi4gTHRkYS4xNDAyBgNVBAMTK1RydXN0U2lnbiBCUiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAoT1YpIDI=","whitelist":false,"attachment":{"hash":"d3dc3d5cc6b731efb8dd4582c2ff3a8a8908962642aa4824f4b90b58832e90cd","size":2251,"filename":"YH8nyVlvrD15SoA59nrCYN5KN2y2Xz-fJ5K-uBAfl1Y=.pem","location":"security-state-staging/intermediates/c00b8ed3-5bd7-4213-8c0b-7b171e5b524a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YH8nyVlvrD15SoA59nrCYN5KN2y2Xz+fJ5K+uBAfl1Y=","crlite_enrolled":true,"id":"4d16fbc3-1ed1-40c0-940d-7abe6b7f2408","last_modified":1605945559522},{"schema":1605772140734,"derHash":"M47bBPuL6vB6EHSef05TjeBxXa+2R41YBj+3yL2www0=","subject":"CN=DigiCert Global G3 TLS ECC SHA384 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRpZ2lDZXJ0IEdsb2JhbCBHMyBUTFMgRUNDIFNIQTM4NCAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"7b5d64467372b9a0fe18ac79c51920708cd6c7b9c0d147b7a4a34b03d00bb358","siz
e":1325,"filename":"qBRjZmOmkSNJL0p70zek7odSIzqs_muR4Jk9xYyCP-E=.pem","location":"security-state-staging/intermediates/0c3ef7f6-26b4-4d20-9cb8-4c3b14750242.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qBRjZmOmkSNJL0p70zek7odSIzqs/muR4Jk9xYyCP+E=","crlite_enrolled":true,"id":"0a6eb392-3c5c-43f2-b690-2b1aade1bd65","last_modified":1605772704241},{"schema":1605772140264,"derHash":"M47bBPuL6vB6EHSef05TjeBxXa+2R41YBj+3yL2www0=","subject":"CN=DigiCert Global G3 TLS ECC SHA384 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRpZ2lDZXJ0IEdsb2JhbCBHMyBUTFMgRUNDIFNIQTM4NCAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"7b5d64467372b9a0fe18ac79c51920708cd6c7b9c0d147b7a4a34b03d00bb358","size":1325,"filename":"qBRjZmOmkSNJL0p70zek7odSIzqs_muR4Jk9xYyCP-E=.pem","location":"security-state-staging/intermediates/502372d5-20f4-4deb-a9b8-3f30424dac2a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qBRjZmOmkSNJL0p70zek7
odSIzqs/muR4Jk9xYyCP+E=","crlite_enrolled":true,"id":"759b2da7-e5d3-4d7e-9ffe-d2f76b839a59","last_modified":1605772704220},{"schema":1605728373130,"derHash":"hDqnaDKJtx00jAh65vcaHIMTi0w5fzFtHnjJ2oZmC4Q=","subject":"SERIALNUMBER=201403,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDM=","whitelist":false,"attachment":{"hash":"2d7b611abc13145ddd774597f42e94c75815440e6a93c58100920eddebec906c","size":2093,"filename":"NOiJ9aKMOqQ8-vIWDKgcNhgjZvY5sEVcjdasO9aAZts=.pem","location":"security-state-staging/intermediates/7527cef8-47f2-4be7-82b5-ffbc4be18fa9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NOiJ9aKMOqQ8+vIWDKgcNhgjZvY5sEVcjdasO9aAZts=","crlite_enrolled":true,"id":"b255a018-1cfd-4cb0-a8c2-5afafbdcc29c","last_modified":1605772704200},{"schema":1605533478416,"derHash":"90w7LH5FXWVNnuWqpxJ4nMsme5YcGhzkimnIYM0ZNng=","subject":"CN=Thawte EV ECC CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAl
VTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHjAcBgNVBAMTFVRoYXd0ZSBFViBFQ0MgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"029e038309e109b338a8e5d3d4e6300803b81c7d7d64ed413d523864ea9f6f9d","size":1390,"filename":"sHnhNNcEZAQ0U5qyqTUj5LjSA8SG8NfF7zS_jwKtxLc=.pem","location":"security-state-staging/intermediates/c4cea83a-c04d-4940-8b0e-62cf421b3779.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sHnhNNcEZAQ0U5qyqTUj5LjSA8SG8NfF7zS/jwKtxLc=","crlite_enrolled":true,"id":"fe536340-3673-4218-bc86-b13888ae9bf3","last_modified":1605578284427},{"schema":1605123695624,"derHash":"yTGg+FoFKQEjSlT9Rg1BfxqLY8OMSBH3m5jzrhwv6fs=","subject":"CN=SECOM Passport for Member PUB CA5,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTU=","wh
itelist":false,"attachment":{"hash":"c65635be2bd0d20a2b0fd6d70bd227a546782c46ab1e3c6b2394239fc8cfd6cb","size":1695,"filename":"v3h5R_3OzMC-NBXKj05v4LQG5laFzE9fB4KsGpwAMtk=.pem","location":"security-state-staging/intermediates/de481d0f-d78a-4134-95c5-8978b12cffcd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"v3h5R/3OzMC+NBXKj05v4LQG5laFzE9fB4KsGpwAMtk=","crlite_enrolled":false,"id":"8cc1c1a9-82f5-425d-bc26-7033cc45e093","last_modified":1605189460438},{"schema":1604950897176,"derHash":"E+oRBESaEaH4HLl9CYxILsEqK2CetTx+YVXtCEqosJM=","subject":"CN=SECOM Passport for Member PUB CA1,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTE=","whitelist":false,"attachment":{"hash":"cbe1744ff7c3b516662a7fcf7f98a6251c21968145cac4cedf9a9f3172ff0574","size":1581,"fi
lename":"6cgk6TZAPcY4yIiIMAg1ccG9_fhHLRXTFVWj7IrvDq4=.pem","location":"security-state-staging/intermediates/b3a3dc5c-8be0-46e0-9329-c2253f02349f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6cgk6TZAPcY4yIiIMAg1ccG9/fhHLRXTFVWj7IrvDq4=","crlite_enrolled":false,"id":"3bda166d-f610-4dee-9b49-3b63bba2ef5b","last_modified":1605081484966},{"schema":1604908139751,"derHash":"15otXgMpXA6f6uNtAh69UglwCrGp6BekPzD6PGb3jSE=","subject":"CN=DigiCert TLS Hybrid ECC SHA384 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0RpZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"388fede353d5e81549d7a9a264bceab472ffc7eff4991123ac93299f4a9ebfe3","size":1536,"filename":"e0IRz5Tio3GA1Xs4fUVWmH1xHDiH2dMbVtCBSkOIdqM=.pem","location":"security-state-staging/intermediates/14b3ab45-1d4e-450b-9224-99c237082b97.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e0IRz5Tio3GA1Xs4fUVWmH1xHDiH2dMbVtCBSk
OIdqM=","crlite_enrolled":true,"id":"61051771-39c7-4792-994d-f7e1b8f69254","last_modified":1604908666929},{"schema":1604778093487,"derHash":"15otXgMpXA6f6uNtAh69UglwCrGp6BekPzD6PGb3jSE=","subject":"CN=DigiCert TLS Hybrid ECC SHA384 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMDAuBgNVBAMTJ0RpZ2lDZXJ0IFRMUyBIeWJyaWQgRUNDIFNIQTM4NCAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"388fede353d5e81549d7a9a264bceab472ffc7eff4991123ac93299f4a9ebfe3","size":1536,"filename":"e0IRz5Tio3GA1Xs4fUVWmH1xHDiH2dMbVtCBSkOIdqM=.pem","location":"security-state-staging/intermediates/f4b4778a-4e0c-4756-bf8f-075982ede557.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e0IRz5Tio3GA1Xs4fUVWmH1xHDiH2dMbVtCBSkOIdqM=","crlite_enrolled":true,"id":"2e597179-5b56-4fea-bf13-6d641de8d405","last_modified":1604908666908},{"schema":1604605293287,"derHash":"LmsV+e7R69YtJ1aR+T3JQ/kN0eCvEYkGYZxXfXUpi9o=","subject":"CN=CrossTrust DV CA4,O=CrossTrust,C=JP","s
ubjectDN":"MD4xCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpDcm9zc1RydXN0MRowGAYDVQQDExFDcm9zc1RydXN0IERWIENBNA==","whitelist":false,"attachment":{"hash":"e44f47a3381c3bd6aad3c0e85f6aac99405404d194c82777031a54eca4500dad","size":1589,"filename":"bzFxWlFhCb1TJC-ZiW0DXANo9uoO45khqSeMELmYpJ8=.pem","location":"security-state-staging/intermediates/2beceff3-685f-42a3-b31b-2f13ed3711f2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bzFxWlFhCb1TJC+ZiW0DXANo9uoO45khqSeMELmYpJ8=","crlite_enrolled":false,"id":"22cc58f6-abf4-4039-92e1-6739f9c77c7d","last_modified":1604649438460},{"schema":1604524708530,"derHash":"3pjRCJ+u+Ol9jEKPIYrKDtF8Vc+zVxEl5aURiameKJg=","subject":"SERIALNUMBER=201502,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTUwMg==","whitelist":false,"attachment":{"hash":"f6fd663baa7ee87b66e0d41b4d6d83d993a00817f1591bdd92cb0340672c10f5","size":2097,"filename":"JBmS5WYsQXSCs7cj9Y7nmmgLd8xpVrpdsZFXcnD15HU=.pem","location":"security-sta
te-staging/intermediates/812ee2d5-773e-4345-ad5c-fa142a66fab8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JBmS5WYsQXSCs7cj9Y7nmmgLd8xpVrpdsZFXcnD15HU=","crlite_enrolled":false,"id":"c2109866-4770-49a8-abec-da2ea0083799","last_modified":1604541499405},{"schema":1604389849675,"derHash":"JXaHE9O0Wfk4LSpZT4XzRwn9KokwcxVCpBRv+yRr7Gk=","subject":"CN=DigiCert TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERpZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0Ex","whitelist":false,"attachment":{"hash":"7f449f1e3178f1a2603b8177a108b02654caa02203944597174e3f46651ba513","size":1764,"filename":"RQeZkB42znUfsDIIFWIRiYEcKl7nHwNFwWCrnMMJbVc=.pem","location":"security-state-staging/intermediates/7485d12b-9344-4c47-ac5b-288655151f37.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RQeZkB42znUfsDIIFWIRiYEcKl7nHwNFwWCrnMMJbVc=","crlite_enrolled":true,"id":"6261e4b7-bb37-4f81-98ea-f94e5bd6e51a","last_modified":16043902936
43},{"schema":1604389737473,"derHash":"H4656ajgZsxbODPgazEpdktiJjnVsWP2AOHHkSC/Pu0=","subject":"CN=DigiCert Global G2 TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRpZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"be6d0e35f0c53e7c0af632d9bdf5dabd2be82214fc5e1c990c2bb46537d41287","size":1776,"filename":"Wec45nQiFwKvHtuHxSAMGkt19k-uPSw9JlEkxhvYPHk=.pem","location":"security-state-staging/intermediates/df6e4082-7b47-4af2-8d24-f1add41951d1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wec45nQiFwKvHtuHxSAMGkt19k+uPSw9JlEkxhvYPHk=","crlite_enrolled":true,"id":"6dc04366-cd3f-4bd3-8b1e-25fcf12fb005","last_modified":1604390293622},{"schema":1604325493707,"derHash":"JXaHE9O0Wfk4LSpZT4XzRwn9KokwcxVCpBRv+yRr7Gk=","subject":"CN=DigiCert TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIER
pZ2lDZXJ0IFRMUyBSU0EgU0hBMjU2IDIwMjAgQ0Ex","whitelist":false,"attachment":{"hash":"7f449f1e3178f1a2603b8177a108b02654caa02203944597174e3f46651ba513","size":1764,"filename":"RQeZkB42znUfsDIIFWIRiYEcKl7nHwNFwWCrnMMJbVc=.pem","location":"security-state-staging/intermediates/4017d719-9895-4e22-9126-8a0f51a90435.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RQeZkB42znUfsDIIFWIRiYEcKl7nHwNFwWCrnMMJbVc=","crlite_enrolled":true,"id":"574b122c-db71-4b2e-9e17-0037916e0d24","last_modified":1604390293602},{"schema":1604389736973,"derHash":"H4656ajgZsxbODPgazEpdktiJjnVsWP2AOHHkSC/Pu0=","subject":"CN=DigiCert Global G2 TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRpZ2lDZXJ0IEdsb2JhbCBHMiBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"be6d0e35f0c53e7c0af632d9bdf5dabd2be82214fc5e1c990c2bb46537d41287","size":1776,"filename":"Wec45nQiFwKvHtuHxSAMGkt19k-uPSw9JlEkxhvYPHk=.pem","location"
:"security-state-staging/intermediates/c4681dc7-0e43-4ac0-8bc3-34144df38b63.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wec45nQiFwKvHtuHxSAMGkt19k+uPSw9JlEkxhvYPHk=","crlite_enrolled":true,"id":"35a1d22d-443b-417b-a403-ff057dc50c1c","last_modified":1604390293581},{"schema":1604163572112,"derHash":"qq/pPjWbFJpMngtXLVG/N/2jin6aNZv5A1m6nKqWqt8=","subject":"CN=Atos TrustedRoot Server-CA 2013,O=Atos,C=DE","subjectDN":"MEYxKDAmBgNVBAMMH0F0b3MgVHJ1c3RlZFJvb3QgU2VydmVyLUNBIDIwMTMxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"3a6282f735ea66c38369711f7a511e7a8f40608ccbb6adb005af1b94bad5d4de","size":1561,"filename":"obLbX6ExWI0XXj12lo4-ITcs5rF7AE6dzl2X86Q8EpI=.pem","location":"security-state-staging/intermediates/69a41bd1-a437-463d-b4ba-83c2a65e4936.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"obLbX6ExWI0XXj12lo4+ITcs5rF7AE6dzl2X86Q8EpI=","crlite_enrolled":false,"id":"a25c486d-fc0f-4770-9864-911e40701c9b","last_modified":1604325492885},{"s
chema":1603979716226,"derHash":"ACOT+gpoJfd+9obiCGILlxd3kfAvB9slGEgPvjfOe9g=","subject":"CN=Sectigo Qualified Website Authentication CA R35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MGUxCzAJBgNVBAYTAkVTMRwwGgYDVQQKExNTZWN0aWdvIChFdXJvcGUpIFNMMTgwNgYDVQQDEy9TZWN0aWdvIFF1YWxpZmllZCBXZWJzaXRlIEF1dGhlbnRpY2F0aW9uIENBIFIzNQ==","whitelist":false,"attachment":{"hash":"f3fd4f6e976f11c869a9af70485fa21943e3a8f8c535b2978a053f1c80c4a59c","size":2259,"filename":"KxJdQKV5G03wpSUMzFPrE_WdnS5RnO4gex-GeXPUDnw=.pem","location":"security-state-staging/intermediates/bb2dc257-d008-42de-ac7f-5c5c5da83a16.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KxJdQKV5G03wpSUMzFPrE/WdnS5RnO4gex+GeXPUDnw=","crlite_enrolled":true,"id":"1625200c-4327-47a5-ac76-3eeb94c77907","last_modified":1603983473695},{"schema":1603979451595,"derHash":"ACOT+gpoJfd+9obiCGILlxd3kfAvB9slGEgPvjfOe9g=","subject":"CN=Sectigo Qualified Website Authentication CA R35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MGUxCzAJBgNVBAYTAkVTMRww
GgYDVQQKExNTZWN0aWdvIChFdXJvcGUpIFNMMTgwNgYDVQQDEy9TZWN0aWdvIFF1YWxpZmllZCBXZWJzaXRlIEF1dGhlbnRpY2F0aW9uIENBIFIzNQ==","whitelist":false,"attachment":{"hash":"f3fd4f6e976f11c869a9af70485fa21943e3a8f8c535b2978a053f1c80c4a59c","size":2259,"filename":"KxJdQKV5G03wpSUMzFPrE_WdnS5RnO4gex-GeXPUDnw=.pem","location":"security-state-staging/intermediates/b446caf5-e02c-44cd-a182-fe46d91d9d58.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KxJdQKV5G03wpSUMzFPrE/WdnS5RnO4gex+GeXPUDnw=","crlite_enrolled":true,"id":"cfb41545-0746-4be6-8d75-5a993a4ac7f5","last_modified":1603983473670},{"schema":1603979907768,"derHash":"ACOT+gpoJfd+9obiCGILlxd3kfAvB9slGEgPvjfOe9g=","subject":"CN=Sectigo Qualified Website Authentication CA R35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MGUxCzAJBgNVBAYTAkVTMRwwGgYDVQQKExNTZWN0aWdvIChFdXJvcGUpIFNMMTgwNgYDVQQDEy9TZWN0aWdvIFF1YWxpZmllZCBXZWJzaXRlIEF1dGhlbnRpY2F0aW9uIENBIFIzNQ==","whitelist":false,"attachment":{"hash":"f3fd4f6e976f11c869a9af70485fa21943e3a8f8c535b29
78a053f1c80c4a59c","size":2259,"filename":"KxJdQKV5G03wpSUMzFPrE_WdnS5RnO4gex-GeXPUDnw=.pem","location":"security-state-staging/intermediates/3aa18798-246a-4c38-aaf6-d0ba69875c58.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KxJdQKV5G03wpSUMzFPrE/WdnS5RnO4gex+GeXPUDnw=","crlite_enrolled":true,"id":"251b1a67-1d3e-4e59-83cb-1523c2461f64","last_modified":1603983473633},{"schema":1603789063900,"derHash":"ogZkT1ev0QuUFpSYhYmBwW1jOFjODIi1fPFPoqkqrP0=","subject":"CN=Secure Site Pro ECC CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHzAdBgNVBAMTFlNlY3VyZSBTaXRlIFBybyBFQ0MgQ0E=","whitelist":false,"attachment":{"hash":"e293173433a0678dd0c07a0432db8bc25e796896b84c9cfb996a1234d78528d2","size":1443,"filename":"jqgpMe3J72LhpK4BfQvcmwg-Oh-RwdZH-swdUvq8F9k=.pem","location":"security-state-staging/intermediates/9620ee73-5f68-44bd-b368-b0ca0bcc7153.pem","mimetype":"application/x-pem-file"},"pub
KeyHash":"jqgpMe3J72LhpK4BfQvcmwg+Oh+RwdZH+swdUvq8F9k=","crlite_enrolled":false,"id":"d9d951a6-56f3-4229-8405-898b7f223384","last_modified":1603850281659},{"schema":1603849736165,"derHash":"fsjnqkIZXpo2uFjilmnqo31XsTr6IzG9rqah6/fkbn4=","subject":"CN=CertCenter Enterprise ECC EV CA,OU=Controlled by COMODO CA exclusively for CertCenter AG,O=CertCenter AG,L=Giessen,ST=Hessen,C=DE","subjectDN":"MIGyMQswCQYDVQQGEwJERTEPMA0GA1UECBMGSGVzc2VuMRAwDgYDVQQHEwdHaWVzc2VuMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMT4wPAYDVQQLEzVDb250cm9sbGVkIGJ5IENPTU9ETyBDQSBleGNsdXNpdmVseSBmb3IgQ2VydENlbnRlciBBRzEoMCYGA1UEAxMfQ2VydENlbnRlciBFbnRlcnByaXNlIEVDQyBFViBDQQ==","whitelist":false,"attachment":{"hash":"ad13f4a2c2b0453bcad7768dfb8aa9dd9abf52d18d9b3381705fe30226d297cc","size":1414,"filename":"9IEsy6v-cBI7ee5Y4xt277Tel65rfvCSsKBMLrGfjVI=.pem","location":"security-state-staging/intermediates/4c478c30-a765-41e1-95bd-ee2f0924ed09.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9IEsy6v+cBI7ee5Y4xt277Tel65rfvCSsKB
MLrGfjVI=","crlite_enrolled":false,"id":"02b2f900-f9fa-411c-9402-75944e3fdbbf","last_modified":1603850281630},{"schema":1603741294890,"derHash":"PF45H9jKOyFhRJViSuWynzntBmEktZRDj5SUs0NDx5U=","subject":"CN=EuropeanSSL High Assurance Server CA 2,O=EUNETIC GmbH,L=Durmersheim,ST=Baden-W\u00fcrttemberg,C=DE","subjectDN":"MIGIMQswCQYDVQQGEwJERTEbMBkGA1UECAwSQmFkZW4tV8O8cnR0ZW1iZXJnMRQwEgYDVQQHEwtEdXJtZXJzaGVpbTEVMBMGA1UEChMMRVVORVRJQyBHbWJIMS8wLQYDVQQDEyZFdXJvcGVhblNTTCBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EgMg==","whitelist":false,"attachment":{"hash":"b7ee97e44a0b08b84600f14d91999274d13538fbe487ae5bbe2ffeda760373f7","size":2166,"filename":"HhU8wZ-rl8VgXaRRv_XdnUCKI8eLRVXfTeY77HdaQ3Y=.pem","location":"security-state-staging/intermediates/f4cdda25-89ad-4ed5-8091-82787a46cd76.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HhU8wZ+rl8VgXaRRv/XdnUCKI8eLRVXfTeY77HdaQ3Y=","crlite_enrolled":true,"id":"a64ae3ed-7e46-4997-83b9-78bead9c29f5","last_modified":1603785478255},{"schema":1603784937046
,"derHash":"C9FHkYe6Aeo+k4p1DHveO28oXcEOu5lTA/ZmAbpbLSA=","subject":"CN=WebSpace-Forum Server CA II,O=WebSpace-Forum e.K.,L=Berlin,ST=Berlin,C=DE","subjectDN":"MHMxCzAJBgNVBAYTAkRFMQ8wDQYDVQQIEwZCZXJsaW4xDzANBgNVBAcTBkJlcmxpbjEcMBoGA1UEChMTV2ViU3BhY2UtRm9ydW0gZS5LLjEkMCIGA1UEAxMbV2ViU3BhY2UtRm9ydW0gU2VydmVyIENBIElJ","whitelist":false,"attachment":{"hash":"7768f5bec77dbbbde9e9572bc1c4098d4a05278998998904ac61c71b62987df1","size":2133,"filename":"5RYmGs6llHArO1X6YMpESuHfz0WJ0hjDErS2_5y9hWo=.pem","location":"security-state-staging/intermediates/892d5f14-b84e-460c-b541-1c43bd0b45f8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5RYmGs6llHArO1X6YMpESuHfz0WJ0hjDErS2/5y9hWo=","crlite_enrolled":true,"id":"28961bab-dbd4-41f9-a1f3-d6fbd473a508","last_modified":1603785478231},{"schema":1603568492594,"derHash":"dnvCnbma9MKmJkkADRcvxswtCdQIxMq2qNmaHdXc99s=","subject":"CN=CertCenter Enterprise ECC DV CA,O=CertCenter AG,L=Giessen,ST=Hessen,C=DE","subjectDN":"MHIxCzAJBgNVBAYTAkRFMQ8wDQYDVQQ
IEwZIZXNzZW4xEDAOBgNVBAcTB0dpZXNzZW4xFjAUBgNVBAoTDUNlcnRDZW50ZXIgQUcxKDAmBgNVBAMTH0NlcnRDZW50ZXIgRW50ZXJwcmlzZSBFQ0MgRFYgQ0E=","whitelist":false,"attachment":{"hash":"f8716a70364bdbf780503d8d9ac1bacd7600d5f66e511193c3337cf92df9e24a","size":3756,"filename":"zuRQp-iYZxMyj8bp4pFJtJ30vMQId6DXMagFWZ9jfmU=.pem","location":"security-state-staging/intermediates/b0afc492-2be7-4ad1-923d-89b25034dc22.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zuRQp+iYZxMyj8bp4pFJtJ30vMQId6DXMagFWZ9jfmU=","crlite_enrolled":false,"id":"719f84ba-e1e8-4bdd-a10b-76268634b5d7","last_modified":1603591065213},{"schema":1603504182613,"derHash":"3CcoMxMS51xNe0QvO92nkMt3qdashU1bzhisQ8pZkJo=","subject":"CN=ATT Atlas R3 OV TLS CA 2020,O=ATT Services Inc,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBBVFQgU2VydmljZXMgSW5jMSQwIgYDVQQDExtBVFQgQXRsYXMgUjMgT1YgVExTIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"e93ec3c93798a4c69c537ee7a488670b0c74cf8ea19467445243e440fc143d44","size":1699,"filename":"7g
swJkaWI1c2mfCUfT3FpRjIef2nGdyV07Uoa-HSRf4=.pem","location":"security-state-staging/intermediates/e319120e-f55a-4fb8-acd8-2770716a5481.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7gswJkaWI1c2mfCUfT3FpRjIef2nGdyV07Uoa+HSRf4=","crlite_enrolled":true,"id":"461f5fb1-2c7d-4292-92b0-c3b6b9545359","last_modified":1603504658778},{"schema":1603504181937,"derHash":"3CcoMxMS51xNe0QvO92nkMt3qdashU1bzhisQ8pZkJo=","subject":"CN=ATT Atlas R3 OV TLS CA 2020,O=ATT Services Inc,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBBVFQgU2VydmljZXMgSW5jMSQwIgYDVQQDExtBVFQgQXRsYXMgUjMgT1YgVExTIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"e93ec3c93798a4c69c537ee7a488670b0c74cf8ea19467445243e440fc143d44","size":1699,"filename":"7gswJkaWI1c2mfCUfT3FpRjIef2nGdyV07Uoa-HSRf4=.pem","location":"security-state-staging/intermediates/38da369b-01f7-4c44-8faf-e99f6ec6cb1b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7gswJkaWI1c2mfCUfT3FpRjIef2nGdyV07Uoa+HSRf4=","crlite_enrolled":true,"
id":"975baf8e-91bf-44e3-8f33-57c1e8df8a23","last_modified":1603504658759},{"schema":1603421850516,"derHash":"71ZjFC9bLWuCdFKbFX3y+WWnGHOlrlql4HICRPI5i28=","subject":"CN=CertCenter Enterprise RSA EV CA,OU=Controlled by COMODO CA exclusively for CertCenter AG,O=CertCenter AG,L=Giessen,ST=Hessen,C=DE","subjectDN":"MIGyMQswCQYDVQQGEwJERTEPMA0GA1UECBMGSGVzc2VuMRAwDgYDVQQHEwdHaWVzc2VuMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMT4wPAYDVQQLEzVDb250cm9sbGVkIGJ5IENPTU9ETyBDQSBleGNsdXNpdmVseSBmb3IgQ2VydENlbnRlciBBRzEoMCYGA1UEAxMfQ2VydENlbnRlciBFbnRlcnByaXNlIFJTQSBFViBDQQ==","whitelist":false,"attachment":{"hash":"64e8335938bbaaed651bd59a9b50e97bfe919c616430e117a5ab454247a4949e","size":2255,"filename":"CaGpyyfpmNg5jcDd5cWMfcPMbbqa5_5gKWvNRcBjqoA=.pem","location":"security-state-staging/intermediates/99b11aff-7143-4874-8b2d-03b88f194e89.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CaGpyyfpmNg5jcDd5cWMfcPMbbqa5/5gKWvNRcBjqoA=","crlite_enrolled":false,"id":"74d7ba69-fd50-4a4a-947c-c4d634776f86","l
ast_modified":1603504658740},{"schema":1603395693272,"derHash":"MkC4HG31Uq6hbXAinb/v8k1Q6qmiJyORiI9lvpW0UOM=","subject":"CN=CertCenter Enterprise RSA OV CA,O=CertCenter AG,L=Giessen,ST=Hessen,C=DE","subjectDN":"MHIxCzAJBgNVBAYTAkRFMQ8wDQYDVQQIEwZIZXNzZW4xEDAOBgNVBAcTB0dpZXNzZW4xFjAUBgNVBAoTDUNlcnRDZW50ZXIgQUcxKDAmBgNVBAMTH0NlcnRDZW50ZXIgRW50ZXJwcmlzZSBSU0EgT1YgQ0E=","whitelist":false,"attachment":{"hash":"f0ef15c657a987fd884de4d2445f0e2311d7cecef612a3443bcc050eac65d0ae","size":2138,"filename":"ke_AQ9WF4UMSgAU_wMJhEjKM4oBlpoIH0lidCk0FTIM=.pem","location":"security-state-staging/intermediates/97f31fbd-c914-4077-9d2f-90ed3d7eec32.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ke/AQ9WF4UMSgAU/wMJhEjKM4oBlpoIH0lidCk0FTIM=","crlite_enrolled":false,"id":"205e175a-96fc-44bc-b8ba-0dd4c7881485","last_modified":1603418262238},{"schema":1603417750565,"derHash":"wG7UFefe0G5aSgg6gCX2XkXU5GtjUema20feSLAvi+0=","subject":"CN=CertCenter Enterprise RSA DV CA,O=CertCenter AG,L=Giessen,ST=Hesse
n,C=DE","subjectDN":"MHIxCzAJBgNVBAYTAkRFMQ8wDQYDVQQIEwZIZXNzZW4xEDAOBgNVBAcTB0dpZXNzZW4xFjAUBgNVBAoTDUNlcnRDZW50ZXIgQUcxKDAmBgNVBAMTH0NlcnRDZW50ZXIgRW50ZXJwcmlzZSBSU0EgRFYgQ0E=","whitelist":false,"attachment":{"hash":"73c39b45f6be720b687e13337fa318950c5887b8e1fae66aa0d7c83bd7b66dfe","size":2133,"filename":"FfDDB8UNFaSYYtmGpdb9uuU8NXG50-ypsKYjpMCN2c0=.pem","location":"security-state-staging/intermediates/8d50283b-4b41-4218-9f3b-5a1bdac55359.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FfDDB8UNFaSYYtmGpdb9uuU8NXG50+ypsKYjpMCN2c0=","crlite_enrolled":false,"id":"980e074c-1142-4749-9f90-b1d7d8e5f3b2","last_modified":1603418262218},{"schema":1603331414283,"derHash":"GLtw79o/kUOBFcnrTzM+tOxoNUVx5pSRlaCpHJ5vvNg=","subject":"CN=QuoVadis RCA1G3 TLS CA,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpcyBSQ0ExRzMgVExTIENB","whitelist":false,"attachment":{"hash":"b3bb67e5eae26a4c94edb219c24b0b5e4b61ccf76dfc1f6b45000
e822a22ceb3","size":2369,"filename":"oVTzYxEWPWmbDlo2GZhwL-6my7pLP_DO_Q5zS0j4erM=.pem","location":"security-state-staging/intermediates/0142a491-80f0-4728-bbff-4b23436aafa0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oVTzYxEWPWmbDlo2GZhwL+6my7pLP/DO/Q5zS0j4erM=","crlite_enrolled":false,"id":"6737f4c2-a14c-4b1d-8e0c-b062884b238a","last_modified":1603331864382},{"schema":1603331409918,"derHash":"7MDResMmOsahZNzbCPgtB+k/zqcj9muIsG7rqWeN8rs=","subject":"CN=QuoVadis RCA3G3 TLS CA,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpcyBSQ0EzRzMgVExTIENB","whitelist":false,"attachment":{"hash":"fc4fc6584822834debd279e4a8481536c6bd26913df00dda003fbc4ed5facf42","size":2369,"filename":"HGG1eHmdWucI4rZV77-UwfI3jqj3-wm0NFUmWbyNZvs=.pem","location":"security-state-staging/intermediates/098ff8c0-cbd6-4de0-93e9-b29fc7971c7d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HGG1eHmdWucI4rZV77+UwfI3jqj3+wm0NFUmWbyNZvs
=","crlite_enrolled":false,"id":"c4121d69-d075-4111-9d27-6dbed565f530","last_modified":1603331864371},{"schema":1603331412138,"derHash":"a7lkZHte5hWaKgKe5cfc0dnPOwiEUeCmjpDmB0w/XKM=","subject":"CN=QuoVadis RCA1G1 TLS CA,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpcyBSQ0ExRzEgVExTIENB","whitelist":false,"attachment":{"hash":"34870e705e578bbcd98319ac5f84b11e5770d2ad43f4dfe76db0785c91777fdb","size":2089,"filename":"Qvjdi2jwbwNDElJ0tj6ROtrf4nU-v9QUSIl7Mk_pIgk=.pem","location":"security-state-staging/intermediates/d3959276-8446-44d6-bbf5-d30de62aeabd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Qvjdi2jwbwNDElJ0tj6ROtrf4nU+v9QUSIl7Mk/pIgk=","crlite_enrolled":false,"id":"0e7c9134-ab1c-4f19-846d-30587aaac2be","last_modified":1603331864359},{"schema":1603331407633,"derHash":"OmbmSCEuYyH5TZ6rzJLAUuZ52ZLJmtRZak57ha3O5d4=","subject":"CN=QuoVadis RCA3G1 TLS CA,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBA
YTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpcyBSQ0EzRzEgVExTIENB","whitelist":false,"attachment":{"hash":"e5c77c38ef33f161625bc3592afbf547db64bc8507aff887efbd2902cd674003","size":2361,"filename":"cDYpcfBIVfSGVjIXkR2jSnkBmuagMeyfAzJa6dOp_y4=.pem","location":"security-state-staging/intermediates/4251568a-3965-4fe1-81c3-100b6c736472.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cDYpcfBIVfSGVjIXkR2jSnkBmuagMeyfAzJa6dOp/y4=","crlite_enrolled":false,"id":"6eca33ec-4f64-4e1a-9686-48926a7dccbd","last_modified":1603331864347},{"schema":1603241851952,"derHash":"qmHCkn3InbIlypoX1gA3PQWPaW2G0Q4r17Xo9EqX7tE=","subject":"CN=WoSign OV SSL Pro CA,O=WoSign CA Limited,C=CN","subjectDN":"MEgxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRlZDEdMBsGA1UEAxMUV29TaWduIE9WIFNTTCBQcm8gQ0E=","whitelist":false,"attachment":{"hash":"afb1ffcaed2f65ba6080da16e771b2fd79536ffb5f81dc7fd0f22152661e7331","size":1666,"filename":"YgNpzwCbB-5jnp9Vn5xVC090y79oIjE_2P8pF1_4DMI=.pem","loca
tion":"security-state-staging/intermediates/4aef0608-20c1-4fb7-b413-e1f6b8d8ccf9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YgNpzwCbB+5jnp9Vn5xVC090y79oIjE/2P8pF1/4DMI=","crlite_enrolled":false,"id":"ff45948b-1310-4371-a262-b582c5ad0bbb","last_modified":1603245450595},{"schema":1603205963547,"derHash":"kzuA97lyVd9c8dlaEj6QFyLdswtIGvOqg1SCARGe0wM=","subject":"CN=AC Firmaprofesional - Secure Web 2020,OU=Security Services,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGTMQswCQYDVQQGEwJFUzEeMBwGA1UECgwVRmlybWFwcm9mZXNpb25hbCBTLkEuMRgwFgYDVQRhDA9WQVRFUy1BNjI2MzQwNjgxGjAYBgNVBAsMEVNlY3VyaXR5IFNlcnZpY2VzMS4wLAYDVQQDDCVBQyBGaXJtYXByb2Zlc2lvbmFsIC0gU2VjdXJlIFdlYiAyMDIw","whitelist":false,"attachment":{"hash":"52c3fc5e3b79e5116293a6f3f94714018b37170fcaad6cecb1a8528e12265be4","size":2304,"filename":"HLNGq69C6VUDfEsMKKHPJo4S4cvlTKeTx53VBUCO1JY=.pem","location":"security-state-staging/intermediates/e90cca09-75a9-4de3-8a0c-95aee7b3a2d6.pem","mimetype":"application/x-pem-file"},"pubKeyH
ash":"HLNGq69C6VUDfEsMKKHPJo4S4cvlTKeTx53VBUCO1JY=","crlite_enrolled":true,"id":"154de830-9906-4718-b472-7abb5a1a20f3","last_modified":1603209441493},{"schema":1603205802060,"derHash":"kzuA97lyVd9c8dlaEj6QFyLdswtIGvOqg1SCARGe0wM=","subject":"CN=AC Firmaprofesional - Secure Web 2020,OU=Security Services,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGTMQswCQYDVQQGEwJFUzEeMBwGA1UECgwVRmlybWFwcm9mZXNpb25hbCBTLkEuMRgwFgYDVQRhDA9WQVRFUy1BNjI2MzQwNjgxGjAYBgNVBAsMEVNlY3VyaXR5IFNlcnZpY2VzMS4wLAYDVQQDDCVBQyBGaXJtYXByb2Zlc2lvbmFsIC0gU2VjdXJlIFdlYiAyMDIw","whitelist":false,"attachment":{"hash":"52c3fc5e3b79e5116293a6f3f94714018b37170fcaad6cecb1a8528e12265be4","size":2304,"filename":"HLNGq69C6VUDfEsMKKHPJo4S4cvlTKeTx53VBUCO1JY=.pem","location":"security-state-staging/intermediates/a129dd72-36e3-442a-bd95-4a35a0dcec63.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HLNGq69C6VUDfEsMKKHPJo4S4cvlTKeTx53VBUCO1JY=","crlite_enrolled":true,"id":"140dddc9-659c-426f-a0ae-c2d82202b637","last_modifie
d":1603209441473},{"schema":1603133839564,"derHash":"LihhKJtczt7K5MMb8mLg+wwptsFTBXNEJzHKZdgh6QE=","subject":"CN=Symantec Class 3 ECC 256 bit SSL CA - G2,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGAMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxMTAvBgNVBAMTKFN5bWFudGVjIENsYXNzIDMgRUNDIDI1NiBiaXQgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"bf637313289e8c27077991be26a0d07e37b59838312f06c7099b3e967081ef81","size":1589,"filename":"pvsOo_07kXBfe36yjJgm6H46EJRe7gurjSAeunJgFyg=.pem","location":"security-state-staging/intermediates/9a6d9b7e-8c6d-4c3a-a77c-3e8b76b81960.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pvsOo/07kXBfe36yjJgm6H46EJRe7gurjSAeunJgFyg=","crlite_enrolled":true,"id":"62e33177-52e4-4dd8-acfc-f9fd671aab01","last_modified":1603137438283},{"schema":1602961037868,"derHash":"qlf0gsvFFrTRDKQJfdkNmfWqcn0gcJDQfanDaZirua0=","subject":"CN=HydrantID SSL CA G3,O=HydrantID (Ava
lanche Cloud Corporation),C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMTAwLgYDVQQKDCdIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHDAaBgNVBAMME0h5ZHJhbnRJRCBTU0wgQ0EgRzM=","whitelist":false,"attachment":{"hash":"7e0808e92ebc33ef96558a3d7c46b9b86290ea9b9c814fe1b375dd5f6e94179f","size":2414,"filename":"CgDzm8Z-Gk0j7D6yq4U4IstjpiYpBiVqyPDYr-62oO8=.pem","location":"security-state-staging/intermediates/5cbfc23e-7d49-4372-82b5-58e1a0a3785e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CgDzm8Z+Gk0j7D6yq4U4IstjpiYpBiVqyPDYr+62oO8=","crlite_enrolled":true,"id":"b97f538d-34bf-41f2-ba3b-3ffa41cdfa5e","last_modified":1602964635139},{"schema":1602939433240,"derHash":"unmfMiWR3X0128WPSCByXwlPVDqhPLRYxVyR3Ia+Iv8=","subject":"CN=CERTDATA SSL EV CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MG4xCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExMDAuBgNVBAMMJ0NFUlREQVRBIFNTTCBFViBDQSAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelis
t":false,"attachment":{"hash":"817455fbcfc00bd641341d581d3a97196ae6a94a33f63590a5b540321bf458e8","size":2158,"filename":"cVSKuRG7oLetITEBYy5dH5QBCUayslF78ETJPRfzwkU=.pem","location":"security-state-staging/intermediates/498affb3-e1de-4edb-9347-ffb1561473e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cVSKuRG7oLetITEBYy5dH5QBCUayslF78ETJPRfzwkU=","crlite_enrolled":true,"id":"9b021867-2e4d-4bd5-ad39-3ba7645c4e76","last_modified":1602943040447},{"schema":1602917835280,"derHash":"dWqrkA4/XHYnNLZGH8MqndNB6h1KBCg0CSM8OXh6hn4=","subject":"CN=TrustAsia ECC OV TLS Pro CA G3,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MF0xCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMScwJQYDVQQDEx5UcnVzdEFzaWEgRUNDIE9WIFRMUyBQcm8gQ0EgRzM=","whitelist":false,"attachment":{"hash":"2e493c5d02aaed01f99e9499d09f7808636cd52471c8ddfc79dfb5c64d83b8ac","size":1353,"filename":"tbnWlmtVSEavKTtABU3v0aeisdNi3iLXhpU10YWnzRw=.pem","location":"security-state-staging/intermediates/5ea
136cd-de72-4386-83f7-76fda17b499d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tbnWlmtVSEavKTtABU3v0aeisdNi3iLXhpU10YWnzRw=","crlite_enrolled":true,"id":"13e82017-a63b-46d6-8df5-d824c3250fcc","last_modified":1602921443410},{"schema":1602766682987,"derHash":"sIwZai7R6E+YktsbYSGc62QogkePObCHGWA9BzX6A9E=","subject":"CN=CA de Certificados SSL EV,OU=BZ Ziurtagiri publikoa - Certificado publico EV,O=IZENPE S.A.,C=ES","subjectDN":"MIGBMQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xODA2BgNVBAsML0JaIFppdXJ0YWdpcmkgcHVibGlrb2EgLSBDZXJ0aWZpY2FkbyBwdWJsaWNvIEVWMSIwIAYDVQQDDBlDQSBkZSBDZXJ0aWZpY2Fkb3MgU1NMIEVW","whitelist":false,"attachment":{"hash":"388ad7bfbc659f5233cd21bf5d91654c878954f11b1f806a8471ebe1dc89e676","size":2515,"filename":"D0NbyGhND0J0g9UeFoaXmcD9hKK6WSHEogR1kaVlsfA=.pem","location":"security-state-staging/intermediates/3edc35f2-2f62-434a-b3d0-3fa02db4b362.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D0NbyGhND0J0g9UeFoaXmcD9hKK6WSHEogR1kaVlsfA=","crlite_enro
lled":false,"id":"097e4515-9a01-4511-a66e-dd72a6a0a98c","last_modified":1602770278643},{"schema":1602723479783,"derHash":"eGeq6QXrjVVjX/67v4zwWmO5s5BmXeI2esEHPpKRNyg=","subject":"CN=Thawte CN RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHDAaBgNVBAMTE1RoYXd0ZSBDTiBSU0EgQ0EgRzE=","whitelist":false,"attachment":{"hash":"6abb2fa6476c1d938c58f7d3648720a6cb3239b7fc026f82046b76d081192231","size":1825,"filename":"VMXglf2ljsL4aRTMSwEqaTOKsyr2QltUubbk10mUCT0=.pem","location":"security-state-staging/intermediates/1ff4f374-cd06-4afa-af4e-4f8b3a444843.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VMXglf2ljsL4aRTMSwEqaTOKsyr2QltUubbk10mUCT0=","crlite_enrolled":true,"id":"f1601a66-8fd4-4b53-9279-cb7e19b76aa6","last_modified":1602727076193},{"schema":1602647311437,"derHash":"DSzH5pc/gPoiU/uIgo72rLs7lf+nfEiWUMNWc19UtwY=","subject":"CN=AlpiroSSL ECC OV CA,O=Alpiro s.r.o.,C=CZ","subject
DN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIE9WIENB","whitelist":false,"attachment":{"hash":"ff2354ed7f035b8d871925675759f6b13bbda368e971c08e2f1a39847b74a408","size":1264,"filename":"X_kxO0BscKQlU9_xYyElfuh-DkcVP6lXeRrOBQPEQoo=.pem","location":"security-state-staging/intermediates/beb6572f-d50f-49e3-b522-e0fe9eeab7fb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"X/kxO0BscKQlU9/xYyElfuh+DkcVP6lXeRrOBQPEQoo=","crlite_enrolled":false,"id":"dca5191c-f858-49ca-a6b2-00f2b0f05703","last_modified":1602647874803},{"schema":1602647312961,"derHash":"2+LWPb33b3G6YxNU4W7JfBbgFnkqo7nMnSjFgsrUick=","subject":"CN=AlpiroSSL ECC DV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIERWIENB","whitelist":false,"attachment":{"hash":"eb3d288ac2dd6b3d0b135d27bd25dbf9f91a95b47239a5aa2addc4b4da9205d3","size":1264,"filename":"wDnmANcSbDEP0jOnIAaMy-5juQ0SP1bWXgumTDhj_UI=.pem","locati
on":"security-state-staging/intermediates/474af47c-ab34-47f0-9db5-7040d594066b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wDnmANcSbDEP0jOnIAaMy+5juQ0SP1bWXgumTDhj/UI=","crlite_enrolled":false,"id":"4e869e4f-53c6-4bd3-9258-7598c81fab2e","last_modified":1602647874790},{"schema":1602647309895,"derHash":"+C+LUJZ8ClLp2Bt5qQ/+uOUVt4FKXl3i8msPavb+dTE=","subject":"CN=AlpiroSSL ECC EV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIEVWIENB","whitelist":false,"attachment":{"hash":"bf09308f3a01e9ddf3ae677edf6cd8e3a11e9e3c0c419fe2bfaa997e33c16acf","size":1293,"filename":"GnXFLd5ceheMJdGnZvJlKLtfXp4UjCGVFGe713NdmTc=.pem","location":"security-state-staging/intermediates/47f00ab7-e48a-442b-9784-5c0b868f566e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GnXFLd5ceheMJdGnZvJlKLtfXp4UjCGVFGe713NdmTc=","crlite_enrolled":false,"id":"4890ab90-0f29-46a1-b3dc-d52fa68f9372","last_modified":1602647874776},{"sche
ma":1602647305364,"derHash":"Fk4Ac6dSAKWBaZG9wXxSbrohJx9xNXRGmE7SyApZ/Vo=","subject":"CN=AlpiroSSL RSA OV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIE9WIENB","whitelist":false,"attachment":{"hash":"a4cf15fc523e6c61fa6a76d1cf2ce8bfe29411a0740a29bbae8a16ae71603611","size":2414,"filename":"1hrgtfhRJ0sL7i_z-MTaLFvHn7lkcHEPtbsneJ6QMSY=.pem","location":"security-state-staging/intermediates/eb498f2b-bc85-4f23-89cb-665499148b38.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1hrgtfhRJ0sL7i/z+MTaLFvHn7lkcHEPtbsneJ6QMSY=","crlite_enrolled":false,"id":"41ca7b3f-d056-431f-9812-e3654e7b1240","last_modified":1602647874765},{"schema":1602647308368,"derHash":"b/IVlwTU6IaFmhQP/k4zRx5RQhdDCwPEz2yFxjf37LM=","subject":"CN=AlpiroSSL RSA DV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIERWIENB","whitelist":false,"attachment":{"hash":"4d113116
16c66072dc5bacbb6b155d283f17a79abd5b2fbb3a65e1b3c239ed39","size":2414,"filename":"DMHCW-wSFt63_5zZBrK0lQDZcM_mOSQpQa6ibF64R6U=.pem","location":"security-state-staging/intermediates/a69eec9d-0275-4eaa-9b0a-e523fbdd3a8b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DMHCW+wSFt63/5zZBrK0lQDZcM/mOSQpQa6ibF64R6U=","crlite_enrolled":false,"id":"eea631ce-192d-4b2d-8672-08e5b2626a2c","last_modified":1602647874753},{"schema":1602647306905,"derHash":"PtE/nRnlb1uhSSOFyoE/fdY7vrPPXFbbXDCc9OqpAXE=","subject":"CN=AlpiroSSL RSA EV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIEVWIENB","whitelist":false,"attachment":{"hash":"d8ed27e0fbef44ebfedcbc8e1705873016d400cc7d7c6a9eb9389e479fdabf18","size":2442,"filename":"LDLs3_RixO6BHgKBiz13AqqAeJBFICakKMCnDQ1sQ04=.pem","location":"security-state-staging/intermediates/a65de85c-368b-4cff-a210-dba348e6ce3e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LDLs3/RixO6B
HgKBiz13AqqAeJBFICakKMCnDQ1sQ04=","crlite_enrolled":false,"id":"1cefe49f-ef56-4996-bcdb-2fb9d9f3e0f1","last_modified":1602647874741},{"schema":1602647302024,"derHash":"Vi1qW0sGdGX/0Pv8m7BXVc2s9Vte5cb5ELi1PbEo9Xo=","subject":"CN=Sectigo Qualified Website Authentication CA E35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MGUxCzAJBgNVBAYTAkVTMRwwGgYDVQQKExNTZWN0aWdvIChFdXJvcGUpIFNMMTgwNgYDVQQDEy9TZWN0aWdvIFF1YWxpZmllZCBXZWJzaXRlIEF1dGhlbnRpY2F0aW9uIENBIEUzNQ==","whitelist":false,"attachment":{"hash":"55ec2d5ec4b78d089d9860db6394ae011c61807312053911f31093c1f37a7471","size":1248,"filename":"LTu6tENFs1xZQP1NiYhwg6AMeqalq2jUuwpowf0rQuY=.pem","location":"security-state-staging/intermediates/0e071112-b7ec-44a8-bf67-d3723d6c9c8c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LTu6tENFs1xZQP1NiYhwg6AMeqalq2jUuwpowf0rQuY=","crlite_enrolled":false,"id":"d709f323-b76c-451f-bf49-dabb2b709355","last_modified":1602647874718},{"schema":1602643717900,"derHash":"DSzH5pc/gPoiU/uIgo72rLs7lf+nfEiWUMNW
c19UtwY=","subject":"CN=AlpiroSSL ECC OV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIE9WIENB","whitelist":false,"attachment":{"hash":"ff2354ed7f035b8d871925675759f6b13bbda368e971c08e2f1a39847b74a408","size":1264,"filename":"X_kxO0BscKQlU9_xYyElfuh-DkcVP6lXeRrOBQPEQoo=.pem","location":"security-state-staging/intermediates/4588f17a-19a9-4b87-8bc7-cc7a8f3cd02a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"X/kxO0BscKQlU9/xYyElfuh+DkcVP6lXeRrOBQPEQoo=","crlite_enrolled":false,"id":"99222dda-57f4-496b-a40e-da86b57d52f1","last_modified":1602644269945},{"schema":1602643716484,"derHash":"b/IVlwTU6IaFmhQP/k4zRx5RQhdDCwPEz2yFxjf37LM=","subject":"CN=AlpiroSSL RSA DV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIERWIENB","whitelist":false,"attachment":{"hash":"4d11311616c66072dc5bacbb6b155d283f17a79abd5b2fbb3a65e1b3c239ed39","size":
2414,"filename":"DMHCW-wSFt63_5zZBrK0lQDZcM_mOSQpQa6ibF64R6U=.pem","location":"security-state-staging/intermediates/b756e2ce-c3a3-4925-8863-6eb0770f170b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DMHCW+wSFt63/5zZBrK0lQDZcM/mOSQpQa6ibF64R6U=","crlite_enrolled":false,"id":"3c36b8ef-d2ca-44ed-9c79-583632600361","last_modified":1602644269933},{"schema":1602643713481,"derHash":"2+LWPb33b3G6YxNU4W7JfBbgFnkqo7nMnSjFgsrUick=","subject":"CN=AlpiroSSL ECC DV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIERWIENB","whitelist":false,"attachment":{"hash":"eb3d288ac2dd6b3d0b135d27bd25dbf9f91a95b47239a5aa2addc4b4da9205d3","size":1264,"filename":"wDnmANcSbDEP0jOnIAaMy-5juQ0SP1bWXgumTDhj_UI=.pem","location":"security-state-staging/intermediates/c634aa09-48b7-4b62-a0cd-2ed068b25b24.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wDnmANcSbDEP0jOnIAaMy+5juQ0SP1bWXgumTDhj/UI=","crlite_enrolled":false,"id":"a
25361d2-dff5-46fc-a564-b5747ef9506b","last_modified":1602644269922},{"schema":1602643710444,"derHash":"+C+LUJZ8ClLp2Bt5qQ/+uOUVt4FKXl3i8msPavb+dTE=","subject":"CN=AlpiroSSL ECC EV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIEVWIENB","whitelist":false,"attachment":{"hash":"bf09308f3a01e9ddf3ae677edf6cd8e3a11e9e3c0c419fe2bfaa997e33c16acf","size":1293,"filename":"GnXFLd5ceheMJdGnZvJlKLtfXp4UjCGVFGe713NdmTc=.pem","location":"security-state-staging/intermediates/1c3c49e3-967d-4a9b-95ae-11369f856524.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GnXFLd5ceheMJdGnZvJlKLtfXp4UjCGVFGe713NdmTc=","crlite_enrolled":false,"id":"e210e9bd-6cc8-4831-b27f-5a9929687c99","last_modified":1602644269898},{"schema":1602643706774,"derHash":"Vi1qW0sGdGX/0Pv8m7BXVc2s9Vte5cb5ELi1PbEo9Xo=","subject":"CN=Sectigo Qualified Website Authentication CA E35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MGUxCzAJBgNVBAYTAkVTMRwwGgYDVQQKEx
NTZWN0aWdvIChFdXJvcGUpIFNMMTgwNgYDVQQDEy9TZWN0aWdvIFF1YWxpZmllZCBXZWJzaXRlIEF1dGhlbnRpY2F0aW9uIENBIEUzNQ==","whitelist":false,"attachment":{"hash":"55ec2d5ec4b78d089d9860db6394ae011c61807312053911f31093c1f37a7471","size":1248,"filename":"LTu6tENFs1xZQP1NiYhwg6AMeqalq2jUuwpowf0rQuY=.pem","location":"security-state-staging/intermediates/c43aba38-0250-470d-bc16-4fa8ee7973cb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LTu6tENFs1xZQP1NiYhwg6AMeqalq2jUuwpowf0rQuY=","crlite_enrolled":false,"id":"e3964c59-8391-4432-9624-9b3f841b6121","last_modified":1602644269887},{"schema":1602643708962,"derHash":"PtE/nRnlb1uhSSOFyoE/fdY7vrPPXFbbXDCc9OqpAXE=","subject":"CN=AlpiroSSL RSA EV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIEVWIENB","whitelist":false,"attachment":{"hash":"d8ed27e0fbef44ebfedcbc8e1705873016d400cc7d7c6a9eb9389e479fdabf18","size":2442,"filename":"LDLs3_RixO6BHgKBiz13AqqAeJBFICakKMCnDQ1sQ04=.pem
","location":"security-state-staging/intermediates/bd9bdd90-d095-4742-a046-a09c00d73663.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LDLs3/RixO6BHgKBiz13AqqAeJBFICakKMCnDQ1sQ04=","crlite_enrolled":false,"id":"d7b0cd98-f3ca-42ba-a858-0a8ddd93a881","last_modified":1602644269875},{"schema":1602643711912,"derHash":"Fk4Ac6dSAKWBaZG9wXxSbrohJx9xNXRGmE7SyApZ/Vo=","subject":"CN=AlpiroSSL RSA OV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIE9WIENB","whitelist":false,"attachment":{"hash":"a4cf15fc523e6c61fa6a76d1cf2ce8bfe29411a0740a29bbae8a16ae71603611","size":2414,"filename":"1hrgtfhRJ0sL7i_z-MTaLFvHn7lkcHEPtbsneJ6QMSY=.pem","location":"security-state-staging/intermediates/4ad66af4-3592-47b1-8904-24809ee4969b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1hrgtfhRJ0sL7i/z+MTaLFvHn7lkcHEPtbsneJ6QMSY=","crlite_enrolled":false,"id":"6ecd7afb-009a-4d64-84bd-55a9b230d932","last_modified":160264426986
3},{"schema":1602640122258,"derHash":"PtE/nRnlb1uhSSOFyoE/fdY7vrPPXFbbXDCc9OqpAXE=","subject":"CN=AlpiroSSL RSA EV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIEVWIENB","whitelist":false,"attachment":{"hash":"d8ed27e0fbef44ebfedcbc8e1705873016d400cc7d7c6a9eb9389e479fdabf18","size":2442,"filename":"LDLs3_RixO6BHgKBiz13AqqAeJBFICakKMCnDQ1sQ04=.pem","location":"security-state-staging/intermediates/1b89cfad-19e3-489b-b8c4-504e5e5e9475.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LDLs3/RixO6BHgKBiz13AqqAeJBFICakKMCnDQ1sQ04=","crlite_enrolled":false,"id":"85dfcf61-54d1-481d-a21a-e7345029aab6","last_modified":1602640676802},{"schema":1602640115594,"derHash":"+C+LUJZ8ClLp2Bt5qQ/+uOUVt4FKXl3i8msPavb+dTE=","subject":"CN=AlpiroSSL ECC EV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIEVWIENB","whitelist":false,"attachment":{"hash":
"bf09308f3a01e9ddf3ae677edf6cd8e3a11e9e3c0c419fe2bfaa997e33c16acf","size":1293,"filename":"GnXFLd5ceheMJdGnZvJlKLtfXp4UjCGVFGe713NdmTc=.pem","location":"security-state-staging/intermediates/7609c1c4-b19b-4565-9720-dd5e6d124c41.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GnXFLd5ceheMJdGnZvJlKLtfXp4UjCGVFGe713NdmTc=","crlite_enrolled":false,"id":"6b3d1184-9e4d-4516-bfb4-06d823d81fc5","last_modified":1602640676790},{"schema":1602640108808,"derHash":"Vi1qW0sGdGX/0Pv8m7BXVc2s9Vte5cb5ELi1PbEo9Xo=","subject":"CN=Sectigo Qualified Website Authentication CA E35,O=Sectigo (Europe) SL,C=ES","subjectDN":"MGUxCzAJBgNVBAYTAkVTMRwwGgYDVQQKExNTZWN0aWdvIChFdXJvcGUpIFNMMTgwNgYDVQQDEy9TZWN0aWdvIFF1YWxpZmllZCBXZWJzaXRlIEF1dGhlbnRpY2F0aW9uIENBIEUzNQ==","whitelist":false,"attachment":{"hash":"55ec2d5ec4b78d089d9860db6394ae011c61807312053911f31093c1f37a7471","size":1248,"filename":"LTu6tENFs1xZQP1NiYhwg6AMeqalq2jUuwpowf0rQuY=.pem","location":"security-state-staging/intermediates/c06db3d6-f723-
43e2-99fe-fb7ab58beff9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LTu6tENFs1xZQP1NiYhwg6AMeqalq2jUuwpowf0rQuY=","crlite_enrolled":false,"id":"3d87fa81-1922-410b-ad87-b072f825cf4c","last_modified":1602640676779},{"schema":1602640117836,"derHash":"DSzH5pc/gPoiU/uIgo72rLs7lf+nfEiWUMNWc19UtwY=","subject":"CN=AlpiroSSL ECC OV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIE9WIENB","whitelist":false,"attachment":{"hash":"ff2354ed7f035b8d871925675759f6b13bbda368e971c08e2f1a39847b74a408","size":1264,"filename":"X_kxO0BscKQlU9_xYyElfuh-DkcVP6lXeRrOBQPEQoo=.pem","location":"security-state-staging/intermediates/547e6227-750a-41af-8a1d-b3fdfc7ea5ee.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"X/kxO0BscKQlU9/xYyElfuh+DkcVP6lXeRrOBQPEQoo=","crlite_enrolled":false,"id":"c6fc4ae3-a815-4a2e-988d-d8af1c74d123","last_modified":1602640676767},{"schema":1602640107298,"derHash":"b/IVlwTU6IaFmhQP/k4zRx5RQhd
DCwPEz2yFxjf37LM=","subject":"CN=AlpiroSSL RSA DV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIERWIENB","whitelist":false,"attachment":{"hash":"4d11311616c66072dc5bacbb6b155d283f17a79abd5b2fbb3a65e1b3c239ed39","size":2414,"filename":"DMHCW-wSFt63_5zZBrK0lQDZcM_mOSQpQa6ibF64R6U=.pem","location":"security-state-staging/intermediates/ee608fb0-eb77-46a5-87e7-b85b3d4f5999.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DMHCW+wSFt63/5zZBrK0lQDZcM/mOSQpQa6ibF64R6U=","crlite_enrolled":false,"id":"776212f2-5d11-4ced-aae1-d3525eafad9c","last_modified":1602640676744},{"schema":1602640119969,"derHash":"2+LWPb33b3G6YxNU4W7JfBbgFnkqo7nMnSjFgsrUick=","subject":"CN=AlpiroSSL ECC DV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgRUNDIERWIENB","whitelist":false,"attachment":{"hash":"eb3d288ac2dd6b3d0b135d27bd25dbf9f91a95b47239a5aa2addc4b4da9205d3
","size":1264,"filename":"wDnmANcSbDEP0jOnIAaMy-5juQ0SP1bWXgumTDhj_UI=.pem","location":"security-state-staging/intermediates/b1f46dae-b0b6-4395-8eb4-5e0562bccef1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wDnmANcSbDEP0jOnIAaMy+5juQ0SP1bWXgumTDhj/UI=","crlite_enrolled":false,"id":"8fc742ec-b377-4e41-a314-6542db51830c","last_modified":1602640676732},{"schema":1602640110933,"derHash":"Fk4Ac6dSAKWBaZG9wXxSbrohJx9xNXRGmE7SyApZ/Vo=","subject":"CN=AlpiroSSL RSA OV CA,O=Alpiro s.r.o.,C=CZ","subjectDN":"MEMxCzAJBgNVBAYTAkNaMRYwFAYDVQQKEw1BbHBpcm8gcy5yLm8uMRwwGgYDVQQDExNBbHBpcm9TU0wgUlNBIE9WIENB","whitelist":false,"attachment":{"hash":"a4cf15fc523e6c61fa6a76d1cf2ce8bfe29411a0740a29bbae8a16ae71603611","size":2414,"filename":"1hrgtfhRJ0sL7i_z-MTaLFvHn7lkcHEPtbsneJ6QMSY=.pem","location":"security-state-staging/intermediates/f38b174b-fe67-499c-87e4-4179475f4305.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1hrgtfhRJ0sL7i/z+MTaLFvHn7lkcHEPtbsneJ6QMSY=","crlite_enrolled":fals
e,"id":"bb05ed4d-3921-4bb5-b9fd-ad946be0f10d","last_modified":1602640676717},{"schema":1602298099827,"derHash":"R1nW9O1t8OCPxMqAGYbivhBZTbrzQbTEWrr6N0iIfSU=","subject":"CN=DigiCert Secure Auth CA2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGERpZ2lDZXJ0IFNlY3VyZSBBdXRoIENBMg==","whitelist":false,"attachment":{"hash":"a77265b7e079064772045ae5bc70c2578caebafaa3dd91205900e00a17140e4f","size":1772,"filename":"ZZR--hRloC8riD7MvWAr-1lIuMoIu6Nr3T5xJPP6HWw=.pem","location":"security-state-staging/intermediates/96070886-41b8-49d7-bdc8-288a168b4d42.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZZR++hRloC8riD7MvWAr+1lIuMoIu6Nr3T5xJPP6HWw=","crlite_enrolled":false,"id":"55b23a55-20b5-4564-9301-19e1f6663e64","last_modified":1602298664805},{"schema":1602298101397,"derHash":"Qi+dTmgTTjYrdWnlKYoXPOxAx8cnSyJjqbyK2h0aI/o=","subject":"CN=Data Management Intermediate CA2,O=Fresenius Kabi AG,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRowGAYDVQ
QKExFGcmVzZW5pdXMgS2FiaSBBRzEpMCcGA1UEAxMgRGF0YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDQTI=","whitelist":false,"attachment":{"hash":"94d5d2945162c4cb87b19a4b549f1b1711ada8c52af0d077de00da8def159dc0","size":1788,"filename":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=.pem","location":"security-state-staging/intermediates/76c4ae03-cb6d-458e-86c7-67b6e175a4bd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=","crlite_enrolled":false,"id":"647a58c6-8821-45ab-be6a-5060bc947663","last_modified":1602298664792},{"schema":1602295137997,"derHash":"R1nW9O1t8OCPxMqAGYbivhBZTbrzQbTEWrr6N0iIfSU=","subject":"CN=DigiCert Secure Auth CA2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGERpZ2lDZXJ0IFNlY3VyZSBBdXRoIENBMg==","whitelist":false,"attachment":{"hash":"a77265b7e079064772045ae5bc70c2578caebafaa3dd91205900e00a17140e4f","size":1772,"filename":"ZZR--hRloC8riD7MvWAr-1lIuMoIu6Nr3T5xJPP6HWw=.pem","locat
ion":"security-state-staging/intermediates/c6fc6d45-b2fd-49ff-8537-ead6a452efe1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZZR++hRloC8riD7MvWAr+1lIuMoIu6Nr3T5xJPP6HWw=","crlite_enrolled":false,"id":"ca5a7b22-9e28-43dd-988a-2dce9d4cbc55","last_modified":1602298664780},{"schema":1602294982304,"derHash":"R1nW9O1t8OCPxMqAGYbivhBZTbrzQbTEWrr6N0iIfSU=","subject":"CN=DigiCert Secure Auth CA2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGERpZ2lDZXJ0IFNlY3VyZSBBdXRoIENBMg==","whitelist":false,"attachment":{"hash":"a77265b7e079064772045ae5bc70c2578caebafaa3dd91205900e00a17140e4f","size":1772,"filename":"ZZR--hRloC8riD7MvWAr-1lIuMoIu6Nr3T5xJPP6HWw=.pem","location":"security-state-staging/intermediates/530644a0-1e30-447d-ae93-a1bc0d62a856.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZZR++hRloC8riD7MvWAr+1lIuMoIu6Nr3T5xJPP6HWw=","crlite_enrolled":false,"id":"69151f48-9355-402a-a4f7-edc3bd8c245c","last_modified":16022986
64768},{"schema":1602294980728,"derHash":"Qi+dTmgTTjYrdWnlKYoXPOxAx8cnSyJjqbyK2h0aI/o=","subject":"CN=Data Management Intermediate CA2,O=Fresenius Kabi AG,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRowGAYDVQQKExFGcmVzZW5pdXMgS2FiaSBBRzEpMCcGA1UEAxMgRGF0YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDQTI=","whitelist":false,"attachment":{"hash":"94d5d2945162c4cb87b19a4b549f1b1711ada8c52af0d077de00da8def159dc0","size":1788,"filename":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=.pem","location":"security-state-staging/intermediates/64d78a05-459d-490a-a9b7-710ea2e69e9e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=","crlite_enrolled":false,"id":"c1ef662d-911d-4ee8-93a5-6897f5af1d2e","last_modified":1602298664756},{"schema":1602294812900,"derHash":"R1nW9O1t8OCPxMqAGYbivhBZTbrzQbTEWrr6N0iIfSU=","subject":"CN=DigiCert Secure Auth CA2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGERpZ2lDZXJ0IFNlY3Vy
ZSBBdXRoIENBMg==","whitelist":false,"attachment":{"hash":"a77265b7e079064772045ae5bc70c2578caebafaa3dd91205900e00a17140e4f","size":1772,"filename":"ZZR--hRloC8riD7MvWAr-1lIuMoIu6Nr3T5xJPP6HWw=.pem","location":"security-state-staging/intermediates/ca0daa91-d2da-46e1-8fad-ce93b4478be2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZZR++hRloC8riD7MvWAr+1lIuMoIu6Nr3T5xJPP6HWw=","crlite_enrolled":false,"id":"6fa539e1-18ab-40f6-bd9c-235218cccb25","last_modified":1602298664744},{"schema":1602294704633,"derHash":"Qi+dTmgTTjYrdWnlKYoXPOxAx8cnSyJjqbyK2h0aI/o=","subject":"CN=Data Management Intermediate CA2,O=Fresenius Kabi AG,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRowGAYDVQQKExFGcmVzZW5pdXMgS2FiaSBBRzEpMCcGA1UEAxMgRGF0YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDQTI=","whitelist":false,"attachment":{"hash":"94d5d2945162c4cb87b19a4b549f1b1711ada8c52af0d077de00da8def159dc0","size":1788,"filename":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=.pem","location":"security-state-staging/intermediate
s/636064f0-6cbf-481c-ae6c-8786ed5ac5c7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=","crlite_enrolled":false,"id":"8b4d5d9b-6f1f-4081-a0ec-313b4caf68b9","last_modified":1602298664733},{"schema":1602294814450,"derHash":"Qi+dTmgTTjYrdWnlKYoXPOxAx8cnSyJjqbyK2h0aI/o=","subject":"CN=Data Management Intermediate CA2,O=Fresenius Kabi AG,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRowGAYDVQQKExFGcmVzZW5pdXMgS2FiaSBBRzEpMCcGA1UEAxMgRGF0YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDQTI=","whitelist":false,"attachment":{"hash":"94d5d2945162c4cb87b19a4b549f1b1711ada8c52af0d077de00da8def159dc0","size":1788,"filename":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=.pem","location":"security-state-staging/intermediates/57373448-8114-4a2b-8088-f440a5659ce2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=","crlite_enrolled":false,"id":"90aadf13-6f41-4808-adf7-5d7b5a196ece","last_modified":1602298664721},{"sch
ema":1602294606254,"derHash":"Qi+dTmgTTjYrdWnlKYoXPOxAx8cnSyJjqbyK2h0aI/o=","subject":"CN=Data Management Intermediate CA2,O=Fresenius Kabi AG,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRowGAYDVQQKExFGcmVzZW5pdXMgS2FiaSBBRzEpMCcGA1UEAxMgRGF0YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDQTI=","whitelist":false,"attachment":{"hash":"94d5d2945162c4cb87b19a4b549f1b1711ada8c52af0d077de00da8def159dc0","size":1788,"filename":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=.pem","location":"security-state-staging/intermediates/7ed8a5e9-d627-46e2-b8bd-3d94ebf324fd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=","crlite_enrolled":false,"id":"dd950c26-9f72-4fcd-bde1-2853dba9a33d","last_modified":1602298664709},{"schema":1602294702179,"derHash":"R1nW9O1t8OCPxMqAGYbivhBZTbrzQbTEWrr6N0iIfSU=","subject":"CN=DigiCert Secure Auth CA2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGERpZ2lDZXJ0IFNlY3VyZSBBdXRoIENB
Mg==","whitelist":false,"attachment":{"hash":"a77265b7e079064772045ae5bc70c2578caebafaa3dd91205900e00a17140e4f","size":1772,"filename":"ZZR--hRloC8riD7MvWAr-1lIuMoIu6Nr3T5xJPP6HWw=.pem","location":"security-state-staging/intermediates/3bff1db2-cec5-4117-9ae4-6f4c16dc8215.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZZR++hRloC8riD7MvWAr+1lIuMoIu6Nr3T5xJPP6HWw=","crlite_enrolled":false,"id":"072e74df-3503-4c99-9403-75fb542972c6","last_modified":1602298664698},{"schema":1602295140467,"derHash":"Qi+dTmgTTjYrdWnlKYoXPOxAx8cnSyJjqbyK2h0aI/o=","subject":"CN=Data Management Intermediate CA2,O=Fresenius Kabi AG,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRowGAYDVQQKExFGcmVzZW5pdXMgS2FiaSBBRzEpMCcGA1UEAxMgRGF0YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDQTI=","whitelist":false,"attachment":{"hash":"94d5d2945162c4cb87b19a4b549f1b1711ada8c52af0d077de00da8def159dc0","size":1788,"filename":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=.pem","location":"security-state-staging/intermediates/3a6cebdc-e
2d4-4f19-ba75-a61e1559cf91.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=","crlite_enrolled":false,"id":"bf02c337-050a-43b5-a4eb-598b01c58812","last_modified":1602298664686},{"schema":1602294608115,"derHash":"R1nW9O1t8OCPxMqAGYbivhBZTbrzQbTEWrr6N0iIfSU=","subject":"CN=DigiCert Secure Auth CA2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGERpZ2lDZXJ0IFNlY3VyZSBBdXRoIENBMg==","whitelist":false,"attachment":{"hash":"a77265b7e079064772045ae5bc70c2578caebafaa3dd91205900e00a17140e4f","size":1772,"filename":"ZZR--hRloC8riD7MvWAr-1lIuMoIu6Nr3T5xJPP6HWw=.pem","location":"security-state-staging/intermediates/80080d6b-3dc2-4a81-b302-4b52e36b835b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZZR++hRloC8riD7MvWAr+1lIuMoIu6Nr3T5xJPP6HWw=","crlite_enrolled":false,"id":"ec700973-5e01-43ff-9d72-19f79ffb9c70","last_modified":1602298664674},{"schema":1602294515612,"derHash":"Qi+dTmgTTjY
rdWnlKYoXPOxAx8cnSyJjqbyK2h0aI/o=","subject":"CN=Data Management Intermediate CA2,O=Fresenius Kabi AG,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRowGAYDVQQKExFGcmVzZW5pdXMgS2FiaSBBRzEpMCcGA1UEAxMgRGF0YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDQTI=","whitelist":false,"attachment":{"hash":"94d5d2945162c4cb87b19a4b549f1b1711ada8c52af0d077de00da8def159dc0","size":1788,"filename":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=.pem","location":"security-state-staging/intermediates/c55dfd59-234e-4ff8-9459-d7d2b199d649.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhS3FkZCk36iI2tjewAoFwSeq0mVjOvTE5pZNBi0jqs=","crlite_enrolled":false,"id":"3c043e6a-b731-4ecc-a152-a94704a97068","last_modified":1602298664663},{"schema":1602294517394,"derHash":"R1nW9O1t8OCPxMqAGYbivhBZTbrzQbTEWrr6N0iIfSU=","subject":"CN=DigiCert Secure Auth CA2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGERpZ2lDZXJ0IFNlY3VyZSBBdXRoIENBMg==","whitelist":false,"attachment":{"ha
sh":"a77265b7e079064772045ae5bc70c2578caebafaa3dd91205900e00a17140e4f","size":1772,"filename":"ZZR--hRloC8riD7MvWAr-1lIuMoIu6Nr3T5xJPP6HWw=.pem","location":"security-state-staging/intermediates/114b1d47-f6d2-4167-87f3-2820ec5baa1d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZZR++hRloC8riD7MvWAr+1lIuMoIu6Nr3T5xJPP6HWw=","crlite_enrolled":false,"id":"37cd4ec9-5aa2-48af-b66b-9f4f4cda0b08","last_modified":1602298664651},{"schema":1602298103338,"derHash":"oUSKAV4TmcWokYEvDojG2EeyIdIfkyamYmukOg62Etk=","subject":"CN=Aetna Inc. Secure EV CA,O=Aetna Inc,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZXRuYSBJbmMxIDAeBgNVBAMTF0FldG5hIEluYy4gU2VjdXJlIEVWIENB","whitelist":false,"attachment":{"hash":"efe10561bf3266c3b533e4642fc8dc3f95e0af6b13697751ab9e922af3013c4c","size":1804,"filename":"0rv4XQwSpZni_0C8FcOJhSJNEzvghB5GUVNKhM-UmQE=.pem","location":"security-state-staging/intermediates/cfaadb5b-e902-470e-923b-22b8d677a073.pem","mimetype":"application/x-pem-file"},"pubKeyHash":
"0rv4XQwSpZni/0C8FcOJhSJNEzvghB5GUVNKhM+UmQE=","crlite_enrolled":true,"id":"f6f1bda2-caaa-42ec-9ed1-a53b8a23db58","last_modified":1602298664631},{"schema":1602298102910,"derHash":"oUSKAV4TmcWokYEvDojG2EeyIdIfkyamYmukOg62Etk=","subject":"CN=Aetna Inc. Secure EV CA,O=Aetna Inc,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZXRuYSBJbmMxIDAeBgNVBAMTF0FldG5hIEluYy4gU2VjdXJlIEVWIENB","whitelist":false,"attachment":{"hash":"efe10561bf3266c3b533e4642fc8dc3f95e0af6b13697751ab9e922af3013c4c","size":1804,"filename":"0rv4XQwSpZni_0C8FcOJhSJNEzvghB5GUVNKhM-UmQE=.pem","location":"security-state-staging/intermediates/5bb48710-2b16-46cb-89d2-50b66eb64107.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0rv4XQwSpZni/0C8FcOJhSJNEzvghB5GUVNKhM+UmQE=","crlite_enrolled":true,"id":"50e4ca03-eb57-4ac4-8ed5-17d92d977986","last_modified":1602298664611},{"schema":1602298102487,"derHash":"ChY2AGMb1mJn+3rq0lxTiyt9cq1kFqK70oX2VLtkL20=","subject":"CN=Aetna Inc. Secure EV CA,O=Aetna Inc,C=US","subj
ectDN":"MEMxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZXRuYSBJbmMxIDAeBgNVBAMTF0FldG5hIEluYy4gU2VjdXJlIEVWIENB","whitelist":false,"attachment":{"hash":"0be7b4b36e584af7c9c5b112ea58bd9a35c130ac60498f529685f3677950def8","size":1687,"filename":"0rv4XQwSpZni_0C8FcOJhSJNEzvghB5GUVNKhM-UmQE=.pem","location":"security-state-staging/intermediates/944a758d-2190-478d-9aaf-b72d3189ad0c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0rv4XQwSpZni/0C8FcOJhSJNEzvghB5GUVNKhM+UmQE=","crlite_enrolled":true,"id":"2ebb6e61-790b-44fe-a28c-c32b851f947b","last_modified":1602298664591},{"schema":1602269869014,"derHash":"J3z0tl9TD8wHKF74nYMRiEiEAE5PLH2+fKAG6WU2zWI=","subject":"CN=Shoper\u00ae SSL,OU=Dreamcommerce S.A.,O=Dreamcommerce S.A.,C=PL","subjectDN":"MF4xCzAJBgNVBAYTAlBMMRswGQYDVQQKDBJEcmVhbWNvbW1lcmNlIFMuQS4xGzAZBgNVBAsMEkRyZWFtY29tbWVyY2UgUy5BLjEVMBMGA1UEAwwMU2hvcGVywq4gU1NM","whitelist":false,"attachment":{"hash":"e4b74658c87e531a9abfebbd57bf225a85f5e2a737dd73be3794a19bc905b06b","size":1613,"filena
me":"u2qzRrAdmNr-Meysupi9x7UNMaLYZzuT4OTThn_6xF4=.pem","location":"security-state-staging/intermediates/dee40a5f-efa0-4a09-8a63-181ab2062fb5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"u2qzRrAdmNr+Meysupi9x7UNMaLYZzuT4OTThn/6xF4=","crlite_enrolled":false,"id":"5ffb5aee-a080-4a31-aec0-6301099b7425","last_modified":1602273466706},{"schema":1602248260747,"derHash":"7qFSzPdRfhZRMga3HBfiBPpAB8JsNgUexn30yUdGPPg=","subject":"CN=cPanel High Assurance ECC Certification Authority,O=cPanel\\, Inc.,L=Houston,ST=TX,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJUWDEQMA4GA1UEBxMHSG91c3RvbjEVMBMGA1UEChMMY1BhbmVsLCBJbmMuMTowOAYDVQQDEzFjUGFuZWwgSGlnaCBBc3N1cmFuY2UgRUNDIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"82ee0338bc29f687ea9594b3ee05b3cacfd4b1890b1c95e3452bcfccd99f8c87","size":1297,"filename":"L4q9ILB-EyvjFKWbhrCSV_fq9CRcnS_EmX6BUSqw8Zo=.pem","location":"security-state-staging/intermediates/73d51902-463f-4e96-b2af-d79fd4da20cc.pem","mimetype":"a
pplication/x-pem-file"},"pubKeyHash":"L4q9ILB+EyvjFKWbhrCSV/fq9CRcnS/EmX6BUSqw8Zo=","crlite_enrolled":true,"id":"0d1ede70-4b26-4a54-919b-ffca9db0bb57","last_modified":1602251860240},{"schema":1602125315857,"derHash":"cwwb3NhfV85dwLunM+XxulqSWyp3HWQKJvekVCJNrTs=","subject":"CN=R3,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSMw==","whitelist":false,"attachment":{"hash":"8467f9a9c499b547e02391a7fe31c469557c379b07852c2ca04ce3ecec676dea","size":1585,"filename":"jQJTbIh0grw0_1TkHSumWb-Fs0Ggogr621gT3PvPKG0=.pem","location":"security-state-staging/intermediates/1f71d4c5-823d-4f6a-9fcf-107004848c43.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jQJTbIh0grw0/1TkHSumWb+Fs0Ggogr621gT3PvPKG0=","crlite_enrolled":false,"id":"5d9dd4cf-783a-46de-885d-a4702103320f","last_modified":1602125863571},{"schema":1602125317285,"derHash":"Wo8W/aRI14NIHMpXokKNF02tjGCUPOso9mGuMf05pfo=","subject":"CN=R4,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJ
BgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSNA==","whitelist":false,"attachment":{"hash":"9cd790ac13f6ba45dcb08a81db71c89d50e10474fcde7568d501e5893f538729","size":1585,"filename":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX-WPd5kPLQM=.pem","location":"security-state-staging/intermediates/a1dd6cdc-7cb6-4608-ad10-121c1417b86e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX+WPd5kPLQM=","crlite_enrolled":false,"id":"2b30c13e-2cab-4b8c-883d-43f99052d539","last_modified":1602125863559},{"schema":1602121858033,"derHash":"Wo8W/aRI14NIHMpXokKNF02tjGCUPOso9mGuMf05pfo=","subject":"CN=R4,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSNA==","whitelist":false,"attachment":{"hash":"9cd790ac13f6ba45dcb08a81db71c89d50e10474fcde7568d501e5893f538729","size":1585,"filename":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX-WPd5kPLQM=.pem","location":"security-state-staging/intermediates/4f471d30-f2da-4143-bbec-db77
2922e9d9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX+WPd5kPLQM=","crlite_enrolled":false,"id":"835f8581-8590-4a2f-80bc-f607c2264bc5","last_modified":1602122269012},{"schema":1602121856579,"derHash":"cwwb3NhfV85dwLunM+XxulqSWyp3HWQKJvekVCJNrTs=","subject":"CN=R3,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSMw==","whitelist":false,"attachment":{"hash":"8467f9a9c499b547e02391a7fe31c469557c379b07852c2ca04ce3ecec676dea","size":1585,"filename":"jQJTbIh0grw0_1TkHSumWb-Fs0Ggogr621gT3PvPKG0=.pem","location":"security-state-staging/intermediates/5b388518-029b-4136-9c78-d43474613fd9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jQJTbIh0grw0/1TkHSumWb+Fs0Ggogr621gT3PvPKG0=","crlite_enrolled":false,"id":"6d11fad9-c414-48d6-b593-5cafd1758bc5","last_modified":1602122268992},{"schema":1602103701893,"derHash":"ks5+p0JLPnosFMJuDVcq29VW4F4rKovTdhxpUlQlWFY=","subject":"CN=AnsonNet TLS Issui
ng RSA CA R1,O=Anson Network Limited,L=London,ST=London,C=GB","subjectDN":"MHgxCzAJBgNVBAYTAkdCMQ8wDQYDVQQIDAZMb25kb24xDzANBgNVBAcMBkxvbmRvbjEeMBwGA1UECgwVQW5zb24gTmV0d29yayBMaW1pdGVkMScwJQYDVQQDDB5BbnNvbk5ldCBUTFMgSXNzdWluZyBSU0EgQ0EgUjE=","whitelist":false,"attachment":{"hash":"c2a431004a217db81281a2de2c05eb1e93eb5abc1d4a818825e74e917c6a7019","size":2556,"filename":"mPShRNkBUp1VgXuaiIbIdh-5lcY6nG4Evw-dwtjk06A=.pem","location":"security-state-staging/intermediates/cc65c814-7ae3-4f5b-b2db-27bad5f914d2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mPShRNkBUp1VgXuaiIbIdh+5lcY6nG4Evw+dwtjk06A=","crlite_enrolled":false,"id":"20dd4e9a-8d90-4e64-9389-8d8a9c66c10d","last_modified":1602104258093},{"schema":1602103700443,"derHash":"N/0pxwHWl3mY8gUVPqikwumWNU3wctSYTcXYsfdaK2E=","subject":"CN=SwissNS TLS Issuing RSA CA R1,O=swissns GmbH,L=Luzern,ST=Luzern,C=CH","subjectDN":"MG4xCzAJBgNVBAYTAkNIMQ8wDQYDVQQIDAZMdXplcm4xDzANBgNVBAcMBkx1emVybjEVMBMGA1UECgwMc3dpc3NucyBHbWJIMSYwJAYDVQQDDB1
Td2lzc05TIFRMUyBJc3N1aW5nIFJTQSBDQSBSMQ==","whitelist":false,"attachment":{"hash":"712a44aa441a1572aa92968b2b418a8c979bfb72b6b17653fed5888d76210828","size":2544,"filename":"KAda-LJFeGtGthCqCejer2EUArFZNe-fmlkLdhkdcJc=.pem","location":"security-state-staging/intermediates/2b761dc1-930d-4dc0-ba17-650c271bfb95.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KAda+LJFeGtGthCqCejer2EUArFZNe+fmlkLdhkdcJc=","crlite_enrolled":false,"id":"32fe68ce-7d4c-4d54-bab1-b2aab2d02223","last_modified":1602104258081},{"schema":1602100118791,"derHash":"ks5+p0JLPnosFMJuDVcq29VW4F4rKovTdhxpUlQlWFY=","subject":"CN=AnsonNet TLS Issuing RSA CA R1,O=Anson Network Limited,L=London,ST=London,C=GB","subjectDN":"MHgxCzAJBgNVBAYTAkdCMQ8wDQYDVQQIDAZMb25kb24xDzANBgNVBAcMBkxvbmRvbjEeMBwGA1UECgwVQW5zb24gTmV0d29yayBMaW1pdGVkMScwJQYDVQQDDB5BbnNvbk5ldCBUTFMgSXNzdWluZyBSU0EgQ0EgUjE=","whitelist":false,"attachment":{"hash":"c2a431004a217db81281a2de2c05eb1e93eb5abc1d4a818825e74e917c6a7019","size":2556,"filename":"mPS
hRNkBUp1VgXuaiIbIdh-5lcY6nG4Evw-dwtjk06A=.pem","location":"security-state-staging/intermediates/34297edd-f3b2-4fef-999b-4d930d483b6b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mPShRNkBUp1VgXuaiIbIdh+5lcY6nG4Evw+dwtjk06A=","crlite_enrolled":false,"id":"be5f22dc-d3c0-4ba9-8bab-7df502dfa36c","last_modified":1602100657898},{"schema":1602100117378,"derHash":"N/0pxwHWl3mY8gUVPqikwumWNU3wctSYTcXYsfdaK2E=","subject":"CN=SwissNS TLS Issuing RSA CA R1,O=swissns GmbH,L=Luzern,ST=Luzern,C=CH","subjectDN":"MG4xCzAJBgNVBAYTAkNIMQ8wDQYDVQQIDAZMdXplcm4xDzANBgNVBAcMBkx1emVybjEVMBMGA1UECgwMc3dpc3NucyBHbWJIMSYwJAYDVQQDDB1Td2lzc05TIFRMUyBJc3N1aW5nIFJTQSBDQSBSMQ==","whitelist":false,"attachment":{"hash":"712a44aa441a1572aa92968b2b418a8c979bfb72b6b17653fed5888d76210828","size":2544,"filename":"KAda-LJFeGtGthCqCejer2EUArFZNe-fmlkLdhkdcJc=.pem","location":"security-state-staging/intermediates/c7fb95b1-4e6e-44da-b797-1b64a448dbfb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KAda+LJFe
GtGthCqCejer2EUArFZNe+fmlkLdhkdcJc=","crlite_enrolled":false,"id":"1c713ec1-22b4-4bb9-a642-d8188603e3c9","last_modified":1602100657886},{"schema":1601686641575,"derHash":"ZTkjWloflBgMUjPq+KXWcQLeqhbAdRrvNbPmfOVgfyk=","subject":"CN=University of Macedonia TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHkxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTEwLwYDVQQDDChVbml2ZXJzaXR5IG9mIE1hY2Vkb25pYSBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"128df8a47dde21bf8cb684fe77d41c11d5bf09efa2af436a8f9cad4ff2a69844","size":2824,"filename":"Yr1zUmzXNRDeB9FlIE3oqt2RAilAhCi90mNw8jOw5j0=.pem","location":"security-state-staging/intermediates/6bf79ff6-7e88-4c7c-b114-96d5328c44c9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Yr1zUmzXNRDeB9FlIE3oqt2RAilAhCi90mNw8jOw5j0=","crlite_enrolled":true,"id":"87925423-9a51-40ac-ad0b-43800ff2c93f","last_modified":1601690248797},{"schema":1601672077933,"
derHash":"KIs1Rm+44ii5iDIBnhp5Vqw+nxVCgMyXSG7Mjiycq8E=","subject":"CN=IdenTrust Public Sector Server CA 1,OU=TrustID Server,O=IdenTrust,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxFzAVBgNVBAsTDlRydXN0SUQgU2VydmVyMSwwKgYDVQQDEyNJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBTZXJ2ZXIgQ0EgMQ==","whitelist":false,"attachment":{"hash":"76f53e60805d58cfdf8c7851caca2cc1b2e1d58ccecc5f8c3c4894a02b95a3fa","size":2393,"filename":"8tH7Dh4xfmk7Qci7zhMFmxVcpAzVMwFBeAsRhtLDaLg=.pem","location":"security-state-staging/intermediates/7b450fbd-7542-44c9-be47-022a4d7418ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8tH7Dh4xfmk7Qci7zhMFmxVcpAzVMwFBeAsRhtLDaLg=","crlite_enrolled":true,"id":"58959c17-11bd-4882-9810-171e73efdcf3","last_modified":1601675840485},{"schema":1601672000910,"derHash":"KIs1Rm+44ii5iDIBnhp5Vqw+nxVCgMyXSG7Mjiycq8E=","subject":"CN=IdenTrust Public Sector Server CA 1,OU=TrustID Server,O=IdenTrust,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxFz
AVBgNVBAsTDlRydXN0SUQgU2VydmVyMSwwKgYDVQQDEyNJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBTZXJ2ZXIgQ0EgMQ==","whitelist":false,"attachment":{"hash":"76f53e60805d58cfdf8c7851caca2cc1b2e1d58ccecc5f8c3c4894a02b95a3fa","size":2393,"filename":"8tH7Dh4xfmk7Qci7zhMFmxVcpAzVMwFBeAsRhtLDaLg=.pem","location":"security-state-staging/intermediates/b0475a24-c54a-415c-b8a5-508f00049e42.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8tH7Dh4xfmk7Qci7zhMFmxVcpAzVMwFBeAsRhtLDaLg=","crlite_enrolled":true,"id":"a8eb67a0-8c64-4314-8f5d-f8052549076c","last_modified":1601675840461},{"schema":1601646741831,"derHash":"eMtRLeSM7c1xNN9XyXPB4aB2krj1QqRKzruLt3bVXVk=","subject":"CN=CrowdStrike GCC R3 TLS OV CA 2020,O=CrowdStrike Inc.,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBDcm93ZFN0cmlrZSBJbmMuMSowKAYDVQQDEyFDcm93ZFN0cmlrZSBHQ0MgUjMgVExTIE9WIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"4db0721974365af16dd868628e17ddb2016a9a91ef607ffb13a995ff49b25874","size":1707,"filename":"nyCr34aeGoF5NDljMipB
AETTIQQ7RVPxD3A4z08s6S0=.pem","location":"security-state-staging/intermediates/87766a98-a2cc-464d-9b61-f38989d08aef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nyCr34aeGoF5NDljMipBAETTIQQ7RVPxD3A4z08s6S0=","crlite_enrolled":true,"id":"679290b1-74f0-4692-85c0-80c7ed611f13","last_modified":1601647037525},{"schema":1601646862791,"derHash":"eMtRLeSM7c1xNN9XyXPB4aB2krj1QqRKzruLt3bVXVk=","subject":"CN=CrowdStrike GCC R3 TLS OV CA 2020,O=CrowdStrike Inc.,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBDcm93ZFN0cmlrZSBJbmMuMSowKAYDVQQDEyFDcm93ZFN0cmlrZSBHQ0MgUjMgVExTIE9WIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"4db0721974365af16dd868628e17ddb2016a9a91ef607ffb13a995ff49b25874","size":1707,"filename":"nyCr34aeGoF5NDljMipBAETTIQQ7RVPxD3A4z08s6S0=.pem","location":"security-state-staging/intermediates/dffc1d44-5fa3-4cf0-8e03-6e735e18ca4c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nyCr34aeGoF5NDljMipBAETTIQQ7RVPxD3A4z08s6S0=","crlite_enrolled":true,"id":
"bd781195-4915-4ba3-9cc4-34433abaf5c9","last_modified":1601647037505},{"schema":1601628639979,"derHash":"OPc2R/HsruwPxa/misMODCYXHp8jL0UwcpQSQI/VNiY=","subject":"CN=DigiCert Baltimore TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRpZ2lDZXJ0IEJhbHRpbW9yZSBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"b11aaedbe5436f35dfaa91a1b599580a4875728df582882c8b0654b4695f6f8d","size":1752,"filename":"cxJYF2dxgQBCK6TeOX11kvdv3gHxeJgxQeT9-UzsuNw=.pem","location":"security-state-staging/intermediates/3e01120a-d2e3-42a3-9d54-b75e73a5246a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cxJYF2dxgQBCK6TeOX11kvdv3gHxeJgxQeT9+UzsuNw=","crlite_enrolled":true,"id":"9cf120fd-788c-4296-bacc-d339a0c51529","last_modified":1601629035363},{"schema":1601628561952,"derHash":"OPc2R/HsruwPxa/misMODCYXHp8jL0UwcpQSQI/VNiY=","subject":"CN=DigiCert Baltimore TLS RSA SHA256 2020 CA1,O=DigiCert Inc,C=US","sub
jectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkRpZ2lDZXJ0IEJhbHRpbW9yZSBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMQ==","whitelist":false,"attachment":{"hash":"b11aaedbe5436f35dfaa91a1b599580a4875728df582882c8b0654b4695f6f8d","size":1752,"filename":"cxJYF2dxgQBCK6TeOX11kvdv3gHxeJgxQeT9-UzsuNw=.pem","location":"security-state-staging/intermediates/93cb65fb-aaaa-48e2-98f3-414e208ebd02.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cxJYF2dxgQBCK6TeOX11kvdv3gHxeJgxQeT9+UzsuNw=","crlite_enrolled":true,"id":"05b6f881-a4d5-4faf-891d-c599dd09284d","last_modified":1601629035343},{"schema":1601581756903,"derHash":"jlEFdfB6l9X62jv9phh+A+d9M5IxhFfqhxip0otDOWs=","subject":"CN=R4,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSNA==","whitelist":false,"attachment":{"hash":"7c779081b9be519ff3d25e8772978950f385cb19f49a24a6057409137112bc14","size":1540,"filename":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX-WPd5kPLQM=.pem","location
":"security-state-staging/intermediates/8847b089-d96c-4f13-acc0-18117749df17.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX+WPd5kPLQM=","crlite_enrolled":false,"id":"417742c5-f44f-46d5-972d-d38d206c0784","last_modified":1601582282303},{"schema":1601581755437,"derHash":"/udl2kys9TxxryAvifNhJCD9kw2ATiBP7u/J14CEu3s=","subject":"CN=R3,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSMw==","whitelist":false,"attachment":{"hash":"5fc63297733d4d2adf06d7e52b3337147d888c5dd5442cb6ec2d88986bb1de4c","size":1540,"filename":"jQJTbIh0grw0_1TkHSumWb-Fs0Ggogr621gT3PvPKG0=.pem","location":"security-state-staging/intermediates/988d8f38-2e00-41eb-a26c-76d18afbb2d9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jQJTbIh0grw0/1TkHSumWb+Fs0Ggogr621gT3PvPKG0=","crlite_enrolled":false,"id":"36186b66-f98f-44f9-89fe-243c1b143997","last_modified":1601582282291},{"schema":1601581757962,"derHash":"vao4RyBgT/
RlOwDaOHOoxUWZb/uKuR1hbxBJX8Am6Pw=","subject":"CN=cPanel\\, Inc. ECC Certification Authority,O=cPanel\\, Inc.,L=Houston,ST=TX,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJUWDEQMA4GA1UEBxMHSG91c3RvbjEVMBMGA1UEChMMY1BhbmVsLCBJbmMuMTEwLwYDVQQDEyhjUGFuZWwsIEluYy4gRUNDIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"3abd6d4119adbd58f964bcd4518e31534b73279076cf34283e7839869f436dfb","size":1284,"filename":"1OWbvT5F8be0LIlW8C2KyzC-FMP8CzHyOolBvIgt6bc=.pem","location":"security-state-staging/intermediates/d08866e7-4949-4b27-9ef1-69593b3642dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1OWbvT5F8be0LIlW8C2KyzC+FMP8CzHyOolBvIgt6bc=","crlite_enrolled":true,"id":"e137294d-0311-4243-8e1c-d116db18b312","last_modified":1601582282261},{"schema":1601376714502,"derHash":"HjVoI/5AwOqsKfntVGO3stscCItj67BYdqLmMcEId5g=","subject":"CN=QuoVadis Enterprise Trust CA 2 G4,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFsxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcn
VzdGxpbmsgQi5WLjEqMCgGA1UEAwwhUXVvVmFkaXMgRW50ZXJwcmlzZSBUcnVzdCBDQSAyIEc0","whitelist":false,"attachment":{"hash":"756cc72bf46fca106a4ae94315fc04ea6bbe1b93e3229513d02875b33ca13f45","size":2385,"filename":"z-lEyVPfwY15LjMDGouWc4Jt0MFWaf2MpLOSN9mx9tM=.pem","location":"security-state-staging/intermediates/97e9a258-06aa-43a7-8ada-49f8b85b4dc5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z+lEyVPfwY15LjMDGouWc4Jt0MFWaf2MpLOSN9mx9tM=","crlite_enrolled":false,"id":"09667865-dc1f-4be8-b78d-5f3614672a9a","last_modified":1601517448053},{"schema":1601376711578,"derHash":"LRQPILipbitNLxzFrKXloefcVqdJHlEJBpYPONLSGu8=","subject":"CN=GeoTrust EV RSA CA G2,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFUdlb1RydXN0IEVWIFJTQSBDQSBHMg==","whitelist":false,"attachment":{"hash":"f01753f65dd631ba19494a777a86712466e7e8b20994d581e672f52716f315bb","size":1873,"filename":"VHUagq80gsWdvnfHL_-2XSLZrAJk4I9d8fx6N8UvWGM=.pem","location":"security-stat
e-staging/intermediates/920f9d58-4bbc-4b8c-9c0d-15d09f34ef1c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VHUagq80gsWdvnfHL/+2XSLZrAJk4I9d8fx6N8UvWGM=","crlite_enrolled":true,"id":"493a41b4-bb0b-48eb-b54e-2a2d3b1343e4","last_modified":1601517448040},{"schema":1601376707030,"derHash":"DakU+3El9uZE63qiYd6euAncf5Jbayp9in7dhzY5i1s=","subject":"CN=Staat der Nederlanden Domein Server CA 2020,O=Staat der Nederlanden,C=NL","subjectDN":"MGMxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xNDAyBgNVBAMMK1N0YWF0IGRlciBOZWRlcmxhbmRlbiBEb21laW4gU2VydmVyIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"2f30004a37d33d9c2a59bae9b9e7ae94f816bd331c1a88deabd4af0f028ec59e","size":2438,"filename":"N9-YluTCUa_HTXc60QxjUReBLpRniAkIK2N84DhgmW4=.pem","location":"security-state-staging/intermediates/1a840a62-8cd7-4d70-9975-b54d902e70f8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N9+YluTCUa/HTXc60QxjUReBLpRniAkIK2N84DhgmW4=","crlite_enrolled":false,"id":"aac1684b-0ef2-4e80
-a504-29ddab6c3e72","last_modified":1601517448028},{"schema":1601376713050,"derHash":"N2EL91bKTDz6GGlsTBSXOOZEyp9nY4fsUBZzZdakXMo=","subject":"CN=Digidentity PKIoverheid Server CA 2020,O=Digidentity B.V.,C=NL","subjectDN":"MFkxCzAJBgNVBAYTAk5MMRkwFwYDVQQKDBBEaWdpZGVudGl0eSBCLlYuMS8wLQYDVQQDDCZEaWdpZGVudGl0eSBQS0lvdmVyaGVpZCBTZXJ2ZXIgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"c6efc5a8dbba37f6c4ba76f0ccd0f86ceb94b6b66cfd390227a747d4d83ff0b3","size":2487,"filename":"DnmLzHZn-pLaQKZ9c6lYR5BOqhZMey469UF5T1hne2k=.pem","location":"security-state-staging/intermediates/cd42a716-ce60-48c0-a709-ead47fce1fbe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DnmLzHZn+pLaQKZ9c6lYR5BOqhZMey469UF5T1hne2k=","crlite_enrolled":true,"id":"5f56fcf5-5fc3-476f-865b-5607ab67cac6","last_modified":1601517448016},{"schema":1601376708754,"derHash":"0zqEf2QDd74K4aQpFToH6HyIJ/pIQLUVi83LheEKRTo=","subject":"CN=VR IDENT EV SSL CA 2020,O=Fiducia & GAD IT AG,C=DE","subjectDN":"ME0xCzAJBgNVBAYTAkRFMR
wwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMSAwHgYDVQQDDBdWUiBJREVOVCBFViBTU0wgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"a95e7ccf2ef4b020f65fbd061c44e49d966821be27623376e3f16a8a3ebd371f","size":2361,"filename":"te09bIALahNazDua57TEibeM7CatIkOAT8t-qu_Kdro=.pem","location":"security-state-staging/intermediates/e430be6f-1a38-4cff-9a26-75b9c1b40411.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"te09bIALahNazDua57TEibeM7CatIkOAT8t+qu/Kdro=","crlite_enrolled":true,"id":"c405cfcb-b5a3-404e-8080-a25fac8bd624","last_modified":1601517448004},{"schema":1601376705563,"derHash":"WS4aLwo0KEsOJvy0/tIq+FmEju6IIq22G0LatHov/cI=","subject":"CN=KPN PKIoverheid Server CA 2020,O=KPN B.V.,C=NL","subjectDN":"MEkxCzAJBgNVBAYTAk5MMREwDwYDVQQKDAhLUE4gQi5WLjEnMCUGA1UEAwweS1BOIFBLSW92ZXJoZWlkIFNlcnZlciBDQSAyMDIw","whitelist":false,"attachment":{"hash":"d6c29637397d41ba732890b7381061d5aa7ce2b45a6658ec8cd3e1578ec36521","size":2463,"filename":"Yao-RgzIlYNhXc65ch9IpKzSRFUSiL01Et8c6sN4XLU=.pem","loca
tion":"security-state-staging/intermediates/8f344132-b3c2-493d-9fdf-f15cdbe23305.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Yao+RgzIlYNhXc65ch9IpKzSRFUSiL01Et8c6sN4XLU=","crlite_enrolled":true,"id":"d48b6ae2-446b-453a-8cc2-98b0a8e19be2","last_modified":1601517447991},{"schema":1601376701147,"derHash":"YDiLdz0z6RQWSGE/NrkUnwFaEUN4us8+NpSGT/2kJuw=","subject":"CN=HydrantID EV SSL CA G2,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMTAwLgYDVQQKDCdIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHzAdBgNVBAMMFkh5ZHJhbnRJRCBFViBTU0wgQ0EgRzI=","whitelist":false,"attachment":{"hash":"ba2cc602bd31081e17f7745ac462854773e79726958ff1b8a553cc7ecaba9db2","size":2389,"filename":"FpAps1LWs_UTm3xApHYkNccnnZX-7Wc_v8V0t70p6rg=.pem","location":"security-state-staging/intermediates/8c73b0d9-e8cd-4f65-9003-94df3b81af5d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FpAps1LWs/UTm3xApHYkNccnnZX+7Wc/v8V0t70p6rg=","crlite_enrolled":true,"id":"0541e7
38-c47e-45c8-a4f1-9494790fa98e","last_modified":1601517447980},{"schema":1601376699741,"derHash":"a0+d4TZ4hGcw1Q6RSgjnvpt0LKOgp9U5M2eDC5Om9VM=","subject":"CN=Valid Certificadora Digital SSL OV CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGgxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgT1YgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"8b796428cc5e4733630431ccd7284dbe8bae53efc39384f0fccbbf1b490e4d49","size":1788,"filename":"OOlpcVGqLfZfl2rK7MdW2Ff6TMhVD-PwRf3XtFUUtLw=.pem","location":"security-state-staging/intermediates/970c219c-4540-4fd6-96a0-5a1b30eed570.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OOlpcVGqLfZfl2rK7MdW2Ff6TMhVD+PwRf3XtFUUtLw=","crlite_enrolled":true,"id":"1a842e90-819c-4e3f-989b-ff36631ffdd8","last_modified":1601517447967},{"schema":1601376702562,"derHash":"Euom9u7v7HarhZJUVAOriFFbAOJ12YiHE0B6hvxcf9c=","subject":"CN=e-Szigno Qualified Organization CA 2017,
O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGDMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xFzAVBgNVBGEMDlZBVEhVLTIzNTg0NDk3MTAwLgYDVQQDDCdlLVN6aWdubyBRdWFsaWZpZWQgT3JnYW5pemF0aW9uIENBIDIwMTc=","whitelist":false,"attachment":{"hash":"2dcc501b643fe8ac38e3b36c6e87ffbb458e7d031117857c3d81511ee2eadfd8","size":1687,"filename":"60e2cMobrxpGA71ke0o4H5luzpBPZvklmqnePPA8jxs=.pem","location":"security-state-staging/intermediates/77e2b395-5a50-4800-954e-b7b8417fdc14.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"60e2cMobrxpGA71ke0o4H5luzpBPZvklmqnePPA8jxs=","crlite_enrolled":false,"id":"0b5e8fe1-4816-49b7-95bb-58d0f7ab520b","last_modified":1601517447955},{"schema":1601376698310,"derHash":"yKYQupQXdw0sAt4ivKjFakKK916ONU76NsVoIh3bfPw=","subject":"CN=WISeKey CertifyID SSL GB CA 2,O=WISeKey,C=CH","subjectDN":"MEcxCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSYwJAYDVQQDEx1XSVNlS2V5IENlcnRpZnlJRCBTU0wgR0IgQ0EgMg==","whitelist":false,"attachment":{"hash":"25f18c
47254a897f57257e91e33dccd040b88a2d2805589a22993da2900db84f","size":1699,"filename":"ktJRzJxhVE71wdby3vum5K-dgm6QylD4z-l9CBGOUQU=.pem","location":"security-state-staging/intermediates/b23e58a4-ba88-4c87-a828-1c8dc6d99e89.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ktJRzJxhVE71wdby3vum5K+dgm6QylD4z+l9CBGOUQU=","crlite_enrolled":true,"id":"3c319d1b-2657-423e-bbda-6ae5b1cb7599","last_modified":1601517447943},{"schema":1601376696895,"derHash":"FjzS/K0NaofI2vzgVvWU87U7kXwPkl1A2SJY6id/xPQ=","subject":"CN=QuoVadis Qualified Web ICA G1,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MHAxCzAJBgNVBAYTAk5MMRcwFQYDVQRhDA5OVFJOTC0zMDIzNzQ1OTEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xJjAkBgNVBAMMHVF1b1ZhZGlzIFF1YWxpZmllZCBXZWIgSUNBIEcx","whitelist":false,"attachment":{"hash":"d4292d809a630e5b57cdc50d9205799bd35a8b3a0c8cf33366d00d5e3e8cdf78","size":2499,"filename":"EWJY2DWEXe27fystTVa-0cHUmGdi6igRAeyxOTlgFDY=.pem","location":"security-state-staging/intermediates/f2c956b5-ac64-4fb1-ba98-
32776090134e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EWJY2DWEXe27fystTVa+0cHUmGdi6igRAeyxOTlgFDY=","crlite_enrolled":true,"id":"5281f41c-c9a7-4ac3-92ec-73db0e1bca22","last_modified":1601517447931},{"schema":1601376691138,"derHash":"yhTPmzCboDK7IZEMGu2uTSn+Bla0+L/6I8vpTUMcBnQ=","subject":"CN=Entrust Certification Authority - DE QWAC1,O=Entrust Datacard Deutschland GmbH,C=DE","subjectDN":"MIGIMTMwMQYDVQQDDCpFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gREUgUVdBQzExGDAWBgNVBGEMD1ZBVERFLTExOTI2NDMxNjEqMCgGA1UECgwhRW50cnVzdCBEYXRhY2FyZCBEZXV0c2NobGFuZCBHbWJIMQswCQYDVQQGEwJERQ==","whitelist":false,"attachment":{"hash":"4e133243cde83dcbe732252fbf43b8518690328d9c29c7647170c786d537e396","size":1792,"filename":"ZWhmaUZRaiEz-pmpHFYrrwb8L7sV4g8Lss57AOkaaLg=.pem","location":"security-state-staging/intermediates/bc1603cf-b495-4c30-be21-9c90c1fc4057.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZWhmaUZRaiEz+pmpHFYrrwb8L7sV4g8Lss57AOkaaLg=","crlite_enrolled":true,"id":"7a54
c01d-7d1f-4f82-8016-dfab02e81156","last_modified":1601517447907},{"schema":1601376694051,"derHash":"Kyz67KvyJm/U+2UF8zQrklFOvm+nwIy2y9SYj2r9F70=","subject":"SERIALNUMBER=ZZZZZZB9,CN=Siemens Issuing CA Internet Server 2017,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGnMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQjkxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMTAwLgYDVQQDDCdTaWVtZW5zIElzc3VpbmcgQ0EgSW50ZXJuZXQgU2VydmVyIDIwMTc=","whitelist":false,"attachment":{"hash":"399b1d081c0af091e4829f3801f90b9e266db1e4e3c5d6a03e438d33ecc67c14","size":2788,"filename":"f4p5PJI5fILNPQJUbuMdNzd-JMnwHZgjMi4ZjRUXTTk=.pem","location":"security-state-staging/intermediates/ed3be1ec-27c5-4877-a576-a88953808e0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"f4p5PJI5fILNPQJUbuMdNzd+JMnwHZgjMi4ZjRUXTTk=","crlite_enrolled":true,"id":"b5744a09-248a-49f5-a2f4-743d2e1c013d","last_modified":1601517447896},{"sch
ema":1601376695464,"derHash":"J47PIR4lGOndmROvxYPusxJ8gYS8vu2q171k6J6MQxA=","subject":"CN=QuoVadis Grid ICA G2,O=QuoVadis Limited,C=BM","subjectDN":"MEcxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR0wGwYDVQQDExRRdW9WYWRpcyBHcmlkIElDQSBHMg==","whitelist":false,"attachment":{"hash":"8e15c43f71096a592c3d5819db25f4547bb4ef4f8232293578abdf314d149392","size":2353,"filename":"5rlUfVlXaS82HCd6DZI7w8rIamphHCdjnXNpXREZynQ=.pem","location":"security-state-staging/intermediates/1aa7522d-26fc-4dab-a48f-37ed0f57c916.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5rlUfVlXaS82HCd6DZI7w8rIamphHCdjnXNpXREZynQ=","crlite_enrolled":true,"id":"cffe3216-3de3-4c2c-ac7b-6674695cb014","last_modified":1601517447884},{"schema":1601376689641,"derHash":"vLwYxGO2HzoDOxDHSXTtiiwyivzWejONmHFQajUVQZ8=","subject":"CN=e-Szigno Class3 SSL CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTc
xJDAiBgNVBAMMG2UtU3ppZ25vIENsYXNzMyBTU0wgQ0EgMjAxNw==","whitelist":false,"attachment":{"hash":"141f708e3e75831bbe1ea4307dbbb1564e45c53708e07ce12ace8a2c364453d4","size":1670,"filename":"69Duo3nmlQnUEvqzlU27qTDaDY9K1yN0wfdopIs9Y7s=.pem","location":"security-state-staging/intermediates/713a5d0b-40ac-4d69-8093-93d4bd2e61ab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"69Duo3nmlQnUEvqzlU27qTDaDY9K1yN0wfdopIs9Y7s=","crlite_enrolled":true,"id":"20f1bea5-b08a-4583-bdc2-e4d66e4dbc30","last_modified":1601517447872},{"schema":1601376685072,"derHash":"rXtYw8XZWGvltieZwnksQRHJhSqW97BgciEmVxOVfhw=","subject":"CN=SHECA OV Secure Server CA,O=Shanghai Electronic Certificate Authority Center Co.\\, Ltd.,C=CN","subjectDN":"MHYxCzAJBgNVBAYTAkNOMUMwQQYDVQQKEzpTaGFuZ2hhaSBFbGVjdHJvbmljIENlcnRpZmljYXRlIEF1dGhvcml0eSBDZW50ZXIgQ28uLCBMdGQuMSIwIAYDVQQDExlTSEVDQSBPViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"64ac68b2f5fcfe1eb5b26d7d052a52af0101c298fc359ab1870916a82601f563","size
":1808,"filename":"GvyQK0TA2Qh-B1rvOMI28XPmBiJD59lQrwz_N-iQO_U=.pem","location":"security-state-staging/intermediates/53d0ff76-6315-493d-b9a5-6b2d1230a9f9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GvyQK0TA2Qh+B1rvOMI28XPmBiJD59lQrwz/N+iQO/U=","crlite_enrolled":true,"id":"fec31040-5c17-4c95-895a-afaebcb0a054","last_modified":1601517447861},{"schema":1601376692642,"derHash":"tvZVm7zgosyR5Qe11zGeMkh+2uKKBjvHO2QF5sRGZbY=","subject":"CN=QuoVadis Enterprise Trust CA 2 G3,O=QuoVadis Limited,C=BM","subjectDN":"MFQxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSowKAYDVQQDDCFRdW9WYWRpcyBFbnRlcnByaXNlIFRydXN0IENBIDIgRzM=","whitelist":false,"attachment":{"hash":"0e8105a00963a2942951dacf763351b5c4f4fcffe32ab691c090848452d6b285","size":2377,"filename":"U_l9o-Lg2NOgB-7MLJUzZzbVrqatI_likIE44Ciah6M=.pem","location":"security-state-staging/intermediates/e36cd675-51d4-45ae-9be5-01d1ee3cb3c6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U/l9o+Lg2NOgB+7MLJUzZzbVrqatI/likIE
44Ciah6M=","crlite_enrolled":false,"id":"14f0f77b-ba93-4761-a2d2-71f0ab726c4c","last_modified":1601517447849},{"schema":1601376703987,"derHash":"J1vwBG4CcBeLE7Z+TbFQoQGXy3H5oGH602s9dmOf4YY=","subject":"CN=Trustwave Global ECDSA P-256 Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGcMUUwQwYDVQQDEzxUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMjU2IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EsIExldmVsIDExITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjEQMA4GA1UEBxMHQ2hpY2FnbzERMA8GA1UECBMISWxsaW5vaXMxCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"b39b1eb52f8d651482f3d14bd9a033de3982f3cc3fa825ba761d2fefa3a11981","size":1325,"filename":"YzpgcYxSKDnEVZ3T3h2obh9WsI9ICItWbAqh4SyCprA=.pem","location":"security-state-staging/intermediates/2c77b828-79f7-4649-86b4-c67b7672d80c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YzpgcYxSKDnEVZ3T3h2obh9WsI9ICItWbAqh4SyCprA=","crlite_enrolled":true,"id":"32afcb9b-abe9-408d-b53f-79bb1fdee4cf","last_modi
fied":1601517447837},{"schema":1601376687921,"derHash":"am8voTstnbu0CYAgAtM3BnJ2CiF42bjVaU1mBHQjH6Q=","subject":"CN=e-Szigno Pseudonymous CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHkxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJjAkBgNVBAMMHWUtU3ppZ25vIFBzZXVkb255bW91cyBDQSAyMDE3","whitelist":false,"attachment":{"hash":"4a22ba90a733131c2581c1d0dd2fbb9a8df38f518f2e5ba6ee0d10f4b3169c24","size":1670,"filename":"vqerAqvFBz-pP0lY3LKc96jOLcWu__imbw0SS3qBch8=.pem","location":"security-state-staging/intermediates/2334d610-446d-4e2b-baa4-aea8a7184032.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vqerAqvFBz+pP0lY3LKc96jOLcWu//imbw0SS3qBch8=","crlite_enrolled":false,"id":"ac246f90-eed2-4d87-83c3-1716f637a9e2","last_modified":1601517447824},{"schema":1601376682271,"derHash":"hIwDq2R9W9fg0MQ8C11nTMmJP4NquGOvjz8ThLVE2DM=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - INFRAESTRUCTURA,OU=Security Serv
ices,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGNMQswCQYDVQQGEwJFUzEeMBwGA1UECgwVRmlybWFwcm9mZXNpb25hbCBTLkEuMRowGAYDVQQLDBFTZWN1cml0eSBTZXJ2aWNlczESMBAGA1UEBRMJQTYyNjM0MDY4MS4wLAYDVQQDDCVBQyBGaXJtYXByb2Zlc2lvbmFsIC0gSU5GUkFFU1RSVUNUVVJB","whitelist":false,"attachment":{"hash":"caf1e07303de77d2971983851eb6cdc8b1662168dab0ef7c3dc3df46b70b3ec3","size":2300,"filename":"bB8VW561_UmK2rypmzhiK744upv6JxAcWmqJ9U-BKSI=.pem","location":"security-state-staging/intermediates/01da7aaa-a363-4749-9396-bfdd094350f9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bB8VW561/UmK2rypmzhiK744upv6JxAcWmqJ9U+BKSI=","crlite_enrolled":true,"id":"629163cc-e2d2-49d2-9179-b5f4a91ddbd5","last_modified":1601517447801},{"schema":1601376679409,"derHash":"ozAX2d9JTAnVhwkQdAOu5GG5Rh6BujlcKMNmk8J9GYY=","subject":"CN=GlobalSign GCC R3 UK EV QWAC CA 2020,O=GMO GlobalSign Ltd,C=GB","subjectDN":"MFkxCzAJBgNVBAYTAkdCMRswGQYDVQQKExJHTU8gR2xvYmFsU2lnbiBMdGQxLTArBgNVBAMTJEdsb2JhbFNpZ24gR0NDIFIzIFVLIEVWIFFXQUMgQ0EgM
jAyMA==","whitelist":false,"attachment":{"hash":"ef3f87aa1971aaebb3accc4f6b43e518068a070c3df5324fafc49bd6faea510d","size":2040,"filename":"_cLNIs90Pu4zrpnBuJdA-wTl2BrxEVUjup-MFOMyr1g=.pem","location":"security-state-staging/intermediates/7413dbb2-a053-4d05-8c07-e8013d4954f2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/cLNIs90Pu4zrpnBuJdA+wTl2BrxEVUjup+MFOMyr1g=","crlite_enrolled":false,"id":"49bc5d61-3d39-432b-8401-09f5cf6fe8fb","last_modified":1601517447789},{"schema":1601376680877,"derHash":"FamHYevgEVVNo6RtIGsIEssutproeqoRpt1MuE7VFCo=","subject":"CN=Microsoft Azure TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMg==","whitelist":false,"attachment":{"hash":"b94f365e9c87f17f0cce2845177df14966cfe660eb761de3a71b860db6a98fd9","size":2121,"filename":"zAwfx2iFcQ5vMOCc9vt-MXLdLl08EquNsOWgDF0hOw8=.pem","location":"security-state-staging/intermed
iates/24659b31-0ac7-4f82-a6b2-81b56170c56c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zAwfx2iFcQ5vMOCc9vt+MXLdLl08EquNsOWgDF0hOw8=","crlite_enrolled":true,"id":"a3070eea-daf1-4198-a69d-4f1b513e2e69","last_modified":1601517447777},{"schema":1601376677870,"derHash":"1KWUHHFB7RlJoMbOndRaCrlNwzeQLrChIJhSc47r6FQ=","subject":"CN=GlobalSign GCC R3 EV QWAC CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIEdDQyBSMyBFViBRV0FDIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"9a306430e243544a1c823baa60388aa1b7c197ccafd79a5fd9847056d91f6d8b","size":2032,"filename":"6Vipkd7oFTwhj_Z54b71vjmwq0aEJc6KkharcmzGaV4=.pem","location":"security-state-staging/intermediates/078357e9-d9aa-4223-9fe2-9322058e368a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6Vipkd7oFTwhj/Z54b71vjmwq0aEJc6KkharcmzGaV4=","crlite_enrolled":false,"id":"7e12f161-4f28-4ab5-b22b-2c4ce8de8d3d","last_modified":1601517447766},{"
schema":1601376669443,"derHash":"ZZt6UYxsnrGKoes1rrp6AkeBe4mMH6GED5fSh32aIOQ=","subject":"CN=JPRS Domain Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"19f63552805d608f671589717902feefe03afc5da94e20c555f68ef484a23b46","size":1772,"filename":"n1ufb8l1_ENW_uOKNKgHIeBe_NgVI39f0IzwWmCVHvE=.pem","location":"security-state-staging/intermediates/47eb68ae-22f7-4ab1-af83-1feca0168e32.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n1ufb8l1/ENW/uOKNKgHIeBe/NgVI39f0IzwWmCVHvE=","crlite_enrolled":true,"id":"7fae8ab0-1f93-4bb4-ad9e-d35322d05bb4","last_modified":1601517447754},{"schema":1601376672283,"derHash":"diU4Q5UJxBHEN9PFZ1Y+E3hnEoH8ShRkrdAxhwhDZ24=","subject":"CN=GlobalSign GCC R3 DV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQ
KExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIEdDQyBSMyBEViBUTFMgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"a57c3388263edee7694a304c5fb1c3c28046d3d7c1493d3ddf93c385aaf9b3ad","size":1687,"filename":"Sc7wL4FfOw8ued5w3JOSzu5MzB471PfqdyN4hnMYbX4=.pem","location":"security-state-staging/intermediates/0731bf19-eea4-42f6-9ac8-48a2b2d155aa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Sc7wL4FfOw8ued5w3JOSzu5MzB471PfqdyN4hnMYbX4=","crlite_enrolled":true,"id":"59416cc7-fedb-4bdf-ae06-52bfcce27e43","last_modified":1601517447731},{"schema":1601376675098,"derHash":"Z4LG6a2/khbiaDBtRjM/vGdL3t+GtnvndweeLA42iI4=","subject":"CN=Trustwave Global Domain Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGOMTcwNQYDVQQDEy5UcnVzdHdhdmUgR2xvYmFsIERvbWFpbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{
"hash":"a1aae690e4bc653bc8dd049d0014c8bdf294c1327ae51c6f40d11e8b728cdee3","size":2499,"filename":"N8k0xQNnFdJBZpSXQ6W9OldaDSJ59X-kFQNRrNSN8Cw=.pem","location":"security-state-staging/intermediates/bbb80e65-6dd1-4c6a-86dc-ed0eb42c9484.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N8k0xQNnFdJBZpSXQ6W9OldaDSJ59X+kFQNRrNSN8Cw=","crlite_enrolled":false,"id":"f70ebe3d-e7d1-4205-bda8-448b578f4005","last_modified":1601517447708},{"schema":1601376683642,"derHash":"/PJvvBsqJadqtOqSssvvNn4BMQkcgC2kmJj3iuVLMPg=","subject":"CN=Valid Certificadora Digital SSL DV CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGgxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgRFYgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"551d256b9e4988053973e8535709a6276d327de7d3ea6dd215e8c97deef2c69f","size":1768,"filename":"2UPUODmQxMZsvFIsK7JgdFSPY-kZ_qKP-7aXPh1_bx8=.pem","location":"security-state-staging/intermediates/
fde06ce8-4602-4d76-892b-b6cf8d5e7df2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2UPUODmQxMZsvFIsK7JgdFSPY+kZ/qKP+7aXPh1/bx8=","crlite_enrolled":true,"id":"c14d8dbc-33da-445a-9bf1-c590049e77e7","last_modified":1601517447696},{"schema":1601376665083,"derHash":"EDLGAB7WZKDNNDsTi8toYOIREBHD1fBlQPW+QRR4EqU=","subject":"CN=Legacy Technologies Intermediate,O=Legacy Technologies GmbH,C=DE","subjectDN":"MFsxCzAJBgNVBAYTAkRFMSEwHwYDVQQKExhMZWdhY3kgVGVjaG5vbG9naWVzIEdtYkgxKTAnBgNVBAMTIExlZ2FjeSBUZWNobm9sb2dpZXMgSW50ZXJtZWRpYXRl","whitelist":false,"attachment":{"hash":"a9f261d0ad4e87bacd12e03d772b19c478c501880901e13afa12424a3fa0819b","size":1906,"filename":"1IN_wrqE9VVL4qRI4B5j8xzAQgZ1Wap_tLlGGVYhcEc=.pem","location":"security-state-staging/intermediates/8b44d61d-b858-43fa-b426-fbbbc968b95d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1IN/wrqE9VVL4qRI4B5j8xzAQgZ1Wap/tLlGGVYhcEc=","crlite_enrolled":false,"id":"e80bbded-a765-4025-b5d2-e47ce2297737","last_modified":16015174
47684},{"schema":1601376676513,"derHash":"KXW6tR0A2GLQ4W7t74MGp1nGXNS58A2vUOzfy07DluQ=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDY=","whitelist":false,"attachment":{"hash":"913a6555d1accfb6fad27f0850000c3dead37ef7c0c8683ab4771d4154dafae2","size":1329,"filename":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f_fOuKrsNiaSdA=.pem","location":"security-state-staging/intermediates/7138d666-f219-4eca-9b68-3b6dbcfe02b5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f/fOuKrsNiaSdA=","crlite_enrolled":false,"id":"8b0c2567-a21b-4543-a7b7-cafd2a3b2559","last_modified":1601517447666},{"schema":1601376663499,"derHash":"h9QhabJpNVHKIFzPF/BvbmZR9yGM1tJmB79bpN0vJvI=","subject":"CN=Trustwave Global ECDSA P-384 Organization Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US
","subjectDN":"MIGgMUkwRwYDVQQDE0BUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMzg0IE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"8cd0dbed89841d6b6854301f7eecbbdcd40ac73d8c8347c1ea8a577a05c10603","size":1410,"filename":"91i1mhKwhcz0SKoJ9CzM_9ohVagG6cKG9Z_i4Ts1FFk=.pem","location":"security-state-staging/intermediates/9aa01a62-0930-4473-93bc-42f043cb480f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"91i1mhKwhcz0SKoJ9CzM/9ohVagG6cKG9Z/i4Ts1FFk=","crlite_enrolled":false,"id":"a65d784a-aa65-4997-b67c-6e62f264ae5b","last_modified":1601517447619},{"schema":1601376660625,"derHash":"BMGHHGhgdRU4n6Owz7g9vmpK8F6MgOdFcClp8kBgbjY=","subject":"CN=JPRS Organization Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQU
lMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"22b4bbcfbe3f75b06e7578a6a45c84da9c0262d68c36a8114773ff9a455d842b","size":1788,"filename":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A-XzOekYtqEbM=.pem","location":"security-state-staging/intermediates/1d629e89-02d9-4ab4-bff8-d297d4dae791.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A+XzOekYtqEbM=","crlite_enrolled":true,"id":"c5aa18ff-f49e-44c8-9396-c03197aa910d","last_modified":1601517447603},{"schema":1601376656232,"derHash":"Ek6q8m9XDE+02J9dYQePFbiFNF/K8MV/NHfYxjtasm8=","subject":"CN=Actalis Extended Validation Server CA G3,O=Actalis S.p.A.,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGGMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEXMBUGA1UECgwOQWN0YWxpcyBTLnAuQS4xMTAvBgNVBAMMKEFjdGFsaXMgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZXJ2ZXIgQ0EgRzM=","whitelist":false,"attachment":{"hash":"332f65bf2214e30be6f0940dc3bde167397bf14fc22761
5cd42ca92857dd83bf","size":2641,"filename":"Qit8ertDRalW2_YZANpfGKsGuNxcSeZ5UXpPg8_gmpE=.pem","location":"security-state-staging/intermediates/fd033e38-cc55-468e-af90-2a082b309e20.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Qit8ertDRalW2/YZANpfGKsGuNxcSeZ5UXpPg8/gmpE=","crlite_enrolled":true,"id":"a99821b6-4960-494c-8f67-232566a4edc4","last_modified":1601517447590},{"schema":1601376657738,"derHash":"T4OELx8Eqx4E1NjnUWZvyoLlGRyvwkBiv9H+d8AspLQ=","subject":"CN=e-Szigno Class3 CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHMxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxIDAeBgNVBAMMF2UtU3ppZ25vIENsYXNzMyBDQSAyMDE3","whitelist":false,"attachment":{"hash":"71132024dc6f9eb4be8dbf1a0131b491fae4efd3d711ad58c399ed1ebdd355ef","size":1662,"filename":"X4MOqhXQM4obftW5dgADxiIIIaZwoNHvuYhRJq7eVe0=.pem","location":"security-state-staging/intermediates/c0d8ef6e-268f-48b3-a7fc-780d0dc7ea0e.pem","mimetype":"application
/x-pem-file"},"pubKeyHash":"X4MOqhXQM4obftW5dgADxiIIIaZwoNHvuYhRJq7eVe0=","crlite_enrolled":false,"id":"77f03aac-ef84-4ca4-960c-68a37582c545","last_modified":1601517447577},{"schema":1601376659170,"derHash":"gpj8QnBMTtd0tNsxBSkmC1JKkHUlKh0Ks44G8bmoNJk=","subject":"CN=CertCloud RSA TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"MEoxCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMR0wGwYDVQQDExRDZXJ0Q2xvdWQgUlNBIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"59bb133020146d20f0d963a09c0520755e8a49c60982dbc377b4072ee287be19","size":2073,"filename":"Wz3-4Wr1VbAmx0vpewGzhrRMM8dT5kZ8_PHc1S6WqYs=.pem","location":"security-state-staging/intermediates/19ad562b-8c2b-49a4-a53c-f8979d651b08.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wz3+4Wr1VbAmx0vpewGzhrRMM8dT5kZ8/PHc1S6WqYs=","crlite_enrolled":false,"id":"58c4fe43-8482-4fd9-a504-3f27e47b56b9","last_modified":1601517447564},{"schema":1601376653303,"derHash":"EcaXh4cyBW3hfB2hNOnSttI88d6Vs/sKTRilF6tjIwo=","subject":"CN
=GTS CA 2A1,O=Google Trust Services LLC,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMkEx","whitelist":false,"attachment":{"hash":"66c35c0df4a124a571526bb96130bec322a6f7500769403d0c068726f5bf3b3c","size":1130,"filename":"dEp_Gc3Me0g2QnAtpHNcs692NFByRfF7Od0K2TuwG1Y=.pem","location":"security-state-staging/intermediates/34f43fc6-b91c-4d55-8672-e2ba29010b29.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dEp/Gc3Me0g2QnAtpHNcs692NFByRfF7Od0K2TuwG1Y=","crlite_enrolled":false,"id":"911255a8-a1cd-4edd-8e7e-f67154d601a8","last_modified":1601517447552},{"schema":1601376650517,"derHash":"pmUAegXv4YidZqQN7svGwaJx6RkAaBH9uNvX4GdSEtE=","subject":"CN=Siemens Issuing CA Internet Server 2020,O=Siemens,C=DE","subjectDN":"MFExMDAuBgNVBAMMJ1NpZW1lbnMgSXNzdWluZyBDQSBJbnRlcm5ldCBTZXJ2ZXIgMjAyMDEQMA4GA1UECgwHU2llbWVuczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"5ab8cb8a5146787aeb9025fd757a28e47c16893e2603c336459385a
83349e955","size":1719,"filename":"uOU9UZhtVd_opiG5DbxESujdJ9UY8BLJblR-MMq9FbY=.pem","location":"security-state-staging/intermediates/e9295752-30ef-4d70-8969-fd3831ca87ea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uOU9UZhtVd/opiG5DbxESujdJ9UY8BLJblR+MMq9FbY=","crlite_enrolled":true,"id":"0a08acd0-7a3a-448c-97ca-8b13d65bb4c7","last_modified":1601517447540},{"schema":1601376654768,"derHash":"QtyCf0b7XoXf+uR9PGkPUB7OJdV11ZelDY+Hj6Qq/Oo=","subject":"CN=e-Szigno Class2 CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHMxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxIDAeBgNVBAMMF2UtU3ppZ25vIENsYXNzMiBDQSAyMDE3","whitelist":false,"attachment":{"hash":"24e4936e9492f5245f32e7f9b60258d25f2a4c8e36002f26691cdf9f19bb94f3","size":1662,"filename":"3TGdI2jR-PvtWXO9N84WdfCRvr5nND75u1oGBVvPEl4=.pem","location":"security-state-staging/intermediates/e9ec773b-bb9c-4483-aaae-eed0307b52c6.pem","mimetype":"application/x-pem-fi
le"},"pubKeyHash":"3TGdI2jR+PvtWXO9N84WdfCRvr5nND75u1oGBVvPEl4=","crlite_enrolled":false,"id":"ad182baf-a664-418f-b166-97468c566a74","last_modified":1601517447528},{"schema":1601376649078,"derHash":"DTb2oimeniaPlK20nlfmcX1xPD9HuInEDc3Iz+lAy4A=","subject":"CN=Beame.io CA 1,O=Beame.io Ltd,C=IL","subjectDN":"MDwxCzAJBgNVBAYTAklMMRUwEwYDVQQKEwxCZWFtZS5pbyBMdGQxFjAUBgNVBAMTDUJlYW1lLmlvIENBIDE=","whitelist":false,"attachment":{"hash":"4b493757d7d299f8cc22b2765b16fa2d9bcc5aab6354a1aba37cad4f16162bf8","size":1727,"filename":"5fxJ002g5Il0LSaAZtiEC7BeF8z-cxBoMLk7llE9WeI=.pem","location":"security-state-staging/intermediates/c63ea01c-f085-4c51-8777-54e68bb926ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5fxJ002g5Il0LSaAZtiEC7BeF8z+cxBoMLk7llE9WeI=","crlite_enrolled":false,"id":"1376d433-c704-4fdf-b6e5-2eb14d36c683","last_modified":1601517447517},{"schema":1601376647571,"derHash":"9nwj73v3QSgJ22sd09RKCNN1TZnKumoT96BcckkInIk=","subject":"CN=QuoVadis Global SSL ICA G2,O=QuoVadis Limi
ted,C=BM","subjectDN":"ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMg==","whitelist":false,"attachment":{"hash":"f3d6221594115cd098f20f66a013d90aae3becd3c578a737a8e58a35230c208d","size":2016,"filename":"tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=.pem","location":"security-state-staging/intermediates/d16f438d-3c35-419c-9f98-50f522b13cd4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=","crlite_enrolled":true,"id":"ace44f60-2db3-4ac9-8da0-94488a7efde1","last_modified":1601517447505},{"schema":1601376662098,"derHash":"iwW2jMZZ5e0PyzjyyUL7/SAOby/5+F1jxplO9eCwJwE=","subject":"CN=ISRG Root X2,O=Internet Security Research Group,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgy","whitelist":false,"attachment":{"hash":"0a551cc852c7b0f054ae4c9e72acb7a6b4b1a8bab2d598b21063ab92fc36ecb6","size":1577,"filenam
e":"diGVwiVYbubAI3RW4hB9xU8e_CH2GnkuvVFZE8zmgzI=.pem","location":"security-state-staging/intermediates/632fc862-dd3b-4e49-9fcc-064d7ec3bed7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"diGVwiVYbubAI3RW4hB9xU8e/CH2GnkuvVFZE8zmgzI=","crlite_enrolled":false,"id":"6cf55332-76a4-433e-bf71-a3817eca7a01","last_modified":1601517447493},{"schema":1601376651889,"derHash":"8RRGn7gHeBM6H3Dk2DOO2rl91CzrjswByvtw1rh98R4=","subject":"CN=certSIGN Web CA,O=CERTSIGN SA,C=RO","subjectDN":"MFYxCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEYMBYGA1UEAxMPY2VydFNJR04gV2ViIENBMRcwFQYDVQRhEw5WQVRSTy0xODI4ODI1MA==","whitelist":false,"attachment":{"hash":"d637585d0fa1d3a2b6cea2a2ab6f2b7d30229bc1eb350aeb2b8cc2f529b5998a","size":2308,"filename":"G6NjfcFmFAa5DouUTqNGb3I5tG34kmES3evs_0ubJ68=.pem","location":"security-state-staging/intermediates/e722a8ed-95b5-4804-afae-33cfb565e784.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G6NjfcFmFAa5DouUTqNGb3I5tG34kmES3evs/0ubJ68=","crlite_enrolled":true
,"id":"bcbc78b3-6912-4320-9fcd-fdc468194871","last_modified":1601517447481},{"schema":1601376643176,"derHash":"l9QgA+EyVSlGCX8g75VfWxzVcKpDcteAAzpl775pdY0=","subject":"CN=GTS CA 1P5,O=Google Trust Services LLC,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMVA1","whitelist":false,"attachment":{"hash":"6d39d26fa45c2aea9f3ecfb72ba0887e152ffd6f6a6dc6e197c57cefd4030fa0","size":1983,"filename":"81Wf12bcLlFHQAfJluxnzZ6Frg-oJ9PWY_Wrwur8viQ=.pem","location":"security-state-staging/intermediates/680da5a2-5a45-499e-9fe7-ad8478a1e4b7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"81Wf12bcLlFHQAfJluxnzZ6Frg+oJ9PWY/Wrwur8viQ=","crlite_enrolled":true,"id":"0332f56b-8620-4d04-8c28-c92c27457a8d","last_modified":1601517447453},{"schema":1601376644621,"derHash":"zby+8W43I3cC+sxLVdOrkqF8+heDXhM3eqTSug/UegI=","subject":"CN=Cisco Meraki CA2,O=Cisco Systems\\, Inc.,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMRwwGgYDVQQKExNDaXNjbyBTeXN0Z
W1zLCBJbmMuMRkwFwYDVQQDExBDaXNjbyBNZXJha2kgQ0Ey","whitelist":false,"attachment":{"hash":"3e5a1329226826601bdcf297eb985c9089c7df20bac76d529770ff0dcdc2bd3e","size":1752,"filename":"UNvyYoiHE-TJr4GNRJRQQVYLfL7m_X0ULyrRNeeQaKE=.pem","location":"security-state-staging/intermediates/8cd77c9b-486e-4100-9c8d-97ad44a4562c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UNvyYoiHE+TJr4GNRJRQQVYLfL7m/X0ULyrRNeeQaKE=","crlite_enrolled":false,"id":"0ec526cd-a0ef-4c4a-8b3b-a754ccb19f72","last_modified":1601517447434},{"schema":1601376637469,"derHash":"X4hpRhXkxhaG4Qa4TDM4xnIMU19g029hKC7RXhl33UQ=","subject":"CN=DigiCert Cloud Services CA-1,O=DigiCert Inc,C=US","subjectDN":"MEsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJTAjBgNVBAMTHERpZ2lDZXJ0IENsb3VkIFNlcnZpY2VzIENBLTE=","whitelist":false,"attachment":{"hash":"bd47e7c223bc2e656a7455d83b5877cd3dbf66c20fcb9f464190df0a25d15bdb","size":1760,"filename":"UgpUVparimk8QCjtWQaUQ7EGrtrykc_L8N66EhFY3VE=.pem","location":"security-state-staging/in
termediates/c6186265-d36f-4c14-952e-e41d57172aba.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UgpUVparimk8QCjtWQaUQ7EGrtrykc/L8N66EhFY3VE=","crlite_enrolled":true,"id":"8c1bcef6-6009-4c63-9b0a-3c13dfdbc750","last_modified":1601517447421},{"schema":1601376641748,"derHash":"jJegCPfOIfdG6vsuOuBgleVX0omjEMgsbzwC2fch5fg=","subject":"CN=VR IDENT EV SSL CA 2018,OU=VR IDENT,O=Fiducia & GAD IT AG,C=DE","subjectDN":"MGAxCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMREwDwYDVQQLDAhWUiBJREVOVDEgMB4GA1UEAwwXVlIgSURFTlQgRVYgU1NMIENBIDIwMTg=","whitelist":false,"attachment":{"hash":"27785b9964ca41a7f924e4715e32d3827904bec2c860b8f2f76367447209d89d","size":2089,"filename":"WDFtLnObNhLxa9b3x6LeuoWAZeafyD6K2Il4Wi_HzF0=.pem","location":"security-state-staging/intermediates/f5ede2b0-fb12-43ce-bedd-eb7497d73176.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WDFtLnObNhLxa9b3x6LeuoWAZeafyD6K2Il4Wi/HzF0=","crlite_enrolled":true,"id":"da4a208a-302a-4e48-b4c4-e13b959e3b91","last_m
odified":1601517447407},{"schema":1601376636030,"derHash":"kn6b/A11wxRgcMPzr91KLBD3ZSiRJJl8xSz9EgnnY8s=","subject":"CN=JPRS Domain Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"f1fff265badcfcfaa0e9addfdc7577271845c1a6c9766600e36f19dc9bb90333","size":1780,"filename":"n1ufb8l1_ENW_uOKNKgHIeBe_NgVI39f0IzwWmCVHvE=.pem","location":"security-state-staging/intermediates/b3b041d6-10f4-47b8-9a9d-e23fc8550699.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n1ufb8l1/ENW/uOKNKgHIeBe/NgVI39f0IzwWmCVHvE=","crlite_enrolled":true,"id":"d6ebc2af-8b16-4c9e-a668-85bc3c6e5db3","last_modified":1601517447392},{"schema":1601376640357,"derHash":"a0O0wkOqLZlEDA8UvexSMe7GPoaq8jdspwAgKEWNxyY=","subject":"CN=HydrantID EV SSL ICA G1,O=HydrantID (Avalanche Cloud Corporation),C=US","sub
jectDN":"MGExCzAJBgNVBAYTAlVTMTAwLgYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxIDAeBgNVBAMTF0h5ZHJhbnRJRCBFViBTU0wgSUNBIEcx","whitelist":false,"attachment":{"hash":"b63de0fbdd8dbe519e4d6f674c13166625a717f8e6156297f07badf1c8b0d8fc","size":2438,"filename":"EnmchGPCp5YYVoSwFIxrS6A7RJUxstcXt8NlMXfA6Tw=.pem","location":"security-state-staging/intermediates/08efa28e-ac8e-4439-8571-25fa10e93a54.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EnmchGPCp5YYVoSwFIxrS6A7RJUxstcXt8NlMXfA6Tw=","crlite_enrolled":true,"id":"336fa754-0327-4934-8691-767db2f8c4e8","last_modified":1601517447374},{"schema":1601376634613,"derHash":"AD9x3EggIWV1/Fqs/jsa63b3Kupbjo/O/IC59RekphI=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDU=","whitelist":false,"attachment":{"hash":"312e807dea2263ef605990bfa0b57b238b64d9fea0
fc945e37f48f3e6246d576","size":1329,"filename":"k09MzmwiRPkPmkpgmUtprMk_uALSVedNLtfOBkCMvXE=.pem","location":"security-state-staging/intermediates/2f5049d0-8147-4c75-8788-37b8cc132687.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k09MzmwiRPkPmkpgmUtprMk/uALSVedNLtfOBkCMvXE=","crlite_enrolled":false,"id":"cac77e25-ef10-4186-8398-2e2c849f9861","last_modified":1601517447354},{"schema":1601376638894,"derHash":"bINDiPKg0GlJxj788w13eC4lqCUBNZOeVJYCFFQO6kU=","subject":"CN=Root CA - G3,O=Root Networks\\, LLC,C=US","subjectDN":"MEExCzAJBgNVBAYTAlVTMRswGQYDVQQKDBJSb290IE5ldHdvcmtzLCBMTEMxFTATBgNVBAMMDFJvb3QgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"7a25b4650cf78598d30bd2fd71f98a9514917410a9123cf8351a487e3ed9a093","size":1678,"filename":"ujBfMmfTX_3dCWQV89ZY2Tw4qhFf2vkDZrrqzCdlxfU=.pem","location":"security-state-staging/intermediates/a716f279-b6d3-4fb2-95c8-c4be3eb17af2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ujBfMmfTX/3dCWQV89ZY2Tw4qhFf2vkDZrrqzCdlxfU=",
"crlite_enrolled":true,"id":"027c9cd4-cf00-448e-94e8-dd1d17b4a715","last_modified":1601517447337},{"schema":1601376633198,"derHash":"sarhvNVV6KPR492o7ITnV8VSZVNEzj/uu6+Y6JXb7aw=","subject":"CN=QuoVadis Europe SSL CA G2,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFMxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEiMCAGA1UEAwwZUXVvVmFkaXMgRXVyb3BlIFNTTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"dfb31ebff112bccbef0ba90c29987f9962823acb59f69bd984351d9e2c7e22df","size":2381,"filename":"XOogr9_VItHwTOA_JogutdX4V06tVw9btHQLa2tR0_A=.pem","location":"security-state-staging/intermediates/a64232dc-7d88-4d93-8ab8-1406e19a3244.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XOogr9/VItHwTOA/JogutdX4V06tVw9btHQLa2tR0/A=","crlite_enrolled":true,"id":"86ca8809-c9be-449b-953e-f7162dbeee9d","last_modified":1601517447320},{"schema":1601376628816,"derHash":"BeQAXbDDgvO9ZrR3KekBFXdgG/b3sofppSztcQ0lg0Y=","subject":"CN=Microsoft RSA TLS CA 02,O=Microsoft Corporation,C=US",
"subjectDN":"ME8xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xIDAeBgNVBAMTF01pY3Jvc29mdCBSU0EgVExTIENBIDAy","whitelist":false,"attachment":{"hash":"b31f15756dd2424f4c72909e8e5489c3443c030299ab3270a47adebded78e565","size":1914,"filename":"1wMGTin0PoCN5O41h0-XIHXuzGRwDEa8ehHf7wSdSQE=.pem","location":"security-state-staging/intermediates/d2e5fdc3-84aa-4140-9187-817c95bd7ba2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1wMGTin0PoCN5O41h0+XIHXuzGRwDEa8ehHf7wSdSQE=","crlite_enrolled":true,"id":"0d0f8898-e508-48d6-9b66-e3b209767588","last_modified":1601517447304},{"schema":1601376627290,"derHash":"BN5Hqc3TCRz8Xvaqo7fUtT4TxNTcAjZPbAtAh0LsPHY=","subject":"CN=Valid Certificadora Digital AlphaSSL CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGoxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxNTAzBgNVBAMTLFZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBBbHBoYVNTTCBDQSAyMDE4","whitelist":false,"attachment":{"hash":"d9ce06bfe7f10679316c826ca701910ff
485eff604b066946a2f9397ac536aa7","size":1772,"filename":"sXlIJeJFOOvNqrgfAHM5544oX_ySPnrWUt8M7eFF0BM=.pem","location":"security-state-staging/intermediates/07ef1804-cfe6-4217-9420-629acd5754f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sXlIJeJFOOvNqrgfAHM5544oX/ySPnrWUt8M7eFF0BM=","crlite_enrolled":true,"id":"2f75750f-796d-48e1-87ec-0f623cba8354","last_modified":1601517447288},{"schema":1601376631782,"derHash":"aeLQbDDzZhZhZekdaNHO5cxHWEqAIn52ZmCGwBByQes=","subject":"CN=GlobalSign,OU=GlobalSign Root CA - R2,O=GlobalSign","subjectDN":"MEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFIyMRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu","whitelist":false,"attachment":{"hash":"a9f6d16a93aa62ba7dbf378a10c0719ad51755b8d8276a662013037d6fbe06d3","size":1353,"filename":"iie1VXtL7HzAMF-_PVPR9xzT80kQxdZeJ-zduCB3uj0=.pem","location":"security-state-staging/intermediates/359bf7c2-bdab-4656-a7f3-cdb3dc7672bd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iie1VXtL7HzAMF+/
PVPR9xzT80kQxdZeJ+zduCB3uj0=","crlite_enrolled":false,"id":"f3cb24be-3618-4b26-a4a6-1b25f3cf0023","last_modified":1601517447276},{"schema":1601376630285,"derHash":"CZg6JjLAM+uUScDr8h+bjUqZdcBvuOIPSlBC6eTMZBE=","subject":"CN=NII Open Domain CA - G5,O=National Institute of Informatics,C=JP","subjectDN":"MFsxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxIDAeBgNVBAMTF05JSSBPcGVuIERvbWFpbiBDQSAtIEc1","whitelist":false,"attachment":{"hash":"dffc20f5ea1b99f91d8665a18a15d299bddfa0b71cb6b19267a6efa7d6b7d6ed","size":12598,"filename":"aj-4mbqOOY7cgtDqWtgGaLG69EShl59AQocV--hJAk8=.pem","location":"security-state-staging/intermediates/f4c29470-a6fd-43c0-a33a-5ff5f52725f7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aj+4mbqOOY7cgtDqWtgGaLG69EShl59AQocV++hJAk8=","crlite_enrolled":true,"id":"d2f38b78-3b2b-479d-8f4c-a7f2f68fc57f","last_modified":1601517447261},{"schema":1601376624368,"derHash":"ffTT70V5j4xDhPxwK6UqRM571imLFBYo1Kurx2ePZGc=","subject":"CN=Micros
oft Azure TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNg==","whitelist":false,"attachment":{"hash":"8d704ee294bd149733993801e0cbad6deaa30f162b02e59509443d2f13b07b74","size":2653,"filename":"Wl8MFY-9zijGG8QgEHCAK5fhA-ydPZxaLQOFdiEPz3U=.pem","location":"security-state-staging/intermediates/cc459e2e-5a1b-46ee-a8fb-e27ec23c89e6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wl8MFY+9zijGG8QgEHCAK5fhA+ydPZxaLQOFdiEPz3U=","crlite_enrolled":true,"id":"79efde4e-0f38-47f1-818d-bc7ec34f652f","last_modified":1601517447248},{"schema":1601376622963,"derHash":"lJ1rS3YcoTStPnqFcRhvWA7oh/LGtWi1FA9BV/mNaN0=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDE=","whitelist":false,"attachmen
t":{"hash":"1a3bc0dfeb8f9e3f79809953a727d69dc11a315684b4cf57c35d226206502e31","size":1329,"filename":"OZOx9JJC3JsSDSjFX2iEA3_ED6gCha3L1ZrOeRNoyx8=.pem","location":"security-state-staging/intermediates/82ad1928-1b21-4c0d-ba0a-c3f04d6691cf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OZOx9JJC3JsSDSjFX2iEA3/ED6gCha3L1ZrOeRNoyx8=","crlite_enrolled":true,"id":"9bc8e3bb-0a99-4d29-a7f9-6256977d6e41","last_modified":1601517447236},{"schema":1601376625746,"derHash":"vOcJE1XSQXo3+M/irI8XwnSIiLoO6pAAD8mA7PwtBB8=","subject":"CN=GlobalSign Atlas R6 EV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFUxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSswKQYDVQQDEyJHbG9iYWxTaWduIEF0bGFzIFI2IEVWIFRMUyBDQSAyMDIw","whitelist":false,"attachment":{"hash":"7a27c45b53bfd5690bb01873eeb250e11a9b84a706cbbd33be1cafcbad5ed9a5","size":2402,"filename":"P7xnWSLQVg6f_MMaRe-f9TBAwDOlwdoyxweVGx8v2hY=.pem","location":"security-state-staging/intermediates/abbc51d6-58ed-461b-a517-c72a39e10eb4.pem","m
imetype":"application/x-pem-file"},"pubKeyHash":"P7xnWSLQVg6f/MMaRe+f9TBAwDOlwdoyxweVGx8v2hY=","crlite_enrolled":true,"id":"456d5875-ff1b-473b-bc56-e5be4f248b30","last_modified":1601517447225},{"schema":1601376620104,"derHash":"MCQkQ/aJWpRWDkjk3/cgU26vUWPLQvXod0AqveL4Ynw=","subject":"CN=QuoVadis Global SSL ICA G3,O=QuoVadis Limited,C=BM","subjectDN":"ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMw==","whitelist":false,"attachment":{"hash":"63f37d712386cb1b4ab3fb0368f861aeb7ba74ec9b9bc7ecdd247bcf94725693","size":2373,"filename":"KM3iZPSceB-hgYuNI-cSg4LRgTiUxCeGjrfXRQAY6Rs=.pem","location":"security-state-staging/intermediates/22bf873e-f19a-445b-a1d8-616b8f871405.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KM3iZPSceB+hgYuNI+cSg4LRgTiUxCeGjrfXRQAY6Rs=","crlite_enrolled":true,"id":"e101da6b-d1cb-4f14-badd-55bf7b2b98b3","last_modified":1601517447213},{"schema":1601376618691,"derHash":"jSXNlyKdv3A1a9pOs8xzQDHiTPAPr8/TL
cdutYQcfqg=","subject":"CN=GTS Root R2,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMg==","whitelist":false,"attachment":{"hash":"4d0fda0d78fd282ab5f1cf69e3b3e458120a33cf3e5fdeb14796f324a389d74e","size":1910,"filename":"Vfd95BwDeSQo-NUYxVEEIlvkOlWY2SalKK1lPhzOx78=.pem","location":"security-state-staging/intermediates/18d175d2-d289-4938-9ea9-830a54586520.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vfd95BwDeSQo+NUYxVEEIlvkOlWY2SalKK1lPhzOx78=","crlite_enrolled":false,"id":"9c5a86fd-acfb-44e6-a965-16bd0489fce0","last_modified":1601517447198},{"schema":1601376621544,"derHash":"YIG+5bDfGRrE4mWsD294mfB4uMifBgVa4Wavkd9w1uA=","subject":"CN=e-Szigno Qualified QCP CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHoxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJzAlBgNVBAMMHmUtU3ppZ25vIFF1YWxpZmllZCBRQ1AgQ0EgMjAxNw==",
"whitelist":false,"attachment":{"hash":"280a786ca35892c86124fb11c5e02f70f1bf6cd40daa1e6538e054942241cdaf","size":1674,"filename":"zohU4uap0ZYaGxznYnSZfimXMiL0fPpOwF3CBDSo608=.pem","location":"security-state-staging/intermediates/0b5259bf-1e93-47a7-90b3-dca802d1f439.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zohU4uap0ZYaGxznYnSZfimXMiL0fPpOwF3CBDSo608=","crlite_enrolled":false,"id":"00fa2c99-0c09-488d-8cc5-539354f0043a","last_modified":1601517447186},{"schema":1601376617148,"derHash":"RAs3QW8t6FLKOGFQ1hHsCvMd1Y2KJ/iCgVp+o+5oSO4=","subject":"CN=Bloomberg TLS CA,O=Bloomberg LP,C=US","subjectDN":"MD8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxCbG9vbWJlcmcgTFAxGTAXBgNVBAMTEEJsb29tYmVyZyBUTFMgQ0E=","whitelist":false,"attachment":{"hash":"e48dfa14c978c6bbeb5232c7e711afced2f56d20f367cd0a74a7100aac332138","size":1743,"filename":"wR5GLfX8HG7FhvZ7hnbmrGu1dPd6dkKlKYnCvd1A-v0=.pem","location":"security-state-staging/intermediates/ab934801-da9e-47a4-9ebd-e248835633fd.pem","mimetype":"application
/x-pem-file"},"pubKeyHash":"wR5GLfX8HG7FhvZ7hnbmrGu1dPd6dkKlKYnCvd1A+v0=","crlite_enrolled":false,"id":"14d2a1f9-84c0-4272-b5cc-bf8f1d0b1cef","last_modified":1601517447175},{"schema":1601376614329,"derHash":"ffgAB19SA8AXNk6BGVqayf8AxQfWSnD3N9jT6Ms/CEU=","subject":"CN=e-Szigno Qualified TLS CA 2018,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHoxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJzAlBgNVBAMMHmUtU3ppZ25vIFF1YWxpZmllZCBUTFMgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"df20fd29ecb80ea583b981311eed6c99114bffa8ab98b5265dc4c8efcc1897f0","size":1674,"filename":"qd9EIyfp7CEtbkxafeyYAuC_8wQBWqGZflkLznwnuyc=.pem","location":"security-state-staging/intermediates/b21a2837-5b65-44b6-92b7-fec471d70713.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qd9EIyfp7CEtbkxafeyYAuC/8wQBWqGZflkLznwnuyc=","crlite_enrolled":true,"id":"2f5d27a3-cb0f-4f6b-b6b1-20c198d58fc8","last_modified":1601517447163},{"schema":160137
6615736,"derHash":"BDerLsLCtIkClsE1A0sh2xRkNLgxfucDqoqpQ8XqUa4=","subject":"CN=Microsoft Azure TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMQ==","whitelist":false,"attachment":{"hash":"2777739491d74eeced727118790444484a83437e4e704c6697aa928b36a78bbb","size":2653,"filename":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=.pem","location":"security-state-staging/intermediates/0f03fd0a-27a3-4dc4-ae4b-cae63ccda207.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=","crlite_enrolled":true,"id":"9588f4b7-ef4c-454c-ae12-6fe792fd04fb","last_modified":1601517447151},{"schema":1601376612913,"derHash":"NJ36QFjF4mMSOzmK55VXPE4TE8g/5o+TVWzV6AMbPH0=","subject":"CN=GTS Root R4,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCB
SNA==","whitelist":false,"attachment":{"hash":"5f621c613a2dfb4502a29efcba11f0a010ef7954ea3464006115a9c300bdcdc1","size":764,"filename":"mEflZT5enoR1FuXLgYYGqnVEoZvmf9c2bVBpiOjYQ0c=.pem","location":"security-state-staging/intermediates/162ddfd3-2b0d-4442-bcce-7da7e8bf6407.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mEflZT5enoR1FuXLgYYGqnVEoZvmf9c2bVBpiOjYQ0c=","crlite_enrolled":false,"id":"9e098de2-8eff-4563-8498-48674d36fd03","last_modified":1601517447140},{"schema":1601376608575,"derHash":"LK77tV5w31qJhf6bwQ3VakDD3tqz2hUwopaCAVxbfGY=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDE=","whitelist":false,"attachment":{"hash":"a45e27eb4ce4e2624d46479d0ecf5a612e520e17ac29d9b405427a94f6798f65","size":1512,"filename":"OZOx9JJC3JsSDSjFX2iEA3_ED6gCha3L1ZrOeRNoyx8=.pem","location":"security-state-staging/int
ermediates/3712ec43-ab3a-42ad-b264-a74c80ef69e5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OZOx9JJC3JsSDSjFX2iEA3/ED6gCha3L1ZrOeRNoyx8=","crlite_enrolled":true,"id":"3c689452-ab89-4bf2-8422-175cc12405ef","last_modified":1601517447128},{"schema":1601376610110,"derHash":"iPwYvQcb4fvFP/vIAfA/WyxNqHu6DAmOK0gI8Z6rBf4=","subject":"CN=RNP ICPEdu OV SSL CA 2019,O=Rede Nacional de Ensino e Pesquisa - RNP,C=BR","subjectDN":"MGQxCzAJBgNVBAYTAkJSMTEwLwYDVQQKEyhSZWRlIE5hY2lvbmFsIGRlIEVuc2lubyBlIFBlc3F1aXNhIC0gUk5QMSIwIAYDVQQDExlSTlAgSUNQRWR1IE9WIFNTTCBDQSAyMDE5","whitelist":false,"attachment":{"hash":"292ae2e45b6a02ae65ded412e50c0abf3b623685bd49a8f6369bb4d5010c40d8","size":1784,"filename":"34rLDmx5N4tFlu_FTyuZjezXxhR4lhOmxmSZ9Pjypro=.pem","location":"security-state-staging/intermediates/2d768dc6-b376-4595-aa5f-511c0ca86bbc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"34rLDmx5N4tFlu/FTyuZjezXxhR4lhOmxmSZ9Pjypro=","crlite_enrolled":true,"id":"13b1b2af-0a3e-4a0e-bd66-ac0c556
9b5b2","last_modified":1601517447117},{"schema":1601376607092,"derHash":"l0uCB2FUzv9W7U21Yhhvc5SgL/OHqiBdY2eosI/3+qA=","subject":"CN=e-Szigno Online SSL CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJDAiBgNVBAMMG2UtU3ppZ25vIE9ubGluZSBTU0wgQ0EgMjAxNw==","whitelist":false,"attachment":{"hash":"0abdd69f4b3ccf85097142e285b47d52e0f91c59aa3e684dfa3c25bb3c8d6039","size":1666,"filename":"G_JwHP_ydSe7pufWcUyNckBrxBbnQ6Kmqw_OFPPiQI0=.pem","location":"security-state-staging/intermediates/0db470e8-a13c-4fce-ba60-4c8e912112f6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G/JwHP/ydSe7pufWcUyNckBrxBbnQ6Kmqw/OFPPiQI0=","crlite_enrolled":false,"id":"be3dd44c-e4c2-4dea-82b9-1119b2b6f158","last_modified":1601517447105},{"schema":1601376611528,"derHash":"FkjOSrG7ZcSFyyI2x2j6u4ZRR9QmkVuSr7yoHpsu47w=","subject":"CN=e-Szigno Qualified Pseudonymous CA 2017,O=Microsec Ltd.,L=Buda
pest,C=HU","subjectDN":"MIGDMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xFzAVBgNVBGEMDlZBVEhVLTIzNTg0NDk3MTAwLgYDVQQDDCdlLVN6aWdubyBRdWFsaWZpZWQgUHNldWRvbnltb3VzIENBIDIwMTc=","whitelist":false,"attachment":{"hash":"babeb483e7bc13a161427464ff4aa32b126458a9b7bd684609420f8d1a7cb6ab","size":1687,"filename":"9Mm86u4WwGKlrCcut3imyBIja3zt37WI7jdpaAucZOs=.pem","location":"security-state-staging/intermediates/544f8df8-fe6c-4936-b396-e58147817864.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9Mm86u4WwGKlrCcut3imyBIja3zt37WI7jdpaAucZOs=","crlite_enrolled":false,"id":"88241fa1-e1ea-449a-89fc-9125fa95445b","last_modified":1601517447093},{"schema":1601376605658,"derHash":"GgdSmos/AdIx360qvfcYmSALtlzX4DxZ+oInJTM1W3Q=","subject":"CN=R4,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSNA==","whitelist":false,"attachment":{"hash":"e7c443b15be49a4083c31378f2a1749ea59e73cd564b4d4e0465ea2d9d839146","size":1825
,"filename":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX-WPd5kPLQM=.pem","location":"security-state-staging/intermediates/7295ba60-db16-49ff-8ccd-589f3c2d0632.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX+WPd5kPLQM=","crlite_enrolled":false,"id":"9e2ed41b-4f49-45cf-b525-68dac3e4fc03","last_modified":1601517447080},{"schema":1601376602750,"derHash":"+2BghIRAqkWU/oEJdB76tAxWcysmxnw21tyUW7L+E88=","subject":"CN=Plex Devices High Assurance CA3,O=Plex\\, Inc.,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpQbGV4LCBJbmMuMSgwJgYDVQQDEx9QbGV4IERldmljZXMgSGlnaCBBc3N1cmFuY2UgQ0Ez","whitelist":false,"attachment":{"hash":"cc6eb0f3e51ae41188fd3477d2b097eb3bfd190c1e01766f9836d30c6d379aaa","size":1817,"filename":"7vFogPWQjRRrBULu9CTSZG05Zp5wI5psu-SVeew9nqo=.pem","location":"security-state-staging/intermediates/8a525834-15cd-4e6d-805f-40c255beee70.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7vFogPWQjRRrBULu9CTSZG05Zp5wI5psu+SVeew9nqo=","crlite_enro
lled":false,"id":"2aeb4971-751b-44b1-b195-c573c242c491","last_modified":1601517447057},{"schema":1601376595585,"derHash":"kfGc5QPJ/n/5WH2O++9zFarud9wtFFJhJkk7Stb+gB8=","subject":"CN=Trusted Root TLS CA SHA256 G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1UcnVzdGVkIFJvb3QgVExTIENBIFNIQTI1NiBHMw==","whitelist":false,"attachment":{"hash":"9e03d57a2b38ff0564d3f320d536aae856aa3db18618f722e03e7da8e2a0d9eb","size":1674,"filename":"hMdIk_Qh87wkhjuY3vWYC85yuCKrEfbi9b3j7xJNPec=.pem","location":"security-state-staging/intermediates/34bd21db-03ad-4d1f-8aac-923be9545dda.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hMdIk/Qh87wkhjuY3vWYC85yuCKrEfbi9b3j7xJNPec=","crlite_enrolled":false,"id":"cfd4ef1e-3a44-4b12-b34e-4223ff9c39b2","last_modified":1601517447046},{"schema":1601376599850,"derHash":"5vpISoWJQNEBl4VVRUqkZlMatsSrxK0rAAYmqqwNBPk=","subject":"CN=RapidSSL TLS DV RSA Mixed SHA256 2020 CA-1,O=DigiCert Inc,C=US","subjec
tDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKlJhcGlkU1NMIFRMUyBEViBSU0EgTWl4ZWQgU0hBMjU2IDIwMjAgQ0EtMQ==","whitelist":false,"attachment":{"hash":"e080ccfbdfc6374397f903976e83dea4fdecc00a0a36cd72f9c882ceff09e62a","size":1902,"filename":"48hXNwn3laJAzsrIBprOcewUb097BGNL7e-MVM7Rcis=.pem","location":"security-state-staging/intermediates/ec813aa3-890f-4aaf-af70-891b2f9ac694.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"48hXNwn3laJAzsrIBprOcewUb097BGNL7e+MVM7Rcis=","crlite_enrolled":true,"id":"b6bfa80e-3f0f-4690-b7d7-23d34186cfc8","last_modified":1601517447035},{"schema":1601376601295,"derHash":"02gLTj+I2x9bud3b+2v/MZx4Dj2fRO4k7BmVq0LWkU8=","subject":"CN=GIAG4x,O=Google Trust Services LLC,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMQ8wDQYDVQQDEwZHSUFHNHg=","whitelist":false,"attachment":{"hash":"7863677df584a77841650e5ad47e7ef8f7c42807c9d69969881133b275b19a50","size":1991,"filename":"AAGolo0N1iZa5uuvm02csZnkuZ
s8hvI-HRLhAHtNhqk=.pem","location":"security-state-staging/intermediates/201e7f79-691e-483a-a577-cb5954177a09.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AAGolo0N1iZa5uuvm02csZnkuZs8hvI+HRLhAHtNhqk=","crlite_enrolled":true,"id":"06dbcd12-25fc-4a32-8d4c-764f1fa66c80","last_modified":1601517447023},{"schema":1601376594131,"derHash":"2sqgn/rY9m7bbtaXB6gnyeRMH5fEjwF5SF8gbXB7Pis=","subject":"CN=NII Open Domain CA - G5,O=National Institute of Informatics,C=JP","subjectDN":"MFsxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxIDAeBgNVBAMTF05JSSBPcGVuIERvbWFpbiBDQSAtIEc1","whitelist":false,"attachment":{"hash":"ef925783f986610c821619c78a724b477a9c2b4492f84e6446635c18799dc2f9","size":12623,"filename":"aj-4mbqOOY7cgtDqWtgGaLG69EShl59AQocV--hJAk8=.pem","location":"security-state-staging/intermediates/8c3bcdfd-c7d2-4fdd-9211-dbb84bb4eb1a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aj+4mbqOOY7cgtDqWtgGaLG69EShl59AQocV++hJAk8=","crlite_enrolled":
true,"id":"929ecfd8-abd5-4745-9e8a-0a336c38b785","last_modified":1601517447012},{"schema":1601376598367,"derHash":"4iFgNk5W98JyNPVDXYR3saW7ugEQMpjzlUkJGA3wJ3g=","subject":"CN=VR IDENT SSL CA 2018,OU=VR IDENT,O=Fiducia & GAD IT AG,C=DE","subjectDN":"MF0xCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMREwDwYDVQQLDAhWUiBJREVOVDEdMBsGA1UEAwwUVlIgSURFTlQgU1NMIENBIDIwMTg=","whitelist":false,"attachment":{"hash":"ad86215f7ef8a6f4477d1e9ceb7ec59f0773886cebfee09bac4eb456aa559c8c","size":2085,"filename":"9frFyfDp-D9WCFjQblKwXUi5EgVRtx22594YJETOc_Y=.pem","location":"security-state-staging/intermediates/ec4121ac-bc6c-4e56-a364-4f4fd043fe83.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9frFyfDp+D9WCFjQblKwXUi5EgVRtx22594YJETOc/Y=","crlite_enrolled":true,"id":"36d968fe-300d-4647-a1dc-b69c50bd236f","last_modified":1601517447000},{"schema":1601376591167,"derHash":"1ehNmmd+bNpy3Rwbp62N38Je+sIgyKlXHOwnwQdVVwI=","subject":"CN=ICPEdu,O=Rede Nacional de Ensino e Pesquisa - RNP,C=BR","
subjectDN":"MFExCzAJBgNVBAYTAkJSMTEwLwYDVQQKEyhSZWRlIE5hY2lvbmFsIGRlIEVuc2lubyBlIFBlc3F1aXNhIC0gUk5QMQ8wDQYDVQQDEwZJQ1BFZHU=","whitelist":false,"attachment":{"hash":"9b9ef56a8e9ed418407c8f8b194145af30c2c29e7dceb0b41ecc390660a45493","size":1735,"filename":"m_Zke2f6Q6acou-ZOFg-8OdSCzint_5uosSYaFXE3EM=.pem","location":"security-state-staging/intermediates/023abc51-e443-459b-b3d5-6898ddf046fd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m/Zke2f6Q6acou+ZOFg+8OdSCzint/5uosSYaFXE3EM=","crlite_enrolled":true,"id":"168d707f-83ff-429a-a54e-c3f9bb1c6afe","last_modified":1601517446973},{"schema":1601376588314,"derHash":"8Z1VzQij6kK9kVCAc4IxdN2SNwITwXf4JTF1badQilE=","subject":"CN=JPRS Domain Validation Authority - G4,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzQ=","whitelist":false,"attachment":{"hash":"d1fbc1604b7b78d8673b6b7247a33
b5d142c6ebaa41b8e0412cedc570a24b3d7","size":1780,"filename":"KbEUDafDNIUlOxLiaD-8KAlxp-gea65O57qq4l5SFl8=.pem","location":"security-state-staging/intermediates/d06f72b5-3ee5-451e-b19b-87a6d6e9d7ad.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KbEUDafDNIUlOxLiaD+8KAlxp+gea65O57qq4l5SFl8=","crlite_enrolled":true,"id":"00b4fe55-009b-4329-870b-f41b82632937","last_modified":1601517446958},{"schema":1601376586918,"derHash":"XEUjNNnJyaLqQsx3pxZeF5XunYTrcMt4S0fqnZKlgtk=","subject":"CN=Soluti CA - DV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,C=BR","subjectDN":"MF8xCzAJBgNVBAYTAkJSMTcwNQYDVQQKEy5TT0xVVEkgLSBTT0xVQ09FUyBFTSBORUdPQ0lPUyBJTlRFTElHRU5URVMgUy9BMRcwFQYDVQQDEw5Tb2x1dGkgQ0EgLSBEVg==","whitelist":false,"attachment":{"hash":"8265936e7b87a7845ad3792c1bfbde5b8469f44276f048e773d7d306888e920a","size":1756,"filename":"kAzMeuwjUBWfPL5YEYfQG9qK_ABDxl0BMvPtzwEPN7E=.pem","location":"security-state-staging/intermediates/5d4ddc4f-7993-45bf-85a2-6ceec4bee87c.pem","mimetype":"appli
cation/x-pem-file"},"pubKeyHash":"kAzMeuwjUBWfPL5YEYfQG9qK/ABDxl0BMvPtzwEPN7E=","crlite_enrolled":true,"id":"099088c0-fda2-4d4e-8994-f1c2d2324da0","last_modified":1601517446944},{"schema":1601376592637,"derHash":"xj35YY+69IZiuhKr6HshLPd3wnpEag+lVdep0ZEUjtc=","subject":"CN=Trustwave Global ECDSA P-384 Domain Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGaMUMwQQYDVQQDEzpUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMzg0IERvbWFpbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"e81cc0a883e6e41a009a5d876bc62528cd6b26b1edd7421071b6ff434dca6265","size":1390,"filename":"NIbNiw79lRjCX7hAKe6oYePjjaaAQ9l_zvmwptYjCgg=.pem","location":"security-state-staging/intermediates/7c9dffb0-6aeb-4bdf-b8db-f5e872badd2b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NIbNiw79lRjCX7hAKe6oYePjjaaAQ9l/zvmwptYjCgg=","crlite_enr
olled":false,"id":"4ab5e3ff-7ca1-404f-8d51-ff0a87281a04","last_modified":1601517446930},{"schema":1601376585488,"derHash":"wa13eHltILymXIiaJlUCEVZSi7Yv9fpD4bjlqD49Lqo=","subject":"CN=DigiCert SHA2 Secure Server CA,O=DigiCert Inc,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"f4d91481d1e4e17c44e796f180b7b4af9f0ae8e97cf8d41165640b3fdefd8f5d","size":1760,"filename":"5kJvNEMw0KjrCAu7eXY5HZdvyCS13BbA0VJG1RSP91w=.pem","location":"security-state-staging/intermediates/97d8919a-981a-48f8-aaf7-c8bb7fce029c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5kJvNEMw0KjrCAu7eXY5HZdvyCS13BbA0VJG1RSP91w=","crlite_enrolled":true,"id":"a6bcf5b7-81c1-46f8-81ff-00adef177a8c","last_modified":1601517446898},{"schema":1601376580991,"derHash":"2UdDKr3nt/qQ/C5rWRAbEoDg4cfk5A+jxoh//1en9M8=","subject":"CN=GTS Root R1,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlV
TMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMQ==","whitelist":false,"attachment":{"hash":"56cc033ba7b1b7f111791affa1f1df410009c08c0b9a625d2bbe0a30aca502bb","size":1910,"filename":"hxqRlPTu1bMS_0DITB1SSu0vd4u_8l8TjPgfaAp63Gc=.pem","location":"security-state-staging/intermediates/93ef7a02-e8d5-4844-979f-44ee6395f343.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hxqRlPTu1bMS/0DITB1SSu0vd4u/8l8TjPgfaAp63Gc=","crlite_enrolled":false,"id":"eb48188a-e93a-4e46-8709-36bdc859d240","last_modified":1601517446886},{"schema":1601376583949,"derHash":"RklOMDeQWd8YvlISQwXmBvxZBw5bIQds4ROVS2BRfNo=","subject":"CN=E1,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJFMQ==","whitelist":false,"attachment":{"hash":"14cf69c79f1a688b326247f724ad50a3b22de5e34daf12c66670e5a38b1273d0","size":1020,"filename":"J2_oqMTsdhFWW_n85tys6b4yDBtb6idZayIEBx7QTxA=.pem","location":"security-state-staging/intermediates/aed297e0-bd
28-4811-8d38-5b759a3b3026.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"J2/oqMTsdhFWW/n85tys6b4yDBtb6idZayIEBx7QTxA=","crlite_enrolled":false,"id":"1141e315-003d-455f-8db2-84954ef57b40","last_modified":1601517446875},{"schema":1601376582516,"derHash":"iZlLbZ2d3/9of6vT5zQs3YUi1mH1786Oar3rJaBPECM=","subject":"CN=QuoVadis Europe SSL CA G1,O=QuoVadis Trustlink BVBA,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMSAwHgYDVQQKExdRdW9WYWRpcyBUcnVzdGxpbmsgQlZCQTEiMCAGA1UEAxMZUXVvVmFkaXMgRXVyb3BlIFNTTCBDQSBHMQ==","whitelist":false,"attachment":{"hash":"4446a8961707823fad23675d037ebcc454ecda2fe98586b7839466271d4521a2","size":2369,"filename":"k3XnEYQCK79AtL9GYnT_nyhsabas03V-bhRQYHQbpXU=.pem","location":"security-state-staging/intermediates/f260e4c6-6602-47d8-b091-aa180b906619.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k3XnEYQCK79AtL9GYnT/nyhsabas03V+bhRQYHQbpXU=","crlite_enrolled":true,"id":"ac9b7c21-b5e0-4211-af9f-f972e93e12a6","last_modified":1601517446863},{"schema":1601376575
218,"derHash":"TsQ5ZypENAGmbieUfMO1iX8TK2Z/cSzBo3AYo8yFsWo=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDI=","whitelist":false,"attachment":{"hash":"d6b88839e53fd1739f156f78254837d2b4b300f968dc9ab78c1f926d2648da2c","size":1508,"filename":"OhdUJ-wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=.pem","location":"security-state-staging/intermediates/e0df5215-e166-4b85-982c-ca84a269c0b5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OhdUJ+wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=","crlite_enrolled":false,"id":"b24f85ea-0f0f-4a8a-ab1e-ae3b2fcb9f7a","last_modified":1601517446852},{"schema":1601376579574,"derHash":"NNinPuII2bzbDZVlIJNLTkDmlIJZbotvc8hCawEKb0g=","subject":"CN=GTS Root R3,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm
9vdCBSMw==","whitelist":false,"attachment":{"hash":"3febe52108c8006fec57c9deeef32126e877134377f5fed563452d77eb20ce23","size":764,"filename":"QXnt2YHvdHR3tJYmQIr0Paosp6t_nggsEGD4QJZ3Q0g=.pem","location":"security-state-staging/intermediates/f16dce1f-4902-45b2-81af-f5793daff8e4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QXnt2YHvdHR3tJYmQIr0Paosp6t/nggsEGD4QJZ3Q0g=","crlite_enrolled":false,"id":"183bf702-6f79-4eff-94c6-c38c248affbe","last_modified":1601517446840},{"schema":1601376578159,"derHash":"us3gRjBTzh1i+L50Nwu6551PyvGfwHZDrvGV5qWb1Xg=","subject":"CN=E2,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJFMg==","whitelist":false,"attachment":{"hash":"051882dab9b07102f7aba08eef5eb943e8b8096631074d7f98f9c7dcef77e86d","size":1020,"filename":"vZNucrIS7293MQLGt304-UKXMi78JTlrwyeUIuDIknA=.pem","location":"security-state-staging/intermediates/91546249-fef0-4823-a9ed-185c11ff8809.pem","mimetype":"application/x-pem-file"},"pub
KeyHash":"vZNucrIS7293MQLGt304+UKXMi78JTlrwyeUIuDIknA=","crlite_enrolled":false,"id":"a9e072f6-e8b9-4cd0-bd25-18fc9624033e","last_modified":1601517446828},{"schema":1601376576656,"derHash":"3cu08wUdbmATEOsORrW7mcXouZ96U542eph96gMOMY4=","subject":"CN=Aetna Inc. Secure CA2,O=Aetna Inc,C=US","subjectDN":"MEExCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZXRuYSBJbmMxHjAcBgNVBAMTFUFldG5hIEluYy4gU2VjdXJlIENBMg==","whitelist":false,"attachment":{"hash":"f0c9af66d96dd17fa4676b867f59ad47a1e282afe025a8c07064a4124e677b47","size":1800,"filename":"NIgvyyhcGFo7vlL_K_w6cn8iFWO9ftJXWrIU77O5hMI=.pem","location":"security-state-staging/intermediates/c52a5d8c-8943-4eaa-bc48-88843df5b604.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NIgvyyhcGFo7vlL/K/w6cn8iFWO9ftJXWrIU77O5hMI=","crlite_enrolled":true,"id":"80b0b822-d489-4a48-a0ea-77bb1d2013fc","last_modified":1601517446816},{"schema":1601376573787,"derHash":"NH0Y3Mwu/FGpIOen+7B7+9o1YTaB+C3KXExyuwyDwDU=","subject":"CN=VR IDENT SSL CA 2020,O=Fiducia & GAD IT
AG,C=DE","subjectDN":"MEoxCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMR0wGwYDVQQDDBRWUiBJREVOVCBTU0wgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"4158e246be129509cb8d8eb14b647517fea0196e81a9d593f4b8f64a11a6414f","size":2357,"filename":"fQUctsUYoew1aFnAFT0prf-kJmkVNqkPo2jJ5Jm9RaA=.pem","location":"security-state-staging/intermediates/b7b9a6e5-c886-4743-80e1-a004bb1d75fa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fQUctsUYoew1aFnAFT0prf+kJmkVNqkPo2jJ5Jm9RaA=","crlite_enrolled":true,"id":"d7d2fa4e-5c2b-416e-8b89-ab9fdc251bbf","last_modified":1601517446797},{"schema":1601376570852,"derHash":"1oMbpDYH9awZd41idTFWKvVRRfGRyrXvr6DgAFRCswI=","subject":"CN=Microsoft Azure TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNQ==","whitelist":false,"attachment":{"hash":"eec823ad61a76103455ac29ab1ea726af33851691074cffd1fb703c49fe85217
","size":2121,"filename":"4i4h0jN9NROr1xKJI-TQ1Q_ZIfUjPMXtmWUsDR3Pjiw=.pem","location":"security-state-staging/intermediates/e3b5ce85-565e-482f-b742-aae47955c01f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4i4h0jN9NROr1xKJI+TQ1Q/ZIfUjPMXtmWUsDR3Pjiw=","crlite_enrolled":true,"id":"8fc3b269-4824-4ae9-9b9d-2d5ab7099766","last_modified":1601517446782},{"schema":1601376569389,"derHash":"HYDNGKeU8fSFDtwzxgSPAuhThqR/POg2l0qORSpg1/I=","subject":"CN=GeoTrust TLS DV RSA Mixed SHA256 2021 CA-1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkdlb1RydXN0IFRMUyBEViBSU0EgTWl4ZWQgU0hBMjU2IDIwMjEgQ0EtMQ==","whitelist":false,"attachment":{"hash":"2e0cee661a4a6fd3b4cc86995b705e916cb3c5b536a617c5d74956b4574cf947","size":1902,"filename":"WcAfM-6Mq47-SAT2M-PbyDhIlS5ynmlHH9IlN6Jm0AQ=.pem","location":"security-state-staging/intermediates/d00fd466-270b-4020-bcdc-6546fd39651d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WcAfM+6Mq47+SAT
2M+PbyDhIlS5ynmlHH9IlN6Jm0AQ=","crlite_enrolled":false,"id":"0fb16912-e152-4389-8528-af7e45b4a303","last_modified":1601517446770},{"schema":1601376567997,"derHash":"JMcpmGTgoqaWT1UcDo3yRhUy+oxI5Nu7YIBxZpHxkOU=","subject":"CN=Microsoft Azure TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMQ==","whitelist":false,"attachment":{"hash":"1963ee36a9c20eb3169ad73cd42da09bfc6829eb50f71d6216925c6b9c2dddcb","size":2121,"filename":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=.pem","location":"security-state-staging/intermediates/a7c93098-e1be-467b-b69f-faa129a552ab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=","crlite_enrolled":true,"id":"476c2db8-a579-44d3-a747-000ac1f604c4","last_modified":1601517446759},{"schema":1601376563770,"derHash":"lYjvdBmeRazvzM/AxHAQ6fKjeh3UTGGk4cazNNpa9hQ=","subject":"CN=DigiCert
EV RSA CA G2,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFURpZ2lDZXJ0IEVWIFJTQSBDQSBHMg==","whitelist":false,"attachment":{"hash":"6c7a7611b0ccd14478c030a701a6eee0909ea61c24f76a90cf4f5eaec2ddfd88","size":1873,"filename":"w9I8WrpHr1YAS0DugvLGsrI9Vm1yEkZAyllKxemXXf4=.pem","location":"security-state-staging/intermediates/2a18cd5e-bcf4-44b2-a1f9-a25d0729bb7c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"w9I8WrpHr1YAS0DugvLGsrI9Vm1yEkZAyllKxemXXf4=","crlite_enrolled":true,"id":"1d6a3599-67f8-40a4-917a-3ab4dccd05ad","last_modified":1601517446748},{"schema":1601376566564,"derHash":"nGSppD6ZDpj7zoMXstTBwH/+bgMtqLttYKaW4v8Djx8=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDI=","whitelist":false,"attachment":{"hash":"10551307f634eba8fbd03c34df0f74b6bf4e7d3
b3857885e7e915dc171786627","size":1329,"filename":"OhdUJ-wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=.pem","location":"security-state-staging/intermediates/b60d08eb-819e-4b81-9b83-eeafe6a230a6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OhdUJ+wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=","crlite_enrolled":false,"id":"d0e47240-43a2-4706-a470-f44bd78b9892","last_modified":1601517446736},{"schema":1601376572369,"derHash":"aXKbjhWobvwXelevtxcd/GSt0owvyozxUH40RTzLFHA=","subject":"CN=ISRG Root X2,O=Internet Security Research Group,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgy","whitelist":false,"attachment":{"hash":"df3c4c472795ccd5ca93453fa1024c35f64466f19536a34fb21d39c840e2e27b","size":789,"filename":"diGVwiVYbubAI3RW4hB9xU8e_CH2GnkuvVFZE8zmgzI=.pem","location":"security-state-staging/intermediates/8249b5fc-9f4b-4ce8-abcf-e69d8668a819.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"diGVwiVYbubAI3RW
4hB9xU8e/CH2GnkuvVFZE8zmgzI=","crlite_enrolled":false,"id":"ec4c0f03-0d74-4029-98eb-969399ddf1b3","last_modified":1601517446713},{"schema":1601376562331,"derHash":"Z63RFmsCCuYbj1/JaBPATCqliZYHloZVcqPH5zdhPf0=","subject":"CN=R3,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSMw==","whitelist":false,"attachment":{"hash":"c298ec17b9257dbfb7f36280caade22c6317186c146b5fdd5792bcb77afced29","size":1825,"filename":"jQJTbIh0grw0_1TkHSumWb-Fs0Ggogr621gT3PvPKG0=.pem","location":"security-state-staging/intermediates/7e7a0279-0dad-4fd9-81d3-64173b7386bc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jQJTbIh0grw0/1TkHSumWb+Fs0Ggogr621gT3PvPKG0=","crlite_enrolled":false,"id":"e559297e-5536-435f-919c-c382724f485b","last_modified":1601517446702},{"schema":1601376559371,"derHash":"GGJqO3IREo1WNGnGVFV9E8k2bX/OyLlNtPCqfgWUQEE=","subject":"CN=Trustwave Global Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illino
is,C=US","subjectDN":"MIGQMTkwNwYDVQQDEzBUcnVzdHdhdmUgR2xvYmFsIEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EsIExldmVsIDExITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjEQMA4GA1UEBxMHQ2hpY2FnbzERMA8GA1UECBMISWxsaW5vaXMxCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"4e61dd89fb06d5da14f5a4b0f7a2328cd7ab2dea6544a50ea59b3e7d59167e32","size":2515,"filename":"V3f1xGezL0zYaRJqAhBzSKsvj3vEMlp9KGBwnV4be38=.pem","location":"security-state-staging/intermediates/40795e76-4053-4806-aaa7-a950a1cb31b0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V3f1xGezL0zYaRJqAhBzSKsvj3vEMlp9KGBwnV4be38=","crlite_enrolled":true,"id":"6cfc11a9-c2ed-4bfa-9d64-f401bc35007b","last_modified":1601517446679},{"schema":1601376552121,"derHash":"xnDHm/J3r357NKaqT6MERBgzxr0Bpwp+m3otlMHB+SY=","subject":"CN=certSIGN Qualified CA,O=CERTSIGN SA,C=RO","subjectDN":"MFwxCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEeMBwGA1UEAxMVY2VydFNJR04gUXVhbGlmaWVkIENBMRcwFQYDVQRhEw5WQVRSTy0xODI4ODI1MA==","whitelist":false,"attachment":
{"hash":"22d738f384d471ab73b8f3d1ec90fd80d0f61bf77294a7139dc772f58bb58e1a","size":2316,"filename":"hztK7Nl786SeQOWatriSlHoTSUt-1THcFFIGKRr08bk=.pem","location":"security-state-staging/intermediates/f1489932-a573-46d9-8a92-b0e3602d6b75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hztK7Nl786SeQOWatriSlHoTSUt+1THcFFIGKRr08bk=","crlite_enrolled":false,"id":"72fc535e-8f0d-4e88-93c6-72376b952d1a","last_modified":1601517446667},{"schema":1601376555038,"derHash":"MqTlVONjEW/kjiLwHawXNnUqcccg+Z9GLVZQItO60H0=","subject":"CN=DPDHL Global TLS CA - I5,O=Deutsche Post AG,C=DE","subjectDN":"MEsxCzAJBgNVBAYTAkRFMRkwFwYDVQQKExBEZXV0c2NoZSBQb3N0IEFHMSEwHwYDVQQDExhEUERITCBHbG9iYWwgVExTIENBIC0gSTU=","whitelist":false,"attachment":{"hash":"136f459d98a2f42f67f606dcf55c11198fea1f244cf8003c576d60d969cef1ac","size":1695,"filename":"90SkSHjn6UuYfQCvunxuVf7tHQJ3Y7-_aukXzu-S0_M=.pem","location":"security-state-staging/intermediates/3efe881e-11a4-4301-908e-d7eee31dc4cd.pem","mimetype":"application/x-
pem-file"},"pubKeyHash":"90SkSHjn6UuYfQCvunxuVf7tHQJ3Y7+/aukXzu+S0/M=","crlite_enrolled":true,"id":"83a27672-fbfe-478b-b63b-a1ac28382021","last_modified":1601517446646},{"schema":1601376553578,"derHash":"BO7qjlC0d1s8JHlyYpF+5QAC7Ex1tWzfPuHBjPylulI=","subject":"CN=Microsoft RSA TLS CA 01,O=Microsoft Corporation,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xIDAeBgNVBAMTF01pY3Jvc29mdCBSU0EgVExTIENBIDAx","whitelist":false,"attachment":{"hash":"d21d673254fc1596b7b7c3a9a38e33ab09f786822535934e507dec3291deab5a","size":1914,"filename":"aJfLgiqk2RiMTiftDuK1Y2Y68uYH6daftf7O6r4ccks=.pem","location":"security-state-staging/intermediates/aa5247b7-b9cf-4225-87d6-0d81706e6bd2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aJfLgiqk2RiMTiftDuK1Y2Y68uYH6daftf7O6r4ccks=","crlite_enrolled":true,"id":"512871ef-52ae-48c3-9b77-a4853cd57ef7","last_modified":1601517446632},{"schema":1601376549115,"derHash":"PyJb2814jOkkhwyvkvgUt8b/Ttq6utk/HTqRdyUs8dE=","subject"
:"CN=QuoVadis Qualified Web ICA G3,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFcxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEmMCQGA1UEAwwdUXVvVmFkaXMgUXVhbGlmaWVkIFdlYiBJQ0EgRzM=","whitelist":false,"attachment":{"hash":"8eb4cfbfd4e31a971f563f4a974c582ecd679cc8c15604af9f0f24fb1daf720e","size":2385,"filename":"e7hbHQSuhSDkhjhlY1CGhoHNKcgJCpQxSU_inT417rc=.pem","location":"security-state-staging/intermediates/7fee1a5f-8384-4340-9b00-3022795d91e6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e7hbHQSuhSDkhjhlY1CGhoHNKcgJCpQxSU/inT417rc=","crlite_enrolled":false,"id":"8c0d1791-073e-4560-9737-df4f28bdae8c","last_modified":1601517446609},{"schema":1601376557942,"derHash":"mRe/2FNziYXkbJIEGUEOlmwxaYJ2nnGBfifQOEu+Nnk=","subject":"CN=certSIGN Public CA,O=CERTSIGN SA,C=RO","subjectDN":"MFkxCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEbMBkGA1UEAxMSY2VydFNJR04gUHVibGljIENBMRcwFQYDVQRhEw5WQVRSTy0xODI4ODI1MA==","whitelist":false,"attachment":{"hash":"d61a1b35a91c710
f44d6b989faabe0cbe91a89dbc701983bdbf2602b85bf3038","size":2312,"filename":"IGxtWhsxuC58R149YREUyaqPK7jXR9no_MMC227zRVo=.pem","location":"security-state-staging/intermediates/1e86dd0e-4dbe-4e62-96a7-ff8105badaf4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IGxtWhsxuC58R149YREUyaqPK7jXR9no/MMC227zRVo=","crlite_enrolled":false,"id":"a8c42df1-8fa0-4806-b23c-c738e23dc581","last_modified":1601517446597},{"schema":1601376547689,"derHash":"PuAnjfcfo8ElxM1IfwHXdGlOb8V+DNlMJO/XaRM5GOU=","subject":"CN=GTS Root R1,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMQ==","whitelist":false,"attachment":{"hash":"a7e1e9af45661eb891874dbac46389428139246fe7050143e9b0fd233f74e236","size":1926,"filename":"hxqRlPTu1bMS_0DITB1SSu0vd4u_8l8TjPgfaAp63Gc=.pem","location":"security-state-staging/intermediates/ce5580e6-ae0d-4210-908a-37cf76309cf0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hxqRlPT
u1bMS/0DITB1SSu0vd4u/8l8TjPgfaAp63Gc=","crlite_enrolled":false,"id":"5aadf4a5-f650-462e-9a63-dc6992d5c308","last_modified":1601517446574},{"schema":1601376544904,"derHash":"LmPcG+z0J/mQK0neYzD9Po7r+IsU5lOzui431OSICWU=","subject":"CN=Trustwave Global Organization Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGUMT0wOwYDVQQDEzRUcnVzdHdhdmUgR2xvYmFsIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"9d9bb0ca6a8a59110e9ecd8714e94894e0be5886e46f9c4e5265ffa83dcece40","size":2519,"filename":"z4qrcPL95VQXuiBgseJjj0x2uKXj6NQcTxtcnoGWFyk=.pem","location":"security-state-staging/intermediates/d07f4614-6ee6-486f-a186-ba85e88f2762.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z4qrcPL95VQXuiBgseJjj0x2uKXj6NQcTxtcnoGWFyk=","crlite_enrolled":false,"id":"0b5e934d-aa20-488f-9bc5-23db1b6cf78
f","last_modified":1601517446563},{"schema":1601376546320,"derHash":"WAuzqxJ/XhPpQK5zZePGmmKtIE1/36RRWS/nxH3AKpU=","subject":"CN=Prodrive Technologies B.V. OV SSL Issuing CA,O=Prodrive Technologies B.V.,C=NL","subjectDN":"MGkxCzAJBgNVBAYTAk5MMSMwIQYDVQQKExpQcm9kcml2ZSBUZWNobm9sb2dpZXMgQi5WLjE1MDMGA1UEAxMsUHJvZHJpdmUgVGVjaG5vbG9naWVzIEIuVi4gT1YgU1NMIElzc3VpbmcgQ0E=","whitelist":false,"attachment":{"hash":"f33b1ca67bc2f7ef2190fc43c1d09060a4d6392a8969577007ae2dcf61b1b92a","size":1788,"filename":"-wd4uhPIbo8yHwCQuKSPir6tNrh9C4xO-yIp2mXFvWw=.pem","location":"security-state-staging/intermediates/5ddd9e30-4510-471c-ab94-0d0e278ac61c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+wd4uhPIbo8yHwCQuKSPir6tNrh9C4xO+yIp2mXFvWw=","crlite_enrolled":true,"id":"2811956d-b0a4-4adf-900f-63b897378faf","last_modified":1601517446551},{"schema":1601376543423,"derHash":"chMuzy+MdbXyFMAO0UVi4UkSt/L00mMxgPPkkYmA/sQ=","subject":"CN=GlobalSign Atlas ECCR5 DV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subj
ectDN":"MFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIEVDQ1I1IERWIFRMUyBDQSAyMDIw","whitelist":false,"attachment":{"hash":"cfbfd73e27f80ba2ca88e566c4433b91afffa3e781fa1bb6329edcdd18b007fb","size":1244,"filename":"dvTEjD91RrZ8O39MMW9uMp3BsRpxlx5RWzL0vmoJRyc=.pem","location":"security-state-staging/intermediates/2bfcb5a8-a759-447d-8ba5-a522f5ff7213.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dvTEjD91RrZ8O39MMW9uMp3BsRpxlx5RWzL0vmoJRyc=","crlite_enrolled":false,"id":"33b467c3-b884-40cf-8821-05ca09a4ebb6","last_modified":1601517446517},{"schema":1601376536064,"derHash":"9i41qtNF+yU4Y8/A5lgjrNPn8IRtGbgybXCceRmiLX4=","subject":"CN=Trustwave Global ECDSA P-256 Domain Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGaMUMwQQYDVQQDEzpUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMjU2IERvbWFpbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBg
NVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"ce8879da72592af4bbeefb13d2c925ca1eed8e33ca17d960a29ad9ae0835124d","size":1305,"filename":"a-5FBlZcydYwIUikW5fVH6MjJzVRhdPbb586imNLagE=.pem","location":"security-state-staging/intermediates/39ef4ea2-486e-4ed5-a449-bfd847e8ae82.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"a+5FBlZcydYwIUikW5fVH6MjJzVRhdPbb586imNLagE=","crlite_enrolled":false,"id":"4651d4e2-a3a3-4ad4-a939-6f0a6e93d25f","last_modified":1601517446505},{"schema":1601376531791,"derHash":"KfjhBN845hK/T1BTZbXQsLIN1OickIMGSE64N0weZtg=","subject":"CN=Trustwave Global ECDSA P-384 Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGcMUUwQwYDVQQDEzxUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMzg0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EsIExldmVsIDExITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjEQMA4GA1UEBxMHQ2hpY2FnbzERMA8GA1UECBMISWxsaW5vaXMxCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"53f8122b
5a0fa5136d24ba312f1f8c41061bd774427e22f6d2a5e4fababcd5ea","size":1406,"filename":"dzssfumpi3rcJekwfVNUyE16SoxSUQ6SRbv3ubi21iE=.pem","location":"security-state-staging/intermediates/ae0ef8cd-16e2-4b41-a4f9-28579d057043.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dzssfumpi3rcJekwfVNUyE16SoxSUQ6SRbv3ubi21iE=","crlite_enrolled":true,"id":"83fb01e4-965f-4aa6-a108-09ee05b4bede","last_modified":1601517446494},{"schema":1601376537489,"derHash":"nOJ0/9oMxIdiy3GxLHQgScco5h37wHCOP5yHHp696iI=","subject":"CN=QuoVadis EV SSL ICA G1,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDExZRdW9WYWRpcyBFViBTU0wgSUNBIEcx","whitelist":false,"attachment":{"hash":"95cf8df7fb366c8a374ed3369242ba3db91973c2101055c3f8282a0abaae2334","size":2032,"filename":"2ZnCTNQBrKShr4c1olKfwNG53KiL6qoNcQi65YGRBn8=.pem","location":"security-state-staging/intermediates/71bfbe43-67b3-4ff1-a0a0-520de046ac99.pem","mimetype":"application/x-pem-file"},"pubKeyHash":
"2ZnCTNQBrKShr4c1olKfwNG53KiL6qoNcQi65YGRBn8=","crlite_enrolled":true,"id":"d6ba73ad-526c-414a-927a-cc485bdb4ba3","last_modified":1601517446482},{"schema":1601376530391,"derHash":"f+uTdOqwjTknF8ZHQ22uBhdqJMAQYH/aHM5eXwEGtHI=","subject":"CN=QuoVadis Qualified Web ICA G2,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFcxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEmMCQGA1UEAwwdUXVvVmFkaXMgUXVhbGlmaWVkIFdlYiBJQ0EgRzI=","whitelist":false,"attachment":{"hash":"c551ff3d69db56e747169ab80b2fdea513f1de4806de98e0e34ab04da70a7566","size":2385,"filename":"HW4ktpkbc6tiWRVtXWUrZxqP505LD1tPqFHb3HiZbX8=.pem","location":"security-state-staging/intermediates/78fe6755-6ce9-4dd5-b75b-e9d055b6147f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HW4ktpkbc6tiWRVtXWUrZxqP505LD1tPqFHb3HiZbX8=","crlite_enrolled":true,"id":"c8cbdc39-dfda-4e8d-8483-16a7e62a27fa","last_modified":1601517446471},{"schema":1601376528929,"derHash":"Kg4/KneoDcvlzVLVDWUHbr03+tUx2xDWoThaVX97cl0=","subject":"CN
=e-Szigno Class2 SSL CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJDAiBgNVBAMMG2UtU3ppZ25vIENsYXNzMiBTU0wgQ0EgMjAxNw==","whitelist":false,"attachment":{"hash":"bcb11e505804477ce4429c8ef9cc22d043e0f59d222d5e4524ec9158cc8e972b","size":1666,"filename":"HGXB7TIfcoLqLINF3LJD2A9t3V4VdHjcBv6LboViQMo=.pem","location":"security-state-staging/intermediates/ed1e06ed-dd51-4820-9ef9-0ec3fe1c0d7f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HGXB7TIfcoLqLINF3LJD2A9t3V4VdHjcBv6LboViQMo=","crlite_enrolled":false,"id":"e2064836-6f61-4236-a0e4-ecf652bd4970","last_modified":1601517446459},{"schema":1601376527513,"derHash":"BYd+5cz+fPGrs8nt85BbX2FCx7eTnWfjJBHPiWMn+Yc=","subject":"CN=CertCloud ECC TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"MEoxCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMR0wGwYDVQQDExRDZXJ0Q2xvdWQgRUNDIFRMUyBDQQ==","whitelist":false,"attachm
ent":{"hash":"f8337f06d70a3f7f0f2ef60247a23ef7a2527a55578bd6069dab297153907ecc","size":1232,"filename":"-iSs_1O_biy_0c0nXxdAJJKe4jDCWam1eQs-GklMUgI=.pem","location":"security-state-staging/intermediates/70ceef02-e1d2-4132-979d-678f2f773e69.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+iSs/1O/biy/0c0nXxdAJJKe4jDCWam1eQs+GklMUgI=","crlite_enrolled":false,"id":"bc047e86-7084-42d2-8efc-a8163307861a","last_modified":1601517446445},{"schema":1601376526117,"derHash":"IcBmMy1rkt2aJT4mN2hKW8PjE1f4Y77XovmMhFmjO2I=","subject":"CN=JPRS Organization Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"d6663fad41c3d961839d1c3ba63881823a3ae0e79e492bcb4b89de356ba61449","size":1780,"filename":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A-XzOekYtqEbM=.pem","location":"security-state
-staging/intermediates/76332bc0-ade4-489e-8a7a-7408d1a0866b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A+XzOekYtqEbM=","crlite_enrolled":true,"id":"d3ccc38d-c16d-42a2-8bad-f6a2a9db6ea8","last_modified":1601517446433},{"schema":1601376542023,"derHash":"MoZpFBLzDs5cBl/WL0OSpHYtHneBUzg1nfOQKZ+9Ye8=","subject":"CN=Thawte EV RSA CA G2,O=DigiCert Inc,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHDAaBgNVBAMTE1RoYXd0ZSBFViBSU0EgQ0EgRzI=","whitelist":false,"attachment":{"hash":"7ebde9e072e9a7bbb57c5810346275bf9ef461c815c5ae04aea58f3354aeb691","size":1873,"filename":"BLOV1UJgeWCwCAR8qU9OWMMcRY8vXk1zqu0szJamQxw=.pem","location":"security-state-staging/intermediates/1a609f96-bf52-4c1e-b5cd-8d41976209a2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BLOV1UJgeWCwCAR8qU9OWMMcRY8vXk1zqu0szJamQxw=","crlite_enrolled":true,"id":"0c7bee58-270f-4570-ad29-3d70aec91153","last_modified":1601517446422},{"schema":1601376534633,"der
Hash":"sIXXC5ZPGRpz5K8NVK56Dgeq/a+bcd0IYhOKtzJaJKI=","subject":"CN=GlobalSign,OU=GlobalSign ECC Root CA - R4,O=GlobalSign","subjectDN":"MFAxJDAiBgNVBAsTG0dsb2JhbFNpZ24gRUNDIFJvb3QgQ0EgLSBSNDETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbg==","whitelist":false,"attachment":{"hash":"babd66311bcbddf05b57e8c3547a7daa9175826a9288b0eddc4bce49d951e547","size":703,"filename":"CLOmM1_OXvSPjw5UOYbAf9GKOxImEp9hhku9W90fHMk=.pem","location":"security-state-staging/intermediates/3f9c81ac-eb1d-4480-8098-04c2865620a8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CLOmM1/OXvSPjw5UOYbAf9GKOxImEp9hhku9W90fHMk=","crlite_enrolled":false,"id":"806db0d2-addc-4b97-a56f-47f8f6ee463b","last_modified":1601517446411},{"schema":1601376523273,"derHash":"q7P/KZqhuu/BJ4gYxCQ4iu97KWUVlcYBlOeNlDaUaAs=","subject":"CN=QuoVadis EV SSL ICA G3,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpcyBFViBTU0wgSUNBIEcz","whitelist":false,"atta
chment":{"hash":"d81fa5cb3c1ec6bbe8f1e276fd6412ef30e25f49781b84d8eb23f85d412845ef","size":2389,"filename":"S0SyfMJffMM5SZRx8KboH82naxKe-XlFltR_gu3qSzg=.pem","location":"security-state-staging/intermediates/a1d18e1f-643c-4eba-ac9d-259252860cb9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S0SyfMJffMM5SZRx8KboH82naxKe+XlFltR/gu3qSzg=","crlite_enrolled":true,"id":"261cd019-9a12-4ef0-9d64-3205805bcee7","last_modified":1601517446399},{"schema":1601376524722,"derHash":"iu/r2IvoejCxnGDFvQ+16fvNFdVYLV/Jp0mVeNaNzsA=","subject":"CN=Valid Certificadora Digital SSL EV CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGgxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgRVYgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"54373e1e17726accdcc2879266317a44d0dc889c8003fa002f0337d0cd53627c","size":1788,"filename":"Fvvsf-SjFcNThumRKUfh4Zsz4ZsXqkoWTiLt7iT8DBo=.pem","location":"security-state-staging/interm
ediates/cc028f24-b5cb-46d6-97d7-726ebda21925.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Fvvsf+SjFcNThumRKUfh4Zsz4ZsXqkoWTiLt7iT8DBo=","crlite_enrolled":true,"id":"41b336e4-b32b-436f-891e-66fbf1ad02f3","last_modified":1601517446388},{"schema":1601376520490,"derHash":"6ywqgGxp/JY8TiSlu+og7U47hq55hzC7TupRv53jMyU=","subject":"CN=QuoVadis PKIoverheid Server CA 2020,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MF0xCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEsMCoGA1UEAwwjUXVvVmFkaXMgUEtJb3ZlcmhlaWQgU2VydmVyIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"ccde215eb034050ccfc37f9fd71517cfb10b5c84d583a98f618475edced4e91a","size":2491,"filename":"Uru4DWx-N-Ju1LMOBUHr8l1GFqUp0S2IeniNdUJMn-Y=.pem","location":"security-state-staging/intermediates/1ae6c747-3f6d-429e-9013-e01cf1ab4ce0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uru4DWx+N+Ju1LMOBUHr8l1GFqUp0S2IeniNdUJMn+Y=","crlite_enrolled":true,"id":"fee96d42-f02d-4455-be00-596e2c349fe8","last_modif
ied":1601517446377},{"schema":1601376518910,"derHash":"jEPF40DsZA+T6ndKxTU8ypBC92T/g3+HDYtkdjxFikE=","subject":"CN=GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkdlb1RydXN0IFRMUyBEViBSU0EgTWl4ZWQgU0hBMjU2IDIwMjAgQ0EtMQ==","whitelist":false,"attachment":{"hash":"4af7bd8ab75b6ddf04593a19426b34042c0a2078cfaa4c0c6b54dba25cc4a74c","size":1902,"filename":"n5dIU-KFaI00Y_prmvaZhqXOquF72TlPANCLxCA9HE8=.pem","location":"security-state-staging/intermediates/f1b1f28b-139b-40e5-ab31-a425c3b7121f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n5dIU+KFaI00Y/prmvaZhqXOquF72TlPANCLxCA9HE8=","crlite_enrolled":true,"id":"ffad931a-781d-4472-9d60-f6fbe37689c9","last_modified":1601517446365},{"schema":1601376515985,"derHash":"05zjn/b0SdTzOR7iAE1wXsIvmc/8pAqI+F2yZFSt29E=","subject":"CN=Microsoft Azure TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb
3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMg==","whitelist":false,"attachment":{"hash":"ce0b3cc7344615f4e2c08e375e5170baea84e9c13a2b7eab45e0eb275cfec111","size":2653,"filename":"zAwfx2iFcQ5vMOCc9vt-MXLdLl08EquNsOWgDF0hOw8=.pem","location":"security-state-staging/intermediates/01188f2a-2433-4025-a1b5-a82cdada1811.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zAwfx2iFcQ5vMOCc9vt+MXLdLl08EquNsOWgDF0hOw8=","crlite_enrolled":true,"id":"02c14f6f-b36e-477e-b00c-4caa53ab7b3a","last_modified":1601517446343},{"schema":1601376521873,"derHash":"SP+LSUZox1IwS0i/6Bh1iYfe9lguXwm5IfS2C7PWqN0=","subject":"CN=Microsoft Azure TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNg==","whitelist":false,"attachment":{"hash":"b800befca1341c29912755ead3105bdab854e4517a96d3492de73bd48b6aca1c","size":2121,"filename":"Wl8MFY-9zijGG8QgEH
CAK5fhA-ydPZxaLQOFdiEPz3U=.pem","location":"security-state-staging/intermediates/7038775d-bfdd-40ab-9cc3-51a112d8e5dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wl8MFY+9zijGG8QgEHCAK5fhA+ydPZxaLQOFdiEPz3U=","crlite_enrolled":true,"id":"a24284b8-b137-4a18-a2f8-d193c6197acc","last_modified":1601517446331},{"schema":1601376514564,"derHash":"TzXGucEAkF/yW7AcCiDr4zW87vJJzp/6HhHgYu1m/NE=","subject":"CN=DigiCert Trusted G4 TLS RSA SHA384 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxNDAyBgNVBAMTK0RpZ2lDZXJ0IFRydXN0ZWQgRzQgVExTIFJTQSBTSEEzODQgMjAyMCBDQTE=","whitelist":false,"attachment":{"hash":"9b316d7bf93b9d342bdd4df71094c0e97165fde2c9cd97a6beca3f212dac4054","size":2479,"filename":"rjm2hHKNhSnI_7YDoWFLmDSpnIwnr9n9bbNU0dhDiJg=.pem","location":"security-state-staging/intermediates/3784123e-47c0-449e-a944-a3c098106179.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rjm2hHKNhSnI/7YDoWFLmDSpnIwnr9n9bbNU0dhDiJg=","crlite_enro
lled":false,"id":"d7056525-3689-4f09-8017-71e76770f63f","last_modified":1601517446320},{"schema":1601376511612,"derHash":"GKvW6cqQe7NnVNDARuu1Ddm5XVJ4JNlYGjG3UPz9uu8=","subject":"CN=Trustwave Global ECDSA P-256 Organization Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGgMUkwRwYDVQQDE0BUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMjU2IE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"f16bdfde574887cdf9b20fdd1a1ad5e789c2d8b5094a68dc63225d64c51f2d50","size":1329,"filename":"lZMwN7CwdUNqVdEULuLxoCtwEIC9qGjWWMelIDRtDNU=.pem","location":"security-state-staging/intermediates/073d40fe-2052-4262-88bf-6f72a0fcaeb9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lZMwN7CwdUNqVdEULuLxoCtwEIC9qGjWWMelIDRtDNU=","crlite_enrolled":false,"id":"b41c2405-7326-442a-9924-c50f3172fd29","last_modified":1601
517446297},{"schema":1601376510177,"derHash":"qzIDs+ogF9UJcmodgik+/8uMQs61LJrxwO7pa1wCvLo=","subject":"CN=Microsoft Azure TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNQ==","whitelist":false,"attachment":{"hash":"dab72f8a61c3d1392090bfa1d53928ff5e675385a1b03742a601a3457a12342f","size":2653,"filename":"4i4h0jN9NROr1xKJI-TQ1Q_ZIfUjPMXtmWUsDR3Pjiw=.pem","location":"security-state-staging/intermediates/8493a5e1-2fe7-48d1-baff-5f6b9f29913f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4i4h0jN9NROr1xKJI+TQ1Q/ZIfUjPMXtmWUsDR3Pjiw=","crlite_enrolled":true,"id":"f45995f1-56b8-45c4-9465-14c646f731cc","last_modified":1601517446286},{"schema":1601376507194,"derHash":"Yk1VdqZSshMHaL/oS5Ze7//ZFgPSXNX3FVp9wnidrDg=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZn
QgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDU=","whitelist":false,"attachment":{"hash":"2468274c7b25fd2b19d422592a89957967b1d0b2667a280258fa181e4990089d","size":1512,"filename":"k09MzmwiRPkPmkpgmUtprMk_uALSVedNLtfOBkCMvXE=.pem","location":"security-state-staging/intermediates/d5ffeea3-4d99-41bd-a872-5838d3443762.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k09MzmwiRPkPmkpgmUtprMk/uALSVedNLtfOBkCMvXE=","crlite_enrolled":false,"id":"382d6dd1-e459-49c6-860d-167823f42b12","last_modified":1601517446275},{"schema":1601376513034,"derHash":"YGDqsYASLrFPIu3kZbSppw4p5w+xguvwHVsTM/LnMkI=","subject":"CN=RapidSSL TLS DV RSA Mixed SHA256 2021 CA-1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKlJhcGlkU1NMIFRMUyBEViBSU0EgTWl4ZWQgU0hBMjU2IDIwMjEgQ0EtMQ==","whitelist":false,"attachment":{"hash":"3ba8b83eb97ad48e9de41cf5e2bf4f6fdf72bd92b464134f8a11860b041476ae","size":1902,"filename":"inFIEiXuCIo8SWXm9s
dY-WQwNjNja_ms8JpF3Lq3T2w=.pem","location":"security-state-staging/intermediates/e93f7c27-0dfc-43ed-b6d8-be3651eb25e3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"inFIEiXuCIo8SWXm9sdY+WQwNjNja/ms8JpF3Lq3T2w=","crlite_enrolled":false,"id":"47925b35-99a1-43bf-951a-336125b4c6bf","last_modified":1601517446263},{"schema":1601376508724,"derHash":"NFC204KQw8pde7OLcUlbv3LG0MRNuikiRfm8qYQ6n/8=","subject":"CN=Actalis Domain Validation Server CA G3,O=Actalis S.p.A.,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGEMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEXMBUGA1UECgwOQWN0YWxpcyBTLnAuQS4xLzAtBgNVBAMMJkFjdGFsaXMgRG9tYWluIFZhbGlkYXRpb24gU2VydmVyIENBIEcz","whitelist":false,"attachment":{"hash":"428ff62276c3ecb6dc5848fb6212834d3718a3c55c9f538eca07bc4998f52fe6","size":2637,"filename":"hiyjWqnkYADYC0yxNwbD5MAi01UNWZQ5v2vsDd0s9Uo=.pem","location":"security-state-staging/intermediates/875e53bd-1442-40e4-b076-8d1b1fa6e8d2.pem","mimetype":"application/x
-pem-file"},"pubKeyHash":"hiyjWqnkYADYC0yxNwbD5MAi01UNWZQ5v2vsDd0s9Uo=","crlite_enrolled":true,"id":"7663fd6d-0a64-4aa0-b3f2-41b165083e59","last_modified":1601517446252},{"schema":1601376505726,"derHash":"y2Zmsyv/Lv7cxBh98Umm00pdELcWW5z/KmfA4xGu7tc=","subject":"CN=QuoVadis Europe EV SSL CA G1,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFYxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjElMCMGA1UEAwwcUXVvVmFkaXMgRXVyb3BlIEVWIFNTTCBDQSBHMQ==","whitelist":false,"attachment":{"hash":"990290f2ea4ff420df521c3b3851971e7be41a8508394faa2cb562a69bce9e55","size":2385,"filename":"WkWVWx1-X3CuwtFGJvDjdr5hOX8PeMryJG2Va7Y6cj8=.pem","location":"security-state-staging/intermediates/b1596bae-e57e-470c-a3d6-2bfa8b281a3b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WkWVWx1+X3CuwtFGJvDjdr5hOX8PeMryJG2Va7Y6cj8=","crlite_enrolled":true,"id":"024c5848-73e2-4816-9ebb-342c7407fa3c","last_modified":1601517446241},{"schema":1601376502834,"derHash":"FRo+WWnGYW62N6hyKxdM/ZU4eqznjVfDvSP
wyzAIGGo=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDY=","whitelist":false,"attachment":{"hash":"3f94a2f59b7465d9ec3993abf5497a7454a624492a51b0f1af1453447008be7a","size":1508,"filename":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f_fOuKrsNiaSdA=.pem","location":"security-state-staging/intermediates/9b67e543-818a-4165-8fb3-37301ea9deea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f/fOuKrsNiaSdA=","crlite_enrolled":false,"id":"49bdb04d-12f4-46e0-a161-dd632bc2b6db","last_modified":1601517446230},{"schema":1601376501391,"derHash":"Wr5YGPbQLwUQbGw1VUDhviF8I1S1Nc8lB7+FFeGmBEo=","subject":"CN=e-Szigno Qualified CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHYxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxIzAhBgNVBAMMGm
UtU3ppZ25vIFF1YWxpZmllZCBDQSAyMDE3","whitelist":false,"attachment":{"hash":"b1a685a82713fdb970ba0d46956ad6f758e20974ec4e06085ed70d31639c065a","size":1666,"filename":"S3q9Rterro1Xg3DAezkzEPMCdEp1MvG6n-mSxrdMylY=.pem","location":"security-state-staging/intermediates/b37a4a28-4db1-4035-813b-02db9e3f6071.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S3q9Rterro1Xg3DAezkzEPMCdEp1MvG6n+mSxrdMylY=","crlite_enrolled":false,"id":"c8ec64d9-a492-4075-9411-af27b698120c","last_modified":1601517446218},{"schema":1601376504316,"derHash":"gBxSLTrROOTwXUZ+o2nBzCdgeL8oQBjQUl67vFNCyDY=","subject":"CN=JPRS Organization Validation Authority - G4,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzQ=","whitelist":false,"attachment":{"hash":"5073da9684a445c50c1705a593be556ce4f1fa98e69b8c50acc426e2088d88b7","size":1788,"filename":"xOSyACYAjsQ-aX
D2iEFnKCVOcUsX8AVVqCGczMoh8lw=.pem","location":"security-state-staging/intermediates/0624e1eb-5311-4f0c-888d-7e403179d070.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xOSyACYAjsQ+aXD2iEFnKCVOcUsX8AVVqCGczMoh8lw=","crlite_enrolled":true,"id":"df6b1845-7aef-405a-8ee7-cd3b62ac1cad","last_modified":1601517446207},{"schema":1601373119320,"derHash":"lYjvdBmeRazvzM/AxHAQ6fKjeh3UTGGk4cazNNpa9hQ=","subject":"CN=DigiCert EV RSA CA G2,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFURpZ2lDZXJ0IEVWIFJTQSBDQSBHMg==","whitelist":false,"attachment":{"hash":"6c7a7611b0ccd14478c030a701a6eee0909ea61c24f76a90cf4f5eaec2ddfd88","size":1873,"filename":"w9I8WrpHr1YAS0DugvLGsrI9Vm1yEkZAyllKxemXXf4=.pem","location":"security-state-staging/intermediates/04e13866-ca20-456a-a3bb-ba2db3470ae7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"w9I8WrpHr1YAS0DugvLGsrI9Vm1yEkZAyllKxemXXf4=","crlite_enrolled":true,"id":"d70ee858-3159-4c5f-be64-8dd0f
689e5f4","last_modified":1601517446196},{"schema":1601373115079,"derHash":"PyJb2814jOkkhwyvkvgUt8b/Ttq6utk/HTqRdyUs8dE=","subject":"CN=QuoVadis Qualified Web ICA G3,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFcxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEmMCQGA1UEAwwdUXVvVmFkaXMgUXVhbGlmaWVkIFdlYiBJQ0EgRzM=","whitelist":false,"attachment":{"hash":"8eb4cfbfd4e31a971f563f4a974c582ecd679cc8c15604af9f0f24fb1daf720e","size":2385,"filename":"e7hbHQSuhSDkhjhlY1CGhoHNKcgJCpQxSU_inT417rc=.pem","location":"security-state-staging/intermediates/c2ab9b92-d500-4e7a-9bcc-5394c5c70aae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e7hbHQSuhSDkhjhlY1CGhoHNKcgJCpQxSU/inT417rc=","crlite_enrolled":false,"id":"1a156366-309c-4a8a-ad9a-8b722dd7e8dd","last_modified":1601517446184},{"schema":1601373116456,"derHash":"HYDNGKeU8fSFDtwzxgSPAuhThqR/POg2l0qORSpg1/I=","subject":"CN=GeoTrust TLS DV RSA Mixed SHA256 2021 CA-1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEw
YDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkdlb1RydXN0IFRMUyBEViBSU0EgTWl4ZWQgU0hBMjU2IDIwMjEgQ0EtMQ==","whitelist":false,"attachment":{"hash":"2e0cee661a4a6fd3b4cc86995b705e916cb3c5b536a617c5d74956b4574cf947","size":1902,"filename":"WcAfM-6Mq47-SAT2M-PbyDhIlS5ynmlHH9IlN6Jm0AQ=.pem","location":"security-state-staging/intermediates/86304c64-acdf-4c00-b9d2-09d524112cb1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WcAfM+6Mq47+SAT2M+PbyDhIlS5ynmlHH9IlN6Jm0AQ=","crlite_enrolled":false,"id":"03e0208d-8abc-42a3-8849-5141d1c1217e","last_modified":1601517446173},{"schema":1601373112312,"derHash":"l9QgA+EyVSlGCX8g75VfWxzVcKpDcteAAzpl775pdY0=","subject":"CN=GTS CA 1P5,O=Google Trust Services LLC,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMVA1","whitelist":false,"attachment":{"hash":"6d39d26fa45c2aea9f3ecfb72ba0887e152ffd6f6a6dc6e197c57cefd4030fa0","size":1983,"filename":"81Wf12bcLlFHQAfJluxnzZ6Frg-oJ9PWY_Wrwur8viQ=.pem"
,"location":"security-state-staging/intermediates/85fa4716-33ed-4d5d-ae53-9235954b29df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"81Wf12bcLlFHQAfJluxnzZ6Frg+oJ9PWY/Wrwur8viQ=","crlite_enrolled":true,"id":"a7aa7953-bef4-44d7-9224-c3b2f6d04aa6","last_modified":1601517446162},{"schema":1601373113703,"derHash":"nGSppD6ZDpj7zoMXstTBwH/+bgMtqLttYKaW4v8Djx8=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDI=","whitelist":false,"attachment":{"hash":"10551307f634eba8fbd03c34df0f74b6bf4e7d3b3857885e7e915dc171786627","size":1329,"filename":"OhdUJ-wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=.pem","location":"security-state-staging/intermediates/782e2f05-e5fd-466e-b95e-c9d281d07173.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OhdUJ+wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=","crlite_enrolled":false,"id":"a7462d
67-605a-4b39-b1d9-d9bcc225b615","last_modified":1601517446150},{"schema":1601373117853,"derHash":"jEPF40DsZA+T6ndKxTU8ypBC92T/g3+HDYtkdjxFikE=","subject":"CN=GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKkdlb1RydXN0IFRMUyBEViBSU0EgTWl4ZWQgU0hBMjU2IDIwMjAgQ0EtMQ==","whitelist":false,"attachment":{"hash":"4af7bd8ab75b6ddf04593a19426b34042c0a2078cfaa4c0c6b54dba25cc4a74c","size":1902,"filename":"n5dIU-KFaI00Y_prmvaZhqXOquF72TlPANCLxCA9HE8=.pem","location":"security-state-staging/intermediates/87545501-5f6c-42fb-b550-4c586450cf1d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n5dIU+KFaI00Y/prmvaZhqXOquF72TlPANCLxCA9HE8=","crlite_enrolled":true,"id":"6cc82c1a-ac75-4901-aaed-17c56d2f15ec","last_modified":1601517446138},{"schema":1601373110783,"derHash":"BYd+5cz+fPGrs8nt85BbX2FCx7eTnWfjJBHPiWMn+Yc=","subject":"CN=CertCloud ECC TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"MEoxCzAJBgNVB
AYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMR0wGwYDVQQDExRDZXJ0Q2xvdWQgRUNDIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"f8337f06d70a3f7f0f2ef60247a23ef7a2527a55578bd6069dab297153907ecc","size":1232,"filename":"-iSs_1O_biy_0c0nXxdAJJKe4jDCWam1eQs-GklMUgI=.pem","location":"security-state-staging/intermediates/e12a2935-1487-4453-8530-4d711142453e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+iSs/1O/biy/0c0nXxdAJJKe4jDCWam1eQs+GklMUgI=","crlite_enrolled":false,"id":"dcf8275c-d947-4783-80e2-d92f9c62e14b","last_modified":1601517446127},{"schema":1601373106595,"derHash":"tvZVm7zgosyR5Qe11zGeMkh+2uKKBjvHO2QF5sRGZbY=","subject":"CN=QuoVadis Enterprise Trust CA 2 G3,O=QuoVadis Limited,C=BM","subjectDN":"MFQxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSowKAYDVQQDDCFRdW9WYWRpcyBFbnRlcnByaXNlIFRydXN0IENBIDIgRzM=","whitelist":false,"attachment":{"hash":"0e8105a00963a2942951dacf763351b5c4f4fcffe32ab691c090848452d6b285","size":2377,"filename":"U_l9o-Lg2NOgB-7MLJUzZz
bVrqatI_likIE44Ciah6M=.pem","location":"security-state-staging/intermediates/cc9d0a66-6a3b-4630-97a9-cef777fb6c74.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U/l9o+Lg2NOgB+7MLJUzZzbVrqatI/likIE44Ciah6M=","crlite_enrolled":false,"id":"e5c0424f-e3f2-433c-b803-708744469857","last_modified":1601517446116},{"schema":1601373109415,"derHash":"IcBmMy1rkt2aJT4mN2hKW8PjE1f4Y77XovmMhFmjO2I=","subject":"CN=JPRS Organization Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"d6663fad41c3d961839d1c3ba63881823a3ae0e79e492bcb4b89de356ba61449","size":1780,"filename":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A-XzOekYtqEbM=.pem","location":"security-state-staging/intermediates/ec00442d-0592-4095-a93c-2de7c8ad6498.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"czSVq7DFg6
MhD0LtPxWJ2PxCsWfDS7A+XzOekYtqEbM=","crlite_enrolled":true,"id":"d8c024a4-05d8-47b8-9ced-9ba0b9e802ee","last_modified":1601517446104},{"schema":1601373105225,"derHash":"chMuzy+MdbXyFMAO0UVi4UkSt/L00mMxgPPkkYmA/sQ=","subject":"CN=GlobalSign Atlas ECCR5 DV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIEVDQ1I1IERWIFRMUyBDQSAyMDIw","whitelist":false,"attachment":{"hash":"cfbfd73e27f80ba2ca88e566c4433b91afffa3e781fa1bb6329edcdd18b007fb","size":1244,"filename":"dvTEjD91RrZ8O39MMW9uMp3BsRpxlx5RWzL0vmoJRyc=.pem","location":"security-state-staging/intermediates/1930c81b-a47e-4196-aaf5-9bb9b253ef40.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dvTEjD91RrZ8O39MMW9uMp3BsRpxlx5RWzL0vmoJRyc=","crlite_enrolled":false,"id":"23a49eff-8f01-4ad2-80b0-64b42dd5699e","last_modified":1601517446093},{"schema":1601373102382,"derHash":"RklOMDeQWd8YvlISQwXmBvxZBw5bIQds4ROVS2BRfNo=","subject":"CN=E1,O=Let
's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJFMQ==","whitelist":false,"attachment":{"hash":"14cf69c79f1a688b326247f724ad50a3b22de5e34daf12c66670e5a38b1273d0","size":1020,"filename":"J2_oqMTsdhFWW_n85tys6b4yDBtb6idZayIEBx7QTxA=.pem","location":"security-state-staging/intermediates/3a789ebf-1903-4ab8-b9cf-488af62cbf0e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"J2/oqMTsdhFWW/n85tys6b4yDBtb6idZayIEBx7QTxA=","crlite_enrolled":false,"id":"ab99130c-7c4f-494d-939c-89c4285b08b3","last_modified":1601517446082},{"schema":1601373103809,"derHash":"5vpISoWJQNEBl4VVRUqkZlMatsSrxK0rAAYmqqwNBPk=","subject":"CN=RapidSSL TLS DV RSA Mixed SHA256 2020 CA-1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKlJhcGlkU1NMIFRMUyBEViBSU0EgTWl4ZWQgU0hBMjU2IDIwMjAgQ0EtMQ==","whitelist":false,"attachment":{"hash":"e080ccfbdfc6374397f903976e83dea4fdecc00a0a36cd72f9c882ceff09e62a","size":1902,"filename"
:"48hXNwn3laJAzsrIBprOcewUb097BGNL7e-MVM7Rcis=.pem","location":"security-state-staging/intermediates/4faddda2-227d-409d-a1cd-1edcb045de63.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"48hXNwn3laJAzsrIBprOcewUb097BGNL7e+MVM7Rcis=","crlite_enrolled":true,"id":"48991605-b48a-4d04-9db7-8a39fdd03db1","last_modified":1601517446071},{"schema":1601373108002,"derHash":"NFC204KQw8pde7OLcUlbv3LG0MRNuikiRfm8qYQ6n/8=","subject":"CN=Actalis Domain Validation Server CA G3,O=Actalis S.p.A.,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGEMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEXMBUGA1UECgwOQWN0YWxpcyBTLnAuQS4xLzAtBgNVBAMMJkFjdGFsaXMgRG9tYWluIFZhbGlkYXRpb24gU2VydmVyIENBIEcz","whitelist":false,"attachment":{"hash":"428ff62276c3ecb6dc5848fb6212834d3718a3c55c9f538eca07bc4998f52fe6","size":2637,"filename":"hiyjWqnkYADYC0yxNwbD5MAi01UNWZQ5v2vsDd0s9Uo=.pem","location":"security-state-staging/intermediates/0f25bf9e-ffcc-4a10-84f0-8cd86a7ae6b0.pem","mimet
ype":"application/x-pem-file"},"pubKeyHash":"hiyjWqnkYADYC0yxNwbD5MAi01UNWZQ5v2vsDd0s9Uo=","crlite_enrolled":true,"id":"35eb9d7f-ce65-41cf-b26c-080757a4a116","last_modified":1601517446059},{"schema":1601373100891,"derHash":"FamHYevgEVVNo6RtIGsIEssutproeqoRpt1MuE7VFCo=","subject":"CN=Microsoft Azure TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMg==","whitelist":false,"attachment":{"hash":"b94f365e9c87f17f0cce2845177df14966cfe660eb761de3a71b860db6a98fd9","size":2121,"filename":"zAwfx2iFcQ5vMOCc9vt-MXLdLl08EquNsOWgDF0hOw8=.pem","location":"security-state-staging/intermediates/e70bfcd1-20f6-4b7c-b862-637c228984c7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zAwfx2iFcQ5vMOCc9vt+MXLdLl08EquNsOWgDF0hOw8=","crlite_enrolled":true,"id":"ea3a37d8-31e6-48a8-aa7d-2107ac42c3a1","last_modified":1601517446047},{"schema":1601373097943,"derHash":"diU4Q5UJx
BHEN9PFZ1Y+E3hnEoH8ShRkrdAxhwhDZ24=","subject":"CN=GlobalSign GCC R3 DV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIEdDQyBSMyBEViBUTFMgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"a57c3388263edee7694a304c5fb1c3c28046d3d7c1493d3ddf93c385aaf9b3ad","size":1687,"filename":"Sc7wL4FfOw8ued5w3JOSzu5MzB471PfqdyN4hnMYbX4=.pem","location":"security-state-staging/intermediates/23842d68-8107-429d-bb5a-283b0023bdc7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Sc7wL4FfOw8ued5w3JOSzu5MzB471PfqdyN4hnMYbX4=","crlite_enrolled":true,"id":"2faa1882-c670-43e5-bb46-85e2017d2664","last_modified":1601517446036},{"schema":1601373099507,"derHash":"a0+d4TZ4hGcw1Q6RSgjnvpt0LKOgp9U5M2eDC5Om9VM=","subject":"CN=Valid Certificadora Digital SSL OV CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGgxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmlj
YWRvcmEgRGlnaXRhbCBTU0wgT1YgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"8b796428cc5e4733630431ccd7284dbe8bae53efc39384f0fccbbf1b490e4d49","size":1788,"filename":"OOlpcVGqLfZfl2rK7MdW2Ff6TMhVD-PwRf3XtFUUtLw=.pem","location":"security-state-staging/intermediates/0c3aa131-41fa-45f6-b13d-f21f3c620bb6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OOlpcVGqLfZfl2rK7MdW2Ff6TMhVD+PwRf3XtFUUtLw=","crlite_enrolled":true,"id":"6a3cbd3d-6d7b-4338-a7c0-623f3ebafa19","last_modified":1601517446025},{"schema":1601373095187,"derHash":"LmPcG+z0J/mQK0neYzD9Po7r+IsU5lOzui431OSICWU=","subject":"CN=Trustwave Global Organization Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGUMT0wOwYDVQQDEzRUcnVzdHdhdmUgR2xvYmFsIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"9d9bb0ca6a8a59110e9ecd8
714e94894e0be5886e46f9c4e5265ffa83dcece40","size":2519,"filename":"z4qrcPL95VQXuiBgseJjj0x2uKXj6NQcTxtcnoGWFyk=.pem","location":"security-state-staging/intermediates/27248c41-4ea8-410d-a467-b8ab82ef29fb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z4qrcPL95VQXuiBgseJjj0x2uKXj6NQcTxtcnoGWFyk=","crlite_enrolled":false,"id":"0f1ec6de-5bf9-4bc1-a695-3279e8b13a0b","last_modified":1601517446014},{"schema":1601373089423,"derHash":"0zqEf2QDd74K4aQpFToH6HyIJ/pIQLUVi83LheEKRTo=","subject":"CN=VR IDENT EV SSL CA 2020,O=Fiducia & GAD IT AG,C=DE","subjectDN":"ME0xCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMSAwHgYDVQQDDBdWUiBJREVOVCBFViBTU0wgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"a95e7ccf2ef4b020f65fbd061c44e49d966821be27623376e3f16a8a3ebd371f","size":2361,"filename":"te09bIALahNazDua57TEibeM7CatIkOAT8t-qu_Kdro=.pem","location":"security-state-staging/intermediates/d45a19a8-eb83-48c2-b5c8-9ce2608c9f2b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"t
e09bIALahNazDua57TEibeM7CatIkOAT8t+qu/Kdro=","crlite_enrolled":true,"id":"7dfd117a-4bff-4a4a-8050-e2cf3a58ebae","last_modified":1601517446002},{"schema":1601373092298,"derHash":"EcaXh4cyBW3hfB2hNOnSttI88d6Vs/sKTRilF6tjIwo=","subject":"CN=GTS CA 2A1,O=Google Trust Services LLC,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRMwEQYDVQQDEwpHVFMgQ0EgMkEx","whitelist":false,"attachment":{"hash":"66c35c0df4a124a571526bb96130bec322a6f7500769403d0c068726f5bf3b3c","size":1130,"filename":"dEp_Gc3Me0g2QnAtpHNcs692NFByRfF7Od0K2TuwG1Y=.pem","location":"security-state-staging/intermediates/3a532dde-9f77-4149-85b5-6d89f2216f05.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dEp/Gc3Me0g2QnAtpHNcs692NFByRfF7Od0K2TuwG1Y=","crlite_enrolled":false,"id":"7fa7839c-ef0e-4a68-bb15-0b1884015b0a","last_modified":1601517445990},{"schema":1601373090891,"derHash":"Wr5YGPbQLwUQbGw1VUDhviF8I1S1Nc8lB7+FFeGmBEo=","subject":"CN=e-Szigno Qualified CA 2017,O=Microsec Ltd
.,L=Budapest,C=HU","subjectDN":"MHYxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxIzAhBgNVBAMMGmUtU3ppZ25vIFF1YWxpZmllZCBDQSAyMDE3","whitelist":false,"attachment":{"hash":"b1a685a82713fdb970ba0d46956ad6f758e20974ec4e06085ed70d31639c065a","size":1666,"filename":"S3q9Rterro1Xg3DAezkzEPMCdEp1MvG6n-mSxrdMylY=.pem","location":"security-state-staging/intermediates/6516a4b9-6493-4bfb-a2e3-23763dc5c0f6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S3q9Rterro1Xg3DAezkzEPMCdEp1MvG6n+mSxrdMylY=","crlite_enrolled":false,"id":"c843833c-5c87-472d-adb2-b79ac1f9377d","last_modified":1601517445979},{"schema":1601373096569,"derHash":"BO7qjlC0d1s8JHlyYpF+5QAC7Ex1tWzfPuHBjPylulI=","subject":"CN=Microsoft RSA TLS CA 01,O=Microsoft Corporation,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xIDAeBgNVBAMTF01pY3Jvc29mdCBSU0EgVExTIENBIDAx","whitelist":false,"attachment":{"hash":"d21d673254fc1596b7b7c3a9
a38e33ab09f786822535934e507dec3291deab5a","size":1914,"filename":"aJfLgiqk2RiMTiftDuK1Y2Y68uYH6daftf7O6r4ccks=.pem","location":"security-state-staging/intermediates/4e38e0db-da22-4304-ac1e-288010c3a100.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aJfLgiqk2RiMTiftDuK1Y2Y68uYH6daftf7O6r4ccks=","crlite_enrolled":true,"id":"49e9befa-5c1a-46b0-b4e6-cb23de9ad30c","last_modified":1601517445968},{"schema":1601373088050,"derHash":"J1vwBG4CcBeLE7Z+TbFQoQGXy3H5oGH602s9dmOf4YY=","subject":"CN=Trustwave Global ECDSA P-256 Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGcMUUwQwYDVQQDEzxUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMjU2IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EsIExldmVsIDExITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjEQMA4GA1UEBxMHQ2hpY2FnbzERMA8GA1UECBMISWxsaW5vaXMxCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"b39b1eb52f8d651482f3d14bd9a033de3982f3cc3fa825ba761d2fefa3a11981","size":1325,"filename":"YzpgcYxSKDnEVZ3T3h2obh9
WsI9ICItWbAqh4SyCprA=.pem","location":"security-state-staging/intermediates/f1b77292-94b4-4442-903d-9547feeb6e60.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YzpgcYxSKDnEVZ3T3h2obh9WsI9ICItWbAqh4SyCprA=","crlite_enrolled":true,"id":"7f2240ce-ea07-4998-8344-b13fb802637e","last_modified":1601517445956},{"schema":1601373093777,"derHash":"Euom9u7v7HarhZJUVAOriFFbAOJ12YiHE0B6hvxcf9c=","subject":"CN=e-Szigno Qualified Organization CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGDMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xFzAVBgNVBGEMDlZBVEhVLTIzNTg0NDk3MTAwLgYDVQQDDCdlLVN6aWdubyBRdWFsaWZpZWQgT3JnYW5pemF0aW9uIENBIDIwMTc=","whitelist":false,"attachment":{"hash":"2dcc501b643fe8ac38e3b36c6e87ffbb458e7d031117857c3d81511ee2eadfd8","size":1687,"filename":"60e2cMobrxpGA71ke0o4H5luzpBPZvklmqnePPA8jxs=.pem","location":"security-state-staging/intermediates/80f7e08b-2813-4c53-b749-e5ae184d8e46.pem","mimetype":"application/x-pem-file"},"pubKeyHash":
"60e2cMobrxpGA71ke0o4H5luzpBPZvklmqnePPA8jxs=","crlite_enrolled":false,"id":"dc168871-d662-484e-80bb-0aaa4d482b71","last_modified":1601517445945},{"schema":1601373086550,"derHash":"3cu08wUdbmATEOsORrW7mcXouZ96U542eph96gMOMY4=","subject":"CN=Aetna Inc. Secure CA2,O=Aetna Inc,C=US","subjectDN":"MEExCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZXRuYSBJbmMxHjAcBgNVBAMTFUFldG5hIEluYy4gU2VjdXJlIENBMg==","whitelist":false,"attachment":{"hash":"f0c9af66d96dd17fa4676b867f59ad47a1e282afe025a8c07064a4124e677b47","size":1800,"filename":"NIgvyyhcGFo7vlL_K_w6cn8iFWO9ftJXWrIU77O5hMI=.pem","location":"security-state-staging/intermediates/7a5d531c-a614-4a6e-ad99-fce2da57ac1d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NIgvyyhcGFo7vlL/K/w6cn8iFWO9ftJXWrIU77O5hMI=","crlite_enrolled":true,"id":"71ef61b1-4863-49bb-a2a3-8bca78f3eec0","last_modified":1601517445934},{"schema":1601373082085,"derHash":"CZg6JjLAM+uUScDr8h+bjUqZdcBvuOIPSlBC6eTMZBE=","subject":"CN=NII Open Domain CA - G5,O=National Institute of
Informatics,C=JP","subjectDN":"MFsxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxIDAeBgNVBAMTF05JSSBPcGVuIERvbWFpbiBDQSAtIEc1","whitelist":false,"attachment":{"hash":"dffc20f5ea1b99f91d8665a18a15d299bddfa0b71cb6b19267a6efa7d6b7d6ed","size":12598,"filename":"aj-4mbqOOY7cgtDqWtgGaLG69EShl59AQocV--hJAk8=.pem","location":"security-state-staging/intermediates/c0315adb-4bd9-4968-8188-a004a1b8fade.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aj+4mbqOOY7cgtDqWtgGaLG69EShl59AQocV++hJAk8=","crlite_enrolled":true,"id":"21660b58-2f5d-4097-ae1e-aade60a55184","last_modified":1601517445922},{"schema":1601373083661,"derHash":"05zjn/b0SdTzOR7iAE1wXsIvmc/8pAqI+F2yZFSt29E=","subject":"CN=Microsoft Azure TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMg==","whitelist":false,"attachment":{"hash":"ce0b3cc7344615f4e2c08e375e5170baea8
4e9c13a2b7eab45e0eb275cfec111","size":2653,"filename":"zAwfx2iFcQ5vMOCc9vt-MXLdLl08EquNsOWgDF0hOw8=.pem","location":"security-state-staging/intermediates/db00b4f0-c8f3-4700-913d-fb5588510249.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zAwfx2iFcQ5vMOCc9vt+MXLdLl08EquNsOWgDF0hOw8=","crlite_enrolled":true,"id":"db7da0b1-4700-40e5-8766-05564c2f1aaf","last_modified":1601517445911},{"schema":1601373080635,"derHash":"JMcpmGTgoqaWT1UcDo3yRhUy+oxI5Nu7YIBxZpHxkOU=","subject":"CN=Microsoft Azure TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMQ==","whitelist":false,"attachment":{"hash":"1963ee36a9c20eb3169ad73cd42da09bfc6829eb50f71d6216925c6b9c2dddcb","size":2121,"filename":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=.pem","location":"security-state-staging/intermediates/3a2e8b34-b640-409f-ba11-42410897c3c0.pem","mimetype":"application/x-pem-file"},
"pubKeyHash":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=","crlite_enrolled":true,"id":"f4667d41-8d93-404a-85ac-348e9d27cbc4","last_modified":1601517445900},{"schema":1601373076427,"derHash":"TsQ5ZypENAGmbieUfMO1iX8TK2Z/cSzBo3AYo8yFsWo=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDI=","whitelist":false,"attachment":{"hash":"d6b88839e53fd1739f156f78254837d2b4b300f968dc9ab78c1f926d2648da2c","size":1508,"filename":"OhdUJ-wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=.pem","location":"security-state-staging/intermediates/a533ae98-4acc-4c4e-90e9-c1f73411f64b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OhdUJ+wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=","crlite_enrolled":false,"id":"e164a6de-4f75-479e-b04f-54334c5235fd","last_modified":1601517445889},{"schema":1601373077828,"derHash":"h9QhabJpNVHKIFzPF/BvbmZR9yGM1tJ
mB79bpN0vJvI=","subject":"CN=Trustwave Global ECDSA P-384 Organization Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGgMUkwRwYDVQQDE0BUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMzg0IE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"8cd0dbed89841d6b6854301f7eecbbdcd40ac73d8c8347c1ea8a577a05c10603","size":1410,"filename":"91i1mhKwhcz0SKoJ9CzM_9ohVagG6cKG9Z_i4Ts1FFk=.pem","location":"security-state-staging/intermediates/f260c10f-2e10-43a2-ac7a-1fff03473e79.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"91i1mhKwhcz0SKoJ9CzM/9ohVagG6cKG9Z/i4Ts1FFk=","crlite_enrolled":false,"id":"3ebd415b-87d1-4a9d-b708-d59719c85d42","last_modified":1601517445866},{"schema":1601373073544,"derHash":"02gLTj+I2x9bud3b+2v/MZx4Dj2fRO4k7BmVq0LWkU8=","subject":"CN=GIAG4x,O=Google Trust Services LLC,C=US","subje
ctDN":"MEIxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMQ8wDQYDVQQDEwZHSUFHNHg=","whitelist":false,"attachment":{"hash":"7863677df584a77841650e5ad47e7ef8f7c42807c9d69969881133b275b19a50","size":1991,"filename":"AAGolo0N1iZa5uuvm02csZnkuZs8hvI-HRLhAHtNhqk=.pem","location":"security-state-staging/intermediates/e4fc6359-81c9-49c3-ada7-2ec1bdf010a9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AAGolo0N1iZa5uuvm02csZnkuZs8hvI+HRLhAHtNhqk=","crlite_enrolled":true,"id":"c20c0d70-6c96-450f-8ecf-8135b2f7766e","last_modified":1601517445844},{"schema":1601373070729,"derHash":"DakU+3El9uZE63qiYd6euAncf5Jbayp9in7dhzY5i1s=","subject":"CN=Staat der Nederlanden Domein Server CA 2020,O=Staat der Nederlanden,C=NL","subjectDN":"MGMxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xNDAyBgNVBAMMK1N0YWF0IGRlciBOZWRlcmxhbmRlbiBEb21laW4gU2VydmVyIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"2f30004a37d33d9c2a59bae9b9e7ae94f816bd331c1a88deabd4af0f028ec59e","siz
e":2438,"filename":"N9-YluTCUa_HTXc60QxjUReBLpRniAkIK2N84DhgmW4=.pem","location":"security-state-staging/intermediates/32515a04-77a4-49fa-83c0-36ae6f3a5dab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N9+YluTCUa/HTXc60QxjUReBLpRniAkIK2N84DhgmW4=","crlite_enrolled":false,"id":"732efca5-8974-4190-8e83-bf82ff07f739","last_modified":1601517445832},{"schema":1601373066528,"derHash":"X4hpRhXkxhaG4Qa4TDM4xnIMU19g029hKC7RXhl33UQ=","subject":"CN=DigiCert Cloud Services CA-1,O=DigiCert Inc,C=US","subjectDN":"MEsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJTAjBgNVBAMTHERpZ2lDZXJ0IENsb3VkIFNlcnZpY2VzIENBLTE=","whitelist":false,"attachment":{"hash":"bd47e7c223bc2e656a7455d83b5877cd3dbf66c20fcb9f464190df0a25d15bdb","size":1760,"filename":"UgpUVparimk8QCjtWQaUQ7EGrtrykc_L8N66EhFY3VE=.pem","location":"security-state-staging/intermediates/1ee740d1-83dd-4bc7-a5a7-cb03a31c1763.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UgpUVparimk8QCjtWQaUQ7EGrtrykc/L8N66EhFY3VE=","crlite_
enrolled":true,"id":"5c31a860-b4ef-4791-8e42-f75e10d6c910","last_modified":1601517445821},{"schema":1601373074948,"derHash":"aXKbjhWobvwXelevtxcd/GSt0owvyozxUH40RTzLFHA=","subject":"CN=ISRG Root X2,O=Internet Security Research Group,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgy","whitelist":false,"attachment":{"hash":"df3c4c472795ccd5ca93453fa1024c35f64466f19536a34fb21d39c840e2e27b","size":789,"filename":"diGVwiVYbubAI3RW4hB9xU8e_CH2GnkuvVFZE8zmgzI=.pem","location":"security-state-staging/intermediates/e3c85b2f-376b-4a02-af59-534857d8ea19.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"diGVwiVYbubAI3RW4hB9xU8e/CH2GnkuvVFZE8zmgzI=","crlite_enrolled":false,"id":"edd34046-1baa-49cb-8053-ff3025c65f81","last_modified":1601517445810},{"schema":1601373069295,"derHash":"LK77tV5w31qJhf6bwQ3VakDD3tqz2hUwopaCAVxbfGY=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 01,O=Microsoft Corporation,C=US","subje
ctDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDE=","whitelist":false,"attachment":{"hash":"a45e27eb4ce4e2624d46479d0ecf5a612e520e17ac29d9b405427a94f6798f65","size":1512,"filename":"OZOx9JJC3JsSDSjFX2iEA3_ED6gCha3L1ZrOeRNoyx8=.pem","location":"security-state-staging/intermediates/6ef0f203-a563-43fa-8eba-9b978890ca68.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OZOx9JJC3JsSDSjFX2iEA3/ED6gCha3L1ZrOeRNoyx8=","crlite_enrolled":true,"id":"e542d416-8008-4a93-9c04-69bcfd8087a2","last_modified":1601517445799},{"schema":1601373072113,"derHash":"us3gRjBTzh1i+L50Nwu6551PyvGfwHZDrvGV5qWb1Xg=","subject":"CN=E2,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJFMg==","whitelist":false,"attachment":{"hash":"051882dab9b07102f7aba08eef5eb943e8b8096631074d7f98f9c7dcef77e86d","size":1020,"filename":"vZNucrIS7293MQLGt304-UKXMi78JTlrwyeUIuDIknA=.pem","locati
on":"security-state-staging/intermediates/582d2a81-663c-4e04-a8a6-341023b6be78.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vZNucrIS7293MQLGt304+UKXMi78JTlrwyeUIuDIknA=","crlite_enrolled":false,"id":"a537077a-14c9-4783-a4e0-5a7ea2e660b9","last_modified":1601517445787},{"schema":1601373067917,"derHash":"am8voTstnbu0CYAgAtM3BnJ2CiF42bjVaU1mBHQjH6Q=","subject":"CN=e-Szigno Pseudonymous CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHkxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJjAkBgNVBAMMHWUtU3ppZ25vIFBzZXVkb255bW91cyBDQSAyMDE3","whitelist":false,"attachment":{"hash":"4a22ba90a733131c2581c1d0dd2fbb9a8df38f518f2e5ba6ee0d10f4b3169c24","size":1670,"filename":"vqerAqvFBz-pP0lY3LKc96jOLcWu__imbw0SS3qBch8=.pem","location":"security-state-staging/intermediates/f7567136-382e-42ac-a1c6-fff3eb13845f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vqerAqvFBz+pP0lY3LKc96jOLcWu//imbw0SS3qBch8=","crlite_enro
lled":false,"id":"aed26e63-166d-44c2-99e2-e757b42d4182","last_modified":1601517445776},{"schema":1601373063695,"derHash":"xj35YY+69IZiuhKr6HshLPd3wnpEag+lVdep0ZEUjtc=","subject":"CN=Trustwave Global ECDSA P-384 Domain Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGaMUMwQQYDVQQDEzpUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMzg0IERvbWFpbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"e81cc0a883e6e41a009a5d876bc62528cd6b26b1edd7421071b6ff434dca6265","size":1390,"filename":"NIbNiw79lRjCX7hAKe6oYePjjaaAQ9l_zvmwptYjCgg=.pem","location":"security-state-staging/intermediates/ecde76ec-b1ee-48ec-b2c6-2cda6bc52ba4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NIbNiw79lRjCX7hAKe6oYePjjaaAQ9l/zvmwptYjCgg=","crlite_enrolled":false,"id":"e696ad4e-cdc6-4b17-8ee7-13c8bcb02291","last_modified":1601517445754},{"s
chema":1601373056407,"derHash":"jSXNlyKdv3A1a9pOs8xzQDHiTPAPr8/TLcdutYQcfqg=","subject":"CN=GTS Root R2,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMg==","whitelist":false,"attachment":{"hash":"4d0fda0d78fd282ab5f1cf69e3b3e458120a33cf3e5fdeb14796f324a389d74e","size":1910,"filename":"Vfd95BwDeSQo-NUYxVEEIlvkOlWY2SalKK1lPhzOx78=.pem","location":"security-state-staging/intermediates/95c47a1a-f461-4dc1-8420-4c32207900df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vfd95BwDeSQo+NUYxVEEIlvkOlWY2SalKK1lPhzOx78=","crlite_enrolled":false,"id":"bc7a2f54-60da-4bb6-96f3-795d0359d8f8","last_modified":1601517445731},{"schema":1601373062251,"derHash":"YIG+5bDfGRrE4mWsD294mfB4uMifBgVa4Wavkd9w1uA=","subject":"CN=e-Szigno Qualified QCP CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHoxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1O
DQ0OTcxJzAlBgNVBAMMHmUtU3ppZ25vIFF1YWxpZmllZCBRQ1AgQ0EgMjAxNw==","whitelist":false,"attachment":{"hash":"280a786ca35892c86124fb11c5e02f70f1bf6cd40daa1e6538e054942241cdaf","size":1674,"filename":"zohU4uap0ZYaGxznYnSZfimXMiL0fPpOwF3CBDSo608=.pem","location":"security-state-staging/intermediates/bb8b8c4c-b637-4241-a27d-e3f497235709.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zohU4uap0ZYaGxznYnSZfimXMiL0fPpOwF3CBDSo608=","crlite_enrolled":false,"id":"0f3daffc-a656-4c5f-a71b-0db59222a014","last_modified":1601517445720},{"schema":1601373057866,"derHash":"ffgAB19SA8AXNk6BGVqayf8AxQfWSnD3N9jT6Ms/CEU=","subject":"CN=e-Szigno Qualified TLS CA 2018,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHoxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJzAlBgNVBAMMHmUtU3ppZ25vIFF1YWxpZmllZCBUTFMgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"df20fd29ecb80ea583b981311eed6c99114bffa8ab98b5265dc4c8efcc1897f0","size":1674,"file
name":"qd9EIyfp7CEtbkxafeyYAuC_8wQBWqGZflkLznwnuyc=.pem","location":"security-state-staging/intermediates/9528d3b9-a037-4f0f-b644-1e7827d3c927.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qd9EIyfp7CEtbkxafeyYAuC/8wQBWqGZflkLznwnuyc=","crlite_enrolled":true,"id":"4802c4c4-718e-4497-a9a5-c367fed873eb","last_modified":1601517445709},{"schema":1601373055050,"derHash":"1oMbpDYH9awZd41idTFWKvVRRfGRyrXvr6DgAFRCswI=","subject":"CN=Microsoft Azure TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNQ==","whitelist":false,"attachment":{"hash":"eec823ad61a76103455ac29ab1ea726af33851691074cffd1fb703c49fe85217","size":2121,"filename":"4i4h0jN9NROr1xKJI-TQ1Q_ZIfUjPMXtmWUsDR3Pjiw=.pem","location":"security-state-staging/intermediates/d49999e5-60cd-4c45-a970-e9462ab32f63.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4i4h0jN9NROr1xKJI+TQ1Q/ZIfUjPMXtmW
UsDR3Pjiw=","crlite_enrolled":true,"id":"9561182b-470d-459e-8d38-ee7e1b3ceed8","last_modified":1601517445698},{"schema":1601373060728,"derHash":"4iFgNk5W98JyNPVDXYR3saW7ugEQMpjzlUkJGA3wJ3g=","subject":"CN=VR IDENT SSL CA 2018,OU=VR IDENT,O=Fiducia & GAD IT AG,C=DE","subjectDN":"MF0xCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMREwDwYDVQQLDAhWUiBJREVOVDEdMBsGA1UEAwwUVlIgSURFTlQgU1NMIENBIDIwMTg=","whitelist":false,"attachment":{"hash":"ad86215f7ef8a6f4477d1e9ceb7ec59f0773886cebfee09bac4eb456aa559c8c","size":2085,"filename":"9frFyfDp-D9WCFjQblKwXUi5EgVRtx22594YJETOc_Y=.pem","location":"security-state-staging/intermediates/8f810e8e-9b9b-4830-b261-6873c11e2437.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9frFyfDp+D9WCFjQblKwXUi5EgVRtx22594YJETOc/Y=","crlite_enrolled":true,"id":"0c6f5e09-6c3c-4747-b629-3d81788a49ae","last_modified":1601517445675},{"schema":1601373050792,"derHash":"rXtYw8XZWGvltieZwnksQRHJhSqW97BgciEmVxOVfhw=","subject":"CN=SHECA OV Secure Server CA,O
=Shanghai Electronic Certificate Authority Center Co.\\, Ltd.,C=CN","subjectDN":"MHYxCzAJBgNVBAYTAkNOMUMwQQYDVQQKEzpTaGFuZ2hhaSBFbGVjdHJvbmljIENlcnRpZmljYXRlIEF1dGhvcml0eSBDZW50ZXIgQ28uLCBMdGQuMSIwIAYDVQQDExlTSEVDQSBPViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"64ac68b2f5fcfe1eb5b26d7d052a52af0101c298fc359ab1870916a82601f563","size":1808,"filename":"GvyQK0TA2Qh-B1rvOMI28XPmBiJD59lQrwz_N-iQO_U=.pem","location":"security-state-staging/intermediates/f52fd61a-cf0c-4458-a6a1-3cfe976c2304.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GvyQK0TA2Qh+B1rvOMI28XPmBiJD59lQrwz/N+iQO/U=","crlite_enrolled":true,"id":"cf8cce0e-bdf8-41ca-b618-b43f76dc9e43","last_modified":1601517445664},{"schema":1601373052202,"derHash":"MqTlVONjEW/kjiLwHawXNnUqcccg+Z9GLVZQItO60H0=","subject":"CN=DPDHL Global TLS CA - I5,O=Deutsche Post AG,C=DE","subjectDN":"MEsxCzAJBgNVBAYTAkRFMRkwFwYDVQQKExBEZXV0c2NoZSBQb3N0IEFHMSEwHwYDVQQDExhEUERITCBHbG9iYWwgVExTIENBIC0gSTU=","whitelist":false,"attac
hment":{"hash":"136f459d98a2f42f67f606dcf55c11198fea1f244cf8003c576d60d969cef1ac","size":1695,"filename":"90SkSHjn6UuYfQCvunxuVf7tHQJ3Y7-_aukXzu-S0_M=.pem","location":"security-state-staging/intermediates/c1a36f1f-4324-4c38-822b-4955c7caa508.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"90SkSHjn6UuYfQCvunxuVf7tHQJ3Y7+/aukXzu+S0/M=","crlite_enrolled":true,"id":"c33aa503-cce0-418b-b8e1-1cd25396b905","last_modified":1601517445653},{"schema":1601373043849,"derHash":"YGDqsYASLrFPIu3kZbSppw4p5w+xguvwHVsTM/LnMkI=","subject":"CN=RapidSSL TLS DV RSA Mixed SHA256 2021 CA-1,O=DigiCert Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMzAxBgNVBAMTKlJhcGlkU1NMIFRMUyBEViBSU0EgTWl4ZWQgU0hBMjU2IDIwMjEgQ0EtMQ==","whitelist":false,"attachment":{"hash":"3ba8b83eb97ad48e9de41cf5e2bf4f6fdf72bd92b464134f8a11860b041476ae","size":1902,"filename":"inFIEiXuCIo8SWXm9sdY-WQwNjNja_ms8JpF3Lq3T2w=.pem","location":"security-state-staging/intermediates/4f7289d9-3d0b-4bf7-9a5e-934f
96747340.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"inFIEiXuCIo8SWXm9sdY+WQwNjNja/ms8JpF3Lq3T2w=","crlite_enrolled":false,"id":"02ce3313-f150-44ba-b7a1-9aee17e6d859","last_modified":1601517445642},{"schema":1601373048045,"derHash":"1KWUHHFB7RlJoMbOndRaCrlNwzeQLrChIJhSc47r6FQ=","subject":"CN=GlobalSign GCC R3 EV QWAC CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIEdDQyBSMyBFViBRV0FDIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"9a306430e243544a1c823baa60388aa1b7c197ccafd79a5fd9847056d91f6d8b","size":2032,"filename":"6Vipkd7oFTwhj_Z54b71vjmwq0aEJc6KkharcmzGaV4=.pem","location":"security-state-staging/intermediates/54c37b8e-2d9f-4770-a6ee-08a7d4d11934.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6Vipkd7oFTwhj/Z54b71vjmwq0aEJc6KkharcmzGaV4=","crlite_enrolled":false,"id":"16ddf1bb-a12f-4d95-a455-9e6a82d4469a","last_modified":1601517445631},{"schema":1601373049403,"derHash":"
QtyCf0b7XoXf+uR9PGkPUB7OJdV11ZelDY+Hj6Qq/Oo=","subject":"CN=e-Szigno Class2 CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHMxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxIDAeBgNVBAMMF2UtU3ppZ25vIENsYXNzMiBDQSAyMDE3","whitelist":false,"attachment":{"hash":"24e4936e9492f5245f32e7f9b60258d25f2a4c8e36002f26691cdf9f19bb94f3","size":1662,"filename":"3TGdI2jR-PvtWXO9N84WdfCRvr5nND75u1oGBVvPEl4=.pem","location":"security-state-staging/intermediates/a0283198-a2ca-42e2-abee-9f579d7b9911.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3TGdI2jR+PvtWXO9N84WdfCRvr5nND75u1oGBVvPEl4=","crlite_enrolled":false,"id":"6df97aa6-df00-4c66-afdc-850ead7cdcec","last_modified":1601517445619},{"schema":1601373045250,"derHash":"lJ1rS3YcoTStPnqFcRhvWA7oh/LGtWi1FA9BV/mNaN0=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLj
AsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDE=","whitelist":false,"attachment":{"hash":"1a3bc0dfeb8f9e3f79809953a727d69dc11a315684b4cf57c35d226206502e31","size":1329,"filename":"OZOx9JJC3JsSDSjFX2iEA3_ED6gCha3L1ZrOeRNoyx8=.pem","location":"security-state-staging/intermediates/471ff3d1-a234-44c3-9336-a3593480bf23.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OZOx9JJC3JsSDSjFX2iEA3/ED6gCha3L1ZrOeRNoyx8=","crlite_enrolled":true,"id":"46952ab6-744f-4ac4-8cd9-767a8ebaa351","last_modified":1601517445608},{"schema":1601373046633,"derHash":"wa13eHltILymXIiaJlUCEVZSi7Yv9fpD4bjlqD49Lqo=","subject":"CN=DigiCert SHA2 Secure Server CA,O=DigiCert Inc,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"f4d91481d1e4e17c44e796f180b7b4af9f0ae8e97cf8d41165640b3fdefd8f5d","size":1760,"filename":"5kJvNEMw0KjrCAu7eXY5HZdvyCS13BbA0VJG1RSP91w=.pem","location":"secur
ity-state-staging/intermediates/17efd7bd-6142-4486-a521-1bac923f5f17.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5kJvNEMw0KjrCAu7eXY5HZdvyCS13BbA0VJG1RSP91w=","crlite_enrolled":true,"id":"e194894d-74fa-4e44-b5c9-c5bbb841d31a","last_modified":1601517445597},{"schema":1601373042464,"derHash":"DTb2oimeniaPlK20nlfmcX1xPD9HuInEDc3Iz+lAy4A=","subject":"CN=Beame.io CA 1,O=Beame.io Ltd,C=IL","subjectDN":"MDwxCzAJBgNVBAYTAklMMRUwEwYDVQQKEwxCZWFtZS5pbyBMdGQxFjAUBgNVBAMTDUJlYW1lLmlvIENBIDE=","whitelist":false,"attachment":{"hash":"4b493757d7d299f8cc22b2765b16fa2d9bcc5aab6354a1aba37cad4f16162bf8","size":1727,"filename":"5fxJ002g5Il0LSaAZtiEC7BeF8z-cxBoMLk7llE9WeI=.pem","location":"security-state-staging/intermediates/0491bd9a-2ff4-4f0a-a3b2-3bee78c50874.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5fxJ002g5Il0LSaAZtiEC7BeF8z+cxBoMLk7llE9WeI=","crlite_enrolled":false,"id":"eef290b4-e4ac-424b-91d6-846b75957235","last_modified":1601517445586},{"schema":1601373038124,"derHash
":"Z4LG6a2/khbiaDBtRjM/vGdL3t+GtnvndweeLA42iI4=","subject":"CN=Trustwave Global Domain Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGOMTcwNQYDVQQDEy5UcnVzdHdhdmUgR2xvYmFsIERvbWFpbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"a1aae690e4bc653bc8dd049d0014c8bdf294c1327ae51c6f40d11e8b728cdee3","size":2499,"filename":"N8k0xQNnFdJBZpSXQ6W9OldaDSJ59X-kFQNRrNSN8Cw=.pem","location":"security-state-staging/intermediates/10461dd8-f33a-4e82-b46a-5408f96b944a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N8k0xQNnFdJBZpSXQ6W9OldaDSJ59X+kFQNRrNSN8Cw=","crlite_enrolled":false,"id":"beb516ed-cac1-4c3b-af61-f25c3202f32a","last_modified":1601517445563},{"schema":1601373039540,"derHash":"HjVoI/5AwOqsKfntVGO3stscCItj67BYdqLmMcEId5g=","subject":"CN=QuoVadis Enterprise Trust CA 2 G4,O=QuoVadis Trustlink
B.V.,C=NL","subjectDN":"MFsxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEqMCgGA1UEAwwhUXVvVmFkaXMgRW50ZXJwcmlzZSBUcnVzdCBDQSAyIEc0","whitelist":false,"attachment":{"hash":"756cc72bf46fca106a4ae94315fc04ea6bbe1b93e3229513d02875b33ca13f45","size":2385,"filename":"z-lEyVPfwY15LjMDGouWc4Jt0MFWaf2MpLOSN9mx9tM=.pem","location":"security-state-staging/intermediates/8a9ec500-a3e8-4a94-a076-29717920b30a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z+lEyVPfwY15LjMDGouWc4Jt0MFWaf2MpLOSN9mx9tM=","crlite_enrolled":false,"id":"6d245b72-3e57-43e5-936f-1071536497e7","last_modified":1601517445552},{"schema":1601373033892,"derHash":"iu/r2IvoejCxnGDFvQ+16fvNFdVYLV/Jp0mVeNaNzsA=","subject":"CN=Valid Certificadora Digital SSL EV CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGgxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgRVYgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"54373e1
e17726accdcc2879266317a44d0dc889c8003fa002f0337d0cd53627c","size":1788,"filename":"Fvvsf-SjFcNThumRKUfh4Zsz4ZsXqkoWTiLt7iT8DBo=.pem","location":"security-state-staging/intermediates/49c18a87-730f-412f-8285-71d4cd57b21e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Fvvsf+SjFcNThumRKUfh4Zsz4ZsXqkoWTiLt7iT8DBo=","crlite_enrolled":true,"id":"741c5f94-32f1-402f-ae6a-c183d5680da9","last_modified":1601517445540},{"schema":1601373035317,"derHash":"f+uTdOqwjTknF8ZHQ22uBhdqJMAQYH/aHM5eXwEGtHI=","subject":"CN=QuoVadis Qualified Web ICA G2,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFcxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEmMCQGA1UEAwwdUXVvVmFkaXMgUXVhbGlmaWVkIFdlYiBJQ0EgRzI=","whitelist":false,"attachment":{"hash":"c551ff3d69db56e747169ab80b2fdea513f1de4806de98e0e34ab04da70a7566","size":2385,"filename":"HW4ktpkbc6tiWRVtXWUrZxqP505LD1tPqFHb3HiZbX8=.pem","location":"security-state-staging/intermediates/4557b165-1b70-4b52-a1df-a31b5fcc16f6.pem","mimetype":"app
lication/x-pem-file"},"pubKeyHash":"HW4ktpkbc6tiWRVtXWUrZxqP505LD1tPqFHb3HiZbX8=","crlite_enrolled":true,"id":"70588538-20e7-4b9a-980d-0d1bd77ff052","last_modified":1601517445529},{"schema":1601373029586,"derHash":"GKvW6cqQe7NnVNDARuu1Ddm5XVJ4JNlYGjG3UPz9uu8=","subject":"CN=Trustwave Global ECDSA P-256 Organization Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGgMUkwRwYDVQQDE0BUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMjU2IE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"f16bdfde574887cdf9b20fdd1a1ad5e789c2d8b5094a68dc63225d64c51f2d50","size":1329,"filename":"lZMwN7CwdUNqVdEULuLxoCtwEIC9qGjWWMelIDRtDNU=.pem","location":"security-state-staging/intermediates/9a14c734-72c1-49ae-8503-ff362f4d20d5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lZMwN7CwdUNqVdEULuLxoCtwEIC9qGjWWMelIDRtD
NU=","crlite_enrolled":false,"id":"dc0e3a1b-af1b-4795-a306-b6671eafd75f","last_modified":1601517445517},{"schema":1601373032433,"derHash":"YDiLdz0z6RQWSGE/NrkUnwFaEUN4us8+NpSGT/2kJuw=","subject":"CN=HydrantID EV SSL CA G2,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMTAwLgYDVQQKDCdIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHzAdBgNVBAMMFkh5ZHJhbnRJRCBFViBTU0wgQ0EgRzI=","whitelist":false,"attachment":{"hash":"ba2cc602bd31081e17f7745ac462854773e79726958ff1b8a553cc7ecaba9db2","size":2389,"filename":"FpAps1LWs_UTm3xApHYkNccnnZX-7Wc_v8V0t70p6rg=.pem","location":"security-state-staging/intermediates/9a936f86-971e-4af3-ae70-ee94da9a5554.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FpAps1LWs/UTm3xApHYkNccnnZX+7Wc/v8V0t70p6rg=","crlite_enrolled":true,"id":"05c4f166-166c-46c7-853e-436884874fa9","last_modified":1601517445506},{"schema":1601373036712,"derHash":"T4OELx8Eqx4E1NjnUWZvyoLlGRyvwkBiv9H+d8AspLQ=","subject":"CN=e-Szigno Class3 CA
2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHMxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxIDAeBgNVBAMMF2UtU3ppZ25vIENsYXNzMyBDQSAyMDE3","whitelist":false,"attachment":{"hash":"71132024dc6f9eb4be8dbf1a0131b491fae4efd3d711ad58c399ed1ebdd355ef","size":1662,"filename":"X4MOqhXQM4obftW5dgADxiIIIaZwoNHvuYhRJq7eVe0=.pem","location":"security-state-staging/intermediates/b983723e-4861-4166-a5e3-5b415cee2a65.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"X4MOqhXQM4obftW5dgADxiIIIaZwoNHvuYhRJq7eVe0=","crlite_enrolled":false,"id":"f369caa4-59c3-40ea-ab24-534bda082949","last_modified":1601517445495},{"schema":1601373022448,"derHash":"sarhvNVV6KPR492o7ITnV8VSZVNEzj/uu6+Y6JXb7aw=","subject":"CN=QuoVadis Europe SSL CA G2,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFMxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEiMCAGA1UEAwwZUXVvVmFkaXMgRXVyb3BlIFNTTCBDQSBHMg==","whitelist":false,"attachment":{"hash
":"dfb31ebff112bccbef0ba90c29987f9962823acb59f69bd984351d9e2c7e22df","size":2381,"filename":"XOogr9_VItHwTOA_JogutdX4V06tVw9btHQLa2tR0_A=.pem","location":"security-state-staging/intermediates/d277bb95-8c7d-4bda-b42b-841c07743fc9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XOogr9/VItHwTOA/JogutdX4V06tVw9btHQLa2tR0/A=","crlite_enrolled":true,"id":"fbb49441-fc76-4afd-b067-1c2f1578798d","last_modified":1601517445484},{"schema":1601373026753,"derHash":"mRe/2FNziYXkbJIEGUEOlmwxaYJ2nnGBfifQOEu+Nnk=","subject":"CN=certSIGN Public CA,O=CERTSIGN SA,C=RO","subjectDN":"MFkxCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEbMBkGA1UEAxMSY2VydFNJR04gUHVibGljIENBMRcwFQYDVQRhEw5WQVRSTy0xODI4ODI1MA==","whitelist":false,"attachment":{"hash":"d61a1b35a91c710f44d6b989faabe0cbe91a89dbc701983bdbf2602b85bf3038","size":2312,"filename":"IGxtWhsxuC58R149YREUyaqPK7jXR9no_MMC227zRVo=.pem","location":"security-state-staging/intermediates/f32e48dd-f449-4b02-b440-48880750748b.pem","mimetype":"application/
x-pem-file"},"pubKeyHash":"IGxtWhsxuC58R149YREUyaqPK7jXR9no/MMC227zRVo=","crlite_enrolled":false,"id":"c16caddc-a295-485f-a252-08d162ad74da","last_modified":1601517445472},{"schema":1601373025354,"derHash":"gpj8QnBMTtd0tNsxBSkmC1JKkHUlKh0Ks44G8bmoNJk=","subject":"CN=CertCloud RSA TLS CA,O=CertCloud Pte. Ltd.,C=SG","subjectDN":"MEoxCzAJBgNVBAYTAlNHMRwwGgYDVQQKExNDZXJ0Q2xvdWQgUHRlLiBMdGQuMR0wGwYDVQQDExRDZXJ0Q2xvdWQgUlNBIFRMUyBDQQ==","whitelist":false,"attachment":{"hash":"59bb133020146d20f0d963a09c0520755e8a49c60982dbc377b4072ee287be19","size":2073,"filename":"Wz3-4Wr1VbAmx0vpewGzhrRMM8dT5kZ8_PHc1S6WqYs=.pem","location":"security-state-staging/intermediates/3f52eb76-c690-4e12-a4e3-67a11e5c69ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wz3+4Wr1VbAmx0vpewGzhrRMM8dT5kZ8/PHc1S6WqYs=","crlite_enrolled":false,"id":"63cade8d-29ec-4030-993f-05ec44965f59","last_modified":1601517445461},{"schema":1601373031043,"derHash":"ozAX2d9JTAnVhwkQdAOu5GG5Rh6BujlcKMNmk8J9GYY=","subject":"CN=
GlobalSign GCC R3 UK EV QWAC CA 2020,O=GMO GlobalSign Ltd,C=GB","subjectDN":"MFkxCzAJBgNVBAYTAkdCMRswGQYDVQQKExJHTU8gR2xvYmFsU2lnbiBMdGQxLTArBgNVBAMTJEdsb2JhbFNpZ24gR0NDIFIzIFVLIEVWIFFXQUMgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"ef3f87aa1971aaebb3accc4f6b43e518068a070c3df5324fafc49bd6faea510d","size":2040,"filename":"_cLNIs90Pu4zrpnBuJdA-wTl2BrxEVUjup-MFOMyr1g=.pem","location":"security-state-staging/intermediates/6aff1d72-b020-44ed-9747-7e0d0daeebe1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/cLNIs90Pu4zrpnBuJdA+wTl2BrxEVUjup+MFOMyr1g=","crlite_enrolled":false,"id":"0de3a855-871f-4807-8a57-6455d04ddf13","last_modified":1601517445450},{"schema":1601373028185,"derHash":"NH0Y3Mwu/FGpIOen+7B7+9o1YTaB+C3KXExyuwyDwDU=","subject":"CN=VR IDENT SSL CA 2020,O=Fiducia & GAD IT AG,C=DE","subjectDN":"MEoxCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMR0wGwYDVQQDDBRWUiBJREVOVCBTU0wgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"4158e246be129509cb8d8eb1
4b647517fea0196e81a9d593f4b8f64a11a6414f","size":2357,"filename":"fQUctsUYoew1aFnAFT0prf-kJmkVNqkPo2jJ5Jm9RaA=.pem","location":"security-state-staging/intermediates/c5cd11fd-b913-4de0-8e55-2cba38801c23.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fQUctsUYoew1aFnAFT0prf+kJmkVNqkPo2jJ5Jm9RaA=","crlite_enrolled":true,"id":"8b7ef937-682a-4391-bc17-7b736da1f754","last_modified":1601517445438},{"schema":1601373023867,"derHash":"ZZt6UYxsnrGKoes1rrp6AkeBe4mMH6GED5fSh32aIOQ=","subject":"CN=JPRS Domain Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"19f63552805d608f671589717902feefe03afc5da94e20c555f68ef484a23b46","size":1772,"filename":"n1ufb8l1_ENW_uOKNKgHIeBe_NgVI39f0IzwWmCVHvE=.pem","location":"security-state-staging/intermediates/eb37192b-3adc-4149-a4a6-22c2a4
989853.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n1ufb8l1/ENW/uOKNKgHIeBe/NgVI39f0IzwWmCVHvE=","crlite_enrolled":true,"id":"4c46f44e-56a4-4453-aa72-bde6a760e021","last_modified":1601517445427},{"schema":1601373021078,"derHash":"MCQkQ/aJWpRWDkjk3/cgU26vUWPLQvXod0AqveL4Ynw=","subject":"CN=QuoVadis Global SSL ICA G3,O=QuoVadis Limited,C=BM","subjectDN":"ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMw==","whitelist":false,"attachment":{"hash":"63f37d712386cb1b4ab3fb0368f861aeb7ba74ec9b9bc7ecdd247bcf94725693","size":2373,"filename":"KM3iZPSceB-hgYuNI-cSg4LRgTiUxCeGjrfXRQAY6Rs=.pem","location":"security-state-staging/intermediates/39871409-2b2c-4c4c-bbfe-718a4f28b294.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KM3iZPSceB+hgYuNI+cSg4LRgTiUxCeGjrfXRQAY6Rs=","crlite_enrolled":true,"id":"d6eb39bf-c00f-470b-b66d-4cbff41072d6","last_modified":1601517445416},{"schema":1601373015521,"derHash":"y2Zmsyv/Lv7cxBh98Um
m00pdELcWW5z/KmfA4xGu7tc=","subject":"CN=QuoVadis Europe EV SSL CA G1,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MFYxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjElMCMGA1UEAwwcUXVvVmFkaXMgRXVyb3BlIEVWIFNTTCBDQSBHMQ==","whitelist":false,"attachment":{"hash":"990290f2ea4ff420df521c3b3851971e7be41a8508394faa2cb562a69bce9e55","size":2385,"filename":"WkWVWx1-X3CuwtFGJvDjdr5hOX8PeMryJG2Va7Y6cj8=.pem","location":"security-state-staging/intermediates/c109e409-4365-46b3-9ad9-fa7bfb71916e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WkWVWx1+X3CuwtFGJvDjdr5hOX8PeMryJG2Va7Y6cj8=","crlite_enrolled":true,"id":"be8ee1dd-ae8d-4533-b3df-85448960d676","last_modified":1601517445405},{"schema":1601373018308,"derHash":"AD9x3EggIWV1/Fqs/jsa63b3Kupbjo/O/IC59RekphI=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3Vpbm
cgQ0EgMDU=","whitelist":false,"attachment":{"hash":"312e807dea2263ef605990bfa0b57b238b64d9fea0fc945e37f48f3e6246d576","size":1329,"filename":"k09MzmwiRPkPmkpgmUtprMk_uALSVedNLtfOBkCMvXE=.pem","location":"security-state-staging/intermediates/b67ac8d6-d3f8-4aff-a8b2-27648de5ca88.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k09MzmwiRPkPmkpgmUtprMk/uALSVedNLtfOBkCMvXE=","crlite_enrolled":false,"id":"8c986b7e-d08c-4c76-975d-f8d0f5c5e972","last_modified":1601517445383},{"schema":1601373019690,"derHash":"q7P/KZqhuu/BJ4gYxCQ4iu97KWUVlcYBlOeNlDaUaAs=","subject":"CN=QuoVadis EV SSL ICA G3,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpcyBFViBTU0wgSUNBIEcz","whitelist":false,"attachment":{"hash":"d81fa5cb3c1ec6bbe8f1e276fd6412ef30e25f49781b84d8eb23f85d412845ef","size":2389,"filename":"S0SyfMJffMM5SZRx8KboH82naxKe-XlFltR_gu3qSzg=.pem","location":"security-state-staging/intermediates/399cee33-9586-41bb-bc42-6810dfa
7af54.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S0SyfMJffMM5SZRx8KboH82naxKe+XlFltR/gu3qSzg=","crlite_enrolled":true,"id":"57e04007-0e32-49c8-878b-c113ac0b0204","last_modified":1601517445372},{"schema":1601373014084,"derHash":"gBxSLTrROOTwXUZ+o2nBzCdgeL8oQBjQUl67vFNCyDY=","subject":"CN=JPRS Organization Validation Authority - G4,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzQ=","whitelist":false,"attachment":{"hash":"5073da9684a445c50c1705a593be556ce4f1fa98e69b8c50acc426e2088d88b7","size":1788,"filename":"xOSyACYAjsQ-aXD2iEFnKCVOcUsX8AVVqCGczMoh8lw=.pem","location":"security-state-staging/intermediates/37978617-d633-4b10-9ad5-20fb1eb251e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xOSyACYAjsQ+aXD2iEFnKCVOcUsX8AVVqCGczMoh8lw=","crlite_enrolled":true,"id":"6e8f2f2b-bcba-4f33-94ec-0a957b820ea2","last_
modified":1601517445361},{"schema":1601373009905,"derHash":"WAuzqxJ/XhPpQK5zZePGmmKtIE1/36RRWS/nxH3AKpU=","subject":"CN=Prodrive Technologies B.V. OV SSL Issuing CA,O=Prodrive Technologies B.V.,C=NL","subjectDN":"MGkxCzAJBgNVBAYTAk5MMSMwIQYDVQQKExpQcm9kcml2ZSBUZWNobm9sb2dpZXMgQi5WLjE1MDMGA1UEAxMsUHJvZHJpdmUgVGVjaG5vbG9naWVzIEIuVi4gT1YgU1NMIElzc3VpbmcgQ0E=","whitelist":false,"attachment":{"hash":"f33b1ca67bc2f7ef2190fc43c1d09060a4d6392a8969577007ae2dcf61b1b92a","size":1788,"filename":"-wd4uhPIbo8yHwCQuKSPir6tNrh9C4xO-yIp2mXFvWw=.pem","location":"security-state-staging/intermediates/cf2dd791-1cb8-4120-9b15-9753e5636426.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+wd4uhPIbo8yHwCQuKSPir6tNrh9C4xO+yIp2mXFvWw=","crlite_enrolled":true,"id":"4cc64cd6-766e-45df-8736-8ed3f0b8ed2b","last_modified":1601517445350},{"schema":1601373011329,"derHash":"FjzS/K0NaofI2vzgVvWU87U7kXwPkl1A2SJY6id/xPQ=","subject":"CN=QuoVadis Qualified Web ICA G1,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MH
AxCzAJBgNVBAYTAk5MMRcwFQYDVQRhDA5OVFJOTC0zMDIzNzQ1OTEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xJjAkBgNVBAMMHVF1b1ZhZGlzIFF1YWxpZmllZCBXZWIgSUNBIEcx","whitelist":false,"attachment":{"hash":"d4292d809a630e5b57cdc50d9205799bd35a8b3a0c8cf33366d00d5e3e8cdf78","size":2499,"filename":"EWJY2DWEXe27fystTVa-0cHUmGdi6igRAeyxOTlgFDY=.pem","location":"security-state-staging/intermediates/c5792cf8-8999-4ef3-be9d-129c9886ac27.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EWJY2DWEXe27fystTVa+0cHUmGdi6igRAeyxOTlgFDY=","crlite_enrolled":true,"id":"732922a9-4172-428e-90da-844ecf1ead96","last_modified":1601517445339},{"schema":1601373012722,"derHash":"a0O0wkOqLZlEDA8UvexSMe7GPoaq8jdspwAgKEWNxyY=","subject":"CN=HydrantID EV SSL ICA G1,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMTAwLgYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxIDAeBgNVBAMTF0h5ZHJhbnRJRCBFViBTU0wgSUNBIEcx","whitelist":false,"attachment":{"hash":"b63de0fbdd8dbe519e4d6f674
c13166625a717f8e6156297f07badf1c8b0d8fc","size":2438,"filename":"EnmchGPCp5YYVoSwFIxrS6A7RJUxstcXt8NlMXfA6Tw=.pem","location":"security-state-staging/intermediates/fb391543-5f49-46ed-80a5-42df9aea0b5c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EnmchGPCp5YYVoSwFIxrS6A7RJUxstcXt8NlMXfA6Tw=","crlite_enrolled":true,"id":"80645ecf-a0a4-4cd4-bda9-ff2edd1cad90","last_modified":1601517445327},{"schema":1601373006798,"derHash":"iZlLbZ2d3/9of6vT5zQs3YUi1mH1786Oar3rJaBPECM=","subject":"CN=QuoVadis Europe SSL CA G1,O=QuoVadis Trustlink BVBA,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMSAwHgYDVQQKExdRdW9WYWRpcyBUcnVzdGxpbmsgQlZCQTEiMCAGA1UEAxMZUXVvVmFkaXMgRXVyb3BlIFNTTCBDQSBHMQ==","whitelist":false,"attachment":{"hash":"4446a8961707823fad23675d037ebcc454ecda2fe98586b7839466271d4521a2","size":2369,"filename":"k3XnEYQCK79AtL9GYnT_nyhsabas03V-bhRQYHQbpXU=.pem","location":"security-state-staging/intermediates/0e88e01d-3cf6-41bf-82fa-ec760632f6d9.pem","mimetype":"application/x-pem-file"},"pub
KeyHash":"k3XnEYQCK79AtL9GYnT/nyhsabas03V+bhRQYHQbpXU=","crlite_enrolled":true,"id":"3c925fcd-4777-4caf-95a1-e9b43fded89a","last_modified":1601517445305},{"schema":1601373000857,"derHash":"yhTPmzCboDK7IZEMGu2uTSn+Bla0+L/6I8vpTUMcBnQ=","subject":"CN=Entrust Certification Authority - DE QWAC1,O=Entrust Datacard Deutschland GmbH,C=DE","subjectDN":"MIGIMTMwMQYDVQQDDCpFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gREUgUVdBQzExGDAWBgNVBGEMD1ZBVERFLTExOTI2NDMxNjEqMCgGA1UECgwhRW50cnVzdCBEYXRhY2FyZCBEZXV0c2NobGFuZCBHbWJIMQswCQYDVQQGEwJERQ==","whitelist":false,"attachment":{"hash":"4e133243cde83dcbe732252fbf43b8518690328d9c29c7647170c786d537e396","size":1792,"filename":"ZWhmaUZRaiEz-pmpHFYrrwb8L7sV4g8Lss57AOkaaLg=.pem","location":"security-state-staging/intermediates/caa2d710-6be9-4877-98e8-e7eb89e1ece1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZWhmaUZRaiEz+pmpHFYrrwb8L7sV4g8Lss57AOkaaLg=","crlite_enrolled":true,"id":"fb1542af-66aa-4793-a4a4-2ec82b62886f","last_modified":160151744
5294},{"schema":1601373002455,"derHash":"jJegCPfOIfdG6vsuOuBgleVX0omjEMgsbzwC2fch5fg=","subject":"CN=VR IDENT EV SSL CA 2018,OU=VR IDENT,O=Fiducia & GAD IT AG,C=DE","subjectDN":"MGAxCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMREwDwYDVQQLDAhWUiBJREVOVDEgMB4GA1UEAwwXVlIgSURFTlQgRVYgU1NMIENBIDIwMTg=","whitelist":false,"attachment":{"hash":"27785b9964ca41a7f924e4715e32d3827904bec2c860b8f2f76367447209d89d","size":2089,"filename":"WDFtLnObNhLxa9b3x6LeuoWAZeafyD6K2Il4Wi_HzF0=.pem","location":"security-state-staging/intermediates/7923969e-6dfe-452f-ad52-6c9e18f6b1f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WDFtLnObNhLxa9b3x6LeuoWAZeafyD6K2Il4Wi/HzF0=","crlite_enrolled":true,"id":"35357782-dccb-4d60-914f-70a972059474","last_modified":1601517445272},{"schema":1601373003919,"derHash":"yKYQupQXdw0sAt4ivKjFakKK916ONU76NsVoIh3bfPw=","subject":"CN=WISeKey CertifyID SSL GB CA 2,O=WISeKey,C=CH","subjectDN":"MEcxCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSYwJAYDVQQDEx1XSVNlS
2V5IENlcnRpZnlJRCBTU0wgR0IgQ0EgMg==","whitelist":false,"attachment":{"hash":"25f18c47254a897f57257e91e33dccd040b88a2d2805589a22993da2900db84f","size":1699,"filename":"ktJRzJxhVE71wdby3vum5K-dgm6QylD4z-l9CBGOUQU=.pem","location":"security-state-staging/intermediates/157b7e9c-098b-4150-9256-1327b4494c1d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ktJRzJxhVE71wdby3vum5K+dgm6QylD4z+l9CBGOUQU=","crlite_enrolled":true,"id":"95dfd144-a5fe-481a-8864-499dbc671323","last_modified":1601517445261},{"schema":1601372999143,"derHash":"8RRGn7gHeBM6H3Dk2DOO2rl91CzrjswByvtw1rh98R4=","subject":"CN=certSIGN Web CA,O=CERTSIGN SA,C=RO","subjectDN":"MFYxCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEYMBYGA1UEAxMPY2VydFNJR04gV2ViIENBMRcwFQYDVQRhEw5WQVRSTy0xODI4ODI1MA==","whitelist":false,"attachment":{"hash":"d637585d0fa1d3a2b6cea2a2ab6f2b7d30229bc1eb350aeb2b8cc2f529b5998a","size":2308,"filename":"G6NjfcFmFAa5DouUTqNGb3I5tG34kmES3evs_0ubJ68=.pem","location":"security-state-staging/intermediates
/41d41219-98b5-42b0-af05-16477adebf5b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G6NjfcFmFAa5DouUTqNGb3I5tG34kmES3evs/0ubJ68=","crlite_enrolled":true,"id":"16c01cde-d169-45ca-b52b-e3c8ff102c4c","last_modified":1601517445250},{"schema":1601372996248,"derHash":"Kyz67KvyJm/U+2UF8zQrklFOvm+nwIy2y9SYj2r9F70=","subject":"SERIALNUMBER=ZZZZZZB9,CN=Siemens Issuing CA Internet Server 2017,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGnMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQjkxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMTAwLgYDVQQDDCdTaWVtZW5zIElzc3VpbmcgQ0EgSW50ZXJuZXQgU2VydmVyIDIwMTc=","whitelist":false,"attachment":{"hash":"399b1d081c0af091e4829f3801f90b9e266db1e4e3c5d6a03e438d33ecc67c14","size":2788,"filename":"f4p5PJI5fILNPQJUbuMdNzd-JMnwHZgjMi4ZjRUXTTk=.pem","location":"security-state-staging/intermediates/bd9324bb-91f0-4fa2-9e2f-01a7635399bf.pem","mimetype":"application/x-p
em-file"},"pubKeyHash":"f4p5PJI5fILNPQJUbuMdNzd+JMnwHZgjMi4ZjRUXTTk=","crlite_enrolled":true,"id":"c146412b-6547-40f7-b3b1-14568ce07444","last_modified":1601517445239},{"schema":1601372993406,"derHash":"Kg4/KneoDcvlzVLVDWUHbr03+tUx2xDWoThaVX97cl0=","subject":"CN=e-Szigno Class2 SSL CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJDAiBgNVBAMMG2UtU3ppZ25vIENsYXNzMiBTU0wgQ0EgMjAxNw==","whitelist":false,"attachment":{"hash":"bcb11e505804477ce4429c8ef9cc22d043e0f59d222d5e4524ec9158cc8e972b","size":1666,"filename":"HGXB7TIfcoLqLINF3LJD2A9t3V4VdHjcBv6LboViQMo=.pem","location":"security-state-staging/intermediates/30bc71d2-6f0d-4d55-8e79-2d8b4e3ca301.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HGXB7TIfcoLqLINF3LJD2A9t3V4VdHjcBv6LboViQMo=","crlite_enrolled":false,"id":"b35f777c-ccb5-4262-bd7b-171a05274855","last_modified":1601517445215},{"schema":1601372987894,"de
rHash":"kfGc5QPJ/n/5WH2O++9zFarud9wtFFJhJkk7Stb+gB8=","subject":"CN=Trusted Root TLS CA SHA256 G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1UcnVzdGVkIFJvb3QgVExTIENBIFNIQTI1NiBHMw==","whitelist":false,"attachment":{"hash":"9e03d57a2b38ff0564d3f320d536aae856aa3db18618f722e03e7da8e2a0d9eb","size":1674,"filename":"hMdIk_Qh87wkhjuY3vWYC85yuCKrEfbi9b3j7xJNPec=.pem","location":"security-state-staging/intermediates/d02d6906-c341-4db4-8d1d-1e2fe228c6ba.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hMdIk/Qh87wkhjuY3vWYC85yuCKrEfbi9b3j7xJNPec=","crlite_enrolled":false,"id":"1b0ddc8f-9147-471c-b076-471f56173514","last_modified":1601517445204},{"schema":1601372992040,"derHash":"Z63RFmsCCuYbj1/JaBPATCqliZYHloZVcqPH5zdhPf0=","subject":"CN=R3,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSMw==","whitelist":false,"attachment":{"hash":"c298ec17b9257dbfb7f36280caade22c6
317186c146b5fdd5792bcb77afced29","size":1825,"filename":"jQJTbIh0grw0_1TkHSumWb-Fs0Ggogr621gT3PvPKG0=.pem","location":"security-state-staging/intermediates/4d4b4f19-2a28-4629-813e-a946f8f93613.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jQJTbIh0grw0/1TkHSumWb+Fs0Ggogr621gT3PvPKG0=","crlite_enrolled":false,"id":"ceb5d877-bb7a-4afa-935a-747f6f6edb9a","last_modified":1601517445182},{"schema":1601372989273,"derHash":"nOJ0/9oMxIdiy3GxLHQgScco5h37wHCOP5yHHp696iI=","subject":"CN=QuoVadis EV SSL ICA G1,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDExZRdW9WYWRpcyBFViBTU0wgSUNBIEcx","whitelist":false,"attachment":{"hash":"95cf8df7fb366c8a374ed3369242ba3db91973c2101055c3f8282a0abaae2334","size":2032,"filename":"2ZnCTNQBrKShr4c1olKfwNG53KiL6qoNcQi65YGRBn8=.pem","location":"security-state-staging/intermediates/5e3cbdc7-e03a-4759-8d05-acfd67cfe11d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2ZnCTNQBrKShr4c1olKfwNG
53KiL6qoNcQi65YGRBn8=","crlite_enrolled":true,"id":"6abf86be-2d68-4ffb-8cc4-f106c8e6672a","last_modified":1601517445171},{"schema":1601372986478,"derHash":"LRQPILipbitNLxzFrKXloefcVqdJHlEJBpYPONLSGu8=","subject":"CN=GeoTrust EV RSA CA G2,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFUdlb1RydXN0IEVWIFJTQSBDQSBHMg==","whitelist":false,"attachment":{"hash":"f01753f65dd631ba19494a777a86712466e7e8b20994d581e672f52716f315bb","size":1873,"filename":"VHUagq80gsWdvnfHL_-2XSLZrAJk4I9d8fx6N8UvWGM=.pem","location":"security-state-staging/intermediates/478959ca-26d9-412d-85ae-28108bbb5141.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VHUagq80gsWdvnfHL/+2XSLZrAJk4I9d8fx6N8UvWGM=","crlite_enrolled":true,"id":"c79290ea-cb9f-41a0-978e-7fb294622f3c","last_modified":1601517445160},{"schema":1601372982248,"derHash":"BDerLsLCtIkClsE1A0sh2xRkNLgxfucDqoqpQ8XqUa4=","subject":"CN=Microsoft Azure TLS Issuing CA 01,O=Microsoft Corporation,C=US","s
ubjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMQ==","whitelist":false,"attachment":{"hash":"2777739491d74eeced727118790444484a83437e4e704c6697aa928b36a78bbb","size":2653,"filename":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=.pem","location":"security-state-staging/intermediates/775f7b60-b34b-4f8a-8784-5cb0bdf38b8e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=","crlite_enrolled":true,"id":"51cc8cd9-87cd-4af4-bd26-441c2d7b0365","last_modified":1601517445149},{"schema":1601372983592,"derHash":"zby+8W43I3cC+sxLVdOrkqF8+heDXhM3eqTSug/UegI=","subject":"CN=Cisco Meraki CA2,O=Cisco Systems\\, Inc.,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMRwwGgYDVQQKExNDaXNjbyBTeXN0ZW1zLCBJbmMuMRkwFwYDVQQDExBDaXNjbyBNZXJha2kgQ0Ey","whitelist":false,"attachment":{"hash":"3e5a1329226826601bdcf297eb985c9089c7df20bac76d529770ff0dcdc2bd3e","size":1752,"filename":"UNvyYoiHE-T
Jr4GNRJRQQVYLfL7m_X0ULyrRNeeQaKE=.pem","location":"security-state-staging/intermediates/533dec71-3955-4ae6-a2ac-45d8bbb06f61.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UNvyYoiHE+TJr4GNRJRQQVYLfL7m/X0ULyrRNeeQaKE=","crlite_enrolled":false,"id":"3de29e4b-6106-495c-92fc-1daf069924d7","last_modified":1601517445138},{"schema":1601372990662,"derHash":"vLwYxGO2HzoDOxDHSXTtiiwyivzWejONmHFQajUVQZ8=","subject":"CN=e-Szigno Class3 SSL CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJDAiBgNVBAMMG2UtU3ppZ25vIENsYXNzMyBTU0wgQ0EgMjAxNw==","whitelist":false,"attachment":{"hash":"141f708e3e75831bbe1ea4307dbbb1564e45c53708e07ce12ace8a2c364453d4","size":1670,"filename":"69Duo3nmlQnUEvqzlU27qTDaDY9K1yN0wfdopIs9Y7s=.pem","location":"security-state-staging/intermediates/35bc1459-db4e-4fbe-b245-efb1d8b3e9e6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"69Duo3nmlQnUEv
qzlU27qTDaDY9K1yN0wfdopIs9Y7s=","crlite_enrolled":true,"id":"5bb86eed-d806-4423-a0c3-14872f739af8","last_modified":1601517445127},{"schema":1601372984986,"derHash":"PuAnjfcfo8ElxM1IfwHXdGlOb8V+DNlMJO/XaRM5GOU=","subject":"CN=GTS Root R1,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMQ==","whitelist":false,"attachment":{"hash":"a7e1e9af45661eb891874dbac46389428139246fe7050143e9b0fd233f74e236","size":1926,"filename":"hxqRlPTu1bMS_0DITB1SSu0vd4u_8l8TjPgfaAp63Gc=.pem","location":"security-state-staging/intermediates/94d8f6ef-9901-4bbf-94da-34339f9a5963.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hxqRlPTu1bMS/0DITB1SSu0vd4u/8l8TjPgfaAp63Gc=","crlite_enrolled":false,"id":"91a079ca-bed6-440f-bcb5-bf985f4fa544","last_modified":1601517445115},{"schema":1601372976467,"derHash":"xnDHm/J3r357NKaqT6MERBgzxr0Bpwp+m3otlMHB+SY=","subject":"CN=certSIGN Qualified CA,O=CERTSIGN SA,C=RO","subjec
tDN":"MFwxCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEeMBwGA1UEAxMVY2VydFNJR04gUXVhbGlmaWVkIENBMRcwFQYDVQRhEw5WQVRSTy0xODI4ODI1MA==","whitelist":false,"attachment":{"hash":"22d738f384d471ab73b8f3d1ec90fd80d0f61bf77294a7139dc772f58bb58e1a","size":2316,"filename":"hztK7Nl786SeQOWatriSlHoTSUt-1THcFFIGKRr08bk=.pem","location":"security-state-staging/intermediates/f6b4147e-2d85-401b-b347-336b86f662e2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hztK7Nl786SeQOWatriSlHoTSUt+1THcFFIGKRr08bk=","crlite_enrolled":false,"id":"1389ee32-b744-400a-ab40-13406b869a0f","last_modified":1601517445104},{"schema":1601372979267,"derHash":"/PJvvBsqJadqtOqSssvvNn4BMQkcgC2kmJj3iuVLMPg=","subject":"CN=Valid Certificadora Digital SSL DV CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGgxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgRFYgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"551d256b9e4988053973e
8535709a6276d327de7d3ea6dd215e8c97deef2c69f","size":1768,"filename":"2UPUODmQxMZsvFIsK7JgdFSPY-kZ_qKP-7aXPh1_bx8=.pem","location":"security-state-staging/intermediates/f5bc3f86-9688-4e6c-ab8c-549cf8ae95c5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2UPUODmQxMZsvFIsK7JgdFSPY+kZ/qKP+7aXPh1/bx8=","crlite_enrolled":true,"id":"061b3372-2f09-4347-81b6-08192cd27c88","last_modified":1601517445093},{"schema":1601372977883,"derHash":"9nwj73v3QSgJ22sd09RKCNN1TZnKumoT96BcckkInIk=","subject":"CN=QuoVadis Global SSL ICA G2,O=QuoVadis Limited,C=BM","subjectDN":"ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMg==","whitelist":false,"attachment":{"hash":"f3d6221594115cd098f20f66a013d90aae3becd3c578a737a8e58a35230c208d","size":2016,"filename":"tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=.pem","location":"security-state-staging/intermediates/a696b13d-038b-4610-9f8b-38652860e9c7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"
tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=","crlite_enrolled":true,"id":"edd2b6b4-07a7-4a01-b28d-0dc72a371b84","last_modified":1601517445082},{"schema":1601372980668,"derHash":"NJ36QFjF4mMSOzmK55VXPE4TE8g/5o+TVWzV6AMbPH0=","subject":"CN=GTS Root R4,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSNA==","whitelist":false,"attachment":{"hash":"5f621c613a2dfb4502a29efcba11f0a010ef7954ea3464006115a9c300bdcdc1","size":764,"filename":"mEflZT5enoR1FuXLgYYGqnVEoZvmf9c2bVBpiOjYQ0c=.pem","location":"security-state-staging/intermediates/69f37a26-8b23-4ccd-8dfb-890714c89849.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mEflZT5enoR1FuXLgYYGqnVEoZvmf9c2bVBpiOjYQ0c=","crlite_enrolled":false,"id":"5431c1cf-28e7-4a86-9584-396994a62e7d","last_modified":1601517445068},{"schema":1601372969365,"derHash":"SP+LSUZox1IwS0i/6Bh1iYfe9lguXwm5IfS2C7PWqN0=","subject":"CN=Microsoft Azure TLS Issuing CA 06,O=
Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNg==","whitelist":false,"attachment":{"hash":"b800befca1341c29912755ead3105bdab854e4517a96d3492de73bd48b6aca1c","size":2121,"filename":"Wl8MFY-9zijGG8QgEHCAK5fhA-ydPZxaLQOFdiEPz3U=.pem","location":"security-state-staging/intermediates/c268b46a-b13f-4845-b57c-817f59e5ddbf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wl8MFY+9zijGG8QgEHCAK5fhA+ydPZxaLQOFdiEPz3U=","crlite_enrolled":true,"id":"0c4389a1-a439-4fb9-97da-d505176b0ce2","last_modified":1601517445044},{"schema":1601372970795,"derHash":"Yk1VdqZSshMHaL/oS5Ze7//ZFgPSXNX3FVp9wnidrDg=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDU=","whitelist":false,"attachment":{"hash":"2468274c7b25fd2b19
d422592a89957967b1d0b2667a280258fa181e4990089d","size":1512,"filename":"k09MzmwiRPkPmkpgmUtprMk_uALSVedNLtfOBkCMvXE=.pem","location":"security-state-staging/intermediates/cdd4bad1-dc39-4943-9512-33b9f4affd94.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k09MzmwiRPkPmkpgmUtprMk/uALSVedNLtfOBkCMvXE=","crlite_enrolled":false,"id":"eb66473b-5fea-4e7e-91ac-acc760eb3e08","last_modified":1601517445031},{"schema":1601372967809,"derHash":"iPwYvQcb4fvFP/vIAfA/WyxNqHu6DAmOK0gI8Z6rBf4=","subject":"CN=RNP ICPEdu OV SSL CA 2019,O=Rede Nacional de Ensino e Pesquisa - RNP,C=BR","subjectDN":"MGQxCzAJBgNVBAYTAkJSMTEwLwYDVQQKEyhSZWRlIE5hY2lvbmFsIGRlIEVuc2lubyBlIFBlc3F1aXNhIC0gUk5QMSIwIAYDVQQDExlSTlAgSUNQRWR1IE9WIFNTTCBDQSAyMDE5","whitelist":false,"attachment":{"hash":"292ae2e45b6a02ae65ded412e50c0abf3b623685bd49a8f6369bb4d5010c40d8","size":1784,"filename":"34rLDmx5N4tFlu_FTyuZjezXxhR4lhOmxmSZ9Pjypro=.pem","location":"security-state-staging/intermediates/49b02dda-6993-4e4a-8639-8061b575e3f6.p
em","mimetype":"application/x-pem-file"},"pubKeyHash":"34rLDmx5N4tFlu/FTyuZjezXxhR4lhOmxmSZ9Pjypro=","crlite_enrolled":true,"id":"d785db77-6704-4e55-b637-4f5c27423ab9","last_modified":1601517444997},{"schema":1601372974968,"derHash":"WS4aLwo0KEsOJvy0/tIq+FmEju6IIq22G0LatHov/cI=","subject":"CN=KPN PKIoverheid Server CA 2020,O=KPN B.V.,C=NL","subjectDN":"MEkxCzAJBgNVBAYTAk5MMREwDwYDVQQKDAhLUE4gQi5WLjEnMCUGA1UEAwweS1BOIFBLSW92ZXJoZWlkIFNlcnZlciBDQSAyMDIw","whitelist":false,"attachment":{"hash":"d6c29637397d41ba732890b7381061d5aa7ce2b45a6658ec8cd3e1578ec36521","size":2463,"filename":"Yao-RgzIlYNhXc65ch9IpKzSRFUSiL01Et8c6sN4XLU=.pem","location":"security-state-staging/intermediates/950d42f2-c7e5-4243-a5d9-0abf3ca120c8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Yao+RgzIlYNhXc65ch9IpKzSRFUSiL01Et8c6sN4XLU=","crlite_enrolled":true,"id":"aeaffa76-1733-4a39-a25e-4c5a82a04937","last_modified":1601517444985},{"schema":1601372966279,"derHash":"sIXXC5ZPGRpz5K8NVK56Dgeq/a+bcd0IYhOKtzJ
aJKI=","subject":"CN=GlobalSign,OU=GlobalSign ECC Root CA - R4,O=GlobalSign","subjectDN":"MFAxJDAiBgNVBAsTG0dsb2JhbFNpZ24gRUNDIFJvb3QgQ0EgLSBSNDETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbg==","whitelist":false,"attachment":{"hash":"babd66311bcbddf05b57e8c3547a7daa9175826a9288b0eddc4bce49d951e547","size":703,"filename":"CLOmM1_OXvSPjw5UOYbAf9GKOxImEp9hhku9W90fHMk=.pem","location":"security-state-staging/intermediates/92c74d74-33c3-442b-8f3d-283431becf54.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CLOmM1/OXvSPjw5UOYbAf9GKOxImEp9hhku9W90fHMk=","crlite_enrolled":false,"id":"f9805daa-ab6f-4827-8a6e-dfdda2f0530e","last_modified":1601517444974},{"schema":1601372972183,"derHash":"EDLGAB7WZKDNNDsTi8toYOIREBHD1fBlQPW+QRR4EqU=","subject":"CN=Legacy Technologies Intermediate,O=Legacy Technologies GmbH,C=DE","subjectDN":"MFsxCzAJBgNVBAYTAkRFMSEwHwYDVQQKExhMZWdhY3kgVGVjaG5vbG9naWVzIEdtYkgxKTAnBgNVBAMTIExlZ2FjeSBUZWNobm9sb2dpZXMgSW50ZXJtZWRpYXRl","whitelist":false,"attachme
nt":{"hash":"a9f261d0ad4e87bacd12e03d772b19c478c501880901e13afa12424a3fa0819b","size":1906,"filename":"1IN_wrqE9VVL4qRI4B5j8xzAQgZ1Wap_tLlGGVYhcEc=.pem","location":"security-state-staging/intermediates/6aba6c2c-da6f-4f90-9dbc-856cf2fefcdd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1IN/wrqE9VVL4qRI4B5j8xzAQgZ1Wap/tLlGGVYhcEc=","crlite_enrolled":false,"id":"de96a547-05fc-48e0-9eaf-ddeca013b4c1","last_modified":1601517444963},{"schema":1601372960748,"derHash":"l0uCB2FUzv9W7U21Yhhvc5SgL/OHqiBdY2eosI/3+qA=","subject":"CN=e-Szigno Online SSL CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJDAiBgNVBAMMG2UtU3ppZ25vIE9ubGluZSBTU0wgQ0EgMjAxNw==","whitelist":false,"attachment":{"hash":"0abdd69f4b3ccf85097142e285b47d52e0f91c59aa3e684dfa3c25bb3c8d6039","size":1666,"filename":"G_JwHP_ydSe7pufWcUyNckBrxBbnQ6Kmqw_OFPPiQI0=.pem","location":"security-state-staging/interme
diates/9386bab7-f17e-4eab-807c-9bac2367686a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G/JwHP/ydSe7pufWcUyNckBrxBbnQ6Kmqw/OFPPiQI0=","crlite_enrolled":false,"id":"492ac880-b573-41d2-9d22-5faff82d960e","last_modified":1601517444952},{"schema":1601372962115,"derHash":"pmUAegXv4YidZqQN7svGwaJx6RkAaBH9uNvX4GdSEtE=","subject":"CN=Siemens Issuing CA Internet Server 2020,O=Siemens,C=DE","subjectDN":"MFExMDAuBgNVBAMMJ1NpZW1lbnMgSXNzdWluZyBDQSBJbnRlcm5ldCBTZXJ2ZXIgMjAyMDEQMA4GA1UECgwHU2llbWVuczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"5ab8cb8a5146787aeb9025fd757a28e47c16893e2603c336459385a83349e955","size":1719,"filename":"uOU9UZhtVd_opiG5DbxESujdJ9UY8BLJblR-MMq9FbY=.pem","location":"security-state-staging/intermediates/35dbe988-7f8a-48f2-b67b-e95d314fa047.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uOU9UZhtVd/opiG5DbxESujdJ9UY8BLJblR+MMq9FbY=","crlite_enrolled":true,"id":"4e715493-0fb6-4d65-b11d-e75ae54c02e0","last_modified":1601517444941},{"schema
":1601372963495,"derHash":"MoZpFBLzDs5cBl/WL0OSpHYtHneBUzg1nfOQKZ+9Ye8=","subject":"CN=Thawte EV RSA CA G2,O=DigiCert Inc,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHDAaBgNVBAMTE1RoYXd0ZSBFViBSU0EgQ0EgRzI=","whitelist":false,"attachment":{"hash":"7ebde9e072e9a7bbb57c5810346275bf9ef461c815c5ae04aea58f3354aeb691","size":1873,"filename":"BLOV1UJgeWCwCAR8qU9OWMMcRY8vXk1zqu0szJamQxw=.pem","location":"security-state-staging/intermediates/a37b7f8c-a3b5-430e-89cf-8fe6b38bb6b2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BLOV1UJgeWCwCAR8qU9OWMMcRY8vXk1zqu0szJamQxw=","crlite_enrolled":true,"id":"07b39017-e019-4285-8987-c74c020ff536","last_modified":1601517444930},{"schema":1601372959354,"derHash":"TzXGucEAkF/yW7AcCiDr4zW87vJJzp/6HhHgYu1m/NE=","subject":"CN=DigiCert Trusted G4 TLS RSA SHA384 2020 CA1,O=DigiCert Inc,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxNDAyBgNVBAMTK0RpZ2lDZXJ0IFRydXN0ZWQgRzQgVExTIFJTQSBTSEEzODQgMjAyMCBDQTE
=","whitelist":false,"attachment":{"hash":"9b316d7bf93b9d342bdd4df71094c0e97165fde2c9cd97a6beca3f212dac4054","size":2479,"filename":"rjm2hHKNhSnI_7YDoWFLmDSpnIwnr9n9bbNU0dhDiJg=.pem","location":"security-state-staging/intermediates/e43a7840-9ea4-4b76-93c0-ab636088bcb6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rjm2hHKNhSnI/7YDoWFLmDSpnIwnr9n9bbNU0dhDiJg=","crlite_enrolled":false,"id":"7f65139b-c66f-48be-9e43-38f9d4c05309","last_modified":1601517444919},{"schema":1601372956559,"derHash":"ffTT70V5j4xDhPxwK6UqRM571imLFBYo1Kurx2ePZGc=","subject":"CN=Microsoft Azure TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNg==","whitelist":false,"attachment":{"hash":"8d704ee294bd149733993801e0cbad6deaa30f162b02e59509443d2f13b07b74","size":2653,"filename":"Wl8MFY-9zijGG8QgEHCAK5fhA-ydPZxaLQOFdiEPz3U=.pem","location":"security-state-staging/intermediates/
4637d3ff-89aa-452e-a12e-c9c34c573108.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wl8MFY+9zijGG8QgEHCAK5fhA+ydPZxaLQOFdiEPz3U=","crlite_enrolled":true,"id":"0d9dd2b6-0308-43ef-9472-413931d00b4c","last_modified":1601517444908},{"schema":1601372957982,"derHash":"kn6b/A11wxRgcMPzr91KLBD3ZSiRJJl8xSz9EgnnY8s=","subject":"CN=JPRS Domain Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"f1fff265badcfcfaa0e9addfdc7577271845c1a6c9766600e36f19dc9bb90333","size":1780,"filename":"n1ufb8l1_ENW_uOKNKgHIeBe_NgVI39f0IzwWmCVHvE=.pem","location":"security-state-staging/intermediates/e12f21c4-2828-41ca-8175-b204c12fa8e0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n1ufb8l1/ENW/uOKNKgHIeBe/NgVI39f0IzwWmCVHvE=","crlite_enrolled":true,"id":"1b37cd2f-53fb-4ecf-a206-6d0
e4afba506","last_modified":1601517444897},{"schema":1601372953629,"derHash":"NNinPuII2bzbDZVlIJNLTkDmlIJZbotvc8hCawEKb0g=","subject":"CN=GTS Root R3,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMw==","whitelist":false,"attachment":{"hash":"3febe52108c8006fec57c9deeef32126e877134377f5fed563452d77eb20ce23","size":764,"filename":"QXnt2YHvdHR3tJYmQIr0Paosp6t_nggsEGD4QJZ3Q0g=.pem","location":"security-state-staging/intermediates/b89eea26-3504-4cee-a2a0-c85c4b432b85.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QXnt2YHvdHR3tJYmQIr0Paosp6t/nggsEGD4QJZ3Q0g=","crlite_enrolled":false,"id":"89b91266-e037-419a-a184-4ab66dc534f2","last_modified":1601517444875},{"schema":1601372955108,"derHash":"2UdDKr3nt/qQ/C5rWRAbEoDg4cfk5A+jxoh//1en9M8=","subject":"CN=GTS Root R1,O=Google Trust Services LLC,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQ
DEwtHVFMgUm9vdCBSMQ==","whitelist":false,"attachment":{"hash":"56cc033ba7b1b7f111791affa1f1df410009c08c0b9a625d2bbe0a30aca502bb","size":1910,"filename":"hxqRlPTu1bMS_0DITB1SSu0vd4u_8l8TjPgfaAp63Gc=.pem","location":"security-state-staging/intermediates/8f214a61-eaa8-4dfd-92f7-5caa2913bd08.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hxqRlPTu1bMS/0DITB1SSu0vd4u/8l8TjPgfaAp63Gc=","crlite_enrolled":false,"id":"2aa716a5-b2ec-4655-ac65-199f085bd020","last_modified":1601517444864},{"schema":1601372952199,"derHash":"Ek6q8m9XDE+02J9dYQePFbiFNF/K8MV/NHfYxjtasm8=","subject":"CN=Actalis Extended Validation Server CA G3,O=Actalis S.p.A.,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGGMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEXMBUGA1UECgwOQWN0YWxpcyBTLnAuQS4xMTAvBgNVBAMMKEFjdGFsaXMgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZXJ2ZXIgQ0EgRzM=","whitelist":false,"attachment":{"hash":"332f65bf2214e30be6f0940dc3bde167397bf14fc227615cd42ca92857dd83bf","size":2641,"
filename":"Qit8ertDRalW2_YZANpfGKsGuNxcSeZ5UXpPg8_gmpE=.pem","location":"security-state-staging/intermediates/8479152b-cdd2-4fed-95c0-1c66f39292d6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Qit8ertDRalW2/YZANpfGKsGuNxcSeZ5UXpPg8/gmpE=","crlite_enrolled":true,"id":"f558856f-e8d1-44d9-810f-5e8dbdec4fed","last_modified":1601517444853},{"schema":1601372942202,"derHash":"vOcJE1XSQXo3+M/irI8XwnSIiLoO6pAAD8mA7PwtBB8=","subject":"CN=GlobalSign Atlas R6 EV TLS CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MFUxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSswKQYDVQQDEyJHbG9iYWxTaWduIEF0bGFzIFI2IEVWIFRMUyBDQSAyMDIw","whitelist":false,"attachment":{"hash":"7a27c45b53bfd5690bb01873eeb250e11a9b84a706cbbd33be1cafcbad5ed9a5","size":2402,"filename":"P7xnWSLQVg6f_MMaRe-f9TBAwDOlwdoyxweVGx8v2hY=.pem","location":"security-state-staging/intermediates/f027e922-5664-470d-ba39-6a79f14247f7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"P7xnWSLQVg6f/MMaRe+f9TBAwDOlwdoyxweVGx8v2h
Y=","crlite_enrolled":true,"id":"aa289f7c-0e5e-40b8-ba40-ac6f5788381c","last_modified":1601517444830},{"schema":1601372945081,"derHash":"N2EL91bKTDz6GGlsTBSXOOZEyp9nY4fsUBZzZdakXMo=","subject":"CN=Digidentity PKIoverheid Server CA 2020,O=Digidentity B.V.,C=NL","subjectDN":"MFkxCzAJBgNVBAYTAk5MMRkwFwYDVQQKDBBEaWdpZGVudGl0eSBCLlYuMS8wLQYDVQQDDCZEaWdpZGVudGl0eSBQS0lvdmVyaGVpZCBTZXJ2ZXIgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"c6efc5a8dbba37f6c4ba76f0ccd0f86ceb94b6b66cfd390227a747d4d83ff0b3","size":2487,"filename":"DnmLzHZn-pLaQKZ9c6lYR5BOqhZMey469UF5T1hne2k=.pem","location":"security-state-staging/intermediates/757831dd-1795-41f0-85b5-3bdaf5cb5601.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DnmLzHZn+pLaQKZ9c6lYR5BOqhZMey469UF5T1hne2k=","crlite_enrolled":true,"id":"aaf24e45-19fe-4a12-a2f3-d98e7fc92964","last_modified":1601517444819},{"schema":1601372949425,"derHash":"XEUjNNnJyaLqQsx3pxZeF5XunYTrcMt4S0fqnZKlgtk=","subject":"CN=Soluti CA - DV,O=SOLUTI - SOLUCOES E
M NEGOCIOS INTELIGENTES S/A,C=BR","subjectDN":"MF8xCzAJBgNVBAYTAkJSMTcwNQYDVQQKEy5TT0xVVEkgLSBTT0xVQ09FUyBFTSBORUdPQ0lPUyBJTlRFTElHRU5URVMgUy9BMRcwFQYDVQQDEw5Tb2x1dGkgQ0EgLSBEVg==","whitelist":false,"attachment":{"hash":"8265936e7b87a7845ad3792c1bfbde5b8469f44276f048e773d7d306888e920a","size":1756,"filename":"kAzMeuwjUBWfPL5YEYfQG9qK_ABDxl0BMvPtzwEPN7E=.pem","location":"security-state-staging/intermediates/4c65ee88-c3a0-444f-8224-2f3fbb1fde00.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kAzMeuwjUBWfPL5YEYfQG9qK/ABDxl0BMvPtzwEPN7E=","crlite_enrolled":true,"id":"6f0acdbe-0901-4b59-9d46-68ce3226c729","last_modified":1601517444808},{"schema":1601372946483,"derHash":"2sqgn/rY9m7bbtaXB6gnyeRMH5fEjwF5SF8gbXB7Pis=","subject":"CN=NII Open Domain CA - G5,O=National Institute of Informatics,C=JP","subjectDN":"MFsxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxIDAeBgNVBAMTF05JSSBPcGVuIERvbWFpbiBDQSAtIEc1","whitelist":false,"attachment":{"hash":"ef925783f9
86610c821619c78a724b477a9c2b4492f84e6446635c18799dc2f9","size":12623,"filename":"aj-4mbqOOY7cgtDqWtgGaLG69EShl59AQocV--hJAk8=.pem","location":"security-state-staging/intermediates/9f426597-caa0-4a27-92c0-7468bd0125b8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aj+4mbqOOY7cgtDqWtgGaLG69EShl59AQocV++hJAk8=","crlite_enrolled":true,"id":"fb29665c-f0b3-4e26-bf78-cb609e14309f","last_modified":1601517444797},{"schema":1601372943635,"derHash":"iwW2jMZZ5e0PyzjyyUL7/SAOby/5+F1jxplO9eCwJwE=","subject":"CN=ISRG Root X2,O=Internet Security Research Group,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMSkwJwYDVQQKEyBJbnRlcm5ldCBTZWN1cml0eSBSZXNlYXJjaCBHcm91cDEVMBMGA1UEAxMMSVNSRyBSb290IFgy","whitelist":false,"attachment":{"hash":"0a551cc852c7b0f054ae4c9e72acb7a6b4b1a8bab2d598b21063ab92fc36ecb6","size":1577,"filename":"diGVwiVYbubAI3RW4hB9xU8e_CH2GnkuvVFZE8zmgzI=.pem","location":"security-state-staging/intermediates/5715b967-abe0-4b73-a98a-855ba0fd7305.pem","mimetype":"application/x-pem-file"},
"pubKeyHash":"diGVwiVYbubAI3RW4hB9xU8e/CH2GnkuvVFZE8zmgzI=","crlite_enrolled":false,"id":"d12a8e04-5884-4328-a3e6-8c87d375a305","last_modified":1601517444786},{"schema":1601372940788,"derHash":"8Z1VzQij6kK9kVCAc4IxdN2SNwITwXf4JTF1badQilE=","subject":"CN=JPRS Domain Validation Authority - G4,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzQ=","whitelist":false,"attachment":{"hash":"d1fbc1604b7b78d8673b6b7247a33b5d142c6ebaa41b8e0412cedc570a24b3d7","size":1780,"filename":"KbEUDafDNIUlOxLiaD-8KAlxp-gea65O57qq4l5SFl8=.pem","location":"security-state-staging/intermediates/7a36f3a9-39e9-4ca5-9620-2343f7db4d81.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KbEUDafDNIUlOxLiaD+8KAlxp+gea65O57qq4l5SFl8=","crlite_enrolled":true,"id":"e816bed4-10ab-4c75-95fd-28eef887f190","last_modified":1601517444774},{"schema":1601372939433,"derHash":"a
eLQbDDzZhZhZekdaNHO5cxHWEqAIn52ZmCGwBByQes=","subject":"CN=GlobalSign,OU=GlobalSign Root CA - R2,O=GlobalSign","subjectDN":"MEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFIyMRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu","whitelist":false,"attachment":{"hash":"a9f6d16a93aa62ba7dbf378a10c0719ad51755b8d8276a662013037d6fbe06d3","size":1353,"filename":"iie1VXtL7HzAMF-_PVPR9xzT80kQxdZeJ-zduCB3uj0=.pem","location":"security-state-staging/intermediates/8d7aa4a5-2eaa-4bc6-9ce4-baf356fe12fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iie1VXtL7HzAMF+/PVPR9xzT80kQxdZeJ+zduCB3uj0=","crlite_enrolled":false,"id":"32fad39e-e70b-4cce-82ad-336077b42508","last_modified":1601517444763},{"schema":1601372938080,"derHash":"bINDiPKg0GlJxj788w13eC4lqCUBNZOeVJYCFFQO6kU=","subject":"CN=Root CA - G3,O=Root Networks\\, LLC,C=US","subjectDN":"MEExCzAJBgNVBAYTAlVTMRswGQYDVQQKDBJSb290IE5ldHdvcmtzLCBMTEMxFTATBgNVBAMMDFJvb3QgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"7a25b4650cf78598
d30bd2fd71f98a9514917410a9123cf8351a487e3ed9a093","size":1678,"filename":"ujBfMmfTX_3dCWQV89ZY2Tw4qhFf2vkDZrrqzCdlxfU=.pem","location":"security-state-staging/intermediates/70d0ee09-2bed-4e79-8b66-01b3f0e03488.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ujBfMmfTX/3dCWQV89ZY2Tw4qhFf2vkDZrrqzCdlxfU=","crlite_enrolled":true,"id":"3282e6f4-3c4c-4afc-990c-c8ea66eb46ae","last_modified":1601517444753},{"schema":1601372933832,"derHash":"BN5Hqc3TCRz8Xvaqo7fUtT4TxNTcAjZPbAtAh0LsPHY=","subject":"CN=Valid Certificadora Digital AlphaSSL CA 2018,O=VALID CERTIFICADORA DIGITAL,C=BR","subjectDN":"MGoxCzAJBgNVBAYTAkJSMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxNTAzBgNVBAMTLFZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBBbHBoYVNTTCBDQSAyMDE4","whitelist":false,"attachment":{"hash":"d9ce06bfe7f10679316c826ca701910ff485eff604b066946a2f9397ac536aa7","size":1772,"filename":"sXlIJeJFOOvNqrgfAHM5544oX_ySPnrWUt8M7eFF0BM=.pem","location":"security-state-staging/intermediates/05cdb21a-1510-4b11-bd15
-1aa8167bf850.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sXlIJeJFOOvNqrgfAHM5544oX/ySPnrWUt8M7eFF0BM=","crlite_enrolled":true,"id":"dc4f0d2e-5aa7-4bc9-aa1e-cc80241c3ea5","last_modified":1601517444742},{"schema":1601372932440,"derHash":"FkjOSrG7ZcSFyyI2x2j6u4ZRR9QmkVuSr7yoHpsu47w=","subject":"CN=e-Szigno Qualified Pseudonymous CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGDMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xFzAVBgNVBGEMDlZBVEhVLTIzNTg0NDk3MTAwLgYDVQQDDCdlLVN6aWdubyBRdWFsaWZpZWQgUHNldWRvbnltb3VzIENBIDIwMTc=","whitelist":false,"attachment":{"hash":"babeb483e7bc13a161427464ff4aa32b126458a9b7bd684609420f8d1a7cb6ab","size":1687,"filename":"9Mm86u4WwGKlrCcut3imyBIja3zt37WI7jdpaAucZOs=.pem","location":"security-state-staging/intermediates/942e6499-d923-4703-afab-4b554cc059b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9Mm86u4WwGKlrCcut3imyBIja3zt37WI7jdpaAucZOs=","crlite_enrolled":false,"id":"70bbc676-eea1-421c-94b
2-ac63a2a914ee","last_modified":1601517444730},{"schema":1601372936606,"derHash":"KfjhBN845hK/T1BTZbXQsLIN1OickIMGSE64N0weZtg=","subject":"CN=Trustwave Global ECDSA P-384 Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGcMUUwQwYDVQQDEzxUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMzg0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EsIExldmVsIDExITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjEQMA4GA1UEBxMHQ2hpY2FnbzERMA8GA1UECBMISWxsaW5vaXMxCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"53f8122b5a0fa5136d24ba312f1f8c41061bd774427e22f6d2a5e4fababcd5ea","size":1406,"filename":"dzssfumpi3rcJekwfVNUyE16SoxSUQ6SRbv3ubi21iE=.pem","location":"security-state-staging/intermediates/bf40f9cc-47d0-4977-b40d-52494d2164f1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dzssfumpi3rcJekwfVNUyE16SoxSUQ6SRbv3ubi21iE=","crlite_enrolled":true,"id":"d1f49640-2d22-442e-baeb-12b29866c49b","last_modified":1601517444720},{"schema":1601372929639,"derHash":"RAs3QW8
t6FLKOGFQ1hHsCvMd1Y2KJ/iCgVp+o+5oSO4=","subject":"CN=Bloomberg TLS CA,O=Bloomberg LP,C=US","subjectDN":"MD8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxCbG9vbWJlcmcgTFAxGTAXBgNVBAMTEEJsb29tYmVyZyBUTFMgQ0E=","whitelist":false,"attachment":{"hash":"e48dfa14c978c6bbeb5232c7e711afced2f56d20f367cd0a74a7100aac332138","size":1743,"filename":"wR5GLfX8HG7FhvZ7hnbmrGu1dPd6dkKlKYnCvd1A-v0=.pem","location":"security-state-staging/intermediates/45a8ebc6-a06b-4bc7-929b-39e2e2281328.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wR5GLfX8HG7FhvZ7hnbmrGu1dPd6dkKlKYnCvd1A+v0=","crlite_enrolled":false,"id":"cab1b209-9a94-4919-b365-866f22bf712d","last_modified":1601517444697},{"schema":1601372931031,"derHash":"GgdSmos/AdIx360qvfcYmSALtlzX4DxZ+oInJTM1W3Q=","subject":"CN=R4,O=Let's Encrypt,C=US","subjectDN":"MDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJSNA==","whitelist":false,"attachment":{"hash":"e7c443b15be49a4083c31378f2a1749ea59e73cd564b4d4e0465ea2d9d839146","size":1825,"filename":
"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX-WPd5kPLQM=.pem","location":"security-state-staging/intermediates/f67f63b4-6b9e-497c-9e0d-4d48d2fecb43.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5VReIRNHJBiRxVSgOTTN6bdJZkpZ0m1hX+WPd5kPLQM=","crlite_enrolled":false,"id":"e3ad0bd5-3dd1-4ea1-82b3-0c0f94f6811c","last_modified":1601517444686},{"schema":1601372928289,"derHash":"+2BghIRAqkWU/oEJdB76tAxWcysmxnw21tyUW7L+E88=","subject":"CN=Plex Devices High Assurance CA3,O=Plex\\, Inc.,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpQbGV4LCBJbmMuMSgwJgYDVQQDEx9QbGV4IERldmljZXMgSGlnaCBBc3N1cmFuY2UgQ0Ez","whitelist":false,"attachment":{"hash":"cc6eb0f3e51ae41188fd3477d2b097eb3bfd190c1e01766f9836d30c6d379aaa","size":1817,"filename":"7vFogPWQjRRrBULu9CTSZG05Zp5wI5psu-SVeew9nqo=.pem","location":"security-state-staging/intermediates/13dc02d5-16c2-4ff9-97ca-030b3dff8234.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7vFogPWQjRRrBULu9CTSZG05Zp5wI5psu+SVeew9nqo=","crlite_enrolled":false,
"id":"4708e8c7-a3b5-479c-b5d0-134bee4102fa","last_modified":1601517444665},{"schema":1601372921280,"derHash":"hIwDq2R9W9fg0MQ8C11nTMmJP4NquGOvjz8ThLVE2DM=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - INFRAESTRUCTURA,OU=Security Services,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGNMQswCQYDVQQGEwJFUzEeMBwGA1UECgwVRmlybWFwcm9mZXNpb25hbCBTLkEuMRowGAYDVQQLDBFTZWN1cml0eSBTZXJ2aWNlczESMBAGA1UEBRMJQTYyNjM0MDY4MS4wLAYDVQQDDCVBQyBGaXJtYXByb2Zlc2lvbmFsIC0gSU5GUkFFU1RSVUNUVVJB","whitelist":false,"attachment":{"hash":"caf1e07303de77d2971983851eb6cdc8b1662168dab0ef7c3dc3df46b70b3ec3","size":2300,"filename":"bB8VW561_UmK2rypmzhiK744upv6JxAcWmqJ9U-BKSI=.pem","location":"security-state-staging/intermediates/f6e7d27f-9711-4b7b-b226-a67deebbaadd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bB8VW561/UmK2rypmzhiK744upv6JxAcWmqJ9U+BKSI=","crlite_enrolled":true,"id":"c2d2bd34-f2d0-429f-94d4-dec518ff87f0","last_modified":1601517444654},{"schema":1601372925530,"derHash":"1ehNmmd
+bNpy3Rwbp62N38Je+sIgyKlXHOwnwQdVVwI=","subject":"CN=ICPEdu,O=Rede Nacional de Ensino e Pesquisa - RNP,C=BR","subjectDN":"MFExCzAJBgNVBAYTAkJSMTEwLwYDVQQKEyhSZWRlIE5hY2lvbmFsIGRlIEVuc2lubyBlIFBlc3F1aXNhIC0gUk5QMQ8wDQYDVQQDEwZJQ1BFZHU=","whitelist":false,"attachment":{"hash":"9b9ef56a8e9ed418407c8f8b194145af30c2c29e7dceb0b41ecc390660a45493","size":1735,"filename":"m_Zke2f6Q6acou-ZOFg-8OdSCzint_5uosSYaFXE3EM=.pem","location":"security-state-staging/intermediates/4d583b92-7ea5-4759-b075-69728740ce72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m/Zke2f6Q6acou+ZOFg+8OdSCzint/5uosSYaFXE3EM=","crlite_enrolled":true,"id":"b299bf16-90d0-453d-a0e2-c5d0e7350002","last_modified":1601517444643},{"schema":1601372922648,"derHash":"KXW6tR0A2GLQ4W7t74MGp1nGXNS58A2vUOzfy07DluQ=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3Vpbmc
gQ0EgMDY=","whitelist":false,"attachment":{"hash":"913a6555d1accfb6fad27f0850000c3dead37ef7c0c8683ab4771d4154dafae2","size":1329,"filename":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f_fOuKrsNiaSdA=.pem","location":"security-state-staging/intermediates/66ae0166-605b-4a81-ab78-0398cec83309.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f/fOuKrsNiaSdA=","crlite_enrolled":false,"id":"89936832-2d17-42a8-a1db-8f59f5e125c4","last_modified":1601517444632},{"schema":1601372917114,"derHash":"FRo+WWnGYW62N6hyKxdM/ZU4eqznjVfDvSPwyzAIGGo=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDY=","whitelist":false,"attachment":{"hash":"3f94a2f59b7465d9ec3993abf5497a7454a624492a51b0f1af1453447008be7a","size":1508,"filename":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f_fOuKrsNiaSdA=.pem","location":"security-state-stagin
g/intermediates/4514e223-4a1f-49ef-a2c4-d139874f652c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f/fOuKrsNiaSdA=","crlite_enrolled":false,"id":"819dff23-74b0-426a-9138-e6825bedf0d4","last_modified":1601517444601},{"schema":1601372924077,"derHash":"9i41qtNF+yU4Y8/A5lgjrNPn8IRtGbgybXCceRmiLX4=","subject":"CN=Trustwave Global ECDSA P-256 Domain Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGaMUMwQQYDVQQDEzpUcnVzdHdhdmUgR2xvYmFsIEVDRFNBIFAtMjU2IERvbWFpbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMSEwHwYDVQQKExhUcnVzdHdhdmUgSG9sZGluZ3MsIEluYy4xEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"ce8879da72592af4bbeefb13d2c925ca1eed8e33ca17d960a29ad9ae0835124d","size":1305,"filename":"a-5FBlZcydYwIUikW5fVH6MjJzVRhdPbb586imNLagE=.pem","location":"security-state-staging/intermediates/f37e490a-e2a3-407a-af53-85d666751ad9.pem","mimetype":"application/x-pem-fi
le"},"pubKeyHash":"a+5FBlZcydYwIUikW5fVH6MjJzVRhdPbb586imNLagE=","crlite_enrolled":false,"id":"ee174cb7-2285-43f5-824c-7d7f5e2e30f7","last_modified":1601517444583},{"schema":1601372918495,"derHash":"GGJqO3IREo1WNGnGVFV9E8k2bX/OyLlNtPCqfgWUQEE=","subject":"CN=Trustwave Global Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGQMTkwNwYDVQQDEzBUcnVzdHdhdmUgR2xvYmFsIEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EsIExldmVsIDExITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjEQMA4GA1UEBxMHQ2hpY2FnbzERMA8GA1UECBMISWxsaW5vaXMxCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"4e61dd89fb06d5da14f5a4b0f7a2328cd7ab2dea6544a50ea59b3e7d59167e32","size":2515,"filename":"V3f1xGezL0zYaRJqAhBzSKsvj3vEMlp9KGBwnV4be38=.pem","location":"security-state-staging/intermediates/77c9874e-b7a6-4206-8e33-ce46978876a8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V3f1xGezL0zYaRJqAhBzSKsvj3vEMlp9KGBwnV4be38=","crlite_enrolled":true,"id":"ace9be7d-afb4-4716-92d
e-ec68d8675c16","last_modified":1601517444570},{"schema":1601372915726,"derHash":"qzIDs+ogF9UJcmodgik+/8uMQs61LJrxwO7pa1wCvLo=","subject":"CN=Microsoft Azure TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNQ==","whitelist":false,"attachment":{"hash":"dab72f8a61c3d1392090bfa1d53928ff5e675385a1b03742a601a3457a12342f","size":2653,"filename":"4i4h0jN9NROr1xKJI-TQ1Q_ZIfUjPMXtmWUsDR3Pjiw=.pem","location":"security-state-staging/intermediates/cd6fd8ca-476d-4166-8171-47e097b3fba7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4i4h0jN9NROr1xKJI+TQ1Q/ZIfUjPMXtmWUsDR3Pjiw=","crlite_enrolled":true,"id":"cdcb7fdb-36d0-4d2b-b326-6537b6c0a255","last_modified":1601517444558},{"schema":1601372912986,"derHash":"6ywqgGxp/JY8TiSlu+og7U47hq55hzC7TupRv53jMyU=","subject":"CN=QuoVadis PKIoverheid Server CA 2020,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MF0xCzAJBg
NVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEsMCoGA1UEAwwjUXVvVmFkaXMgUEtJb3ZlcmhlaWQgU2VydmVyIENBIDIwMjA=","whitelist":false,"attachment":{"hash":"ccde215eb034050ccfc37f9fd71517cfb10b5c84d583a98f618475edced4e91a","size":2491,"filename":"Uru4DWx-N-Ju1LMOBUHr8l1GFqUp0S2IeniNdUJMn-Y=.pem","location":"security-state-staging/intermediates/cc1fdc96-5137-44e1-9e1a-08e1f30a8121.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uru4DWx+N+Ju1LMOBUHr8l1GFqUp0S2IeniNdUJMn+Y=","crlite_enrolled":true,"id":"92bb66a1-3ad5-4bf3-be95-3b89b37ac52a","last_modified":1601517444544},{"schema":1601372908508,"derHash":"J47PIR4lGOndmROvxYPusxJ8gYS8vu2q171k6J6MQxA=","subject":"CN=QuoVadis Grid ICA G2,O=QuoVadis Limited,C=BM","subjectDN":"MEcxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR0wGwYDVQQDExRRdW9WYWRpcyBHcmlkIElDQSBHMg==","whitelist":false,"attachment":{"hash":"8e15c43f71096a592c3d5819db25f4547bb4ef4f8232293578abdf314d149392","size":2353,"filename":"5rlUfVlXaS82HCd6DZI7w8rIa
mphHCdjnXNpXREZynQ=.pem","location":"security-state-staging/intermediates/58908f21-7e94-469e-8aa3-665248306d7d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5rlUfVlXaS82HCd6DZI7w8rIamphHCdjnXNpXREZynQ=","crlite_enrolled":true,"id":"d92d6955-6093-4c7a-8e45-d0a418aedd2f","last_modified":1601517444533},{"schema":1601372911404,"derHash":"BMGHHGhgdRU4n6Owz7g9vmpK8F6MgOdFcClp8kBgbjY=","subject":"CN=JPRS Organization Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"22b4bbcfbe3f75b06e7578a6a45c84da9c0262d68c36a8114773ff9a455d842b","size":1788,"filename":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A-XzOekYtqEbM=.pem","location":"security-state-staging/intermediates/0f69bb89-fec3-43e8-baca-4b3ed464ca4c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"czSVq7DFg6MhD0
LtPxWJ2PxCsWfDS7A+XzOekYtqEbM=","crlite_enrolled":true,"id":"f9117b3e-e330-435a-a6d7-19d7e7d0173c","last_modified":1601517444511},{"schema":1601372907081,"derHash":"BeQAXbDDgvO9ZrR3KekBFXdgG/b3sofppSztcQ0lg0Y=","subject":"CN=Microsoft RSA TLS CA 02,O=Microsoft Corporation,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xIDAeBgNVBAMTF01pY3Jvc29mdCBSU0EgVExTIENBIDAy","whitelist":false,"attachment":{"hash":"b31f15756dd2424f4c72909e8e5489c3443c030299ab3270a47adebded78e565","size":1914,"filename":"1wMGTin0PoCN5O41h0-XIHXuzGRwDEa8ehHf7wSdSQE=.pem","location":"security-state-staging/intermediates/2f4de690-8167-44de-9c57-c55ac9aad999.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1wMGTin0PoCN5O41h0+XIHXuzGRwDEa8ehHf7wSdSQE=","crlite_enrolled":true,"id":"d349fd50-98e3-4121-b014-e22fcf4058f0","last_modified":1601517444489},{"schema":1601473892209,"derHash":"DjTMNfZt4MBuHZAeJYCWFULsLi+rF1eDfQnP42VHlmw=","subject":"CN=ISSAuth RSA EV CA,O=INTEGRITY Secu
rity Services LLC,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMSgwJgYDVQQKEx9JTlRFR1JJVFkgU2VjdXJpdHkgU2VydmljZXMgTExDMRowGAYDVQQDExFJU1NBdXRoIFJTQSBFViBDQQ==","whitelist":false,"attachment":{"hash":"b03ac152020dfd148bdbce043b79cdde718f7f398e6c2974784e2d12ea728c21","size":2117,"filename":"JuVSbm2PtOMQrBijLX2uh7DV87h-dofG6_8CWgsoUso=.pem","location":"security-state-staging/intermediates/3c02cc5d-9eb8-44c2-b42c-833613b0c0de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JuVSbm2PtOMQrBijLX2uh7DV87h+dofG6/8CWgsoUso=","crlite_enrolled":false,"id":"9e780ac3-b573-43c8-957f-b2d5a2a57492","last_modified":1601517444478},{"schema":1601473893770,"derHash":"Roc0T0cTq9A9rZGZQoxq1qVhRGKsO9efsPDBpW9KIGU=","subject":"CN=ISSAuth ECC EV CA,O=INTEGRITY Security Services LLC,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMSgwJgYDVQQKEx9JTlRFR1JJVFkgU2VjdXJpdHkgU2VydmljZXMgTExDMRowGAYDVQQDExFJU1NBdXRoIEVDQyBFViBDQQ==","whitelist":false,"attachment":{"hash":"bb49012e57337e767503078ee15ddaed516c3a49b29affe8504
ebd31287ba003","size":1280,"filename":"CtBkdSMYFcbDm93WqDl2w4aG4lRl0t4pSXZrBwxP4NQ=.pem","location":"security-state-staging/intermediates/08f3f015-50b1-42f7-910b-1d194b7c172d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CtBkdSMYFcbDm93WqDl2w4aG4lRl0t4pSXZrBwxP4NQ=","crlite_enrolled":false,"id":"ae201e28-14a4-4ab0-abc8-83d58b676aa1","last_modified":1601517444466},{"schema":1601473896669,"derHash":"k3CbW9sMdo/JaftJZYaCGNbehqaib4E7cm/0aXZgfGQ=","subject":"CN=ISSAuth RSA OV CA,O=INTEGRITY Security Services LLC,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMSgwJgYDVQQKEx9JTlRFR1JJVFkgU2VjdXJpdHkgU2VydmljZXMgTExDMRowGAYDVQQDExFJU1NBdXRoIFJTQSBPViBDQQ==","whitelist":false,"attachment":{"hash":"4186dcf1884e739095a2e744c4ccd5de721687ea6575da4ea5b3d4c73f07d4a7","size":2085,"filename":"pedwg-t32CS6XTTc_JUBqMnUFDQfsrfFl-YRQXc_Jco=.pem","location":"security-state-staging/intermediates/30359a92-8a61-4c98-9bee-afe2d78656b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pedwg+t32CS6XTT
c/JUBqMnUFDQfsrfFl+YRQXc/Jco=","crlite_enrolled":false,"id":"83964573-3e97-41f2-9ce8-bc7f7ce62667","last_modified":1601517444456},{"schema":1601473889131,"derHash":"fOuUWEQnVvQKSFww8rrwAQfB6e6F2wL6APQbpYRDZOU=","subject":"CN=ISSAuth ECC DV CA,O=INTEGRITY Security Services LLC,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMSgwJgYDVQQKEx9JTlRFR1JJVFkgU2VjdXJpdHkgU2VydmljZXMgTExDMRowGAYDVQQDExFJU1NBdXRoIEVDQyBEViBDQQ==","whitelist":false,"attachment":{"hash":"43ee1efa5f0a207b149a67aaf0323e49197e5c769577b389eb3471c5539f8ad2","size":1248,"filename":"82GvRpB_uAZ2gBlFqbv5pwS1b52FWaLFTHSLLlPtkS4=.pem","location":"security-state-staging/intermediates/104f20f8-b19b-47ab-900b-8d1023c6ef8e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"82GvRpB/uAZ2gBlFqbv5pwS1b52FWaLFTHSLLlPtkS4=","crlite_enrolled":false,"id":"5a3ba8e4-7aa8-42fe-b7d7-6a51a2cb824f","last_modified":1601517444445},{"schema":1601473895251,"derHash":"2dgcAVBdsZNxAhDZtCe2Uynv/yVhNfb7L+2+U+WTvwI=","subject":"CN=ISSAuth ECC OV CA,O=I
NTEGRITY Security Services LLC,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMSgwJgYDVQQKEx9JTlRFR1JJVFkgU2VjdXJpdHkgU2VydmljZXMgTExDMRowGAYDVQQDExFJU1NBdXRoIEVDQyBPViBDQQ==","whitelist":false,"attachment":{"hash":"7c05b04c5a6bbda8889889dadcc4004f477b9429c2ca7085c924ef4cc7961804","size":1248,"filename":"GE-HA2pOP4xPkalzLKDvBn9-H2GvpzI92tTTxyspNKk=.pem","location":"security-state-staging/intermediates/df193818-a02b-4e4d-866a-66cc8dc89803.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GE+HA2pOP4xPkalzLKDvBn9+H2GvpzI92tTTxyspNKk=","crlite_enrolled":false,"id":"1ce8bbb0-2bde-459d-b3ef-f90049c4f3ae","last_modified":1601517444434},{"schema":1601473890650,"derHash":"YkukJyyJbPvlUSj+vm5NbSSMI6HI2zLReJyBGHL2/Dw=","subject":"CN=ISSAuth RSA DV CA,O=INTEGRITY Security Services LLC,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMSgwJgYDVQQKEx9JTlRFR1JJVFkgU2VjdXJpdHkgU2VydmljZXMgTExDMRowGAYDVQQDExFJU1NBdXRoIFJTQSBEViBDQQ==","whitelist":false,"attachment":{"hash":"c006295568921093e5148e77673f798172fdb1
b6b28d3ac7737f3b5b35f7c661","size":2085,"filename":"3EfOHBtoOcqfHn9qHOGL-BkHEhOKUfa0ttPxLO6OaUY=.pem","location":"security-state-staging/intermediates/9a72162b-3c00-4079-9ce1-0b08c6e23202.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3EfOHBtoOcqfHn9qHOGL+BkHEhOKUfa0ttPxLO6OaUY=","crlite_enrolled":false,"id":"db10a85d-fae6-4776-b901-d09000033eca","last_modified":1601517444423},{"schema":1601376757462,"derHash":"13V4SIfNvX6fyyqdWJ02egtiONoer1HcccmbibmSKeA=","subject":"CN=Cybertrust Global Root,O=Cybertrust\\, Inc","subjectDN":"MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA==","whitelist":false,"attachment":{"hash":"e32b53c148cbc70936170082c6ba25a772ef3d90af11a32176389625e0c0691d","size":1715,"filename":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=.pem","location":"security-state-staging/intermediates/9a10b1ed-2339-4fb1-a42a-f9909244eef5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=","c
rlite_enrolled":false,"id":"42958ff2-5fcd-4c14-8815-60ee31623d20","last_modified":1601517444371},{"schema":1601376740640,"derHash":"VMN6joU/0dY3jTeLk5MH7DIaMcwaWonnGAYzvBPxh2I=","subject":"CN=GlobalSign HV RSA DV SSL CA 2018,O=GlobalSign nv-sa,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIEhWIFJTQSBEViBTU0wgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"1c5322edfdbb1b8079d8aca3070adf94e68b553d512f64c518c1a6271a4e3ebf","size":1613,"filename":"5J8n1iJ-aJofFJd3TQfvG3J_UdKG9lFZc5KF98adKQg=.pem","location":"security-state-staging/intermediates/b0d1d6d0-aa0f-4d67-8a2b-7b3a6a157f00.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5J8n1iJ+aJofFJd3TQfvG3J/UdKG9lFZc5KF98adKQg=","crlite_enrolled":true,"id":"8fced961-4ed6-4ff4-9402-d3f6ee0f77a3","last_modified":1601517444353},{"schema":1601376745601,"derHash":"lbCdAhIvqK5iNXgPbqZQPnZ6wCGgh0/oMc6AOlDqj9c=","subject":"CN=GeoTrust EV SSL CA - G4,O=GeoTrust Inc.,C=US","subjectD
N":"MEcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSAwHgYDVQQDExdHZW9UcnVzdCBFViBTU0wgQ0EgLSBHNA==","whitelist":false,"attachment":{"hash":"f9cce53a2c02bfdd9b421931d8556b782c6ecd2333ff1759e7a701722351de47","size":1597,"filename":"owrR9U9FWDWtrFF-myoRIu75JwU4sJwzvhCNLZoY37g=.pem","location":"security-state-staging/intermediates/93d3a920-7dd2-4552-a9bb-3e52e0c6d380.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"owrR9U9FWDWtrFF+myoRIu75JwU4sJwzvhCNLZoY37g=","crlite_enrolled":false,"id":"ff691ba0-3a0c-45ac-b608-b75b65279543","last_modified":1601517444335},{"schema":1601376727385,"derHash":"Nmb4BJFA/cCmXoCbKBo747ENr+79drndwnKpPoPKW5k=","subject":"SERIALNUMBER=A82743287,CN=Chambers of Commerce Root - 2008,O=AC Camerfirma S.A.,L=Madrid (see current address at www.camerfirma.com/address),C=EU","subjectDN":"MIGuMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1h
IFMuQS4xKTAnBgNVBAMTIENoYW1iZXJzIG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4","whitelist":false,"attachment":{"hash":"b4b436ef9231a9bbea04b3f960f93e2326676d0ee0cd4474684e42b776ddde11","size":2593,"filename":"ztQ5AqtftXtEIyLcDhcqT7VfcXi4CPlOeApv1sxr2Bg=.pem","location":"security-state-staging/intermediates/fd1a7011-0604-4a45-83c7-ca62f842fb8e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ztQ5AqtftXtEIyLcDhcqT7VfcXi4CPlOeApv1sxr2Bg=","crlite_enrolled":false,"id":"0e5f4be2-73c5-4bf6-b6a2-45f1f07226d8","last_modified":1601517444317},{"schema":1601376755442,"derHash":"axQ8IAXVU5zCLqtfdy2yqf6HRn/v+gf88Kn30oJ0yno=","subject":"CN=Entrust Root Certification Authority - G2,OU=See www.entrust.net/legal-terms+OU=(c) 2009 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG+MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMDkgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MTIwMAYDVQQDE
ylFbnRydXN0IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMg==","whitelist":false,"attachment":{"hash":"d1674b1f7b1aef60543ae1256c7298ed99b5016d5a49c8ba8b9745c679003a0f","size":1792,"filename":"du6FkDdMcVQ3u8prumAo6t3i3G27uMP2EOhR8R0at_U=.pem","location":"security-state-staging/intermediates/90532b3e-aeb1-42ae-b53d-9b0794e82506.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"du6FkDdMcVQ3u8prumAo6t3i3G27uMP2EOhR8R0at/U=","crlite_enrolled":false,"id":"512e1df0-26cc-48dd-9524-3c1d7aaf422b","last_modified":1601517444299},{"schema":1601376750957,"derHash":"Vsuw/8QU6IgipQ6fQtRoIDgdjCqu71bgVmgX7TDyeic=","subject":"CN=DKHS Device CA - G2,OU=GeoRoot Certification Authority,O=NTT DOCOMO\\, INC.,C=JP","subjectDN":"MHAxCzAJBgNVBAYTAkpQMRkwFwYDVQQKExBOVFQgRE9DT01PLCBJTkMuMSgwJgYDVQQLEx9HZW9Sb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRwwGgYDVQQDExNES0hTIERldmljZSBDQSAtIEcy","whitelist":false,"attachment":{"hash":"bde21987c9e3d549164d3f8bd906c3e0e7143f88e251c6d038487800c1df337d","size":1609,"filena
me":"XAKgtY9g-AuhN_1uwTUpgRjOYN5vJWan9jzWCnhebjw=.pem","location":"security-state-staging/intermediates/fc44b1b1-a48b-417b-911e-ce6d05512da2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XAKgtY9g+AuhN/1uwTUpgRjOYN5vJWan9jzWCnhebjw=","crlite_enrolled":false,"id":"23862319-a4da-4783-ae80-57929b6958f5","last_modified":1601517444281},{"schema":1601376775699,"derHash":"aGkkLNitKsd7wCiUe8fQxPbpy/CJnWVwmBDYn5S11w0=","subject":"CN=GDCA TrustAUTH R4 EV SSL CA G2,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJzAlBgNVBAMMHkdEQ0EgVHJ1c3RBVVRIIFI0IEVWIFNTTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"2e1f89d236b55a9e53ce42bf4e6c979ac2d4e9d9e836793810d01c10dc91ff0f","size":1727,"filename":"GlfrRgw9jW9VNC7Y1aXDsTsHh6dUPAEud8fhzOO-EdY=.pem","location":"security-state-staging/intermediates/76ca0f35-dc5e-4a6b-a715-cae8b21ba328.pem","mimetype":"application/x-pe
m-file"},"pubKeyHash":"GlfrRgw9jW9VNC7Y1aXDsTsHh6dUPAEud8fhzOO+EdY=","crlite_enrolled":false,"id":"15d2f4f5-d5d0-4fc9-8825-8c5fcf5cbe4f","last_modified":1601517444263},{"schema":1601376779796,"derHash":"qDhAXrsD9d/Y1KlXKubg4/NW7E7BNDdaWdt7GV3D7EQ=","subject":"CN=GeoTrust TLS ECC CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHzAdBgNVBAMTFkdlb1RydXN0IFRMUyBFQ0MgQ0EgRzE=","whitelist":false,"attachment":{"hash":"c0c946701c933eed603c99ac71fe696329ac344e1eb857450da9a3c6fc6b28e7","size":1146,"filename":"5UDBgr_RVcJyUuNCNmS5AenhQ6TpdPBpf6CAGjUnD10=.pem","location":"security-state-staging/intermediates/8ff205f5-9e76-40e9-807e-5a7aa972ec40.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5UDBgr/RVcJyUuNCNmS5AenhQ6TpdPBpf6CAGjUnD10=","crlite_enrolled":true,"id":"ff1f04eb-42ca-4339-9a6e-842a41a4be3c","last_modified":1601517444245},{"schema":1601376753403,"derHash":"V94Fg+/Ssm4DYdqZ2p30ZI
3vfuhEHDtyivqbzeD5smo=","subject":"CN=Autoridad de Certificacion Firmaprofesional CIF A62634068,C=ES","subjectDN":"MFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUgQ2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjg=","whitelist":false,"attachment":{"hash":"6d84cf680e962beda938e61164d5227272b5f42dc698ba20d2daf9fa5b01e5a4","size":2166,"filename":"Ow1ztL5KhUrcPlHX75-kiu-7LN2CTWe9x9fQmiq8LUM=.pem","location":"security-state-staging/intermediates/db0d57a0-e293-40b4-ac35-c505d0b77f4c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ow1ztL5KhUrcPlHX75+kiu+7LN2CTWe9x9fQmiq8LUM=","crlite_enrolled":false,"id":"19461103-183f-4856-b2fe-be344c1f63e1","last_modified":1601517444223},{"schema":1601376741054,"derHash":"U6XjKsxXFO0gx3eMZV0e6X7AcVYHTIsBbiz8c+nScSs=","subject":"CN=DigiCert Global Root G3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290
IEcz","whitelist":false,"attachment":{"hash":"b4887e6003a7f6553d3ac6da8c1ec7ddeec67cdeb9a3a2629953e71f2f779353","size":1297,"filename":"uUwZgwDOxcBXrQcntwu-kYFpkiVkOaezL0WYEZ3anJc=.pem","location":"security-state-staging/intermediates/a66116e2-f28d-4977-b407-ee74b5f52aac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uUwZgwDOxcBXrQcntwu+kYFpkiVkOaezL0WYEZ3anJc=","crlite_enrolled":false,"id":"8e9e5e57-79b3-4dd5-b6dc-59b075cc06ed","last_modified":1601517444204},{"schema":1601376777334,"derHash":"giK8T+ej3cqe8L8NaCrIiHmfh4ItFTMqVMC/38aFT3s=","subject":"CN=Staat der Nederlanden Organisatie Persoon CA - G3,O=Staat der Nederlanden,C=NL","subjectDN":"MGkxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xOjA4BgNVBAMMMVN0YWF0IGRlciBOZWRlcmxhbmRlbiBPcmdhbmlzYXRpZSBQZXJzb29uIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"0e3b37043e3f3aa596ff489e47e328fc72d538d552cc6714e820266d3bd25eb9","size":2239,"filename":"A8tEuTPX4UVR5S3b_DNaTVe_ZacDZntXrJYd4x46EG0=.pem","location"
:"security-state-staging/intermediates/416db4aa-c73c-4a15-9a7f-92977f67e9ca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"A8tEuTPX4UVR5S3b/DNaTVe/ZacDZntXrJYd4x46EG0=","crlite_enrolled":false,"id":"1222b1e8-48ad-44cf-9106-0db07c445fdd","last_modified":1601517444171},{"schema":1601376761177,"derHash":"Ukz3MxxO41PusezXTh+AGg8fCN+gMiCS9CIFr8OhdnU=","subject":"CN=DigiCert SHA-2 RADIUS CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IFNIQS0yIFJBRElVUyBDQQ==","whitelist":false,"attachment":{"hash":"27066a171b414ad64061c4d31e5004cbce8f4d7555ba47fca659f81f97acaaf9","size":1674,"filename":"yZwj8Xi_M8HwwIrk8zUJt2lZ5wy1IcLCTmo7r845-xQ=.pem","location":"security-state-staging/intermediates/0356953d-ca56-4ed4-b79b-6447b2d907ff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yZwj8Xi/M8HwwIrk8zUJt2lZ5wy1IcLCTmo7r845+xQ=","crlite_enrolled":false,"id":"2b7210c5-6
bef-4469-b9b2-3cf4a91afb14","last_modified":1601517444153},{"schema":1601376733088,"derHash":"ZHFyUK+LAo3Y5cC65MkULIsQNTJhK8SHCF/Twxn5wGc=","subject":"CN=ePKI Root Certification Authority - G2,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MGMxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEvMC0GA1UEAwwmZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"73789188b1ff6dcd70442594b8ff119cb7b30d858c0e7f072cf8a014cd8f296a","size":2649,"filename":"tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=.pem","location":"security-state-staging/intermediates/3785b85c-da3b-4b7b-bd12-2796cce60c04.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=","crlite_enrolled":false,"id":"ee033ab1-7bfc-4f08-b26a-b3b2bce86767","last_modified":1601517444135},{"schema":1601376743119,"derHash":"P94NNuAmtujr4sKIg2B8hlHeEL1sH8rTZeVg9OovOwM=","subject":"CN=Entrust Root Certification Authority - EC1,OU=See www.
entrust.net/legal-terms+OU=(c) 2012 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG/MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTIgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MTMwMQYDVQQDEypFbnRydXN0IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBFQzE=","whitelist":false,"attachment":{"hash":"fa84991015956f299a21164f4a77c8da26802bb7bac4207eb696cc086ce715b0","size":1577,"filename":"_qK31kX7pz11PB7Jp4cMQOH3sMVh6Se5hb9xGGbjbyI=.pem","location":"security-state-staging/intermediates/2827fb47-01de-4cf9-88b5-faa3f7464bf6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/qK31kX7pz11PB7Jp4cMQOH3sMVh6Se5hb9xGGbjbyI=","crlite_enrolled":false,"id":"10eb04ab-95e7-45a1-94b3-40bc33bad469","last_modified":1601517444117},{"schema":1601376774088,"derHash":"BTHIb3hZWJOf3FOZJNOV0e+kCTZOaCfTq5h2MR/7J7A=","subject":"CN=QuoVadis Enterprise Trust CA 1 G3,O=QuoVadis Limited,C=BM"
,"subjectDN":"MFQxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSowKAYDVQQDDCFRdW9WYWRpcyBFbnRlcnByaXNlIFRydXN0IENBIDEgRzM=","whitelist":false,"attachment":{"hash":"0838a224858164040768ee9fb8bab6de6efb11294b58f2c5db9fea5788b39bc7","size":2333,"filename":"8ZpHrAG1eQIQZnOeYn-p9E7tqq_yc1fiaSaeKR1BY2I=.pem","location":"security-state-staging/intermediates/360e077f-09bb-4788-bbfe-80bd616b8011.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8ZpHrAG1eQIQZnOeYn+p9E7tqq/yc1fiaSaeKR1BY2I=","crlite_enrolled":false,"id":"2a1565c1-b11e-4fb4-a545-99acd43e82cf","last_modified":1601517444099},{"schema":1601376769580,"derHash":"rY6zLJ2pHdyFXzgnRZkBR9xvI9n7sE/J1Hax7iD8cdg=","subject":"CN=DigiCert Trusted Root G4,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IFRydXN0ZWQgUm9vdCBHNA==","whitelist":false,"attachment":{"hash":"12cc0d0e07a0ce9a1fae8bc81a3c9918619e6044dedda6
d70c56fec58c5aa0d5","size":2024,"filename":"Wd8xe_qfTwq3ylFNd3IpaqLHZbh2ZNCLluVzmeNkcpw=.pem","location":"security-state-staging/intermediates/40ac2caf-9799-41cc-9949-62fe94bd7c8f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wd8xe/qfTwq3ylFNd3IpaqLHZbh2ZNCLluVzmeNkcpw=","crlite_enrolled":false,"id":"9702b5ab-ac3b-478f-8641-763a8b97d8df","last_modified":1601517444080},{"schema":1601376751370,"derHash":"rev4P9PT+VRrt3+qtRbdkzfM+R4RmPdDN3aexo5ugm4=","subject":"CN=Symantec Class 3 ECC 256 bit SSL CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEsMCoGA1UEAxMjU3ltYW50ZWMgQ2xhc3MgMyBFQ0MgMjU2IGJpdCBTU0wgQ0E=","whitelist":false,"attachment":{"hash":"221a0273827a23e87c0dd7ce8626aa6c220b418e5234c22b3d0208d1d9f6dc1a","size":1394,"filename":"kNDz7bhhiRNqEf2UFG3eoPwdtsGjjYfGnZgWRkA10BI=.pem","location":"security-state-staging/intermediates/35791f89-9b45-419d
-8e77-406b12700572.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kNDz7bhhiRNqEf2UFG3eoPwdtsGjjYfGnZgWRkA10BI=","crlite_enrolled":false,"id":"b0560908-0ea5-4fca-99b1-ce23985cb524","last_modified":1601517444062},{"schema":1601376774489,"derHash":"to1dm06mNZV8DDIVwg01siF7aeNJx6MExPl/IMQIH4g=","subject":"SERIALNUMBER=A82743287,CN=AC Camerfirma - 2009,O=AC Camerfirma S.A.,L=Madrid (see current address at https://www.camerfirma.com/address),C=ES","subjectDN":"MIGqMQswCQYDVQQGEwJFUzEbMBkGA1UEChMSQUMgQ2FtZXJmaXJtYSBTLkEuMRIwEAYDVQQFEwlBODI3NDMyODcxSzBJBgNVBAcTQk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCBodHRwczovL3d3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTEdMBsGA1UEAxMUQUMgQ2FtZXJmaXJtYSAtIDIwMDk=","whitelist":false,"attachment":{"hash":"197ccbfd7ec7b28f0f75167600f50b767843f9737a9e63f410e93c076cda6c09","size":2918,"filename":"wAh6UmDWkgJZX-MvtntK3hAjxzxC6tPEmrdc3IqHZl8=.pem","location":"security-state-staging/intermediates/3341ba59-f7ad-4982-bb52-733b1fd5490b.pem","mimetype":"application/
x-pem-file"},"pubKeyHash":"wAh6UmDWkgJZX+MvtntK3hAjxzxC6tPEmrdc3IqHZl8=","crlite_enrolled":false,"id":"48847bb5-0281-45c3-b2d3-e7f76ca2cb3b","last_modified":1601517444043},{"schema":1601376755836,"derHash":"joxuv3fcc9s+OOk/SAPmK2tZM761HuQVL2jXqhRCazE=","subject":"CN=Microsec e-Szigno Root CA 2009,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odQ==","whitelist":false,"attachment":{"hash":"3d68f4af65db5b779ba073b81f3674d2dd3df3323be8808d825116f4a0a129c3","size":1557,"filename":"YWFnIBQzrqbI5eMHCvyvZ0kYj4FL0auxea6NrTq_Juw=.pem","location":"security-state-staging/intermediates/ad34e608-081b-4ce8-83f8-80bf15e28c0e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YWFnIBQzrqbI5eMHCvyvZ0kYj4FL0auxea6NrTq/Juw=","crlite_enrolled":false,"id":"35957622-8171-40c9-b5c6-f6630c77d128","last_modified":1601517444025},{"sc
hema":1601376772500,"derHash":"l55f990lhUXx0dc3+UCPOlWud8j8bmHcR0JQ0sl5sFE=","subject":"OU=ePKI Root Certification Authority,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MF4xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"001850d9f7cb0ad915c278964fe8db058918ef083cfdd108f313803de6710705","size":2560,"filename":"YlVMFwBVQ7I3IV8EJo3NL9HEcCQK08hmDiWuLFljD1U=.pem","location":"security-state-staging/intermediates/eba466f4-bb7c-4798-9986-b6b5eca4a446.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YlVMFwBVQ7I3IV8EJo3NL9HEcCQK08hmDiWuLFljD1U=","crlite_enrolled":false,"id":"478b2025-c6ad-416f-9ef4-0e96131f47a6","last_modified":1601517444008},{"schema":1601376742712,"derHash":"YO9BLqvnw/xjme7RtjO3d3R1FbKdchuWPdJYvEmKspI=","subject":"CN=SSL.com EV Root Certification Authority ECC,O=SSL Corporation,L=Houston,ST=Texas,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMQ4wDAYDVQ
QIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTQwMgYDVQQDDCtTU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgRUND","whitelist":false,"attachment":{"hash":"ab3dfad3dda55fb2c174fabf92fc81f2757e57a915b1f78f5483d12dfaf50f76","size":1821,"filename":"NIdnza073SiyuN1TUa7DDGjOxc1p0nbfOCfbxPWAZGQ=.pem","location":"security-state-staging/intermediates/734df71e-5087-4844-aa75-47d2809181f8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NIdnza073SiyuN1TUa7DDGjOxc1p0nbfOCfbxPWAZGQ=","crlite_enrolled":false,"id":"b512360d-9f2f-4206-97ac-09aa8d521233","last_modified":1601517443989},{"schema":1601376752989,"derHash":"dp9v8Jp0Yqwnpugt53ABPTwCEzr92+WBrvzKGwoCkYA=","subject":"CN=TrustSign BR Certification Authority (EV) 2,OU=Controlled by COMODO for TrustSign Certificadora Digital,O=TrustSign Certificadora Dig. & Solu\u00e7\u00f5es Seguran\u00e7a da Inf. Ltda.,L=S\u00e3o Jos\u00e9 dos Campos,ST=S\u00e3o Paulo,C=BR","subjectDN":"MIIBCDELMAkGA1UEBhMCQlIxEzARBgNVBAgMC
lPDo28gUGF1bG8xHjAcBgNVBAcMFVPDo28gSm9zw6kgZG9zIENhbXBvczFLMEkGA1UECgxCVHJ1c3RTaWduIENlcnRpZmljYWRvcmEgRGlnLiAmIFNvbHXDp8O1ZXMgU2VndXJhbsOnYSBkYSBJbmYuIEx0ZGEuMUEwPwYDVQQLEzhDb250cm9sbGVkIGJ5IENPTU9ETyBmb3IgVHJ1c3RTaWduIENlcnRpZmljYWRvcmEgRGlnaXRhbDE0MDIGA1UEAxMrVHJ1c3RTaWduIEJSIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IChFVikgMg==","whitelist":false,"attachment":{"hash":"ba4c3dbca2d5728e872bf00f09797aeef4e3eca1f8283c82bfa080bb528a8dc9","size":2373,"filename":"iKWK-FGvQxVzCQKwKOQ7Rd18KzTZXBBwxTbfJaG1qN0=.pem","location":"security-state-staging/intermediates/a1e03bb9-2c35-49c6-bd32-f0994e053167.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iKWK+FGvQxVzCQKwKOQ7Rd18KzTZXBBwxTbfJaG1qN0=","crlite_enrolled":false,"id":"e0f723e6-76d1-4bee-9c67-8136e524719e","last_modified":1601517443971},{"schema":1601376730664,"derHash":"8oqXrCjP7RCpOn8Hj5eMj2IEydhFH3RdX+u9bgttTXw=","subject":"CN=Hellenic Academic and Research Institutions RootCA 2015,O=Hellenic Academic and Research Institutions Cert. Au
thority,L=Athens,C=GR","subjectDN":"MIGmMQswCQYDVQQGEwJHUjEPMA0GA1UEBxMGQXRoZW5zMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBSb290Q0EgMjAxNQ==","whitelist":false,"attachment":{"hash":"599c4d3414fd09b7ab7a1692a79ac80f5e452adbeed9d0aecc7a05228a1b427e","size":2292,"filename":"UMyGupbbMmPHmkPq0HVT2fVmWeaQfnLYwCZjehzchdw=.pem","location":"security-state-staging/intermediates/9269078b-f3eb-4f59-b548-f9978d1786cf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UMyGupbbMmPHmkPq0HVT2fVmWeaQfnLYwCZjehzchdw=","crlite_enrolled":false,"id":"f360da31-27aa-400f-8a47-3d517bae9327","last_modified":1601517443953},{"schema":1601376744781,"derHash":"asZkCS2bsVahECbk/nNNM3jIDe1FGYawul7KEcbfirs=","subject":"CN=KDDI Web Communications Certification Authority 2,O=KDDI Web Communications Inc.,C=JP","subjectDN":"MHAxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxLRERJIFdlYiBDb21tdW5pY2F0aW9ucyBJb
mMuMTowOAYDVQQDEzFLRERJIFdlYiBDb21tdW5pY2F0aW9ucyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAy","whitelist":false,"attachment":{"hash":"30e363da73774add76e38c29a61875ab860a411951b9f29e3ad90d7e3fbfe77f","size":1658,"filename":"aUNVAMKFhtzaVShUUcBbp8xP_plnuqaBn80TpHKVfNs=.pem","location":"security-state-staging/intermediates/1e7b2323-695f-4952-ad56-19f517a7246b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aUNVAMKFhtzaVShUUcBbp8xP/plnuqaBn80TpHKVfNs=","crlite_enrolled":false,"id":"d7768dd2-6b98-4ad2-886e-cac6d553ec16","last_modified":1601517443936},{"schema":1601376782713,"derHash":"H5sx+CCSnr+gMRfsK3e6aw+27MngJ2gqVZN42jEcVO8=","subject":"CN=Symantec Class 3 Extended Validation SHA256 SSL CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGKMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxOzA5BgNVBAMTMlN5bWFudGVjIENsYXNzIDMgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTSEEyNTYgU1NMIENB","whitelist":false,"attachment":{"hash":"7
3b3e2e12b6d805388d7894c35f9c43b08121eeddc974879d17a8b755870c43b","size":1894,"filename":"fb0Tfqir1HP3KpDb-G45zaPKd4IMWkZQgeiSsLeH8tk=.pem","location":"security-state-staging/intermediates/f1503402-4fce-4d76-96a3-ab24eed07569.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fb0Tfqir1HP3KpDb+G45zaPKd4IMWkZQgeiSsLeH8tk=","crlite_enrolled":false,"id":"27f99fc8-8d5d-4c73-ad31-4ef517e5ef06","last_modified":1601517443918},{"schema":1601376747224,"derHash":"uQ7q6THl4rfTNfFJ2mwiEJhgANIU/9tipy9zMtY3Ma8=","subject":"CN=Verizon Global Root CA,OU=OmniRoot,O=Verizon Business,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBWZXJpem9uIEJ1c2luZXNzMREwDwYDVQQLEwhPbW5pUm9vdDEfMB0GA1UEAxMWVmVyaXpvbiBHbG9iYWwgUm9vdCBDQQ==","whitelist":false,"attachment":{"hash":"b2ff06177ee90557f82e4d2b65f87cbe3e37ef185fd9f5b2f7d8c654bf7eefbc","size":1760,"filename":"v-gpCYcuRDTxFcUaVhaAGVlNDgPco2PZ87SDnQurzeU=.pem","location":"security-state-staging/intermediates/96d8b2a4-5c83-408a-aba1-f8c0818c74a1.pem","m
imetype":"application/x-pem-file"},"pubKeyHash":"v+gpCYcuRDTxFcUaVhaAGVlNDgPco2PZ87SDnQurzeU=","crlite_enrolled":false,"id":"90eff404-0514-42a4-b6bc-375d060840d8","last_modified":1601517443892},{"schema":1601376720802,"derHash":"2VgdvembOe7/bOXIDeFlDaDByKEJcF7ShsU7yV5mVeQ=","subject":"CN=Staat der Nederlanden Organisatie Services CA - G3,O=Staat der Nederlanden,C=NL","subjectDN":"MGoxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xOzA5BgNVBAMMMlN0YWF0IGRlciBOZWRlcmxhbmRlbiBPcmdhbmlzYXRpZSBTZXJ2aWNlcyBDQSAtIEcz","whitelist":false,"attachment":{"hash":"7e2d605d386b1377355070db06e788e514e057431cc7ff2c0772d4f9b8ff0e62","size":2324,"filename":"WoBMz_bIYMctSPZ5Zhje__eik13TeByHSK4zXYYEsAQ=.pem","location":"security-state-staging/intermediates/baa75ba7-d136-47a9-96af-8da37255a077.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WoBMz/bIYMctSPZ5Zhje//eik13TeByHSK4zXYYEsAQ=","crlite_enrolled":false,"id":"ea6ff4e8-dc0c-4bf1-8751-7f9a6053af57","last_modified":1601517443861},{
"schema":1601376719498,"derHash":"rPcY34OOZABRd30ZR/UWIOjYBLoYZVOuUvyYEbXTS4s=","subject":"CN=SSL.com Root Certification Authority RSA,O=SSL Corporation,L=Houston,ST=Texas,C=US","subjectDN":"MHwxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTEwLwYDVQQDDChTU0wuY29tIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNB","whitelist":false,"attachment":{"hash":"0be6061408140698708a3d3cb24d39ad6416effde544c39b9e52f40a1b6fe9cf","size":2085,"filename":"0cRTd-vc1hjNFlHcLgLCHXUeWqn80bNDH_bs9qMTSPo=.pem","location":"security-state-staging/intermediates/a9cbcbd0-800f-442e-8f52-903325a5ee23.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0cRTd+vc1hjNFlHcLgLCHXUeWqn80bNDH/bs9qMTSPo=","crlite_enrolled":false,"id":"60def2d8-d623-4952-91b9-30913d09f7b4","last_modified":1601517443836},{"schema":1601376719951,"derHash":"RiJre4ngLKj12F1n7Yy0sZxIOCBYuxYkIZnVQMq+kmg=","subject":"CN=TeliaSonera Gateway CA v2,O=TeliaSonera,C=FI","subjectDN":"MEcxCzAJBgNVBAY
TAkZJMRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEiMCAGA1UEAwwZVGVsaWFTb25lcmEgR2F0ZXdheSBDQSB2Mg==","whitelist":false,"attachment":{"hash":"a217b78c13516b7cdc64085ded0920414e8b497f59bb8ad9e4ba1202473f3e28","size":2532,"filename":"jaaJsNV10gkW5ui1mprnOhj0AU9JlvfHwfeE-4pG7Lg=.pem","location":"security-state-staging/intermediates/e2f9758e-b3b7-476a-a010-68d270baddb3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jaaJsNV10gkW5ui1mprnOhj0AU9JlvfHwfeE+4pG7Lg=","crlite_enrolled":false,"id":"94fd3ab1-6743-43b7-b04b-f3ce9336a99b","last_modified":1601517443809},{"schema":1601376760342,"derHash":"RcKL5DQvByzWIZaYw+8qxtunPxngTazyBE0vaZPjQrQ=","subject":"CN=eMudhra RSA Extended Validation Secure Server CA,OU=Controlled by Sectigo exclusively for eMudhra Technologies Ltd.,O=eMudhra Technologies Limited,L=Bengaluru,ST=Karnataka,C=IN","subjectDN":"MIHhMQswCQYDVQQGEwJJTjESMBAGA1UECBMJS2FybmF0YWthMRIwEAYDVQQHEwlCZW5nYWx1cnUxJTAjBgNVBAoTHGVNdWRocmEgVGVjaG5vbG9naWVzIExpbWl0ZWQxSDBGBgNVBAsTP0NvbnRyb2xsZWQgY
nkgU2VjdGlnbyBleGNsdXNpdmVseSBmb3IgZU11ZGhyYSBUZWNobm9sb2dpZXMgTHRkLjE5MDcGA1UEAxMwZU11ZGhyYSBSU0EgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"68e999dcfb6f85564fab0d02baa239b313d7e2dc8f5a4ecb6346e4afc6201b43","size":2316,"filename":"xIsOtN5uZ5ZZQRiHSu6NrXg36kenjPgaYZeoj9lRsXk=.pem","location":"security-state-staging/intermediates/e30be843-e47e-40e4-8d03-35c62a341392.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xIsOtN5uZ5ZZQRiHSu6NrXg36kenjPgaYZeoj9lRsXk=","crlite_enrolled":true,"id":"29d99702-edc8-413c-b8ca-77c56ea0181f","last_modified":1601517443782},{"schema":1601376721235,"derHash":"1Gkx4Bgt1lXqDBbm3Zn45hr/5AH3NMbKjqAFapaOr4E=","subject":"CN=DigiCert Baltimore EV CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IEJhbHRpbW9yZSBFViBDQQ==","whitelist":false,"attachment":{"hash":"71b566b9248c134842c94e190eb959
e767923e037257d37b3e855d67a010ab2d","size":1577,"filename":"VOipUY1UDQFkU3SLv8yqRqnSAXgf2u64AGItxQco2LY=.pem","location":"security-state-staging/intermediates/fb866139-1efa-47a1-b0a2-afca62bb7d30.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VOipUY1UDQFkU3SLv8yqRqnSAXgf2u64AGItxQco2LY=","crlite_enrolled":true,"id":"3395f234-9055-4caa-a4d5-11b4a7f375a3","last_modified":1601517443761},{"schema":1601376769979,"derHash":"EoGtj6vog/IJ6WNkSNGoDDc9qnaGyBOicPrUj19eWJo=","subject":"CN=Telia Server CA v3,O=Telia Finland Oyj,C=FI","subjectDN":"MEYxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEbMBkGA1UEAwwSVGVsaWEgU2VydmVyIENBIHYz","whitelist":false,"attachment":{"hash":"c49599398958207a50863ebc4e7e508a20b8551b440ae2d3d28ab90e317f5c12","size":2341,"filename":"TCgTLigAKZ2ouWM1T2dh92G9wUDP8Wlma6sqwmm3aVc=.pem","location":"security-state-staging/intermediates/bdcf129f-b3fa-4ce1-8a67-6da86c05d54f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TCgTLigAKZ2ouWM1T2dh92G9wUDP
8Wlma6sqwmm3aVc=","crlite_enrolled":true,"id":"681d294f-17d7-400e-a4ca-507ee1d90a50","last_modified":1601517443744},{"schema":1601376782315,"derHash":"p+gwVumz2d2xgWuVUY9qXlod/foo9gUzschQhV6qQmM=","subject":"CN=Telia Domain Validation CA v3,O=Telia Finland Oyj,C=FI","subjectDN":"MFExCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEmMCQGA1UEAwwdVGVsaWEgRG9tYWluIFZhbGlkYXRpb24gQ0EgdjM=","whitelist":false,"attachment":{"hash":"0f8c227df79307dbeec994ba6d8bd832268f9d2b0c636499e29d589ed747a88c","size":2353,"filename":"RU2jIfMztj4AADghygjY9gbxUkW13LXRSS7JeONgrxc=.pem","location":"security-state-staging/intermediates/f38aa272-1880-4c2f-b745-6c01a69b0614.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RU2jIfMztj4AADghygjY9gbxUkW13LXRSS7JeONgrxc=","crlite_enrolled":true,"id":"b07c6446-0c44-4a00-bb56-ca8b2b55a54e","last_modified":1601517443698},{"schema":1601376730262,"derHash":"MBx2dQJ2GpCYk29sqnNsQ2QHQeDdmiaY9DoAHZfBZ/k=","subject":"CN=Fuji Xerox Certification Authority 2,O=Fuj
i Xerox,C=JP","subjectDN":"MFExCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MS0wKwYDVQQDEyRGdWppIFhlcm94IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IDI=","whitelist":false,"attachment":{"hash":"b2e83a0583235d0e89d877d8abbd4ddc71a9825998e2cd9c7aa40500a9f10667","size":1500,"filename":"jEakGI1jOC9M7t1p7b_cp7OOuFt2ovRpogRWrRVxQt8=.pem","location":"security-state-staging/intermediates/7ae7dfdd-6a6d-492e-9eba-8b861f68976a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jEakGI1jOC9M7t1p7b/cp7OOuFt2ovRpogRWrRVxQt8=","crlite_enrolled":false,"id":"c9552f3d-50c5-424d-aa0b-ddb2a0a0f796","last_modified":1601517443675},{"schema":1601376759931,"derHash":"pYmOW/uEKVwEPsQDQoivs34NWjhm8Xy2V7l/cty1O+w=","subject":"CN=EC-ACC,OU=Serveis Publics de Certificacio+OU=Vegeu https://www.catcert.net/verarrel (c)03+OU=Jerarquia Entitats de Certificacio Catalanes,O=Agencia Catalana de Certificacio (NIF Q-0801176-I),C=ES","subjectDN":"MIHzMQswCQYDVQQGEwJFUzE7MDkGA1UECgwyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8gKE5J
RiBRLTA4MDExNzYtSSkxKDAmBgNVBAsMH1NlcnZlaXMgUHVibGljcyBkZSBDZXJ0aWZpY2FjaW8xNTAzBgNVBAsMLFZlZ2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQubmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLDCxKZXJhcnF1aWEgRW50aXRhdHMgZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAwwGRUMtQUND","whitelist":false,"attachment":{"hash":"c91d4443f3c8f83a280186a047029b6b4b7ce659addce7f07caf597e11a9dc65","size":1902,"filename":"sh0qdDMYcSuhbzmRnZYaS6-6O8qaQ6dbH8_iLF1wyro=.pem","location":"security-state-staging/intermediates/dad2be5f-3b40-4362-a644-e7ed3ec0debd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sh0qdDMYcSuhbzmRnZYaS6+6O8qaQ6dbH8/iLF1wyro=","crlite_enrolled":false,"id":"96d98717-9a96-4d73-b156-2eb909eb5054","last_modified":1601517443658},{"schema":1601376776932,"derHash":"BrlyKmmcV9/xhp9DC0ebtutJquEYTqycUyXBM0o06kw=","subject":"CN=SSL.com Root Certification Authority ECC,O=SSL Corporation,L=Houston,ST=Texas,C=US","subjectDN":"MHwxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBv
cmF0aW9uMTEwLwYDVQQDDChTU0wuY29tIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgRUND","whitelist":false,"attachment":{"hash":"3575f65e014fd8fa943566de2f3d7a42adc6b4e947cc86fb2028d533adc24ad9","size":1804,"filename":"oyD01TTXvpfBro3QSZc1vIlcMjrdLTiL_M9mLCPX-Zo=.pem","location":"security-state-staging/intermediates/34d6fd53-d5dd-4289-aa37-161e72f0a7e9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oyD01TTXvpfBro3QSZc1vIlcMjrdLTiL/M9mLCPX+Zo=","crlite_enrolled":false,"id":"3ecf65b2-97c8-4b50-a416-2032e8bdbdf7","last_modified":1601517443636},{"schema":1601376768352,"derHash":"LU+tNFWrYTl0Aau7UYki+EM2tn4C/I0tsoOCXEq5gbs=","subject":"CN=DigiCert Global Root G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcy","whitelist":false,"attachment":{"hash":"0558647c4eeecfb355382c6706854b426612a1444f25dc3adfb7d56079fcf28d","size":1748,"filename":"i7WTqTvh0OioIru
IfFR4kMPnBqrS2rdiVPl_s2uC_CY=.pem","location":"security-state-staging/intermediates/0b9f9a42-27c0-4853-935f-4345030e4d62.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i7WTqTvh0OioIruIfFR4kMPnBqrS2rdiVPl/s2uC/CY=","crlite_enrolled":false,"id":"06d0c87d-d5a6-47ab-ad28-8767585b4426","last_modified":1601517443609},{"schema":1601376743527,"derHash":"J1JOMrshd8u/CnFveKcSQnFPyS8KRHEw2RZmxxangQc=","subject":"CN=Entrust Class 2 Client CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAxMCBFbnRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDIgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"0dad756b753d0f88b83d8bc46c6d0a9066434d03ab6d72e1a0e9c0473e83eedd","size":1764,"filename":"JloS0qeSNdA_zDy0D24iKRwsIsmYt-GFR_0g8UIjlUE=.pem","location":"security-state-stag
ing/intermediates/005152cc-aa3c-4406-b480-f4d2f2aef4e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JloS0qeSNdA/zDy0D24iKRwsIsmYt+GFR/0g8UIjlUE=","crlite_enrolled":false,"id":"d07ede68-44a2-4cf4-beb9-f363bd8d953e","last_modified":1601517443590},{"schema":1601376738088,"derHash":"umub+7+WmK+R60xpNGZBQYGgACrVKP8VSUbVhqpdlEU=","subject":"CN=GoGetSSL ECC EV CA,OU=Controlled by COMODO CA exclusively for GoGetSSL,O=GoGetSSL,L=Riga,C=LV","subjectDN":"MIGHMQswCQYDVQQGEwJMVjENMAsGA1UEBxMEUmlnYTERMA8GA1UEChMIR29HZXRTU0wxOTA3BgNVBAsTMENvbnRyb2xsZWQgYnkgQ09NT0RPIENBIGV4Y2x1c2l2ZWx5IGZvciBHb0dldFNTTDEbMBkGA1UEAxMSR29HZXRTU0wgRUNDIEVWIENB","whitelist":false,"attachment":{"hash":"9bbb40268769a0fb2d93f4ba28e208765ce02172266fd724354d40fe752d0187","size":1362,"filename":"og9uiCTdRwcFKbx11dQHwWx4x4btYdfYz4pKq5LpcoY=.pem","location":"security-state-staging/intermediates/13744076-d7ed-4f2f-b95b-985bbf7257dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"og9uiCTdRwcFKbx11dQHwWx4x4btYd
fYz4pKq5LpcoY=","crlite_enrolled":false,"id":"073a888e-1813-4d8e-ba5d-23e7a79798b1","last_modified":1601517443573},{"schema":1601376734311,"derHash":"8Bwayjkogq8VLp8B7MzQr93YqjW/iVsAMZix6MdS3bg=","subject":"SERIALNUMBER=A82743287,CN=Global Chambersign Root - 2008,O=AC Camerfirma S.A.,L=Madrid (see current address at www.camerfirma.com/address),C=EU","subjectDN":"MIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwOA==","whitelist":false,"attachment":{"hash":"94f96c02a67a0946b9d781981a2662422e1f728a9316476f6561cd899b6e528d","size":2584,"filename":"knobhWIoBXbQSMUDIa2kPYcD0tlSGhjCi4xGzGquTv0=.pem","location":"security-state-staging/intermediates/0cbd049c-06d3-49b2-aae6-c0bcd5fa210c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"knobhWIoBXbQSMUDIa2kPYcD0tlSGhjCi4xGzGquTv0=","crlite_enrolled":false,"i
d":"81e99069-a8ad-46a8-b96f-c0e2cc7a5494","last_modified":1601517443555},{"schema":1601376768762,"derHash":"bay7iUUTex2tQhGwQ2774G8SrONpBJc7Ra4ldAgj02k=","subject":"CN=DigiCert Global Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENB","whitelist":false,"attachment":{"hash":"1a8c56af27223d777da24bba93b743c15e633c42f9ab430fc69c48fe2ac69bbb","size":1577,"filename":"r_mIkG3eEpVdm-u_ko_cwxzOMo1bk4TyHIlByibiA5E=.pem","location":"security-state-staging/intermediates/038b81ab-4eff-4d41-90a4-8f4f86b72f6b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"r/mIkG3eEpVdm+u/ko/cwxzOMo1bk4TyHIlByibiA5E=","crlite_enrolled":false,"id":"39be0c8a-1350-49d8-95ce-b5095d2d226d","last_modified":1601517443537},{"schema":1601376736414,"derHash":"6VY1gecSspDyOnSTRlNesNmB49SjnVbWBGhM0LFpjIk=","subject":"CN=TeliaSonera Root CA v1,O=TeliaSonera","subjectDN":"MDcx
FDASBgNVBAoMC1RlbGlhU29uZXJhMR8wHQYDVQQDDBZUZWxpYVNvbmVyYSBSb290IENBIHYx","whitelist":false,"attachment":{"hash":"dff294c7a5bf61855f4bf4688f93273254185339ca8c7fa141f0597c90fb4a8d","size":1963,"filename":"ELo0hcqLtogKuVMaQGPkABVVVhx_LgVRZfSbLXT8X2s=.pem","location":"security-state-staging/intermediates/a4200fb3-9012-4d6e-8f39-3a0ac6b62bf3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ELo0hcqLtogKuVMaQGPkABVVVhx/LgVRZfSbLXT8X2s=","crlite_enrolled":false,"id":"a5d1352e-4a82-433c-870e-ad8c58fc9bbb","last_modified":1601517443520},{"schema":1601376749293,"derHash":"2lRiUmoMLphSqGGGsCU5AVh1nNymriHwn3E8pqzN0fE=","subject":"CN=QuoVadis Enterprise Trust CA 3 G3,O=QuoVadis Limited,C=BM","subjectDN":"MFQxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSowKAYDVQQDDCFRdW9WYWRpcyBFbnRlcnByaXNlIFRydXN0IENBIDMgRzM=","whitelist":false,"attachment":{"hash":"0b01ec78286d184607dd09e4cac9c4992d4af9f58534eb2cb8fea437481a6197","size":2333,"filename":"smsafMf1m1b-3NN_jssl3RMKHXok-GELWWNtG9vZE
mA=.pem","location":"security-state-staging/intermediates/e3b263a6-dc7b-4bda-8acb-d8c10b677b2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"smsafMf1m1b+3NN/jssl3RMKHXok+GELWWNtG9vZEmA=","crlite_enrolled":false,"id":"b1c31974-0f71-4207-8532-82f8138e8ca8","last_modified":1601517443502},{"schema":1601376748042,"derHash":"wl8elgALw24qpc1UvyT0i3aJChYuGtjhBJkmUFEGJsI=","subject":"CN=TrustAsia DV SSL CA - C3,O=TrustAsia Technologies Inc.,C=CN","subjectDN":"MFYxCzAJBgNVBAYTAkNOMSQwIgYDVQQKDBtUcnVzdEFzaWEgVGVjaG5vbG9naWVzIEluYy4xITAfBgNVBAMMGFRydXN0QXNpYSBEViBTU0wgQ0EgLSBDMw==","whitelist":false,"attachment":{"hash":"8818c8f5c68801123839b3cc239cbd89d6750c3eebd094b7e193b8d4c008359f","size":1691,"filename":"kZD1rAhydUcYx_iHiwQ-xsh92idc5Cryvs4-2MeQnpk=.pem","location":"security-state-staging/intermediates/30df4c61-9f07-4a43-9956-25742af9cddb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kZD1rAhydUcYx/iHiwQ+xsh92idc5Cryvs4+2MeQnpk=","crlite_enrolled":false,"id":"2e43a311-dc6
c-4644-b4fd-dabaca2c1929","last_modified":1601517443484},{"schema":1601376725349,"derHash":"KGibMOTDBqq1OwJ7KeNq1t0dz0uVOZRILKhL3B7KyZY=","subject":"CN=Starfield Services Root Certificate Authority - G2,O=Starfield Technologies\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"f86af69b434af8ea5af1e027d56a7a38f6f22b387403ecb5009164accf5a6e79","size":1605,"filename":"KwccWaCgrnaw6tsrrSO61FgLacNgG2MMLq8GE6-oP5I=.pem","location":"security-state-staging/intermediates/901b5264-4d8d-44b2-9d34-a3510247f9db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KwccWaCgrnaw6tsrrSO61FgLacNgG2MMLq8GE6+oP5I=","crlite_enrolled":false,"id":"c0aa9228-9471-4d9a-a0df-1f91fd16b767","last_modified":1601517443467},{"schema":1601376729443,"derHash":"Hparst
ZQK13OUY7AC1oeVDNJ79Lj9ovpq8ESiyVv7dc=","subject":"CN=GDCA TrustAUTH R4 SSL CA,O=GUANG DONG CERTIFICATE AUTHORITY CO.\\,LTD.,C=CN","subjectDN":"MGQxCzAJBgNVBAYTAkNOMTIwMAYDVQQKDClHVUFORyBET05HIENFUlRJRklDQVRFIEFVVEhPUklUWSBDTy4sTFRELjEhMB8GA1UEAwwYR0RDQSBUcnVzdEFVVEggUjQgU1NMIENB","whitelist":false,"attachment":{"hash":"0c153a0a3e193285fb42bc65ed86726b6ce20e989c5ce61bee6ac0249ccc9114","size":2052,"filename":"UNDNK48i2z9IOnLBTQP6yg9UerUnpfpb-nZvgw-0Who=.pem","location":"security-state-staging/intermediates/917af39e-808a-4852-8c1c-b2360829b69b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UNDNK48i2z9IOnLBTQP6yg9UerUnpfpb+nZvgw+0Who=","crlite_enrolled":false,"id":"056dcecf-b54d-4dca-bd31-f6fa1134a775","last_modified":1601517443449},{"schema":1601376783927,"derHash":"5K8vrkEYfVjyCbAbHYdTwtzLP2Ac6GJz436HOMKlzLU=","subject":"CN=Oracle SSL CA - G2,OU=Symantec Trust Network,O=Oracle Corporation,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJPcmFjbGUgQ29ycG9yYXRpb24xHzAdBgNV
BAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxGzAZBgNVBAMTEk9yYWNsZSBTU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"e494e978931ad5d02f062cfb56e8f25cd10bc3632a24ccafb9f97d68508fdd32","size":1829,"filename":"AifQ_vsDlH7aQOdXumUDNTzAh2cI97-83a1FqoQss7M=.pem","location":"security-state-staging/intermediates/a3eac2bb-9bb3-446e-bfb6-c8d463e48cb6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AifQ/vsDlH7aQOdXumUDNTzAh2cI97+83a1FqoQss7M=","crlite_enrolled":false,"id":"d1739c52-6e71-43f0-a8c1-3fe9fa938594","last_modified":1601517443431},{"schema":1601376736833,"derHash":"uXF28htu1kYJJnstGiqfrwxN69RGRNyF62rphvyGfVY=","subject":"CN=SSL.com EV Root Certification Authority RSA R2,O=SSL Corporation,L=Houston,ST=Texas,C=US","subjectDN":"MIGCMQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE3MDUGA1UEAwwuU1NMLmNvbSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQSBSMg==","whitelist":false,"attachment":{"hash":"26b0eb0f7d0c63890a8cb3bac2679013
9d109c65e18753a461b28633c51c86e3","size":2093,"filename":"fNZ8JI9p2D_C-bsB3LH3rWejY9BGBDeW0JhMOiMfa7A=.pem","location":"security-state-staging/intermediates/cbc009ee-d95a-4c1a-b665-8d351c2f25cd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fNZ8JI9p2D/C+bsB3LH3rWejY9BGBDeW0JhMOiMfa7A=","crlite_enrolled":false,"id":"7b426af5-c32a-4108-a18c-9f524b01f83a","last_modified":1601517443414},{"schema":1601376766712,"derHash":"F04d53yNk8aOzSvS6m4ZG1hNuFAneoNKrImLfICpHHA=","subject":"CN=QuoVadis Enterprise Trust CA 2 G3,O=QuoVadis Limited,C=BM","subjectDN":"MFQxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSowKAYDVQQDDCFRdW9WYWRpcyBFbnRlcnByaXNlIFRydXN0IENBIDIgRzM=","whitelist":false,"attachment":{"hash":"d0caddb97c0bc5c29f2e4a3313e5fcde643b44351f7d21145f14294c7d1ca9eb","size":2333,"filename":"U_l9o-Lg2NOgB-7MLJUzZzbVrqatI_likIE44Ciah6M=.pem","location":"security-state-staging/intermediates/5219558a-ec4b-4733-86f9-13b9bf9c74ed.pem","mimetype":"application/x-pem-file"},"pubKeyHa
sh":"U/l9o+Lg2NOgB+7MLJUzZzbVrqatI/likIE44Ciah6M=","crlite_enrolled":false,"id":"4faccf9d-b079-45fb-8618-5f3f864455de","last_modified":1601517443396},{"schema":1601376781071,"derHash":"RF7seLxhIVBEoDeWVqotXbXkL3bLcLjRTCB3qpQ9Trs=","subject":"CN=GlobalSign,OU=GlobalSign Root CA - R3,O=GlobalSign","subjectDN":"MEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFIzMRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu","whitelist":false,"attachment":{"hash":"03136ae4f1cc15165e71fa5ef33f14d451ac52630098f060194f365a61a44a74","size":1553,"filename":"cGuxAXyFXFkWm61cF4HPWX8S0srS9j0aSqN0k4AP-4A=.pem","location":"security-state-staging/intermediates/de87ee5e-fc90-47ae-a551-27f45867b68c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cGuxAXyFXFkWm61cF4HPWX8S0srS9j0aSqN0k4AP+4A=","crlite_enrolled":false,"id":"61380e8f-ba33-418f-b251-e9adeb0d421b","last_modified":1601517443361},{"schema":1601376723250,"derHash":"3ajac2GH129PDtWl9me1TZmpiuBgkdDjoBcU6SIWla0=","subject":"CN=GlobalSign,OU=Globa
lSign Root CA - R6,O=GlobalSign","subjectDN":"MEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFI2MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu","whitelist":false,"attachment":{"hash":"b41c9b2e15c3c244c322fbf94a4a850c7938223b476b1126737bdf2e5eec446a","size":1890,"filename":"aCdH-LpiG4fN07wpXtXKvOciocDANj0daLOJKNJ4fx4=.pem","location":"security-state-staging/intermediates/4d8959af-58c7-4dbf-b787-864dac9fdf64.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aCdH+LpiG4fN07wpXtXKvOciocDANj0daLOJKNJ4fx4=","crlite_enrolled":false,"id":"ff319db3-4ac0-4406-9c29-03f632e42c98","last_modified":1601517443342},{"schema":1601376731061,"derHash":"GpkBn51BKmRFR0ntqo59xGZz1kTfPOFcxlVzXqDfhv4=","subject":"CN=thawte EV SSL CA - G3,O=thawte\\, Inc.,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xHjAcBgNVBAMTFXRoYXd0ZSBFViBTU0wgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"1cf868355a40b245f6cc59c13c1382c34b4f199d60214e4df7096639b87717dc","size":1683,"filename
":"L_6MoT_ohYSR0eSF5RZoAF17Gqj6vWJpWTK-FNgH0rM=.pem","location":"security-state-staging/intermediates/7544ec1b-5339-422e-9183-77c1d3ba8469.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"L/6MoT/ohYSR0eSF5RZoAF17Gqj6vWJpWTK+FNgH0rM=","crlite_enrolled":false,"id":"4f72d4f2-5538-4d6c-82f9-01320834b544","last_modified":1601517443324},{"schema":1601376750539,"derHash":"krty8V63XeRnyEtDgYEDS9rpoBbsJkNL7jybutjNivA=","subject":"CN=Symantec Web PKI ECC Root - G1,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEnMCUGA1UEAxMeU3ltYW50ZWMgV2ViIFBLSSBFQ0MgUm9vdCAtIEcx","whitelist":false,"attachment":{"hash":"488787a086889d5ac385a1e96db2cc8bd76c1015d9c3c1003c0ad97b8bd7d46a","size":898,"filename":"iduNzFNKpwYZ3se_XV-hXcbUonlLw09QPa6AYUwpu4M=.pem","location":"security-state-staging/intermediates/413ec41f-5315-44a7-add5-99589e58480c.pem","mimetype":"application/x-pem-f
ile"},"pubKeyHash":"iduNzFNKpwYZ3se/XV+hXcbUonlLw09QPa6AYUwpu4M=","crlite_enrolled":false,"id":"d00abc39-e08a-44f1-84d7-b68ac1d5334f","last_modified":1601517443307},{"schema":1601376757868,"derHash":"uCIQzend6g4UvimvZH5LMvlu0qnvGqW6qcxks4tsAco=","subject":"OU=AC RAIZ FNMT-RCM,O=FNMT-RCM,C=ES","subjectDN":"MDsxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBGTk1ULVJDTQ==","whitelist":false,"attachment":{"hash":"dda828b4a97c8a8f24d378bef318af5d144be4d873ff73ba3f07303c1c298e49","size":1971,"filename":"L8VmekuaJnjtasatJUZfy_YJS_zZUECXx6j6R63l6Ig=.pem","location":"security-state-staging/intermediates/517b4707-ce8c-4711-b41b-f2251c5edd3d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"L8VmekuaJnjtasatJUZfy/YJS/zZUECXx6j6R63l6Ig=","crlite_enrolled":false,"id":"a16f609b-1af0-4b48-90e8-2d6a182ca81f","last_modified":1601517443289},{"schema":1601376729034,"derHash":"VuT0VNmC3NzmEbe3B9sSxTPqwpol9KUwfhwGVxOw3I4=","subject":"CN=DigiCert TLS ICA Thawte PCA-G3,OU=www.digi
cert.com,O=DigiCert\\, Inc.,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEnMCUGA1UEAxMeRGlnaUNlcnQgVExTIElDQSBUaGF3dGUgUENBLUcz","whitelist":false,"attachment":{"hash":"8bae35c0e06cb5fb2398f3147505a1a2ea437352eb1117c66f7060548a248981","size":1735,"filename":"1kuMMhuDt5uIGZpznnoQhtlIwlmJ85sNYnH0jX_yBUA=.pem","location":"security-state-staging/intermediates/3cfa0bee-444c-4508-9234-5f45d449c7c3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1kuMMhuDt5uIGZpznnoQhtlIwlmJ85sNYnH0jX/yBUA=","crlite_enrolled":true,"id":"abdee471-bc7c-45ce-a24e-e12b11d63ef9","last_modified":1601517443271},{"schema":1601376749709,"derHash":"LnoKOwxSfrIMUiU8jSJ4yhCBNqjKOk6iLae1m6yQZQo=","subject":"CN=Staat der Nederlanden Burger CA - G3,O=Staat der Nederlanden,C=NL","subjectDN":"MFwxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xLTArBgNVBAMMJFN0YWF0IGRlciBOZWRlcmxhbmRlbiBCdXJnZXIgQ0EgLSBHMw==","whitelist":false,"attachment":{"
hash":"333baabfa08d3f556b2b77e6fbd81a7c8d6eeffc79185f35ee1b9940de7adb0b","size":2219,"filename":"Ddtmy6Pa-pijb1fgZHrEBrRujNwcH920-5ucOhHG4yU=.pem","location":"security-state-staging/intermediates/1bef5ac3-89f5-4d09-bc35-4146f932b183.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ddtmy6Pa+pijb1fgZHrEBrRujNwcH920+5ucOhHG4yU=","crlite_enrolled":false,"id":"19a63c15-3c2a-4f1b-a4bf-f07b30de7c65","last_modified":1601517443254},{"schema":1601376755045,"derHash":"5x2MO69D9rM1LfV0qfDUogZb8D2heVFLH8xdm+yMj80=","subject":"CN=Cybertrust Global Root,O=Cybertrust\\, Inc","subjectDN":"MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA==","whitelist":false,"attachment":{"hash":"1f262ade87c1ad2a96c3e27c26a783f6daabfe4db8d38fe377fa18eb20f05c8a","size":1674,"filename":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=.pem","location":"security-state-staging/intermediates/fbb7342f-2e0d-4f3b-8dc3-9f69e60e0638.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"foe
CwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=","crlite_enrolled":false,"id":"5a0248e5-fd5a-426c-99c1-331ad9cd50b2","last_modified":1601517443236},{"schema":1601376747615,"derHash":"usTwPcY1va4Gf3v+d6sG2ItbpGaLD0YVflPWypMQB38=","subject":"CN=TrustSign RSA EV CA,OU=Controlled by Sectigo exclusively for Ziwit,O=Ziwit,L=Montpellier,ST=Herault,C=FR","subjectDN":"MIGZMQswCQYDVQQGEwJGUjEQMA4GA1UECBMHSGVyYXVsdDEUMBIGA1UEBxMLTW9udHBlbGxpZXIxDjAMBgNVBAoTBVppd2l0MTQwMgYDVQQLEytDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIFppd2l0MRwwGgYDVQQDExNUcnVzdFNpZ24gUlNBIEVWIENB","whitelist":false,"attachment":{"hash":"05a98cf5e38717d1c7e8544b531bdf4bfdf308c7625823a299e96ffed1c65683","size":2219,"filename":"8o6U66RqF4Lhi_AFVcFBCBGggA7zxR6NC-m3h-ZT7LQ=.pem","location":"security-state-staging/intermediates/5183544d-1fa9-4601-9ea1-3b4454090cc0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8o6U66RqF4Lhi/AFVcFBCBGggA7zxR6NC+m3h+ZT7LQ=","crlite_enrolled":true,"id":"24008211-7aff-4f54-8d10-3ca632141e
41","last_modified":1601517443218},{"schema":1601376732692,"derHash":"rUk9boXsYIq4E6iHvcTUGWoLybM9JWWn+orEMPCKmaU=","subject":"CN=Staat der Nederlanden Autonome Apparaten CA - G3,O=Staat der Nederlanden,C=NL","subjectDN":"MGgxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xOTA3BgNVBAMMMFN0YWF0IGRlciBOZWRlcmxhbmRlbiBBdXRvbm9tZSBBcHBhcmF0ZW4gQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"13422064a1f73d17cb471aba1692618580819b2905822f628fa9325f4b9e8af4","size":2235,"filename":"QWTrYSKIZOkhPgxgK-ugNhLAYPM-za6OF4Z2NVH_OxU=.pem","location":"security-state-staging/intermediates/f0af33f7-86d7-46b0-8317-bfb72df4322b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QWTrYSKIZOkhPgxgK+ugNhLAYPM+za6OF4Z2NVH/OxU=","crlite_enrolled":false,"id":"2d565bb4-689f-41cd-a84f-c3529232d0d5","last_modified":1601517443201},{"schema":1601376771244,"derHash":"EjXhOBK5dSFwzpvTo7YOZqyMDLRPnMtcdoWJ/Z8nufQ=","subject":"CN=GoGetSSL ECC OV CA,O=GoGetSSL,L=Riga,C=LV","subjectDN":"MEwxCzAJBgN
VBAYTAkxWMQ0wCwYDVQQHEwRSaWdhMREwDwYDVQQKEwhHb0dldFNTTDEbMBkGA1UEAxMSR29HZXRTU0wgRUNDIE9WIENB","whitelist":false,"attachment":{"hash":"a7a310387416fb0d0327af048190b506d023a1f7b0790692246276e1948d468a","size":1244,"filename":"PrR6EH8Bm2wimAptoITpdhgeQfnUp4ASjI8FRS-Bq7E=.pem","location":"security-state-staging/intermediates/bc6d1c2b-c19f-42de-b2ec-11a97b643751.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PrR6EH8Bm2wimAptoITpdhgeQfnUp4ASjI8FRS+Bq7E=","crlite_enrolled":true,"id":"0bc47da0-e7f9-4d90-abc8-4a6d3f0c15c7","last_modified":1601517443179},{"schema":1601376763724,"derHash":"d+rEdkU8tzIlf/FmpevRZWyx9nO2jijfQXdBM5efoqQ=","subject":"CN=SHECA OV Secure Server CA,O=Shanghai Electronic Certificate Authority Center Co.\\, Ltd.,L=Shanghai,ST=Shanghai,C=CN","subjectDN":"MIGcMQswCQYDVQQGEwJDTjFDMEEGA1UEChM6U2hhbmdoYWkgRWxlY3Ryb25pYyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgQ2VudGVyIENvLiwgTHRkLjERMA8GA1UEBxMIU2hhbmdoYWkxETAPBgNVBAgTCFNoYW5naGFpMSIwIAYDVQQDExlTSEVDQSBPViBTZWN1cmUgU2VydmVyIE
NB","whitelist":false,"attachment":{"hash":"af175c34733f44cc96e00555374654c4f4d467bef0feb67039c31a3cd7232ef9","size":1886,"filename":"GvyQK0TA2Qh-B1rvOMI28XPmBiJD59lQrwz_N-iQO_U=.pem","location":"security-state-staging/intermediates/9b757196-34e5-4a3c-b276-4df8ae32ee65.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GvyQK0TA2Qh+B1rvOMI28XPmBiJD59lQrwz/N+iQO/U=","crlite_enrolled":true,"id":"2f77cfd2-2ffb-4909-8714-3629bde7ad50","last_modified":1601517443152},{"schema":1601376770407,"derHash":"WaNFbnUOMl/LE1ncKegoGJtJgsEZxk+s/WcocRswUy8=","subject":"CN=www.lh.pl,OU=LH.pl,O=LH.pl Sp. z o.o.,C=PL","subjectDN":"MEwxCzAJBgNVBAYTAlBMMRkwFwYDVQQKDBBMSC5wbCBTcC4geiBvLm8uMQ4wDAYDVQQLDAVMSC5wbDESMBAGA1UEAwwJd3d3LmxoLnBs","whitelist":false,"attachment":{"hash":"402828757f41d8cffb0ca05dbda29cf243d74ac40d69868042f3c4704cefe6be","size":1589,"filename":"SPflJTPfbRg6NWYkxrOaqWFjkUz6d6fxe8POctPyEFo=.pem","location":"security-state-staging/intermediates/9852f8f4-698c-4682-be77-b302a242b445.pem
","mimetype":"application/x-pem-file"},"pubKeyHash":"SPflJTPfbRg6NWYkxrOaqWFjkUz6d6fxe8POctPyEFo=","crlite_enrolled":true,"id":"88fae53f-9c98-4491-98fc-5382066d04ba","last_modified":1601517443133},{"schema":1601376764928,"derHash":"RKFX2TSIYKfUznyS4aOJ5MwMpZZ/nbu9EmY5+bmARrc=","subject":"CN=ePKI Root Certification Authority - G2,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MGMxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEvMC0GA1UEAwwmZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"a954c72f600501a139cda333d4ad599c7d80d5c9a2f820e99b478ea81e4bd705","size":2564,"filename":"tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=.pem","location":"security-state-staging/intermediates/9b8b9500-5c8a-4fff-839f-ec8c5225007c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=","crlite_enrolled":false,"id":"d45a382a-27a0-4770-bd46-caa195365dc3","last_modified":1601517443115},{"schema":1
601376758715,"derHash":"ZLNULRvJcvWKHRefPQuWUr5DTzrjhC4MRHiA1NYjpN4=","subject":"CN=Cybertrust Global Root,O=Cybertrust\\, Inc","subjectDN":"MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA==","whitelist":false,"attachment":{"hash":"47de0a95895055ce31d99d828b0db0f2ec2817ccee0b1699eac0fc8b4c0d7a15","size":1715,"filename":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=.pem","location":"security-state-staging/intermediates/b0359886-f578-4ff8-b6f6-68c9c49ac966.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=","crlite_enrolled":false,"id":"565f7b1a-68fa-497d-9c56-e9cd5a86b74e","last_modified":1601517443097},{"schema":1601376718312,"derHash":"y/j7d2YBZ+a6rNDfd82jl9ARfuK+6iO5NTF/i7W147A=","subject":"CN=DigiCert High Assurance EV Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNVBAMTIkRpZ2lDZXJ0IEhpZ2g
gQXNzdXJhbmNlIEVWIFJvb3QgQ0E=","whitelist":false,"attachment":{"hash":"382e8d24a379c01750353f084bffee84b45ad51b937a3bc8fdb300cd978bbeac","size":1593,"filename":"WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=.pem","location":"security-state-staging/intermediates/007ae41e-e2a4-4671-8841-b6c69a70cb76.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=","crlite_enrolled":false,"id":"c21f9364-fa90-4173-bcc3-ae3c385c1bb5","last_modified":1601517443080},{"schema":1601376737682,"derHash":"qtrdWoedLrjEGolZcpEpJwnUIFL1tjmVQcaUw7c1PNE=","subject":"CN=DigiCert Global Root G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcy","whitelist":false,"attachment":{"hash":"136d10cac076bac0accd9db250939ff676ec4c68b25d282e902afbdd7c69c034","size":1748,"filename":"i7WTqTvh0OioIruIfFR4kMPnBqrS2rdiVPl_s2uC_CY=.pem","location":"
security-state-staging/intermediates/9e4f7a6a-f1d9-42ef-bd0b-185c9c60d805.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i7WTqTvh0OioIruIfFR4kMPnBqrS2rdiVPl/s2uC/CY=","crlite_enrolled":false,"id":"2bb1ad45-bcec-4adb-b3ed-edb4f01d5b68","last_modified":1601517443045},{"schema":1601376778540,"derHash":"yU/t2k6GCJCFgLx/h7Q04DuyYuQvZMY4IKj1D7F8HOw=","subject":"CN=GlobalSign,OU=GlobalSign Root CA - R3,O=GlobalSign","subjectDN":"MEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFIzMRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu","whitelist":false,"attachment":{"hash":"46ad75ae4d4b3ea866008e00969c44fcf11c5283b34097a140d1ce9577c0080a","size":1548,"filename":"cGuxAXyFXFkWm61cF4HPWX8S0srS9j0aSqN0k4AP-4A=.pem","location":"security-state-staging/intermediates/ee510c0b-d1d8-40ba-bcca-1982d73cd1cb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cGuxAXyFXFkWm61cF4HPWX8S0srS9j0aSqN0k4AP+4A=","crlite_enrolled":false,"id":"fa4a1c02-26b3-4bf5-8034-bb4cabca2a73","last_modified":1601
517443010},{"schema":1601376724096,"derHash":"TKCAJjzkvCTxgRzvP/rKWl7zmPk+vQxbz1t70LrmfUo=","subject":"CN=BitCert RSA Business Secure Site CA,O=BitCert,L=Chengdu,ST=Sichuan,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMRAwDgYDVQQIEwdTaWNodWFuMRAwDgYDVQQHEwdDaGVuZ2R1MRAwDgYDVQQKEwdCaXRDZXJ0MSwwKgYDVQQDEyNCaXRDZXJ0IFJTQSBCdXNpbmVzcyBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"a40bf8b9f7a6cc399211e086cb3d8144ff7e721b1e16e5646fdc299974c39bc5","size":2133,"filename":"cz-x3ySlDQ6TKlRCvrhCFabpnRLASgrkOqGv8wQxW6A=.pem","location":"security-state-staging/intermediates/846ca5bb-c701-4333-a9a7-808ec99af5f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cz+x3ySlDQ6TKlRCvrhCFabpnRLASgrkOqGv8wQxW6A=","crlite_enrolled":true,"id":"c8d11d03-f57b-43e8-9309-17aa68d467a5","last_modified":1601517442992},{"schema":1601376762009,"derHash":"qNFOlF4+UVa8rl45c3z2obH1ECi7v5gvUM5fTAVWi00=","subject":"CN=Belgium Root CA3,C=BE","subjectDN":"MCgxCzAJBgNVBAYTAkJFMRkwFwYDVQQDExBCZWxnaXVtIFJvb3
QgQ0Ez","whitelist":false,"attachment":{"hash":"27c08a789500d6de5e3c63a5f87e09d913bc798b43f41a68cb3e106a86c3feeb","size":1987,"filename":"x7xeSTcmu_Ux9i_F9VE6wD6tgTr03NRFszBbo9PVM3Q=.pem","location":"security-state-staging/intermediates/5c7c8389-3909-40c6-b8fe-11b4a28455ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x7xeSTcmu/Ux9i/F9VE6wD6tgTr03NRFszBbo9PVM3Q=","crlite_enrolled":false,"id":"c7e38a24-aefc-45fe-a666-c74ab61c8f39","last_modified":1601517442975},{"schema":1601376750124,"derHash":"raGI+DDDE/YEZIjsNB8e1K95PG3CjFhgBEXfvrQWN0Y=","subject":"CN=Thawte CN RSA EV CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHzAdBgNVBAMTFlRoYXd0ZSBDTiBSU0EgRVYgQ0EgRzE=","whitelist":false,"attachment":{"hash":"2e25caf70d87ee67fe15801e44af860291aeeb44a7970edffe70210cf856c3ba","size":1678,"filename":"Hn_AvJkahgLnROxUs8e4tPKOI2wS-n9H5P_jk0Cf2T4=.pem","location":"security-state-staging/i
ntermediates/e792a27d-66e1-40ac-a2be-d23b05217ef8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Hn/AvJkahgLnROxUs8e4tPKOI2wS+n9H5P/jk0Cf2T4=","crlite_enrolled":false,"id":"2eabd45c-f82e-46d9-84d2-60e3b784ff6f","last_modified":1601517442957},{"schema":1601376781920,"derHash":"JJBRRb2bm/6ZxgNUtJlRvg5wnxY0z70ONw/rnwaO1sM=","subject":"CN=Cybertrust Global Root,O=Cybertrust\\, Inc","subjectDN":"MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA==","whitelist":false,"attachment":{"hash":"14cdeb20754749b93fa91fc1e30b4e9dfedfb7f4d7022c381688a63321e757cd","size":1674,"filename":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=.pem","location":"security-state-staging/intermediates/d469a3f0-cf37-44b9-a3bf-95ac5492cd92.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=","crlite_enrolled":false,"id":"fc237743-155a-442f-b754-e8fba2257bfe","last_modified":1601517442922},{"schema":1601376757069,"derHash":"cDV7nl
bT+zxsAJw4xxgUVMRikI37zm1U1g3+HlBuFP0=","subject":"CN=TrustAsia ECC OV TLS Pro CA G2,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MF0xCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMScwJQYDVQQDEx5UcnVzdEFzaWEgRUNDIE9WIFRMUyBQcm8gQ0EgRzI=","whitelist":false,"attachment":{"hash":"eef7786b39056fba3e747973ce4532b06a0cd3dc1326554703821b55ecdd5eff","size":1406,"filename":"zQ_SLNg_h_U_OTLMb3XQLYnyHZ7Y7Hk6_xyTVTSQekc=.pem","location":"security-state-staging/intermediates/48fd3053-a283-46d0-99e4-f89312258dce.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zQ/SLNg/h/U/OTLMb3XQLYnyHZ7Y7Hk6/xyTVTSQekc=","crlite_enrolled":false,"id":"24ff0be6-616b-4ad5-8017-005dbb310bf7","last_modified":1601517442905},{"schema":1601376762852,"derHash":"aLnHYSGaWx8BMXhEdGZdthu9sQngDwXKn3QkTuX19Ss=","subject":"CN=USERTrust RSA Certification Authority,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1U
EBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazEuMCwGA1UEAxMlVVNFUlRydXN0IFJTQSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"9e2ebbe76bfd34d023064438681d83355a539b5267b279ebe8789bff5deae232","size":1967,"filename":"x4QzPSC810K5_cMjb05Qm4k3Bw5zBn4lTdO_nEW_Td4=.pem","location":"security-state-staging/intermediates/4357dc68-fa1b-4e2f-83fd-69a438b26167.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x4QzPSC810K5/cMjb05Qm4k3Bw5zBn4lTdO/nEW/Td4=","crlite_enrolled":false,"id":"637da9fa-bc0c-4f4b-becc-9710f0181efd","last_modified":1601517442888},{"schema":1601376741469,"derHash":"hQSgNQA2sYWUsfR7ajvTUT4osEW8fb/lsI2PMEnNPP4=","subject":"CN=Entrust Class 2 Client CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAxMCBFb
nRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDIgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"22a1ae9da8ba7c77870bcf18a45bd22acc40f753e2f6febbfb77c1140ac63f95","size":1764,"filename":"JloS0qeSNdA_zDy0D24iKRwsIsmYt-GFR_0g8UIjlUE=.pem","location":"security-state-staging/intermediates/b046d24e-cefe-4131-8cfa-17dc7fa261e6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JloS0qeSNdA/zDy0D24iKRwsIsmYt+GFR/0g8UIjlUE=","crlite_enrolled":false,"id":"c37666f8-318b-4ea3-9931-8bf0653657d1","last_modified":1601517442870},{"schema":1601376764522,"derHash":"ie/rJQlrpMzUCvT7h1bwpIQ5lZdIIgIJFMToWdkyt/M=","subject":"CN=SSL.com EV Root Certification Authority RSA R2,O=SSL Corporation,L=Houston,ST=Texas,C=US","subjectDN":"MIGCMQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE3MDUGA1UEAwwuU1NMLmNvbSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQSBSMg==","whitelist":false,"attachment":{"hash":"c7680e4e47bb04f8515b20fc6fe36741515835bace47e
f132f02922b0ea612ea","size":2113,"filename":"fNZ8JI9p2D_C-bsB3LH3rWejY9BGBDeW0JhMOiMfa7A=.pem","location":"security-state-staging/intermediates/a586bb32-1766-40e6-bdd8-ba5e8bf95066.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fNZ8JI9p2D/C+bsB3LH3rWejY9BGBDeW0JhMOiMfa7A=","crlite_enrolled":false,"id":"2dea51d4-7fea-4eb2-a507-7fa4ef9b5e26","last_modified":1601517442852},{"schema":1601376724524,"derHash":"yE4TeLl0qZGs3N1zNCHjBh5vohoEkciQK6/eOFXgBj4=","subject":"CN=GlobalSign,OU=GlobalSign Root CA - R6,O=GlobalSign","subjectDN":"MEwxIDAeBgNVBAsTF0dsb2JhbFNpZ24gUm9vdCBDQSAtIFI2MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu","whitelist":false,"attachment":{"hash":"bc273edde0aa009fa424378923565ab23426f40d786f1f743e2a80d94c8514a4","size":1902,"filename":"aCdH-LpiG4fN07wpXtXKvOciocDANj0daLOJKNJ4fx4=.pem","location":"security-state-staging/intermediates/cd783c76-a2d3-49bb-8aaf-dd09ffcf625c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aCdH+LpiG4fN07wpXtXKvOciocD
ANj0daLOJKNJ4fx4=","crlite_enrolled":false,"id":"8feb1032-85fe-4d8c-b444-3c69d47c6f6d","last_modified":1601517442835},{"schema":1601376771681,"derHash":"VgCvtrriqDtmucu+nO7I9T4mQgppk5pI3MbVa5l5CmM=","subject":"CN=GDCA TrustAUTH R4 OV SSL CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MG4xCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJDAiBgNVBAMMG0dEQ0EgVHJ1c3RBVVRIIFI0IE9WIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"9212a9d7e5c2bfcfbf43aaf53d8aa2e3501f467ef547dee098ab48f5d850d6ad","size":2052,"filename":"UNDNK48i2z9IOnLBTQP6yg9UerUnpfpb-nZvgw-0Who=.pem","location":"security-state-staging/intermediates/4aa91fab-6b52-44a6-a3c1-ef65ee1e7d8f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UNDNK48i2z9IOnLBTQP6yg9UerUnpfpb+nZvgw+0Who=","crlite_enrolled":false,"id":"a463b3f5-089a-40a1-ac08-8bb23ab16b4c","last_modified":1601517442818},{"schema":1601376773694,"derHash":"idqttBummLs3iu6E6slhIdIPjC/K
Y+xobZMHIprT6y4=","subject":"CN=DigiCert High Assurance EV Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNVBAMTIkRpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEVWIFJvb3QgQ0E=","whitelist":false,"attachment":{"hash":"040d9900f833e268067238f80552cbc76f9b4e228c4b60e714c5fae8f85e3ff4","size":1743,"filename":"WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=.pem","location":"security-state-staging/intermediates/95a26b1c-0192-4ed1-be8b-87bc4f2afbe7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=","crlite_enrolled":false,"id":"587ff666-b7af-4e54-b57e-854a5cbd3919","last_modified":1601517442800},{"schema":1601376738506,"derHash":"n2HQl2jaM/f5n35+rZNZAiJJQ7TJrQe2KfdFwLCEdbc=","subject":"CN=Cybertrust Global Root,O=Cybertrust\\, Inc","subjectDN":"MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA==","whitelist":false,"at
tachment":{"hash":"d77ee7751b6c931314693fd1c86891d4a8d25831eb4080427adfd11d77e84924","size":1715,"filename":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=.pem","location":"security-state-staging/intermediates/aa0a44b0-c3d8-459e-a78d-df26e5aa1492.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=","crlite_enrolled":false,"id":"49fc0d95-3476-4729-bcc9-6946f161d1ed","last_modified":1601517442783},{"schema":1601376765799,"derHash":"2Wy8A7UjzTMVkYZRz0hiFiiH3VY6+yNS0/NLuUV2+T0=","subject":"CN=Verizon Global Root CA,OU=OmniRoot,O=Verizon Business,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRkwFwYDVQQKDBBWZXJpem9uIEJ1c2luZXNzMREwDwYDVQQLDAhPbW5pUm9vdDEfMB0GA1UEAwwWVmVyaXpvbiBHbG9iYWwgUm9vdCBDQQ==","whitelist":false,"attachment":{"hash":"522a9129b746a60c4aa7d040da0f639b8349b1fee088f3f0ecf8b8101c7e452a","size":1760,"filename":"v-gpCYcuRDTxFcUaVhaAGVlNDgPco2PZ87SDnQurzeU=.pem","location":"security-state-staging/intermediates/98a3c55c-3f5d-4937-9389-
3ca882ba85cf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"v+gpCYcuRDTxFcUaVhaAGVlNDgPco2PZ87SDnQurzeU=","crlite_enrolled":false,"id":"62b74836-05bd-4881-9d60-b255969ce226","last_modified":1601517442759},{"schema":1601376780668,"derHash":"gCRH7lIcxmbNt7uuk6OF5V8gDXaj0TVqhURaxMvb7RI=","subject":"CN=Cybertrust Global Root,O=Cybertrust\\, Inc","subjectDN":"MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA==","whitelist":false,"attachment":{"hash":"0311ba514ea52c161164a44190d3ff8d3f21d7e178936261c9f0f3b873c30bc0","size":1317,"filename":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=.pem","location":"security-state-staging/intermediates/3b96ff08-978c-47b1-9a08-f7894f3bb801.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=","crlite_enrolled":false,"id":"cabdabb7-b6b6-4aac-8c2a-c5931f2fc460","last_modified":1601517442729},{"schema":1601376738922,"derHash":"LRK2GaZgzvsBMnGDHYkSE/xDTpgqIVaCVs9OLoYyS+o
=","subject":"CN=Starfield Services Root Certificate Authority - G2,O=Starfield Technologies\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"4c84e52a6f32fdac5b7a09a6c9cd30af89415d99ee94c615e420b34e67cffcb0","size":1605,"filename":"KwccWaCgrnaw6tsrrSO61FgLacNgG2MMLq8GE6-oP5I=.pem","location":"security-state-staging/intermediates/70be3983-3e8b-4df2-b609-e35f19408bbc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KwccWaCgrnaw6tsrrSO61FgLacNgG2MMLq8GE6+oP5I=","crlite_enrolled":false,"id":"f9243f28-e9ff-47ba-ae4a-e2657cce028c","last_modified":1601517442703},{"schema":1601376763286,"derHash":"0QjDSljA5KYWRJ+MSDGAI6IpyGzT3dXV/mBBpAHBahQ=","subject":"OU=ePKI Root Certification Authority,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN
":"MF4xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"15e5931fc9e514bb8bf23b5f5c3c40bb3131ccf6ed8b0857416342b002b8db15","size":2645,"filename":"YlVMFwBVQ7I3IV8EJo3NL9HEcCQK08hmDiWuLFljD1U=.pem","location":"security-state-staging/intermediates/a894f5a2-8e74-4828-97c6-41052369ca59.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YlVMFwBVQ7I3IV8EJo3NL9HEcCQK08hmDiWuLFljD1U=","crlite_enrolled":false,"id":"056b1bcf-53e9-405c-96eb-eea77dcff395","last_modified":1601517442680},{"schema":1601376720383,"derHash":"BxuLSxOteyvgn91/vfNIJGCDgJjCFRm4OzFQ+OkZgy0=","subject":"CN=DigiCert High Assurance EV Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNVBAMTIkRpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEVWIFJvb3QgQ0E=","whitelist":false,"attachment":{"hash":"aaca8a07803242bef149cea
dff6a9f44dbefb42c36b2589988a8a242b9fd78a3","size":1622,"filename":"WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=.pem","location":"security-state-staging/intermediates/09507c13-a7e2-48de-8c37-88554ebc941e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=","crlite_enrolled":false,"id":"61372f59-c5ce-4c32-958a-7ee04c1dc8bb","last_modified":1601517442652},{"schema":1601376780263,"derHash":"GEZ8TmTVhshEpERm3lunptWWnHqShZpRHF/a11sDzc4=","subject":"CN=ePKI Root Certification Authority - G2,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MGMxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEvMC0GA1UEAwwmZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"6bf1025a0f2a333a3a9f9cf1fa26d326f099cad7c0d6658f30ea16733092bd7a","size":2621,"filename":"tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=.pem","location":"security-state-staging/intermediates/c7b2feb5-da29-4802-ba1d-e34f9184099c.pem",
"mimetype":"application/x-pem-file"},"pubKeyHash":"tInMsiS5prgd0nTOr1IJwlKZjJp2r0jk9MUKByhGGCU=","crlite_enrolled":false,"id":"ca26521c-22ff-48b3-bd4d-3c06d4ffa75a","last_modified":1601517442632},{"schema":1601376767919,"derHash":"ps9k27TI1f0ZzkiJYGjbA7UzqNEzbGJWqH0Ay7Pe8+o=","subject":"CN=USERTrust ECC Certification Authority,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazEuMCwGA1UEAxMlVVNFUlRydXN0IEVDQyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"3a7503777199e5b45661530654f7276cd82134eaa1ba8f391bb243e5a7a8bf47","size":1386,"filename":"ICGRfpgmOUXIWcQ_HXPLQTkFPEFPoDyjvH7ohhQpjzs=.pem","location":"security-state-staging/intermediates/8b43a741-845c-4f0d-9cb8-04371ae9c724.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ICGRfpgmOUXIWcQ/HXPLQTkFPEFPoDyjvH7ohhQpjzs=","crlite_enrolled":false,"id":"256c0067-
d90e-4625-aa2a-4223c14c4995","last_modified":1601517442614},{"schema":1601376752583,"derHash":"n5dERjvhNxR1Tho77PmMCMwgXkqzICj04oMMShsndbg=","subject":"CN=Belgium Root CA2,C=BE","subjectDN":"MCgxCzAJBgNVBAYTAkJFMRkwFwYDVQQDExBCZWxnaXVtIFJvb3QgQ0Ey","whitelist":false,"attachment":{"hash":"6b1177b9cf6d097674388a839e23ad9fe6462ab73ca6a823af4fa3a196083069","size":1293,"filename":"-OX5BbyTmREme4PVCBSpAyO1Hhg2KdtS1PwtVGilpXg=.pem","location":"security-state-staging/intermediates/68bf58ba-15f5-4acc-982f-48b8b2e021fb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+OX5BbyTmREme4PVCBSpAyO1Hhg2KdtS1PwtVGilpXg=","crlite_enrolled":false,"id":"6f19a71d-8c52-477f-9ad5-ef93aab07c08","last_modified":1601517442593},{"schema":1601376772083,"derHash":"Hd/d+IPjlFsssk+luDeIN5xasFhCKrl532bHdHOYhoc=","subject":"CN=Aetna Inc. Secure EV CA2,O=Aetna Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZXRuYSBJbmMxITAfBgNVBAMTGEFldG5hIEluYy4gU2VjdXJlIEVWIENBMg==","whitelist":false,"attachment":{
"hash":"e6068e6a00cb2a48657b0008e9ab5e6e47917580dc4400c9d7210b278ef98854","size":1626,"filename":"u6NyIqjq8NgZ5VkAyKFRk6mJ-QeTmwgG2SNmXrkK7vE=.pem","location":"security-state-staging/intermediates/0a4750b1-d9fb-4d20-8e86-0a6d40d82ece.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"u6NyIqjq8NgZ5VkAyKFRk6mJ+QeTmwgG2SNmXrkK7vE=","crlite_enrolled":true,"id":"d84be73b-937b-4c91-b80e-a6cd1de6e276","last_modified":1601517442569},{"schema":1601376726961,"derHash":"OrvmPa91bFAWtrhfUgFf2Oisvid8UIexJ6YFY6hB7Yo=","subject":"CN=Cloudflare Inc ECC CA-3,O=Cloudflare\\, Inc.,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBDbG91ZGZsYXJlLCBJbmMuMSAwHgYDVQQDExdDbG91ZGZsYXJlIEluYyBFQ0MgQ0EtMw==","whitelist":false,"attachment":{"hash":"aae889b11427ea641ba5e6fa121be2cea21baf4f6c6e3a4a24696fb45f974223","size":1378,"filename":"FEzVOUp4dF3gI0ZVPRJhFbSJVXR-uQmMH65xhs1glH4=.pem","location":"security-state-staging/intermediates/27a31a42-feae-47ff-8d4e-647a896f9508.pem","mimetype":"application/x-p
em-file"},"pubKeyHash":"FEzVOUp4dF3gI0ZVPRJhFbSJVXR+uQmMH65xhs1glH4=","crlite_enrolled":true,"id":"de14e899-d269-4989-b43a-525c56a62193","last_modified":1601517442545},{"schema":1601376751778,"derHash":"nHgvawVYrcscye+EUyDRRZLJIg/PADDAmA2ddTsGYk8=","subject":"CN=International Hellenic University TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGDMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTE7MDkGA1UEAwwySW50ZXJuYXRpb25hbCBIZWxsZW5pYyBVbml2ZXJzaXR5IFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"3b0bf8066566b2050bb810100d606b335370d03d1252c58e445985c84ba0a8df","size":2954,"filename":"i3AYNFBcJ3BXrQRfRHmas7YdtYYMFl9BDRWLHPQMDXo=.pem","location":"security-state-staging/intermediates/6d2a3494-4259-4df1-9701-4a86ccae3824.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i3AYNFBcJ3BXrQRfRHmas7YdtYYMFl9BDRWLHPQMDXo=","crlite_enrolled":true,"id":"dcc6fefb-dd5a-48f0-8fbf-f8c7a8ac06c0
","last_modified":1601517442525},{"schema":1601376783522,"derHash":"MHiREhT4haTna0lROE9TIsM8ob88aIrPA0f0M6bna4s=","subject":"SERIALNUMBER=201604,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDQ=","whitelist":false,"attachment":{"hash":"5a2eb7557029c21a2d0310c86e2ae8eae55e2e98cbf96fd1eb53a71127e8eddf","size":2093,"filename":"4Seg4lVqXNpRcFpI-CnyaEL9ZiJxhk3QwyO0AUdDDGo=.pem","location":"security-state-staging/intermediates/705294e3-5b5c-4fee-bb7f-2e84dfea46f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4Seg4lVqXNpRcFpI+CnyaEL9ZiJxhk3QwyO0AUdDDGo=","crlite_enrolled":false,"id":"0911d5fd-fce5-4da1-a223-d8a576f29a50","last_modified":1601517442507},{"schema":1601376762446,"derHash":"wKV48hCeb0LT2TmUje6rcpsg97I7Qjer2ElN9VTPmFw=","subject":"CN=emSign ECC EV SSL CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEiMCAGA1UEAxMZZW1TaWduIEVDQyBFVi
BTU0wgQ0EgLSBDMw==","whitelist":false,"attachment":{"hash":"853ba62a0ec592eb9c2ee33d281011227250af71cdcbf9b0e894d233249115ca","size":1138,"filename":"UEYlLVSYKuv5nRGqAxngK1P6jpyy3oyLZGnFpQIPQFk=.pem","location":"security-state-staging/intermediates/81418df8-ee8d-48b2-804c-11c4866e8e31.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UEYlLVSYKuv5nRGqAxngK1P6jpyy3oyLZGnFpQIPQFk=","crlite_enrolled":true,"id":"b968e489-d60c-472f-8f60-2e7fcd90e869","last_modified":1601517442490},{"schema":1601376772898,"derHash":"30vyBMyAZ3PtfRBa9IgwZqsmrcIpI5HJjnnXENGbT2c=","subject":"SERIALNUMBER=201409,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDk=","whitelist":false,"attachment":{"hash":"fb73c5f85843cf6be0d3dc997db1b00003baf1f7b523e507ab38c78a333f0449","size":2093,"filename":"2BoYdyaSF9u3Rypv_R3GF6bqtEh-S4UwMsMm_WkvQLU=.pem","location":"security-state-staging/intermediates/5b0bc508-a430-449a-a37a-7b1bc3209fc3.pem","mimetype":"applicati
on/x-pem-file"},"pubKeyHash":"2BoYdyaSF9u3Rypv/R3GF6bqtEh+S4UwMsMm/WkvQLU=","crlite_enrolled":false,"id":"a23d52c7-7936-41be-8f46-9e9ca4464caa","last_modified":1601517442472},{"schema":1601376718715,"derHash":"DnpJwCo8FPnGvBbDgYBHXCOzPV6xp50OjHhUK8GxD0I=","subject":"SERIALNUMBER=201702,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwMg==","whitelist":false,"attachment":{"hash":"0837b1571241ef7e3c08a48093f8379ebfaf41141ba72b772e9ec14261bd34c6","size":2154,"filename":"H5gPRidS80eiZb-FQHKd8rMNDdv3rm1Hm6AIX7qvyAo=.pem","location":"security-state-staging/intermediates/64a9cc69-47c4-483d-98c5-99e00158e56a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H5gPRidS80eiZb+FQHKd8rMNDdv3rm1Hm6AIX7qvyAo=","crlite_enrolled":false,"id":"e82dfd35-d2d7-4663-a2a3-40a07ad942ce","last_modified":1601517442454},{"schema":1601376758315,"derHash":"2df9k
LkOwYhr3PZVGVWc1V7sP6qJstQbeVxOpLl2A14=","subject":"SERIALNUMBER=201607,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDc=","whitelist":false,"attachment":{"hash":"acacd408aa018f6c76af5f4a18d599c644b9f2353cc079074462f31ff777ec42","size":2093,"filename":"pRg9cPl95zPK0qA68ddGKi1dmweMxXLMBYHiTX7n4J0=.pem","location":"security-state-staging/intermediates/cbebd73e-a2be-4ca9-a531-bcc305c4ded0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pRg9cPl95zPK0qA68ddGKi1dmweMxXLMBYHiTX7n4J0=","crlite_enrolled":false,"id":"41592bd5-4e42-443c-a3aa-aeb0ed864faf","last_modified":1601517442430},{"schema":1601376726155,"derHash":"vWKNNkRXh8p3Y3Sp/iUxdo9oiGory9001zewcCgONOY=","subject":"SERIALNUMBER=201503,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDM=","whitelist":false,"attachment":{"hash":"220be85a912b82c555c282848b582b9dccd3f786353662d697b99074d3e0b874","size":2093,"filename":"fc
wvxBR_7dywvrrGWH54w2I5o2MWZNZJurHDsiPXY1w=.pem","location":"security-state-staging/intermediates/1edb624f-4dfa-4eee-ba74-aa6a7155be76.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fcwvxBR/7dywvrrGWH54w2I5o2MWZNZJurHDsiPXY1w=","crlite_enrolled":false,"id":"f4f52d98-123a-46df-aeb4-6bfb8e484b5d","last_modified":1601517442391},{"schema":1601376779391,"derHash":"ReTBVe5IzKO/un0ggVB9lyAY6CKrqe3TREzAHdxMNCk=","subject":"SERIALNUMBER=201606,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDY=","whitelist":false,"attachment":{"hash":"0b8d76856fea354ea3c15ce6b88596f1684f7b7387bc2ef5bed74a1eed5eba50","size":2093,"filename":"QGnVUqqcNoQM84XsWCS5GovEHtb29uveMcAlBBZfXVY=.pem","location":"security-state-staging/intermediates/7c1bc0de-34b5-4fd5-946f-1da949e8371d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QGnVUqqcNoQM84XsWCS5GovEHtb29uveMcAlBBZfXVY=","crlite_enrolled":false,"id":"3dcf2d07-f7f6-450b-a888-b59d9c81fd99","last_m
odified":1601517442372},{"schema":1601376721639,"derHash":"oryx6FI/uyO5onevoLZ9ouYemti6wbkmpzOhrgfGfN4=","subject":"SERIALNUMBER=201404,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDQ=","whitelist":false,"attachment":{"hash":"85b83278cf6fd8d7e7662c4b50b777a2eee40d98edd6ea3566189611dc182e4f","size":2093,"filename":"59ldQ4_B5SEeeY5yyNfRUTT2h15K2xW1KqgBu6OoBU8=.pem","location":"security-state-staging/intermediates/053dea68-1653-4891-b126-132054c21dac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"59ldQ4/B5SEeeY5yyNfRUTT2h15K2xW1KqgBu6OoBU8=","crlite_enrolled":false,"id":"d77a4a26-a8a9-49c6-993f-e5713bcb231a","last_modified":1601517442355},{"schema":1601376722839,"derHash":"9vFZKGoUAd5Tl+IaAJBTSoX157n5j9SlpHsd/9S/3tQ=","subject":"CN=emSign EV SSL CA - C1,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFgxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEeMBwGA1UEAxMVZW1TaWduIEVWIFNTTCBDQSAtIEMx","
whitelist":false,"attachment":{"hash":"6e8a3c81fcf028c7f31ff8a6ecf47b000e0c56f86618ee42c5ab92b7dd438a5f","size":1581,"filename":"bJpaGvT-ExoQi2_an1HG3Mo5yMrot02ORyF_NS5p5J8=.pem","location":"security-state-staging/intermediates/586120f4-7f7a-48aa-a621-1d452827f4f0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bJpaGvT+ExoQi2/an1HG3Mo5yMrot02ORyF/NS5p5J8=","crlite_enrolled":true,"id":"219bee21-4e35-434a-b98f-7a9cdbbf3432","last_modified":1601517442337},{"schema":1601376759122,"derHash":"s0pHXAGVUDWHE+0DXqAsXtw6ObL9X8ZOR+jsDM4frx8=","subject":"SERIALNUMBER=201708,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwOA==","whitelist":false,"attachment":{"hash":"f375406a2b6f58568b6c858fe21f9d564d1cf55fc594234237157747a4d3dc92","size":2154,"filename":"kLOxxy10NQkrCrh2qL5R2g-yx6mjlkwYCq44XF4JDnE=.pem","location":"security-state-staging/in
termediates/eaee698e-518e-4ca6-a425-60d3f01f6de4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kLOxxy10NQkrCrh2qL5R2g+yx6mjlkwYCq44XF4JDnE=","crlite_enrolled":false,"id":"0ed3dc2d-dec7-4eef-8b35-a119fd18862e","last_modified":1601517442320},{"schema":1601376753803,"derHash":"B3Q+mECXm+IlPnqICW3y2MTs4PpbrIWs1gujtNtNijw=","subject":"SERIALNUMBER=201608,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDg=","whitelist":false,"attachment":{"hash":"8c0cbaae9526908b6f5e7c40992af9d535a7001ef6d181f7e72c214e621c827d","size":2093,"filename":"db1FmZo_iQKRN_DoaJ1EqbHbAgjTFPseNUqd5epdDlQ=.pem","location":"security-state-staging/intermediates/0c410741-518e-4f46-b761-90c573b9d339.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"db1FmZo/iQKRN/DoaJ1EqbHbAgjTFPseNUqd5epdDlQ=","crlite_enrolled":false,"id":"a37c7a69-bb5b-45df-95df-cc27e5d2d7bf","last_modified":1601517442303},{"schema":1601376737259,"derHash":"AqetTdXgue/AlzaNn8xQd7ibDy
4tbqfOJ1EreP4jLcw=","subject":"SERIALNUMBER=201605,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDU=","whitelist":false,"attachment":{"hash":"5587fb6a2f9d49ffcdca5e46b1f4fe6990b3720eab5f405fa5c274655c54845a","size":2093,"filename":"mxzmcEmVZ7pbwgyakCsaNfIs0nO1a2ATXlWM3YDPSv4=.pem","location":"security-state-staging/intermediates/79266315-a547-48b7-8a8c-539dd98c4c81.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mxzmcEmVZ7pbwgyakCsaNfIs0nO1a2ATXlWM3YDPSv4=","crlite_enrolled":false,"id":"0d05e044-702c-45d3-ad6f-6da64708138e","last_modified":1601517442285},{"schema":1601376778129,"derHash":"uvdk/pz9nDFLuXaGQbRcOhu6U1hqeqbdAUy2wJ+aBSA=","subject":"SERIALNUMBER=201503,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTUwMw==","whitelist":false,"attachment":{"hash":"3e033e3994ee02f690af4a6e1dfc41b5ff5533912cf4d56880cb72398af497c1","size":2097,"filename":"XfHlidGGDVVOgzjUp
rEw8aIeQxYbnmOME26_9SaNpvE=.pem","location":"security-state-staging/intermediates/3d07716f-e548-4635-91fc-532fccbbb2d0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XfHlidGGDVVOgzjUprEw8aIeQxYbnmOME26/9SaNpvE=","crlite_enrolled":false,"id":"9fd8a38a-216f-4d8b-9d09-d79bf14e30ed","last_modified":1601517442268},{"schema":1601376740238,"derHash":"ZfceS8/y742OALVAFT3EYctgLGFdSf89kSCbOHscJgo=","subject":"SERIALNUMBER=201703,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwMw==","whitelist":false,"attachment":{"hash":"fcbdbb96bf0df55e19f16d9601414e7c0338df1eeef0d6de6ab4deffe63f2581","size":2154,"filename":"6rvgeyqeTZZdXHb3Ou7zqzk6_NHxF5QuumcKoawuk7k=.pem","location":"security-state-staging/intermediates/86de0db1-1ca7-46ac-9cfb-412953f84176.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6rvgeyqeTZZdXHb3Ou7zqzk6/NHxF5QuumcKoawu
k7k=","crlite_enrolled":false,"id":"293c6349-ae54-4ddd-8603-df8d4e0ff284","last_modified":1601517442250},{"schema":1601376719105,"derHash":"4KM1mSv89KKXon0Q/9nLnuCZbnxUiK2o2ureNFAlA7U=","subject":"SERIALNUMBER=201602,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDI=","whitelist":false,"attachment":{"hash":"8ed8c59d6f248090b9615d90830669f44c25dd87c173570e90df02cfb884effd","size":2093,"filename":"xoEAoF10JcsljWhXiwKwqchikB5LpWs5WsK8af_smGc=.pem","location":"security-state-staging/intermediates/a59db986-6cba-48b5-a4e6-31308dca10db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xoEAoF10JcsljWhXiwKwqchikB5LpWs5WsK8af/smGc=","crlite_enrolled":false,"id":"249e5ad1-b304-4642-91e7-fdeb791315f6","last_modified":1601517442232},{"schema":1601376744368,"derHash":"cQtQSTgw21Uk2z0n4hl2Yq3xl29x9TZLtA/f+EIFw7w=","subject":"SERIALNUMBER=201603,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgN
VBAUTBjIwMTYwMw==","whitelist":false,"attachment":{"hash":"4c9149541b8e9c4b674fa0ff33d8df3025f88a01f50933c9da4d3b40e69c096c","size":2097,"filename":"XBQTAIj5aGw-bAbL6VUInxFeRnki1PNjhKhT0LcTGrY=.pem","location":"security-state-staging/intermediates/f9479f29-2c37-41fa-8851-de53e17e6b8f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XBQTAIj5aGw+bAbL6VUInxFeRnki1PNjhKhT0LcTGrY=","crlite_enrolled":false,"id":"abd3813e-1fdc-42f4-bf74-e1c2cc8aeaae","last_modified":1601517442215},{"schema":1601376748866,"derHash":"p0//9ShHGQU4UHOt85lwGbJvT68kvOkQKicuekSE5Lw=","subject":"CN=Soluti CA - DV,O=SOLUTI - SOLUCOES EM NEGOCIOS INTELIGENTES S/A,L=Goi\u00e2nia,ST=Goi\u00e1s,C=BR","subjectDN":"MIGDMQswCQYDVQQGEwJCUjEPMA0GA1UECAwGR29pw6FzMREwDwYDVQQHDAhHb2nDom5pYTE3MDUGA1UEChMuU09MVVRJIC0gU09MVUNPRVMgRU0gTkVHT0NJT1MgSU5URUxJR0VOVEVTIFMvQTEXMBUGA1UEAxMOU29sdXRpIENBIC0gRFY=","whitelist":false,"attachment":{"hash":"e2655aaf6aee7659f46b6845d4679fe00f2961d4f982179edfe793575137f826","size":1837,"fil
ename":"kAzMeuwjUBWfPL5YEYfQG9qK_ABDxl0BMvPtzwEPN7E=.pem","location":"security-state-staging/intermediates/2f0964e2-f735-4725-9e68-4346c3123587.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kAzMeuwjUBWfPL5YEYfQG9qK/ABDxl0BMvPtzwEPN7E=","crlite_enrolled":true,"id":"d7891a3b-bf82-49b7-8ef7-c041d57dde7a","last_modified":1601517442198},{"schema":1601376760753,"derHash":"ivthwh4w3DDI9gwHsHg7nu0GhtyurJElhz/XyqjAvlw=","subject":"SERIALNUMBER=201603,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDM=","whitelist":false,"attachment":{"hash":"3d028d5c255fc3a1068076848710da8b3f843a8758c47228b6ac0486ac903f72","size":2093,"filename":"VaNDp0-GOXKCK5DMQUXXYJaetuE09YpOUENU9PNhSQY=.pem","location":"security-state-staging/intermediates/f4ae12b2-8eaa-4573-84c2-ed92fcac954c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VaNDp0+GOXKCK5DMQUXXYJaetuE09YpOUENU9PNhSQY=","crlite_enrolled":false,"id":"6a26c541-441f-4996-9f72-a867fe62b81f
","last_modified":1601517442181},{"schema":1601376761610,"derHash":"+RqsoOTlM3R6CIC/z28mcg3B0FSUw5ONpoAikNWgmzI=","subject":"CN=emSign SSL CA - C1,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFUxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEbMBkGA1UEAxMSZW1TaWduIFNTTCBDQSAtIEMx","whitelist":false,"attachment":{"hash":"371dbaddc94c282e8343a28dc05dcb74778a143ee818d5884a3116b27bd5028b","size":1577,"filename":"Vu8rCm62GhPpPUIskAEOlG-x_WJEzc46NqUrWffwTVo=.pem","location":"security-state-staging/intermediates/5c3885bb-cc4d-4eb7-8b65-2d767339453e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vu8rCm62GhPpPUIskAEOlG+x/WJEzc46NqUrWffwTVo=","crlite_enrolled":true,"id":"40ee5283-fd3d-4e3c-9d19-0ac5439365bb","last_modified":1601517442163},{"schema":1601376723649,"derHash":"+BdppSTluWI+F/P111gfpKQZKXf/TiRX+wAyONz2BBA=","subject":"SERIALNUMBER=201601,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MDE=",
"whitelist":false,"attachment":{"hash":"af582fa89b43c20eb4a7f6f2c88ded4c302410d4af719b9206186aba8336ed67","size":2093,"filename":"84Za4kYwrRkyQwGdAI_OxURzEVfnTxcOpAabMr7iKM0=.pem","location":"security-state-staging/intermediates/7905a8bc-173d-40e7-92ed-b4a494401b4c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"84Za4kYwrRkyQwGdAI/OxURzEVfnTxcOpAabMr7iKM0=","crlite_enrolled":false,"id":"37d95d8c-3513-4a11-b930-b8f47cf74952","last_modified":1601517442128},{"schema":1601376725753,"derHash":"GUrT6FS2tXfbgMnlg73fLap/gIFmmODMhRoAdoB9i5Q=","subject":"SERIALNUMBER=201709,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwOQ==","whitelist":false,"attachment":{"hash":"e13f921d77416a5ba55814e3a229c8b50d66c523580816ae7194e8c46cb533da","size":2154,"filename":"91_yXUHhaE8XQE7T4qtIwHduKC0gNiCwyt7acKtcMCg=.pem","location":"security-state-staging/
intermediates/d1d09664-4aea-44d3-b3bb-521febdd9266.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"91/yXUHhaE8XQE7T4qtIwHduKC0gNiCwyt7acKtcMCg=","crlite_enrolled":false,"id":"06523722-fbe4-4e54-ad81-768c08b9b3a7","last_modified":1601517442111},{"schema":1601376745190,"derHash":"oGHURTmXFMOPwQGm6a+9s4HxEvpd59W8FJBFWNHtMnY=","subject":"CN=emSign ECC SSL CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEfMB0GA1UEAxMWZW1TaWduIEVDQyBTU0wgQ0EgLSBDMw==","whitelist":false,"attachment":{"hash":"8c77ffa9b893c57610bd16e4953c97a408efab95236b88e9a574f1475ed5146e","size":1134,"filename":"TPymzs2gSTCnRzT83dxpTHxfGl2tdQ9snhCfXXcejy4=.pem","location":"security-state-staging/intermediates/86a79f6f-14ab-4ade-a0ec-33f05a4994dd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TPymzs2gSTCnRzT83dxpTHxfGl2tdQ9snhCfXXcejy4=","crlite_enrolled":true,"id":"5dc47e36-cabd-43eb-ac61-417a710e88b8","last_modified":160
1517442093},{"schema":1601376731471,"derHash":"a2qdHAN/d/qodOYQmkk/H4QJXB0VJNvihhjaSIdhtTA=","subject":"SERIALNUMBER=201610,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE2MTA=","whitelist":false,"attachment":{"hash":"acd0c347136ab560467f0971b7ba00b91a4f2ccf988d106e3712504bf18965f0","size":2093,"filename":"pPTKMyEFXY56k6Lx4t1g9b9VGfP81txv-Nmof3ELcXw=.pem","location":"security-state-staging/intermediates/ccc3a418-512b-4930-99d5-de8e5dd2f210.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pPTKMyEFXY56k6Lx4t1g9b9VGfP81txv+Nmof3ELcXw=","crlite_enrolled":false,"id":"a9d83d3b-fca9-4ea7-a503-58b614621e5b","last_modified":1601517442076},{"schema":1601376784332,"derHash":"J09FXfZsfa8EPXoj2Lb6tanx+PxchSe3yUybxFyoyac=","subject":"SERIALNUMBER=201602,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTYwMg==","whitelist":false,"attachment":{"hash":"f3bbe5d03f98b86af0a98a1d89517f05ae
c2aebd9dc847f1545502d7af308d1f","size":2097,"filename":"BOBA5Twm4mitveGSW5FDlhbrXAX2Nzp9tI149Ez2o68=.pem","location":"security-state-staging/intermediates/e20288d5-796f-41b7-9189-9086d9e97ace.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BOBA5Twm4mitveGSW5FDlhbrXAX2Nzp9tI149Ez2o68=","crlite_enrolled":false,"id":"5798e19f-2072-453b-ad44-339f57379ab4","last_modified":1601517442059},{"schema":1601376735177,"derHash":"mwT9+YEhXzUdwOyFrh+BZZ/LSpo/5/nhq2IYovNuj64=","subject":"SERIALNUMBER=201703,CN=Foreigner CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MGExCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xFTATBgNVBAMTDEZvcmVpZ25lciBDQTEPMA0GA1UEBRMGMjAxNzAz","whitelist":false,"attachment":{"hash":"1710c12d6adc6eb6e5a43eca12c2013dbe3a7eae7e9c830428ac3cc4377eeaea","size":2158,"filename":"LuxKcz3x6blC_Nkgqe95wYedyrYHgwj9WLLOX_aAPig=.pem","location":"security-state-staging/intermediates/33864ab7-757a-4de4-ab78-3ef8d1052e1b.pem","mimetype":"appl
ication/x-pem-file"},"pubKeyHash":"LuxKcz3x6blC/Nkgqe95wYedyrYHgwj9WLLOX/aAPig=","crlite_enrolled":false,"id":"06266cbb-b88c-4fad-8490-7408e17e2488","last_modified":1601517442042},{"schema":1601376774903,"derHash":"gKw1KTCHW6Cv5/cN04kTDI4ee+/9yWR3NWrSqeADrSs=","subject":"SERIALNUMBER=201710,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcxMA==","whitelist":false,"attachment":{"hash":"3af89870b8cd5676b0650cc634057a2d93e3823dd927c33ebc945573081a928a","size":2154,"filename":"ZCLFrfNE0YmOMDXn8TdGm9cXS6EtB4A-rRuWgSitNdg=.pem","location":"security-state-staging/intermediates/52e7a4e1-eb06-4a43-a509-8d6dbf521484.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZCLFrfNE0YmOMDXn8TdGm9cXS6EtB4A+rRuWgSitNdg=","crlite_enrolled":false,"id":"f80d87d6-b1f3-44c6-857b-f6828b862fdf","last_modified":1601517442025},{"schema":1601376732293,"derHash":"
kZ6sPkYMJraGLxPDpVgue6CI/MIUKOd98A7reCcaKas=","subject":"SERIALNUMBER=201701,CN=Foreigner CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MGExCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xFTATBgNVBAMTDEZvcmVpZ25lciBDQTEPMA0GA1UEBRMGMjAxNzAx","whitelist":false,"attachment":{"hash":"263b1f66d8d54d280867fbc124be5a36fe7a73a5820533e7e232dbee9643c4e9","size":2158,"filename":"nQ35mJfWCjba_vijrSnf88AaEOz5U-zNipRR1TZQkSs=.pem","location":"security-state-staging/intermediates/1a6c42f3-a4b3-4fd3-9fc8-9572f932ddd8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nQ35mJfWCjba/vijrSnf88AaEOz5U+zNipRR1TZQkSs=","crlite_enrolled":false,"id":"f0037444-3d10-48ef-b661-fb3d87999e3e","last_modified":1601517442008},{"schema":1601376756663,"derHash":"D20/jpLBQygVbG/pPPL4yqOZNfWAt3/qGbkz6UE2D0E=","subject":"SERIALNUMBER=201701,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmV
sZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwMQ==","whitelist":false,"attachment":{"hash":"13316f9b8a81c37d912c95bab9b1a75fe27e85c4e78bdc8565dbcc0b0e4a1556","size":2154,"filename":"EB_ThksEnKMJ2YVoHHvY5XyMHTzvC2P_L5G9CrSyfnE=.pem","location":"security-state-staging/intermediates/2c971077-3395-468f-85b2-6e07cfc04c2a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EB/ThksEnKMJ2YVoHHvY5XyMHTzvC2P/L5G9CrSyfnE=","crlite_enrolled":false,"id":"ad12ea65-7f92-4b32-a337-6b02ee3bdc0c","last_modified":1601517441990},{"schema":1601376733494,"derHash":"g4jwUGW1mD+TLCvi5UiYTfca4H9susMxtkj1KIs3DXQ=","subject":"SERIALNUMBER=201702,CN=Foreigner CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MGExCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xFTATBgNVBAMTDEZvcmVpZ25lciBDQTEPMA0GA1UEBRMGMjAxNzAy","whitelist":false,"attachment":{"hash":"3676002f43efd0a0bf3b10e582b3755e5da23bce4442ce825d14540454c25e29","size":2158,"filename":"lOlKIyhajdx1Pv_U
umL8AwhOIVSEc53cII6qCgzybVk=.pem","location":"security-state-staging/intermediates/f2aa5a07-7a1e-48fa-8dc8-77b88c525caa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lOlKIyhajdx1Pv/UumL8AwhOIVSEc53cII6qCgzybVk=","crlite_enrolled":false,"id":"b5fe7e45-4ee5-4d6a-8d20-7acc5f32c0d1","last_modified":1601517441972},{"schema":1601376722047,"derHash":"Ifxe6PnsM7qGAumyFnKblorF6ZfHAF+D5rIfjUkAuT8=","subject":"SERIALNUMBER=201707,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwNw==","whitelist":false,"attachment":{"hash":"35d1b042d6b7f4876f0915a8b07bd424360c27093aa293ef221b3d067ade827e","size":2154,"filename":"3kBEsS8bJGqOcdSGOBcn3v3kGJVLwDpOs47luWkYCHg=.pem","location":"security-state-staging/intermediates/30760870-3ab9-4763-86af-d783516015c0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3kBEsS8bJGqOcdSGOBcn3v3kGJVLwDpOs47luWk
YCHg=","crlite_enrolled":false,"id":"c8211913-3fd7-4bd5-88bc-38fcb5a06beb","last_modified":1601517441955},{"schema":1601376752186,"derHash":"CV6Eg9E+kLuL0koueaWte/Gps0k99ipIGnUdR7BE8TM=","subject":"SERIALNUMBER=201601,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTYwMQ==","whitelist":false,"attachment":{"hash":"d9a2af818638a1d86ad680c36ec904451911a7e715805edacb13ea0adc0866f2","size":2097,"filename":"RBcL06ULAF8SGk-hJRdj-ieBrxnrfENSen5Fejc3mXI=.pem","location":"security-state-staging/intermediates/fbe2a61c-6afe-4a84-9f3f-82ca320cd112.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RBcL06ULAF8SGk+hJRdj+ieBrxnrfENSen5Fejc3mXI=","crlite_enrolled":false,"id":"29ab9c28-65b1-4b04-92fa-c1216ae03460","last_modified":1601517441938},{"schema":1601376739342,"derHash":"MI5DTr7hlojys3UPsyH/9pGwT90OIF+zYmurAU8gAvU=","subject":"SERIALNUMBER=201609,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQ
YDVQQFEwYyMDE2MDk=","whitelist":false,"attachment":{"hash":"f458b0f2c2365915054245f4299cac76f566e47f974c119a5ff84df844025876","size":2093,"filename":"KRgOg6mRpaWoXbaKdK3GrcmjYXMv-Efv_xGeSRFTYTY=.pem","location":"security-state-staging/intermediates/cf87470d-e1e4-4f10-acd2-3ff10bed17e0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KRgOg6mRpaWoXbaKdK3GrcmjYXMv+Efv/xGeSRFTYTY=","crlite_enrolled":false,"id":"c1ccd3a8-0060-4e25-932a-6cf5aca04875","last_modified":1601517441921},{"schema":1601376745997,"derHash":"a1HR3PTreu5CQYXLG5WAV0s5y5Y4Y94+wa0x3bB2zp8=","subject":"CN=emSign ECC SSL CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGoxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMR8wHQYDVQQDExZlbVNpZ24gRUNDIFNTTCBDQSAtIEcz","whitelist":false,"attachment":{"hash":"89e969a3a81606f2a36171383c4b70f380c4613a543363e819611910547c8eca","size":1183,"filename":"9O08XqhJ4GK5qjGNH9IY24XQxhGv8dsFbbZDBPNw1xA=.pem","l
ocation":"security-state-staging/intermediates/7b91ca89-e860-4ed9-a170-78aaec18ecf8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9O08XqhJ4GK5qjGNH9IY24XQxhGv8dsFbbZDBPNw1xA=","crlite_enrolled":true,"id":"ed563635-4e2d-4c84-83bd-179c24abeb41","last_modified":1601517441886},{"schema":1601376741893,"derHash":"QzTusswRT4K+5vin5a6gOkLrLh9wy9ZhAuQU1y8AM7k=","subject":"CN=emSign EV SSL CA - G1,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGkxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMR4wHAYDVQQDExVlbVNpZ24gRVYgU1NMIENBIC0gRzE=","whitelist":false,"attachment":{"hash":"d1a4e2a86d82be89bc5a8cdd12e0721917280f6b41222ff230bfd34bde486b4d","size":1626,"filename":"uyublT6SsX3mh_3EIO2_Tv5ftRcL40wCzJ0G9rOjYKE=.pem","location":"security-state-staging/intermediates/ba44d28c-de08-40a9-a1e1-21782eca68cf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uyublT6SsX3mh/3EIO2/Tv5ftRcL40wCzJ0G9rOjYKE=","crlite_enrolled":
true,"id":"c280c564-6ffb-47f0-ab87-127727d076a0","last_modified":1601517441869},{"schema":1601376773300,"derHash":"lW2vVrCgKjNqJ3dk4Pu/slaFZTHPap3udG2dYhsTG/M=","subject":"SERIALNUMBER=201406,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDY=","whitelist":false,"attachment":{"hash":"30638046bea6f155841dc365c841daedace83b0ded20d9c17bd46f73824c7891","size":2093,"filename":"qRU5F6qy_4wyi4HARkT-CYod607PlhyQSnMiBSD98fA=.pem","location":"security-state-staging/intermediates/2338e82d-fbfc-4bac-9e6c-1c5bb39b6e12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qRU5F6qy/4wyi4HARkT+CYod607PlhyQSnMiBSD98fA=","crlite_enrolled":false,"id":"56faeaf3-53f6-4608-ba25-57843acf584f","last_modified":1601517441851},{"schema":1601376770828,"derHash":"J/ob5PS1ahQqR6VqfpS3JQIFm0Ai5GI+dIyh7xUc8iI=","subject":"CN=Valid Certificadora Digital SSL EV CA 2018,OU=VALID SSL EV,O=VALID CERTIFICADORA DIGITAL,L=S\u00c3O PAULO,ST=S\u00c3O PAULO,C=BR","subje
ctDN":"MIGpMQswCQYDVQQGEwJCUjETMBEGA1UECAwKU8ODTyBQQVVMTzETMBEGA1UEBwwKU8ODTyBQQVVMTzEVMBMGA1UECxMMVkFMSUQgU1NMIEVWMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgRVYgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"bc6b910f331f4825a9cdbd16a2115b7223ea010714fdf6974ca9412bdffc09e0","size":1886,"filename":"Fvvsf-SjFcNThumRKUfh4Zsz4ZsXqkoWTiLt7iT8DBo=.pem","location":"security-state-staging/intermediates/e338d07c-10d0-4444-bd57-e0078726ad72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Fvvsf+SjFcNThumRKUfh4Zsz4ZsXqkoWTiLt7iT8DBo=","crlite_enrolled":true,"id":"4a1b6514-22ff-49a9-be43-c6c364cbf909","last_modified":1601517441834},{"schema":1601376777737,"derHash":"ng7HCFncHr8Sc3agy/QGZVkzOJrRyZ9dDHHOcdkYaPw=","subject":"SERIALNUMBER=201512,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MTI=","whitelist":false,"attachment":{"hash":"2484239d7a2b9e714612b99b1585d44
88fa991e4441f3486e7199d6c718ecf77","size":2093,"filename":"QRGGHe2oDxCAjDkdNzdV6-xL36aDt6GV-GXVtBEkosM=.pem","location":"security-state-staging/intermediates/d2820bde-3f75-43bd-aead-4f4865442d63.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QRGGHe2oDxCAjDkdNzdV6+xL36aDt6GV+GXVtBEkosM=","crlite_enrolled":false,"id":"0aa43ec4-32c2-47e5-aca1-d8075618de6d","last_modified":1601517441817},{"schema":1601376783115,"derHash":"5szJZRkoFxFKRGHEz+3DRFPewb3mOXDOIaZC+8OPujA=","subject":"SERIALNUMBER=201502,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDI=","whitelist":false,"attachment":{"hash":"428f2f9a51942c06ebed0f13b6c1f503c537da14065e552cddd6dc3aef00db50","size":2093,"filename":"59nRM6JR4L01zd4twLB_PFOYuHBhNCUYvIjVMyinlIE=.pem","location":"security-state-staging/intermediates/4ed92c45-caac-4b1a-910e-039ddc0393a4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"59nRM6JR4L01zd4twLB/PFOYuHBhNCUYvIjVMyinlIE=","crlite_enroll
ed":false,"id":"369fd6ef-b877-41c7-a13d-85f997662997","last_modified":1601517441800},{"schema":1601376731860,"derHash":"lSP+dqG/dVGSFdLN6frnvBIqlbLZjw73XFL7Z48V2hI=","subject":"SERIALNUMBER=201405,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDU=","whitelist":false,"attachment":{"hash":"8a4bc54af51cb4e07200000c701dd8192e248fb98c77aeed37be83fcb14a6943","size":2093,"filename":"a5V9lhZQ8dgRturcVZOVCxuSonandHuH6Jgt6Zy0QIY=.pem","location":"security-state-staging/intermediates/e73b1326-10ed-4674-be98-cbfab7ab8b6c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"a5V9lhZQ8dgRturcVZOVCxuSonandHuH6Jgt6Zy0QIY=","crlite_enrolled":false,"id":"6b0f74f1-9348-4005-9a02-0991e4735ed4","last_modified":1601517441783},{"schema":1601376735991,"derHash":"Sg4PMPotGIaQ+cdSU6AXGV8hY+RcCQz10rc8YsRJp4I=","subject":"SERIALNUMBER=201407,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDc=","whitel
ist":false,"attachment":{"hash":"5eb830f3bd31118690d65594afbb9d6640f7fc39f7779806e57b7d09787ce1ac","size":2093,"filename":"6t5RgbwqR17MdH8G9oKG0nuWGXrgv23l5Vk707xd_w4=.pem","location":"security-state-staging/intermediates/bdfc8266-4f92-4d83-83b4-7e16937c5af8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6t5RgbwqR17MdH8G9oKG0nuWGXrgv23l5Vk707xd/w4=","crlite_enrolled":false,"id":"f99a3ff4-5bf0-4cd9-9dc2-1453caa92464","last_modified":1601517441765},{"schema":1601376729849,"derHash":"KgB0N17Gt742elO3btlKaNRfUQdgy3+eDPkjFK/7oqA=","subject":"SERIALNUMBER=201706,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwNg==","whitelist":false,"attachment":{"hash":"34a1c01e6ea7d6294b23196003905fcfcd0afb39a48726902fe069d5692be888","size":2154,"filename":"P8H4tWILrwuL6Uguy479T0QJ1pdTn_DRNH-qJIbwJlc=.pem","location":"security-state-staging/interme
diates/48234e98-f00e-4cf2-a19d-5f44294aaa12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"P8H4tWILrwuL6Uguy479T0QJ1pdTn/DRNH+qJIbwJlc=","crlite_enrolled":false,"id":"ac01d2c3-ff22-4dd8-be8d-65f3d74f33c2","last_modified":1601517441748},{"schema":1601376776109,"derHash":"588SO/NMrj+IToDLEAuXJEsdOkWUTSoROUuZXEuPgSg=","subject":"SERIALNUMBER=201408,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDg=","whitelist":false,"attachment":{"hash":"33e224fe32c39a932baf3f274d5afc7e27a5bc5193dffb4623b01db89c667fc2","size":2093,"filename":"hQIjsSxVvTiuqkpzyrXb6OAXsPacyApugghiaf0blNQ=.pem","location":"security-state-staging/intermediates/45fa3321-3de9-45d6-9f73-917714717124.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hQIjsSxVvTiuqkpzyrXb6OAXsPacyApugghiaf0blNQ=","crlite_enrolled":false,"id":"60ec0b65-adf0-4bf9-a827-5a07e599f184","last_modified":1601517441731},{"schema":1601376735592,"derHash":"ARbxf5fN70reLmPPLBsGT9mfQE0rkUE
AvCQfB4GFMyM=","subject":"CN=emSign ECC EV SSL CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MG0xCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMSIwIAYDVQQDExllbVNpZ24gRUNDIEVWIFNTTCBDQSAtIEcz","whitelist":false,"attachment":{"hash":"cf06e95703019f175db9c5a52f46e1ddea5ac2ad994d77248a0ec9479bc9be49","size":1183,"filename":"f01011qEaFf6Wqq3wyJQCu96P1p4Ia4fYG9V_7Q6Pu4=.pem","location":"security-state-staging/intermediates/98578ae6-b345-4b4a-9f77-0f821db4c50a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"f01011qEaFf6Wqq3wyJQCu96P1p4Ia4fYG9V/7Q6Pu4=","crlite_enrolled":true,"id":"c3a3ece5-9d3e-4a95-9e75-88b6770383fc","last_modified":1601517441714},{"schema":1601376769178,"derHash":"zMDsSwDyec8NbQurLUhtwnSm5BDtNAZXiV9SMu6hdNU=","subject":"SERIALNUMBER=201506,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDY=","whitelist":false,"attachment":{"hash":"d65
55d845c65379f6c99daf370954c2b157def962266ea8993272c465b58437e","size":2093,"filename":"fJUnTwcxiS8oV_WhpL3lY4VeVXdTSo1_3QD1YzWg8mM=.pem","location":"security-state-staging/intermediates/15d98a45-71c0-4188-a3c1-6096c75f137a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fJUnTwcxiS8oV/WhpL3lY4VeVXdTSo1/3QD1YzWg8mM=","crlite_enrolled":false,"id":"5e88bec2-48e1-407c-81f0-3e8ec8a1b182","last_modified":1601517441697},{"schema":1601376748460,"derHash":"cvmvIVgYG68W1gybTm9L18qNI0GtSK/bZ8tMgzLVRvY=","subject":"CN=Microsec e-Szigno Root CA 2009,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odQ==","whitelist":false,"attachment":{"hash":"b90c76e81f578b8bc26b991192e309fc1f7c20f49cb20bf33c55c1455c1f615e","size":1557,"filename":"YWFnIBQzrqbI5eMHCvyvZ0kYj4FL0auxea6NrTq_Juw=.pem","location":"security-state-staging/inte
rmediates/1700e695-ab2e-4343-b33f-89b8ee9187a7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YWFnIBQzrqbI5eMHCvyvZ0kYj4FL0auxea6NrTq/Juw=","crlite_enrolled":false,"id":"4ac33a0c-1052-4702-874c-dc40ae073f75","last_modified":1601517441658},{"schema":1601376767113,"derHash":"pmyXrlnf+eoBXnPHRO5VIHRfEBo5XEl9GeHxaNOa/NA=","subject":"CN=DigiCert Secure Site Pro CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MFAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKjAoBgNVBAMTIURpZ2lDZXJ0IFNlY3VyZSBTaXRlIFBybyBDTiBDQSBHMw==","whitelist":false,"attachment":{"hash":"5aded62775075d08acc444c1de87c126e2389b6c7642ebc86c4a8c12384e4285","size":1808,"filename":"BbkOPUFIMuqBj5SBjChDvpb1ZCdk3b9ZNDWOnKRB_bo=.pem","location":"security-state-staging/intermediates/721e23ad-72ff-4222-ae1d-d221eb1482a7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BbkOPUFIMuqBj5SBjChDvpb1ZCdk3b9ZNDWOnKRB/bo=","crlite_enrolled":true,"id":"7a20a336-c213-4fd2-ad8c-92be449691f2","last_modified":1601517441636},{"sche
ma":1601376726545,"derHash":"HJ0+jgzx5POcc00Z5Hmulx/DBmwAA1Oitq8yeVqX6hs=","subject":"CN=University of the Peloponnese TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MH8xCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTcwNQYDVQQDDC5Vbml2ZXJzaXR5IG9mIHRoZSBQZWxvcG9ubmVzZSBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"b97f4a98dfcd061cff017369f0b4c03f42a54b33d6e77aea0c96e2e972f74092","size":3819,"filename":"D5AmHvgsz8nnufCXywDHL8VpnKB80L_QvVJn75tQULs=.pem","location":"security-state-staging/intermediates/4e78eb05-39f9-4129-b04a-377f0b320b0c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D5AmHvgsz8nnufCXywDHL8VpnKB80L/QvVJn75tQULs=","crlite_enrolled":true,"id":"55ed86a1-d369-4516-b887-90a0eccdfd12","last_modified":1601517441618},{"schema":1601376722448,"derHash":"fsrKSjWFo7QOJVdEFVEtVrV5mbdTAXhW8qsV+h8h9tA=","subject":"CN=NETLOCK Trust Qualified EV CA 3,O=NETLOCK Ltd.,L=Budapest,
C=HU","subjectDN":"MGExCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMSgwJgYDVQQDDB9ORVRMT0NLIFRydXN0IFF1YWxpZmllZCBFViBDQSAz","whitelist":false,"attachment":{"hash":"5c9cd98f81f0d60b8f3c40b8be94209d25226eb7ebf1c126947da32ed3d21dbc","size":2215,"filename":"ksEtUEbADR0V5fQig7YPrrgGcr2PovgbGzQx045WU_0=.pem","location":"security-state-staging/intermediates/be90d242-60d9-4a6b-aefe-8e8fb342b23e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ksEtUEbADR0V5fQig7YPrrgGcr2PovgbGzQx045WU/0=","crlite_enrolled":true,"id":"bf7893da-0baf-4aae-8bfc-282641a4dcff","last_modified":1601517441601},{"schema":1601376727778,"derHash":"NAylukAtFAtlosl2566BKKFQXCnRkODgNPWcyuepK8I=","subject":"CN=Apple Public EV Server RSA CA 1 - G1,O=Apple Inc.,C=US","subjectDN":"MFExCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMS0wKwYDVQQDEyRBcHBsZSBQdWJsaWMgRVYgU2VydmVyIFJTQSBDQSAxIC0gRzE=","whitelist":false,"attachment":{"hash":"ea385fed15dbd58a3c6f6fafe8e1873268b80afe2586ec31c75f1eebd9fb
7c21","size":1833,"filename":"9C7mf4J789KvLX59lcMyYpsH6bpdmoAGTByZNhcusLA=.pem","location":"security-state-staging/intermediates/f25279c5-ac9c-4d91-99fc-93ec4b61b575.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9C7mf4J789KvLX59lcMyYpsH6bpdmoAGTByZNhcusLA=","crlite_enrolled":true,"id":"e7170fbb-6ceb-4f32-b932-7da04ce6562c","last_modified":1601517441584},{"schema":1601376759524,"derHash":"nmyANcDxyKlFMQ5y2D5TGUe1cfkpLkKkJIo3C/ezBb4=","subject":"CN=VR IDENT EV SSL CA 2020,O=D-Trust GmbH,C=DE","subjectDN":"MEYxCzAJBgNVBAYTAkRFMRUwEwYDVQQKEwxELVRydXN0IEdtYkgxIDAeBgNVBAMTF1ZSIElERU5UIEVWIFNTTCBDQSAyMDIw","whitelist":false,"attachment":{"hash":"dc99c4f4f52985f008966e436a519a723e8fc97d68041786cb235d067d979c71","size":2556,"filename":"n2nZ8zPLSNKoerb6X9o01VOniH-YyahnTcdt2oR9ovw=.pem","location":"security-state-staging/intermediates/24db4e33-c897-4e54-9072-c201e9f0c903.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n2nZ8zPLSNKoerb6X9o01VOniH+YyahnTcdt2oR9ovw=","crlite_enro
lled":true,"id":"911c16b5-610f-407c-95ae-d17b705f20c2","last_modified":1601517441567},{"schema":1601376734751,"derHash":"mmlizYwhtdzx9ws5qDbH85fsSV+IC+m5tpuLJyiOyxQ=","subject":"CN=KICA RSA OV CA,O=KICA,C=KR","subjectDN":"MDUxCzAJBgNVBAYTAktSMQ0wCwYDVQQKEwRLSUNBMRcwFQYDVQQDEw5LSUNBIFJTQSBPViBDQQ==","whitelist":false,"attachment":{"hash":"7a548420d69a6edd334c25490c6cbe65e35a11c6a7454d19f074a9b28f83a11b","size":1569,"filename":"404SflxwLnJCxfU7K35IbTgipMzslOzUuXBgFjCXwfk=.pem","location":"security-state-staging/intermediates/ce4b3c0b-bbe0-4b2d-a0c5-ba035046a670.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"404SflxwLnJCxfU7K35IbTgipMzslOzUuXBgFjCXwfk=","crlite_enrolled":true,"id":"12bb20c3-03a9-4d9e-b748-09d93661963f","last_modified":1601517441550},{"schema":1601376766270,"derHash":"sjopwxKnqAsP5rTnG5CcrpKtZJ6Idm5Wye6OHXwBOUU=","subject":"CN=Trust Provider B.V. TLS RSA EV CA G2,O=Trust Provider B.V.,C=NL","subjectDN":"MFoxCzAJBgNVBAYTAk5MMRwwGgYDVQQKExNUcnVzdCBQcm92aWRlciBCLl
YuMS0wKwYDVQQDEyRUcnVzdCBQcm92aWRlciBCLlYuIFRMUyBSU0EgRVYgQ0EgRzI=","whitelist":false,"attachment":{"hash":"38af4377ab1fc22658f11e631b7b47777b04bb8fb15d4b189132d8502e7c0990","size":1756,"filename":"tbS_1veJrHW-X3zzJhnpwaHOLn5kSHEHFyby1BZoZlg=.pem","location":"security-state-staging/intermediates/5f9c71f9-ea8c-4afb-94cb-c8d606a8933d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tbS/1veJrHW+X3zzJhnpwaHOLn5kSHEHFyby1BZoZlg=","crlite_enrolled":true,"id":"784ae2c3-b573-43e8-b16e-5c7524b7e6bc","last_modified":1601517441532},{"schema":1601376743958,"derHash":"vaRnKkA8okUcdNfpPnpOcantIqKozNb5H4/prg5sqIE=","subject":"CN=Sectigo SHA-256 OV Secure Server CA 2,O=Sectigo Limited,C=GB","subjectDN":"MFcxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLjAsBgNVBAMTJVNlY3RpZ28gU0hBLTI1NiBPViBTZWN1cmUgU2VydmVyIENBIDI=","whitelist":false,"attachment":{"hash":"6fa5518098b61edaf23a4c92a1150dea5509453a08d15a05eadad2f245c4f1f3","size":1634,"filename":"XB8O6m4KrSEF6ajZf52dFtzGpdc9UJGKYYbXFCuXf
7c=.pem","location":"security-state-staging/intermediates/f5d8cd57-5f94-40f5-b472-53aace47ac48.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XB8O6m4KrSEF6ajZf52dFtzGpdc9UJGKYYbXFCuXf7c=","crlite_enrolled":true,"id":"e68d9c20-1ff8-4609-843d-a98cdbd6806b","last_modified":1601517441515},{"schema":1601376739819,"derHash":"TUUDnuzKEU1kgioKqAlE1m4I+u5isdJT8UAph2nyJ7Q=","subject":"CN=XinChaCha Trust SSL Domain Validated,O=Beijing Xinchacha Credit Management Co.\\, Ltd.,C=CN","subjectDN":"MHQxCzAJBgNVBAYTAkNOMTYwNAYDVQQKDC1CZWlqaW5nIFhpbmNoYWNoYSBDcmVkaXQgTWFuYWdlbWVudCBDby4sIEx0ZC4xLTArBgNVBAMMJFhpbkNoYUNoYSBUcnVzdCBTU0wgRG9tYWluIFZhbGlkYXRlZA==","whitelist":false,"attachment":{"hash":"68b6dde00d9409bcff41cb8d3a250a7199377a35f14c4af0235cb34b2ced91d2","size":1772,"filename":"d2LYPy24Y7JLfKDPVkl-Qxb3wvxf9gwxrL4YMYl4enA=.pem","location":"security-state-staging/intermediates/1d26950e-1533-4bb9-9e82-339b1a07f6c1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"d2LYPy24Y7JLfKDPV
kl+Qxb3wvxf9gwxrL4YMYl4enA=","crlite_enrolled":true,"id":"d85db883-7604-4b25-88f2-ae094367a108","last_modified":1601517441498},{"schema":1601376754203,"derHash":"1u8+Cevg2TcOUfXAmlMrOscNPOgiJT+fyEwo6b+lUNU=","subject":"CN=Apple Public EV Server RSA CA 2 - G1,O=Apple Inc.,C=US","subjectDN":"MFExCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMS0wKwYDVQQDEyRBcHBsZSBQdWJsaWMgRVYgU2VydmVyIFJTQSBDQSAyIC0gRzE=","whitelist":false,"attachment":{"hash":"f1a0bae2b273ddf514b8e42304f3dbb8040fd3721185f80ada46dd69c0ddd5de","size":1861,"filename":"4ZMBBKlWyhpdsKqKnbXEkuo4CnSxw6b7svlcKIJWfEA=.pem","location":"security-state-staging/intermediates/b422a0ee-0a04-4468-a9fa-5635e30c83bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4ZMBBKlWyhpdsKqKnbXEkuo4CnSxw6b7svlcKIJWfEA=","crlite_enrolled":true,"id":"b3dc6b21-3ad1-4586-8cdb-5e2dd1c613bc","last_modified":1601517441481},{"schema":1601376781512,"derHash":"JYWSjSxb/ZUuAlvRLifGd2Ikz3Uuw2LTAxzdSTUYRNQ=","subject":"CN=Apple Public EV Server ECC CA 1
- G1,O=Apple Inc.,C=US","subjectDN":"MFExCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMS0wKwYDVQQDEyRBcHBsZSBQdWJsaWMgRVYgU2VydmVyIEVDQyBDQSAxIC0gRzE=","whitelist":false,"attachment":{"hash":"0c68df98e690b7945017fb11b9de0a5e05c426b30a289db35a64ca96eb1ac781","size":1341,"filename":"Lr2fY89asbE9ohd7WW8tLI0pvoPLX-Wt_N7mP-ri3c0=.pem","location":"security-state-staging/intermediates/934c88bb-99cf-4fc7-8742-47d2064a1e39.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Lr2fY89asbE9ohd7WW8tLI0pvoPLX+Wt/N7mP+ri3c0=","crlite_enrolled":true,"id":"6cb0600d-434e-4a59-a8d8-60ea5bf117e9","last_modified":1601517441464},{"schema":1601376767517,"derHash":"0OilGsqrmvgnZ+LvFlQ8LMY1VRtd4NriXWqsceeGKHA=","subject":"CN=TrustAsia OV TLS Pro CA G3,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFkxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSMwIQYDVQQDExpUcnVzdEFzaWEgT1YgVExTIFBybyBDQSBHMw==","whitelist":false,"attachment":{"hash":"f3b5ebd05dd3f189c5ed69f72d96e3085227715
53df7feb6a4fcdace0c0745b0","size":1821,"filename":"tv1pIXiJEYFUrzxhRqxCjTL7S9s7y_PZbxYVnDOXeCI=.pem","location":"security-state-staging/intermediates/128dd01a-e1a1-4819-bc9a-043a0fa2563c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tv1pIXiJEYFUrzxhRqxCjTL7S9s7y/PZbxYVnDOXeCI=","crlite_enrolled":true,"id":"6d03d111-d670-4e12-9bbd-b3ecad0252cd","last_modified":1601517441447},{"schema":1601376775308,"derHash":"lyoYG2ApTroHMzucGYJEDUM5WrqR1FDsDvtIWu1J1ac=","subject":"CN=D-TRUST SSL CA 2 2020,O=D-Trust GmbH,C=DE","subjectDN":"MEQxCzAJBgNVBAYTAkRFMRUwEwYDVQQKEwxELVRydXN0IEdtYkgxHjAcBgNVBAMTFUQtVFJVU1QgU1NMIENBIDIgMjAyMA==","whitelist":false,"attachment":{"hash":"dff0ac820c6ed7f8e2a14edfc11acfc4f548f8a7afc8f0f31cf6e7cea3bd1ec8","size":1918,"filename":"Qw7yBnlh3ygQw2Ss4PCmfsq94Je-YAYnMuM9CpdMS0w=.pem","location":"security-state-staging/intermediates/2e9665a5-d214-4616-9a99-e5f11afc8ab6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Qw7yBnlh3ygQw2Ss4PCmfsq94Je+YAYnMuM9Cpd
MS0w=","crlite_enrolled":true,"id":"c3a9fa2d-eff6-4044-8fbd-014bd0c42505","last_modified":1601517441430},{"schema":1601376746825,"derHash":"jAmUsq7QCF/lQoE+4DxLLXMuzcwleuZFMRTGyHWTO9Q=","subject":"CN=HEAL-LINK Hellenic Academic Libraries Link TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGMMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTFEMEIGA1UEAww7SEVBTC1MSU5LIEhlbGxlbmljIEFjYWRlbWljIExpYnJhcmllcyBMaW5rIFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"1ad892976d511047af18da5aab5153b607c353df841e532029d0341a6aaaed34","size":2946,"filename":"YAtUtdUCD9mINjDHhpnZ-aWI7q9rbr-ylz-Qj5YyuqM=.pem","location":"security-state-staging/intermediates/528a2b56-532f-4299-a341-4f138138bea8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YAtUtdUCD9mINjDHhpnZ+aWI7q9rbr+ylz+Qj5YyuqM=","crlite_enrolled":true,"id":"81e51c73-89cd-4657-860d-7cc2ce56eed2","last_modified":1601517441412},{"schema"
:1601376728241,"derHash":"wa/GWx6BOw5hRuaqU0FoEnKr6aONWfe9Gye3KYNKDZw=","subject":"CN=UCA Global G2 Root,O=UniTrust,C=CN","subjectDN":"MD0xCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEbMBkGA1UEAwwSVUNBIEdsb2JhbCBHMiBSb290","whitelist":false,"attachment":{"hash":"8b23b9246ee0e3e317646bd91f006eaccbe8145196df356203921598a861c41c","size":2093,"filename":"ElXKvoFS-mTflC96R0F-KflsHOEb-MhOy-KBXMEoCBA=.pem","location":"security-state-staging/intermediates/069b42b2-4592-4d14-8a72-aec786fb8af9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ElXKvoFS+mTflC96R0F+KflsHOEb+MhOy+KBXMEoCBA=","crlite_enrolled":false,"id":"343087f6-4b20-4a64-8815-bfd565b84a7e","last_modified":1601517441395},{"schema":1601376764120,"derHash":"ji0Hv8WRsU+jFGhuHMjZu19vjQkcBZUZSqLHWFuZGIc=","subject":"CN=XinChaCha Trust SSL Organization Validated,O=Beijing Xinchacha Credit Management Co.\\, Ltd.,C=CN","subjectDN":"MHoxCzAJBgNVBAYTAkNOMTYwNAYDVQQKDC1CZWlqaW5nIFhpbmNoYWNoYSBDcmVkaXQgTWFuYWdlbWVudCBDby4sIEx0ZC4xMzAxBg
NVBAMMKlhpbkNoYUNoYSBUcnVzdCBTU0wgT3JnYW5pemF0aW9uIFZhbGlkYXRlZA==","whitelist":false,"attachment":{"hash":"ee098ec8d0e0db01810ca1c3b3201c226be5f7b8a356ca702dca8dd33aec3a43","size":1780,"filename":"RHqNaKq-7GhfAxN8i7T10nLSrr6EQCmPkPfRvnXA2S0=.pem","location":"security-state-staging/intermediates/5a268c9f-0c99-4ae8-8988-0610fa6a632a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RHqNaKq+7GhfAxN8i7T10nLSrr6EQCmPkPfRvnXA2S0=","crlite_enrolled":true,"id":"6ee147c4-6e70-4972-8a69-4e4ff8257c86","last_modified":1601517441378},{"schema":1601376733906,"derHash":"AHEIGUEV88iZ9U7mfLTahyde3B1nmNp4fgdYz6aulrE=","subject":"CN=VR IDENT SSL CA 2020,O=D-Trust GmbH,C=DE","subjectDN":"MEMxCzAJBgNVBAYTAkRFMRUwEwYDVQQKEwxELVRydXN0IEdtYkgxHTAbBgNVBAMTFFZSIElERU5UIFNTTCBDQSAyMDIw","whitelist":false,"attachment":{"hash":"1206315657f09d9afaec77ac85e998dd3c6cdcb66f3f2176acc53b52c01c503c","size":2519,"filename":"tODlN5eWKJbzjaei8TSG0CEnvkryLLZvN3Yh2FucTVs=.pem","location":"security-state-staging/inte
rmediates/35f8e921-4fcb-4f84-9bbb-da548ebd9895.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tODlN5eWKJbzjaei8TSG0CEnvkryLLZvN3Yh2FucTVs=","crlite_enrolled":true,"id":"9a044a16-723a-4cf7-8fef-aef81b9007f6","last_modified":1601517441361},{"schema":1601376778985,"derHash":"vrUcj0UkJrK55nL33R7qSzPWw49MoqlpVs4kvQWww40=","subject":"CN=TrustCor DV SSL CA - G2 - RSA,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFsxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJjAkBgNVBAMMHVRydXN0Q29yIERWIFNTTCBDQSAtIEcyIC0gUlNB","whitelist":false,"attachment":{"hash":"87f0868047f749fb388e8d44c43d08ee740544952b1d3dadbc73172c343a6e6d","size":1695,"filename":"eS9Oc92-qoeyy7FaGbRe6FO_VTah35Lxm0PDdpsLdHc=.pem","location":"security-state-staging/intermediates/5e2a99e7-7c31-46e5-9e47-d2efc550858a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eS9Oc92+qoeyy7FaGbRe6FO/VTah35Lxm0PDdpsLdHc=","crlite_enrolled":true,"id":"b6448c15-89fa-4f40-bfc4-08ede3de01a0","last_modified"
:1601517441343},{"schema":1592519325523,"derHash":"tf7ML2lshQMj/HqFxltQpMXhv7+CPiZqsKRvATssDrI=","subject":"CN=DigiCert Trust Service ECC CA G2,O=DigiCert Inc,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKTAnBgNVBAMTIERpZ2lDZXJ0IFRydXN0IFNlcnZpY2UgRUNDIENBIEcy","whitelist":false,"attachment":{"hash":"3ca0e82119ab2a0b243ffb803c5d18e55b693598fd856f1a7d0a948e1d69157c","size":1366,"filename":"4VdkcpY-ZOfUyYWEJvjLhuY_q1wbV_iIKsGc2tE5I3A=.pem","location":"security-state-staging/intermediates/71b44562-b362-4564-a50c-c4d248bc8403.pem","mimetype":"text/plain"},"pubKeyHash":"4VdkcpY+ZOfUyYWEJvjLhuY/q1wbV/iIKsGc2tE5I3A=","crlite_enrolled":false,"id":"0e1c5bc4-8ad7-4fc2-98de-26295e8e6c53","last_modified":1600461980986},{"schema":1592519324037,"derHash":"lnDMo2rzULm0at/mRu3rv6vOwBzPg7gZznx4ZO3LZsg=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 Code Signing CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u
53f8,C=CN","subjectDN":"MHsxCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxPTA7BgNVBAMMNOS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"465e1a9061e7e389d0ea9da9747262b81d40ae4e14cd9fb27a42f4945f02703f","size":2113,"filename":"YSF8GH0zlEZHOUsW5ULvJI2HashoWaIc2mlfp016vMs=.pem","location":"security-state-staging/intermediates/dbbc83b8-f71f-442b-9caf-a0b071759042.pem","mimetype":"text/plain"},"pubKeyHash":"YSF8GH0zlEZHOUsW5ULvJI2HashoWaIc2mlfp016vMs=","crlite_enrolled":false,"id":"e29dabe7-26f8-4b0e-9a74-744b01286fbd","last_modified":1600461980972},{"schema":1592519319465,"derHash":"gAd2ZTOKAJeJ+ELzQDZHpxU2wfsmTzXa7OwBk+ZQjg4=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 Secure Email CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHsxCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnI
npmZDlhazlj7gxPTA7BgNVBAMMNOS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBTZWN1cmUgRW1haWwgQ0E=","whitelist":false,"attachment":{"hash":"ebd4f889c36301f375bca790983c878bebf65b6cb79bf50ad94757d9791e1129","size":2125,"filename":"hXTrdizZDVwP3rMfF243guACsDeLHsUDr6RQIV8SPO0=.pem","location":"security-state-staging/intermediates/f89f921c-a3c7-42c9-994a-462056a42c42.pem","mimetype":"text/plain"},"pubKeyHash":"hXTrdizZDVwP3rMfF243guACsDeLHsUDr6RQIV8SPO0=","crlite_enrolled":false,"id":"b031ea12-8aac-4bac-aee4-5d52d060d214","last_modified":1600461980958},{"schema":1592519320938,"derHash":"3LiusAU7pcUw9Hor4dHk93taB24diij202yPHv3nYaM=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 DV CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxMzAxBgNVBAMMKuS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBEViBDQQ==","whitelist":fals
e,"attachment":{"hash":"fa4d3f7d98a36f15104d4476514f5038617b69c71d4e11bdfa0516941f5805c0","size":2125,"filename":"bVTZhSTxXd9oL6FqukK0jPVCRZZN4NKl8Nq2p5TLW1Y=.pem","location":"security-state-staging/intermediates/aa550fcc-4cab-4c33-991a-e69878ac8229.pem","mimetype":"text/plain"},"pubKeyHash":"bVTZhSTxXd9oL6FqukK0jPVCRZZN4NKl8Nq2p5TLW1Y=","crlite_enrolled":false,"id":"7dcd5c54-eebb-427c-bea4-620c6203e573","last_modified":1600461980945},{"schema":1592519322519,"derHash":"TJ55n+pib17TXY+RVI+2o5AFAwmfMrxJ3A+1ZrCg7zc=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 OV CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxMzAxBgNVBAMMKuS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBPViBDQQ==","whitelist":false,"attachment":{"hash":"a18c07e5eb226b53a94eddfaa604b8c410e66396eb63dba5ffff4555b00cab71","size":2125,"filename":"0I
7ImSIwMSH6GsuawHstmkZIicesm0pcLLm6TH6V8Gg=.pem","location":"security-state-staging/intermediates/8c5cbc1b-7010-4279-9592-7bf449788484.pem","mimetype":"text/plain"},"pubKeyHash":"0I7ImSIwMSH6GsuawHstmkZIicesm0pcLLm6TH6V8Gg=","crlite_enrolled":false,"id":"80d031b5-a786-4d6f-92db-1187faf75cfc","last_modified":1600461980928},{"schema":1592519318021,"derHash":"UrbEsFs8Uhd0VXzVPupZVvNryUxktm2Z6KcpH8L8nDY=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 EV CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxMzAxBgNVBAMMKuS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBFViBDQQ==","whitelist":false,"attachment":{"hash":"0fbfbb9e88addc3cd5be14cbc4fc98ffaf71d3590e9528f71285f55e6da787dd","size":2158,"filename":"9H6Ec6Gyc8uSo946YlOcaYTeoFYZA6Lk4LjvzAtZwR0=.pem","location":"security-state-staging/intermediates/133bea84-438e-4b34-
99c8-925e79eac21e.pem","mimetype":"text/plain"},"pubKeyHash":"9H6Ec6Gyc8uSo946YlOcaYTeoFYZA6Lk4LjvzAtZwR0=","crlite_enrolled":false,"id":"03d0ad68-4073-473a-808c-029a1be1de3c","last_modified":1600461980915},{"schema":1592518507191,"derHash":"UrbEsFs8Uhd0VXzVPupZVvNryUxktm2Z6KcpH8L8nDY=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 EV CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxMzAxBgNVBAMMKuS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBFViBDQQ==","whitelist":false,"attachment":{"hash":"0fbfbb9e88addc3cd5be14cbc4fc98ffaf71d3590e9528f71285f55e6da787dd","size":2158,"filename":"9H6Ec6Gyc8uSo946YlOcaYTeoFYZA6Lk4LjvzAtZwR0=.pem","location":"security-state-staging/intermediates/5e9b82e3-6498-46cb-ae02-ec6e85daa9d4.pem","mimetype":"text/plain"},"pubKeyHash":"9H6Ec6Gyc8uSo946YlOcaYTeoFYZA6Lk4LjvzAtZwR0=","crlite_
enrolled":false,"id":"68fb8595-ab2e-4358-8b7f-2d8630f8d173","last_modified":1600461980903},{"schema":1592518505595,"derHash":"3LiusAU7pcUw9Hor4dHk93taB24diij202yPHv3nYaM=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 DV CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxMzAxBgNVBAMMKuS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBEViBDQQ==","whitelist":false,"attachment":{"hash":"fa4d3f7d98a36f15104d4476514f5038617b69c71d4e11bdfa0516941f5805c0","size":2125,"filename":"bVTZhSTxXd9oL6FqukK0jPVCRZZN4NKl8Nq2p5TLW1Y=.pem","location":"security-state-staging/intermediates/d0c9c8fe-9684-46f7-8bec-543fada2095a.pem","mimetype":"text/plain"},"pubKeyHash":"bVTZhSTxXd9oL6FqukK0jPVCRZZN4NKl8Nq2p5TLW1Y=","crlite_enrolled":false,"id":"03cebcec-948e-4495-a47e-70c600be3181","last_modified":1600461980889},{"schema":1592518500941,"
derHash":"gAd2ZTOKAJeJ+ELzQDZHpxU2wfsmTzXa7OwBk+ZQjg4=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 Secure Email CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHsxCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxPTA7BgNVBAMMNOS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBTZWN1cmUgRW1haWwgQ0E=","whitelist":false,"attachment":{"hash":"ebd4f889c36301f375bca790983c878bebf65b6cb79bf50ad94757d9791e1129","size":2125,"filename":"hXTrdizZDVwP3rMfF243guACsDeLHsUDr6RQIV8SPO0=.pem","location":"security-state-staging/intermediates/5cd1888e-6da6-4b26-982c-41ff0fcb648d.pem","mimetype":"text/plain"},"pubKeyHash":"hXTrdizZDVwP3rMfF243guACsDeLHsUDr6RQIV8SPO0=","crlite_enrolled":false,"id":"b5b51d7e-18c0-4051-990e-2227c2564998","last_modified":1600461980874},{"schema":1592518504135,"derHash":"lnDMo2rzULm0at/mRu3rv6vOwBzPg7gZznx4ZO3LZsg=","subject":"CN=\u4e0a\u6d77\u9510\u6210
\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 Code Signing CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHsxCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxPTA7BgNVBAMMNOS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"465e1a9061e7e389d0ea9da9747262b81d40ae4e14cd9fb27a42f4945f02703f","size":2113,"filename":"YSF8GH0zlEZHOUsW5ULvJI2HashoWaIc2mlfp016vMs=.pem","location":"security-state-staging/intermediates/f603f16e-856a-454f-b298-d24dd8fca252.pem","mimetype":"text/plain"},"pubKeyHash":"YSF8GH0zlEZHOUsW5ULvJI2HashoWaIc2mlfp016vMs=","crlite_enrolled":false,"id":"b797be80-d570-40a8-a654-8dabec0a9efd","last_modified":1600461980861},{"schema":1592518499324,"derHash":"tf7ML2lshQMj/HqFxltQpMXhv7+CPiZqsKRvATssDrI=","subject":"CN=DigiCert Trust Service ECC CA G2,O=DigiCert Inc,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmM
xKTAnBgNVBAMTIERpZ2lDZXJ0IFRydXN0IFNlcnZpY2UgRUNDIENBIEcy","whitelist":false,"attachment":{"hash":"3ca0e82119ab2a0b243ffb803c5d18e55b693598fd856f1a7d0a948e1d69157c","size":1366,"filename":"4VdkcpY-ZOfUyYWEJvjLhuY_q1wbV_iIKsGc2tE5I3A=.pem","location":"security-state-staging/intermediates/48219111-c4c3-46ea-8a9b-039c95dd8687.pem","mimetype":"text/plain"},"pubKeyHash":"4VdkcpY+ZOfUyYWEJvjLhuY/q1wbV/iIKsGc2tE5I3A=","crlite_enrolled":false,"id":"505a1a9d-4fd8-4405-8efd-ffeeb546927b","last_modified":1600461980847},{"schema":1592518502537,"derHash":"TJ55n+pib17TXY+RVI+2o5AFAwmfMrxJ3A+1ZrCg7zc=","subject":"CN=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8 OV CA,O=\u4e0a\u6d77\u9510\u6210\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTkuIrmtbfplJDmiJDkv6Hmga/np5HmioDmnInpmZDlhazlj7gxMzAxBgNVBAMMKuS4iua1t+mUkOaIkOS/oeaBr+enkeaKgOaciemZkOWFrOWPuCBPViBDQQ==","whitelist":false,"attachment":{"hash":"a18c07e5eb226b53a
94eddfaa604b8c410e66396eb63dba5ffff4555b00cab71","size":2125,"filename":"0I7ImSIwMSH6GsuawHstmkZIicesm0pcLLm6TH6V8Gg=.pem","location":"security-state-staging/intermediates/6231d971-9aa9-41b5-a807-ac2ac34ed03e.pem","mimetype":"text/plain"},"pubKeyHash":"0I7ImSIwMSH6GsuawHstmkZIicesm0pcLLm6TH6V8Gg=","crlite_enrolled":false,"id":"d425ff0e-dd7f-46dd-bec7-e1a25ff6824a","last_modified":1600461980834},{"schema":1592519327887,"derHash":"HQzX7zwZJlUI4g5Ys1OJZPShGt7Ipx2KuKiv8VaDxq4=","subject":"CN=Trustwave XRamp Global Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIG3MQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE/MD0GA1UEAxM2VHJ1c3R3YXZlIFhSYW1wIEdsb2JhbCBFeHRlbmRlZCBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMR8wHQYJKoZIhvcNAQkBFhBjYUB0cnVzdHdhdmUuY29t","whitelist":false,"attachment":{"hash":"8a9ab9f7d0fa1dce10d8a47b00a029a25fdd07597d57eaa58121c3285bd1534f","size":1857,"filename
":"bNKluS4Pu3ijZ1polhtHJPfB2HD5sR_s46h0NYeir6U=.pem","location":"security-state-staging/intermediates/5016e431-0390-45dc-8e65-2642b4718233.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bNKluS4Pu3ijZ1polhtHJPfB2HD5sR/s46h0NYeir6U=","crlite_enrolled":false,"id":"d9c54bdb-939c-4a86-a826-cc0f2f68da43","last_modified":1600461980813},{"schema":1592519327482,"derHash":"RbKwjhtYlIoCi+E6Z8DiDUskZq4rbsYlDrsQ/Wt/gjk=","subject":"CN=Trustwave Secure Global Extended Validation CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIG4MQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjFAMD4GA1UEAxM3VHJ1c3R3YXZlIFNlY3VyZSBHbG9iYWwgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQSwgTGV2ZWwgMTEfMB0GCSqGSIb3DQEJARYQY2FAdHJ1c3R3YXZlLmNvbQ==","whitelist":false,"attachment":{"hash":"296ea0b36874faa2487773b3da5792b5b41278241a226affe7e50a6ba22c0e72","size":1784,"filename":"jyPoX5LnCMukfvFxrxuJWUrZycp69MmdphXiTrhpMU4=.pem",
"location":"security-state-staging/intermediates/3c07694f-03e7-4fdb-b353-876f81151fda.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jyPoX5LnCMukfvFxrxuJWUrZycp69MmdphXiTrhpMU4=","crlite_enrolled":false,"id":"170a74a6-1485-4c35-aecb-8b37550de004","last_modified":1600461980794},{"schema":1592519327070,"derHash":"t1rumDb++8RG8oiilwuE/GCq+e+9LLn4L3WBeQ3kuNw=","subject":"CN=DigiCert Secure Site Pro EV CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxLTArBgNVBAMTJERpZ2lDZXJ0IFNlY3VyZSBTaXRlIFBybyBFViBDTiBDQSBHMw==","whitelist":false,"attachment":{"hash":"8f19662a936c31bb439790a003ca25e57b94197599e34213f653edb625e96dbe","size":1642,"filename":"2OVT1JHnI_dBAIq49zWtXoFiiSQRI-yC8zdls8oKK38=.pem","location":"security-state-staging/intermediates/2d3ad204-0ce2-4d05-9f72-d1c775ffbbf7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2OVT1JHnI/dBAIq49zWtXoFiiSQRI+yC8zdls8oKK38=","crlite_enrolled":true,"id":"009aa822-146e-46a3-a719-3dcd9
bf7e8e3","last_modified":1600461980775},{"schema":1592519326661,"derHash":"avXE6sGAKJuUp3pdIx44Zf/pNPPmokv0h+tOK/2Amks=","subject":"CN=DigiCert Secure Site CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJjAkBgNVBAMTHURpZ2lDZXJ0IFNlY3VyZSBTaXRlIENOIENBIEcz","whitelist":false,"attachment":{"hash":"743079f69e24d2afafbe5dd936ba2cfc2f9326699f40d7bb7f26e940a110daa9","size":1804,"filename":"TbrK7tI1CsyZLKNdMvoHsV863GbcuERLt4LWrjChCv0=.pem","location":"security-state-staging/intermediates/8026b161-5f15-4e50-9e04-efeab78566fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TbrK7tI1CsyZLKNdMvoHsV863GbcuERLt4LWrjChCv0=","crlite_enrolled":true,"id":"ad68756a-4b01-4086-81fb-9969fb748de3","last_modified":1600461980756},{"schema":1591908256929,"derHash":"xssItdbf5GGuzpqjzwOvf+0TQcnm7gBSEpwnynVJM/I=","subject":"CN=HARICA Qualified Legal Entities SubCA R3,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"
MIGXMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTExMC8GA1UEAwwoSEFSSUNBIFF1YWxpZmllZCBMZWdhbCBFbnRpdGllcyBTdWJDQSBSMw==","whitelist":false,"attachment":{"hash":"15186c02c3df74416fd0f87801be6425aa3a0e406c53fd492f830a54cc92d12e","size":2544,"filename":"e-dd9g8VZXXMsr7G7fKcXN7tMA9ukaEjSLgZF2ICfqc=.pem","location":"security-state-staging/intermediates/80dd46f5-d545-40df-895f-23e2ea8d22af.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e+dd9g8VZXXMsr7G7fKcXN7tMA9ukaEjSLgZF2ICfqc=","crlite_enrolled":false,"id":"283da37c-85ac-496a-ba61-80ed629f1f7e","last_modified":1591908420097},{"schema":1591908255464,"derHash":"Z/YmZm9F8XvCPH3e/5joVqpvLhhJ9dfhOS0YnrZte7Y=","subject":"CN=TrustCor OV Code Signing CA - G2 - RSA,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MGQxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xLzAtBgNVBAMMJlRydXN0Q29yIE9WIENvZGUgU2lnbmluZyBDQSAtIEcyIC0gUlNB"
,"whitelist":false,"attachment":{"hash":"ddfe34bed60cad4d57b2e8417bba93ac215d0d0e840345142b03f395008543ce","size":2410,"filename":"iNMsaPqm4Y4GBd1dQ8pIwhWcEiF-oQ5TSyxyIysvIrw=.pem","location":"security-state-staging/intermediates/9e5d4cf9-fb23-4745-9ce6-a087b871d619.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iNMsaPqm4Y4GBd1dQ8pIwhWcEiF+oQ5TSyxyIysvIrw=","crlite_enrolled":false,"id":"d28c346b-415c-4cc5-9c09-487a46fab821","last_modified":1591908420093},{"schema":1591908258704,"derHash":"Hdniosh1+Qbfh6dbuSG6ureyrFwNL3iXWz70TTiEQw8=","subject":"CN=TrustCor OV TSA CA - G2 - RSA,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFsxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJjAkBgNVBAMMHVRydXN0Q29yIE9WIFRTQSBDQSAtIEcyIC0gUlNB","whitelist":false,"attachment":{"hash":"6ec3d34afb73dd44ae301e1e6f0a88bfab245afafd5ea585c3b265293a072f79","size":2373,"filename":"1jVOPg4ry58GnR2_TFxGoDvcplP9fgYirn7IFdbUyC8=.pem","location":"security-state-staging/intermediates/
66f59a5b-00d0-4d69-ac6d-d179a9c00001.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1jVOPg4ry58GnR2/TFxGoDvcplP9fgYirn7IFdbUyC8=","crlite_enrolled":false,"id":"a770b1e9-9624-43aa-8f7e-5bff4eb600b6","last_modified":1591908420089},{"schema":1591908251155,"derHash":"Xun1cEg2BnWCXDrJQ5R8wTnEpiNoWQ68GVZiBVVJx6A=","subject":"CN=TrustCor OV TSA CA - G2,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFUxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xIDAeBgNVBAMMF1RydXN0Q29yIE9WIFRTQSBDQSAtIEcy","whitelist":false,"attachment":{"hash":"69adbaf65c55ef987d6666699aecc848786f8f9f06e2d00ed3bc77f76a5b48c0","size":2483,"filename":"d_caspjhmZltcVsqecvlCTBnVD8N3iuX2zSiNPeUluk=.pem","location":"security-state-staging/intermediates/edc45158-fbf7-4c73-a277-ac4bd7ae90b3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"d/caspjhmZltcVsqecvlCTBnVD8N3iuX2zSiNPeUluk=","crlite_enrolled":false,"id":"8074dbab-0f4a-4d83-86d4-04f377d177ba","last_modified":1591908420086},{"sche
ma":1591908252552,"derHash":"rdvoi0aBVM+Pd3MojIxQ92CHnkkIkqqScoFbgU5yHn0=","subject":"CN=HARICA Qualified Natural Entities SubCA R3,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGZMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEzMDEGA1UEAwwqSEFSSUNBIFF1YWxpZmllZCBOYXR1cmFsIEVudGl0aWVzIFN1YkNBIFIz","whitelist":false,"attachment":{"hash":"6c52992f4d66e47d6bc189688395f1d9b653b4ee61b4f9e7ba93bdf82f90d707","size":2548,"filename":"Pms5vxD68EJwYxeOKxJ-6ilislMxv6HNu2tpcnKXIMU=.pem","location":"security-state-staging/intermediates/111e670d-debd-4ffe-a437-edb530691a7b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Pms5vxD68EJwYxeOKxJ+6ilislMxv6HNu2tpcnKXIMU=","crlite_enrolled":false,"id":"6093d7f2-f99d-4c21-8ee3-9a9b80983545","last_modified":1591908420082},{"schema":1591908260103,"derHash":"Dxfjdv6U5YLW7mSc3FFv+XfnZcVhrgh/MaP16OZszs0=","subject":"CN=MUL
TICERT SSL Certification Authority 005,OU=Certification Authority,O=MULTICERT - Servi\u00e7os de Certifica\u00e7\u00e3o Electr\u00f3nica S.A.,C=PT","subjectDN":"MIGnMQswCQYDVQQGEwJQVDFCMEAGA1UECgw5TVVMVElDRVJUIC0gU2VydmnDp29zIGRlIENlcnRpZmljYcOnw6NvIEVsZWN0csOzbmljYSBTLkEuMSAwHgYDVQQLDBdDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEyMDAGA1UEAwwpTVVMVElDRVJUIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAwMDU=","whitelist":false,"attachment":{"hash":"7c1eb5e82b6b98c5fbb2cc2e946e862c3e9603db9030601769545d27dfc680ab","size":2710,"filename":"SnDcth-CFMtKqv8C-vvYUiVswx8i9btebkBPGF9jAbg=.pem","location":"security-state-staging/intermediates/8a7a0501-5a3d-44a9-9174-ddbbcbe9051c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SnDcth+CFMtKqv8C+vvYUiVswx8i9btebkBPGF9jAbg=","crlite_enrolled":false,"id":"66431be4-4652-4565-bed9-271b8a5ecc9c","last_modified":1591908420078},{"schema":1591908243825,"derHash":"igI8COShqsySWzTFx5ZajQUnVlrqEwq7kV5QjNM6+0U=","subject":"CN=GeoTrust RSA CN CA G3,O=DigiCert Inc,C=US","
subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFUdlb1RydXN0IFJTQSBDTiBDQSBHMw==","whitelist":false,"attachment":{"hash":"1c253f34ef8fb2a9d6743df4e53b8c564f86da911d0aee06adf0de306c22beb7","size":1792,"filename":"Z8gGiWQqJBlCkkMEDLNWwgA7ptFGYD644CqzC-fWQBE=.pem","location":"security-state-staging/intermediates/da3b185f-0b51-4749-b8bc-791ebfd15fc9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z8gGiWQqJBlCkkMEDLNWwgA7ptFGYD644CqzC+fWQBE=","crlite_enrolled":false,"id":"9c0eb9aa-b6ce-452b-9c28-80f98e51306b","last_modified":1591908420075},{"schema":1591908254121,"derHash":"GYvM8E55tCt8oo88Hq75phQ5LsxDugAK6nd+PXCKsfw=","subject":"CN=TrustCor IV TSA CA - G2,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFUxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xIDAeBgNVBAMMF1RydXN0Q29yIElWIFRTQSBDQSAtIEcy","whitelist":false,"attachment":{"hash":"e538e57c2db6d21be93f1f9d530ffe21255eb9564f89c4f57a8b5dfee1db83e6","size":1792,"filename":"BcOV
Ift6Aa3I0Epsv8lbkAjkC8BYiOf4PL9PpPN24ME=.pem","location":"security-state-staging/intermediates/ac3a4076-5275-48cb-b805-73ea185a8dd6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BcOVIft6Aa3I0Epsv8lbkAjkC8BYiOf4PL9PpPN24ME=","crlite_enrolled":false,"id":"4f5b63f1-53f9-473d-8f4b-9fb17c89e6b5","last_modified":1591908420071},{"schema":1591908249702,"derHash":"RwjdbQktf7WVj1tDUB9hc/uWae2wWv1LvM3dLVBo2NA=","subject":"CN=NBN CO Limited Public Issuing CA - G3,O=NBN Co Limited,C=AU","subjectDN":"MFYxCzAJBgNVBAYTAkFVMRcwFQYDVQQKEw5OQk4gQ28gTGltaXRlZDEuMCwGA1UEAxMlTkJOIENPIExpbWl0ZWQgUHVibGljIElzc3VpbmcgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"35095ff447bac3e1f428c0d591589efb625ae06c8da9a3771bafa7a54eaa07ea","size":1979,"filename":"gN_XmPns3r-Tbn-lkGyIDLxbLl0lVx5A-u0anA34Css=.pem","location":"security-state-staging/intermediates/5c4df234-31b6-4f83-b408-9ea720930655.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gN/XmPns3r+Tbn+lkGyIDLxbLl0lVx5A+u0anA34Css=","crli
te_enrolled":false,"id":"f2f582d9-505a-4589-a18d-d9f70347e84c","last_modified":1591908420067},{"schema":1591908246671,"derHash":"FhSDQzEmNqwQtnlG87RSRvrhCxiP10lEKfTlFBdwnjk=","subject":"CN=TrustCor IV Code Signing CA - G2,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MF4xCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xKTAnBgNVBAMMIFRydXN0Q29yIElWIENvZGUgU2lnbmluZyBDQSAtIEcy","whitelist":false,"attachment":{"hash":"4d46a09d4ee7352f08502d4721c53275065e5acc36b5bc3396acb9aa1357bd49","size":1804,"filename":"NNZ-Qjfj6rAm3CfD2zqpQShEqkK41UzTIGWJhlN2bww=.pem","location":"security-state-staging/intermediates/8fc46347-ec1a-42b8-bbf5-4b52d947a95b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NNZ+Qjfj6rAm3CfD2zqpQShEqkK41UzTIGWJhlN2bww=","crlite_enrolled":false,"id":"7913159f-41dd-4bb6-acfc-cd380f6bf5cf","last_modified":1591908420064},{"schema":1591908239339,"derHash":"mOajHV3KWkpNVWV+35TdDUSBVUnuqmNgrWnVWCQdRro=","subject":"CN=TrustCor IV TSA CA - G2 - RSA,O=Tr
ustCor Systems S. de R.L.,C=PA","subjectDN":"MFsxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJjAkBgNVBAMMHVRydXN0Q29yIElWIFRTQSBDQSAtIEcyIC0gUlNB","whitelist":false,"attachment":{"hash":"8bfa506d32d10c6528ea412e42a0d855ba7723dfe606ff19f0e40fe5fde89031","size":1678,"filename":"CsfHattDE4htH2z5II2WNywRRT9YaOXpOx4wtM_8LlI=.pem","location":"security-state-staging/intermediates/45d1ffad-718a-40e3-88d2-f0114ef3d216.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CsfHattDE4htH2z5II2WNywRRT9YaOXpOx4wtM/8LlI=","crlite_enrolled":false,"id":"b7f95b53-bebf-41cf-b830-690df9cc21aa","last_modified":1591908420059},{"schema":1591908245176,"derHash":"UGWE8Z53dAahawtrgU5mmhH01Kqh5zhkvf2VuyPF+WE=","subject":"CN=TrustCor IV Code Signing CA - G2 - RSA,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MGQxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xLzAtBgNVBAMMJlRydXN0Q29yIElWIENvZGUgU2lnbmluZyBDQSAtIEcyIC0gUlNB","whitelist":false,"attachment":{"hash"
:"cf590adb24b61ce55d52164c9a4d6c27c2436330ff35fcb41ec4b62ddd3a7b1e","size":1715,"filename":"JBOYzlgICSKcHIvX9_5QkncM_Z34f2lDBKwwj4Jdjaw=.pem","location":"security-state-staging/intermediates/7772d5b3-5c72-4498-a98b-27e0bd4507f6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JBOYzlgICSKcHIvX9/5QkncM/Z34f2lDBKwwj4Jdjaw=","crlite_enrolled":false,"id":"cb96c308-4047-4032-a68c-949e1f543ae3","last_modified":1591908420054},{"schema":1591908237803,"derHash":"3wJdzio2QRvl62WQwWHv0mUuwrP3DVxlH5DQI8RvOgA=","subject":"CN=Enterprise Premium Public CA,O=Mitsubishi Electric Information Network Corporation,C=JP","subjectDN":"MHIxCzAJBgNVBAYTAkpQMTwwOgYDVQQKEzNNaXRzdWJpc2hpIEVsZWN0cmljIEluZm9ybWF0aW9uIE5ldHdvcmsgQ29ycG9yYXRpb24xJTAjBgNVBAMTHEVudGVycHJpc2UgUHJlbWl1bSBQdWJsaWMgQ0E=","whitelist":false,"attachment":{"hash":"349b15c3f214b888d6f6a4b46c954070b45c19cb06c1ab8d5e1ba9af1f45fdba","size":2003,"filename":"9lt_Fzns7hF03gLZXsgVEGOFYGx2FHKYDGJ_mLKiYOQ=.pem","location":"security-state-stagin
g/intermediates/b9978482-c255-4c65-b859-e48b280ba0b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9lt/Fzns7hF03gLZXsgVEGOFYGx2FHKYDGJ/mLKiYOQ=","crlite_enrolled":false,"id":"e4d0a3e7-9fd9-4cbd-88ed-66cdec39ce70","last_modified":1591908420049},{"schema":1591908240858,"derHash":"ZGFrYoINRY98ceNEnszz8+RzW3aHmGDBxmDfI0OGB+o=","subject":"CN=DigiCert Trust Service CA G1,O=DigiCert Inc,C=US","subjectDN":"MEsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJTAjBgNVBAMTHERpZ2lDZXJ0IFRydXN0IFNlcnZpY2UgQ0EgRzE=","whitelist":false,"attachment":{"hash":"8f3bd7702431a74663d155fff1053e6a21a12d31b04d933bf288ac32b921b34d","size":1833,"filename":"QxsK1VHNknY5S-B94-JqCZPJWfnMPftvWK4_FNOB6V0=.pem","location":"security-state-staging/intermediates/f6b4b592-197e-4d6d-8689-a50686e47427.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QxsK1VHNknY5S+B94+JqCZPJWfnMPftvWK4/FNOB6V0=","crlite_enrolled":false,"id":"542da68e-9ecf-40ae-95ca-47a2d82da288","last_modified":1591908420041},{"schema":15
91908248234,"derHash":"Ut3on91vYQRz+TFMeosaxEL4qoM6pddzAG/adYyf8ew=","subject":"CN=GeoTrust ECC CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFUdlb1RydXN0IEVDQyBDTiBDQSBHMw==","whitelist":false,"attachment":{"hash":"e06f12d6e0b15958641d81bbc87c7e33098dcc36413ea0b92cdc4e4543a9f083","size":1321,"filename":"htzU8zBrdwmMNFLvW_ZzkFTZcn95rIZbtuXmmiR6prc=.pem","location":"security-state-staging/intermediates/da92e448-1975-4ac4-8055-a07ffe8cc9d4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"htzU8zBrdwmMNFLvW/ZzkFTZcn95rIZbtuXmmiR6prc=","crlite_enrolled":false,"id":"88abec4b-eb1e-406d-bc4b-5b94bef1b7d9","last_modified":1591908420022},{"schema":1591908242250,"derHash":"LJfYbJSXYjw80JindbmbUK4Kk6pXIjWLid9jbHOeqiQ=","subject":"CN=TrustCor OV Code Signing CA - G2,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MF4xCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xKTAnBgNVBAMMIFRydXN0Q29yIE9WIENvZGUgU2lnbmlu
ZyBDQSAtIEcy","whitelist":false,"attachment":{"hash":"ef0aab26ac8bd0928a9d66d5daef52f3a25eeb827d1e043a71c60577efd7bf90","size":2495,"filename":"8R2HhqEOvFRlo8eJ7ZRC7QNG2WAYSUwQZJ0DIpmsPTg=.pem","location":"security-state-staging/intermediates/92acae6d-6fa5-4775-a134-7b54bd6fce8b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8R2HhqEOvFRlo8eJ7ZRC7QNG2WAYSUwQZJ0DIpmsPTg=","crlite_enrolled":false,"id":"013d2fce-1b00-4e3a-a1e6-8adb2b7f1539","last_modified":1591908420018},{"schema":1591908261553,"derHash":"VlyCcCtexjICdU1PS3bMO64ypMkUbtO+zXOkBP+tTN4=","subject":"CN=UTN-USERFirst-Client Authentication and Email,OU=http://www.usertrust.com,O=The USERTRUST Network,L=Salt Lake City,ST=UT,C=US","subjectDN":"MIGuMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQxFzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRydXN0LmNvbTE2MDQGA1UEAxMtVVROLVVTRVJGaXJzdC1DbGllbnQgQXV0aGVudGljYXRpb24gYW5kIEVtYWls","whitelist":false,"attachment":{"hash":"1d9
a2d179a6bd77673a2997822c24eb83c91358de300c97d4a73f66949753211","size":1674,"filename":"Laj56jRU0hFGRko_nQKNxMf7tXscUsc8KwVyovWZotM=.pem","location":"security-state-staging/intermediates/510154be-a7ff-4d30-ac0f-47117e4efac6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Laj56jRU0hFGRko/nQKNxMf7tXscUsc8KwVyovWZotM=","crlite_enrolled":false,"id":"f8a064f9-72f6-4b80-82ab-21209517e607","last_modified":1591908420004},{"schema":1591908261181,"derHash":"BwUxODzNEA0+nNlk2weqXoRaBoby6uO8imJ7GCBXsfE=","subject":"CN=WoTrus EV SSL Pro CA,O=WoTrus CA Limited,C=CN","subjectDN":"MEgxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1RydXMgQ0EgTGltaXRlZDEdMBsGA1UEAxMUV29UcnVzIEVWIFNTTCBQcm8gQ0E=","whitelist":false,"attachment":{"hash":"7be2ec04c8313dc05a7e0bef9687e9b6f04e6acceb8e83e4058ae0bf0657219d","size":1845,"filename":"rBTvvFbWGhKxAPrEAJ1x8vttBOVCvRznd5h2iXt2ATs=.pem","location":"security-state-staging/intermediates/fb7112f9-ebcd-4924-94f2-c22ec2b2f71e.pem","mimetype":"application/x-pem-file"},"pubKeyH
ash":"rBTvvFbWGhKxAPrEAJ1x8vttBOVCvRznd5h2iXt2ATs=","crlite_enrolled":false,"id":"2e485221-a36c-44c6-9a72-4f500ee13bf3","last_modified":1591908419995},{"schema":1591908262427,"derHash":"M3xiU3dZLx38xuZWMcYF64uW4AwUa0N/wfBnJoFU6Vk=","subject":"CN=CA Teknikoa - CA Tecnica,OU=AZZ Ziurtagiri publikoa - Certificado publico SCA,O=IZENPE S.A.,C=ES","subjectDN":"MIGCMQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xOjA4BgNVBAsMMUFaWiBaaXVydGFnaXJpIHB1Ymxpa29hIC0gQ2VydGlmaWNhZG8gcHVibGljbyBTQ0ExITAfBgNVBAMMGENBIFRla25pa29hIC0gQ0EgVGVjbmljYQ==","whitelist":false,"attachment":{"hash":"0c9abfeebfbd944291d27dfed50b0748b9adc5e8a3e675787d264631975bf3fa","size":2523,"filename":"DQi2term9F9bDPt5Nfb1rvSpznThwvfs2UDIgalF_gU=.pem","location":"security-state-staging/intermediates/4f1d16ba-fc95-4a1f-a3f9-da34f76cd637.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DQi2term9F9bDPt5Nfb1rvSpznThwvfs2UDIgalF/gU=","crlite_enrolled":false,"id":"a8fcbf40-670e-4659-b931-283e4034014e","last_modified":159190
8419993},{"schema":1591908261922,"derHash":"FOOEZJqkAfHRyr1fo9CKvoLxS32ubFYVsc191B6XUOM=","subject":"CN=UTN-USERFirst-Client Authentication and Email,OU=http://www.usertrust.com,O=The USERTRUST Network,L=Salt Lake City,ST=UT,C=US","subjectDN":"MIGuMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQxFzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRydXN0LmNvbTE2MDQGA1UEAxMtVVROLVVTRVJGaXJzdC1DbGllbnQgQXV0aGVudGljYXRpb24gYW5kIEVtYWls","whitelist":false,"attachment":{"hash":"13e9b1674386c0c79e7249e0a15c3c2a7a26566c25cabf53498bce266477b0ab","size":1748,"filename":"Laj56jRU0hFGRko_nQKNxMf7tXscUsc8KwVyovWZotM=.pem","location":"security-state-staging/intermediates/27474a2a-2668-4899-9441-3d21b2a180a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Laj56jRU0hFGRko/nQKNxMf7tXscUsc8KwVyovWZotM=","crlite_enrolled":false,"id":"057b5891-6e79-4a5c-82ac-96cc6b60a971","last_modified":1591908419990},{"schema":1591167089365,"derHash":"6h87+00ylrRn1
LWCVZ1lGNZ21a/H0cJL6AJS95GRBG8=","subject":"CN=Thawte EV ECC CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHzAdBgNVBAMTFlRoYXd0ZSBFViBFQ0MgQ04gQ0EgRzI=","whitelist":false,"attachment":{"hash":"6600278f549dbae28e5eccd7c6d67369706158aee73bf69487e3b23a4b7ddaf2","size":1349,"filename":"3GFGMg3yja_Gu8_Fov8gNPJ7b50vsniti0_Jy-xvY9A=.pem","location":"security-state-staging/intermediates/add88934-8005-4e38-b32f-7fc51dfffed1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3GFGMg3yja/Gu8/Fov8gNPJ7b50vsniti0/Jy+xvY9A=","crlite_enrolled":false,"id":"af76e31b-fcae-4185-b725-666687e288ef","last_modified":1591199862513},{"schema":1591167082089,"derHash":"77RIRPN+5t4/tMyNLAyDL8j+66lQYjfg0fx61FdKTMo=","subject":"CN=University of Western Macedonia TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGBMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTE5MDcGA1UEAwwwVW5p
dmVyc2l0eSBvZiBXZXN0ZXJuIE1hY2Vkb25pYSBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"34785736752f18d257707426251597f0daa53471c56c0f47a301e173c27e43ba","size":2848,"filename":"kTSX_4RoREKHkIC-2xr1SaXHZsAeaVcmjRu6cQGraoE=.pem","location":"security-state-staging/intermediates/a44e6dfa-6c78-4c11-ad62-016557267d7b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kTSX/4RoREKHkIC+2xr1SaXHZsAeaVcmjRu6cQGraoE=","crlite_enrolled":false,"id":"91a2b5ee-075a-4618-bd8f-4d04cf5ccddf","last_modified":1591199862511},{"schema":1591167083551,"derHash":"wwvJZn4nOTeDPDlq2F7jJd5jP0/MxRSDQXqcik4zs50=","subject":"CN=Baidu\\, Inc. EV CA,O=Baidu\\, Inc.,C=CN","subjectDN":"MD8xCzAJBgNVBAYTAkNOMRQwEgYDVQQKEwtCYWlkdSwgSW5jLjEaMBgGA1UEAxMRQmFpZHUsIEluYy4gRVYgQ0E=","whitelist":false,"attachment":{"hash":"296487ea789ddbc074c95c8a463b37b717d3a6c661a41bcb0dfd1a6ee7de489b","size":2097,"filename":"onoL2w__80DVMiDBAhLw1xZS_BfLNB7xpPDNOU-t5vE=.pem","location":"security-state-staging/intermediates
/66b05ddd-742a-4677-a64c-14bc59b1ff6c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"onoL2w//80DVMiDBAhLw1xZS/BfLNB7xpPDNOU+t5vE=","crlite_enrolled":false,"id":"48a4c34d-ae22-4bed-a3e3-7c45741571fe","last_modified":1591199862505},{"schema":1591167073329,"derHash":"bsjTVRvQRUsMxLnbh2Nmrgh2TF/PFbAPlBG94w1TNq4=","subject":"CN=Harokopio University Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHAMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTEwLwYDVQQDDChIYXJva29waW8gVW5pdmVyc2l0eSBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"dba0350edbfdcc712ff95f2aa7545bf242512d280fbf9f00eb896c1adb172dfa","size":3108,"filename":"qyD-jU59xuSNhgaWYyihJ7dWdsGFxoMvakE0j5xjD58=.pem","location":"security-state-staging/intermediates/c71e16a6-5051-4aec-805d-b
df273356535.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qyD+jU59xuSNhgaWYyihJ7dWdsGFxoMvakE0j5xjD58=","crlite_enrolled":false,"id":"34b45359-b190-4d3f-9191-c6d59ac0eded","last_modified":1591199862502},{"schema":1591167080617,"derHash":"53rALbbqoOmmtXOpmHDG3029uDOd2jvEB4b3DivX9/Y=","subject":"CN=Athens University of Economics and Business Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHXMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMUgwRgYDVQQDDD9BdGhlbnMgVW5pdmVyc2l0eSBvZiBFY29ub21pY3MgYW5kIEJ1c2luZXNzIENsaWVudCBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"1e3cb2c9ecca76313a725db387ac067371fbea9fc0ce4ce7d60c9ede6f74bf54","size":2950,"filename":"3IfeeqbDX_0ezFEcTXsTFVdG9GzLQIlDyy4VhgHxzS4=.pem","location":"security-state-staging/intermedia
tes/54bf59a7-d689-4acd-bf6e-3101a05ef2c1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3IfeeqbDX/0ezFEcTXsTFVdG9GzLQIlDyy4VhgHxzS4=","crlite_enrolled":false,"id":"3aea72b3-3960-455b-b711-025fdab94667","last_modified":1591199862497},{"schema":1591167071907,"derHash":"5Xu/UHn5gpO0FC80iXLmjjUeUrkDc/BfRvCcyzCvW/A=","subject":"CN=Democritus University of Thrace Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHLMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTwwOgYDVQQDDDNEZW1vY3JpdHVzIFVuaXZlcnNpdHkgb2YgVGhyYWNlIENsaWVudCBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"ea40db8a47367dd54c7678ae623e536b940224acac4e453074d7530c35cb3164","size":3754,"filename":"3QvO-bCh_CHkx1PzWSKQKGbIBtURouotLTwEHyZIxdg=.pem","location":"security-state-staging/intermedi
ates/532ef40b-a9e4-413d-a1e1-d0aa802e5956.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3QvO+bCh/CHkx1PzWSKQKGbIBtURouotLTwEHyZIxdg=","crlite_enrolled":false,"id":"2500e750-51f7-4bfa-b14c-410eee994700","last_modified":1591199862494},{"schema":1591167076191,"derHash":"WOifT3BBDaALQUc8+kE/oHN+0nKfPtd74pp/RwU3cUc=","subject":"CN=Thawte ECC CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHDAaBgNVBAMTE1RoYXd0ZSBFQ0MgQ04gQ0EgRzI=","whitelist":false,"attachment":{"hash":"4b60a802a42e6e4c05c687e45fc85a906f057a59607855889909b6b0d8b54554","size":1317,"filename":"0dJZS0XpXAP9EPdQcU6sdSVE8gQj1YnY-X4H-exCnC0=.pem","location":"security-state-staging/intermediates/b6d2ca16-612a-4f12-b4de-bdc927f057ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0dJZS0XpXAP9EPdQcU6sdSVE8gQj1YnY+X4H+exCnC0=","crlite_enrolled":false,"id":"114db227-c822-4ad8-bc85-78ec38af7372","last_modified":1591199862491},{"schema":1591167085011,"derHash":"dayOQdmnz
HWNOZj+Aw9jjP0ohVgj2k6bVpVM+94FTrY=","subject":"CN=DigiCert Trust Service CA,O=DigiCert Inc,C=US","subjectDN":"MEgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxIjAgBgNVBAMTGURpZ2lDZXJ0IFRydXN0IFNlcnZpY2UgQ0E=","whitelist":false,"attachment":{"hash":"a6a66b7af55471e0b38711d7f08e2851582c3a9a4fa4a8c11ffd63d8796ffc4e","size":1849,"filename":"gEh9s2cJ3MLV50ZxAV4m1LscTzkQpFmUa1bCYZBMYEM=.pem","location":"security-state-staging/intermediates/30d35091-2272-41b0-8d63-8aa9c6a7253d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gEh9s2cJ3MLV50ZxAV4m1LscTzkQpFmUa1bCYZBMYEM=","crlite_enrolled":false,"id":"f0d3ef47-0140-4de4-8a17-349ba642faf7","last_modified":1591199862488},{"schema":1591167077621,"derHash":"FtnelFpCgBH6OggyPaDkNHQ49a8c4+gCgyI+JaRsKp4=","subject":"CN=GEANT Personal CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEYxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMRwwGgYDVQQDExNHRUFOVCBQZXJzb25hbCBDQSA0","whitelist":false,"attachment":{"hash":"73692dd6b71347619e873c420c
2d14921c90d06d40eef62de1dd6e50b7f88c6c","size":2450,"filename":"gKNaaLTb-FNPxezlz9qfuHiINdFBc6WBAavUqmlBe6g=.pem","location":"security-state-staging/intermediates/7a3ca483-65a7-42ca-9486-496ebb6c28b9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gKNaaLTb+FNPxezlz9qfuHiINdFBc6WBAavUqmlBe6g=","crlite_enrolled":false,"id":"230a150f-d7b7-4b76-a970-cc4f56ac6428","last_modified":1591199862485},{"schema":1591167087942,"derHash":"8La3WY3yeQRxVSYy66nN5tNJBl/G1mWVf57u9ae7JPI=","subject":"CN=TrustCor DV SSL CA - G2,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFUxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xIDAeBgNVBAMMF1RydXN0Q29yIERWIFNTTCBDQSAtIEcy","whitelist":false,"attachment":{"hash":"55baa0feb441643563e5145eadf1edc0e02ae8038105624c584bb56a289bf41d","size":1804,"filename":"joJVEgkWNcXOGzwqvqRUGUI1s5Dz-sm7yE2V6LjAa9A=.pem","location":"security-state-staging/intermediates/2eb164f7-eecd-451b-a136-542653e6f4f9.pem","mimetype":"application/x-pem-file"},"p
ubKeyHash":"joJVEgkWNcXOGzwqvqRUGUI1s5Dz+sm7yE2V6LjAa9A=","crlite_enrolled":false,"id":"100d0005-d64d-4678-9a8a-b4bdf571825a","last_modified":1591199862482},{"schema":1591167070504,"derHash":"Ok7AN5MHig3sFN5w5XvX+wO/Yv8pzuK2FH44ogjXIak=","subject":"CN=Trust Italia Class 1 Consumer Individual Subscriber CA - G3,O=Trust Italia S.p.A.,C=IT","subjectDN":"MHExCzAJBgNVBAYTAklUMRwwGgYDVQQKExNUcnVzdCBJdGFsaWEgUy5wLkEuMUQwQgYDVQQDEztUcnVzdCBJdGFsaWEgQ2xhc3MgMSBDb25zdW1lciBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"e2adf285776a91d6521266dfe60be2a2db10c624e80bf05ae97589ba714509a6","size":1752,"filename":"dfgf335FqF0Y0eTCH64ilFM_xC3YeT00OdPeMai8sc4=.pem","location":"security-state-staging/intermediates/966eaf80-4841-49df-b8f9-750be2fd7f7e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dfgf335FqF0Y0eTCH64ilFM/xC3YeT00OdPeMai8sc4=","crlite_enrolled":false,"id":"2a196fcc-f810-4d55-84e4-93d5649fc1e5","last_modified":1591199862480},{"schema":159116706
8979,"derHash":"vUQgxZKm9/JSromBJOAC8bnP4fJTiGTVazSntN+zH8g=","subject":"CN=Greek Universities Network Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHGMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTcwNQYDVQQDDC5HcmVlayBVbml2ZXJzaXRpZXMgTmV0d29yayBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"3538047cb62ad089be4f013252357132586b290e06995041bb69677e17b8b668","size":2881,"filename":"eClYCfzKv6P76tWqfScdObnNeoNSeykW6trew89MfYM=.pem","location":"security-state-staging/intermediates/b80462a6-6676-4df4-a32c-d62f8671081d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eClYCfzKv6P76tWqfScdObnNeoNSeykW6trew89MfYM=","crlite_enrolled":false,"id":"5432729e-8e88-4b49-8687-b320365e9e8a","last_modified":1591199862477},{"schema":1591167067557,"derHas
h":"/AG1j8eLnFkhF4TC4lvx0BKh4j8zchiEemLrQUXuSrY=","subject":"CN=GeoTrust EV ECC CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGEdlb1RydXN0IEVWIEVDQyBDTiBDQSBHMg==","whitelist":false,"attachment":{"hash":"a71cb7825b1dcf648f03a80a46f1bd37d9455ca249fb68a85c6ecf9a15848e99","size":1370,"filename":"aDb4btQIVH2hsyd4IxUsJGinBpyh-phY6PF4IHasdAw=.pem","location":"security-state-staging/intermediates/c09c55b5-14e7-4603-a7a9-e7c0bc70e59b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aDb4btQIVH2hsyd4IxUsJGinBpyh+phY6PF4IHasdAw=","crlite_enrolled":true,"id":"4efbcf92-bf3d-47eb-a092-4b861635e97f","last_modified":1591199862471},{"schema":1591167058628,"derHash":"99utEui2K4N7p/agHhZymZz69pKWWbgbB/JTV2KB970=","subject":"CN=Microsoft Azure TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMg==","whiteli
st":false,"attachment":{"hash":"58df8d69047ece6fc6c0574d72432af6c16e5891bf2288364d4f01eebe585ad2","size":2276,"filename":"zAwfx2iFcQ5vMOCc9vt-MXLdLl08EquNsOWgDF0hOw8=.pem","location":"security-state-staging/intermediates/db52ffd9-3a42-42ba-8d9c-fc19090d2447.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zAwfx2iFcQ5vMOCc9vt+MXLdLl08EquNsOWgDF0hOw8=","crlite_enrolled":true,"id":"c8857033-8969-438b-9ca1-33b6315bf546","last_modified":1591199862469},{"schema":1591167064529,"derHash":"wCk9W8NXY05tfKK/u3qhGFUz0s4JqgiDPTevWEZhXFY=","subject":"CN=TrustCor OV Email CA - G2 - RSA,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MF0xCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xKDAmBgNVBAMMH1RydXN0Q29yIE9WIEVtYWlsIENBIC0gRzIgLSBSU0E=","whitelist":false,"attachment":{"hash":"27952ee3cf848c1c572a7bc0277c75c118c8dbec11a0224bd318870efa2f642e","size":2385,"filename":"TcTNufQAyMrXUOohYwD5emGgQ5j6I9N3jwzAzPt28sE=.pem","location":"security-state-staging/intermediates/5654
5cc0-b857-4c4f-98ee-c974db77f53e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TcTNufQAyMrXUOohYwD5emGgQ5j6I9N3jwzAzPt28sE=","crlite_enrolled":false,"id":"5186c50e-d721-4e7b-af5f-3331785a2ac5","last_modified":1591199862466},{"schema":1591167061645,"derHash":"nDPLanZZZ1Kgx+UcctSAznh2x3J5Tr7lhB+gcDXm6OA=","subject":"CN=Telenor Norge AS Dealer G2 CA,O=Telenor Norge AS,C=NO","subjectDN":"MFAxCzAJBgNVBAYTAk5PMRkwFwYDVQQKExBUZWxlbm9yIE5vcmdlIEFTMSYwJAYDVQQDEx1UZWxlbm9yIE5vcmdlIEFTIERlYWxlciBHMiBDQQ==","whitelist":false,"attachment":{"hash":"7845072fc6f1b355f9345a6ce52a2438a06f31436f734a5d5b37130bbdb64d31","size":1959,"filename":"9gdYrOp6FaFqRJ5-QJcz3vpuYebgu7hh-Vw15jpzzKk=.pem","location":"security-state-staging/intermediates/074f8517-9c34-4b75-88e0-2c24b553379c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9gdYrOp6FaFqRJ5+QJcz3vpuYebgu7hh+Vw15jpzzKk=","crlite_enrolled":false,"id":"25439fab-5fb0-406f-902f-84a905579e0f","last_modified":1591199862463},{"schema":159116706
3096,"derHash":"LRskT6zq+tlHVbXpmqv3rJHFmdpzv6Rh7uuvtLlptck=","subject":"CN=Panteion Univ. of Social and Political Sciences Client SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHXMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMUgwRgYDVQQDDD9QYW50ZWlvbiBVbml2LiBvZiBTb2NpYWwgYW5kIFBvbGl0aWNhbCBTY2llbmNlcyBDbGllbnQgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"9e41c8f1b7df552a4c991c34ef28ac4b6de98f4abf712a108a103a343b0ee714","size":3048,"filename":"xQvovgfn-eQF_oAgGtY1VdtWF8Cy81x6M6y01IOUqRQ=.pem","location":"security-state-staging/intermediates/803b8ba4-75d3-4b10-9089-3b52e7662628.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xQvovgfn+eQF/oAgGtY1VdtWF8Cy81x6M6y01IOUqRQ=","crlite_enrolled":false,"id":"8213c2b2-aa66-4314-ae1d-26f7b9562096","last_modified":15911
99862460},{"schema":1591167054203,"derHash":"6VKbQo+2c5C8ZFXXm6JDToFsVP5PNZkwy3Cdslb935Q=","subject":"CN=DigiCert High Assurance Trust Service ECC EV CA,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxODA2BgNVBAMTL0RpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIFRydXN0IFNlcnZpY2UgRUNDIEVWIENB","whitelist":false,"attachment":{"hash":"de06436b3a21e829632e0b079103d0155f88adbdbc35e4184178d5e16626e73e","size":1431,"filename":"MMkARzLCDka9T1FV6sAvs-cZUAaL2QbYfVCCeg3D0W8=.pem","location":"security-state-staging/intermediates/e2efbea3-a3f8-4d7b-9645-ba2d190125e6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MMkARzLCDka9T1FV6sAvs+cZUAaL2QbYfVCCeg3D0W8=","crlite_enrolled":false,"id":"a9e0d855-db12-4790-a733-58040361f588","last_modified":1591199862458},{"schema":1591167060249,"derHash":"e2ugsXNlgQElA5XVR2QwN6aCFhVScLybpGs1jDt36Q4=","subject":"CN=Adobe Public Issuing CA,O=Adobe Inc,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZG9iZSBJbmMxIDAeBgNVBAMTF0F
kb2JlIFB1YmxpYyBJc3N1aW5nIENB","whitelist":false,"attachment":{"hash":"9fa10fb4c94ca524acfdaf55d748672b6bdf9af1d3bc554cecef45362e465647","size":1955,"filename":"m7KaH9Z-A0_S4XkUf0qbkb0a7hPwHRz8EHHcRjLCSMA=.pem","location":"security-state-staging/intermediates/3f6f7dda-b7e1-4553-aff4-1f18c36d0f41.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m7KaH9Z+A0/S4XkUf0qbkb0a7hPwHRz8EHHcRjLCSMA=","crlite_enrolled":false,"id":"9e07316e-733c-4699-89c5-e189d67de109","last_modified":1591199862455},{"schema":1591167052726,"derHash":"1YwU+8AQDhHv5yCN1pFpYCVzPheG8acwOwYz4H9mHDk=","subject":"CN=CERTDATA SSL OV ECC CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MHIxCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExNDAyBgNVBAMMK0NFUlREQVRBIFNTTCBPViBFQ0MgQ0EgIFtSdW4gYnkgdGhlIElzc3Vlcl0=","whitelist":false,"attachment":{"hash":"a7ba1f7c3b1be14cda8132b559c02a76768e4908267a62b581190dccbd617fe0","size":1297,"filename":"3fq1AiHgm5wPjt
liqEAe6Hqe_TUKwGTHlpm_w85y2o4=.pem","location":"security-state-staging/intermediates/fa9997a5-72d8-43c8-bb04-befe0fe4ea62.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3fq1AiHgm5wPjtliqEAe6Hqe/TUKwGTHlpm/w85y2o4=","crlite_enrolled":false,"id":"9d1610d0-eec4-4f89-b0f1-2c18a5a5fffa","last_modified":1591199862452},{"schema":1591167055791,"derHash":"hg+OSYT8qqp4yH8HE/IDGBtX17VW/tl5zhTcoB/6SlQ=","subject":"CN=GEANT EV ECC CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEQxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMRowGAYDVQQDExFHRUFOVCBFViBFQ0MgQ0EgNA==","whitelist":false,"attachment":{"hash":"fc2b67c0063115937980d79c3e67247ea70cc6101c5985ad73310d907964164d","size":1264,"filename":"FFXxLheN9s893pVXnMlRnGpl8sSJRMnaghLMByYYI1Y=.pem","location":"security-state-staging/intermediates/ba5698b0-efb9-4bb2-b7c6-0a26fb3752a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FFXxLheN9s893pVXnMlRnGpl8sSJRMnaghLMByYYI1Y=","crlite_enrolled":false,"id":"49c9b36e-598e-45a0-8e4c-a7c
f27e53b9a","last_modified":1591199862444},{"schema":1591167045220,"derHash":"405TXezfAKo3Tn1CiI5lCHTAOuKxW5oONNKJglXXFuA=","subject":"CN=TrustOcean Encryption365 Pro SSL CA,O=TrustOcean Limited,C=US","subjectDN":"MFgxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxLDAqBgNVBAMTI1RydXN0T2NlYW4gRW5jcnlwdGlvbjM2NSBQcm8gU1NMIENB","whitelist":false,"attachment":{"hash":"f786cc89df5476b284f6ebc8706f27d17d706e261be2f501c9fcce7d60c1386d","size":1260,"filename":"b73E5DRCm6VpQzKDNZJF6xWzf2fL62a-r0eJZj5f1_Y=.pem","location":"security-state-staging/intermediates/65f80d0b-45ab-4ac9-b896-274c7239ff7f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"b73E5DRCm6VpQzKDNZJF6xWzf2fL62a+r0eJZj5f1/Y=","crlite_enrolled":false,"id":"63e56db0-43ac-44a1-917f-aa5aaff3b271","last_modified":1591199862441},{"schema":1591167043562,"derHash":"0kGVxh+c2oVizXXpVWUZcJe9dN/AfOLR30FIi2mdxek=","subject":"CN=ZeroSSL ECC EV Secure Site CA,O=ZeroSSL,C=AT","subjectDN":"MEcxCzAJBgNVBAYTAkFUMRAwDgYDVQQKEwdaZXJvU
1NMMSYwJAYDVQQDEx1aZXJvU1NMIEVDQyBFViBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"823e3f2639582c72811e1ddf7900356ac05b194124fd81ee82b5aa37faa06fe4","size":1309,"filename":"A8f81KNlDx2NqB55PbT84Ofjg0xfNreLGekgTvDP594=.pem","location":"security-state-staging/intermediates/ccf60840-a6b7-4d19-9596-d073ce79f2df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"A8f81KNlDx2NqB55PbT84Ofjg0xfNreLGekgTvDP594=","crlite_enrolled":false,"id":"34b2cd0f-9958-4f45-bdb3-24d3ba02ae86","last_modified":1591199862438},{"schema":1591167049789,"derHash":"TV9aea7wkkFf9oHZ+pWPJPv9dNJtP/0VO8YefBucmSA=","subject":"CN=Microsoft Azure TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNQ==","whitelist":false,"attachment":{"hash":"8532a51efeed07390debc1531004aa9806e82d2c1bda5e60b695ce6fe4671366","size":2276,"filename":"4i4h0jN9NROr1xKJI-TQ1Q_ZIfUjPMXtmWUsDR3Pj
iw=.pem","location":"security-state-staging/intermediates/0452fd2e-1ec9-4596-8f27-0f60d31ce83f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4i4h0jN9NROr1xKJI+TQ1Q/ZIfUjPMXtmWUsDR3Pjiw=","crlite_enrolled":true,"id":"cd7edab9-0a83-4d7a-ac8f-b96aa4df559a","last_modified":1591199862435},{"schema":1591167048156,"derHash":"x3xf3ExlXJ3GkMucdvmPrtPD3s7wZMvNctQcWeVYf+s=","subject":"CN=TrustOcean Organization Validation SSL CA,O=TrustOcean Limited,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxMjAwBgNVBAMTKVRydXN0T2NlYW4gT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gU1NMIENB","whitelist":false,"attachment":{"hash":"556a16e9adc4480fdb9e891eaeeed7d9e5985f01350398edeb90bb12a7902658","size":2109,"filename":"iuXy6C6fQ7WIvruSnxEwSvYjFOgeVw4HZdR0x0OFOVE=.pem","location":"security-state-staging/intermediates/c2f7ee4a-a230-40fe-ae6d-7bac146e0fca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iuXy6C6fQ7WIvruSnxEwSvYjFOgeVw4HZdR0x0OFOVE=","crlite_enrolled":false,"id
":"08d30c0e-cd9a-4c3e-b21d-ea273d69191b","last_modified":1591199862432},{"schema":1591167041835,"derHash":"6sATQ3DJ/6v8eutf0DwlFikPrlWFCBxAoI8ZyJq3v1s=","subject":"CN=Sectigo Partners - Client Authentication and Secure Email - ECC,O=Sectigo Limited,C=GB","subjectDN":"MHExCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxSDBGBgNVBAMTP1NlY3RpZ28gUGFydG5lcnMgLSBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIFNlY3VyZSBFbWFpbCAtIEVDQw==","whitelist":false,"attachment":{"hash":"41b0725f1556ca322a9a093945f10ac4a78ac9fd53f4f87424358588af90869e","size":1301,"filename":"3-iHJaeW0w8BOWRucLU59AureWRmw6oFBSFskSOxxFI=.pem","location":"security-state-staging/intermediates/920323a3-e248-43b6-a0ed-449746e19e5c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3+iHJaeW0w8BOWRucLU59AureWRmw6oFBSFskSOxxFI=","crlite_enrolled":false,"id":"8bcfa0b2-e35e-49cd-844d-463a24f7f8b3","last_modified":1591199862430},{"schema":1591167040444,"derHash":"wv6s1nSHjHsMIyWi7O0KMz23eAqG3+w3WBAO/AEBxmU=","subject":"CN=GlobalSig
n Qualified Timestamping ECC CA 2020,O=GlobalSign nv-sa,C=BE","subjectDN":"MHsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIFF1YWxpZmllZCBUaW1lc3RhbXBpbmcgRUNDIENBIDIwMjAxGTAXBgNVBGETEE5UUkJFLTA0NTkxMzQyNTY=","whitelist":false,"attachment":{"hash":"dfd5994848268b7d4c9f0e58d9d33bd62a38c8b8aa02ddff40fc64573747f716","size":1317,"filename":"vQb9MziuYR3JwsWUg7XIa11YjUtOFnw-FWOE5oq95uE=.pem","location":"security-state-staging/intermediates/ea9a711d-d96e-4a8f-ba89-26fdd8430750.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vQb9MziuYR3JwsWUg7XIa11YjUtOFnw+FWOE5oq95uE=","crlite_enrolled":false,"id":"ec8193b6-fea2-4dbb-aac4-1b1be84f8f6b","last_modified":1591199862427},{"schema":1591167046740,"derHash":"J38PyiY+EoVtuqTdCt8EIE9/mM/XLOnJOAfjd+NMiHY=","subject":"CN=GEANT eScience SSL CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEoxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMSAwHgYDVQQDExdHRUFOVCBlU2NpZW5jZSBTU0wgQ0EgNA==","whitelist":false,"att
achment":{"hash":"68075f9cd2cc60ade2eac547fc756af29513e6cfe214c0330fd8e350cd01b052","size":2458,"filename":"aMvT7rta1tsjwjUiL86lNQhPARjlTSPwT-vUCzjJnTM=.pem","location":"security-state-staging/intermediates/b4e71607-9e9f-44c1-bffc-f52f82c8345a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aMvT7rta1tsjwjUiL86lNQhPARjlTSPwT+vUCzjJnTM=","crlite_enrolled":true,"id":"7a3d933b-8c06-4e96-8918-dbe59b8b41b4","last_modified":1591199862424},{"schema":1591167038909,"derHash":"7tCpXn3jylPkpscqhrPxZMDCPjgPj2t5o0nvF4Q0LB8=","subject":"CN=Sectigo SHA-256 DV Secure Server CA 2,O=Sectigo Limited,C=GB","subjectDN":"MFcxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLjAsBgNVBAMTJVNlY3RpZ28gU0hBLTI1NiBEViBTZWN1cmUgU2VydmVyIENBIDI=","whitelist":false,"attachment":{"hash":"8ee56d8ef938ba4af2c0e70e0468c434181b9e82ca18f599691bb7386c8440de","size":1634,"filename":"HPMSsaUyVhFGoL9nU4W2uLB0hGaRXQ5DmhLQh_ivAOI=.pem","location":"security-state-staging/intermediates/2b7ba355-fdd1-40c5-931a-ab2ab809
90db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HPMSsaUyVhFGoL9nU4W2uLB0hGaRXQ5DmhLQh/ivAOI=","crlite_enrolled":false,"id":"892ea545-f970-4099-82a0-cb0796cff322","last_modified":1591199862421},{"schema":1591167037484,"derHash":"K7RwAz1Xd9rC14r2E/HkZXkGvj31tuMx7Hn1zVNNh5s=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 05,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDU=","whitelist":false,"attachment":{"hash":"708973feef9a0edc66b4d44761ffe346c676de8fd48daf43a0b291c9f6e1d8d3","size":1479,"filename":"k09MzmwiRPkPmkpgmUtprMk_uALSVedNLtfOBkCMvXE=.pem","location":"security-state-staging/intermediates/61b61e47-26ee-4791-bd33-bd8d5c78ffbb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k09MzmwiRPkPmkpgmUtprMk/uALSVedNLtfOBkCMvXE=","crlite_enrolled":false,"id":"76be9ace-5a84-46e5-ad9f-1035b065dfd0","last_modified":1591199862419},{"schema":15911670
34523,"derHash":"HjNJzTZqk+We9BUqHkg9rGB2GExdRtTNoA5gk+/J5qM=","subject":"CN=University of West Attica TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHsxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTMwMQYDVQQDDCpVbml2ZXJzaXR5IG9mIFdlc3QgQXR0aWNhIFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"ad55c1ebf554ac88c4ee7ca2a6ac10ede14cc708e9e9241628118eb06a7159ac","size":2820,"filename":"CyajdIEcy4Hr_cxQQqnu0qrnumFkHRMCTTcJDgIK41E=.pem","location":"security-state-staging/intermediates/70d67b10-99b6-4f51-b3b9-3f1e070e7f7d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CyajdIEcy4Hr/cxQQqnu0qrnumFkHRMCTTcJDgIK41E=","crlite_enrolled":false,"id":"5c9fffc4-55de-4707-bf44-0dce68ff0d17","last_modified":1591199862416},{"schema":1591167036082,"derHash":"iDnSt3Z1HeaNMxJJjbtgjAiqT+cnpcMl2masgGTgV9M=","subject":"CN=Sectigo Partners - Code Signing - ECC,O=Sectigo Limited,C=GB","subjectDN":"MF
cxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLjAsBgNVBAMTJVNlY3RpZ28gUGFydG5lcnMgLSBDb2RlIFNpZ25pbmcgLSBFQ0M=","whitelist":false,"attachment":{"hash":"88311f0ab36dc8818db8973c74ff16324387b6be5bd1ec65038a0fbb119eff0d","size":1256,"filename":"Mt57qGD4OmM1FA-J_hFGLzHI5GSYdHW8EafwJr2iBfk=.pem","location":"security-state-staging/intermediates/a19e812e-9cc8-45dd-8903-f7add99df475.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Mt57qGD4OmM1FA+J/hFGLzHI5GSYdHW8EafwJr2iBfk=","crlite_enrolled":false,"id":"763c8ffa-7dda-4f82-8a7f-98b654689f80","last_modified":1591199862406},{"schema":1591167027009,"derHash":"nGJKAXdk/Lo2NYZ5gEp1ys6V8ETwVd/fAlBfOwYBfzQ=","subject":"CN=Sectigo Partners - Server Authentication - ECC,O=Sectigo Limited,C=GB","subjectDN":"MGAxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxNzA1BgNVBAMTLlNlY3RpZ28gUGFydG5lcnMgLSBTZXJ2ZXIgQXV0aGVudGljYXRpb24gLSBFQ0M=","whitelist":false,"attachment":{"hash":"965543ef4688c780b26fe4ee398172e77fae789ccc287dd22f669e408
6c54e64","size":1280,"filename":"_WhZ_JfPDtfaL87jEAix_9CGklMDqSAXqw8H6I5WmaM=.pem","location":"security-state-staging/intermediates/1b383c95-777e-440f-b0ce-bee1a692cb46.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/WhZ/JfPDtfaL87jEAix/9CGklMDqSAXqw8H6I5WmaM=","crlite_enrolled":false,"id":"7e08b5b4-31d8-4e72-8460-b0a5767bdada","last_modified":1591199862400},{"schema":1591167025307,"derHash":"89kW0bcyAfBJ7afll/4KXM1XEaaVj7wLem9/pk96/kc=","subject":"CN=National and Kapodistrian Univ. of Athens Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHVMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMUYwRAYDVQQDDD1OYXRpb25hbCBhbmQgS2Fwb2Rpc3RyaWFuIFVuaXYuIG9mIEF0aGVucyBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"f5375566c23535064bf73fff7c1447dfed
381f69baaccfb60278db4b1df08068","size":2991,"filename":"po_dRQH7IGS9y25dkTis42QhTrBTBikFiq3x34kGvyg=.pem","location":"security-state-staging/intermediates/1604ec06-c741-4dcf-99b5-fb4336be8907.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"po/dRQH7IGS9y25dkTis42QhTrBTBikFiq3x34kGvyg=","crlite_enrolled":false,"id":"209b5f61-f0d0-43c6-b630-d4bc29799afb","last_modified":1591199862397},{"schema":1591167022088,"derHash":"hGT/6ymjrRfp1vRuSMXHJ8nXho2sAmK/JW4gs8+1WII=","subject":"CN=Sectigo SHA-256 EV Secure Server CA 2,O=Sectigo Limited,C=GB","subjectDN":"MFcxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLjAsBgNVBAMTJVNlY3RpZ28gU0hBLTI1NiBFViBTZWN1cmUgU2VydmVyIENBIDI=","whitelist":false,"attachment":{"hash":"49f7bd3efa4fcc0722a6f4605271d5fe0a5c1083d9dcbfbecd0ebf94310ad26e","size":1674,"filename":"ZFA27ke4TClASV6I0jW87lSWFo_b8drlh9D36Vzid1s=.pem","location":"security-state-staging/intermediates/0ae99740-9844-4cbd-9b4d-19f9519a49a0.pem","mimetype":"application/x-pem-file"},"pub
KeyHash":"ZFA27ke4TClASV6I0jW87lSWFo/b8drlh9D36Vzid1s=","crlite_enrolled":true,"id":"29f50ad4-1ef9-49cc-a491-3f8d8fdc0a06","last_modified":1591199862394},{"schema":1591167030041,"derHash":"S3BM2oDiRNQYaETw7yQrcMSxq02NiWFWjyjhLIl4TyM=","subject":"CN=Baidu\\, Inc. OV CA,O=Baidu\\, Inc.,C=CN","subjectDN":"MD8xCzAJBgNVBAYTAkNOMRQwEgYDVQQKEwtCYWlkdSwgSW5jLjEaMBgGA1UEAxMRQmFpZHUsIEluYy4gT1YgQ0E=","whitelist":false,"attachment":{"hash":"6ea162d68f2654682d4ebd9366bb52aa672edd57c7ae49ba447b5de53dccf6cc","size":2056,"filename":"YhO9UIj-GsxiTpBJJHAy3KMI3EVCiDbs7p2O02LNtXc=.pem","location":"security-state-staging/intermediates/fce8e914-285b-4edc-a752-7fac0e7445c8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YhO9UIj+GsxiTpBJJHAy3KMI3EVCiDbs7p2O02LNtXc=","crlite_enrolled":true,"id":"ee7f153f-966e-43f0-8e29-7981b781986a","last_modified":1591199862392},{"schema":1591167028565,"derHash":"FGwc+bt9IxBg0Pq9mG6YUPAFAfWjt7asQsUbOMjiKiM=","subject":"CN=Inst. of Accelerating Systems and Applicat
ions TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGQMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTFIMEYGA1UEAww/SW5zdC4gb2YgQWNjZWxlcmF0aW5nIFN5c3RlbXMgYW5kIEFwcGxpY2F0aW9ucyBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"3a570f3ca5ad4b439d7c8d33c6002d18626e99d07f0bf1e60eb24b7a1a11cd75","size":2946,"filename":"D7Xfk-7YUggnXZisbV8HX7kcYYgzDkMy57Y3cC1Fqqs=.pem","location":"security-state-staging/intermediates/ec795ad6-cbbb-4bad-9e87-bc160120bf58.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D7Xfk+7YUggnXZisbV8HX7kcYYgzDkMy57Y3cC1Fqqs=","crlite_enrolled":false,"id":"d42142d3-081a-4ea8-8b46-ca780b098b0c","last_modified":1591199862389},{"schema":1591167015993,"derHash":"g8xQ4V0WmCSuvQvsv/r+c2vFWuIRvD7mM4+0c7kBWgc=","subject":"CN=TrustCor OV SSL CA - G2 - RSA,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFsxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIu
TC4xJjAkBgNVBAMMHVRydXN0Q29yIE9WIFNTTCBDQSAtIEcyIC0gUlNB","whitelist":false,"attachment":{"hash":"0dc01364783a9271db505d8e1e3e6043cf875754d6bd36c6945e11fb53e02604","size":2385,"filename":"Mj3vTN7j1fDT_WCo762M8I9WedMYrlbBSvj8E4HDtuA=.pem","location":"security-state-staging/intermediates/173a1a2d-4f59-4194-99eb-916147b82f27.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Mj3vTN7j1fDT/WCo762M8I9WedMYrlbBSvj8E4HDtuA=","crlite_enrolled":false,"id":"38aa6198-2c05-4917-88c6-c6a161997f08","last_modified":1591199862386},{"schema":1591167018876,"derHash":"CDeZ6LK5AW5EcC6/m/NpziU/4fvrZQ5d8Q70TYe/O64=","subject":"CN=GEANT OV ECC CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEQxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMRowGAYDVQQDExFHRUFOVCBPViBFQ0MgQ0EgNA==","whitelist":false,"attachment":{"hash":"8192abe4c9a117dee4774f8edfcc12a8fb4c01e2f5d4fb1927f882b61391467b","size":1264,"filename":"nMY4vuFVgfkmWBODcb-TSGhs4sivegdluGYPGdmc-ac=.pem","location":"security-state-staging/intermed
iates/8ae9c209-ac28-4acd-9b6c-93323d2ba3cb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nMY4vuFVgfkmWBODcb+TSGhs4sivegdluGYPGdmc+ac=","crlite_enrolled":true,"id":"e25e445b-40bc-4a3d-984e-f19238697009","last_modified":1591199862381},{"schema":1591167011546,"derHash":"ugMS97cva2S0zO40tfYoz2Wh87nxa43+etqQxU5HWhw=","subject":"CN=HARICA QWAC ECC SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),L=Athens,C=GR","subjectDN":"MIHBMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMSswKQYDVQQKDCJHcmVlayBVbml2ZXJzaXRpZXMgTmV0d29yayAoR1VuZXQpMRgwFgYDVQRhDA9WQVRHUi0wOTkwMjgyMjAxNzA1BgNVBAsMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ0ExITAfBgNVBAMMGEhBUklDQSBRV0FDIEVDQyBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"3132a7793ecd22890d90a9b668b15a5bbb58368a0dde81dd5ab7909a6e210082","size":1435,"filename":"My5yT8M-8RZqS9wIe_1GKdv6BmFJetmYV8QXy2UQNVQ=.pem","location":"security-state-staging/intermediates/8c36ec80-60de-4cb2-8067-
27d3459d9272.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"My5yT8M+8RZqS9wIe/1GKdv6BmFJetmYV8QXy2UQNVQ=","crlite_enrolled":false,"id":"e5adb388-5770-4b2d-ab78-9714ddd085c0","last_modified":1591199862378},{"schema":1591167009812,"derHash":"sdKb4BPPJ5gqqraUeFo+n1oWmmgvi404Z3aUZwxCgog=","subject":"CN=Volvo Car Corporation CA,O=Volvo Car Corporation AB,C=SE","subjectDN":"MFMxCzAJBgNVBAYTAlNFMSEwHwYDVQQKExhWb2x2byBDYXIgQ29ycG9yYXRpb24gQUIxITAfBgNVBAMTGFZvbHZvIENhciBDb3Jwb3JhdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"a994d8a357cf9caa3a52dbedf3fa4253d4cae99e9da27e7249d2abb02c372362","size":1975,"filename":"UBZHXRQOIZeD5Wykj4uI2nNLlxdnTll9SO7dn-ejVYM=.pem","location":"security-state-staging/intermediates/398e9a7c-0468-4ca8-9ab4-9ea3b832ebe9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UBZHXRQOIZeD5Wykj4uI2nNLlxdnTll9SO7dn+ejVYM=","crlite_enrolled":false,"id":"8bf17c1a-a6d9-422b-adb9-93502ed40667","last_modified":1591199862375},{"schema":1591167017476,"derHash
":"NFjH94fDD+mvPlinq2h3sZWat8wsRYGwcL3TjDm4Svc=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDE=","whitelist":false,"attachment":{"hash":"77d060f6db6e51cfdc717d3ed978a4be03a2a9b64b955fbecb64b0ccd4ced790","size":1479,"filename":"OZOx9JJC3JsSDSjFX2iEA3_ED6gCha3L1ZrOeRNoyx8=.pem","location":"security-state-staging/intermediates/6def578c-3064-4137-b8df-f2747fbfab93.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OZOx9JJC3JsSDSjFX2iEA3/ED6gCha3L1ZrOeRNoyx8=","crlite_enrolled":true,"id":"4aac2f1d-7301-4a72-b32f-844df8079dc0","last_modified":1591199862373},{"schema":1591167014412,"derHash":"fogrHMVDm3+5WgWUPFqPQNrnWq27a2JMVe3ZRiTvoOM=","subject":"CN=ZIPAIR-Public-CA,O=ZIPAIR Tokyo\\, K.K.,C=JP","subjectDN":"MEUxCzAJBgNVBAYTAkpQMRswGQYDVQQKExJaSVBBSVIgVG9reW8sIEsuSy4xGTAXBgNVBAMTEFpJUEFJUi1QdWJsaWMtQ0E=","whit
elist":false,"attachment":{"hash":"2c984e2131fa368ef2b5aa3b3e90a0922afa4740aabe97b5cb2019ab14830d37","size":1955,"filename":"PIUGed6DkU3CojfvzNyd5kHY3JiTqukpDDfDBatgs4g=.pem","location":"security-state-staging/intermediates/54e74715-f012-4611-b2a5-b2147fcad5bc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PIUGed6DkU3CojfvzNyd5kHY3JiTqukpDDfDBatgs4g=","crlite_enrolled":false,"id":"169fb9d2-9eda-4150-b791-e966bdcafdda","last_modified":1591199862370},{"schema":1591167008071,"derHash":"U2ElE5cLnyZMpLzDv9hNvF/ndOPGKVs+u5nrnXQGnio=","subject":"CN=COMODO ECC Certification Authority,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGFMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDErMCkGA1UEAxMiQ09NT0RPIEVDQyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"dc36e4c286a9069d729c789a17603fc5652298f8bf2def86e601936c8873ae90","size":1382,"filename":"58qRu_uxh4gFezqAcE
RupSkRYBlBAvfcw7mEjGPLnNU=.pem","location":"security-state-staging/intermediates/6652ce0d-3c54-446e-ace4-ab3bf3abd2a6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"58qRu/uxh4gFezqAcERupSkRYBlBAvfcw7mEjGPLnNU=","crlite_enrolled":false,"id":"8b11a693-e60e-4d6d-80ee-c38a1d65c423","last_modified":1591199862367},{"schema":1591167006644,"derHash":"zhW4jsoyo3HQtRs7BHWQVdao/ww9Gg1gSI3zVtwFDlU=","subject":"CN=STMicroelectronics Public User CA1,O=STMicroelectronics International N.V.,C=CH","subjectDN":"MGoxCzAJBgNVBAYTAkNIMS4wLAYDVQQKEyVTVE1pY3JvZWxlY3Ryb25pY3MgSW50ZXJuYXRpb25hbCBOLlYuMSswKQYDVQQDEyJTVE1pY3JvZWxlY3Ryb25pY3MgUHVibGljIFVzZXIgQ0Ex","whitelist":false,"attachment":{"hash":"18f50a255b00546467dd0cb80409b58291d5ab408250b7ea98a4d3dd53f0f322","size":2008,"filename":"gx_o4mBjRjGO5e2ioaSkT_ZBwzD0O9B-6SNRvTUnqMk=.pem","location":"security-state-staging/intermediates/648ed62b-e5f8-42d4-83ee-7ca6d40b6d44.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gx/o4mBjRjGO5e2ioaSkT
/ZBwzD0O9B+6SNRvTUnqMk=","crlite_enrolled":false,"id":"540cc7e9-1df2-416a-96b6-d6176d4ee3ed","last_modified":1591199862364},{"schema":1591167023478,"derHash":"AMDLqVy/4eJwgUJ18ytQXW5ZFsK22mf69N0wnubobL4=","subject":"CN=DigiCert Secure Site ECC CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MFAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxKjAoBgNVBAMTIURpZ2lDZXJ0IFNlY3VyZSBTaXRlIEVDQyBDTiBDQSBHMw==","whitelist":false,"attachment":{"hash":"a51772df4a2b835008c2a8c8dc0deb86a5aaec98e9697ee63a20924af248b9b2","size":1337,"filename":"mpDMzjSYAgr-a1VhfWcSLkk3xG29zzCRDJISnBodNVg=.pem","location":"security-state-staging/intermediates/f09648f8-e528-485c-9101-53303017f3fb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mpDMzjSYAgr+a1VhfWcSLkk3xG29zzCRDJISnBodNVg=","crlite_enrolled":false,"id":"2e3dc91b-19d5-4380-b3e9-3b54bf59c028","last_modified":1591199862361},{"schema":1591167003672,"derHash":"qv3O5Xk7XPS/LQxfYELYpCK8wzs5Zaxig9JzzGm0g3U=","subject":"CN=Sectigo SHA-256 EV Secure Server C
A,O=Sectigo Limited,C=GB","subjectDN":"MFUxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLDAqBgNVBAMTI1NlY3RpZ28gU0hBLTI1NiBFViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"bb0c7ed52a4ba2392ff048a5246e2367101f04ffd385b39e3f25798fd40060a7","size":1654,"filename":"KlGkFBm4cI6bwYi3-GIwgmgYzH3wAO3Gtlqk0GMInns=.pem","location":"security-state-staging/intermediates/7b9ca479-5606-4a77-b93a-fe3bb5a328c6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KlGkFBm4cI6bwYi3+GIwgmgYzH3wAO3Gtlqk0GMInns=","crlite_enrolled":false,"id":"8f019901-9110-45b1-a5f0-88464c331fdf","last_modified":1591199862359},{"schema":1591166999172,"derHash":"fTW/BMhXKCtCLoUeqKYit10uzLq2XVumJZjB2koR1QI=","subject":"CN=University of West Attica Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHFMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQ
QLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTYwNAYDVQQDDC1Vbml2ZXJzaXR5IG9mIFdlc3QgQXR0aWNhIENsaWVudCBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"e76cfc440a5e991448c5b38f99766a4faa2a624e64bf18924a3a70f16a63e272","size":2901,"filename":"Bm78D1XrPXTGXm5_bdFOIATkxbrsQopzy-GvKlFzrUk=.pem","location":"security-state-staging/intermediates/6adea3d9-6cbe-4104-beb4-08ef22d8c125.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Bm78D1XrPXTGXm5/bdFOIATkxbrsQopzy+GvKlFzrUk=","crlite_enrolled":false,"id":"6eb82243-bae6-4111-a042-bcbbe5d9dd18","last_modified":1591199862356},{"schema":1591167012948,"derHash":"tBpIZPDU7E6mMtAbPn8jJ3XlXiKzv9hkLuEpIoDQ5Ho=","subject":"CN=DigiCert Basic EV RSA CN CA G2,O=DigiCert Inc,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IEJhc2ljIEVWIFJTQSBDTiBDQSBHMg==","whitelist":false,"attachment":{"hash":"d2c3c0eb28e66976ac4acda4193e4e6b8892fa07ec37f9932f19408c824dc0a2","size":165
4,"filename":"M8wsUw9qVjgbOPT0Gb0ZignTvgWTwtAotFBG4daZQ1w=.pem","location":"security-state-staging/intermediates/aae99adb-feec-4ec3-b8f8-06e4b7cc8071.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M8wsUw9qVjgbOPT0Gb0ZignTvgWTwtAotFBG4daZQ1w=","crlite_enrolled":true,"id":"1a6503c7-0f5c-4cde-8e28-452c972f857e","last_modified":1591199862353},{"schema":1591167002071,"derHash":"SS7uizqm6sCMK3ipdvEz5+I6FDkhCAfcTHNPk1qvpbo=","subject":"CN=CERTDATA SMIME OV CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MHAxCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExMjAwBgNVBAMMKUNFUlREQVRBIFNNSU1FIE9WIENBICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"hash":"98241269a4b1f56f2d27a325260ce43c94609dbfaf15d3cede526f6777068c39","size":2117,"filename":"Dr3UcttDQ-gWx98s4F3mRweUcI5P3LlsRG88w3HyeDY=.pem","location":"security-state-staging/intermediates/c0410e24-a6b4-4f3e-b115-5cc80074fda2.pem","mimetype":"application/x-p
em-file"},"pubKeyHash":"Dr3UcttDQ+gWx98s4F3mRweUcI5P3LlsRG88w3HyeDY=","crlite_enrolled":false,"id":"b03a064b-a5c5-43d1-ab97-33e8f885f4a7","last_modified":1591199862351},{"schema":1591166994812,"derHash":"k+M699owMFMNCQycVXYsrefq6UP4NDSdEFepDrZ/MGs=","subject":"CN=DigiCert QV TLS ICA G1,O=DigiCert\\, Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRcwFQYDVQQKDA5EaWdpQ2VydCwgSW5jLjEfMB0GA1UEAwwWRGlnaUNlcnQgUVYgVExTIElDQSBHMQ==","whitelist":false,"attachment":{"hash":"e53ef7db1684caaae756089b951bc6e4365a4f5c50235345441db0a95fe9771c","size":1943,"filename":"z2OteA0mfCO56LKn5Y19lFMNUGHucFGGWmVD8x0rpLU=.pem","location":"security-state-staging/intermediates/04030cb6-4ee3-4cec-92bb-45022fc5c066.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z2OteA0mfCO56LKn5Y19lFMNUGHucFGGWmVD8x0rpLU=","crlite_enrolled":false,"id":"e117a5f6-6353-4757-b12d-27c470add07c","last_modified":1591199862348},{"schema":1591166996250,"derHash":"DLZoT2AcQW+ZKolAmRSjKgwgmXFodfX3jsDEaxtXCZw=","subject":"CN=Universi
ty of Western Macedonia Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHLMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTwwOgYDVQQDDDNVbml2ZXJzaXR5IG9mIFdlc3Rlcm4gTWFjZWRvbmlhIENsaWVudCBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"980754593a22fa62c9411e8446cb7058f9764009306b6036fb1346607ad0d57a","size":2926,"filename":"pe7vO9l5Xa6m3aQk0-_tXQkCapBdsBH-eRONUxuj8co=.pem","location":"security-state-staging/intermediates/1b7dc9d7-f2ed-44cb-a349-acd5e1892a99.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pe7vO9l5Xa6m3aQk0+/tXQkCapBdsBH+eRONUxuj8co=","crlite_enrolled":false,"id":"53f37f97-31b5-44e3-85e5-e6ffef357ebd","last_modified":1591199862340},{"schema":1591166987528,"derHash":"ysBfTwUIEJkybc8nxNlwqKPqkU5nkq2swQSWEcntQ7o=","subject":"CN=SECOM P
assport for Member PUB CodeSigning CA G1,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGaMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMTgwNgYDVQQDEy9TRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDb2RlU2lnbmluZyBDQSBHMQ==","whitelist":false,"attachment":{"hash":"88cb4e998412b8161dd4cce63fae57821221160429b49ae302868eca99d858e1","size":2211,"filename":"svXZ_or9Iyq1IFvQhPesIt1V12hnn6Emvsxku1znTIQ=.pem","location":"security-state-staging/intermediates/b9f92943-09e8-4e6d-b04f-31095d30490d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"svXZ/or9Iyq1IFvQhPesIt1V12hnn6Emvsxku1znTIQ=","crlite_enrolled":false,"id":"cd8685fc-3e6f-4bb0-8774-0ae8d85693c5","last_modified":1591199862334},{"schema":1591166984645,"derHash":"l8S0QxYFXyalKh9mTOOFgAqWSoVSyZ0ryv1hjm2AdKA=","subject":"CN=DigiCert Basic ECC CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRUwEwYDV
QQKEwxEaWdpQ2VydCBJbmMxJDAiBgNVBAMTG0RpZ2lDZXJ0IEJhc2ljIEVDQyBDTiBDQSBHMg==","whitelist":false,"attachment":{"hash":"212fb078da2ffbb3ac1149f0dbd37bafc1c192f15595649f27ba9a328c516a96","size":1382,"filename":"Mg4fdox_AdxNXF8FVxl956AK4z_M3V3fNH5JYxAVfu4=.pem","location":"security-state-staging/intermediates/b674bdb2-2b94-4918-8068-2c0bcb83439d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Mg4fdox/AdxNXF8FVxl956AK4z/M3V3fNH5JYxAVfu4=","crlite_enrolled":false,"id":"0c53b0b5-57c7-4119-9ba9-b6a454b96cfd","last_modified":1591199862328},{"schema":1591166993298,"derHash":"+4YtCEkljX2WtqKwFY0IFCJy5NPKglv/w2MF9dKBFsU=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 02,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDI=","whitelist":false,"attachment":{"hash":"089f758bacd904da828169799bc711fcbeb3ec968700dd5a8e37334f30a724e3","size":1479,"filename":"OhdUJ-wrpPRtpX53t
kyqVLKQoNpdCCWve8MQQaQDQ2A=.pem","location":"security-state-staging/intermediates/ef80ac11-e55c-4e76-90b7-55a5776cb672.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OhdUJ+wrpPRtpX53tkyqVLKQoNpdCCWve8MQQaQDQ2A=","crlite_enrolled":false,"id":"747de98b-4252-4064-b892-7ad013087eee","last_modified":1591199862326},{"schema":1591166986072,"derHash":"N4NPpepA+/e2EZaVWWLhygVYhyQ15CBmU9P2IN2OmI4=","subject":"CN=GEANT OV RSA CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEQxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMRowGAYDVQQDExFHRUFOVCBPViBSU0EgQ0EgNA==","whitelist":false,"attachment":{"hash":"18b4437cd205bd9ac9702220d5adb3aa3cbabf10cec7c537606362b8d30ed943","size":2450,"filename":"j0qRK9S0oUba9b4ttZdKp42Q4T2J8S4FFKPNG5FTFVA=.pem","location":"security-state-staging/intermediates/cc610264-2385-48c0-8360-41da294451ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"j0qRK9S0oUba9b4ttZdKp42Q4T2J8S4FFKPNG5FTFVA=","crlite_enrolled":true,"id":"91ec81f9-4c89-4c52-bf16-828510b
256ac","last_modified":1591199862323},{"schema":1591166981675,"derHash":"9gbY3rJ8BAHzTntqN8jipR242gJr5YoH6FS2ht50xpo=","subject":"CN=KICA RSA DV CA,O=KICA,C=KR","subjectDN":"MDUxCzAJBgNVBAYTAktSMQ0wCwYDVQQKEwRLSUNBMRcwFQYDVQQDEw5LSUNBIFJTQSBEViBDQQ==","whitelist":false,"attachment":{"hash":"318379d0564ebe89aa14dff5f62506a9553f6d9d680f10e82a54fa192e67f398","size":1569,"filename":"cK05Ok8jo8SXlxRdWcmPHjPUXO0-KqZKDWAQhEkCcCs=.pem","location":"security-state-staging/intermediates/d52fd294-49a6-40bb-a05a-5fdd485b772d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cK05Ok8jo8SXlxRdWcmPHjPUXO0+KqZKDWAQhEkCcCs=","crlite_enrolled":false,"id":"d1256819-e772-4787-a82e-3e8aaeb2120a","last_modified":1591199862320},{"schema":1591166988974,"derHash":"b+O0p6moUlWcHffqQH+vPZvxdvQOUaFF1XaQ+ih8BWs=","subject":"CN=Trust Italia Class 2 Consumer Individual Subscriber CA - G3,O=Trust Italia S.p.A.,C=IT","subjectDN":"MHExCzAJBgNVBAYTAklUMRwwGgYDVQQKExNUcnVzdCBJdGFsaWEgUy5wLkEuMUQwQgYDVQQDEztUcnVzdC
BJdGFsaWEgQ2xhc3MgMiBDb25zdW1lciBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"7b226066c603caaf929b3d86c889809d734dce014b67e674ccd4a93d032dff0f","size":1752,"filename":"Y8cllDVPXsCqMnw5qEva_MDC_VRf4wx4J3MjppPCdmY=.pem","location":"security-state-staging/intermediates/0df5e9cd-f031-4578-a6e7-a9ffc40ef37b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y8cllDVPXsCqMnw5qEva/MDC/VRf4wx4J3MjppPCdmY=","crlite_enrolled":false,"id":"ba658967-ce3c-4045-b431-b94346eed3b3","last_modified":1591199862314},{"schema":1591166977096,"derHash":"l6cYCCt47nSAl5shFtS6AhXGGqpSC0bKa5wqs3j0CCE=","subject":"CN=Sectigo SHA-256 OV Secure Server CA,O=Sectigo Limited,C=GB","subjectDN":"MFUxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLDAqBgNVBAMTI1NlY3RpZ28gU0hBLTI1NiBPViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"7e3339701c1e2d499ba3def9492001c41adc810c4a458724657109305f3cec89","size":1613,"filename":"318hNJIiS7rMUgV2mjh-LHcZUnFNjtl4to5OuT
2nr4s=.pem","location":"security-state-staging/intermediates/6f711398-7de9-46d1-bae2-5455d21b7f77.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"318hNJIiS7rMUgV2mjh+LHcZUnFNjtl4to5OuT2nr4s=","crlite_enrolled":false,"id":"59c27eb3-4715-484a-82f5-7afdcdc2eedb","last_modified":1591199862306},{"schema":1591166972688,"derHash":"4cSwtb6SRx7sKI2yquyA++Bl+66MmppXaY172J8wcDE=","subject":"CN=CERTDATA SSL EV ECC CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MHIxCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExNDAyBgNVBAMMK0NFUlREQVRBIFNTTCBFViBFQ0MgQ0EgIFtSdW4gYnkgdGhlIElzc3Vlcl0=","whitelist":false,"attachment":{"hash":"088b10c1c11e8d18ab606970a0a1d199bee8b60e73f3e3ace0f39fb2a23ad934","size":1325,"filename":"9vCfWQvK73Fpm-vFHRSFb1GMEe-jrHgkRGYDgnPa5M0=.pem","location":"security-state-staging/intermediates/64a98518-89e2-4dff-904a-5f9b145dff93.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9vCfWQvK73Fpm+vFHRSFb
1GMEe+jrHgkRGYDgnPa5M0=","crlite_enrolled":false,"id":"0971425c-d185-4d5e-bde8-ffbc73ce3ff6","last_modified":1591199862300},{"schema":1591166980064,"derHash":"nDXokHtUmiYAKUKnkY4y4URQP+NCJhsH2Cuw1J1z2RI=","subject":"CN=Trust Provider B.V. TLS ECC EV CA G1,O=Trust Provider B.V.,C=NL","subjectDN":"MFoxCzAJBgNVBAYTAk5MMRwwGgYDVQQKExNUcnVzdCBQcm92aWRlciBCLlYuMS0wKwYDVQQDEyRUcnVzdCBQcm92aWRlciBCLlYuIFRMUyBFQ0MgRVYgQ0EgRzE=","whitelist":false,"attachment":{"hash":"953d2f55cb4e36af74de0869d7a372e01732610473e423b3b655c9de264a2efd","size":1297,"filename":"lbgvzVAS_HD1uhWtKd_pFMrEGQXAJsWzN-B8qi3z2Jk=.pem","location":"security-state-staging/intermediates/9b32bfa2-9970-42cc-94f9-296198748c61.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lbgvzVAS/HD1uhWtKd/pFMrEGQXAJsWzN+B8qi3z2Jk=","crlite_enrolled":false,"id":"3b26ac86-1633-45de-ac90-e6202efc1efe","last_modified":1591199862298},{"schema":1591166969828,"derHash":"6keT4uuBTUMmH4Borv3ng7g358AhrBnI6bCFUfLWyD8=","subject":"CN=University o
f the Peloponnese Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHJMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTowOAYDVQQDDDFVbml2ZXJzaXR5IG9mIHRoZSBQZWxvcG9ubmVzZSBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"e434a384ec70a2f55224b8dba36988a5cc832b8efb47eff89c3e75c99a16d366","size":3897,"filename":"5FgD1hywYOFqq6q8GjfE0VbAd_BXMtIzKXSTe5rs_jU=.pem","location":"security-state-staging/intermediates/3c978eca-7a9d-4ea7-91c6-2b91b0add092.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5FgD1hywYOFqq6q8GjfE0VbAd/BXMtIzKXSTe5rs/jU=","crlite_enrolled":false,"id":"6efe66d3-a1a9-44c7-b6fb-84fed7ca0d86","last_modified":1591199862295},{"schema":1591166975559,"derHash":"ytA6WE5YU5uJGS7EnOp6bY7XJCrV3N+D+W0IfwnyMts=","subject":"CN=GEANT eScience SS
L ECC CA 4,O=GEANT Vereniging,C=NL","subjectDN":"ME4xCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMSQwIgYDVQQDExtHRUFOVCBlU2NpZW5jZSBTU0wgRUNDIENBIDQ=","whitelist":false,"attachment":{"hash":"7db15ec19aae6dfd33627c70072ae0be041ec482c68931ac550f8e7ecbe82a38","size":1276,"filename":"nzYOlulDufoKXDgcAhC63BnT5t74_zG2ZFweTlq2pTA=.pem","location":"security-state-staging/intermediates/82fcc086-5e5e-43f4-b969-d11903a233b2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nzYOlulDufoKXDgcAhC63BnT5t74/zG2ZFweTlq2pTA=","crlite_enrolled":false,"id":"3ae9678b-4310-42e4-8c4b-a2bd36359c71","last_modified":1591199862292},{"schema":1591166971277,"derHash":"MJ5sgAPP4bmr/d+86sK/24ftkniIl2Pk2MBvZgQGAfs=","subject":"CN=TrustOcean Organization Validation Pro SSL CA,O=TrustOcean Limited,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxNjA0BgNVBAMTLVRydXN0T2NlYW4gT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gUHJvIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"07bddd64aebe
dac19bab91ba8353765dd92a8b9a4f03b70b0a65f48dd0852316","size":1276,"filename":"wO_TPO2pacd9S4TXCA6ZK5sbowZLU3pvj1j4lewK054=.pem","location":"security-state-staging/intermediates/fadb40d2-243a-4c13-b44e-88de44fe0e39.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wO/TPO2pacd9S4TXCA6ZK5sbowZLU3pvj1j4lewK054=","crlite_enrolled":false,"id":"2f68d515-67c7-4d03-b155-933ce48d47a6","last_modified":1591199862289},{"schema":1591166966944,"derHash":"peSmK2AQBtwX5KyvSXd3v9fS8+Um/HDKHyIJTIyzkWY=","subject":"CN=Microsoft Azure ECC TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLjAsBgNVBAMTJU1pY3Jvc29mdCBBenVyZSBFQ0MgVExTIElzc3VpbmcgQ0EgMDY=","whitelist":false,"attachment":{"hash":"7ddf736675486e01c80cd307d0f3193f2bbd4866fbd4cf47e6f478fe688f46a6","size":1479,"filename":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f_fOuKrsNiaSdA=.pem","location":"security-state-staging/intermediates/43b64ec8-51d9-48a3-8273-22a78716681e.pem","mime
type":"application/x-pem-file"},"pubKeyHash":"yBjnrcmcUp2nylDRWnQvSPRspmhm1f/fOuKrsNiaSdA=","crlite_enrolled":false,"id":"f942e88e-4d39-4260-8629-7493a5de205f","last_modified":1591199862287},{"schema":1591166965541,"derHash":"vEicbcK94lP1hto0E01mQLi1g6MSCJzhCTPEvAP8XzM=","subject":"CN=University of Piraeus Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHBMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTIwMAYDVQQDDClVbml2ZXJzaXR5IG9mIFBpcmFldXMgQ2xpZW50IFJTQSBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"0714cf4a610f08f71ee755e1a2bc9a6125e97457fc94bd11adbe1fbf13e199bc","size":2881,"filename":"aEyGET6vMUZ78LzXlMwp7zrJc54FqQbkEpltCsA0Ym0=.pem","location":"security-state-staging/intermediates/dbf2652a-44f6-4622-99f7-5a0260fb6902.pem","mimetype":"application/x-
pem-file"},"pubKeyHash":"aEyGET6vMUZ78LzXlMwp7zrJc54FqQbkEpltCsA0Ym0=","crlite_enrolled":false,"id":"66be0711-b86b-410c-ba66-83267576a61b","last_modified":1591199862281},{"schema":1591166956588,"derHash":"xCTcOtYm1EP8rqlxA8tki552MryM2TyW2rsdYFk3IR0=","subject":"CN=Trust Italia Class 2 Managed PKI Individual Subscriber CA - G3,O=Trust Italia S.p.A.,C=IT","subjectDN":"MHQxCzAJBgNVBAYTAklUMRwwGgYDVQQKExNUcnVzdCBJdGFsaWEgUy5wLkEuMUcwRQYDVQQDEz5UcnVzdCBJdGFsaWEgQ2xhc3MgMiBNYW5hZ2VkIFBLSSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"2b320fdd4d82aab2b8852ba0e230e7f6687512ad7a4d5bb5db260f796b144559","size":1756,"filename":"Y24lFs1PJyWMpmHV04a28-0WEzBV7ZwjGI-b6o_a1xE=.pem","location":"security-state-staging/intermediates/2607592c-0c94-43f5-88a4-9642f57c2771.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y24lFs1PJyWMpmHV04a28+0WEzBV7ZwjGI+b6o/a1xE=","crlite_enrolled":false,"id":"1b18f8e1-bb52-4c71-a2b4-dd715bd30d34","last_modified":1591199862270}
,{"schema":1591166959669,"derHash":"e5d410LenRGp6AKurLE9W3D5CrT/fGPEEr7vQgJQElA=","subject":"CN=TrustOcean Encryption365 SSL CA,O=TrustOcean Limited,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxKDAmBgNVBAMTH1RydXN0T2NlYW4gRW5jcnlwdGlvbjM2NSBTU0wgQ0E=","whitelist":false,"attachment":{"hash":"13a6ab9380accd50f6b136c0959380987299900d1e88f93608d04d9164ba247d","size":2093,"filename":"SQofq62FvYueQ205OJiQThWVUH_MQwaHQWw2twlwTDo=.pem","location":"security-state-staging/intermediates/fe167bbc-49ae-4867-b511-147e23b615bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SQofq62FvYueQ205OJiQThWVUH/MQwaHQWw2twlwTDo=","crlite_enrolled":false,"id":"958e59d8-df82-40f3-8891-c1afbc81139d","last_modified":1591199862267},{"schema":1591166958294,"derHash":"CE7KcKm0Dk4VY+NXdrcW5BCpcrsn7VHCSMSNMkL6ja8=","subject":"CN=HEAL-LINK Hellenic Academic Libraries Link Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet)
,C=GR","subjectDN":"MIHWMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMUcwRQYDVQQDDD5IRUFMLUxJTksgSGVsbGVuaWMgQWNhZGVtaWMgTGlicmFyaWVzIExpbmsgQ2xpZW50IFJTQSBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"a6f0308fffdec71204189a96efafbbe956e995e60418265f274c6bd2476b8c78","size":3031,"filename":"_Kft_K_873z0mlP2VRjp4LH9H_mcuLMh9d5dMp190iM=.pem","location":"security-state-staging/intermediates/e9daf701-b37c-4436-a783-4b2fd35b7700.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/Kft/K/873z0mlP2VRjp4LH9H/mcuLMh9d5dMp190iM=","crlite_enrolled":false,"id":"017d1e6a-3d57-4f28-bde8-d93e1818bf31","last_modified":1591199862264},{"schema":1591166952132,"derHash":"saj9QLQ33tly9XQ3BiLiu7L5uVk7wFBNfiAw8rJOZ/o=","subject":"CN=GEANT Personal ECC CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEoxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMSA
wHgYDVQQDExdHRUFOVCBQZXJzb25hbCBFQ0MgQ0EgNA==","whitelist":false,"attachment":{"hash":"bd13e9c72f30021203129679456a87eaec1c3ebc91620c3355c3c943cdf5c9d1","size":1272,"filename":"x9rdz7WXOhNwDB_vccBkt66zVPn9EqlDFEDj0tN29TE=.pem","location":"security-state-staging/intermediates/23ee9177-81be-49de-b088-b5e00cf4c5ad.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x9rdz7WXOhNwDB/vccBkt66zVPn9EqlDFEDj0tN29TE=","crlite_enrolled":false,"id":"d7220a44-b71d-43aa-aceb-9f6f42b35563","last_modified":1591199862262},{"schema":1591166953641,"derHash":"rgO5rRcQaih4WDCx3NY2eXxMZNgcuNFhWV26+DQz5kw=","subject":"CN=CrowdStrike OV SSL Issuing CA 2020,O=CrowdStrike Inc.,C=US","subjectDN":"MFUxCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBDcm93ZFN0cmlrZSBJbmMuMSswKQYDVQQDEyJDcm93ZFN0cmlrZSBPViBTU0wgSXNzdWluZyBDQSAyMDIw","whitelist":false,"attachment":{"hash":"d681fc0b6a1cbda829e8ebba97a30707ab2d95062c3ef6bce4b7e7555d3584cf","size":1792,"filename":"lHRUL7zqcHfSFUzbd0WqRZOXK57EqS8L6C4CJmQ5Npo=.pem","location":"secur
ity-state-staging/intermediates/8097ddb1-fac8-4626-acdd-d1b8ae316ae4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lHRUL7zqcHfSFUzbd0WqRZOXK57EqS8L6C4CJmQ5Npo=","crlite_enrolled":false,"id":"6aa2e51f-636d-455e-a044-c2edde8889f6","last_modified":1591199862259},{"schema":1591166947809,"derHash":"8bQTkri3zVpFay1Kkbe89szvIpS4tuYs/zj5w6J5bwY=","subject":"CN=GlobeSSL OV CA,O=CentralNic Luxembourg S\u00e0rl,C=LU","subjectDN":"MEwxCzAJBgNVBAYTAkxVMSQwIgYDVQQKDBtDZW50cmFsTmljIEx1eGVtYm91cmcgU8OgcmwxFzAVBgNVBAMTDkdsb2JlU1NMIE9WIENB","whitelist":false,"attachment":{"hash":"6276193f8ef60a83e6b2a01cea8c469f7785960d98bb97c057e1ca2b3843e6a6","size":2085,"filename":"mfCBWjYYEugo1yhASbIoRwohL9WPkl5owslIdpTfCno=.pem","location":"security-state-staging/intermediates/4a4d3b84-603d-4f56-ae5f-96b87fd11076.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mfCBWjYYEugo1yhASbIoRwohL9WPkl5owslIdpTfCno=","crlite_enrolled":false,"id":"b2fe309b-8a3e-44b2-b214-099b8f793b32","last_modified":159119
9862253},{"schema":1591166955049,"derHash":"IgBA3aN3yURCnozpE7fYGzbeNOvy3CGNIGY5PZSGNDk=","subject":"CN=Democritus University of Thrace TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGBMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTE5MDcGA1UEAwwwRGVtb2NyaXR1cyBVbml2ZXJzaXR5IG9mIFRocmFjZSBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"633a331af1df260887adfe035dd9a69e0eac22b2b0e008c5072c8e7173f0a5dd","size":3677,"filename":"hwhNNDnScyM0IPzP1QnWxg68NK1ZdubxLavxfWWRRq8=.pem","location":"security-state-staging/intermediates/eefd61d3-4ede-4b5b-8b11-2b05034967e1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hwhNNDnScyM0IPzP1QnWxg68NK1ZdubxLavxfWWRRq8=","crlite_enrolled":false,"id":"f1b5b7ab-27cf-4b2f-8a24-24d137c1fd82","last_modified":1591199862251},{"schema":1591166946335,"derHash":"t+EkLZaU+1AlsJaWT6dq997Z9VrkpnpCCtxfnRGzrTM=","subject":"CN=CERTDATA SSL DV ECC CA [Run by the
Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MHIxCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExNDAyBgNVBAMMK0NFUlREQVRBIFNTTCBEViBFQ0MgQ0EgIFtSdW4gYnkgdGhlIElzc3Vlcl0=","whitelist":false,"attachment":{"hash":"790d8b9e3ba565304aee9733ce4b0e0bfd2096f72e2e0601b8df408f07910a53","size":1293,"filename":"KCVGX9PZojp3nb42QFg8CInxwnSWCYZ4kG3HC87bf4o=.pem","location":"security-state-staging/intermediates/24bcf52a-aa3c-4d05-8236-9a1e72833516.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KCVGX9PZojp3nb42QFg8CInxwnSWCYZ4kG3HC87bf4o=","crlite_enrolled":false,"id":"404783d0-cde7-4f2f-a512-dc32c5183168","last_modified":1591199862248},{"schema":1591166941957,"derHash":"26wvrk+MlJsaMM+HHqtYlX9kILeXpRJVBrjO3Uj114Q=","subject":"CN=GEANT EV RSA CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEQxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMRowGAYDVQQDExFHRUFOVCBFViBSU0EgQ0EgNA==","whitelist":false,"attachment":{"hash":"a81d6464a4c6c0326
479b46fc4a739c1ebd123cdfdd13ed5be6d44d55df9d953","size":2450,"filename":"BPjQDgce-sDBA1ay4Jv5JRXoEJZUq9x6xkxGPweoK8o=.pem","location":"security-state-staging/intermediates/957ee282-8db5-484b-b663-4f8f5fd4418b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BPjQDgce+sDBA1ay4Jv5JRXoEJZUq9x6xkxGPweoK8o=","crlite_enrolled":true,"id":"2d3008cc-2ef8-4483-8a08-556cf24cc117","last_modified":1591199862245},{"schema":1591166938789,"derHash":"tfTF0YWoyHx4tvZ9/c/U4buwc+d6JkRV2pYd2b6R0c4=","subject":"CN=ZeroSSL ECC Business Secure Site CA,O=ZeroSSL,C=AT","subjectDN":"ME0xCzAJBgNVBAYTAkFUMRAwDgYDVQQKEwdaZXJvU1NMMSwwKgYDVQQDEyNaZXJvU1NMIEVDQyBCdXNpbmVzcyBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"f5c243c2a7e060190fd8f59984d77e4edc40f58294bf379fcdfdc67342935f80","size":1284,"filename":"joN60utJv0YtzK4dit_eZatsv9Qz7o9doV9ZOgCp2Y8=.pem","location":"security-state-staging/intermediates/922b61f4-a9a8-47c2-8bb5-04f65f00c145.pem","mimetype":"application/x-pem-file"},"pubKeyHas
h":"joN60utJv0YtzK4dit/eZatsv9Qz7o9doV9ZOgCp2Y8=","crlite_enrolled":false,"id":"3a7be123-83ee-4956-b198-0fb8e0ba83f7","last_modified":1591199862242},{"schema":1591166949219,"derHash":"/nNANw1ZWjn/4Q3OIZdEfOZ8mL4o8DMMj8hd0DISSG0=","subject":"CN=XinChaCha Trust SSL Extended Validated,O=Beijing Xinchacha Credit Management Co.\\, Ltd.,C=CN","subjectDN":"MHYxCzAJBgNVBAYTAkNOMTYwNAYDVQQKDC1CZWlqaW5nIFhpbmNoYWNoYSBDcmVkaXQgTWFuYWdlbWVudCBDby4sIEx0ZC4xLzAtBgNVBAMMJlhpbkNoYUNoYSBUcnVzdCBTU0wgRXh0ZW5kZWQgVmFsaWRhdGVk","whitelist":false,"attachment":{"hash":"11c238131ce3dc238f6eaf26ec690ecf4d548a913c3c5bc452afce5fbc790b99","size":1776,"filename":"eMfyN-Ikg69beln4AW1OIVajdbo0bMtS7jlQTjdmeVM=.pem","location":"security-state-staging/intermediates/e6f8b0f0-9bb3-4ffd-b7bc-95b78916692e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eMfyN+Ikg69beln4AW1OIVajdbo0bMtS7jlQTjdmeVM=","crlite_enrolled":false,"id":"93b12a0d-0df4-4127-af9a-a1ef7dbef757","last_modified":1591199862239},{"schema":159116
6943449,"derHash":"6tyA999jBWDMGzU/aOpmAVnOlm4i1ARYh4B4fAR20OQ=","subject":"CN=Greek School Network Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHAMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTEwLwYDVQQDDChHcmVlayBTY2hvb2wgTmV0d29yayBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"91da938723919124b3744b40cb7465eb0441bb9d657002500df3379c62df1aff","size":3356,"filename":"JZb0xnTbHxn3GgHZAAa8PyGC1eaFoUGTxOKLXnmjA5U=.pem","location":"security-state-staging/intermediates/681f152c-a338-407e-905a-352955fbadfa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JZb0xnTbHxn3GgHZAAa8PyGC1eaFoUGTxOKLXnmjA5U=","crlite_enrolled":false,"id":"95cec1f6-13e2-40e5-8b62-dbb5123c691d","last_modified":1591199862236},{"schema":1591166940293,"derHash":"PzsNaiB
8UKWCnxsf4ca8O2YQYIV3RhTBIie3ZnKO0q4=","subject":"CN=ZeroSSL RSA EV Secure Site CA,O=ZeroSSL,C=AT","subjectDN":"MEcxCzAJBgNVBAYTAkFUMRAwDgYDVQQKEwdaZXJvU1NMMSYwJAYDVQQDEx1aZXJvU1NMIFJTQSBFViBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"f28bd1dd2858c64b5c7d1c3058a2d544f0ea768abc37a7d72e159566eecca98e","size":2454,"filename":"25iQFhK1cn8vc_vird2SyolWQqiVsnbjTu9eZlX690I=.pem","location":"security-state-staging/intermediates/ddc002a3-f79f-459e-ac61-cdfd850062c1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"25iQFhK1cn8vc/vird2SyolWQqiVsnbjTu9eZlX690I=","crlite_enrolled":false,"id":"c853522e-9668-40f2-8f15-ce50259bbbd8","last_modified":1591199862233},{"schema":1591166944923,"derHash":"cDQIhtCP4bCTFY8RpMwrKtRaZ/QCYyoEDpBnxuRH5P4=","subject":"CN=Telenor Norge AS OTL CA G2,O=Telenor Norge AS,C=NO","subjectDN":"ME0xCzAJBgNVBAYTAk5PMRkwFwYDVQQKExBUZWxlbm9yIE5vcmdlIEFTMSMwIQYDVQQDExpUZWxlbm9yIE5vcmdlIEFTIE9UTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"d43892
2f73cc95a79a030a5b88b1deff430948c8e65d26d6889657785975664c","size":1955,"filename":"XuXysKYz8525S8d1tzSylmtHnnsKgXMnjn2sP1DuoMo=.pem","location":"security-state-staging/intermediates/32ba931d-0b1a-4777-a7bd-9d236db04e41.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XuXysKYz8525S8d1tzSylmtHnnsKgXMnjn2sP1DuoMo=","crlite_enrolled":false,"id":"d779a32d-7743-44cb-876e-eab354bd767c","last_modified":1591199862230},{"schema":1591166935697,"derHash":"aZGdgg7fWCrbz44JKpKE2QF3LuK0Geqd4fWHLHkfxvo=","subject":"CN=Thawte EV RSA CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHzAdBgNVBAMTFlRoYXd0ZSBFViBSU0EgQ04gQ0EgRzI=","whitelist":false,"attachment":{"hash":"ce1818d94d078e469bacac8ce640901ec6f9ef4e08ee8ed1295da929ca3f4723","size":1626,"filename":"5jGxIiaHNj15fBcUBvvAsMfKNtiK_podXNf0YoRUoeI=.pem","location":"security-state-staging/intermediates/f5157a19-89e9-4513-9b51-b540e430b34c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5jGx
IiaHNj15fBcUBvvAsMfKNtiK/podXNf0YoRUoeI=","crlite_enrolled":false,"id":"e05d537c-e98a-4c16-8476-344896c66748","last_modified":1591199862227},{"schema":1591166929792,"derHash":"ODkvF857aCwZjSnG5x0nQJZKIHTI0lWObP9kwngj8Sk=","subject":"CN=COMODO RSA Certification Authority,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGFMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDErMCkGA1UEAxMiQ09NT0RPIFJTQSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"f9fb67b8408e95dec2ccd730836629e9b9d21217185bc11efea7ba000d32c9b2","size":1963,"filename":"grX4Ta9HpZx6tSHkmCrvpApTQGo67CYDnvprLg5yRME=.pem","location":"security-state-staging/intermediates/866b660e-4e5e-4198-8a99-1bfad68e708d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"grX4Ta9HpZx6tSHkmCrvpApTQGo67CYDnvprLg5yRME=","crlite_enrolled":true,"id":"11673ac8-c50e-4666-a891-ff70f87c1a73","last_modified":1591199862224},{"s
chema":1591166937148,"derHash":"bKPl13ICFflFRFI+PEdLItppxzKuRV3IL49e4wLsVfw=","subject":"CN=Microsoft Azure TLS Issuing CA 01,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMQ==","whitelist":false,"attachment":{"hash":"9ed7588547d656029af2bccfd199a781d49253141c1b25fe3816f388e01a40ba","size":2276,"filename":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=.pem","location":"security-state-staging/intermediates/d1dd8476-0af4-4e05-ae35-f513f493a2a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NHwusbC7w844JzTmvIRIo8NL7D6StITK9phzFgtJi0w=","crlite_enrolled":true,"id":"54dcf0fb-88b2-43d1-b183-0d27f9f1ca7e","last_modified":1591199862221},{"schema":1591166925354,"derHash":"yE485bLKhdXfmHLf3awqoDrWJyV6/ZL39yCZLQA9hHw=","subject":"CN=TrustCor OV Email CA - G2,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFcxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIF
IuTC4xIjAgBgNVBAMMGVRydXN0Q29yIE9WIEVtYWlsIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"81ae2e960751b130d0b99f592bb364874c086c4953fc4713f9acde4303430257","size":2487,"filename":"5_U9kCeaRySTk4HsUFuOXpJ_NJ08eeHqbukItZJ_DmA=.pem","location":"security-state-staging/intermediates/e7f12a82-e8f6-40a3-a1df-8d55d14e713e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5/U9kCeaRySTk4HsUFuOXpJ/NJ08eeHqbukItZJ/DmA=","crlite_enrolled":false,"id":"2bc63522-d07a-4d32-b1dc-4fa0c956f17c","last_modified":1591199862219},{"schema":1591166928355,"derHash":"vJE3miHnveEbRVvx1RGGMxaCgFpKNTqO4lj3oDcGxmQ=","subject":"CN=DigiCert Secure Site Pro EV ECC CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MFcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxMTAvBgNVBAMTKERpZ2lDZXJ0IFNlY3VyZSBTaXRlIFBybyBFViBFQ0MgQ04gQ0EgRzM=","whitelist":false,"attachment":{"hash":"175f55c6e184737a8ef08da7da2ba8eeb68ccb7a8f4c26cb4135728b20cc7228","size":1374,"filename":"ABohyUv2yKwrj07ViEB9SgfSMpe6-G4RvaB7869gYaQ=.pem","l
ocation":"security-state-staging/intermediates/62c0ef15-c0da-4ff8-958c-8a5f9420afe1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ABohyUv2yKwrj07ViEB9SgfSMpe6+G4RvaB7869gYaQ=","crlite_enrolled":false,"id":"0197f7a1-e219-43b2-b473-43a75d63a1a6","last_modified":1591199862216},{"schema":1591166931233,"derHash":"9lG1yq2Qm8SzM6TDzHN76crUmJD7ltItvB4h438NtVE=","subject":"CN=Sectigo Partners - Client Authentication and Secure Email - RSA,O=Sectigo Limited,C=GB","subjectDN":"MHExCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxSDBGBgNVBAMTP1NlY3RpZ28gUGFydG5lcnMgLSBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIFNlY3VyZSBFbWFpbCAtIFJTQQ==","whitelist":false,"attachment":{"hash":"45e2cb2916cebbc90466fd2304cb16497db3d816cf32d7d3cebe897ace744a9c","size":2280,"filename":"89Ol1fIDO-V67gTYc90uHy6AX2aUkT-e7bZJZPsPRDY=.pem","location":"security-state-staging/intermediates/46453155-431d-4965-a199-bbcc878c82de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"89Ol1fIDO+V67gTYc90uHy6AX2aUkT+e7bZJ
ZPsPRDY=","crlite_enrolled":false,"id":"db218d0f-2b15-4354-b0c0-aa1aeb5bad5c","last_modified":1591199862213},{"schema":1591166934097,"derHash":"jG24FxrmeF8FQmrljD0291WTUiAukgm50psb1EeWHcg=","subject":"CN=SECOM Passport for Member PUB CA5,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTU=","whitelist":false,"attachment":{"hash":"778625b74bb48d643b387a0656870db1b5624e8da9cf6eb4625cb095b6badcbe","size":1833,"filename":"v3h5R_3OzMC-NBXKj05v4LQG5laFzE9fB4KsGpwAMtk=.pem","location":"security-state-staging/intermediates/93efcc52-53a0-4409-91be-be430a0c43f1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"v3h5R/3OzMC+NBXKj05v4LQG5laFzE9fB4KsGpwAMtk=","crlite_enrolled":true,"id":"54d7197f-50f6-43db-a133-6f98696362d5","last_modified":1591199862210},{"schema":
1591166922501,"derHash":"BHeVeFzc/55uCuEiSS5be/CKnlxJdi4ry1J0fGkDFWE=","subject":"CN=NETLOCK Trust EV CA 3,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"MFcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMR4wHAYDVQQDDBVORVRMT0NLIFRydXN0IEVWIENBIDM=","whitelist":false,"attachment":{"hash":"5baaa1ca8ca90156561df8c1bc2cd10801794f20c1984d55bbcedeb1417c7dd2","size":2203,"filename":"vRSkgbqFoy29lSNM6Ih557Nl-K07Rwh3GriW7t3fMJw=.pem","location":"security-state-staging/intermediates/7c1161bd-10bb-4642-b809-92c87a367bf2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vRSkgbqFoy29lSNM6Ih557Nl+K07Rwh3GriW7t3fMJw=","crlite_enrolled":false,"id":"75389d14-b6d9-4b99-8f96-a61e30aaa117","last_modified":1591199862208},{"schema":1591166926812,"derHash":"yYFBK1WBDDfBgm0kZn0ayos21uvwmm2MjlRZBT/hweU=","subject":"CN=CrazySSL ECC CA,O=TrustOcean Limited,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxGDAWBgNVBAMTD0NyYXp5U1NMIEVDQyBDQQ==","whitel
ist":false,"attachment":{"hash":"747b534a20d09d3120dad524bafdfbf5cb11711b35f79294ed033004fb14560b","size":1232,"filename":"ZQQdhiUGJKIn2qNuTwRgNkaJQk3QRe-OCri6lbwMZgQ=.pem","location":"security-state-staging/intermediates/36d8be0c-e7bf-47dc-9c16-a44982c5b45a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZQQdhiUGJKIn2qNuTwRgNkaJQk3QRe+OCri6lbwMZgQ=","crlite_enrolled":false,"id":"fac0b4a6-912b-4c27-9d25-3f313e16c85e","last_modified":1591199862202},{"schema":1591166921097,"derHash":"iKuWH2T5No9MTRMH9Z1OWcXlcPhSpsUROo/yjgQxUVc=","subject":"CN=Atos TrustedRoot Client-CA for Worldline 2020,O=Atos,C=DE","subjectDN":"MFQxNjA0BgNVBAMMLUF0b3MgVHJ1c3RlZFJvb3QgQ2xpZW50LUNBIGZvciBXb3JsZGxpbmUgMjAyMDENMAsGA1UECgwEQXRvczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"8895b7aafb7411c125d5f5f5e5c9cc15845e1090369326b33c602d60f278f664","size":2008,"filename":"zPRLgkk0XdrL8_6Lzu5ze4i8hb4_92LoMI-3ehy---c=.pem","location":"security-state-staging/intermediates/197f3e64-6163-4266-a36d
-a1f82bbc2ed3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zPRLgkk0XdrL8/6Lzu5ze4i8hb4/92LoMI+3ehy+++c=","crlite_enrolled":false,"id":"5bdbdd05-0f5d-45cc-8395-71ce201b26dc","last_modified":1591199862199},{"schema":1591166919650,"derHash":"TUC18q3mX5K6SHoN0TnaJ1YSIAwcBpVR1Vdh0xr+9U0=","subject":"CN=TrustOcean Organization Software Vendor CA,O=TrustOcean Limited,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxMzAxBgNVBAMTKlRydXN0T2NlYW4gT3JnYW5pemF0aW9uIFNvZnR3YXJlIFZlbmRvciBDQQ==","whitelist":false,"attachment":{"hash":"e39d05e5f9c53252def849bf70674041fa74e229d6f216deade7fa12494cb266","size":2081,"filename":"DNaN9ECmC5lN-TJRanHzxHgUnOqZKkkYnFou0gIs0Rs=.pem","location":"security-state-staging/intermediates/013ea5f1-eeed-4770-b182-f088fce7cf3d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DNaN9ECmC5lN+TJRanHzxHgUnOqZKkkYnFou0gIs0Rs=","crlite_enrolled":false,"id":"12d3c939-3013-4a58-bb98-f8641d3f5b70","last_modified":1591199862196},{"s
chema":1591166923906,"derHash":"0DgqxYGfla0QI4y+bjxO09gkHNlU0mU/6kcKyfOQzU0=","subject":"CN=GEANT eScience Personal CA 4,O=GEANT Vereniging,C=NL","subjectDN":"ME8xCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMSUwIwYDVQQDExxHRUFOVCBlU2NpZW5jZSBQZXJzb25hbCBDQSA0","whitelist":false,"attachment":{"hash":"0c9a8a1c3c7a80001a8265136dbe7ab0ca180b5cb986f88f590c1306ef88e1e4","size":2467,"filename":"E5rMC3LvWxbIbmC1yqxjOfCRXR4VmimCyZ810qKd2yc=.pem","location":"security-state-staging/intermediates/1865fc47-5288-451c-bc32-7bcf66172e9d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"E5rMC3LvWxbIbmC1yqxjOfCRXR4VmimCyZ810qKd2yc=","crlite_enrolled":false,"id":"2ad040cf-f92c-4396-a43f-3ff1ceaf2e87","last_modified":1591199862194},{"schema":1591166918242,"derHash":"OZWwGheACuz1SA6TnZ2kTtzMfPKTVlfGF51aHvol100=","subject":"CN=Athens University of Economics and Business TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGNMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuS
GVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTFFMEMGA1UEAww8QXRoZW5zIFVuaXZlcnNpdHkgb2YgRWNvbm9taWNzIGFuZCBCdXNpbmVzcyBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"11ea0406dfeeaa9f5ad947fa44f5668e897816a0cef799c302cf631508960b47","size":2877,"filename":"oHI6zIj2JBHJtqjt17sQSYylYI0zRaSACkBuS9578tg=.pem","location":"security-state-staging/intermediates/62628027-0ac7-4ce7-9faf-8e1d69efd621.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oHI6zIj2JBHJtqjt17sQSYylYI0zRaSACkBuS9578tg=","crlite_enrolled":false,"id":"73ad1e50-a261-4fd2-ad3f-4bdaad97c2af","last_modified":1591199862191},{"schema":1591166916773,"derHash":"YCHUo83r2Y1SmCNfWIH0uWnXHUPz7j3xVr8jYwsHrjs=","subject":"CN=GEANT eScience Personal ECC CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MFMxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMSkwJwYDVQQDEyBHRUFOVCBlU2NpZW5jZSBQZXJzb25hbCBFQ0MgQ0EgNA==","whitelist":false,"attachment":{"hash":"a15cf405c7906db643b095bf625ec35404ec455eb1daec286
aa2e13426ab47bb","size":1284,"filename":"2NMssuhH5JflFnMKpNfoZDqlv-C0lZhqf9O7FKDzn2k=.pem","location":"security-state-staging/intermediates/b482da9b-0ede-43e3-8d72-41cf5e16dc3d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2NMssuhH5JflFnMKpNfoZDqlv+C0lZhqf9O7FKDzn2k=","crlite_enrolled":false,"id":"c2502c1a-de63-491e-865a-683fb594c4ee","last_modified":1591199862185},{"schema":1591166909159,"derHash":"f4FM0UVJAKwTMTZLa23ga4fMjLmTbsWDEAgichBX06M=","subject":"CN=Sectigo SHA-256 DV Secure Server CA,O=Sectigo Limited,C=GB","subjectDN":"MFUxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLDAqBgNVBAMTI1NlY3RpZ28gU0hBLTI1NiBEViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"96985e5b8fc9114fc1bf6fb46c70668299157f698f5a03a51844df4b86d1c687","size":1613,"filename":"VrhAF5b9APFDNaFQfbVHB1xrJSjOWlQAmlz3WdQFkqE=.pem","location":"security-state-staging/intermediates/95b7263b-b946-4b1b-97fc-588b469275fc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VrhAF5b9APF
DNaFQfbVHB1xrJSjOWlQAmlz3WdQFkqE=","crlite_enrolled":false,"id":"75e0caaf-9db0-4002-8fc9-28e0a8675dd8","last_modified":1591199862181},{"schema":1591166907750,"derHash":"Bf/GS4/FO3n1ucYpYevMrLoZMdUPNNAU6SnrACtb2DI=","subject":"CN=Sectigo Partners - Server Authentication - RSA,O=Sectigo Limited,C=GB","subjectDN":"MGAxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxNzA1BgNVBAMTLlNlY3RpZ28gUGFydG5lcnMgLSBTZXJ2ZXIgQXV0aGVudGljYXRpb24gLSBSU0E=","whitelist":false,"attachment":{"hash":"34622395c087b9ecdf1001a6e9b02b94a16f0b8b5740c5fa10c266d6d293ea31","size":2255,"filename":"KnIj02v94up0vjV7A3aidbRS7a3ZTae0ANppOclqdzs=.pem","location":"security-state-staging/intermediates/702a1c60-d97b-4507-b9f5-08eb480da6df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KnIj02v94up0vjV7A3aidbRS7a3ZTae0ANppOclqdzs=","crlite_enrolled":false,"id":"adec9cb0-b198-46a2-8796-b1f419db6d26","last_modified":1591199862176},{"schema":1591166912114,"derHash":"ZfbCtEFU9cZCXzwcWyblyeNXF6/29FG9IWpiT0j6Br8=","s
ubject":"CN=Microsoft Azure TLS Issuing CA 06,O=Microsoft Corporation,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jvc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNg==","whitelist":false,"attachment":{"hash":"d23b9e148f80dcabe98cab74d01cf619cd6c75b4f333e73266ccd4eda1a59efc","size":2276,"filename":"Wl8MFY-9zijGG8QgEHCAK5fhA-ydPZxaLQOFdiEPz3U=.pem","location":"security-state-staging/intermediates/c7b3c306-3cae-4f8c-9796-9857ff2613fa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wl8MFY+9zijGG8QgEHCAK5fhA+ydPZxaLQOFdiEPz3U=","crlite_enrolled":true,"id":"67e78f14-8519-4508-b33f-9886e4cc3385","last_modified":1591199862173},{"schema":1591166901999,"derHash":"jNco+cM5G6Q2ChDGbKSEyAdlHWIH8QYzZp7YiB/pG/U=","subject":"CN=CrowdStrike Global EV CA,O=CrowdStrike\\, Inc.,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRowGAYDVQQKExFDcm93ZFN0cmlrZSwgSW5jLjEhMB8GA1UEAxMYQ3Jvd2RTdHJpa2UgR2xvYmFsIEVWIENB","whitelist":false,"attachment":{"hash":"aeae72b6b
6e2f2f8a2aa8ada26064ad98f11711c82a084d34471dd8ada45bc94","size":1853,"filename":"jbtEGKuN8b5BZ9dJqvvW9XPxqqghhmKxB6nuThNyJd8=.pem","location":"security-state-staging/intermediates/983271b4-b453-4809-8582-3af405f54fdc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jbtEGKuN8b5BZ9dJqvvW9XPxqqghhmKxB6nuThNyJd8=","crlite_enrolled":false,"id":"edfeea6f-0f8a-4a58-a196-634c0ea181e0","last_modified":1591199862165},{"schema":1591166913573,"derHash":"ApN5EY5XdSJsVNcYKjZ6JAtRdw9QEbs1F3z9F9myRFo=","subject":"CN=Deutsche Telekom AG secure email CA E02,O=Deutsche Telekom AG,C=DE","subjectDN":"MF0xCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNEZXV0c2NoZSBUZWxla29tIEFHMTAwLgYDVQQDDCdEZXV0c2NoZSBUZWxla29tIEFHIHNlY3VyZSBlbWFpbCBDQSBFMDI=","whitelist":false,"attachment":{"hash":"6e88e41a6082feb041571a75be3c7b654d5697d0db3ceffb0299e4690d8d5fd4","size":2312,"filename":"212l6lxrSA898ktySyw4XkR_tW58YtsNEmSrE5hy0fc=.pem","location":"security-state-staging/intermediates/a35a70fa-aad1-4273-b4f6-96a9aff12f41.pem","m
imetype":"application/x-pem-file"},"pubKeyHash":"212l6lxrSA898ktySyw4XkR/tW58YtsNEmSrE5hy0fc=","crlite_enrolled":false,"id":"2b4e8679-20ae-4985-a806-2a5e63507ac3","last_modified":1591199862162},{"schema":1591166906381,"derHash":"HpU+FRI6leRwRL+vBrGXT7mXa4T0Nx69d/itge/QXAA=","subject":"CN=CEDEFOP Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIGzMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMSQwIgYDVQQDDBtDRURFRk9QIENsaWVudCBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"5983f161ec520da3023c0007656827199a31a855fdd2eb9b90bdeaae9b89390a","size":2893,"filename":"uwdG75MlCgrDelaIfeRDM31eTTu4dGBtOwv0vvamoqA=.pem","location":"security-state-staging/intermediates/4c553782-18e1-4296-8988-79845d8a1322.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uwdG75
MlCgrDelaIfeRDM31eTTu4dGBtOwv0vvamoqA=","crlite_enrolled":false,"id":"10207011-b3ed-4c07-806d-0ca7a15f67e7","last_modified":1591199862159},{"schema":1591166899084,"derHash":"pLK0dUVVn1//t83aehIg5i+3TRt6mk1NrLKyqDnOdFY=","subject":"CN=DigiCert Secure Site EV ECC CN CA G3,O=DigiCert Inc,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxLTArBgNVBAMTJERpZ2lDZXJ0IFNlY3VyZSBTaXRlIEVWIEVDQyBDTiBDQSBHMw==","whitelist":false,"attachment":{"hash":"fe2667a1a90e9632c52d9fbaa7270f136842dcb2a58d926acb1094829bab3c83","size":1370,"filename":"k53DKcmdvTrcweDtMvf_MKTy3iBxavrlU-riK2LCoiQ=.pem","location":"security-state-staging/intermediates/b5412eae-7d6f-41c0-89be-66ca27c50b2d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k53DKcmdvTrcweDtMvf/MKTy3iBxavrlU+riK2LCoiQ=","crlite_enrolled":false,"id":"205d8820-e751-432c-9078-56282ef45802","last_modified":1591199862156},{"schema":1591166893168,"derHash":"Je7RMdcZNZfkjU42U2zFz/v56yBCxiVzrolo2KNpXxw=","subject":"CN=University o
f Piraeus TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHcxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMS8wLQYDVQQDDCZVbml2ZXJzaXR5IG9mIFBpcmFldXMgVExTIFJTQSBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"550cd132d0b40f0576ab9d26a6f5bf1dc59ff3e329b9631757e620752e685318","size":2800,"filename":"yoaRLzm23zeQXpsVd163dslqNpFi19V_XBBOcxeUJWo=.pem","location":"security-state-staging/intermediates/6c2fcd65-e0b3-4577-b113-10ecfe46cc56.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yoaRLzm23zeQXpsVd163dslqNpFi19V/XBBOcxeUJWo=","crlite_enrolled":false,"id":"c232a4ca-24ba-45bd-88a7-77cd5d193f7e","last_modified":1591199862154},{"schema":1591166903471,"derHash":"ctD3y/RSm4DDSny7Q4vR0OH8JugOWcvU/XMU/N3w6ZQ=","subject":"CN=DigiCert High Assurance Trust Service EV CA,O=DigiCert Inc,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxNDAyBgNVBAMTK0RpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNl
IFRydXN0IFNlcnZpY2UgRVYgQ0E=","whitelist":false,"attachment":{"hash":"0aa319cc69c625abdd0fac5d90509c1840a629bc7b17f7130b545c0bfd57c6eb","size":1699,"filename":"HA5OXoZpETZhlPuW6jLvs2pyRrgxtQPRGRxa5tAQugE=.pem","location":"security-state-staging/intermediates/3af22c45-79a8-47ec-b3d0-1aeade14957b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HA5OXoZpETZhlPuW6jLvs2pyRrgxtQPRGRxa5tAQugE=","crlite_enrolled":false,"id":"581603f2-07f6-428c-bee1-1efb081ee0c2","last_modified":1591199862149},{"schema":1591166900577,"derHash":"YoBqPZQu1PbAkaEx5jY7E43WOlw830QT0AzIoMMzqfg=","subject":"CN=CERTDATA SSL OV CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MG4xCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExMDAuBgNVBAMMJ0NFUlREQVRBIFNTTCBPViBDQSAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"2f80f47c488ec7412b055557852db65a46130e869818968c2e1abd16dfde9038","size":2129,"filename":"j329Y60dfipsfu2WQjIJzo3
bfYjWBMO0L6-erwtRMEM=.pem","location":"security-state-staging/intermediates/ac48c1cf-d260-4b4a-beb7-599ef5ee1de8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"j329Y60dfipsfu2WQjIJzo3bfYjWBMO0L6+erwtRMEM=","crlite_enrolled":false,"id":"538da95e-219e-4f04-9887-5ef9291a70ab","last_modified":1591199862143},{"schema":1591166887418,"derHash":"qONS2wyOJ7rlg9AVFG6Led7gkdVjj1g6DEQvO/Vd7rM=","subject":"CN=Inst. of Accelerating Sys and Applications Client RSA SubCA R2,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHWMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMUcwRQYDVQQDDD5JbnN0LiBvZiBBY2NlbGVyYXRpbmcgU3lzIGFuZCBBcHBsaWNhdGlvbnMgQ2xpZW50IFJTQSBTdWJDQSBSMg==","whitelist":false,"attachment":{"hash":"13056507a245291565a35702e8a516a852c5655e71152a9aa83d1952fbc2e8ee","size":3019,"filena
me":"zgmH0SdYDJGk955F1_GyB2cxMwfYJTe5cQw86vwds4o=.pem","location":"security-state-staging/intermediates/af60a983-8e6b-42d9-8628-b6b31228e1b8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zgmH0SdYDJGk955F1/GyB2cxMwfYJTe5cQw86vwds4o=","crlite_enrolled":false,"id":"091a0fcb-58b7-4cca-9ae4-c64ea842282e","last_modified":1591199862132},{"schema":1591166894678,"derHash":"2gxJgfYzbgbBKffoFDsqVKqFoUpjykT84s3cae7niMk=","subject":"CN=Ionian University TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHMxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMSswKQYDVQQDDCJJb25pYW4gVW5pdmVyc2l0eSBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"86df2e731f35984856a01fe3f4dd74d61e7b0c1d84cd76b17bb01d4e0e90568a","size":2779,"filename":"tQEYBAU52znFOxCYz6CBZu4mfcBhcZVQIztFuFsaj5w=.pem","location":"security-state-staging/intermediates/2622e890-355a-4626-b276-90bc8df7aa57.pem","mimetype":"application/x-pe
m-file"},"pubKeyHash":"tQEYBAU52znFOxCYz6CBZu4mfcBhcZVQIztFuFsaj5w=","crlite_enrolled":false,"id":"8abdff0c-264b-47ce-9085-9d5f2b8e9c0a","last_modified":1591199862129},{"schema":1591166896111,"derHash":"6kI/GzsbUp0cfbmiGvh9x43nJZVV4pi6JsY88SdakSw=","subject":"CN=Baidu\\, Inc. DV CA,O=Baidu\\, Inc.,C=CN","subjectDN":"MD8xCzAJBgNVBAYTAkNOMRQwEgYDVQQKEwtCYWlkdSwgSW5jLjEaMBgGA1UEAxMRQmFpZHUsIEluYy4gRFYgQ0E=","whitelist":false,"attachment":{"hash":"4d24e6e2737c306ddb3da55bc36a62f0205cbf4ede28147d78ad6ce31bd2a2b0","size":2056,"filename":"XDCvV-xbAMAx9ilt0xDgWpOhUuTMeTe4IRR7qYMYfJA=.pem","location":"security-state-staging/intermediates/44bb90ea-7bfd-4581-9df0-a2132775710d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XDCvV+xbAMAx9ilt0xDgWpOhUuTMeTe4IRR7qYMYfJA=","crlite_enrolled":false,"id":"fa66d869-faf6-42b8-b838-e3f95942d6cc","last_modified":1591199862126},{"schema":1591166890348,"derHash":"1hnzJXuYdW0ogR087pra2LyuG0Nnu7DHP2teVY+6RWM=","subject":"CN=DigiCert Basic EV ECC CN CA
G2,O=DigiCert Inc,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IEJhc2ljIEVWIEVDQyBDTiBDQSBHMg==","whitelist":false,"attachment":{"hash":"41848d17b98767397ec8bf100d1dfe140c4770ad085d9c802b3d8c7b949b96e7","size":1378,"filename":"yE_naogfFzNf_bv3qdwlxZJxaARkFaKc5DZu2mp6Q34=.pem","location":"security-state-staging/intermediates/134279b7-bda6-4c1c-8662-4961873f1071.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yE/naogfFzNf/bv3qdwlxZJxaARkFaKc5DZu2mp6Q34=","crlite_enrolled":false,"id":"99330272-0e3e-4df5-9535-55e2097b7ee6","last_modified":1591199862124},{"schema":1591166884523,"derHash":"XdZh08sztQBcvtBFoiPdxERaqkHRrLXfcAiEytm6QZU=","subject":"CN=ZeroSSL ECC Domain Secure Site CA,O=ZeroSSL,C=AT","subjectDN":"MEsxCzAJBgNVBAYTAkFUMRAwDgYDVQQKEwdaZXJvU1NMMSowKAYDVQQDEyFaZXJvU1NMIEVDQyBEb21haW4gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"de8d5b5ee9e74901d1bbcc4ad4e1c43a96d0797608f7d04820cdabfa0de24f33","size":1280,
"filename":"3fLLVjRIWnCqDqIETU2OcnMP7EzmN_Z3Q_jQ8cIaAoc=.pem","location":"security-state-staging/intermediates/cc8a3501-4e66-4b5b-9d98-d401566c67e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3fLLVjRIWnCqDqIETU2OcnMP7EzmN/Z3Q/jQ8cIaAoc=","crlite_enrolled":false,"id":"5f4e1d4e-6a23-4bbc-a9b9-366ff6016a5b","last_modified":1591199862121},{"schema":1591166888935,"derHash":"y1ez/yBAyyaUl2JbyQ+p17TtSTjG9g9C9pr99QisKZM=","subject":"CN=DigiCert Basic RSA CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJDAiBgNVBAMTG0RpZ2lDZXJ0IEJhc2ljIFJTQSBDTiBDQSBHMg==","whitelist":false,"attachment":{"hash":"af11309a3c20fa360cb678f8d6958ba267f86f202af25ff95cae834d95837fe4","size":1821,"filename":"ZckwC4fqIUCeiz1_ihqLY9TDek4tDc704HFPrhqylPo=.pem","location":"security-state-staging/intermediates/a293e696-ef17-4439-8b31-20962f5f352a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZckwC4fqIUCeiz1/ihqLY9TDek4tDc704HFPrhqylPo=","crlite_enrolled"
:true,"id":"f921edde-d8b6-430f-aa42-636c604bb2a3","last_modified":1591199862118},{"schema":1591166881281,"derHash":"lRQaNVpaKqPgESIcq5/nOBD9tdiBNYZPA+TYUr0Lvts=","subject":"CN=Thawte RSA CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHDAaBgNVBAMTE1RoYXd0ZSBSU0EgQ04gQ0EgRzI=","whitelist":false,"attachment":{"hash":"419f063716d0b08e5119a943e2d8506a67bba9d8b72f725763a5b48b0911dfd3","size":1792,"filename":"hN3GzHyLopxOn8DxNQIEvpQa-NyS7R_1oQY0xsFsrOA=.pem","location":"security-state-staging/intermediates/0d05c78d-0f37-439e-b5d1-08268337d922.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hN3GzHyLopxOn8DxNQIEvpQa+NyS7R/1oQY0xsFsrOA=","crlite_enrolled":false,"id":"0810cb55-6c6a-4343-a322-9e5c9f7920af","last_modified":1591199862116},{"schema":1591166886003,"derHash":"8mmsALQQAD9y3GKK+z2VAnljDHxdDIIUig/STfTaQwE=","subject":"CN=DigiCert Trust Service ECC CA,O=DigiCert Inc,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCB
JbmMxJjAkBgNVBAMTHURpZ2lDZXJ0IFRydXN0IFNlcnZpY2UgRUNDIENB","whitelist":false,"attachment":{"hash":"75b96b01d9b932fb522e5615db087c64e2ee12af68af026235262358e0eeef91","size":1410,"filename":"447EOyTQJY3PyAbUMHr-SyrdqoPSJsxpM0Nf26eUpV0=.pem","location":"security-state-staging/intermediates/82c3a715-65dc-4dc7-9803-8e94ab1605f7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"447EOyTQJY3PyAbUMHr+SyrdqoPSJsxpM0Nf26eUpV0=","crlite_enrolled":false,"id":"2184c07f-101d-4e6e-ab1a-f806fff4f1af","last_modified":1591199862113},{"schema":1591166873630,"derHash":"8AQ+n++zeup5TmkEN9wjnWvSxcoPtYoSJEVVoaiioBo=","subject":"CN=Panteion Univ. of Social and Political Sciences TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGRMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTFJMEcGA1UEAwxAUGFudGVpb24gVW5pdi4gb2YgU29jaWFsIGFuZCBQb2xpdGljYWwgU2NpZW5jZXMgVExTIFJTQSBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"b
e73f7729891ce22885d13e919d4708521fcefe4b74165aa08c8af1edd701af1","size":2970,"filename":"gPEc0jcCVlywHAUQHhYL3X5OqG89O9YInrCwyDjgJ1A=.pem","location":"security-state-staging/intermediates/9922f7a2-d69e-4d2d-a01d-3ea5abe1a1cd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gPEc0jcCVlywHAUQHhYL3X5OqG89O9YInrCwyDjgJ1A=","crlite_enrolled":false,"id":"8d0bdf59-a81c-44d7-acc2-c7d6d72244e0","last_modified":1591199862110},{"schema":1591166882853,"derHash":"abCFmqwMqRvCm0IqPQS5/5D4e4Wje8BtuFMV9d5AvZU=","subject":"CN=CrazySSL RSA CA,O=TrustOcean Limited,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxGDAWBgNVBAMTD0NyYXp5U1NMIFJTQSBDQQ==","whitelist":false,"attachment":{"hash":"adc25f98c021da162cd92cb4b92db565ba5e5a23ac8adb3a819e65bfdb69adb9","size":2073,"filename":"oILpOhvA5LCMlaOiKW18m2FsNsgkjOkzuc7Rn4JSi0U=.pem","location":"security-state-staging/intermediates/2ce09943-1a2f-4726-b421-a52c2d8f6a91.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"
oILpOhvA5LCMlaOiKW18m2FsNsgkjOkzuc7Rn4JSi0U=","crlite_enrolled":false,"id":"4934e39d-e79f-478e-a9b9-339c5922e0b8","last_modified":1591199862107},{"schema":1591166876495,"derHash":"T/V3/d4o5h5/XKT19CvLsSvheXAKT+8kSJznaEigg0Y=","subject":"CN=TrustCor OV SSL CA - G2,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MFUxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xIDAeBgNVBAMMF1RydXN0Q29yIE9WIFNTTCBDQSAtIEcy","whitelist":false,"attachment":{"hash":"cf99b2b77fcf543c7c67e25d79c9076859c38851045d20b200bb357d806163bd","size":2499,"filename":"Wpyq4op-j7iz0FI6Mlw06h6hqo6X_DGLpRt7yAcPkVc=.pem","location":"security-state-staging/intermediates/a1a3157e-3254-4565-a991-e1fce05b4212.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wpyq4op+j7iz0FI6Mlw06h6hqo6X/DGLpRt7yAcPkVc=","crlite_enrolled":false,"id":"af05ac5f-9bff-4bd9-8cca-8a84c13ab21f","last_modified":1591199862105},{"schema":1591166872202,"derHash":"IuXm21yuQo7alq7QVk4rl3DsoswCUVjjep3e7eMfReU=","subject":"CN=Tech
nical University of Crete Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHJMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTowOAYDVQQDDDFUZWNobmljYWwgVW5pdmVyc2l0eSBvZiBDcmV0ZSBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"349f0200e3e31175b7f871f287144f5fc1b0f766e23da219f0e2eb7ad790f83a","size":2881,"filename":"_CQ8b_NnBc7JI0Y-BPaUM3fLCvTvHHR9e17XKVFxpKQ=.pem","location":"security-state-staging/intermediates/f3b2f230-d3a1-4a11-8cbb-3ed9df6cba12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/CQ8b/NnBc7JI0Y+BPaUM3fLCvTvHHR9e17XKVFxpKQ=","crlite_enrolled":false,"id":"0414d3b7-67d2-4ee4-ab18-cdc03115a996","last_modified":1591199862102},{"schema":1591166875099,"derHash":"iTfpDhSVyaeO+xgYLUP9xz/NKSq2NHoSuQd96HhTDmI=","subject":"CN=GeoTrust
EV RSA CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxITAfBgNVBAMTGEdlb1RydXN0IEVWIFJTQSBDTiBDQSBHMg==","whitelist":false,"attachment":{"hash":"dbcead7fd92db8003e615e6ab4e681c29b1f4e1f5a16537b11786c41b180f203","size":1646,"filename":"AKgAa8DfB2Gh8BJb5YJO995EeaGcs3vEecdkZw_OD7I=.pem","location":"security-state-staging/intermediates/4f22de4a-5b44-4d18-bc10-7deaee7abcc7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AKgAa8DfB2Gh8BJb5YJO995EeaGcs3vEecdkZw/OD7I=","crlite_enrolled":true,"id":"4af8f737-c4f7-4213-a097-781dca9addd3","last_modified":1591199862099},{"schema":1591166864681,"derHash":"J9b9r4ApeEbf7/guf1i5pIrJ4+6ToRKxu+JD7hqXRHw=","subject":"CN=GlobalSign PersonalSign 2 CA - SHA256 - G4,O=GlobalSign nv-sa,C=BE","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTMwMQYDVQQDEypHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAyIENBIC0gU0hBMjU2IC0gRzQ=","whitelist":false,"attachment":{"hash":"72db62fc54a69dcc4b1a4901db76c47a5
5d537320160cc5a8fbb0927080ef6d0","size":1764,"filename":"Somjy3lQL3f4pdxt3-mUebYuNRJSdhkiZOiWMZfaFJk=.pem","location":"security-state-staging/intermediates/173ac902-1ec7-4f50-8515-83dd7b63fb48.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Somjy3lQL3f4pdxt3+mUebYuNRJSdhkiZOiWMZfaFJk=","crlite_enrolled":false,"id":"e478fb02-efe1-44fa-8785-ca6be9105a6a","last_modified":1591199862097},{"schema":1591166877998,"derHash":"SkVVmtiWhLtDn80sxMXsD5LuBpLNa5djlX3jGi9GfMo=","subject":"CN=Enterprise Premium Public CA,O=Mitsubishi Electric Information Network Corporation,C=JP","subjectDN":"MHIxCzAJBgNVBAYTAkpQMTwwOgYDVQQKEzNNaXRzdWJpc2hpIEVsZWN0cmljIEluZm9ybWF0aW9uIE5ldHdvcmsgQ29ycG9yYXRpb24xJTAjBgNVBAMTHEVudGVycHJpc2UgUHJlbWl1bSBQdWJsaWMgQ0E=","whitelist":false,"attachment":{"hash":"48223edca6350527ab420c9318720f7b18a516efb69f4d3a590a6036f911ea66","size":2020,"filename":"9lt_Fzns7hF03gLZXsgVEGOFYGx2FHKYDGJ_mLKiYOQ=.pem","location":"security-state-staging/intermediates/ba6ce4e6-8bf6-4e20-
b6c7-6627aa13effb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9lt/Fzns7hF03gLZXsgVEGOFYGx2FHKYDGJ/mLKiYOQ=","crlite_enrolled":false,"id":"0ab7ad33-dfba-49fa-853d-2ba541df6e11","last_modified":1591199862094},{"schema":1591166867546,"derHash":"cNK5bnwEC2Jw/yC7a6mEITEq035GK+y4O+lQK4PfVpc=","subject":"CN=CERTDATA SSL DV CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MG4xCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExMDAuBgNVBAMMJ0NFUlREQVRBIFNTTCBEViBDQSAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"10d55d2c2cadcf08f96b96c50475b9f79aeea102d66ab44733cfbd5b499b113c","size":2129,"filename":"96wDgmEz6BSfBEFFYy6VQtjNjdFAvz3d60x4NuYW52A=.pem","location":"security-state-staging/intermediates/de9b3e8a-9359-4fdf-803d-cc3302061a0d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"96wDgmEz6BSfBEFFYy6VQtjNjdFAvz3d60x4NuYW52A=","crlite_enrolled":false,"id":"3ce95fd6-d1f8-4199-9fa8-c95bac94f
60f","last_modified":1591199862091},{"schema":1591166879750,"derHash":"9igmTHnb+9/P3sZDFxvcvU3nSD+cgOpZBoiHrkSaLkg=","subject":"CN=HARICA EV TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,L=Athens,C=GR","subjectDN":"MHwxCzAJBgNVBAYTAkdSMQ8wDQYDVQQHDAZBdGhlbnMxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ0ExIzAhBgNVBAMMGkhBUklDQSBFViBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"fceb3c305820e5740d776d78ddc750d3e1437be8b57d2d23a8d244530c7a9624","size":2475,"filename":"qQHYBA8HuHBDaaxDEsg5_SBSGWrd6XH3D7_lIoKEbz8=.pem","location":"security-state-staging/intermediates/f457a0bc-793c-495f-b9cf-cdda16dbe625.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qQHYBA8HuHBDaaxDEsg5/SBSGWrd6XH3D7/lIoKEbz8=","crlite_enrolled":false,"id":"93ed36ab-5394-4851-a2ff-ebe5055f9d98","last_modified":1591199862088},{"schema":1591166870531,"derHash":"iK+RXGbUJ/GTFVc6/jnFliyKEWju2z/4+KLtnbS+R5Q=","subject":"CN=TrustCor IV Email CA - G2,O=Tr
ustCor Systems S. de R.L.,C=PA","subjectDN":"MFcxCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xIjAgBgNVBAMMGVRydXN0Q29yIElWIEVtYWlsIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"040c4a3d4b54a50ec78e9f5629b11f91e34e93c44a7405f344d01e4eabf67ee4","size":1796,"filename":"8Go2wmmhcWTAHDnpeLCjSIByzS-G4W6HtvLhlIVNNAA=.pem","location":"security-state-staging/intermediates/5c86b050-ff2b-4fd2-8968-cd839be57614.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8Go2wmmhcWTAHDnpeLCjSIByzS+G4W6HtvLhlIVNNAA=","crlite_enrolled":false,"id":"053c0da4-29be-41ad-96a3-db952c73a378","last_modified":1591199862086},{"schema":1591166869000,"derHash":"RM6X9clX3QVtRMPhvfzrLPmntCjtCJg5JkM2MDvKx+8=","subject":"CN=CEDEFOP TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MGkxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMSEwHwYDVQQDDBhDRURFRk9QIFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment
":{"hash":"3026c201f734e5066c363d7aacffac89da4a95bf11bfcd83f195f70269ed6b89","size":2800,"filename":"56n8EMBsMqyH4pNbD4KmUsbeas26-ouP-jDHJMDFKcA=.pem","location":"security-state-staging/intermediates/258b19c6-10e8-4216-aa3d-5b45dfdfdd18.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"56n8EMBsMqyH4pNbD4KmUsbeas26+ouP+jDHJMDFKcA=","crlite_enrolled":false,"id":"763a3427-7045-435e-bbc2-31346fc77265","last_modified":1591199862083},{"schema":1591166866080,"derHash":"48JCed1qM3+IGxvGkuh49KMa/pWFHyCPlIALDCTYjDg=","subject":"CN=GeoTrust RSA CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFUdlb1RydXN0IFJTQSBDTiBDQSBHMg==","whitelist":false,"attachment":{"hash":"ab4a0d2c2f5e08bd7983cd7ef5ded4ca8f1b29963790a87f297d00860979dc97","size":1813,"filename":"LYxGolhhMxT6m_MXQhVdp6zkEP-xK8sxXN4I4pBqtFs=.pem","location":"security-state-staging/intermediates/b2b450c3-0185-461d-8eb2-c785ac2b386e.pem","mimetype":"application/x-pem-file"},"p
ubKeyHash":"LYxGolhhMxT6m/MXQhVdp6zkEP+xK8sxXN4I4pBqtFs=","crlite_enrolled":true,"id":"bb0939ee-0780-4a40-abd6-9461d85b0902","last_modified":1591199862080},{"schema":1591166863169,"derHash":"h6rZeKX+LulB5AaPmWPqKb2qWIeNJBIkmoLNIvgSbYI=","subject":"CN=University of Crete Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIG/MQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTAwLgYDVQQDDCdVbml2ZXJzaXR5IG9mIENyZXRlIENsaWVudCBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"692b3293cf1a2c637247f3db6669e730f76949fccde9d90ac06bdcef756d76d2","size":3092,"filename":"H9OjMfo3b9PnK6ZODqvqQ8917lxRCk2emeK5O_WdnJ8=.pem","location":"security-state-staging/intermediates/376fbaf1-eb26-410a-9ba7-3e657a2a3097.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H9OjMfo3b9PnK6ZO
DqvqQ8917lxRCk2emeK5O/WdnJ8=","crlite_enrolled":false,"id":"58bc984c-12d9-448c-8fcb-884fca564508","last_modified":1591199862077},{"schema":1591166860318,"derHash":"TQ/0Ld2VUufnd6bFdpVzcJkMroNjcXXmV86Ez2riElw=","subject":"CN=TrustCor IV Email CA - G2 - RSA,O=TrustCor Systems S. de R.L.,C=PA","subjectDN":"MF0xCzAJBgNVBAYTAlBBMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xKDAmBgNVBAMMH1RydXN0Q29yIElWIEVtYWlsIENBIC0gRzIgLSBSU0E=","whitelist":false,"attachment":{"hash":"6831a4af86aa2fceccfa00b8de0f564eda083e00e5ed0d648ef7faeb5148b941","size":1691,"filename":"8ktLjVrByicgpMzqI7L7d5WdKCuRsMvvZdUgHPdSMMM=.pem","location":"security-state-staging/intermediates/3ab0441b-91be-4203-a0a7-a673f60b6614.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8ktLjVrByicgpMzqI7L7d5WdKCuRsMvvZdUgHPdSMMM=","crlite_enrolled":false,"id":"a253a65f-3afa-4490-96c8-b2fefa45a8ea","last_modified":1591199862074},{"schema":1591166857432,"derHash":"cB6yP5VWTNVWnNIOXwXCiIkAuum6A6v1q+V7/gS1SmA=","subject":"CN=
HARICA EV TLS ECC SubCA R1,O=Hellenic Academic and Research Institutions CA,L=Athens,C=GR","subjectDN":"MHwxCzAJBgNVBAYTAkdSMQ8wDQYDVQQHDAZBdGhlbnMxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ0ExIzAhBgNVBAMMGkhBUklDQSBFViBUTFMgRUNDIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"2bdd6ee732808aea1903a2c083127ea36909183341515eb1c2d363248a76902d","size":1337,"filename":"guE2rUJ3slSQ9iYP0Ub25zrLqasAFng1eTC5H9BqTUg=.pem","location":"security-state-staging/intermediates/7fa0d0da-ae47-4777-b3fb-42cd8bced5c8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"guE2rUJ3slSQ9iYP0Ub25zrLqasAFng1eTC5H9BqTUg=","crlite_enrolled":false,"id":"7946e404-ecf2-49eb-932a-103eedce84ab","last_modified":1591199862071},{"schema":1591166861744,"derHash":"ZgjoSOY6aCBgm4VcIjJPa4yxU+3MgBMyVNcVa8PToCY=","subject":"CN=TrustOcean Organization Client Certification CA,O=TrustOcean Limited,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJUcnVzdE9jZWFuIExpbWl0ZWQxODA2BgNVBAMTL
1RydXN0T2NlYW4gT3JnYW5pemF0aW9uIENsaWVudCBDZXJ0aWZpY2F0aW9uIENB","whitelist":false,"attachment":{"hash":"65ea831c43dee9e586e0d0ae71fba096e656cdc1710cbec81161240dfaf2123c","size":2105,"filename":"YWMMSjIsV3sKAsZ1Dvh-XMo6c_3lrcidiB03ALvLATA=.pem","location":"security-state-staging/intermediates/0a25e298-0fdd-4f7e-bf45-bf211562056b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YWMMSjIsV3sKAsZ1Dvh+XMo6c/3lrcidiB03ALvLATA=","crlite_enrolled":false,"id":"0dba3544-d858-465f-b63e-47e4a678e132","last_modified":1591199862068},{"schema":1591166854460,"derHash":"DuACkMinHZheOL64TsrJ0Cm1WWcRnUfLy+NH8WTfS0o=","subject":"CN=GlobeSSL EV CA,O=CentralNic Luxembourg S\u00e0rl,C=LU","subjectDN":"MEwxCzAJBgNVBAYTAkxVMSQwIgYDVQQKDBtDZW50cmFsTmljIEx1eGVtYm91cmcgU8OgcmwxFzAVBgNVBAMTDkdsb2JlU1NMIEVWIENB","whitelist":false,"attachment":{"hash":"0fd5faa4f58b29049d8b91e89fec33c6dc0dec4eb75a8a1762d58c678142084b","size":2113,"filename":"CxpahwRxk_rjFSnTogI-dPS7QQ16sQ0GM12A7ChwIS4=.pem","location":"secu
rity-state-staging/intermediates/60a23013-1e93-4dc8-b52b-246c4ad92a03.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CxpahwRxk/rjFSnTogI+dPS7QQ16sQ0GM12A7ChwIS4=","crlite_enrolled":false,"id":"5bb075c8-70d6-4037-ac4b-2d7fe0e7d948","last_modified":1591199862065},{"schema":1591166851621,"derHash":"/UfLIwR4baJPhJ/KiKxcrUufwDf575LNt8YArxizKrg=","subject":"CN=MeSince Secure Email CA [Run by the Issuer],O=MeSince Technology Limited,C=CN","subjectDN":"MGkxCzAJBgNVBAYTAkNOMSMwIQYDVQQKExpNZVNpbmNlIFRlY2hub2xvZ3kgTGltaXRlZDE1MDMGA1UEAwwsTWVTaW5jZSBTZWN1cmUgRW1haWwgQ0EgIFtSdW4gYnkgdGhlIElzc3Vlcl0=","whitelist":false,"attachment":{"hash":"c5566f7d2a8434f0eddb8367a4cb46f563e2390f36ceac0355692ad81f11831d","size":2109,"filename":"YzIWVNY9JMWk52vFK7cRTkUR1BXsWaEnPD4uzbUepjc=.pem","location":"security-state-staging/intermediates/2ed8238c-f5b4-49af-a65c-37e040edf53b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YzIWVNY9JMWk52vFK7cRTkUR1BXsWaEnPD4uzbUepjc=","crlite_enrolled":false,
"id":"dea24760-68b1-4097-9960-86d8d488aaed","last_modified":1591199862062},{"schema":1591166849966,"derHash":"nOYws1+K4sZBnnNK2dL6MEdt2ec5Sx6Tsn+D93agJOo=","subject":"CN=AC Unidades de Sellado de Tiempo,OU=Ceres,O=FNMT-RCM,C=ES","subjectDN":"MHUxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ2VyZXMxGDAWBgNVBGEMD1ZBVEVTLVEyODI2MDA0SjEpMCcGA1UEAwwgQUMgVW5pZGFkZXMgZGUgU2VsbGFkbyBkZSBUaWVtcG8=","whitelist":false,"attachment":{"hash":"671a59fe01d2cd2074dbea84483abb7c9c75db400f3b54d2aebd79a620add787","size":2836,"filename":"RFLsjPTrs1EoFCjTCI7RLImxM2pGcGMiymQyT87-GT4=.pem","location":"security-state-staging/intermediates/ba299b7d-dc4a-4efd-b7d4-c67563ad72aa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RFLsjPTrs1EoFCjTCI7RLImxM2pGcGMiymQyT87+GT4=","crlite_enrolled":false,"id":"590c1b99-aca9-4c60-8b11-030c3d8071a5","last_modified":1591199862060},{"schema":1591166858926,"derHash":"JWQOYOqy1R//xDd28IewCzpzyFOa6EQKHL0BSHP+iCw=","subject":"CN=CERTDATA SMIME OV ECC CA [Run
by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MHQxCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExNjA0BgNVBAMMLUNFUlREQVRBIFNNSU1FIE9WIEVDQyBDQSAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"f7e54e3b9fd412e9b3097879572017a4abe1c6a15b59a5352aa1efbd5b7dd98c","size":1284,"filename":"B3SYowuqr6O2cz9jLEn6_2MBbD9I9YZYmd58lDVi-K0=.pem","location":"security-state-staging/intermediates/8e3d5211-286e-4f56-b365-1a73e696a4d5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B3SYowuqr6O2cz9jLEn6/2MBbD9I9YZYmd58lDVi+K0=","crlite_enrolled":false,"id":"98be93bb-bc71-4fc9-8bdd-f2c9c7737238","last_modified":1591199862057},{"schema":1591166855957,"derHash":"bXsxthrbeOvGp2YpaIYgnqjnT0YA2uR7eNo/CL559OU=","subject":"CN=Enterprise Premium Public CA,O=Mitsubishi Electric Information Network Corporation,C=JP","subjectDN":"MHIxCzAJBgNVBAYTAkpQMTwwOgYDVQQKEzNNaXRzdWJpc2hpIEVsZWN0cmljIEluZm9ybWF0aW9uIE5ldHdvcmsgQ29ycG9yYX
Rpb24xJTAjBgNVBAMTHEVudGVycHJpc2UgUHJlbWl1bSBQdWJsaWMgQ0E=","whitelist":false,"attachment":{"hash":"499764662760ff98d3639ab422aa0d20b4ef8daee619d174c63d3ba9e3f28abf","size":2003,"filename":"9lt_Fzns7hF03gLZXsgVEGOFYGx2FHKYDGJ_mLKiYOQ=.pem","location":"security-state-staging/intermediates/dadedae0-6925-4458-829e-3ca4f70bd690.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9lt/Fzns7hF03gLZXsgVEGOFYGx2FHKYDGJ/mLKiYOQ=","crlite_enrolled":false,"id":"38353e65-3a23-4c3e-8f3c-ed8f0e8dd8fd","last_modified":1591199862054},{"schema":1591166853045,"derHash":"ukJRIvMdm658vh5/ov9Det8oPgFDM0hfdpHLhWrsd2o=","subject":"CN=Harokopio University TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHYxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMS4wLAYDVQQDDCVIYXJva29waW8gVW5pdmVyc2l0eSBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"cdf8c52a3037ef4ea0b094b6ba99c9767673ebc4fd1c01418360482d28225ddf","
size":3031,"filename":"mTSefyaEu5Ue6uOHJdZVbu7WMV69SsHOEk-8P2x2eZw=.pem","location":"security-state-staging/intermediates/697fa4e3-d146-410d-a470-027574d10e7c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mTSefyaEu5Ue6uOHJdZVbu7WMV69SsHOEk+8P2x2eZw=","crlite_enrolled":false,"id":"da737b54-eb2a-4dd0-92d6-87dc7f62e5ee","last_modified":1591199862051},{"schema":1591166845601,"derHash":"fK7saA5kl/xRCQc/g4FueY8n+JaKJmPByVcRtUgZLjU=","subject":"CN=GeoTrust ECC CN CA G2,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFUdlb1RydXN0IEVDQyBDTiBDQSBHMg==","whitelist":false,"attachment":{"hash":"253b1b900adc6be80e90ac3862b020d22321e25976cb9c08fa7266318159ad58","size":1374,"filename":"5hUeeQGevtQx_9LReJqSkj73Yv0TUcld9s9jPFCqJqA=.pem","location":"security-state-staging/intermediates/ff6fd4b8-f7d7-4779-922b-29b398cecef6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5hUeeQGevtQx/9LReJqSkj73Yv0TUcld9s9jPFCqJqA=","crlite_enrolled":tr
ue,"id":"c542f5dc-33cb-490b-9311-a1dadc26b605","last_modified":1591199862048},{"schema":1591166848442,"derHash":"gmV1bdXNijfuYeQDUSiOSxaondJIwexOuiWq8WGr9Jg=","subject":"CN=AC Sector P\u00fablico,OU=Ceres,O=FNMT-RCM,C=ES","subjectDN":"MGcxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ2VyZXMxGDAWBgNVBGEMD1ZBVEVTLVEyODI2MDA0SjEbMBkGA1UEAwwSQUMgU2VjdG9yIFDDumJsaWNv","whitelist":false,"attachment":{"hash":"cfe09ce65e4dcbc8449292b7e92e1cdaacc6c228de14a49ccc6300fda8e73598","size":2816,"filename":"aN4wUQfL0YidepsDn9ylA8GoitH0XRdS349Qxylp2RU=.pem","location":"security-state-staging/intermediates/7f6c9b16-66e0-4bd8-bb34-a2812443ecfb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aN4wUQfL0YidepsDn9ylA8GoitH0XRdS349Qxylp2RU=","crlite_enrolled":false,"id":"72c55deb-6292-4294-b3d7-cd0eb0bc896a","last_modified":1591199862045},{"schema":1591166842796,"derHash":"Gvi01Jxae22lNt6pL9+vRXNiBa/KLa//rstxLanD69E=","subject":"CN=Technical University of Crete TLS RSA SubCA R1,O=Hellenic
Academic and Research Institutions CA,C=GR","subjectDN":"MH8xCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTcwNQYDVQQDDC5UZWNobmljYWwgVW5pdmVyc2l0eSBvZiBDcmV0ZSBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"900dcce8153813e7b2c906ae9d9fa6097afb0dc015d9e872eb1ab2b64a110ab5","size":2800,"filename":"t--9MaZjKuDEfu4IV5cTbN0TXadfwJu6Tn4gQDEWuoo=.pem","location":"security-state-staging/intermediates/c78cc87b-67ad-4dd7-a00f-ea7badd2fb2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"t++9MaZjKuDEfu4IV5cTbN0TXadfwJu6Tn4gQDEWuoo=","crlite_enrolled":false,"id":"d8b67105-91c0-4a05-8e13-ccb8eacc591f","last_modified":1591199862043},{"schema":1591166841277,"derHash":"d81ReEppPZSC5+ppTkBTvP2d9lWA+84UsqdSfAgYA+E=","subject":"CN=DigiCert Assured ID TLS CA G2,O=DigiCert Inc,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJjAkBgNVBAMTHURpZ2lDZXJ0IEFzc3VyZWQgSUQgVExTIENBIEcy","whitelist":false,"attachment":{"h
ash":"38c26b5824725648f58682db859677ed5f482b8a98476190e2f4b5cea965ce52","size":1918,"filename":"7DHaE3Q3dQ9k5S7DaYbXog4BK-Oj492ta3kc2xRJ04s=.pem","location":"security-state-staging/intermediates/84f2426b-c265-4fe5-8bcc-09e6d612433c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7DHaE3Q3dQ9k5S7DaYbXog4BK+Oj492ta3kc2xRJ04s=","crlite_enrolled":true,"id":"d8d54086-08a6-43e4-94b4-1d46de796b92","last_modified":1591199862040},{"schema":1591166835191,"derHash":"0UBlCwqh/FTfkstGmFM3wGghRyd3CUfWeIWJpSAH6iA=","subject":"CN=GEANT Code Signing CA 4,O=GEANT Vereniging,C=NL","subjectDN":"MEoxCzAJBgNVBAYTAk5MMRkwFwYDVQQKExBHRUFOVCBWZXJlbmlnaW5nMSAwHgYDVQQDExdHRUFOVCBDb2RlIFNpZ25pbmcgQ0EgNA==","whitelist":false,"attachment":{"hash":"edc93cb9e5360feec50b43ae80da119d4e71408c3e9c92723064f3b2cc06cf8c","size":2446,"filename":"6rWABF2Zr2RIZW___Nsg04EsGouKiLCsOwLLFjWmcjI=.pem","location":"security-state-staging/intermediates/4e49cd28-5206-49f1-9fb9-df5b2bc7780d.pem","mimetype":"application/x-pem-f
ile"},"pubKeyHash":"6rWABF2Zr2RIZW///Nsg04EsGouKiLCsOwLLFjWmcjI=","crlite_enrolled":false,"id":"a60ee48d-740a-4c85-a973-cb905e3ec7bf","last_modified":1591199862036},{"schema":1591166844241,"derHash":"hzBOlUqqHTzYf9dXT/8/YNmEhHdEObE+L3EHGiz9oJU=","subject":"CN=CERTDATA CODESIGN CA [Run by the Issuer],O=CERTDATA SERVICOS DE INFORMACAO LTDA,C=BR","subjectDN":"MHAxCzAJBgNVBAYTAkJSMS0wKwYDVQQKEyRDRVJUREFUQSBTRVJWSUNPUyBERSBJTkZPUk1BQ0FPIExUREExMjAwBgNVBAMMKUNFUlREQVRBIENPREVTSUdOIENBICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"hash":"1c51a822d23a496a6903a26b1c85074c8be0264142891eeda4cd9a5cb80ad364","size":2105,"filename":"Lb_GZlDH8vWm-YzPSBkFTGAPcXFglJ0TRI1d5ylxKrY=.pem","location":"security-state-staging/intermediates/cc5c3cf7-c249-4d97-8a2f-f76d61d333e3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Lb/GZlDH8vWm+YzPSBkFTGAPcXFglJ0TRI1d5ylxKrY=","crlite_enrolled":false,"id":"fe08a0b2-fc6d-4141-8f1d-bc618e428b98","last_modified":1591199862033},{"schema":159116
6833781,"derHash":"GYXnA415CbsDcMFplx+zPvcF+jvp+tG/iyrnwhTgST8=","subject":"CN=Sectigo Partners - Code Signing - RSA,O=Sectigo Limited,C=GB","subjectDN":"MFcxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxLjAsBgNVBAMTJVNlY3RpZ28gUGFydG5lcnMgLSBDb2RlIFNpZ25pbmcgLSBSU0E=","whitelist":false,"attachment":{"hash":"7a7ac856690ca8a49161e5fdc6c4dd5cb328afc0b9ac474458d175401361f4f8","size":2231,"filename":"uVuyzfpTK-HYz0FgOd2jzoYbT2MGEVb8eXyyy7nusfA=.pem","location":"security-state-staging/intermediates/524618c9-698b-4f29-bc7e-77e200e21e58.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uVuyzfpTK+HYz0FgOd2jzoYbT2MGEVb8eXyyy7nusfA=","crlite_enrolled":false,"id":"d807888d-c6f2-4a81-9246-abd565f41150","last_modified":1591199862030},{"schema":1591166839860,"derHash":"z9/vA3z9vWuw4xHpuygcpgJxxdriaVMSAzgG+ksOlLc=","subject":"CN=Greek School Network TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHYxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZ
W1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMS4wLAYDVQQDDCVHcmVlayBTY2hvb2wgTmV0d29yayBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"dfe124f290af20e4aa698fc6a6d8efa83d2a2f2cf9a8704bc47d19592ed8888a","size":3275,"filename":"Qrg8oKp5CK8PmUjVC4rnbh8VZo2IQZkWRT9cewFmdNw=.pem","location":"security-state-staging/intermediates/e342d812-7acc-4bc9-aa30-015331e0e0db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Qrg8oKp5CK8PmUjVC4rnbh8VZo2IQZkWRT9cewFmdNw=","crlite_enrolled":true,"id":"967aadb0-2c9f-4c7c-b505-fd576df66e1b","last_modified":1591199862023},{"schema":1591166838271,"derHash":"REzv7dg/YxXF7Iay8c1jsdvyOHz6K+sPtAAVPyr5QI8=","subject":"CN=University of Macedonia Client RSA SubCA R1,OU=Hellenic Academic and Research Institutions CA,O=Greek Universities Network (GUnet),C=GR","subjectDN":"MIHDMQswCQYDVQQGEwJHUjErMCkGA1UECgwiR3JlZWsgVW5pdmVyc2l0aWVzIE5ldHdvcmsgKEdVbmV0KTEYMBYGA1UEYQwPVkFUR1ItMDk5MDI4MjIwMTcwNQYDVQQLDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zd
Gl0dXRpb25zIENBMTQwMgYDVQQDDCtVbml2ZXJzaXR5IG9mIE1hY2Vkb25pYSBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"3cb71d057e94e927b5ef03b43ad9a43ca78cb4663db298c5d097a9c5c989ae0d","size":2901,"filename":"8lsb1Oss51hyiC9R8zhI90GFGgrz-w6UmqlE_DbZuX4=.pem","location":"security-state-staging/intermediates/4f2758f5-69bb-4081-811e-affa0ea3cbf9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8lsb1Oss51hyiC9R8zhI90GFGgrz+w6UmqlE/DbZuX4=","crlite_enrolled":false,"id":"9686b556-ebcc-448d-9ed4-fff34d4ae0c2","last_modified":1591199862020},{"schema":1591166836780,"derHash":"VtWLJvRb84eK9DlwFqlq9IbpiV9mxfO3MXUSCztOSkg=","subject":"CN=Telenor Norge AS EDC CA G2,O=Telenor Norge AS,C=NO","subjectDN":"ME0xCzAJBgNVBAYTAk5PMRkwFwYDVQQKExBUZWxlbm9yIE5vcmdlIEFTMSMwIQYDVQQDExpUZWxlbm9yIE5vcmdlIEFTIEVEQyBDQSBHMg==","whitelist":false,"attachment":{"hash":"0213f2f3333de40ecac4484546d04528fd3fd4e937d6bae029cdb7a55f97c3ab","size":1955,"filename":"7uuCeOn6U9gLfnVl6djAetEiPQL_HYdnX8odqQvPT
oY=.pem","location":"security-state-staging/intermediates/bc5ecf10-0122-4293-aaa0-a410bbc06f12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7uuCeOn6U9gLfnVl6djAetEiPQL/HYdnX8odqQvPToY=","crlite_enrolled":false,"id":"32ba5d1f-5bfb-44bb-b751-d686a7cc74d9","last_modified":1591199862017},{"schema":1591166832366,"derHash":"HhMjmuBLlxvd5lOv38cyRDi44UbFxIqBcDEibJV2RTk=","subject":"CN=GlobeSSL DV CA,O=CentralNic Luxembourg S\u00e0rl,C=LU","subjectDN":"MEwxCzAJBgNVBAYTAkxVMSQwIgYDVQQKDBtDZW50cmFsTmljIEx1eGVtYm91cmcgU8OgcmwxFzAVBgNVBAMTDkdsb2JlU1NMIERWIENB","whitelist":false,"attachment":{"hash":"46ff926f845cbf0b70cc18fe28ae6ecc15392b7bf6d30f53d5e62c20fc4a177b","size":2085,"filename":"z9mSm0UWyXCmP7GyKCI8befW1Y69hzCdVgD4FqXpCJY=.pem","location":"security-state-staging/intermediates/e7f0cdf9-77c2-4123-9a86-5c429ea6c98a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z9mSm0UWyXCmP7GyKCI8befW1Y69hzCdVgD4FqXpCJY=","crlite_enrolled":false,"id":"64111cc5-6679-4853-a02f-ad3d4544e9
23","last_modified":1591199862014},{"schema":1591166828107,"derHash":"dpIe23/lVTsM6d1DiMhBZinrwO0KGjmUFarVwFDpUKA=","subject":"CN=TrustID CA A13,O=IdenTrust,C=US","subjectDN":"MDoxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxFzAVBgNVBAMTDlRydXN0SUQgQ0EgQTEz","whitelist":false,"attachment":{"hash":"9d6ffa6d28de01541ba5efbc6e4af6ad8ba66e234f6b7eb4b9dcc0b58dc5bdc5","size":2346,"filename":"ryhrFN5k_1-bedv_3wzS8mqzqbXS5FAb4dH-qLx8XhI=.pem","location":"security-state-staging/intermediates/4a7062e9-fc48-4b84-8615-7d355f7faa4d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ryhrFN5k/1+bedv/3wzS8mqzqbXS5FAb4dH+qLx8XhI=","crlite_enrolled":false,"id":"746f8a3c-27b7-4e5a-9ed7-4a5e59633474","last_modified":1591199862011},{"schema":1591166829580,"derHash":"TjD4AEwY09eY7Fp3NDRrWl6+jVRCPOmCV/xXc1pvc40=","subject":"CN=DigiCert High Assurance CA-3b,O=DigiCert Inc,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJjAkBgNVBAMTHURpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIENBLTNi","whitel
ist":false,"attachment":{"hash":"cc6e9717bc66f910a2529ed604fb79e0564914be23443f51afe962a3afe09891","size":2048,"filename":"1jqJVFODXrZURu0Yd9r3uRS24OAQ3A4Crn2vR8KpNT8=.pem","location":"security-state-staging/intermediates/6990bf85-33f3-4e45-a819-27baa0ed7dcb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1jqJVFODXrZURu0Yd9r3uRS24OAQ3A4Crn2vR8KpNT8=","crlite_enrolled":false,"id":"6fe7a90f-5366-4061-a9ed-581dae6a646b","last_modified":1591199862009},{"schema":1591166823456,"derHash":"3JmT3DOnH9lYCHh9GaS1VwTmAdV+vOrMiALHi1w29cc=","subject":"CN=Greek Universities Network TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHwxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTQwMgYDVQQDDCtHcmVlayBVbml2ZXJzaXRpZXMgTmV0d29yayBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"37aeafbaa92c269e67ec01c7b961f23ddae3ee344c134b4601de4378c0e7af0a","size":2800,"filename":"-Wo-2quCv6ywG-coso5aG2NSMQ-PKh
ucBmfbix2syuA=.pem","location":"security-state-staging/intermediates/67373d63-a254-4c05-8ac5-9407ec4d672e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+Wo+2quCv6ywG+coso5aG2NSMQ+PKhucBmfbix2syuA=","crlite_enrolled":false,"id":"1c09be64-b512-4449-834f-8ca5f3fa50ad","last_modified":1591199862005},{"schema":1591166819038,"derHash":"uE1wmCCo/rQc4YcuI3JgtEb5m9PMFY93ONkUaxP65k4=","subject":"CN=Thomson Reuters Special Services CA - G2,O=Thomson Reuters Special Services LLC,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMS0wKwYDVQQKEyRUaG9tc29uIFJldXRlcnMgU3BlY2lhbCBTZXJ2aWNlcyBMTEMxMTAvBgNVBAMTKFRob21zb24gUmV1dGVycyBTcGVjaWFsIFNlcnZpY2VzIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"9ba10b792ea0079372689444dff84857253c95f3026cc8b37b262818bc7a2535","size":2012,"filename":"YhdjD_JSKwUqNm1zwQIQCcIsBmHPhcQoPb28p5I61o0=.pem","location":"security-state-staging/intermediates/1793240d-0e71-4b88-944b-d72dd3cbfc93.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YhdjD/JSKwUqNm1zwQIQ
CcIsBmHPhcQoPb28p5I61o0=","crlite_enrolled":false,"id":"edc96d6d-34ad-40e9-9a79-45ea18971be4","last_modified":1591199862002},{"schema":1591166825015,"derHash":"IazB29aUT5rBjHgstcMo1sKCHGtjcx+juJh/ViXeig0=","subject":"CN=ZeroSSL RSA Domain Secure Site CA,O=ZeroSSL,C=AT","subjectDN":"MEsxCzAJBgNVBAYTAkFUMRAwDgYDVQQKEwdaZXJvU1NMMSowKAYDVQQDEyFaZXJvU1NMIFJTQSBEb21haW4gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"2c3ace9b9a1c08d3905fc990df49b6936f78e356141ef0cd8969bdb44ec78bff","size":2430,"filename":"R3hcMOAGw0WFztuG2skTodoHp8IGid3Qg63Cn7YUYoM=.pem","location":"security-state-staging/intermediates/5681e683-bd54-4255-89fe-dce439358be4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"R3hcMOAGw0WFztuG2skTodoHp8IGid3Qg63Cn7YUYoM=","crlite_enrolled":false,"id":"a8da5928-6b84-408c-9441-1ac7d1244157","last_modified":1591199861999},{"schema":1591166830965,"derHash":"XavaBGJy7siey5WmKX26kQ0BRPfutYFNBzrlSkqM9kY=","subject":"CN=University of Crete TLS RSA SubCA R1,O=Helleni
c Academic and Research Institutions CA,C=GR","subjectDN":"MHUxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMS0wKwYDVQQDDCRVbml2ZXJzaXR5IG9mIENyZXRlIFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"1a950b8eac9bc2e6e71ab38a9bd317e2540c5b960b7ee7f5ef04e55f6503f36b","size":3011,"filename":"OiyYqIVTvazzKZtgPhUjzE_UUtrL4LTPfcYtNSGRrdI=.pem","location":"security-state-staging/intermediates/e011b9cd-3b7e-4057-a812-404fbb369589.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OiyYqIVTvazzKZtgPhUjzE/UUtrL4LTPfcYtNSGRrdI=","crlite_enrolled":false,"id":"4617dbad-655a-4429-a26e-d3c7a2641c18","last_modified":1591199861996},{"schema":1591166826539,"derHash":"V1LF+9wDVD8M7GzSlM2WXY0yxOqpk9VQ8kSR7Pm3ODY=","subject":"CN=Telenor Norge AS NF CA G2,O=Telenor Norge AS,C=NO","subjectDN":"MEwxCzAJBgNVBAYTAk5PMRkwFwYDVQQKExBUZWxlbm9yIE5vcmdlIEFTMSIwIAYDVQQDExlUZWxlbm9yIE5vcmdlIEFTIE5GIENBIEcy","whitelist":false,"attachment":{"hash":"7e1f
ff6b49d5243587acf127f86270b07767650ad23faf0c11778a3edc03a380","size":1951,"filename":"3vqCc3GvO_KCc0HjvSktu5UdgOfPXvv9g0xLuhW7svg=.pem","location":"security-state-staging/intermediates/42892b56-dead-4e2d-823c-ff62093f319c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3vqCc3GvO/KCc0HjvSktu5UdgOfPXvv9g0xLuhW7svg=","crlite_enrolled":false,"id":"e9407fe4-846e-4c28-8e38-5e374b619d88","last_modified":1591199861993},{"schema":1591166821852,"derHash":"3aS+P3jG10KxABRsJgEbQXUq67gQwEWIw6+B8NNFERg=","subject":"CN=Telenor Norge B2B2 CA,O=Telenor Norge AS,C=NO","subjectDN":"MEgxCzAJBgNVBAYTAk5PMRkwFwYDVQQKExBUZWxlbm9yIE5vcmdlIEFTMR4wHAYDVQQDExVUZWxlbm9yIE5vcmdlIEIyQjIgQ0E=","whitelist":false,"attachment":{"hash":"6075146652fc2c8712240812655579c519cfa4dfc6c95b4fb2dcdb1b134a6cdd","size":1947,"filename":"m5f-WLbmqsgq9Tc-cBMKCyJTMDtguE7B72yjk-002fs=.pem","location":"security-state-staging/intermediates/7219b684-e0b2-4d03-8a8d-449dc5f93118.pem","mimetype":"application/x-pem-file"},"pubKeyHa
sh":"m5f+WLbmqsgq9Tc+cBMKCyJTMDtguE7B72yjk+002fs=","crlite_enrolled":false,"id":"a8c73c58-80a6-4c4a-9371-adae40c783bf","last_modified":1591199861990},{"schema":1591166817594,"derHash":"NhledtZVmIiLBeOJnyESqcW+tngVXrgVwzccy6fDeBk=","subject":"CN=ZeroSSL RSA Business Secure Site CA,O=ZeroSSL,C=AT","subjectDN":"ME0xCzAJBgNVBAYTAkFUMRAwDgYDVQQKEwdaZXJvU1NMMSwwKgYDVQQDEyNaZXJvU1NMIFJTQSBCdXNpbmVzcyBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"d98d4219b4cefa57646bea3e49feeb4adf39e63225477fe89ec365decf6cd3dc","size":2430,"filename":"-xzCearoGbvh_Q0yMU_NCkm14rjMFnaa57u3iwTvlBk=.pem","location":"security-state-staging/intermediates/c6ec3db2-572e-4487-b311-5e2bb57fa8ca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+xzCearoGbvh/Q0yMU/NCkm14rjMFnaa57u3iwTvlBk=","crlite_enrolled":false,"id":"128d8a90-b885-4e90-b004-dcf4a4564270","last_modified":1591199861985},{"schema":1591167126696,"derHash":"DtmWPhu6BBfh/Be9OOkgYfllETuSHLNX8THxLwhTRVc=","subject":"CN=WoTrus OV Serve
r CA [Run by the Issuer],O=WoTrus CA Limited,C=CN","subjectDN":"MFwxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1RydXMgQ0EgTGltaXRlZDExMC8GA1UEAwwoV29UcnVzIE9WIFNlcnZlciBDQSAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"42e74afbec45396f4ca75a68524ec41e4332f766126f2a85e7495b95deab1db7","size":2097,"filename":"B2o6KjBMvs-b5LG04FOX1d-Dw82KgV4aPdu-Q6Wq764=.pem","location":"security-state-staging/intermediates/92525c20-b370-4991-8043-7acb57900e5e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B2o6KjBMvs+b5LG04FOX1d+Dw82KgV4aPdu+Q6Wq764=","crlite_enrolled":true,"id":"c4da2cdb-1ad8-4e7d-b6ba-ac427bb25786","last_modified":1591199861982},{"schema":1591167123560,"derHash":"J+/mgsdHnDgTOglDZm+8kQP8uxqRljTkOXEcvqfjz8c=","subject":"CN=WoTrus EV Server CA [Run by the Issuer],O=WoTrus CA Limited,C=CN","subjectDN":"MFwxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1RydXMgQ0EgTGltaXRlZDExMC8GA1UEAwwoV29UcnVzIEVWIFNlcnZlciBDQSAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":
{"hash":"f9a24f721b157cb04a8b7d174607e009aac14567c63b22e7c3e17aa9f2d8fda5","size":2129,"filename":"7gcte6Sz2PaLDgthd1WawzH-5AZvEHps9kxV7G1Z6nU=.pem","location":"security-state-staging/intermediates/76d7666f-4a9f-47f3-bf8e-01730383b16c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7gcte6Sz2PaLDgthd1WawzH+5AZvEHps9kxV7G1Z6nU=","crlite_enrolled":true,"id":"82c567ab-3eb1-4255-b03a-4fe090b864b8","last_modified":1591199861980},{"schema":1591167113685,"derHash":"MJp4I7s9Hd9EpXPsC/n9UWZiX95zd2GExiIStMC06U4=","subject":"CN=Root Global CA - G2,O=Root Networks\\, LLC,C=US","subjectDN":"MEgxCzAJBgNVBAYTAlVTMRswGQYDVQQKDBJSb290IE5ldHdvcmtzLCBMTEMxHDAaBgNVBAMME1Jvb3QgR2xvYmFsIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"cfe4daa3fda4a067b507bc4e87a81144512c76604b39da965d2fd02591e76353","size":1715,"filename":"SWMEi8LaBMvhivSePD6iqXTAoaa_XCxGaHOnp0EwbRU=.pem","location":"security-state-staging/intermediates/21c96bd4-d994-48b4-8aaf-e1fc560e61ab.pem","mimetype":"application/x-pem-fi
le"},"pubKeyHash":"SWMEi8LaBMvhivSePD6iqXTAoaa/XCxGaHOnp0EwbRU=","crlite_enrolled":true,"id":"1416d740-c734-4daa-8679-a129b8a0cdb3","last_modified":1591199861974},{"schema":1591167110583,"derHash":"RnJ7kMWl9zN1CC2bG8nxe0RfUCCpXjff3x7yCyh8URU=","subject":"CN=University of Ioannina TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHgxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTAwLgYDVQQDDCdVbml2ZXJzaXR5IG9mIElvYW5uaW5hIFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"2b27a5e354cb0f9e8d1cd07448eeb318b0abc320a26fb40bda7d124841bae222","size":2836,"filename":"PUZlCSUltdtmQPkFYuFiu4nfB3U5nmSRkJODEG7M5_U=.pem","location":"security-state-staging/intermediates/15ccea59-9c05-4ced-ac5a-7cc1be35692f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PUZlCSUltdtmQPkFYuFiu4nfB3U5nmSRkJODEG7M5/U=","crlite_enrolled":true,"id":"e529cfbf-9677-400f-b048-dcf098de3231","last_modified":1591199861972}
,{"schema":1591167114876,"derHash":"I9OqLFMTb3if98Ix6StiEPzHuA5dpCh8XfG8UltPRhI=","subject":"CN=Panteion University of Social and Political Sciences CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGYMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQzBBBgNVBAMTOlBhbnRlaW9uIFVuaXZlcnNpdHkgb2YgU29jaWFsIGFuZCBQb2xpdGljYWwgU2NpZW5jZXMgQ0EgUjE=","whitelist":false,"attachment":{"hash":"320da917aa844f5f9f72ad1a881171ff49ab6edc207d3bc18409b484b1b9bdfa","size":2560,"filename":"VMbQEJYB6stdyxcbVix1ggpyIpDl04eRjPtwyopAi3M=.pem","location":"security-state-staging/intermediates/e1bbdbc4-35da-419b-a610-9112dcfc0c44.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VMbQEJYB6stdyxcbVix1ggpyIpDl04eRjPtwyopAi3M=","crlite_enrolled":false,"id":"bb2a53c8-67d7-40e4-bc04-8215a0a2f253","last_modified":1591199861969},{"schema":1591167101480,"derHash":"2v0lBqfpF8Em5ZBEeUOdd5UIfwT6e75hR5Zye5oWHW8=","su
bject":"CN=vTrus OV SSL CA G1,O=iTrusChina Co.\\, Ltd.,C=CN","subjectDN":"MEkxCzAJBgNVBAYTAkNOMR0wGwYDVQQKDBRpVHJ1c0NoaW5hIENvLiwgTHRkLjEbMBkGA1UEAwwSdlRydXMgT1YgU1NMIENBIEcx","whitelist":false,"attachment":{"hash":"6d43b5a68905a0f438a343d2b49648cb9b0920fd66cc6fcdd135b5e84025a94a","size":1715,"filename":"iJYYHEjYNccDf7l4rZqt8_6DdC728xy4x8RcQNOya3o=.pem","location":"security-state-staging/intermediates/f238a915-dd39-437d-96c4-daca3c66e661.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iJYYHEjYNccDf7l4rZqt8/6DdC728xy4x8RcQNOya3o=","crlite_enrolled":true,"id":"5a1bc619-eb90-4733-b11b-42fc5acbb075","last_modified":1591199861967},{"schema":1591167135744,"derHash":"5n0YY5NnxbKb96VoO1aw8MIxVcj+lFK8/lFoFDYCN0I=","subject":"CN=Abitab SSL Domain Validated,OU=IDdigital,O=Abitab S.A.,C=UY","subjectDN":"MF0xCzAJBgNVBAYTAlVZMRQwEgYDVQQKDAtBYml0YWIgUy5BLjESMBAGA1UECwwJSURkaWdpdGFsMSQwIgYDVQQDDBtBYml0YWIgU1NMIERvbWFpbiBWYWxpZGF0ZWQ=","whitelist":false,"attachment":{"hash":"8256a9036481e143
55f63a485a8508dd9d4b897eba0e2777a7ceada7c537c808","size":1699,"filename":"9wg1kxbl_ew-5-7tpattPPu_j9bgDctkucNkpOG-U6s=.pem","location":"security-state-staging/intermediates/8b5bc65e-d9cc-4c82-9694-c4d4d3657828.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9wg1kxbl/ew+5+7tpattPPu/j9bgDctkucNkpOG+U6s=","crlite_enrolled":true,"id":"1568c2be-d6ba-48ba-b4b8-ce6ec52e0dbc","last_modified":1591199861964},{"schema":1591167122329,"derHash":"aX5BqFolPHZaMesYD3jH8QR0nWYsGlNMhDsOWDgFvjc=","subject":"CN=EINS/PKI Public Certification Authority V3,O=INTEC INC.,C=JP","subjectDN":"MFcxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpJTlRFQyBJTkMuMTMwMQYDVQQDEypFSU5TL1BLSSBQdWJsaWMgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgVjM=","whitelist":false,"attachment":{"hash":"cf959bad362e7e0decfbc518291b8dc872e98c2081554568f886e4a2eb24aae3","size":1622,"filename":"Vqrl6W9KGP-r7gtDX4gbt-n6LV6FCHcVDcRFRLJbrrE=.pem","location":"security-state-staging/intermediates/ab2b03cd-7a34-4a64-9be7-9fd364ce7517.pem","mimetype":"application/
x-pem-file"},"pubKeyHash":"Vqrl6W9KGP+r7gtDX4gbt+n6LV6FCHcVDcRFRLJbrrE=","crlite_enrolled":false,"id":"3a33f401-da1b-4241-a126-531a94e3c243","last_modified":1591199861940},{"schema":1591167117608,"derHash":"ltxhXR892QAu5eYosoAe7Qe5Hw5FrK3t7na8YT2gbL0=","subject":"CN=Gehirn Managed Certification Authority - RSA EV,OU=Controlled by COMODO CA exclusively for Gehirn Inc.,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIHAMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMTwwOgYDVQQLEzNDb250cm9sbGVkIGJ5IENPTU9ETyBDQSBleGNsdXNpdmVseSBmb3IgR2VoaXJuIEluYy4xODA2BgNVBAMTL0dlaGlybiBNYW5hZ2VkIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gUlNBIEVW","whitelist":false,"attachment":{"hash":"bf7465d428608f121b033890ad1a75ce11462b529bb64e1998a64bae2c60d26e","size":2276,"filename":"MQrt-wrOan6w852uOuU2w7xe24wLLPV42Kyxv47Qm84=.pem","location":"security-state-staging/intermediates/6236a16a-b874-4440-b6ea-722270af5ec8.pem","mimetype":"application/x-pem-file"},"p
ubKeyHash":"MQrt+wrOan6w852uOuU2w7xe24wLLPV42Kyxv47Qm84=","crlite_enrolled":false,"id":"8e8cddfa-e58f-4def-a0f9-af5024b733c8","last_modified":1591199861911},{"schema":1591167095567,"derHash":"q9bQU/2+NW0HUFAYFYawucK4wDKYq85kziXEBAHfOyI=","subject":"CN=Hostpoint DV SSL CA - G2,OU=Domain Validated SSL,O=Hostpoint AG,C=CH","subjectDN":"MGYxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxIb3N0cG9pbnQgQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMSEwHwYDVQQDExhIb3N0cG9pbnQgRFYgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"87053a64d9eb3524427e4a3d04f8b5844ad96645dd5d5a59da38eafecbec5e2b","size":1654,"filename":"jjxkrzcP29b_8ZkP1-su2vb2ZcV_BkodMS4zGp_DloM=.pem","location":"security-state-staging/intermediates/0bd40108-386a-406c-80a3-b90b463997bf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jjxkrzcP29b/8ZkP1+su2vb2ZcV/BkodMS4zGp/DloM=","crlite_enrolled":false,"id":"019b18c2-b025-4793-9449-53a85c827c76","last_modified":1591199861873},{"schema":1591167128660,"derHash":"KrTf9p11u/lUEGC0NM
5a0MTay3rw2/IdNhavy0c3lt4=","subject":"CN=Certum Class I CA SHA2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MHsxCzAJBgNVBAYTAlBMMSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxHzAdBgNVBAMTFkNlcnR1bSBDbGFzcyBJIENBIFNIQTI=","whitelist":false,"attachment":{"hash":"42c093531894319de5b6736e8bb7302536bb599cd0c23045983bc8cdb0398cbf","size":1711,"filename":"DlML3IIZYmKbkc5sg_Vlwu7GmLOhTHxlwiDnuM8uXco=.pem","location":"security-state-staging/intermediates/537f9e86-0aa2-4487-ac82-d4e6d63a5030.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DlML3IIZYmKbkc5sg/Vlwu7GmLOhTHxlwiDnuM8uXco=","crlite_enrolled":false,"id":"f0bd44f2-5281-42f1-ae71-9815dbe807b3","last_modified":1591199861864},{"schema":1591167103436,"derHash":"rv/kM17lZCLpJ/Rela4UK56zWXmnQAVprpvepsqrwdw=","subject":"CN=SHECA Global G3 SSL,O=UniTrust,ST=Shanghai,C=CN","subjectDN":"MFExCzAJBgNVBAYTAkNOMREwDwYDVQQIDAhTaGFuZ2hhaTERMA8GA1UEC
gwIVW5pVHJ1c3QxHDAaBgNVBAMME1NIRUNBIEdsb2JhbCBHMyBTU0w=","whitelist":false,"attachment":{"hash":"966814ad4c7925d39057eb115ca90947f532fe888d00abdd9884f26cad189f7d","size":1999,"filename":"-3DYv-zWynH_VKDDzSsG9R5GfeXFt--F4B8P0tAoRsU=.pem","location":"security-state-staging/intermediates/72f5db49-9653-406b-b129-7db8f562a09a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+3DYv+zWynH/VKDDzSsG9R5GfeXFt++F4B8P0tAoRsU=","crlite_enrolled":false,"id":"9a5f7622-15ab-419e-9203-7b79dd0f844e","last_modified":1591199861813},{"schema":1591167118391,"derHash":"QT7CqkZXCIQ3XaAfo6LCNSzVzwK/rLnQAWJacTesbyw=","subject":"SERIALNUMBER=201504,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDQ=","whitelist":false,"attachment":{"hash":"becc7a19429c3fe510ce2088a493ef9860f8e74fc31f972b853d1a6d6d7ddec9","size":2093,"filename":"u-gqJoIpOdY1O3UZ68GeSClDGGp95Ws_umP8zyOohyA=.pem","location":"security-state-staging/intermediates/afe856e5-1628-4340-8086-2
841883f1ebd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"u+gqJoIpOdY1O3UZ68GeSClDGGp95Ws/umP8zyOohyA=","crlite_enrolled":true,"id":"6c785882-b0f8-4ced-9bdc-d7ab6d035040","last_modified":1591199861786},{"schema":1591167127871,"derHash":"whCHQWu/mDuf/kD11W7g/9lOseZmsEpTKt5ILsIB1nw=","subject":"CN=Wells Fargo Certificate Authority WS1,OU=Symantec Trust Network,O=Wells Fargo,C=US","subjectDN":"MHQxCzAJBgNVBAYTAlVTMRQwEgYDVQQKEwtXZWxscyBGYXJnbzEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEuMCwGA1UEAxMlV2VsbHMgRmFyZ28gQ2VydGlmaWNhdGUgQXV0aG9yaXR5IFdTMQ==","whitelist":false,"attachment":{"hash":"cba0f94ea2cabab47d4fc2cff80461a012e1384fdf9dae249dbda8696bac62da","size":1845,"filename":"1qvJcavhwfdLbQFNDvMFYaClqSTldkdYglp4N1CvDAE=.pem","location":"security-state-staging/intermediates/605850ac-8284-471d-b389-57594942215e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1qvJcavhwfdLbQFNDvMFYaClqSTldkdYglp4N1CvDAE=","crlite_enrolled":false,"id":"8dbc9b5b-c846-432c-87e4-5c44cbc82
bce","last_modified":1591199861782},{"schema":1591167127088,"derHash":"j9FqF5lE1dHUIK8JQF7aer8qnHQog+jC+J4NkK+vdUs=","subject":"CN=AC Representaci\u00f3n,OU=CERES,O=FNMT-RCM,C=ES","subjectDN":"ME0xCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ0VSRVMxGzAZBgNVBAMMEkFDIFJlcHJlc2VudGFjacOzbg==","whitelist":false,"attachment":{"hash":"fbb63f349bcc5868c551877141aadf4dc7c5f336ecd9ff3349ae89d79806d799","size":2438,"filename":"2ldsefSfkTU7GGXfz4iYiPnOUDkbKiYdUaPGd2du8EQ=.pem","location":"security-state-staging/intermediates/28006d3e-f7bf-4fec-b7d7-e7f43b6987e4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2ldsefSfkTU7GGXfz4iYiPnOUDkbKiYdUaPGd2du8EQ=","crlite_enrolled":false,"id":"4f3d1faf-a555-407d-bf85-71e6aa0c4bbe","last_modified":1591199861766},{"schema":1591167110971,"derHash":"vJ4iPMQidcwDQZDfLQF5tVtzLVrFMRN6e1Itz+BKBZI=","subject":"CN=GeoTrust Extended Validation SHA256 SSL CA,O=GeoTrust Inc.,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMT
MwMQYDVQQDEypHZW9UcnVzdCBFeHRlbmRlZCBWYWxpZGF0aW9uIFNIQTI1NiBTU0wgQ0E=","whitelist":false,"attachment":{"hash":"46ad52d45d9e44779ff98b1488cb499ecc79a96ca90bddbd6c76512c47d537ed","size":1735,"filename":"ETrxfY_aVptAHxW1VmC2WjDv0VLyOmN9vfVO45quBtg=.pem","location":"security-state-staging/intermediates/8511db0a-de1a-44fa-87cc-fd1e1fc95f78.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ETrxfY/aVptAHxW1VmC2WjDv0VLyOmN9vfVO45quBtg=","crlite_enrolled":false,"id":"dcc3ee74-7f0b-4951-9f0e-c7d34097d1dc","last_modified":1591199861760},{"schema":1591167129850,"derHash":"w2i6rNq2w0pSPlfzn+Bx3oWm0a7f0d29Ivq7S3DaX0E=","subject":"CN=The University of Texas at Austin RSA CA,OU=Information Security Office,O=The University of Texas at Austin,L=Austin,ST=TX,C=US","subjectDN":"MIGwMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVFgxDzANBgNVBAcTBkF1c3RpbjEqMCgGA1UEChMhVGhlIFVuaXZlcnNpdHkgb2YgVGV4YXMgYXQgQXVzdGluMSQwIgYDVQQLExtJbmZvcm1hdGlvbiBTZWN1cml0eSBPZmZpY2UxMTAvBgNVBAMTKFRoZSBVbml2ZXJzaXR5IG9mIFRleGFzIGF0I
EF1c3RpbiBSU0EgQ0E=","whitelist":false,"attachment":{"hash":"b0061b5cde3d079be7801311c889ce6fbf716ebb7e28e0dbf666e7beb7a18115","size":2207,"filename":"lLeKgz_ECOEUD_q5gE_wxHdQZwCGZUSX7XdxXEOzoG4=.pem","location":"security-state-staging/intermediates/d468242c-fc9f-4cb4-8acb-451892fc85cc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lLeKgz/ECOEUD/q5gE/wxHdQZwCGZUSX7XdxXEOzoG4=","crlite_enrolled":true,"id":"89c34cc1-9032-4a6e-a795-1a0dcd125dfe","last_modified":1591199861733},{"schema":1591167135342,"derHash":"bo2VL9urrY3j1h4JQ5Nzm1pHNxpSvcsqPC+MQ2IvZA8=","subject":"CN=DigiCert Trusted Server CA G4,O=DigiCert Inc,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJjAkBgNVBAMTHURpZ2lDZXJ0IFRydXN0ZWQgU2VydmVyIENBIEc0","whitelist":false,"attachment":{"hash":"1b0227fb528c1325b07b31b6a5fb4aaae403cf52260bf9d9cd10243df1594c27","size":2263,"filename":"ATJixqKjjVXHRkLEgfX09sgN3kdNds3rCsOQC264qlM=.pem","location":"security-state-staging/intermediates/59a98e6a-d170-4c
1b-a564-25e3d6f2bade.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ATJixqKjjVXHRkLEgfX09sgN3kdNds3rCsOQC264qlM=","crlite_enrolled":false,"id":"0af55fad-9862-4ab7-b10a-5e19e0d6a32c","last_modified":1591199861718},{"schema":1591167098714,"derHash":"twC6Sa9NGecvsVotrDwhO6RMMZ+n2pJ3KzaC4St4EJM=","subject":"CN=AffirmTrust Extended Validation CA - EV3,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGDMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMTAvBgNVBAMTKEFmZmlybVRydXN0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgLSBFVjM=","whitelist":false,"attachment":{"hash":"2e254ce9b0bd7ecaa13ed912c586e0853458c939d61e8f564883c7f10f882aab","size":1674,"filename":"-TrM-YTWywZV8UwhobD51F1gyN0R9i8HSXRhwDUA_PQ=.pem","location":"security-state-staging/intermediates/1a96dd1e-3da0-45c3-af06-b3f0b4132469.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+TrM+YTWywZV8UwhobD51F1gyN0R9i8HSXRhwDUA/PQ=","crlite_enrolled":
true,"id":"5c30def2-02f2-4f59-9e75-fb7cec21fda7","last_modified":1591199861716},{"schema":1591167115649,"derHash":"JOnyCsFnu48J3ooemWjMU/C186SUj1G4ZHtAsYbHXr4=","subject":"CN=DigiCert Secure Auth CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IFNlY3VyZSBBdXRoIENB","whitelist":false,"attachment":{"hash":"a64942af324b392768de8a32c2187db5660a414d7e770bda2812f1a9e980d44b","size":1792,"filename":"tdoo0C0wiaEcgnWAQOcm5NMBHjL1VfpZl4892op9W2U=.pem","location":"security-state-staging/intermediates/0500e928-1f83-4f99-a7e3-24b68820248d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tdoo0C0wiaEcgnWAQOcm5NMBHjL1VfpZl4892op9W2U=","crlite_enrolled":false,"id":"6526cd1b-5a23-40c2-b96c-e1680e2c0884","last_modified":1591199861714},{"schema":1591167115264,"derHash":"FHxEf+64YgK1AzFPyvADa+qu9DfDm1azWOxEap0gOH8=","subject":"CN=SHECA EV Secure Server CA,O=Shanghai Electronic
Certificate Authority Center Co.\\, Ltd.,L=Shanghai,ST=Shanghai,C=CN","subjectDN":"MIGcMQswCQYDVQQGEwJDTjFDMEEGA1UEChM6U2hhbmdoYWkgRWxlY3Ryb25pYyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgQ2VudGVyIENvLiwgTHRkLjERMA8GA1UEBxMIU2hhbmdoYWkxETAPBgNVBAgTCFNoYW5naGFpMSIwIAYDVQQDExlTSEVDQSBFViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"79e8a49ce016fdd9c0af03939862785c3c2d81031cbbf7fa59067b46edcfa51c","size":1886,"filename":"xi4INX1FNKxbnVAZdwTrMNDrumTwxFHJ81fg-e_d2lc=.pem","location":"security-state-staging/intermediates/89c1da85-ab0a-47e6-9779-d9122d19152f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xi4INX1FNKxbnVAZdwTrMNDrumTwxFHJ81fg+e/d2lc=","crlite_enrolled":false,"id":"ac6e22b1-b052-4a8c-8678-c546d37f748d","last_modified":1591199861695},{"schema":1591167133769,"derHash":"wKsH2QcaTMHTRAkXj4vKBYMQqLER3c+mVWWHYCJvUPk=","subject":"CN=WoSign EV SSL CA,O=WoSign CA Limited,C=CN","subjectDN":"MEQxCzAJBgNVBAYTAkNOMRowGAYDVQQKDBFXb1NpZ24gQ0EgTGltaXRlZDEZMBcGA1UEAwwQV29TaWduIE
VWIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"70b0ebbc523a8c85dfbcba297ad8752536887543b61fafc141de629f096c6ef6","size":1691,"filename":"kUsaqEFcRNYeLMDaKST82jCK2fP2QzSDRUyN92iicvw=.pem","location":"security-state-staging/intermediates/77469872-4038-4fec-bc01-bcfacaf96e61.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kUsaqEFcRNYeLMDaKST82jCK2fP2QzSDRUyN92iicvw=","crlite_enrolled":false,"id":"c63369ab-e91c-444e-ab6e-6400efdbc7ea","last_modified":1591199861686},{"schema":1591167104643,"derHash":"iKFeJAyJhzwddDxQPA9fTvcagrVsM1l8ake/CW2dO+Y=","subject":"SERIALNUMBER=201508,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDg=","whitelist":false,"attachment":{"hash":"2f79b1033df0522a67c163fc81ce2732e1f478e53059f30038d886faad2d198c","size":2093,"filename":"zduiwxJuZStrkO6Flv96lCWLQI-61C3s5N1jNhbIU7Y=.pem","location":"security-state-staging/intermediates/5e1a3c18-e372-498e-8f60-5f889e22773b.pem","mimetype":"application/
x-pem-file"},"pubKeyHash":"zduiwxJuZStrkO6Flv96lCWLQI+61C3s5N1jNhbIU7Y=","crlite_enrolled":true,"id":"f8a7b557-1b13-43a0-8b2b-3338f34c8383","last_modified":1591199861672},{"schema":1591167127479,"derHash":"eSC44Y0vwS2Bwvq5CmOxtSqzKc580ct8oJTN+dYA9JI=","subject":"CN=thawte Extended Validation SHA256 SSL CA,O=thawte\\, Inc.,C=US","subjectDN":"MFcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xMTAvBgNVBAMTKHRoYXd0ZSBFeHRlbmRlZCBWYWxpZGF0aW9uIFNIQTI1NiBTU0wgQ0E=","whitelist":false,"attachment":{"hash":"563a21cfced81aebe67aac78ad46c393d97ccc5dfae514ccccedd89d53d40a37","size":1727,"filename":"o-9u8XvAYtT_uhU48fZ16spZWnwnEELUcZesUD4gsBA=.pem","location":"security-state-staging/intermediates/ef964011-0a45-44b3-9e70-8d05f1a139c1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"o+9u8XvAYtT/uhU48fZ16spZWnwnEELUcZesUD4gsBA=","crlite_enrolled":false,"id":"aef4d01c-2e71-497a-9152-77b111228724","last_modified":1591199861670},{"schema":1591167125522,"derHash":"OH1Ja5IgLUxEPNlP9C2hffLx5o4kTC
+7p+KU290RNXs=","subject":"CN=WISeKey CertifyID Advanced GC CA 1,O=WISeKey,C=CH","subjectDN":"MEwxCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSswKQYDVQQDEyJXSVNlS2V5IENlcnRpZnlJRCBBZHZhbmNlZCBHQyBDQSAx","whitelist":false,"attachment":{"hash":"3847cc74ceb46d2e07d37b69b668ff50587428a43ef992473d4a3e433bcb1972","size":1293,"filename":"Y3IJxxxojxFKeXVhVUyyPE4P-7QrAbKt0viCWXpb1G8=.pem","location":"security-state-staging/intermediates/233bd648-66bc-440b-8b31-293196be1b49.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y3IJxxxojxFKeXVhVUyyPE4P+7QrAbKt0viCWXpb1G8=","crlite_enrolled":true,"id":"5905f153-1bda-44df-8205-013b8756834a","last_modified":1591199861664},{"schema":1591167102659,"derHash":"qK0cJcxYCyEx/Mb8bWUTdG846pm9FiyBtcU5NJUXWxg=","subject":"CN=STRATO TLS RSA CA,OU=Domain Validated SSL,O=STRATO AG,C=DE","subjectDN":"MFwxCzAJBgNVBAYTAkRFMRIwEAYDVQQKEwlTVFJBVE8gQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRowGAYDVQQDExFTVFJBVE8gVExTIFJTQSBDQQ==","whitelist":false,"attachment":{"
hash":"d4b8e211872849d13a1e260cdc06a24464432a0fa7627e3f666d44abf76f5a34","size":1654,"filename":"_MWDzTF0gP61A7lqJx1MUWKutcFHBAsAnAXlMwxjhKA=.pem","location":"security-state-staging/intermediates/7bc0c334-aaef-4dcb-92c6-98e7cfab6209.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/MWDzTF0gP61A7lqJx1MUWKutcFHBAsAnAXlMwxjhKA=","crlite_enrolled":false,"id":"cede6dc8-3cb1-4e8b-840c-e51a697702ec","last_modified":1591199861662},{"schema":1591167118782,"derHash":"xVfZ3uOkUTRbCN6xeJYaHIDC+8NyMGfLGyM4DOfeiMA=","subject":"SERIALNUMBER=201511,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MTE=","whitelist":false,"attachment":{"hash":"00fb675f00181f478291ea1dc2ee08b8fcdfc0d519fcfa6402b4ff474fbd3eae","size":2093,"filename":"lj1vlZfMd2V_aT2U-5-kNFLhsBmFrR34EQm2OTMD3Y8=.pem","location":"security-state-staging/intermediates/7c090492-98db-41a5-b69d-8401237a3fe4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lj1vlZfMd2V/aT2U+5+kNF
LhsBmFrR34EQm2OTMD3Y8=","crlite_enrolled":true,"id":"2372ca19-0a90-4964-a048-80f7a672471a","last_modified":1591199861653},{"schema":1591167112135,"derHash":"4+lOe+UyuUk/Sz7dUxHqCw1O63rYFd/Ljz5jVuHxy44=","subject":"SERIALNUMBER=201505,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDU=","whitelist":false,"attachment":{"hash":"34d10a97c4300798b8710e1fef33d7bbaf26eea241d30c38d827a8314fb24dab","size":2093,"filename":"RNe7v5CES3j8AJTjDjnXy97aI59Zwn09cBcYeuDXVk4=.pem","location":"security-state-staging/intermediates/33b81138-bc9d-4183-9c67-e85acf11ae6e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RNe7v5CES3j8AJTjDjnXy97aI59Zwn09cBcYeuDXVk4=","crlite_enrolled":true,"id":"4acd2cb7-b56a-4ee2-9037-f765c2850803","last_modified":1591199861630},{"schema":1591167100293,"derHash":"OTuLFcq8OIb7LkFkldY8i63Y3K+HVSB2yKCpY3wk3kc=","subject":"CN=SHECA DV Secure Server CA,O=Shanghai Electronic Certificate Authority Center Co.\\, Ltd.,L=Shan
ghai,ST=Shanghai,C=CN","subjectDN":"MIGcMQswCQYDVQQGEwJDTjFDMEEGA1UEChM6U2hhbmdoYWkgRWxlY3Ryb25pYyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgQ2VudGVyIENvLiwgTHRkLjERMA8GA1UEBxMIU2hhbmdoYWkxETAPBgNVBAgTCFNoYW5naGFpMSIwIAYDVQQDExlTSEVDQSBEViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"80e794ca68f692fa483c4c5cb8e9806bc0ddce1148522be81196e5ad85e5b01b","size":1886,"filename":"vxQ5rrMProJi_--FvKOiNtV0E-SCmjf-g1jA2GXodec=.pem","location":"security-state-staging/intermediates/64c3d745-1d1f-48a0-b654-9371f223ad9e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vxQ5rrMProJi/++FvKOiNtV0E+SCmjf+g1jA2GXodec=","crlite_enrolled":false,"id":"e5580962-2ff1-4674-881d-d2a669207187","last_modified":1591199861583},{"schema":1591167133382,"derHash":"nfd0iMS3SsMuPOxMZD0AHVw7q/pAAf/Rk9yhDIvlyzo=","subject":"CN=AffirmTrust Extended Validation CA - EV2,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGDMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d
3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMTAvBgNVBAMTKEFmZmlybVRydXN0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgLSBFVjI=","whitelist":false,"attachment":{"hash":"89053e842a9e8970354492a7c4548abec7c0be523c780e0f953ea552f30a541f","size":2012,"filename":"x6O8qvzc0zILZCc4XHPUu67PSku6NJHUaXQY4KvAUgg=.pem","location":"security-state-staging/intermediates/3085f02a-64cc-4c75-9005-38f7daa19fab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x6O8qvzc0zILZCc4XHPUu67PSku6NJHUaXQY4KvAUgg=","crlite_enrolled":true,"id":"6b507c8d-2732-4c9b-9a07-d2512c0e2117","last_modified":1591199861568},{"schema":1591167107831,"derHash":"WBbG5AeZtbx/CxTJYUo206yncd9UoASUXw+Nfgsp/8o=","subject":"SERIALNUMBER=201501,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTUwMQ==","whitelist":false,"attachment":{"hash":"0d46e6a34f0da6a0c2fecffc0740218d25d513ae95664755de9d235bda5d9281","size":2097,"filename":"tRPCGioU3g7SQ_LnaZzP56f2x-Cn4zzeQuT-EjcFVwg=.pem","location":"secur
ity-state-staging/intermediates/57330922-3e65-46a3-be30-5c0d975f5b82.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tRPCGioU3g7SQ/LnaZzP56f2x+Cn4zzeQuT+EjcFVwg=","crlite_enrolled":true,"id":"77d7942b-74d8-4b94-ab76-a0e65bd98d6c","last_modified":1591199861538},{"schema":1591167104251,"derHash":"7MKVtt3NCEunF5+1O90dQiy2wKjZTxVNSlsXeAtyee0=","subject":"CN=Amazon,OU=Server CA 3B,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAzQjEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"c7c4797af7be4621b3d92ccb6bd9cb9b0dd0a450c089b66be3ba98c8bc4186e3","size":1008,"filename":"s5SRPmhQ_9M4pBTJFJbNff5De6KuZpZr6r1_ZkgUbbE=.pem","location":"security-state-staging/intermediates/72c3d6bb-f1e7-4495-af68-0ba087eda278.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"s5SRPmhQ/9M4pBTJFJbNff5De6KuZpZr6r1/ZkgUbbE=","crlite_enrolled":true,"id":"302e34c5-2646-4c4a-ac02-84ccf409fc91","last_modified":1591199861532},{"schema":15911671
29058,"derHash":"bEDQf0cFpbTwTGrs3Fob9f040rbPLbfyEsolEHW+El0=","subject":"CN=Shuidi Webtrust SSL Extended Validated,O=Shanghai Ping An Credit Reference Company Limited,C=CN","subjectDN":"MHoxCzAJBgNVBAYTAkNOMTowOAYDVQQKDDFTaGFuZ2hhaSBQaW5nIEFuIENyZWRpdCBSZWZlcmVuY2UgQ29tcGFueSBMaW1pdGVkMS8wLQYDVQQDDCZTaHVpZGkgV2VidHJ1c3QgU1NMIEV4dGVuZGVkIFZhbGlkYXRlZA==","whitelist":false,"attachment":{"hash":"15549ed43fba7dd4ac582772db414c06ac7f55ba18ecf419619290411515f7e8","size":1780,"filename":"YARY8M4pNVQjSsk5Xgw-N3b7ZaQssU3-Ml2q5c55P1Q=.pem","location":"security-state-staging/intermediates/63152062-fb6c-4aea-80be-e8ee9f7ee7e2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YARY8M4pNVQjSsk5Xgw+N3b7ZaQssU3+Ml2q5c55P1Q=","crlite_enrolled":false,"id":"1944c7f1-bf0e-4729-a9ec-68ff7ce41381","last_modified":1591199861522},{"schema":1591167107052,"derHash":"MoxZkdg4PifQ6+kQv2bArz10ioXTARpS2I8djIY1ZH8=","subject":"CN=CloudFlare Inc RSA CA-1,O=CloudFlare\\, Inc.,L=San Francisco,ST=CA,C=US","subj
ectDN":"MG8xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQQ2xvdWRGbGFyZSwgSW5jLjEgMB4GA1UEAxMXQ2xvdWRGbGFyZSBJbmMgUlNBIENBLTE=","whitelist":false,"attachment":{"hash":"f41ed47d0f43325c9f089d03415c972ce1d3f1ecab6e4d6260665baf3db3ccee","size":1597,"filename":"CfyancXuwYEHYRX3mmLJI3NFW6E8cydaCGS1D9wGhT4=.pem","location":"security-state-staging/intermediates/65650a0f-7c22-4c10-9744-2d67e301f5f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CfyancXuwYEHYRX3mmLJI3NFW6E8cydaCGS1D9wGhT4=","crlite_enrolled":false,"id":"872ce619-ac04-47e9-b4ac-7ff12d0ec19c","last_modified":1591199861498},{"schema":1591167116427,"derHash":"zeI6UjA8PKZ6S7vMlYL/XJIDqpjLDzhxOTCM4iiVBqI=","subject":"CN=AffirmTrust Extended Validation CA - EVEC1,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGFMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMzAxBgNVBAMTKkFmZmlybVRydXN0IEV4dGVuZGVkIFZhbGl
kYXRpb24gQ0EgLSBFVkVDMQ==","whitelist":false,"attachment":{"hash":"865dd39def93692e37eef786ad2c8cc23e7d0c975e5371aadd94657e67cbbcb9","size":1223,"filename":"EJPx6trc98AgGgNEdBceeQPzoTVw1_xu9uLPoj5Wczw=.pem","location":"security-state-staging/intermediates/48c70d0d-3354-46cd-857a-bedd9c0140c2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EJPx6trc98AgGgNEdBceeQPzoTVw1/xu9uLPoj5Wczw=","crlite_enrolled":true,"id":"07decb3e-5474-49fb-8e4b-b0ce15e562f9","last_modified":1591199861471},{"schema":1591167129450,"derHash":"bmLL4+QqQcUEBbPi8aRCV2gyZ4VhhK+cAhEgcKyDaTY=","subject":"CN=Thawte ECC CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xGzAZBgNVBAMTElRoYXd0ZSBFQ0MgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"b720fd52f7eed374b2c5902c55a3d185a8cd84a9b4fada7958cae32b764e4368","size":1358,"filename":"3hiWxsgsNSgIwyt2ATwgEYbkxoaBEZb10lFKzoR0-ig=.pem","location":"security-state
-staging/intermediates/f9d2835d-36a6-47e4-b9d6-addbf0a8d4cc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3hiWxsgsNSgIwyt2ATwgEYbkxoaBEZb10lFKzoR0+ig=","crlite_enrolled":true,"id":"0bc07455-8ec5-41eb-ac5a-22460bb932e5","last_modified":1591199861461},{"schema":1591167132596,"derHash":"Or00nX/hQwXmlSQSNPn/lK6CGt9EZ7wWB6E+ES9ep2c=","subject":"CN=SSL.com Premium EV CA,OU=Controlled by COMODO exclusively for SSL.com+OU=www.ssl.com,O=SSL.com,C=US","subjectDN":"MIGMMQswCQYDVQQGEwJVUzEQMA4GA1UEChMHU1NMLmNvbTE1MDMGA1UECxMsQ29udHJvbGxlZCBieSBDT01PRE8gZXhjbHVzaXZlbHkgZm9yIFNTTC5jb20xFDASBgNVBAsTC3d3dy5zc2wuY29tMR4wHAYDVQQDExVTU0wuY29tIFByZW1pdW0gRVYgQ0E=","whitelist":false,"attachment":{"hash":"a9afa165fd6ff926ecdcac1b57b4aff26949c7339f1f27f14e96ba34ba7aed05","size":2231,"filename":"q9kHBA4OE40-HVkOIjyKiKBED3yDP_uskMLt3i9Z7e8=.pem","location":"security-state-staging/intermediates/b4c44040-4a0f-44f0-bafc-2ef091b752cf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q9kHBA4OE40+
HVkOIjyKiKBED3yDP/uskMLt3i9Z7e8=","crlite_enrolled":false,"id":"14597233-b2e4-409d-a2e8-143da66f07a4","last_modified":1591199861440},{"schema":1591167092722,"derHash":"fOza/GvmGKQPG6wmRiRjhHQS1nalxtI4mVUO6Xa+Mv4=","subject":"CN=SSL Blindado EV 2,OU=Controlled by COMODO exclusively for Site Blindado S.A.+OU=Certifica\u00e7\u00e3o Digital,O=Site Blindado S.A.,L=S\u00e3o Paulo,ST=SP,C=BR","subjectDN":"MIHLMQswCQYDVQQGEwJCUjELMAkGA1UECBMCU1AxEzARBgNVBAcMClPDo28gUGF1bG8xGzAZBgNVBAoTElNpdGUgQmxpbmRhZG8gUy5BLjFAMD4GA1UECxM3Q29udHJvbGxlZCBieSBDT01PRE8gZXhjbHVzaXZlbHkgZm9yIFNpdGUgQmxpbmRhZG8gUy5BLjEfMB0GA1UECwwWQ2VydGlmaWNhw6fDo28gRGlnaXRhbDEaMBgGA1UEAxMRU1NMIEJsaW5kYWRvIEVWIDI=","whitelist":false,"attachment":{"hash":"259a41110133846c14d5ea5590dd8aa42d7531eaef59c1841a6b6f301cde5c42","size":2280,"filename":"oomAz8Bc3vA9i8i7dKzYpXEAA9hSHc_4c1uNOVpwL_s=.pem","location":"security-state-staging/intermediates/36e73adc-530e-402f-9d94-27f5e9c0cb96.pem","mimetype":"application/x-pem-file"},"pubKeyHa
sh":"oomAz8Bc3vA9i8i7dKzYpXEAA9hSHc/4c1uNOVpwL/s=","crlite_enrolled":false,"id":"d082497c-c3b1-488e-a8a2-7474e38160a3","last_modified":1591199861436},{"schema":1591167119174,"derHash":"UnTMU7wGH5+YRDD0AanTujWiDO686I5t+nGyaafGQNI=","subject":"CN=Hongkong Post e-Cert CA 1 - 10,O=Hongkong Post,C=HK","subjectDN":"ME4xCzAJBgNVBAYTAkhLMRYwFAYDVQQKEw1Ib25na29uZyBQb3N0MScwJQYDVQQDEx5Ib25na29uZyBQb3N0IGUtQ2VydCBDQSAxIC0gMTA=","whitelist":false,"attachment":{"hash":"8da29ad05563050f363f59f064bea5f14050e76d2ade435bde02d43bf0465938","size":1175,"filename":"PfEWtMmnBuSczngTKHScBWoAorL7zO3kx7RNC29R4e0=.pem","location":"security-state-staging/intermediates/d2f47cd7-6af4-430b-8440-37887987872c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PfEWtMmnBuSczngTKHScBWoAorL7zO3kx7RNC29R4e0=","crlite_enrolled":true,"id":"472dc9b5-2882-40d9-8a50-9352050b4390","last_modified":1591199861425},{"schema":1591167130252,"derHash":"+lH+OfDzFukkEuEXARji1iqOStoPiOwjfzzmMfcL4pg=","subject":"CN=Noble Energy SH
A256 CA - G2,O=Noble Energy\\, Inc.,L=Houston,ST=Texas,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIEwVUZXhhczEQMA4GA1UEBxMHSG91c3RvbjEbMBkGA1UEChMSTm9ibGUgRW5lcmd5LCBJbmMuMSQwIgYDVQQDExtOb2JsZSBFbmVyZ3kgU0hBMjU2IENBIC0gRzI=","whitelist":false,"attachment":{"hash":"90ad7e696dba8c1e23f6880f2f04e6cb6a14c58d040ee93ab47d30fa7e5d936a","size":1869,"filename":"E2apBiPMG_Zpvk8zbzKt5sh4sBj4KaAUi2QTkc8XsaM=.pem","location":"security-state-staging/intermediates/fb675c81-8e4b-4430-96db-09b12e43bdae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"E2apBiPMG/Zpvk8zbzKt5sh4sBj4KaAUi2QTkc8XsaM=","crlite_enrolled":false,"id":"89546195-a930-4b5e-a9ea-1a504f1bdc72","last_modified":1591199861413},{"schema":1591167096355,"derHash":"ZUDPz3Q+hKstZ4ZvLxOlP+evLol3pcFoH+B6GGliDdE=","subject":"CN=NII Open Domain CA - G4,O=National Institute of Informatics,L=Academe,C=JP","subjectDN":"MG0xCzAJBgNVBAYTAkpQMRAwDgYDVQQHEwdBY2FkZW1lMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxIDAeBgNVBA
MTF05JSSBPcGVuIERvbWFpbiBDQSAtIEc0","whitelist":false,"attachment":{"hash":"694b64628a7d5374fe0a1236dde0139e98c044d4e255e52f6e8890eaa0a4dea1","size":1646,"filename":"pkYOyiZbq6eiG3-fTHdQPKnpyBMSHLTdN87BtKobe2o=.pem","location":"security-state-staging/intermediates/9fddafa0-9c9d-4c6c-b696-f7502cb6768d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pkYOyiZbq6eiG3+fTHdQPKnpyBMSHLTdN87BtKobe2o=","crlite_enrolled":false,"id":"1f00a77e-a49f-4949-8809-b6e456e666ae","last_modified":1591199861401},{"schema":1591167109400,"derHash":"PQwrOOhcr0nDg7bDMoZA5fvobs+in6sTcVGs0bQu0Uk=","subject":"CN=EINS/PKI Public Certification Authority V3,O=INTEC INC.,C=JP","subjectDN":"MFcxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpJTlRFQyBJTkMuMTMwMQYDVQQDEypFSU5TL1BLSSBQdWJsaWMgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgVjM=","whitelist":false,"attachment":{"hash":"e4b8a6bf0eddbecf5ae45cdefa44dbaf3900507c7ec1f5f815078e0c1219f2f3","size":1618,"filename":"RnCQQs9ip0vyrhGBt2ogczNkSTqpuYCXhqgIL0RZGWQ=.pem","location":"security-s
tate-staging/intermediates/f240b23f-faa7-4c5f-94ad-2b165f331e4e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RnCQQs9ip0vyrhGBt2ogczNkSTqpuYCXhqgIL0RZGWQ=","crlite_enrolled":false,"id":"50fbb791-2793-42f8-bb20-6140333152f2","last_modified":1591199861395},{"schema":1591167111362,"derHash":"Cz5xovGFt21ghI+AWN8IXNSUtFu/+jSrt/4KTudRPtw=","subject":"SERIALNUMBER=201501,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDE=","whitelist":false,"attachment":{"hash":"22965e59ce07d01290e039c484a513333a3947d9ec580812b375f3d4f8a8f9a9","size":2093,"filename":"-PZGhNMpPNHJLO37ogEwXscavltZ_j_PtNOQVm_NWF8=.pem","location":"security-state-staging/intermediates/50e98f69-8a78-489c-99e2-51b3ef5607cf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+PZGhNMpPNHJLO37ogEwXscavltZ/j/PtNOQVm/NWF8=","crlite_enrolled":true,"id":"3cdafee2-76f3-42c8-858b-e26661a6a9c9","last_modified":1591199861393},{"schema":1591167114082,"derHash":"TAE7iFRonLZi
bMCHtNT8ykUQTi1zv63zOml57RJLeDc=","subject":"CN=AlphaSSL CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MEwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSIwIAYDVQQDExlBbHBoYVNTTCBDQSAtIFNIQTI1NiAtIEcz","whitelist":false,"attachment":{"hash":"5ec4d3d36a5abdd7e8f9f97d4fdfe971b778b6a3c00875e565acf06c59c855ed","size":1601,"filename":"yiytxmxVlqUkaojBswiPQ3AdtFgFdeR3-pfRgzPzjyc=.pem","location":"security-state-staging/intermediates/0ed13f7e-af76-4379-bca8-e1e23e23ba32.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yiytxmxVlqUkaojBswiPQ3AdtFgFdeR3+pfRgzPzjyc=","crlite_enrolled":false,"id":"968f0c8d-ebe5-488a-8340-d5e4e9b76cc6","last_modified":1591199861383},{"schema":1591167134944,"derHash":"8U1VJtvE4hi048eJuAX6UD5MHgCPUbR4sx9ewsBGUFM=","subject":"SERIALNUMBER=201410,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MTA=","whitelist":false,"attachment":{"hash":"a755a413df5939715ef8ed2b03de59241eaf26b5b17fb53165acd
dacbe7fb37d","size":2093,"filename":"bpnQ2j55R3xHAVSt43XkvZK65UCBePG74mW3xb2U6bE=.pem","location":"security-state-staging/intermediates/900020b0-bc89-454b-9900-ea5cfd7cdf75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bpnQ2j55R3xHAVSt43XkvZK65UCBePG74mW3xb2U6bE=","crlite_enrolled":true,"id":"6e1e16c5-1f74-4570-b13f-fb8d4006e3d9","last_modified":1591199861339},{"schema":1591167119954,"derHash":"VvGgaYpGlIe4WKYsgccurHgTtqbmKh1ci0tofvRahsY=","subject":"SERIALNUMBER=201509,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MDk=","whitelist":false,"attachment":{"hash":"1382abc89dabcc879a78d635a83dfff7b7f8f4690017765fb959d56f15328322","size":2093,"filename":"YgUnZLend8A1dYQYIwzEwA7hgRZqcesd6yztVE5VXmQ=.pem","location":"security-state-staging/intermediates/a635f570-6367-4776-9303-d0f24e8d99d9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YgUnZLend8A1dYQYIwzEwA7hgRZqcesd6yztVE5VXmQ=","crlite_enrolled":true,"id":"dbe5c709
-506e-4280-897b-020eeea4ef49","last_modified":1591199861325},{"schema":1591167113296,"derHash":"iR7i4jKC5QdsmukEfejqkA4Gb4HW3Nm4Q8WQeLDxBbw=","subject":"CN=WoSign EV SSL Pro CA,O=WoSign CA Limited,C=CN","subjectDN":"MEgxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRlZDEdMBsGA1UEAxMUV29TaWduIEVWIFNTTCBQcm8gQ0E=","whitelist":false,"attachment":{"hash":"07c937a29a0a69cd8357438132740524c5f2b962a315e7238630d95a61147284","size":1634,"filename":"pH1dud9XORPnyq8wyLWWIS773gVEO_1UuyQKQdv4xKg=.pem","location":"security-state-staging/intermediates/bfbf0539-e24d-4990-a202-fc97784d7f75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pH1dud9XORPnyq8wyLWWIS773gVEO/1UuyQKQdv4xKg=","crlite_enrolled":false,"id":"78e81458-dc94-491e-9bbd-82c797f01706","last_modified":1591199861316},{"schema":1591167125915,"derHash":"w4BN5R6MFwUiIK4crT04PlTVt9wohDxC8NvZkTwehlg=","subject":"CN=Secure Site Pro Extended Validation ECC CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHQxCzAJBgNVBAYTAlVT
MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMzAxBgNVBAMTKlNlY3VyZSBTaXRlIFBybyBFeHRlbmRlZCBWYWxpZGF0aW9uIEVDQyBDQQ==","whitelist":false,"attachment":{"hash":"0888b26cf00bcea2525da774e654b5c2ea18871782615c5140d3fb8b3541ab28","size":1463,"filename":"_Nqzn2CbpC436KXdkcnLpL18IA4yR1xWHjRW06xB_j8=.pem","location":"security-state-staging/intermediates/c841c215-26a7-4218-8633-09f2ccc236bd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/Nqzn2CbpC436KXdkcnLpL18IA4yR1xWHjRW06xB/j8=","crlite_enrolled":false,"id":"19662870-223a-4691-9872-b58acbff1ebd","last_modified":1591199861310},{"schema":1591167124738,"derHash":"w+PC3uEb+M/qVv1ZAK/pXNQ41zkdylWge/9EFHo1qCg=","subject":"SERIALNUMBER=10810700152,CN=Intesa Sanpaolo Organization Validation 2019 CA,OU=WSA Trust Service Provider,O=Intesa Sanpaolo S.p.A.,C=IT","subjectDN":"MIGjMQswCQYDVQQGEwJJVDEfMB0GA1UECgwWSW50ZXNhIFNhbnBhb2xvIFMucC5BLjEjMCEGA1UECwwaV1NBIFRydXN0IFNlcnZpY2UgUHJvdmlkZXIxFDASBgNVBAUTCzEwODEwNzAwMTUyMT
gwNgYDVQQDDC9JbnRlc2EgU2FucGFvbG8gT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gMjAxOSBDQQ==","whitelist":false,"attachment":{"hash":"5f497951c07710b122718d697a85665edc20f8913fca4830c994f0a3d4543bf2","size":2706,"filename":"U8_hCRrBPyuCYZBzEVQyVIzTfQOQ9G2QXmqJbys0WpE=.pem","location":"security-state-staging/intermediates/79430411-6e34-4b98-ae2f-ec7ec3df0e00.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U8/hCRrBPyuCYZBzEVQyVIzTfQOQ9G2QXmqJbys0WpE=","crlite_enrolled":true,"id":"72a4e0da-1359-4549-99b6-255fe0354d0e","last_modified":1591199861293},{"schema":1591167131032,"derHash":"Iy9jZ89WHgDIPhgKn8qFRrN3H7RQ68tKBSb4NJyMoTk=","subject":"CN=Entrust Certification Authority - L1E,OU=www.entrust.net/rpa is incorporated by reference+OU=(c) 2009 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGxMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L3JwYSBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAwOSBFbnRydXN0LCBJbmMuMS4wLAYDVQQDEyVFbnRydXN0I
ENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFF","whitelist":false,"attachment":{"hash":"fb13e64f68c20f1be87aefb4a955348c9604a4103426723d49f8029f9fbcc797","size":1833,"filename":"HeMEDmta9acr_zmjHkdP_dKlW5RaqBlmADFOqTG56eA=.pem","location":"security-state-staging/intermediates/703534c7-f828-4ce3-86b8-8655d652362c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HeMEDmta9acr/zmjHkdP/dKlW5RaqBlmADFOqTG56eA=","crlite_enrolled":true,"id":"4afefd58-c2fb-4ede-9f24-7a133bc67e03","last_modified":1591199861291},{"schema":1591167105053,"derHash":"62K/+my8gC5Nrm+MU5CAIL5/B3dKVeZ7vWPsw3Z53sg=","subject":"CN=Apple Public Client RSA CA 12 - G1,O=Apple Inc.,ST=California,C=US","subjectDN":"MGQxKzApBgNVBAMTIkFwcGxlIFB1YmxpYyBDbGllbnQgUlNBIENBIDEyIC0gRzExEzARBgNVBAoTCkFwcGxlIEluYy4xEzARBgNVBAgTCkNhbGlmb3JuaWExCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"0ac5fad4496d38d0d04fa4eb7fd0df675e54078a637db0a03dc61b5310fb81b1","size":1796,"filename":"W2tlxSBNBFn6yFefJU_iRsNK6Wx_D6jCbtOc0sr3dcM=.p
em","location":"security-state-staging/intermediates/cff50670-bd2a-4c54-8946-9c3a2f2bf269.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"W2tlxSBNBFn6yFefJU/iRsNK6Wx/D6jCbtOc0sr3dcM=","crlite_enrolled":true,"id":"4be325ba-4a50-48a4-a443-4817dedb5e8f","last_modified":1591199861263},{"schema":1591167121138,"derHash":"AQoQMqQflagsxaSrsJiAmbF5qa+zkusQOOlTuxxfeBM=","subject":"SERIALNUMBER=201401,CN=Government CA,C=BE","subjectDN":"MDYxCzAJBgNVBAYTAkJFMRYwFAYDVQQDEw1Hb3Zlcm5tZW50IENBMQ8wDQYDVQQFEwYyMDE0MDE=","whitelist":false,"attachment":{"hash":"a5d0529635f9c3cff86ede1648e1e65a41e9f78e171871943131767a45c1fb70","size":2097,"filename":"ykSGWOpAu6O0UEhE_5QaIEVb1TdtAlxXyuYiXn95XsY=.pem","location":"security-state-staging/intermediates/494cc004-690d-4312-8e57-fdc940038998.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ykSGWOpAu6O0UEhE/5QaIEVb1TdtAlxXyuYiXn95XsY=","crlite_enrolled":false,"id":"4b2bbd7d-eba6-4808-83aa-09b3e1fa24ac","last_modified":1591199861253},{"schema":1591
167120744,"derHash":"NxIsGj8+LSF0dAxCxrxfWFzTjYGwlS3LRXrMAQrHpOI=","subject":"SERIALNUMBER=07945211006,CN=InfoCert Organization Validation 2019 CA 3,OU=WSA Trust Service Provider,O=InfoCert S.p.A.,C=IT","subjectDN":"MIGXMQswCQYDVQQGEwJJVDEYMBYGA1UECgwPSW5mb0NlcnQgUy5wLkEuMSMwIQYDVQQLDBpXU0EgVHJ1c3QgU2VydmljZSBQcm92aWRlcjEUMBIGA1UEBRMLMDc5NDUyMTEwMDYxMzAxBgNVBAMMKkluZm9DZXJ0IE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIDIwMTkgQ0EgMw==","whitelist":false,"attachment":{"hash":"3a11138c7a600ec7442b5e4709ee0f88fa80829315e74b8e78d4a456fd849c4e","size":2690,"filename":"N9dUlTAT1o0Ai9rArJ9HdU0z5ynuQQbtzwjWvGFRrDo=.pem","location":"security-state-staging/intermediates/3c7379b5-17ba-43e5-bd15-542d1e08e93e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N9dUlTAT1o0Ai9rArJ9HdU0z5ynuQQbtzwjWvGFRrDo=","crlite_enrolled":true,"id":"8d2d8e23-ed85-48df-9c81-6f9ab4e4971b","last_modified":1591199861247},{"schema":1591167097159,"derHash":"vMOlTXCDEWMWzgO5pAyjbzNvSDmsWBhi1DEahPcBUU0=","subject":"CN=OKCERT R4
OV SSL CA G2,OU=Kingnettech,O=Kingnet Information Technology Co.\\, Ltd.,C=CN","subjectDN":"MHcxCzAJBgNVBAYTAkNOMTEwLwYDVQQKDChLaW5nbmV0IEluZm9ybWF0aW9uIFRlY2hub2xvZ3kgQ28uLCBMdGQuMRQwEgYDVQQLDAtLaW5nbmV0dGVjaDEfMB0GA1UEAwwWT0tDRVJUIFI0IE9WIFNTTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"579d6f5ecf8bcd46d62a770353e586d532320b1e7caea44c51a03952e3fdadde","size":1776,"filename":"J_LNyLPuoW1JcAhG6eG-bHMYhGpN5b-M_HHHd56hnzU=.pem","location":"security-state-staging/intermediates/a65aafdc-334e-4b10-b8d7-597fbfe091bc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"J/LNyLPuoW1JcAhG6eG+bHMYhGpN5b+M/HHHd56hnzU=","crlite_enrolled":true,"id":"101d25a5-7aab-4b79-9230-e4cb060e9e42","last_modified":1591199861225},{"schema":1591167136138,"derHash":"i7L2iD/tKJpSG6J8R4SClQh04UPKzOxvwCWZDAxGgT4=","subject":"CN=HydrantID Server CA O1,OU=HydrantID Trusted Certificate Service,O=IdenTrust,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxLjAsBgNVBAsTJUh5ZHJhbnRJRCBUcnVzdGV
kIENlcnRpZmljYXRlIFNlcnZpY2UxHzAdBgNVBAMTFkh5ZHJhbnRJRCBTZXJ2ZXIgQ0EgTzE=","whitelist":false,"attachment":{"hash":"5c37cd80ee6407081923d28c6774e88ec067942ade58ad3454319f095efcf4e3","size":2431,"filename":"EeppXTka8xyJcDQhuKdo9XL4LWROHEY7l1qZG55lMIo=.pem","location":"security-state-staging/intermediates/fc98d0bf-3fd0-4144-8840-b8ab888570c1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EeppXTka8xyJcDQhuKdo9XL4LWROHEY7l1qZG55lMIo=","crlite_enrolled":true,"id":"5b05b0f5-6f11-4694-90c1-40b4a6d81b2c","last_modified":1591199861222},{"schema":1591167093122,"derHash":"7vkGZCTCNQjpxl+EZxsU4W2hvsNY51/GOC7KBwroYb4=","subject":"CN=Abitab SSL Organization Validated,OU=IDdigital,O=Abitab S.A.,C=UY","subjectDN":"MGMxCzAJBgNVBAYTAlVZMRQwEgYDVQQKDAtBYml0YWIgUy5BLjESMBAGA1UECwwJSURkaWdpdGFsMSowKAYDVQQDDCFBYml0YWIgU1NMIE9yZ2FuaXphdGlvbiBWYWxpZGF0ZWQ=","whitelist":false,"attachment":{"hash":"c30af6395f2acc919d52e2b39391c424dfd9016f96111216e9bc5fd3dc34421c","size":1707,"filename":"E4GLDtTEwO7UC
eAtO8ibbOu6FLZxSIUC_fBzIbM5mV4=.pem","location":"security-state-staging/intermediates/2cbc872a-e92a-4c95-ad98-01379cbdc630.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"E4GLDtTEwO7UCeAtO8ibbOu6FLZxSIUC/fBzIbM5mV4=","crlite_enrolled":true,"id":"d02db623-261b-4357-8746-76ac75242c86","last_modified":1591199861175},{"schema":1591167121528,"derHash":"dqxae3TjELnmJOf30Rg4DKloW0DEFsa4meSm1Cm+ej8=","subject":"CN=TLS RSA ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHExCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMRcwFQYDVQQDDA5UTFMgUlNBIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"88b7219cd2bfa1a2a982b183233cc928eff1d7978796768a60b207e4b616e009","size":2146,"filename":"U9LfjT2tp7DInjOaxZZKrKVVV0njtruyUezjKlI9ECI=.pem","location":"security-state-staging/intermediates/2fbb27ec-89ae-4aef-84d0-2750c73c7785.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U9LfjT2tp
7DInjOaxZZKrKVVV0njtruyUezjKlI9ECI=","crlite_enrolled":true,"id":"fb7109db-c35b-44ca-bc73-d09688a86c9f","last_modified":1591199861157},{"schema":1591167097545,"derHash":"VYRK03slu02z/+fc3DkCOkGzxIikepX60fz61Qi3AoU=","subject":"CN=Dodo Sign TLS ICA RSA R1,O=Dodo Sign Ltd,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MHIxCzAJBgNVBAYTAk1VMRgwFgYDVQQIDA9QbGFpbmVzIFdpbGhlbXMxDjAMBgNVBAcMBUViZW5lMRYwFAYDVQQKDA1Eb2RvIFNpZ24gTHRkMSEwHwYDVQQDDBhEb2RvIFNpZ24gVExTIElDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"9bbab79fdec346cdda828bc4486cedf2582bee9d80c23587c1c2f05407854b6e","size":2438,"filename":"QBni1na5RD10V0ehoagk-O8mlEaC8kPw1gH8_uoYYTY=.pem","location":"security-state-staging/intermediates/512c8ed9-74cb-4a34-a0b5-79f8a0f953b2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QBni1na5RD10V0ehoagk+O8mlEaC8kPw1gH8/uoYYTY=","crlite_enrolled":true,"id":"d63929e7-804a-4e7f-9657-ccb49438e6ad","last_modified":1591199861147},{"schema":1591167131818,"derHash":"G/2HAtj5uzQPNTggMwwLu
n5SLGMWTJHylUFNrHl/CGM=","subject":"CN=TI Trust Technologies OV CA,O=TI Trust Technologies S.R.L.,L=Pomezia,ST=Roma,C=IT","subjectDN":"MHsxCzAJBgNVBAYTAklUMQ0wCwYDVQQIEwRSb21hMRAwDgYDVQQHEwdQb21lemlhMSUwIwYDVQQKExxUSSBUcnVzdCBUZWNobm9sb2dpZXMgUy5SLkwuMSQwIgYDVQQDExtUSSBUcnVzdCBUZWNobm9sb2dpZXMgT1YgQ0E=","whitelist":false,"attachment":{"hash":"d1c5248d16ba7957e64d310b79c06f83962508230f7fda1e9cff52d1e9cc1998","size":2150,"filename":"nrqQiXIilvjVUSIRwooWc9ltG3vqAn5jSqfwOAWLI-I=.pem","location":"security-state-staging/intermediates/c2e929c5-0bcd-40c3-ac35-7ee70033ede9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nrqQiXIilvjVUSIRwooWc9ltG3vqAn5jSqfwOAWLI+I=","crlite_enrolled":true,"id":"758a2de9-5261-4baa-a5e8-7baf82981b7c","last_modified":1591199861118},{"schema":1591167132991,"derHash":"QeyAjjPMqGWerqgWcNbH3AFEZjbh8idWG2MHuAumOGI=","subject":"CN=ESTEID-SK 2011,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MGQxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzM
RcwFQYDVQQDDA5FU1RFSUQtU0sgMjAxMTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVl","whitelist":false,"attachment":{"hash":"5091662e698c754433563aee646a022ab0fdfa210abaebb1fd27a54e5f1655f2","size":1800,"filename":"skV85t_ThW7yfg-vIYodS-8kTmAl9PUd5o-azF1ck8g=.pem","location":"security-state-staging/intermediates/652c0f8c-f873-4a5b-8a4f-ab67ca5b5f73.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"skV85t/ThW7yfg+vIYodS+8kTmAl9PUd5o+azF1ck8g=","crlite_enrolled":true,"id":"2212cd12-531d-4091-9a9f-ef40974684ee","last_modified":1591199861115},{"schema":1580831328676,"derHash":"KGdiAMQV2C0QJR9Senc+fnrJkCIy+rpD4aaMWtO32H0=","subject":"CN=GTS Y4,O=Google Trust Services LLC,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMQ8wDQYDVQQDEwZHVFMgWTQ=","whitelist":false,"attachment":{"hash":"486ab74ff1c4972cd1baab20287fa21027e8baa01565310ad4a6b2ba09b0db74","size":1069,"filename":"HS03mRwbGwWTfk-g79L17_0GMn7Rd5Xac10BclJV8_Q=.pem","location":"security-state-staging/inte
rmediates/39a2b6b1-2661-49d8-8ecb-62edfe0d4253.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HS03mRwbGwWTfk+g79L17/0GMn7Rd5Xac10BclJV8/Q=","crlite_enrolled":true,"id":"35ccfbf8-d14e-443c-9642-d4ee52e72bcc","last_modified":1580831371709},{"schema":1580831327306,"derHash":"kl7n1aIq1/vpurVNfI0LmnT341qK9q9kXi6MNRmnCS8=","subject":"CN=GlobalSign PersonalSign 2 CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAyIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"49d234d4a3edd7b4cb0c75434e2e91f053274224b94175e4723db618636c4ec5","size":1719,"filename":"Uln62-9-5Wt3xmkVju62Zqx1VcoZH7PCLXpxS0B8L4k=.pem","location":"security-state-staging/intermediates/4e4916ba-c892-4f63-80bf-933e7f5f1d4e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uln62+9+5Wt3xmkVju62Zqx1VcoZH7PCLXpxS0B8L4k=","crlite_enrolled":false,"id":"7bb75ff5-1b3b-4aab-b802-6f4a62094549","last_modified":1580831371706
},{"schema":1580831325730,"derHash":"sf466/ljp4gOdLCwVWaB6osczOPmmn07EKaKy+huSKE=","subject":"CN=GlobalSign PersonalSign 3 CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAzIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"9df8b037bf3f1247cda959357f2a0176035ad46da5184d24d3c0f8f89f56a218","size":1719,"filename":"6FXSznfWYgPxKc6WahR_l3YNNCjz1qGbLp4BZInCAps=.pem","location":"security-state-staging/intermediates/0fbd634e-c1ef-4d67-b5d7-96259d76e8cd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6FXSznfWYgPxKc6WahR/l3YNNCjz1qGbLp4BZInCAps=","crlite_enrolled":false,"id":"f9ed8c87-8e2b-4eaf-8d98-6760b04b86f1","last_modified":1580831371702},{"schema":1580831324294,"derHash":"lcanR90Lx1WhlBgn6JS4CDWSJBt5JUHi6xsw+5sT9X8=","subject":"CN=GlobalSign Timestamping CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFIxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSgwJgYDVQQDEx9HbG9iYW
xTaWduIFRpbWVzdGFtcGluZyBDQSAtIEcz","whitelist":false,"attachment":{"hash":"d8b1d98667f8f3b8858d8d8ce48e135b6b6babb05637d9da7ebef401cc352174","size":1634,"filename":"EWgZuHzMOb4ZdnGU9IxfHAPzzoePcjKG4e43x60fObk=.pem","location":"security-state-staging/intermediates/dbe4d218-3dd2-4d42-9aa1-e0cd1566f50a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EWgZuHzMOb4ZdnGU9IxfHAPzzoePcjKG4e43x60fObk=","crlite_enrolled":false,"id":"e25bd43e-b8b0-44cd-96de-1e11f8c38cfd","last_modified":1580831371698},{"schema":1580831322835,"derHash":"Qavo+alRqJkPvc0+FM9HnUJkAbEV8BcBibZl6UDDYyw=","subject":"CN=Atos TrustedRoot Client-CA for Wintershall Dea 2020,O=Atos,C=DE","subjectDN":"MFoxPDA6BgNVBAMMM0F0b3MgVHJ1c3RlZFJvb3QgQ2xpZW50LUNBIGZvciBXaW50ZXJzaGFsbCBEZWEgMjAyMDENMAsGA1UECgwEQXRvczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"4cdeea0f9b8c0d997d02497ca1ee85933ee9951ccb157373c44c4bc692a9b8df","size":1967,"filename":"zcJkvK7NculMD4JHrLZo49s5X520hjStrsqlpdtggCw=.pem","location":"sec
urity-state-staging/intermediates/d7592445-357a-4da3-8a7e-eca6e608fb9d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zcJkvK7NculMD4JHrLZo49s5X520hjStrsqlpdtggCw=","crlite_enrolled":false,"id":"211419dc-84cb-45b0-8f04-eec2531753e9","last_modified":1580831371695},{"schema":1580831321448,"derHash":"wlxO28NuP7fD2Te+6fLSnjavsHz6MYgmLg1f3JGeDXc=","subject":"CN=DPDHL User CA I4,O=Deutsche Post AG,C=DE","subjectDN":"MEMxCzAJBgNVBAYTAkRFMRkwFwYDVQQKExBEZXV0c2NoZSBQb3N0IEFHMRkwFwYDVQQDExBEUERITCBVc2VyIENBIEk0","whitelist":false,"attachment":{"hash":"2284b18d3214c38aca82371dca2b990cd83a71d4db5f694b2c5db7ac5b811d0e","size":1618,"filename":"OWNuV6Vtom_Tl21u76ItEZifNmUFqyk8bIdhqTYbo0o=.pem","location":"security-state-staging/intermediates/588fe312-43ff-488f-a400-d053f2bece0f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OWNuV6Vtom/Tl21u76ItEZifNmUFqyk8bIdhqTYbo0o=","crlite_enrolled":false,"id":"03b918a8-4f61-4afe-803b-34daeebcdbc5","last_modified":1580831371691},{"schema":1580
831314282,"derHash":"xMfENr2I6OaNsAKX34OsyBnhmGOboAUiyOMkWHaJhSM=","subject":"CN=NAESB Issuing CA - SHA384 - G4,O=GMO GlobalSign Inc.,C=US","subjectDN":"MFQxCzAJBgNVBAYTAlVTMRwwGgYDVQQKExNHTU8gR2xvYmFsU2lnbiBJbmMuMScwJQYDVQQDEx5OQUVTQiBJc3N1aW5nIENBIC0gU0hBMzg0IC0gRzQ=","whitelist":false,"attachment":{"hash":"e422c75bd14759c6d943cddb3c942e6cb19ff73705f805417a8a2f8b7b0fa999","size":1995,"filename":"t0THBpo4KRCZCa973c4m7iljnz-pEFkuYmErlNe9hqM=.pem","location":"security-state-staging/intermediates/eaf540e0-1fbe-4611-8993-c52d3bef4f6c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"t0THBpo4KRCZCa973c4m7iljnz+pEFkuYmErlNe9hqM=","crlite_enrolled":false,"id":"3f6f60eb-e924-4cdc-a702-722960fe9832","last_modified":1580831371685},{"schema":1580831317160,"derHash":"Zz401+HmslwYfzkcxJE4tHIqkH4z9bdIe2E7tt/niQk=","subject":"CN=University of Patras TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHYxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYy
BhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMS4wLAYDVQQDDCVVbml2ZXJzaXR5IG9mIFBhdHJhcyBUTFMgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"0d52e770e64ec62a5d607f5c7443737f99e82d18a9a8f2a17529cad9f1efee82","size":2836,"filename":"rjG2r01snR1vtNko4nWlkriwJxHfOXpXBBH61kCBBWk=.pem","location":"security-state-staging/intermediates/18240d87-7e34-4a1d-91a9-dc48596e156c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rjG2r01snR1vtNko4nWlkriwJxHfOXpXBBH61kCBBWk=","crlite_enrolled":false,"id":"08c5fddf-3321-4860-b075-e3f26e028ae0","last_modified":1580831371679},{"schema":1580831320021,"derHash":"FU5INLKNT7H5D+6TXQ3eRsRaF3/BQloCjGhcMoVaha0=","subject":"CN=AbbVie AATL ICA 2020,O=AbbVie\\, Inc.,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxBYmJWaWUsIEluYy4xHTAbBgNVBAMTFEFiYlZpZSBBQVRMIElDQSAyMDIw","whitelist":false,"attachment":{"hash":"ba9c71096f49bdde519be7fb7f247b426ff900568ff7a2ba2316f147a992cead","size":2434,"filename":"GI2Jkvlij3dVdDLgyRLzTDluE3sQAJFLYa_aA9xUM0c=.pem",
"location":"security-state-staging/intermediates/ae91d22f-44b3-413a-955d-a4f8a924a57e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GI2Jkvlij3dVdDLgyRLzTDluE3sQAJFLYa/aA9xUM0c=","crlite_enrolled":false,"id":"29a5d15e-9394-46f4-9880-8dceb939b8d1","last_modified":1580831371676},{"schema":1580831312622,"derHash":"Xn/LnJe9pWmTsWWNEgIydh1mWjZEU0MA+mpb7F4NV5U=","subject":"CN=Trafigura PTE Ltd S/MIME ICA 2020,O=Trafigura PTE Ltd,C=SG","subjectDN":"MFUxCzAJBgNVBAYTAlNHMRowGAYDVQQKExFUcmFmaWd1cmEgUFRFIEx0ZDEqMCgGA1UEAxMhVHJhZmlndXJhIFBURSBMdGQgUy9NSU1FIElDQSAyMDIw","whitelist":false,"attachment":{"hash":"250b875f651857d2b605dc8e52718c96fa970d9e56b6d9707052af92fb6cdfa2","size":1630,"filename":"M7IzU76VFwCyiys4kdB9s9rTtdHRcgivamjLj2kzia0=.pem","location":"security-state-staging/intermediates/53a4f63c-1629-4fd9-9f20-bfe3cd2b942b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M7IzU76VFwCyiys4kdB9s9rTtdHRcgivamjLj2kzia0=","crlite_enrolled":false,"id":"910675bd-2aaf-44d3-a72d-00
3713f103f5","last_modified":1580831371673},{"schema":1580831309740,"derHash":"Logg3A6vrj1tKFwFfs4URws3dDiwAs7dTHK080OlT0M=","subject":"CN=GlobalSign CA for AATL - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIENBIGZvciBBQVRMIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"06608a25d2fe312140d296f45b61f4e40a3f0c7008ae57216e239fb8cbdd14f8","size":1666,"filename":"NsJvmEwzvkjFIbS9AQUkdxT3pZQun6S6_bLxVOtwgPY=.pem","location":"security-state-staging/intermediates/dca9077d-3cc6-4e61-9348-5ca4fd9bd72b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NsJvmEwzvkjFIbS9AQUkdxT3pZQun6S6/bLxVOtwgPY=","crlite_enrolled":false,"id":"39f68ef8-75fb-467a-9830-b68adf4c7e9e","last_modified":1580831371670},{"schema":1580831308352,"derHash":"ETE43XshZyWEAjji1+7ss3ONsTkGSyTLhT/CcKSeYFc=","subject":"CN=LinQuest SMIME CA 2020,O=LinQuest Corporation,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExR
MaW5RdWVzdCBDb3Jwb3JhdGlvbjEfMB0GA1UEAxMWTGluUXVlc3QgU01JTUUgQ0EgMjAyMA==","whitelist":false,"attachment":{"hash":"1964c93083547483ce396c6b7394a6a320a45144235ba95d5d3f41767333748d","size":1662,"filename":"OTbNG9ctIq9fLcNWLKN-6TPCNxKIXtezx3cvW-VNjTw=.pem","location":"security-state-staging/intermediates/1ccd3681-1ed9-44af-90cf-e9ca70a463ce.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OTbNG9ctIq9fLcNWLKN+6TPCNxKIXtezx3cvW+VNjTw=","crlite_enrolled":false,"id":"5c4141c4-8b62-4cb1-bf86-432c9861196e","last_modified":1580831371667},{"schema":1580831306957,"derHash":"8GjeqhjMAtWovjXLgzgyeRApH25i5yFqk0dkoaukqAA=","subject":"CN=GlobalSign PersonalSign 1 CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAxIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"92689792fad9cd14100ac0efc4e9c934a5d181ec306067de07973b086f7f08c0","size":1719,"filename":"YRypdHS0Ru4gIYd-v2Cul5vQVyh8seMxVJvPr2qL
JOA=.pem","location":"security-state-staging/intermediates/b14cd6cf-79b6-4e53-a744-d93d0935a1f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YRypdHS0Ru4gIYd+v2Cul5vQVyh8seMxVJvPr2qLJOA=","crlite_enrolled":false,"id":"3fc3c911-3c15-4079-bd82-f0a75e90547b","last_modified":1580831371664},{"schema":1580831304072,"derHash":"fixTc5fnuNmyTYfzBMluoFekB84R0LZtmbpLiiK7EWc=","subject":"CN=University of the Aegean TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MHoxCzAJBgNVBAYTAkdSMTcwNQYDVQQKDC5IZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENBMTIwMAYDVQQDDClVbml2ZXJzaXR5IG9mIHRoZSBBZWdlYW4gVExTIFJTQSBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"6da62caec34c8ba27123e839c8b9d42f2f11146e20354529cc5a9bff3a1a6f42","size":2816,"filename":"-2hOVMwfAeVZbcXurvYs9YQXog6eDjr_2LpDSHWN4k8=.pem","location":"security-state-staging/intermediates/3f60dcda-f35c-432b-9148-214d88b8bf88.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+2h
OVMwfAeVZbcXurvYs9YQXog6eDjr/2LpDSHWN4k8=","crlite_enrolled":false,"id":"8e460471-24d1-4c87-ae97-394153845668","last_modified":1580831371661},{"schema":1580831302660,"derHash":"TnB4Z5RqwFNDxrqP8SHqZqdYA3kTJXqO5JdDUNOaEDQ=","subject":"CN=GlobalSign PersonalSign Partners CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTowOAYDVQQDEzFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiBQYXJ0bmVycyBDQSAtIFNIQTI1NiAtIEcy","whitelist":false,"attachment":{"hash":"1c645bcac68fa67210aa0c2da55360e71914c6ed7e5ac89b02c1a00e4e9d897a","size":1670,"filename":"F0bWPekPIC9_nkgAJD7EPawdSSYBw9Bv3fNGdTH1Brg=.pem","location":"security-state-staging/intermediates/67048fec-2fba-43f3-8088-3d8e682cc628.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F0bWPekPIC9/nkgAJD7EPawdSSYBw9Bv3fNGdTH1Brg=","crlite_enrolled":true,"id":"a44d553d-2d55-4d48-b6f0-79321a1a5f3c","last_modified":1580831371658},{"schema":1580831311193,"derHash":"Eo3tGorWDCS0JU4x25T8Q5K/k+1UNEcqp
DoLmFYQYGg=","subject":"CN=NAESB Issuing CA - SHA384 - G3,O=GMO GlobalSign Inc.,L=Portsmouth,ST=New Hampshire,C=US","subjectDN":"MIGBMQswCQYDVQQGEwJVUzEWMBQGA1UECBMNTmV3IEhhbXBzaGlyZTETMBEGA1UEBxMKUG9ydHNtb3V0aDEcMBoGA1UEChMTR01PIEdsb2JhbFNpZ24gSW5jLjEnMCUGA1UEAxMeTkFFU0IgSXNzdWluZyBDQSAtIFNIQTM4NCAtIEcz","whitelist":false,"attachment":{"hash":"38bdf0865a2acc0ad3abac1f138e15080391b32d0a2516ec72427913339424f1","size":2251,"filename":"LV_Lp60GpBfNPlUINSof9qendyj5Iph8haNKt4Ks1OU=.pem","location":"security-state-staging/intermediates/db701e77-79df-4689-a701-eab7648377a2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LV/Lp60GpBfNPlUINSof9qendyj5Iph8haNKt4Ks1OU=","crlite_enrolled":false,"id":"e94653b0-4ce9-48b9-95e6-a108f69af72e","last_modified":1580831371656},{"schema":1580831305601,"derHash":"ptmjeSc0nedGTI2mP2Ac5VwhS+/XsyRnnmThsw91zv8=","subject":"CN=SRI International CA - G3,O=SRI International,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMRowGAYDVQQKExFTUkkgSW50ZXJuYXRpb25hbDEiMCA
GA1UEAxMZU1JJIEludGVybmF0aW9uYWwgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"68736c3ea587d110029f29fab96f407ca21f42efed8b5a2dcd08d36ee102c762","size":1967,"filename":"6A_h_ePWgZWtzRg2oGoR7XWlHGi2tZLjeMmvfUXp4Jk=.pem","location":"security-state-staging/intermediates/9cdf9ab0-57bf-4725-9363-936388693103.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6A/h/ePWgZWtzRg2oGoR7XWlHGi2tZLjeMmvfUXp4Jk=","crlite_enrolled":false,"id":"4db81cce-52f9-4678-ba47-e88290532416","last_modified":1580831371653},{"schema":1580831297956,"derHash":"GB3Ivn6R7fFj5mzD+tFNl5ptrlO1Vtruj33KDhFMFPY=","subject":"CN=GTS Y3,O=Google Trust Services LLC,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMQ8wDQYDVQQDEwZHVFMgWTM=","whitelist":false,"attachment":{"hash":"f539ab8855770bc8a9e8f1286baa54629b8813ded2d2972aa64a9f3e37d83152","size":1065,"filename":"LbcjaXDdzSbOmLRKWKuGWSqd6T4QuNVJwnA_RYD9a1k=.pem","location":"security-state-staging/intermediates/5e1d14ec-bf
c9-439f-a503-78429b0b2596.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LbcjaXDdzSbOmLRKWKuGWSqd6T4QuNVJwnA/RYD9a1k=","crlite_enrolled":true,"id":"e503815e-602e-4784-b2b8-996d3d90a704","last_modified":1580831371650},{"schema":1580831300864,"derHash":"rshjiY8oTWzUxqP2w+ZSNICjWcM9r2b60zgYSbi7AYs=","subject":"CN=Cloudflare Inc RSA CA-2,O=Cloudflare\\, Inc.,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBDbG91ZGZsYXJlLCBJbmMuMSAwHgYDVQQDExdDbG91ZGZsYXJlIEluYyBSU0EgQ0EtMg==","whitelist":false,"attachment":{"hash":"842301a8382a5def37850ade1e06b5c25ea99a6c56136a48f896bd964b68090f","size":1654,"filename":"hS5jJ4P-iQUErBkvoWBQOd1T7VOAYlOVegvv1iMzpxA=.pem","location":"security-state-staging/intermediates/a38d6897-15d6-441e-b9ae-07da1d37dbb3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hS5jJ4P+iQUErBkvoWBQOd1T7VOAYlOVegvv1iMzpxA=","crlite_enrolled":false,"id":"57692346-8878-48fc-aea7-e7f609f4a9de","last_modified":1580831371647},{"schema":1580831291682,"derHash":"Ho8F
HyIm+ZLRe3zxfw3s4Kp2mQLp/o0R81sZsYpaFPE=","subject":"CN=National Technical University of Athens TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR","subjectDN":"MIGJMQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDQTFBMD8GA1UEAww4TmF0aW9uYWwgVGVjaG5pY2FsIFVuaXZlcnNpdHkgb2YgQXRoZW5zIFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"5e004b9b1d085376feba71c29967263b5cdcc31cca7e606092c3f736254d0209","size":2889,"filename":"YiljC0xS2lPq3_MnjzPbKhYhVKBYFBS37Ng6sk1TQZA=.pem","location":"security-state-staging/intermediates/b378de2a-a5be-440b-bb97-be8c716f2e42.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YiljC0xS2lPq3/MnjzPbKhYhVKBYFBS37Ng6sk1TQZA=","crlite_enrolled":false,"id":"34feab45-913a-4dd1-84b7-d99d60446e72","last_modified":1580831371641},{"schema":1580831294634,"derHash":"TefMrLUJmUJkSVDyzIYTQBJWXGFNUap9MIf6wZaVihQ=","subject":"CN=e-Szigno TSA CA 2017,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN
":"MHAxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHTAbBgNVBAMMFGUtU3ppZ25vIFRTQSBDQSAyMDE3","whitelist":false,"attachment":{"hash":"99eeb6166b538653a00b3b422cf44072341a5b8d18f5b0e12e8ec8a1a8760f47","size":1987,"filename":"-zUr-M0QExvXqqFmoTjEoyptTZT9_MSzDynC4xICVcw=.pem","location":"security-state-staging/intermediates/39b65a62-38b8-4d9c-869d-927659d4f92c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+zUr+M0QExvXqqFmoTjEoyptTZT9/MSzDynC4xICVcw=","crlite_enrolled":false,"id":"91caa638-4e14-4a27-b77c-09e6164f4747","last_modified":1580831371638},{"schema":1580831296037,"derHash":"qg6DtK4ANmeXA9FgO8fmOggEZKAzrkufRlg4rchcYe0=","subject":"CN=QuoVadis Belgium Issuing CA G2,O=QuoVadis Trustlink BVBA,C=BE","subjectDN":"MHMxCzAJBgNVBAYTAkJFMRkwFwYDVQRhDBBOVFJCRS0wNTM3Njk4MzE4MSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQlZCQTEnMCUGA1UEAwweUXVvVmFkaXMgQmVsZ2l1bSBJc3N1aW5nIENBIEcy","whitelist":false,"attachment":{"hash":"2234
7539759669106f3a7765621fb849dad1b802618f047a90329fb3d5376e8f","size":2385,"filename":"4nY96le5C7s4z7Zn4U54gjJ0DBkcyRkQdgPUP_7jCug=.pem","location":"security-state-staging/intermediates/1a441015-13b3-4f5f-9e9f-0a828fcbb180.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4nY96le5C7s4z7Zn4U54gjJ0DBkcyRkQdgPUP/7jCug=","crlite_enrolled":true,"id":"a39fe513-6200-46a9-8bf3-1bcfd4a39f50","last_modified":1580831371635},{"schema":1580831293178,"derHash":"vjPRxX693ZJ7V722BL5Fe1Uv5Wjn89y6CTw57Rwwojk=","subject":"CN=GlobalSign Timestamping CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTEwLwYDVQQDEyhHbG9iYWxTaWduIFRpbWVzdGFtcGluZyBDQSAtIFNIQTI1NiAtIEcz","whitelist":false,"attachment":{"hash":"c80175b04163d7cc6c7d2e9c5545512450e2d6810fe45aa00ba94a8632fd95a8","size":1638,"filename":"0IJvE5elXx6yt0HsXWztwcpMm15CK7mQObUFIdbDWQA=.pem","location":"security-state-staging/intermediates/28332d18-1b84-4af3-b61b-e54f8d27de50.pem","mim
etype":"application/x-pem-file"},"pubKeyHash":"0IJvE5elXx6yt0HsXWztwcpMm15CK7mQObUFIdbDWQA=","crlite_enrolled":false,"id":"9ae52d06-d6e8-4b06-a154-7d811ca1d920","last_modified":1580831371632},{"schema":1580831290205,"derHash":"vh/8Dh/2CIEE9D4yfnx9xyqcp7DfBXkxI6vjLerO528=","subject":"CN=GlobalSign CA 6 for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"MEsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSEwHwYDVQQDExhHbG9iYWxTaWduIENBIDYgZm9yIEFBVEw=","whitelist":false,"attachment":{"hash":"90ada09c822f53f63600f66563831e5787d6a5e5019b3df727996081461170a0","size":1739,"filename":"T_CPVYCiPuMLEQIHPvaGV6XWv5XN7SPSvzuu2ITgIPA=.pem","location":"security-state-staging/intermediates/90f113d9-557a-46c1-9cce-85418c9cdbc0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"T/CPVYCiPuMLEQIHPvaGV6XWv5XN7SPSvzuu2ITgIPA=","crlite_enrolled":false,"id":"65450678-db0b-4efa-acf6-1b5f28c8c48b","last_modified":1580831371626},{"schema":1580831335038,"derHash":"+OO/Hv4I73AMTtv9xP8xnVjst4DfsN2n1RBHs5s
ocY4=","subject":"CN=WoTrus DV Server CA [Run by the Issuer],O=WoTrus CA Limited,C=CN","subjectDN":"MFwxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1RydXMgQ0EgTGltaXRlZDExMC8GA1UEAwwoV29UcnVzIERWIFNlcnZlciBDQSAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"cb3db8844f4cf6e57c8cf55d76cc5f8f0b417e0ed22a9fc06cf2741ac0a55336","size":2101,"filename":"-VWlwEVcGawfAmx6yUXVECmp5xZpZ7uvqv3Jr-xEvE4=.pem","location":"security-state-staging/intermediates/6d8b593d-3f3a-4270-99f9-acc5c0f72b4d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+VWlwEVcGawfAmx6yUXVECmp5xZpZ7uvqv3Jr+xEvE4=","crlite_enrolled":true,"id":"00a2f6a9-b608-4e1c-87f2-7a5cfea1b7f1","last_modified":1580831371623},{"schema":1580831335834,"derHash":"GZ7lgAlVXa4s2gYmkxxkOR1qiMzLH58LLugLZn9YHAY=","subject":"CN=Cisco Meraki CA,O=Cisco Systems\\, Inc.,C=US","subjectDN":"MEUxCzAJBgNVBAYTAlVTMRwwGgYDVQQKExNDaXNjbyBTeXN0ZW1zLCBJbmMuMRgwFgYDVQQDEw9DaXNjbyBNZXJha2kgQ0E=","whitelist":false,"attachment":{"hash":"7342f611
caee0df18ce789033dc9e56f170d71c7d12b34b4fc9e466d18ae427d","size":1638,"filename":"GUIjMNe--V5-Oj0iDybPHPoFZBo3KkQeXR-6l1vJW34=.pem","location":"security-state-staging/intermediates/0ccbae70-0f86-469f-b039-43d5e133fcba.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GUIjMNe++V5+Oj0iDybPHPoFZBo3KkQeXR+6l1vJW34=","crlite_enrolled":false,"id":"b4089320-2338-4364-9003-455eb7c3db79","last_modified":1580831371617},{"schema":1580831337070,"derHash":"ldmo0w9rHAacKWs+EGvDzgHrhK1Xhg0PRr9/FdBTscA=","subject":"CN=DigiCert TLS ICA GeoTrust PCA-G3,OU=www.digicert.com,O=DigiCert\\, Inc.,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEpMCcGA1UEAxMgRGlnaUNlcnQgVExTIElDQSBHZW9UcnVzdCBQQ0EtRzM=","whitelist":false,"attachment":{"hash":"4514cda38d635585a4a6d2254c3883dd54f1c32575f05f56e6eb49c1d11f3d6f","size":1711,"filename":"3RehXzWRn3R3fv3cusa5RRk9PlyTmd350YfJjNQPvrc=.pem","location":"security-state-staging/intermediates/27e7e058-1946
-43a0-a9ac-2cc8952ea030.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3RehXzWRn3R3fv3cusa5RRk9PlyTmd350YfJjNQPvrc=","crlite_enrolled":false,"id":"489a2b6c-03ce-4f5b-bd5e-7d870f6a3c38","last_modified":1580831371598},{"schema":1580831330114,"derHash":"ZjY2wD/QtbFx8rBEB8Pfdns0nIqZDYfOSFiYFm4rUSA=","subject":"CN=Symantec Class 3 ECC 256 bit EV CA - G2,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEwMC4GA1UEAxMnU3ltYW50ZWMgQ2xhc3MgMyBFQ0MgMjU2IGJpdCBFViBDQSAtIEcy","whitelist":false,"attachment":{"hash":"9f762e9d208c868f54d1d9f22496087a7c2ddf82038a661413c0fcada8947697","size":1581,"filename":"PtK3zjOppRxW-hXzyuP7gC8Nt8hPS735XLgT-lQ1KTo=.pem","location":"security-state-staging/intermediates/ef5cc88d-3503-4e5e-bf8b-346475ed4c49.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PtK3zjOppRxW+hXzyuP7gC8Nt8hPS735XLgT+lQ1KTo=","crlite_enrolled":false,"id
":"f82e3ad4-2109-405b-875a-44254587907f","last_modified":1580831371592},{"schema":1580831333860,"derHash":"iegKPtct9z5Y2yN0Tiyj7LwiX3UKYda+JoEk98leRls=","subject":"CN=TrustSafe Organization Validated CA,OU=SSL Department,O=Isimtescil Bilisim Anonim Sirketi,L=Istanbul,C=TR","subjectDN":"MIGTMQswCQYDVQQGEwJUUjERMA8GA1UEBwwISXN0YW5idWwxKjAoBgNVBAoMIUlzaW10ZXNjaWwgQmlsaXNpbSBBbm9uaW0gU2lya2V0aTEXMBUGA1UECwwOU1NMIERlcGFydG1lbnQxLDAqBgNVBAMMI1RydXN0U2FmZSBPcmdhbml6YXRpb24gVmFsaWRhdGVkIENB","whitelist":false,"attachment":{"hash":"741eb73cef38e441d495e385775b23b7e66578c11dcfd91591514ce55e8d824d","size":2255,"filename":"F8P6yRGn6PHOPi3LHmd5_Awd3GeSxMlyfUhUwxtVaoU=.pem","location":"security-state-staging/intermediates/28295eb2-0fa4-40e0-b2af-e05ece3ff066.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F8P6yRGn6PHOPi3LHmd5/Awd3GeSxMlyfUhUwxtVaoU=","crlite_enrolled":false,"id":"80b7ece4-c29e-4494-ad88-0dd9d4fd72bc","last_modified":1580831371589},{"schema":1580831333485,"derHash":"Ies3q0
z274ll7BdmQJyna4suA/LRo4jfc0II6G3u5nk=","subject":"CN=DigiCert High Assurance CA-3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIENBLTM=","whitelist":false,"attachment":{"hash":"d90539ef3ff76bf2ac792ae9bbc21d751d2ce841eab7781e291ab04fd791d950","size":2259,"filename":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm-jrFQ=.pem","location":"security-state-staging/intermediates/3211ad63-2e73-4235-916c-6b7f2a4c67d9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm+jrFQ=","crlite_enrolled":false,"id":"d468c05a-c173-4f74-855c-1e3eba3d2298","last_modified":1580831371587},{"schema":1580831339464,"derHash":"pBBtqF97NKbT3jeITRUokWuE8Eb/t9SqxSERewxplfM=","subject":"CN=Orion Health Direct Secure Messaging CA,OU=Orion Health Direct Secure Messaging,O=Orion Health Inc.,C=US","subjectDN":"MIGKMQswCQYDVQQGEwJVUzEaMBgGA1UEChMRT
3Jpb24gSGVhbHRoIEluYy4xLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEwMC4GA1UEAxMnT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nIENB","whitelist":false,"attachment":{"hash":"8942a52d799e4407f98a25999571b12fe4fe70ec9e8c96715a5740c25bdb1d28","size":2239,"filename":"bDFIpmFQnVfXPxjH5kSmVzxV7SFcnyivqEmwWZSPF3U=.pem","location":"security-state-staging/intermediates/b59d9fc5-64da-4fb3-8e0b-33e5ae941228.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bDFIpmFQnVfXPxjH5kSmVzxV7SFcnyivqEmwWZSPF3U=","crlite_enrolled":false,"id":"39d3f04d-1e55-44d2-ac2c-207049c51797","last_modified":1580831371578},{"schema":1580831339070,"derHash":"LarG/frBbFSMU/8RmCVNfpN3YdIqHnzFwalGLpcUYfU=","subject":"CN=TrustAsia ECC EV TLS Pro CA,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFoxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSQwIgYDVQQDExtUcnVzdEFzaWEgRUNDIEVWIFRMUyBQcm8gQ0E=","whitelist":false,"attachment":{"hash":"97a9ce8bbe9252f62216d67f4991a416a4fc
deaadd410a6256c49e9a395d1a3a","size":1427,"filename":"FM2DBzyPjxqgoESMdjtIkhgTqwpjNM94Fncf5hoKBAg=.pem","location":"security-state-staging/intermediates/d7338706-64ff-461f-8703-a9d2acd7dd78.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FM2DBzyPjxqgoESMdjtIkhgTqwpjNM94Fncf5hoKBAg=","crlite_enrolled":false,"id":"518e4647-08ec-44a9-941f-366feccac035","last_modified":1580831371575},{"schema":1580831334241,"derHash":"vzVY+HfonSfapg2pZxZ2Vw376yFdhKxaNxItZ3a3j24=","subject":"CN=GeoTrust EV ECC CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0dlb1RydXN0IEVWIEVDQyBDQSAyMDE4","whitelist":false,"attachment":{"hash":"76fd10b988ddc4d10ef675e1353505739b36be3396db70baccebfc087010c5f1","size":1390,"filename":"KZiLkK8HMbpxJlPzQa3CEz5YMCWvdd0o1cov4_NrxCA=.pem","location":"security-state-staging/intermediates/196ccf12-c8cc-45fb-8759-263709c412c9.pem","mimetype":"application/x-pe
m-file"},"pubKeyHash":"KZiLkK8HMbpxJlPzQa3CEz5YMCWvdd0o1cov4/NrxCA=","crlite_enrolled":false,"id":"840a78d8-f593-4732-8812-b23743799fe7","last_modified":1580831371556},{"schema":1580831332364,"derHash":"q47piksrl+WQXs6ApkMEwUOrONlQj/cob2gjXg22iic=","subject":"CN=Florida HIE Exchange CA G2,OU=Florida HIE,O=Harris Corp,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRQwEgYDVQQKEwtIYXJyaXMgQ29ycDEUMBIGA1UECxMLRmxvcmlkYSBISUUxIzAhBgNVBAMTGkZsb3JpZGEgSElFIEV4Y2hhbmdlIENBIEcy","whitelist":false,"attachment":{"hash":"f3852aeda8f85636e7791041b0694b02b52d33de2a769be09274f1ca984f7733","size":1780,"filename":"1nUKEuk4dEhejnwcerLSNmjLvtZghm_IXhlNdSkF4cc=.pem","location":"security-state-staging/intermediates/305047b8-a83b-4757-a971-623606a36267.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1nUKEuk4dEhejnwcerLSNmjLvtZghm/IXhlNdSkF4cc=","crlite_enrolled":false,"id":"70561ed2-fa24-49f8-965b-a8c8a121ce7d","last_modified":1580831371552},{"schema":1580831334622,"derHash":"uPROSx+Gl99Uuz0PHmdZbOL+nau
oWvTm8qLnQ5b4xW0=","subject":"CN=DigiCert Assured ID CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IEFzc3VyZWQgSUQgQ0EtMQ==","whitelist":false,"attachment":{"hash":"9f1924a62b10e5287c42ac43753e12a092080fb0e6308ba0aaff1cbf62b2da97","size":2402,"filename":"eabi0-qj3O40S8QpA1hE3oIeYI7XIBG9Prf9SID0GDQ=.pem","location":"security-state-staging/intermediates/542904ea-61fa-4fda-8838-3d7167d5a926.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eabi0+qj3O40S8QpA1hE3oIeYI7XIBG9Prf9SID0GDQ=","crlite_enrolled":false,"id":"621f1f02-ada1-4425-aee3-ad581ab0a99a","last_modified":1580831371550},{"schema":1580831332734,"derHash":"D7bOgJCdGa/uaojJWenpqmRmcVvOBcZEn+tTCghtrxQ=","subject":"CN=GeoTrust SupremeSSL EV 1 CA,OU=www.supremessl.com,O=SupremeSSL,C=NL","subjectDN":"MGUxCzAJBgNVBAYTAk5MMRMwEQYDVQQKEwpTdXByZW1lU1NMMRswGQYDVQQLExJ3d3cuc3VwcmVtZXNzbC5jb20xJDAiBgNVBAMTG0d
lb1RydXN0IFN1cHJlbWVTU0wgRVYgMSBDQQ==","whitelist":false,"attachment":{"hash":"384493a25bd899d9fdf55deb2a362135f4ec8be8dc34518f6004cef3e417556c","size":1691,"filename":"uG3aQXLPd55q_z1RlGHWJQcDYD5HzCoVUz8Q5eD3Rlw=.pem","location":"security-state-staging/intermediates/df7f43b0-32fb-48f8-a431-f2b77edc9607.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uG3aQXLPd55q/z1RlGHWJQcDYD5HzCoVUz8Q5eD3Rlw=","crlite_enrolled":false,"id":"b7c4e0d2-c4b9-4872-b1e7-b9f4dc59e44c","last_modified":1580831371547},{"schema":1580831329745,"derHash":"NU/PxhYqDuIgXb72iTHngDPs6dEl4IJOSbrr+C390Wc=","subject":"CN=GeoTrust SupremeSSL 1 CA,OU=www.supremessl.com,O=SupremeSSL,C=NL","subjectDN":"MGIxCzAJBgNVBAYTAk5MMRMwEQYDVQQKEwpTdXByZW1lU1NMMRswGQYDVQQLExJ3d3cuc3VwcmVtZXNzbC5jb20xITAfBgNVBAMTGEdlb1RydXN0IFN1cHJlbWVTU0wgMSBDQQ==","whitelist":false,"attachment":{"hash":"324604ce7c1feb1281d395804fd405d53c1027c74aaaa93ab18d05f841ca2630","size":1707,"filename":"SM-CBbHgVoJj8KYqNoXbUd-IGEbfvpomZR5lGHQ3qng=.pem"
,"location":"security-state-staging/intermediates/a8e9d4d9-73f3-4a4e-a0dc-fdd198240404.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SM+CBbHgVoJj8KYqNoXbUd+IGEbfvpomZR5lGHQ3qng=","crlite_enrolled":false,"id":"63d1b703-15d1-445c-b43c-64ca8d44bf0a","last_modified":1580831371545},{"schema":1580831336666,"derHash":"lNTs4u2aVFe5aaE7JgSJ6aX+R5CgQfJ6PrQSbIRBjvk=","subject":"CN=DigiCert Secure Server CA,O=DigiCert Inc,C=US","subjectDN":"MEgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxIjAgBgNVBAMTGURpZ2lDZXJ0IFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"c0d77ccda911d76f8c80ebf6c501b4dba9c6a787604981af5b3c3a9f954bac59","size":1642,"filename":"v2OX1FzmsvhGRs3vKv7P5R4N-Aly9A_qKXxfEauTwao=.pem","location":"security-state-staging/intermediates/b3abe3ee-8707-467d-8091-1ab64836b606.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"v2OX1FzmsvhGRs3vKv7P5R4N+Aly9A/qKXxfEauTwao=","crlite_enrolled":false,"id":"86931689-a92f-49d4-a149-95fd2b1d44eb","last_modified":
1580831371541},{"schema":1580831337881,"derHash":"UET2XhBCzTgLC5mX5CgzWPDe73hz2nLv228CR0rjfr4=","subject":"CN=QuoVadis Swiss Advanced CA G2,O=QuoVadis Trustlink Switzerland Ltd.,C=CH","subjectDN":"MGMxCzAJBgNVBAYTAkNIMSwwKgYDVQQKEyNRdW9WYWRpcyBUcnVzdGxpbmsgU3dpdHplcmxhbmQgTHRkLjEmMCQGA1UEAxMdUXVvVmFkaXMgU3dpc3MgQWR2YW5jZWQgQ0EgRzI=","whitelist":false,"attachment":{"hash":"52468c6ff74eaacb84d6dd6f765d0298d7770b1dae8e98d5802a8d4f567db964","size":2003,"filename":"PCO7NaLxR0Lr-39nGUXqmY4h-pmQMueSQPa8s2l13l4=.pem","location":"security-state-staging/intermediates/57cd48b2-3a6e-4130-89c2-dc40d75c65c6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PCO7NaLxR0Lr+39nGUXqmY4h+pmQMueSQPa8s2l13l4=","crlite_enrolled":false,"id":"bc7be9c4-1921-4c16-88a4-6eb56aade751","last_modified":1580831371532},{"schema":1580831331616,"derHash":"5bvcytVy7J0t2W4OXr8EmpGB8HDx4zzBY1rY7Eh9IXc=","subject":"CN=DigiCert Federated Trust CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGUxCzAJBgNVBAYTAl
VTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0IEZlZGVyYXRlZCBUcnVzdCBDQQ==","whitelist":false,"attachment":{"hash":"cf01aee2f6176035c8559ce184ffcfadec801283ea8db12c2b9e6f46a098ba52","size":2345,"filename":"uuhysnUgrwe87B8nb6rPmj9TeTzDQNfGrcbWD5032EE=.pem","location":"security-state-staging/intermediates/ecf46a97-981d-4937-b12f-8d513406ce38.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uuhysnUgrwe87B8nb6rPmj9TeTzDQNfGrcbWD5032EE=","crlite_enrolled":false,"id":"8eeda8c2-f1aa-4f20-a564-47080b5d7906","last_modified":1580831371526},{"schema":1580831331985,"derHash":"wN0GD/jOVW81aD1WTg5mspBxeICGk/g/OqZCMmv20Mg=","subject":"CN=TrustAsia ECC EV TLS Pro CA G2,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MF0xCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMScwJQYDVQQDEx5UcnVzdEFzaWEgRUNDIEVWIFRMUyBQcm8gQ0EgRzI=","whitelist":false,"attachment":{"hash":"0b22b379557262c177cd0df97c067db059c622c348c2768de211920a4c
c62a97","size":1398,"filename":"6lJqHj6Al12YiHTPXbfLj9_MNtnpjUBiUvHLHqoVkTA=.pem","location":"security-state-staging/intermediates/7e4a29a7-3ed7-4e85-8e48-c24ebed06855.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6lJqHj6Al12YiHTPXbfLj9/MNtnpjUBiUvHLHqoVkTA=","crlite_enrolled":false,"id":"293e0ccd-71f9-42a4-ac96-f21584cc8fa2","last_modified":1580831371521},{"schema":1580831338677,"derHash":"V9jVuDJha3gjRmoMNydw0WpdzyRlgfD1g3PlHH4eUxY=","subject":"CN=DigiCert High Assurance CA-3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIENBLTM=","whitelist":false,"attachment":{"hash":"80d4bb692e396cf3ccf6595d18d123459107363391f6c0e030d16cefc85308ba","size":2255,"filename":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm-jrFQ=.pem","location":"security-state-staging/intermediates/e98dee35-7b84-4d8f-9f01-3021b3339da7.pem","mimetype":"application/x-pem-file"},
"pubKeyHash":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm+jrFQ=","crlite_enrolled":false,"id":"2a5f71dc-243b-43b6-918e-b6e20ae381aa","last_modified":1580831371512},{"schema":1580831335425,"derHash":"UW2FbQNTumn/65weugNdeAhEhXAG7OmcBR7BnBDDbNU=","subject":"CN=DigiCert TLS ICA GeoTrust Global,OU=www.digicert.com,O=DigiCert\\, Inc.,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEpMCcGA1UEAxMgRGlnaUNlcnQgVExTIElDQSBHZW9UcnVzdCBHbG9iYWw=","whitelist":false,"attachment":{"hash":"2b6a498e6adf7455626036e3d5498468dd85769c78b6b869202cdcc57038e0db","size":1593,"filename":"cAWbaZmut0LWOQOIkM3RvlL9I2y_OHNWu8-bB1lbGXM=.pem","location":"security-state-staging/intermediates/efd1d410-c75a-40cb-896e-c5e083e18935.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cAWbaZmut0LWOQOIkM3RvlL9I2y/OHNWu8+bB1lbGXM=","crlite_enrolled":false,"id":"a86bf8ec-bd1a-453e-982c-b25e4c008a5e","last_modified":1580831371502},{"schema":1580831330483,"derHash":"
VEULJ4BS+pGRFgDLmPMQCg+1gVKNj+q5i2/++KSMmY4=","subject":"CN=Actalis Client Authentication CA G2,O=Actalis S.p.A./03358520967,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGNMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEjMCEGA1UECgwaQWN0YWxpcyBTLnAuQS4vMDMzNTg1MjA5NjcxLDAqBgNVBAMMI0FjdGFsaXMgQ2xpZW50IEF1dGhlbnRpY2F0aW9uIENBIEcy","whitelist":false,"attachment":{"hash":"888db3995a9779092a92b32155ba48b8f752cb7e76586fcafb29157c596ba126","size":2316,"filename":"6-WU29fzcxxCr7poWUULZoDxQb7pJ5qJhne0S46pWb4=.pem","location":"security-state-staging/intermediates/26b55346-6fba-46c5-ab26-624533bc90b6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6+WU29fzcxxCr7poWUULZoDxQb7pJ5qJhne0S46pWb4=","crlite_enrolled":true,"id":"856d2476-aec9-4824-b7ee-236a8f6d0fa0","last_modified":1580831371497},{"schema":1580831338274,"derHash":"wKShrAXgMJajsquKOFArOeJhThE5e+5z0KZris73ooM=","subject":"CN=DigiCert High Assurance CA-3,OU=www.digicert.com,O=DigiCert Inc,C=US
","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIENBLTM=","whitelist":false,"attachment":{"hash":"e3909fbaebb8ef6af7bbffe333d52eafa063b31f216ab25a26f98adacb9b51f6","size":2349,"filename":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm-jrFQ=.pem","location":"security-state-staging/intermediates/202293f2-84fb-4a8c-b939-35ceaeb78a8d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm+jrFQ=","crlite_enrolled":false,"id":"4495c40e-442c-4744-bcea-962e2b93bfd0","last_modified":1580831371491},{"schema":1580831333108,"derHash":"Ql5yyH/yKFXZkItxq0xksNLySChwl2kMYv5zP2Md448=","subject":"CN=DigiCert Assured ID CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IEFzc3VyZWQgSUQgQ0EtMQ==","whitelist":false,"attachment":{"hash":"fbcee06cf0f489ec7dc8c
26d9e8e072e5eb0c91534e3ec10e979ff1b101f86d8","size":2418,"filename":"eabi0-qj3O40S8QpA1hE3oIeYI7XIBG9Prf9SID0GDQ=.pem","location":"security-state-staging/intermediates/061ce3bb-6e51-49c7-a5f9-08a7b270fbdf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eabi0+qj3O40S8QpA1hE3oIeYI7XIBG9Prf9SID0GDQ=","crlite_enrolled":false,"id":"c866113d-8267-4723-993b-0f7fc4008f25","last_modified":1580831371480},{"schema":1580831331243,"derHash":"3LQArMJJ+4SDQV/CZQvJBIjKlmQxGMsOT0Qkshw6paQ=","subject":"CN=DigiCert High Assurance CA-3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIENBLTM=","whitelist":false,"attachment":{"hash":"7b2bb2e718615878d60921325a6b6a79bfcdb0076c093323e35de7dc5ccb5e1e","size":2259,"filename":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm-jrFQ=.pem","location":"security-state-staging/intermediates/dc2adf52-a65a-47f4-98df-90d1bc2795c0.pem",
"mimetype":"application/x-pem-file"},"pubKeyHash":"emrYgpjLplsXa6OnqyXuj5BgQDPaapisB5WfVm+jrFQ=","crlite_enrolled":false,"id":"b1fa8b2a-9240-4c89-a31e-bbedfe18d2c1","last_modified":1580831371478},{"schema":1579028939007,"derHash":"bwHOS5alTzv287PwG8FFKQLoBm9+9HoEcdmUicwvhEw=","subject":"CN=DigitalTrust Assured CA G3 [Run by the Issuer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MGYxCzAJBgNVBAYTAkFFMR0wGwYDVQQKExREaWdpdGFsIFRydXN0IEwuTC5DLjE4MDYGA1UEAwwvRGlnaXRhbFRydXN0IEFzc3VyZWQgQ0EgRzMgIFtSdW4gYnkgdGhlIElzc3Vlcl0=","whitelist":false,"attachment":{"hash":"e3f0a2228d028c7c2d686497c9827724f05379697bdaebfa9ab67fc93565b02b","size":1305,"filename":"9ZrELmXXgaRdMyl2s40R_lSll2UwWzKv_lc0T1G-S90=.pem","location":"security-state-staging/intermediates/df9de46d-ee97-4db0-92c5-106659dc6344.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9ZrELmXXgaRdMyl2s40R/lSll2UwWzKv/lc0T1G+S90=","crlite_enrolled":false,"id":"747489d6-2a1f-4621-b484-55e2f26e43de","last_modified":1579029043788},{"schem
a":1579028940448,"derHash":"vb9XvRAWOncbKNCdTJAYjVlgcsaZvYJ0/kYo0SUOSb0=","subject":"CN=DigitalTrust Secure CA G3 [Run by the Issuer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MGUxCzAJBgNVBAYTAkFFMR0wGwYDVQQKExREaWdpdGFsIFRydXN0IEwuTC5DLjE3MDUGA1UEAwwuRGlnaXRhbFRydXN0IFNlY3VyZSBDQSBHMyAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"6a1034555007397b09db59427c8e6b61eb18ac3ecad29bdc8289511a2376368e","size":1317,"filename":"n7S9CUGXp7reMdZAD7cwkt9AngliimrF0ya3qfi_Tn0=.pem","location":"security-state-staging/intermediates/92dcc5d2-c2c7-42fd-a315-adf0a0c1e58a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n7S9CUGXp7reMdZAD7cwkt9AngliimrF0ya3qfi/Tn0=","crlite_enrolled":false,"id":"4e95b8dd-b52a-491c-b875-8bf748643131","last_modified":1579029043785},{"schema":1579028933319,"derHash":"0QEGJDi/sK8Fq6ed8A9N1J54uM79XtkpVlwjNhExAZE=","subject":"CN=Global Trust CA - OV (ECC),O=Global Digital Inc.,C=TW","subjectDN":"MFAxCzAJBgNVBAYTAlRXMRwwGgYDVQQKExNHbG9iYWwgRGln
aXRhbCBJbmMuMSMwIQYDVQQDExpHbG9iYWwgVHJ1c3QgQ0EgLSBPViAoRUNDKQ==","whitelist":false,"attachment":{"hash":"a82660958c3ea8942f29245ff2b8ee8aec7c0394bfd0909b9fe76c5f958d64c7","size":1252,"filename":"oWD3L7oqjz3vUhAVyhQoyubwAtUDmmdDOlkahsKwP6M=.pem","location":"security-state-staging/intermediates/154a10aa-4805-4fd8-aa5d-4a0114f27a83.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oWD3L7oqjz3vUhAVyhQoyubwAtUDmmdDOlkahsKwP6M=","crlite_enrolled":false,"id":"420f7c9b-46e0-4c2e-acf4-354a9e1e107f","last_modified":1579029043779},{"schema":1579028930299,"derHash":"9NaVrak2Ni3frtpkTHzO8k63TcQ404GiivqqEUd65n8=","subject":"CN=Global Trust CA - DV (ECC),O=Global Digital Inc.,C=TW","subjectDN":"MFAxCzAJBgNVBAYTAlRXMRwwGgYDVQQKExNHbG9iYWwgRGlnaXRhbCBJbmMuMSMwIQYDVQQDExpHbG9iYWwgVHJ1c3QgQ0EgLSBEViAoRUNDKQ==","whitelist":false,"attachment":{"hash":"c7355ba281b86440b42869da1995f8827d941dd7f536e3597c74d5f9bf8bf1ec","size":1252,"filename":"LUbiRYLu1pSHTj3Z-ypCjtIr7U83tgAbsXPL2H-meVE=.pem","locati
on":"security-state-staging/intermediates/39747309-5dcc-499d-b5fe-d02d1627de6a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LUbiRYLu1pSHTj3Z+ypCjtIr7U83tgAbsXPL2H+meVE=","crlite_enrolled":false,"id":"5d5a8603-5a22-40cc-bcf3-f79feed83467","last_modified":1579029043776},{"schema":1579028937540,"derHash":"TAjC+6lI1IQ3FLYzoYEmskFwONe3RdpB7RXqp6rnxZk=","subject":"CN=Global Trust CA - Client,O=Global Digital Inc.,C=TW","subjectDN":"ME4xCzAJBgNVBAYTAlRXMRwwGgYDVQQKExNHbG9iYWwgRGlnaXRhbCBJbmMuMSEwHwYDVQQDExhHbG9iYWwgVHJ1c3QgQ0EgLSBDbGllbnQ=","whitelist":false,"attachment":{"hash":"a3e006f755c53595620f6d0060a12fede2112d94f648dcd70d3d87b37675dd85","size":2073,"filename":"JgEFqnj4Eusn8_aqR2_HteSVCb6j5aYpdbZslup32ys=.pem","location":"security-state-staging/intermediates/235af0b7-680c-49da-ad9d-8e6a2e51f1fa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JgEFqnj4Eusn8/aqR2/HteSVCb6j5aYpdbZslup32ys=","crlite_enrolled":false,"id":"a4200022-b213-44b7-8b23-b9230dd5c849","last_modi
fied":1579029043773},{"schema":1579028934721,"derHash":"qK7gyk++CQh4qQHLVkElV07GS6KOnpApbtPkkrFgtNk=","subject":"CN=DNEncrypt SHA2 OV SSL/TLS [Run by the Issuer],O=DNEncrypt\\, Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5ETkVuY3J5cHQsIEluYzE3MDUGA1UEAwwuRE5FbmNyeXB0IFNIQTIgT1YgU1NML1RMUyAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"8ec77c856ada00bc203c0a2a7d135f1f333e047356ddccdecae96b4e7660d604","size":2454,"filename":"oTOjvcPyAYB-WsThLALbWlgbUUxVxj6xmmL3GnHrCkY=.pem","location":"security-state-staging/intermediates/08b4b6d3-6190-461c-ab2c-59d46d235160.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oTOjvcPyAYB+WsThLALbWlgbUUxVxj6xmmL3GnHrCkY=","crlite_enrolled":false,"id":"a6a0c891-36a3-44bb-b93e-90f730832f4a","last_modified":1579029043770},{"schema":1579028926994,"derHash":"mgaeR4zTQUSf8ot8d1LFSuz6usWOS1AoVhZJq0gggNs=","subject":"CN=DigitalTrust Secure CA G4 [Run by the Issuer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MGUxCzAJBgN
VBAYTAkFFMR0wGwYDVQQKExREaWdpdGFsIFRydXN0IEwuTC5DLjE3MDUGA1UEAwwuRGlnaXRhbFRydXN0IFNlY3VyZSBDQSBHNCAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"ee227902a2765dd235ffb37849a132e5ace2b7361e7587f18cf42ce39977a16c","size":2467,"filename":"R683Qs6upExakQVDH-vmwK67rfyDMxBotLmYh7TobVA=.pem","location":"security-state-staging/intermediates/40000abd-9451-4eae-98e4-311a759d8645.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"R683Qs6upExakQVDH+vmwK67rfyDMxBotLmYh7TobVA=","crlite_enrolled":false,"id":"2dde196f-ed22-44e8-a3a5-c2cf3108accd","last_modified":1579029043767},{"schema":1579028931778,"derHash":"DaILPAU4a9l1sdvTfw63aJ5qMjZDluBlP/qe7mBnlPU=","subject":"CN=Global Trust CA - DV (RSA),O=Global Digital Inc.,C=TW","subjectDN":"MFAxCzAJBgNVBAYTAlRXMRwwGgYDVQQKExNHbG9iYWwgRGlnaXRhbCBJbmMuMSMwIQYDVQQDExpHbG9iYWwgVHJ1c3QgQ0EgLSBEViAoUlNBKQ==","whitelist":false,"attachment":{"hash":"5cdd0b9b0275f33beab775b37771a02bf084cef5c96a9cf78baff9e34cab1c37","size":2089,"fil
ename":"hwddnilH_pWtWcAnCBvcpQEiJA8MsPuSY74GtASteIo=.pem","location":"security-state-staging/intermediates/8b16acf6-9f74-495d-a9f0-b039aa0c54b5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hwddnilH/pWtWcAnCBvcpQEiJA8MsPuSY74GtASteIo=","crlite_enrolled":false,"id":"6224b875-5c34-475b-8cdf-aecad54173d7","last_modified":1579029043764},{"schema":1579028920989,"derHash":"iF6OHcrQdxTzuiysmtv2hxH7LlY2g/xOM0z5JNl8wkU=","subject":"CN=DNEncrypt SHA2 EV SSL/TLS [Run by the Issuer],O=DNEncrypt\\, Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5ETkVuY3J5cHQsIEluYzE3MDUGA1UEAwwuRE5FbmNyeXB0IFNIQTIgRVYgU1NML1RMUyAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"515389105a63e30072896ef76765146cfb695657c76de28794dd225b612049b3","size":2487,"filename":"EonOFaZgJpBcxWk-Gu5D6SKzi_Nbfzub6RHPOQrObVs=.pem","location":"security-state-staging/intermediates/84327d88-f8a0-4200-a3f7-98e74dd330d9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EonOFaZgJpBcxWk+
Gu5D6SKzi/Nbfzub6RHPOQrObVs=","crlite_enrolled":false,"id":"aea19046-d765-48b5-896c-bca4d813161f","last_modified":1579029043762},{"schema":1579028923899,"derHash":"6xRHA3Gwku0ggB4h6jllObTkKMFwirjJtwaDQjmdPIE=","subject":"CN=Global Trust CA - EV (RSA),O=Global Digital Inc.,C=TW","subjectDN":"MFAxCzAJBgNVBAYTAlRXMRwwGgYDVQQKExNHbG9iYWwgRGlnaXRhbCBJbmMuMSMwIQYDVQQDExpHbG9iYWwgVHJ1c3QgQ0EgLSBFViAoUlNBKQ==","whitelist":false,"attachment":{"hash":"954e40ee7eb9c53e13a02c16f50f72b1a2bcc3abd5f5ca2cfda37936f3b26950","size":2117,"filename":"V2odnnJSCZapUukBa0XBQ7E-peZxS4qRJ22CftbyIG4=.pem","location":"security-state-staging/intermediates/9fd0a474-3344-4a18-81a8-6b47d22813f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V2odnnJSCZapUukBa0XBQ7E+peZxS4qRJ22CftbyIG4=","crlite_enrolled":false,"id":"ea836d76-6bc4-4cdb-8aa6-28726f31823c","last_modified":1579029043753},{"schema":1579028918130,"derHash":"lp4yAFIOssaalmdYfm3U0LI/KPUQzBMXZwqO02E+vq0=","subject":"CN=DigitalTrust High Assurance C
A G4 [Run by the Issuer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MG0xCzAJBgNVBAYTAkFFMR0wGwYDVQQKExREaWdpdGFsIFRydXN0IEwuTC5DLjE/MD0GA1UEAww2RGlnaXRhbFRydXN0IEhpZ2ggQXNzdXJhbmNlIENBIEc0ICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"hash":"e74dd2a02806fa7c508188e10a5f0c0712f1cfbccde8988e042626a766beecb4","size":2507,"filename":"LFyh5Bg1aFs3y7w1j2dwtnxqDbovX0i8cL9gYJC6PXw=.pem","location":"security-state-staging/intermediates/df91fee1-b72c-4071-bb40-85741d9a30db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LFyh5Bg1aFs3y7w1j2dwtnxqDbovX0i8cL9gYJC6PXw=","crlite_enrolled":false,"id":"82e3caed-61a5-46f8-b0a5-e0e5548b3eaa","last_modified":1579029043747},{"schema":1579028915292,"derHash":"A3GlU+Ss9AJFkQfo95M3nMVpEw8u4DxBL+2HtcFyQkQ=","subject":"CN=DNEncrypt ECC DV SSL/TLS [Run by the Issuer],O=DNEncrypt\\, Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5ETkVuY3J5cHQsIEluYzE2MDQGA1UEAwwtRE5FbmNyeXB0IEVDQyBEViBTU0wvVExTICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","wh
itelist":false,"attachment":{"hash":"f33c1660f86553d61d7d2c9223b3d32b7720ca57b4c5c5a3542c544085b3ba13","size":1309,"filename":"cMgUafsF3Pj6CXkE48F1T9jPwW-ZXrmmryJ99sHNyYA=.pem","location":"security-state-staging/intermediates/73b1704d-b140-489e-a73d-4b23fc14264f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cMgUafsF3Pj6CXkE48F1T9jPwW+ZXrmmryJ99sHNyYA=","crlite_enrolled":false,"id":"626f9b82-c857-46cc-b90a-e7bcf3ac92cc","last_modified":1579029043744},{"schema":1579028919558,"derHash":"6ZOtZU1FhUS7Dk2n7HxfumDEZFebGyLGWSPd0UpngKw=","subject":"CN=DNEncrypt ECC EV SSL/TLS [Run by the Issuer],O=DNEncrypt\\, Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5ETkVuY3J5cHQsIEluYzE2MDQGA1UEAwwtRE5FbmNyeXB0IEVDQyBFViBTU0wvVExTICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"hash":"0c64bd4a0285b5cf304cffc344c87492bc476b3a278216dda0ca3efb7367f40d","size":1341,"filename":"m7sp44VsyZf6_AVSHx-N3M0tXcbynVKIOugeitl06ZM=.pem","location":"security-state-staging/intermedi
ates/ffd48335-dab5-42df-8a9e-44fa95bafa0a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m7sp44VsyZf6/AVSHx+N3M0tXcbynVKIOugeitl06ZM=","crlite_enrolled":false,"id":"777c1fad-dd5b-4d30-a1d2-2cea029d3253","last_modified":1579029043738},{"schema":1579028913702,"derHash":"Ot3JgkDiGnLZxA61BYkFqkDt+jRa3t3lhEzLD0YthPc=","subject":"CN=Global Trust CA - EV (ECC),O=Global Digital Inc.,C=TW","subjectDN":"MFAxCzAJBgNVBAYTAlRXMRwwGgYDVQQKExNHbG9iYWwgRGlnaXRhbCBJbmMuMSMwIQYDVQQDExpHbG9iYWwgVHJ1c3QgQ0EgLSBFViAoRUNDKQ==","whitelist":false,"attachment":{"hash":"a73482c81f3542c42bb1637ffc95ed5fd477eb92360c59b579ee3dcdf8374936","size":1280,"filename":"PRcljLZm-PUuo_QCHUFdjCyCwTjglb9Jg7caPjv8bI0=.pem","location":"security-state-staging/intermediates/1d3bd069-53ec-4918-9c0b-66e52af2eb8c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PRcljLZm+PUuo/QCHUFdjCyCwTjglb9Jg7caPjv8bI0=","crlite_enrolled":false,"id":"fcad5a9e-1e6a-49e0-9041-34e4a071516c","last_modified":1579029043735},{"schema":
1579028916680,"derHash":"yjd7GIZrI48xqASd/RNgnlSbdROQ7vzbmpoTUxJ/+zU=","subject":"CN=DNEncrypt ECC OV SSL/TLS [Run by the Issuer],O=DNEncrypt\\, Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5ETkVuY3J5cHQsIEluYzE2MDQGA1UEAwwtRE5FbmNyeXB0IEVDQyBPViBTU0wvVExTICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"hash":"b7a060b2b07e92212754c63a106ae5c0f0264b8a9e50ae75feb93ab2437da7ff","size":1309,"filename":"Vqfldlh0sPrGbhkt70MsWwISyFbsgHXV3Scyfh6rREM=.pem","location":"security-state-staging/intermediates/b4b0e86a-be59-4d75-89d3-13042e2a838f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vqfldlh0sPrGbhkt70MsWwISyFbsgHXV3Scyfh6rREM=","crlite_enrolled":false,"id":"f546b858-d355-4107-834f-3c7e2949cc1d","last_modified":1579029043733},{"schema":1579028909294,"derHash":"FlLGbbZC0KUkv4n/3z7tWo6UsUpusH56ReqAxU+ehZM=","subject":"CN=DigitalTrust High Assurance CA G3 [Run by the Issuer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MG0xCzAJBgNVBAYTAkFFMR0wGwYDVQQKExREaWd
pdGFsIFRydXN0IEwuTC5DLjE/MD0GA1UEAww2RGlnaXRhbFRydXN0IEhpZ2ggQXNzdXJhbmNlIENBIEczICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"hash":"3e8bf279c9897937ae0931414eed45e94b47bdf7016de3722ff1cd06587daef8","size":1358,"filename":"mLgcAaWaR7874mBWx4gTZEcxbuqvMnF41qXNwAW8A1E=.pem","location":"security-state-staging/intermediates/14c76e24-e6f7-4004-8696-e7ffffd72208.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mLgcAaWaR7874mBWx4gTZEcxbuqvMnF41qXNwAW8A1E=","crlite_enrolled":false,"id":"4b4467a7-4c39-45a4-a5c8-00e3f9693711","last_modified":1579029043730},{"schema":1579028906281,"derHash":"dYQWlcYABAZgo9NyXlMdPc+vzNJvWIN16rLY0SmQR4U=","subject":"CN=DigitalTrust Assured CA G4 [Run by the Issuer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MGYxCzAJBgNVBAYTAkFFMR0wGwYDVQQKExREaWdpdGFsIFRydXN0IEwuTC5DLjE4MDYGA1UEAwwvRGlnaXRhbFRydXN0IEFzc3VyZWQgQ0EgRzQgIFtSdW4gYnkgdGhlIElzc3Vlcl0=","whitelist":false,"attachment":{"hash":"bbff348acb2ad27e947747edbb0636e41b1168d27439b5bfbfce
18f743d587d2","size":2450,"filename":"wVc5iD8EbsOm6PnS6dmUMrpLPgr3_owf0Dl1X-4IYQ4=.pem","location":"security-state-staging/intermediates/9baa2709-0abc-4a36-827c-799f5de9c2af.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wVc5iD8EbsOm6PnS6dmUMrpLPgr3/owf0Dl1X+4IYQ4=","crlite_enrolled":false,"id":"86983387-0e43-46b3-9e47-6a40ed8f8619","last_modified":1579029043727},{"schema":1579028904846,"derHash":"qXQcP6RM+Xd6Sbb1Du1dDrh+lIHzpFCWw5VqXuG7iEQ=","subject":"CN=DigitalTrust CA G4 [Run by the Issuer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MF4xCzAJBgNVBAYTAkFFMR0wGwYDVQQKExREaWdpdGFsIFRydXN0IEwuTC5DLjEwMC4GA1UEAwwnRGlnaXRhbFRydXN0IENBIEc0ICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"hash":"84f190959472ef5c60f53b166df0e32ccc218bd9a02ad1184c432a5c1187fd7c","size":2454,"filename":"3MPa3WIVqOW4yU6-w-ZSt3hKIEBpElbYDOX4tDWu1pI=.pem","location":"security-state-staging/intermediates/b67dbf30-2e5f-4572-9a51-963a2e41fcd9.pem","mimetype":"application/x-pem-file"},"pubKey
Hash":"3MPa3WIVqOW4yU6+w+ZSt3hKIEBpElbYDOX4tDWu1pI=","crlite_enrolled":false,"id":"b8b2f836-8e81-4a67-8afc-877abf1c8895","last_modified":1579029043724},{"schema":1579028910703,"derHash":"nRkILiQzvlUB9GkSlXD1c4c7Lf6DhrH4qd+pjC+q3Ns=","subject":"CN=DNEncrypt SHA2 DV SSL/TLS [Run by the Issuer],O=DNEncrypt\\, Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5ETkVuY3J5cHQsIEluYzE3MDUGA1UEAwwuRE5FbmNyeXB0IFNIQTIgRFYgU1NML1RMUyAgW1J1biBieSB0aGUgSXNzdWVyXQ==","whitelist":false,"attachment":{"hash":"a65bbd2c04e427655a0c45d1f82f7685ada08bc874a74ab4e09037ec98ac9d5a","size":2458,"filename":"3E1xVsnJnhe9i57XMuug-LOT83YzrJjC1N60Oln6OaU=.pem","location":"security-state-staging/intermediates/c1c68b60-29de-4cdf-8ba2-7adf17023d5a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3E1xVsnJnhe9i57XMuug+LOT83YzrJjC1N60Oln6OaU=","crlite_enrolled":false,"id":"66492022-3f9c-4abc-b14f-9bce674885fb","last_modified":1579029043721},{"schema":1579028903393,"derHash":"vg1slHe5ggklSa3T1cC9GejxPE9Oh
elHEpfhxeGax2g=","subject":"CN=DigitalTrust CA G3 [Run by the Issuer],O=Digital Trust L.L.C.,C=AE","subjectDN":"MF4xCzAJBgNVBAYTAkFFMR0wGwYDVQQKExREaWdpdGFsIFRydXN0IEwuTC5DLjEwMC4GA1UEAwwnRGlnaXRhbFRydXN0IENBIEczICBbUnVuIGJ5IHRoZSBJc3N1ZXJd","whitelist":false,"attachment":{"hash":"eb78b6848ba5286d4224160e64392e5ad1c80330a158642dd0a826b312889cf6","size":1309,"filename":"0r9lDiNtrXm0xXuKfgPxSSDXNDGuK2HF29dk8BUZsCA=.pem","location":"security-state-staging/intermediates/5ba9312c-58e2-408d-ab65-a5b513dd2ccf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0r9lDiNtrXm0xXuKfgPxSSDXNDGuK2HF29dk8BUZsCA=","crlite_enrolled":false,"id":"f4a41986-65e8-483c-bdb5-1b551dcf0317","last_modified":1579029043719},{"schema":1579028942702,"derHash":"pXZN/QRUrToGQouQfbiqQ22mMXIJ6v1h3ULlaud/mxM=","subject":"CN=vTrus DV SSL CA G1,O=iTrusChina Co.\\, Ltd.,C=CN","subjectDN":"MEkxCzAJBgNVBAYTAkNOMR0wGwYDVQQKDBRpVHJ1c0NoaW5hIENvLiwgTHRkLjEbMBkGA1UEAwwSdlRydXMgRFYgU1NMIENBIEcx","whitelist":false,"attachme
nt":{"hash":"2139889982ea46a63a464eeadd8924a0691d8a5aafe08c973053fa5c343bb807","size":1715,"filename":"Lh5Dl4rrZsfMQM9Q9U2BcmEKABgw3NzU5omS-Hb7j-E=.pem","location":"security-state-staging/intermediates/5381eea4-5663-4fb1-8a43-154a02daae8e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Lh5Dl4rrZsfMQM9Q9U2BcmEKABgw3NzU5omS+Hb7j+E=","crlite_enrolled":true,"id":"74de0e26-7443-4e36-b943-532a38006251","last_modified":1579029043713},{"schema":1579028944355,"derHash":"jlzqHRASUhwnpOEScHArx8mhFW8TUHPWyk5C7ugmJJ4=","subject":"CN=QuoVadis Europe Advanced CA G1,O=QuoVadis Trustlink Deutschland GmbH,C=DE","subjectDN":"MIGAMQswCQYDVQQGEwJERTEaMBgGA1UEYQwRVkFUREUtREUyOTY4OTgzODIxLDAqBgNVBAoMI1F1b1ZhZGlzIFRydXN0bGluayBEZXV0c2NobGFuZCBHbWJIMScwJQYDVQQDDB5RdW9WYWRpcyBFdXJvcGUgQWR2YW5jZWQgQ0EgRzE=","whitelist":false,"attachment":{"hash":"c2dcb9263638c8e20a18233f4f7774cbe2557b5e3f14dc6772a603042c2b5fb2","size":2471,"filename":"cFVZyGLFfkszy_X-hkVMcSVvZFH70X8fvwA5CnidJ9A=.pem","location":"secur
ity-state-staging/intermediates/4bb7a95b-e5ad-47af-8a74-99ab87c335aa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cFVZyGLFfkszy/X+hkVMcSVvZFH70X8fvwA5CnidJ9A=","crlite_enrolled":true,"id":"98356c2d-a35c-4278-8d52-4deef1c5fa59","last_modified":1579029043711},{"schema":1579028943120,"derHash":"+xFH56uXopu5wRQKvz3oMfTF9g0RuQ/smZoIFjddhFc=","subject":"CN=DC Government SHA2 Assured ID Intermediate CA,OU=Office of the Chief Technology Officer,O=Government of the District of Columbia,C=US","subjectDN":"MIGnMQswCQYDVQQGEwJVUzEvMC0GA1UEChMmR292ZXJubWVudCBvZiB0aGUgRGlzdHJpY3Qgb2YgQ29sdW1iaWExLzAtBgNVBAsTJk9mZmljZSBvZiB0aGUgQ2hpZWYgVGVjaG5vbG9neSBPZmZpY2VyMTYwNAYDVQQDEy1EQyBHb3Zlcm5tZW50IFNIQTIgQXNzdXJlZCBJRCBJbnRlcm1lZGlhdGUgQ0E=","whitelist":false,"attachment":{"hash":"0b2d79a38acd24c45b952101f6a70cb8f52427e090db11f7a958102e19ff5991","size":1938,"filename":"eBMo_2IweCsxeqG8ggZwOamIcoYP6_GqxtfdG-LT0UQ=.pem","location":"security-state-staging/intermediates/31697f1b-6613-4efe-9f5a-1c
51e06249db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eBMo/2IweCsxeqG8ggZwOamIcoYP6/GqxtfdG+LT0UQ=","crlite_enrolled":false,"id":"521e1353-a4bb-4e91-b7aa-955db2c75172","last_modified":1579029043704},{"schema":1579028942315,"derHash":"VJiWPf+mUWBPRn4QjmWhg0cPqbVXwSnd+MnYErTwv5Y=","subject":"CN=NETLOCK Trust Qualified CA,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"MFwxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMSMwIQYDVQQDDBpORVRMT0NLIFRydXN0IFF1YWxpZmllZCBDQQ==","whitelist":false,"attachment":{"hash":"eca87866bec2d4554f1b58f8091c7337c82c9e65d743cf2eba31c9d2757e5244","size":2073,"filename":"fuUqgkkwOoU6AwXExGnKFu7G3knCONHh2ksz-wBRRbY=.pem","location":"security-state-staging/intermediates/5c604286-d66a-44d4-b654-de83a937b1a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fuUqgkkwOoU6AwXExGnKFu7G3knCONHh2ksz+wBRRbY=","crlite_enrolled":false,"id":"ce93fbf8-83be-4a31-acf0-fd669baf4f55","last_modified":1579029043697},{"schema":15790289447
48,"derHash":"a6qwxDPXef1qS21W1jBNXm6l3mif41pDA4pAKPNF32A=","subject":"CN=TrustID Server CA O1,OU=TrustID Server,O=IdenTrust,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxFzAVBgNVBAsTDlRydXN0SUQgU2VydmVyMR0wGwYDVQQDExRUcnVzdElEIFNlcnZlciBDQSBPMQ==","whitelist":false,"attachment":{"hash":"ff57c4d65b0b7547b7257b720248edc7df260a756f562751560760f5692ed85a","size":2398,"filename":"TpfnK_TFKAbtiqXG0BETu96LfmJwwZKETBR58_SIZnk=.pem","location":"security-state-staging/intermediates/cb7629a5-e914-4dfc-8b42-a9f8565378d8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TpfnK/TFKAbtiqXG0BETu96LfmJwwZKETBR58/SIZnk=","crlite_enrolled":true,"id":"74822f06-6362-433e-a670-6209b0f88ebc","last_modified":1579029043693},{"schema":1577473661023,"derHash":"WtQYO1Tw4nYtqNkQ4efp8qsvG8TOamOPDbvzN+tKE58=","subject":"CN=Symantec Class 3 ECC 256 bit Extended Validation CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZW
MgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxPDA6BgNVBAMTM1N5bWFudGVjIENsYXNzIDMgRUNDIDI1NiBiaXQgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"a298322e090d871dee6a5377ed4d7372c1bd2c977bc9067c23d4471b8680577d","size":1406,"filename":"sofhbubvXHTCSb_u26mxxJyvvNAx0U-JADKlcpRG9WA=.pem","location":"security-state-staging/intermediates/cd1dd854-37d4-44b1-b0ea-eaa57fadb3ea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sofhbubvXHTCSb/u26mxxJyvvNAx0U+JADKlcpRG9WA=","crlite_enrolled":false,"id":"0cec5b1f-5cf4-4d0d-95f5-f13f8a18d57e","last_modified":1577473769153},{"schema":1577473659233,"derHash":"ZOcWAfcFCSHe4DnANJNhXkiPEvw/zsut9DiqRn7h1Bo=","subject":"CN=GlobalSign PersonalSign 2 CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAyIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"5fbdd9d4f35d177aa98a436994c97d3b3775ddb8c383c1eb9ef3dea14
96456cb","size":1569,"filename":"Uln62-9-5Wt3xmkVju62Zqx1VcoZH7PCLXpxS0B8L4k=.pem","location":"security-state-staging/intermediates/15861c41-dd2c-4e34-a1cf-2cb02237f06a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uln62+9+5Wt3xmkVju62Zqx1VcoZH7PCLXpxS0B8L4k=","crlite_enrolled":false,"id":"8d244824-310b-4dff-a724-1de13c98b0de","last_modified":1577473769150},{"schema":1577473662286,"derHash":"JUvpHBq8so215NZ1opoeeIRgsGWR8bqEl8vReDfier4=","subject":"CN=GlobalSign PersonalSign 1 CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAxIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"bc9230903dfbbfdcd3c101efc4734db554a1b1c549cf25ffec6ac311d6f57552","size":1569,"filename":"YRypdHS0Ru4gIYd-v2Cul5vQVyh8seMxVJvPr2qLJOA=.pem","location":"security-state-staging/intermediates/eb2091ee-9a1e-4ade-96fc-d8ad4c4294c8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YRypdHS0Ru4gIYd+v2Cu
l5vQVyh8seMxVJvPr2qLJOA=","crlite_enrolled":false,"id":"0b699a25-cbef-43aa-9d17-e10c820aba03","last_modified":1577473769134},{"schema":1577473661866,"derHash":"FQc8a73HRpmohRjCelfJVuXiPWypYZ5SGkaMeHPeT4o=","subject":"CN=QuoVadis PKIoverheid Organisatie Persoon CA - G3,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MIGDMQswCQYDVQQGEwJOTDEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xFzAVBgNVBGEMDk5UUk5MLTMwMjM3NDU5MTkwNwYDVQQDDDBRdW9WYWRpcyBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBQZXJzb29uIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"28af41c11c70cf3e8ab413a31b4bfdda3463af11655163604adb33bc16fa601a","size":2584,"filename":"5V1JaYa-6v2oFoMXifuhrjdea3drxtVr9lqziPTCV9M=.pem","location":"security-state-staging/intermediates/13ac31b3-3b06-43f6-adbc-a093f09aa585.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5V1JaYa+6v2oFoMXifuhrjdea3drxtVr9lqziPTCV9M=","crlite_enrolled":true,"id":"7efaa58e-f86c-4e33-a478-1aba997bda84","last_modified":1577473769128},{"schema":1577473661458,"derHash":"
m5xV1YbxX0/woS4+h6oq5fbAwhiFfg20zEobp05JP1Q=","subject":"CN=SSL.com Client Certificate Intermediate CA RSA R1,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxOjA4BgNVBAMMMVNTTC5jb20gQ2xpZW50IENlcnRpZmljYXRlIEludGVybWVkaWF0ZSBDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"60c1324f1b4e8c85bb78e12327e3d72df8cb78ba2d2069292ebb40949c16575c","size":2454,"filename":"YeeUjd94ScdJ8i2-hpJwlv6sWAHbchQGz-Tc2OPHYTY=.pem","location":"security-state-staging/intermediates/65637eab-d23b-44cc-b000-271ee3dc8738.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YeeUjd94ScdJ8i2+hpJwlv6sWAHbchQGz+Tc2OPHYTY=","crlite_enrolled":true,"id":"09522f6d-b510-4a0e-aaf4-f4b95ad1504e","last_modified":1577473769122},{"schema":1576536065510,"derHash":"CCBMUq3aqXpv3vcC9s60uU5Xj4/BwwHJ1RNqs4HPp9k=","subject":"CN=QuoVadis Issuing CA G5,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYW
RpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpcyBJc3N1aW5nIENBIEc1","whitelist":false,"attachment":{"hash":"66f3123973d39ccbf60d892e9ebde107446c11a5c53f318327323821448c1e41","size":2381,"filename":"3Fz_Px_gHN6RuC6dUox8MHiOEiVu0gRwp1hvGNsgDYo=.pem","location":"security-state-staging/intermediates/92f45ca6-dd81-4ea8-8d09-b4f49e9bf983.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3Fz/Px/gHN6RuC6dUox8MHiOEiVu0gRwp1hvGNsgDYo=","crlite_enrolled":false,"id":"7bc692ae-1a69-4513-ab7b-11be9685c440","last_modified":1576536534255},{"schema":1576536064064,"derHash":"6nb58huSvtaYEIVm9fCSEbIExQNcnQGUM8Y1jfoKc8o=","subject":"CN=TI Trust Technologies DV CA,O=TI Trust Technologies S.R.L.,L=Pomezia,ST=Roma,C=IT","subjectDN":"MHsxCzAJBgNVBAYTAklUMQ0wCwYDVQQIEwRSb21hMRAwDgYDVQQHEwdQb21lemlhMSUwIwYDVQQKExxUSSBUcnVzdCBUZWNobm9sb2dpZXMgUy5SLkwuMSQwIgYDVQQDExtUSSBUcnVzdCBUZWNobm9sb2dpZXMgRFYgQ0E=","whitelist":false,"attachment":{"hash":"c00194c16ee92968419bef2890e0a9f99c7ba4d5e671c1c2d6d8aa388428c9ea","si
ze":2150,"filename":"_TQ1SdM_c-9Y7ggqiTm5AZCppmeqhMts_1_7qE6c-xM=.pem","location":"security-state-staging/intermediates/1b2efaae-5ec5-45f0-ad37-15376c4ec56f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/TQ1SdM/c+9Y7ggqiTm5AZCppmeqhMts/1/7qE6c+xM=","crlite_enrolled":false,"id":"25f9b537-5a44-42db-a613-3918314a6ff8","last_modified":1576536534251},{"schema":1576536062656,"derHash":"5hpIwzz5SqdiSmFEFhoHWmll5qTrTNEcXvvRx5eGLXU=","subject":"SERIALNUMBER=202016,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDE2","whitelist":false,"attachment":{"hash":"e8dbb214f2c572f1efa48045b1982c3ecc9acc6245e47f1ef69beb6bbf4d7d20","size":2333,"filename":"nLR5xUKq0rdJtnZz181UU9uGySiik-vmQRP8KKXXm5Q=.pem","location":"security-state-staging/intermediates/d54f9898-1680-47bd-a9d3-899013d3bed5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n
LR5xUKq0rdJtnZz181UU9uGySiik+vmQRP8KKXXm5Q=","crlite_enrolled":false,"id":"5e859662-94cb-44d3-8c1d-78e7e9ec6098","last_modified":1576536534247},{"schema":1576536061124,"derHash":"XtlQFWaEpjtyY4OpkIcZ2TFjuZhMPIYpIh8GE7ZRgUA=","subject":"CN=SECOM Passport for Web EV 2.0 CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MF8xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSkwJwYDVQQDEyBTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIEVWIDIuMCBDQQ==","whitelist":false,"attachment":{"hash":"dcd65eecda4a3dced1e4e4ad24854f9c5c361683698a129262cffcca2c3f7911","size":1626,"filename":"Wa2FjlVfGKwvkiH0LYWh-y-ihHlaTmVQ-gqZEsR3RwY=.pem","location":"security-state-staging/intermediates/de596f76-eb11-48b1-81fc-9fbb828ef964.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wa2FjlVfGKwvkiH0LYWh+y+ihHlaTmVQ+gqZEsR3RwY=","crlite_enrolled":true,"id":"a7834442-473f-4afa-8837-5fcba0ed97c0","last_modified":1576536534244},{"schema":1576536058303,"derHash":"DxVUwv1ZGwJWpgjhwTaoN+em4EFWHuCKkRsq/c
08bBs=","subject":"CN=GlobalSign Root E46,O=GlobalSign nv-sa,C=BE","subjectDN":"MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQDExNHbG9iYWxTaWduIFJvb3QgRTQ2","whitelist":false,"attachment":{"hash":"619239fa36d141159ca184a5846f04250cf658d2d441555c880bc314397cd6f9","size":1089,"filename":"4EoCLOMvTM8sf2BGKHuCijKpCfXnUUR_g_0scfb9gXM=.pem","location":"security-state-staging/intermediates/053b9ee7-c4d5-4804-9f95-f705688c379e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4EoCLOMvTM8sf2BGKHuCijKpCfXnUUR/g/0scfb9gXM=","crlite_enrolled":false,"id":"08445463-0e37-4bbe-a1ed-f079c2145e45","last_modified":1576536534240},{"schema":1576536056853,"derHash":"sKbvA1DnxMYFa+6nr50thgue0QITe5cp08IyFtGVVGo=","subject":"CN=Advanced Class 3 e-Szigno CA 2009,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGFMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xKjAoBgNVBAMMIUFkdmFuY2VkIENsYXNzIDMgZS1Temlnbm8gQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWdub
y5odQ==","whitelist":false,"attachment":{"hash":"0ed62164b86f37c69eb2018a4a79db046f2eae11bfb1c748569dff5da6e94178","size":1768,"filename":"VGt-HUDy6qey1Up5ZYyfXaLC_1Yy9l4AvJsHFIQXC5g=.pem","location":"security-state-staging/intermediates/912a52c5-97ea-4353-806f-dbf6b9c95e81.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VGt+HUDy6qey1Up5ZYyfXaLC/1Yy9l4AvJsHFIQXC5g=","crlite_enrolled":true,"id":"1d065829-106f-4cf5-a7ce-33874e651514","last_modified":1576536534237},{"schema":1576536055441,"derHash":"ZlZv7dYNs64QkQ8qiXB89RWQkgM6cadc2GhR1zWRlBE=","subject":"CN=AffirmTrust Premium Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=AffirmTrust,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzEUMBIGA1UECgwLQWZmaXJtVHJ1c3QxLTArBgNVBAsMJGh0dHA6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291cmNlczEzMDEGA1UEAwwqQWZmaXJtVHJ1c3QgUHJlbWl1bSBFeHRlbmRlZCBWYWxpZGF0aW9uIENB","whitelist":false,"attachment":{"hash":"07e66a596ddcbc285e7ce2b1bcf7871dd6efe67086212e3bc3b716b226897194","size":2259,"filena
me":"3gMCuDMv_P0gIb194xpHJCsdZogzAhE3N6usv_7BXhk=.pem","location":"security-state-staging/intermediates/df155982-cf71-469c-b7b6-f9ec964f04d5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3gMCuDMv/P0gIb194xpHJCsdZogzAhE3N6usv/7BXhk=","crlite_enrolled":false,"id":"3b6cb9bb-6102-43a3-a5ec-c29bd087081d","last_modified":1576536534233},{"schema":1576536054026,"derHash":"uJslas18i/xcE2qFcFdTUCGenVWHmoWn7AzAwSg8JKM=","subject":"CN=GeoTrust Primary Transition Root,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGsxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSkwJwYDVQQDEyBHZW9UcnVzdCBQcmltYXJ5IFRyYW5zaXRpb24gUm9vdA==","whitelist":false,"attachment":{"hash":"3b63926b8672802e6e86e795d069d9b8ebe0d873eda192eea364acc603da92ea","size":1321,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/fb461011-416d-431a-adcc-978da8bb647a.pem","mimetype":"application/x-pem-file"},"pubKeyHash"
:"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"6867e533-7324-4367-bc4f-614a4d65ee7e","last_modified":1576536534229},{"schema":1576536051207,"derHash":"vq9G0P9iZF9WvhGDDd78ZjN5YZ8zfoVxNJHIOuF5SB0=","subject":"CN=DigiCert High Assurance Code Signing CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMjAwBgNVBAMTKURpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIENvZGUgU2lnbmluZyBDQS0x","whitelist":false,"attachment":{"hash":"bcc6fa461c63e72b5b0bdc1f0528fcda516e2b2b7713c3adfd2e23e60cd2e4d3","size":2398,"filename":"Ri51OBAOoLg9jnSXfa68LI5ByJkcEGrPLItVgWCXEi0=.pem","location":"security-state-staging/intermediates/c6968810-a29a-4b33-a240-69b369665d59.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ri51OBAOoLg9jnSXfa68LI5ByJkcEGrPLItVgWCXEi0=","crlite_enrolled":false,"id":"a6c9e2a8-cd22-4f84-9e9f-9966c2232b36","last_modified":1576536534222},{"schema":1576536052576,"derHash":
"c2CeaO6qi1KAjLUD+46mTt04kj2pxVrniAUatBbddZ4=","subject":"CN=Cybertrust Japan SureMail CA G4,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MFwxCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEoMCYGA1UEAxMfQ3liZXJ0cnVzdCBKYXBhbiBTdXJlTWFpbCBDQSBHNA==","whitelist":false,"attachment":{"hash":"c3fcdbacd6b54d25047ea8d3094785afc7d48a4287b00a64a28107c78a9b5252","size":1768,"filename":"M4LPRPbTPA3AGjc9JdVUp9Em24oAD5Kjau8R089zAB8=.pem","location":"security-state-staging/intermediates/c7a96d3d-04d0-42dd-865d-c5f45b51f284.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M4LPRPbTPA3AGjc9JdVUp9Em24oAD5Kjau8R089zAB8=","crlite_enrolled":false,"id":"6f4c9ab7-9848-46a5-9f9a-5edda5ee1d2f","last_modified":1576536534218},{"schema":1576536049752,"derHash":"22y7hzO+tJOvOccCqd0GdDFOLtMmDNUlCkkUgHV9jqI=","subject":"CN=EC-Ciutadania,OU=Serveis P\u00fablics de Certificaci\u00f3,O=CONSORCI ADMINISTRACIO OBERTA DE CATALUNYA,C=ES","subjectDN":"MIGGMQswCQYDVQQGEwJFUzEzMDEGA1UECgwqQ09
OU09SQ0kgQURNSU5JU1RSQUNJTyBPQkVSVEEgREUgQ0FUQUxVTllBMSowKAYDVQQLDCFTZXJ2ZWlzIFDDumJsaWNzIGRlIENlcnRpZmljYWNpw7MxFjAUBgNVBAMMDUVDLUNpdXRhZGFuaWE=","whitelist":false,"attachment":{"hash":"5c694da195ee633dd4f5eacef34a18111f5e53e6c9465f5b1f0838a7d708db50","size":2097,"filename":"N2E0VULCCzFKdEp8VKghUqKDvpzc2iM_BQAAwtDlBw0=.pem","location":"security-state-staging/intermediates/9b12aa4e-23ee-4d0a-a54c-66e324175fe8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N2E0VULCCzFKdEp8VKghUqKDvpzc2iM/BQAAwtDlBw0=","crlite_enrolled":false,"id":"0da25c82-2a82-44ca-9a30-70c090781a84","last_modified":1576536534211},{"schema":1576536046907,"derHash":"wtT9+72C9KHNrEcT46sJmVYJGNehcN3gP33b+aKI3Nw=","subject":"CN=SafeToOpen EV TLS ICA RSA R1,O=SafeToOpen Ltd,C=NZ","subjectDN":"ME0xCzAJBgNVBAYTAk5aMRcwFQYDVQQKDA5TYWZlVG9PcGVuIEx0ZDElMCMGA1UEAwwcU2FmZVRvT3BlbiBFViBUTFMgSUNBIFJTQSBSMQ==","whitelist":false,"attachment":{"hash":"d8dd280ca81928ac5d9f88d5ea7cd0bff13b2f2e60bb565232b7e0ab19fcc49e","size":
2438,"filename":"wceoTySaLCXY7FAABlMa1eB4Fc2Vodc8zSQij-gt6Ko=.pem","location":"security-state-staging/intermediates/120899dd-21f2-4b40-a059-69ed9a6e0b01.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wceoTySaLCXY7FAABlMa1eB4Fc2Vodc8zSQij+gt6Ko=","crlite_enrolled":false,"id":"18d7553d-a362-4364-81b1-d16f12ae4797","last_modified":1576536534207},{"schema":1576536044022,"derHash":"AL/lF32kDgQFBqBEF/tLgGSBa12HWFKgf8OjZwAJEIA=","subject":"CN=CSS Public Issuing CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Common Securitization Solutions LLC,C=US","subjectDN":"MIGcMQswCQYDVQQGEwJVUzEsMCoGA1UEChMjQ29tbW9uIFNlY3VyaXRpemF0aW9uIFNvbHV0aW9ucyBMTEMxPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEeMBwGA1UEAxMVQ1NTIFB1YmxpYyBJc3N1aW5nIENB","whitelist":false,"attachment":{"hash":"9625d57fc7f6a49deb14728feb83cf7edb83bdf782a5b10e9f2bb3725331b3d9","size":2077,"filename":"rzb3PNwXMW__yJquQWI_mhropzVU1Kcapgx84gb4XHg=.pem","location":"secur
ity-state-staging/intermediates/2687e0e3-608a-4004-887b-71f74dececfe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rzb3PNwXMW//yJquQWI/mhropzVU1Kcapgx84gb4XHg=","crlite_enrolled":false,"id":"727cccf2-d7e7-4e9c-9ffa-5778d62af14c","last_modified":1576536534204},{"schema":1576536036442,"derHash":"YPU+YDsO+nHGzDS26HwRRfcNyULIn3F2PZD+GOesWJ4=","subject":"CN=IBM Certification Authority G4,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=International Business Machines Corporation,C=US","subjectDN":"MIGtMQswCQYDVQQGEwJVUzE0MDIGA1UEChMrSW50ZXJuYXRpb25hbCBCdXNpbmVzcyBNYWNoaW5lcyBDb3Jwb3JhdGlvbjE/MD0GA1UECxM2Q2xhc3MgMiBEaWdpQ2VydCBQS0kgUGxhdGZvcm0gSW5kaXZpZHVhbCBTdWJzY3JpYmVyIENBMScwJQYDVQQDEx5JQk0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgRzQ=","whitelist":false,"attachment":{"hash":"cfa1d134c87a2adf5d7fd6db4082a050b8ab05ed5a65606f7cb38a7e5dc61951","size":2097,"filename":"9CRueC2hB1f0IGH9tycGhgC7JiLlOmttZCFXZKjuVns=.pem","location":"security-state-staging/intermediates/d4118315-6f
84-47da-b5e6-39d23274046f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9CRueC2hB1f0IGH9tycGhgC7JiLlOmttZCFXZKjuVns=","crlite_enrolled":false,"id":"c7140ad4-c587-413b-a16d-54eb6735efca","last_modified":1576536534182},{"schema":1576536034560,"derHash":"KHMACROLTh1tM0qPKAWmCqO+mWnVc7uy8FFjErt/NU4=","subject":"CN=OneSignSSL RSA DV Secure Server CA,O=One Sign Pte. Ltd.,L=Singapore,ST=Singapore,C=SG","subjectDN":"MH8xCzAJBgNVBAYTAlNHMRIwEAYDVQQIEwlTaW5nYXBvcmUxEjAQBgNVBAcTCVNpbmdhcG9yZTEbMBkGA1UEChMST25lIFNpZ24gUHRlLiBMdGQuMSswKQYDVQQDEyJPbmVTaWduU1NMIFJTQSBEViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"4fb6ba778562a884883cc8f1c7ddf3cc76924b6c481f1238cd9d0d09eef988cd","size":2154,"filename":"9IAV2sm8fSQPPgrFDnJNElfd6K4uJrxTx15o5jJy9nA=.pem","location":"security-state-staging/intermediates/fd1c6268-0059-46b1-8058-e8765d252ba4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9IAV2sm8fSQPPgrFDnJNElfd6K4uJrxTx15o5jJy9nA=","crlite_enrolled":false,"id":"ec4
8a0f4-07fe-4af5-898f-dd29d59f3ea3","last_modified":1576536534175},{"schema":1576536031495,"derHash":"29+pGsxNuK2D/MeXjjXWL24y5VEIJzyOyZjjEzWA1mQ=","subject":"CN=TrustAsia OV TLS Pro CA G2,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFkxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSMwIQYDVQQDExpUcnVzdEFzaWEgT1YgVExTIFBybyBDQSBHMg==","whitelist":false,"attachment":{"hash":"62f07941ab31ac93b3aa011cf5c969d6144dfa3248c15cf83974bbad7d102dde","size":1821,"filename":"cJhQtqu9DZRLxNRS1bDaM1E3d1GuJZmxfwKcfb-Gx3Y=.pem","location":"security-state-staging/intermediates/01439ed9-c5df-42a3-bd51-09e6f0ab3467.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cJhQtqu9DZRLxNRS1bDaM1E3d1GuJZmxfwKcfb+Gx3Y=","crlite_enrolled":true,"id":"2d04d337-69e3-44ad-9e68-0cfd2a4a4153","last_modified":1576536534164},{"schema":1576536028565,"derHash":"5StEzR5qmtoKBAnRzF1zpvQXYD1w5vXcVIOritrvPKQ=","subject":"CN=DigiCert Transition RSA Root,OU=www.digicert.com,O=DigiCert Inc,C=US",
"subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IFRyYW5zaXRpb24gUlNBIFJvb3Q=","whitelist":false,"attachment":{"hash":"914596db391a90381989f75de44986a84111af1a86a6b47fea188272724fb77b","size":1305,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/476a40fc-77d9-4bbd-9c7f-f592807899f2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"8a0d3f97-d849-409d-bcd3-af5446738f74","last_modified":1576536534153},{"schema":1576536022550,"derHash":"UoauHFWKgVN82YcPdJ2W76vC0ro5PfgY3+lep85kUKc=","subject":"CN=HydrantID Client ICA G2,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMTAwLgYDVQQKDCdIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxIDAeBgNVBAMMF0h5ZHJhbnRJRCBDbGllbnQgSUNBIEcy","whitelist":false,"attachment":{"hash":"cb3984f4a713da4d2127e
347745132b9485b6c954cea045b71d0577d7480d89d","size":2430,"filename":"8wG5JEK-6eyiSKMnSyu9H-Pc0UuAPV0a_kfNCqvHesw=.pem","location":"security-state-staging/intermediates/5f5ebd57-b000-419a-8646-fb81335b2cf0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8wG5JEK+6eyiSKMnSyu9H+Pc0UuAPV0a/kfNCqvHesw=","crlite_enrolled":false,"id":"c8d9b464-441d-4479-8062-9d2b30308c14","last_modified":1576536534149},{"schema":1576536018232,"derHash":"3BmD8UsAlvsSptgrSCJzDSOHecoFQ8Q8AV8kkklWTU0=","subject":"CN=IHI-EC International Corporation,O=IHI E&C International Corporation,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMSowKAYDVQQKDCFJSEkgRSZDIEludGVybmF0aW9uYWwgQ29ycG9yYXRpb24xKTAnBgNVBAMTIElISS1FQyBJbnRlcm5hdGlvbmFsIENvcnBvcmF0aW9u","whitelist":false,"attachment":{"hash":"e8e00a93568f3fa2e62aeb3a661d6a923d701ea84d6424fd27b3b4118ffb4c5d","size":2016,"filename":"1o2j5nZgvI5dVwmpYiHsdVUKWwz3kjk9zbDYvdSrsJo=.pem","location":"security-state-staging/intermediates/b7c27d63-0da5-4f18-bcef-f5ee1e72c875.pem"
,"mimetype":"application/x-pem-file"},"pubKeyHash":"1o2j5nZgvI5dVwmpYiHsdVUKWwz3kjk9zbDYvdSrsJo=","crlite_enrolled":false,"id":"d9ce419c-1a2f-4273-8a12-4fc0839054f2","last_modified":1576536534137},{"schema":1576536016807,"derHash":"hV3KaPgZTW1byUpRzzZM3P/IOCWhItimLkehGEhNN0s=","subject":"CN=ITSO Ltd RSA DV,O=ITSO LTD,L=Milton Keynes,ST=Buckinghamshire,C=GB","subjectDN":"MGwxCzAJBgNVBAYTAkdCMRgwFgYDVQQIEw9CdWNraW5naGFtc2hpcmUxFjAUBgNVBAcTDU1pbHRvbiBLZXluZXMxETAPBgNVBAoTCElUU08gTFREMRgwFgYDVQQDEw9JVFNPIEx0ZCBSU0EgRFY=","whitelist":false,"attachment":{"hash":"f7f8ae5a4d6c669308077f3d66de5bced3fc6ce838c89515e89a27eb62208b17","size":2129,"filename":"hoWbyI9IWnkDxapxLWOIsrvM58HKk5XQdT0Wk5A2ovs=.pem","location":"security-state-staging/intermediates/8855bb62-810b-4e29-aa2c-072a825e881a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hoWbyI9IWnkDxapxLWOIsrvM58HKk5XQdT0Wk5A2ovs=","crlite_enrolled":false,"id":"7e6c7559-1afe-4e48-aa16-564c45d842e6","last_modified":1576536534134},{"schem
a":1576536014868,"derHash":"hDeCMDBAv7M1dnZuFwBpbeD8FIh74pPXJl61ns5O2cw=","subject":"CN=BT Class 2 DigiCert PKI Platform CA,O=British Telecommunications plc,C=GB","subjectDN":"MGQxLDAqBgNVBAMMI0JUIENsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIENBMScwJQYDVQQKDB5Ccml0aXNoIFRlbGVjb21tdW5pY2F0aW9ucyBwbGMxCzAJBgNVBAYTAkdC","whitelist":false,"attachment":{"hash":"62ef2e16ec258184426b6b7eb77c56afc020739891f177c120b217fd8bfba3a2","size":2414,"filename":"oFI13M2pDTmr88JyQ06EE_PwqDFGIYNwj2EVxXS2dII=.pem","location":"security-state-staging/intermediates/d83477f2-d610-4eb1-8c9b-818352128513.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oFI13M2pDTmr88JyQ06EE/PwqDFGIYNwj2EVxXS2dII=","crlite_enrolled":false,"id":"9b9d198c-a69d-446c-b648-eda5de768f4b","last_modified":1576536534130},{"schema":1576536011965,"derHash":"X6SbNsctA+QtqkMCUA1kbJSMh6w27TDMPb3bviTGRjM=","subject":"CN=WebNIC ECC Extended Validation Secure Site CA,OU=Controlled by Sectigo exclusively for WebNIC,O=WebNIC (Web Commerce Comm
unications (Singapore) Pte. Ltd.),L=Singapore,C=SG","subjectDN":"MIHVMQswCQYDVQQGEwJTRzESMBAGA1UEBxMJU2luZ2Fwb3JlMUMwQQYDVQQKEzpXZWJOSUMgKFdlYiBDb21tZXJjZSBDb21tdW5pY2F0aW9ucyAoU2luZ2Fwb3JlKSBQdGUuIEx0ZC4pMTUwMwYDVQQLEyxDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIFdlYk5JQzE2MDQGA1UEAxMtV2ViTklDIEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTaXRlIENB","whitelist":false,"attachment":{"hash":"a2a7f841b5ca8fd57463ff8f1b27e4d11398c8605a0f4139ea461bd98ecdca69","size":1443,"filename":"wJUIwtfbQyb8AQ8i7WNkx5y7MTHHrQ3ILlCihfqdp-I=.pem","location":"security-state-staging/intermediates/6b627396-e558-45f3-9641-d84574e674e0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wJUIwtfbQyb8AQ8i7WNkx5y7MTHHrQ3ILlCihfqdp+I=","crlite_enrolled":false,"id":"079aab15-46c4-4056-bf61-918aa3d1c397","last_modified":1576536534122},{"schema":1576536019673,"derHash":"wuQjbbG3V7Ubd5ITiO+oI+amAP1L2jC2Ord4hvJWGLc=","subject":"CN=GlobalSign CloudSSL CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxC
zAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIENsb3VkU1NMIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"80e5a75a2133c51ce0a9e5cb79192a969122aa9d0010027ed0919b87dfdf6905","size":1638,"filename":"-VZJxHgrOOiVyUxgMRbfoo-GIWrMKd4aellBBHtBcKg=.pem","location":"security-state-staging/intermediates/171b6f60-be37-44ac-913e-06a4514e36a2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+VZJxHgrOOiVyUxgMRbfoo+GIWrMKd4aellBBHtBcKg=","crlite_enrolled":true,"id":"f66e7da9-1a66-4dc3-b793-faca5bf40093","last_modified":1576536534119},{"schema":1576536010525,"derHash":"Z8RtwXdiZnhE8VlgiTdf9F4FwrMWyJSZ9uf6t4yPA3k=","subject":"CN=GlobalSign Issuing CA for AATL Partners 2019,O=GlobalSign nv-sa,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTUwMwYDVQQDEyxHbG9iYWxTaWduIElzc3VpbmcgQ0EgZm9yIEFBVEwgUGFydG5lcnMgMjAxOQ==","whitelist":false,"attachment":{"hash":"8b06c8725c287688440cf9bd1330f4a6e7a1522a3af5778fa2d6840dc296bc
16","size":2142,"filename":"Gsj1AO3cbWx61NJW93Qr6MNrKZrsf6R-7BgXSXF_iZE=.pem","location":"security-state-staging/intermediates/1e204c9a-f0e4-41c8-af6b-5e43de9851ee.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Gsj1AO3cbWx61NJW93Qr6MNrKZrsf6R+7BgXSXF/iZE=","crlite_enrolled":false,"id":"00c11545-654a-4793-a31c-32844bb8119e","last_modified":1576536534115},{"schema":1576536009127,"derHash":"2FU6KIDpa3qkx0E92QOv09WAUEaV3SahaP1IzOexR0o=","subject":"CN=UZI-register Medewerker op naam CA G3,O=CIBG,C=NL","subjectDN":"MGUxCzAJBgNVBAYTAk5MMQ0wCwYDVQQKDARDSUJHMRcwFQYDVQRhDA5OVFJOTC01MDAwMDUzNTEuMCwGA1UEAwwlVVpJLXJlZ2lzdGVyIE1lZGV3ZXJrZXIgb3AgbmFhbSBDQSBHMw==","whitelist":false,"attachment":{"hash":"0cb57be73bd621623092fefcb68872855290eb020523b0a53e53afd972a316e3","size":2544,"filename":"dCyrxAKUK8j5RoQJISk_QPQ9eWh1wvDZFjkJxvysY1M=.pem","location":"security-state-staging/intermediates/3be928bc-8d4b-4aa9-8cf4-f65d61cb6c76.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dCyrxAKUK
8j5RoQJISk/QPQ9eWh1wvDZFjkJxvysY1M=","crlite_enrolled":false,"id":"0903bf91-4b0c-4d03-945c-ee38128bff24","last_modified":1576536534111},{"schema":1576536006146,"derHash":"al9MFnjKZeWfBg1Xzf9mUGUxSGHVOo59FFDKktlsoQI=","subject":"CN=CRB Group SMIME CA 2019,O=CRB Group\\, Inc.,C=US","subjectDN":"MEkxCzAJBgNVBAYTAlVTMRgwFgYDVQQKEw9DUkIgR3JvdXAsIEluYy4xIDAeBgNVBAMTF0NSQiBHcm91cCBTTUlNRSBDQSAyMDE5","whitelist":false,"attachment":{"hash":"46bf4a65e1a1d6041a7fd486d3b111820fb297aa92a6aa5e32412d73b2175762","size":1849,"filename":"5uacCErrU9OKxrpS_6aTZMtadjLWMJFTodYoyJ4SiAY=.pem","location":"security-state-staging/intermediates/3379f57c-e87e-469a-ba90-3b4ebbe6718d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5uacCErrU9OKxrpS/6aTZMtadjLWMJFTodYoyJ4SiAY=","crlite_enrolled":false,"id":"83317d20-9d0d-4313-8faf-840701aeed1f","last_modified":1576536534103},{"schema":1576536001652,"derHash":"CUBFHf7LZ1tSBMiuBxidTk6QlXz9K6/c/zbbIMJ56Ro=","subject":"CN=SECOM Passport for Member PUB CA4,OU=SE
COM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTQ=","whitelist":false,"attachment":{"hash":"67bd2661144de940ff04d2ed4a8a7c1ef3c2122d9e3a8cd9a484dcb81a67f399","size":1601,"filename":"e0UlwaDksSng0NsuhQLDMdL3HdRLRk89Csk7QJK7Xm4=.pem","location":"security-state-staging/intermediates/974ee8b6-e05b-45c0-b50d-b37049e98644.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e0UlwaDksSng0NsuhQLDMdL3HdRLRk89Csk7QJK7Xm4=","crlite_enrolled":true,"id":"545f4ef1-6eac-4f67-adf9-fc62354d1a33","last_modified":1576536534099},{"schema":1576536003209,"derHash":"+AhlYjZyW1ZvByHFGBWKZ1bJaQPLcetI3dqO3f6g8mw=","subject":"CN=GRNET Client RSA SubCA R3,O=National Infrastructures for Research and Technology,L=Athens,C=GR","subjectDN":"MIGBMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMT0wO
wYDVQQKDDROYXRpb25hbCBJbmZyYXN0cnVjdHVyZXMgZm9yIFJlc2VhcmNoIGFuZCBUZWNobm9sb2d5MSIwIAYDVQQDDBlHUk5FVCBDbGllbnQgUlNBIFN1YkNBIFIz","whitelist":false,"attachment":{"hash":"9ce8e8721d5cca69e41940aaa10d38fe6b27f089228093b65e92232a18aa10eb","size":2913,"filename":"wnEjGCVxs6O7Ii9LxKLgiSA52mkxeYBv8ou6SCPwpvg=.pem","location":"security-state-staging/intermediates/b592e2e9-8c51-4362-9fd6-a000990cddc1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wnEjGCVxs6O7Ii9LxKLgiSA52mkxeYBv8ou6SCPwpvg=","crlite_enrolled":false,"id":"76f424b7-5f52-4859-a914-ec79d2d35576","last_modified":1576536534096},{"schema":1576536004669,"derHash":"aSSk3YKUjaU/b7kz6JWg9lgcjb3rq7NvwRysJenAM1o=","subject":"CN=Telia Document Signing CA v3,O=Telia Finland Oyj,C=FI","subjectDN":"MFAxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajElMCMGA1UEAwwcVGVsaWEgRG9jdW1lbnQgU2lnbmluZyBDQSB2Mw==","whitelist":false,"attachment":{"hash":"173b45b95c7e25dee728aa0b7e79bfa2b9b4a023c89e1f7f3b67e0b5f9426723","size":2365,"filen
ame":"-YHiKkNgq-wtY5uDU57xDrTPWbMr0zXao2o9yt7I3XU=.pem","location":"security-state-staging/intermediates/7dba7569-1903-4086-beb4-3af36738b147.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+YHiKkNgq+wtY5uDU57xDrTPWbMr0zXao2o9yt7I3XU=","crlite_enrolled":false,"id":"d947c391-8bce-4ff2-b4a1-7a3ab55ca8f5","last_modified":1576536534092},{"schema":1576536000239,"derHash":"GY4zLxD6D1ivCDrpZLxkQfBs0PrTGbEjX+PtD3xur5M=","subject":"CN=WebNIC RSA Extended Validation Secure Site CA,OU=Controlled by Sectigo exclusively for WebNIC,O=WebNIC (Web Commerce Communications (Singapore) Pte. Ltd.),L=Singapore,C=SG","subjectDN":"MIHVMQswCQYDVQQGEwJTRzESMBAGA1UEBxMJU2luZ2Fwb3JlMUMwQQYDVQQKEzpXZWJOSUMgKFdlYiBDb21tZXJjZSBDb21tdW5pY2F0aW9ucyAoU2luZ2Fwb3JlKSBQdGUuIEx0ZC4pMTUwMwYDVQQLEyxDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIFdlYk5JQzE2MDQGA1UEAxMtV2ViTklDIFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTaXRlIENB","whitelist":false,"attachment":{"hash":"d535c3739b449a27a1b6564d8aad501fab7d3100a59
2e443a8b7bd56a791e24e","size":2284,"filename":"DkUXONpZG5H7NGx6X1k9T9v4PYppUd35pZ3oginTOG0=.pem","location":"security-state-staging/intermediates/0f0215fa-7dbe-4e90-84a6-26597491f0ed.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DkUXONpZG5H7NGx6X1k9T9v4PYppUd35pZ3oginTOG0=","crlite_enrolled":false,"id":"03d2a8c2-61ca-4d46-9d5e-f60e5a03eb5a","last_modified":1576536534088},{"schema":1576535998723,"derHash":"j8FGm4AFv+vb9n9RTnlf4fF+ojmippNIV/JCitzm0k8=","subject":"CN=DigiCert High Assurance EV CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKDAmBgNVBAMTH0RpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEVWIENBLTE=","whitelist":false,"attachment":{"hash":"f6cba1367b384f4518e9f358bd8e3eb845860eaf88cf8a1cc5885c5a8ed426fa","size":2353,"filename":"suo4a3Sz765--hurzLhgwqwpR8K0KVkwTarqwwCDJB4=.pem","location":"security-state-staging/intermediates/71bbf673-0978-4961-8f3b-f4d087f7a2fe.pem","mimetype":"app
lication/x-pem-file"},"pubKeyHash":"suo4a3Sz765++hurzLhgwqwpR8K0KVkwTarqwwCDJB4=","crlite_enrolled":false,"id":"5e4b37fb-de99-4276-bab2-22314fb5af67","last_modified":1576536534084},{"schema":1576535995805,"derHash":"TCQc/j0/+2DKiNawalUqsc8O99jS4I2hUoK1UZLrvSk=","subject":"CN=Ford Motor Company - Enterprise Issuing CA01,O=Ford Motor Company,L=Dearborn,ST=Michigan,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzEbMBkGA1UEChMSRm9yZCBNb3RvciBDb21wYW55MREwDwYDVQQHEwhEZWFyYm9ybjERMA8GA1UECBMITWljaGlnYW4xNTAzBgNVBAMTLEZvcmQgTW90b3IgQ29tcGFueSAtIEVudGVycHJpc2UgSXNzdWluZyBDQTAx","whitelist":false,"attachment":{"hash":"efb755d084ded13b3ac2b3f55c16b2160cdfaaf2b7cfcaf53d00f4a459b915e1","size":2938,"filename":"CqwsdVHa6T0W9pos5-f88X2UNjXr4wKHpQ8Muq3ipRA=.pem","location":"security-state-staging/intermediates/7fd0fc7b-3efd-4fcd-ac96-22557e159fe1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CqwsdVHa6T0W9pos5+f88X2UNjXr4wKHpQ8Muq3ipRA=","crlite_enrolled":false,"id":"92464914-70b1-4378-b814-a132e
c905cfd","last_modified":1576536534077},{"schema":1576535994452,"derHash":"2HqR2sJtZONllQcRnoCxG+N62oeo1sAeThdduzKxoNM=","subject":"CN=OSRAM Continental Secure Email CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=OSRAM Continental GmbH,C=DE","subjectDN":"MIGbMQswCQYDVQQGEwJERTEfMB0GA1UEChMWT1NSQU0gQ29udGluZW50YWwgR21iSDE/MD0GA1UECxM2Q2xhc3MgMiBEaWdpQ2VydCBQS0kgUGxhdGZvcm0gSW5kaXZpZHVhbCBTdWJzY3JpYmVyIENBMSowKAYDVQQDEyFPU1JBTSBDb250aW5lbnRhbCBTZWN1cmUgRW1haWwgQ0E=","whitelist":false,"attachment":{"hash":"5f68e368fd16e235475da58f55a2204584b88eac641e4ec557936b8042173d83","size":2073,"filename":"7wyniI0KLvACB3qDw45iTsE1UaQBDsAQZqKze49FvxU=.pem","location":"security-state-staging/intermediates/93f9172f-6795-44d1-96c8-6d2405099fcb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7wyniI0KLvACB3qDw45iTsE1UaQBDsAQZqKze49FvxU=","crlite_enrolled":false,"id":"f0afa748-66b7-486a-8cf4-afd8f25070d0","last_modified":1576536534073},{"schema":1576535993029,"derHash":"HJc36Witnf
+NjX/PmWoUS7l4UaGQEaAZDJQ8ro1Dz+A=","subject":"CN=GlobalSign Organization Validation CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzI=","whitelist":false,"attachment":{"hash":"b57a3d5029c97a35bb6880a05ad369fcc13be288c141ba5be144c0ae53d84579","size":1585,"filename":"IQBnNBEiFuhj-8x6X8XLgh01V9Ic5_V3IRQLNFFc7v4=.pem","location":"security-state-staging/intermediates/2c443791-49a4-46c3-a27f-7b2599e100bf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IQBnNBEiFuhj+8x6X8XLgh01V9Ic5/V3IRQLNFFc7v4=","crlite_enrolled":true,"id":"75e1b780-8583-4cab-9027-6f97f24c19ab","last_modified":1576536534069},{"schema":1576535991616,"derHash":"NX3sxWIviSOf/RyRwTZqCVG6TbX9OE9RjMSuhdLa46U=","subject":"CN=Entrust Class 1 Client CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQY
DVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAxMCBFbnRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDEgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"d6aa735f6570dd8eab1124e88a5ba575ee35143738f4392b74e86c8480049357","size":1821,"filename":"Uhene3DQaQrqKhOQL-xFNX9JZl3IsIFfWho3SE3EtBQ=.pem","location":"security-state-staging/intermediates/49393096-c9ac-401e-8fbe-4e0947a3b892.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uhene3DQaQrqKhOQL+xFNX9JZl3IsIFfWho3SE3EtBQ=","crlite_enrolled":false,"id":"c9f72111-46bb-4634-a3cb-ee00f147a31e","last_modified":1576536534065},{"schema":1576535990183,"derHash":"IQxPMHL4/Jg8HzpxDS/a86swTXv2z+X0ttpFf1cTLTE=","subject":"SERIALNUMBER=202014,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDE0"
,"whitelist":false,"attachment":{"hash":"20d695ce508b51f51bda71c5995f9c66d68083544a5344390d4a0f76c15d4521","size":2333,"filename":"U7zoSHg0PLA-Mg7Q6oQ_hupqX2qetdMjZL96ei27DEA=.pem","location":"security-state-staging/intermediates/72b82bcb-aeea-4515-a822-70d25282517a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U7zoSHg0PLA+Mg7Q6oQ/hupqX2qetdMjZL96ei27DEA=","crlite_enrolled":false,"id":"c0375a0f-d96b-4db0-aaad-58593a2c322a","last_modified":1576536534061},{"schema":1576535988714,"derHash":"cNyG+fd1C3Sx3sjNNS7CWDfDbmQPcUjghGTvWQHlpYk=","subject":"CN=Secure Site Pro Extended Validation ECC CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xNjA0BgNVBAMTLVNlY3VyZSBTaXRlIFBybyBFeHRlbmRlZCBWYWxpZGF0aW9uIEVDQyBDQSBHMg==","whitelist":false,"attachment":{"hash":"35bebf4b8ef09fd9c565bc9f3a5ece74886943a8aa8f6a6fd56758beb70fe08c","size":1435,"filename":"XyodbDLzN0yp63I67N9JKajdWDFEOhrdzgg3hI
feExM=.pem","location":"security-state-staging/intermediates/6ae86321-38ae-410a-9975-233f0c20315a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XyodbDLzN0yp63I67N9JKajdWDFEOhrdzgg3hIfeExM=","crlite_enrolled":false,"id":"41c79e82-ac51-4718-90e4-42e605116e4a","last_modified":1576536534057},{"schema":1576535987339,"derHash":"dHz01wwMqeY99r9g7xzOtvlTn6ilNPtp8Fxh3flypBk=","subject":"CN=OneSignSSL ECC OV Secure Server CA,O=One Sign Pte. Ltd.,L=Singapore,ST=Singapore,C=SG","subjectDN":"MH8xCzAJBgNVBAYTAlNHMRIwEAYDVQQIEwlTaW5nYXBvcmUxEjAQBgNVBAcTCVNpbmdhcG9yZTEbMBkGA1UEChMST25lIFNpZ24gUHRlLiBMdGQuMSswKQYDVQQDEyJPbmVTaWduU1NMIEVDQyBPViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"cc9c83787b291373dbd2e3f059f539f92b2c5f65b1c6894deeab63306a0b5399","size":1313,"filename":"k5mlhqxcFc-cb0nNpLyym3e1yVLu33JKb1dKa-MuMjg=.pem","location":"security-state-staging/intermediates/64049552-b29b-4299-ac7c-a87b3186a1d6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k5mlhqx
cFc+cb0nNpLyym3e1yVLu33JKb1dKa+MuMjg=","crlite_enrolled":false,"id":"bf594d1a-53f1-42fb-9dd0-379365307a1f","last_modified":1576536534054},{"schema":1576535984479,"derHash":"Ptv//DTroC4NupzRGdvPmNdJclc3evi8YhDYgQASCng=","subject":"CN=WebNIC ECC Domain Secure Site CA,O=WebNIC,L=Singapore,C=SG","subjectDN":"MF0xCzAJBgNVBAYTAlNHMRIwEAYDVQQHEwlTaW5nYXBvcmUxDzANBgNVBAoTBldlYk5JQzEpMCcGA1UEAxMgV2ViTklDIEVDQyBEb21haW4gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"dba8424009d862179d68d2288ea0622dd0951d98a15c8c2596e223b755ce68ec","size":1252,"filename":"df4BU-36qEmkjB2K0NlnnriyUqYwdm9JiwyAOrs_dqk=.pem","location":"security-state-staging/intermediates/03cca880-f44b-4cdf-9623-58ce69906e26.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"df4BU+36qEmkjB2K0NlnnriyUqYwdm9JiwyAOrs/dqk=","crlite_enrolled":false,"id":"9ffe1aa1-fafe-45e2-825b-4897086c8615","last_modified":1576536534045},{"schema":1576535983075,"derHash":"b2stSjCaFWxhl3+8z30qyfWWI//M6sPk7lqDoY2JUnU=","subject":"CN
=Symantec Class 3 Organizational CA - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEwMC4GA1UEAxMnU3ltYW50ZWMgQ2xhc3MgMyBPcmdhbml6YXRpb25hbCBDQSAtIEc0","whitelist":false,"attachment":{"hash":"579ba63d8e05c2f3a59978f656050ef48c8e602297091d1ed3a31125febe5170","size":1817,"filename":"uNzZ9PuqZ750aAgYLpKabu6MjXW-QU_Qg4jjBcbvEik=.pem","location":"security-state-staging/intermediates/210a246c-98d2-41d9-a803-f82c201c8678.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uNzZ9PuqZ750aAgYLpKabu6MjXW+QU/Qg4jjBcbvEik=","crlite_enrolled":false,"id":"60144f18-ade4-4eba-8530-c82470db382f","last_modified":1576536534042},{"schema":1576535981674,"derHash":"/8ONKDRFlPVfG5qRjEVPy47Oxq6ZM/7xo9UJTupAa/g=","subject":"SERIALNUMBER=202004,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb
3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDA0","whitelist":false,"attachment":{"hash":"126ef456a5bb89cfb4b28ccb59b42371458419f55f17444201b4a4ed3c51a096","size":2333,"filename":"SkEb8xbUUApSuC0FN2Cl9MIrkLC1W0ZZj0SmAGVRFhs=.pem","location":"security-state-staging/intermediates/77773575-9c9b-48cd-90d6-70d9b80b0e12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SkEb8xbUUApSuC0FN2Cl9MIrkLC1W0ZZj0SmAGVRFhs=","crlite_enrolled":false,"id":"4dffeaa7-6739-4da0-a61e-b415a1c9cdc8","last_modified":1576536534038},{"schema":1576535978841,"derHash":"uilZ+kSOmALIWfkMtdrHOO952/zM1NQHlDZR8LBFahM=","subject":"CN=OneSignSSL ECC EV Secure Server CA,OU=Controlled by Sectigo exclusively for One Sign Pte. Ltd.,O=One Sign Pte. Ltd.,L=Singapore,ST=Singapore,C=SG","subjectDN":"MIHCMQswCQYDVQQGEwJTRzESMBAGA1UECBMJU2luZ2Fwb3JlMRIwEAYDVQQHEwlTaW5nYXBvcmUxGzAZBgNVBAoTEk9uZSBTaWduIFB0ZS4gTHRkLjFBMD8GA1UECxM4Q29udHJvbGxlZCBieSBTZWN0aWdvIGV4Y2x1c2l2ZWx5IGZvciBPbmUgU2lnbiBQdGUuIEx0ZC4xKz
ApBgNVBAMTIk9uZVNpZ25TU0wgRUNDIEVWIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"d117e83a464d541b97c043720e671efe1bbb754498b470212e04c2db573a1f09","size":1435,"filename":"zWWzic6NajzDYmdUGim_cTkcA88HtIi7aWRbwgP9kKU=.pem","location":"security-state-staging/intermediates/f6d7179c-d394-48c0-b210-7ecc25444e38.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zWWzic6NajzDYmdUGim/cTkcA88HtIi7aWRbwgP9kKU=","crlite_enrolled":false,"id":"665b92bf-ffa1-450e-9fd8-73b6dfb09f83","last_modified":1576536534035},{"schema":1576535980267,"derHash":"iM5J46T6N+rijo41+P+M91aMqEVjnO87jf305Gk6wUo=","subject":"CN=GRNET TLS RSA SubCA R1,O=National Infrastructures for Research and Technology,L=Athens,C=GR","subjectDN":"MH4xCzAJBgNVBAYTAkdSMQ8wDQYDVQQHDAZBdGhlbnMxPTA7BgNVBAoMNE5hdGlvbmFsIEluZnJhc3RydWN0dXJlcyBmb3IgUmVzZWFyY2ggYW5kIFRlY2hub2xvZ3kxHzAdBgNVBAMMFkdSTkVUIFRMUyBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"875cc017e6ef92a89f7ebb1204cd67182ac3e07cb6d69df484965fe
258b7686c","size":2930,"filename":"mRBQN6GrKf_OuCxLxwvdLuH0S0HerSNcK0j4LUEd3RM=.pem","location":"security-state-staging/intermediates/e12686fe-e47e-4b1f-82d6-533862fd6ef2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mRBQN6GrKf/OuCxLxwvdLuH0S0HerSNcK0j4LUEd3RM=","crlite_enrolled":false,"id":"a536c660-f8ee-4457-b327-7ca9444b5ea4","last_modified":1576536534027},{"schema":1576535976050,"derHash":"6ucutFS/bDl369KJ6XCy9SgpSRkAk9DSb5jQ8Napzxc=","subject":"CN=Symantec Class 3 Secure Server CA - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEvMC0GA1UEAxMmU3ltYW50ZWMgQ2xhc3MgMyBTZWN1cmUgU2VydmVyIENBIC0gRzQ=","whitelist":false,"attachment":{"hash":"1f391e0925fd3c36dbc642db948b408638e24e1faec76c62a4c7c36240dbbdcb","size":1869,"filename":"9n0izTnSRF-W4W4JTq51avSXkWhQB8duS2bxVLfzXsY=.pem","location":"security-state-staging/intermediates/a3b1dab1-e810-4738-9
3a8-0fbb33f8a5d3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9n0izTnSRF+W4W4JTq51avSXkWhQB8duS2bxVLfzXsY=","crlite_enrolled":true,"id":"5eaa4972-8682-4d87-822f-e064c03bd257","last_modified":1576536534023},{"schema":1576535973202,"derHash":"ZokB5XZNfZCZq8ITSFmdn/NrkWyoObNR5odbGLFhML4=","subject":"CN=WebNIC RSA Domain Secure Site CA,O=WebNIC,L=Singapore,C=SG","subjectDN":"MF0xCzAJBgNVBAYTAlNHMRIwEAYDVQQHEwlTaW5nYXBvcmUxDzANBgNVBAoTBldlYk5JQzEpMCcGA1UEAxMgV2ViTklDIFJTQSBEb21haW4gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"16d026d7e222b83b21f30fffd6c86d922e1bc13c0f20bb7a6760efc390c2a1be","size":2093,"filename":"-6H0JyfPfrRNWedIzjtNbJYDUqMxAM9vGdy4yFQ5yFI=.pem","location":"security-state-staging/intermediates/568e3b62-fb8c-462e-87f0-420b7b3c9dd9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+6H0JyfPfrRNWedIzjtNbJYDUqMxAM9vGdy4yFQ5yFI=","crlite_enrolled":false,"id":"c67fab8d-6da0-439a-8323-77c7d8bf7a59","last_modified":1576536534019},{"schema":15765
35971650,"derHash":"la2U6I9bhgTkDl//NrDTS+RsHVugbA5zW3KqOWc1xBU=","subject":"CN=Entrust Class 2 Client CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAxMCBFbnRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDIgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"1d98ed13e49faa1ac91f1c05a20ba514f612b0638b9446469f44c66fc6c8bda6","size":1821,"filename":"JloS0qeSNdA_zDy0D24iKRwsIsmYt-GFR_0g8UIjlUE=.pem","location":"security-state-staging/intermediates/18884e92-e13e-435d-b35a-fbc2c75c3ec8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JloS0qeSNdA/zDy0D24iKRwsIsmYt+GFR/0g8UIjlUE=","crlite_enrolled":true,"id":"a07ca5be-944f-42e0-99d8-923c20190318","last_modified":1576536534005},{"schema":1576535974622,"derHash":"N9CApemlJmY+Vu4g3kvZ95UtrMNBSRQ5CAFnrV3RjKw=","
subject":"CN=GlobalSign Domain Validation CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzI=","whitelist":false,"attachment":{"hash":"8084973f28f9bb8da2dddef1086d13c58d35fafd5b6cd1cf19b002ea327410a9","size":1577,"filename":"PL1_TTDEe9Cm2lb2X0tixyQC7zaPREm_V0IHJscTCmw=.pem","location":"security-state-staging/intermediates/cd733eb5-cc1a-4fa5-b47c-ba77042e0a43.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PL1/TTDEe9Cm2lb2X0tixyQC7zaPREm/V0IHJscTCmw=","crlite_enrolled":true,"id":"0d02c2ec-63df-4380-9e5d-1efee98dd704","last_modified":1576536533996},{"schema":1576535970291,"derHash":"kO5UjrrKyrQCB6YaN4zhhrlNJK58Vb/IMGXqlgcuKzg=","subject":"CN=JPRS Organization Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3Jn
YW5pemF0aW9uIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"367d165dd5eefba12617df9187cb1fb88671b8e377384841173261d966443745","size":1800,"filename":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A-XzOekYtqEbM=.pem","location":"security-state-staging/intermediates/149beeb6-544e-481e-b3be-c402c7431da4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"czSVq7DFg6MhD0LtPxWJ2PxCsWfDS7A+XzOekYtqEbM=","crlite_enrolled":true,"id":"c46e9453-6f06-4a8c-9daf-3011076811b1","last_modified":1576536533991},{"schema":1576535967278,"derHash":"k5BxSx2Qn6PXDdx2gbOPB+1OY1bLXHGRXRvc1I/jNfg=","subject":"CN=QuoVadis Swiss Regulated CA G2,O=QuoVadis Trustlink Schweiz AG,C=CH","subjectDN":"MH4xCzAJBgNVBAYTAkNIMSYwJAYDVQQKDB1RdW9WYWRpcyBUcnVzdGxpbmsgU2Nod2VpeiBBRzEeMBwGA1UEYQwVTlRSQ0gtQ0hFLTExMi4yMTAuMzQ5MScwJQYDVQQDDB5RdW9WYWRpcyBTd2lzcyBSZWd1bGF0ZWQgQ0EgRzI=","whitelist":false,"attachment":{"hash":"cda3d8577bf0baf4725200eafbb5747ad79644550bd7c1c48d40b01fdc7946c9","size":2576,"filename":"
040Y3nIF8mSEbEH2aHTk7ZBKjNtqGeuBX2HCAFKIdZk=.pem","location":"security-state-staging/intermediates/5bd77f72-723f-45bf-8207-34eacc0d7e58.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"040Y3nIF8mSEbEH2aHTk7ZBKjNtqGeuBX2HCAFKIdZk=","crlite_enrolled":false,"id":"7d40a737-aaa0-4124-ba0e-ac49991f5cf8","last_modified":1576536533982},{"schema":1576535964386,"derHash":"XCnb6pt8yLAkGPKMHIc2398XBmXQmO9oHZA752mH0kk=","subject":"CN=Apple IST CA 8 - G1,OU=Certification Authority,O=Apple Inc.,C=US","subjectDN":"MGIxHDAaBgNVBAMME0FwcGxlIElTVCBDQSA4IC0gRzExIDAeBgNVBAsMF0NlcnRpZmljYXRpb24gQXV0aG9yaXR5MRMwEQYDVQQKDApBcHBsZSBJbmMuMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"2d9d379dbd5d0002b3c68677e98b81199b8b1b9abba7cf87839774bbeb1339c0","size":1386,"filename":"4k-OjCGF2i9eiNRXnoF8R79ur7yFBfD5YP1aDfRHOtM=.pem","location":"security-state-staging/intermediates/ce55fa72-c68e-4449-9da1-b8dd4268c16b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4k+OjCGF2i9eiNRXnoF8R79ur7
yFBfD5YP1aDfRHOtM=","crlite_enrolled":true,"id":"d5fc3ad9-0ada-4751-b516-44478b4bd331","last_modified":1576536533975},{"schema":1576535962958,"derHash":"x29wmAWYxmqOMn4XtJWiJ2JlxLmjV176HVUFAqgj1ZE=","subject":"CN=Oracle SSL CA,OU=VeriSign Trust Network+OU=Class 3 MPKI Secure Server CA,O=Oracle Corporation,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEbMBkGA1UEChMST3JhY2xlIENvcnBvcmF0aW9uMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMSYwJAYDVQQLEx1DbGFzcyAzIE1QS0kgU2VjdXJlIFNlcnZlciBDQTEWMBQGA1UEAxMNT3JhY2xlIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"e135ce0a3d08137664ff0e33244bb56fb9eb8cb6b54b086d79707974cac32e51","size":2133,"filename":"jAlQJcRUeMgTS65SuJLkC6qE2B093mGImtHccMYGG44=.pem","location":"security-state-staging/intermediates/da453cab-a5b5-4f7e-86ec-fba0675fba01.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jAlQJcRUeMgTS65SuJLkC6qE2B093mGImtHccMYGG44=","crlite_enrolled":false,"id":"42ab6ded-b971-46f3-bdec-f470ccf5261a","last_modified":1576536533969},{"schema":
1576535960132,"derHash":"9HHFZ8FAz4vNwKp2lSEyhx3QwH2qEeCYJDWnceMF7eU=","subject":"CN=OneSignSSL RSA OV Secure Server CA,O=One Sign Pte. Ltd.,L=Singapore,ST=Singapore,C=SG","subjectDN":"MH8xCzAJBgNVBAYTAlNHMRIwEAYDVQQIEwlTaW5nYXBvcmUxEjAQBgNVBAcTCVNpbmdhcG9yZTEbMBkGA1UEChMST25lIFNpZ24gUHRlLiBMdGQuMSswKQYDVQQDEyJPbmVTaWduU1NMIFJTQSBPViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"6298cec88d94935e3b0f9c901e0273e3a8557c8f1311f9a010fd4932282f0ce1","size":2154,"filename":"GcCWGhSfB0XZcAsL42Mnp5VnYlDpXAIzW27AN4z6kJs=.pem","location":"security-state-staging/intermediates/5f3b260b-467e-4ea2-b6d4-faf33390a8e0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GcCWGhSfB0XZcAsL42Mnp5VnYlDpXAIzW27AN4z6kJs=","crlite_enrolled":false,"id":"c5ab89f8-5496-43d8-b443-cb7b14df0f97","last_modified":1576536533966},{"schema":1576535961539,"derHash":"CFoHFFJN966ZGab1l4hEOeEqUz5hVS0p1qGMNQlvxUg=","subject":"CN=DigiCert SHA2 Extended Validation Server CA-3,OU=www.digicert.com,O=DigiCert
\\, Inc.,C=US","subjectDN":"MHkxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTE2MDQGA1UEAxMtRGlnaUNlcnQgU0hBMiBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQS0z","whitelist":false,"attachment":{"hash":"15b5964a25d36b4473500f8cf513384d9fa90b6caa77e7007c1d32de791ca6ca","size":1719,"filename":"lwTPN61Qg5-1qAU-Mik9sFaDX5hLo2AHP80YR-IgN6M=.pem","location":"security-state-staging/intermediates/c25c1336-89eb-46c5-9de3-c6b8546dd191.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lwTPN61Qg5+1qAU+Mik9sFaDX5hLo2AHP80YR+IgN6M=","crlite_enrolled":true,"id":"b1c9f693-7c29-4bbf-bf61-d0546487685b","last_modified":1576536533940},{"schema":1576535954460,"derHash":"BBFKVCPaXKegx4rci2PYiT4zQwhOEzZ8GvgyRybs+nM=","subject":"CN=WebNIC ECC Business Secure Site CA,O=WebNIC,L=Singapore,C=SG","subjectDN":"MF8xCzAJBgNVBAYTAlNHMRIwEAYDVQQHEwlTaW5nYXBvcmUxDzANBgNVBAoTBldlYk5JQzErMCkGA1UEAxMiV2ViTklDIEVDQyBCdXNpbmVzcyBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"
hash":"e3d85d4c5c0dece7c9b8791d2072ed443a160dccd558b3d399b08355f2948117","size":1256,"filename":"YUjFyuQK3Sa5iGXuitIqguBGtB0x_Lr2rwEwdRQVZWA=.pem","location":"security-state-staging/intermediates/a39bfba1-ad59-4493-95ba-ab7998a76e38.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YUjFyuQK3Sa5iGXuitIqguBGtB0x/Lr2rwEwdRQVZWA=","crlite_enrolled":false,"id":"67bf15e5-26ad-4309-a7e5-22c36b2cb9cf","last_modified":1576536533929},{"schema":1576535951697,"derHash":"X2yqRKRmPEQd2SyLZlX7+Xz24daTTbj1+Nl633Az+qw=","subject":"CN=Ministerie van Defensie PKIoverheid Organisatie Persoon CA - G3,O=Ministerie van Defensie,C=NL","subjectDN":"MIGSMQswCQYDVQQGEwJOTDEgMB4GA1UECgwXTWluaXN0ZXJpZSB2YW4gRGVmZW5zaWUxFzAVBgNVBGEMDk5UUk5MLTI3MzcwOTg1MUgwRgYDVQQDDD9NaW5pc3RlcmllIHZhbiBEZWZlbnNpZSBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBQZXJzb29uIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"3934a8eae4fa88952cd3ddc4edf5c6254398638e6435b2c68d813a4f5fff7abb","size":2621,"filename":"7KYLzx5QRzu-au_gCwTTZqCh6Fs
SbJxUNaNe0NxbMUY=.pem","location":"security-state-staging/intermediates/efcc6a95-7e5a-4184-a7e2-2927ba00b55c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7KYLzx5QRzu+au/gCwTTZqCh6FsSbJxUNaNe0NxbMUY=","crlite_enrolled":false,"id":"24681fb4-628a-4460-90b9-0f14ba2293c4","last_modified":1576536533918},{"schema":1576535950273,"derHash":"HoZCeMIIgbZxwMbS4UthFQrR8Tz5LG7BS1UNy8R+FUE=","subject":"CN=GlobalSign Extended Validation CodeSigning CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MG4xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMUQwQgYDVQQDEztHbG9iYWxTaWduIEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZVNpZ25pbmcgQ0EgLSBTSEEyNTYgLSBHMg==","whitelist":false,"attachment":{"hash":"77455cfaed61330456ffaa7da32df0dd4731a0acaf6fe166bcac0b28f0aeb328","size":1674,"filename":"HNr6oOEerHtzaDCmff-4LbZgFDwyRlI4dx4JIztxd3s=.pem","location":"security-state-staging/intermediates/532ffdbf-57f8-42d1-a031-8a8275647a0d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HNr6oOEerHtzaDCmff
+4LbZgFDwyRlI4dx4JIztxd3s=","crlite_enrolled":false,"id":"6168888f-6929-4f40-b04f-33d9070bec84","last_modified":1576536533915},{"schema":1576535948851,"derHash":"Ly8AiBdxChCFtOa8XjM1R0RE2YMnLjOZWjMb4aTE/go=","subject":"CN=GDCA TrustAUTH R4 CodeSigning CA,O=GUANG DONG CERTIFICATE AUTHORITY CO.\\,LTD.,C=CN","subjectDN":"MGwxCzAJBgNVBAYTAkNOMTIwMAYDVQQKDClHVUFORyBET05HIENFUlRJRklDQVRFIEFVVEhPUklUWSBDTy4sTFRELjEpMCcGA1UEAwwgR0RDQSBUcnVzdEFVVEggUjQgQ29kZVNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"e49b8906ff1d55085ab7bffeb8787da6f1f9f4546d283158c9622d150967f70e","size":2064,"filename":"5Zt41KtIYUpjoXvNDZtGlrN-S-X9juxZk0kJdwQpIlM=.pem","location":"security-state-staging/intermediates/76698902-bd03-4c1d-9344-a48278211966.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5Zt41KtIYUpjoXvNDZtGlrN+S+X9juxZk0kJdwQpIlM=","crlite_enrolled":false,"id":"012b0afc-e805-47a0-ab53-af5bbbf79132","last_modified":1576536533911},{"schema":1576535945982,"derHash":"pjwTmLX43S1DL75MLBkUK+ptX
QIh+ueUcYrnWXrMqW0=","subject":"CN=GlobalSign Root R46,O=GlobalSign nv-sa,C=BE","subjectDN":"MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQDExNHbG9iYWxTaWduIFJvb3QgUjQ2","whitelist":false,"attachment":{"hash":"378f762af5809d2286eb016c78a51681c834fff84abc2ac05a6cb350bb81bbeb","size":1886,"filename":"rn-WLLnmp9v3uDP7GPqbcaiRdd-UnCMrap73yz3yu_w=.pem","location":"security-state-staging/intermediates/d658e22b-e2c2-4eaf-a261-dda71e485545.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rn+WLLnmp9v3uDP7GPqbcaiRdd+UnCMrap73yz3yu/w=","crlite_enrolled":false,"id":"de84677c-3935-4ff1-ad12-b7f06ddaa458","last_modified":1576536533904},{"schema":1576535940122,"derHash":"MB6Mu4xmXKslbrGW9z9NKWycrSXzJ0SQQnnhsxgjPjs=","subject":"CN=Apple Public Client RSA CA 11 - G1,O=Apple Inc.,ST=California,C=US","subjectDN":"MGQxKzApBgNVBAMTIkFwcGxlIFB1YmxpYyBDbGllbnQgUlNBIENBIDExIC0gRzExEzARBgNVBAoTCkFwcGxlIEluYy4xEzARBgNVBAgTCkNhbGlmb3JuaWExCzAJBgNVBAYTAlVT","whitelist":false,"attach
ment":{"hash":"887d323a9b612519f14d2640bdc97e2677c441bc5d92da332d0583d40e61e576","size":2182,"filename":"nhhSlUJJxG_ZM3LQ_T2Iz5U3Ps22YlhuUE1fscITI-E=.pem","location":"security-state-staging/intermediates/21666efd-84e2-47c7-bf9c-726c7f7f05a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nhhSlUJJxG/ZM3LQ/T2Iz5U3Ps22YlhuUE1fscITI+E=","crlite_enrolled":false,"id":"ed6766d4-f179-49da-8e26-9b08acdf55b7","last_modified":1576536533889},{"schema":1576535937184,"derHash":"9k0GlO2uBtGEkebp0xxnOZeaLIGiWo5jnf186N/bMWI=","subject":"CN=Dodo Sign EV TLS ICA ECC R1,O=Dodo Sign Ltd,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MHUxCzAJBgNVBAYTAk1VMRgwFgYDVQQIDA9QbGFpbmVzIFdpbGhlbXMxDjAMBgNVBAcMBUViZW5lMRYwFAYDVQQKDA1Eb2RvIFNpZ24gTHRkMSQwIgYDVQQDDBtEb2RvIFNpZ24gRVYgVExTIElDQSBFQ0MgUjE=","whitelist":false,"attachment":{"hash":"b0add226615cad1733ff8c5b493bd754f9de850c3f1c8e2cca90816f49c5e1be","size":1305,"filename":"uaqYQ15j83wFQwwqS3bYDrjKrM800inzcvgnootnrYQ=.pem","location":"security-state-s
taging/intermediates/ffe612d9-45c5-4329-86af-79a0687b4338.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uaqYQ15j83wFQwwqS3bYDrjKrM800inzcvgnootnrYQ=","crlite_enrolled":false,"id":"08c035d3-a0b3-448a-a866-9b7bd59b922b","last_modified":1576536533882},{"schema":1576535935756,"derHash":"cNud7ZRN011HTqFf8qpOJfOTqJPs2lQ1nTBbwxlkmBc=","subject":"CN=Apple Public Server ECC CA 12 - G1,O=Apple Inc.,ST=California,C=US","subjectDN":"MGQxKzApBgNVBAMTIkFwcGxlIFB1YmxpYyBTZXJ2ZXIgRUNDIENBIDEyIC0gRzExEzARBgNVBAoTCkFwcGxlIEluYy4xEzARBgNVBAgTCkNhbGlmb3JuaWExCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"7b664a38a0036f3f518be6f71fd3dccba44bd002424257ded7f358d26fc7fc10","size":1366,"filename":"MxdHGRZ7LjsiyER0ypQ2XivrmpBgAU9_a6gf1ko2sQk=.pem","location":"security-state-staging/intermediates/58a031a8-c0ba-426e-a1de-b8e9854cc946.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MxdHGRZ7LjsiyER0ypQ2XivrmpBgAU9/a6gf1ko2sQk=","crlite_enrolled":true,"id":"20411773-904e-4e23-bf8b-23a
a4d20b75d","last_modified":1576536533879},{"schema":1576535931554,"derHash":"H/oNH1XOSgUH6MOOi1V7iMvdaQ2QPZlrH3hQ2B1qSpM=","subject":"CN=Avaya Client Services Users CA 2,OU=Avaya IT+OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Avaya Inc,C=US","subjectDN":"MIGgMQswCQYDVQQGEwJVUzESMBAGA1UEChMJQXZheWEgSW5jMREwDwYDVQQLEwhBdmF5YSBJVDE/MD0GA1UECxM2Q2xhc3MgMiBEaWdpQ2VydCBQS0kgUGxhdGZvcm0gSW5kaXZpZHVhbCBTdWJzY3JpYmVyIENBMSkwJwYDVQQDEyBBdmF5YSBDbGllbnQgU2VydmljZXMgVXNlcnMgQ0EgMg==","whitelist":false,"attachment":{"hash":"762a8ed6494b6d421f213b9cd99b97030ae64a5065989022b11dc9f26509453e","size":2097,"filename":"C7LniTwqz9SPKmkZKSXHUjuMCa0AK-H4ybIDe47Reik=.pem","location":"security-state-staging/intermediates/6199eb30-85b4-4e68-83f2-a4abb88247dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"C7LniTwqz9SPKmkZKSXHUjuMCa0AK+H4ybIDe47Reik=","crlite_enrolled":false,"id":"47a63ece-4e39-4450-bcb5-d5cb581e733d","last_modified":1576536533868},{"schema":1576535930122,"derHash":"0z
TTWamUSGS00I9rUJ43C743j3G97Qsjmjq4vgUqKW4=","subject":"CN=WebNIC Code Signing CA,O=WebNIC,L=Singapore,C=SG","subjectDN":"MFMxCzAJBgNVBAYTAlNHMRIwEAYDVQQHEwlTaW5nYXBvcmUxDzANBgNVBAoTBldlYk5JQzEfMB0GA1UEAxMWV2ViTklDIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"c88ea8edec48a2a9e100e3e3fd97b805b8b9797072d3efb198a2c439af86f188","size":2052,"filename":"LjMYKwzuWRO32yBUWdj18dPNxCqxzel-VbQgj6hHAmM=.pem","location":"security-state-staging/intermediates/70791cac-3c98-4f75-990d-6954d0219a0a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LjMYKwzuWRO32yBUWdj18dPNxCqxzel+VbQgj6hHAmM=","crlite_enrolled":false,"id":"7791a584-5e29-4235-b416-b854d3c3a85f","last_modified":1576536533864},{"schema":1576535928721,"derHash":"HSQiK17scf6Zvp1wD6X/cjEts+sPy0pPO8wTXaNsE1U=","subject":"CN=QuoVadis EU Issuing Certification Authority G4,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MIGBMQswCQYDVQQGEwJOTDEXMBUGA1UEYQwOTlRSTkwtMzAyMzc0NTkxIDAeBgNVBAoMF1F1b1ZhZGlzIFRydXN0bGluayBCLlYuMTcw
NQYDVQQDDC5RdW9WYWRpcyBFVSBJc3N1aW5nIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEc0","whitelist":false,"attachment":{"hash":"abc8779ce19e7e1b723ea4b7569c06c7bcf6a1d55f0595dbae8c152d800dbfb8","size":2406,"filename":"N4NzF7zbHULFki3CS8POhVnUVvnENOs7cQO__vGsV3I=.pem","location":"security-state-staging/intermediates/c4f3c05f-b7ad-4dee-a5ff-e59984747cdb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N4NzF7zbHULFki3CS8POhVnUVvnENOs7cQO//vGsV3I=","crlite_enrolled":true,"id":"e52f87f2-6917-4b55-a618-7063e3c0e4d3","last_modified":1576536533861},{"schema":1576535924422,"derHash":"ON7T/2gnV5AIr0iH65aYo8+pJ/qO1Z8GugkPuaY+LXc=","subject":"CN=UZI-register Medewerker niet op naam CA G3,O=CIBG,C=NL","subjectDN":"MGoxCzAJBgNVBAYTAk5MMQ0wCwYDVQQKDARDSUJHMRcwFQYDVQRhDA5OVFJOTC01MDAwMDUzNTEzMDEGA1UEAwwqVVpJLXJlZ2lzdGVyIE1lZGV3ZXJrZXIgbmlldCBvcCBuYWFtIENBIEcz","whitelist":false,"attachment":{"hash":"fdf235b099b1f37447f060ecf05a38a7f2f77b7ed689f4bd3554bcbb87e84429","size":2645,"filename":"io70m-V_59D3apVL3
0ZLD4BQjGAhNUmM2cLS-be8t_s=.pem","location":"security-state-staging/intermediates/43cbf583-ed6b-42a6-b390-579b0f581372.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"io70m+V/59D3apVL30ZLD4BQjGAhNUmM2cLS+be8t/s=","crlite_enrolled":false,"id":"3ff5743e-265f-4d7a-bebb-a4404e593665","last_modified":1576536533845},{"schema":1576535922917,"derHash":"neYdQGDkzEOIcYLd1eYWlGqqN7QxbumMQkSQFg9sjKo=","subject":"CN=Dodo Sign EV TLS ICA RSA R1,O=Dodo Sign Ltd,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MHUxCzAJBgNVBAYTAk1VMRgwFgYDVQQIDA9QbGFpbmVzIFdpbGhlbXMxDjAMBgNVBAcMBUViZW5lMRYwFAYDVQQKDA1Eb2RvIFNpZ24gTHRkMSQwIgYDVQQDDBtEb2RvIFNpZ24gRVYgVExTIElDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"d54a7cdc1a94f8a39a42db730bf1d72281d7628995592515709e572163799782","size":2454,"filename":"1DY43lDb7xlJzDvOVPtYU5JGz5PGXMK4hqwmC0tfYpM=.pem","location":"security-state-staging/intermediates/9ed8d2c1-00de-4ffd-89ed-0cb1c60b4487.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1DY43lDb
7xlJzDvOVPtYU5JGz5PGXMK4hqwmC0tfYpM=","crlite_enrolled":false,"id":"65100e6a-48de-4e6d-b0f8-394031300eea","last_modified":1576536533840},{"schema":1576535920130,"derHash":"f79dtJF2OZMAdqr/ePyR3aDv7qhsrTihjZiUfXzTaUg=","subject":"CN=SZCA EV SSL CA,O=Shenzhen Digital Certificate Authority Center Co.\\, Ltd,C=CN","subjectDN":"MGcxCzAJBgNVBAYTAkNOMT8wPQYDVQQKDDZTaGVuemhlbiBEaWdpdGFsIENlcnRpZmljYXRlIEF1dGhvcml0eSBDZW50ZXIgQ28uLCBMdGQxFzAVBgNVBAMMDlNaQ0EgRVYgU1NMIENB","whitelist":false,"attachment":{"hash":"e03f3052b8789db5fcf3cdcc2c99f637a46dfc7e75b7e90821532f0139858a50","size":1756,"filename":"m9Fzkl4nfip9REp7mGOZ4yhSFF4FL4A--9o7eUTYzMQ=.pem","location":"security-state-staging/intermediates/7c9c9455-5d39-4925-822c-e353ba07464d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m9Fzkl4nfip9REp7mGOZ4yhSFF4FL4A++9o7eUTYzMQ=","crlite_enrolled":false,"id":"26dd89a7-d444-4647-be98-393c4cd93ed5","last_modified":1576536533836},{"schema":1576535917274,"derHash":"do0Y37412P5mcS+Yd2I9FRB3G1P1
u4GcYkoVZI8f5Qk=","subject":"CN=S/MIME RSA ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHQxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMRowGAYDVQQDDBFTL01JTUUgUlNBIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"c1068b3b2ea8a0e2711bbbcf2ee76ab8b8d91745c4ab08f6436801acbfbcd677","size":2150,"filename":"nIOaO62AxFMW0JOKjsy1DZselooknRqTfmOxDEfM0sQ=.pem","location":"security-state-staging/intermediates/d98a7be1-b9c7-4085-83fd-776f5f6cbfab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nIOaO62AxFMW0JOKjsy1DZselooknRqTfmOxDEfM0sQ=","crlite_enrolled":false,"id":"db0531c3-1ffd-4acb-bb7c-522369de5914","last_modified":1576536533830},{"schema":1576535915880,"derHash":"xoxVme3roVwRJUOBsB0V8rxif924XjOkkgfjH+HxXQ0=","subject":"SERIALNUMBER=202017,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2Vyd
Glwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDE3","whitelist":false,"attachment":{"hash":"22151c5f67954f7df4f45c9f49de95bcf1b4fb76f2717dfe75902e496d782508","size":2333,"filename":"IKjMrd9-Ii4IPuS5zV5KhZDFudzyr4xsb9_Cb4VwSS4=.pem","location":"security-state-staging/intermediates/d09d4bcc-90b3-44ad-ba6f-0e1ec07943f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IKjMrd9+Ii4IPuS5zV5KhZDFudzyr4xsb9/Cb4VwSS4=","crlite_enrolled":false,"id":"02d05a88-8534-4a6e-bbe1-c9dfae1a53c4","last_modified":1576536533826},{"schema":1576535914365,"derHash":"kDfZCQpjZkzuREvoYzEJdlyQqeDgAyo2xDfjuru5Tt4=","subject":"CN=SSL X Y & Z EV TLS CA ECC R1,O=SSL X Y & Z Corp.,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHMxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExGjAYBgNVBAoMEVNTTCBYIFkgJiBaIENvcnAuMSUwIwYDVQQDDBxTU0wgWCBZICYgWiBFViBUTFMgQ0EgRUNDIFIx","whitelist":false,"attachment":{"hash":"a6e5424ce1469b72faaa4f808cfc02460b40b4084b8f825f82f4d6e09ed3a17a","size"
:1280,"filename":"Tgm74K8EbuCBKCktudG9C_UXO5irwHL8qNYuxdJv1B8=.pem","location":"security-state-staging/intermediates/2a7c27bf-35c8-427f-bf91-b620e767a6e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Tgm74K8EbuCBKCktudG9C/UXO5irwHL8qNYuxdJv1B8=","crlite_enrolled":false,"id":"6878d4f8-2f0a-4abe-ae4b-6e1572598927","last_modified":1576536533821},{"schema":1576535909746,"derHash":"yikDieDYxipAg/Yoo59S/j84tzGZz/r3wDcjeKRA+2o=","subject":"CN=Entrust Certification Authority - L1M,OU=See www.entrust.net/legal-terms+OU=(c) 2014 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTQgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFN","whitelist":false,"attachment":{"hash":"02e23f9b06e438417e4e71c8b9fb42a8e2da31ad266ad1ca50792fd36d7251b9","size":1829,"filename":
"VYZwGiJkq3NNo1YRI2RGiSTI1mqTWG8zDcRf1_KAN6I=.pem","location":"security-state-staging/intermediates/3aae7952-dcc2-4419-b53f-9eac4094c51b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VYZwGiJkq3NNo1YRI2RGiSTI1mqTWG8zDcRf1/KAN6I=","crlite_enrolled":true,"id":"d9a71e99-a2ad-4f36-b975-79dca9dd44f0","last_modified":1576536533809},{"schema":1576535918743,"derHash":"yMP/XemO82kvOhlooT69KoYLs/SG7EVDT46Qc8SpzWc=","subject":"CN=SECOM Passport for Web SR 3.0 CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MF8xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSkwJwYDVQQDEyBTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIFNSIDMuMCBDQQ==","whitelist":false,"attachment":{"hash":"f1224f7660297ee13d77fcf353555cc0aacb21730c122ed72881ccaaa2d49833","size":1536,"filename":"-HZ42z-6jzbfrf-8zoB-rhhWo8lWk9UMNlhPseiUpJs=.pem","location":"security-state-staging/intermediates/7b3da4b3-c177-4a6e-b7a9-062e872bf107.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+HZ42z+6jzbfrf+8zoB+rhhW
o8lWk9UMNlhPseiUpJs=","crlite_enrolled":true,"id":"a9f66876-d086-446f-a12c-e9ee7c486c5e","last_modified":1576536533804},{"schema":1576535908358,"derHash":"peM8KOMBOnH192CuOxZZUJAEPS7FIJ7FKQPE+60lja0=","subject":"CN=GlobalSign Root R46,O=GlobalSign nv-sa,C=BE","subjectDN":"MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQDExNHbG9iYWxTaWduIFJvb3QgUjQ2","whitelist":false,"attachment":{"hash":"fa8a56ce9427949481f533247ba9c60a2399344aa8e931f631f8a47245217c4d","size":1894,"filename":"rn-WLLnmp9v3uDP7GPqbcaiRdd-UnCMrap73yz3yu_w=.pem","location":"security-state-staging/intermediates/ef48945b-24c4-41bf-afdf-5d30c4725e72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rn+WLLnmp9v3uDP7GPqbcaiRdd+UnCMrap73yz3yu/w=","crlite_enrolled":false,"id":"0bac52a2-0949-48f2-abb2-f09ac245fd7f","last_modified":1576536533799},{"schema":1576535906937,"derHash":"r8oz2sVEOJ49Iw2xKti6PufBqeTM8Mr/1+FsKi81zuU=","subject":"CN=EC-GENCAT,OU=Serveis Publics de Certificacio ECV-1+OU=Vegeu http
s://www.catcert.net/verCIC-1 (c)03+OU=Generalitat de Catalunya,O=Agencia Catalana de Certificacio (NIF Q-0801176-I),C=ES","subjectDN":"MIHpMQswCQYDVQQGEwJFUzE7MDkGA1UECgwyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8gKE5JRiBRLTA4MDExNzYtSSkxLjAsBgNVBAsMJVNlcnZlaXMgUHVibGljcyBkZSBDZXJ0aWZpY2FjaW8gRUNWLTExNjA0BgNVBAsMLVZlZ2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQubmV0L3ZlckNJQy0xICAoYykwMzEhMB8GA1UECwwYR2VuZXJhbGl0YXQgZGUgQ2F0YWx1bnlhMRIwEAYDVQQDDAlFQy1HRU5DQVQ=","whitelist":false,"attachment":{"hash":"68020eeafb9e19fcbbb5e650b27c54a86372fc89f55eae47738a248afb78dd7e","size":2251,"filename":"plh85tWIetVs5VcJnItuNLDy-XNaKKGitW1elxmTBeI=.pem","location":"security-state-staging/intermediates/a2444857-efdc-427c-b27e-3219f87d774f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"plh85tWIetVs5VcJnItuNLDy+XNaKKGitW1elxmTBeI=","crlite_enrolled":false,"id":"f0031ace-b829-4f9f-bc0d-2388295555dd","last_modified":1576536533795},{"schema":1576535905508,"derHash":"HQgt3e0W1OTkkWOJPZJEl468VCKPS4ESeLVaspnEx
I4=","subject":"CN=Symantec Class 2 Employee CA - G4,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Symantec Corporation,C=US","subjectDN":"MIGZMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEqMCgGA1UEAxMhU3ltYW50ZWMgQ2xhc3MgMiBFbXBsb3llZSBDQSAtIEc0","whitelist":false,"attachment":{"hash":"0adbea35abde14e3bb65a4cf56dcfeccf401e8fbcdc72a4dbc92c98f155ce6d0","size":2068,"filename":"4UyOSF_VGPv56JpY5z0BV-AVEbPZZ1xvB4dYq2yDeYM=.pem","location":"security-state-staging/intermediates/0694ff66-1242-44e8-ae1f-d5b3147fdaae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4UyOSF/VGPv56JpY5z0BV+AVEbPZZ1xvB4dYq2yDeYM=","crlite_enrolled":false,"id":"9f2c8f1c-ef21-472e-af7e-202f6d9d5d2f","last_modified":1576536533788},{"schema":1576535901047,"derHash":"sm6zEPj68O9bDQtxqmXsBQ+jreKRNPtDirZEAoj6bmc=","subject":"CN=Secure Site CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MFg
xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xFzAVBgNVBAMTDlNlY3VyZSBTaXRlIENB","whitelist":false,"attachment":{"hash":"c9fd1a02e33e6fb6aa966212b051bc01d9763d43207f96cd14bd4d2ab77caf5e","size":1666,"filename":"3mc_12C2pwvtV5JjfcxLmbbWYQSbj9yqSWLXKfZcMUw=.pem","location":"security-state-staging/intermediates/3c324156-7f22-4755-bd9d-801f027fb229.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3mc/12C2pwvtV5JjfcxLmbbWYQSbj9yqSWLXKfZcMUw=","crlite_enrolled":true,"id":"a72a5e79-3626-409e-b043-cd067d75f18f","last_modified":1576536533781},{"schema":1576535898184,"derHash":"fLHw8QPU7oLZrUH2kCPFlCEfUoXDlOh9VL8EdGIsgmU=","subject":"CN=WebNIC Assured ID CA,O=WebNIC,L=Singapore,C=SG","subjectDN":"MFExCzAJBgNVBAYTAlNHMRIwEAYDVQQHEwlTaW5nYXBvcmUxDzANBgNVBAoTBldlYk5JQzEdMBsGA1UEAxMUV2ViTklDIEFzc3VyZWQgSUQgQ0E=","whitelist":false,"attachment":{"hash":"1f3fc0bed59983b040a2da0d18be6dc5f3fbb5f7e006a7b529e21595eb3fdce8","size":2060,"filename":"h2xdkR0tsowb
lgOKHnXoWz4HRd6TFdufPwK2kA5rZis=.pem","location":"security-state-staging/intermediates/a5ecf113-0411-470d-8892-a713b0040746.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"h2xdkR0tsowblgOKHnXoWz4HRd6TFdufPwK2kA5rZis=","crlite_enrolled":false,"id":"08077971-3fdb-4c74-8da6-e19b41c8d0c3","last_modified":1576536533776},{"schema":1576535895349,"derHash":"6PoWk7ilm16fnt4fzEpIOv1BBeclV2MuTdQ12vQ2F18=","subject":"SERIALNUMBER=202003,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDIwMDM=","whitelist":false,"attachment":{"hash":"55f2cc3018c2099898a8f957abde4000e8cbf3bdd59e78af1b6baa2b915f7749","size":2337,"filename":"zorY5O9LVEFY683mlqVCo5VR0c9nqYIj4Rcn5gmEKbg=.pem","location":"security-state-staging/intermediates/7ce01a0e-78a4-4eb4-aa2b-49fcba780598.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zorY5O9LVEFY683mlqVCo5VR0c9n
qYIj4Rcn5gmEKbg=","crlite_enrolled":false,"id":"5f7010e9-833f-4403-b47c-eb8cec371020","last_modified":1576536533772},{"schema":1576535896778,"derHash":"2qBDVAf6RMKKuTnmgjgTYFd5CThzqWZJrW4DsF0oYmw=","subject":"CN=Buypass Class 3 CA 2,O=Buypass AS-983163327,C=NO","subjectDN":"MEsxCzAJBgNVBAYTAk5PMR0wGwYDVQQKDBRCdXlwYXNzIEFTLTk4MzE2MzMyNzEdMBsGA1UEAwwUQnV5cGFzcyBDbGFzcyAzIENBIDI=","whitelist":false,"attachment":{"hash":"c3adfe4cbf2b1d7e9a605067bbec92b2d0430c2b1227c76517242204d270ea39","size":1849,"filename":"4ZQYrjRV6ScgdFiC0vn_Vy4QMIji7Tv-wkkEKEEQ6_I=.pem","location":"security-state-staging/intermediates/f4c24d5d-274d-468d-ad24-5434b0abf493.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4ZQYrjRV6ScgdFiC0vn/Vy4QMIji7Tv+wkkEKEEQ6/I=","crlite_enrolled":true,"id":"a3808703-8211-46eb-9e79-a0dff56992fd","last_modified":1576536533765},{"schema":1576535892539,"derHash":"Y2WyXpKZtfOC6wBmhQYpCI682byzmPKGIhB2A8PBwn4=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - AAPP,OU=Ce
rtificados Digitales para la Administracion Publica,O=Firmaprofesional SA,C=ES","subjectDN":"MIGkMQswCQYDVQQGEwJFUzEcMBoGA1UECgwTRmlybWFwcm9mZXNpb25hbCBTQTE+MDwGA1UECww1Q2VydGlmaWNhZG9zIERpZ2l0YWxlcyBwYXJhIGxhIEFkbWluaXN0cmFjaW9uIFB1YmxpY2ExEjAQBgNVBAUTCUE2MjYzNDA2ODEjMCEGA1UEAwwaQUMgRmlybWFwcm9mZXNpb25hbCAtIEFBUFA=","whitelist":false,"attachment":{"hash":"b364c73112b234b54f2bbfcccc157ff6a6e56b1eb3642bba27e9a19807372305","size":2434,"filename":"hLz0sJLVz-CYXLdvw4BHmbCD3Gt3C5gAep7ycaEAChw=.pem","location":"security-state-staging/intermediates/088426b5-e7ac-44ac-ad09-766b42cb1607.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hLz0sJLVz+CYXLdvw4BHmbCD3Gt3C5gAep7ycaEAChw=","crlite_enrolled":false,"id":"7a673029-7426-4fd2-aa04-1eead6f1048a","last_modified":1576536533761},{"schema":1576535891125,"derHash":"sU1QiQecHY92SduaXTzvsarAb2avxJIlxb4qoZ/UGjU=","subject":"CN=Entrust Certification Authority - L1N,OU=See www.entrust.net/legal-terms+OU=(c) 2014 Entrust\\, Inc. - for authorize
d use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTQgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFO","whitelist":false,"attachment":{"hash":"2a107eb8056c22e82435858002ab7da59ecfe298d1cafd19ef86a74343e7a1bb","size":2207,"filename":"vJyqpf--OgJrh0WkGBWAggmVgZ5-o9t2KvyRdPxvIhs=.pem","location":"security-state-staging/intermediates/119f868d-4224-48fa-aca4-4e950d595c12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vJyqpf++OgJrh0WkGBWAggmVgZ5+o9t2KvyRdPxvIhs=","crlite_enrolled":false,"id":"b03bf780-0b68-4f48-9034-834ec2d038db","last_modified":1576536533758},{"schema":1576535893935,"derHash":"4MLr0fa61P6q4xoxB+aavukC2zi5374z8FcL2jSUwgo=","subject":"CN=GlobalSign CloudSSL CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS
0wKwYDVQQDEyRHbG9iYWxTaWduIENsb3VkU1NMIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"5708992fbcf9481fd4654b18ba083f1c9225a94e396e861bbd592d38a6bee662","size":1626,"filename":"-VZJxHgrOOiVyUxgMRbfoo-GIWrMKd4aellBBHtBcKg=.pem","location":"security-state-staging/intermediates/48379e9d-8361-44d6-a4a7-eb48ae824248.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+VZJxHgrOOiVyUxgMRbfoo+GIWrMKd4aellBBHtBcKg=","crlite_enrolled":true,"id":"d57a5e4c-dfdb-4c21-809b-ec5a60174f9c","last_modified":1576536533751},{"schema":1576535884083,"derHash":"IcrbfNgi6hO0luJau4FRx/sA77se5FijtKTzwWvDwW8=","subject":"CN=Digidentity BV PKIoverheid Burger CA - G3,O=Digidentity B.V.,C=NL","subjectDN":"MHUxCzAJBgNVBAYTAk5MMRkwFwYDVQQKDBBEaWdpZGVudGl0eSBCLlYuMRcwFQYDVQRhDA5OVFJOTC0yNzMyMjYzMTEyMDAGA1UEAwwpRGlnaWRlbnRpdHkgQlYgUEtJb3ZlcmhlaWQgQnVyZ2VyIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"c8ff04eeee6bce152e5e98c99dca5cf921fce2820ba60817a872fed0cb518838","size":2532,"filename":"
k5vPHt_MdNtfcnpCDwqfEjdm4LB7gBM9vX2iTb0kIPM=.pem","location":"security-state-staging/intermediates/2912fe8c-837e-4193-8500-db273f27fb75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k5vPHt/MdNtfcnpCDwqfEjdm4LB7gBM9vX2iTb0kIPM=","crlite_enrolled":false,"id":"55d018b4-4eb7-4d7f-bdf4-e4553efdc451","last_modified":1576536533743},{"schema":1576535888279,"derHash":"w0bZE34FJUxu6smawvZ0igxdOvxre5seAMQK302FZV0=","subject":"CN=CBMM SMIME CA 2019,O=COMPANHIA BRASILEIRA DE METALURGIA E MINERACAO,POSTALCODE=38183-903,STREET=RUA CORREGO DA MATA S/N,L=ARAXA,ST=MINAS GERAIS,C=BR","subjectDN":"MIHAMQswCQYDVQQGEwJCUjE3MDUGA1UEChMuQ09NUEFOSElBIEJSQVNJTEVJUkEgREUgTUVUQUxVUkdJQSBFIE1JTkVSQUNBTzEOMAwGA1UEBxMFQVJBWEExFTATBgNVBAgTDE1JTkFTIEdFUkFJUzEgMB4GA1UECRMXUlVBIENPUlJFR08gREEgTUFUQSBTL04xEjAQBgNVBBETCTM4MTgzLTkwMzEbMBkGA1UEAxMSQ0JNTSBTTUlNRSBDQSAyMDE5","whitelist":false,"attachment":{"hash":"fe3d14bd5254e0a39c15a733dad05e8c9bcd3953ff1d49f2715e7a6102a14c44","size":1983,"filename":"JgrysEOXcX
WHyUdTbvFXqUmyd60uxVfkiQtywlZv_nE=.pem","location":"security-state-staging/intermediates/7cc1e4ac-bbbc-42b5-bca1-eee58338135b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JgrysEOXcXWHyUdTbvFXqUmyd60uxVfkiQtywlZv/nE=","crlite_enrolled":false,"id":"6db211d5-5b49-42f3-a1ba-e139fb5d1836","last_modified":1576536533739},{"schema":1576535885503,"derHash":"Rb8E3KXeemM58d+DW8kBNFe0h/20MI5AgMZCPI5LJwU=","subject":"CN=DigiCert Transition ECC Root,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IFRyYW5zaXRpb24gRUNDIFJvb3Q=","whitelist":false,"attachment":{"hash":"ec9ca1e7872737de9eba06d02d6f59709cc00db0519cdf3d07ec29275c2360e7","size":768,"filename":"fKyaD_MVOHdQuouv2xwrwps_C7oWNiypOpD4TaLfXz4=.pem","location":"security-state-staging/intermediates/2a8d9c82-4e74-4311-aac0-3155dcba518c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fKyaD/MVOHdQuouv2xwrwps/C7oWN
iypOpD4TaLfXz4=","crlite_enrolled":false,"id":"5b349da4-d246-4360-a09a-7028a7bb4f8c","last_modified":1576536533736},{"schema":1576535879770,"derHash":"dPVuGrM52D6A8vbiZPiUd1tCbIm0RwPfT6ijIxFjor0=","subject":"CN=Trustwave Domain Validation SHA256 CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGvMQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE3MDUGA1UEAxMuVHJ1c3R3YXZlIERvbWFpbiBWYWxpZGF0aW9uIFNIQTI1NiBDQSwgTGV2ZWwgMTEfMB0GCSqGSIb3DQEJARYQY2FAdHJ1c3R3YXZlLmNvbQ==","whitelist":false,"attachment":{"hash":"f3dfc731d826e0d0984812c4ea4c6e2485418da6eea5873875262b9282480123","size":1792,"filename":"D2BA_wGfRVRt6vATeLdkNJ0B3ckV2GlyUIDdWUqCSDQ=.pem","location":"security-state-staging/intermediates/ddbc7552-96a7-4b2e-91f9-ffb3835036ce.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D2BA/wGfRVRt6vATeLdkNJ0B3ckV2GlyUIDdWUqCSDQ=","crlite_enrolled":true,"id":"ef25e7fa-720b-412c-bf83-aba7
9dc2aa8e","last_modified":1576536533732},{"schema":1576535878387,"derHash":"JCtpdC/LHlsqv5iJi5RXIYdUTltNmRF4ZXNiH2p0uCw=","subject":"CN=Telia Root CA v2,O=Telia Finland Oyj,C=FI","subjectDN":"MEQxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZMBcGA1UEAwwQVGVsaWEgUm9vdCBDQSB2Mg==","whitelist":false,"attachment":{"hash":"6f399d9adcd59cadec87760241621f46a9daf25db3c442d61999a94042f01988","size":1951,"filename":"wrPDGkophQqo889HKhFp_3G0FlefakSC7HdEuD35iKw=.pem","location":"security-state-staging/intermediates/4c25a27e-2c0e-442f-893f-37ea349bb645.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wrPDGkophQqo889HKhFp/3G0FlefakSC7HdEuD35iKw=","crlite_enrolled":false,"id":"f1dcb796-9a85-4f2d-a0fb-9b3f7b4c9089","last_modified":1576536533728},{"schema":1576535877021,"derHash":"3gqS5UNbYTII3ENezHFYvyj0IKk+CpHVlllyBT9SNUk=","subject":"CN=Cleverbase ID PKIoverheid Burger CA - G3,O=Cleverbase ID B.V.,C=NL","subjectDN":"MHYxCzAJBgNVBAYTAk5MMRswGQYDVQQKDBJDbGV2ZXJiYXNlIElEIEIuVi4xFzAV
BgNVBGEMDk5UUk5MLTY3NDE5OTI1MTEwLwYDVQQDDChDbGV2ZXJiYXNlIElEIFBLSW92ZXJoZWlkIEJ1cmdlciBDQSAtIEcz","whitelist":false,"attachment":{"hash":"43ba7b18219f05d870af64b48aedb5b0e035eedf35ae2f0fec42aba1789e5955","size":2532,"filename":"c3WqQNTp8NSwj6Ar5Z3bAzdLCkLGhqGXOVps_pS8BKM=.pem","location":"security-state-staging/intermediates/c27d2459-6f95-4c85-9ff7-8e14e05a2150.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"c3WqQNTp8NSwj6Ar5Z3bAzdLCkLGhqGXOVps/pS8BKM=","crlite_enrolled":false,"id":"b6549aff-91bd-4c31-8324-526c379bbdfe","last_modified":1576536533724},{"schema":1576535875604,"derHash":"1sP8STus0d+KG6MPSuJiVLKkUo5IdggerMahagkKo2o=","subject":"CN=Entrust Certification Authority - L1K,OU=See www.entrust.net/legal-terms+OU=(c) 2012 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTIgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3Jpe
mVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFL","whitelist":false,"attachment":{"hash":"baf3c774613f8942857b2ad6d40766ac8a7a67fdbc624e9c4a17b50ca45bddd5","size":1792,"filename":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0uc=.pem","location":"security-state-staging/intermediates/f8d538de-5cc7-4991-8270-0a2d1d7d3b8b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0uc=","crlite_enrolled":true,"id":"b1366715-e202-4ce8-9018-b39313524fe8","last_modified":1576536533719},{"schema":1576535871360,"derHash":"aitFjsogSy3av04m1G/Q+bvoZ9p6rDVTJROm5aT8ylg=","subject":"CN=TBS X509 CA Persona 3 (ECC),O=TBS INTERNET Ltd.,L=Douglas,ST=Isle of Man,C=IM","subjectDN":"MHcxCzAJBgNVBAYTAklNMRQwEgYDVQQIEwtJc2xlIG9mIE1hbjEQMA4GA1UEBxMHRG91Z2xhczEaMBgGA1UEChMRVEJTIElOVEVSTkVUIEx0ZC4xJDAiBgNVBAMTG1RCUyBYNTA5IENBIFBlcnNvbmEgMyAoRUNDKQ==","whitelist":false,"attachment":{"hash":"944dcf6a8c1ee8957b2a174f54675ec285a093b949a186d434f20d91f
13a1365","size":1288,"filename":"r7xCTXIT-QWYjyxg-QtDiWm-o-0SPzjo9qjik4pHEhA=.pem","location":"security-state-staging/intermediates/ad0081bd-1851-4d54-91a9-d1a6326f8a6e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"r7xCTXIT+QWYjyxg+QtDiWm+o+0SPzjo9qjik4pHEhA=","crlite_enrolled":false,"id":"62e2b79f-f3c1-4952-b73d-ced0186eca23","last_modified":1576536533710},{"schema":1576535872699,"derHash":"Av7Tui5qeEOjGKmBvIRwYf0oLZ6IR/+p9U14W2uB1vM=","subject":"CN=Secure Site Pro CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHjAcBgNVBAMTFVNlY3VyZSBTaXRlIFBybyBDQSBHMg==","whitelist":false,"attachment":{"hash":"5c18d3156506cd5355f4d18f1913e2bd2818958dce99153a650e7f3195877f83","size":1829,"filename":"yFzqzO6UfU8CG8Xw6hrhKs8Wc7kjwaPPHpMW5A4WT3k=.pem","location":"security-state-staging/intermediates/69603c20-57db-47e4-8db1-78012f614eb4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"
yFzqzO6UfU8CG8Xw6hrhKs8Wc7kjwaPPHpMW5A4WT3k=","crlite_enrolled":true,"id":"047bbf71-0e60-47f1-88fb-c8654e3e2fd6","last_modified":1576536533706},{"schema":1576535869920,"derHash":"3ZxUXWtkXCv74bbstgN2AGRk6XuxMEt5eM/oOkCZsic=","subject":"O=Government Root Certification Authority,C=TW","subjectDN":"MD8xCzAJBgNVBAYTAlRXMTAwLgYDVQQKDCdHb3Zlcm5tZW50IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"22de8a87722574e5bae64f227adae54749a53ce2eb2247106a3a9a9137cc429b","size":2292,"filename":"pRovOgUOg4pQUGlleNu-2qwaEH7i2dSPrlBdGNDaXPg=.pem","location":"security-state-staging/intermediates/1bba8b1c-fe09-452a-8030-5299448f1616.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pRovOgUOg4pQUGlleNu+2qwaEH7i2dSPrlBdGNDaXPg=","crlite_enrolled":true,"id":"ab862fa5-0269-4007-9bfc-154dc88f81fc","last_modified":1576536533702},{"schema":1576535868368,"derHash":"/s6a2nqknU/qnv8SNUIJWogMAE/Wkz+TZLArLjV06jg=","subject":"CN=Cybertrust Japan SureServer EV CA G3,O=Cybertrust
Japan Co.\\, Ltd.,C=JP","subjectDN":"MGExCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEtMCsGA1UEAxMkQ3liZXJ0cnVzdCBKYXBhbiBTdXJlU2VydmVyIEVWIENBIEcz","whitelist":false,"attachment":{"hash":"442ad2ef3f029c8ae0616647479fbe53d99e0e9ed017c893d2b5952cbf146f8f","size":1772,"filename":"zJoepoy-7XeJoRmjbR7_i8oZ1WEujOKGTD9NNM0uWHM=.pem","location":"security-state-staging/intermediates/5a528d23-16fc-4550-b70f-7b7202891213.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zJoepoy+7XeJoRmjbR7/i8oZ1WEujOKGTD9NNM0uWHM=","crlite_enrolled":true,"id":"9aa2bac0-292b-4549-8d79-e82841fe7262","last_modified":1576536533695},{"schema":1576535866783,"derHash":"9hSuKxAUhPFfZvTdpW7m60InKPF52UOZ7eGawdhai9M=","subject":"CN=Secure Site CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MFsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xGjAYBgNVBAMTEVNlY3VyZSBTaXRlIENBIEcy","whitelist":false,"attachment":{"hash":"ea9ed009cee9ad525cea31b095
20df7f3327215055a5f8d38c27bc5eed479ab1","size":1825,"filename":"3mc_12C2pwvtV5JjfcxLmbbWYQSbj9yqSWLXKfZcMUw=.pem","location":"security-state-staging/intermediates/f1eaf41b-8ddc-4230-8adb-5920c9c4ef35.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3mc/12C2pwvtV5JjfcxLmbbWYQSbj9yqSWLXKfZcMUw=","crlite_enrolled":true,"id":"0558d609-3bfb-4844-bf88-b93e9bd0dbdb","last_modified":1576536533692},{"schema":1576535863986,"derHash":"sXdPmya04tX3UXE2AP/rFjs0y3oUwsB5cE6VNk+8ykk=","subject":"CN=InCommon RSA Server CA,OU=InCommon,O=Internet2,L=Ann Arbor,ST=MI,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJNSTESMBAGA1UEBxMJQW5uIEFyYm9yMRIwEAYDVQQKEwlJbnRlcm5ldDIxETAPBgNVBAsTCEluQ29tbW9uMR8wHQYDVQQDExZJbkNvbW1vbiBSU0EgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"a3ecf6ad18dd20e2bb3d0213cf639e3748842228ce2c96008b3f6da877409bcf","size":2129,"filename":"b1JA6-4svjmZnxGjAiQY3RS0A9FtjKLCWaRlVmCPM28=.pem","location":"security-state-staging/intermediates/f130c14b-f812-4c68-9577-485
9f57b2126.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"b1JA6+4svjmZnxGjAiQY3RS0A9FtjKLCWaRlVmCPM28=","crlite_enrolled":true,"id":"22533613-9108-4af4-8604-a14d14de2ada","last_modified":1576536533688},{"schema":1576535860850,"derHash":"txawif5OU9Gi73ulesheaOxyLPYQUsJaWWJq07FcX0A=","subject":"CN=Qu\u00e1litas Compa\u00f1\u00eda de Seguros S.A. de C.V.,O=QUALITAS COMPA\u00d1IA DE SEGUROS S.A. DE C.V.,POSTALCODE=05200,STREET=JOSE MARIA CASTORENA No. 426\\, SAN JOSE DE LOS CEDROS,L=CUAJIMALPA,ST=CIUDAD DE MEXICO,C=MX","subjectDN":"MIH4MQswCQYDVQQGEwJNWDEzMDEGA1UECgwqUVVBTElUQVMgQ09NUEHDkUlBIERFIFNFR1VST1MgUy5BLiBERSBDLlYuMRMwEQYDVQQHEwpDVUFKSU1BTFBBMRkwFwYDVQQIExBDSVVEQUQgREUgTUVYSUNPMT0wOwYDVQQJEzRKT1NFIE1BUklBIENBU1RPUkVOQSBOby4gNDI2LCBTQU4gSk9TRSBERSBMT1MgQ0VEUk9TMQ4wDAYDVQQREwUwNTIwMDE1MDMGA1UEAwwsUXXDoWxpdGFzIENvbXBhw7HDrWEgZGUgU2VndXJvcyBTLkEuIGRlIEMuVi4=","whitelist":false,"attachment":{"hash":"b4cc258aa16607dd839fa8f83252a629b07c1acdd5fa87f696c466297ca3c432","size":2093
,"filename":"lxQankog6Tf_kuy51v0yHPp7VAlCmH0rA0RAvunUR2U=.pem","location":"security-state-staging/intermediates/85c27bd1-db7e-4507-b140-76bd7f1708d2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lxQankog6Tf/kuy51v0yHPp7VAlCmH0rA0RAvunUR2U=","crlite_enrolled":false,"id":"8aff6d32-3b8c-46c2-82fd-fe7efd828486","last_modified":1576536533684},{"schema":1576535862557,"derHash":"3MVmIv8NIJH7n/yfZ8LTUEmWacYpjajemsQaSIu52eQ=","subject":"CN=KIBSTrust Issuing CA for e-Seals,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA+OU=KIBS AD Trust Services,O=KIBS AD Skopje,C=MK","subjectDN":"MIHLMQswCQYDVQQGEwJNSzEXMBUGA1UEChMOS0lCUyBBRCBTa29wamUxFjAUBgNVBGETDU5UUk1LLTU1Mjk1ODExPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEfMB0GA1UECxMWS0lCUyBBRCBUcnVzdCBTZXJ2aWNlczEpMCcGA1UEAxMgS0lCU1RydXN0IElzc3VpbmcgQ0EgZm9yIGUtU2VhbHM=","whitelist":false,"attachment":{"hash":"8d7c38f00343d8c6a7932df61962f01724d42231ff99cb9d43e41b71980f219b","size":2418,"fi
lename":"BHGCDczb35jf24uF9UQUIWbl37u3KH6m3tAW-DvKkBs=.pem","location":"security-state-staging/intermediates/aec25152-6938-41ba-83be-9d485724a1f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BHGCDczb35jf24uF9UQUIWbl37u3KH6m3tAW+DvKkBs=","crlite_enrolled":false,"id":"222af1d2-d2b2-43a7-bd2e-b11bafc80a2f","last_modified":1576536533680},{"schema":1576535859306,"derHash":"rVTYl5qhNun1aOASNKzKaMgabwD5YppxknU/dnUrymk=","subject":"SERIALNUMBER=D-059888-N,CN=Entitat de Certificaci\u00f3 de l'Administraci\u00f3 P\u00fablica Andorrana-19,O=M.I. Govern d'Andorra,L=Andorra la Vella,C=AD","subjectDN":"MIGqMQswCQYDVQQGEwJBRDEeMBwGA1UECgwVTS5JLiBHb3Zlcm4gZCdBbmRvcnJhMRMwEQYDVQQFEwpELTA1OTg4OC1OMRkwFwYDVQQHDBBBbmRvcnJhIGxhIFZlbGxhMUswSQYDVQQDDEJFbnRpdGF0IGRlIENlcnRpZmljYWNpw7MgZGUgbCdBZG1pbmlzdHJhY2nDsyBQw7pibGljYSBBbmRvcnJhbmEtMTk=","whitelist":false,"attachment":{"hash":"2439a9af8e105590273a7f8dabfeff7fe23363d87885f4c5d124c95547f557cc","size":2674,"filename":"8uKsf7ZcawPyLn1CLEss26WHE7e
Xoc3NID0KIkebeE0=.pem","location":"security-state-staging/intermediates/95f44cc1-b11a-4c39-a5a3-792b30b17a70.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8uKsf7ZcawPyLn1CLEss26WHE7eXoc3NID0KIkebeE0=","crlite_enrolled":false,"id":"20a21317-92a5-4f06-a7ae-6ef34f6c2524","last_modified":1576536533677},{"schema":1576535857717,"derHash":"oTggpzh7360gRGPvqSFkFmObfnPDHcL0mfU/zU1NJcQ=","subject":"CN=GlobalSign CA 2 for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"MEsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSEwHwYDVQQDExhHbG9iYWxTaWduIENBIDIgZm9yIEFBVEw=","whitelist":false,"attachment":{"hash":"db9fd8cd368a78c90dd388eabe22ac3ee5212f6971941d7ade0a0962870b2211","size":1670,"filename":"VUXuJLG7arucp8FV8pQeMxfw0abKhW_SszycDbgPGng=.pem","location":"security-state-staging/intermediates/5aeeca9a-d281-461f-ad3c-0940396f589d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VUXuJLG7arucp8FV8pQeMxfw0abKhW/SszycDbgPGng=","crlite_enrolled":false,"id":"9e27f27f-9ae6-4c4d-9359-1
09637b37bd6","last_modified":1576536533673},{"schema":1576535854905,"derHash":"xFG++6hwFOzVeFHR5oJAPjymCWN3Ouf6oA/9b/rIsqM=","subject":"CN=Apple Public Server ECC CA 11 - G1,O=Apple Inc.,ST=California,C=US","subjectDN":"MGQxKzApBgNVBAMTIkFwcGxlIFB1YmxpYyBTZXJ2ZXIgRUNDIENBIDExIC0gRzExEzARBgNVBAoTCkFwcGxlIEluYy4xEzARBgNVBAgTCkNhbGlmb3JuaWExCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"159650c695404e21baee3c84c9de3b14321fc786ae0d79ab3c53f0265e742c3e","size":1179,"filename":"AW191Or9_rr7bm1xPdsvaWeUUt-lfxY77hstOrTylbc=.pem","location":"security-state-staging/intermediates/28078966-bfa4-4d0f-b3af-2e868d081f40.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AW191Or9/rr7bm1xPdsvaWeUUt+lfxY77hstOrTylbc=","crlite_enrolled":false,"id":"b0ae8271-61f1-4d4d-89b4-39a4305bde48","last_modified":1576536533666},{"schema":1576535851987,"derHash":"lBuK7kvPHv6wR1+yef3dzzf8WyD2ToQs2doHcLFX6E0=","subject":"CN=QuoVadis Swiss Regulated CA G2x,O=QuoVadis Trustlink Schweiz AG,C=CH","subjec
tDN":"MH8xCzAJBgNVBAYTAkNIMSYwJAYDVQQKDB1RdW9WYWRpcyBUcnVzdGxpbmsgU2Nod2VpeiBBRzEeMBwGA1UEYQwVTlRSQ0gtQ0hFLTExMi4yMTAuMzQ5MSgwJgYDVQQDDB9RdW9WYWRpcyBTd2lzcyBSZWd1bGF0ZWQgQ0EgRzJ4","whitelist":false,"attachment":{"hash":"6908125b6436fe504186ad05f08f9ca8c51425e59416e586f9f37633a09be7f3","size":2564,"filename":"17usyAuuwq4vUDVkKKvhX_ccE7giLJSP0KwWdGbb-0k=.pem","location":"security-state-staging/intermediates/4b426595-1c8d-43aa-aec0-68f7d34d8ff0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"17usyAuuwq4vUDVkKKvhX/ccE7giLJSP0KwWdGbb+0k=","crlite_enrolled":false,"id":"f756cd0f-1e3b-4dc2-b9ec-0b4d23c9557c","last_modified":1576536533658},{"schema":1576535850582,"derHash":"dOswenisfoVwzBuuHFEQKmBTyW8zMtcDKFp0O8vTXZ4=","subject":"CN=Symantec Class 3 ECC 256 bit SSL CA - G2,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGAMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxMTAvBgNVBAMTKFN5bWFudGVjIENsYXNzIDMgRU
NDIDI1NiBiaXQgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"25db1a27864552963eca82334bf17c5f8a3fcd5136a534321802fe7faa031628","size":1878,"filename":"pvsOo_07kXBfe36yjJgm6H46EJRe7gurjSAeunJgFyg=.pem","location":"security-state-staging/intermediates/3b4e1c8b-6df4-468d-811d-6f9716be92d0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pvsOo/07kXBfe36yjJgm6H46EJRe7gurjSAeunJgFyg=","crlite_enrolled":true,"id":"f1c185b6-80ef-454d-904b-6d48cbff1b6f","last_modified":1576536533655},{"schema":1576535847703,"derHash":"DuTa9xqF2ELSP0kQ/UyQm3Jxhhkx8dX+rIaCJfUnAOI=","subject":"CN=Entrust Certification Authority - L1C,OU=www.entrust.net/rpa is incorporated by reference+OU=(c) 2009 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGxMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L3JwYSBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAwOSBFbnRydXN0LCBJbmMuMS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFD","whitel
ist":false,"attachment":{"hash":"47190803db64ab25e51ba6527fc97063b52701bffd05aa298e45e7e5dabf9efd","size":1780,"filename":"VFv5NemtodoRftw8KsvFb8AoCWwOJL6bOJS-Ui0bQ94=.pem","location":"security-state-staging/intermediates/af52194d-e2db-45ba-a919-c7d2518b2eb1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VFv5NemtodoRftw8KsvFb8AoCWwOJL6bOJS+Ui0bQ94=","crlite_enrolled":false,"id":"af3a7f96-b279-4002-b898-ea1e04bf6025","last_modified":1576536533651},{"schema":1576535844835,"derHash":"h7utTJFdVtLnTwRNciC5V9SoU9mhgYtS82JUF9tlXjo=","subject":"CN=DigiCert SHA2 Assured ID CA - G1,OU=DigiCert Organizational E-Mail Certificate,O=DigiCert Inc,C=US","subjectDN":"MIGEMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMTMwMQYDVQQLEypEaWdpQ2VydCBPcmdhbml6YXRpb25hbCBFLU1haWwgQ2VydGlmaWNhdGUxKTAnBgNVBAMTIERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBDQSAtIEcx","whitelist":false,"attachment":{"hash":"87c92053d9938823a56b4253352209b1d9d45591fa0b90354ba17bc2dd0e6c6a","size":2121,"filename":"3iSMgpA0YuQJvvYFl
TcCIByASHD5ze38kI_HcGk_5V0=.pem","location":"security-state-staging/intermediates/16516982-ac58-46e6-b7ac-4ff348b045ad.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3iSMgpA0YuQJvvYFlTcCIByASHD5ze38kI/HcGk/5V0=","crlite_enrolled":false,"id":"f9614db0-e95f-45ec-9e6a-44a7d7451bb4","last_modified":1576536533644},{"schema":1576535843434,"derHash":"Yt3PoFpjrPt8IHCkNSY/ImvyA5/BHRzPxzZ5LkRmmDs=","subject":"CN=BitCert RSA Extended Validation Secure Site CA,OU=Controlled by Sectigo exclusively for BitCert,O=\u6210\u90fd\u6570\u8bc1\u79d1\u6280\u6709\u9650\u516c\u53f8,L=Chengdu,ST=Sichuan,C=CN","subjectDN":"MIHLMQswCQYDVQQGEwJDTjEQMA4GA1UECBMHU2ljaHVhbjEQMA4GA1UEBxMHQ2hlbmdkdTEnMCUGA1UECgwe5oiQ6YO95pWw6K+B56eR5oqA5pyJ6ZmQ5YWs5Y+4MTYwNAYDVQQLEy1Db250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIEJpdENlcnQxNzA1BgNVBAMTLkJpdENlcnQgUlNBIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"50c510f25b6df7566b8bdeb308314bae9b7f601ea6c791b72f5f9e4fc19c283d"
,"size":2288,"filename":"zdcDW7Ob8cQk0OUfB1X4d7hxi0MhL_P6fBOYC60fvWs=.pem","location":"security-state-staging/intermediates/aedc46d5-227a-4543-b3d2-4bea3bd28a2b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zdcDW7Ob8cQk0OUfB1X4d7hxi0MhL/P6fBOYC60fvWs=","crlite_enrolled":false,"id":"8ee705aa-0876-4478-adde-0bfd21573307","last_modified":1576536533640},{"schema":1576535841997,"derHash":"bGZXjclq0T63toi9wJ20ctX78Ds70hMJZlBSqIbX6bQ=","subject":"CN=Apple Public Server RSA CA 11 - G1,O=Apple Inc.,ST=California,C=US","subjectDN":"MGQxKzApBgNVBAMTIkFwcGxlIFB1YmxpYyBTZXJ2ZXIgUlNBIENBIDExIC0gRzExEzARBgNVBAoTCkFwcGxlIEluYy4xEzARBgNVBAgTCkNhbGlmb3JuaWExCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"961515735a466b16075e55c7da361418ee043d9647f04c36b42e00fdd5304fa3","size":2028,"filename":"xXDXs35ozcjwk0JgHOmIO-JXQxta1bb9rQ14FVEqdWE=.pem","location":"security-state-staging/intermediates/f51e2efe-1586-43cb-8513-42d7587139fd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":
"xXDXs35ozcjwk0JgHOmIO+JXQxta1bb9rQ14FVEqdWE=","crlite_enrolled":false,"id":"b906d89b-573b-4733-920c-a0796309ee22","last_modified":1576536533636},{"schema":1576535840600,"derHash":"exZmp5kc/Ci2TaNx8XFB29b1Mh8huDoaZY1qQQ03TgU=","subject":"CN=EID-SK 2011,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MGExCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRQwEgYDVQQDDAtFSUQtU0sgMjAxMTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVl","whitelist":false,"attachment":{"hash":"89a20e4b68a5ddbe58c0227ee52ef3440a11519c35dff5be41948baf0eafaae1","size":1792,"filename":"TH9WdGlVHNg84FAVfGSYy4E-hezWZlRfg3kL9-E9txs=.pem","location":"security-state-staging/intermediates/3b232e22-80b5-4310-a0f3-ffe15d3325c9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TH9WdGlVHNg84FAVfGSYy4E+hezWZlRfg3kL9+E9txs=","crlite_enrolled":false,"id":"2294a4d1-a1d8-4963-beaf-58bf195a5728","last_modified":1576536533632},{"schema":1576535839167,"derHash":"Vk28anZVD9LU9LrGRIoRV7M8vY4LP9dtchB1QJZKhbU=","subject":"CN=S
ymantec Class 3 Secure Server CA - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEvMC0GA1UEAxMmU3ltYW50ZWMgQ2xhc3MgMyBTZWN1cmUgU2VydmVyIENBIC0gRzQ=","whitelist":false,"attachment":{"hash":"fde7df84fbe0edfbcf96535bc97d6525b3869212e9cada774905831935692c2f","size":1821,"filename":"9n0izTnSRF-W4W4JTq51avSXkWhQB8duS2bxVLfzXsY=.pem","location":"security-state-staging/intermediates/003fd367-2188-4dcf-9002-58cb555aca5f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9n0izTnSRF+W4W4JTq51avSXkWhQB8duS2bxVLfzXsY=","crlite_enrolled":true,"id":"72652e1b-dcd1-4778-8e82-d9e0cadea9d3","last_modified":1576536533628},{"schema":1576535849224,"derHash":"m7XMhCevJ2vyFqdIrSV4XResur3eQoLmBtpSYs2UDzg=","subject":"CN=Cybertrust Global Root,O=Cybertrust\\, Inc","subjectDN":"MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA==","whitelist":f
alse,"attachment":{"hash":"25ce176fa214e6e0fdebb7a1832dce5580bd8c52cea81154114f3b6cd553dbe6","size":1459,"filename":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=.pem","location":"security-state-staging/intermediates/12de7d43-38fd-47e4-abd4-cf2fd4a2bc1f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=","crlite_enrolled":true,"id":"884a0690-da65-400c-9fab-d03457385b58","last_modified":1576536533624},{"schema":1576535836297,"derHash":"z4iRXPmWkywrTL4wOQdtEZu3KLTzHkm2OlAi/mVImhI=","subject":"CN=AffirmTrust Extended Validation CA - EV1,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGDMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMTAvBgNVBAMTKEFmZmlybVRydXN0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgLSBFVjE=","whitelist":false,"attachment":{"hash":"59f97b75ff4aa85380593bee67266d9df3536810543f8906024dce481dec03a9","size":1662,"filename":"xAD7ZgT8h1RQOQsz_6DxwKe17
_oiwt-Jy6y1G1Akw00=.pem","location":"security-state-staging/intermediates/2d7384a5-c21e-4c9c-bab1-09bac6329f82.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xAD7ZgT8h1RQOQsz/6DxwKe17/oiwt+Jy6y1G1Akw00=","crlite_enrolled":true,"id":"de2d8ef8-81da-4d27-98dc-2aac5604a760","last_modified":1576536533616},{"schema":1576535831521,"derHash":"qpQuUStCh9W+7IWhxagcLd0TazzHBltoMPBoURBTBBI=","subject":"CN=FedEx Public Online CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=FedEx Corporation,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEaMBgGA1UEChMRRmVkRXggQ29ycG9yYXRpb24xPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEfMB0GA1UEAxMWRmVkRXggUHVibGljIE9ubGluZSBDQQ==","whitelist":false,"attachment":{"hash":"5d96dd1daba1201584f62db2c1b9025798e5aaf6fa68c96d8f9fcbf8cba48a3a","size":2052,"filename":"_HtX-jLmvyksCJaoiBQGgnIqDG05H_g_Wm2PUhssqrc=.pem","location":"security-state-staging/intermediates/e46a68fc-41f3-4b6e-bdff-866d25e359cf.pem","mimet
ype":"application/x-pem-file"},"pubKeyHash":"/HtX+jLmvyksCJaoiBQGgnIqDG05H/g/Wm2PUhssqrc=","crlite_enrolled":false,"id":"b8528abc-baa8-44b9-bd18-905904ccc434","last_modified":1576536533605},{"schema":1576535830116,"derHash":"Pr9f/sWC0nxpPRvDAQSmO7v8NlLHipUCfpG3+I2sY0U=","subject":"SERIALNUMBER=ZZZZZZV0,CN=Siemens Internet CA V1.0,OU=Copyright (C) Siemens AG 2011 All Rights Reserved,O=Siemens,C=DE","subjectDN":"MIGRMQswCQYDVQQGEwJERTEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaVjAxOjA4BgNVBAsMMUNvcHlyaWdodCAoQykgU2llbWVucyBBRyAyMDExIEFsbCBSaWdodHMgUmVzZXJ2ZWQxITAfBgNVBAMMGFNpZW1lbnMgSW50ZXJuZXQgQ0EgVjEuMA==","whitelist":false,"attachment":{"hash":"74b68a212aa3556e43f111197ff49f0b49384f017d5a0bf0f7691f07af8f80df","size":1642,"filename":"rQOD_jrRH5t2JxCWlRagCWxoDrKXhsLELQ-GrW6LeRI=.pem","location":"security-state-staging/intermediates/a3a0159e-a06f-40cb-a535-7707bef95b3e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rQOD/jrRH5t2JxCWlRagCWxoDrKXhsLELQ+GrW6LeRI=","crlite_enrol
led":false,"id":"0ed532dd-1eea-4b09-8cf1-7d776e31478a","last_modified":1576536533601},{"schema":1576535828734,"derHash":"z4qG5oA2cAGUyxeihzJWsMP0+HmxHpze2X+b2Um72s8=","subject":"SERIALNUMBER=202010,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDEw","whitelist":false,"attachment":{"hash":"c489aec141409cafd97e5f1081ec7447e97a8cc115dee8bf2856b9cfdc6b6a20","size":2333,"filename":"1Gj2oYHo5bx6UB6N1ZWaYH9p_JKTNdy9svwFXrtPOrE=.pem","location":"security-state-staging/intermediates/39a5b788-3acd-4c5a-95dd-da0e047288c7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1Gj2oYHo5bx6UB6N1ZWaYH9p/JKTNdy9svwFXrtPOrE=","crlite_enrolled":false,"id":"5c92465d-48b2-42ad-883f-f60b197d738b","last_modified":1576536533597},{"schema":1576535827277,"derHash":"f3VdwrnumesC1xyxgFBZqqu16z6FWNyowJodDeJY12c=","subject":"CN=DigiCert PKI Platform Class 3 Sha
red SMIME Organization CA,O=DigiCert\\, Inc.,C=US","subjectDN":"MGsxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjFDMEEGA1UEAxM6RGlnaUNlcnQgUEtJIFBsYXRmb3JtIENsYXNzIDMgU2hhcmVkIFNNSU1FIE9yZ2FuaXphdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"962146c4389406a5837448504ee8917c15a34a91f062837c24aae8379a53f649","size":2129,"filename":"kIMb0w91fvtIKY9SWGVWsLBdmzYR7ulapDwjSpj_sUw=.pem","location":"security-state-staging/intermediates/99ab416c-3ec0-4538-882f-0a8f848c39ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kIMb0w91fvtIKY9SWGVWsLBdmzYR7ulapDwjSpj/sUw=","crlite_enrolled":false,"id":"085b8109-df05-4f60-9f5b-24a135c8e502","last_modified":1576536533594},{"schema":1576535822371,"derHash":"2HqtYV/nwjhQMiRNCM3+BusAVnWqGJLW5bgngPGfuH8=","subject":"O=Government Root Certification Authority,C=TW","subjectDN":"MD8xCzAJBgNVBAYTAlRXMTAwLgYDVQQKDCdHb3Zlcm5tZW50IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"3e9b27c1653abd1f49b5189ccb18ea591
194a9d481d1174341a7cfca58f3cecc","size":2239,"filename":"pRovOgUOg4pQUGlleNu-2qwaEH7i2dSPrlBdGNDaXPg=.pem","location":"security-state-staging/intermediates/401c0af2-b653-4020-b4fc-748c2eb73eb0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pRovOgUOg4pQUGlleNu+2qwaEH7i2dSPrlBdGNDaXPg=","crlite_enrolled":true,"id":"e3ea9bb3-49c5-4737-8811-c946f0d12a7f","last_modified":1576536533586},{"schema":1576535825729,"derHash":"m+2DMyEROjZtb2zzecVtTY5w84AarBScRn3VR7lbgDA=","subject":"SERIALNUMBER=202001,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDIwMDE=","whitelist":false,"attachment":{"hash":"1a6c080cdf1e6925db74f55875bcc4c9b4dee5cdc065acb74b17d9d378823ff6","size":2337,"filename":"wTIgzVyDobl0UXdknuaJLn7IjhxQWstWSpX0gYZxwSc=.pem","location":"security-state-staging/intermediates/33367ce4-c7a5-4a00-9a19-f5a75f62ec4e.pem","mimetype":
"application/x-pem-file"},"pubKeyHash":"wTIgzVyDobl0UXdknuaJLn7IjhxQWstWSpX0gYZxwSc=","crlite_enrolled":false,"id":"df664d63-b5f5-4b4c-9421-c7442a5e3d1f","last_modified":1576536533583},{"schema":1576535820935,"derHash":"M+8VHvsI0cRPuFzD8j7GhzAU6fiBaRvUk4t/JRWAtpQ=","subject":"CN=GlobalSign Root E46,O=GlobalSign nv-sa,C=BE","subjectDN":"MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQDExNHbG9iYWxTaWduIFJvb3QgRTQ2","whitelist":false,"attachment":{"hash":"41d424d3da88a84293ad6feed475c1a513b2a30cd740e6d86c7ec641141bd50e","size":1313,"filename":"4EoCLOMvTM8sf2BGKHuCijKpCfXnUUR_g_0scfb9gXM=.pem","location":"security-state-staging/intermediates/e4bdfc10-cf3c-4f1d-8566-19d3353552f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4EoCLOMvTM8sf2BGKHuCijKpCfXnUUR/g/0scfb9gXM=","crlite_enrolled":false,"id":"59fa6d74-626e-410e-a605-3508e34fb522","last_modified":1576536533576},{"schema":1576535815181,"derHash":"ScWCcPcPG+C3wZ0bwsLrxB4v3g1IhdT6Ze8DcKzsegA=","subject":"CN
=Trustwave Extended Validation SHA256 CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGxMQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE5MDcGA1UEAxMwVHJ1c3R3YXZlIEV4dGVuZGVkIFZhbGlkYXRpb24gU0hBMjU2IENBLCBMZXZlbCAxMR8wHQYJKoZIhvcNAQkBFhBjYUB0cnVzdHdhdmUuY29t","whitelist":false,"attachment":{"hash":"8d10fdb281e7d06718cfb07684595820b2ba91fe916794f089027ecd08741ae9","size":1808,"filename":"zE8XYBj3Yf6nXNVdTry0tXUx6LGqIbwnbyd7rIOKue0=.pem","location":"security-state-staging/intermediates/ce6b6bbd-6319-4603-8b73-cca667b9433f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zE8XYBj3Yf6nXNVdTry0tXUx6LGqIbwnbyd7rIOKue0=","crlite_enrolled":true,"id":"9ae59d4e-7e03-474f-941d-3981e7735030","last_modified":1576536533565},{"schema":1576535813752,"derHash":"cqxCi7cV313Br4dXkwjozC6/pYhoa1Zykv1w7rD+6Lc=","subject":"O=Government Root Certification Authority,C=TW","subjectDN":"MD8xCzAJBgNVBA
YTAlRXMTAwLgYDVQQKDCdHb3Zlcm5tZW50IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"9f2cd48065c65b19c1567155587ee5b2ea12096fc059100e9dae031f046e8223","size":2247,"filename":"pRovOgUOg4pQUGlleNu-2qwaEH7i2dSPrlBdGNDaXPg=.pem","location":"security-state-staging/intermediates/80b2e6eb-6ab0-45b0-934a-0bd551103c17.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pRovOgUOg4pQUGlleNu+2qwaEH7i2dSPrlBdGNDaXPg=","crlite_enrolled":true,"id":"5c8d7aa0-ea1f-4169-aad6-87d9f174d9b1","last_modified":1576536533561},{"schema":1576535810909,"derHash":"m1P2nYRHsBsB5FZbhT4oi2y4IpHagqW0G7wVwvOtZUg=","subject":"CN=OneSignSSL RSA EV Secure Server CA,OU=Controlled by Sectigo exclusively for One Sign Pte. Ltd.,O=One Sign Pte. Ltd.,L=Singapore,ST=Singapore,C=SG","subjectDN":"MIHCMQswCQYDVQQGEwJTRzESMBAGA1UECBMJU2luZ2Fwb3JlMRIwEAYDVQQHEwlTaW5nYXBvcmUxGzAZBgNVBAoTEk9uZSBTaWduIFB0ZS4gTHRkLjFBMD8GA1UECxM4Q29udHJvbGxlZCBieSBTZWN0aWdvIGV4Y2x1c2l2ZWx5IGZvciBPbmUgU2lnbiBQdGUuIEx0
ZC4xKzApBgNVBAMTIk9uZVNpZ25TU0wgUlNBIEVWIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"d526be8dbfd4f8a1f4fa720b72484238615a1d43b39f4d9644bcd8a645363d48","size":2276,"filename":"N8OD-hIuhMaCwngPwhlrWu8ly-IEZbRt_gL0S4FH9GU=.pem","location":"security-state-staging/intermediates/580704b8-c2d3-4b2b-ac3f-4f4088f817ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N8OD+hIuhMaCwngPwhlrWu8ly+IEZbRt/gL0S4FH9GU=","crlite_enrolled":false,"id":"2f63765d-9e3e-4f03-9bc9-57612db1fbf6","last_modified":1576536533557},{"schema":1576535812375,"derHash":"Qx9jChtd5vD/G3MxjQGqqf5KEl8wJsHMMOJc9KXLuj8=","subject":"CN=BitCert RSA Domain Secure Site CA,O=BitCert,L=Chengdu,ST=Sichuan,C=CN","subjectDN":"MG8xCzAJBgNVBAYTAkNOMRAwDgYDVQQIEwdTaWNodWFuMRAwDgYDVQQHEwdDaGVuZ2R1MRAwDgYDVQQKEwdCaXRDZXJ0MSowKAYDVQQDEyFCaXRDZXJ0IFJTQSBEb21haW4gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"6ffbd17583806cfd9f9461e1213cba2e87fa5d6150d467d60f1bea3a6057e527","size":2129,"filename":"c
NE8mPePscWLEKBJVbelkXANOrn4fk_NgWvF39Zm9FU=.pem","location":"security-state-staging/intermediates/082754db-89db-4a21-b19c-beb0cea8ad0e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cNE8mPePscWLEKBJVbelkXANOrn4fk/NgWvF39Zm9FU=","crlite_enrolled":false,"id":"67e2adbf-676e-4de8-b707-4616d1daef65","last_modified":1576536533550},{"schema":1576535808036,"derHash":"Fq1RJaCVWvAmQhhUXnSCfiw5oDLV0L9mWxfDv5nSNJY=","subject":"CN=BitCert ECC Extended Validation Secure Site CA,OU=Controlled by Sectigo exclusively for BitCert,O=\u6210\u90fd\u6570\u8bc1\u79d1\u6280\u6709\u9650\u516c\u53f8,L=Chengdu,ST=Sichuan,C=CN","subjectDN":"MIHLMQswCQYDVQQGEwJDTjEQMA4GA1UECBMHU2ljaHVhbjEQMA4GA1UEBxMHQ2hlbmdkdTEnMCUGA1UECgwe5oiQ6YO95pWw6K+B56eR5oqA5pyJ6ZmQ5YWs5Y+4MTYwNAYDVQQLEy1Db250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIEJpdENlcnQxNzA1BgNVBAMTLkJpdENlcnQgRUNDIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"0bf8e9bb5d7d37aa96702157cb3f2294932a83c08a9d1b6c2
b943e541fc807fb","size":1451,"filename":"7tz57vvcF4mLPHC5kUb-dwbT09hTvQJZuiNDyCG4Swc=.pem","location":"security-state-staging/intermediates/ae19039d-8a97-4be8-9215-27223a283e1e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7tz57vvcF4mLPHC5kUb+dwbT09hTvQJZuiNDyCG4Swc=","crlite_enrolled":false,"id":"402c61da-df23-4bb5-9b05-933a5fcc8719","last_modified":1576536533546},{"schema":1576535806599,"derHash":"f9zjv0EDwmhLOtu1eSiEvUXHUJTCF3iIY5UDRveckKM=","subject":"CN=Let's Encrypt Authority X1,O=Let's Encrypt,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQDExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBYMQ==","whitelist":false,"attachment":{"hash":"bbe724ea37646109cfdf462e31c712ce1860c42f0c33c899f330a39c44c47cc9","size":1674,"filename":"YLh1dUR9y6Kja30RrAn7JKnbQG_uEtLMkBgFF2Fuihg=.pem","location":"security-state-staging/intermediates/ca8a4374-c876-45a5-a7e5-93bbf9babd0c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YLh1dUR9y6Kja30RrAn7JKnbQG/uEtLMkB
gFF2Fuihg=","crlite_enrolled":false,"id":"0638efef-e35a-421b-af37-979d39b08cbc","last_modified":1576536533543},{"schema":1576535805086,"derHash":"U2dpLs5it1jQTZt+bfsNswf4WevGpstfd/8kVh18wAQ=","subject":"CN=USERTrust RSA Extended Validation Secure Server CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGVMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE7MDkGA1UEAxMyVVNFUlRydXN0IFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"e824527655464dd31a8c05c4d0472f598ceba1ccfa4c8b6f1f82aacae141213f","size":2174,"filename":"8E_u4IJLStWPqhVEn4td_2Ae6WYCii1AmJC2dgTCj1s=.pem","location":"security-state-staging/intermediates/81cfbb36-b77a-44c7-b9d5-e2c1a3bdf3fb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8E/u4IJLStWPqhVEn4td/2Ae6WYCii1AmJC2dgTCj1s=","crlite_enrolled":true,"id":"e80e13e0-9ae0-4852-86c7-1c266fe0906a","last_modified":157653653353
6},{"schema":1576535803675,"derHash":"Hk/DTSbgeT1VnjIv4RHx4ZqdLjS8JdPEJ7AypI0sW2o=","subject":"CN=Encryption Everywhere ECC DV TLS CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLDAqBgNVBAMTI0VuY3J5cHRpb24gRXZlcnl3aGVyZSBFQ0MgRFYgVExTIENB","whitelist":false,"attachment":{"hash":"b2e5666f89f6d4fcf8a08fb74f9c91de3fd68ec696f62a873e86e4f8f9820119","size":1402,"filename":"Y08hSYf9OdhKAGME14XuWUxmQaPENh7XTciOu54_cJM=.pem","location":"security-state-staging/intermediates/e826a1f2-a878-4c8b-a4fe-e7e952f31ace.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y08hSYf9OdhKAGME14XuWUxmQaPENh7XTciOu54/cJM=","crlite_enrolled":false,"id":"088948ef-fc2d-4e5d-8116-9d744c2d517a","last_modified":1576536533532},{"schema":1576535802266,"derHash":"X6UFXyQNl2NCYTkfBp1nNWiQpmaZrDU8h5bAIIfD9iU=","subject":"SERIALNUMBER=202005,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNV
BAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDIwMDU=","whitelist":false,"attachment":{"hash":"a1d2ba4c6e094c13518e23442e78edfc498b63f04ef46e0ff1d638ec4611959f","size":2337,"filename":"yXbKpkevIJYstXu3Y8aQhnKxJCsgkPusJy_04jWrd9k=.pem","location":"security-state-staging/intermediates/da35fd7e-cb9e-45b0-b785-a3544f24944a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yXbKpkevIJYstXu3Y8aQhnKxJCsgkPusJy/04jWrd9k=","crlite_enrolled":false,"id":"719da943-9eca-48e7-a6f7-8fabfaa691eb","last_modified":1576536533527},{"schema":1576535800599,"derHash":"EaJ2cYciZURctyWOsoRO5hTRR3e59vc76VMhIvIfrQ0=","subject":"CN=JPRS Domain Validation Authority - G3,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzM=","whitelist":false,"attachment":{"hash":"4b63dd60cab5b91793fb2695
17be9ffd9aadf4f0d673182ce5c573d60f93a5f0","size":1792,"filename":"n1ufb8l1_ENW_uOKNKgHIeBe_NgVI39f0IzwWmCVHvE=.pem","location":"security-state-staging/intermediates/219df0bb-3a25-4e71-9a82-6e5b4dff8b72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"n1ufb8l1/ENW/uOKNKgHIeBe/NgVI39f0IzwWmCVHvE=","crlite_enrolled":true,"id":"fa314713-1710-4998-8e47-324d8a08bbcb","last_modified":1576536533524},{"schema":1576535799214,"derHash":"PX/nnGA3ySsvcebuMuqOSJe+DlJHE/pXZv5QcKuuNbQ=","subject":"CN=OneSign OV Code Signing CA,O=One Sign Pte. Ltd.,L=Singapore,ST=Singapore,C=SG","subjectDN":"MHcxCzAJBgNVBAYTAlNHMRIwEAYDVQQIEwlTaW5nYXBvcmUxEjAQBgNVBAcTCVNpbmdhcG9yZTEbMBkGA1UEChMST25lIFNpZ24gUHRlLiBMdGQuMSMwIQYDVQQDExpPbmVTaWduIE9WIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"d0d86e927bb45144063cad68a993a2989fc62706735c52f3bfe6e4f30652c741","size":2113,"filename":"5nYj6KpzYdmcxBc53ixNusk36BbU6mrGTXPVKqFZz4o=.pem","location":"security-state-staging/intermediates/6a639b4c-4c2d
-449d-9944-d639bf15eea6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5nYj6KpzYdmcxBc53ixNusk36BbU6mrGTXPVKqFZz4o=","crlite_enrolled":false,"id":"9380b8fd-2e8a-4be6-8e33-2ac89816bd16","last_modified":1576536533520},{"schema":1576535797770,"derHash":"ceZTv79eclFbQJm71eyIcoErR8bsH6mt0yfhySyeoW0=","subject":"CN=Certigna Services CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MH0xCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlESElNWU9USVMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxHTAbBgNVBGEMFE5UUkZSLTQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQQDDBRDZXJ0aWduYSBTZXJ2aWNlcyBDQQ==","whitelist":false,"attachment":{"hash":"1e69d697d43d9ba8bb5bef41ca322d6effdfa8f6fb680b6b8c84759cb9c7151f","size":2170,"filename":"Vvyvg4-bOEbI6aO7K28ioVsUfckLqCSKqlIqZTEB_uE=.pem","location":"security-state-staging/intermediates/fd277823-b07c-41b0-bff8-0cdb90cd2145.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vvyvg4+bOEbI6aO7K28ioVsUfckLqCSKqlIqZTEB/uE=","crlite_enrolled":true,"id":"e83a378a-19a8-4110-bf0b-0f49b89
65b01","last_modified":1576536533516},{"schema":1576535796324,"derHash":"l8ZzTlSpCzt8D1QCU39IH95CN5ndsub4WybuGqctITQ=","subject":"SERIALNUMBER=202002,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDIwMDI=","whitelist":false,"attachment":{"hash":"c0fa3dc15aeb9baebdbfdfe25bcfee4127a355c5cb6c09e43c562da3b547eeea","size":2337,"filename":"2rt-W6yXxYkYjTahsDT5hHsIBPVpVTxJQpmpCAktRXo=.pem","location":"security-state-staging/intermediates/da70c200-aa3a-489e-b91c-90be8cf90677.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2rt+W6yXxYkYjTahsDT5hHsIBPVpVTxJQpmpCAktRXo=","crlite_enrolled":false,"id":"47a787f1-e657-48ab-abc2-2282a260dd45","last_modified":1576536533512},{"schema":1576535793514,"derHash":"ndwuDVW0YeDHMigoLfVrK+8iTKI4VoHRe26MB3hSVzw=","subject":"CN=GlobalSign CA 4 for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"MEsxCzAJBgNV
BAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSEwHwYDVQQDExhHbG9iYWxTaWduIENBIDQgZm9yIEFBVEw=","whitelist":false,"attachment":{"hash":"1971e4bd393e616d4a85fc372108d3352c1321acd50f44ae8d74ec89a345738a","size":2089,"filename":"Xj0OpiKM5fkJ7g__pfUXsKnp9Ggz3CaAgIY6QU_Ml6I=.pem","location":"security-state-staging/intermediates/b5319024-9627-4d8d-b25c-c792f4e61e32.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Xj0OpiKM5fkJ7g//pfUXsKnp9Ggz3CaAgIY6QU/Ml6I=","crlite_enrolled":false,"id":"0e72f222-c8c3-4c56-8ae7-c680fea038a5","last_modified":1576536533509},{"schema":1576535791937,"derHash":"ixbUj3Id+rFXIUuazp3ajvuloGtO7ZAYBvCG0d+OrTc=","subject":"CN=Entrust Code Signing Certification Authority - L1D,OU=www.entrust.net/rpa is incorporated by reference+OU=(c) 2009 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIG+MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L3JwYSBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAwOSBFbnRydXN0LCBJb
mMuMTswOQYDVQQDEzJFbnRydXN0IENvZGUgU2lnbmluZyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEwxRA==","whitelist":false,"attachment":{"hash":"fdd58cea7e31810e5f8ba89b9c1c7613eb91f74984042fd3837aefe09410de81","size":1796,"filename":"q4FwU8-QScEfhsNqympCne6e65ZASaL3iUkrlGsfLn4=.pem","location":"security-state-staging/intermediates/8aed1bf7-b11b-476e-823d-17c0cf8948ee.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q4FwU8+QScEfhsNqympCne6e65ZASaL3iUkrlGsfLn4=","crlite_enrolled":false,"id":"1276d7f5-5c93-47a5-ba50-e376b6f24b77","last_modified":1576536533505},{"schema":1576535788951,"derHash":"OALkJFFveO6sMpqumx9gpBLb4dWwldesncDc3ePB9fs=","subject":"CN=Ford Motor Company - Enterprise Issuing CA01,O=Ford Motor Company,L=Dearborn,ST=Michigan,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzEbMBkGA1UEChMSRm9yZCBNb3RvciBDb21wYW55MREwDwYDVQQHEwhEZWFyYm9ybjERMA8GA1UECBMITWljaGlnYW4xNTAzBgNVBAMTLEZvcmQgTW90b3IgQ29tcGFueSAtIEVudGVycHJpc2UgSXNzdWluZyBDQTAx","whitelist":false,"attachment":{"hash":"66305a50b272
e38167edac50ea0ea4251e15c161604ba011e5ce7a459a47d597","size":2588,"filename":"CqwsdVHa6T0W9pos5-f88X2UNjXr4wKHpQ8Muq3ipRA=.pem","location":"security-state-staging/intermediates/7824b869-27a2-4934-a88c-9eb415787415.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CqwsdVHa6T0W9pos5+f88X2UNjXr4wKHpQ8Muq3ipRA=","crlite_enrolled":false,"id":"b7ef57bf-52b7-42de-ba58-d36fd3aa3e00","last_modified":1576536533498},{"schema":1576535794903,"derHash":"Xh2m6S4okrpqc/xQjkHzX5+SfkaEKCmA4XoBORii6lA=","subject":"CN=UIS-IntB-CA","subjectDN":"MBYxFDASBgNVBAMTC1VJUy1JbnRCLUNB","whitelist":false,"attachment":{"hash":"df9806c74f3765764c083de1480b0a52cd10e922c4f3954907a5dd627d515904","size":1707,"filename":"ijOSli4ZzEAaB9BJofum10hbmy0ANTh-Hk3l6PItp34=.pem","location":"security-state-staging/intermediates/2005e5a9-9e1a-4fdd-92da-332b6cf65fe2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ijOSli4ZzEAaB9BJofum10hbmy0ANTh+Hk3l6PItp34=","crlite_enrolled":false,"id":"78dd32a3-453b-4588-8500-d6e3b
a556e36","last_modified":1576536533495},{"schema":1576535787501,"derHash":"WXK5vUcQF9XzJwW+6RVwNiZXX4snCjnBwxLH+SRsENQ=","subject":"SERIALNUMBER=ZZZZZZA2,CN=Siemens Issuing CA EE Auth 2016,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGfMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQTIxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMSgwJgYDVQQDDB9TaWVtZW5zIElzc3VpbmcgQ0EgRUUgQXV0aCAyMDE2","whitelist":false,"attachment":{"hash":"b12e53720e7865f31d817d0aa08374ddea48a85382ed262c82bbeb55a1b88f0f","size":3133,"filename":"mK19rDzuSvRGMEDPJLlMOI0yXJx2HMcqf75ficQsHb4=.pem","location":"security-state-staging/intermediates/25f101de-ca3e-462b-ae08-6d5c61e71bdb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mK19rDzuSvRGMEDPJLlMOI0yXJx2HMcqf75ficQsHb4=","crlite_enrolled":true,"id":"8555121f-5201-43c7-a55b-0a7a5c2bcaba","last_modified":1576536533491},{"schema":1576535784624,"derHash":"r2OdwLuxaO/3WxU
RfYiJN+tkwbBFPxaNG4xS7PBKy5M=","subject":"CN=AffirmTrust Networking Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=AffirmTrust,C=US","subjectDN":"MIGKMQswCQYDVQQGEwJVUzEUMBIGA1UECgwLQWZmaXJtVHJ1c3QxLTArBgNVBAsMJGh0dHA6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291cmNlczE2MDQGA1UEAwwtQWZmaXJtVHJ1c3QgTmV0d29ya2luZyBFeHRlbmRlZCBWYWxpZGF0aW9uIENB","whitelist":false,"attachment":{"hash":"567c0deb382057dc9c24a94f806ff056b5ca63c56b30305ac6dbb6b17fc7c414","size":1581,"filename":"DJdCClyMUYAHIPZVCPPJWty8pFkigRmSqua8RS8UJpk=.pem","location":"security-state-staging/intermediates/1e83b359-8021-4e03-997d-db1ee57d127d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DJdCClyMUYAHIPZVCPPJWty8pFkigRmSqua8RS8UJpk=","crlite_enrolled":false,"id":"c50530e0-79bd-45c9-a333-3de7cc66a670","last_modified":1576536533484},{"schema":1576535780113,"derHash":"c50MOnG2w3fL0cQIrnzBlzLCy++GINY7Fsn9AYXfmnE=","subject":"CN=Atos TrustedRoot Client-CA for equensWorldlinePartner 2 2019,O=Atos,C=DE","subjec
tDN":"MGMxRTBDBgNVBAMMPEF0b3MgVHJ1c3RlZFJvb3QgQ2xpZW50LUNBIGZvciBlcXVlbnNXb3JsZGxpbmVQYXJ0bmVyIDIgMjAxOTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"ccd6bf64b0fe85f84a39efc0e01f5c14bd29d87d463cebcb319c05a721bb707b","size":1963,"filename":"mYzVJyiW8rCGgYKsa2ZqYeJxDrP-AP2AAx-gS-JpbgI=.pem","location":"security-state-staging/intermediates/a180baa5-7ae1-4c2f-b681-e2005c81c50d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mYzVJyiW8rCGgYKsa2ZqYeJxDrP+AP2AAx+gS+JpbgI=","crlite_enrolled":false,"id":"9300e6b6-6f08-4bef-a127-adb3c76eefe1","last_modified":1576536533472},{"schema":1576535777302,"derHash":"/TOu/TOhYfrAGQ5B353VDDM56IPAP0nEoqsriVbvVNQ=","subject":"CN=Symantec Class 3 Organizational CA - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEwMC4GA1UEAxMnU3ltYW50ZWMgQ2xhc3MgMyBPcmdhbml6YXRpb25hbCBDQSAtIEc0","whitelis
t":false,"attachment":{"hash":"8bb58e69a554da25ed0e9a2e2c0f0b5c5c4a14229e342a65c32c6aac31ba5d3a","size":1894,"filename":"uNzZ9PuqZ750aAgYLpKabu6MjXW-QU_Qg4jjBcbvEik=.pem","location":"security-state-staging/intermediates/eab13c01-ef46-422e-9972-eae0610179d2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uNzZ9PuqZ750aAgYLpKabu6MjXW+QU/Qg4jjBcbvEik=","crlite_enrolled":false,"id":"ad42cc39-3cc7-493a-be53-30f0af27396d","last_modified":1576536533468},{"schema":1576535778745,"derHash":"djSK3uSOYdcynuSDEJZR6ksuC1wC998lg/4QdO2cb+w=","subject":"CN=SafeToOpen ClientCert ICA RSA R1,O=SafeToOpen Ltd,C=NZ","subjectDN":"MFExCzAJBgNVBAYTAk5aMRcwFQYDVQQKDA5TYWZlVG9PcGVuIEx0ZDEpMCcGA1UEAwwgU2FmZVRvT3BlbiBDbGllbnRDZXJ0IElDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"d2225a4c67341a1d2bb21c9161f9f20b36f3436d9503b4c0ed123d5c05200e9e","size":2483,"filename":"e9_bjft2byP0VwBVyMlQUiqIe4r0YRn4_rKl-kQ3Vt4=.pem","location":"security-state-staging/intermediates/3a631fc8-f14e-493b-9c86-1f3c36c6
637d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e9/bjft2byP0VwBVyMlQUiqIe4r0YRn4/rKl+kQ3Vt4=","crlite_enrolled":false,"id":"709c1ccf-bcc4-4d2c-be64-a416ecaddacd","last_modified":1576536533464},{"schema":1576535771624,"derHash":"6H6ivtbGIDssVbAP5J0odvumRwIQWut0i4ZakYtcfSc=","subject":"CN=GlobalSign Domain Validation CA - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"d4e7ca7e1402409ada7f0f5a43f305ef2e3e302c74d18ba940f4da00d03dc570","size":1569,"filename":"TEb9SdyV5a_KjM7PCm4dOji-92ekxy7uuBKyI1Gg5v4=.pem","location":"security-state-staging/intermediates/9ee14808-899d-4024-8b79-c401b44fd1ea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TEb9SdyV5a/KjM7PCm4dOji+92ekxy7uuBKyI1Gg5v4=","crlite_enrolled":false,"id":"9b7b6720-a2ad-489f-9c69-dfd96a8c27b1","last_modified":1576536533450},{"schema":1576535770260,"derHash
":"2jvitqbZcVwSlaQr5SbgAB0Q5ddUDwbnYxs05kSTSEg=","subject":"CN=Secure Site Pro ECC CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIjAgBgNVBAMTGVNlY3VyZSBTaXRlIFBybyBFQ0MgQ0EgRzI=","whitelist":false,"attachment":{"hash":"788b2f3686e8970c3f5cfad0711b04ffb48ca9be4a2d82a766de64e5a7aa6248","size":1394,"filename":"SM9Xyw9hNxw5i17xxTmtGrBPfKQFpQaYXQuRAEx9ygs=.pem","location":"security-state-staging/intermediates/f6d2b6fc-b4fb-4bad-81b8-9e27104a4e8c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SM9Xyw9hNxw5i17xxTmtGrBPfKQFpQaYXQuRAEx9ygs=","crlite_enrolled":true,"id":"8353b3ca-43b2-48d1-87b8-c28fcd0ba0e3","last_modified":1576536533447},{"schema":1576535768847,"derHash":"O5HEzWer3x1Scu67Lienee8C2CDOAvZLU7ncXnhnQ7g=","subject":"CN=Document Signing ECC ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MH4xCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UE
BwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMSQwIgYDVQQDDBtEb2N1bWVudCBTaWduaW5nIEVDQyBJQ0EgUjE=","whitelist":false,"attachment":{"hash":"1d398f18501d3a5e09a31afee26764aead55237baa53a49993a4afaa2acaff8e","size":1366,"filename":"FZ8xakLVjVKD3n_pRB8V9qVb1lmJuM7JBY6uzwl3Ht0=.pem","location":"security-state-staging/intermediates/a5f07e80-dd03-4fbe-b113-0487d431c83b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FZ8xakLVjVKD3n/pRB8V9qVb1lmJuM7JBY6uzwl3Ht0=","crlite_enrolled":false,"id":"c3150be2-0aba-41ac-86ce-a463eb088d4f","last_modified":1576536533443},{"schema":1576535767420,"derHash":"Bb3Zp8ZwbTnW2xpYCq/2fUZzAnts8B/RU2fY7YSokPA=","subject":"CN=Symantec Class 3 Organizational CA - G2,OU=VeriSign Trust Network+OU=Terms of use at https://www.verisign.com/rpa (c)11,O=Symantec Corporation,C=US","subjectDN":"MIG8MQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOzA5BgNVBAsTMlRlcm1zIG9mIHVzZSBhdCBodHRwczo
vL3d3dy52ZXJpc2lnbi5jb20vcnBhIChjKTExMTAwLgYDVQQDEydTeW1hbnRlYyBDbGFzcyAzIE9yZ2FuaXphdGlvbmFsIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"ef5b81322c43753e4a9ea1ffbbe9bdcd81aa70b6aee06e7346ec6e8fab589497","size":2125,"filename":"8Vaa7hyPgvofrzXh1bAlF62L9kQg_5tbO-89MDeNtLQ=.pem","location":"security-state-staging/intermediates/038fe9fc-bab4-43ca-832c-ef6d0f3ba1fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8Vaa7hyPgvofrzXh1bAlF62L9kQg/5tbO+89MDeNtLQ=","crlite_enrolled":false,"id":"96bc6b19-4307-4508-8c1f-7093ac0bcddc","last_modified":1576536533439},{"schema":1576535765971,"derHash":"679NxgDBfaBDgd79z8EZw/NO+0oE0IYJELgTx3ktdYU=","subject":"CN=Certigna Entity CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MHsxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlESElNWU9USVMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxHTAbBgNVBGEMFE5UUkZSLTQ4MTQ2MzA4MTAwMDM2MRswGQYDVQQDDBJDZXJ0aWduYSBFbnRpdHkgQ0E=","whitelist":false,"attachment":{"hash":"ada86b610b9f472f00e1921d532cf509f6692c87cb455
80cbdd6cdb13bc4ffbd","size":2170,"filename":"0Eiyrr-wFIp1JqShtXzNCtJt2yUU0-j_mDnLwk1-AHk=.pem","location":"security-state-staging/intermediates/f1c34a68-978a-4f12-85f8-06564ca3f194.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0Eiyrr+wFIp1JqShtXzNCtJt2yUU0+j/mDnLwk1+AHk=","crlite_enrolled":false,"id":"b641a082-df69-4132-a8a8-a1a801f83c2c","last_modified":1576536533436},{"schema":1576535764596,"derHash":"xa2jSGvdtUWzqn7JnGnBrtlCdNX+ynkz4BMuIS8CZnE=","subject":"CN=BitCert ECC Domain Secure Site CA,O=BitCert,L=Chengdu,ST=Sichuan,C=CN","subjectDN":"MG8xCzAJBgNVBAYTAkNOMRAwDgYDVQQIEwdTaWNodWFuMRAwDgYDVQQHEwdDaGVuZ2R1MRAwDgYDVQQKEwdCaXRDZXJ0MSowKAYDVQQDEyFCaXRDZXJ0IEVDQyBEb21haW4gU2VjdXJlIFNpdGUgQ0E=","whitelist":false,"attachment":{"hash":"cf45883f3cb3aaa3f86e6fd95964673ab8be0ec688db38395556914cc50c457e","size":1288,"filename":"l03AMxIZai8wvW2nrYEfG_5pj3_oGL2PS1_B5kv47yg=.pem","location":"security-state-staging/intermediates/1dc1c5ba-377f-4791-bea6-1421a0da10d3.pem","mimetype":
"application/x-pem-file"},"pubKeyHash":"l03AMxIZai8wvW2nrYEfG/5pj3/oGL2PS1/B5kv47yg=","crlite_enrolled":false,"id":"a06f0bc4-ae00-450f-9b23-5180ec001c0e","last_modified":1576536533432},{"schema":1576535763166,"derHash":"TElDueqhTqKmm4p+TY2okIHuoRyH6CKbm3T2inrTO3k=","subject":"CN=DigiCert High Assurance EV CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKDAmBgNVBAMTH0RpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEVWIENBLTE=","whitelist":false,"attachment":{"hash":"131d16f8a3827db506e21e62347e6935b0db5934f7cd31f78e3735432e71fcd8","size":2446,"filename":"suo4a3Sz765--hurzLhgwqwpR8K0KVkwTarqwwCDJB4=.pem","location":"security-state-staging/intermediates/53ce7c2b-bdc9-4c39-8f4e-19e5a9954bb6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"suo4a3Sz765++hurzLhgwqwpR8K0KVkwTarqwwCDJB4=","crlite_enrolled":false,"id":"97d292c2-1d66-4cc8-8ec8-a8911cfaad9e","last_modified":1576536533429},{"schema":15765357
59951,"derHash":"61fyBRE6WBFH4PHZcygnT7Aw7GnuyJyil9z1Wj+0Rjw=","subject":"CN=Cybertrust Japan Public CA G3,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MFoxCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEmMCQGA1UEAxMdQ3liZXJ0cnVzdCBKYXBhbiBQdWJsaWMgQ0EgRzM=","whitelist":false,"attachment":{"hash":"d0ce3f546a0b5b31ffeafd1b7b56cdfb890a2a42f77fbd7a34624bfeb1403b9e","size":1569,"filename":"QnKSPXOthAGsklSpx8zrmS9gtfzbJ28gPMA9AMjEoJc=.pem","location":"security-state-staging/intermediates/cfc9aae0-3939-46e2-b9b5-031113811434.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QnKSPXOthAGsklSpx8zrmS9gtfzbJ28gPMA9AMjEoJc=","crlite_enrolled":true,"id":"170fdc60-b3a3-4542-9702-1b3b2f475163","last_modified":1576536533421},{"schema":1576535754283,"derHash":"A3YWMmo0L8B4DUr/tzRP8Okl0eD95Hgqt4L0q9W1MrA=","subject":"CN=Code Signing ECC ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHoxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBw
wIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMSAwHgYDVQQDDBdDb2RlIFNpZ25pbmcgRUNDIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"36f68794088b135f677cebba75e488317c36d03d79ae9a05ab74f929ff5b8764","size":1329,"filename":"jZT0dnUpZ1-v9bahYwUFxf9JNVofQeMD_ZBqvCPnxLA=.pem","location":"security-state-staging/intermediates/8e437135-4819-4662-96a1-702396b42c86.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jZT0dnUpZ1+v9bahYwUFxf9JNVofQeMD/ZBqvCPnxLA=","crlite_enrolled":false,"id":"090c1b74-da3c-4164-b879-475bec9c94e8","last_modified":1576536533413},{"schema":1576535752775,"derHash":"+/gAl7yu7qyhOf263rWt2YyRu2msHUpmnU3gPgg1TU8=","subject":"SERIALNUMBER=202006,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDA2","whitelist":false,"attachment":{"hash":"9b87f4ed0a777f1fe45c49dfb7ca4daed55e7e7a233f5f373c4019fba5
815a9c","size":2333,"filename":"tmU4vIMx2B_mhNc1TEZrX5KYbxjUTIs_Eu0mrAh0UJ0=.pem","location":"security-state-staging/intermediates/d60c2192-fd0b-4214-a308-ffdc49d9ef23.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tmU4vIMx2B/mhNc1TEZrX5KYbxjUTIs/Eu0mrAh0UJ0=","crlite_enrolled":false,"id":"a470c28a-df12-4579-b9a6-1f16a4ca2214","last_modified":1576536533408},{"schema":1576535757125,"derHash":"A86bxxuR/bfLPFI1yuBwHLSGu9Yo1KreWEH8XwqjekY=","subject":"CN=DigiCert CN RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHjAcBgNVBAMTFURpZ2lDZXJ0IENOIFJTQSBDQSBHMQ==","whitelist":false,"attachment":{"hash":"595bf22b78664a42587deccbb284643462b25d170791f641b0fd546e4050d8f6","size":1829,"filename":"MIKoeatlSqVA3aCIrE0_JYoP9vF4XSCTPHy-c9vAsKk=.pem","location":"security-state-staging/intermediates/d17777aa-b2a4-484e-8441-343c9547032e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M
IKoeatlSqVA3aCIrE0/JYoP9vF4XSCTPHy+c9vAsKk=","crlite_enrolled":true,"id":"03498728-f5b2-439d-81fe-b9e6d9610c07","last_modified":1576536533404},{"schema":1576535748430,"derHash":"9nh/qMrX0sJ5oDdL+1A4B8xq3MfCNwknPdWkBH0a73g=","subject":"CN=SZCA DV SSL CA,O=Shenzhen Digital Certificate Authority Center Co.\\, Ltd,C=CN","subjectDN":"MGcxCzAJBgNVBAYTAkNOMT8wPQYDVQQKDDZTaGVuemhlbiBEaWdpdGFsIENlcnRpZmljYXRlIEF1dGhvcml0eSBDZW50ZXIgQ28uLCBMdGQxFzAVBgNVBAMMDlNaQ0EgRFYgU1NMIENB","whitelist":false,"attachment":{"hash":"a9b2ca0380643dfb1ea6c1f34c39fa58988e778b07ffa23714878880023314a7","size":1756,"filename":"PPn3ERZq7pmEq4QyyPxBu8LvJxjiPlPsQLVTHYbOwbo=.pem","location":"security-state-staging/intermediates/da53fafc-fb80-458f-bfea-530aa2404b02.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PPn3ERZq7pmEq4QyyPxBu8LvJxjiPlPsQLVTHYbOwbo=","crlite_enrolled":true,"id":"9edde23a-7218-41f2-abd4-607c025433f0","last_modified":1576536533388},{"schema":1576535745623,"derHash":"P4/Is8Q1eJGu6pafkGovTyL
bVlRDYoMNAaQN/WmhezQ=","subject":"SERIALNUMBER=202019,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDE5","whitelist":false,"attachment":{"hash":"934630bc6dc2e4108e88dabcc6340b616f8eacb0881c9e46119b1dc2a356f2e5","size":2333,"filename":"ocfITRRhsDIXLV159O4zK-dM7Mn-83WfdL1qjoaRY60=.pem","location":"security-state-staging/intermediates/7d403344-5dc7-4250-8e51-ffe66db08bd4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ocfITRRhsDIXLV159O4zK+dM7Mn+83WfdL1qjoaRY60=","crlite_enrolled":false,"id":"85ec4838-2515-43b4-8bf6-1c66071fa3ed","last_modified":1576536533373},{"schema":1576535744191,"derHash":"4R4GhhxNMI/ZRL8Xvl6QcqA0xPkwNMtZwC1RLTD3/EU=","subject":"CN=COMODO SHA-2 Pro Series Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGLMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwD
gYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDExMC8GA1UEAxMoQ09NT0RPIFNIQS0yIFBybyBTZXJpZXMgU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"20e0af1ce1afab12f371d4975120dcf56cf9ac794e09d91ed9f543ab66f3df9e","size":1691,"filename":"4gSqIYIbYqiQ1NfKCAfvkzCzqmOipsGL9CFJJdH7Ms4=.pem","location":"security-state-staging/intermediates/b573613e-98b2-442f-b706-7ff52a6c758a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4gSqIYIbYqiQ1NfKCAfvkzCzqmOipsGL9CFJJdH7Ms4=","crlite_enrolled":true,"id":"99771b0e-6ace-4444-871f-7a6c6e0bffa4","last_modified":1576536533370},{"schema":1576535742721,"derHash":"W2kOHNK8ABbk2yqrq1A3ReQfhrJEjy7AbSnySZnevKI=","subject":"CN=Symantec Class 3 Registration Authority Intermediate CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGPMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxQDA+BgNVBAMTN1N5bWFudGVjIENsYXNzIDMgUmVnaXN0cmF0aW9uIEF1dGhvcml0eSBJbnRlcm1
lZGlhdGUgQ0E=","whitelist":false,"attachment":{"hash":"ea664603ffb12d1a1345ffb13a3ca44d29711f5043c16a6488fa3b9f2b64f3ba","size":2198,"filename":"vO3_XaIzmqGtcOO2LQL_yHzKa4ueBDChpnLbfwpiu8c=.pem","location":"security-state-staging/intermediates/fdc9f14c-56b9-4103-a6c5-aaa28d69e0dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vO3/XaIzmqGtcOO2LQL/yHzKa4ueBDChpnLbfwpiu8c=","crlite_enrolled":false,"id":"abf5170f-a490-479a-a959-03b3ec607959","last_modified":1576536533366},{"schema":1576535739800,"derHash":"pmQixORJ1GXLAjp/x2M96O0YFphcpBCT/JazZj7XpDs=","subject":"CN=GlobalSign Organization Validation CA - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTMwMQYDVQQDEypHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"8e16299210c970b497a721b3efd1e8535900deef5b981db9c57146ed85f7ff39","size":1577,"filename":"OqqTlivI4taTCDJE1oq61tAsdnSQ_13Ibp0QKE1H7tc=.pem","location":"security-state-st
aging/intermediates/5f6d485b-b94c-40e9-8cc6-7345b0d7d030.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OqqTlivI4taTCDJE1oq61tAsdnSQ/13Ibp0QKE1H7tc=","crlite_enrolled":false,"id":"01146bea-1246-4f33-8f61-a7813e0e2d87","last_modified":1576536533362},{"schema":1576535741259,"derHash":"nhLW4T3dU6iQorOjdCOuXkV3MaezShU5kvHvH1SJpF4=","subject":"CN=DigiCert Assured ID Client CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKTAnBgNVBAMTIERpZ2lDZXJ0IEFzc3VyZWQgSUQgQ2xpZW50IENBIEcy","whitelist":false,"attachment":{"hash":"aba4ac7f47cd3fa5c97a15e2f8e46b0e94ea9d901e60ab40b1dd3ef285a8e6ab","size":1922,"filename":"9uNJKUqEgsV_TXwKFsvy0WrHpWynY8_2cDPAxVlPKwc=.pem","location":"security-state-staging/intermediates/4ea199af-90de-4f71-87de-cb9cd99b0573.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9uNJKUqEgsV/TXwKFsvy0WrHpWynY8/2cDPAxVlPKwc=","crlite_enrolled":false,"id":"61689adb-2a3b
-46ab-9ad9-da8f662c67aa","last_modified":1576536533357},{"schema":1576535734060,"derHash":"J84nIGUCAw46ELyW06IMPYiV+HH7ar4dgEdKtFbzGvU=","subject":"CN=BitCert ECC Business Secure Site CA,O=BitCert,L=Chengdu,ST=Sichuan,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMRAwDgYDVQQIEwdTaWNodWFuMRAwDgYDVQQHEwdDaGVuZ2R1MRAwDgYDVQQKEwdCaXRDZXJ0MSwwKgYDVQQDEyNCaXRDZXJ0IEVDQyBCdXNpbmVzcyBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"21b09c09247dfb82fcc1068e7b44ec24f339af2145e053fa304feaccc96b5143","size":1293,"filename":"WavFTPiAKmlGYUqrK6pToCjDxiEpoNAPMXa5dEGGoi0=.pem","location":"security-state-staging/intermediates/bf93fc43-be30-4713-89f4-6c568e6e35a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WavFTPiAKmlGYUqrK6pToCjDxiEpoNAPMXa5dEGGoi0=","crlite_enrolled":false,"id":"0a103d72-7904-480c-a650-b799dc30c443","last_modified":1576536533349},{"schema":1576535736902,"derHash":"SIVck1lFJzOdmESWifq3wxX/VGUGbFFsKdvc8YU5AdM=","subject":"CN=WebNIC RSA Business Secure Site CA,O=Web
NIC,L=Singapore,C=SG","subjectDN":"MF8xCzAJBgNVBAYTAlNHMRIwEAYDVQQHEwlTaW5nYXBvcmUxDzANBgNVBAoTBldlYk5JQzErMCkGA1UEAxMiV2ViTklDIFJTQSBCdXNpbmVzcyBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"8d8a9aace8a73869057b9a3f4640419a8e8603f9acfbe1caa324a7884b5b0cdf","size":2093,"filename":"VEf8vFVDUxjsP3LYyFy549557yb431jkLHXGaJeeg0s=.pem","location":"security-state-staging/intermediates/3e1e18bc-6809-4b82-b004-81bb3abaf8d2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VEf8vFVDUxjsP3LYyFy549557yb431jkLHXGaJeeg0s=","crlite_enrolled":false,"id":"5e2d4521-debf-4170-bfa2-c04516822e90","last_modified":1576536533345},{"schema":1576535730952,"derHash":"RWO5NuNauXV29a7xk12bx+mXeEHwVzvS4WvKyVNKavk=","subject":"CN=AffirmTrust Certificate Authority - DV1,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGCMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMDAuBgNVBAMTJ0FmZmlybVRydXN0IENlcnRpZmljYXR
lIEF1dGhvcml0eSAtIERWMQ==","whitelist":false,"attachment":{"hash":"f469b6a26ab18f58e6fd0cfbda5e03e69cf3d3264a9c4790878f903d60151468","size":1674,"filename":"68BRY3XqvlKubfNnBJ64F_17BHUniDemUwxZNNvfdaA=.pem","location":"security-state-staging/intermediates/62e47fee-8839-40c8-9719-edf4a5d2615c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"68BRY3XqvlKubfNnBJ64F/17BHUniDemUwxZNNvfdaA=","crlite_enrolled":true,"id":"dd1c7414-0b47-4e26-8b61-6e686bc90126","last_modified":1576536533336},{"schema":1576535735514,"derHash":"rCuSLs/V4BcRdy/qjtNy3p0eIkX84/V6nNvsdylqQks=","subject":"CN=Apple IST CA 2 - G1,OU=Certification Authority,O=Apple Inc.,C=US","subjectDN":"MGIxHDAaBgNVBAMTE0FwcGxlIElTVCBDQSAyIC0gRzExIDAeBgNVBAsTF0NlcnRpZmljYXRpb24gQXV0aG9yaXR5MRMwEQYDVQQKEwpBcHBsZSBJbmMuMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"601b5385fb06a628528a738d6141af6a10c29b3d7659e002ba224353ca089d38","size":1532,"filename":"tc-C1H75gj-ap48SMYbFLoh56oSw-CLJHYPgQnm3j9U=.pem","location":"
security-state-staging/intermediates/e3bbb057-9c2f-4ddc-a720-28c4ff04b318.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tc+C1H75gj+ap48SMYbFLoh56oSw+CLJHYPgQnm3j9U=","crlite_enrolled":true,"id":"0c58ca4b-21b3-473e-bddb-a75c77a17971","last_modified":1576536533332},{"schema":1576535729560,"derHash":"2n5XePYvh2Vbj9JKieZR5XMp3JwHZacRWM5WRDykTpU=","subject":"CN=DigiCert Extended Validation CA-3 G3,OU=www.digicert.com,O=DigiCert\\, Inc.,C=US","subjectDN":"MHAxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEtMCsGA1UEAxMkRGlnaUNlcnQgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQS0zIEcz","whitelist":false,"attachment":{"hash":"6844a48cc10ea1a880af9e0aea02a3fc4be2786b3ce299bd1644cd2fc49c1f64","size":1187,"filename":"epA52XxQ9Mrum63GbS8dL1dkTIzeOueiCw6jHr7t_u8=.pem","location":"security-state-staging/intermediates/5d0c77a4-ad61-4b2d-9500-0ed1ce697602.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"epA52XxQ9Mrum63GbS8dL1dkTIzeOueiCw6jHr7t/u8=","crlite_enr
olled":true,"id":"9bd31525-cabf-4b0e-acc5-1952d08e7761","last_modified":1576536533328},{"schema":1576535726603,"derHash":"6k7i+qV65LU5tjl3/luyBbavsy96c7KzY+S+As2Kkek=","subject":"CN=AffirmTrust Certificate Authority - OV1,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGCMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMDAuBgNVBAMTJ0FmZmlybVRydXN0IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIE9WMQ==","whitelist":false,"attachment":{"hash":"fc3aae931bd9e488d29bffc6c6628b5ba9b6c606359b942aad8056a2af13c8c0","size":1662,"filename":"RM5J-l4IeDRKjL4ZuWGG2Jt3Wae0v4pWKttrQv-DsGM=.pem","location":"security-state-staging/intermediates/8c875b16-e424-4471-88e1-1af28bb1e98b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RM5J+l4IeDRKjL4ZuWGG2Jt3Wae0v4pWKttrQv+DsGM=","crlite_enrolled":true,"id":"b68b971e-8343-4eb4-a930-a11700292076","last_modified":1576536533324},{"schema":1576535725125,"derHash":"lvvIq01wU+hwR4G6vuiaa
Y8yL87iAB0ezeriO1oN0NQ=","subject":"CN=SafeToOpen Code Signing ICA RSA R1,O=SafeToOpen Ltd,C=NZ","subjectDN":"MFMxCzAJBgNVBAYTAk5aMRcwFQYDVQQKDA5TYWZlVG9PcGVuIEx0ZDErMCkGA1UEAwwiU2FmZVRvT3BlbiBDb2RlIFNpZ25pbmcgSUNBIFJTQSBSMQ==","whitelist":false,"attachment":{"hash":"6dc110fcc3fff1cd11570485a2e45474f51f761c2f9b590aae82ec5444111a10","size":2467,"filename":"pjQ3wML2cKErfco7LBCiW12IeMTd7OO0vxtR3O4OUJk=.pem","location":"security-state-staging/intermediates/31e48b05-fa3c-4d5e-88b8-e31faca46e6f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pjQ3wML2cKErfco7LBCiW12IeMTd7OO0vxtR3O4OUJk=","crlite_enrolled":false,"id":"397e2ece-c82e-4f63-b9c9-9564ffbb0787","last_modified":1576536533319},{"schema":1576535728195,"derHash":"v99M8/FDrQ25EtirOnwS9he56mDOix9ORPdCcPshsZs=","subject":"CN=GlobalSign Domain Validation CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU
2IC0gRzI=","whitelist":false,"attachment":{"hash":"afa822a679ac53a1fe787fd1b3418ea474613a029a776a216762efa2b870ff8b","size":1581,"filename":"PL1_TTDEe9Cm2lb2X0tixyQC7zaPREm_V0IHJscTCmw=.pem","location":"security-state-staging/intermediates/0ff9bf8a-8c2d-458a-843f-714bb4ae0838.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PL1/TTDEe9Cm2lb2X0tixyQC7zaPREm/V0IHJscTCmw=","crlite_enrolled":true,"id":"391141f8-c2c2-411c-b042-418ab514fd96","last_modified":1576536533315},{"schema":1576535720797,"derHash":"zteRflb0JG/xkH7v+SItfcgR0oZYOh8RbF9hdaiZX7E=","subject":"CN=Dodo Sign SMIME ICA RSA R1,O=Dodo Sign Ltd,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MHQxCzAJBgNVBAYTAk1VMRgwFgYDVQQIDA9QbGFpbmVzIFdpbGhlbXMxDjAMBgNVBAcMBUViZW5lMRYwFAYDVQQKDA1Eb2RvIFNpZ24gTHRkMSMwIQYDVQQDDBpEb2RvIFNpZ24gU01JTUUgSUNBIFJTQSBSMQ==","whitelist":false,"attachment":{"hash":"9c0526ad9bdea4d1b9fe223be445e0031426ba95b4c6d4f9d11ea0576f6ac9dd","size":2450,"filename":"aQV1CuJZgAKpjACerkGg_CxArZYPkL2zgDhkI8ka1lw=
.pem","location":"security-state-staging/intermediates/661841db-d069-4d57-994a-4d79d8389bd0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aQV1CuJZgAKpjACerkGg/CxArZYPkL2zgDhkI8ka1lw=","crlite_enrolled":false,"id":"11b21bdc-d76d-4edc-8894-61264ce40ffc","last_modified":1576536533307},{"schema":1576535719414,"derHash":"iC4BRtFdNIPuWYHjUGfxRJ5WK4niLsw/3zcnTt0xTNo=","subject":"CN=GDCA TrustAUTH R4 EV CodeSigning CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MHYxCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xLDAqBgNVBAMMI0dEQ0EgVHJ1c3RBVVRIIFI0IEVWIENvZGVTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"10f99f1db6de610fba982c5f65250fa8086ea7f1cdce17fd51e1059ad62997f3","size":2068,"filename":"K1O1P19UCSRwBq2Y5xce7r_TavF-pDYjmdSYRVYHFXI=.pem","location":"security-state-staging/intermediates/8227657d-5641-4c7a-aa33-89019ad18fdf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"K1O1P19UCSRwBq2Y5
xce7r/TavF+pDYjmdSYRVYHFXI=","crlite_enrolled":false,"id":"072a60e3-e6bd-435f-8486-855b8b3b6efe","last_modified":1576536533298},{"schema":1576535718042,"derHash":"HfYFTWZBQEYzZBu1+jdC/afQdeJRSECrYeAMy7t9NB0=","subject":"CN=GlobalSign Root E46,O=GlobalSign nv-sa,C=BE","subjectDN":"MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQDExNHbG9iYWxTaWduIFJvb3QgRTQ2","whitelist":false,"attachment":{"hash":"7e5ce727726952ca1f6cb21c02d6ca82c82baaaf53c5c69de963c2ddc3344595","size":1305,"filename":"4EoCLOMvTM8sf2BGKHuCijKpCfXnUUR_g_0scfb9gXM=.pem","location":"security-state-staging/intermediates/06349813-d93c-441c-a351-17e576175b0e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4EoCLOMvTM8sf2BGKHuCijKpCfXnUUR/g/0scfb9gXM=","crlite_enrolled":false,"id":"60de9866-3e99-4374-b830-17ad74f56f75","last_modified":1576536533289},{"schema":1576535714600,"derHash":"+QrKY8uLtE+NkbhkR0u0Kq4XfnP9/m9Ky9EqATpBXBU=","subject":"CN=MKB SubCA 5,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":
"ME0xCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMRQwEgYDVQQDDAtNS0IgU3ViQ0EgNQ==","whitelist":false,"attachment":{"hash":"d609fc9e466cfe1aecec6216a280e25bf274686799575f8c7edd8f7e8232e669","size":2146,"filename":"PGgGeTzLYgdsBfTyNhkEXF4J3GMzNhuKWFmeFINeefQ=.pem","location":"security-state-staging/intermediates/d62c8770-b09d-44d0-a7bb-d6c9b93fd6b5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PGgGeTzLYgdsBfTyNhkEXF4J3GMzNhuKWFmeFINeefQ=","crlite_enrolled":false,"id":"875ecbce-accc-43a4-b056-d79c0f013227","last_modified":1576536533285},{"schema":1576535711746,"derHash":"k1BhvlLI6ojANLOa39UiuzFMv1ME5acGRzXdvaMkKq8=","subject":"CN=Certigna Entity Code Signing CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MIGIMQswCQYDVQQGEwJGUjESMBAGA1UECgwJREhJTVlPVElTMRwwGgYDVQQLDBMwMDAyIDQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQRhDBROVFJGUi00ODE0NjMwODEwMDAzNjEoMCYGA1UEAwwfQ2VydGlnbmEgRW50aXR5IENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"dfa52fac
8680622c2c208aa337be1f107052398f893cb8cdaa1bc8ee0c3c1f93","size":2186,"filename":"u3ZvFIlkZqOQDQbj9Abh3WXDOESr4pASOdoob9Oo2YI=.pem","location":"security-state-staging/intermediates/a34d09dc-c1e9-4b35-bb0f-0c7ee3e64ad8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"u3ZvFIlkZqOQDQbj9Abh3WXDOESr4pASOdoob9Oo2YI=","crlite_enrolled":false,"id":"90283279-5bef-4526-8705-37883c1dc2bc","last_modified":1576536533281},{"schema":1576535710282,"derHash":"X00sDgy6fR+2AO3TUG1DMchmoR8g0TcFTuOc9RRXZnk=","subject":"CN=SSL.com Timestamping Issuing RSA CA R1,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxLzAtBgNVBAMMJlNTTC5jb20gVGltZXN0YW1waW5nIElzc3VpbmcgUlNBIENBIFIx","whitelist":false,"attachment":{"hash":"21e71885a88fc5db9ef891b88f7821fb1e634323d90b65bdc3268d422b8350ab","size":2483,"filename":"SiW6P63hxKyk7kypaOzuu6Vn7Ki7UXJCZjkLtFIcPCE=.pem","location":"security-state-staging/intermediates/05741471
-0868-4508-b20f-758afe2658b8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SiW6P63hxKyk7kypaOzuu6Vn7Ki7UXJCZjkLtFIcPCE=","crlite_enrolled":false,"id":"af31000d-8c6b-4c8e-8969-c161e3b093b8","last_modified":1576536533277},{"schema":1576535713205,"derHash":"RUBA5JaQcEAcw1vffypOvOV5e7dpSucx2TqBFf1Zkpw=","subject":"CN=Starfield Root Certificate Authority - G2,OU=https://certs.starfieldtech.com/repository/,O=Starfield Technologies\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIHFMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE0MDIGA1UECxMraHR0cHM6Ly9jZXJ0cy5zdGFyZmllbGR0ZWNoLmNvbS9yZXBvc2l0b3J5LzEyMDAGA1UEAxMpU3RhcmZpZWxkIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"9d2202937f8e54392d669c92cd8a75a53b1784157b44c73b0ce0c2614d485051","size":1735,"filename":"gI1os_q0iEpflxrOfRBVDXqVoWN3Tz7Dav_7IT--THQ=.pem","location":"security-state-staging/intermediates/25785222
-2756-4269-a695-0a60c3918f3a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gI1os/q0iEpflxrOfRBVDXqVoWN3Tz7Dav/7IT++THQ=","crlite_enrolled":false,"id":"1515b293-9629-40ac-b90c-843783835be0","last_modified":1576536533268},{"schema":1576535705691,"derHash":"aB68GCKwebl+BATkaH2bbAwIksgg9Vc4ooKq5iUpvdg=","subject":"CN=Entrust Certification Authority - QTSP1,O=Entrust Datacard Europe S.L.,C=ES","subjectDN":"MIGAMTAwLgYDVQQDDCdFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gUVRTUDExGDAWBgNVBGEMD1ZBVEVTLUI4MTE4ODA0NzElMCMGA1UECgwcRW50cnVzdCBEYXRhY2FyZCBFdXJvcGUgUy5MLjELMAkGA1UEBhMCRVM=","whitelist":false,"attachment":{"hash":"1b36e574afaad2d084671e777c7351c3fb5ab139919e47a5ad362e0629f3d0a9","size":1784,"filename":"aZtZPtGaXbm8qg3lvpcFEicPNLfVwGoRKVgV17tW99k=.pem","location":"security-state-staging/intermediates/ba3c2414-b8f6-4b6f-b58a-13bd454deef5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aZtZPtGaXbm8qg3lvpcFEicPNLfVwGoRKVgV17tW99k=","crlite_enrolled":true,"id":"d64bc41
f-40a9-4404-b8e7-977885a8b020","last_modified":1576536533260},{"schema":1576535704194,"derHash":"pEnbq21MA1+q/Z0EWJH+mKvXPShiaKioP4VBRVUWkuM=","subject":"CN=DigiCert Global Client CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IEdsb2JhbCBDbGllbnQgQ0EgRzI=","whitelist":false,"attachment":{"hash":"527e07fba3c052bc204844ca180ab6b407338b8d533f579a75968162d959aa09","size":1906,"filename":"kJGSyUHCVurpr4HjTqx1jU6HMmuaNzGu5ukKqGV0I-Q=.pem","location":"security-state-staging/intermediates/fb4825ba-30a6-4680-a666-5e92f0755810.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kJGSyUHCVurpr4HjTqx1jU6HMmuaNzGu5ukKqGV0I+Q=","crlite_enrolled":false,"id":"3c4a336f-4021-49ad-b28f-d8c1994bb54a","last_modified":1576536533257},{"schema":1576535701221,"derHash":"lMZj6epcJ+5PZBJ/m0JYY+mRqeFWwH3xoAgDrjF2QWI=","subject":"CN=DPDHL Global TLS CA - I4,O=Deutsche Post AG,L=Bonn,ST
=Nordrhein-Westfalen,C=DE","subjectDN":"MHgxCzAJBgNVBAYTAkRFMRkwFwYDVQQKExBEZXV0c2NoZSBQb3N0IEFHMQ0wCwYDVQQHEwRCb25uMRwwGgYDVQQIExNOb3JkcmhlaW4tV2VzdGZhbGVuMSEwHwYDVQQDExhEUERITCBHbG9iYWwgVExTIENBIC0gSTQ=","whitelist":false,"attachment":{"hash":"82df1783f9ebe0247dd6ecbe16d4c18ae72f1dd07acc563c22457497332adccd","size":1687,"filename":"dDCzzRFNRKnMrHRFZT7PTt0huOU3tTdBT-09j4Qo0dw=.pem","location":"security-state-staging/intermediates/fd7aa6f3-e797-44a8-b182-386d30d9bae6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dDCzzRFNRKnMrHRFZT7PTt0huOU3tTdBT+09j4Qo0dw=","crlite_enrolled":true,"id":"4a157548-8ffc-4b18-9a39-6a3d034a4b20","last_modified":1576536533253},{"schema":1576535702771,"derHash":"fggrvFaXaxWdRpZUCpa2AUhhS6m14psgNfeJvs+/Blc=","subject":"CN=KPN BV PKIoverheid Organisatie Server CA - G3,O=KPN B.V.,C=NL","subjectDN":"MHExCzAJBgNVBAYTAk5MMREwDwYDVQQKDAhLUE4gQi5WLjEXMBUGA1UEYQwOTlRSTkwtMjcxMjQ3MDExNjA0BgNVBAMMLUtQTiBCViBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBTZXJ2ZXIgQ0EgLSBHMw
==","whitelist":false,"attachment":{"hash":"e14dfe0a090eadc281ff2db7ada84d99fae9eca05625d7c7e0e8301bff79fdd5","size":2584,"filename":"rW1GnpJmh2k9F6uNIGFDm27MmL0j4O1CwybyyFn-TXs=.pem","location":"security-state-staging/intermediates/5df062b7-6dbf-40fb-b4d3-69692b678a3d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rW1GnpJmh2k9F6uNIGFDm27MmL0j4O1CwybyyFn+TXs=","crlite_enrolled":true,"id":"256b5706-1f4a-4d46-bd99-cd98266a34c4","last_modified":1576536533248},{"schema":1576535698371,"derHash":"DzKEswasQimGyPVg6kYib9hCVRmm9hqpxVq1CCdLgtI=","subject":"CN=Solenis Public Online CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Solenis LLC,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzEUMBIGA1UEChMLU29sZW5pcyBMTEMxPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEhMB8GA1UEAxMYU29sZW5pcyBQdWJsaWMgT25saW5lIENB","whitelist":false,"attachment":{"hash":"07c3a057b0a793ccc127ced6e4656951d395af324fbf13db505a5158e79cf5a1","size":2044,"filename":"
FbUF4mDwk2lNgD-Pejjnol8xBCKJWyaJf_t3H9qx33E=.pem","location":"security-state-staging/intermediates/9dc2eb3c-f2a0-4921-b7ac-e9b351bc4271.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FbUF4mDwk2lNgD+Pejjnol8xBCKJWyaJf/t3H9qx33E=","crlite_enrolled":false,"id":"4eac52f2-55a9-4aad-a5ec-b460abc548b6","last_modified":1576536533244},{"schema":1576535699807,"derHash":"khi6uU59XR+B1i0Pwj4xyLvL7jVF0dfp0/0pswvBiMg=","subject":"CN=Apple IST CA 8 - G1,OU=Certification Authority,O=Apple Inc.,C=US","subjectDN":"MGIxHDAaBgNVBAMME0FwcGxlIElTVCBDQSA4IC0gRzExIDAeBgNVBAsMF0NlcnRpZmljYXRpb24gQXV0aG9yaXR5MRMwEQYDVQQKDApBcHBsZSBJbmMuMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"0be6834a2b742f4b697c05091ee7071ce8419abe4ed8eed05d569d2e0029ffc6","size":1187,"filename":"4k-OjCGF2i9eiNRXnoF8R79ur7yFBfD5YP1aDfRHOtM=.pem","location":"security-state-staging/intermediates/52220f23-3b7c-41f2-8367-dacbf192340e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4k+OjCGF2i9eiNRXnoF8R79ur7
yFBfD5YP1aDfRHOtM=","crlite_enrolled":true,"id":"6d2dd04d-c23f-4dde-8701-5d637684bb1f","last_modified":1576536533232},{"schema":1576535694050,"derHash":"VKiey5iaHcz0ATY584l0oLwHQsKZPftr0Mvx9GKWRQE=","subject":"CN=Buypass Class 2 CA 2,O=Buypass AS-983163327,C=NO","subjectDN":"MEsxCzAJBgNVBAYTAk5PMR0wGwYDVQQKDBRCdXlwYXNzIEFTLTk4MzE2MzMyNzEdMBsGA1UEAwwUQnV5cGFzcyBDbGFzcyAyIENBIDI=","whitelist":false,"attachment":{"hash":"0614048608f149da266521b3b029d5d9fbab892a53adc1151476ffbb67f64ea8","size":1849,"filename":"61MXD2Y0eBaJtXDtSP1wW5LIdaIPjtVmYYrVCM8GDDg=.pem","location":"security-state-staging/intermediates/807b4084-3ed6-4c3d-9105-8e356f3bdc73.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"61MXD2Y0eBaJtXDtSP1wW5LIdaIPjtVmYYrVCM8GDDg=","crlite_enrolled":true,"id":"ef80dba5-2722-4073-94a2-06a8e7cf1eee","last_modified":1576536533226},{"schema":1576535692634,"derHash":"wt/7PBuwbeTBCSblF/82b5OJLV4C3G95CAJ121f9b8g=","subject":"CN=TI Trust Technologies EV CA,OU=Controlled by Sectigo e
xclusively for TI Trust Technologies,O=Telecom Italia Trust Technologies S.R.L.,L=Pomezia,ST=Roma,C=IT","subjectDN":"MIHNMQswCQYDVQQGEwJJVDENMAsGA1UECBMEUm9tYTEQMA4GA1UEBxMHUG9tZXppYTExMC8GA1UEChMoVGVsZWNvbSBJdGFsaWEgVHJ1c3QgVGVjaG5vbG9naWVzIFMuUi5MLjFEMEIGA1UECxM7Q29udHJvbGxlZCBieSBTZWN0aWdvIGV4Y2x1c2l2ZWx5IGZvciBUSSBUcnVzdCBUZWNobm9sb2dpZXMxJDAiBgNVBAMTG1RJIFRydXN0IFRlY2hub2xvZ2llcyBFViBDQQ==","whitelist":false,"attachment":{"hash":"f3a3288bc3b67208c3f1e4164cb00b27794763ac59477eb6171158b3507ab3e8","size":2288,"filename":"lG0jsaBDRslBBApGfnJu_ukJ5x3uoc841KUU1OMrO1E=.pem","location":"security-state-staging/intermediates/48b456c7-6568-4b6a-b3a6-e6d3c9384968.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lG0jsaBDRslBBApGfnJu/ukJ5x3uoc841KUU1OMrO1E=","crlite_enrolled":false,"id":"3eca5483-9836-4680-82c5-bb0774a0b4ad","last_modified":1576536533221},{"schema":1576535691263,"derHash":"j3Y2enra5GQiWOZYaiqWQqAPPsux63JfGLXnrT2Vrtk=","subject":"CN=Saudi Enaya Public Issuing CA,OU=Cla
ss 2 DigiCert PKI Platform Individual Subscriber CA,O=Saudi Enaya Cooperative Insurance Company,C=SA","subjectDN":"MIGqMQswCQYDVQQGEwJTQTEyMDAGA1UEChMpU2F1ZGkgRW5heWEgQ29vcGVyYXRpdmUgSW5zdXJhbmNlIENvbXBhbnkxPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEmMCQGA1UEAxMdU2F1ZGkgRW5heWEgUHVibGljIElzc3VpbmcgQ0E=","whitelist":false,"attachment":{"hash":"f9a1cc1c0a4d31769022a32fa750c3366fb992b9cf15e57a75f7dec8fa1b0f43","size":2093,"filename":"cNHwIfttyOKzQurjMJbU9iw-zkVDSMIGzrkUphg-oZ8=.pem","location":"security-state-staging/intermediates/9a23fc37-8c51-4bb4-95e5-218e36e2fc5b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cNHwIfttyOKzQurjMJbU9iw+zkVDSMIGzrkUphg+oZ8=","crlite_enrolled":false,"id":"0faea224-cee9-4c13-9b49-037fb4c24a88","last_modified":1576536533217},{"schema":1576535689739,"derHash":"vkCBOGmrJ6Bx0SrWqIMFg+vDthjj8jRjWfSxGhyUNO4=","subject":"CN=GlobalSign CodeSigning CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFoxCzAJ
BgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTAwLgYDVQQDEydHbG9iYWxTaWduIENvZGVTaWduaW5nIENBIC0gU0hBMjU2IC0gRzI=","whitelist":false,"attachment":{"hash":"0e8e5deefe3f05a7aa5d9c40e35ec54cf376114dbb14eec1d7dd699f04481655","size":1650,"filename":"YAIydgGB-L3Y0NHNmsAGLQDXeo7ww8TLvpXGKFMPJ3s=.pem","location":"security-state-staging/intermediates/057a2b86-b448-4070-94c1-5f09ce2bfac7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YAIydgGB+L3Y0NHNmsAGLQDXeo7ww8TLvpXGKFMPJ3s=","crlite_enrolled":false,"id":"fe5a8e71-da19-42ab-acde-06d1d5cef1b9","last_modified":1576536533211},{"schema":1576535688336,"derHash":"4zB2/7UmffQZ9y3gbEbixspE/0ODtTFs99bmKOmNm/0=","subject":"CN=Saudi Telecom Company Email CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Saudi Telecom Company,C=SA","subjectDN":"MIGXMQswCQYDVQQGEwJTQTEeMBwGA1UEChMVU2F1ZGkgVGVsZWNvbSBDb21wYW55MT8wPQYDVQQLEzZDbGFzcyAyIERpZ2lDZXJ0IFBLSSBQbGF0Zm9ybSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0ExJzAlBgNVBAMTHlNhdWRpIFRlbGVjb20gQ
29tcGFueSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"ec9e4ca56df4d26db8f71b689f200f5196410806d42b92ded254322d04471378","size":2068,"filename":"1tmevyCqnyAoinSCzwcqiqEsILe2CvKE2FskRnaTgXI=.pem","location":"security-state-staging/intermediates/f7d99d4a-d900-4eaf-978b-09f11eda8642.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1tmevyCqnyAoinSCzwcqiqEsILe2CvKE2FskRnaTgXI=","crlite_enrolled":false,"id":"1dd892f7-1bad-4b9b-a81d-e331f72cdbe8","last_modified":1576536533204},{"schema":1576535685544,"derHash":"Rcsdh0ywO9XFtuB5yPwp5RUh7lYoSGMBlkpB+Uuln4g=","subject":"CN=GlobalSign Root R46,O=GlobalSign nv-sa,C=BE","subjectDN":"MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQDExNHbG9iYWxTaWduIFJvb3QgUjQ2","whitelist":false,"attachment":{"hash":"6aeca6429f492ce0a1e976110a582cd7b8c66033c209b47b36f98a2ec75750f1","size":2231,"filename":"rn-WLLnmp9v3uDP7GPqbcaiRdd-UnCMrap73yz3yu_w=.pem","location":"security-state-staging/intermediates/7e4b802f-b595-45c5-b8c9-7
a395c2592f2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rn+WLLnmp9v3uDP7GPqbcaiRdd+UnCMrap73yz3yu/w=","crlite_enrolled":false,"id":"db71c7f0-2fac-43c3-ad72-dd258c250fa5","last_modified":1576536533196},{"schema":1576535678404,"derHash":"Ocdjqc8Z2SP5d9I2JquJBEmkRKuLeVyBXvHvgf68Hjg=","subject":"CN=Amazon,OU=Server CA 1A,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQTEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"f399c4419d079a15a697f418e9a8d5ff90d3ac32db49507e30ee4a17491a1fd2","size":1544,"filename":"ZLtb2AMR-j9TvZlATKuHYq1uBIRH0Kl_IZ_OyhZh83w=.pem","location":"security-state-staging/intermediates/0bf45415-b984-4367-b6a5-c8d413da9d72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZLtb2AMR+j9TvZlATKuHYq1uBIRH0Kl/IZ/OyhZh83w=","crlite_enrolled":false,"id":"ad381075-9d54-4e8f-9730-7b932a4f8b90","last_modified":1576536533183},{"schema":1576535676932,"derHash":"lqWizTmADPtqKoMO5S3PR/uwD/GwMgTbNpFc6j
HxM0I=","subject":"CN=GDCA TrustAUTH R4 EV SSL CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MG4xCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJDAiBgNVBAMMG0dEQ0EgVHJ1c3RBVVRIIFI0IEVWIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"d72e2007f8b0bdbb9bfdfca3bc7bdf7eebe0d9a1b5b3e0aa3c49210a42752f35","size":2056,"filename":"LA_cQZEhZA_J3pK28of_Jf7Wn0WmfSQvp4eYJW5o8NQ=.pem","location":"security-state-staging/intermediates/2b13103f-f111-4488-951a-d948d81a84f6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LA/cQZEhZA/J3pK28of/Jf7Wn0WmfSQvp4eYJW5o8NQ=","crlite_enrolled":true,"id":"2a556f13-fd00-4e58-82e2-6de75321c936","last_modified":1576536533172},{"schema":1576535675523,"derHash":"SUYzfTlUMF82dw7oMX9nz+/zlDV2gov1XBU4R2tKINg=","subject":"CN=Nedbank Limited Public CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Nedbank Limited,C=ZA","subjectDN":"MIGMMQswCQYDVQQGEwJaQTEYMBYGA1UEChMPTmV
kYmFuayBMaW1pdGVkMT8wPQYDVQQLEzZDbGFzcyAyIERpZ2lDZXJ0IFBLSSBQbGF0Zm9ybSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0ExIjAgBgNVBAMTGU5lZGJhbmsgTGltaXRlZCBQdWJsaWMgQ0E=","whitelist":false,"attachment":{"hash":"43afb828d2dd6d74b9f5df2475c5670452bceb66714a87118006a59ad1cf74c6","size":2040,"filename":"9mmBieouT_9Ouiv7FZSLvox_uvaz5I2XlSgCRjt0g4U=.pem","location":"security-state-staging/intermediates/24be1fad-b770-4eaa-9f19-6ee181105daa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9mmBieouT/9Ouiv7FZSLvox/uvaz5I2XlSgCRjt0g4U=","crlite_enrolled":false,"id":"ef1b8ccf-e9c6-4f39-bdfa-c80513385093","last_modified":1576536533165},{"schema":1576535672682,"derHash":"wjofgxVTioZRgW6ZMsBE64VsAf2ZdxaQyGNnHSLEhWQ=","subject":"CN=Entrust Class 1 Client CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wH
QYDVQQLExYoYykgMjAxMCBFbnRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDEgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"681c27ac05298a228c23d2463699b61b0aa53157638b6195793d2f53a4324aa3","size":1764,"filename":"Uhene3DQaQrqKhOQL-xFNX9JZl3IsIFfWho3SE3EtBQ=.pem","location":"security-state-staging/intermediates/023b7b2a-88b0-4538-a665-37a504c10e0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uhene3DQaQrqKhOQL+xFNX9JZl3IsIFfWho3SE3EtBQ=","crlite_enrolled":false,"id":"d6958925-96d0-4139-981d-d725a0cfcd01","last_modified":1576536533158},{"schema":1576535681283,"derHash":"piM+y3cFP3KTfolDcqYB7Tq+qQzDtdiVEnIL8//L3J0=","subject":"CN=GlobalSign Organization Validation CA - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTMwMQYDVQQDEypHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"42a159a44078e6c0428cd2a9784e5d8186a3da87350930ca5180f61690f4056b","size":1488,"filename":"OqqTl
ivI4taTCDJE1oq61tAsdnSQ_13Ibp0QKE1H7tc=.pem","location":"security-state-staging/intermediates/89ddf5ba-0659-4630-8b16-885ce7e6d764.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OqqTlivI4taTCDJE1oq61tAsdnSQ/13Ibp0QKE1H7tc=","crlite_enrolled":false,"id":"fe1c2020-b88a-4748-9de2-7099a5ad0afb","last_modified":1576536533150},{"schema":1576535669802,"derHash":"nWEnnSIyqH4QjXir8uuhjSQRL4S1Y2ovQ7OaAPHqAHg=","subject":"CN=docSigning RSA ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHgxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMR4wHAYDVQQDDBVkb2NTaWduaW5nIFJTQSBJQ0EgUjE=","whitelist":false,"attachment":{"hash":"5cd9fe248c1e6cfdd4496f76f7e9b0d9f810255c2d9fa5333ebee39edd8ffd14","size":2174,"filename":"xFyVKlUSjns3MjbWeJFTGcGIijP7GVc2KFJgm8bUeOc=.pem","location":"security-state-staging/intermediates/7109fecc-da82-4d0b-9fa5-b524a272ec72.pem","mimetype":"application/x-pem-file"}
,"pubKeyHash":"xFyVKlUSjns3MjbWeJFTGcGIijP7GVc2KFJgm8bUeOc=","crlite_enrolled":false,"id":"126ded4d-8431-41b1-8aaa-6c0ce484cc26","last_modified":1576536533139},{"schema":1576535674127,"derHash":"tIzzartJglw7fEB4ZpWMJAhck4xgx8GkihjQCFnKNIw=","subject":"CN=Duerr Group Global IT CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Duerr IT Service GmbH,C=DE","subjectDN":"MIGRMQswCQYDVQQGEwJERTEeMBwGA1UEChMVRHVlcnIgSVQgU2VydmljZSBHbWJIMT8wPQYDVQQLEzZDbGFzcyAyIERpZ2lDZXJ0IFBLSSBQbGF0Zm9ybSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0ExITAfBgNVBAMTGER1ZXJyIEdyb3VwIEdsb2JhbCBJVCBDQQ==","whitelist":false,"attachment":{"hash":"928dad68e0291b5a5f266a4c55be650b95b1211ff60094db0f2bb89e3e2ba03a","size":2060,"filename":"bnsFn2J9Leu9MsEXRbGO_q2R-jj5yi6VtDkLN6eGjeQ=.pem","location":"security-state-staging/intermediates/4accbbd5-64dc-41ec-b3a2-da410305e736.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bnsFn2J9Leu9MsEXRbGO/q2R+jj5yi6VtDkLN6eGjeQ=","crlite_enrolled":false,"id":"c4b02e84-aa88-46
0f-8418-ed2d4ce9c088","last_modified":1576536533131},{"schema":1576535668349,"derHash":"9QaMQpOiag5CDQKuS+8nAIN34+fs2OXPGUQoFi48QPQ=","subject":"CN=Symantec Class 3 Organizational CA - G2,OU=VeriSign Trust Network+OU=Terms of use at https://www.verisign.com/rpa (c)11,O=Symantec Corporation,C=US","subjectDN":"MIG8MQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOzA5BgNVBAsTMlRlcm1zIG9mIHVzZSBhdCBodHRwczovL3d3dy52ZXJpc2lnbi5jb20vcnBhIChjKTExMTAwLgYDVQQDEydTeW1hbnRlYyBDbGFzcyAzIE9yZ2FuaXphdGlvbmFsIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"79bca702d17f54c89c8f1e54a7956e70ff158d4f2d61e7f721612a7f3e4bd4fa","size":2337,"filename":"8Vaa7hyPgvofrzXh1bAlF62L9kQg_5tbO-89MDeNtLQ=.pem","location":"security-state-staging/intermediates/e6d61643-b154-4216-bc90-f92e5b6fee88.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8Vaa7hyPgvofrzXh1bAlF62L9kQg/5tbO+89MDeNtLQ=","crlite_enrolled":false,"id":"e6faa6db-c65c-469e-908c-c757eb2
ec1f2","last_modified":1576536533125},{"schema":1576535665468,"derHash":"MWAFjnKwWH51OssUyzfX+PZy17xTVJ9n1485yreGGCQ=","subject":"CN=SSL X Y & Z SMIME CA RSA R1,O=SSL X Y & Z Corp.,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHIxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExGjAYBgNVBAoMEVNTTCBYIFkgJiBaIENvcnAuMSQwIgYDVQQDDBtTU0wgWCBZICYgWiBTTUlNRSBDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"a097fe3436a48e1a1774823f1d3ec33dbaec7e073b22c598310479de26b737f6","size":2430,"filename":"MdoGDrhcCn8MTwSG3kgrfgj1b2G-u2wNnQpYY6Da_RI=.pem","location":"security-state-staging/intermediates/73a63257-cfe8-4332-909d-abd0ddfc4aff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MdoGDrhcCn8MTwSG3kgrfgj1b2G+u2wNnQpYY6Da/RI=","crlite_enrolled":false,"id":"5020f660-2bdc-4078-8c20-598e0bcc3837","last_modified":1576536533121},{"schema":1576535664030,"derHash":"VQdJ/141xAfVFdmLMnUEvEhP2q4opxOv5OIoKYa+BOg=","subject":"CN=Atos TrustedRoot Client-CA 2019,O=Atos,C=DE","subject
DN":"MEYxKDAmBgNVBAMMH0F0b3MgVHJ1c3RlZFJvb3QgQ2xpZW50LUNBIDIwMTkxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"2763c7c0f3bcf025ec0ce357637ad9f89fd53a05004ea4e1da17b19062c0c5d2","size":1987,"filename":"CcXMYukvilEK0pDMWab7SEXh_fMs7tv1MLrQO9DXGDE=.pem","location":"security-state-staging/intermediates/d90a2b08-7306-4808-ad80-fe80b7cc54a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CcXMYukvilEK0pDMWab7SEXh/fMs7tv1MLrQO9DXGDE=","crlite_enrolled":false,"id":"326252ee-6763-4e00-9187-88a0d4172e5f","last_modified":1576536533108},{"schema":1576535662659,"derHash":"Gh+CWS4DO2IBlsuE5rYehctEiZJZXnDuKSR79cF3HYw=","subject":"SERIALNUMBER=202008,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDA4","whitelist":false,"attachment":{"hash":"9ace3aac9b2541a7af8dfbb069619b62df30695152d476c2b4fd355300eb687e","size
":2333,"filename":"psgf5vm4NPM1KfVsJMG2yfIKFfkuFfaruYmPA9y5EbU=.pem","location":"security-state-staging/intermediates/8cd8139f-8283-4cc1-92f7-5ae9c296893e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"psgf5vm4NPM1KfVsJMG2yfIKFfkuFfaruYmPA9y5EbU=","crlite_enrolled":false,"id":"1df62141-638d-4e30-b950-909f7bf55133","last_modified":1576536533102},{"schema":1576535661193,"derHash":"pP58fxUVXz8K73qqg89uBt65fKP5Cd+SCsFJCILUiO0=","subject":"CN=Apple IST CA 8 - G1,OU=Certification Authority,O=Apple Inc.,C=US","subjectDN":"MGIxHDAaBgNVBAMME0FwcGxlIElTVCBDQSA4IC0gRzExIDAeBgNVBAsMF0NlcnRpZmljYXRpb24gQXV0aG9yaXR5MRMwEQYDVQQKDApBcHBsZSBJbmMuMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"10c037107309161edc52970a837e5b2cfb01393b7a295c3a8af53adb4fe2e7dc","size":1215,"filename":"4k-OjCGF2i9eiNRXnoF8R79ur7yFBfD5YP1aDfRHOtM=.pem","location":"security-state-staging/intermediates/246c8ccb-37a5-4b40-8b4f-c83734302c40.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4k+OjCG
F2i9eiNRXnoF8R79ur7yFBfD5YP1aDfRHOtM=","crlite_enrolled":true,"id":"4702383e-8507-468f-8710-add08465230d","last_modified":1576536533099},{"schema":1576535658276,"derHash":"Vyv4mf13Q2LcGSGWJezBV7tVQ06lFm1XWNxLT4kNZlM=","subject":"CN=ACCVCA-130,OU=PKIACCV,O=ACCV,C=ES","subjectDN":"MEMxEzARBgNVBAMMCkFDQ1ZDQS0xMzAxEDAOBgNVBAsMB1BLSUFDQ1YxDTALBgNVBAoMBEFDQ1YxCzAJBgNVBAYTAkVT","whitelist":false,"attachment":{"hash":"3bcfe77948ebaa1fe7f7bfb31339eeaba3e27a506d01e1f6704b54ecb78cc54a","size":2686,"filename":"Y4wPdQMFev6SAz6Zy7McH45VYp5uADyuOVtFnivRtu4=.pem","location":"security-state-staging/intermediates/ebb99ee5-c251-4021-80eb-3e74471c91bf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y4wPdQMFev6SAz6Zy7McH45VYp5uADyuOVtFnivRtu4=","crlite_enrolled":false,"id":"b94aff1d-4802-4d47-9d29-833321cc8644","last_modified":1576536533095},{"schema":1576535659737,"derHash":"llvSWDiN3dTqe6r7d1TfSfiWzwLhW+CSXeM7ADjpkl8=","subject":"CN=ITsMine Document Signing CA,OU=Class 2 DigiCert PKI Platform
Individual Subscriber CA,O=ITsMine LTD,C=IL","subjectDN":"MIGKMQswCQYDVQQGEwJJTDEUMBIGA1UEChMLSVRzTWluZSBMVEQxPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEkMCIGA1UEAxMbSVRzTWluZSBEb2N1bWVudCBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"2c67f2b0b0186aec64088386089a58adb768c7499823baa61f1f8a11a70658d3","size":2048,"filename":"cPOXn2iF_axKs58wv5vJ7sPiY84mMQ63aDplTinh778=.pem","location":"security-state-staging/intermediates/b929354d-ee94-4466-9b96-48bee5a5f6ea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cPOXn2iF/axKs58wv5vJ7sPiY84mMQ63aDplTinh778=","crlite_enrolled":false,"id":"0d633c6e-6482-476c-bcdb-4014ef17c4a3","last_modified":1576536533085},{"schema":1576535656889,"derHash":"IR8wg7nnegHQgoVliXoc6UXuquBJQszDaQh9gIDJ5KY=","subject":"CN=Certigna Wild CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MHkxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlESElNWU9USVMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxHTAbBgNVBGEMFE5UUkZSLTQ4MTQ2
MzA4MTAwMDM2MRkwFwYDVQQDDBBDZXJ0aWduYSBXaWxkIENB","whitelist":false,"attachment":{"hash":"5496347e4439fb545ba2bee7caa37b999d7fbae9c05425339345faf2c1e52d1f","size":2166,"filename":"6PsBH2V6vxU_w6DnSyY4EpqQYeF8QrYgohY-fWMfhmE=.pem","location":"security-state-staging/intermediates/fc3270ce-2a3b-48cd-9a3c-dba02a58d9a5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6PsBH2V6vxU/w6DnSyY4EpqQYeF8QrYgohY+fWMfhmE=","crlite_enrolled":true,"id":"fc74dd7b-d279-49bc-8b15-430100d07015","last_modified":1576536533078},{"schema":1576535655303,"derHash":"0gpAuxsFTRx0HPb0BHBUNoUfRo/ApFVklBzHx/dKEm8=","subject":"CN=BitCert SHA2 Assured ID CA,O=BitCert,L=Chengdu,ST=Sichuan,C=CN","subjectDN":"MGgxCzAJBgNVBAYTAkNOMRAwDgYDVQQIEwdTaWNodWFuMRAwDgYDVQQHEwdDaGVuZ2R1MRAwDgYDVQQKEwdCaXRDZXJ0MSMwIQYDVQQDExpCaXRDZXJ0IFNIQTIgQXNzdXJlZCBJRCBDQQ==","whitelist":false,"attachment":{"hash":"cd452783d809de9bf053ff47432c701bae9479d5129875f8323deef141a7761e","size":2109,"filename":"Eb_J1AmK0wOeRgjXvartK-UnMX6tUpo4i
eIOClF8g2Q=.pem","location":"security-state-staging/intermediates/61caf33f-9ace-4134-98fe-d165a8ec1c58.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Eb/J1AmK0wOeRgjXvartK+UnMX6tUpo4ieIOClF8g2Q=","crlite_enrolled":false,"id":"3aa5477f-8d27-4d3f-b148-e830916ccc30","last_modified":1576536533075},{"schema":1576535653934,"derHash":"C0Bc/ppr6wmP+5aRIcX2cQ8/f6nqEBpkGPevIB09OTg=","subject":"CN=Apple Public Server RSA CA 12 - G1,O=Apple Inc.,ST=California,C=US","subjectDN":"MGQxKzApBgNVBAMTIkFwcGxlIFB1YmxpYyBTZXJ2ZXIgUlNBIENBIDEyIC0gRzExEzARBgNVBAoTCkFwcGxlIEluYy4xEzARBgNVBAgTCkNhbGlmb3JuaWExCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"2f8960fd8a1b0bc311f2c5d7bb7825254affcf347c165514fa071119dc28f794","size":1642,"filename":"1CC6SL5QjEUUEr5JiV4Zw8QxiSkGVmp2CRJ4mm1IhKU=.pem","location":"security-state-staging/intermediates/eb7ea53e-f578-4b8a-913a-dd87bcd7ab01.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1CC6SL5QjEUUEr5JiV4Zw8QxiSkGVmp2CRJ4mm1IhKU=","crlite_enr
olled":true,"id":"6acdc223-21b9-4ff8-847f-e22f72f1795a","last_modified":1576536533071},{"schema":1576535651001,"derHash":"8DhCHwfyDWOiDTaR5aF4q4RZ6+VwwWR7dpBVTvI4dqs=","subject":"OU=AC Componentes Inform\u00e1ticos,O=FNMT-RCM,C=ES","subjectDN":"MEcxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTElMCMGA1UECwwcQUMgQ29tcG9uZW50ZXMgSW5mb3Jtw6F0aWNvcw==","whitelist":false,"attachment":{"hash":"711fb746c38ddfee6090169d62da5358968caf228ade2ad75cb8be4c4dd3832d","size":2430,"filename":"MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ-57NkgXsoGc=.pem","location":"security-state-staging/intermediates/0ab80520-1d1a-43c3-88ab-467f0681114b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ+57NkgXsoGc=","crlite_enrolled":true,"id":"e28f2f6d-d594-43d7-8356-195ce9834fcf","last_modified":1576536533065},{"schema":1576535652494,"derHash":"tutPitGXBz/lID+Pzr/VxQnN6co6pl7FnSA4MUJBktQ=","subject":"CN=Secure Site Extended Validation CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN
":"MG8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLjAsBgNVBAMTJVNlY3VyZSBTaXRlIEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgRzI=","whitelist":false,"attachment":{"hash":"1fe012e3f79fed86fcbc44ecbe0623dc6e29f5661b7a0c3e9fa7227ba2d32481","size":1699,"filename":"GQ1NxZwFxMspL6F7W34V3JpBp8emVEoKYr5gy_rpnLc=.pem","location":"security-state-staging/intermediates/6a40c4ce-bac6-44bf-8873-e22c2cf6735c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GQ1NxZwFxMspL6F7W34V3JpBp8emVEoKYr5gy/rpnLc=","crlite_enrolled":true,"id":"d0ac7826-e8f7-4908-96fa-e77d77b7fca2","last_modified":1576536533061},{"schema":1576535649578,"derHash":"9swE4YU0YZ+y1l8ORbi0O8gVa11zzYets0fXPqgYDcE=","subject":"SERIALNUMBER=202005,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDA1","whitelist":false,"attachment":{"hash":"13a3958f8e97bcc176
573c94065b0838280266505f4e21d65dd4652ed1624007","size":2333,"filename":"lHjVx8leNZfTqDhJ3N-kjJRU57zR6fm4BDZ5v0rEF0o=.pem","location":"security-state-staging/intermediates/2d8c25c1-f2c9-4bd9-9c5a-9e6d8c25207a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lHjVx8leNZfTqDhJ3N+kjJRU57zR6fm4BDZ5v0rEF0o=","crlite_enrolled":false,"id":"6b0e77ce-e0d4-4ab7-8c1b-739e111d122b","last_modified":1576536533052},{"schema":1576535648114,"derHash":"QA5ehSTzVZh5hXYxLnWlRRQKTktzFMHIxT/X7IIOd7U=","subject":"CN=Cybertrust Japan EV CA G2,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MFYxCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEiMCAGA1UEAxMZQ3liZXJ0cnVzdCBKYXBhbiBFViBDQSBHMg==","whitelist":false,"attachment":{"hash":"12d7e73666399e1632382096136702c7f6ddd26eafb3f820e0d875b2159deb98","size":1581,"filename":"9xjmuIhAK6exitWv2xYUaN-6SVHIiB-Ru97-tkgiEaQ=.pem","location":"security-state-staging/intermediates/4fe4936e-6ee1-4086-9e1a-96626e262d90.pem","mimetype":"application/
x-pem-file"},"pubKeyHash":"9xjmuIhAK6exitWv2xYUaN+6SVHIiB+Ru97+tkgiEaQ=","crlite_enrolled":true,"id":"e1a63b90-4f19-42c3-b7d2-78e446b0ec66","last_modified":1576536533044},{"schema":1576535646650,"derHash":"jLPSG7slXb/q+hon0dH3AyDchFZCl7zoLim48uRh8nA=","subject":"CN=Entrust Class 1 Client CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAxMCBFbnRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDEgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"620328d479e891c69d0c67a2ec66fd71909d1fe9036160c5d1b7bbe353e26461","size":1764,"filename":"Uhene3DQaQrqKhOQL-xFNX9JZl3IsIFfWho3SE3EtBQ=.pem","location":"security-state-staging/intermediates/27eee13f-f193-44ab-8232-40eb1212232b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uhene3DQaQrqKhOQL+xFNX9JZl3IsIFfWho3SE3E
tBQ=","crlite_enrolled":false,"id":"bf2fe5fc-ec29-4166-b024-fc5fb8243944","last_modified":1576536533032},{"schema":1576535643788,"derHash":"7nk2QxmUdO1g79yMzeTTdEWSFoNZOqdRu/juSRo5Hpc=","subject":"CN=AlphaSSL CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MEwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSIwIAYDVQQDExlBbHBoYVNTTCBDQSAtIFNIQTI1NiAtIEcy","whitelist":false,"attachment":{"hash":"c96caf591ca234c790ecd0c0142086ce1cbad337effe808b85d29665b86b6406","size":1552,"filename":"amMeV6gb9QNx0Zf7FtJ19Wa_t2B7KpCF_1n2Js3UuSU=.pem","location":"security-state-staging/intermediates/79818100-f277-4947-a852-dfbece0f18ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"amMeV6gb9QNx0Zf7FtJ19Wa/t2B7KpCF/1n2Js3UuSU=","crlite_enrolled":true,"id":"624fd6dc-c0b6-4c85-8fb1-295b309ec7f8","last_modified":1576536533028},{"schema":1576535642291,"derHash":"wC2KMO1psvhk7Y+xpjo+clUoiSDKKUvcow9jiY+5GVw=","subject":"CN=QuoVadis Qualified Web ICA G1,O=QuoVadis Trustlink B.V.,C=NL","sub
jectDN":"MHAxCzAJBgNVBAYTAk5MMRcwFQYDVQRhDA5OVFJOTC0zMDIzNzQ1OTEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xJjAkBgNVBAMMHVF1b1ZhZGlzIFF1YWxpZmllZCBXZWIgSUNBIEcx","whitelist":false,"attachment":{"hash":"084445d2bd7f8a0ad35589c511c54697c31173f9ad36a47aa142a7a1118fa204","size":2487,"filename":"EWJY2DWEXe27fystTVa-0cHUmGdi6igRAeyxOTlgFDY=.pem","location":"security-state-staging/intermediates/24de9566-9a8e-45bb-a121-561374a4c6fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EWJY2DWEXe27fystTVa+0cHUmGdi6igRAeyxOTlgFDY=","crlite_enrolled":true,"id":"e84d58a8-f2a9-445a-9119-7dae1ad73849","last_modified":1576536533021},{"schema":1576535645226,"derHash":"my3U++6UH2UQ9xbASWmzZCiJJ2VGFwHvR9QbMolHXVA=","subject":"CN=DigiCert Global CA-3 G2,OU=www.digicert.com,O=DigiCert\\, Inc.,C=US","subjectDN":"MGMxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEgMB4GA1UEAxMXRGlnaUNlcnQgR2xvYmFsIENBLTMgRzI=","whitelist":false,"attachment":{"hash":"757579da2f6f9
930d26c82c4e92bc05ec07c1fcce3e1ee174551ff91391a2bd3","size":1662,"filename":"Ydb2Ke2rGfceHSy4YbkTNE4A8k1rexJ2dXAXXYa9sgk=.pem","location":"security-state-staging/intermediates/d3883f37-bd4a-41ad-8203-298556b22bf4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ydb2Ke2rGfceHSy4YbkTNE4A8k1rexJ2dXAXXYa9sgk=","crlite_enrolled":true,"id":"ec6de765-7e2e-48d2-89d5-fa17988865eb","last_modified":1576536533014},{"schema":1576535637770,"derHash":"WoF+raSteHNOuyz2dDUtl/Q1IpDEDq8Q52Sx6sB1sOY=","subject":"CN=AlphaSSL CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MEwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSIwIAYDVQQDExlBbHBoYVNTTCBDQSAtIFNIQTI1NiAtIEcy","whitelist":false,"attachment":{"hash":"9e22882f79ab3be980839bd320927657c042801062d09965a2ee7f9c37cb5ebb","size":1553,"filename":"amMeV6gb9QNx0Zf7FtJ19Wa_t2B7KpCF_1n2Js3UuSU=.pem","location":"security-state-staging/intermediates/eeca1f4a-6a10-4a9d-9ee9-def181a418dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash
":"amMeV6gb9QNx0Zf7FtJ19Wa/t2B7KpCF/1n2Js3UuSU=","crlite_enrolled":true,"id":"7266f37e-582e-4266-8b74-bc9fb7fd3dd4","last_modified":1576536533008},{"schema":1576535639426,"derHash":"hGDMrqkbDoBatRx81G3fLowcSUgG2Isf4u0xPR1Ifi4=","subject":"CN=Belgium Root CA4,C=BE","subjectDN":"MCgxCzAJBgNVBAYTAkJFMRkwFwYDVQQDExBCZWxnaXVtIFJvb3QgQ0E0","whitelist":false,"attachment":{"hash":"c8eff8eef440160ccab900bf7031e1af09b3a4bef4d8c101696a37821bbec601","size":1768,"filename":"sVOKkHFwWpLZOOUGtzjaDK_Rrmauwu7dx1R51DO9h3Y=.pem","location":"security-state-staging/intermediates/f288db85-ff0a-4046-9f02-6da9c467e64f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sVOKkHFwWpLZOOUGtzjaDK/Rrmauwu7dx1R51DO9h3Y=","crlite_enrolled":false,"id":"b2169a79-3567-43ba-8939-fa49dd624174","last_modified":1576536533004},{"schema":1576535634959,"derHash":"T4E3iCtte38au8/e0AgvDlzeyHC6OSPvhNCN3kLkN0k=","subject":"CN=Alcon Public Online CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Alcon Vision\\,
LLC,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEaMBgGA1UEChMRQWxjb24gVmlzaW9uLCBMTEMxPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEfMB0GA1UEAxMWQWxjb24gUHVibGljIE9ubGluZSBDQQ==","whitelist":false,"attachment":{"hash":"af525935d6a89c209d6c44a4b29465804f968d30ea869b10f4edbb7b57813c09","size":2052,"filename":"WBomzJZ_qwkCDmRFxNmLqVSbWixOwsRY9u1EbzrMbPY=.pem","location":"security-state-staging/intermediates/7f8d798d-ec51-43f9-8b1a-a1597ea3a8a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WBomzJZ/qwkCDmRFxNmLqVSbWixOwsRY9u1EbzrMbPY=","crlite_enrolled":false,"id":"229edf78-3580-4ef7-b252-71bf9ceeb3c4","last_modified":1576536533000},{"schema":1576535640830,"derHash":"RCLjoUGFsWfX5NsIUbYwclshQjpBQIaDF9/r+z7BL4Y=","subject":"SERIALNUMBER=202001,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDA
x","whitelist":false,"attachment":{"hash":"a2cd59de0f5a95dd0fe8a1292a63d32d78185d5d4c846dd8a890d5e0e6d770aa","size":2333,"filename":"CI43x8FBUHvxfxoGbmHNltvH2MO4nkawMP-sUN2xS6Q=.pem","location":"security-state-staging/intermediates/7ff06f26-0a5b-405a-9d02-bd71339a3f76.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CI43x8FBUHvxfxoGbmHNltvH2MO4nkawMP+sUN2xS6Q=","crlite_enrolled":false,"id":"3d35aca1-8f69-4db1-8da3-924aa35ec02d","last_modified":1576536532997},{"schema":1576535631984,"derHash":"9cLyPGUY+dGbbzm+rqT7rhADG6ncmFzhVjpSDaCtQRY=","subject":"CN=Entrust Certification Authority - L1K,OU=See www.entrust.net/legal-terms+OU=(c) 2012 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTIgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFL","whitelist":fa
lse,"attachment":{"hash":"fe5ad678578f0f457c9742e59bdd7a274fc2a2703d89bb47f109be35c9fb47c2","size":1796,"filename":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0uc=.pem","location":"security-state-staging/intermediates/a8904bd0-aa03-46a0-bade-1596b9597a4c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0uc=","crlite_enrolled":true,"id":"9e54305c-cd5d-4716-a6ac-2c9ac161fb04","last_modified":1576536532992},{"schema":1576535636372,"derHash":"Za3JxpHTIVXmjOjVGTvzcildJaBAdUV7Me6FoEQbI/g=","subject":"CN=TI Trust Technologies Client CA,O=TI Trust Technologies S.R.L.,L=Pomezia,ST=Roma,C=IT","subjectDN":"MH8xCzAJBgNVBAYTAklUMQ0wCwYDVQQIEwRSb21hMRAwDgYDVQQHEwdQb21lemlhMSUwIwYDVQQKExxUSSBUcnVzdCBUZWNobm9sb2dpZXMgUy5SLkwuMSgwJgYDVQQDEx9USSBUcnVzdCBUZWNobm9sb2dpZXMgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"d92ac436ba1cab3afb23073f014daa729cb95f0b615852f9ad3be08dcf2e2e6a","size":2142,"filename":"rQbgtNOOZtnMnXSS7fXZPfjIVzkUf2zOAwb-4IxU9Vc=.p
em","location":"security-state-staging/intermediates/a3c72377-4d1f-40ea-9cb3-66cfd6d0ec67.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rQbgtNOOZtnMnXSS7fXZPfjIVzkUf2zOAwb+4IxU9Vc=","crlite_enrolled":false,"id":"de55f04b-e0f9-4d47-a8f4-5bb1ca8d24af","last_modified":1576536532989},{"schema":1576535633463,"derHash":"jCQQ92sUnKBitCCrYRtr8KBubnmaKVh+TU7BbQU3t+o=","subject":"CN=AlphaSSL CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MEwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSIwIAYDVQQDExlBbHBoYVNTTCBDQSAtIFNIQTI1NiAtIEcy","whitelist":false,"attachment":{"hash":"251b1c75021f8bc991e5055b95dc85d55b230fe1e51032acec934db9388e32bb","size":1548,"filename":"amMeV6gb9QNx0Zf7FtJ19Wa_t2B7KpCF_1n2Js3UuSU=.pem","location":"security-state-staging/intermediates/9f419b94-c769-4b88-9c1a-b128ea2e4c7f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"amMeV6gb9QNx0Zf7FtJ19Wa/t2B7KpCF/1n2Js3UuSU=","crlite_enrolled":true,"id":"d511b39d-be68-4a28-831e-12c61c4a9c8f","last_
modified":1576536532983},{"schema":1576535630524,"derHash":"YTvHs5w3gkHulTuhpRno9f4wIjsEV/EMw14wpJM7oT8=","subject":"CN=EV TLS RSA ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHQxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMRowGAYDVQQDDBFFViBUTFMgUlNBIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"450066ddb6401419478134c6cc21c49591122f709bfab4eac6795f340d7fb7c0","size":2162,"filename":"gBX99XA0NOEUd6rWyM2Sljn_RHatTUjnhh-CTUMNF9Y=.pem","location":"security-state-staging/intermediates/42108e76-498d-4cf5-ba7d-c870ef1380c5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gBX99XA0NOEUd6rWyM2Sljn/RHatTUjnhh+CTUMNF9Y=","crlite_enrolled":false,"id":"c15cd20b-10b4-4541-8ab4-4bc8b11d1ba3","last_modified":1576536532977},{"schema":1576535629122,"derHash":"h3oG24ul2jvaQClnYHePwqwYuRj9jcDs5C+q+U4OfgE=","subject":"CN=Code Signing RSA ICA R1,O=Public Key Infrastructure Ltd,L=Vi
ctoria,ST=Mah\u00e9,C=SC","subjectDN":"MHoxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMSAwHgYDVQQDDBdDb2RlIFNpZ25pbmcgUlNBIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"8e6d563b0f09cfa72c95f8a2d88bfd3916fae9d8695168d0808b7a763383c67e","size":2146,"filename":"K1lPt4REdICzUhMjxOlgDpqJPE3nn9EmNsiWORHNbF8=.pem","location":"security-state-staging/intermediates/8cf01f2e-8b7a-4d6c-b286-017322ec9948.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"K1lPt4REdICzUhMjxOlgDpqJPE3nn9EmNsiWORHNbF8=","crlite_enrolled":false,"id":"610aab37-a863-4feb-bdec-615fe799f373","last_modified":1576536532971},{"schema":1576535881203,"derHash":"/FUnD+zHzYsTnjTLDolmBrKwO79YSJMKUKJRNDo20Qw=","subject":"CN=SSL X Y & Z EV TLS CA RSA R1,O=SSL X Y & Z Corp.,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHMxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExGjAYBgNVBAoMEVNTTCBYIFkgJiBaIENvcnAuMSUwIwYDVQQDDBxTU0wgWCBZICYgWi
BFViBUTFMgQ0EgUlNBIFIx","whitelist":false,"attachment":{"hash":"f056a95f23b4c48b57e03eb9655e5b2cdb76ae8ffb5a21b0c71900a4012e7ade","size":2446,"filename":"TJQd4p_Mb4gEcXc_faqyIKD02JVJuPcRmDP6eWrYj4U=.pem","location":"security-state-staging/intermediates/e7206eaf-5ba8-4318-9e57-7f0f7a5ab946.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TJQd4p/Mb4gEcXc/faqyIKD02JVJuPcRmDP6eWrYj4U=","crlite_enrolled":false,"id":"6cab8056-0a21-41cf-949d-aefefd3538ca","last_modified":1576536532962},{"schema":1576535627693,"derHash":"B3t19rf6cb5PgSHh7FL668oNCu0twBcRoPbc3Djnvzg=","subject":"CN=AffirmTrust Premium ECC Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=AffirmTrust,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEUMBIGA1UECgwLQWZmaXJtVHJ1c3QxLTArBgNVBAsMJGh0dHA6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291cmNlczE3MDUGA1UEAwwuQWZmaXJtVHJ1c3QgUHJlbWl1bSBFQ0MgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"43b4e45ea693189a3d8c47075e8ca1933b10bcf2637194cee318ac943
a3e3fb2","size":1284,"filename":"wbpI9B7IKa-_o7qnyxj6V-kvQMgcCDHDVt0t5EmhFCU=.pem","location":"security-state-staging/intermediates/9298955a-093a-4c5e-8b94-0cae2ef4d2f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wbpI9B7IKa+/o7qnyxj6V+kvQMgcCDHDVt0t5EmhFCU=","crlite_enrolled":false,"id":"dc12948f-61be-42e3-928b-19b5d31626c6","last_modified":1576536532957},{"schema":1576535624708,"derHash":"fYm6d2TP9v4u6a1Eg41WxdV/Pdc2+WBo3psKFxD7PUc=","subject":"CN=Henkel Secure E-mail CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Henkel AG & Co. KGaA,C=DE","subjectDN":"MIGPMQswCQYDVQQGEwJERTEdMBsGA1UECgwUSGVua2VsIEFHICYgQ28uIEtHYUExPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEgMB4GA1UEAwwXSGVua2VsIFNlY3VyZSBFLW1haWwgQ0E=","whitelist":false,"attachment":{"hash":"294ab264e7b4ee55cfa9efb8ae4aea5f4996733a4807ee05c08cc6a41b60767c","size":2385,"filename":"UgDmKmS9-uOo8N_FB448s8_bWQidaNeI-pMnokDiLt8=.pem","location":"security-state-sta
ging/intermediates/b2fbe93c-f81d-447a-8e42-a4fbb3cfb908.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UgDmKmS9+uOo8N/FB448s8/bWQidaNeI+pMnokDiLt8=","crlite_enrolled":false,"id":"2c1552f1-bf67-4dd1-b718-1d94dca8ec29","last_modified":1576536532950},{"schema":1576535621506,"derHash":"dD4yjzKeGU2iUnEb9r/wDPY7akwKpmsuGWdxaRBniXE=","subject":"CN=TrustID Server CA E1,OU=TrustID Server,O=IdenTrust,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxFzAVBgNVBAsTDlRydXN0SUQgU2VydmVyMR0wGwYDVQQDExRUcnVzdElEIFNlcnZlciBDQSBFMQ==","whitelist":false,"attachment":{"hash":"0bdc1e653dd27bde4924c78842f2ce8a676e17e94570bcb4d9a68dbb15842d8a","size":2398,"filename":"ddXHjYup7j8-aweO9eKo5dPHP_ulMVLc4zqjLbj0f6s=.pem","location":"security-state-staging/intermediates/a2c07257-f449-4845-8a46-396088d1f54d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ddXHjYup7j8+aweO9eKo5dPHP/ulMVLc4zqjLbj0f6s=","crlite_enrolled":false,"id":"3238adbc-8e16-4f0c-8de1-94a33d6b7601","last_modifie
d":1576536532946},{"schema":1576535620060,"derHash":"GRHihJevksIKAdCKmO1CYcxLA1Vksxxv5J8zuUTv9KE=","subject":"SERIALNUMBER=202013,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDEz","whitelist":false,"attachment":{"hash":"f711bb1c2c21ddbf0b2e54b19b1d218c32f69ec21cd4b5d142e882fbb86962c0","size":2333,"filename":"OYSO5rBxTAxhmALfXxoU_JmeXYPpNe7f9A8A7RlSMpE=.pem","location":"security-state-staging/intermediates/87eea63e-7839-4503-9b98-e116df917240.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OYSO5rBxTAxhmALfXxoU/JmeXYPpNe7f9A8A7RlSMpE=","crlite_enrolled":false,"id":"6995e0b8-1596-4485-b620-cdacc2d62dd0","last_modified":1576536532938},{"schema":1576535615726,"derHash":"7Cnv0MXdRFP5Ehu+TJzOvolZVerYc8ks/nQ4VPW48Jw=","subject":"CN=UIS-IntB-CA","subjectDN":"MBYxFDASBgNVBAMTC1VJUy1JbnRCLUNB","whitelist":false,"attachment":{"hash":"4
b6def81757fa93692e39ad391d859a97a2588dbee94fc28099ded53ed43507a","size":1711,"filename":"ijOSli4ZzEAaB9BJofum10hbmy0ANTh-Hk3l6PItp34=.pem","location":"security-state-staging/intermediates/15da25c3-a3b9-4737-9e47-9c5c770f1a5e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ijOSli4ZzEAaB9BJofum10hbmy0ANTh+Hk3l6PItp34=","crlite_enrolled":false,"id":"0d24cbb7-5903-4eb4-90ae-67ba7e8ac227","last_modified":1576536532931},{"schema":1576535617235,"derHash":"I93wiyI3PYYVjrnJn9tTZrGYBFYFMTct0g3OP7dm9Ww=","subject":"CN=GeoTrust CN RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHjAcBgNVBAMTFUdlb1RydXN0IENOIFJTQSBDQSBHMQ==","whitelist":false,"attachment":{"hash":"286b2d63e30e027855db802c9e0539ca23b9a9060c9f3e3b810fc02209173191","size":1829,"filename":"4H6OXny7MqJPbCOTpHyS0fSSUeHk_I5nKbIyuQwnfsA=.pem","location":"security-state-staging/intermediates/8e773633-0151-43b1-93be-e2074d328d67.
pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4H6OXny7MqJPbCOTpHyS0fSSUeHk/I5nKbIyuQwnfsA=","crlite_enrolled":true,"id":"5e1984cb-9f6f-403f-98dc-ede2f85ccbae","last_modified":1576536532928},{"schema":1576535612816,"derHash":"3OsG4EanZwa9HZKPotuJPbVQ0pc5FIQ8XMXb4tnZt50=","subject":"CN=RISE Signing CA,OU=IT,O=RISE Research Institutes of Sweden AB,L=Goteborg,ST=Vastra Gotalands Lan,C=SE","subjectDN":"MIGWMQswCQYDVQQGEwJTRTEdMBsGA1UECBMUVmFzdHJhIEdvdGFsYW5kcyBMYW4xETAPBgNVBAcTCEdvdGVib3JnMQswCQYDVQQLEwJJVDEuMCwGA1UEChMlUklTRSBSZXNlYXJjaCBJbnN0aXR1dGVzIG9mIFN3ZWRlbiBBQjEYMBYGA1UEAxMPUklTRSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"0b3130a1bf94bcc09068abf71183511b68ea44796ff137283c0bb9befe436a08","size":2341,"filename":"ABereoS4tHlP22V2SwqX-_gSDxY5zscHpMnIBdDpp1Q=.pem","location":"security-state-staging/intermediates/59dec23c-71c4-4991-91c4-fc481fb67086.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ABereoS4tHlP22V2SwqX+/gSDxY5zscHpMnIBdDpp1Q=","crlite_enro
lled":false,"id":"46209f3f-7ba4-418d-bea7-e7fc955216a9","last_modified":1576536532924},{"schema":1576535609692,"derHash":"EAz34Tc+va4jPl+LGlOF/av+6KMfdS4zIZ00PeOvvJw=","subject":"CN=Ensured Root CA,O=Ensured B.V.,L=Heerhugowaard,ST=Noord-Holland,C=NL","subjectDN":"MG4xCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRYwFAYDVQQHEw1IZWVyaHVnb3dhYXJkMRUwEwYDVQQKEwxFbnN1cmVkIEIuVi4xGDAWBgNVBAMTD0Vuc3VyZWQgUm9vdCBDQQ==","whitelist":false,"attachment":{"hash":"dd7d8d5feb4991b7b316e15803451412027d152bba5f790538c890d7f73ad0a1","size":2020,"filename":"oFFz-dNXVxF2ZtWXUXfFMl3bcWWlI43L4JLhIemPN3w=.pem","location":"security-state-staging/intermediates/e5746ff6-3f16-468a-b066-d3abf5428ab8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oFFz+dNXVxF2ZtWXUXfFMl3bcWWlI43L4JLhIemPN3w=","crlite_enrolled":false,"id":"be465d19-94ce-4a45-8efa-c8ab0e3e3e75","last_modified":1576536532920},{"schema":1576535611170,"derHash":"7R/0Bw8IaOsgoDGfxgGRmAD25e/YI6YVayf4nLBLLCY=","subject":"CN=TLS ECC ICA R1,O
=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHExCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMRcwFQYDVQQDDA5UTFMgRUNDIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"cdef2916796079c83b6dca7ea4057f6349122487ca8f75c47a08e663b83d0ac2","size":1329,"filename":"x0b-nG3FvmwYXc4hymUVggr-35gjXzG-RtqvVgdjLaY=.pem","location":"security-state-staging/intermediates/3953305c-dd4c-413f-9c24-c98b0e5a57c2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x0b+nG3FvmwYXc4hymUVggr+35gjXzG+RtqvVgdjLaY=","crlite_enrolled":false,"id":"622d3ad6-978f-43e1-bfd5-8f6bebf7a53f","last_modified":1576536532916},{"schema":1576535614276,"derHash":"cFYQcjyWE/ZBMYHK33PVEHG9dh/aSRQj4avQAVAbZPM=","subject":"CN=Digidentity BV PKIoverheid Organisatie Server CA - G3,O=Digidentity B.V.,C=NL","subjectDN":"MIGBMQswCQYDVQQGEwJOTDEZMBcGA1UECgwQRGlnaWRlbnRpdHkgQi5WLjEXMBUGA1UEYQwOTlRSTkwtMjczMjI2MzExPjA8BgNVBAMMNURpZ2l
kZW50aXR5IEJWIFBLSW92ZXJoZWlkIE9yZ2FuaXNhdGllIFNlcnZlciBDQSAtIEcz","whitelist":false,"attachment":{"hash":"ea3643e9caf068468406f4fccd9435feabff55ebc6e0969f16722f970943804b","size":2609,"filename":"zm4euNC-JiW-4by3xDIvrjNA-47VRZb3MnFpy-xVE4E=.pem","location":"security-state-staging/intermediates/3a61810b-d2ad-4815-aed1-a1d77b4594fc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zm4euNC+JiW+4by3xDIvrjNA+47VRZb3MnFpy+xVE4E=","crlite_enrolled":true,"id":"5f89bdcc-376e-4489-9362-6be0bd69133c","last_modified":1576536532909},{"schema":1576535606746,"derHash":"OwzCA4StfyTrQ48rgMY+vgA/fyFbiHfkGOuwSEAo21c=","subject":"CN=Entrust Certification Authority - L1K,OU=See www.entrust.net/legal-terms+OU=(c) 2012 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTIgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFb
nRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFL","whitelist":false,"attachment":{"hash":"87d3147517902aed8e819b14b1dacf02ee1294c4c3b31b4bb42a0369c1435b9f","size":1711,"filename":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0uc=.pem","location":"security-state-staging/intermediates/5cc18fd8-15e6-494b-a189-5e1a98f43e77.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0uc=","crlite_enrolled":true,"id":"ca408a50-c8da-4bfe-967d-1c1fd0bb946c","last_modified":1576536532905},{"schema":1576535605336,"derHash":"VfOjWfCibXL/JEwu45b9UbwkAOolDJHvw1Xi+BA8mTk=","subject":"CN=DigiCert PKI Platform C2 Shared SMIME Individual Subscriber CA,O=DigiCert\\, Inc.,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjFHMEUGA1UEAxM+RGlnaUNlcnQgUEtJIFBsYXRmb3JtIEMyIFNoYXJlZCBTTUlNRSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0E=","whitelist":false,"attachment":{"hash":"fd6efa96746cef0ca8ce8597e6e6fbc2f1cb6fa9dd9295250b112e46354ea94f","size":2182,"filename":"xC
Pd-4wOcg7RHCiFt8QndJQj0lTGpZNzZgqyMY0yEFw=.pem","location":"security-state-staging/intermediates/f079080e-f88e-4928-97ef-7f18e0a5938b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xCPd+4wOcg7RHCiFt8QndJQj0lTGpZNzZgqyMY0yEFw=","crlite_enrolled":false,"id":"e20477f8-f814-48f9-bd92-7e92a2bd12c3","last_modified":1576536532901},{"schema":1576535603787,"derHash":"gC4LEz1hRBoKaveZ3F5LJglymQ1ty4fcCs/FhdkIJhA=","subject":"CN=KAINOS-PUBLIC-TRUST,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Kainos Software Ltd,C=GB","subjectDN":"MIGKMQswCQYDVQQGEwJHQjEcMBoGA1UEChMTS2Fpbm9zIFNvZnR3YXJlIEx0ZDE/MD0GA1UECxM2Q2xhc3MgMiBEaWdpQ2VydCBQS0kgUGxhdGZvcm0gSW5kaXZpZHVhbCBTdWJzY3JpYmVyIENBMRwwGgYDVQQDExNLQUlOT1MtUFVCTElDLVRSVVNU","whitelist":false,"attachment":{"hash":"f9b2ca117f05b362a6d654febf9b94ed53454c2fd3971b036e93ded0a1ca2a1e","size":2052,"filename":"c_Ep9MPvAU_vVs08JfE2_ztuEqYPDLwz_RD1oE_4__M=.pem","location":"security-state-staging/intermediates/e93cd091-763c-4dc9-a571-7c2da
2b86a50.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"c/Ep9MPvAU/vVs08JfE2/ztuEqYPDLwz/RD1oE/4//M=","crlite_enrolled":false,"id":"46307b27-d96a-4832-a7c6-01140ad38819","last_modified":1576536532898},{"schema":1576535602401,"derHash":"Kosib1zF9+os4ESe64pxX4a7rSRB53XcX4m/f7BlphY=","subject":"SERIALNUMBER=202004,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDIwMDQ=","whitelist":false,"attachment":{"hash":"530c26605f6cc334c3b24de395cde5d524dc087c7e5d426c096ae73d47e5671b","size":2337,"filename":"YKoPQytsUiYv9XeHwk2Vn9vD9ArNj_LsZreUUWmHDPM=.pem","location":"security-state-staging/intermediates/f5b681e8-e2c0-4537-9b4a-5e7391c4a09a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YKoPQytsUiYv9XeHwk2Vn9vD9ArNj/LsZreUUWmHDPM=","crlite_enrolled":false,"id":"28a75208-9a9a-47d5-8400-f79e047b5462","last_modified":1576536532894}
,{"schema":1576535600960,"derHash":"z7IiWXstBVtHh9pyOnSNfi9Dd9t8i5T3/ZmvW9IWP8k=","subject":"SERIALNUMBER=202002,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDAy","whitelist":false,"attachment":{"hash":"513c238212527dc8f0129c6323cbf9607be77ea2434d5ba48063eaa65e8f1720","size":2333,"filename":"TXCiKaiHdI6ASTC6_M9mbHGeLbmkLX5hTPl45I7zvY8=.pem","location":"security-state-staging/intermediates/1ae2f1a9-4b9a-4207-8977-04f97bfd005b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TXCiKaiHdI6ASTC6/M9mbHGeLbmkLX5hTPl45I7zvY8=","crlite_enrolled":false,"id":"e579267f-82d9-4f4c-8aa0-323312c433c5","last_modified":1576536532887},{"schema":1576535597671,"derHash":"4VXr+WM055ri4ofVXPyRhd4kk1plPxPFugWv+Bh3G8Y=","subject":"CN=GlobalSign CloudSSL CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWx
TaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIENsb3VkU1NMIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"55655605c7ce9c971ab03390d8184fc277ae70699910a9e487994de27fd1e269","size":1638,"filename":"-VZJxHgrOOiVyUxgMRbfoo-GIWrMKd4aellBBHtBcKg=.pem","location":"security-state-staging/intermediates/dd061739-a439-406c-bc1c-c3dcf1a5c2c5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+VZJxHgrOOiVyUxgMRbfoo+GIWrMKd4aellBBHtBcKg=","crlite_enrolled":true,"id":"53fa801b-05d6-4051-90f3-4350385d8e6c","last_modified":1576536532883},{"schema":1576535594773,"derHash":"G8OytG+vAPCtjmleK3WTvZNHNl0savqxSQ42CJbvbko=","subject":"SERIALNUMBER=202009,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDA5","whitelist":false,"attachment":{"hash":"3ce81fe0691ef3beea65fca4658bd6387ac10bbe5f14ec28000785c58f4950a5","size":2333,"filename":"DSlbVT
wQBYvCao9cl8EkWAC1CjW7Fie6KKpzjPDp1Rw=.pem","location":"security-state-staging/intermediates/34f0e639-4d4d-47c8-9598-8259f59ee104.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DSlbVTwQBYvCao9cl8EkWAC1CjW7Fie6KKpzjPDp1Rw=","crlite_enrolled":false,"id":"274acd87-6025-4bce-bb40-37e93b78302b","last_modified":1576536532879},{"schema":1576535596263,"derHash":"ANuGpwh6dQzgezJV0NMSnoiMqeDuys+ecr2ydrFxR+8=","subject":"CN=KLASS3-SK 2010,OU=Sertifitseerimisteenused,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MG0xCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMSEwHwYDVQQLExhTZXJ0aWZpdHNlZXJpbWlzdGVlbnVzZWQxFzAVBgNVBAMTDktMQVNTMy1TSyAyMDEw","whitelist":false,"attachment":{"hash":"042b094c75aa054c83b0bfb76bf4cc6a362c77b88f8c7ddffc0770a77ea5ce75","size":1849,"filename":"21pSl8-gYIgzVrmihoLqfp4XlT3k97qo-M2ZGRQsy4Q=.pem","location":"security-state-staging/intermediates/8b165542-5819-4ea0-b9ec-4b1f31d1704c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"21pSl8+gY
IgzVrmihoLqfp4XlT3k97qo+M2ZGRQsy4Q=","crlite_enrolled":false,"id":"c4e9303c-d86a-4819-adae-e6fbfe2cd985","last_modified":1576536532872},{"schema":1576535589142,"derHash":"ThU6WIh3aI8aDBA6CEwu2zrR2MSAzwPYq2/tR9kgQ3A=","subject":"CN=GlobalSign Domain Validation CA - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"76d0b5a6bef0132806bae16a534cb1699d6f053ea10a73a6a9f121dd15765520","size":1626,"filename":"TEb9SdyV5a_KjM7PCm4dOji-92ekxy7uuBKyI1Gg5v4=.pem","location":"security-state-staging/intermediates/0488e943-51c6-4a2a-9cc4-5979ebb4cc57.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TEb9SdyV5a/KjM7PCm4dOji+92ekxy7uuBKyI1Gg5v4=","crlite_enrolled":false,"id":"f366897a-f2ea-4b9e-be08-13b01c4f215c","last_modified":1576536532868},{"schema":1576535586284,"derHash":"Pwrls9BWUkcqEIwoVGNksxtaM9AVKLVV/qshr667Wzo=","subject":"CN=Trend M
icro CA,O=Trend Micro Inc,C=US","subjectDN":"MEAxCzAJBgNVBAYTAlVTMRgwFgYDVQQKDA9UcmVuZCBNaWNybyBJbmMxFzAVBgNVBAMMDlRyZW5kIE1pY3JvIENB","whitelist":false,"attachment":{"hash":"61d3d2c76fff74929a739fafc9288572e7cb53a76ebc465347acb2c2000ca94c","size":1447,"filename":"qczcaUM72BvrELfBo2n2WlYnwx7A5w4eV0dgYXXe1Bk=.pem","location":"security-state-staging/intermediates/9c45e999-6dc2-4a83-b49b-687d87da1f29.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qczcaUM72BvrELfBo2n2WlYnwx7A5w4eV0dgYXXe1Bk=","crlite_enrolled":false,"id":"5cb4733e-13a4-4279-81c5-5692b01bd879","last_modified":1576536532862},{"schema":1576535587654,"derHash":"yHzgOv+13mMZwhmXHy7S2Pb1OJ4tU7It0sVipcmCf8A=","subject":"CN=GeoTrust EV CN RSA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHjAcBgNVBAMTFUdlb1RydXN0IEVWIENOIFJTQSBHMQ==","whitelist":false,"attachment":{"hash":"d222797c82dd7127576a516cb679acc7149d876ca1871f1516
65584a65c8958e","size":1678,"filename":"_AbtYXa2JlKxQyB1FnBObb2Wv8Q-bUxjsGRIXvzcvpQ=.pem","location":"security-state-staging/intermediates/018708e8-2e71-4cdd-808d-b307f41e71a2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/AbtYXa2JlKxQyB1FnBObb2Wv8Q+bUxjsGRIXvzcvpQ=","crlite_enrolled":true,"id":"dd86d747-415a-4663-841b-9d245710f0eb","last_modified":1576536532858},{"schema":1576535584747,"derHash":"cMfmgRnfrRKKiOHXr4501aGeKxmh9ejwCKnPUPRPLbs=","subject":"CN=SSL X Y & Z TLS CA RSA R1,O=SSL X Y & Z Corp.,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHAxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExGjAYBgNVBAoMEVNTTCBYIFkgJiBaIENvcnAuMSIwIAYDVQQDDBlTU0wgWCBZICYgWiBUTFMgQ0EgUlNBIFIx","whitelist":false,"attachment":{"hash":"fa1303b719e1d84c2d575bdb34a549d866cb7136d850a3400cbfd89b2f4ccbe5","size":2430,"filename":"R4T7HX6pKZp9r7OGr6NyCYcdUsEH_aad6Zft_LMvyf0=.pem","location":"security-state-staging/intermediates/5bb7f143-7660-4b95-878e-f1341fea8ea6.pem","mimetype":"
application/x-pem-file"},"pubKeyHash":"R4T7HX6pKZp9r7OGr6NyCYcdUsEH/aad6Zft/LMvyf0=","crlite_enrolled":false,"id":"d62e32e9-67fb-4119-951f-c462ddffe4e7","last_modified":1576536532855},{"schema":1576535583284,"derHash":"2jvIEAX9u4U9aBp+lCZhrrojeJIRUl6vUiIfKFFMCcs=","subject":"CN=QuoVadis Issuing CA G4,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDExZRdW9WYWRpcyBJc3N1aW5nIENBIEc0","whitelist":false,"attachment":{"hash":"7b11a86250a18ac5dac6b4e9d9a5638069dc115c40cfdef38dc073726ccda870","size":1967,"filename":"Q3uGh6nrEU1_2eTHReUBvoLYNArYb3i7Qz286_nBn7Q=.pem","location":"security-state-staging/intermediates/35521446-cee1-4cf0-947c-c068c11acec1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Q3uGh6nrEU1/2eTHReUBvoLYNArYb3i7Qz286/nBn7Q=","crlite_enrolled":true,"id":"13ab7e91-4d7f-417d-9099-ffcf9e4bf594","last_modified":1576536532851},{"schema":1576535581658,"derHash":"en2t4IVo/Tv/JFPmm3qE1b9Bc7S/WM0GQ/8GDDX5Fl0=","subject
":"CN=SSL X Y & Z TLS CA ECC R1,O=SSL X Y & Z Corp.,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHAxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExGjAYBgNVBAoMEVNTTCBYIFkgJiBaIENvcnAuMSIwIAYDVQQDDBlTU0wgWCBZICYgWiBUTFMgQ0EgRUNDIFIx","whitelist":false,"attachment":{"hash":"d9454a599aefed353e8d1bead50ae07d5bd45c94c6729e3d59e8c4c72306ab4e","size":1268,"filename":"TC1hkMikhbNbWT7TjUDnHdt4hkFz4dY7ULwwF8-lf3I=.pem","location":"security-state-staging/intermediates/14e678e7-d2fe-4b48-a544-60cfa82b3275.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TC1hkMikhbNbWT7TjUDnHdt4hkFz4dY7ULwwF8+lf3I=","crlite_enrolled":false,"id":"fc0bb8ef-4095-4f5b-98eb-34c572664019","last_modified":1576536532843},{"schema":1576535578773,"derHash":"dO8zXl4YeIMH+52Jy3BL7BEqvSNIfb/0HE3tUHDyQdk=","subject":"CN=GlobalSign Organization Validation CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXph
dGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzI=","whitelist":false,"attachment":{"hash":"d127064c98a35e06b558457e35c1d15905d100eb14b73d7fd679b978441b5b0f","size":1589,"filename":"IQBnNBEiFuhj-8x6X8XLgh01V9Ic5_V3IRQLNFFc7v4=.pem","location":"security-state-staging/intermediates/a6c94cd4-4f33-46e2-8858-3eacc056bb12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IQBnNBEiFuhj+8x6X8XLgh01V9Ic5/V3IRQLNFFc7v4=","crlite_enrolled":true,"id":"f4e16820-98b9-49a9-8e18-7494d1d0dd70","last_modified":1576536532836},{"schema":1576535580153,"derHash":"Bip25RluTGIgrKfTKqQZdhEBN0wRhmw2J9X4oFXs4s4=","subject":"CN=Symantec Class 3 Admin Intermediate Certificate Authority,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGRMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxQjBABgNVBAMTOVN5bWFudGVjIENsYXNzIDMgQWRtaW4gSW50ZXJtZWRpYXRlIENlcnRpZmljYXRlIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"6e68121c7da618c74b2bf9
4b41b68161d9de0843f9a65350b2b41464efdd6c36","size":2203,"filename":"DIqmg6q0EEYaGDu2kzw3JDDctRJMyX5PRKKp2nBoL5I=.pem","location":"security-state-staging/intermediates/1ebad936-5863-490b-a667-2a96eb695a7d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DIqmg6q0EEYaGDu2kzw3JDDctRJMyX5PRKKp2nBoL5I=","crlite_enrolled":false,"id":"9942326c-f86b-4922-895e-e23f9e021b32","last_modified":1576536532832},{"schema":1576535577287,"derHash":"80mVTo+21EARvLeJ2X2aLLIDK9XwtZjR+4oJn1hI1SM=","subject":"CN=GlobalSign,OU=GlobalSign ECC Root CA - R5,O=GlobalSign","subjectDN":"MFAxJDAiBgNVBAsTG0dsb2JhbFNpZ24gRUNDIFJvb3QgQ0EgLSBSNTETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbg==","whitelist":false,"attachment":{"hash":"8e31af76b6ffba628ef77f3869f8354882f946eb5ff2352cf52785a9787b247b","size":1325,"filename":"fg6tdrtoGdwvVFEahDVPboswe53YIFjqbABPAdndpd8=.pem","location":"security-state-staging/intermediates/afbb8634-f114-41c2-98ab-86ef89d3a7f8.pem","mimetype":"application/x-pem-file"},"pubKe
yHash":"fg6tdrtoGdwvVFEahDVPboswe53YIFjqbABPAdndpd8=","crlite_enrolled":false,"id":"77a173f6-46fd-4be8-ba6f-c64b6308db3f","last_modified":1576536532829},{"schema":1576535575850,"derHash":"ZhFE0REXIkQICyTX/kp7zraow12gyZGMjppYY13Ekjw=","subject":"CN=Entrust Class 2 Client CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAxMCBFbnRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDIgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"4277e2a7f71129a3837869b4dc2390a017ee5641def4a8640f1b4f673b8b643f","size":1760,"filename":"JloS0qeSNdA_zDy0D24iKRwsIsmYt-GFR_0g8UIjlUE=.pem","location":"security-state-staging/intermediates/eadd6041-e936-41dc-ae64-e03625e527ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JloS0qeSNdA/zDy0D24iKRwsIsmYt+GFR/0g8UIjlUE=","crlite_enro
lled":true,"id":"f00a5631-60d1-4b34-9191-50b30924ed38","last_modified":1576536532825},{"schema":1576535572387,"derHash":"D+RlaG/uLc0BKaFqfVm6Kisz9lKbWYiXU7g+C+o7fgQ=","subject":"SERIALNUMBER=202007,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDA3","whitelist":false,"attachment":{"hash":"a5513b0fbc7d522403e4c0ca9a2ad46a72d21ee012f373b1b0db761e2ae7e601","size":2333,"filename":"sRTAvLuml1nZ25l3oqzol98ZuS1JG5EdhJ-TY63PwXo=.pem","location":"security-state-staging/intermediates/713bda9e-695b-47d5-bfb8-022892bf0b34.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sRTAvLuml1nZ25l3oqzol98ZuS1JG5EdhJ+TY63PwXo=","crlite_enrolled":false,"id":"7914b6fe-1a40-47cf-8d43-5b437aec1f07","last_modified":1576536532821},{"schema":1576535569402,"derHash":"IpdXDb0sDe8bBQ2ZJ/6oldsP0guCuFluCgoTJezgjQU=","subject":"CN=SECOM Passport for Web SR 2.0 CA,
O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MF8xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSkwJwYDVQQDEyBTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIFNSIDIuMCBDQQ==","whitelist":false,"attachment":{"hash":"e915fd41e3e3cc034825e2e513688643882df2dd79b58f8738fe092993109c81","size":1520,"filename":"0CzdK_GELTntEyD4ub9b3f0cOshJkKpSgLbs7o9cHbA=.pem","location":"security-state-staging/intermediates/5b3e9b4a-ea34-4675-849e-8adbd915a261.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0CzdK/GELTntEyD4ub9b3f0cOshJkKpSgLbs7o9cHbA=","crlite_enrolled":false,"id":"9ec6f3e5-9aab-41f6-9ccf-5ede8da74e5e","last_modified":1576536532814},{"schema":1576535570874,"derHash":"D1e5b6ezEkfsOcswfTjKK/Oyn1Sv1Qo1HRhTNSlRe0Y=","subject":"CN=DigiCert Transition Root G3,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBUcmFuc2l0aW9uIFJvb3QgRzM=","whitelist":false,"att
achment":{"hash":"c080ef9080f906fa2c289ef910f8910848f4f26bfb328c0efd43ac77fcc52cc3","size":2040,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/ce901e54-cf68-4abc-b935-9640cec37430.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"fb9b4b7b-76ea-4ba8-b5f6-2f80547aa743","last_modified":1576536532811},{"schema":1576535567918,"derHash":"26EJdxDzximUPCPcdQOsgrkUKCXvBJ8cJlONs2tIBUk=","subject":"CN=thawte Primary Transition Root,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMScwJQYDVQQDEx50aGF3dGUgUHJpbWFyeSBUcmFuc2l0aW9uIFJvb3Q=","whitelist":false,"attachment":{"hash":"89dee949e02c694fa984b3b8c8b7969c98ab3399e00e52dca4306446b0384992","size":1735,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermed
iates/03b26244-8e28-4bfa-acb2-0df61add2abc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"af87efd1-445a-4171-8aef-7caaca23fb3f","last_modified":1576536532807},{"schema":1576535566488,"derHash":"KtkJUW/XLKcNgB7oMeS7heqvlsJSDI+Dy6aOm1Rz9Nk=","subject":"CN=TBS X509 CA Persona 3 (RSA),O=TBS INTERNET Ltd.,L=Douglas,ST=Isle of Man,C=IM","subjectDN":"MHcxCzAJBgNVBAYTAklNMRQwEgYDVQQIEwtJc2xlIG9mIE1hbjEQMA4GA1UEBxMHRG91Z2xhczEaMBgGA1UEChMRVEJTIElOVEVSTkVUIEx0ZC4xJDAiBgNVBAMTG1RCUyBYNTA5IENBIFBlcnNvbmEgMyAoUlNBKQ==","whitelist":false,"attachment":{"hash":"461a7cb9308661369347d20ce15e3c4d6ebfa7b32b74c4a2b3d2d306d0b9fe81","size":2125,"filename":"z3pEJKBoO1fdk2jCBPfRIop6ygjEkto5FhQko4yPR9A=.pem","location":"security-state-staging/intermediates/9f88bad7-8b3a-4092-9c6c-c850ef8cf5c6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z3pEJKBoO1fdk2jCBPfRIop6ygjEkto5FhQko4yPR9A=","crlite_enrolled":false,"id":"b2
99de4d-2908-4fed-9755-f51ebc482510","last_modified":1576536532803},{"schema":1576535565134,"derHash":"x80C+uV4aHQ2n1NFdBbrcTNXFkf+kSIJ78Twd6jtcuM=","subject":"SERIALNUMBER=202015,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDE1","whitelist":false,"attachment":{"hash":"51ef9ce4079b75fb93d27cb9af4ed07b2bcd7336b6f53687b00e904458dcf0b3","size":2333,"filename":"kY1t8IGrljcRfRgo1nuCJj6b5Qn9itJ695GG1Rd1Bro=.pem","location":"security-state-staging/intermediates/c31bd631-14e9-4399-b33e-79c247091349.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kY1t8IGrljcRfRgo1nuCJj6b5Qn9itJ695GG1Rd1Bro=","crlite_enrolled":false,"id":"5b90ea65-389e-4fb6-b10f-faef455a1c0b","last_modified":1576536532799},{"schema":1576535563725,"derHash":"6TJ6NHy+HLlM3JqlTLMbbkPWiWjRfQnOMmoJG/wvCxE=","subject":"CN=ACCVCA-110,OU=PKIACCV,O=ACCV,C=ES","subjectDN":"MEMx
EzARBgNVBAMMCkFDQ1ZDQS0xMTAxEDAOBgNVBAsMB1BLSUFDQ1YxDTALBgNVBAoMBEFDQ1YxCzAJBgNVBAYTAkVT","whitelist":false,"attachment":{"hash":"88d175177fc311fc5ad5e439d61dfabfbe6a0cc3dbf7be58654a104156ba2dae","size":2686,"filename":"qX1E174XIirdC_7IZnHG6ACm0iCltwbZSr_U507C-Ck=.pem","location":"security-state-staging/intermediates/7b9e7264-b0e3-4c9e-bda1-908a922c5b3f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qX1E174XIirdC/7IZnHG6ACm0iCltwbZSr/U507C+Ck=","crlite_enrolled":false,"id":"772a5e91-e4ab-4bc1-b2a7-9d88c0c7e9bf","last_modified":1576536532792},{"schema":1576535560876,"derHash":"j7iGQfTiMc6BQ2N1E4pbNtKgajzCpJ5bH0aZmBvh5FE=","subject":"CN=Absa Group Limited Public CA,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=Absa Group Limited,C=ZA","subjectDN":"MIGSMQswCQYDVQQGEwJaQTEbMBkGA1UEChMSQWJzYSBHcm91cCBMaW1pdGVkMT8wPQYDVQQLEzZDbGFzcyAyIERpZ2lDZXJ0IFBLSSBQbGF0Zm9ybSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0ExJTAjBgNVBAMTHEFic2EgR3JvdXAgTGltaXRlZCBQdWJsaWMgQ0E=","whitelist":fals
e,"attachment":{"hash":"51736122794efa7bfecf956b04e07f42516a9ed8361aa4a44f250170f90cfb86","size":2048,"filename":"vRb7HqdoT5ixhzzRCvN6PNUCaEBVGzIOVNy1MyJgmZU=.pem","location":"security-state-staging/intermediates/07490972-9ddc-4a60-8439-1f434b2f63a2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vRb7HqdoT5ixhzzRCvN6PNUCaEBVGzIOVNy1MyJgmZU=","crlite_enrolled":false,"id":"795ca4a8-041d-408c-99cf-62a09306cc8c","last_modified":1576536532788},{"schema":1576535558052,"derHash":"QNaZIOoFRW+gEX3mCLioATeQtUIJfjQ+wcvOLfuXE7A=","subject":"CN=Secure Site Pro Extended Validation CA G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMjAwBgNVBAMTKVNlY3VyZSBTaXRlIFBybyBFeHRlbmRlZCBWYWxpZGF0aW9uIENBIEcy","whitelist":false,"attachment":{"hash":"8020f42d89c841697f922651d0d7b35319708585b4dae12e24e03526e2a96f83","size":1703,"filename":"C5iNVr6DMrTBS2Wvb08zPxdCQnB0DSWA-yu6a9MbQBI=.pem","location":"secur
ity-state-staging/intermediates/adec223e-eda3-4d12-bdab-c4e535e58e79.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"C5iNVr6DMrTBS2Wvb08zPxdCQnB0DSWA+yu6a9MbQBI=","crlite_enrolled":true,"id":"982fce8e-e441-4c2f-a4a8-2304fb7e2ac2","last_modified":1576536532781},{"schema":1576535555127,"derHash":"sTGQXMciEnBhO1KayeeGqiMKv+FUoKy+RSvDUL0e/ks=","subject":"CN=DigiCert CN RSA EV CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IENOIFJTQSBFViBDQSBHMQ==","whitelist":false,"attachment":{"hash":"4faf62df3f53a4fe26ac667c6b9d791fd8d952eec9c249782056ad06c4fead0d","size":1683,"filename":"mGDyZVimaL1gSwtTqcpINStgZay1F9wruRyUZy0wI3g=.pem","location":"security-state-staging/intermediates/20053df1-5626-4ba2-a024-3f6bb49f5e6b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mGDyZVimaL1gSwtTqcpINStgZay1F9wruRyUZy0wI3g=","crlite_enrolled":true,"id":"5ed1b67e-597a-44c5-
bbf4-973e53cc5889","last_modified":1576536532777},{"schema":1576535556567,"derHash":"zXMOU/5zLY8J1ows2/0e/ZioVfXhSQIcAcsu7h2Bhuc=","subject":"CN=COMODO RSA Extended Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGSMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE4MDYGA1UEAxMvQ09NT0RPIFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"7d2f460009e99bedb3ed4c894ebf320d7eed0cf7460a7d81e4eb7dcfd8793cf7","size":2158,"filename":"Fbr_5aSOo4KRal8YE49t4lc76IOnK_oto9NWV1cSKWM=.pem","location":"security-state-staging/intermediates/0e5c6bab-00ba-4b47-8e40-654d140bf187.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Fbr/5aSOo4KRal8YE49t4lc76IOnK/oto9NWV1cSKWM=","crlite_enrolled":true,"id":"5db685fc-9b69-480f-8fc6-f5e4386636ad","last_modified":1576536532774},{"schema":1576535552192,"derHash":"38x3XGRNtKM61xKTQz9GPI4xBXziLL
Jn+dMaA1P0/C8=","subject":"CN=Amazon,OU=Server CA 0A,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAwQTEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"beb147abe96d6e343843d2e2fd729d58e42b2dab74a3c0ccc41530639168e721","size":1666,"filename":"tYU57KoTkhzNuA0400h1_eZHHFoVnZvu8vpvmZg71hE=.pem","location":"security-state-staging/intermediates/e3003237-67fc-4118-adfa-35b22f4430b8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tYU57KoTkhzNuA0400h1/eZHHFoVnZvu8vpvmZg71hE=","crlite_enrolled":false,"id":"838bb94d-8f5e-4921-a93a-9035addc8ae6","last_modified":1576536532770},{"schema":1576535553697,"derHash":"I7zV16lqUTqYHq0nk25ZqAKKgHvXKGBBj2i1VaKRFnA=","subject":"CN=Certigna Identity CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MIGCMQswCQYDVQQGEwJGUjESMBAGA1UECgwJREhJTVlPVElTMRwwGgYDVQQLDBMwMDAyIDQ4MTQ2MzA4MTAwMDM2MSIwIAYDVQRhDBlOVFJGUi0wMDAyIDQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQQDDBRDZXJ0aWduYSBJZGVudGl0eSBDQQ=="
,"whitelist":false,"attachment":{"hash":"211c9fabe3b82a58caaded8a0e4fe51f77d8506e143103dc3f8db31704cb7e6e","size":2178,"filename":"lwJkDQYtogkGJEFJMX5DjskCXh2W7dNBRH_eJZlWjWo=.pem","location":"security-state-staging/intermediates/00c1f21f-a695-478a-9e33-19d48f9525d8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lwJkDQYtogkGJEFJMX5DjskCXh2W7dNBRH/eJZlWjWo=","crlite_enrolled":true,"id":"f695b618-333e-4759-a681-19c5f52aeb16","last_modified":1576536532767},{"schema":1576535550809,"derHash":"U5wT1vJzElL5ndK69D1AVZxGxYV1jE/EQQx+xILb7Wk=","subject":"CN=OneSignSSL ECC DV Secure Server CA,O=One Sign Pte. Ltd.,L=Singapore,ST=Singapore,C=SG","subjectDN":"MH8xCzAJBgNVBAYTAlNHMRIwEAYDVQQIEwlTaW5nYXBvcmUxEjAQBgNVBAcTCVNpbmdhcG9yZTEbMBkGA1UEChMST25lIFNpZ24gUHRlLiBMdGQuMSswKQYDVQQDEyJPbmVTaWduU1NMIEVDQyBEViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"0e21e684e88796f0f844928dd52cc107b1280c4c7eae78e1934ca07301495bb1","size":1313,"filename":"8vM1dUqGdSXi2UQvVgGUGNw0L1p0-y-
yK8MC0MVE9Zs=.pem","location":"security-state-staging/intermediates/86301532-3955-416c-9e34-7bcb144c4837.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8vM1dUqGdSXi2UQvVgGUGNw0L1p0+y+yK8MC0MVE9Zs=","crlite_enrolled":false,"id":"e0e26920-5001-4bb2-b934-8e6f0697161c","last_modified":1576536532763},{"schema":1576535547841,"derHash":"LeYg8tEgCqkLFsPM9nD9ftFDeasG+osDHP742gUepaI=","subject":"CN=ACCVCA-120,OU=PKIACCV,O=ACCV,C=ES","subjectDN":"MEMxEzARBgNVBAMMCkFDQ1ZDQS0xMjAxEDAOBgNVBAsMB1BLSUFDQ1YxDTALBgNVBAoMBEFDQ1YxCzAJBgNVBAYTAkVT","whitelist":false,"attachment":{"hash":"edd78aa1bd6255d7f1003657a126700b8500239227d9aba192fc06dd0a8d1d6b","size":2686,"filename":"XH3Wh5FuH9ZeZcCdLZM0VbsyQg3aeFV1wujvNEYNRQ8=.pem","location":"security-state-staging/intermediates/65d00951-3633-4568-89cc-188eb82084b3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XH3Wh5FuH9ZeZcCdLZM0VbsyQg3aeFV1wujvNEYNRQ8=","crlite_enrolled":true,"id":"cf7c93de-8a6e-4b12-b0aa-7dc5ef535f84","last_modified":157
6536532759},{"schema":1576535549332,"derHash":"ORIgcFt1vPPtPNSzYxIT9WnSz4ImEB4XB5mlNUqxKGE=","subject":"CN=Amazon Root CA 1,O=Amazon,C=US","subjectDN":"MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=","whitelist":false,"attachment":{"hash":"076400302106a1d71c433340807aa21af7fdcdd85ff586d57757cf6d6718dbc4","size":1646,"filename":"--MBgDH5WGvL9Bcn5Be30cRcL0f5O-NyoXuWtQdX1aI=.pem","location":"security-state-staging/intermediates/3f9e0d02-5eec-434a-9f82-730c885b8a36.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"++MBgDH5WGvL9Bcn5Be30cRcL0f5O+NyoXuWtQdX1aI=","crlite_enrolled":false,"id":"9cb19f7a-6a36-46ac-a938-502daee657ab","last_modified":1576536532756},{"schema":1576535546460,"derHash":"DcCb1929fCwKuKBoB0wVc3SIj/qXYpAFFM8NWfqvNL8=","subject":"SERIALNUMBER=202011,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA
0GA1UEBRMGMjAyMDEx","whitelist":false,"attachment":{"hash":"0bae1aae996ba5f02e57521b5020e6363bbc4090b93b9c08c78a8239a09bb853","size":2333,"filename":"q2i_RQ19XRNztaq5O0Vqrcxf0DOsBBy3DYkUcG-I2g0=.pem","location":"security-state-staging/intermediates/92c0c429-f2cd-4bb1-a505-09504e342281.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q2i/RQ19XRNztaq5O0Vqrcxf0DOsBBy3DYkUcG+I2g0=","crlite_enrolled":false,"id":"4ae8957f-b111-42f2-88e8-6d2e0d084617","last_modified":1576536532752},{"schema":1576535544989,"derHash":"pfS4JqWGN/kStp/oWZByQ73+qnGgLcRCnQZk4hSgqds=","subject":"CN=EV TLS ECC ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHQxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMRowGAYDVQQDDBFFViBUTFMgRUNDIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"a1b4c52e486a2016d66dc838bc590e59ddd948336f11ca09416ac685b53e9483","size":1341,"filename":"Hm-YeyBPf0CgyqM7jDoHDoSn9_W6pV
fgP9SsXIGh6d4=.pem","location":"security-state-staging/intermediates/a3259a3d-6fb9-47b0-a295-0225b3cde342.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Hm+YeyBPf0CgyqM7jDoHDoSn9/W6pVfgP9SsXIGh6d4=","crlite_enrolled":false,"id":"8c7f006c-01ed-40dc-a748-e934bdf889f9","last_modified":1576536532749},{"schema":1576535542013,"derHash":"Oi++kokeV/4F1XCH9I5zDxflpfU+9APWGOW3TXp+bss=","subject":"CN=Go Daddy Root Certificate Authority - G2,O=GoDaddy.com\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIGDMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEaMBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xMTAvBgNVBAMTKEdvIERhZGR5IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"28840eaf068daaa9dc2d390f16a3685d787b1538e5d8cb9b2977d2063d3719ba","size":1618,"filename":"Ko8tivDrEjiY90yGasP6ZpBU4jwXvHqVvQI0GS3GNdA=.pem","location":"security-state-staging/intermediates/9a9d5981-04f6-43af-9a85-cf7f8a3cfaf9.pem","mimetype":"application/x-pem-file"}
,"pubKeyHash":"Ko8tivDrEjiY90yGasP6ZpBU4jwXvHqVvQI0GS3GNdA=","crlite_enrolled":false,"id":"db9d1a57-7d79-44f0-a9c2-f880bce304dc","last_modified":1576536532745},{"schema":1576535540530,"derHash":"hTY6JMsbZubPYkTofSQ9u4MG9gc1fGFMucTCJKDgQ1g=","subject":"CN=QuoVadis PKIoverheid Organisatie Server CA - G3,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MIGCMQswCQYDVQQGEwJOTDEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xFzAVBgNVBGEMDk5UUk5MLTMwMjM3NDU5MTgwNgYDVQQDDC9RdW9WYWRpcyBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBTZXJ2ZXIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"2b9839d77bb3847c1706cb2e8bf87fef25e339114ceb10c8c50b05924d67ef9e","size":2609,"filename":"0RDPmiZ5chLjLl0zHCAarPh4229A9O3S02zEXEMOZL4=.pem","location":"security-state-staging/intermediates/5d4f4104-270d-401d-8122-44c0c565d211.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0RDPmiZ5chLjLl0zHCAarPh4229A9O3S02zEXEMOZL4=","crlite_enrolled":true,"id":"4cb231b7-c2c3-498a-b050-cb940c8ed420","last_modified":1576536532741},{
"schema":1576535537496,"derHash":"xUU/fBRwFqmqD19LsdIX3r4cLTaMU890019VxSM8SYo=","subject":"CN=OKCERT R4 EV SSL CA G2,OU=Kingnettech,O=Kingnet Information Technology Co.\\, Ltd.,C=CN","subjectDN":"MHcxCzAJBgNVBAYTAkNOMTEwLwYDVQQKDChLaW5nbmV0IEluZm9ybWF0aW9uIFRlY2hub2xvZ3kgQ28uLCBMdGQuMRQwEgYDVQQLDAtLaW5nbmV0dGVjaDEfMB0GA1UEAwwWT0tDRVJUIFI0IEVWIFNTTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"7d588ca61738784840bbd7ff005ff17935bc0d1a36366ef3279871fa2e31ba71","size":1776,"filename":"fFdFUEieyjNs9DctpEE6fSI3FB56V1hzaJMiFIo0Rnk=.pem","location":"security-state-staging/intermediates/72d9b43e-856b-4662-a065-6f3500f76267.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fFdFUEieyjNs9DctpEE6fSI3FB56V1hzaJMiFIo0Rnk=","crlite_enrolled":false,"id":"ee0c36d3-570c-4d2a-a081-be514ff0a94b","last_modified":1576536532733},{"schema":1576535535906,"derHash":"hsZwe74nzeEhXiXT+BRqUiKB4YxF3yy4xvt6A8FzNRA=","subject":"CN=GDCA TrustAUTH R4 Generic CA,O=GUANG DONG CERTIFICATE AUTHORITY CO.\\,LTD
.,C=CN","subjectDN":"MGgxCzAJBgNVBAYTAkNOMTIwMAYDVQQKDClHVUFORyBET05HIENFUlRJRklDQVRFIEFVVEhPUklUWSBDTy4sTFRELjElMCMGA1UEAwwcR0RDQSBUcnVzdEFVVEggUjQgR2VuZXJpYyBDQQ==","whitelist":false,"attachment":{"hash":"3b6dea215a5d301b1acaa2f77d6d9182513b6bf335cd1cfaa9683bc4efe3d224","size":2060,"filename":"mXaq2dsX_TtlLffdUghF79fyMALXeMrXTTUzEgq6gv8=.pem","location":"security-state-staging/intermediates/74e3a779-4648-4fc7-8e96-17622071ed2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mXaq2dsX/TtlLffdUghF79fyMALXeMrXTTUzEgq6gv8=","crlite_enrolled":false,"id":"6ed2cbdd-26bb-461a-81d7-712abefd1ddd","last_modified":1576536532726},{"schema":1576535530119,"derHash":"FPr8qEvbiw7DJxknK+cw/hjW/CkwHFz3iUAFluxCmv4=","subject":"CN=DigiCert Assured ID Client CA G3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKTAnBgNVBAMTIERpZ2lDZXJ0IEFzc3VyZWQgSUQgQ2xpZW50IENBIEcz","whitelist":false,"attachment":{"ha
sh":"139cbdece29a63f10575c4fd3db1782db101a13332f52498f6d746d203036116","size":1471,"filename":"OwnA3IH2SexQr1cTjKzw_Xj6O5qxksjv4SAEa7AYVio=.pem","location":"security-state-staging/intermediates/c08a5a8f-f3b4-4fdb-8c64-e237b98f8316.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OwnA3IH2SexQr1cTjKzw/Xj6O5qxksjv4SAEa7AYVio=","crlite_enrolled":false,"id":"5f7e3c26-5dc5-4bca-820b-89b0835e925a","last_modified":1576536532722},{"schema":1576535533020,"derHash":"YvaSt0R5U9QgWrMbTjTUWgKhLKRWVK+CcP7NieLbPkc=","subject":"CN=AffirmTrust Commercial Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=AffirmTrust,C=US","subjectDN":"MIGKMQswCQYDVQQGEwJVUzEUMBIGA1UECgwLQWZmaXJtVHJ1c3QxLTArBgNVBAsMJGh0dHA6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291cmNlczE2MDQGA1UEAwwtQWZmaXJtVHJ1c3QgQ29tbWVyY2lhbCBFeHRlbmRlZCBWYWxpZGF0aW9uIENB","whitelist":false,"attachment":{"hash":"27a3e81bf9f6497aaae6fec88eedc3a72c99ce9e8c856dcb65308fc860687bbc","size":1581,"filename":"cP3S-p60iPGa8-tLw-iQ2NE3CAx2vu0
EeyZs6EXiCyo=.pem","location":"security-state-staging/intermediates/e3ba7120-a042-4465-9b24-297a54fa1d86.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cP3S+p60iPGa8+tLw+iQ2NE3CAx2vu0EeyZs6EXiCyo=","crlite_enrolled":false,"id":"4b12644e-fa2b-4185-8818-40f29402009d","last_modified":1576536532715},{"schema":1576535531565,"derHash":"JYR9Zo608E/dQLErawdAxWfafQJDCOtsLJb+QdneIY0=","subject":"CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQDExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBYMw==","whitelist":false,"attachment":{"hash":"de6da669c1368f77b7e9d695474ed9aa592423603bbbe6a546b8bd3c90c2f2fb","size":1646,"filename":"YLh1dUR9y6Kja30RrAn7JKnbQG_uEtLMkBgFF2Fuihg=.pem","location":"security-state-staging/intermediates/3df213e3-41eb-4ad7-9716-411dd9ac133d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YLh1dUR9y6Kja30RrAn7JKnbQG/uEtLMkBgFF2Fuihg=","crlite_enrolled":false,"id":"096b6a86-f254-4a09-9836-f98ddf
792a1a","last_modified":1576536532711},{"schema":1576535527226,"derHash":"YNNVEG3WRk9qvlT/Wc3Gi5yWFei3FScfV/yZb2zvIdw=","subject":"CN=S/MIME ECC ICA R1,O=Public Key Infrastructure Ltd,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MHQxCzAJBgNVBAYTAlNDMQ4wDAYDVQQIDAVNYWjDqTERMA8GA1UEBwwIVmljdG9yaWExJjAkBgNVBAoMHVB1YmxpYyBLZXkgSW5mcmFzdHJ1Y3R1cmUgTHRkMRowGAYDVQQDDBFTL01JTUUgRUNDIElDQSBSMQ==","whitelist":false,"attachment":{"hash":"03d3ff16730384f2fc15daf75d20e0acad2849f2cee795ed8614e55a92fdd10f","size":1333,"filename":"KnJHdgWgUyBWr1LjNnzAFNzR0twTYLZWklBuL0-EpBY=.pem","location":"security-state-staging/intermediates/2f4e4051-4278-40b8-8687-b00bb9eb8d72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KnJHdgWgUyBWr1LjNnzAFNzR0twTYLZWklBuL0+EpBY=","crlite_enrolled":false,"id":"c4e0a4c3-c9a2-4571-bb3e-18933abcc323","last_modified":1576536532708},{"schema":1576535524269,"derHash":"AgcFbRcsgL37bcRb6eWAiEYHjR5u7xtu1wJZqzMqZME=","subject":"CN=Cybertrust Japan SureServer CA G4,O=Cybertrust
Japan Co.\\, Ltd.,C=JP","subjectDN":"MF4xCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEqMCgGA1UEAxMhQ3liZXJ0cnVzdCBKYXBhbiBTdXJlU2VydmVyIENBIEc0","whitelist":false,"attachment":{"hash":"d14576fded8dc8bc2c5e4595b2e25160155f8f967c80541b129ff564174309bd","size":1768,"filename":"rS4Ex7fMz9dQhgdB6qjxP-jJJQwjIeb-7RhvvdO6xy8=.pem","location":"security-state-staging/intermediates/8d6e839e-9d33-48c2-a9d9-40c21c559dd4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rS4Ex7fMz9dQhgdB6qjxP+jJJQwjIeb+7RhvvdO6xy8=","crlite_enrolled":true,"id":"278d6db3-b339-4446-8841-06784b687319","last_modified":1576536532704},{"schema":1576535525743,"derHash":"WOoGiLeQmqqOqqL/8287vo9KKtA71wJDs5A0adtIkPc=","subject":"CN=Trustwave Organization Validation SHA256 CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIG1MQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE9MDsGA1UEAxM0VHJ1c3R3YXZ
lIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNIQTI1NiBDQSwgTGV2ZWwgMTEfMB0GCSqGSIb3DQEJARYQY2FAdHJ1c3R3YXZlLmNvbQ==","whitelist":false,"attachment":{"hash":"1844432d6d4b7a217e3b736de1419af2fca76a2f6ccc1ce30a69111d8d201479","size":1817,"filename":"OSqnIRIhJQGKEtc7abZMpS4Y3djh39opzqI2WqlYVqM=.pem","location":"security-state-staging/intermediates/cbb140b8-1fb0-4a2a-bd22-98b808d0732b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OSqnIRIhJQGKEtc7abZMpS4Y3djh39opzqI2WqlYVqM=","crlite_enrolled":true,"id":"d7fe49e4-283f-4e24-9961-b2cdc4d883ed","last_modified":1576536532690},{"schema":1576535519719,"derHash":"ARBV1IV/2QEDjrodDwNkCCvT94xpCwx3C/lEvCZLfrA=","subject":"CN=KIBSTrust Issuing CA for e-Signatures,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA+OU=KIBS AD Trust Services,O=KIBS AD Skopje,C=MK","subjectDN":"MIHQMQswCQYDVQQGEwJNSzEXMBUGA1UEChMOS0lCUyBBRCBTa29wamUxFjAUBgNVBGETDU5UUk1LLTU1Mjk1ODExPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciB
DQTEfMB0GA1UECxMWS0lCUyBBRCBUcnVzdCBTZXJ2aWNlczEuMCwGA1UEAxMlS0lCU1RydXN0IElzc3VpbmcgQ0EgZm9yIGUtU2lnbmF0dXJlcw==","whitelist":false,"attachment":{"hash":"3f7958374c60f55cb8c9663d8487e680d5ac5b648c0b81613f75565c21da0b6c","size":2422,"filename":"yElc8NruRg-2MsMcl1chcF1INgoayZ7Rv3q4mzfz458=.pem","location":"security-state-staging/intermediates/e36f4085-6521-4c0d-8616-a938793d117b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yElc8NruRg+2MsMcl1chcF1INgoayZ7Rv3q4mzfz458=","crlite_enrolled":false,"id":"edec88d7-e1c6-4300-b142-8b497d3afd5c","last_modified":1576536532686},{"schema":1576535518197,"derHash":"YJkw64B61CCv2iqKphtnSDA5FozXZuCZQqSL/n873BA=","subject":"OU=Public Certification Authority - G2,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MGAxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEsMCoGA1UECwwjUHVibGljIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"b2b74d8c5d2ce4f283391974773f823f1441c476105a4e78f1b99db3e02f
9528","size":2117,"filename":"tnFqrstaexEa6Zz-CVGGozhI8IF1FafM6uzX3zzHrUI=.pem","location":"security-state-staging/intermediates/b062306c-bad7-433f-bcc1-81512b1194eb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tnFqrstaexEa6Zz+CVGGozhI8IF1FafM6uzX3zzHrUI=","crlite_enrolled":true,"id":"4835ad01-5f2c-4639-abc1-05d2b5279fb5","last_modified":1576536532682},{"schema":1576535515302,"derHash":"lXG/6i8fVy7uNPnumfXlXMei7DobS1K3wyoihIK2zFc=","subject":"CN=Intertek Document Signing Authority,O=Intertek Group plc,C=GB","subjectDN":"MFgxCzAJBgNVBAYTAkdCMRswGQYDVQQKExJJbnRlcnRlayBHcm91cCBwbGMxLDAqBgNVBAMTI0ludGVydGVrIERvY3VtZW50IFNpZ25pbmcgQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"d20e9af16fa1f1de11830ddd2702a3577e2bab498eace1eead436cb9b2e8b063","size":1938,"filename":"YHxb7yqXsZo593tQi7lml-UbIYBZ-nRncrwmyt7z_jU=.pem","location":"security-state-staging/intermediates/0ae0900f-5f8b-42d2-b2b6-8bfb7d688e75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YHxb7yqXsZo593tQ
i7lml+UbIYBZ+nRncrwmyt7z/jU=","crlite_enrolled":false,"id":"9687202f-e5b6-4ba7-bbed-0b1ec1daf218","last_modified":1576536532679},{"schema":1576535516747,"derHash":"U8D8e2Y0ObwCvBRspo7SeX1czEBqSgM3DYhIOA4cKZY=","subject":"CN=Dodo Sign TLS ICA ECC R1,O=Dodo Sign Ltd,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MHIxCzAJBgNVBAYTAk1VMRgwFgYDVQQIDA9QbGFpbmVzIFdpbGhlbXMxDjAMBgNVBAcMBUViZW5lMRYwFAYDVQQKDA1Eb2RvIFNpZ24gTHRkMSEwHwYDVQQDDBhEb2RvIFNpZ24gVExTIElDQSBFQ0MgUjE=","whitelist":false,"attachment":{"hash":"ec04a4b626598cf051a07300496777b8ce46ba637f9f30d3f1dd8b58ae418fe6","size":1288,"filename":"gfr73neHKDZwYTmqZKhKtCIUMzhBNbVvVRuE1GZiSaw=.pem","location":"security-state-staging/intermediates/4f3693ee-a00e-4bd8-8b08-9d368b3d9b64.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gfr73neHKDZwYTmqZKhKtCIUMzhBNbVvVRuE1GZiSaw=","crlite_enrolled":false,"id":"b281f90d-4780-4454-a47e-7aa979cc9791","last_modified":1576536532675},{"schema":1576535513673,"derHash":"uP/ATIaxUEHbjzqtpH/q8JfoWQ
qvKKDlnNutt3VqZjQ=","subject":"CN=thawte Primary G3 Transition Root,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSowKAYDVQQDEyF0aGF3dGUgUHJpbWFyeSBHMyBUcmFuc2l0aW9uIFJvb3Q=","whitelist":false,"attachment":{"hash":"dbc16836cd8731b78eb02f959a8c5a226e73133b8e253e8608ded9dd176ee060","size":1321,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/19fd9bb8-2f32-4d65-bc2f-3e4289158d4d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"7cec5d36-de25-4e2c-92e5-f32afca6422f","last_modified":1576536532672},{"schema":1576535510916,"derHash":"MKqFj/PGdSZLs60Ed1feX8MHgZWswjh2tFjnqjUEmes=","subject":"SERIALNUMBER=202018,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uV
i4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDE4","whitelist":false,"attachment":{"hash":"6eee99c35c359ebfcd92b16092336017ae404339b3791de0aa56d50c02de20e9","size":2333,"filename":"F8qyHHv8MJtO-mb8tPNzX7jrf8zI4r_nHFRexuJgd9Q=.pem","location":"security-state-staging/intermediates/fda13208-5fb7-4d01-82e5-1b954ba9b283.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F8qyHHv8MJtO+mb8tPNzX7jrf8zI4r/nHFRexuJgd9Q=","crlite_enrolled":false,"id":"9dc1119e-7e46-4b76-915c-6a22a5706102","last_modified":1576536532668},{"schema":1576535509540,"derHash":"TJ0+I9iCkFiUl8NU8FIiA+8tlZ8/dgciV2rHxiIv5C0=","subject":"CN=OneSign RSA Client Authentication and Secure Email CA,O=One Sign Pte. Ltd.,L=Singapore,ST=Singapore,C=SG","subjectDN":"MIGSMQswCQYDVQQGEwJTRzESMBAGA1UECBMJU2luZ2Fwb3JlMRIwEAYDVQQHEwlTaW5nYXBvcmUxGzAZBgNVBAoTEk9uZSBTaWduIFB0ZS4gTHRkLjE+MDwGA1UEAxM1T25lU2lnbiBSU0EgQ2xpZW50IEF1dGhlbnRpY2F0aW9uIGFuZCBTZWN1cmUgRW1haWwgQ0E=","whitelist":false,"attachment":{"hash":"0be83fe64c644
cd30c1406de27e2a54ffe81b680b83cc329d886b1b2e95dfaf8","size":2166,"filename":"UbiEkYnpeEuDUAY38CtS5DK4aXovgdeK95X0LBk3N_o=.pem","location":"security-state-staging/intermediates/128a5920-e2e5-4b28-a24e-8acdf37e05fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UbiEkYnpeEuDUAY38CtS5DK4aXovgdeK95X0LBk3N/o=","crlite_enrolled":false,"id":"8da7888f-9413-4e57-a97f-aa917c25d4ca","last_modified":1576536532664},{"schema":1576535503850,"derHash":"ujYSYP8dRgMWhjBeCC3oNtSjIEZuDengE/AM3t3WIxc=","subject":"CN=DigiCert Global Client CA G3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IEdsb2JhbCBDbGllbnQgQ0EgRzM=","whitelist":false,"attachment":{"hash":"555946571b12b9ab7e2734e4ecebf68a7935cc0d40a358be3d6474d971b56c9f","size":1451,"filename":"QfXubDxBsxQ0e_T0TZ377rKOF8NOU9JZSTSOaOBNNVU=.pem","location":"security-state-staging/intermediates/87d0e70e-5e2c-4f1b-bdf9-c8443e1f38
56.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QfXubDxBsxQ0e/T0TZ377rKOF8NOU9JZSTSOaOBNNVU=","crlite_enrolled":false,"id":"830a6fb0-b074-4eb8-85eb-85de0f03e55e","last_modified":1576536532650},{"schema":1576535499570,"derHash":"iKBwc9RScGncnpeAU/NXKXBcBYMCZI7QLl/OZWFFnmE=","subject":"CN=DigiCert Universal Transition Root,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBVbml2ZXJzYWwgVHJhbnNpdGlvbiBSb290","whitelist":false,"attachment":{"hash":"d9217061d8cff01ff6b7275eb4591f00e32d8aadf1fb0695999ff14597211202","size":1756,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/b9e17518-7c43-41a2-855f-b4eec55fd32f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"00d91a48-e1b8-4d9a-b3fc-0a777a762044","last_modified":1576
536532639},{"schema":1576535498133,"derHash":"QWeLiJfmNd6gO25IVl4me6Wqw7j03Et0t6CpdIz9014=","subject":"CN=DigitalSign Qualified CA - G4,OU=Class 2 DigiCert PKI Platform Individual Subscriber CA,O=DigitalSign - Certificadora Digital,C=PT","subjectDN":"MIGkMQswCQYDVQQGEwJQVDEsMCoGA1UEChMjRGlnaXRhbFNpZ24gLSBDZXJ0aWZpY2Fkb3JhIERpZ2l0YWwxPzA9BgNVBAsTNkNsYXNzIDIgRGlnaUNlcnQgUEtJIFBsYXRmb3JtIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTEmMCQGA1UEAxMdRGlnaXRhbFNpZ24gUXVhbGlmaWVkIENBIC0gRzQ=","whitelist":false,"attachment":{"hash":"e56f4437043f71e151d0d3f245590c77186eac4683a312733e8a9677ed235dc9","size":2280,"filename":"HA7gqrL9Koo73WVyp4BRDRAeWpsT9I2GiRiBbpD0lMI=.pem","location":"security-state-staging/intermediates/41219887-d4bf-48c9-9a9e-bb89a747b0d9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HA7gqrL9Koo73WVyp4BRDRAeWpsT9I2GiRiBbpD0lMI=","crlite_enrolled":false,"id":"a3996fb4-2015-4418-8297-05a8746272a2","last_modified":1576536532636},{"schema":1576535496701,"derHash":"uaiFMJ5s8yFvtmJJB8
YGbZmZvDDREJyuT/M4gNXfNJQ=","subject":"SERIALNUMBER=202003,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDAz","whitelist":false,"attachment":{"hash":"58f58c3cf17d7945abc83902b9f2678a79391eb5456d2b1c3efd3e5443dce15e","size":2333,"filename":"UobzRk-EBZtLQBfzMMAEk5fOkG1ShzOH3Qlw34ErLsA=.pem","location":"security-state-staging/intermediates/2ddb692a-500f-4fba-ab72-4a6e8a4b0541.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UobzRk+EBZtLQBfzMMAEk5fOkG1ShzOH3Qlw34ErLsA=","crlite_enrolled":false,"id":"f5b1872a-fb99-4559-b0ee-faa1166caa4e","last_modified":1576536532632},{"schema":1576535493678,"derHash":"peJBV9FBq9Bp86I7wwVtxPRsZo+8GqbpwDCmOBYIkIY=","subject":"SERIALNUMBER=202012,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETM
BEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDEy","whitelist":false,"attachment":{"hash":"08c06e256f98afb4d9806d52e8f1a2b9cc165fa03702ad012b07cdd37f837621","size":2333,"filename":"3RdyBMMkedoxCUDA86JqdijXazSIloqW4_vNeBGZiCA=.pem","location":"security-state-staging/intermediates/cfdd00b1-4a8e-4641-bb24-31945e7273b2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3RdyBMMkedoxCUDA86JqdijXazSIloqW4/vNeBGZiCA=","crlite_enrolled":false,"id":"37becd26-64a0-4453-b1a8-0eac48c4d3a3","last_modified":1576536532625},{"schema":1576535490873,"derHash":"Pq1PcvBvEFSIHSco3gM6jhP63mvRZQhAGOuUPBc3jao=","subject":"CN=UZI-register Zorgverlener CA G3,O=CIBG,C=NL","subjectDN":"MF8xCzAJBgNVBAYTAk5MMQ0wCwYDVQQKDARDSUJHMRcwFQYDVQRhDA5OVFJOTC01MDAwMDUzNTEoMCYGA1UEAwwfVVpJLXJlZ2lzdGVyIFpvcmd2ZXJsZW5lciBDQSBHMw==","whitelist":false,"attachment":{"hash":"329164edbb1b27621bd02bae2add97fcdcdabe45f217ab352c27f446203676e1","size":2536,"filename":"LJbktDpUTtQFxix-TH4PidTGLrt1SGxWZUTWK8SCn9Q=.pem","location":"se
curity-state-staging/intermediates/58e65d2f-9c20-46d6-8b43-0497398cbe0c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LJbktDpUTtQFxix+TH4PidTGLrt1SGxWZUTWK8SCn9Q=","crlite_enrolled":false,"id":"7a4c15d1-a236-488f-9ad0-a2c5a64937bb","last_modified":1576536532618},{"schema":1576535500999,"derHash":"38zb8HfRQteSP2MW3UEeRix6i8BHgfK4cGWlxeJYp+A=","subject":"CN=SafeToOpen TLS ICA RSA R1,O=SafeToOpen Ltd,C=NZ","subjectDN":"MEoxCzAJBgNVBAYTAk5aMRcwFQYDVQQKDA5TYWZlVG9PcGVuIEx0ZDEiMCAGA1UEAwwZU2FmZVRvT3BlbiBUTFMgSUNBIFJTQSBSMQ==","whitelist":false,"attachment":{"hash":"08e4db6360bbce20665833a4342083987eea5f8cdc3e66fc6fc0292fcb38b032","size":2434,"filename":"uQ4czJaJhrriBdIxl7SyPwX8Wy4z12aj9ZqCb3mdYpo=.pem","location":"security-state-staging/intermediates/8e22945f-abae-4998-9dd4-d3dd5f4f878d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uQ4czJaJhrriBdIxl7SyPwX8Wy4z12aj9ZqCb3mdYpo=","crlite_enrolled":true,"id":"74d8f446-fb98-4c65-8f25-c0c00d3aab68","last_modified":1576536532
610},{"schema":1576535485113,"derHash":"GKQ8UdCBdMOm2F8cExi9KQl1PnXZHPZZn3M0ewBwKJA=","subject":"SERIALNUMBER=Q2826004J,CN=AC Administraci\u00f3n P\u00fablica,OU=CERES,O=FNMT-RCM,C=ES","subjectDN":"MGoxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ0VSRVMxEjAQBgNVBAUTCVEyODI2MDA0SjEkMCIGA1UEAwwbQUMgQWRtaW5pc3RyYWNpw7NuIFDDumJsaWNh","whitelist":false,"attachment":{"hash":"b1b8087026dcff96160076000ab8ec70cb29448880359f0ce676c987951eea3d","size":2438,"filename":"uoKUEuwkPtDw_4xcvGkwXVXs-8X9iESzjMRl18SDGV0=.pem","location":"security-state-staging/intermediates/b3020299-7dbb-43c6-97f7-e87736a45fc9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uoKUEuwkPtDw/4xcvGkwXVXs+8X9iESzjMRl18SDGV0=","crlite_enrolled":true,"id":"aabec165-9b72-4d6a-8fa8-d4eeb29669f0","last_modified":1576536532600},{"schema":1576535483615,"derHash":"q8hnBsmNa/ZzcvkI7AGt9jGxkdczron4ND6wR7EIFEs=","subject":"CN=DexKo Global SMIME CA 2019,O=DexKo Global Inc.,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRowGA
YDVQQKExFEZXhLbyBHbG9iYWwgSW5jLjEjMCEGA1UEAxMaRGV4S28gR2xvYmFsIFNNSU1FIENBIDIwMTk=","whitelist":false,"attachment":{"hash":"6e6ef760c62377e53a22b0da3f25f97f7be656c23736dda53dea01102617cf95","size":1857,"filename":"AHjdlX8_el8CCLz5JKmfBOMMvmJPx7t19z58Cw9zbng=.pem","location":"security-state-staging/intermediates/f82a276e-7fa2-447c-aad5-a331e918bde9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AHjdlX8/el8CCLz5JKmfBOMMvmJPx7t19z58Cw9zbng=","crlite_enrolled":false,"id":"f14ded04-2e06-4b3e-b8ca-3d16e25391d6","last_modified":1576536532596},{"schema":1576535474803,"derHash":"7AxspJamehM0L+xSIfaNSz5Tsbwi9uS8zJxo8EFc3qQ=","subject":"CN=Let's Encrypt Authority X2,O=Let's Encrypt,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQDExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBYMg==","whitelist":false,"attachment":{"hash":"f87a7fc64b76ec8ff49f94aa8ea389cf8c8b37040fca79f64dcbcac12a49586d","size":1674,"filename":"sRHdihwgkaib1P1gxX8HFszlD-7_gTfNvuAybgLPNis=.pem","lo
cation":"security-state-staging/intermediates/68dfffac-ff48-4aca-935c-22a0f4d36894.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sRHdihwgkaib1P1gxX8HFszlD+7/gTfNvuAybgLPNis=","crlite_enrolled":false,"id":"07674fee-0d0d-440e-a3a1-7f554318a8ca","last_modified":1576536532578},{"schema":1576535471694,"derHash":"SkDUvn+wsF+b3KYLzjg/tZLEkgbbxceE+BnNdPKge+M=","subject":"CN=EC-PARLAMENT,OU=Serveis Publics de Certificacio+OU=Vegeu https://www.catcert.net/verCIC-2 (c)03+OU=Parlament de Catalunya,O=Agencia Catalana de Certificacio (NIF Q-0801176-I),L=Passatge de la Concepcio 11 08008 Barcelona,C=ES","subjectDN":"MIIBGTELMAkGA1UEBhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2VydGlmaWNhY2lvIChOSUYgUS0wODAxMTc2LUkpMTQwMgYDVQQHEytQYXNzYXRnZSBkZSBsYSBDb25jZXBjaW8gMTEgMDgwMDggQmFyY2Vsb25hMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYDVQQLEyxWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJDSUMtMiAoYykwMzEfMB0GA1UECxMWUGFybGFtZW50IGRlIENhdGFsdW55YTEVMBMGA1UEAxMMRUMtUEFSTEFNRU
5U","whitelist":false,"attachment":{"hash":"9a9ee63a0194dbc598a491404da83c06957163a8fe0c70b3649c45a680f332da","size":2320,"filename":"LbXnRYPxl6yNMAXHjj6wiyi3rAmcF-GQQrZtCBAentM=.pem","location":"security-state-staging/intermediates/83499263-b834-4622-bb97-580ab14ab723.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LbXnRYPxl6yNMAXHjj6wiyi3rAmcF+GQQrZtCBAentM=","crlite_enrolled":false,"id":"9b0777fb-4e6d-413b-a3dd-5ee301810d9b","last_modified":1576536532570},{"schema":1576535476283,"derHash":"p0sMMrZblf4sT48JiUemi2lQM77QtR3YuYTsrolXG7Y=","subject":"CN=Let's Encrypt Authority X4,O=Let's Encrypt,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQDExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBYNA==","whitelist":false,"attachment":{"hash":"86e7dd996382dd285f7661e48620de68d357e550b0745d5154781c7e4df1074e","size":1646,"filename":"sRHdihwgkaib1P1gxX8HFszlD-7_gTfNvuAybgLPNis=.pem","location":"security-state-staging/intermediates/47db9996-ee4b-4494-92ef-73eda080d4
2a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sRHdihwgkaib1P1gxX8HFszlD+7/gTfNvuAybgLPNis=","crlite_enrolled":false,"id":"8d00314d-e387-477e-af43-6e68d3c1b1b6","last_modified":1576536532567},{"schema":1576535467347,"derHash":"9V+f/Lg8c0UyYWAcfgRNsVoPA0uTwFgw8oY174ic9nA=","subject":"CN=Amazon,OU=Server CA 1B,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"37adce7ce3a304a9a05f1f1f66ba3242182c5165a762ea08dab41ed3eb9b76f3","size":1544,"filename":"JSMzqOOrtyOT1kmau6zKhgT676hGgczD5VMdRMyJZFA=.pem","location":"security-state-staging/intermediates/e974e18f-9dbd-443f-ad0e-843d3b3588b0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JSMzqOOrtyOT1kmau6zKhgT676hGgczD5VMdRMyJZFA=","crlite_enrolled":true,"id":"aa9b7129-b8e6-4ae5-b00f-5a7d58046865","last_modified":1576536532563},{"schema":1576535464512,"derHash":"5XIIy/0obOlxgmfkRJHLW0NclbsJ3Jcg9bZLJax5dM0=","s
ubject":"CN=DigiCert Assured ID Code Signing CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLjAsBgNVBAMTJURpZ2lDZXJ0IEFzc3VyZWQgSUQgQ29kZSBTaWduaW5nIENBLTE=","whitelist":false,"attachment":{"hash":"7160a1203edefe6cdb7dde107be2606128ce7bed16da9e11d5999d17ec003921","size":2357,"filename":"RElq7qZGBSzuZ3oQFuu4t-dh5QqmqZDyU-EAqeRVfJ4=.pem","location":"security-state-staging/intermediates/8fc6e3b5-78f6-4638-8253-27ee2e7e031a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RElq7qZGBSzuZ3oQFuu4t+dh5QqmqZDyU+EAqeRVfJ4=","crlite_enrolled":false,"id":"339bd4fd-f044-40eb-b55d-92b7d38c137b","last_modified":1576536532560},{"schema":1576535470193,"derHash":"frRF6jikamQR8KEqDhbNPQc+kbElZ5l3BB/7zoO+PBo=","subject":"CN=OKCERT R4 DV SSL CA G2,OU=Kingnettech,O=Kingnet Information Technology Co.\\, Ltd.,C=CN","subjectDN":"MHcxCzAJBgNVBAYTAkNOMTEwLwYDVQQKDChLaW5nbmV0IEluZm9ybWF0aW9uIFRlY2hub2xvZ3k
gQ28uLCBMdGQuMRQwEgYDVQQLDAtLaW5nbmV0dGVjaDEfMB0GA1UEAwwWT0tDRVJUIFI0IERWIFNTTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"857ccc0777952ba7b08a36e3f5c6ace78f7260f270402953c6a16a68d3690e2a","size":1776,"filename":"Y9JE2NiQ3ArheJd2k5RFD7JxnbQzgfJYS2Z0JfG64Uo=.pem","location":"security-state-staging/intermediates/4b034577-3c79-416d-9af6-374a4c0b5405.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y9JE2NiQ3ArheJd2k5RFD7JxnbQzgfJYS2Z0JfG64Uo=","crlite_enrolled":true,"id":"9dfe1a67-5cce-4d31-a077-99d8791d279d","last_modified":1576536532556},{"schema":1576535465886,"derHash":"UtnfGzqxncGd8MQFkagy0aNHMcKA4pZkS5YwpIYTUtw=","subject":"SERIALNUMBER=202020,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAyMDIw","whitelist":false,"attachment":{"hash":"efa4a8fe8f77910f0ba97261dd229810331d2057180f6a263b06ab238a56cce2","size":2333,"filen
ame":"Dc-eCaAIIzKUTOxxbCJR_Q1XbU4XPdnAPaZrNBwsz4s=.pem","location":"security-state-staging/intermediates/5d61ee8f-24a7-4669-8345-a93e77ae00e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Dc+eCaAIIzKUTOxxbCJR/Q1XbU4XPdnAPaZrNBwsz4s=","crlite_enrolled":false,"id":"5c2785f7-cb84-413d-8cc2-e7cd5ea85b3e","last_modified":1576536532552},{"schema":1576535468794,"derHash":"UmJRhV4femM3wPNyDJ8yOHCm4BTGj4jteWw/e2n1t5M=","subject":"CN=COMODO Name Constraints Testing CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGFMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDErMCkGA1UEAxMiQ09NT0RPIE5hbWUgQ29uc3RyYWludHMgVGVzdGluZyBDQQ==","whitelist":false,"attachment":{"hash":"a1bc51c8f527415890294e4c206d2ee571e40e60ed19bb1e45e327745f2ec267","size":1951,"filename":"jqMnv-0IEzdGPwNerQxiv2wxmlCcGT7awRI5CPRdDmE=.pem","location":"security-state-staging/intermediates/ffb0c961-02cc-4fd0-b678-54d536adca31.p
em","mimetype":"application/x-pem-file"},"pubKeyHash":"jqMnv+0IEzdGPwNerQxiv2wxmlCcGT7awRI5CPRdDmE=","crlite_enrolled":false,"id":"b64380c5-1f6a-4f0a-bc6e-11a506873c41","last_modified":1576536532548},{"schema":1576535461580,"derHash":"k4xFV1ibcmPVmy8Pa4TL6yfvubI7pyTrPM1bfipYcW8=","subject":"CN=Trend Micro CA,O=Trend Micro Inc,C=US","subjectDN":"MEAxCzAJBgNVBAYTAlVTMRgwFgYDVQQKDA9UcmVuZCBNaWNybyBJbmMxFzAVBgNVBAMMDlRyZW5kIE1pY3JvIENB","whitelist":false,"attachment":{"hash":"768970dda8922e6ebf07cc524aaa977361d022fe143b092afeba179ec36c7f8d","size":1602,"filename":"qczcaUM72BvrELfBo2n2WlYnwx7A5w4eV0dgYXXe1Bk=.pem","location":"security-state-staging/intermediates/ed9d84de-064e-41d2-8681-3ac181eebe73.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qczcaUM72BvrELfBo2n2WlYnwx7A5w4eV0dgYXXe1Bk=","crlite_enrolled":false,"id":"a87b472d-be5c-496b-a98b-6df181566b82","last_modified":1576536532545},{"schema":1576535460116,"derHash":"rxiY1/Bjh1HAddAULU4qDqcx/GIjJPFT/hvztq/ZrxM=","subject":"C
N=DPDHL User CA I3,O=Deutsche Post,L=Bonn,ST=Nordrhein-Westfalen,C=DE","subjectDN":"MG0xCzAJBgNVBAYTAkRFMRwwGgYDVQQIExNOb3JkcmhlaW4tV2VzdGZhbGVuMQ0wCwYDVQQHEwRCb25uMRYwFAYDVQQKEw1EZXV0c2NoZSBQb3N0MRkwFwYDVQQDExBEUERITCBVc2VyIENBIEkz","whitelist":false,"attachment":{"hash":"db7cbd2598eed19261df59b9537f65a933ee5e3acf9d91abd8b284f4ddad2d90","size":4039,"filename":"U24C-tQ5-xqZXjJsjWmKnA3KCkx84xBNSPzVCzpko_A=.pem","location":"security-state-staging/intermediates/88f7058d-853e-4eab-98bc-8195c5c54535.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U24C+tQ5+xqZXjJsjWmKnA3KCkx84xBNSPzVCzpko/A=","crlite_enrolled":false,"id":"f20fecad-a88e-46ac-897b-f2f4f750d9b3","last_modified":1576536532540},{"schema":1576535463138,"derHash":"wBljBZBwyyMG9LSGzPFQM1kgnphJnIEMK0nibjGkvXQ=","subject":"CN=GlobalSign CA 3 for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"MEsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSEwHwYDVQQDExhHbG9iYWxTaWduIENBIDMgZm9yIEFBVEw=","whitelist":false,"attachment":{
"hash":"9e1c97c3c6f261707f3456f641117268b30609284db6d243177b47277422c123","size":1670,"filename":"RI4ORwwbrz7iTK-Bub6gGw9N1yaxwBY2kdx8dAAXKBo=.pem","location":"security-state-staging/intermediates/35ce22d9-16b3-4623-83ae-2d36944c1604.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RI4ORwwbrz7iTK+Bub6gGw9N1yaxwBY2kdx8dAAXKBo=","crlite_enrolled":false,"id":"0e67c136-94b1-4dff-9e85-e269cba38b1a","last_modified":1576536532537},{"schema":1576535458597,"derHash":"AsSjAKCcG4k7EflWdlmvlbu5u+eVOJPjbFuvF7VVzuM=","subject":"CN=Certigna Identity Plus CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MIGCMQswCQYDVQQGEwJGUjESMBAGA1UECgwJREhJTVlPVElTMRwwGgYDVQQLDBMwMDAyIDQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQRhDBROVFJGUi00ODE0NjMwODEwMDAzNjEiMCAGA1UEAwwZQ2VydGlnbmEgSWRlbnRpdHkgUGx1cyBDQQ==","whitelist":false,"attachment":{"hash":"4f9b8c5d9910a9c5057de2bdaa15c263ccc9194055f0f6d438f7dd65e0000884","size":2178,"filename":"ywhSp1oF34bfFheBzKO3KqbsXi-qQbyfXu94SMYBxwg=.pem","location":"security-stat
e-staging/intermediates/a9861ffb-3a18-416a-b622-b2317ad102ed.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ywhSp1oF34bfFheBzKO3KqbsXi+qQbyfXu94SMYBxwg=","crlite_enrolled":false,"id":"cd3a316e-5ab3-425f-9bd1-f6ef6ab8e077","last_modified":1576536532530},{"schema":1576536129891,"derHash":"JOVvSGBERtioNztDyinRocSXcuWquounwXZivWDajfY=","subject":"SERIALNUMBER=ZZZZZZV0,CN=Siemens Internet CA V1.0,OU=Copyright (C) Siemens AG 2011 All Rights Reserved,O=Siemens,C=DE","subjectDN":"MIGRMQswCQYDVQQGEwJERTEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaVjAxOjA4BgNVBAsMMUNvcHlyaWdodCAoQykgU2llbWVucyBBRyAyMDExIEFsbCBSaWdodHMgUmVzZXJ2ZWQxITAfBgNVBAMMGFNpZW1lbnMgSW50ZXJuZXQgQ0EgVjEuMA==","whitelist":false,"attachment":{"hash":"11c8c1af993fd49e1d65508fa79b88655f291aabdc36b8721da6f945bdc405bf","size":1752,"filename":"rQOD_jrRH5t2JxCWlRagCWxoDrKXhsLELQ-GrW6LeRI=.pem","location":"security-state-staging/intermediates/af88eecd-44f5-40b7-8894-4af88bccad18.pem","mimetype":"application/x-pem-file"},"
pubKeyHash":"rQOD/jrRH5t2JxCWlRagCWxoDrKXhsLELQ+GrW6LeRI=","crlite_enrolled":false,"id":"87540db7-8b67-47b6-9194-744d32ff9b43","last_modified":1576536532512},{"schema":1576536085205,"derHash":"zPSXrgDaWh5agidWuOjwOOANUtxD7S9dM2J5CXMr4L0=","subject":"CN=CertCenter Enterprise ECC OV CA,O=CertCenter AG,L=Giessen,ST=Hessen,C=DE","subjectDN":"MHIxCzAJBgNVBAYTAkRFMQ8wDQYDVQQIEwZIZXNzZW4xEDAOBgNVBAcTB0dpZXNzZW4xFjAUBgNVBAoTDUNlcnRDZW50ZXIgQUcxKDAmBgNVBAMTH0NlcnRDZW50ZXIgRW50ZXJwcmlzZSBFQ0MgT1YgQ0E=","whitelist":false,"attachment":{"hash":"ee2787fc54c594fa045213e347f917704a15e0ee9f6dba2054aafcfc80442b6d","size":1297,"filename":"bzjbLG4lOPyzYixFbEQ90vuRtQ04e0wlcXN7_CMDiqo=.pem","location":"security-state-staging/intermediates/b868b5dd-e624-413d-b9e5-61564e90b21f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bzjbLG4lOPyzYixFbEQ90vuRtQ04e0wlcXN7/CMDiqo=","crlite_enrolled":false,"id":"4ab3adfc-d739-4e1b-92c8-c0d1d2898090","last_modified":1576536532486},{"schema":1576536109129,"derHash
":"ehQrGl4WIVGDoT6ECoYqQ34pPZNmkh2wfttU8TisDXg=","subject":"CN=TrustAsia OV SSL CA - C3,O=TrustAsia Technologies Inc.,C=CN","subjectDN":"MFYxCzAJBgNVBAYTAkNOMSQwIgYDVQQKDBtUcnVzdEFzaWEgVGVjaG5vbG9naWVzIEluYy4xITAfBgNVBAMMGFRydXN0QXNpYSBPViBTU0wgQ0EgLSBDMw==","whitelist":false,"attachment":{"hash":"bfb83a4526e35f2dc8e07512d6f16dfffedccf8e3263aebf657edd6423d54673","size":1691,"filename":"hEZRb0aBfyh_1yoi7II2m0TQ_JCkJgWwfLZni7lZUHY=.pem","location":"security-state-staging/intermediates/200bc2a0-44c0-40f1-b810-696bea5c140a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hEZRb0aBfyh/1yoi7II2m0TQ/JCkJgWwfLZni7lZUHY=","crlite_enrolled":false,"id":"c6d61ecf-df03-455e-b621-1a69e4c44ab9","last_modified":1576536532463},{"schema":1576536111049,"derHash":"F2rr8pcr1vRxee3j3mOEixVDtFrilUvqRRhbFSU3ucQ=","subject":"CN=Hongkong Post Root CA 3,O=Hongkong Post,L=Hong Kong,ST=Hong Kong,C=HK","subjectDN":"MG8xCzAJBgNVBAYTAkhLMRIwEAYDVQQIEwlIb25nIEtvbmcxEjAQBgNVBAcTCUhvbmcgS29uZzEWMBQGA1UEChMNSG9u
Z2tvbmcgUG9zdDEgMB4GA1UEAxMXSG9uZ2tvbmcgUG9zdCBSb290IENBIDM=","whitelist":false,"attachment":{"hash":"b4ba7c31c249eb874c39b6a3e78147e6623a6ccbab1429cce2313067069229b7","size":2020,"filename":"JUHlO6WzsHrL5wl6xKA-BAwRz3ptSmfLIT1Vi1AWegY=.pem","location":"security-state-staging/intermediates/15934ce0-b66f-41d1-9cc3-4f83f0c22828.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JUHlO6WzsHrL5wl6xKA+BAwRz3ptSmfLIT1Vi1AWegY=","crlite_enrolled":false,"id":"78e6c5d3-d8b9-4d7e-b67b-b08391bf0d23","last_modified":1576536532457},{"schema":1576536110684,"derHash":"BuXewxyR19M0NSAdLiIRbCBxk6h04KQmUyovaVMMhrU=","subject":"CN=SwissSign Server Silver CA 2008 - G2,O=SwissSign AG,C=CH","subjectDN":"MFMxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxLTArBgNVBAMTJFN3aXNzU2lnbiBTZXJ2ZXIgU2lsdmVyIENBIDIwMDggLSBHMg==","whitelist":false,"attachment":{"hash":"dae13d2d8c181bf4ec65a316a2ba892ac9d49b530d749454a41b697b93c0e4ad","size":2276,"filename":"pdw-szkFhaLHw56vsd_eV19nZd8tlYabs6ie9lk3vz0=.pem","loc
ation":"security-state-staging/intermediates/a8e67472-ca0f-418d-8e14-eded55f5c9b6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pdw+szkFhaLHw56vsd/eV19nZd8tlYabs6ie9lk3vz0=","crlite_enrolled":false,"id":"626a64c6-27bd-4788-ac43-961a6c286a2f","last_modified":1576536532446},{"schema":1576536114489,"derHash":"ultuXf69rhyAvXJ5C8hbzGU4q0YTAj2nBs6CZBX15bM=","subject":"CN=DigiCert TLS ICA VRSN Universal,OU=www.digicert.com,O=DigiCert\\, Inc.,C=US","subjectDN":"MGsxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEoMCYGA1UEAxMfRGlnaUNlcnQgVExTIElDQSBWUlNOIFVuaXZlcnNhbA==","whitelist":false,"attachment":{"hash":"aeb637f50e3be97e9cd0a8cd4338c79685bc9385f9eefd1c71be433f0880aafc","size":1760,"filename":"syraymM-04Pk6mIoR9bwWpSF7IexVaZZTkmETpWCe50=.pem","location":"security-state-staging/intermediates/583c8c31-1235-464a-bfaf-2066acd4e1ff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"syraymM+04Pk6mIoR9bwWpSF7IexVaZZTkmETpWCe50=","crlite_enr
olled":true,"id":"2bdacac2-2d88-4a2a-8592-2179c09c6c99","last_modified":1576536532435},{"schema":1576536097332,"derHash":"DWhporT133emr7A0Il6b7zRXQ88wbt827jW50Fr62Jw=","subject":"CN=emSign ECC CS CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGkxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMR4wHAYDVQQDExVlbVNpZ24gRUNDIENTIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"5deb0c464051d5e32daa2afa7cbadc82f6c069bab3db03b8117ad1300b8efda4","size":1167,"filename":"ChGUm4JufQCgxfjTELLQ1T93-EAuA3QrcKKFUAlKCdo=.pem","location":"security-state-staging/intermediates/c488046a-1f5d-4763-bc70-ec75ed1cde37.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ChGUm4JufQCgxfjTELLQ1T93+EAuA3QrcKKFUAlKCdo=","crlite_enrolled":false,"id":"355bd93e-e57b-4170-916c-7d12208880f5","last_modified":1576536532411},{"schema":1576536130303,"derHash":"RS6EVSQQ1D3liEmeM7tdKNXnm4cXBklqP0JC6FS5Cls=","subject":"CN=Athens University of
Economics and Business CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGPMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxOjA4BgNVBAMTMUF0aGVucyBVbml2ZXJzaXR5IG9mIEVjb25vbWljcyBhbmQgQnVzaW5lc3MgQ0EgUjI=","whitelist":false,"attachment":{"hash":"06410ad96ec056a34da29d0d86aca4b26e3a19fc5ae4df404e2443c0d36c688f","size":2552,"filename":"kE-j5ZgeypLRoFQ30V9GkRmfWhTimO6x5iKj24k9ovc=.pem","location":"security-state-staging/intermediates/fe193b1e-2de1-4771-9e79-df47a6e849de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kE+j5ZgeypLRoFQ30V9GkRmfWhTimO6x5iKj24k9ovc=","crlite_enrolled":true,"id":"60d94adc-b93d-44b3-8824-05e7d33b94e3","last_modified":1576536532398},{"schema":1576536118729,"derHash":"izWEZtZhJjEhIGRaWHWmpX48gdmEdqlnYEJEJU6sAPA=","subject":"CN=Amazon Root CA 2,O=Amazon,C=US","subjectDN":"MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDI=","
whitelist":false,"attachment":{"hash":"099a90f379b0ecca696c3cde0f60b64211dbaafa0ce4ae4b1b13e1dc145c4f27","size":1991,"filename":"f0KW_FtqTjs108NpYj42SrGvOB2PpxIVM8nWxjPqJGE=.pem","location":"security-state-staging/intermediates/b138d0b5-195f-401a-8c97-1bd007ddf648.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"f0KW/FtqTjs108NpYj42SrGvOB2PpxIVM8nWxjPqJGE=","crlite_enrolled":false,"id":"4a7d284b-1295-4ae6-af24-7de01c05ab0d","last_modified":1576536532395},{"schema":1576536107246,"derHash":"cpVqHFql2RrGnNYxB6JaoYQ4Gd3CHFEI7B2X8yKWA84=","subject":"CN=USERTrust ECC Domain Validation Secure Server CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGTMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE5MDcGA1UEAxMwVVNFUlRydXN0IEVDQyBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"2a6313c6f238488f62807d206801b298319fe9aadc79bea5d1cb52261d84102a","size":1
333,"filename":"-orpYE2E52U2_GRvH4NTBMqU6WeiGaMHjrIRWT8JypY=.pem","location":"security-state-staging/intermediates/a4a30987-f9be-4178-80b7-093289d197b3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+orpYE2E52U2/GRvH4NTBMqU6WeiGaMHjrIRWT8JypY=","crlite_enrolled":false,"id":"e697d669-10e9-4820-af92-62a85ce2e0a3","last_modified":1576536532387},{"schema":1576536081355,"derHash":"728p9jb2K91HUxIvQfNBnufCh3WHvkqYB631iUZFjn8=","subject":"CN=Telia Root CA v2,O=Telia Finland Oyj,C=FI","subjectDN":"MEQxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEZMBcGA1UEAwwQVGVsaWEgUm9vdCBDQSB2Mg==","whitelist":false,"attachment":{"hash":"ef7efd4cbf4031585f1a5951e9b5d6bac8a753a47e1861138b45eaaf0f441821","size":2284,"filename":"wrPDGkophQqo889HKhFp_3G0FlefakSC7HdEuD35iKw=.pem","location":"security-state-staging/intermediates/9808e62b-cdbd-44b3-941f-6f29f249116a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wrPDGkophQqo889HKhFp/3G0FlefakSC7HdEuD35iKw=","crlite_enrolled":false,"id
":"8adb25e4-ae4d-4bdd-aa24-a1b07637fb72","last_modified":1576536532385},{"schema":1576536095821,"derHash":"iyVXlJH4XPV37CFyz60tskyiJVdC5uU0HPBuLL7F2QY=","subject":"CN=EUNETIC - EuropeanSSL Extended Validation Server CA 2,OU=Controlled by COMODO exclusively for EUNETIC GmbH,O=EUNETIC GmbH,L=Durmersheim,ST=Baden-W\u00fcrttemberg,C=DE","subjectDN":"MIHTMQswCQYDVQQGEwJERTEbMBkGA1UECAwSQmFkZW4tV8O8cnR0ZW1iZXJnMRQwEgYDVQQHEwtEdXJtZXJzaGVpbTEVMBMGA1UEChMMRVVORVRJQyBHbWJIMTowOAYDVQQLEzFDb250cm9sbGVkIGJ5IENPTU9ETyBleGNsdXNpdmVseSBmb3IgRVVORVRJQyBHbWJIMT4wPAYDVQQDEzVFVU5FVElDIC0gRXVyb3BlYW5TU0wgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZXJ2ZXIgQ0EgMg==","whitelist":false,"attachment":{"hash":"b32469934418bb2a41ae410f7cf1b81f731ab25583637ac43feedf2f48d3db72","size":2284,"filename":"nWdB0jAAGzhZiLNjLocqdxL16ZnFE4xjHkhnauNoK-A=.pem","location":"security-state-staging/intermediates/ff46e186-87f9-434d-a8c8-dfe148c39f56.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nWdB0jAAGzhZiLNjLocqdxL16ZnFE4xjHkhna
uNoK+A=","crlite_enrolled":false,"id":"1c90cd8c-5291-49c3-afbf-9a91c6860b4b","last_modified":1576536532382},{"schema":1576536096203,"derHash":"n6n8tQDxqYNVCZ9wA0zw0u50Orpj9utn1VaF6pBlMos=","subject":"CN=GlobeSSL OV Certification Authority 2,O=Globe Hosting\\, Inc.,L=Wilmington,ST=DE,C=US","subjectDN":"MH0xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJERTETMBEGA1UEBxMKV2lsbWluZ3RvbjEcMBoGA1UEChMTR2xvYmUgSG9zdGluZywgSW5jLjEuMCwGA1UEAxMlR2xvYmVTU0wgT1YgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgMg==","whitelist":false,"attachment":{"hash":"e1ed99b56e89cca5568d4660da394400dfeaaad7eee9761ce8d918ba375252d3","size":2150,"filename":"iaAN4YIvVl4idrHfqCHBL-dZTUISZ2ANiVmgZiYqSUY=.pem","location":"security-state-staging/intermediates/9e584cc8-197d-4d8a-8610-9b7b49c2f306.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iaAN4YIvVl4idrHfqCHBL+dZTUISZ2ANiVmgZiYqSUY=","crlite_enrolled":false,"id":"d77ee3af-f063-4cbf-8b9b-f99976780075","last_modified":1576536532374},{"schema":1576536113725,"derHash":"h9zU3HRkCjIs0gVVJQ
bRvmTxJZYlgJZUSYa0hQvHJwY=","subject":"CN=Amazon Root CA 1,O=Amazon,C=US","subjectDN":"MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=","whitelist":false,"attachment":{"hash":"8f2766bb42744fe0fcf37f433c66191277a29d9bd4641cc4121ccf842ecf940c","size":1646,"filename":"--MBgDH5WGvL9Bcn5Be30cRcL0f5O-NyoXuWtQdX1aI=.pem","location":"security-state-staging/intermediates/6e41f0a0-496f-4745-a675-09b997850d04.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"++MBgDH5WGvL9Bcn5Be30cRcL0f5O+NyoXuWtQdX1aI=","crlite_enrolled":false,"id":"a3c4dda1-24a7-46e0-97f3-4ce13eb70857","last_modified":1576536532366},{"schema":1576536131430,"derHash":"1uoQYcKLPblv9bqhQKtXFOawtPXXGrzNJCpJubn03Cc=","subject":"CN=Trust Provider B.V. DV SSL CA - G1,OU=Domain Validated SSL,O=Trust Provider B.V.,C=NL","subjectDN":"MHcxCzAJBgNVBAYTAk5MMRwwGgYDVQQKExNUcnVzdCBQcm92aWRlciBCLlYuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDErMCkGA1UEAxMiVHJ1c3QgUHJvdmlkZXIgQi5WLiBEViBTU0wgQ0EgLSBHMQ==",
"whitelist":false,"attachment":{"hash":"6902fcbf7cbaa6113fef3012c5b4cb6b57eedbecb1246fd4d021980ddd8bb4a7","size":1910,"filename":"3XnCzH5cKkeCxK0I9DpYpRQZ9Cyf6P7e0ks_yr-wMIg=.pem","location":"security-state-staging/intermediates/1099e1c1-4d22-46ec-a2a6-2b6f7d5bc460.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3XnCzH5cKkeCxK0I9DpYpRQZ9Cyf6P7e0ks/yr+wMIg=","crlite_enrolled":false,"id":"d0259003-812c-49cc-bc2f-a76605c14baf","last_modified":1576536532363},{"schema":1576536088977,"derHash":"h8cVU0Res8M8PgcQcRuZ6cd3PwTZGsOKn0wILuJBAeo=","subject":"CN=GlobalSign ECC OV SSL CA 2018,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1HbG9iYWxTaWduIEVDQyBPViBTU0wgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"390a77060a6993d4717518c954c7ca27a2d0f5fbf0e41a6b5af1c798425dcc9c","size":1102,"filename":"KJpedoXG-Rd6IJnYeOJjxUjlaDEDI8K1vCBBgzeJkC4=.pem","location":"security-state-staging/intermediates/87b2c54d-9bb3-4349-af42-
cefe085827c4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KJpedoXG+Rd6IJnYeOJjxUjlaDEDI8K1vCBBgzeJkC4=","crlite_enrolled":true,"id":"9054318d-a1b1-4bd8-b4ea-20ce57f44d1f","last_modified":1576536532346},{"schema":1576536090109,"derHash":"myWmp71RvF9cTwbg0SGP03DdMfr9XNO2J8gvIC8bRlc=","subject":"CN=SSL.com EV SSL Enterprise Intermediate CA RSA R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MH0xCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxOTA3BgNVBAMMMFNTTC5jb20gRVYgU1NMIEVudGVycHJpc2UgSW50ZXJtZWRpYXRlIENBIFJTQSBSMg==","whitelist":false,"attachment":{"hash":"6a19f551792254e07344f7d7c4e7e861f60d6567194233434f62adc62f595f4e","size":2454,"filename":"vcL6kVP3jP8hbTn5A-tyKe1IWIWBFnhvUva3qmvEG2I=.pem","location":"security-state-staging/intermediates/3fb0958a-3a98-489e-b496-28b535b8c59c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vcL6kVP3jP8hbTn5A+tyKe1IWIWBFnhvUva3qmvEG2I=","crlite_enrolled":false,"id":"65d2abf0-ea93-4b8d-
9f45-2b5db33f4074","last_modified":1576536532324},{"schema":1576536101946,"derHash":"q6amXc6JVbrwaFq4iAm3aZwXRJbvnumRUzJRSU9DzhA=","subject":"CN=emSign ECC Class 1 CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MG4xCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMSMwIQYDVQQDExplbVNpZ24gRUNDIENsYXNzIDEgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"08dbb6b7acb073d4854e540ae8a5b481d4a53af8dfa6bbd5167547bab1bbfd6c","size":1146,"filename":"Vi90DKA5oebj_na5AG-8ED2AOxp_ezxWTtviS14jpQ4=.pem","location":"security-state-staging/intermediates/6af4e353-16ba-477f-8e14-bcd1749fbc26.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vi90DKA5oebj/na5AG+8ED2AOxp/ezxWTtviS14jpQ4=","crlite_enrolled":false,"id":"2f009cfb-439c-4999-9f3b-77b9f7f84299","last_modified":1576536532313},{"schema":1576536098122,"derHash":"D1XyiI0WPKxaC2jmzsEJjFgsPO4DiUeryibWMhpmrY8=","subject":"CN=Fuji Xerox Product CA 2 - S,O=Fuji Xerox,C=JP
","subjectDN":"MEgxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MSQwIgYDVQQDExtGdWppIFhlcm94IFByb2R1Y3QgQ0EgMiAtIFM=","whitelist":false,"attachment":{"hash":"4a691b4f9e237d7eaaea8136399d660fbe891126105e9bfe3f0956884bbd34fc","size":1601,"filename":"VB5huVvz3NIuvb6JobC09TJ-Z4tKvVOuqvLZ7m9792w=.pem","location":"security-state-staging/intermediates/ee8a45d5-2b62-47a3-a3bf-bd0a39f1b181.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VB5huVvz3NIuvb6JobC09TJ+Z4tKvVOuqvLZ7m9792w=","crlite_enrolled":false,"id":"08afddd5-844d-4c8d-99f7-fd8629fd2eb0","last_modified":1576536532303},{"schema":1576536090882,"derHash":"m6ZluG4nIfUe8GULcoVoqTwNabVtjTjmMFMOdF1mO08=","subject":"CN=MilleniumSign EV SSL Certificate CA RSA R3,O=MilleniumSign Limited,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGMMQswCQYDVQQGEwJNVTEYMBYGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTMwMQYDVQQDDCpNaWxsZW5pdW1TaWduIEVWIFNTTCBDZXJ0aWZpY2F0ZSBDQSBSU0EgUjM=","whitelist"
:false,"attachment":{"hash":"c2d9efcecdb520559e5d07b646a51f926b8020b4f41b9f42712640a7ca83e215","size":2568,"filename":"Fd9SgizCQBs1fPfz5Y2Z-ByhTYsHK6yT0xbzqrSicsU=.pem","location":"security-state-staging/intermediates/bc7b9946-608d-4516-ab44-46715a90f0bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Fd9SgizCQBs1fPfz5Y2Z+ByhTYsHK6yT0xbzqrSicsU=","crlite_enrolled":false,"id":"945a7a27-6220-4db0-a327-1b00830d3cab","last_modified":1576536532298},{"schema":1576536108745,"derHash":"81Ft3MivyAh4i9iw6EC9orXiPGJEJSyjAAu2yHFwQCo=","subject":"CN=Symantec SHA256 TimeStamping CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MHcxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEoMCYGA1UEAxMfU3ltYW50ZWMgU0hBMjU2IFRpbWVTdGFtcGluZyBDQQ==","whitelist":false,"attachment":{"hash":"f6d7d6142a404fb7f198a9deab5fa8cebdd00388a6f9ed5db9f9955c9d6c8783","size":1869,"filename":"-6bBVDoKjNHndL1ldZpf1QyIXiLIV4dUkciVo24ddLw=.pem",
"location":"security-state-staging/intermediates/0e83b85f-9d85-4404-8403-e9292f674f6f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+6bBVDoKjNHndL1ldZpf1QyIXiLIV4dUkciVo24ddLw=","crlite_enrolled":false,"id":"8cf1f488-3cd4-4c5b-9414-22ff2ba90b1b","last_modified":1576536532288},{"schema":1576536124596,"derHash":"3IW4p987GGIXSqb8lxQ8npzCLW8Zp3bVxX5cHfcA2VE=","subject":"CN=SSL.com Object CA,OU=www.ssl.com,O=SSL.com,C=US","subjectDN":"MFExCzAJBgNVBAYTAlVTMRAwDgYDVQQKEwdTU0wuY29tMRQwEgYDVQQLEwt3d3cuc3NsLmNvbTEaMBgGA1UEAxMRU1NMLmNvbSBPYmplY3QgQ0E=","whitelist":false,"attachment":{"hash":"20323ec6ee175231bf323239854623c13b6833fd8c9e755fa77925793b58ca26","size":2085,"filename":"HgdIFDIn7_8ksxHClkFmw9q0QEIK6fN7wZ7qkvDisFw=.pem","location":"security-state-staging/intermediates/ceccf42d-13a0-454c-a0db-f9e1976f0047.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HgdIFDIn7/8ksxHClkFmw9q0QEIK6fN7wZ7qkvDisFw=","crlite_enrolled":false,"id":"f309bff7-7186-4f3b-9b95-51df26462077","la
st_modified":1576536532278},{"schema":1576536121896,"derHash":"TptzFWcXfhd2qW1m2RILPesouACTfqRmJWWz717IAAs=","subject":"CN=emSign ECC Class 2 CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MG4xCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMSMwIQYDVQQDExplbVNpZ24gRUNDIENsYXNzIDIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"b2c9c934bd28c6cdde9ab4d84c6c8da067598d50410f83afa8df464ff780c749","size":1142,"filename":"e6icTYnqPAeqRyiV6T1Z-dePhAfjZW9RbzFi-_h840Q=.pem","location":"security-state-staging/intermediates/2a9db6d2-ba72-49aa-a083-f23d88661c4b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e6icTYnqPAeqRyiV6T1Z+dePhAfjZW9RbzFi+/h840Q=","crlite_enrolled":false,"id":"6058b519-9e61-482a-8f27-01c5ffd80762","last_modified":1576536532275},{"schema":1576536094293,"derHash":"Maw0azEHPcDRNOKfwhLMShXtNTDuoe3PyNrLNkktXeQ=","subject":"CN=4fastssl.com,OU=3S2N Sp. z o.o.,O=3S2N Sp. z o.o.,C=PL","subjectDN"
:"MFgxCzAJBgNVBAYTAlBMMRgwFgYDVQQKDA8zUzJOIFNwLiB6IG8uby4xGDAWBgNVBAsMDzNTMk4gU3AuIHogby5vLjEVMBMGA1UEAwwMNGZhc3Rzc2wuY29t","whitelist":false,"attachment":{"hash":"cae137f6053594f20d796d4a5a5d5e9f305e814739d0e7870c9bd2f123fd1605","size":1630,"filename":"sN7Yv0qTyjW-BJTfkzdVvYxd1ExUFwl3cvwbLztk5Fc=.pem","location":"security-state-staging/intermediates/bea7e911-09b3-4259-995d-27e5b79f0dda.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sN7Yv0qTyjW+BJTfkzdVvYxd1ExUFwl3cvwbLztk5Fc=","crlite_enrolled":false,"id":"49094aa8-a7a0-4644-bc88-83ff76b96f56","last_modified":1576536532272},{"schema":1576536123068,"derHash":"Vtj24UWykfX7op65iYz1Ir3nsUqziSnQpMTR3dq6Kmk=","subject":"CN=Sectigo RSA Time Stamping CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MH0xCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGDAWBgNVBAoTD1NlY3RpZ28gTGltaXRlZDElMCMGA1UEAxMcU2VjdGlnbyBSU0EgVGltZSBTdGFtcGluZyBDQQ==","whitelist":false,"attachment":{"hash":
"56a8d17bc1d2247a5c19076e98bcbe74c2bf2b35c572ea145ef0bab20aeec262","size":2458,"filename":"HAzgkpPws05gdb_VUEsKyKptN9VTKZx6piTRmO_w1x8=.pem","location":"security-state-staging/intermediates/1f071dbb-1f95-42d5-b695-bf6623c56f06.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HAzgkpPws05gdb/VUEsKyKptN9VTKZx6piTRmO/w1x8=","crlite_enrolled":false,"id":"50b19790-5758-49b6-b055-5e746d518437","last_modified":1576536532266},{"schema":1576536068013,"derHash":"0MrmlHvHfwtJXKgI1s3mhfzSAiXh5TC2NbET7UByjvM=","subject":"CN=GlobalSign Timestamping CA,OU=Timestamping CA,O=GlobalSign","subjectDN":"MFQxGDAWBgNVBAsTD1RpbWVzdGFtcGluZyBDQTETMBEGA1UEChMKR2xvYmFsU2lnbjEjMCEGA1UEAxMaR2xvYmFsU2lnbiBUaW1lc3RhbXBpbmcgQ0E=","whitelist":false,"attachment":{"hash":"7806ad293fa3eb0a436e9a8ee203d8340d736f8be793ab3d5c685c08b945c6dd","size":1483,"filename":"cJyzJQR9magyD5d9C2fLGru8Aqi-PgtEQD7TM2Dq-qI=.pem","location":"security-state-staging/intermediates/0144b6ca-d91d-42e8-ab16-043dfc8b9b9b.pem","mimetype":"
application/x-pem-file"},"pubKeyHash":"cJyzJQR9magyD5d9C2fLGru8Aqi+PgtEQD7TM2Dq+qI=","crlite_enrolled":false,"id":"e3f03587-8572-466f-981a-ea6ccff203c5","last_modified":1576536532261},{"schema":1576536085955,"derHash":"65T44sjQyDOLuLpA4erWIkuELLr8mfJp7vB2HoOcQaY=","subject":"CN=Western Digital Technologies Certification Authority,O=Western Digital Technologies,L=Irvine,ST=CA,C=US","subjectDN":"MIGRMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExDzANBgNVBAcTBklydmluZTElMCMGA1UEChMcV2VzdGVybiBEaWdpdGFsIFRlY2hub2xvZ2llczE9MDsGA1UEAxM0V2VzdGVybiBEaWdpdGFsIFRlY2hub2xvZ2llcyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"27bab012779245048bd280aa6bede454d41b18d63a1152020a3b837b9f5ad7fd","size":2869,"filename":"w5ZKTAj16cKbFb_ByP_gQe9CQupFYdX6HVmRkZZtm9w=.pem","location":"security-state-staging/intermediates/1eee0ce9-061c-466b-a247-b923fa34aa69.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"w5ZKTAj16cKbFb/ByP/gQe9CQupFYdX6HVmRkZZtm9w=","crlite_enrolled":false,"id":"
7faa7ca0-252e-4c62-aa48-c3cd1eafa8e5","last_modified":1576536532253},{"schema":1576536136036,"derHash":"rAq5Y7tfPaBfvIaH+YwrbqC7SZ5hGMGpE2sbx8PHGms=","subject":"CN=GlobalSign CA for AATL - SHA384 - G4,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIENBIGZvciBBQVRMIC0gU0hBMzg0IC0gRzQ=","whitelist":false,"attachment":{"hash":"85c8ec5dd9e2aef22c301709411a40ca34de77ae66cdf3a22ea4e351f5965835","size":2251,"filename":"eXySzCsBWDIfmGF01cwDJgdAdt8Hj7D429qgL2aN-zU=.pem","location":"security-state-staging/intermediates/db81a002-ed02-457c-8ef2-9ceae481d3bf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eXySzCsBWDIfmGF01cwDJgdAdt8Hj7D429qgL2aN+zU=","crlite_enrolled":false,"id":"4267e1b8-a619-4607-8632-9f4be3c8c3b3","last_modified":1576536532222},{"schema":1576536084428,"derHash":"g5Tj0H780el+psuiFMOgVcF92afr+N3gAg/N23byhlM=","subject":"CN=SSL.com EV SSL Intermediate CA ECC R2,O=SSL Corp,L=Houston,ST=Texas,C=US",
"subjectDN":"MHIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxLjAsBgNVBAMMJVNTTC5jb20gRVYgU1NMIEludGVybWVkaWF0ZSBDQSBFQ0MgUjI=","whitelist":false,"attachment":{"hash":"ec67d7acaecbee9548bf5d3b578b728e2309b8a0884f20b3973a99b6a90d4f0a","size":1280,"filename":"d1tKuR2aFFnhw8eRBoNei7sB4YWR1iQmOEmGB337A0k=.pem","location":"security-state-staging/intermediates/2afb24cd-f81f-48bf-b601-fda65e8b7dcf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"d1tKuR2aFFnhw8eRBoNei7sB4YWR1iQmOEmGB337A0k=","crlite_enrolled":true,"id":"734d16c1-380a-4953-81ad-78c29e818910","last_modified":1576536532216},{"schema":1576536100444,"derHash":"noUsWd/G/Wq9ThfqgLX05W/AQZLRByWNVNqKklKGcNY=","subject":"CN=Certum Global Services CA SHA2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGDMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MScwJQYDVQQDEx5DZXJ0dW0gR2xvY
mFsIFNlcnZpY2VzIENBIFNIQTI=","whitelist":false,"attachment":{"hash":"8aa13e80c83c232b2f8047b3b1df764885c9c822e03078672b01899a2acd4a16","size":1723,"filename":"M7aD_Hmgy7CF8sTddr5so1MZWEBuNfLIdGe1jvy0X6E=.pem","location":"security-state-staging/intermediates/f51cd94a-f3bc-4f18-bbba-d7bc1b52c422.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M7aD/Hmgy7CF8sTddr5so1MZWEBuNfLIdGe1jvy0X6E=","crlite_enrolled":false,"id":"b69c3618-7b62-4d9b-ac74-c8f39cf75c4c","last_modified":1576536532214},{"schema":1576536132995,"derHash":"ZAF9eLXwwExBlzXWpKbVLsHSARUkOw18dFB+JX/6SkA=","subject":"CN=ABB ECC Intermediate CA 1,O=ABB","subjectDN":"MFwxEzARBgoJkiaJk/IsZAEZFgNDT00xEzARBgoJkiaJk/IsZAEZFgNBQkIxDDAKBgNVBAoTA0FCQjEiMCAGA1UEAxMZQUJCIEVDQyBJbnRlcm1lZGlhdGUgQ0EgMQ==","whitelist":false,"attachment":{"hash":"3bf4e56157209c6ae799aba198d716c87bb03db2fff0a948a5bf6c6f8312cd00","size":1902,"filename":"vtfN7uXcmYy-xpK14sDzgUP-IgxdWGzKLJ7P5ZVQFQg=.pem","location":"security-state-staging/intermediates/c
8e925dd-10ad-45bc-8572-9fa64ce3655a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vtfN7uXcmYy+xpK14sDzgUP+IgxdWGzKLJ7P5ZVQFQg=","crlite_enrolled":false,"id":"78f90a7c-db0b-4ba1-bac5-6b8d2f8d842e","last_modified":1576536532209},{"schema":1576536116032,"derHash":"DYiQDbtoxspUcfZT/KzUB+vXsVGQRvnguM7TwnT9EaE=","subject":"CN=DigiCert Transition RSA Root,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IFRyYW5zaXRpb24gUlNBIFJvb3Q=","whitelist":false,"attachment":{"hash":"49bdab403720cb448ce0da5276c296f3e531dbc84f9b34389b2dd8ce3d71aed4","size":1756,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/04dff2a2-c62d-4f0e-912a-27aa436c85fc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"844e0b7d-1eab-45a2-9c34-a8152b8a194d","las
t_modified":1576536532206},{"schema":1576536085589,"derHash":"FCFFg+X0nOLbiLk8/j99gbZ4yGr7ypJAuqS55M6Qvyw=","subject":"CN=Symantec Class 3 ECC 384 bit SSL CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEsMCoGA1UEAxMjU3ltYW50ZWMgQ2xhc3MgMyBFQ0MgMzg0IGJpdCBTU0wgQ0E=","whitelist":false,"attachment":{"hash":"e892cc0b4f7fa3b87f4a7469bf3e6a34084c3d9fec4e10943e11df05f74981b4","size":1435,"filename":"6WrpsMoYWnzd1kOPyS8f--FOclfP_jONLsXqcE6_5MU=.pem","location":"security-state-staging/intermediates/857e59e8-e4eb-4c38-9d55-324c35931b83.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6WrpsMoYWnzd1kOPyS8f++FOclfP/jONLsXqcE6/5MU=","crlite_enrolled":false,"id":"0d8edf2b-c4b1-483c-8cb8-331321784db9","last_modified":1576536532203},{"schema":1576536139122,"derHash":"F4zizkHm0pkmyJNy7PAbESCte22YCtKYNUwu/TFB4Sk=","subject":"CN=GIAG4,O=Google Trust Services LLC,C=US"
,"subjectDN":"MEExCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMQ4wDAYDVQQDEwVHSUFHNA==","whitelist":false,"attachment":{"hash":"173627aa7b741915b72ac66ef4c36175e19527dc12a9e064793b587bc24840df","size":1557,"filename":"AAGolo0N1iZa5uuvm02csZnkuZs8hvI-HRLhAHtNhqk=.pem","location":"security-state-staging/intermediates/0a69dac3-a94c-4464-9a5f-cb3c4dd4adcf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AAGolo0N1iZa5uuvm02csZnkuZs8hvI+HRLhAHtNhqk=","crlite_enrolled":true,"id":"563d4e1b-cc04-4563-aa02-3a2f24d91ee9","last_modified":1576536532192},{"schema":1576536098902,"derHash":"FesKdcZzq/vc0vr8AoI8kf5svDbgB4hELIdU1yvsNxc=","subject":"CN=Encryption Everywhere DV TLS CA - G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLTArBgNVBAMTJEVuY3J5cHRpb24gRXZlcnl3aGVyZSBEViBUTFMgQ0EgLSBHMQ==","whitelist":false,"attachment":{"hash":"6e79684a22734ca75ec32f3adf0f864295161310bce
94980a2608da91fbdd285","size":1678,"filename":"GI75anSEdkuHj05mreE0Sd9jE6dVqUIzzXRHHlZBVbI=.pem","location":"security-state-staging/intermediates/f06c6294-7b8f-48d8-b0f8-2b14682e5159.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GI75anSEdkuHj05mreE0Sd9jE6dVqUIzzXRHHlZBVbI=","crlite_enrolled":true,"id":"0c722bda-522b-4e54-86de-6947716f1ec9","last_modified":1576536532190},{"schema":1576536127628,"derHash":"6UL/g/YzoI29ZeQ7VxmkNA3hPbfGG9aofNywuph1qWg=","subject":"CN=K Software Certificate Authority (OV) 2,O=K Software,L=Ashland,ST=KY,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJLWTEQMA4GA1UEBxMHQXNobGFuZDETMBEGA1UEChMKSyBTb2Z0d2FyZTEwMC4GA1UEAxMnSyBTb2Z0d2FyZSBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgKE9WKSAy","whitelist":false,"attachment":{"hash":"aefeae002e54508394d61079ca1d8477c613220626f0529d41aa1d0c8df5be3b","size":2138,"filename":"afXDX7F7Ynjqxjg6ewL0PMjH-QIuDGSiQQ1PAGTTkE4=.pem","location":"security-state-staging/intermediates/11514566-7d13-4edb-80cc-b5dffd44649f.pem","m
imetype":"application/x-pem-file"},"pubKeyHash":"afXDX7F7Ynjqxjg6ewL0PMjH+QIuDGSiQQ1PAGTTkE4=","crlite_enrolled":false,"id":"22df7292-b32a-48e1-bf8a-dba558e5fb9a","last_modified":1576536532187},{"schema":1576536068766,"derHash":"gK2NJI1gE+/wAzZkVs3abPhbxHkaZ4FS4XjHK1p/Es0=","subject":"CN=InterCloud Ventures CA for CodeSigning,O=InterCloud Ventures Inc,C=SC","subjectDN":"MGAxCzAJBgNVBAYTAlNDMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEvMC0GA1UEAwwmSW50ZXJDbG91ZCBWZW50dXJlcyBDQSBmb3IgQ29kZVNpZ25pbmc=","whitelist":false,"attachment":{"hash":"58c167ecb8625f5ed88a6385c37aabfbe34ed011345c4a3c3bf6314f851bb37f","size":2381,"filename":"WTN_ayqlb7AXN8GdgPK1i40EqHGWA4uaGPFpRKCY18U=.pem","location":"security-state-staging/intermediates/c29cf028-60a7-4ae0-a6d9-6ae37269fb43.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WTN/ayqlb7AXN8GdgPK1i40EqHGWA4uaGPFpRKCY18U=","crlite_enrolled":false,"id":"74797804-f7a2-4f5d-a135-11483ca97411","last_modified":1576536532158},{"schema":1576536127256
,"derHash":"PzGbKv7UoPdRJ75ZklVQ0EKOaHY6CeJz62qf+NGNu1s=","subject":"CN=GlobalSign,OU=GlobalSign ECC Root CA - R5,O=GlobalSign","subjectDN":"MFAxJDAiBgNVBAsTG0dsb2JhbFNpZ24gRUNDIFJvb3QgQ0EgLSBSNTETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbg==","whitelist":false,"attachment":{"hash":"b003225e25a61e89168f5f77baef1eabcd91e2a9c9117c1f5602208a802290e3","size":1313,"filename":"fg6tdrtoGdwvVFEahDVPboswe53YIFjqbABPAdndpd8=.pem","location":"security-state-staging/intermediates/8d1d0d1d-6a84-49b1-8a6d-74b898777b5d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fg6tdrtoGdwvVFEahDVPboswe53YIFjqbABPAdndpd8=","crlite_enrolled":false,"id":"e97393c4-72ac-459c-8c42-ee0e57bd8a90","last_modified":1576536532144},{"schema":1576536096573,"derHash":"e9C9d7T7i2+CUz5OzsPHVl61IKP1NUnBerElNX//TFo=","subject":"CN=CertAssure RSA OV Secure Server Certification Authority,O=CertAssure Inc.,L=San Jose,ST=CA,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExETAPBgNVBAcTCFNhbiBKb3NlMRgwFg
YDVQQKEw9DZXJ0QXNzdXJlIEluYy4xQDA+BgNVBAMTN0NlcnRBc3N1cmUgUlNBIE9WIFNlY3VyZSBTZXJ2ZXIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"29c2f0e95cd6822b6a47aec4b666a7e3143b04825116f0db4a5268602ee77ea5","size":2166,"filename":"AFV-kOki635A1nbhk6e6ZQs4lmPcP6IboL5EBPOsVYE=.pem","location":"security-state-staging/intermediates/d75b1d9e-e92c-4e6a-8378-24a25dd4ed9d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AFV+kOki635A1nbhk6e6ZQs4lmPcP6IboL5EBPOsVYE=","crlite_enrolled":false,"id":"ede04aed-0845-44f9-b1a8-03b4525fd10b","last_modified":1576536532124},{"schema":1576536125351,"derHash":"N2N3/R+vS4pbFHJkenC5QQOaYtdM/plEfkhhb41jqXg=","subject":"CN=DigiCert EV Code Signing CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0IEVWIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"0eb4c47655aa0125f23ad7ce888e0b58b7d36dad717750fdf0a
4fd40e8403de6","size":2385,"filename":"c7df1T6z2RjxaDctD21S-mkgZ71HlsdERYtYXJwYb1Y=.pem","location":"security-state-staging/intermediates/e5bcc777-d888-4a08-b42d-beffa2bd76b9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"c7df1T6z2RjxaDctD21S+mkgZ71HlsdERYtYXJwYb1Y=","crlite_enrolled":false,"id":"e71509c8-ac25-4827-b3b8-11b99c4357d4","last_modified":1576536532121},{"schema":1576536128757,"derHash":"VD2bf8KmRxzYT8pSws9hWd+D6/zYjYsIta8/iHN/UuY=","subject":"CN=Amazon Root CA 4,O=Amazon,C=US","subjectDN":"MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDQ=","whitelist":false,"attachment":{"hash":"529e23adcf592c5f3ead786e4cade919e70e5ce97467aa24135ffedb958ca909","size":1410,"filename":"9-ze1cZgR9KO1kZrVDxA4HQ6voHRCSVNz4RdTCx4U8U=.pem","location":"security-state-staging/intermediates/7e2813c8-5040-4edb-82d1-6727b462247e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9+ze1cZgR9KO1kZrVDxA4HQ6voHRCSVNz4RdTCx4U8U=","crlite_enrolled":false,"id":"6
fb12511-5167-469d-9692-07522e197a11","last_modified":1576536532102},{"schema":1576536112199,"derHash":"VYenKm9zjt7O9nOHEW3o0ZNw6vPGsnLEmvm6uheV/Yc=","subject":"CN=Intel External Issuing CA 6B,O=Intel Corporation,L=Santa Clara,ST=CA,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEUMBIGA1UEBxMLU2FudGEgQ2xhcmExGjAYBgNVBAoTEUludGVsIENvcnBvcmF0aW9uMSUwIwYDVQQDExxJbnRlbCBFeHRlcm5hbCBJc3N1aW5nIENBIDZC","whitelist":false,"attachment":{"hash":"730c860c6a1a3c3e77c108c43b0e00f56074e1d949ea0d71d28548bf7e864319","size":5302,"filename":"sCfIb8e9n-5ipNtw1OVRRBJh67L2MmLDTBHeYecn3kU=.pem","location":"security-state-staging/intermediates/13d73ff1-47cf-4d6e-8af3-9c233886a4fc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sCfIb8e9n+5ipNtw1OVRRBJh67L2MmLDTBHeYecn3kU=","crlite_enrolled":false,"id":"16fc2ee5-bf2c-4cc5-8f57-bf1b29ba948f","last_modified":1576536532066},{"schema":1576536131064,"derHash":"nfDT1VQN6umWwbJtox0O1OYO/fOj2jm2P6g4HTuok9o=","subject":"CN=Ionian University SSL CA R
1,O=Ionian University,L=Kerkyra,C=GR","subjectDN":"MGExCzAJBgNVBAYTAkdSMRAwDgYDVQQHEwdLZXJreXJhMRowGAYDVQQKExFJb25pYW4gVW5pdmVyc2l0eTEkMCIGA1UEAxMbSW9uaWFuIFVuaXZlcnNpdHkgU1NMIENBIFIx","whitelist":false,"attachment":{"hash":"364105dddbc9280a5dc7aac80e22fa9fd688d01ec8b0110999ac19afaded8a71","size":2454,"filename":"vBUhM35ax7DSrTLTDo3K4f4_Yd93zumJYU7QNR67YtU=.pem","location":"security-state-staging/intermediates/75df7b02-0780-4005-b8d8-783cc77d09c9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vBUhM35ax7DSrTLTDo3K4f4/Yd93zumJYU7QNR67YtU=","crlite_enrolled":false,"id":"612dfa9e-2e51-4254-a17e-f34d2cae3b73","last_modified":1576536532052},{"schema":1576536100826,"derHash":"H9McZrC0X5PmZwk2XXYL9nAnax05z45waNSo4gu/8+A=","subject":"CN=Fuji Xerox Certification Authority - G2,O=Fuji Xerox,C=JP","subjectDN":"MFQxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MTAwLgYDVQQDEydGdWppIFhlcm94IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"ff0a48b0b443388798ed
bed20dce740060299f311eaec5dc02593af9d96d1bf1","size":1524,"filename":"wekvipZx96mzAem7jXzac4eapzJ0kMdCftv4NPCJWHI=.pem","location":"security-state-staging/intermediates/b38241d8-fdc6-4ea0-afb6-1b2e9733c067.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wekvipZx96mzAem7jXzac4eapzJ0kMdCftv4NPCJWHI=","crlite_enrolled":false,"id":"d9de2a31-3c1a-49cf-94be-d01d8a121fc3","last_modified":1576536532047},{"schema":1576536077185,"derHash":"HXCbKITsCT5dd6UElx6IcWMERzT22nDJI6Tz/41OW0k=","subject":"CN=SECOM TimeStamping CA1,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MFUxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMR8wHQYDVQQDExZTRUNPTSBUaW1lU3RhbXBpbmcgQ0Ex","whitelist":false,"attachment":{"hash":"2b40c9fd758859d4734cefde3fe5cd1175a48ac4ef24ea479ba390451fe539a5","size":1508,"filename":"bKZzNUt0-zNujbmPHn_6dYVxxpdXJumDRXx-2XvGdiU=.pem","location":"security-state-staging/intermediates/97e4eadc-10fe-4d84-9cec-1818af90d1b7.pem","mimetype":"application/x-pem-f
ile"},"pubKeyHash":"bKZzNUt0+zNujbmPHn/6dYVxxpdXJumDRXx+2XvGdiU=","crlite_enrolled":false,"id":"07b884ce-8837-4df7-98be-ec07ec4647fe","last_modified":1576536532018},{"schema":1576536112576,"derHash":"F/MCIZ/Pzo/RjKwXL4sNRJa6Xajkn4cavB+dDKqjYOU=","subject":"CN=KLASS3-SK 2010,OU=Sertifitseerimisteenused,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MG0xCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMSEwHwYDVQQLExhTZXJ0aWZpdHNlZXJpbWlzdGVlbnVzZWQxFzAVBgNVBAMTDktMQVNTMy1TSyAyMDEw","whitelist":false,"attachment":{"hash":"69e17cd00463182ef276c37a763b3e1a5148efde85621a344e83ef9f3a74623d","size":1678,"filename":"21pSl8-gYIgzVrmihoLqfp4XlT3k97qo-M2ZGRQsy4Q=.pem","location":"security-state-staging/intermediates/5a20865e-48b8-4068-bc47-0a2bb83948ca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"21pSl8+gYIgzVrmihoLqfp4XlT3k97qo+M2ZGRQsy4Q=","crlite_enrolled":false,"id":"76af15b4-926a-4869-93cb-119affd2926c","last_modified":1576536532010},{"schema":1576536080221,"derHa
sh":"m/WJZ1RZlhlFEtthdxUa/plwauo9o2/u562fizwFB8s=","subject":"CN=Go Daddy Root Certificate Authority - G2,OU=https://certs.godaddy.com/repository/,O=GoDaddy.com\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIGzMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEaMBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xLjAsBgNVBAsTJWh0dHBzOi8vY2VydHMuZ29kYWRkeS5jb20vcmVwb3NpdG9yeS8xMTAvBgNVBAMTKEdvIERhZGR5IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"f01b7da33411fa8ad18c3acbb3b660ca139a5179f86a05a17e7ed8579b7c64a1","size":1678,"filename":"Ko8tivDrEjiY90yGasP6ZpBU4jwXvHqVvQI0GS3GNdA=.pem","location":"security-state-staging/intermediates/32481f93-70cb-40f2-b608-39d1e40518fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ko8tivDrEjiY90yGasP6ZpBU4jwXvHqVvQI0GS3GNdA=","crlite_enrolled":false,"id":"e7caf81b-a272-4ba4-ab9e-23e7d0270c4e","last_modified":1576536532002},{"schema":1576536099289,"derHash":"5/FSbqnVFHt6Xhrmq+MXN6RmbR6PA+YzcDvTw
9mx43Y=","subject":"CN=Gehirn Managed Certification Authority - ECC DV,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIGCMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMTgwNgYDVQQDEy9HZWhpcm4gTWFuYWdlZCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDQyBEVg==","whitelist":false,"attachment":{"hash":"ba00e0cc1ef2c958c1e04e3258cb7126d14548e2dd931dcbef08cf72cc29b04e","size":1321,"filename":"gXehP87ukwK1hI7ZuoCGUFVeee8oPwN9F_lSos9o0ns=.pem","location":"security-state-staging/intermediates/f5997c64-0815-4e51-af66-9a8200623298.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gXehP87ukwK1hI7ZuoCGUFVeee8oPwN9F/lSos9o0ns=","crlite_enrolled":false,"id":"106fef5b-5aa0-42a1-9b57-e378ad429a2d","last_modified":1576536531983},{"schema":1576536111786,"derHash":"g8Hqnp78ooO4QOFn+ep5xOMqzTODT1nROPzaudiAayA=","subject":"CN=Symantec Time Stamping Services CA - G2,O=Symantec Corporation,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlY
yBDb3Jwb3JhdGlvbjEwMC4GA1UEAxMnU3ltYW50ZWMgVGltZSBTdGFtcGluZyBTZXJ2aWNlcyBDQSAtIEcy","whitelist":false,"attachment":{"hash":"5f5a445a9debe9c5e196f66f3b896b29dfaecc3edf8c69d98c4185b20314d170","size":1626,"filename":"oGumzLGyzl2o91wqGSYl0m7wwzZ3wViPyem6aWf2UBI=.pem","location":"security-state-staging/intermediates/fb9448bc-44dd-4282-85f1-c4aaf431ae38.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oGumzLGyzl2o91wqGSYl0m7wwzZ3wViPyem6aWf2UBI=","crlite_enrolled":false,"id":"7e13165b-c802-4b83-850e-2830259615ae","last_modified":1576536531977},{"schema":1576536119484,"derHash":"9rtbeYWoc2WUwUZ5+jFgOBRQKq619CgqaZhdyEpFB3c=","subject":"CN=Symantec Web PKI RSA Root - G1,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEnMCUGA1UEAxMeU3ltYW50ZWMgV2ViIFBLSSBSU0EgUm9vdCAtIEcx","whitelist":false,"attachment":{"hash":"64b574e42d99825dad6ef8f064e0287d85641837ec9f03bf1
bf83090374436e9","size":2044,"filename":"Gtk3r1evlBrs0hG3fm3VoM19daHexDWP__OCmeeMr5M=.pem","location":"security-state-staging/intermediates/34f3de0a-0ed3-4749-b3b5-3627781c6d0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Gtk3r1evlBrs0hG3fm3VoM19daHexDWP//OCmeeMr5M=","crlite_enrolled":false,"id":"91f64259-d321-4336-9692-f6d7385aee61","last_modified":1576536531975},{"schema":1576536091272,"derHash":"Ie5tT1/uSFrHoDXx1l3i/E3Q7SiXrNwqO2ecBNRZmug=","subject":"CN=DOMENY SSL EV Certification Authority,OU=Controlled by COMODO exclusively for DOMENY.PL sp. z o.o,O=DOMENY.PL sp. z o.o,L=Krak\u00f3w,ST=Ma\u0142opolskie,C=PL","subjectDN":"MIHHMQswCQYDVQQGEwJQTDEVMBMGA1UECAwMTWHFgm9wb2xza2llMRAwDgYDVQQHDAdLcmFrw7N3MRwwGgYDVQQKExNET01FTlkuUEwgc3AuIHogby5vMUEwPwYDVQQLEzhDb250cm9sbGVkIGJ5IENPTU9ETyBleGNsdXNpdmVseSBmb3IgRE9NRU5ZLlBMIHNwLiB6IG8ubzEuMCwGA1UEAxMlRE9NRU5ZIFNTTCBFViBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"6970cf0b963db7eef40d70e72633e4c8ce08e
846f279520c4999c0506b87d77e","size":2292,"filename":"QKMgYhV5InRJvYzUJ1ylX-BvwC9fUdLVL_e6cCnbdGM=.pem","location":"security-state-staging/intermediates/85329473-fb73-4c5c-867f-1f579e8084dd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QKMgYhV5InRJvYzUJ1ylX+BvwC9fUdLVL/e6cCnbdGM=","crlite_enrolled":false,"id":"3884c098-4ac5-4ebc-8315-ed00d73e0f3b","last_modified":1576536531969},{"schema":1576536113347,"derHash":"43IiEmajMN0T6xOI36rx+rEd8lS2M4XLY3v++PtftnU=","subject":"CN=QIDUOCA 2018 DV SSL,OU=Domain Validated SSL,O=Suzhou Qiduo Information Technology Co.\\, Ltd.,C=CN","subjectDN":"MIGCMQswCQYDVQQGEwJDTjE2MDQGA1UECgwtU3V6aG91IFFpZHVvIEluZm9ybWF0aW9uIFRlY2hub2xvZ3kgQ28uLCBMdGQuMR0wGwYDVQQLDBREb21haW4gVmFsaWRhdGVkIFNTTDEcMBoGA1UEAwwTUUlEVU9DQSAyMDE4IERWIFNTTA==","whitelist":false,"attachment":{"hash":"0ba2fb2707f62d2ab80d7dea9b69d32058ae47514caecd5cf221db84eb014577","size":1752,"filename":"HjT11uxb0dXXxZnh6FUmEWVHULtStPZ1LLzRYdkdoqY=.pem","location":"security-state-staging/in
termediates/b6478416-94fe-4096-b983-23b33e8a6d14.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HjT11uxb0dXXxZnh6FUmEWVHULtStPZ1LLzRYdkdoqY=","crlite_enrolled":false,"id":"774024b8-2afe-482e-ad94-a88d0107d630","last_modified":1576536531954},{"schema":1576536134135,"derHash":"E0fpe/W3HHjeAPKkSp0H33ji6ZfpjnA4t2JXZcl83Ec=","subject":"CN=InterCloud SSL Certificate CA RSA R2,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MIGBMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEtMCsGA1UEAwwkSW50ZXJDbG91ZCBTU0wgQ2VydGlmaWNhdGUgQ0EgUlNBIFIy","whitelist":false,"attachment":{"hash":"7e3b11492fce1b8ac408168e725129a5c774c0d4764c02c60d7e653acf1e4856","size":2454,"filename":"zp3iAFlKcyLAMqe-MJZjgpwhwmLrQYDlVEHNTCciBQw=.pem","location":"security-state-staging/intermediates/c1f1ee12-bac1-479c-8f15-6e35034b9672.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zp3iAFlKcyLAMqe+MJZjgpwhwmLrQYDlVEHNTCciBQw=",
"crlite_enrolled":false,"id":"c591d861-86f8-4939-8c1c-a0b83d61b88a","last_modified":1576536531926},{"schema":1576536119117,"derHash":"3U4MF5APP8Klt7dzrkAhitcyFrXOXShev/zogw0PA0o=","subject":"CN=TERENA Personal CA 3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MGkxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEdMBsGA1UEAxMUVEVSRU5BIFBlcnNvbmFsIENBIDM=","whitelist":false,"attachment":{"hash":"ee4661bbdd2c4531f9ec0affb2c8462ab039ea1abc75584561047afbf60517fc","size":1792,"filename":"HOqz19sqhyR0ujgIsU9ml1UZS9cRaphqC_kcr3CVOg0=.pem","location":"security-state-staging/intermediates/3efac7ca-1e54-4d12-b5f9-b9a9bcb72512.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HOqz19sqhyR0ujgIsU9ml1UZS9cRaphqC/kcr3CVOg0=","crlite_enrolled":false,"id":"f823a65d-ac05-44a5-adb6-73f57c876206","last_modified":1576536531896},{"schema":1576536089732,"derHash":"h1b6/vsKedj/Nhx/46TbP5rVIGVS5xpJXfmKM85laTw=","subject":"CN=CertAssure RSA DV
Secure Server Certification Authority,O=CertAssure Inc.,L=San Jose,ST=CA,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExETAPBgNVBAcTCFNhbiBKb3NlMRgwFgYDVQQKEw9DZXJ0QXNzdXJlIEluYy4xQDA+BgNVBAMTN0NlcnRBc3N1cmUgUlNBIERWIFNlY3VyZSBTZXJ2ZXIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"59e582ca4786d9959908ac2fdee355c16c187ee8353d64d2648b55b2d448272f","size":2166,"filename":"XUK4_mOFBsai_iVZvPajZozACtYX_1Rgy6ZjFieNpck=.pem","location":"security-state-staging/intermediates/c0a3d994-1f2c-424b-b5a4-7fd2569d8f40.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XUK4/mOFBsai/iVZvPajZozACtYX/1Rgy6ZjFieNpck=","crlite_enrolled":false,"id":"0c8e5371-6bfd-4e3c-8fc1-214bbadc4181","last_modified":1576536531888},{"schema":1576536128385,"derHash":"nDBRZJbhJbPQkx9Jh14pUW2dwlRz5dahBsH8+GbTBts=","subject":"CN=GTS Y2,O=Google Trust Services LLC,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMQ8wDQYDVQQDEwZHVFMgWTI=","whi
telist":false,"attachment":{"hash":"e8c95c6e8334db472dd4dd81fc9057a756258573b6b2c815af66cdf0e960c6a0","size":1906,"filename":"zYGIkpoNQj_A8MrSV7BzubZdDqEk9LkLgAj8t8_U_ns=.pem","location":"security-state-staging/intermediates/4f5d4d0d-ab8d-454f-9170-45bee44c5db8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zYGIkpoNQj/A8MrSV7BzubZdDqEk9LkLgAj8t8/U/ns=","crlite_enrolled":true,"id":"510e0089-ae37-4b96-8605-c4ba8a4f38f3","last_modified":1576536531882},{"schema":1576536083630,"derHash":"1XCEwSeYcycess57hBWkHOkSa1RNhRi62H/xzlpgTaM=","subject":"CN=GTS CA 1D2,O=Google Trust Services,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxEzARBgNVBAMTCkdUUyBDQSAxRDI=","whitelist":false,"attachment":{"hash":"9111c956475abad64a74fc25f5dc5839249913246aeda37cded4b3651b45520e","size":1548,"filename":"qPerI4uMwY1VrtRE5aBY8jIQJopLUuBt2-GDUWMwZn4=.pem","location":"security-state-staging/intermediates/577bf05b-e334-4a66-bcb0-d3bb3cbb33d4.pem","mimetype":"applicati
on/x-pem-file"},"pubKeyHash":"qPerI4uMwY1VrtRE5aBY8jIQJopLUuBt2+GDUWMwZn4=","crlite_enrolled":true,"id":"21baac25-4dc6-42e5-813f-8cb5b1d60305","last_modified":1576536531880},{"schema":1576536096939,"derHash":"307LFhEO3qq6B6eB7Lk/41SWGzEx0tpQctNKvgt01bg=","subject":"CN=SecureCore RSA OV CA,O=SecureCore,L=OSAKA,ST=OSAKA,C=JP","subjectDN":"MGExCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVPU0FLQTEOMAwGA1UEBxMFT1NBS0ExEzARBgNVBAoTClNlY3VyZUNvcmUxHTAbBgNVBAMTFFNlY3VyZUNvcmUgUlNBIE9WIENB","whitelist":false,"attachment":{"hash":"2967d56ddac89aa3e10b2450061c6d5258252e83a4ea9ffd3e0c4453b315d01f","size":2113,"filename":"i9YotTNYIfvzcEXlwG2eor_v3IOO_LhM0dufRqOf7Dk=.pem","location":"security-state-staging/intermediates/4750431c-6e17-4977-8f5e-4aadf57f6f10.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i9YotTNYIfvzcEXlwG2eor/v3IOO/LhM0dufRqOf7Dk=","crlite_enrolled":false,"id":"060fd0ef-9267-43a4-be6a-5844fda14113","last_modified":1576536531877},{"schema":1576536119880,"derHash":"vVY5dW8Ng32ZohBnKiEMZJ
sj6lm0+nbeDW5C/XutIbk=","subject":"CN=SECOM Passport for Web SR 2.0 CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MF8xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSkwJwYDVQQDEyBTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIFNSIDIuMCBDQQ==","whitelist":false,"attachment":{"hash":"d513ae4a2e1cd882559b7cef11ccc51bab7106fa40baff92662c011fc57d40a7","size":1609,"filename":"0CzdK_GELTntEyD4ub9b3f0cOshJkKpSgLbs7o9cHbA=.pem","location":"security-state-staging/intermediates/fc037576-199b-471d-9159-805b07c72b77.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0CzdK/GELTntEyD4ub9b3f0cOshJkKpSgLbs7o9cHbA=","crlite_enrolled":false,"id":"c483233c-8b30-44c2-a3bc-bbba8ccd21f7","last_modified":1576536531859},{"schema":1576536087107,"derHash":"Dve4Y/qrw4SmlP9jLar5vTHO0j6SRlWaWezXRydUzOY=","subject":"CN=emSign Class 1 CA - C1,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEfMB0GA1UEAxMWZW1TaWduIENsYXNz
IDEgQ0EgLSBDMQ==","whitelist":false,"attachment":{"hash":"7794b1b190e82b18d7b5fa922d7bfc2eac719e69dd3bdb72cc135eddd69bc51c","size":1540,"filename":"tGZeupl-1fZilJwugiteFK3_QBrwzCRpRSZvX6uA41s=.pem","location":"security-state-staging/intermediates/1c8b5b0a-6ce6-460c-b68c-5b9e6dcd4acd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tGZeupl+1fZilJwugiteFK3/QBrwzCRpRSZvX6uA41s=","crlite_enrolled":false,"id":"3d7a069a-f29d-4118-9ac6-49aa45da46c3","last_modified":1576536531856},{"schema":1576536094670,"derHash":"NsfjKXUKQD2wuvBpyanzOWPlyYpmqKtXAW22+IzFYU0=","subject":"CN=MilleniumSign SSL Certificate CA RSA R2,O=MilleniumSign Limited,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGJMQswCQYDVQQGEwJNVTEYMBYGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTAwLgYDVQQDDCdNaWxsZW5pdW1TaWduIFNTTCBDZXJ0aWZpY2F0ZSBDQSBSU0EgUjI=","whitelist":false,"attachment":{"hash":"3c3182c3f974165726acb2e2b6c35f9306b120ba4684e22ac91eef26e5ef70a1","size":2552
,"filename":"1jNByu9N5tc5kL0IfWW4-AIUQnp6ljVLB3ROX-cA6b4=.pem","location":"security-state-staging/intermediates/03421df1-3916-4c0a-87eb-0d83ea93a06f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1jNByu9N5tc5kL0IfWW4+AIUQnp6ljVLB3ROX+cA6b4=","crlite_enrolled":true,"id":"17e6f300-d0c1-4ef6-ae0f-36ecd026b133","last_modified":1576536531841},{"schema":1576536072963,"derHash":"pBaiukkMRU4juFvwh9t7E39PR9l0fmD4aS/0yN8OBis=","subject":"CN=TrustOcean Certification Authority,O=QiaoKr Corporation Limited,C=CN","subjectDN":"MF8xCzAJBgNVBAYTAkNOMSMwIQYDVQQKDBpRaWFvS3IgQ29ycG9yYXRpb24gTGltaXRlZDErMCkGA1UEAwwiVHJ1c3RPY2VhbiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"40aa115c2456db45d24f826f71babce7e8711e6dadb79d51f81544b5cc127980","size":1703,"filename":"AqnxlVGHcuEywBdQxncOoMBd2w-idNlfoDEnTgEx5S4=.pem","location":"security-state-staging/intermediates/a719d773-6e0a-47c4-84e1-8f61cf95748f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AqnxlVGHcuEywB
dQxncOoMBd2w+idNlfoDEnTgEx5S4=","crlite_enrolled":false,"id":"13b2016a-1e62-488b-bfaa-2c73a57c8dc9","last_modified":1576536531833},{"schema":1576536114857,"derHash":"LHPumlL/rQcWa4co12gdjL79makGYzRbJarPmx7x8zM=","subject":"CN=SignSec Certification Authority,OU=SSL Department,O=FBS Inc,L=Irvine,ST=CA,C=US","subjectDN":"MIGAMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExDzANBgNVBAcTBklydmluZTEQMA4GA1UEChMHRkJTIEluYzEXMBUGA1UECxMOU1NMIERlcGFydG1lbnQxKDAmBgNVBAMTH1NpZ25TZWMgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"62210923e47646adf9d060655571c4ce48eb821e4d6302a97121bed12dde39bc","size":2158,"filename":"41fzHe29HqEJ0_pGALXNvRuPsmNV1cP7w8L-2fi7OPc=.pem","location":"security-state-staging/intermediates/d72e3cd5-274b-4802-b95f-74a7558123ef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"41fzHe29HqEJ0/pGALXNvRuPsmNV1cP7w8L+2fi7OPc=","crlite_enrolled":false,"id":"b5c03b14-145c-4893-ae49-ec141b83889c","last_modified":1576536531830},{"schema":1576536097708,"derHash
":"QMgm/bIroyovnbT5R3D3K4sdqcj/2nsR5vJ68kXIm14=","subject":"CN=Amazon Root CA 3,O=Amazon,C=US","subjectDN":"MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDM=","whitelist":false,"attachment":{"hash":"527804e0cdb3a780b57c0f3f7429e1a5b42984b3bd67157b9fda6ba75cdc6d0a","size":1370,"filename":"NqvDJlas_GRcYbcWE8S_IceH9cq77kg0jVhZeAPXq8k=.pem","location":"security-state-staging/intermediates/52ba3866-d596-48e9-9a8f-b80188b6a77a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NqvDJlas/GRcYbcWE8S/IceH9cq77kg0jVhZeAPXq8k=","crlite_enrolled":false,"id":"249a688b-b665-4574-a1c8-43ac8cff8067","last_modified":1576536531740},{"schema":1576536137962,"derHash":"WuRkvS+DkB/DPvK1DNiA9RGMjb6x60pOlLL7BRKIBcI=","subject":"CN=TrustID CA A12,O=IdenTrust,C=US","subjectDN":"MDoxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxFzAVBgNVBAMTDlRydXN0SUQgQ0EgQTEy","whitelist":false,"attachment":{"hash":"5643f5bf1bb2b2cce3b4d8ebe783772927119005e011155e3846f1bbdbd4b89f","size":2337
,"filename":"Bl-cWNKzUJ_jTvgry8Yjj5Z5DS-raoYNAW6LXHJZf5I=.pem","location":"security-state-staging/intermediates/d6c0cf43-3179-4734-93d2-2708d847db07.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Bl+cWNKzUJ/jTvgry8Yjj5Z5DS+raoYNAW6LXHJZf5I=","crlite_enrolled":false,"id":"058ccc29-07c2-417f-93d5-b3629027f1f1","last_modified":1576536531734},{"schema":1576536075645,"derHash":"z20DM9C+LGmkLUU5YN7p4QnZ6IQ+owYaFnHW6vhet9g=","subject":"CN=emSign Class 1 CA - G1,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGoxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMR8wHQYDVQQDExZlbVNpZ24gQ2xhc3MgMSBDQSAtIEcx","whitelist":false,"attachment":{"hash":"266278533c3786da3d8865fcd54e0e8fbedf26868dc64378e368d49cb3b7817b","size":1589,"filename":"8eYpGcWTiEZyMyyg19Q9T-bCQt78vGjuJDkLU10HGx8=.pem","location":"security-state-staging/intermediates/ca8d7c44-0de7-4fdb-a4bb-a07b24618b68.pem","mimetype":"application/x-pem-file"},"pubKeyHash
":"8eYpGcWTiEZyMyyg19Q9T+bCQt78vGjuJDkLU10HGx8=","crlite_enrolled":false,"id":"1cb8aaf5-1bf5-4af2-992d-adeedaabcaa7","last_modified":1576536531692},{"schema":1576536075273,"derHash":"jxn/4C/Hle1wdl0UNq3fdy/g8Hc9pDbtvbQqLjDi6Cg=","subject":"CN=GlobalSign ECC EV SSL CA 2018,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1HbG9iYWxTaWduIEVDQyBFViBTU0wgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"f363653deddf2dfcf9778cf76ffb95c3df7a78ee504183ca843b0302e14a7651","size":1102,"filename":"OD_WDbD3VsfMwwNzzy9MWd9JXppKB77Vb3ST2wn9meg=.pem","location":"security-state-staging/intermediates/44d3815f-42a9-4cec-bf3e-876bdcd1f014.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OD/WDbD3VsfMwwNzzy9MWd9JXppKB77Vb3ST2wn9meg=","crlite_enrolled":true,"id":"0fd62746-093f-43ab-bba0-8f8ee357a4e7","last_modified":1576536531682},{"schema":1576536080984,"derHash":"QtocVi+A5G2noyEkTvwj0Pqp/ru3qgN32WtC2eiKsgA=","subject":"CN=emSign Clas
s 3 CA - G1,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGoxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMR8wHQYDVQQDExZlbVNpZ24gQ2xhc3MgMyBDQSAtIEcx","whitelist":false,"attachment":{"hash":"d7df1cc3c3cc232a8f51e22a5dd4ea1766aeacac640f8a976a7c227626346ed2","size":1589,"filename":"4d2pu0FN5HWVpPbYu-0cH1AeCZYz3dgz9eFeY0xuTh8=.pem","location":"security-state-staging/intermediates/dbf450a1-135d-4dc7-8677-00049ab4ecf1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4d2pu0FN5HWVpPbYu+0cH1AeCZYz3dgz9eFeY0xuTh8=","crlite_enrolled":false,"id":"6f7f445a-9db3-41b6-8e6e-c97091de4b0d","last_modified":1576536531660},{"schema":1576536092403,"derHash":"6KfgjGL0C3iqD3Asx6b38M4L/ghgnSI0mJDDpYs//20=","subject":"CN=CrossTrust OV CA1,O=CrossTrust,C=JP","subjectDN":"MD4xCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpDcm9zc1RydXN0MRowGAYDVQQDExFDcm9zc1RydXN0IE9WIENBMQ==","whitelist":false,"attachment":{"hash":"0f7649880bfb97b342488531ab9f62e71
f04e868a7191e8ae54b03b2526a7b31","size":1475,"filename":"qCy2EaMHB8FwmEDmszuH-bVZvMg1fSM10j8JL_PqoF8=.pem","location":"security-state-staging/intermediates/b797cd73-20ba-443a-a101-20abc2160b1f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qCy2EaMHB8FwmEDmszuH+bVZvMg1fSM10j8JL/PqoF8=","crlite_enrolled":false,"id":"10c4381f-23c3-44d1-a6f7-2707055dca1d","last_modified":1576536531624},{"schema":1576536074509,"derHash":"/SmRsTTOV7+c1oaHiFSl7tXqZEMwAkUrpAOY2niEXKc=","subject":"CN=SwissSign Server Gold CA 2008 - G2,O=SwissSign AG,C=CH","subjectDN":"MFExCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxKzApBgNVBAMTIlN3aXNzU2lnbiBTZXJ2ZXIgR29sZCBDQSAyMDA4IC0gRzI=","whitelist":false,"attachment":{"hash":"f15bb6ffc3798a8b4808913b8ac6cc390cb6a0a58fbd2d65caf2e689c58711c6","size":2268,"filename":"4wrJfevPFcxD_U4tiJM27RJ1g4zjbu-B3eTgC_qPxGg=.pem","location":"security-state-staging/intermediates/56bf7371-6dd1-4cf7-a321-74547c1d3616.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4wr
JfevPFcxD/U4tiJM27RJ1g4zjbu+B3eTgC/qPxGg=","crlite_enrolled":false,"id":"6ea46eb8-ddab-4129-8cd8-2b50d6580b24","last_modified":1576536531598},{"schema":1576536084043,"derHash":"XbYMLWtr7PMUR3WJo6T7TM+EZJ1psLIbPWsquni9Nfs=","subject":"CN=GDCA TrustAUTH R4 Generic CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MG8xCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJTAjBgNVBAMMHEdEQ0EgVHJ1c3RBVVRIIFI0IEdlbmVyaWMgQ0E=","whitelist":false,"attachment":{"hash":"22066078c8b548595b3543e7f4efbc0819675c6d5799aab9f7eb51ee3085e95e","size":2056,"filename":"mXaq2dsX_TtlLffdUghF79fyMALXeMrXTTUzEgq6gv8=.pem","location":"security-state-staging/intermediates/874fedb4-3946-494c-8f65-a56d07cb81a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mXaq2dsX/TtlLffdUghF79fyMALXeMrXTTUzEgq6gv8=","crlite_enrolled":false,"id":"67740d97-16e0-48d6-9078-18385eaf1f0c","last_modified":1576536531581},{"schema":1576536100074,"derHash":"wij
ZPb5VNqEgrCTtk0RnutcpL4t+sgJjSxcHConF/ps=","subject":"CN=GlobalSign PersonalSign 3 CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSowKAYDVQQDEyFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAzIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"bf2a244863f255c9fd22a4c3444454a1bcccd8d89f263ecd2121ad83d9dd4cee","size":1569,"filename":"6FXSznfWYgPxKc6WahR_l3YNNCjz1qGbLp4BZInCAps=.pem","location":"security-state-staging/intermediates/41e39ce7-b2aa-4851-98bc-78caa2fa6bf2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6FXSznfWYgPxKc6WahR/l3YNNCjz1qGbLp4BZInCAps=","crlite_enrolled":false,"id":"cb5f2e05-a07d-4855-b07c-6f225c2dc2da","last_modified":1576536531569},{"schema":1576536089348,"derHash":"aMGCyP43TVwJTmMllVny8HZKWJdDWD9KA+P2O3TXruo=","subject":"CN=WISeKey CertifyID Qualified G1 CA,OU=Copyright (c) 2006 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGLMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEmMCQGA1UECxMdQ29weXJpZ2h0ICh
jKSAyMDA2IFdJU2VLZXkgU0ExFjAUBgNVBAsTDUludGVybmF0aW9uYWwxKjAoBgNVBAMTIVdJU2VLZXkgQ2VydGlmeUlEIFF1YWxpZmllZCBHMSBDQQ==","whitelist":false,"attachment":{"hash":"d121c53328227cbe05ca7fef5dd84f062e82ef7e4960906d63b965909c82c934","size":1792,"filename":"8rqHoUpCjtZnIU9Eqwsz8IZwJcJMjg593mwJBPG32DI=.pem","location":"security-state-staging/intermediates/6c5d5d70-f804-4ff4-ba96-0b7fbe2e30f1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8rqHoUpCjtZnIU9Eqwsz8IZwJcJMjg593mwJBPG32DI=","crlite_enrolled":false,"id":"3687c07b-0800-4cc1-aa2b-1e6741bc3428","last_modified":1576536531556},{"schema":1576536104206,"derHash":"WpoD8tP+WJvmPNoRggqfJfB0ySA09RwEfTQibSUuwCU=","subject":"CN=emSign ECC Class 3 CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEjMCEGA1UEAxMaZW1TaWduIEVDQyBDbGFzcyAzIENBIC0gQzM=","whitelist":false,"attachment":{"hash":"6a976c7c76045fe8433c1fea57e7ae1de19f27a18f1c7bac51939e901257ea89","size"
:1098,"filename":"7yfF5AdGH75Zx9ksuCGXlGlIQcXlTbPFVOh5ccaTF0o=.pem","location":"security-state-staging/intermediates/f7dc2c14-5d52-4c59-97e7-78062c62da07.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7yfF5AdGH75Zx9ksuCGXlGlIQcXlTbPFVOh5ccaTF0o=","crlite_enrolled":false,"id":"0e7af0a7-8aa0-4cbb-960e-7f7436ef41ed","last_modified":1576536531553},{"schema":1576536138735,"derHash":"Uk5bOlWNX/AafEYCahS1jHfPne+6aR6sjkoX+sKjo7Y=","subject":"CN=ABB Intermediate CA 4,O=ABB","subjectDN":"MFgxEzARBgoJkiaJk/IsZAEZFgNDT00xEzARBgoJkiaJk/IsZAEZFgNBQkIxDDAKBgNVBAoTA0FCQjEeMBwGA1UEAxMVQUJCIEludGVybWVkaWF0ZSBDQSA0","whitelist":false,"attachment":{"hash":"bcf24b7da92702c711a274a90adbcc4eb31cc77e3005b0f0418c5b579b3dedbd","size":2690,"filename":"kaOrTzoe-Gh5cWt5XfatccAttrnblSCwYojFn7U0lhM=.pem","location":"security-state-staging/intermediates/914207d4-d1ef-4cdc-857d-aeea9ec81e43.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kaOrTzoe+Gh5cWt5XfatccAttrnblSCwYojFn7U0lhM=","crlite_enrolle
d":false,"id":"e8e0c38b-beec-4346-b2db-7c6cac67c695","last_modified":1576536531548},{"schema":1576536104947,"derHash":"dEaBgM5WS61+gSIQr3Q+hcqWy6RM9YUfoACCNBslNfU=","subject":"CN=GDCA TrustAUTH R4 DV SSL CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MG4xCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJDAiBgNVBAMMG0dEQ0EgVHJ1c3RBVVRIIFI0IERWIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"7cfea5fa9465373b3b94affa9d9aab2c113c1118cc633be2b62f93987ea69fa5","size":2052,"filename":"iBHlL3zuDBffc94FLYVkQWUl8ghEY26YFGj-wm1psHY=.pem","location":"security-state-staging/intermediates/99cb19eb-1375-4867-90aa-b0b2d298c16c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iBHlL3zuDBffc94FLYVkQWUl8ghEY26YFGj+wm1psHY=","crlite_enrolled":false,"id":"66719d09-7132-4513-86df-72ef54bba5b6","last_modified":1576536531539},{"schema":1576536126868,"derHash":"928NitMwrP1MW9BaWKHPFV3gC+LJj054mb4k6AoqvL8=","subject":"CN=th
awte SHA256 Code Signing CA - G2,O=thawte\\, Inc.,C=US","subjectDN":"MFExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xKzApBgNVBAMTInRoYXd0ZSBTSEEyNTYgQ29kZSBTaWduaW5nIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"8d1b6568e0c9f839594eb1d21126334c08330175fdd7aa0dd5ef87b386381f2b","size":1813,"filename":"KxgL7ZzAwOK6VyuRh0Qgl8AO3GNYmmtOAageweXe2HM=.pem","location":"security-state-staging/intermediates/6623e0a2-ca3f-42df-9aab-1ae957647958.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KxgL7ZzAwOK6VyuRh0Qgl8AO3GNYmmtOAageweXe2HM=","crlite_enrolled":false,"id":"99881c4a-a35d-4f02-8c92-1bdb792da661","last_modified":1576536531530},{"schema":1576536077553,"derHash":"gQHDuvnQ7dcRgNHzfW11t3sOjPtZPTQsOjHkZ5hdSnQ=","subject":"SERIALNUMBER=PT507015851,CN=DigitalSign Primary CA,O=DigitalSign Certificadora Digital,L=Guimaraes (see current address at www.digitalsign.pt),C=PT","subjectDN":"MIGwMQswCQYDVQQGEwJQVDEqMCgGA1UECgwhRGlnaXRhbFNpZ24gQ2VydGlmaWNhZG9yYSBEaWdpdGFsMRQwEgYDVQQFE
wtQVDUwNzAxNTg1MTE+MDwGA1UEBww1R3VpbWFyYWVzIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5kaWdpdGFsc2lnbi5wdCkxHzAdBgNVBAMMFkRpZ2l0YWxTaWduIFByaW1hcnkgQ0E=","whitelist":false,"attachment":{"hash":"a83022b4b30a88628db0ac26c6a3b7fd1211de3741122d444a90773a7113a376","size":2978,"filename":"lGHa44HE2Tf2byLm_zbLjYVyWUTCuVjs85wVs0pjx_4=.pem","location":"security-state-staging/intermediates/3ebbcd56-4f53-4881-9eb6-501675f8fa48.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lGHa44HE2Tf2byLm/zbLjYVyWUTCuVjs85wVs0pjx/4=","crlite_enrolled":false,"id":"7c2951dd-7bee-4774-8867-6403834d5206","last_modified":1576536531525},{"schema":1576536079076,"derHash":"20WR+Hj2Zy9bcHM6Zq18lTe5fm8K9cpJqrjsss4C+Gs=","subject":"CN=emSign ECC Class 2 CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEjMCEGA1UEAxMaZW1TaWduIEVDQyBDbGFzcyAyIENBIC0gQzM=","whitelist":false,"attachment":{"hash":"6726d4cd8b74a9dc90a4a784c54671d69630f8fb63
49c445e838be1cfccdce15","size":1098,"filename":"6nBouKNAQSAKbMyn22fCnI3dwxK0fiT4UvzcTjEMQKo=.pem","location":"security-state-staging/intermediates/e7df3325-60f1-4ee6-9ef7-fad0411247c9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6nBouKNAQSAKbMyn22fCnI3dwxK0fiT4UvzcTjEMQKo=","crlite_enrolled":false,"id":"95e7d143-1acd-49b1-a78d-ad87dbf9fa68","last_modified":1576536531522},{"schema":1576536074889,"derHash":"2gr68VzTAONLUg+3ik+mjrQsRgHpObkD4LHXHfWWW/8=","subject":"CN=QuoVadis Code Signing CA G1,O=QuoVadis Limited,C=BM","subjectDN":"ME4xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSQwIgYDVQQDExtRdW9WYWRpcyBDb2RlIFNpZ25pbmcgQ0EgRzE=","whitelist":false,"attachment":{"hash":"0dc22657eb892ad49c75f643d992174fea2c22fdc850b5792b0259b076e66faa","size":2272,"filename":"VCr-eF6_xVmjgcXvq31J5dzsT0JrmClTQ6o74gj6qE8=.pem","location":"security-state-staging/intermediates/4656eb34-6036-4f00-9758-cc94462b55e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VCr+eF6/xVmjgcXvq31
J5dzsT0JrmClTQ6o74gj6qE8=","crlite_enrolled":false,"id":"55cb4262-db0c-4e46-9de7-bd25df1c58d9","last_modified":1576536531519},{"schema":1576536111418,"derHash":"RZCrAULHhnEfVuh9+B6/mJGngEPNaNBwKUM/NRjsdss=","subject":"CN=WebSpace-Forum Essential CA II,O=WebSpace-Forum e.K.,L=Berlin,ST=Berlin,C=DE","subjectDN":"MHYxCzAJBgNVBAYTAkRFMQ8wDQYDVQQIEwZCZXJsaW4xDzANBgNVBAcTBkJlcmxpbjEcMBoGA1UEChMTV2ViU3BhY2UtRm9ydW0gZS5LLjEnMCUGA1UEAxMeV2ViU3BhY2UtRm9ydW0gRXNzZW50aWFsIENBIElJ","whitelist":false,"attachment":{"hash":"93fcdf1909661393298dbc544f6986fede575481f68106dae6fa2e24691582ff","size":2138,"filename":"JLiByOVnWd2f8bAC0L_puQNtFwBfGt4XaQ6BRcqgrQ4=.pem","location":"security-state-staging/intermediates/1247d329-776e-42bb-8a64-e61a2c46e6e0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JLiByOVnWd2f8bAC0L/puQNtFwBfGt4XaQ6BRcqgrQ4=","crlite_enrolled":false,"id":"fcf2e7fb-bc92-4de6-8e18-b79ce15100a5","last_modified":1576536531502},{"schema":1576536092777,"derHash":"dNNMp9NUf7PslV2O7+vE3
PDLsK7z+XfhnFchIjxuW0M=","subject":"CN=InterCloud Code Signing Certificate CA RSA,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MIGHMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEzMDEGA1UEAwwqSW50ZXJDbG91ZCBDb2RlIFNpZ25pbmcgQ2VydGlmaWNhdGUgQ0EgUlNB","whitelist":false,"attachment":{"hash":"b6b52e4c73da45484c9e358a3b77a269cef709c7275e385f705525e41e5cd34f","size":2438,"filename":"kaEqLmvrlN2nJCNqgThzck5OGxBpaazwyCcRzxiCwdU=.pem","location":"security-state-staging/intermediates/cd8297a0-ead5-4928-9218-b14cf084fdfc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kaEqLmvrlN2nJCNqgThzck5OGxBpaazwyCcRzxiCwdU=","crlite_enrolled":false,"id":"98c56f00-c9a1-49b1-8c3c-95dca890b9f9","last_modified":1576536531499},{"schema":1576536069912,"derHash":"QE5kPW7tO/z6/EnMV9bmvktt6ClxdsUZDxXgpe8R/pc=","subject":"SERIALNUMBER=A82743287,CN=AC Camerfirma Portugal - 2015,O=AC Camerfirma S.A.,L=Madrid (see current ad
dress at www.camerfirma.com/address),C=ES","subjectDN":"MIGrMQswCQYDVQQGEwJFUzEbMBkGA1UECgwSQUMgQ2FtZXJmaXJtYSBTLkEuMRIwEAYDVQQFEwlBODI3NDMyODcxQzBBBgNVBAcMOk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJmaXJtYS5jb20vYWRkcmVzcykxJjAkBgNVBAMMHUFDIENhbWVyZmlybWEgUG9ydHVnYWwgLSAyMDE1","whitelist":false,"attachment":{"hash":"a879f554628862eeeb50ede2ef4f18fa09e2fe831a737a081bbf05239bbf32ea","size":2930,"filename":"w12hFjmf7dfqB7Th3bbHbZCxFIvO6PueH3VrEWkJdmE=.pem","location":"security-state-staging/intermediates/3f702bc9-3fdf-4d61-9947-f953f2f91225.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"w12hFjmf7dfqB7Th3bbHbZCxFIvO6PueH3VrEWkJdmE=","crlite_enrolled":false,"id":"d89ad2c7-c77a-4a8a-8d0a-d54c3b1492d7","last_modified":1576536531481},{"schema":1576536129511,"derHash":"9mCwwlZIHLK/xnZhweqP7uOVtxQbysNsNuBNCM2eFYI=","subject":"CN=DFN-Verein Certification Authority 2,OU=DFN-PKI,O=Verein zur Foerderung eines Deutschen Forschungsnetzes e. V.,C=DE","subjectDN":"MIGVMQswCQYDVQQ
GEwJERTFFMEMGA1UEChM8VmVyZWluIHp1ciBGb2VyZGVydW5nIGVpbmVzIERldXRzY2hlbiBGb3JzY2h1bmdzbmV0emVzIGUuIFYuMRAwDgYDVQQLEwdERk4tUEtJMS0wKwYDVQQDEyRERk4tVmVyZWluIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IDI=","whitelist":false,"attachment":{"hash":"6a4a495a8e0a5d05743b1038d796e892b2588f6e493314ad4c9bd9091e0e5590","size":1817,"filename":"nKACHrGIK7Y2Rip247vWnOEfapF_v8H8rewd_Mzla8U=.pem","location":"security-state-staging/intermediates/97909fb6-ddc3-470e-be2b-383bf9c3f177.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nKACHrGIK7Y2Rip247vWnOEfapF/v8H8rewd/Mzla8U=","crlite_enrolled":false,"id":"3cfbb558-f1ba-418a-9513-9ebf4f15523d","last_modified":1576536531457},{"schema":1576536073722,"derHash":"fXQDQbUZP1PmdeOh47SxCV5gJQn2Wl+nV2sOOlRw+cY=","subject":"CN=GTS Y1,O=Google Trust Services LLC,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMQ8wDQYDVQQDEwZHVFMgWTE=","whitelist":false,"attachment":{"hash":"639a1475e5dc0801f220279c12f2a7afd908a3c78a3734cd6f1be161
27a0c9d7","size":1906,"filename":"V7Wxjz1qgqxtHdP2QmPdLItv2zRjJ79Zl1N6X7TYHVA=.pem","location":"security-state-staging/intermediates/7190cdca-d03a-4a38-9344-112721e008fd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V7Wxjz1qgqxtHdP2QmPdLItv2zRjJ79Zl1N6X7TYHVA=","crlite_enrolled":true,"id":"a7a48ed8-bb53-4eac-b5dd-e7e62ded4fd6","last_modified":1576536531429},{"schema":1576536128013,"derHash":"EercU3mxUsGpDR2+AHIsUxZbMgAx9bpGmt9ZAv2x+kU=","subject":"CN=SSL.com Code Signing Enterprise Intermediate CA RSA R1,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MIGDMQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0b24xETAPBgNVBAoMCFNTTCBDb3JwMT8wPQYDVQQDDDZTU0wuY29tIENvZGUgU2lnbmluZyBFbnRlcnByaXNlIEludGVybWVkaWF0ZSBDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"09d53bf64faddcead2273649e4cb3fa12dc7c5c6b11e5b058c2da05851cfa6b0","size":2438,"filename":"-HKIj9tLIUqgEj0Y5m5tNgY4LWGaXWYKZ86BvcEzblM=.pem","location":"security-state-staging/intermediates/63a0dcc7-5d7b-4f9
1-b6d4-59aa5af2f7d4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+HKIj9tLIUqgEj0Y5m5tNgY4LWGaXWYKZ86BvcEzblM=","crlite_enrolled":false,"id":"e5ed27bc-521e-4e8c-a344-7fcf0bfa9290","last_modified":1576536531403},{"schema":1576536117580,"derHash":"pCOjNJOzGVMibflkd2J9vQVnVnBCEQAbYWH7X4KZ3Do=","subject":"CN=Government Root Certification Authority - G1.5,O=\u884c\u653f\u9662,C=TW","subjectDN":"MFoxCzAJBgNVBAYTAlRXMRIwEAYDVQQKDAnooYzmlL/pmaIxNzA1BgNVBAMMLkdvdmVybm1lbnQgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcxLjU=","whitelist":false,"attachment":{"hash":"bd641cbfea8a068b2460fd4b90519d206aaa857dfae47763af8e3c24467355c9","size":2296,"filename":"C-F4mFTVkarDabMlcY1XHBga4Nw59VzZ4uPejwqVOg0=.pem","location":"security-state-staging/intermediates/992aa19e-0103-45d3-bfc5-52baf8d7eab6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"C+F4mFTVkarDabMlcY1XHBga4Nw59VzZ4uPejwqVOg0=","crlite_enrolled":false,"id":"a1cc2141-ced4-48dd-9b77-c0596f7d704f","last_modified":1576536531327},{
"schema":1576536076791,"derHash":"BabbOJOR35LgvpP9+k2x489TkDkYuNnYWpw5bLVd8DA=","subject":"SERIALNUMBER=10688435,CN=Starfield Secure Certification Authority,OU=http://certificates.starfieldtech.com/repository,O=Starfield Technologies\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIHcMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE5MDcGA1UECxMwaHR0cDovL2NlcnRpZmljYXRlcy5zdGFyZmllbGR0ZWNoLmNvbS9yZXBvc2l0b3J5MTEwLwYDVQQDEyhTdGFyZmllbGQgU2VjdXJlIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MREwDwYDVQQFEwgxMDY4ODQzNQ==","whitelist":false,"attachment":{"hash":"37d7bba2be8f3a98a69a003482d6d53844e60252e23b914f5352656847af97ff","size":1804,"filename":"lpQNmRQZFRRQ0edfZiGPbyWU4d9K8xpa1nPJqHRoF84=.pem","location":"security-state-staging/intermediates/6300e821-542e-4fd8-affd-d5e6a763540c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lpQNmRQZFRRQ0edfZiGPbyWU4d9K8xpa1nPJqHRoF84=","crlite_enrolled":false,"id":"cad79643-368
d-41c4-961a-f100b194b581","last_modified":1576536531299},{"schema":1576536109499,"derHash":"wWH1qt5A+8lyPwiS3pY9TRBAVWGmvcaacnmPkYvtGc0=","subject":"CN=GRnet SSL RSA SubCA R2,O=Greek Research and Technology Network,L=Athens,C=GR","subjectDN":"MG8xCzAJBgNVBAYTAkdSMQ8wDQYDVQQHDAZBdGhlbnMxLjAsBgNVBAoMJUdyZWVrIFJlc2VhcmNoIGFuZCBUZWNobm9sb2d5IE5ldHdvcmsxHzAdBgNVBAMMFkdSbmV0IFNTTCBSU0EgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"69b971bbf7810fedfe1e5c31583714084300973264f6030e959f6e28b6f4374c","size":2861,"filename":"AC8xqpj5E7pReTXZrh3N31yqqxl7UQm0Z14O0g7xxVE=.pem","location":"security-state-staging/intermediates/d83f633b-df4f-4572-92e9-553a186319eb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AC8xqpj5E7pReTXZrh3N31yqqxl7UQm0Z14O0g7xxVE=","crlite_enrolled":false,"id":"0d1c158e-15af-44d3-a9cf-1acb50435e20","last_modified":1576536531289},{"schema":1576536081735,"derHash":"5Wru6/KIBp7sLW4Ziifhn53zCRNQaM+pNUAmlD0k87E=","subject":"CN=InterCloud EV SSL Certificate CA RSA R
3,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MIGEMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEwMC4GA1UEAwwnSW50ZXJDbG91ZCBFViBTU0wgQ2VydGlmaWNhdGUgQ0EgUlNBIFIz","whitelist":false,"attachment":{"hash":"fbc3954b7d52a01d40cab42d2bc9fc08eff3e597a5d428992bb9581b7a8c94e0","size":2471,"filename":"hPLzG6Vy1gf1PMWWgLY8z_a0WyqyMoej9-buHprroIU=.pem","location":"security-state-staging/intermediates/f78a36aa-8e5c-4bf1-a835-3ab514fc45cc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hPLzG6Vy1gf1PMWWgLY8z/a0WyqyMoej9+buHprroIU=","crlite_enrolled":false,"id":"edb99a2d-ef3a-4ae0-bf49-a63992885a1e","last_modified":1576536531281},{"schema":1576536076033,"derHash":"o6/XI3XB16gzDmLVd+E1gbcjMsgGLfqc855RrmUIhYI=","subject":"CN=emSign ECC CS CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFgxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEeMBwGA1UEAxMVZW1TaWduIEVDQyBDUyBDQ
SAtIEMz","whitelist":false,"attachment":{"hash":"e78db72b2b20a263d8c00cd39c67f567bc602deb614b1af569a52798597a55a9","size":1122,"filename":"Qh3k9ZQZLXq0iPvXe_T_63H5TS-rZeD7d7TMPYB2nDQ=.pem","location":"security-state-staging/intermediates/c11d4e0a-dc97-4886-8df9-bb636b532d84.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Qh3k9ZQZLXq0iPvXe/T/63H5TS+rZeD7d7TMPYB2nDQ=","crlite_enrolled":false,"id":"0e5a0ce4-5b84-4080-a74e-7f228333f9b8","last_modified":1576536531267},{"schema":1576536126114,"derHash":"45ank0detv8VCmTWEzp+4KLHtndcvuumlbkNoB2BoEQ=","subject":"CN=Ensured Timestamping CA,O=Ensured B.V.,L=Heerhugowaard,ST=Noord-Holland,C=NL","subjectDN":"MHYxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRYwFAYDVQQHEw1IZWVyaHVnb3dhYXJkMRUwEwYDVQQKEwxFbnN1cmVkIEIuVi4xIDAeBgNVBAMTF0Vuc3VyZWQgVGltZXN0YW1waW5nIENB","whitelist":false,"attachment":{"hash":"cad6a53fe8c841dabf9443dcb6b3d99b137f49b1af74207c6d31953d096f1df7","size":2389,"filename":"VgegaX7G8tbYRNCFSwpzrgTk_xEr-tyezX0fkrC6Opw
=.pem","location":"security-state-staging/intermediates/a6e7795d-6715-4499-b681-96e97a4e8fc4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VgegaX7G8tbYRNCFSwpzrgTk/xEr+tyezX0fkrC6Opw=","crlite_enrolled":false,"id":"1712421f-df63-4c5b-b4ee-0359adde1aa5","last_modified":1576536531238},{"schema":1576536098501,"derHash":"7aycRZCfTex7tl8KT79qigN15Srt1m4GiI/tfj7exTc=","subject":"CN=SSL.com SSL Enterprise Intermediate CA RSA R1,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHoxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxNjA0BgNVBAMMLVNTTC5jb20gU1NMIEVudGVycHJpc2UgSW50ZXJtZWRpYXRlIENBIFJTQSBSMQ==","whitelist":false,"attachment":{"hash":"42a56861b5ab133e4979bc06ef0b003aa3dcaff205a11727c118fa7ddf6a0048","size":2438,"filename":"oKApNpDL2hzvB6fqN6yfWxbdoxF2lvnVZLw24c9MNWU=.pem","location":"security-state-staging/intermediates/81af418f-7a0f-4859-980a-b92c6e71ed11.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oKApNpDL2hzvB6fqN6yfW
xbdoxF2lvnVZLw24c9MNWU=","crlite_enrolled":false,"id":"1ffc4914-2a3d-42d2-af2c-8f6f9dfaa60c","last_modified":1576536531230},{"schema":1576536121479,"derHash":"abDdCbmPNqnMe9f/6KANzTGaX8lHycivcskolNjoEJI=","subject":"CN=emSign Class 3 CA - C1,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEfMB0GA1UEAxMWZW1TaWduIENsYXNzIDMgQ0EgLSBDMQ==","whitelist":false,"attachment":{"hash":"3aa155eb8f98e023c61de4d46433bc4046b93234f688f14f6806cdbe52688ea5","size":1540,"filename":"196cBc4ZpZ-dgc2f9eiIzsTDKH1UcMUQklpeqjt81U8=.pem","location":"security-state-staging/intermediates/99544220-2852-47f5-be07-65330e576225.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"196cBc4ZpZ+dgc2f9eiIzsTDKH1UcMUQklpeqjt81U8=","crlite_enrolled":false,"id":"b1870974-fb66-409f-a707-cfab57324858","last_modified":1576536531194},{"schema":1576536083268,"derHash":"itR/bXCkT6gK8PkxEl/+OnaHb/rSGaTUChPAONyF5p4=","subject":"CN=TWCA Global Root CA,
OU=Root CA,O=TAIWAN-CA,C=TW","subjectDN":"MFExCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExEDAOBgNVBAsTB1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3QgQ0E=","whitelist":false,"attachment":{"hash":"6e89794002729d6ef21257984707c517e72b2e5f2de8c602a8b0b3cdc1a90d19","size":1914,"filename":"xES1tmzl1x4bXkDyc4XJXL_SSgW1b3DKwJkvD1DDN5w=.pem","location":"security-state-staging/intermediates/9bf8c741-9386-401d-8c59-f5410390ae2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xES1tmzl1x4bXkDyc4XJXL/SSgW1b3DKwJkvD1DDN5w=","crlite_enrolled":false,"id":"954d0ac8-d979-4964-a8f1-6ae3ae761ebc","last_modified":1576536531183},{"schema":1576536078694,"derHash":"PzHbdYKNqpbk3luCoGeP4gI71bJGw/klDL9nGOEJWPU=","subject":"CN=Domain The Net Technologies Ltd CA for EV SSL R2,O=Domain The Net Technologies Ltd,C=IL","subjectDN":"MHIxCzAJBgNVBAYTAklMMSgwJgYDVQQKDB9Eb21haW4gVGhlIE5ldCBUZWNobm9sb2dpZXMgTHRkMTkwNwYDVQQDDDBEb21haW4gVGhlIE5ldCBUZWNobm9sb2dpZXMgTHRkIENBIGZvciBFViBTU0wgUjI=","whitelist":false,"
attachment":{"hash":"cf5351124dd205109785f9b65c288b991342bec54071a6a24020c197870d64f5","size":2487,"filename":"Lk19AkNIC7AwHNF5HsU_phCEnUBI-eiA0mbFhxxeQsQ=.pem","location":"security-state-staging/intermediates/e3c32426-ee59-4729-9b1d-1ad5faa81c2c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Lk19AkNIC7AwHNF5HsU/phCEnUBI+eiA0mbFhxxeQsQ=","crlite_enrolled":false,"id":"dafe281c-5c26-4b1e-b927-70b741e43b25","last_modified":1576536531160},{"schema":1576536136786,"derHash":"VyZLgqhk26HBHvP4CruUysNmBmKwwi9XH/mTs/vPdvs=","subject":"CN=GlobalSign R6 RSA EV SSL CA 2019,O=GlobalSign nv-sa,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIFI2IFJTQSBFViBTU0wgQ0EgMjAxOQ==","whitelist":false,"attachment":{"hash":"3b45d522dacf5c2af31738aa7c87c46d04931ff0b15b7fac7f3a0f171300c60f","size":1963,"filename":"QOolPR845HC8Ff4855uLdJUjLioapW8oSD6M_yIMFwA=.pem","location":"security-state-staging/intermediates/8742ca82-49c0-4222-b980-771286d11f78
.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QOolPR845HC8Ff4855uLdJUjLioapW8oSD6M/yIMFwA=","crlite_enrolled":true,"id":"ce348e68-e297-4df6-86a7-02c8ed110b86","last_modified":1576536531157},{"schema":1576536106491,"derHash":"fb38a9RGPU4iR5vaTkqXP1islIRdsL+GwPaes9cZaRo=","subject":"CN=Entrust Certificate Authority - VMC1,OU=See www.entrust.net/legal-terms+OU=(c) 2018 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG5MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTggRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS0wKwYDVQQDEyRFbnRydXN0IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIFZNQzE=","whitelist":false,"attachment":{"hash":"bb02397873f2c4d4ce4d00db9eb18931f8ed1d39d0b0013faf79e12d252bbf17","size":1845,"filename":"ccMHyN2s134FoF3tjZvYF97dSeZrfgLvt_bx5e-ZL6c=.pem","location":"security-state-staging/intermediates/3e0427b3-ebac-48e1-b923-b2775b46dba3.pem","mimetype":"a
pplication/x-pem-file"},"pubKeyHash":"ccMHyN2s134FoF3tjZvYF97dSeZrfgLvt/bx5e+ZL6c=","crlite_enrolled":true,"id":"3817f2f2-2578-409e-ad5f-fe770e6cea9e","last_modified":1576536531128},{"schema":1576536084822,"derHash":"OrzpUwGd8lge2sq1i+jhQ/5pCn+Twow3PCB2J/gYJk4=","subject":"CN=University of Piraeus CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHkxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEkMCIGA1UEAxMbVW5pdmVyc2l0eSBvZiBQaXJhZXVzIENBIFIx","whitelist":false,"attachment":{"hash":"ba3408ac68d16d056b4d13b99108fdd4576e2f22a9d9433b1760f7042dff9c1e","size":2690,"filename":"2SDXGPdNzKQhI4oHjk5oMhN0ay9cD5oHXhHLGzJftiI=.pem","location":"security-state-staging/intermediates/2d1416fb-780b-4826-b492-392b31a4d840.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2SDXGPdNzKQhI4oHjk5oMhN0ay9cD5oHXhHLGzJftiI=","crlite_enrolled":true,"id":"512ea919-32ec-46b7-bb60-30d517367583","last_modi
fied":1576536531112},{"schema":1576536070287,"derHash":"BbMLP8RPhXUzS9gS75+opSp1dD4ZvDWlvjkS7KYsRmk=","subject":"CN=emSign Class 2 CA - C1,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEfMB0GA1UEAxMWZW1TaWduIENsYXNzIDIgQ0EgLSBDMQ==","whitelist":false,"attachment":{"hash":"9e607bd9110b39c805c7004ad3bfc08fe04b920a7b93635f51bf863efcf5e402","size":1540,"filename":"wS3fnwn6I-0aX-URrvRiO7hPWPjTnhX4ui6vAkztOls=.pem","location":"security-state-staging/intermediates/090d486e-d557-4442-bccd-17e9440798f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wS3fnwn6I+0aX+URrvRiO7hPWPjTnhX4ui6vAkztOls=","crlite_enrolled":false,"id":"2938bfef-51d8-4a22-8411-49848fd8bfc8","last_modified":1576536531087},{"schema":1576536072203,"derHash":"yvOiKdRUWX8mKTnwfhBWg6cf3PkWRvxgoyr2s1T+Uq4=","subject":"CN=GIAG4 ECC,O=Google Trust Services LLC,C=US","subjectDN":"MEUxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTE
xDMRIwEAYDVQQDEwlHSUFHNCBFQ0M=","whitelist":false,"attachment":{"hash":"d250d9ee687cf9e4246b82644cb5630d09a6b047ffbc09e2710c262db5258086","size":1033,"filename":"BZc_5XFEr4iNHxqv9J30g896n5jT5IJLYZJnXyqUkIU=.pem","location":"security-state-staging/intermediates/0586b336-44bf-4b57-81a3-a597aa6ac696.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BZc/5XFEr4iNHxqv9J30g896n5jT5IJLYZJnXyqUkIU=","crlite_enrolled":true,"id":"6b4f13f9-70f4-409d-8480-f02c4bff0feb","last_modified":1576536531082},{"schema":1576536117185,"derHash":"JKyImXRpR4nb1OEl/uGku6kVMgVnlcBSRLtmQAqdAxY=","subject":"CN=Intel External Issuing CA 6A,O=Intel Corporation,L=Santa Clara,ST=CA,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEUMBIGA1UEBxMLU2FudGEgQ2xhcmExGjAYBgNVBAoTEUludGVsIENvcnBvcmF0aW9uMSUwIwYDVQQDExxJbnRlbCBFeHRlcm5hbCBJc3N1aW5nIENBIDZB","whitelist":false,"attachment":{"hash":"689c11e7ec910735efff604833048c221777eab4f3a869452217208a6496c697","size":5302,"filename":"62Bjz2wUDypDAJAdgOWO6g4Q-xvh
F2S5V9Ub4WaF38c=.pem","location":"security-state-staging/intermediates/0eb0ede0-3b40-4914-b328-d867d46793d0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"62Bjz2wUDypDAJAdgOWO6g4Q+xvhF2S5V9Ub4WaF38c=","crlite_enrolled":false,"id":"996fe70e-67a0-4e5f-bbb2-c6aa08b730f6","last_modified":1576536531076},{"schema":1576536109863,"derHash":"K2XkXqGBwcwhscyen7HhD1QSlDK7eJc/YIxmpBUfvw4=","subject":"CN=SwissSign Personal Gold CA 2008 - G2,O=SwissSign AG,C=CH","subjectDN":"MFMxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxLTArBgNVBAMTJFN3aXNzU2lnbiBQZXJzb25hbCBHb2xkIENBIDIwMDggLSBHMg==","whitelist":false,"attachment":{"hash":"598861c42588dab6e66731a8211dd284f0fd76066d4512d38abb614bf0c0fec1","size":2272,"filename":"H8wvfs1_9UKqnEqfWrRdcjdulVUeWxShhG-KY5EtdAA=.pem","location":"security-state-staging/intermediates/c3f9f87d-4c3d-46e8-a9e5-97afdf8a5d56.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H8wvfs1/9UKqnEqfWrRdcjdulVUeWxShhG+KY5EtdAA=","crlite_enrolled":false,"id":"eebb6e
d7-cb4d-4157-8fc3-1589b7cf744e","last_modified":1576536531073},{"schema":1576536134507,"derHash":"BMQG8UgFI5rZqnMOQEMJhCUGJjcjBPeIg8iy7sTh8Ow=","subject":"CN=CertAssure RSA EV Secure Server Certification Authority,OU=Controlled by COMODO exclusively for CertAssure Inc.,O=CertAssure Inc.,L=San Jose,ST=CA,C=US","subjectDN":"MIHIMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExETAPBgNVBAcTCFNhbiBKb3NlMRgwFgYDVQQKEw9DZXJ0QXNzdXJlIEluYy4xPTA7BgNVBAsTNENvbnRyb2xsZWQgYnkgQ09NT0RPIGV4Y2x1c2l2ZWx5IGZvciBDZXJ0QXNzdXJlIEluYy4xQDA+BgNVBAMTN0NlcnRBc3N1cmUgUlNBIEVWIFNlY3VyZSBTZXJ2ZXIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"39f2469fbb8df9e31c6e1ac1d1f7adde9b94b1d93547c15a7bca015ee52b5be9","size":2284,"filename":"V-duof7YTC0BUw__nveYUxHnrma4qFXZJSOkbo7nmLA=.pem","location":"security-state-staging/intermediates/a6f51c91-d5c9-404f-a32f-c53011a17dcf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V+duof7YTC0BUw//nveYUxHnrma4qFXZJSOkbo7nmLA=","crlite_enrolled":false,"id":"a
2fccee2-f622-4d53-8bcc-821725ef9be7","last_modified":1576536531041},{"schema":1576536138351,"derHash":"z/m1TQAiAQAbZbHrdHSkXNGWV0DLrWqpMTxgovUo4Pc=","subject":"CN=InterCloud Code Signing Certificate CA RSA R3,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MIGKMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzE2MDQGA1UEAwwtSW50ZXJDbG91ZCBDb2RlIFNpZ25pbmcgQ2VydGlmaWNhdGUgQ0EgUlNBIFIz","whitelist":false,"attachment":{"hash":"9e1ed4fa952f2f9b9a4fe771769f7256c676f3e12d757b982fdd175a6ede8bf3","size":2450,"filename":"yAZPLkv0qbo69hAf_tCw5gCcLyL1r_oksv9mX_yQPm4=.pem","location":"security-state-staging/intermediates/0f6e2365-6b15-47d3-96f2-37104310baf8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yAZPLkv0qbo69hAf/tCw5gCcLyL1r/oksv9mX/yQPm4=","crlite_enrolled":false,"id":"d9ef7752-6373-47eb-8368-7254d44bc48d","last_modified":1576536531038},{"schema":1576536088599,"derHash":"k7KBvYHYPPmGZZ3/0K9XmTuS5uR
hQWJTn3UFJM4Ru8s=","subject":"CN=Abitab SSL Extended Validation,OU=IDdigital,O=Abitab S.A.,C=UY","subjectDN":"MGAxCzAJBgNVBAYTAlVZMRQwEgYDVQQKDAtBYml0YWIgUy5BLjESMBAGA1UECwwJSURkaWdpdGFsMScwJQYDVQQDDB5BYml0YWIgU1NMIEV4dGVuZGVkIFZhbGlkYXRpb24=","whitelist":false,"attachment":{"hash":"a994aaf2225099f989467d317d95162a61ab0f2a8b48927a953540b65a87fe3e","size":1703,"filename":"y2KaAsU1VfJfWRQYPeq3HVxO1GVrwSw4xGq7rSJtyII=.pem","location":"security-state-staging/intermediates/972694b4-ca85-44f1-91f0-7e0a868a3149.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"y2KaAsU1VfJfWRQYPeq3HVxO1GVrwSw4xGq7rSJtyII=","crlite_enrolled":false,"id":"04ee2b55-620a-4d2e-a4c7-00b5c73ec962","last_modified":1576536531027},{"schema":1576536117970,"derHash":"IqBmaJrJHHl9lwFGsLwTjhcDudqrpIFl/SVheSy3ApI=","subject":"CN=Ensured Root CA,O=Ensured B.V.,L=Heerhugowaard,ST=Noord-Holland,C=NL","subjectDN":"MG4xCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRYwFAYDVQQHEw1IZWVyaHVnb3dhYXJkMRUwEwYDVQQKEwxFbnN1cmVk
IEIuVi4xGDAWBgNVBAMTD0Vuc3VyZWQgUm9vdCBDQQ==","whitelist":false,"attachment":{"hash":"58c6b3f9590beaac8c847b51838c79979c51e03d2e6837c39bec42dd614f1bbb","size":2499,"filename":"oFFz-dNXVxF2ZtWXUXfFMl3bcWWlI43L4JLhIemPN3w=.pem","location":"security-state-staging/intermediates/35e9d30a-5e67-4eb9-9300-626da1a8a5ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oFFz+dNXVxF2ZtWXUXfFMl3bcWWlI43L4JLhIemPN3w=","crlite_enrolled":false,"id":"b9b47555-b6c5-4ee0-a493-eddd58344aa5","last_modified":1576536531021},{"schema":1576536120269,"derHash":"cKsPoVhs3K9hbpRorYiZV9uIsvpRMmDVv7TXGGJLyas=","subject":"CN=InterCloud Client Certificate CA ECC R3,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MIGEMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEwMC4GA1UEAwwnSW50ZXJDbG91ZCBDbGllbnQgQ2VydGlmaWNhdGUgQ0EgRUNDIFIz","whitelist":false,"attachment":{"hash":"15381690ccb8715220ee0f2d1bd5f129abc513efd4d1b81be9011a5cc9
70a66c","size":1313,"filename":"FAxGAbOZXGp0v7CYE5tx-qSnEMhHxrej_VYYc0sM8lM=.pem","location":"security-state-staging/intermediates/e5d3b545-57b5-48bb-b906-dee6c7d31674.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FAxGAbOZXGp0v7CYE5tx+qSnEMhHxrej/VYYc0sM8lM=","crlite_enrolled":false,"id":"7963f1dc-116f-42ab-9528-718e02a7037c","last_modified":1576536530984},{"schema":1576536095441,"derHash":"+tLphknxxgYVD1UmnrwDWuoi/6wTHeZLppAMddhEe34=","subject":"CN=emSign ECC Class 1 CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEjMCEGA1UEAxMaZW1TaWduIEVDQyBDbGFzcyAxIENBIC0gQzM=","whitelist":false,"attachment":{"hash":"c516b0ad97b1477bff6c92128e355bb9684dfe454d1ed7edc1e2a015ab934271","size":1098,"filename":"EqlTjvAcH3DgHiMTTQZXlA45Cyry_ZcvmeEoRmnEl5k=.pem","location":"security-state-staging/intermediates/e0fbcccb-8a1c-4bef-bbd6-b6e85d8aa2bd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EqlTjvA
cH3DgHiMTTQZXlA45Cyry/ZcvmeEoRmnEl5k=","crlite_enrolled":false,"id":"aa27b627-8f3f-4f46-a72d-a321873e033e","last_modified":1576536530924},{"schema":1576536123465,"derHash":"n4sFE38grN6bmWQQ9NC/eXGhAG3JnglMNG0nm5PP964=","subject":"CN=Certum Trusted Network CA 2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGAMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBIDI=","whitelist":false,"attachment":{"hash":"2ed8b49464676c3582a67b99f3e5cd0dd098cf86ea3a380a08fdb723ecff73a6","size":2081,"filename":"aztX6eyI0bs9AWN_8zx2mLPJdYJV6fAeqRePPn87K1I=.pem","location":"security-state-staging/intermediates/33541c6c-eb11-48ef-a315-ad9ba3237f2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aztX6eyI0bs9AWN/8zx2mLPJdYJV6fAeqRePPn87K1I=","crlite_enrolled":false,"id":"a3bedf42-c492-4e6c-a5b0-121be9c27b82","last_modified":1576536530917},{"schema":
1576536115651,"derHash":"PIsNXCrfL3CQqbj/RSpBQYM96qBbX0TpUT25S/3x1r0=","subject":"CN=DigiCert Assured ID Code Signing CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLjAsBgNVBAMTJURpZ2lDZXJ0IEFzc3VyZWQgSUQgQ29kZSBTaWduaW5nIENBLTE=","whitelist":false,"attachment":{"hash":"e7bb74d116899e94bb94f4648506beb395c201e451b7a717b2597204d707f0da","size":2361,"filename":"RElq7qZGBSzuZ3oQFuu4t-dh5QqmqZDyU-EAqeRVfJ4=.pem","location":"security-state-staging/intermediates/00f269ef-41b3-49c1-a17f-997a67e72cc2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RElq7qZGBSzuZ3oQFuu4t+dh5QqmqZDyU+EAqeRVfJ4=","crlite_enrolled":false,"id":"5ad4c097-50a4-4cb9-96b5-464ffb534360","last_modified":1576536530901},{"schema":1576536132210,"derHash":"6j0fxryF0/KKJ5/s0nFu37JIAboKkXMdndT2HAAF3OA=","subject":"CN=InterCloud Client Certificate CA RSA,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN"
:"MIGBMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEtMCsGA1UEAwwkSW50ZXJDbG91ZCBDbGllbnQgQ2VydGlmaWNhdGUgQ0EgUlNB","whitelist":false,"attachment":{"hash":"492e0463351fa0afda4ce4b8d543ce8bd04f92b6af7eb48b1ae6e6acc0a873d7","size":2458,"filename":"bTbQPhmklBVN2-MAzB_0isQMRAbBSvu6grjyvXYmNoA=.pem","location":"security-state-staging/intermediates/e0bfc4c4-4509-4b19-b44a-520e027bb6bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bTbQPhmklBVN2+MAzB/0isQMRAbBSvu6grjyvXYmNoA=","crlite_enrolled":false,"id":"7591fdc5-75b0-4980-b1f3-1a16f824a8d2","last_modified":1576536530898},{"schema":1576536071043,"derHash":"qvJSMNAwHa37HdV2g/rSUxk15z06evkfiMIJLfZPHlU=","subject":"CN=Sectigo RSA Client Authentication and Secure Email CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGWMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxPjA8BgNVBAMT
NVNlY3RpZ28gUlNBIENsaWVudCBBdXRoZW50aWNhdGlvbiBhbmQgU2VjdXJlIEVtYWlsIENB","whitelist":false,"attachment":{"hash":"972372f27d0e8a57aebece9d4ffd182cfe091eb2da10dc63ef24fb3e99505316","size":2162,"filename":"P4e3-L27Gol5FEOf4FvS1VtqCeuUHIS2ggBLqq2iVno=.pem","location":"security-state-staging/intermediates/51e4090e-a587-4bb4-95dd-3a21896e60ca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"P4e3+L27Gol5FEOf4FvS1VtqCeuUHIS2ggBLqq2iVno=","crlite_enrolled":true,"id":"79b1007e-6c07-4d7e-917c-835771f2207e","last_modified":1576536530893},{"schema":1576536101197,"derHash":"n0PVLoCMIK/2ngL6rCBarGhOaXUhPWYg+sZL3l/KtLw=","subject":"CN=Starfield Root Certificate Authority - G2,O=Starfield Technologies\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIGPMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UEAxMpU3RhcmZpZWxkIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"789b90
56f79d6141a6214c6b990151b3e4959ece572fb2004fd731b195d33a79","size":1662,"filename":"gI1os_q0iEpflxrOfRBVDXqVoWN3Tz7Dav_7IT--THQ=.pem","location":"security-state-staging/intermediates/f18299c6-f4da-4af4-9ec8-a8d711749b1c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gI1os/q0iEpflxrOfRBVDXqVoWN3Tz7Dav/7IT++THQ=","crlite_enrolled":false,"id":"bd0ecefd-cffd-4cd5-8a92-4ea3a0be8a89","last_modified":1576536530882},{"schema":1576536093158,"derHash":"PEa4r0DrgqOjMNjFvQfhy2FrRrHXAReeAls+aGbjyJ4=","subject":"CN=SECOM Passport for Web MH CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MFsxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSUwIwYDVQQDExxTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIE1IIENB","whitelist":false,"attachment":{"hash":"1e77e83301dcd18767f1427a54e0da0cf6cfcca8d5a86931141a03a6aeeded7a","size":1630,"filename":"-WHNrFdX4L0XyuQsW7J364wRog3UU202mTVvLAgf0-Q=.pem","location":"security-state-staging/intermediates/df21fb52-0b48-4442-a551-4721b94d9185.pem","mi
metype":"application/x-pem-file"},"pubKeyHash":"+WHNrFdX4L0XyuQsW7J364wRog3UU202mTVvLAgf0+Q=","crlite_enrolled":false,"id":"af3b1462-5642-48da-b488-f8d9f455609b","last_modified":1576536530854},{"schema":1576536126483,"derHash":"C62pebcUAv6GBpYDLPQOnSo/Qcy10DvjP7uUqA1//Hw=","subject":"CN=emSign ECC EV CS CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGwxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMSEwHwYDVQQDExhlbVNpZ24gRUNDIEVWIENTIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"ced67ca3e556805fc8dff2f88fe0a7eb2085c52e69c4487451bc0751f3fdd556","size":1171,"filename":"EJmcyHOC7lF3LeT2tA6NEeiAraOIeA9S1UYpt02xkfM=.pem","location":"security-state-staging/intermediates/cbb4de63-2aae-4252-8c82-60ec375b9f75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EJmcyHOC7lF3LeT2tA6NEeiAraOIeA9S1UYpt02xkfM=","crlite_enrolled":false,"id":"ac6b7097-8d8e-48f7-95dd-c5b3f779e44b","last_modified":1576536530846},{"s
chema":1576536102706,"derHash":"+BMqOx0ZAlxebrPBt2tTRljBGlvmkETp1ER7V5Rju0U=","subject":"CN=SecureCore RSA EV CA,OU=Controlled by COMODO exclusively for SecureCore,O=SecureCore,L=OSAKA,ST=OSAKA,C=JP","subjectDN":"MIGbMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFT1NBS0ExDjAMBgNVBAcTBU9TQUtBMRMwEQYDVQQKEwpTZWN1cmVDb3JlMTgwNgYDVQQLEy9Db250cm9sbGVkIGJ5IENPTU9ETyBleGNsdXNpdmVseSBmb3IgU2VjdXJlQ29yZTEdMBsGA1UEAxMUU2VjdXJlQ29yZSBSU0EgRVYgQ0E=","whitelist":false,"attachment":{"hash":"5c3979464fc2a18f34c71294f923f114dd13022b37f77d094c13eeaebc622af7","size":2227,"filename":"4oLlji5ovjgkWA95bS8h_Ik9hO3Fy_mgx1aM3Jv7Bn0=.pem","location":"security-state-staging/intermediates/3b845211-4906-4376-af9c-f6badae8bcae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4oLlji5ovjgkWA95bS8h/Ik9hO3Fy/mgx1aM3Jv7Bn0=","crlite_enrolled":false,"id":"ee5c06bc-0408-4c89-9c71-e4c6f1e26161","last_modified":1576536530832},{"schema":1576536077934,"derHash":"FFEKshf93SD6POLxcVg6RMXFP2ytCIa60Kkc+2ZmMtg=","subject":"CN=Fuji Xer
ox Xnet CA - S,O=Fuji Xerox,C=JP","subjectDN":"MEMxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MR8wHQYDVQQDExZGdWppIFhlcm94IFhuZXQgQ0EgLSBT","whitelist":false,"attachment":{"hash":"57dab81e035f1e449c6b003fbfe4285e15046b4a31eb117a8b448089a24297e2","size":1597,"filename":"gAO3JhjiAz1Zf0po-cZL3EE5-B8ldkQ96CMkLA6pwic=.pem","location":"security-state-staging/intermediates/e24ff5fa-e62b-4eda-8e09-f1f1ba2a144f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gAO3JhjiAz1Zf0po+cZL3EE5+B8ldkQ96CMkLA6pwic=","crlite_enrolled":false,"id":"6f18cf19-a326-40aa-92df-d8dd2db7b375","last_modified":1576536530823},{"schema":1576536102337,"derHash":"gAQlY9tfFi5FVjK1icYBUPN+9/7bd0xtwu1bpvuGUSA=","subject":"CN=Fuji Xerox Product CA - S,O=Fuji Xerox,C=JP","subjectDN":"MEYxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MSIwIAYDVQQDExlGdWppIFhlcm94IFByb2R1Y3QgQ0EgLSBT","whitelist":false,"attachment":{"hash":"2bd8c47808af695a6613fd3fda43e5e89156aa141086ccc13c4c478f1db0e222","size":1601,"filename":"cC-MmfQj
J6-hHwnk1ddR_Ki1Ompz1JMISw5dkaAcWHU=.pem","location":"security-state-staging/intermediates/6d9a5767-2099-402d-afb9-4293160f950e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cC+MmfQjJ6+hHwnk1ddR/Ki1Ompz1JMISw5dkaAcWHU=","crlite_enrolled":false,"id":"be853ae0-909e-4510-9fd8-ad6fb1bf7e15","last_modified":1576536530792},{"schema":1576536082122,"derHash":"V8B4jlHXvRRHDPnk830z+8EEx3UB69lXFm0U9ExRbDA=","subject":"CN=eMudhra RSA Organization Validation Secure Server CA,O=eMudhra Technologies Limited,L=Bengaluru,ST=Karnataka,C=IN","subjectDN":"MIGbMQswCQYDVQQGEwJJTjESMBAGA1UECBMJS2FybmF0YWthMRIwEAYDVQQHEwlCZW5nYWx1cnUxJTAjBgNVBAoTHGVNdWRocmEgVGVjaG5vbG9naWVzIExpbWl0ZWQxPTA7BgNVBAMTNGVNdWRocmEgUlNBIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"1dc5009b8a187d80f4c2d4b64c686bc21f7c5271889d102e7e57b598f0844b51","size":2190,"filename":"D9NZ6oWac3feaXj7Ii5NCfiL5RG3s0UIV08ecGxPgtc=.pem","location":"security-state-staging/intermediates/86
678ec4-fa06-4337-ae60-af7ccb4a876d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D9NZ6oWac3feaXj7Ii5NCfiL5RG3s0UIV08ecGxPgtc=","crlite_enrolled":true,"id":"141d5b09-0e83-42ba-ae07-12fff6f057fe","last_modified":1576536530789},{"schema":1576536090496,"derHash":"tm0ozXDm0bMhaI4cR+Y8Q8dqxQMSkJ1OMNePCLLtYFo=","subject":"CN=Gehirn Managed Certification Authority - RSA OV,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIGCMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMTgwNgYDVQQDEy9HZWhpcm4gTWFuYWdlZCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIFJTQSBPVg==","whitelist":false,"attachment":{"hash":"cc9bd6f9b4c416502e6664e834588afc8e552cabdfcd1da1a05bb57e4a8d208b","size":2158,"filename":"sshJv9IEWk4-_PzdkseeN0rxfdOaGYVax8sZbKeQegY=.pem","location":"security-state-staging/intermediates/1164b7bb-5691-4323-ad2c-7fdcd5cc1406.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sshJv9IEWk4+/PzdkseeN0rxfdOaGYVax8sZbKeQegY=","crlite_enroll
ed":false,"id":"070c5338-70b0-43f6-af7a-47b4b217d8b6","last_modified":1576536530783},{"schema":1576536082901,"derHash":"cGag9C9TDg21r+5yo7BN5hTn0jBcZ9EsdWuyFeN8uXU=","subject":"CN=emSign ECC Class 3 CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MG4xCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMSMwIQYDVQQDExplbVNpZ24gRUNDIENsYXNzIDMgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"a70534399006c5c9656d36fab666a70380eef9fb1048307630726609ee92f9e0","size":1146,"filename":"jCaXOAfJZSEcZ2svKHJ5NTIJpwnQiYsnkj_rOSON6UU=.pem","location":"security-state-staging/intermediates/87469897-2f9a-45ba-aabb-01e0de7e07a6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jCaXOAfJZSEcZ2svKHJ5NTIJpwnQiYsnkj/rOSON6UU=","crlite_enrolled":false,"id":"a029188c-564e-4bac-988a-0d1d88ede978","last_modified":1576536530747},{"schema":1576536091651,"derHash":"t8br3CobZe8YNtwAJQxE4VcDEhBSwatrnQOFoFgVOuM=","subject":"CN=TERENA Cod
e Signing CA 3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MG0xCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEhMB8GA1UEAxMYVEVSRU5BIENvZGUgU2lnbmluZyBDQSAz","whitelist":false,"attachment":{"hash":"9595df35a7756d2f24d866de1c547105fb2d1a23c92599127ec1619cec0e5882","size":1829,"filename":"USGSmlpkcecWrLB5M3IEvxRSpeUQQE1OwxGf996ZYQc=.pem","location":"security-state-staging/intermediates/7b8f4903-0cfd-41f6-bf07-2c11090076ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"USGSmlpkcecWrLB5M3IEvxRSpeUQQE1OwxGf996ZYQc=","crlite_enrolled":false,"id":"93337ced-e601-42f7-8544-8ca9911b970e","last_modified":1576536530728},{"schema":1576536137180,"derHash":"18DvgKPaxNpcfpU8YlVVlmlZ3KkxIvInKIUL6q8XQa8=","subject":"CN=InterCloud Ventures CA for ClientCert RSA,O=InterCloud Ventures Inc,C=SC","subjectDN":"MGMxCzAJBgNVBAYTAlNDMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEyMDAGA1UEAwwpSW50ZXJDbG91ZCBWZW50dXJlcyBDQSBmb3IgQ2xpZW50Q2
VydCBSU0E=","whitelist":false,"attachment":{"hash":"1a61b2027ba9e04f54ba2c1975baba6a7302e88dad005b69309298f28dcbb069","size":2418,"filename":"DVzxlQQTcDaxRb7Thp47SkJtXlhSGa2iHgnSPgAIcKY=.pem","location":"security-state-staging/intermediates/8798e2e6-3fd7-4fe3-9d33-05761fe4f040.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DVzxlQQTcDaxRb7Thp47SkJtXlhSGa2iHgnSPgAIcKY=","crlite_enrolled":false,"id":"b868818e-a798-4e90-a5b7-9df711eb98fb","last_modified":1576536530720},{"schema":1576536129132,"derHash":"AH0sixV4YjK6wOqjH2Cq4G3FcpIbrQ1Gx3EH2MLcpLM=","subject":"CN=DigiCert High Assurance Code Signing CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMjAwBgNVBAMTKURpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIENvZGUgU2lnbmluZyBDQS0x","whitelist":false,"attachment":{"hash":"82dca5587e213be35931a42824ef1b9490aed5a1516174a65dd432e88de10d4b","size":2402,"filename":"Ri51OBAOoLg9jnSXfa68LI5ByJkcEGrPLItVgWC
XEi0=.pem","location":"security-state-staging/intermediates/547f9b3e-e076-4477-b8bb-03322f731f5f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ri51OBAOoLg9jnSXfa68LI5ByJkcEGrPLItVgWCXEi0=","crlite_enrolled":false,"id":"9653732b-f401-488c-af29-94e5348433f1","last_modified":1576536530696},{"schema":1576536073348,"derHash":"IBwGF8wzEMfyn8vka1dFm8Z4aouidTAY6yfB6AAWii4=","subject":"SERIALNUMBER=A82743287,CN=GLOBAL CORPORATE SERVER,O=AC Camerfirma S.A.,L=Madrid (see current address at www.camerfirma.com/address),C=ES","subjectDN":"MIGlMQswCQYDVQQGEwJFUzFDMEEGA1UEBww6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTEbMBkGA1UECgwSQUMgQ2FtZXJmaXJtYSBTLkEuMRIwEAYDVQQFEwlBODI3NDMyODcxIDAeBgNVBAMMF0dMT0JBTCBDT1JQT1JBVEUgU0VSVkVS","whitelist":false,"attachment":{"hash":"793fb09204775121a36d94490bb1db8fac7223f956e39839e78312ddbc396881","size":2918,"filename":"cm983EKKIFObkQXG4Px6wK6fhcnGoOnGmpdiszhdgnc=.pem","location":"security-state-staging/intermediates/9
2d9580d-4cd2-40d0-b184-d1288a6e9346.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cm983EKKIFObkQXG4Px6wK6fhcnGoOnGmpdiszhdgnc=","crlite_enrolled":false,"id":"ca7f15aa-576e-4c11-b2ff-ab17d8fc59e4","last_modified":1576536530670},{"schema":1576536116411,"derHash":"Y6g2ncgkpCvHrm7l0mqv0y30r2d8oYuUG3pX4zseNVk=","subject":"CN=emSign Class 2 CA - G1,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGoxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMR8wHQYDVQQDExZlbVNpZ24gQ2xhc3MgMiBDQSAtIEcx","whitelist":false,"attachment":{"hash":"eed8ae8522e552261846735911703422edcda86f9319535078afc6d728d2a768","size":1585,"filename":"3bEiK1EHsF_yyH5kHV9snYO-hS_ijijvRBCS1wrrAuc=.pem","location":"security-state-staging/intermediates/d8c04dd9-2d2c-4510-a92e-286b8f977661.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3bEiK1EHsF/yyH5kHV9snYO+hS/ijijvRBCS1wrrAuc=","crlite_enrolled":false,"id":"26f75550-6f7c-4915-a0c5-6ce0fc78a1
6b","last_modified":1576536530666},{"schema":1576536103822,"derHash":"oEpRS7gRTAPLa9uYFyNgzwvmgun6EdXYBnMJztEVGHI=","subject":"CN=InterCloud Client Certificate CA RSA R3,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MIGEMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEwMC4GA1UEAwwnSW50ZXJDbG91ZCBDbGllbnQgQ2VydGlmaWNhdGUgQ0EgUlNBIFIz","whitelist":false,"attachment":{"hash":"d2ef1ad672c2124bb41aa28b4a68e4170c1d21b11ba0de3bce99cfad4c2d6ea4","size":2475,"filename":"RU7z7Sf2d5WOjWnAl8q-nWTzHsG_NR5njeswcm4xFwU=.pem","location":"security-state-staging/intermediates/49e4a997-d0fd-423c-bc13-8792ddab3f48.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RU7z7Sf2d5WOjWnAl8q+nWTzHsG/NR5njeswcm4xFwU=","crlite_enrolled":false,"id":"8404d0aa-3718-4f57-ba78-f9cc2e58060e","last_modified":1576536530599},{"schema":1576536112949,"derHash":"EdXvRg2rNYK3QhIxJxJ9VAQPscIG4m8CXLWEWPIlERo=","subject":"CN=HARICA SSL ECC
SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGGMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEgMB4GA1UEAwwXSEFSSUNBIFNTTCBFQ0MgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"90ccc75b0a6ae9b340199fa07f14417de52268b581d41473e2ece14b411f9423","size":1370,"filename":"nYO5UGTgmkq1Vf1wcAVPqg8McgUqLIhjZ8R8zTDqvQI=.pem","location":"security-state-staging/intermediates/937e41c4-b81a-4546-a469-03b67c321ff2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nYO5UGTgmkq1Vf1wcAVPqg8McgUqLIhjZ8R8zTDqvQI=","crlite_enrolled":true,"id":"03d21865-516a-4a83-bbed-64f440fbc75e","last_modified":1576536530589},{"schema":1576536134890,"derHash":"2OGKZa94RUhUyqKPsvXnm1fsFB8BBCO8yKcav8BJbCw=","subject":"CN=GENIOUS RSA Extended Validation Secure Server CA,OU=Controlled by Sectigo exclusively for Genious Communications,O=Genious Communications,L=Marrakech,
ST=Marrakech,C=MA","subjectDN":"MIHYMQswCQYDVQQGEwJNQTESMBAGA1UECBMJTWFycmFrZWNoMRIwEAYDVQQHEwlNYXJyYWtlY2gxHzAdBgNVBAoTFkdlbmlvdXMgQ29tbXVuaWNhdGlvbnMxRTBDBgNVBAsTPENvbnRyb2xsZWQgYnkgU2VjdGlnbyBleGNsdXNpdmVseSBmb3IgR2VuaW91cyBDb21tdW5pY2F0aW9uczE5MDcGA1UEAxMwR0VOSU9VUyBSU0EgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"dc505a925299ceeea43e708019d0fb1086a320d0a035fb0cf585b7e376d7e4f6","size":2304,"filename":"ImErDX6kNNxXp53lr4QRD49owJiK0A8orzjdda8pDb0=.pem","location":"security-state-staging/intermediates/ae100f8d-c411-4912-908b-ef0fe59832c9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ImErDX6kNNxXp53lr4QRD49owJiK0A8orzjdda8pDb0=","crlite_enrolled":false,"id":"51c58311-bdec-4aab-a6cb-4a4f8e10e262","last_modified":1576536530584},{"schema":1576536110295,"derHash":"kK8R5XfHLJQLQOwvPVBQcxAJHuYZbJwWsiiIImSk2Ag=","subject":"CN=GeoTrust SSL CA - G2,O=GeoTrust Inc.,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuM
R0wGwYDVQQDExRHZW9UcnVzdCBTU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"49be8c4efb07895b3f53c063b0bdc42ec090d8ac6a5a50f4736bdd2382107b65","size":1569,"filename":"reIKrQPC-mmj-0OSUhJW0gQmUxXSm2O3N3bhso_ENzs=.pem","location":"security-state-staging/intermediates/739c1736-bb09-4fcb-a77b-16a00919c4aa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"reIKrQPC+mmj+0OSUhJW0gQmUxXSm2O3N3bhso/ENzs=","crlite_enrolled":false,"id":"39fd6999-98ad-4452-91c5-c5d5b9161f71","last_modified":1576536530579},{"schema":1576536133765,"derHash":"1I6qVcMuSUMaUxmHdr7HGeXDNZ2Mte5AYBbBhIFdBCk=","subject":"CN=UIS-IntB-CA","subjectDN":"MBYxFDASBgNVBAMTC1VJUy1JbnRCLUNB","whitelist":false,"attachment":{"hash":"de24f135c7bca2cfda41bd1611ddc001fad23d8819325dec4bf6e386b932447e","size":1711,"filename":"ijOSli4ZzEAaB9BJofum10hbmy0ANTh-Hk3l6PItp34=.pem","location":"security-state-staging/intermediates/12455f4c-5005-4b7d-99a6-4f1d40b5c5b1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ijOSli4Z
zEAaB9BJofum10hbmy0ANTh+Hk3l6PItp34=","crlite_enrolled":false,"id":"bfc29d7b-32c1-4544-908c-31f1a7428c70","last_modified":1576536530571},{"schema":1576536082514,"derHash":"UZEcAlmKOaJFWUp4F2j5UDxUaz7tsbcmGv4PpDbjN08=","subject":"CN=InCommon RSA Code Signing CA,OU=InCommon,O=Internet2,L=Ann Arbor,ST=MI,C=US","subjectDN":"MHwxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJNSTESMBAGA1UEBxMJQW5uIEFyYm9yMRIwEAYDVQQKEwlJbnRlcm5ldDIxETAPBgNVBAsTCEluQ29tbW9uMSUwIwYDVQQDExxJbkNvbW1vbiBSU0EgQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"719dda28e517227192940bf007a71318f0a32088f45d10ea1d875d6e8f7672fc","size":2113,"filename":"4tLfAbj1F8M2w2h5CGAbNDdfguBIooQNoy7lajKrCZc=.pem","location":"security-state-staging/intermediates/043a58d3-97e0-428f-8f70-1cbb17254c84.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4tLfAbj1F8M2w2h5CGAbNDdfguBIooQNoy7lajKrCZc=","crlite_enrolled":false,"id":"556b9e93-5a6e-4158-a233-de0b8973e7c4","last_modified":1576536530558},{"schema":1562108705166,"derHash":"SVf
e00EFRkETnLqzuWAGVF0JTUSVkPsIrpp40FpAvYM=","subject":"CN=LAWtrust2048 CA2,O=LAWtrust,C=ZA","subjectDN":"MDsxCzAJBgNVBAYTAlpBMREwDwYDVQQKEwhMQVd0cnVzdDEZMBcGA1UEAxMQTEFXdHJ1c3QyMDQ4IENBMg==","whitelist":false,"attachment":{"hash":"81d17bc1193286f68eb9189a96132eec7b01b9df70c5c0c8be545b723a8b9c97","size":1825,"filename":"tF23S1M73lGV_qIXyJDgt7QyCjnORfV2T1KQKOCPDnY=.pem","location":"security-state-staging/intermediates/c78792ca-adea-456a-8b5d-5e8ff14b0cd2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tF23S1M73lGV/qIXyJDgt7QyCjnORfV2T1KQKOCPDnY=","crlite_enrolled":false,"id":"211f757d-d852-4415-81e8-e7707c0574e6","last_modified":1562108762611},{"schema":1562108592560,"derHash":"GR4LSLeLfvpIIqRlrWmzRAW4eNEL2FPY5Xy4udnlC4s=","subject":"CN=Trust Technologies Global CA,OU=Digital Identity and Security,O=Telecom Italia Trust Technologies S.r.l.,C=IT","subjectDN":"MIGPMQswCQYDVQQGEwJJVDExMC8GA1UEChMoVGVsZWNvbSBJdGFsaWEgVHJ1c3QgVGVjaG5vbG9naWVzIFMuci5sLjEmMCQGA1UECxMdRGlnaXRhbCBJZGVud
Gl0eSBhbmQgU2VjdXJpdHkxJTAjBgNVBAMTHFRydXN0IFRlY2hub2xvZ2llcyBHbG9iYWwgQ0E=","whitelist":false,"attachment":{"hash":"564c57bdee05db70d390e6bcb2f79dd54852bdaa6b303ee4de5c564d29d262a2","size":1683,"filename":"kCvviSGuWkulE1Rv-GhY_fjUuT622_2qjrGk96XfS6A=.pem","location":"security-state-staging/intermediates/a8b72e50-2b9d-4f2e-be8d-f11ffd8c9f52.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kCvviSGuWkulE1Rv+GhY/fjUuT622/2qjrGk96XfS6A=","crlite_enrolled":true,"id":"5c03ce12-486e-4b06-811e-bb3df097bbb5","last_modified":1562108593320},{"schema":1562108591793,"derHash":"cdLuTdolHZJE9858bUeOxVLUJO9xnwK3EDDyghtryFM=","subject":"CN=emSign ECC Time stamping CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MGMxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEpMCcGA1UEAxMgZW1TaWduIEVDQyBUaW1lIHN0YW1waW5nIENBIC0gQzM=","whitelist":false,"attachment":{"hash":"ee2704d9b62a381d492b93995f8499745a688f458d3d292b4698475ed59f68c3","size":1134,"filename":"dcrqDFOyJxf
pksjz9CO_ISerP6wmX7VYiV8TT8U2I8I=.pem","location":"security-state-staging/intermediates/3b0e96f2-8f14-48a7-bd67-cf26d4d5fabe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dcrqDFOyJxfpksjz9CO/ISerP6wmX7VYiV8TT8U2I8I=","crlite_enrolled":false,"id":"a64f2de2-3dce-4c3e-be2c-670cf9edd067","last_modified":1562108592552},{"schema":1562108591033,"derHash":"pKfQXyloVnnjwAoyLOa2zVf92l8u9CxsbnNYHIpHEHc=","subject":"CN=Trusted Secure ECC Certificate Authority DV,O=Corporation Service Company,L=Wilmington,ST=DE,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzELMAkGA1UECBMCREUxEzARBgNVBAcTCldpbG1pbmd0b24xJDAiBgNVBAoTG0NvcnBvcmF0aW9uIFNlcnZpY2UgQ29tcGFueTE0MDIGA1UEAxMrVHJ1c3RlZCBTZWN1cmUgRUNDIENlcnRpZmljYXRlIEF1dGhvcml0eSBEVg==","whitelist":false,"attachment":{"hash":"a2edd0806e645f467b7b84c89a97ef301a4be56527999553d91e8ed132b3063b","size":1333,"filename":"qaGgP6zdlL_vHNs7F1JoC4tyJv8eGtwjguHkPQZ2HYg=.pem","location":"security-state-staging/intermediates/00575f53-f32f-4c7d-8588-1006e713455a.pem"
,"mimetype":"application/x-pem-file"},"pubKeyHash":"qaGgP6zdlL/vHNs7F1JoC4tyJv8eGtwjguHkPQZ2HYg=","crlite_enrolled":false,"id":"bb1af08a-d563-4c13-b15f-03b3860103a2","last_modified":1562108591785},{"schema":1562108590272,"derHash":"Oyffndk8ESqgiwYqauOXP355pRkdfpuV1wgXgODWrOo=","subject":"CN=certSIGN Enterprise CA Class 3 G2,OU=certSIGN Enterprise CA Class 3 G2,O=certSIGN,C=RO","subjectDN":"MHgxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEqMCgGA1UECxMhY2VydFNJR04gRW50ZXJwcmlzZSBDQSBDbGFzcyAzIEcyMSowKAYDVQQDEyFjZXJ0U0lHTiBFbnRlcnByaXNlIENBIENsYXNzIDMgRzI=","whitelist":false,"attachment":{"hash":"b4245e3bdf682d3b5991b85df5dc0d5234efbfa10c3e6191331eafc4de6d44b3","size":1638,"filename":"NgZU2Z5HKX3Ynzv2v13QXVNlTGQrS2rrCCv2W4gJn_o=.pem","location":"security-state-staging/intermediates/50534563-bc40-4117-a35e-c5f2825173e5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NgZU2Z5HKX3Ynzv2v13QXVNlTGQrS2rrCCv2W4gJn/o=","crlite_enrolled":true,"id":"44fdaa59-55ab-4b5a-9584-878de01ee51f","la
st_modified":1562108591025},{"schema":1562108589509,"derHash":"X2ZcusweNxceqD6oXFcPmGHK93usiIarxLsZs2mMCUo=","subject":"CN=DigiCert Governmental Direct CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKDAmBgNVBAMTH0RpZ2lDZXJ0IEdvdmVybm1lbnRhbCBEaXJlY3QgQ0E=","whitelist":false,"attachment":{"hash":"75cddcda9026b56305335b2fdbe4d7f15d3018e1a8d4ece32129f4dc33a90ca6","size":2109,"filename":"6TqJ4tJCAmwNBt54ibBuljs7KG-F8NTbgZ5U4gcrbnk=.pem","location":"security-state-staging/intermediates/74ab5016-866c-42c7-ba70-6936c7c09121.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6TqJ4tJCAmwNBt54ibBuljs7KG+F8NTbgZ5U4gcrbnk=","crlite_enrolled":false,"id":"93219782-f847-4e1d-a437-b056f1a40b47","last_modified":1562108590264},{"schema":1562108587986,"derHash":"vsBvVTRMPeTxLNXYCJBs3idSNJUb4BdqeH5ijivn1R8=","subject":"CN=GDCA TrustAUTH R4 Extended Validation CodeSigning CA,O=GUANG DONG CERTIFICATE AU
THORITY CO.\\,LTD.,C=CN","subjectDN":"MIGAMQswCQYDVQQGEwJDTjEyMDAGA1UECgwpR1VBTkcgRE9ORyBDRVJUSUZJQ0FURSBBVVRIT1JJVFkgQ08uLExURC4xPTA7BgNVBAMMNEdEQ0EgVHJ1c3RBVVRIIFI0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZVNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"504b1a2b2ef9230c71054bc7a026d1827d3f8d8b714b5492dc42264973ecb432","size":2105,"filename":"K1O1P19UCSRwBq2Y5xce7r_TavF-pDYjmdSYRVYHFXI=.pem","location":"security-state-staging/intermediates/292a44cc-36e5-4678-b2da-b286cf71965d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"K1O1P19UCSRwBq2Y5xce7r/TavF+pDYjmdSYRVYHFXI=","crlite_enrolled":false,"id":"08dade63-03e8-4738-af5e-1139634ccf0f","last_modified":1562108588742},{"schema":1562108586421,"derHash":"XN2AnPRPX4Zl6sFQVVBMWwa3h6wYKUUFvbq0p35Q13Y=","subject":"CN=GlobalSign PersonalSign 2 RSA CA SHA 384 - G4,O=GlobalSign nv-sa,C=BE","subjectDN":"MGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAyIFJTQSBDQSBTSEEgMzg0IC0gRzQ=","
whitelist":false,"attachment":{"hash":"5b298699387d70fa85da876e97c713c9b5f9d078e4f99d1aa8d2b372b1b2635c","size":2458,"filename":"qrYYY1IgVc8P6057Z-sQtrV3gsdG77COpxcpk5ExuDQ=.pem","location":"security-state-staging/intermediates/bb0e1ae1-8c37-4a42-9ca5-f39d3c77b419.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qrYYY1IgVc8P6057Z+sQtrV3gsdG77COpxcpk5ExuDQ=","crlite_enrolled":false,"id":"68e18044-c154-4952-88f5-513ffe55be79","last_modified":1562108587216},{"schema":1562108584875,"derHash":"aTBkc0LACuYloDhnMICQOmpUMaGPrmRAOuufSoOCibQ=","subject":"CN=COMODO ECC Client Authentication and Secure Email CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGXMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE9MDsGA1UEAxM0Q09NT0RPIEVDQyBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIFNlY3VyZSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"e6b81f970e0aebdf005be203087db76baba49f82e43eebe6ce07930d859c3a
12","size":1305,"filename":"ztEQWck30AphjrV693Uu-2ykUUMpLPaPTr3q8O6AbrA=.pem","location":"security-state-staging/intermediates/e1042655-8614-4230-91ec-d6a21ec4ad1f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ztEQWck30AphjrV693Uu+2ykUUMpLPaPTr3q8O6AbrA=","crlite_enrolled":false,"id":"e22721ff-a0b1-47e9-b5b6-7c3c74b2432b","last_modified":1562108585623},{"schema":1562108584121,"derHash":"8AMiyXtXzqbWSmodNlxsa38OujCJh2wUMOEGPoqCpnY=","subject":"CN=UbiquiTLS\u2122 DV RSA Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGAMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDEmMCQGA1UEAwwdVWJpcXVpVExT4oSiIERWIFJTQSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"34402ac995c9387b9c9835b6d19bbf5f738839e57491436e8fb9d880eabb284d","size":2129,"filename":"4FOjiY6IYxhWCosn04P8_UB9mAXrdVXjkoJw0SF4xqM=.pem","location":"security-state-staging/intermediates/8314b196-222a-4ea4-b73e-05
d946a6b0f3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4FOjiY6IYxhWCosn04P8/UB9mAXrdVXjkoJw0SF4xqM=","crlite_enrolled":false,"id":"6a542733-c365-45a6-88e1-581fbf55eea9","last_modified":1562108584867},{"schema":1562108583348,"derHash":"jPY11qdHdQzxND6WNqptpBWMfOCbIG0Qgzuv5eTuBLM=","subject":"SERIALNUMBER=201905,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTA1","whitelist":false,"attachment":{"hash":"e20bc7cc8f53ffc223962f9bd966b021032bdfadb38bba1b518d8a4b5473fc84","size":2333,"filename":"STwxc4DljeWjithRB7fUiXJ-Av3LzSL1RArniQiNF8Y=.pem","location":"security-state-staging/intermediates/702560cb-abeb-40ac-8efe-9be95e6e64dd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"STwxc4DljeWjithRB7fUiXJ+Av3LzSL1RArniQiNF8Y=","crlite_enrolled":false,"id":"8ed0efa3-f0d7-42e8-a20a-cf5d56da716b","last_modified":1562108584113},{"
schema":1562108578013,"derHash":"cqNKwrQkrtP2sLBHVbiMwCfczIBv3bIrTNfEd3OXPsA=","subject":"CN=Sectigo RSA Organization Validation Secure Server CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGVMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxPTA7BgNVBAMTNFNlY3RpZ28gUlNBIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"8b4a6a5a2f7b4562478f11cef6a2950d91dc8f9f63844b556396576c712a7556","size":2174,"filename":"RkhWTcfJAQN_YxOR12VkPo-PhmIoSfWd_JVkg44einY=.pem","location":"security-state-staging/intermediates/a5de32a1-0075-4479-b9c7-902f76532ee6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RkhWTcfJAQN/YxOR12VkPo+PhmIoSfWd/JVkg44einY=","crlite_enrolled":true,"id":"3137331f-d637-4d45-a845-5baf38ea0ae4","last_modified":1562108578764},{"schema":1562108576476,"derHash":"z8tgwfAYDGjj6l0ktKBenZkA2Hw9g9UDzhaQs8FlZFg=","subject":"CN=Qualified e-Szi
gno QCP CA 2012,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHlF1YWxpZmllZCBlLVN6aWdubyBRQ1AgQ0EgMjAxMjEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odQ==","whitelist":false,"attachment":{"hash":"0918a8dff15d27cbb4e8b360eb83374b19fa2947fb8fabb2c8200569d2b9b5ca","size":1780,"filename":"xa1dpEOu-k1shciGkpd-djS0kvHJPOmnvqja-16S2o0=.pem","location":"security-state-staging/intermediates/edcd1fb2-b2cf-4e62-a12a-5ba7788690ad.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xa1dpEOu+k1shciGkpd+djS0kvHJPOmnvqja+16S2o0=","crlite_enrolled":false,"id":"0f39cd6a-43ef-4feb-8856-6d300edaa87c","last_modified":1562108577246},{"schema":1562108574941,"derHash":"ksdI7NEnrmBVsYCEZPO7ETzFGuAHNZGzaB7FJ8YXzIA=","subject":"CN=cPanel\\, Inc. Certification Authority 2,O=cPanel\\, Inc.,L=Houston,ST=TX,C=US","subjectDN":"MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJUWDEQMA4GA1UEBxMHSG91c3RvbjEVMBMGA1UEChMMY1BhbmVsLCBJbmMuMS8wLQ
YDVQQDEyZjUGFuZWwsIEluYy4gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgMg==","whitelist":false,"attachment":{"hash":"78d6f3be5c00899b98ae15d4fa3abf96f1139ea90f126dddc735831fa0309e49","size":2138,"filename":"HVDLzoiDeh9hx-Qx4o0Fjy44bVZy8Qv7zwbUSS7r4dQ=.pem","location":"security-state-staging/intermediates/8e628e92-767a-4b9c-9320-e85932918fc7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HVDLzoiDeh9hx+Qx4o0Fjy44bVZy8Qv7zwbUSS7r4dQ=","crlite_enrolled":false,"id":"dcd0fd78-79ac-4a9e-9cff-563f4bf1ce79","last_modified":1562108575720},{"schema":1562108568778,"derHash":"vmoNnh0RXyKT9qvxGz7I6ILiRCbu6wmqpQNZeZPneiU=","subject":"CN=TERENA SSL High Assurance CA 3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MHMxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEnMCUGA1UEAxMeVEVSRU5BIFNTTCBIaWdoIEFzc3VyYW5jZSBDQSAz","whitelist":false,"attachment":{"hash":"effd0b7540a7b55bbbeb9e6a80bcdbd3b388bcd57d806539c76f81519c9d7595","size":1752,"filena
me":"XaQOs7GKv4Gx4JRA8ZmihabSl9wxIPx-hQBmJ54WmCs=.pem","location":"security-state-staging/intermediates/1bbb351c-9d45-49c1-b318-f589af9d1196.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XaQOs7GKv4Gx4JRA8ZmihabSl9wxIPx+hQBmJ54WmCs=","crlite_enrolled":true,"id":"181cc0ed-5e29-45f4-8d8a-642c6de7cd5e","last_modified":1562108569549},{"schema":1562108567270,"derHash":"HcpluGpXM2ulr7chSjb31u3mmOtPAzh8s61rvTqTurY=","subject":"CN=AlphaSSL CA - G2,O=AlphaSSL","subjectDN":"MC4xETAPBgNVBAoTCEFscGhhU1NMMRkwFwYDVQQDExBBbHBoYVNTTCBDQSAtIEcy","whitelist":false,"attachment":{"hash":"3a19247e72c0620bdf6ef309d6d8385eabd2ef9e5c5b61ab6fd98d4878db9492","size":1512,"filename":"yxgiWGK--SFB9ySwt3M3qpn5HO0ZLFY5D-h-G_vcT_c=.pem","location":"security-state-staging/intermediates/9bc85edc-cae8-4042-b29e-895b1be37f71.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yxgiWGK++SFB9ySwt3M3qpn5HO0ZLFY5D+h+G/vcT/c=","crlite_enrolled":false,"id":"86b16dc2-9cb9-4271-acfe-4a80959ea5ea","last_modified":1
562108568014},{"schema":1562108564189,"derHash":"XO2pkfE2Rtcy3832wQtjallx9FSxBxcswDtb7k0pBrs=","subject":"CN=Fuji Xerox Xnet CA - G2,O=Fuji Xerox,C=JP","subjectDN":"MEQxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MSAwHgYDVQQDExdGdWppIFhlcm94IFhuZXQgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"3f6deb7e20788638c3fd1a97de5a5390c10da49774515d8e6f3c11da176731a6","size":1483,"filename":"SWBebvlsLulUhE9tf8Z1RbIcTJY-kLhXO_sAB63M6tA=.pem","location":"security-state-staging/intermediates/89038819-ab40-47c3-ab8e-f9fba8ab86a2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SWBebvlsLulUhE9tf8Z1RbIcTJY+kLhXO/sAB63M6tA=","crlite_enrolled":false,"id":"ef301980-b77f-412d-8a81-1db73953b696","last_modified":1562108564939},{"schema":1562108561881,"derHash":"KWyeU1fJwfIekGSjENG389qNEN7Eq96nw3K7TDdbm74=","subject":"SERIALNUMBER=201814,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETM
BEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODE0","whitelist":false,"attachment":{"hash":"fc14a5e8664374b8b9e73e78f636f520ad6627705388366008910d6dad4e0aea","size":2333,"filename":"YZlVjG_9bo_7G1Ld_UML44gp8CBlrnAhNWrF-z8r_Uk=.pem","location":"security-state-staging/intermediates/f34b8e30-671d-497f-a7a4-9c1fd484d573.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YZlVjG/9bo/7G1Ld/UML44gp8CBlrnAhNWrF+z8r/Uk=","crlite_enrolled":false,"id":"6d13d21e-c95b-4e10-bca3-e345c83ad59e","last_modified":1562108562629},{"schema":1562108558832,"derHash":"xKhCQ0rbUoCVJrbR6GmiZfU1tpuxZFSjAWZ8yUJnjVg=","subject":"CN=North Carolina Health Information Exchange CA,OU=Orion Health Direct Secure Messaging,O=North Carolina Health Information Exchange,C=US","subjectDN":"MIGpMQswCQYDVQQGEwJVUzEzMDEGA1UEChMqTm9ydGggQ2Fyb2xpbmEgSGVhbHRoIEluZm9ybWF0aW9uIEV4Y2hhbmdlMS0wKwYDVQQLEyRPcmlvbiBIZWFsdGggRGlyZWN0IFNlY3VyZSBNZXNzYWdpbmcxNjA0BgNVBAMTLU5vcnRoIENhcm9saW5hIEhlYWx0aCBJbmZvcm1hdGlvbiBFeGNoYW5nZSBDQQ==","w
hitelist":false,"attachment":{"hash":"033ec8c8c6591c333e976876a9b2dd85541a10a3a81cce7795dd6b11a2ff26db","size":2373,"filename":"sKMwLCLBC5txNEjL5HsQSJ1AllsHjsrcGecmnUBdJ_8=.pem","location":"security-state-staging/intermediates/abc29b05-2731-4492-a337-a40ee72b26ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sKMwLCLBC5txNEjL5HsQSJ1AllsHjsrcGecmnUBdJ/8=","crlite_enrolled":false,"id":"b56d935b-ae8c-4513-81f9-94e429220804","last_modified":1562108559596},{"schema":1562108558073,"derHash":"vxyw4hPY08cLrolCn8Ft4sdPdVlj0bm0iL0CYNvJG5w=","subject":"CN=DigiCert Baltimore CA-1 G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGkRpZ2lDZXJ0IEJhbHRpbW9yZSBDQS0xIEcy","whitelist":false,"attachment":{"hash":"8c3b20ef21e5a0850702c5b36f4116d9340de8e2ea3746b1051c95ee4a4615ff","size":1581,"filename":"EppRiUi9P-L8-u3LNh2t2P4La8TbSH4Xh_DCYKPwqts=.pem","location":"security-state-staging/int
ermediates/bbbed6f4-b330-448c-a685-127194973cd5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EppRiUi9P+L8+u3LNh2t2P4La8TbSH4Xh/DCYKPwqts=","crlite_enrolled":false,"id":"23c18ab5-afb4-4915-9211-0b1bc495e783","last_modified":1562108558823},{"schema":1562108557320,"derHash":"CSgpQz0jGUn0qbxmbL9Us6on1768oEjXXlkJPhWnLqU=","subject":"CN=TeliaSonera Class 2 CA v2,O=TeliaSonera,C=SE","subjectDN":"MEcxCzAJBgNVBAYTAlNFMRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEiMCAGA1UEAwwZVGVsaWFTb25lcmEgQ2xhc3MgMiBDQSB2Mg==","whitelist":false,"attachment":{"hash":"a3a1b4dfa388dfe0d25ab5674cfaeaf78ef03e5364e2cd9de1328b58f2a891b3","size":2528,"filename":"lqMfOTYct9rMx_Y2LpHI8aZt9xgWHX_TwLLQ51NQl04=.pem","location":"security-state-staging/intermediates/d6d3711a-b7d2-4f85-a846-aca44739e149.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lqMfOTYct9rMx/Y2LpHI8aZt9xgWHX/TwLLQ51NQl04=","crlite_enrolled":false,"id":"0edb2d0c-78d4-4869-9399-77844e0f7698","last_modified":1562108558066},{"schema":1562108553418,"
derHash":"BqV9HNWHn7ohNWEN2NclzCaNKm3opGPUJMS52omEhpY=","subject":"CN=MULTICERT SSL Certification Authority 001,OU=Certification Authority,O=MULTICERT - Servi\u00e7os de Certifica\u00e7\u00e3o Electr\u00f3nica S.A.,C=PT","subjectDN":"MIGnMQswCQYDVQQGEwJQVDFCMEAGA1UECgw5TVVMVElDRVJUIC0gU2VydmnDp29zIGRlIENlcnRpZmljYcOnw6NvIEVsZWN0csOzbmljYSBTLkEuMSAwHgYDVQQLDBdDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEyMDAGA1UEAwwpTVVMVElDRVJUIFNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAwMDE=","whitelist":false,"attachment":{"hash":"a4edffa6966beade48281eb732dd7be86742b1a9c74b4388c4d184c5f3707d9f","size":2970,"filename":"yxq9jBkkvQNgcVw-gq6-E8-0_Z-HVCg1PJ12mz_Ot1M=.pem","location":"security-state-staging/intermediates/9af4dc8b-5d79-4fe4-91a7-1f528e522c34.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yxq9jBkkvQNgcVw+gq6+E8+0/Z+HVCg1PJ12mz/Ot1M=","crlite_enrolled":true,"id":"82333ba7-d875-4700-9521-e3450b26f275","last_modified":1562108554178},{"schema":1562108547322,"derHash":"0YY7VaBinzKl2thn0C3x0aRVCyOsQitT
WB555Uj9Zhc=","subject":"CN=COMODO RSA Extended Validation Code Signing CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGRMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE3MDUGA1UEAxMuQ09NT0RPIFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"37c8cc316edcb62d120bb0cdb7f6d376a41995100929c1faae633cc5bbd5db9b","size":2186,"filename":"o0YMd50JaO9KHQa59-yeJR7mqkmBME4Yb2KrDeMsVpo=.pem","location":"security-state-staging/intermediates/638df8c9-7c2c-43c8-aa37-e137759f5495.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"o0YMd50JaO9KHQa59+yeJR7mqkmBME4Yb2KrDeMsVpo=","crlite_enrolled":false,"id":"41915ab2-d4a7-472f-9c9c-1aa184245482","last_modified":1562108548066},{"schema":1562108546547,"derHash":"snRdCptx2UjzTpIa9Z80Kt9uQH2IvFHTisUrWDoOvRU=","subject":"CN=Symantec Class 3 EV SSL SGC CA - G2,OU=Symantec Trust Network,O=Symantec Corporation,C=
US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEsMCoGA1UEAxMjU3ltYW50ZWMgQ2xhc3MgMyBFViBTU0wgU0dDIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"87eaf82db6f5848ee292c8bbd616cd095dc400e5299454872db01db7b0ce908f","size":1930,"filename":"RpiK7rBfp_gM93kpBie2lazUf8UesNcTJ-aL6W-Q06M=.pem","location":"security-state-staging/intermediates/634c9f70-8695-4f35-ab1c-be88bffa111f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RpiK7rBfp/gM93kpBie2lazUf8UesNcTJ+aL6W+Q06M=","crlite_enrolled":false,"id":"7ec41ffd-3b17-4b9b-ae03-cf4034674eda","last_modified":1562108547314},{"schema":1562108543508,"derHash":"kuN3Cx60T4TC8ssAl8L9cSa9IStBwmEOeN39iUZ2Fzg=","subject":"CN=Cybertrust Japan ECC EV CA,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MFcxCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEjMCEGA1UEAxMaQ3liZXJ0cnVzdCBKYXBhbiBFQ0MgRVYgQ0E=","whitelist":false,"attachment":{"hash":"f1536ae14
b59510b0a578ef86b18c2742aeecff181da96be873249c707dce9a0","size":1171,"filename":"DR7QtcOJm6feIAao37U2Se9iaEVNLbTu7mKFz-uWIQs=.pem","location":"security-state-staging/intermediates/4177e11b-b581-4577-a6bf-acb75730661d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DR7QtcOJm6feIAao37U2Se9iaEVNLbTu7mKFz+uWIQs=","crlite_enrolled":false,"id":"0792354e-832d-44b5-86f7-9d8759ed1b08","last_modified":1562108544257},{"schema":1562108542761,"derHash":"4Yz41SmRiHUrFvPjw82Gc2GQRuLxueCI2rXTEWrqYb0=","subject":"CN=TrustAsia RSA Secure Client and Email CA,O=TrustAsia Technologies\\, Inc.,ST=Shanghai,C=CN","subjectDN":"MHoxCzAJBgNVBAYTAkNOMREwDwYDVQQIEwhTaGFuZ2hhaTElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjExMC8GA1UEAxMoVHJ1c3RBc2lhIFJTQSBTZWN1cmUgQ2xpZW50IGFuZCBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"7385ded00c38eddd52d86a832caf6912d588fab55cfa476313cc762a9ee84eeb","size":2133,"filename":"rtkg6RrvnlbQH5J_vZPqsgnI9zzjiHs9IjqKSD9m6wA=.pem","location":"security-state-st
aging/intermediates/9e0c407a-c81b-4c6c-afca-584b65500eab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rtkg6RrvnlbQH5J/vZPqsgnI9zzjiHs9IjqKSD9m6wA=","crlite_enrolled":false,"id":"aebb965c-2a24-466b-a16b-3c0dae236232","last_modified":1562108543500},{"schema":1562108539744,"derHash":"qXyhN1uRlT5TalVHawrERMcIapUeSQo6PRNjChn0DNQ=","subject":"CN=TWCA InfoSec User CA,OU=User CA,O=TAIWAN-CA Inc.,C=TW","subjectDN":"MFcxCzAJBgNVBAYTAlRXMRcwFQYDVQQKEw5UQUlXQU4tQ0EgSW5jLjEQMA4GA1UECxMHVXNlciBDQTEdMBsGA1UEAxMUVFdDQSBJbmZvU2VjIFVzZXIgQ0E=","whitelist":false,"attachment":{"hash":"6aaaa07d5c201417999a0e22e73d6ede06b3ae7309353301a6d321d172316983","size":1703,"filename":"bqhl3DAHcc4Kg-bxpYCIoIh4Tjx38mrpuN4vD6gDaHY=.pem","location":"security-state-staging/intermediates/a7eca8e3-d4e8-42fd-97a7-7b7589b511a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bqhl3DAHcc4Kg+bxpYCIoIh4Tjx38mrpuN4vD6gDaHY=","crlite_enrolled":false,"id":"53671fd7-9e3a-4f0c-a8fb-99fc788cacba","last_modified":15
62108540486},{"schema":1562108538966,"derHash":"OYmjFwLp5qlIXzySp30hsYUsf2ci8j1EuMvnKpJuyFQ=","subject":"CN=Trustico ECC DV CA,O=The Trustico Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MG4xCzAJBgNVBAYTAkdCMQ8wDQYDVQQIEwZMb25kb24xEDAOBgNVBAcTB0Nyb3lkb24xHzAdBgNVBAoTFlRoZSBUcnVzdGljbyBHcm91cCBMdGQxGzAZBgNVBAMTElRydXN0aWNvIEVDQyBEViBDQQ==","whitelist":false,"attachment":{"hash":"8b1dd84a5acfc99c935c7937a7a736233a80c299b2fa9f230d20070f92594aa8","size":1272,"filename":"siFWwL8GHh0KXgWfKS8Gt9laNL7edvX8IB7dl6zLe-o=.pem","location":"security-state-staging/intermediates/d1d2f9ef-7d30-4f5a-a80c-8f0414545ab3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"siFWwL8GHh0KXgWfKS8Gt9laNL7edvX8IB7dl6zLe+o=","crlite_enrolled":false,"id":"7a3a1349-6283-418e-8d1b-090ce11da3f7","last_modified":1562108539733},{"schema":1562108538217,"derHash":"BXRs6sgws4RAWrc81iOd5Czp9IdVPvP6iwoGTleSaDw=","subject":"CN=WISeKey CertifyID Policy GA CA 1,O=WISeKey,C=CH","subjectDN":"MEoxCzAJBgNVBAYTAkNIMRAwDgYD
VQQKEwdXSVNlS2V5MSkwJwYDVQQDEyBXSVNlS2V5IENlcnRpZnlJRCBQb2xpY3kgR0EgQ0EgMQ==","whitelist":false,"attachment":{"hash":"2a6ff225010bbc9464e5d31c320657c525c3f0a392977f50123d28559f13fa21","size":1804,"filename":"xfM0VsUhSI6vKknRncbTW9di7pj0_a_oYa-o46JnDHQ=.pem","location":"security-state-staging/intermediates/d62ddced-fc46-4718-bdce-87c1b2f05042.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xfM0VsUhSI6vKknRncbTW9di7pj0/a/oYa+o46JnDHQ=","crlite_enrolled":false,"id":"82dadb91-864a-43ad-a206-42c281b95f08","last_modified":1562108538958},{"schema":1562108535152,"derHash":"SOJsWQSXTWoi5EL66IoqQYKQ4AY3uJhyChPyFDrNjrY=","subject":"SERIALNUMBER=201805,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE4MDU=","whitelist":false,"attachment":{"hash":"ea45f8bf2666fc6e58e70aeda7b9ff6120dfa479bad56c7031ba318d09590473","size":2337,"filename":"
0kb6t7LFkL6D6CBvoNnXYZ6COh6vj_xxmWb-ywmnExU=.pem","location":"security-state-staging/intermediates/4a069aba-7636-41cb-85d9-b37bfbf913c3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0kb6t7LFkL6D6CBvoNnXYZ6COh6vj/xxmWb+ywmnExU=","crlite_enrolled":false,"id":"5ff661bc-0b12-45ef-9197-4095d0f03d00","last_modified":1562108535892},{"schema":1562108532768,"derHash":"4M5cTvXSGGlj0rBK3kYSu694fhYEiltGj3Nnd2w6A94=","subject":"CN=GlobalSign ECC HV S/MIME CA 1,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1HbG9iYWxTaWduIEVDQyBIViBTL01JTUUgQ0EgMQ==","whitelist":false,"attachment":{"hash":"f7b7f1d2226533661c96045673837ee5eb504e816404882aa7cab4d769be6ab2","size":1154,"filename":"pAR30VcYn-nY7bGwPT-4qhHggma7QWdsp1QPL8x_YMk=.pem","location":"security-state-staging/intermediates/90d68223-dc0d-417b-82e9-fc789af959ed.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pAR30VcYn+nY7bGwPT+4qhHggma7QWdsp1QPL8x/YMk=","crlite_enrolle
d":false,"id":"5ae5ab8e-6ce3-43fb-8540-fb4edf7170b7","last_modified":1562108533536},{"schema":1562108532023,"derHash":"9XCaLS9otTv29kW7F4rflTRvif2lxjv94IBComSSqrI=","subject":"CN=GlobalSign Qualified CA 1,O=GlobalSign nv-sa,C=BE","subjectDN":"MEwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSIwIAYDVQQDExlHbG9iYWxTaWduIFF1YWxpZmllZCBDQSAx","whitelist":false,"attachment":{"hash":"babdcd192e71c8b4c902d934518dcdf6ade0f8849accbf5f4b2633dbc59ae640","size":2109,"filename":"JLSkiSNPvaX8_Ng2Eq17tQJcAp2P6PnM2B-Ojyo8nYg=.pem","location":"security-state-staging/intermediates/56b7b3ba-16d7-43e7-9144-0bd4054c8b98.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JLSkiSNPvaX8/Ng2Eq17tQJcAp2P6PnM2B+Ojyo8nYg=","crlite_enrolled":false,"id":"842bb917-00d1-4d4d-b1dc-1cc655bce329","last_modified":1562108532760},{"schema":1562108529754,"derHash":"Elpf18ZA1eWfXOV2PNjJMvXll93cTq8dWWZ89LVWojc=","subject":"CN=USERTrust RSA Extended Validation Secure Server CA,O=The USERTRUST Network,L=Jersey Ci
ty,ST=New Jersey,C=US","subjectDN":"MIGVMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE7MDkGA1UEAxMyVVNFUlRydXN0IFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"094e42381d9f1d18441d7220fac73d64fd68198174b849e5d674adb912d6ccec","size":2174,"filename":"8E_u4IJLStWPqhVEn4td_2Ae6WYCii1AmJC2dgTCj1s=.pem","location":"security-state-staging/intermediates/307f6f1b-9a38-4046-97d3-4d36958e0f86.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8E/u4IJLStWPqhVEn4td/2Ae6WYCii1AmJC2dgTCj1s=","crlite_enrolled":true,"id":"49f70812-6671-41b7-a5d2-73cdf9cea32f","last_modified":1562108530510},{"schema":1562108525881,"derHash":"NXVUztPEm6E93VWlaCYptvzirPxFGasr4Es6hgGlny8=","subject":"CN=HARICA Qualified Natural Entities SubCA R1,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGZMQswCQYDVQQGEwJHUjEPMA0GA1UEBxMGQXRoZW5zMUQwQgYDVQQKEztIZ
WxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEzMDEGA1UEAxMqSEFSSUNBIFF1YWxpZmllZCBOYXR1cmFsIEVudGl0aWVzIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"bc6e90f6d202ea8d62cd470c2ea31d41ed599f457738d82b87cdab0e3a3a439f","size":2438,"filename":"c5tJhzRUh_mULK82PkMvvJo7eF3WcNRab2OwHVToIzo=.pem","location":"security-state-staging/intermediates/8793bf9d-751b-47d1-8043-947b65b5b2fa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"c5tJhzRUh/mULK82PkMvvJo7eF3WcNRab2OwHVToIzo=","crlite_enrolled":false,"id":"ed4c1bcb-36d5-4f02-98c1-028cbb6c8eee","last_modified":1562108526678},{"schema":1562108524365,"derHash":"NcC4pXfRHJS6Zl4kLeRdZodSKlMeORu02ZXSYfOCmrc=","subject":"CN=certSIGN CA Class 2 G2,OU=certSIGN CA Class 2 G2,O=certSIGN,C=RO","subjectDN":"MGIxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEfMB0GA1UECxMWY2VydFNJR04gQ0EgQ2xhc3MgMiBHMjEfMB0GA1UEAxMWY2VydFNJR04gQ0EgQ2xhc3MgMiBHMg==","whitelist":false,"attachment":{"hash":"df0ec1a6797109126df83a75e016e
df4ec5eae8f6a58946debcf2ddee8cf2524","size":1609,"filename":"noYGcVGJvDlxvfPLFE31WgvXSwkoZGrfCEpsm_L3qt4=.pem","location":"security-state-staging/intermediates/e03925b7-c8a0-4286-aa06-57ae5c110937.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"noYGcVGJvDlxvfPLFE31WgvXSwkoZGrfCEpsm/L3qt4=","crlite_enrolled":false,"id":"a0571407-53b3-407c-bbd4-0be77d0d2d3e","last_modified":1562108525121},{"schema":1562108523614,"derHash":"cBtDKsDN1NnPlbS4hMMr9cypDUTgFhq9E7k01o44BHI=","subject":"CN=GlobalSign PersonalSign 3 CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTMwMQYDVQQDEypHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAzIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"458cc82369b9a1032b78405e6806b74fd2952d39402bf697575b5d831cad259a","size":1670,"filename":"TB1kEWAFK_CTRZQanxy7YzsEBTcqSK49DqMWi8bxAek=.pem","location":"security-state-staging/intermediates/b62b5389-9e04-4c32-83bc-4bf85ed12fb6.pem","mimetype":"applicatio
n/x-pem-file"},"pubKeyHash":"TB1kEWAFK/CTRZQanxy7YzsEBTcqSK49DqMWi8bxAek=","crlite_enrolled":false,"id":"27438f07-1327-49d9-acd2-a58622706d5c","last_modified":1562108524357},{"schema":1562108522832,"derHash":"ztQGeH82ZG2JfkaLe4tdyuEDDDp1rxybEFUUuV7G6nA=","subject":"CN=GENIOUS ECC Extended Validation Secure Server CA,OU=Controlled by Sectigo exclusively for Genious Communications,O=Genious Communications,L=Marrakech,ST=Marrakech,C=MA","subjectDN":"MIHYMQswCQYDVQQGEwJNQTESMBAGA1UECBMJTWFycmFrZWNoMRIwEAYDVQQHEwlNYXJyYWtlY2gxHzAdBgNVBAoTFkdlbmlvdXMgQ29tbXVuaWNhdGlvbnMxRTBDBgNVBAsTPENvbnRyb2xsZWQgYnkgU2VjdGlnbyBleGNsdXNpdmVseSBmb3IgR2VuaW91cyBDb21tdW5pY2F0aW9uczE5MDcGA1UEAxMwR0VOSU9VUyBFQ0MgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"0fdfe942ae38cec3fd4541c8578f5bb84c77d30b5d71964f0ddb9f5393c40ca8","size":1463,"filename":"lGB7vG_pOqUpHiqWKO7WQg8lfxBsfGVE0yulTTjMgJg=.pem","location":"security-state-staging/intermediates/2b90024e-92c3-45de-bb5a
-9d61b0b7cf4a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lGB7vG/pOqUpHiqWKO7WQg8lfxBsfGVE0yulTTjMgJg=","crlite_enrolled":false,"id":"c3d27779-fe8a-421f-97c2-5d4a5bee385c","last_modified":1562108523606},{"schema":1562108522078,"derHash":"MA6zIZBXi5rFeOGh0oAEIZFFaYzjtj8p3yHuTFQsCIU=","subject":"CN=WISeKey Qualified Services CA 2,OU=Copyright (c) 2013 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGJMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEmMCQGA1UECxMdQ29weXJpZ2h0IChjKSAyMDEzIFdJU2VLZXkgU0ExFjAUBgNVBAsTDUludGVybmF0aW9uYWwxKDAmBgNVBAMTH1dJU2VLZXkgUXVhbGlmaWVkIFNlcnZpY2VzIENBIDI=","whitelist":false,"attachment":{"hash":"9807abddce6407d40c4c5529a15b7709518ba11092a254a7adc5d65af922e8d0","size":1800,"filename":"TONsHZMTU75SEOmQ_8UnWZ1dToH3MjqDXKqHFFbSot0=.pem","location":"security-state-staging/intermediates/a0e40893-99c0-437f-a615-8d710f969d3c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TONsHZMTU75SEOmQ/8UnWZ1dToH3MjqDXKqHFFbSot0=","crlite_enrolled":
false,"id":"0a716af8-e441-4f96-a8d7-aff6571d96e0","last_modified":1562108522824},{"schema":1562108521318,"derHash":"YA6XYBsLvF8FbwTu9nHvWA8qhYPG0tP61AG52CCqiDY=","subject":"CN=Valid Certificadora Digital SSL OV CA 2018,OU=VALID SSL OV,O=VALID CERTIFICADORA DIGITAL,L=S\u00c3O PAULO,ST=S\u00c3O PAULO,C=BR","subjectDN":"MIGpMQswCQYDVQQGEwJCUjETMBEGA1UECAwKU8ODTyBQQVVMTzETMBEGA1UEBwwKU8ODTyBQQVVMTzEVMBMGA1UECxMMVkFMSUQgU1NMIE9WMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgT1YgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"c4a550d79bb2b71f8c0928d49e7c96a982b4c362b1b8092cbbb975ca5e51df26","size":1886,"filename":"OOlpcVGqLfZfl2rK7MdW2Ff6TMhVD-PwRf3XtFUUtLw=.pem","location":"security-state-staging/intermediates/1d251274-286b-4c35-be80-189120f190ea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OOlpcVGqLfZfl2rK7MdW2Ff6TMhVD+PwRf3XtFUUtLw=","crlite_enrolled":true,"id":"a9c8bb82-a5e4-41bd-9be3-20842827e5bc","last_mod
ified":1562108522070},{"schema":1562108518267,"derHash":"2NOC430vk4Eao9lA7vTG7qR7s7pQJxqL8ujCTN05PFY=","subject":"CN=SSL.com EV Code Signing Intermediate CA RSA R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxNzA1BgNVBAMMLlNTTC5jb20gRVYgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBDQSBSU0EgUjI=","whitelist":false,"attachment":{"hash":"002fe1bcd61684d28427eba68ab1788bba7ded78e7dfbd283510a07be6c4fc4e","size":2511,"filename":"F9hW0k1yFI5zXeeLFdAPTsm--My7hmT-Wp09KwmK0Ic=.pem","location":"security-state-staging/intermediates/2e1d37e8-d5e8-4de3-b2d8-2b3181322a9b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F9hW0k1yFI5zXeeLFdAPTsm++My7hmT+Wp09KwmK0Ic=","crlite_enrolled":false,"id":"f78ed066-8405-4a9e-a213-031511e661b5","last_modified":1562108519012},{"schema":1562108517488,"derHash":"z25rgsmXy1zBpVBmr19gyqx3WU6xBvtNSYvFDs3rijo=","subject":"CN=Beame.io CA 2,O=Beame.io Ltd,L=Tel Aviv-Jaffa,ST=Tel
Aviv,C=IL","subjectDN":"MGgxCzAJBgNVBAYTAklMMREwDwYDVQQIEwhUZWwgQXZpdjEXMBUGA1UEBxMOVGVsIEF2aXYtSmFmZmExFTATBgNVBAoTDEJlYW1lLmlvIEx0ZDEWMBQGA1UEAxMNQmVhbWUuaW8gQ0EgMg==","whitelist":false,"attachment":{"hash":"0a359e91716bb249722632341e4f85f71d631e20e2ff0ee6379d782c54961a3c","size":1800,"filename":"9MtJhPjYwOW02TcCqan-4J_RHNT32dQraMIk0Pbgtsw=.pem","location":"security-state-staging/intermediates/ed0044e8-a7b6-4b07-ac80-b80f5eae9913.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9MtJhPjYwOW02TcCqan+4J/RHNT32dQraMIk0Pbgtsw=","crlite_enrolled":false,"id":"2cc06889-bf33-4a96-9d85-f0e243c76990","last_modified":1562108518259},{"schema":1562108515960,"derHash":"C4ljPxIvdYIZUK4n4LrdQNSbtQ8Msbde5PRmKs5Ms9g=","subject":"CN=Technological Educational Institute of Western Greece CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGZMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxRDBCBgN
VBAMTO1RlY2hub2xvZ2ljYWwgRWR1Y2F0aW9uYWwgSW5zdGl0dXRlIG9mIFdlc3Rlcm4gR3JlZWNlIENBIFIx","whitelist":false,"attachment":{"hash":"d72696baad4643eb2d91dc268912327ed7fb5884f5fece72129c12a63a001e02","size":3328,"filename":"UHwj56cjJKum0BUjKMff1Ap3nL75-poJyKuT3GJwRPk=.pem","location":"security-state-staging/intermediates/c2e8bc36-2a68-4e45-84df-07e79a971076.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UHwj56cjJKum0BUjKMff1Ap3nL75+poJyKuT3GJwRPk=","crlite_enrolled":true,"id":"e7d5456b-323b-464b-9a57-3595df77606b","last_modified":1562108516718},{"schema":1562108515200,"derHash":"Ze7AzGyXDMHNc2WRFdyNkE5vEubcj9Tdo51UyzAiR4A=","subject":"CN=GlobalSign Organization Validated ECC CA - SHA256 - G4,O=GlobalSign nv-sa,C=BE","subjectDN":"MGkxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMT8wPQYDVQQDEzZHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0ZWQgRUNDIENBIC0gU0hBMjU2IC0gRzQ=","whitelist":false,"attachment":{"hash":"865c9143e047b0121c8b2a402263e27dd9fbbd276406fe62b420613e3e28edda","siz
e":1394,"filename":"4Xv9MflABt7Iaf_CjuYWBVtq_uG5yZJdQ3s5VSjCGoM=.pem","location":"security-state-staging/intermediates/cb10ff6b-2fd7-4bd4-b66d-314238afca50.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4Xv9MflABt7Iaf/CjuYWBVtq/uG5yZJdQ3s5VSjCGoM=","crlite_enrolled":false,"id":"d1ef766b-9934-4f69-b604-dcdd7cc578aa","last_modified":1562108515952},{"schema":1562108513681,"derHash":"JJvmXwx6sP47dkizDODrPPaRQCxy2stAzxRinGA8ujY=","subject":"CN=BlackCert\\, Inc. RSA DV Certification Authority,O=BlackCert\\, Inc.,L=Denver,ST=CO,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDTzEPMA0GA1UEBxMGRGVudmVyMRgwFgYDVQQKEw9CbGFja0NlcnQsIEluYy4xNzA1BgNVBAMTLkJsYWNrQ2VydCwgSW5jLiBSU0EgRFYgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"d44215866949fb5ebbd47bf41f766c1cbccb5645c0bcc8ba38d8fb1bf6079e0d","size":2154,"filename":"dnTrbfgvJOGlJse4RxYg30jhwWfQfKyNYkL6SpGs_1I=.pem","location":"security-state-staging/intermediates/8b6b285b-820a-4bb9-95a5-2caace235136.pe
m","mimetype":"application/x-pem-file"},"pubKeyHash":"dnTrbfgvJOGlJse4RxYg30jhwWfQfKyNYkL6SpGs/1I=","crlite_enrolled":false,"id":"bc7c0580-5018-49e7-9009-b95e7f33663f","last_modified":1562108514431},{"schema":1562108511407,"derHash":"qV8jtSrxCJWIb7ZTI9KamHbqfTlvgF5MooDVYcJuPa0=","subject":"CN=Certyfikat SSL,O=home.pl S.A.,C=PL","subjectDN":"MD0xCzAJBgNVBAYTAlBMMRUwEwYDVQQKDAxob21lLnBsIFMuQS4xFzAVBgNVBAMMDkNlcnR5ZmlrYXQgU1NM","whitelist":false,"attachment":{"hash":"45a923fe0feea027c9100ec2d0aa873a99af0b2acd334a796bd4d4b8399213b0","size":1565,"filename":"5PJ4jB1sjJ5kx3a0Ds2noJPc07ZOb_y1vR1tN1t5FsQ=.pem","location":"security-state-staging/intermediates/907a7262-b883-4896-bb78-a84247ab3ab1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5PJ4jB1sjJ5kx3a0Ds2noJPc07ZOb/y1vR1tN1t5FsQ=","crlite_enrolled":true,"id":"2c153960-0405-4d5f-8576-a05ed26e5b62","last_modified":1562108512178},{"schema":1562108509878,"derHash":"Yelzden22pgv9cGeL5TmbE41toN847kU0iRcf19lgl8=","subject":"CN=Sectigo
ECC Domain Validation Secure Server CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGPMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxNzA1BgNVBAMTLlNlY3RpZ28gRUNDIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"4d1b7deaa365566deaed85adb3c7b35bb377cf800b13c07a8ae1e78b76e74645","size":1329,"filename":"6YBE8kK4d5J1qu1wEjyoKqzEIvyRY5HyM_NB2wKdcZo=.pem","location":"security-state-staging/intermediates/6cf98cdf-f1ba-4bfe-9130-5511f8e29381.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6YBE8kK4d5J1qu1wEjyoKqzEIvyRY5HyM/NB2wKdcZo=","crlite_enrolled":false,"id":"b57ef74e-655f-4231-a30d-f2cfe2066f04","last_modified":1562108510628},{"schema":1562108509119,"derHash":"TWP4dHqWgPgYgrYtD6mTwzWB0xTFtZb6Nz35Kyxl1P8=","subject":"CN=HARICA Client Authentication ECC SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectD
N":"MIGYMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEyMDAGA1UEAwwpSEFSSUNBIENsaWVudCBBdXRoZW50aWNhdGlvbiBFQ0MgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"32fe726d359401c573765c4caa155f44aeac7ff0db07e6c99717c13fd4d7a82f","size":1382,"filename":"RkjJ3_AfR7WnTEAv46GxRy7Zz598VYGQ238SwVsbHEc=.pem","location":"security-state-staging/intermediates/70f65e99-e8b2-48ee-bf42-4801c36cb68d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RkjJ3/AfR7WnTEAv46GxRy7Zz598VYGQ238SwVsbHEc=","crlite_enrolled":false,"id":"7048b675-56a5-4d07-87e6-3c72293658a5","last_modified":1562108509869},{"schema":1562108508335,"derHash":"XYHQqjR29IpaZ11tPmq3Zr3IqhZ6GpTXnfkbQlEIL6Q=","subject":"CN=Symantec Class 3 Managed PKI Administrator CA - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGKMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldH
dvcmsxOzA5BgNVBAMTMlN5bWFudGVjIENsYXNzIDMgTWFuYWdlZCBQS0kgQWRtaW5pc3RyYXRvciBDQSAtIEc0","whitelist":false,"attachment":{"hash":"a2a98936c029075a8a6b565f8abca868b55374cab948eec361bad48dc9d73bd0","size":2162,"filename":"uIRohYy30h0StjFaVDICGnRrRRAkdbt9s-ofq2uF76o=.pem","location":"security-state-staging/intermediates/b173c1dc-300c-45c7-823f-87a260239e8d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uIRohYy30h0StjFaVDICGnRrRRAkdbt9s+ofq2uF76o=","crlite_enrolled":false,"id":"713b1d86-1417-4497-a763-6c7a9a07b477","last_modified":1562108509111},{"schema":1562108503735,"derHash":"OP32JQfO3uFrFFXpa9I9XG9sVlTWjH47JyONLHN0SoY=","subject":"CN=DigiCert Extended Validation CG CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNVBAMTIkRpZ2lDZXJ0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0cgQ0E=","whitelist":false,"attachment":{"hash":"a8bdae9244ca24b0d8b09a70bc032e9b5362540edd5a59cdeccad12958d1c5d5","s
ize":1585,"filename":"eXcE_FEH8E-PslVO5TCIbyP752KLqMYODNwbD-LCR-E=.pem","location":"security-state-staging/intermediates/12975646-7816-4709-882d-0143bf1a5283.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eXcE/FEH8E+PslVO5TCIbyP752KLqMYODNwbD+LCR+E=","crlite_enrolled":false,"id":"9f5c8ac4-b008-49c0-b9bc-863426c26d90","last_modified":1562108504480},{"schema":1562108502976,"derHash":"7bc1PhgR5fN4UcYgz8fUWugoiZ6wV35P53Z0yGjcuJA=","subject":"CN=BlackCert\\, Inc. RSA Codesigning Certification Authority,O=BlackCert\\, Inc.,L=Denver,ST=CO,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPQmxhY2tDZXJ0LCBJbmMuMUAwPgYDVQQDEzdCbGFja0NlcnQsIEluYy4gUlNBIENvZGVzaWduaW5nIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"83e714d2ebb72b6cd5797087fdeaa549882b84d809b88d45d29814a2953cf6e7","size":2138,"filename":"E7ZaNnwy2IYB-cbZdmFmsDqLQpBsyfd8D0Wla2IcsN0=.pem","location":"security-state-staging/intermediates/0945ea41-2704-48
b4-b317-eefbc1b38066.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"E7ZaNnwy2IYB+cbZdmFmsDqLQpBsyfd8D0Wla2IcsN0=","crlite_enrolled":false,"id":"957cbb11-8361-4b15-b3eb-c82267f47a38","last_modified":1562108503727},{"schema":1562108499185,"derHash":"VBrwGZYXYO8Z6PtBNObUMIW15eCH8wGX3EKyCX4QSH4=","subject":"CN=DigiCert High Assurance EV CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKDAmBgNVBAMTH0RpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEVWIENBLTE=","whitelist":false,"attachment":{"hash":"cee9a5df6d83eab591096fe1d9a6f43cc80dad8b8a159436b567f21161cbc901","size":2450,"filename":"suo4a3Sz765--hurzLhgwqwpR8K0KVkwTarqwwCDJB4=.pem","location":"security-state-staging/intermediates/b9c4edc6-247c-4b69-b0a5-a85ec816d3f7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"suo4a3Sz765++hurzLhgwqwpR8K0KVkwTarqwwCDJB4=","crlite_enrolled":false,"id":"ac2d44fb-7f7c-4ba9-91ea-9fb4a5225f72","last_modifi
ed":1562108499932},{"schema":1562108498428,"derHash":"E0qWmWjHDkdlE7N7AT2ME4whEEZpta1i1NX6sWhpueo=","subject":"CN=WISeKey CertifyID Standard Services CA 2,OU=Copyright (c) 2012 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGSMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEmMCQGA1UECxMdQ29weXJpZ2h0IChjKSAyMDEyIFdJU2VLZXkgU0ExFjAUBgNVBAsTDUludGVybmF0aW9uYWwxMTAvBgNVBAMTKFdJU2VLZXkgQ2VydGlmeUlEIFN0YW5kYXJkIFNlcnZpY2VzIENBIDI=","whitelist":false,"attachment":{"hash":"e48e0619d7002605f182e4ca2eb951af933322592b7bf6ada875554550da1467","size":1813,"filename":"d_Kor69hknpIfroNumzs6NkLxxCUNhMn46dzck_SZSQ=.pem","location":"security-state-staging/intermediates/abde4617-8fc5-4d49-8840-cd067fafc1be.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"d/Kor69hknpIfroNumzs6NkLxxCUNhMn46dzck/SZSQ=","crlite_enrolled":false,"id":"3f228a15-48bd-4095-9b49-153752372cad","last_modified":1562108499177},{"schema":1562108494477,"derHash":"7A6RbnSr8VDXJpuoha5sdB5IeFXP3QAhsfklDg8CQKQ=","subject":"CN
=Digi-Sign CA Digi-SSL,O=Digi-Sign Limited,L=Dublin,ST=County Dublin,C=IE","subjectDN":"MHIxCzAJBgNVBAYTAklFMRYwFAYDVQQIEw1Db3VudHkgRHVibGluMQ8wDQYDVQQHEwZEdWJsaW4xGjAYBgNVBAoTEURpZ2ktU2lnbiBMaW1pdGVkMR4wHAYDVQQDExVEaWdpLVNpZ24gQ0EgRGlnaS1TU0w=","whitelist":false,"attachment":{"hash":"b97246136be3d99d20bf2f7603175d44195ddb23d6b06dc54798dbf020e157c7","size":2133,"filename":"SjhfW8JOPoS_CGVE2In9gc0KODUuyPow9mwTaYtMEq0=.pem","location":"security-state-staging/intermediates/8b3ac03e-2dd2-4039-a6c7-c35f9b0a128d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SjhfW8JOPoS/CGVE2In9gc0KODUuyPow9mwTaYtMEq0=","crlite_enrolled":true,"id":"6b2da634-a178-4fe0-a67a-69c7a80a110a","last_modified":1562108495264},{"schema":1562108492940,"derHash":"wTFJn9hrIT213vqv1TERwoot2vS6RlyCZactbPc5tmg=","subject":"CN=GeoTrust ECC EV SSL CA,O=GeoTrust\\, Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5HZW9UcnVzdCwgSW5jLjEfMB0GA1UEAxMWR2VvVHJ1c3QgRUNDIEVWIFNTTCBDQQ==","whitelist":false,"attachme
nt":{"hash":"588ba7e7e84de78bd2ee165c7c1929bd7112e182bf928a3c226efe5c273d8534","size":1370,"filename":"OO0Iaj51W5pVJ0cy2PVRI2a7tHdEEIid5kv96_bdYG0=.pem","location":"security-state-staging/intermediates/2d6eb50e-d96b-494b-b34f-d3b38e2fa2d3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OO0Iaj51W5pVJ0cy2PVRI2a7tHdEEIid5kv96/bdYG0=","crlite_enrolled":false,"id":"ca75d5de-dcb0-4e6c-906a-28cbb856e74b","last_modified":1562108493682},{"schema":1562108492186,"derHash":"fg4WwAVvQan0xh9XFQPDvPB54r3bIovyIZrDEgBJa1w=","subject":"CN=COMODO RSA Extended Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGSMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE4MDYGA1UEAxMvQ09NT0RPIFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"40fed6ab131f22b397c3c2ecb13e30bb474e343301e79a2b101da728c8f7e725","size":2158,"filename":"Fbr_5aSOo4K
Ral8YE49t4lc76IOnK_oto9NWV1cSKWM=.pem","location":"security-state-staging/intermediates/26792b4c-be44-42ef-b451-acdb85008cae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Fbr/5aSOo4KRal8YE49t4lc76IOnK/oto9NWV1cSKWM=","crlite_enrolled":true,"id":"42a678eb-ad85-4ddf-9bde-2a36dbf7e3f1","last_modified":1562108492932},{"schema":1562108489881,"derHash":"VJq1JOiGreznC92WoEtVSULDdL58KcDugYtjC98gDuE=","subject":"CN=COMODO ECC Organization Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGWMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE8MDoGA1UEAxMzQ09NT0RPIEVDQyBPcmdhbml6YXRpb24gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"6ff6976ecc5dc7e323e439ed8c254a856da8c9eb0f1d4d4530e0dc455cdeb727","size":1321,"filename":"ORuXcQB__xhdb52by_Vmo_qhrTuazztSjlMMhaafJZ0=.pem","location":"security-state-staging/intermediates/2ed754b8-5dad-47c1-
9bf2-d49c86f2db2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ORuXcQB//xhdb52by/Vmo/qhrTuazztSjlMMhaafJZ0=","crlite_enrolled":true,"id":"b68c9aa1-a037-426c-872e-e863b1da96e0","last_modified":1562108490643},{"schema":1562108489123,"derHash":"vhOl0vXHj0QBGdSExxBCcyXrEM6pYj72IAyxGwT2UOE=","subject":"CN=Apple Public Client RSA CA 1 - G1,O=Apple Inc.,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSowKAYDVQQDEyFBcHBsZSBQdWJsaWMgQ2xpZW50IFJTQSBDQSAxIC0gRzE=","whitelist":false,"attachment":{"hash":"830fdd81ad376da5b83348ff96f33463a23ca58c58f45698a8cc7234d1ec4f2a","size":1613,"filename":"HI6y3qp-41VQ3mL9AJrkQaSsUBgehHMaI9RZeWJdLmk=.pem","location":"security-state-staging/intermediates/0e7aa9ac-77b4-49f7-9899-54a03c0c2d60.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HI6y3qp+41VQ3mL9AJrkQaSsUBgehHMaI9RZeWJdLmk=","crlite_enrolled":false,"id":"db20381e-1c9e-4baf-aab2-f2b9c195e30b","last_modified":1562108489873},{"schema":1562108488345,"derHash":"2w2hYD
LxZDoklv3nQuK76B2spYzXYSBhQg4VTOG84r0=","subject":"OU=AC Componentes Inform\u00e1ticos,O=FNMT-RCM,C=ES","subjectDN":"MEcxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTElMCMGA1UECwwcQUMgQ29tcG9uZW50ZXMgSW5mb3Jtw6F0aWNvcw==","whitelist":false,"attachment":{"hash":"9667524969985c4cb1aa76f3e3c434be6441809f9c3d2bad6265165a0b509b08","size":2430,"filename":"MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ-57NkgXsoGc=.pem","location":"security-state-staging/intermediates/5bc2733e-1751-448d-9db9-b1e6c1f4afc4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ+57NkgXsoGc=","crlite_enrolled":true,"id":"43dee182-4f7e-46ed-8e3c-f6b84da2e351","last_modified":1562108489116},{"schema":1562108487565,"derHash":"2y8BlO3LeMup0br0w9uo1Wg32XsgIz1hfdULcTvTE8g=","subject":"CN=JPRS Organization Validation Authority - G2,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xNDAyBgNVBAMTK0pQUlMgT3JnYW5pemF0aW9u
IFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"eaa0461d01871fe7efef1f6dd76aeadd5f6a7fa6294b55d75e3356efb3bfffbc","size":1654,"filename":"54eZQ4rB3O8NcogAUW0xb-Kj8mUlz1CXsQbqAv5JoyE=.pem","location":"security-state-staging/intermediates/0d2373da-abe4-4f76-9197-bd953b05bcbe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"54eZQ4rB3O8NcogAUW0xb+Kj8mUlz1CXsQbqAv5JoyE=","crlite_enrolled":true,"id":"90ba5f7f-c6e6-46f1-9eed-ed13ab24ea34","last_modified":1562108488337},{"schema":1562108486020,"derHash":"dCZArGf41xssR3dQdK2MYLriwBI6sYNUwkwXGTLYYYM=","subject":"CN=eMudhra ECC Organization Validation Secure Server CA,O=eMudhra Technologies Limited,L=Bengaluru,ST=Karnataka,C=IN","subjectDN":"MIGbMQswCQYDVQQGEwJJTjESMBAGA1UECBMJS2FybmF0YWthMRIwEAYDVQQHEwlCZW5nYWx1cnUxJTAjBgNVBAoTHGVNdWRocmEgVGVjaG5vbG9naWVzIExpbWl0ZWQxPTA7BgNVBAMTNGVNdWRocmEgRUNDIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"e34a770b073f3a52
13a76f49963f984357b1953c6da5947b47e936a4e630f73b","size":1353,"filename":"1Mpue8qB6gEzwG3fbKc1IdTydXsa-PS26DWSlP08NHA=.pem","location":"security-state-staging/intermediates/a4456a24-aeff-4e5b-8141-b75819e0c374.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1Mpue8qB6gEzwG3fbKc1IdTydXsa+PS26DWSlP08NHA=","crlite_enrolled":false,"id":"2bf88053-7706-4881-a7fb-ac030ad0b530","last_modified":1562108486759},{"schema":1562108482958,"derHash":"8RiVmlrV6zfO2xJRjiNEiZ3thXwDTh1mYERGfHsq7Ck=","subject":"SERIALNUMBER=201722,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE3MjI=","whitelist":false,"attachment":{"hash":"0018cff73afd9fc80f48f5b2b28aa9e874f42ec1eadda135b207f08ab903561f","size":2402,"filename":"Mq0HXzU9lbGXxDh3OAHAmEOs6t-zrh0AMpitBhEV-go=.pem","location":"security-state-staging/intermediates/c6eae6ec-2815-40ed-ad49-db25026f1f4
1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Mq0HXzU9lbGXxDh3OAHAmEOs6t+zrh0AMpitBhEV+go=","crlite_enrolled":false,"id":"369b0e86-2ce9-4e05-b98d-508abd7b4c38","last_modified":1562108483725},{"schema":1562108479933,"derHash":"wY1Tv5hk3Qm8vKz9Zy4lZtTIH2iJ42313UJcBCEdB2M=","subject":"CN=Hongkong Post e-Cert EV SSL CA 3 - 17,O=Hongkong Post,L=Hong Kong,ST=Hong Kong,C=HK","subjectDN":"MH0xCzAJBgNVBAYTAkhLMRIwEAYDVQQIEwlIb25nIEtvbmcxEjAQBgNVBAcTCUhvbmcgS29uZzEWMBQGA1UEChMNSG9uZ2tvbmcgUG9zdDEuMCwGA1UEAxMlSG9uZ2tvbmcgUG9zdCBlLUNlcnQgRVYgU1NMIENBIDMgLSAxNw==","whitelist":false,"attachment":{"hash":"e4408c6b03e1deb0777ad20ea8b3466779565bcb2d92a17de6ac350bdaa5de18","size":2097,"filename":"shxxZc44F1hF3pjKzr0Oaoq-CwRFBKIr0_noGHUYkjA=.pem","location":"security-state-staging/intermediates/5092f509-515e-460e-b9cb-d9cdaff53b24.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"shxxZc44F1hF3pjKzr0Oaoq+CwRFBKIr0/noGHUYkjA=","crlite_enrolled":true,"id":"8a76611a-1aeb-45ed-90ff-d235f7
264a64","last_modified":1562108480674},{"schema":1562108479189,"derHash":"oqZEIzcPKdJbx6jjGHumTn65rSxpSzKwpgSDt3ZKipk=","subject":"SERIALNUMBER=201726,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzI2","whitelist":false,"attachment":{"hash":"493a8723d33b245fb73ba475b1b71ef35f27d668af43408d38e274218fc62e66","size":2402,"filename":"CJitrQ5Xyw0ivYWDlDkdZhYGrR9n2v_BiXArqHx0E3k=.pem","location":"security-state-staging/intermediates/1be9953d-1cde-405a-b00c-7ba2d663a689.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CJitrQ5Xyw0ivYWDlDkdZhYGrR9n2v/BiXArqHx0E3k=","crlite_enrolled":false,"id":"a1acb403-444a-4209-85b5-81f33f7e1947","last_modified":1562108479925},{"schema":1562108477627,"derHash":"ci1Qh02kVJbQKZYnQJd3YDqHNBpflDuInDLnuSgKj3E=","subject":"CN=MarketWare - Solu\u00e7\u00f5es para Mercados Digitais\\, Lda. RSA DV CA,O=Marke
tWare - Solu\u00e7\u00f5es para Mercados Digitais\\, Lda.,L=Lisboa,ST=Lisboa,C=PT","subjectDN":"MIG3MQswCQYDVQQGEwJQVDEPMA0GA1UECBMGTGlzYm9hMQ8wDQYDVQQHEwZMaXNib2ExPTA7BgNVBAoMNE1hcmtldFdhcmUgLSBTb2x1w6fDtWVzIHBhcmEgTWVyY2Fkb3MgRGlnaXRhaXMsIExkYS4xRzBFBgNVBAMMPk1hcmtldFdhcmUgLSBTb2x1w6fDtWVzIHBhcmEgTWVyY2Fkb3MgRGlnaXRhaXMsIExkYS4gUlNBIERWIENB","whitelist":false,"attachment":{"hash":"3ba8b2665039d7c2a7cf679634516d8d507d0415ddd08b1e41ac4a9c6c867605","size":2231,"filename":"0xvEIcXteNs-TYPZ7GyhN_WFNSBPpaBsyCLFCdhQQY0=.pem","location":"security-state-staging/intermediates/3319dc26-2db5-4b0e-ae5b-4709b309e91f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0xvEIcXteNs+TYPZ7GyhN/WFNSBPpaBsyCLFCdhQQY0=","crlite_enrolled":true,"id":"0b17a42e-ae1c-45f8-9f54-f23d38b3a873","last_modified":1562108478417},{"schema":1562108476077,"derHash":"JT48lzLfiHTD1U2lIsFxEULJjCzqdmRjUVKomgPuk2Q=","subject":"CN=Optum Public Trust CA 1,O=Optum,L=Minneapolis,ST=Minnesota,C=US","subjectDN":"MGkxCzAJBgNV
BAYTAlVTMRIwEAYDVQQIEwlNaW5uZXNvdGExFDASBgNVBAcTC01pbm5lYXBvbGlzMQ4wDAYDVQQKEwVPcHR1bTEgMB4GA1UEAxMXT3B0dW0gUHVibGljIFRydXN0IENBIDE=","whitelist":false,"attachment":{"hash":"e28866c72d971df063ce52b61094d04901ae33bf5dac1c98cee5f231443b1820","size":1796,"filename":"vKi3BXeuhSDWdRuvjranv-RWto4k9Z05PXzhtTz0LnA=.pem","location":"security-state-staging/intermediates/488fc2c3-5bb3-412f-813e-a4df6c553ea4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vKi3BXeuhSDWdRuvjranv+RWto4k9Z05PXzhtTz0LnA=","crlite_enrolled":false,"id":"1c890a1b-6c30-4168-b0b3-e6f8888a7ef6","last_modified":1562108476867},{"schema":1562108475274,"derHash":"wKHKNkddM7Rx5OWOVXTdkpTTVMRXKVlU21VbJOrSqks=","subject":"CN=COMODO/PKWARE Secure Email CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGAMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDEmMCQGA1UEAxMdQ09NT0RPL1BLV0FSRSBTZWN1cmUgRW1haWwgQ0E=","whitelist":false,"att
achment":{"hash":"536d387994d2fcf3c04c848acb66841104d87c9b0b1ed73ccec9768bd275d362","size":1979,"filename":"javoiDXitAWxKnEeWWJB_XeluETyAl8SAu8OHaB7Q0c=.pem","location":"security-state-staging/intermediates/6124ffbf-c334-4b41-82f5-92517e8e488e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"javoiDXitAWxKnEeWWJB/XeluETyAl8SAu8OHaB7Q0c=","crlite_enrolled":false,"id":"c7a0609a-ed94-40e7-b2ce-ac3e72d18619","last_modified":1562108476061},{"schema":1562108474475,"derHash":"SKfJxaNnNPyeIE1jzmu7zZ4hwZeGBHYM2NMNb0xntnw=","subject":"CN=Plex Devices High Assurance CA,O=Plex\\, Inc.,C=US","subjectDN":"MEsxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpQbGV4LCBJbmMuMScwJQYDVQQDEx5QbGV4IERldmljZXMgSGlnaCBBc3N1cmFuY2UgQ0E=","whitelist":false,"attachment":{"hash":"3729070872ea8b8dcd9408300fc6e7708a388c0ab4515de46054748a7dbd7915","size":1670,"filename":"vLeOEXjDgoNqSXwuYXRAIm7pApi-S-w8e2zLIwsC76A=.pem","location":"security-state-staging/intermediates/9297fd9c-adef-430a-a45f-6a0e7715a25e.pem","mimetype":"app
lication/x-pem-file"},"pubKeyHash":"vLeOEXjDgoNqSXwuYXRAIm7pApi+S+w8e2zLIwsC76A=","crlite_enrolled":false,"id":"c99ad4f1-7ce1-4835-9f30-07a94e50f3dd","last_modified":1562108475266},{"schema":1562108472186,"derHash":"kgy86b1V08qNRGgIpZ7fPCIq1XZ6RFPGhu48b5T1W84=","subject":"CN=The University of Texas-Pan American RSA CA,OU=Information Technology,O=The University of Texas-Pan American,L=Edinburg,ST=TX,C=US","subjectDN":"MIGzMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVFgxETAPBgNVBAcTCEVkaW5idXJnMS0wKwYDVQQKEyRUaGUgVW5pdmVyc2l0eSBvZiBUZXhhcy1QYW4gQW1lcmljYW4xHzAdBgNVBAsTFkluZm9ybWF0aW9uIFRlY2hub2xvZ3kxNDAyBgNVBAMTK1RoZSBVbml2ZXJzaXR5IG9mIFRleGFzLVBhbiBBbWVyaWNhbiBSU0EgQ0E=","whitelist":false,"attachment":{"hash":"68a204c4713144af9e565ce675099fc7333de3ce90a145da40d7e88cf87f1992","size":2211,"filename":"zDuCL0MFlm-s2lxuioDRbpVXq3F1pIFe3Ogdl6yJbPc=.pem","location":"security-state-staging/intermediates/93cc4789-ad8f-42af-a3d7-ba55126aae58.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zDuCL0MF
lm+s2lxuioDRbpVXq3F1pIFe3Ogdl6yJbPc=","crlite_enrolled":false,"id":"803e4821-11f5-4be0-b520-db82af50d777","last_modified":1562108472928},{"schema":1562108470681,"derHash":"xJw1DlqCBeBj50xVSplDNbhDXJllJ9TvGisMe1FYSy0=","subject":"CN=Buypass Class 3 CA 3,O=Buypass AS-983163327,C=NO","subjectDN":"MEsxCzAJBgNVBAYTAk5PMR0wGwYDVQQKDBRCdXlwYXNzIEFTLTk4MzE2MzMyNzEdMBsGA1UEAwwUQnV5cGFzcyBDbGFzcyAzIENBIDM=","whitelist":false,"attachment":{"hash":"954fa22283314bcbe40077bc8cee7655cbcfce4fb215854858c5599d8c8b498f","size":1723,"filename":"b2TqrhO3HsQ2hHTQB23iQnAAL127LlWqd3L_IgvgTtk=.pem","location":"security-state-staging/intermediates/379744b3-624d-49d1-b082-83d5b607dc72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"b2TqrhO3HsQ2hHTQB23iQnAAL127LlWqd3L/IgvgTtk=","crlite_enrolled":true,"id":"636e348f-d4b7-425a-aabb-4eab295a6c6e","last_modified":1562108471419},{"schema":1562108469933,"derHash":"geBxsB8B3EPuRYwOG9y8hItHRiwmtM4Z7pAVQWvG34k=","subject":"CN=DigiCert Class 3 RSA CA G1,OU=www.d
igicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGkRpZ2lDZXJ0IENsYXNzIDMgUlNBIENBIEcx","whitelist":false,"attachment":{"hash":"7669ec2c677f7c33ea164f3d8991239b21a5698efb50b48e0cb9ac939a508051","size":1658,"filename":"iHVCWDAkTkDEQzK_sRixqnC3Qp1KI3tOEHgKB14IEjE=.pem","location":"security-state-staging/intermediates/8c415eed-4867-4bda-81c4-10a03eb5b973.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iHVCWDAkTkDEQzK/sRixqnC3Qp1KI3tOEHgKB14IEjE=","crlite_enrolled":false,"id":"8fa42d62-2705-4c2b-8527-12fff6081ec6","last_modified":1562108470673},{"schema":1562108469181,"derHash":"T9c0GQRvkIaIJtWBU2kx0i5UlD680FnLdiE5TXSTQ8U=","subject":"CN=STRATO SSL - G3,OU=Domain Validated SSL,O=STRATO AG,C=DE","subjectDN":"MFoxCzAJBgNVBAYTAkRFMRIwEAYDVQQKEwlTVFJBVE8gQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRgwFgYDVQQDEw9TVFJBVE8gU1NMIC0gRzM=","whitelist":false,"attachment":{"hash":"651a5cc911bb69
e9769352cd79204ebad0b8c18a0618514fbc2f3b18fbf1985f","size":1699,"filename":"qvSFQBzCFM6BzrM7CfDEVTkxQPTvaKcxyp8jRACn-_g=.pem","location":"security-state-staging/intermediates/fe9022e1-381b-43c0-bf53-e4e296637182.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qvSFQBzCFM6BzrM7CfDEVTkxQPTvaKcxyp8jRACn+/g=","crlite_enrolled":false,"id":"f362a89a-ec51-4c83-b355-5992a88e47e8","last_modified":1562108469925},{"schema":1562108468428,"derHash":"P994ilpl5qKdjBVQ2CRJBqO4p7fT2pve3XSOQYOnY8k=","subject":"CN=GeoTrust DV SSL SHA256 CA - G2,OU=Domain Validated SSL,O=GeoTrust Inc.,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEnMCUGA1UEAxMeR2VvVHJ1c3QgRFYgU1NMIFNIQTI1NiBDQSAtIEcy","whitelist":false,"attachment":{"hash":"c021152fa65496c7d3044515d2b06d1fae2374b0af0f3a15b7898923ab81ec9b","size":1723,"filename":"1i8gOxF9EpNXxb95VRtBODr-LfSjs4yA5TdHoH3gAeI=.pem","location":"security-state-staging/intermediates/6513678f-bcad-46a9-9
e10-82fa65ea35db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1i8gOxF9EpNXxb95VRtBODr+LfSjs4yA5TdHoH3gAeI=","crlite_enrolled":false,"id":"1d033b5b-0c9c-49e6-8018-fe710f401820","last_modified":1562108469174},{"schema":1562108466881,"derHash":"tuTI2dV1phQE3laOJ71vMEjXsPgDBl4vZSYmC9yj0hE=","subject":"CN=Hewlett Packard Enterprise Collaboration CA G21,OU=Class 2 Managed PKI Individual Subscriber CA,O=Hewlett Packard Enterprise Company,C=US","subjectDN":"MIGrMQswCQYDVQQGEwJVUzErMCkGA1UEChMiSGV3bGV0dCBQYWNrYXJkIEVudGVycHJpc2UgQ29tcGFueTE1MDMGA1UECxMsQ2xhc3MgMiBNYW5hZ2VkIFBLSSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0ExODA2BgNVBAMTL0hld2xldHQgUGFja2FyZCBFbnRlcnByaXNlIENvbGxhYm9yYXRpb24gQ0EgRzIx","whitelist":false,"attachment":{"hash":"96b02933ee42ce251c97ba41e496414d33f3c5e1c2a412abc53c2e02a4188766","size":2093,"filename":"Z90auS_kRdRG5Ao7y14bu7yNh6EQunNHlS4BvcxrXqg=.pem","location":"security-state-staging/intermediates/ca9b4a36-f032-4648-9039-916ec02a384f.pem","mimetype":"application/x-p
em-file"},"pubKeyHash":"Z90auS/kRdRG5Ao7y14bu7yNh6EQunNHlS4BvcxrXqg=","crlite_enrolled":false,"id":"d6eec88c-c2ad-4bbc-8fa8-2a3910ffb27c","last_modified":1562108467674},{"schema":1562108465327,"derHash":"8BflEJGLd9pn5NAg4rdqQkYYdugi9iDFVzvLw7uzdAY=","subject":"CN=Gandi Secure Email CA,O=GANDI SAS,C=FR","subjectDN":"MEExCzAJBgNVBAYTAkZSMRIwEAYDVQQKEwlHQU5ESSBTQVMxHjAcBgNVBAMTFUdhbmRpIFNlY3VyZSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"7374bb117a04dbe56b2af679a65a85a2c734afce7e88acb81917ecd528ba648e","size":1719,"filename":"iFIEeQ06wWLDY4tmZC6npViJr_VFbFCHUdRkqmIc7OY=.pem","location":"security-state-staging/intermediates/dec7936f-0abc-4ce6-95ac-65368ca76b94.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iFIEeQ06wWLDY4tmZC6npViJr/VFbFCHUdRkqmIc7OY=","crlite_enrolled":false,"id":"8561ee44-dd28-4da1-ad1c-2cd801669b4f","last_modified":1562108466116},{"schema":1562108464555,"derHash":"oloZVGgZ0EgADvnGV3xLzY0hVbHkNGpFmdbIt5eZ1KE=","subject":"CN=DarkMatter Secure CA,O=D
arkMatter LLC,C=AE","subjectDN":"MEUxCzAJBgNVBAYTAkFFMRcwFQYDVQQKDA5EYXJrTWF0dGVyIExMQzEdMBsGA1UEAwwURGFya01hdHRlciBTZWN1cmUgQ0E=","whitelist":false,"attachment":{"hash":"17a8659515054ccd708b7578033a8260071fbc5776d9f8d781877d7eb0ab17fc","size":2446,"filename":"_NdsyiNH5c1bOTR_Uc9DZUtpor_JBzZwpr5H2HAebg4=.pem","location":"security-state-staging/intermediates/aae3464a-97e3-430d-abca-3a3589b81fef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/NdsyiNH5c1bOTR/Uc9DZUtpor/JBzZwpr5H2HAebg4=","crlite_enrolled":true,"id":"fb7a603d-e9a8-4251-ba50-4366055db1f3","last_modified":1562108465319},{"schema":1562108462256,"derHash":"jXNz845j2DDAzqosMzMPIaLHdAjuPPvFlcDS89MvQiQ=","subject":"CN=AlwaysOnSSL ECC CA G1,OU=Domain Validated SSL,O=CertCenter AG,C=DE","subjectDN":"MGQxCzAJBgNVBAYTAkRFMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEeMBwGA1UEAxMVQWx3YXlzT25TU0wgRUNDIENBIEcx","whitelist":false,"attachment":{"hash":"6cd13823e7a07d0b6d63d3b9c92770bf894f5e25fefc4e
8199730c15424c4112","size":1142,"filename":"40Fa99C7P_qSeG5RhWDK4bUcBBT4PiEO_gqhJF0vZqQ=.pem","location":"security-state-staging/intermediates/edeee72e-1d4e-43f0-b5b0-f8cdf445085f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"40Fa99C7P/qSeG5RhWDK4bUcBBT4PiEO/gqhJF0vZqQ=","crlite_enrolled":false,"id":"c9f1fa0d-0267-4cae-9099-43d21b02ada0","last_modified":1562108463012},{"schema":1562108461484,"derHash":"kPqY1kbdXwBgLWjRfddrVe5RzaPTki8NvdEEgPWZCs0=","subject":"O=Government Root Certification Authority,C=TW","subjectDN":"MD8xCzAJBgNVBAYTAlRXMTAwLgYDVQQKDCdHb3Zlcm5tZW50IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"461fb473d9abcb1549d2bb8dc7f25d3d5d8ffcd271bcfd212d9339e162d6e4cf","size":2259,"filename":"pRovOgUOg4pQUGlleNu-2qwaEH7i2dSPrlBdGNDaXPg=.pem","location":"security-state-staging/intermediates/cd7dee2a-eebb-414f-bd65-a154eaf83a0f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pRovOgUOg4pQUGlleNu+2qwaEH7i2dSPrlBdGNDaXPg=","crli
te_enrolled":true,"id":"80730951-6e3a-4fd6-83ff-a24e2b107f4f","last_modified":1562108462248},{"schema":1562108460724,"derHash":"uzlJcDXtlYPShs3nD7ZE65WAZZgJKx6NjxG8A116R2o=","subject":"CN=Riverbed Certificate Issuer,O=Riverbed Technology\\, Inc.,C=US","subjectDN":"MFcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlSaXZlcmJlZCBUZWNobm9sb2d5LCBJbmMuMSQwIgYDVQQDExtSaXZlcmJlZCBDZXJ0aWZpY2F0ZSBJc3N1ZXI=","whitelist":false,"attachment":{"hash":"380d64120c38a475d1d02f25161d62ca2438dd34d22cc5fdc5ff8914d2ee748e","size":1837,"filename":"mLNcfRP6zZz8Ur0uU9bhIs_pxrgspWgbw-3oVVm2LZM=.pem","location":"security-state-staging/intermediates/51c4f2c3-b6a5-4cf4-9883-a9fc87d42f7b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mLNcfRP6zZz8Ur0uU9bhIs/pxrgspWgbw+3oVVm2LZM=","crlite_enrolled":false,"id":"b91bef53-0465-4340-bc6f-1b264e20858f","last_modified":1562108461476},{"schema":1562108459225,"derHash":"GUAL5bejH7czkXcAeJ0vCiRxwMnVBsDlBMBsFtfLF8A=","subject":"CN=DigiCert SHA2 High Assurance Server CA,OU=www.di
gicert.com,O=DigiCert Inc,C=US","subjectDN":"MHAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLzAtBgNVBAMTJkRpZ2lDZXJ0IFNIQTIgSGlnaCBBc3N1cmFuY2UgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"97ebf8501ebeef539292b72802d284d4a90895579053c7ca04829988d01099fd","size":1687,"filename":"k2v657xBsOVe1PQRwOsHsw3bsGT2VzIqz5K-59sNQws=.pem","location":"security-state-staging/intermediates/c00739e2-a5f0-4bfc-bd66-49b848083fe1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k2v657xBsOVe1PQRwOsHsw3bsGT2VzIqz5K+59sNQws=","crlite_enrolled":true,"id":"6bad67e8-353f-45a0-88bf-f84ca74f9d08","last_modified":1562108459963},{"schema":1562108457728,"derHash":"TJ4FOPmFaQ3p1c4cOPFsJLTDmhcQwIgc2wbir9t1e00=","subject":"CN=Deutscher Bundestag CA - G02,O=Deutscher Bundestag,L=Berlin,ST=Berlin,C=DE","subjectDN":"MHQxCzAJBgNVBAYTAkRFMQ8wDQYDVQQIDAZCZXJsaW4xDzANBgNVBAcMBkJlcmxpbjEcMBoGA1UECgwTRGV1dHNjaGVyIEJ1bmRlc3RhZzElMCMGA1UEAwwcRGV1dHNjaGVyIEJ1bmRlc3RhZyBD
QSAtIEcwMg==","whitelist":false,"attachment":{"hash":"691728107bc477123f2b50cf26ee2991f3ba95b969683fd4fe04926cd388a729","size":1999,"filename":"p-DGsZUedDpJ0iAR6valV2XZykAPIyB_t6FdqCpsNck=.pem","location":"security-state-staging/intermediates/801fd9f6-afcf-4260-913d-7cedfb8d1f69.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"p+DGsZUedDpJ0iAR6valV2XZykAPIyB/t6FdqCpsNck=","crlite_enrolled":true,"id":"4b7cd555-ac58-4744-b9ae-1f90ccfdbd42","last_modified":1562108458465},{"schema":1562108456943,"derHash":"KFJhsTo5JkWtzcIueVlPj8qLbvgVyW6iUI2MaJs11JA=","subject":"SERIALNUMBER=201917,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTE3","whitelist":false,"attachment":{"hash":"b4c42fc4159a8e09a7be7d92b67f375fe8a4a1289555b5146e634c922dfebc7c","size":2333,"filename":"pJ115qaM3iy0fBjotKRhuL4ZOLmB8hkeEaSrcQjAX-E=.pem","location":"security-
state-staging/intermediates/94254f29-2c38-49e2-aa81-74e7a43490e6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pJ115qaM3iy0fBjotKRhuL4ZOLmB8hkeEaSrcQjAX+E=","crlite_enrolled":false,"id":"2e788e05-bc12-4ee0-993f-0e4ce6728971","last_modified":1562108457720},{"schema":1562108455439,"derHash":"vzmkJB9C1SI2iUSz3FPtnqpax3NeJC4GJ8DdW7pxRIQ=","subject":"CN=VR IDENT EV SSL CA 2018,OU=VR IDENT,O=Fiducia & GAD IT AG,C=DE","subjectDN":"MGAxCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMREwDwYDVQQLDAhWUiBJREVOVDEgMB4GA1UEAwwXVlIgSURFTlQgRVYgU1NMIENBIDIwMTg=","whitelist":false,"attachment":{"hash":"771df57314c0ff60060e643c897bc3d2c750306ce65c3893ac7971eccbfaa626","size":2101,"filename":"WDFtLnObNhLxa9b3x6LeuoWAZeafyD6K2Il4Wi_HzF0=.pem","location":"security-state-staging/intermediates/26d00339-07ff-4371-8b44-fe90949d947d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WDFtLnObNhLxa9b3x6LeuoWAZeafyD6K2Il4Wi/HzF0=","crlite_enrolled":true,"id":"d028614d-4a78-4253-b0be-7daf
b1e46f70","last_modified":1562108456185},{"schema":1562108449412,"derHash":"hXYPd9sP0Nk8Ie4DZLjqsJuCz0m3hJgxA4IJtbEIE2M=","subject":"CN=DigiCert Federated ID L3 CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0IEZlZGVyYXRlZCBJRCBMMyBDQQ==","whitelist":false,"attachment":{"hash":"7688296a490812398f07da4054aa6c862d6971d10625571f6f958e6dcf89cf40","size":1861,"filename":"D_y1VvJ2qndIKmqJ6xcIr7CNwy7j0tZxmfALqY3I9DY=.pem","location":"security-state-staging/intermediates/dbf7ff78-daad-447b-9fd4-d935233f7746.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D/y1VvJ2qndIKmqJ6xcIr7CNwy7j0tZxmfALqY3I9DY=","crlite_enrolled":false,"id":"50c11f47-25d1-43c8-a40c-7dbbed4dec9b","last_modified":1562108450170},{"schema":1562108447119,"derHash":"7zVswpmqY3kWyBpIiRtbovMzogZNk6iboU9joUqmslE=","subject":"CN=Go Daddy Secure Code Signing Certificate Authority - G2,OU=http://certs.god
addy.com/repository/,O=GoDaddy.com\\, LLC,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIHAMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEZMBcGA1UEChMQR29EYWRkeS5jb20sIExMQzEtMCsGA1UECxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMUAwPgYDVQQDEzdHbyBEYWRkeSBTZWN1cmUgQ29kZSBTaWduaW5nIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcy","whitelist":false,"attachment":{"hash":"2a9da51343ba17fc69416527b4e61c230d78d040f1a4f4a653929473419fc67c","size":1776,"filename":"ZKrsHPc_itlBFX0ia7RhbHINkdKu7eJaRcSBtF1rbBk=.pem","location":"security-state-staging/intermediates/2354bf54-5e88-4dad-8baa-b8c573e7c4b1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZKrsHPc/itlBFX0ia7RhbHINkdKu7eJaRcSBtF1rbBk=","crlite_enrolled":false,"id":"f9148830-33ed-4e5a-9e6a-dc463e9110ab","last_modified":1562108447878},{"schema":1562108446333,"derHash":"IOPoh0eo2I4RpSdSEDLcjK6SvDO0XJPu4E9iSnDckgo=","subject":"CN=Huntsville Hospital System CA,OU=Orion Health Direct Secure Messaging,O=Huntsville Hospi
tal System,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzEjMCEGA1UEChMaSHVudHN2aWxsZSBIb3NwaXRhbCBTeXN0ZW0xLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEmMCQGA1UEAxMdSHVudHN2aWxsZSBIb3NwaXRhbCBTeXN0ZW0gQ0E=","whitelist":false,"attachment":{"hash":"4f9fab69c2825ed8051a167e929634c1a24478267e05efe7c084c5d300c59d25","size":2308,"filename":"4jZ0K-YfJqocNa6Q3OoluSDNkSjq0ytpvAtrDgTqLuQ=.pem","location":"security-state-staging/intermediates/8cf75bef-731d-4866-a120-e05cba8d7698.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4jZ0K+YfJqocNa6Q3OoluSDNkSjq0ytpvAtrDgTqLuQ=","crlite_enrolled":false,"id":"048d5070-4d74-42a3-bdd2-1e5791e0b347","last_modified":1562108447112},{"schema":1562108445570,"derHash":"gN2eNJfzVOMLis850EbdT1phj3iJI26zT3jVTRXNalA=","subject":"CN=Amazon,OU=Server CA 1A,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQTEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"f502b13e5af94af796e88c4080
574a5ad68c2787ff0f7bdb34061720b135d3eb","size":1544,"filename":"ZLtb2AMR-j9TvZlATKuHYq1uBIRH0Kl_IZ_OyhZh83w=.pem","location":"security-state-staging/intermediates/b9e331a0-e39f-41ce-a5d3-a151079adcca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZLtb2AMR+j9TvZlATKuHYq1uBIRH0Kl/IZ/OyhZh83w=","crlite_enrolled":false,"id":"dd706920-48c4-43c2-ad79-708be9e0d652","last_modified":1562108446325},{"schema":1562108441761,"derHash":"RYRGunXZMukU8jwrV7fRku3bwhgdlY4Rga1SUXR6Hug=","subject":"CN=DigiCert ECC Secure Server CA,O=DigiCert Inc,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJjAkBgNVBAMTHURpZ2lDZXJ0IEVDQyBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"b2bcbebe7e27673d1a6a02cea251d16fb5d61462c14b4e5f2959e1d241a38778","size":1333,"filename":"PZXN3lRAy-8tBKk2Ox6F7jIlnzr2Yzmwqc3JnyfXoCw=.pem","location":"security-state-staging/intermediates/64f57389-f6e8-4703-a733-9ac4ef7d0e9d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PZXN3lRAy
+8tBKk2Ox6F7jIlnzr2Yzmwqc3JnyfXoCw=","crlite_enrolled":true,"id":"ec135dce-52fb-4ab9-b488-075172498a7c","last_modified":1562108442503},{"schema":1562108441013,"derHash":"ljBWsNlB2dviesd4BT2F5DzHn0dq00z915nCfjgYQOs=","subject":"CN=NCC Group Secure Server CA G3,O=NCC Group,C=US","subjectDN":"MEkxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlOQ0MgR3JvdXAxJjAkBgNVBAMTHU5DQyBHcm91cCBTZWN1cmUgU2VydmVyIENBIEcz","whitelist":false,"attachment":{"hash":"f16945e38e9d095d6f815613d6e34ba2de58cb018adf71a2eaff1dc03a45d3c5","size":1110,"filename":"o054ddOknAfLTeuaAC1q42pNk8GmJ-eXYrMMmlOPyUc=.pem","location":"security-state-staging/intermediates/75e73199-e46f-4f99-82bd-6bb22c48adc2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"o054ddOknAfLTeuaAC1q42pNk8GmJ+eXYrMMmlOPyUc=","crlite_enrolled":false,"id":"90a2cf68-57ab-4964-a059-d6e9ca04d487","last_modified":1562108441753},{"schema":1562108438751,"derHash":"G9nTNskEXcF0JrmawmUvrjHLncKsPhmwQ5DCSwvUqKA=","subject":"CN=SSL.com NAESB Client Authentication Interm
ediate CA ECC R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0b24xETAPBgNVBAoMCFNTTCBDb3JwMUMwQQYDVQQDDDpTU0wuY29tIE5BRVNCIENsaWVudCBBdXRoZW50aWNhdGlvbiBJbnRlcm1lZGlhdGUgQ0EgRUNDIFIy","whitelist":false,"attachment":{"hash":"025ec4ec422a32861ce2ee1ff6519ff877f45473617ddfbc0cc4d2d65a1f3403","size":1284,"filename":"-XFI74y_3Si13bQVqU7peqlv_Bm1B62UTJzvE6VW0eg=.pem","location":"security-state-staging/intermediates/86db5367-7cdb-43be-bc89-89822bb5d464.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+XFI74y/3Si13bQVqU7peqlv/Bm1B62UTJzvE6VW0eg=","crlite_enrolled":false,"id":"f5fb2bf8-c421-4d28-86ec-271b94f105e5","last_modified":1562108439491},{"schema":1562108437991,"derHash":"MoTgNczXH3odBjrpjimx5ZEjEa2fbZEYhMr513HTfE0=","subject":"CN=BlackCert\\, Inc. RSA OV Certification Authority,O=BlackCert\\, Inc.,L=Denver,ST=CO,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDTzEPMA0GA1UEBxMGRGVudmVyMRgwFgYDVQQKEw9CbGFj
a0NlcnQsIEluYy4xNzA1BgNVBAMTLkJsYWNrQ2VydCwgSW5jLiBSU0EgT1YgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"a606699a644f90e31cdac13ce9ab6fe654fc1b68e04d29ed2be0f02b771c6ddb","size":2150,"filename":"B5IV9Zui5uDR_htFQKKJviedASQLhuhY2W547xasQvc=.pem","location":"security-state-staging/intermediates/65c4a648-66cf-4447-ad46-c424ead1c1d0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B5IV9Zui5uDR/htFQKKJviedASQLhuhY2W547xasQvc=","crlite_enrolled":false,"id":"50ca3b4d-bf64-427e-b5f2-60f0150b7f77","last_modified":1562108438743},{"schema":1562108436479,"derHash":"2oVGgW2JHBJB6Th95DbRuffqcNuh6z0l9YJxzoFqerw=","subject":"CN=Apple Public Server ECC CA 2 - G1,O=Apple Inc.,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSowKAYDVQQDEyFBcHBsZSBQdWJsaWMgU2VydmVyIEVDQyBDQSAyIC0gRzE=","whitelist":false,"attachment":{"hash":"96414faae6fe080e422a2e6dffda79775450c27bd46afac2672914234e85706a","size":1358,"filename":"kKxRozcrd_eR6KCzq3nM59ZL2rXyJMQOx5N
jXVurVaw=.pem","location":"security-state-staging/intermediates/08d896b9-e7d5-440e-a842-0552e86ff576.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kKxRozcrd/eR6KCzq3nM59ZL2rXyJMQOx5NjXVurVaw=","crlite_enrolled":false,"id":"1d2ac87d-efa3-4196-9b3d-7656b94384ac","last_modified":1562108437238},{"schema":1562108433427,"derHash":"NWpfTZlOnvp8rvxJF2iRHWXsJZd0ZbYQ4vKapEcmMcM=","subject":"CN=EC-SectorPublic,OU=Serveis P\u00fablics de Certificaci\u00f3,O=CONSORCI ADMINISTRACIO OBERTA DE CATALUNYA,C=ES","subjectDN":"MIGIMQswCQYDVQQGEwJFUzEzMDEGA1UECgwqQ09OU09SQ0kgQURNSU5JU1RSQUNJTyBPQkVSVEEgREUgQ0FUQUxVTllBMSowKAYDVQQLDCFTZXJ2ZWlzIFDDumJsaWNzIGRlIENlcnRpZmljYWNpw7MxGDAWBgNVBAMMD0VDLVNlY3RvclB1YmxpYw==","whitelist":false,"attachment":{"hash":"8aa452217d865dd183b477c08181966ceab5ca68b4abe8ee3224d4a860effb60","size":2101,"filename":"VMk3U3j_saU9dzdCeDTxe0MSzuZR2tplayTBfNxG2oQ=.pem","location":"security-state-staging/intermediates/8e636754-d680-47c7-8862-2e0d71bd6568.pem","mimetype":"ap
plication/x-pem-file"},"pubKeyHash":"VMk3U3j/saU9dzdCeDTxe0MSzuZR2tplayTBfNxG2oQ=","crlite_enrolled":true,"id":"8a63a6e7-575b-46fb-bdf4-944f8aa5edcc","last_modified":1562108434176},{"schema":1562108432677,"derHash":"KMu04NnE7m0ErI8UcXYFrjpL2Mv40IGyevbtsvPXajI=","subject":"CN=DigiCert Grid Trust CA G2,OU=www.digicert.com,O=DigiCert Grid,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCBHcmlkMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSIwIAYDVQQDExlEaWdpQ2VydCBHcmlkIFRydXN0IENBIEcy","whitelist":false,"attachment":{"hash":"2030c0b03af2fba71a3c252cde6988edc7bbd22d1d2515bf5da0d0ccf16c5a03","size":1796,"filename":"5TmPqy9bKSAy0zKN0Mz_yBIgKGk_pgZ4TMaSTFRh9xw=.pem","location":"security-state-staging/intermediates/062c27f3-e7a5-48a0-8734-535cb038e150.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5TmPqy9bKSAy0zKN0Mz/yBIgKGk/pgZ4TMaSTFRh9xw=","crlite_enrolled":true,"id":"0aee0acd-3e30-437a-b011-55d61c8d46c4","last_modified":1562108433420},{"schema":1562108431893,"derHash":"P
tCuZ6FDLIPYIQHeabLuXn8gMCcJ2VeQc6MC2pD0hTM=","subject":"CN=TrustSafe Domain Validated CA,OU=SSL Department,O=Isimtescil Bilisim Anonim Sirketi,L=Istanbul,C=TR","subjectDN":"MIGNMQswCQYDVQQGEwJUUjERMA8GA1UEBwwISXN0YW5idWwxKjAoBgNVBAoMIUlzaW10ZXNjaWwgQmlsaXNpbSBBbm9uaW0gU2lya2V0aTEXMBUGA1UECwwOU1NMIERlcGFydG1lbnQxJjAkBgNVBAMMHVRydXN0U2FmZSBEb21haW4gVmFsaWRhdGVkIENB","whitelist":false,"attachment":{"hash":"748834790eb69db784c3f00d7f2ef2b64cf353435e5de3e69ac4ca2c81299276","size":2247,"filename":"90w8QxLDw7OA3WHogRdF8WutmwS2zB2cr21T0-Sun5o=.pem","location":"security-state-staging/intermediates/32d1002c-6eee-400e-a7ec-8b0235165445.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"90w8QxLDw7OA3WHogRdF8WutmwS2zB2cr21T0+Sun5o=","crlite_enrolled":true,"id":"29a0cb2e-7719-4c2f-9360-00c82a4a3c72","last_modified":1562108432669},{"schema":1562108430382,"derHash":"bEfTZcE7yMw9be9djwerjb6jyNSUXWUaqYVKnJo8xxw=","subject":"CN=Certum Extended Validation CA SHA2,OU=Certum Certification Authority,
O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGHMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSswKQYDVQQDEyJDZXJ0dW0gRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQSBTSEEy","whitelist":false,"attachment":{"hash":"0c8cfb3c29a92dbd2d2289a8b8babc8b12040ee59493a752f19f90d04a232032","size":1731,"filename":"HYLX8fqXEbN3Nn7-5kDCagbbzZnSoXsP-rAxbZJ4isM=.pem","location":"security-state-staging/intermediates/d9eaba09-d66e-487d-9974-8980bc0a838e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HYLX8fqXEbN3Nn7+5kDCagbbzZnSoXsP+rAxbZJ4isM=","crlite_enrolled":true,"id":"53f85a16-b4c6-49b5-b7ae-79f9a96b81be","last_modified":1562108431124},{"schema":1562108429620,"derHash":"d9bCr1p7hvY9mRjIdTN3nyrwjTXPoU2kk4yAP1PeGKE=","subject":"CN=SwissSign Personal Gold CA 2014 - G22,O=SwissSign AG,C=CH","subjectDN":"MFQxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxLjAsBgNVBAMTJVN3aXNzU2lnbiBQZXJzb25hbCBHb2xkIENBIDIwMTQgLSBHMjI=","whitelist":f
alse,"attachment":{"hash":"37ef04fb6f6156e237c6f04ae3b383028744a07d5a6a4197c49d3411c82108f0","size":2389,"filename":"l5kY-a2-qCNGMn7LXb_lGEENF-dZOLccQOZBKr40wVE=.pem","location":"security-state-staging/intermediates/6a316d67-95bd-4ab5-aef3-82bd300391d7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"l5kY+a2+qCNGMn7LXb/lGEENF+dZOLccQOZBKr40wVE=","crlite_enrolled":true,"id":"26a70827-d9ed-46cc-8952-77eb4121605e","last_modified":1562108430373},{"schema":1562108428868,"derHash":"CzOSEtfP8XosWeNWabWOdzUBM3UKeNqUBHcO3UcN73Y=","subject":"CN=GlobalSign Organization Validation CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzI=","whitelist":false,"attachment":{"hash":"0e6fef16a9dfd3b1fc541bf1ed445460dda807a212171958df2ea10863a94d13","size":1581,"filename":"IQBnNBEiFuhj-8x6X8XLgh01V9Ic5_V3IRQLNFFc7v4=.pem","location":"security-state-staging/in
termediates/c31bd046-861b-47b4-b83f-7da8f65eb61e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IQBnNBEiFuhj+8x6X8XLgh01V9Ic5/V3IRQLNFFc7v4=","crlite_enrolled":true,"id":"065d9c56-c2d7-42eb-8986-f6e198626d65","last_modified":1562108429611},{"schema":1562108428107,"derHash":"xhkwd8YYnR37v4E7h9x8vwSYrPcniHvH7FQyCQbem8g=","subject":"CN=Deutsche Telekom AG Issuing CA 01,OU=Trust Center,O=Deutsche Telekom AG,C=DE","subjectDN":"MG4xCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNEZXV0c2NoZSBUZWxla29tIEFHMRUwEwYDVQQLDAxUcnVzdCBDZW50ZXIxKjAoBgNVBAMMIURldXRzY2hlIFRlbGVrb20gQUcgSXNzdWluZyBDQSAwMQ==","whitelist":false,"attachment":{"hash":"42323bfb5127113b4438824fb58d3af80732c28856150ce28e9ba8a079d9df2d","size":2333,"filename":"6FKZ0XUSLykGJ_GTHFYeoN0IGYULT_v-FT0CIQgo_9k=.pem","location":"security-state-staging/intermediates/eb470e98-5598-4d83-8575-ea122484a072.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6FKZ0XUSLykGJ/GTHFYeoN0IGYULT/v+FT0CIQgo/9k=","crlite_enrolled":false,"id":"3aa58b0f-f
271-443e-b359-6c266dbd9ca7","last_modified":1562108428860},{"schema":1562108427352,"derHash":"FfrEJaqEQEs2L6NInrZ9BV1donb4aFxNaY2hgw1CDw8=","subject":"CN=COMODO RSA Client Authentication and Secure Email CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGXMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE9MDsGA1UEAxM0Q09NT0RPIFJTQSBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIFNlY3VyZSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"6d952d782fa2f84e580c545480b40eeae3fab20a3eba7b734b158271c48b1117","size":2105,"filename":"mHI0vDHAQ12vglM3cO2DlsvGPmhqena8_DpLQz3BaYs=.pem","location":"security-state-staging/intermediates/df4e2dce-92b3-41f1-8479-4de071dddbfe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mHI0vDHAQ12vglM3cO2DlsvGPmhqena8/DpLQz3BaYs=","crlite_enrolled":true,"id":"e9149e45-f71f-4714-887f-be55784c958e","last_modified":1562108428099},{"schema":1562108425846,"derHash":"qbrrbzgU
tMNDENqE3tOsOC2gErhNIH1KObFnHPWB9ME=","subject":"CN=Gehirn Managed Certification Authority - RSA Digital ID,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIGKMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMUAwPgYDVQQDEzdHZWhpcm4gTWFuYWdlZCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIFJTQSBEaWdpdGFsIElE","whitelist":false,"attachment":{"hash":"9d3dd522c6781ec5c3a2a5d0e4fe04233096cafc6063899f7128d1dba3ae9a00","size":2158,"filename":"UbDxt_jWD-1wTemqPnXtZYGyWnVxg1DGdCspV6DLqOI=.pem","location":"security-state-staging/intermediates/d473bf66-6ea1-4118-ab26-b32ab412136a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UbDxt/jWD+1wTemqPnXtZYGyWnVxg1DGdCspV6DLqOI=","crlite_enrolled":false,"id":"52cca6b4-44db-46a4-a159-3fb79dc4e263","last_modified":1562108426596},{"schema":1562108425078,"derHash":"NFcQZ1JAAhKQOjVFyjsu84SkVpcr2VHY2EDBsKN576E=","subject":"CN=Sectigo ECC Organization Validation Secure Server CA,O=Sectigo Limited,L=Salford,S
T=Greater Manchester,C=GB","subjectDN":"MIGVMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxPTA7BgNVBAMTNFNlY3RpZ28gRUNDIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"5b59d79497cc46bd9ade87bc119d6b5080a06bda160f1f1455a641a59af50c9d","size":1337,"filename":"NodEgLRdUtj_Cm5LdQFzr6BIONhbXlzcV7NAqMo879U=.pem","location":"security-state-staging/intermediates/81767626-1716-426f-855f-3a063a5ec84a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NodEgLRdUtj/Cm5LdQFzr6BIONhbXlzcV7NAqMo879U=","crlite_enrolled":true,"id":"5ce2d1bd-9d4d-4ded-b4fb-dfd347048cf8","last_modified":1562108425838},{"schema":1562108423559,"derHash":"kemNCUfBJUlOqvKjjQh74Hga8g2KFO6MOf7NxILPX4I=","subject":"CN=JCAN Public CA1 - G3,OU=JCAN Public CA1 - G3,O=JIPDEC,C=JP","subjectDN":"MFwxCzAJBgNVBAYTAkpQMQ8wDQYDVQQKEwZKSVBERUMxHTAbBgNVBAsTFEpDQU4gUHVibGljIENBMSAtIEczMR0wGwYDVQQDExRKQ0FOIFB1YmxpYyBDQ
TEgLSBHMw==","whitelist":false,"attachment":{"hash":"8715c938f66a00c894f04f3ef621c7b599a8b2e13eb998f7287d00d756bc284b","size":1618,"filename":"9VucP103hsLA3O6-YdMs0Xb-Ebf2eG--F7ZVgCe-B7w=.pem","location":"security-state-staging/intermediates/fc3bc551-be4c-4643-b4a8-9c47defcf8e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9VucP103hsLA3O6+YdMs0Xb+Ebf2eG++F7ZVgCe+B7w=","crlite_enrolled":false,"id":"40053026-a20d-4902-a676-37e6280f263b","last_modified":1562108424314},{"schema":1562108422021,"derHash":"6GX1g6kozLanKGuU55IO4fSZjAMLQ4aJ6Vg7zNasUmE=","subject":"CN=Symantec SAS EV Code Signing CA,O=Symantec Corporation,C=US","subjectDN":"MFYxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfU3ltYW50ZWMgU0FTIEVWIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"337db3cb21f94b91820cbcc8f642633962faa317942d17c576ac1c2794189bff","size":1585,"filename":"ZxpdBOLTJS_kzdVgZXygrgtlyU-prl3vrT0h-s-62rw=.pem","location":"security-state-staging/intermediat
es/a306f3fa-06db-436a-a5c4-9e567203cfa7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZxpdBOLTJS/kzdVgZXygrgtlyU+prl3vrT0h+s+62rw=","crlite_enrolled":false,"id":"1570212f-0a9d-4cdc-8dc3-23b95d91c327","last_modified":1562108422770},{"schema":1562108420475,"derHash":"E8a3OVvGT8Bs7yzlP2bUuYAMUs2IFu43Uy86skuBZcw=","subject":"CN=K Software Certificate Authority (DV) 2,O=K Software,L=Ashland,ST=KY,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJLWTEQMA4GA1UEBxMHQXNobGFuZDETMBEGA1UEChMKSyBTb2Z0d2FyZTEwMC4GA1UEAxMnSyBTb2Z0d2FyZSBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgKERWKSAy","whitelist":false,"attachment":{"hash":"b5bebedbc80eec959a6861be597ae614a1b9569ca5c08388b478dd281dd1e7a7","size":2138,"filename":"fL2WqC2l5uf2-UsREkC4vpvX1l1w6N47XmmbDTOPHoM=.pem","location":"security-state-staging/intermediates/6f39f731-4c07-4245-b48d-2f223af99539.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fL2WqC2l5uf2+UsREkC4vpvX1l1w6N47XmmbDTOPHoM=","crlite_enrolled":true,"id":"02bd1d38-93b5-4067
-ba88-0ff77d58e2b1","last_modified":1562108421264},{"schema":1562108419697,"derHash":"F06drmVEoHySXOrjoACgPJJUJpOlVcH8nmC5js06wX4=","subject":"SERIALNUMBER=201912,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTEy","whitelist":false,"attachment":{"hash":"5b8b8402870a642d23670d933707eb7f84aa868a1d4eefc7cf0662245aa3ad21","size":2333,"filename":"xNZ3P4W2umfy0BWer-9Vg-Vb0i62qHEzfsjbZ50ayLs=.pem","location":"security-state-staging/intermediates/2d27de25-cdcc-4a6f-a95e-0256cdc2d762.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xNZ3P4W2umfy0BWer+9Vg+Vb0i62qHEzfsjbZ50ayLs=","crlite_enrolled":false,"id":"2613d4d8-6244-44f1-908d-c456ecf17c6e","last_modified":1562108420466},{"schema":1562108418936,"derHash":"zHI8pITxsETH1CotSfFz93pUdi5d3qRM5HtTHwSPMzo=","subject":"SERIALNUMBER=201816,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE
","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODE2","whitelist":false,"attachment":{"hash":"a44d57c6928b5d6fe4358c55101521dde08dec3196b3e455157ab3064e29e159","size":2333,"filename":"iZcoQqVY1Shs4RFS4buBmKFfplxRq_qotaDZ_dizH5s=.pem","location":"security-state-staging/intermediates/e402cac3-292a-4520-a48d-abe845e4e403.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iZcoQqVY1Shs4RFS4buBmKFfplxRq/qotaDZ/dizH5s=","crlite_enrolled":false,"id":"9db6356b-6c7b-4d8b-b48e-4766d60776cd","last_modified":1562108419689},{"schema":1562108418187,"derHash":"QRRL1BdMMVLhylJvd9n5zonevE66bHePgVwhFktRAdM=","subject":"CN=WISeKey CertifyID Advanced Services CA 4,OU=Copyright (c) 2016 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGSMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEmMCQGA1UECxMdQ29weXJpZ2h0IChjKSAyMDE2IFdJU2VLZXkgU0ExFjAUBgNVBAsTDUludGVybmF0aW9uYWwxMTAvBgNVBAMTKFdJU2VLZXkgQ2VydG
lmeUlEIEFkdmFuY2VkIFNlcnZpY2VzIENBIDQ=","whitelist":false,"attachment":{"hash":"95344e4cd8faaef89e2c2b2a1e95b7a3f7cb66fe9f8125d2ad51a3eebb0fd966","size":1865,"filename":"czPh4iiE8c9phL0gdQlH3pi0J03JPqAzh4UnwUPK_Ho=.pem","location":"security-state-staging/intermediates/47311600-cf24-4f24-a91a-b0372535414e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"czPh4iiE8c9phL0gdQlH3pi0J03JPqAzh4UnwUPK/Ho=","crlite_enrolled":true,"id":"1d7c7208-5af5-41ba-bdf5-ba68ae6bfe91","last_modified":1562108418928},{"schema":1562108416654,"derHash":"nkNiqRiokAmHfHuLGQ52OuASrUfBzKX8zxZvwJK8Kt4=","subject":"CN=NETLOCK Trust Qualified QSCD CA,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"MGExCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMSgwJgYDVQQDDB9ORVRMT0NLIFRydXN0IFF1YWxpZmllZCBRU0NEIENB","whitelist":false,"attachment":{"hash":"a9db5eb17262cb517f68c8b87a2d5cdf87701cef4f06e04fc0682b56add2277d","size":2081,"filename":"olqhNjTm2Sp9m1ZCWJdK_014dkyXVLKhU2hA03JqJDI=.pem","loca
tion":"security-state-staging/intermediates/e8f32acc-3396-4ecf-80ac-5467edd7dc61.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"olqhNjTm2Sp9m1ZCWJdK/014dkyXVLKhU2hA03JqJDI=","crlite_enrolled":false,"id":"2a3597e8-9e52-40c9-8dcc-bdcde662da91","last_modified":1562108417422},{"schema":1562108415879,"derHash":"zHJT696ffpLLope1ut7Rsi5c6spSXiAbTcQQ9PNQS14=","subject":"CN=CFCA EV OCA,O=China Financial Certification Authority,C=CN","subjectDN":"MFUxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdDaGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFDASBgNVBAMMC0NGQ0EgRVYgT0NB","whitelist":false,"attachment":{"hash":"74214137d4d8e9fcca062824947ddab76b72e3385e4e90362d532dea748a76cf","size":1898,"filename":"Ub-bKk6h-qrzcElkX07080gHiz8CDNkXagA7GJtPu0I=.pem","location":"security-state-staging/intermediates/7b653369-09f2-4882-9c83-209a35b305e5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ub+bKk6h+qrzcElkX07080gHiz8CDNkXagA7GJtPu0I=","crlite_enrolled":true,"id":"2f50d8ff-d71a-4851-afa7-4fb7a4e1
4792","last_modified":1562108416646},{"schema":1562108414362,"derHash":"3VusTxu1NWrpjT8MjiTFnfhBmaVvePHBYRlqrXAoMJQ=","subject":"CN=HARICA Qualified Legal Entities ECC SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGbMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTE1MDMGA1UEAwwsSEFSSUNBIFF1YWxpZmllZCBMZWdhbCBFbnRpdGllcyBFQ0MgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"a4cd0b48e010309b799dbe232f333f24ec85e074e6fd8da5a72edd0e25b44499","size":1414,"filename":"gEkeI7w_XC0tO__4tVBt-LIgmfNb_WGyHCLBVLOc6dM=.pem","location":"security-state-staging/intermediates/1a8c88f8-0214-411b-ba36-7189845bcd0d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gEkeI7w/XC0tO//4tVBt+LIgmfNb/WGyHCLBVLOc6dM=","crlite_enrolled":false,"id":"c6f7214a-3948-4a66-9853-a1cd614541b8","last_modified":1562108415116},{"schema":1562108410570,"derHash":"YHXaXOzRXWWExV
YDItXAn8IZnlLep5IdkQQKp1JIZy4=","subject":"CN=NCC Group Secure Server CA G2,O=NCC Group,C=US","subjectDN":"MEkxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlOQ0MgR3JvdXAxJjAkBgNVBAMTHU5DQyBHcm91cCBTZWN1cmUgU2VydmVyIENBIEcy","whitelist":false,"attachment":{"hash":"f12f3260268153b74fe5f7a70e593d2e60ab8a06d81aedc45bbc58dfba23d7b3","size":1593,"filename":"I00VnH3kFOOpwcnmh-WRlnA_EFwJgSkqGVgxV5O2veg=.pem","location":"security-state-staging/intermediates/8e1d6726-9296-4299-8659-1eaa656eb71c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"I00VnH3kFOOpwcnmh+WRlnA/EFwJgSkqGVgxV5O2veg=","crlite_enrolled":true,"id":"9690b65c-a95f-41d0-b2fb-794178af9721","last_modified":1562108411311},{"schema":1562108409064,"derHash":"JBE2Mn3ArshJc9H6my0NwCd5cDeuPtZUVk47hfx9siE=","subject":"CN=AffirmTrust Commercial Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=AffirmTrust,C=US","subjectDN":"MIGKMQswCQYDVQQGEwJVUzEUMBIGA1UECgwLQWZmaXJtVHJ1c3QxLTArBgNVBAsMJGh0dHA6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291
cmNlczE2MDQGA1UEAwwtQWZmaXJtVHJ1c3QgQ29tbWVyY2lhbCBFeHRlbmRlZCBWYWxpZGF0aW9uIENB","whitelist":false,"attachment":{"hash":"3d38da18b7f343201573fda5c10ce7e844328f110190ddaa3e93682e93c4f324","size":1581,"filename":"cP3S-p60iPGa8-tLw-iQ2NE3CAx2vu0EeyZs6EXiCyo=.pem","location":"security-state-staging/intermediates/e3f6fafa-7ce4-4548-9824-9e111896a9f0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cP3S+p60iPGa8+tLw+iQ2NE3CAx2vu0EeyZs6EXiCyo=","crlite_enrolled":false,"id":"c5710470-cd77-44c2-83de-2a5580439c6a","last_modified":1562108409809},{"schema":1562108407555,"derHash":"TLXLcF1JUkl7TtfEaoVk6lyRNyefOMhre8qOiIOGiwk=","subject":"CN=Atos TrustedRoot Client-CA 2012,O=Atos,C=DE","subjectDN":"MEYxKDAmBgNVBAMMH0F0b3MgVHJ1c3RlZFJvb3QgQ2xpZW50LUNBIDIwMTIxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"237c2a98d0510ae3a9b74e7c36f58c7ec853417862f70d9eb1c558c23bcff6d9","size":1544,"filename":"QmoGZPrbEdG8ih-gUVH1279QqNMzEBlTyT6SsmZm4wo=.pem","location":"secur
ity-state-staging/intermediates/33f056bb-fc6e-4125-8eda-19f374d949e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QmoGZPrbEdG8ih+gUVH1279QqNMzEBlTyT6SsmZm4wo=","crlite_enrolled":false,"id":"44de3fa2-feb4-4729-b8cc-b010e83aeb80","last_modified":1562108408307},{"schema":1562108406771,"derHash":"YrSPUeWGhnb9ebndnbmLqShJS6c0QDxYM5PELOAK1Eg=","subject":"CN=Valid Certificadora Digital SSL DV CA 2018,OU=VALID SSL DV,O=VALID CERTIFICADORA DIGITAL,L=S\u00c3O PAULO,ST=S\u00c3O PAULO,C=BR","subjectDN":"MIGpMQswCQYDVQQGEwJCUjETMBEGA1UECAwKU8ODTyBQQVVMTzETMBEGA1UEBwwKU8ODTyBQQVVMTzEVMBMGA1UECxMMVkFMSUQgU1NMIERWMSQwIgYDVQQKExtWQUxJRCBDRVJUSUZJQ0FET1JBIERJR0lUQUwxMzAxBgNVBAMTKlZhbGlkIENlcnRpZmljYWRvcmEgRGlnaXRhbCBTU0wgRFYgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"de35a9e8e654d603d0f474837e0d281de2ee85cb77fc4e646d172e507ed6d447","size":1886,"filename":"2UPUODmQxMZsvFIsK7JgdFSPY-kZ_qKP-7aXPh1_bx8=.pem","location":"security-state-staging/intermediates/f3d5b520-757c-47d4-ad47-ad
1a07b45316.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2UPUODmQxMZsvFIsK7JgdFSPY+kZ/qKP+7aXPh1/bx8=","crlite_enrolled":true,"id":"bee64529-5dc9-4da4-a777-437f3b51e31b","last_modified":1562108407547},{"schema":1562108404463,"derHash":"uITtZSdDNodifTUVfpBGkNLf9qXc084me7rxWcBvUFQ=","subject":"CN=Qualified e-Szigno CA 2009,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MH4xCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEjMCEGA1UEAwwaUXVhbGlmaWVkIGUtU3ppZ25vIENBIDIwMDkxHzAdBgkqhkiG9w0BCQEWEGluZm9AZS1zemlnbm8uaHU=","whitelist":false,"attachment":{"hash":"bf48fc2c3b14d73b262a97912ba1131615bfc904ad5308aa6b2e6cf791f65740","size":1756,"filename":"Z91mM3fIfALcmTPBS54fQeHpI3uGuUg9kgkk7DDv-Fc=.pem","location":"security-state-staging/intermediates/177a6f68-3005-4b93-8a1d-b32344504ae0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z91mM3fIfALcmTPBS54fQeHpI3uGuUg9kgkk7DDv+Fc=","crlite_enrolled":false,"id":"88820ee2-60db-4e83-807f-ac34e6f6689a","last_mo
dified":1562108405220},{"schema":1562108402917,"derHash":"pfL9DWbbTdd6KRTtPHR8vZfnNM9OK28hf7QapOr96tI=","subject":"CN=NetLock Min\u0151s\u00edtett Eat. Spec. (Class Q Legal Spec.) Kiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIG3MQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTFFMEMGA1UEAww8TmV0TG9jayBNaW7FkXPDrXRldHQgRWF0LiBTcGVjLiAoQ2xhc3MgUSBMZWdhbCBTcGVjLikgS2lhZMOz","whitelist":false,"attachment":{"hash":"960b0e99960f66aedab8032a321d21b1ee47b83c0bf8a84a35997f846a5cb818","size":2203,"filename":"ZFsXBjpAqEkgk5r4JAL_ikmxkDiIWah9rrr4UEJ-IYE=.pem","location":"security-state-staging/intermediates/f4f080e9-09db-4a3b-b6ca-670808743e87.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZFsXBjpAqEkgk5r4JAL/ikmxkDiIWah9rrr4UEJ+IYE=","crlite_enrolled":false,"id":"b99f664a-470e-47f9-8280-2596d76a8af8","last_mod
ified":1562108403692},{"schema":1562108402151,"derHash":"Gu3a3cHtdIVD6vWWDflq1R4hoxZPMKBkDLBzI2XTkGI=","subject":"CN=DigiCert Direct Non-Provider CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKDAmBgNVBAMTH0RpZ2lDZXJ0IERpcmVjdCBOb24tUHJvdmlkZXIgQ0E=","whitelist":false,"attachment":{"hash":"d70798a706e24279bc01aec7ee38e8a6f268c696909fd27a60301559bd6cac7c","size":2028,"filename":"P-Xat14QLgbjUjCT7mpCpRhoSz0DbCWgcxqMJ-N0cF4=.pem","location":"security-state-staging/intermediates/bda76267-a787-4598-8441-1baec31cfa9e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"P+Xat14QLgbjUjCT7mpCpRhoSz0DbCWgcxqMJ+N0cF4=","crlite_enrolled":false,"id":"baa93922-a81d-4284-9799-aba68348f2b1","last_modified":1562108402909},{"schema":1562108399777,"derHash":"D2ctkqCwbO6UjwOyclAmAsbjfSoq1pSjHV3jExlukoI=","subject":"CN=Certum Digital Identification CA SHA2,OU=Certum Certification Authority,O=Unizeto Tech
nologies S.A.,C=PL","subjectDN":"MIGKMQswCQYDVQQGEwJQTDEiMCAGA1UECgwZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECwweQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQDDCVDZXJ0dW0gRGlnaXRhbCBJZGVudGlmaWNhdGlvbiBDQSBTSEEy","whitelist":false,"attachment":{"hash":"dba1fd363ac38cad212628cf7ec587f5e6478eb1b348d0b671e2f4ecad1116ce","size":1731,"filename":"QdcqIv2OPNsD75w32d9tMDyai2-ClzSRt_49i0WYwbU=.pem","location":"security-state-staging/intermediates/a1b2a835-7618-44f6-a32a-dbdc1ae40941.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QdcqIv2OPNsD75w32d9tMDyai2+ClzSRt/49i0WYwbU=","crlite_enrolled":true,"id":"8110be87-231b-42a7-80a7-db15071d3b5a","last_modified":1562108400573},{"schema":1562108396760,"derHash":"OFE1qxjdGQoDvMBgGspvg86jZmQnkevgov2wWcL3dQo=","subject":"CN=Valid Certificadora Digital AlphaSSL CA 2018,OU=VALID AlphaSSL,O=VALID CERTIFICADORA DIGITAL,L=S\u00c3O PAULO,ST=S\u00c3O PAULO,C=BR","subjectDN":"MIGtMQswCQYDVQQGEwJCUjETMBEGA1UECAwKU8ODTyBQQVVMTzETMBEGA1UEBwwKU8
ODTyBQQVVMTzEXMBUGA1UECxMOVkFMSUQgQWxwaGFTU0wxJDAiBgNVBAoTG1ZBTElEIENFUlRJRklDQURPUkEgRElHSVRBTDE1MDMGA1UEAxMsVmFsaWQgQ2VydGlmaWNhZG9yYSBEaWdpdGFsIEFscGhhU1NMIENBIDIwMTg=","whitelist":false,"attachment":{"hash":"1d845c0c12f1aa29e304d16f0a848dd922bec000e52dd07fd07e93aa887204fb","size":1894,"filename":"sXlIJeJFOOvNqrgfAHM5544oX_ySPnrWUt8M7eFF0BM=.pem","location":"security-state-staging/intermediates/ddbf549d-2f5c-4a1f-838b-8b58934c19ed.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sXlIJeJFOOvNqrgfAHM5544oX/ySPnrWUt8M7eFF0BM=","crlite_enrolled":true,"id":"1b4a7649-9862-4267-8efa-0fe6bf75a335","last_modified":1562108397499},{"schema":1562108393006,"derHash":"WUXcU0sLHzdzXVrtTrXWZBcvKFruYKnnsYJFqg4RmPY=","subject":"CN=FujiSSL SHA2 Domain Secure Site CA,O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN":"MHUxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzETMBEGA1UEBxMKU2hpYnV5YS1rdTEUMBIGA1UEChMLTmlqaW1vIEsuSy4xKzApBgNVBAMTIkZ1amlTU0wgU0hBMiBEb21haW4gU2VjdXJlIFNpdGUgQ0E=","whitelist":
false,"attachment":{"hash":"e26de9b3dc4701004f0c895f5950b7c3b99233b7974b7618e6c960f0736fd2ed","size":2138,"filename":"vaPiW3esM9sfzdxIpWhz2dO053le6lZAjqtv-y_vZN8=.pem","location":"security-state-staging/intermediates/c8cb6374-215c-4f0c-bd04-6477b7579404.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vaPiW3esM9sfzdxIpWhz2dO053le6lZAjqtv+y/vZN8=","crlite_enrolled":false,"id":"16682234-e483-4e72-9b5a-9a6efd36c796","last_modified":1562108393755},{"schema":1562108391480,"derHash":"ThB8mBtCrL5BwBBn4W1E22SBTUGT5XIxfqBLh8ecR18=","subject":"CN=Microsoft IT TLS CA 2,OU=Microsoft IT,O=Microsoft Corporation,L=Redmond,ST=Washington,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMRUwEwYDVQQLEwxNaWNyb3NvZnQgSVQxHjAcBgNVBAMTFU1pY3Jvc29mdCBJVCBUTFMgQ0EgMg==","whitelist":false,"attachment":{"hash":"fa0452ec65893af4305ad26caace601ac42397ffc2e9e076caf9a35747718fb4","size":2036,"filename":"wBdPad95AU7OgLRs0F
U_E6ILO1MSCM84kJ9y0H-TT7s=.pem","location":"security-state-staging/intermediates/c642cb8e-2b2e-4332-a8a6-2d5d2c3b16d7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wBdPad95AU7OgLRs0FU/E6ILO1MSCM84kJ9y0H+TT7s=","crlite_enrolled":true,"id":"e5c4430f-8a00-49dd-acc5-6d71f306197e","last_modified":1562108392249},{"schema":1562108389969,"derHash":"yeQPToM5bzSnyGGBe07as9wfi6xpn9UMsmH6kSPVXvQ=","subject":"CN=SwissSign Personal Silver CA 2014 - G22,O=SwissSign AG,C=CH","subjectDN":"MFYxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxMDAuBgNVBAMTJ1N3aXNzU2lnbiBQZXJzb25hbCBTaWx2ZXIgQ0EgMjAxNCAtIEcyMg==","whitelist":false,"attachment":{"hash":"8b3dff1c600553b50452dcbd5783cbfaa219a177d66705c2de0f41eb51b439a5","size":2398,"filename":"m0Mz3XVaph4DGN-UfcVV7i83DtSCwW0evxwDvZf_j18=.pem","location":"security-state-staging/intermediates/2b6e11e8-fc81-45eb-9865-4123414df1e4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m0Mz3XVaph4DGN+UfcVV7i83DtSCwW0evxwDvZf/j18=","crlite_enrolled":tr
ue,"id":"59ced421-04b9-4022-85c6-56f10093da01","last_modified":1562108390730},{"schema":1562108387700,"derHash":"O7dLHmfyh2k2ivEdxJmzH04EWaeG87DYSbautZ0JJAI=","subject":"CN=SSLs.com ECC OV Secure Server CA,O=SSLs.com,L=Phoenix,ST=Arizona,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRAwDgYDVQQHEwdQaG9lbml4MREwDwYDVQQKEwhTU0xzLmNvbTEpMCcGA1UEAxMgU1NMcy5jb20gRUNDIE9WIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"4939e1795fca3391bc0db9bc8f5811b9b0e674f81acfea9231d664951a81cb88","size":1293,"filename":"8OVFe7aea8Jz58DI1YaYq0kntK7F4fquqS_LHwOMg5o=.pem","location":"security-state-staging/intermediates/495221d4-c8f4-46e1-af68-9c7206d5a087.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8OVFe7aea8Jz58DI1YaYq0kntK7F4fquqS/LHwOMg5o=","crlite_enrolled":false,"id":"e7f1ddc8-069b-4e0c-bc6d-e01d625d6a08","last_modified":1562108388457},{"schema":1562108386186,"derHash":"wwglzEhNigQOU88UmxrJfd23UxuquaApSZVd0ZOpI00=","subject":"CN=MilleniumSign Client Cer
tificate CA RSA,O=MilleniumSign Limited,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGJMQswCQYDVQQGEwJNVTEYMBYGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTAwLgYDVQQDDCdNaWxsZW5pdW1TaWduIENsaWVudCBDZXJ0aWZpY2F0ZSBDQSBSU0E=","whitelist":false,"attachment":{"hash":"a54a84bb2453ebc048576af4fc423e61caeb9cdcd2fda841b2f06fa4c827ce22","size":2576,"filename":"hOFjGAY71ZLu8PPt7a2bECwp5eQ64MVhmY-YMuRoz9g=.pem","location":"security-state-staging/intermediates/16d6a3de-3853-4c67-bfb2-b55faf4ac55d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hOFjGAY71ZLu8PPt7a2bECwp5eQ64MVhmY+YMuRoz9g=","crlite_enrolled":false,"id":"b5e87096-07f0-434a-a474-cca6d773c227","last_modified":1562108386929},{"schema":1562108385424,"derHash":"LYGa85fiidxBcJxKr22jsZBHScN6mVhgdFgDcW19VpA=","subject":"CN=Greek Federation of Judicial Officers Client SubCA R1,O=Greek Federation of Judicial Officers,L=Athens,C=GR","subjectDN":"MIGOMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQ
XRoZW5zMS4wLAYDVQQKDCVHcmVlayBGZWRlcmF0aW9uIG9mIEp1ZGljaWFsIE9mZmljZXJzMT4wPAYDVQQDDDVHcmVlayBGZWRlcmF0aW9uIG9mIEp1ZGljaWFsIE9mZmljZXJzIENsaWVudCBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"0906c63c05fc31a8f79768dd10295ea5c4df3a910c3c3f60bacd569952f373aa","size":2653,"filename":"sUxJeFBsILOAdDVzCbynXcS6cAmOTI2zpF9_nG1gGVA=.pem","location":"security-state-staging/intermediates/ffb8f4dd-ad63-4ca3-a907-f70c1586c828.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sUxJeFBsILOAdDVzCbynXcS6cAmOTI2zpF9/nG1gGVA=","crlite_enrolled":false,"id":"6d3f8d5a-8bd5-4e16-a08b-1dd8bcf34dee","last_modified":1562108386178},{"schema":1562108383131,"derHash":"wG4wf3z8HTL6cqTAM8h7kAGa8hbwd11kl4ouymyKIw4=","subject":"CN=GeoTrust TLS RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHzAdBgNVBAMTFkdlb1RydXN0IFRMUyBSU0EgQ0EgRzE=","whitelist":false,"attachment":{"hash":"79eaef52d1cceae208d6f4e
81408cb6e81bd7358789d8d112f8acbab4bbf4f9c","size":1638,"filename":"SDG5orEv8iX6MNenIAxa8nQFNpROB_6-llsZdXHZNqs=.pem","location":"security-state-staging/intermediates/bbd8d31a-289d-443b-8947-9b039ab58447.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SDG5orEv8iX6MNenIAxa8nQFNpROB/6+llsZdXHZNqs=","crlite_enrolled":true,"id":"7c77748b-8cf1-488f-82d1-6b8f1e0d0a79","last_modified":1562108383872},{"schema":1562108376267,"derHash":"gi49jOlkYrTRnLaqwvzW0BvIAvknqYgBvuQaYAar2wg=","subject":"CN=MilleniumSign for Code Signing,O=MilleniumSign Limited,C=MU","subjectDN":"MFYxCzAJBgNVBAYTAk1VMR4wHAYDVQQKDBVNaWxsZW5pdW1TaWduIExpbWl0ZWQxJzAlBgNVBAMMHk1pbGxlbml1bVNpZ24gZm9yIENvZGUgU2lnbmluZw==","whitelist":false,"attachment":{"hash":"0e4a98b456f055fcf5a701286182d62ceff18ce1934e29b1deadf3935437f5e0","size":2410,"filename":"qlXmtrIuqV9vnNsJSci6M_sJhZlMGXPnHJYHEN04TTk=.pem","location":"security-state-staging/intermediates/63c67f55-7a99-421c-b700-926ab61fe6a0.pem","mimetype":"application/x-pem-fi
le"},"pubKeyHash":"qlXmtrIuqV9vnNsJSci6M/sJhZlMGXPnHJYHEN04TTk=","crlite_enrolled":false,"id":"9d070cd0-86dd-4c32-85c2-3a3f935d9318","last_modified":1562108377012},{"schema":1562108373975,"derHash":"DXcmr9BKeUiHGS2L5nVUxnqWJrZ8aYlrarFNk7b1IIY=","subject":"SERIALNUMBER=201813,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODEz","whitelist":false,"attachment":{"hash":"25d4248de319a28014ec0cf686ef1ddc39672abf62dc8c4f119a8b5b211c5176","size":2333,"filename":"gROmlz_cKoI7EYRQWxyKlftDUTbm3X5KMEAtOpzPXcU=.pem","location":"security-state-staging/intermediates/b5542973-393c-4d34-aecf-bc7d0c94f780.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gROmlz/cKoI7EYRQWxyKlftDUTbm3X5KMEAtOpzPXcU=","crlite_enrolled":false,"id":"65a12163-eb84-4ce9-b597-ed03a1cda6e8","last_modified":1562108374721},{"schema":1562108373221,"derHash":"zXQZjUwj5HAd6le
YkjIbnk9HoIvYN0cQuJmq0UlaSzU=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - INFRAESTRUCTURA,OU=Security Services,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGNMQswCQYDVQQGEwJFUzEeMBwGA1UECgwVRmlybWFwcm9mZXNpb25hbCBTLkEuMRowGAYDVQQLDBFTZWN1cml0eSBTZXJ2aWNlczESMBAGA1UEBRMJQTYyNjM0MDY4MS4wLAYDVQQDDCVBQyBGaXJtYXByb2Zlc2lvbmFsIC0gSU5GUkFFU1RSVUNUVVJB","whitelist":false,"attachment":{"hash":"8f2caf097fcff03e0699cc947be66db51b738d2ae4d9481b13fef2c166fac062","size":2487,"filename":"bB8VW561_UmK2rypmzhiK744upv6JxAcWmqJ9U-BKSI=.pem","location":"security-state-staging/intermediates/1cf6f683-a938-4991-9e52-8f8c6761d4a5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bB8VW561/UmK2rypmzhiK744upv6JxAcWmqJ9U+BKSI=","crlite_enrolled":true,"id":"9e8d85f9-dacd-4a25-bb9f-968c95b025bb","last_modified":1562108373967},{"schema":1562108370940,"derHash":"BhmQXJLK7Il4jbVXqxd7CkzVBTHj7Vfyc3C37I2sG1o=","subject":"CN=CEDEFOP CA R1,O=Hellenic Academic and Research Institutions Cert. Author
ity,C=GR","subjectDN":"MGsxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEWMBQGA1UEAxMNQ0VERUZPUCBDQSBSMQ==","whitelist":false,"attachment":{"hash":"595d6d2bf45a14ddc1ffd60f66b695249fe00d29fb53b62b1e1bcc2e0a9331d6","size":2853,"filename":"YuB-mSHGYquM5m3YPwjXfls_-AzEjXJZ5KYgzqCxIhA=.pem","location":"security-state-staging/intermediates/ba1f239b-a655-4016-97f1-a4013595e819.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YuB+mSHGYquM5m3YPwjXfls/+AzEjXJZ5KYgzqCxIhA=","crlite_enrolled":true,"id":"17daabb6-2075-4349-9159-d5089bab2f15","last_modified":1562108371712},{"schema":1562108369419,"derHash":"50ZE9Gzd7kcfz81lSMXzM9vRIspKTmfWUtWxaZ4Udnk=","subject":"SERIALNUMBER=201808,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODA4","whitelist":false,"attachment":{"hash":"5e
d7b09bd6e807a0a0a1b54c2def32df4bd844cc32727d659412c47d8d7300ee","size":2333,"filename":"bVohMFSMdT-k3psWkA0KlSPrIugikcLKV_UR1XtURGc=.pem","location":"security-state-staging/intermediates/343127c6-0767-4e2a-b078-bb03764a6aeb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bVohMFSMdT+k3psWkA0KlSPrIugikcLKV/UR1XtURGc=","crlite_enrolled":false,"id":"cfed6e41-e0df-488e-942e-aa80872d1f16","last_modified":1562108370177},{"schema":1562108368659,"derHash":"8i22V6GpKYQavKxSZxpc7op9BpWGr4XOFt4rBd2iIlI=","subject":"CN=KPN BV PKIoverheid Organisatie Services CA - G3,O=KPN B.V.,C=NL","subjectDN":"MHMxCzAJBgNVBAYTAk5MMREwDwYDVQQKDAhLUE4gQi5WLjEXMBUGA1UEYQwOTlRSTkwtMjcxMjQ3MDExODA2BgNVBAMML0tQTiBCViBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBTZXJ2aWNlcyBDQSAtIEcz","whitelist":false,"attachment":{"hash":"55c902d78023e31283d149be854a3bbbbc37c60fa0b2039ba9f502851c94e5a3","size":2658,"filename":"R1jl1Axf32rFh-a9lHscwaUbU7s51_fPXWqGaLybSy4=.pem","location":"security-state-staging/intermediates/8a71784b-c95
a-4df8-8a2d-fbb12104a39d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"R1jl1Axf32rFh+a9lHscwaUbU7s51/fPXWqGaLybSy4=","crlite_enrolled":false,"id":"373e81fd-20d6-4770-afa2-1ca53260afa4","last_modified":1562108369411},{"schema":1562108367880,"derHash":"UH22DSY9PQnSg94uOqQ139h3XlK8M1cC44Mru1fsHL0=","subject":"CN=UZI-register Zorgverlener CA G3,O=CIBG,C=NL","subjectDN":"MF8xCzAJBgNVBAYTAk5MMQ0wCwYDVQQKDARDSUJHMRcwFQYDVQRhDA5OVFJOTC01MDAwMDUzNTEoMCYGA1UEAwwfVVpJLXJlZ2lzdGVyIFpvcmd2ZXJsZW5lciBDQSBHMw==","whitelist":false,"attachment":{"hash":"075195032f66084393a80e78ea0276fb17f7871b6e35672e94580ec0b3e8eca5","size":2552,"filename":"LJbktDpUTtQFxix-TH4PidTGLrt1SGxWZUTWK8SCn9Q=.pem","location":"security-state-staging/intermediates/b35760a9-b8ff-4af3-a942-4c05ac26f0ee.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LJbktDpUTtQFxix+TH4PidTGLrt1SGxWZUTWK8SCn9Q=","crlite_enrolled":false,"id":"fcc67e61-43b8-4146-9df6-e8af510e8ca5","last_modified":1562108368651},{"schema":1562108
366331,"derHash":"R7LvvDZw59tLQfIsUfwC7oT7Lb8wgqSfLCaIEi6SEKE=","subject":"CN=emSign SSL CA - G1,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGYxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMRswGQYDVQQDExJlbVNpZ24gU1NMIENBIC0gRzE=","whitelist":false,"attachment":{"hash":"99a70855fffb043bc441083724ab6299ce68f28ce7c76547b9782e13a92d30ce","size":1622,"filename":"qvzNg6-PS7JbCFR-FL-eAfFZOiN6pXXsH1tc9auHlF8=.pem","location":"security-state-staging/intermediates/bc26b3e5-5243-4ed4-89a5-ee29b7471158.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qvzNg6+PS7JbCFR+FL+eAfFZOiN6pXXsH1tc9auHlF8=","crlite_enrolled":true,"id":"136071c8-bc0a-49f6-9eed-0f027892d327","last_modified":1562108367113},{"schema":1562108365569,"derHash":"01M7cypRim2mjvJmCF4R39EUwOsAks1DUwpE1UuRPtE=","subject":"CN=Secure Site CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MFgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsT
EHd3dy5kaWdpY2VydC5jb20xFzAVBgNVBAMTDlNlY3VyZSBTaXRlIENB","whitelist":false,"attachment":{"hash":"93b4a44bb6fe2449a59754db745e41e1157b80bf49f3c2f364ac5f13eaca7195","size":1662,"filename":"3mc_12C2pwvtV5JjfcxLmbbWYQSbj9yqSWLXKfZcMUw=.pem","location":"security-state-staging/intermediates/23ace4b9-0495-4126-8dd9-71f058704b6b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3mc/12C2pwvtV5JjfcxLmbbWYQSbj9yqSWLXKfZcMUw=","crlite_enrolled":true,"id":"3901ad61-ba32-4e7e-985a-e7e654c02bf8","last_modified":1562108366323},{"schema":1562108364782,"derHash":"odJdKJQfr8DCpuueWWpUeG5zHQpKjjIdufHPLCT91gk=","subject":"CN=Actalis Authentication CA G3,O=Actalis S.p.A./03358520967,L=Milano,ST=Milano,C=IT","subjectDN":"MHsxCzAJBgNVBAYTAklUMQ8wDQYDVQQIDAZNaWxhbm8xDzANBgNVBAcMBk1pbGFubzEjMCEGA1UECgwaQWN0YWxpcyBTLnAuQS4vMDMzNTg1MjA5NjcxJTAjBgNVBAMMHEFjdGFsaXMgQXV0aGVudGljYXRpb24gQ0EgRzM=","whitelist":false,"attachment":{"hash":"460a8caeba0a48e1b86b9aa61e29fe8358616f76304f1fbd67cb2527e77b9037","size"
:2243,"filename":"qqFYlKc1lGtPZDV3-S2Iiq7okt-fD5tWC2AM1QEBmEg=.pem","location":"security-state-staging/intermediates/8b0fb3aa-de5c-498b-ab03-3d295c24ca08.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qqFYlKc1lGtPZDV3+S2Iiq7okt+fD5tWC2AM1QEBmEg=","crlite_enrolled":true,"id":"0fdbe9d5-d2f3-4438-9a51-df510e92865a","last_modified":1562108365561},{"schema":1562108363263,"derHash":"2TUmaeKTSTKa9HRcVabBWdyXmrdFklFwoZgGaDgqy8A=","subject":"CN=Trusted Secure ECC Certificate Authority,O=Corporation Service Company,L=Wilmington,ST=DE,C=US","subjectDN":"MIGIMQswCQYDVQQGEwJVUzELMAkGA1UECBMCREUxEzARBgNVBAcTCldpbG1pbmd0b24xJDAiBgNVBAoTG0NvcnBvcmF0aW9uIFNlcnZpY2UgQ29tcGFueTExMC8GA1UEAxMoVHJ1c3RlZCBTZWN1cmUgRUNDIENlcnRpZmljYXRlIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"cfc396ec00d40088987be5a9ba74a98ac12898fa4a619448bddb134a79e30a67","size":1325,"filename":"qk3cnu1avJacTvFxrZGIIPiymx-oSzPLYsolI21B5Vc=.pem","location":"security-state-staging/intermediates/af01c122-e4e5-4b49-9
4d0-0ac4f64457b3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qk3cnu1avJacTvFxrZGIIPiymx+oSzPLYsolI21B5Vc=","crlite_enrolled":true,"id":"7a73afd8-6e01-43c6-b272-bf633048a56e","last_modified":1562108364018},{"schema":1562108362489,"derHash":"Z5dDYhTv7mfN59cDWNTYsA37941ch8YrSn55DXPde9k=","subject":"CN=DigiCert Federated ID US L4 CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJzAlBgNVBAMTHkRpZ2lDZXJ0IEZlZGVyYXRlZCBJRCBVUyBMNCBDQQ==","whitelist":false,"attachment":{"hash":"339cbbd71fc5cd220030216ee58f63f6971ca0554de6c15b8e71f2baa14c5b3f","size":1930,"filename":"B8z1mybAVZ9w8W-4h2REOU9xSFadYswGsHsY67HszP8=.pem","location":"security-state-staging/intermediates/baed048b-daf3-4094-8898-29a31f22df0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B8z1mybAVZ9w8W+4h2REOU9xSFadYswGsHsY67HszP8=","crlite_enrolled":false,"id":"3326c102-8dd1-4eb1-aa2d-5c7f1b62cb2f","last_modified":15
62108363256},{"schema":1562108360956,"derHash":"AqtX5OZ6DLSN0v80gw6KxA9EdvsIymvj9c2Eb2RoQPA=","subject":"CN=COMODO RSA Domain Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGQMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE2MDQGA1UEAxMtQ09NT0RPIFJTQSBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"39df71b20e752359b043877384440f181016fcba83909d1f0480b6b13d1238b7","size":2150,"filename":"klO23nT2ehFDXCfx3eHTDRESMz3asj1muO-4aIdjiuY=.pem","location":"security-state-staging/intermediates/e401cab5-bdc2-42ca-a7cd-4612737cdb04.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"klO23nT2ehFDXCfx3eHTDRESMz3asj1muO+4aIdjiuY=","crlite_enrolled":true,"id":"85dd2e16-bfc0-4ca0-8489-e28bc98da7e2","last_modified":1562108361731},{"schema":1562108355542,"derHash":"ufIWQyNjjc4LkiGLQ8QcGysmljiTKdsZ9c961Jtcs3I=","subject":"CN=Gandi Standar
d SSL CA 2,O=Gandi,L=Paris,ST=Paris,C=FR","subjectDN":"MF8xCzAJBgNVBAYTAkZSMQ4wDAYDVQQIEwVQYXJpczEOMAwGA1UEBxMFUGFyaXMxDjAMBgNVBAoTBUdhbmRpMSAwHgYDVQQDExdHYW5kaSBTdGFuZGFyZCBTU0wgQ0EgMg==","whitelist":false,"attachment":{"hash":"8b8a18be1cbca4662145d1b20e4f1e0f1394d7a0bcacd4d74108106348147956","size":2109,"filename":"WGJkyYjx1QMdMe0UqlyOKXtydPDVrk7sl2fV-nNm1r4=.pem","location":"security-state-staging/intermediates/63de5a2b-d709-4e92-b743-8310ba76d460.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WGJkyYjx1QMdMe0UqlyOKXtydPDVrk7sl2fV+nNm1r4=","crlite_enrolled":true,"id":"75d81643-efbd-4a64-a1d1-bc45d79dc4bc","last_modified":1562108356326},{"schema":1562108354774,"derHash":"CU94xT7F2AgrxdWq0bEdXflSvlaTM1jb9ZY1QpE6UM0=","subject":"CN=HARICA Qualified Natural Entities SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGZMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb2
5zIENlcnQuIEF1dGhvcml0eTEzMDEGA1UEAwwqSEFSSUNBIFF1YWxpZmllZCBOYXR1cmFsIEVudGl0aWVzIFN1YkNBIFIy","whitelist":false,"attachment":{"hash":"ed8b5c559e2fdf67dc679531bb2002bd0c1dcf26404c524d1707664a75852b12","size":2605,"filename":"ac0teCLoYEgCWHxksbpmW-G4cqCFgOJn4OxagiS1C-8=.pem","location":"security-state-staging/intermediates/b83579aa-a5ff-4575-adac-59e8ff66b1ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ac0teCLoYEgCWHxksbpmW+G4cqCFgOJn4OxagiS1C+8=","crlite_enrolled":false,"id":"edaf0f56-3588-493d-821d-fd24d28bc8c8","last_modified":1562108355535},{"schema":1562108354022,"derHash":"KvmI8m9u8Nq5BVaX8JQftOXEIkfKmCgmiV7ymYXTDNY=","subject":"CN=Apple Public Server ECC CA 1 - G1,O=Apple Inc.,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSowKAYDVQQDEyFBcHBsZSBQdWJsaWMgU2VydmVyIEVDQyBDQSAxIC0gRzE=","whitelist":false,"attachment":{"hash":"9965d9b518d900e8daeab6fe08b6e6227a1114bb092251f35ffa9176cc753453","size":1163,"filename":"jT8fGVx6BA9z4arxOCBTK2xfhH6Uhco7d
iQx-k5Yo38=.pem","location":"security-state-staging/intermediates/782181df-19dc-4eb7-bc29-2f853bbcd8f9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jT8fGVx6BA9z4arxOCBTK2xfhH6Uhco7diQx+k5Yo38=","crlite_enrolled":false,"id":"fdfcd022-f30c-40bf-a845-ed9f60c08730","last_modified":1562108354766},{"schema":1562108353265,"derHash":"kMZx4I5oI7hkbC7BgCN2msD8NDijPBAfZoO5XeMYBSQ=","subject":"CN=COMODO ECC Extended Validation Secure Server CA 2,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGUMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE6MDgGA1UEAxMxQ09NT0RPIEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0EgMg==","whitelist":false,"attachment":{"hash":"c9c170b80feb89e0a62d9e1bc3a6e7612dcba1cdbb90d3e362acefa08fbc39b8","size":1366,"filename":"8BVB_xN70KohDkSwXqSXWyZjE3Wl2yUIqPlb8CShV54=.pem","location":"security-state-staging/intermediates/89831d8e-226f-4cf8-8e53-94bbf49b2c8f.pem",
"mimetype":"application/x-pem-file"},"pubKeyHash":"8BVB/xN70KohDkSwXqSXWyZjE3Wl2yUIqPlb8CShV54=","crlite_enrolled":false,"id":"8544bcc4-1d96-4822-a172-bfaedf576aa9","last_modified":1562108354014},{"schema":1562108352498,"derHash":"bmzMzdeogw6iKI01dgUylUJcBfXunbS3JjKh4mnd0MM=","subject":"CN=United Parcel Service\\, Inc. RSA Codesigning CA,O=United Parcel Service\\, Inc.,L=Atlanta,ST=GA,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzELMAkGA1UECBMCR0ExEDAOBgNVBAcTB0F0bGFudGExJDAiBgNVBAoTG1VuaXRlZCBQYXJjZWwgU2VydmljZSwgSW5jLjE3MDUGA1UEAxMuVW5pdGVkIFBhcmNlbCBTZXJ2aWNlLCBJbmMuIFJTQSBDb2Rlc2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"4f65ee96ef6dbaf15ab703424d981e03c5b84da1123c789b217310553578e58a","size":2125,"filename":"RPhKvLLQGKteXTbVCCrOIPDyAFANSXGqusA4X-LA8NE=.pem","location":"security-state-staging/intermediates/5f7d9e0e-c92a-47cf-bd97-24ecd52cfb08.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RPhKvLLQGKteXTbVCCrOIPDyAFANSXGqusA4X+LA8NE=","crlite_enrolled":false,"id"
:"cf08ce37-7a22-489d-80a6-bd86c0596d6b","last_modified":1562108353258},{"schema":1562108350087,"derHash":"GFwK5HBCO51GeKfBBVtbSNkHBVBbeU4hXAY4UTNpgfQ=","subject":"CN=GeoTrust EV RSA CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0dlb1RydXN0IEVWIFJTQSBDQSAyMDE4","whitelist":false,"attachment":{"hash":"a0a4b49c90bff29d9b9a8c5f2ef42bb769f854311f7a16f1b9861161f8870867","size":1666,"filename":"yWulDX8E5Q0XG4-9jVDljmO2FvAVzIRhn2MppW4vyUM=.pem","location":"security-state-staging/intermediates/7f58a4e2-a3f0-4b3c-bce7-96138c4ad930.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yWulDX8E5Q0XG4+9jVDljmO2FvAVzIRhn2MppW4vyUM=","crlite_enrolled":true,"id":"da405d05-6b42-461a-ad4d-d8e77fcc80a3","last_modified":1562108350832},{"schema":1562108349322,"derHash":"XmCWWARGGTCsJ7bb40RWeerkExwir7iK96z2oZF7Wro=","subject":"CN=SecureTrust Domain Validation CA\\, Level 1,O=SecureTrust,
L=Chicago,ST=Illinois,C=US","subjectDN":"MHwxMjAwBgNVBAMTKVNlY3VyZVRydXN0IERvbWFpbiBWYWxpZGF0aW9uIENBLCBMZXZlbCAxMRQwEgYDVQQKEwtTZWN1cmVUcnVzdDEQMA4GA1UEBxMHQ2hpY2FnbzERMA8GA1UECBMISWxsaW5vaXMxCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"808680a0c2b3da12440074c2cecf8ba7b7a50796c469c901bf2bae7963658f5d","size":1618,"filename":"3MJ7kgH4AG-ip6CMzIBTeYe9X-9dSxFjCbnEIuYJlWA=.pem","location":"security-state-staging/intermediates/cfd0f4ac-b77c-4563-aeb5-243676326507.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3MJ7kgH4AG+ip6CMzIBTeYe9X+9dSxFjCbnEIuYJlWA=","crlite_enrolled":false,"id":"9bc337d9-2ebf-4b9a-a405-087a0a528af3","last_modified":1562108350078},{"schema":1562108348554,"derHash":"96hOJOjg2JFUh0chxbZB9Ioe8P87GY9TvgIdtT8Je9A=","subject":"CN=GeoTrust Primary Issuing CA,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtHZW9UcnVzdCBQcmltYXJ5IElzc3VpbmcgQ0E
=","whitelist":false,"attachment":{"hash":"4de8a182cd4692f539e1d1dd8938d2138d6e2c5e38b08e367a1f5223133d6790","size":1670,"filename":"N-1Ur2ovpcaBJa_gbazCpyWohrWTdX7YCwfN2n8jSvQ=.pem","location":"security-state-staging/intermediates/87eb41dc-9c52-4580-ad5c-4a0b65a013eb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N+1Ur2ovpcaBJa/gbazCpyWohrWTdX7YCwfN2n8jSvQ=","crlite_enrolled":false,"id":"ef45312a-79cb-4973-8c28-14dc799a414c","last_modified":1562108349314},{"schema":1562108347772,"derHash":"nwIC1JJY2uQREYrxPwVebQxuh239KUMJeiveVFI1YJg=","subject":"SERIALNUMBER=201906,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTA2","whitelist":false,"attachment":{"hash":"6be84562c866325f09ab7303e3c1001be8bb3c68f97aaab49df216cedbbb00ab","size":2333,"filename":"NgK9fKJF5ODcUC7yeq9jYkJgOh_aHc2YrfRLKoa7i20=.pem","location":"security-state-stag
ing/intermediates/092e8bca-4b27-4d32-ab96-d805edc41385.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NgK9fKJF5ODcUC7yeq9jYkJgOh/aHc2YrfRLKoa7i20=","crlite_enrolled":false,"id":"6b470922-d941-49d7-a9f2-333a66bd4a69","last_modified":1562108348545},{"schema":1562108344661,"derHash":"Cqny59lccYt9HrfM29AWToYFeunWaSK8YPmQP5Sg8O8=","subject":"CN=GlobalSign Qualified CA 3,O=GlobalSign nv-sa,C=BE","subjectDN":"MEwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSIwIAYDVQQDExlHbG9iYWxTaWduIFF1YWxpZmllZCBDQSAz","whitelist":false,"attachment":{"hash":"71031147564393ba600fd320c83c634a774e41ba086cc8f9e545656fcdabcef3","size":2109,"filename":"Jq1QOk-soKGVmobJu53tx3FfjSDpUS8-6JHMIRiTfyY=.pem","location":"security-state-staging/intermediates/9f11ba63-2039-4037-aeaa-70bbf201813d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Jq1QOk+soKGVmobJu53tx3FfjSDpUS8+6JHMIRiTfyY=","crlite_enrolled":false,"id":"2566de5f-27d3-4c41-a2ac-70e1afaa43f0","last_modified":1562108345474},{"schema"
:1562108341582,"derHash":"uhMFYzTMdV9dJ6qwvpnly5cJ0DQ7QF4c5GlkMxu1xF8=","subject":"SERIALNUMBER=201722,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzIy","whitelist":false,"attachment":{"hash":"6c705a1aa9f045020109076b1368ee11c791ad581eae0d24f9ab47fce2b136c8","size":2402,"filename":"RPN8fKuwvw-VE_LlASEpAHzv7y7CFqofIc36APwmf6U=.pem","location":"security-state-staging/intermediates/4ea45b42-7029-4fa2-9cfa-12aa1c0511dd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RPN8fKuwvw+VE/LlASEpAHzv7y7CFqofIc36APwmf6U=","crlite_enrolled":false,"id":"fe9eaa47-9e17-4a54-93e3-7e3ede93033a","last_modified":1562108342333},{"schema":1562108339272,"derHash":"GPzgkvo93kVUIjrnmwxJmiD0EUw2MHnSPY6v3JZzk2k=","subject":"CN=eMudhra ECC Domain Validation Secure Server CA,O=eMudhra Technologies Limited,L=Bengaluru,ST=Karnataka,C=IN","subjectDN":"MIGVMQ
swCQYDVQQGEwJJTjESMBAGA1UECBMJS2FybmF0YWthMRIwEAYDVQQHEwlCZW5nYWx1cnUxJTAjBgNVBAoTHGVNdWRocmEgVGVjaG5vbG9naWVzIExpbWl0ZWQxNzA1BgNVBAMTLmVNdWRocmEgRUNDIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"201778bdc7d2f1a79fae87f89e7f3c87563fb5ae692e5bef6d8a17870194a3d0","size":1345,"filename":"-OTJ6M1upuT7uMaCSaNjlP_D0AMYrqjwUWCEue0H24E=.pem","location":"security-state-staging/intermediates/776486c5-65f5-4d53-a6e6-5d510795f51c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+OTJ6M1upuT7uMaCSaNjlP/D0AMYrqjwUWCEue0H24E=","crlite_enrolled":false,"id":"7c0ed329-430c-4414-a659-6daec3ec0bc0","last_modified":1562108340038},{"schema":1562108336263,"derHash":"7AICWhoVeywCrEn1Wai2zwchJvg3lJn658Uu0YPakBI=","subject":"CN=WISeKey CertifyID SSL GB CA 1,O=WISeKey,C=CH","subjectDN":"MEcxCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSYwJAYDVQQDEx1XSVNlS2V5IENlcnRpZnlJRCBTU0wgR0IgQ0EgMQ==","whitelist":false,"attachment":{"hash":"91c04850b4728e964f0c7a22327101d5ca
a482b389819d5ea41e8347b3216573","size":1711,"filename":"V3yMbpIwzARH7Q8FlejONqe3Rck6-AsElwszbRCUyLw=.pem","location":"security-state-staging/intermediates/180c7361-b19f-476a-9846-dea89f9af2d3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V3yMbpIwzARH7Q8FlejONqe3Rck6+AsElwszbRCUyLw=","crlite_enrolled":true,"id":"9d6c25a5-7949-4e2e-8ac2-d9926d5afd5f","last_modified":1562108337008},{"schema":1562108335514,"derHash":"CKJ3P5CLieNfg9wnCvuLxl6NGS8N0ktSEWFxaNYN06s=","subject":"CN=University of Western Macedonia CA R3,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGDMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxLjAsBgNVBAMTJVVuaXZlcnNpdHkgb2YgV2VzdGVybiBNYWNlZG9uaWEgQ0EgUjM=","whitelist":false,"attachment":{"hash":"07a622c0054b947f643760306b50788cd9b381b0bfd2964a2a8bd78522022944","size":2536,"filename":"Ju8opIlP7q0-XAVutfqY3EgIGywyoMGPTAIfDTzsO3g=.pem","location":"security-state-st
aging/intermediates/189eb95b-2376-4f85-9562-34baa90ec24b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ju8opIlP7q0+XAVutfqY3EgIGywyoMGPTAIfDTzsO3g=","crlite_enrolled":true,"id":"cd81df63-b9f1-4a6f-8aca-f1449a8779f7","last_modified":1562108336255},{"schema":1562108334757,"derHash":"gOE6LoAIR1GeAj1k9PnPILQ8rdHUa6SBHSas4x4pX7s=","subject":"CN=SECOM Passport for Member PUB CA2,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTI=","whitelist":false,"attachment":{"hash":"1602b83b6e798319142c013cdb2fe6a89a8b210d20430e1a52898b81763211ad","size":1581,"filename":"3kJ__srPn_Y0kPQ-6atqtlJmgndIlfmZnUwsK0S0epg=.pem","location":"security-state-staging/intermediates/fde92bcb-5acc-4c45-bd04-b6f99f59a57c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3kJ//s
rPn/Y0kPQ+6atqtlJmgndIlfmZnUwsK0S0epg=","crlite_enrolled":false,"id":"48e148bb-b6f8-45af-8c91-54771ca04156","last_modified":1562108335506},{"schema":1562108332475,"derHash":"s5xKRZbTGRr6Oz0lTSjlxIL80NUA4Kkzf5knfLii7vg=","subject":"CN=TrustID Server CA A52,OU=TrustID Server,O=IdenTrust,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxFzAVBgNVBAsTDlRydXN0SUQgU2VydmVyMR4wHAYDVQQDExVUcnVzdElEIFNlcnZlciBDQSBBNTI=","whitelist":false,"attachment":{"hash":"98d3cfa7dab9b95ecb8cc38637e485c249a12ae6ca445e96105f2708a82c09fa","size":2442,"filename":"baHWPQeCjK_t6GB-okH73C13ZXVDr2QAVt6jQTsq2Ys=.pem","location":"security-state-staging/intermediates/6d66de8a-8c0b-4ade-8054-7f91cdf6accb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"baHWPQeCjK/t6GB+okH73C13ZXVDr2QAVt6jQTsq2Ys=","crlite_enrolled":true,"id":"aa0a2c54-cd68-43b3-be06-0831027e3b6b","last_modified":1562108333245},{"schema":1562108330945,"derHash":"YXLXoZlsvvcaAYLdRLmenANXQqnr0DEapzqkczNExaY=","subject":"CN=Cloud
Flare Inc ECC CA-2,O=CloudFlare\\, Inc.,L=San Francisco,ST=CA,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQQ2xvdWRGbGFyZSwgSW5jLjEgMB4GA1UEAxMXQ2xvdWRGbGFyZSBJbmMgRUNDIENBLTI=","whitelist":false,"attachment":{"hash":"847a716b6f6114e3d4f88a0a3e8e573fce99330a3de33aadc98997578166aad9","size":1321,"filename":"3kcNJzkUJ1RqMXJzFX4Zxux5WfETK-uL6Viq9lJNn4o=.pem","location":"security-state-staging/intermediates/2aee9ab7-0837-4213-bf07-b65e7a210ea5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3kcNJzkUJ1RqMXJzFX4Zxux5WfETK+uL6Viq9lJNn4o=","crlite_enrolled":true,"id":"4f654672-7696-4bd6-84a2-503a66c6cfe4","last_modified":1562108331718},{"schema":1562108330185,"derHash":"chMOOyiQA0khRhf01vP7hdCEde54vwlcWUWKFNGCiGY=","subject":"CN=Amazon,OU=Server CA 2A,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAyQTEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"2a82794488d9
90d2916a320c0881fba10016362c3188bf9954c30bf6848d39ec","size":2235,"filename":"G9pa__g3gTgL9wgZj599LbHgZ_FLuep7rnCqwLAwXns=.pem","location":"security-state-staging/intermediates/83918488-ba2c-4ac0-8d46-0bf63d394383.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G9pa//g3gTgL9wgZj599LbHgZ/FLuep7rnCqwLAwXns=","crlite_enrolled":false,"id":"b35b0a67-1556-41a4-a319-97a50209d163","last_modified":1562108330937},{"schema":1562108327127,"derHash":"ykOJyJ3fwxvsJsdLRKhJjFiy2DhRb6AbFPE5NinlikA=","subject":"CN=AffirmTrust Certificate Authority - DV1,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGCMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMDAuBgNVBAMTJ0FmZmlybVRydXN0IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIERWMQ==","whitelist":false,"attachment":{"hash":"24062c77649490466b59b727862356b7b091396ef80b8d336e7a301146304ddf","size":1662,"filename":"68BRY3XqvlKubfNnBJ64F_17BHUniDemUwxZNNvfdaA=.pem","location":"se
curity-state-staging/intermediates/4683bd6d-bd49-4e42-b154-69a18d94d8c8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"68BRY3XqvlKubfNnBJ64F/17BHUniDemUwxZNNvfdaA=","crlite_enrolled":true,"id":"dcda7a02-af57-41d8-9206-72360ea3f7c1","last_modified":1562108327880},{"schema":1562108325586,"derHash":"Go15Cvmys0191q9htapM8TgLhglcusK8qzW9Vm0BgMM=","subject":"CN=Secure Site Extended Validation CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNVBAMTIlNlY3VyZSBTaXRlIEV4dGVuZGVkIFZhbGlkYXRpb24gQ0E=","whitelist":false,"attachment":{"hash":"8c560a22b1260bcb7f9b8c62c6d191f6064d6125f0146ef483820a79ada1e21a","size":1687,"filename":"GQ1NxZwFxMspL6F7W34V3JpBp8emVEoKYr5gy_rpnLc=.pem","location":"security-state-staging/intermediates/d890ff8b-cd56-49f2-b11e-4effc32732b0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GQ1NxZwFxMspL6F7W34V3JpBp8emVEoKYr5gy/rpnLc=","crlite_enrolled":true,
"id":"2bbb4638-a2e8-488a-919c-7ebe87b2d089","last_modified":1562108326359},{"schema":1562108324809,"derHash":"4fLpUAD4FeEcgUkEMLXQLI2B0NJWyF32i1FtbCd2GSY=","subject":"CN=SECOM Passport for Web EV 2.0 CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MF8xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSkwJwYDVQQDEyBTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIEVWIDIuMCBDQQ==","whitelist":false,"attachment":{"hash":"11b2cc7c19c9ea658d73d93b55ba2118401c64553f83df52d6c23d8bb092eba4","size":1618,"filename":"Wa2FjlVfGKwvkiH0LYWh-y-ihHlaTmVQ-gqZEsR3RwY=.pem","location":"security-state-staging/intermediates/13abab2d-5558-442e-9c8c-9f54f283182e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wa2FjlVfGKwvkiH0LYWh+y+ihHlaTmVQ+gqZEsR3RwY=","crlite_enrolled":true,"id":"7310f222-43d0-494d-aa65-443d9a816261","last_modified":1562108325576},{"schema":1562108324028,"derHash":"cjdtWQ2aZl05alHSrqkzRjj9SxPW9emTKYMi80Tyt54=","subject":"CN=TrustSign ECC DV CA,O=Ziwit,L=Montpellier,ST=He
rault,C=FR","subjectDN":"MGMxCzAJBgNVBAYTAkZSMRAwDgYDVQQIEwdIZXJhdWx0MRQwEgYDVQQHEwtNb250cGVsbGllcjEOMAwGA1UEChMFWml3aXQxHDAaBgNVBAMTE1RydXN0U2lnbiBFQ0MgRFYgQ0E=","whitelist":false,"attachment":{"hash":"c7de9b26efc4eb3648124f025156bdbc60d2ee4df9bc5f2b40e0f3889a11aa13","size":1276,"filename":"DuV9kinKceC5mT-5PkiRrL4kz_gqWVCOloO5GTLSA8I=.pem","location":"security-state-staging/intermediates/829cc9be-f9c4-483a-8537-7de6820e7357.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DuV9kinKceC5mT+5PkiRrL4kz/gqWVCOloO5GTLSA8I=","crlite_enrolled":false,"id":"cd8781e3-476c-41fc-b598-6657d68d188e","last_modified":1562108324796},{"schema":1562108323189,"derHash":"SytyugviemNHjCc6DFtS9puJ42marU86Gg6v5muZUmU=","subject":"CN=MarketWare - Solu\u00e7\u00f5es para Mercados Digitais\\, Lda. RSA EV CA,OU=Controlled by COMODO exclusively for MarketWare,O=MarketWare - Solu\u00e7\u00f5es para Mercados Digitais\\, Lda.,L=Lisboa,ST=Lisboa,C=PT","subjectDN":"MIHxMQswCQYDVQQGEwJQVDEPMA0GA1UECBMGTGlzYm9hM
Q8wDQYDVQQHEwZMaXNib2ExPTA7BgNVBAoMNE1hcmtldFdhcmUgLSBTb2x1w6fDtWVzIHBhcmEgTWVyY2Fkb3MgRGlnaXRhaXMsIExkYS4xODA2BgNVBAsTL0NvbnRyb2xsZWQgYnkgQ09NT0RPIGV4Y2x1c2l2ZWx5IGZvciBNYXJrZXRXYXJlMUcwRQYDVQQDDD5NYXJrZXRXYXJlIC0gU29sdcOnw7VlcyBwYXJhIE1lcmNhZG9zIERpZ2l0YWlzLCBMZGEuIFJTQSBFViBDQQ==","whitelist":false,"attachment":{"hash":"43c29684fc1791cf7a701d66ef4aad6b8f263f4f9493176e519013a2a3477626","size":2341,"filename":"qCF-PPuByTYruFr6MIeAiLpr2ebZPZHBVpg73sPCJwI=.pem","location":"security-state-staging/intermediates/9baba706-ea2c-4038-ab33-bc9d68d0a446.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qCF+PPuByTYruFr6MIeAiLpr2ebZPZHBVpg73sPCJwI=","crlite_enrolled":true,"id":"df37aefa-7686-4f4a-add4-d68ea15fb1a2","last_modified":1562108324019},{"schema":1562108321668,"derHash":"OXFmwBiQoBUCgI2sxcjf1L8v383BpqzDyxQh2WzzOP0=","subject":"CN=Servision Certification Authority,O=Servision Inc.,C=JP","subjectDN":"MFIxCzAJBgNVBAYTAkpQMRcwFQYDVQQKEw5TZXJ2aXNpb24gSW5jLjEqMCgGA1UEAxMhU2VydmlzaW9uI
ENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"b4a562f44b51aeba750b02340947d52861ec82d00fb13a3c4dba87c57c923205","size":1504,"filename":"kWvg0ZVt3GHilKKOdxJccr8EU2CMQ_ITo4JOlWmPamo=.pem","location":"security-state-staging/intermediates/dd6d3c00-964b-4bdf-8c35-9a318050af9d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kWvg0ZVt3GHilKKOdxJccr8EU2CMQ/ITo4JOlWmPamo=","crlite_enrolled":false,"id":"ccf0f9ed-32a8-4b69-bdeb-0fb197d51839","last_modified":1562108322404},{"schema":1562108320882,"derHash":"jNWR8zFL1XusdLP67i1wRxtdmWpP4ZfmQ4Crr56LMTM=","subject":"CN=Trend Micro S2 CA,O=Trend Micro Inc,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRgwFgYDVQQKDA9UcmVuZCBNaWNybyBJbmMxGjAYBgNVBAMMEVRyZW5kIE1pY3JvIFMyIENB","whitelist":false,"attachment":{"hash":"660470ac98e8eeae43c687e25c3224ed8bd61fa05d1c8a53bdd72e466955e2f4","size":1609,"filename":"BuGwKUFbAtZDGEd6cE3s5OqR23M2h4ZmIiGT_aw3TpM=.pem","location":"security-state-staging/intermediates/5e931958-8e44-432d-ba06-
12c98f350199.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BuGwKUFbAtZDGEd6cE3s5OqR23M2h4ZmIiGT/aw3TpM=","crlite_enrolled":false,"id":"81f56af1-98ca-4c3e-89b4-27e8810e31fe","last_modified":1562108321659},{"schema":1562108319370,"derHash":"kdAFBjP2JXL2eWFIhnZE7jEUCtciZuD5MFp8b9QED58=","subject":"CN=COMODO ECC Domain Validation Secure Server CA 3,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGSMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE4MDYGA1UEAxMvQ09NT0RPIEVDQyBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENBIDM=","whitelist":false,"attachment":{"hash":"32e13862aeb900961956b459740f0146d3e1e95489bfd8fad22c21965d884d6e","size":1317,"filename":"yRx6JkdTon5X6I6GmE6-8BL0QUZRKbcRvDM_vt2Beyg=.pem","location":"security-state-staging/intermediates/cd53a4d9-0989-4748-90f0-77a5b878e898.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yRx6JkdTon5X6I6GmE6+8BL0QUZRKbcRvDM/vt2Beyg="
,"crlite_enrolled":false,"id":"9e611c86-fc3a-4ab7-b7e5-7c09eb2cf86a","last_modified":1562108320119},{"schema":1562108317833,"derHash":"VMP1AQQs3MCa6BQ8sZK9XlckyciKarOVqUoaevwmznw=","subject":"CN=DigiCert Federated Healthcare CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKTAnBgNVBAMTIERpZ2lDZXJ0IEZlZGVyYXRlZCBIZWFsdGhjYXJlIENB","whitelist":false,"attachment":{"hash":"fa3f2859e516d877140c95ce6b6cfcc20adcc0576479bd8660cd9467da8d8558","size":2182,"filename":"flPZhpoPaXju4AbnPIUI-vdHW4h2ksR2LklMnV9MpzE=.pem","location":"security-state-staging/intermediates/df4a48bc-c9d4-4f52-9280-98ca919d2d3f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"flPZhpoPaXju4AbnPIUI+vdHW4h2ksR2LklMnV9MpzE=","crlite_enrolled":false,"id":"8e0543db-7ee5-46cb-b691-0ecaa2627aa2","last_modified":1562108318607},{"schema":1562108317082,"derHash":"NyuPTOc77fyIcYxAe7az5tj5p5vpVxkNDnEBx7DvmjI=","subject":"CN=NetLock
Expressz (Class C) Tan\u00fas\u00edtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIGqMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE4MDYGA1UEAwwvTmV0TG9jayBFeHByZXNzeiAoQ2xhc3MgQykgVGFuw7pzw610dsOhbnlraWFkw7M=","whitelist":false,"attachment":{"hash":"96ba448b3b21c633bd5e293f4383a8b88b67e802476a48d48ba20ffa8359a5ce","size":2182,"filename":"KS2adY6eMaWNhbLW6JREO3Oo34Qy_UvmA5f-f4ROpYw=.pem","location":"security-state-staging/intermediates/6380c544-10af-435b-ae2d-adad842694a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KS2adY6eMaWNhbLW6JREO3Oo34Qy/UvmA5f+f4ROpYw=","crlite_enrolled":true,"id":"522256d0-e9e9-44e9-b35d-221ddf453cad","last_modified":1562108317826},{"schema":1562108316330,"derHash":"MMwfzLvsAuaJkblkWSD5qZbBJ8L8vQeVhPHXjYh1kbc=","subject":"SERIALNUMBER=201723,CN=Citizen CA,O=C
ertipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzIz","whitelist":false,"attachment":{"hash":"e4164234795efd76a9f953b98749a822314de01401d5c5078837c4d956d5ba3f","size":2402,"filename":"qVzRfQ2NKawghyfy2P967HGyMNOAxaW-lqGIKQbYwb4=.pem","location":"security-state-staging/intermediates/df4f4f25-4ed1-4bf7-b1ea-24e88ce80fb3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qVzRfQ2NKawghyfy2P967HGyMNOAxaW+lqGIKQbYwb4=","crlite_enrolled":false,"id":"e3ba5f2e-ca62-462e-8dd5-91bc77510b2a","last_modified":1562108317074},{"schema":1562108314030,"derHash":"StuBnCUKLhgzE0BUmdhzUpnIj5cKUBmidWayflgY9Bs=","subject":"CN=DigiCert SHA2 Assured ID Code Signing,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLjAsBgNVBAMTJURpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBDb2RlIFNpZ25pbmc=","w
hitelist":false,"attachment":{"hash":"9e9e20d7379e013d029c65c1b9f114e35b9cb392ec440ae8c6a13c462abaf8ff","size":1748,"filename":"-8NGthsZ4RousKQeaozXeiZJDbaHhZwcd6xncoIcZDs=.pem","location":"security-state-staging/intermediates/16ec3e96-c579-4008-bc71-57e4816d320d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+8NGthsZ4RousKQeaozXeiZJDbaHhZwcd6xncoIcZDs=","crlite_enrolled":false,"id":"41e0a36c-c55e-4508-a53e-8813c0916ed2","last_modified":1562108314770},{"schema":1562108312519,"derHash":"ZIU2E8JDY5lgPQ1WC1LwS7j4GoF0bkI4mIOk9ZpFZNU=","subject":"CN=Secure Site Starter DV SSL CA - G2,OU=Domain Validated SSL,O=GeoTrust\\, Inc.,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5HZW9UcnVzdCwgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxKzApBgNVBAMTIlNlY3VyZSBTaXRlIFN0YXJ0ZXIgRFYgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"aa3fd009b6c5b5c9c5458fc4dc6385393a7200967a4b5c20281e2f99cfcb3d8f","size":1788,"filename":"eDTKI6X9vxY2k_ZfHbRQ6gLLPTAmRP5hH5orVWntz8U=.pem","l
ocation":"security-state-staging/intermediates/8506f034-f774-4313-ae85-555f9a9aa758.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eDTKI6X9vxY2k/ZfHbRQ6gLLPTAmRP5hH5orVWntz8U=","crlite_enrolled":false,"id":"00c0da63-9255-49cb-9d1e-16085032d2d9","last_modified":1562108313269},{"schema":1562108311015,"derHash":"98fij7XnnzFKqsa7upMvFeGnIGn0NdTJ5wf5PKFILuM=","subject":"CN=Qualified e-Szigno TLS CA 2018,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHoxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJzAlBgNVBAMMHlF1YWxpZmllZCBlLVN6aWdubyBUTFMgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"f62124b291cbf9f0ce787625de446e21f2feb0426a05212dbc6111779c02cb02","size":2231,"filename":"B-kJdgVu-sQKTRurO5lOkBlDQ-2-UfVcgWNPVcJ2soQ=.pem","location":"security-state-staging/intermediates/b048750f-1cf2-47ec-9890-3fbaec58d1eb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B+kJdgVu+sQKTRurO5lOkBlDQ+2+UfVcgWNPVcJ2soQ=","c
rlite_enrolled":true,"id":"eb56311d-499d-4871-aa3c-4d3359fc4ec0","last_modified":1562108311758},{"schema":1562108310265,"derHash":"VHMudAahOPpIra7c2jFWGXKG1lLgiwB3MFc9ntTgOmQ=","subject":"CN=Entrust Class 1 Client CA,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2010 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGlMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L0NQUyBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAxMCBFbnRydXN0LCBJbmMuMSIwIAYDVQQDExlFbnRydXN0IENsYXNzIDEgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"a8c67b40b563cf63c41b06a70037ad190e434c4ef19f56e4e425fce1a0f1c1c0","size":1760,"filename":"Uhene3DQaQrqKhOQL-xFNX9JZl3IsIFfWho3SE3EtBQ=.pem","location":"security-state-staging/intermediates/50703850-cc99-4156-803a-48fed64fa2df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uhene3DQaQrqKhOQL+xFNX9JZl3IsIFfWho3SE3EtBQ=","crlite_enrolled":false,"id":"08551b17-2765-4c9f-abf8-ea28abf8f427","
last_modified":1562108311008},{"schema":1562108308734,"derHash":"qonEZunQaILA2q9yvg8PvP58HvKqrRkGQMStRPVRfzQ=","subject":"CN=GlobalSign CA for AATL - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIENBIGZvciBBQVRMIC0gU0hBMjU2IC0gRzI=","whitelist":false,"attachment":{"hash":"faa26183cd8190e64a0334a9d0bc1653de74cdfe0addd4bd510ee4563a0b2664","size":1561,"filename":"Am8KjiB_BfHxcttxPcItD0PI_w1pckqm-saoOT32JQg=.pem","location":"security-state-staging/intermediates/d8f0e2b3-c3e9-4f66-a477-5ce6ec6be13f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Am8KjiB/BfHxcttxPcItD0PI/w1pckqm+saoOT32JQg=","crlite_enrolled":true,"id":"f3363149-33ea-4e28-8538-b42875404ad1","last_modified":1562108309489},{"schema":1562108307971,"derHash":"ABds2DVvL0kt0EqJMAHG72ELHry7E8Yf38O3BUY6B8w=","subject":"SERIALNUMBER=201725,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQ
HEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzI1","whitelist":false,"attachment":{"hash":"92297ee53b100e26523fc1571e27142df221f691610b0e32df6e7afdf38e391e","size":2402,"filename":"P9ABMJpYdeY2_BVGAlcWULo2ZAn_I1lSLzQRDQ2Dduk=.pem","location":"security-state-staging/intermediates/6f729466-79f4-4719-8d47-79130027ab63.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"P9ABMJpYdeY2/BVGAlcWULo2ZAn/I1lSLzQRDQ2Dduk=","crlite_enrolled":false,"id":"d0b10adf-94cf-4423-947b-ba7caf6fa8a8","last_modified":1562108308726},{"schema":1562108306455,"derHash":"gptouX8R3uNEhXrBLrQM5QLuUmARIwFv3r8UIAkaQEg=","subject":"CN=Actalis Organization Validated Server CA G2,O=Actalis S.p.A./03358520967,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGVMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEjMCEGA1UECgwaQWN0YWxpcyBTLnAuQS4vMDMzNTg1MjA5NjcxNDAyBgNVBAMMK0FjdGFsaXMgT3JnYW5pemF0aW9uIFZhbGlkYXRlZCBTZXJ2ZXIgQ0EgRzI=",
"whitelist":false,"attachment":{"hash":"a6d698bddb2882ffe01874cc8b31fb4cd7cb7b59e5753aba4899ac8735e1c3d7","size":2328,"filename":"7OrVER1djNO1n973ik5pn3X3z2McXLh4_UHg4gcP8Qs=.pem","location":"security-state-staging/intermediates/a016d22f-4259-4a3a-a259-0b096b9d9603.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7OrVER1djNO1n973ik5pn3X3z2McXLh4/UHg4gcP8Qs=","crlite_enrolled":true,"id":"33150e34-4a0c-4a16-8c20-614694dcacbc","last_modified":1562108307204},{"schema":1562108305694,"derHash":"tuRKaTQthDY6sSGC8tK4iFAbBjp2vrADUOON3HRxUDQ=","subject":"CN=SSL.com Client Certificate Intermediate CA RSA R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxOjA4BgNVBAMMMVNTTC5jb20gQ2xpZW50IENlcnRpZmljYXRlIEludGVybWVkaWF0ZSBDQSBSU0EgUjI=","whitelist":false,"attachment":{"hash":"70033e723115a4788e75a0975cdeef29d5401951abddea70bbbf2d85524897b8","size":2463,"filename":"i08jg0QBQmEM-JqJgQx323fDRPRGdVoqK
p1H7yz79IY=.pem","location":"security-state-staging/intermediates/327c4e9b-94d6-4642-b0c8-34c09ab42569.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i08jg0QBQmEM+JqJgQx323fDRPRGdVoqKp1H7yz79IY=","crlite_enrolled":false,"id":"b29278b7-cf9f-4a99-ac8c-29557d9756be","last_modified":1562108306447},{"schema":1562108304934,"derHash":"wrS770oaZD8zTtCFD5KIdtKuOuNkK5hgFNaMZzwE0IE=","subject":"CN=DigiCert Assured ID Intermediate CA (SHA2),OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMzAxBgNVBAMTKkRpZ2lDZXJ0IEFzc3VyZWQgSUQgSW50ZXJtZWRpYXRlIENBIChTSEEyKQ==","whitelist":false,"attachment":{"hash":"b1d19ffd1ee53e7e96ff68523c9665541c7f0ad33953b984c40344cfd1b1b610","size":2414,"filename":"39FMK3AAz8IFXNAeBgxX6wMg9P7FiRLFT8ZlWfn_yN4=.pem","location":"security-state-staging/intermediates/310bb2a7-3082-4ca1-9b38-806b747f54a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"39FMK3AAz8IFXNAeB
gxX6wMg9P7FiRLFT8ZlWfn/yN4=","crlite_enrolled":false,"id":"aff53e0c-f01a-44b2-8421-76ed33a192d6","last_modified":1562108305686},{"schema":1562108304182,"derHash":"gq1G7N6IJBMQaxyD72XcAtsMZbOHD290S2IoPfb6HVY=","subject":"CN=DigiCert SHA1 Assured ID Code Signing CA - G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xNjA0BgNVBAMTLURpZ2lDZXJ0IFNIQTEgQXNzdXJlZCBJRCBDb2RlIFNpZ25pbmcgQ0EgLSBHMQ==","whitelist":false,"attachment":{"hash":"7231d127229533342baeaa15873fec434cf18f783b1e0d40608577aef1cbf7c9","size":1898,"filename":"0w_4AUxe0Bd0wAJYMdu6EnJD9JmcIGhTrapIAusbp8g=.pem","location":"security-state-staging/intermediates/d099988a-680a-48ad-b2cb-9367e335da89.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0w/4AUxe0Bd0wAJYMdu6EnJD9JmcIGhTrapIAusbp8g=","crlite_enrolled":false,"id":"dd18bf6f-8293-49a7-b238-5944b684f761","last_modified":1562108304925},{"schema":1562108301877,"derHash":"RMUKyA
7b6eVS48ls5b0RyDfHD1ajOsq88Y2Neps1Dgc=","subject":"CN=EC-PARLAMENT,OU=Serveis Publics de Certificacio+OU=Vegeu https://www.catcert.net/verCIC-2 (c)03+OU=Parlament de Catalunya,O=Agencia Catalana de Certificacio (NIF Q-0801176-I),L=Passatge de la Concepcio 11 08008 Barcelona,C=ES","subjectDN":"MIIBGTELMAkGA1UEBhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2VydGlmaWNhY2lvIChOSUYgUS0wODAxMTc2LUkpMTQwMgYDVQQHEytQYXNzYXRnZSBkZSBsYSBDb25jZXBjaW8gMTEgMDgwMDggQmFyY2Vsb25hMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYDVQQLEyxWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJDSUMtMiAoYykwMzEfMB0GA1UECxMWUGFybGFtZW50IGRlIENhdGFsdW55YTEVMBMGA1UEAxMMRUMtUEFSTEFNRU5U","whitelist":false,"attachment":{"hash":"17e9173c46bb2384dba7fcb7a0f710c7b429cf4600461a89fba90b1af0a62645","size":2698,"filename":"LbXnRYPxl6yNMAXHjj6wiyi3rAmcF-GQQrZtCBAentM=.pem","location":"security-state-staging/intermediates/210f4610-3bf6-4547-b850-5fccce210bc1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":
"LbXnRYPxl6yNMAXHjj6wiyi3rAmcF+GQQrZtCBAentM=","crlite_enrolled":false,"id":"8a3a7743-6b95-491c-a7fd-c508a3a3588e","last_modified":1562108302644},{"schema":1562108301127,"derHash":"Ol9O91ja1i5DaSRkReBo5Nrf3Uhi3Nw1LLyj9YyxAoo=","subject":"CN=University of Ioannina CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHoxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTElMCMGA1UEAxMcVW5pdmVyc2l0eSBvZiBJb2FubmluYSBDQSBSMg==","whitelist":false,"attachment":{"hash":"e55385a6a99893ba059ad902f14cf08fc7e50c21f0767e96dade7ae8ff26f9f3","size":2519,"filename":"3Z_Xeh-0zD0mx1ntkdzF2uRggW2jjvRv4YohPdsTyH0=.pem","location":"security-state-staging/intermediates/07946fd8-678e-432f-88dd-926d7a5b0651.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3Z/Xeh+0zD0mx1ntkdzF2uRggW2jjvRv4YohPdsTyH0=","crlite_enrolled":true,"id":"5b78a2dc-204e-4f05-87aa-7d9a687db350","last_modified":1562108301868},{"schema":
1562108299591,"derHash":"yVqUJkEOEecO7ZR4Bv2H9vDed7mPHEVL4Q01xEQtwd0=","subject":"CN=Ionian University Client CA R1,O=Ionian University,L=Kerkyra,C=GR","subjectDN":"MGQxCzAJBgNVBAYTAkdSMRAwDgYDVQQHEwdLZXJreXJhMRowGAYDVQQKExFJb25pYW4gVW5pdmVyc2l0eTEnMCUGA1UEAxMeSW9uaWFuIFVuaXZlcnNpdHkgQ2xpZW50IENBIFIx","whitelist":false,"attachment":{"hash":"421344cbf9de9ea4c9deeba9fd22a377f8a6001c222e3d8cf3cdfa2a7da4ebaa","size":2491,"filename":"BKdxsSIs-ijJFbyYWEdpq7cKm2wjAKYw1xIPkxhoTzY=.pem","location":"security-state-staging/intermediates/6b710da6-690c-4e56-9130-7542629ed94f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BKdxsSIs+ijJFbyYWEdpq7cKm2wjAKYw1xIPkxhoTzY=","crlite_enrolled":false,"id":"72505e52-9154-41da-9415-e855003b7e6e","last_modified":1562108300343},{"schema":1562108298809,"derHash":"fmr1Cjqd0Bc3IE2RK3ch98CAnMzmQoRXiZIEmqzjSws=","subject":"CN=DigiCert Transition Root G3,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCw
gSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBUcmFuc2l0aW9uIFJvb3QgRzM=","whitelist":false,"attachment":{"hash":"1744c43c724806504fbec8f1f008c72fec893abcf74097d2a9736fa436694410","size":1305,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/c140c6ab-92f6-4c11-8843-daf10323b427.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"93532867-ac56-4307-89f7-2dd212381524","last_modified":1562108299582},{"schema":1562108298021,"derHash":"HhdBoS642ivXbqlsBPUgNZg5cQ9iDoCVL0jdAkChLNg=","subject":"CN=GlobalSign Organization Validated CA - SHA256 - G4,O=GlobalSign nv-sa,C=BE","subjectDN":"MGUxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTswOQYDVQQDEzJHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0ZWQgQ0EgLSBTSEEyNTYgLSBHNA==","whitelist":false,"attachment":{"hash":"f56fe012352f32771440b0a10b06d66c2f469fb83a06518748eaa15ab9720834","si
ze":1622,"filename":"S7kwF_US-qCLAH7QPb4nX6Ms8I_NUy0GV9_-wVRxQe4=.pem","location":"security-state-staging/intermediates/30b37c7c-3a4d-4dfb-b2c4-e2d5477cf21a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S7kwF/US+qCLAH7QPb4nX6Ms8I/NUy0GV9/+wVRxQe4=","crlite_enrolled":false,"id":"8957e3a4-614b-4b99-a5c4-476646f00273","last_modified":1562108298801},{"schema":1562108297261,"derHash":"OYsUmc4Aol9hysPYvuVxYBiAgj7yiL6XcqTRM5hCJZU=","subject":"CN=Prodrive Technologies B.V. OV SSL Issuing CA,OU=IT Services,O=Prodrive Technologies B.V.,L=Son,ST=Noord-Brabant,C=NL","subjectDN":"MIGlMQswCQYDVQQGEwJOTDEWMBQGA1UECBMNTm9vcmQtQnJhYmFudDEMMAoGA1UEBxMDU29uMRQwEgYDVQQLEwtJVCBTZXJ2aWNlczEjMCEGA1UEChMaUHJvZHJpdmUgVGVjaG5vbG9naWVzIEIuVi4xNTAzBgNVBAMTLFByb2RyaXZlIFRlY2hub2xvZ2llcyBCLlYuIE9WIFNTTCBJc3N1aW5nIENB","whitelist":false,"attachment":{"hash":"60af9aca37322fa5579658de5c5e1492cee409be5bf7326842071c595027df3f","size":1882,"filename":"-wd4uhPIbo8yHwCQuKSPir6tNrh9C4xO-yIp2mXFvWw=.pem","locati
on":"security-state-staging/intermediates/11e8a6e5-dba1-4063-8a86-8ec3c096498d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+wd4uhPIbo8yHwCQuKSPir6tNrh9C4xO+yIp2mXFvWw=","crlite_enrolled":true,"id":"45dbad78-4cd0-4991-b5b2-47889daaaef8","last_modified":1562108298013},{"schema":1562108296484,"derHash":"Rx5dC46FdFDELa80KT6Dl2m6qpZkUQoVpIuDM2vvCmw=","subject":"CN=CSP Code Signing Service CA 2,O=CENTRAL SECURITY PATROLS CO.\\, LTD.,L=Shinjuku-ku,ST=Tokyo,C=JP","subjectDN":"MIGIMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xFDASBgNVBAcTC1NoaW5qdWt1LWt1MSswKQYDVQQKEyJDRU5UUkFMIFNFQ1VSSVRZIFBBVFJPTFMgQ08uLCBMVEQuMSYwJAYDVQQDEx1DU1AgQ29kZSBTaWduaW5nIFNlcnZpY2UgQ0EgMg==","whitelist":false,"attachment":{"hash":"f3e215956535f23892f1f0bb74d9a78f5bb4021380b7e080da65339c11dfadd0","size":2138,"filename":"l_awPKBJ4UEI-z9_U5Rbx8t0nJMnpt5Zthvcoiu0J78=.pem","location":"security-state-staging/intermediates/23ecae1d-dd6b-4b7a-a260-e41bd9437c08.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"
l/awPKBJ4UEI+z9/U5Rbx8t0nJMnpt5Zthvcoiu0J78=","crlite_enrolled":false,"id":"e71b7abd-b38b-4bdf-9596-8523c7cccf32","last_modified":1562108297253},{"schema":1562108295734,"derHash":"gCwq0dIV5XzckBDqQ3rOOZtlcZT71A47teALCA5klt8=","subject":"CN=DigiCert Extended Validation Intermediate CA (SHA2),OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MH0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xPDA6BgNVBAMTM0RpZ2lDZXJ0IEV4dGVuZGVkIFZhbGlkYXRpb24gSW50ZXJtZWRpYXRlIENBIChTSEEyKQ==","whitelist":false,"attachment":{"hash":"73904237d7f0a3a17b5f2c3f1b1275dae7eb95972b2f9bb854178fdf1f3c93ef","size":2450,"filename":"N8yNUCoqmVQZ-ft-5WHTEDP44ZaqSGYV9krPU-6GKxE=.pem","location":"security-state-staging/intermediates/946ac930-af2f-46ae-ba2b-8469d6da4d27.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N8yNUCoqmVQZ+ft+5WHTEDP44ZaqSGYV9krPU+6GKxE=","crlite_enrolled":false,"id":"00d32bfb-1f50-4f9a-b001-bcb7956c75f4","last_modified":1562108296476},{"schema":
1562108294970,"derHash":"xunpk8JYtyEkqtPJwGi27yNXYVXzELMFczNh4gsXyUM=","subject":"CN=Entrust Class 1 Client CA - SHA256,OU=See www.entrust.net/legal-terms+OU=(c) 2015 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG3MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTUgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MSswKQYDVQQDEyJFbnRydXN0IENsYXNzIDEgQ2xpZW50IENBIC0gU0hBMjU2","whitelist":false,"attachment":{"hash":"79a53ad927c3de7c40691b9a6c3fb0d4a6a204940ea279fea186b55c6e73d429","size":1857,"filename":"lH0dapXaEQzIObJaHxVa7uB4l8j3w-wHYQbHKgXEZkQ=.pem","location":"security-state-staging/intermediates/49d12b14-17cb-4217-85c7-65e635580b00.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lH0dapXaEQzIObJaHxVa7uB4l8j3w+wHYQbHKgXEZkQ=","crlite_enrolled":false,"id":"3564ed73-7524-4710-8e3c-8934b9358650","last_modified":1562108295725},{"schema":1562108293455,"derHash":
"rY1JjAjaJJk2urzdoHIGwTxx510WvjEgvqLY5XIMC7E=","subject":"CN=TrustID SAIC Public Email Issuing CA,O=SAIC,C=US","subjectDN":"MEsxCzAJBgNVBAYTAlVTMQ0wCwYDVQQKEwRTQUlDMS0wKwYDVQQDEyRUcnVzdElEIFNBSUMgUHVibGljIEVtYWlsIElzc3VpbmcgQ0E=","whitelist":false,"attachment":{"hash":"fe515a59c69804f303e416010886b99083e0d92387cf3175e7ad76b66b8064f5","size":2866,"filename":"xQtvQZq-EB3EN98Z5s79c3Oet8M4exlYihCVvU05dDc=.pem","location":"security-state-staging/intermediates/1118623a-93a7-4be6-89a9-07a8f0a9f4d1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xQtvQZq+EB3EN98Z5s79c3Oet8M4exlYihCVvU05dDc=","crlite_enrolled":false,"id":"c05d6677-609b-422a-ac39-28f20ba92e8a","last_modified":1562108294207},{"schema":1562108292695,"derHash":"mHpclYS0a1mHjkJGD4Pk1h9MJyI2aUbU0hbzNqbxKPc=","subject":"CN=BlackCert\\, Inc. ECC DV Certification Authority,O=BlackCert\\, Inc.,L=Denver,ST=CO,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDTzEPMA0GA1UEBxMGRGVudmVyMRgwFgYDVQQKEw9CbGFja0NlcnQsIEluYy4xNzA1Bg
NVBAMTLkJsYWNrQ2VydCwgSW5jLiBFQ0MgRFYgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"4851b2159dadaebd9610ff68cc3a0abe70105ceae03d43c0259bae336294d8c6","size":1313,"filename":"UHhlKE9aTixVYvtmCIINV9nOgVj-gicuzrl4dZJypeA=.pem","location":"security-state-staging/intermediates/299ba25a-3c88-4a56-99fc-8d482eacf964.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UHhlKE9aTixVYvtmCIINV9nOgVj+gicuzrl4dZJypeA=","crlite_enrolled":false,"id":"aec144f1-19f3-4440-b9b2-ca0cfb03eabd","last_modified":1562108293448},{"schema":1562108290423,"derHash":"G5em8Nu9kMEgcKSyJFDIntfangDRsMHTLHOfkfBUQ2k=","subject":"CN=USERTrust ECC Extended Validation Code Signing CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGUMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE6MDgGA1UEAxMxVVNFUlRydXN0IEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"has
h":"26dd31cde7427387d296f148833077d4fe20c284013c0fd9f15f8008f135d303","size":1362,"filename":"i7uClAe3_3wAhizAhhVydHbblUIZ4CnIbmP_37X1MDI=.pem","location":"security-state-staging/intermediates/6fd0a630-610a-4944-95e2-537aa76a82fb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i7uClAe3/3wAhizAhhVydHbblUIZ4CnIbmP/37X1MDI=","crlite_enrolled":false,"id":"c0e9c3ff-136b-4bae-bd6f-a2afc53d7dbc","last_modified":1562108291176},{"schema":1562108285841,"derHash":"dcFVADsRQcWwn9fdAy4vQTxHGV07ml2vbEUQOFzXsNo=","subject":"CN=SecureCore RSA Code Signing CA,O=SecureCore,L=OSAKA,ST=OSAKA,C=JP","subjectDN":"MGsxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVPU0FLQTEOMAwGA1UEBxMFT1NBS0ExEzARBgNVBAoTClNlY3VyZUNvcmUxJzAlBgNVBAMTHlNlY3VyZUNvcmUgUlNBIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"fb6fbc5f3a298360a9e790f55bf514d36e1065ad69d9250a0546434fd60e20ef","size":2097,"filename":"axW2YlMTDWWhbpiLWaU3zkErVvrZfY_GQ6cyk5u5luY=.pem","location":"security-state-staging/intermediates/1730ea7b-88b
9-4db4-a901-15e5a1fae90e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"axW2YlMTDWWhbpiLWaU3zkErVvrZfY/GQ6cyk5u5luY=","crlite_enrolled":false,"id":"3e6d940e-6a54-426f-aa37-1484d14106e9","last_modified":1562108286598},{"schema":1562025729992,"derHash":"6o4gUWI+TkcQ/Vvyek0s4L5lsXoeVDm4+rdOAcyoFXU=","subject":"CN=COMODO Domain Validation Secure Server CA 2,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGOMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE0MDIGA1UEAxMrQ09NT0RPIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0EgMg==","whitelist":false,"attachment":{"hash":"3d0e7c87aafe299697e93ab682a1740b5e0301d829f1f0172b1c96434892d004","size":1849,"filename":"U76LrE_Rijw5XfoXk5OQHHM69VvOLx93TdrIf4lbJe0=.pem","location":"security-state-staging/intermediates/b77966b0-d8a8-461b-82c0-0b542d6d45b8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U76LrE/Rijw5XfoXk5OQHHM69VvOLx93TdrIf4lbJ
e0=","crlite_enrolled":false,"id":"ca6e3949-96ed-4927-a7ec-aa6983f017ca","last_modified":1562025730731},{"schema":1562025726215,"derHash":"3JRVykf1/Zvzu6u+rPiPPes7WL+oWvQE39IWF86QoN0=","subject":"CN=Academy of Athens SSL SubCA R2,O=Academy of Athens,L=Athens,C=GR","subjectDN":"MGMxCzAJBgNVBAYTAkdSMQ8wDQYDVQQHDAZBdGhlbnMxGjAYBgNVBAoMEUFjYWRlbXkgb2YgQXRoZW5zMScwJQYDVQQDDB5BY2FkZW15IG9mIEF0aGVucyBTU0wgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"f72510e5379e821a4e63803bde1b2d0379bf113c2844ef59caf0def0e2469437","size":2771,"filename":"JSBgh4-dzeoIV9S02ySUrHvvy_rDBARUsVV1tnTxX34=.pem","location":"security-state-staging/intermediates/3e79bdae-5627-434e-bea2-8834a203d78b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JSBgh4+dzeoIV9S02ySUrHvvy/rDBARUsVV1tnTxX34=","crlite_enrolled":false,"id":"cee3e6e9-42ed-4283-993c-cb0045e6be5b","last_modified":1562025726974},{"schema":1562025724722,"derHash":"L7qP6RVBUEmqlChXy1MTf/09nlpHsntXgtq5tNp9Yk0=","subject":"CN=GeoTrust SupremeSSL
EV 1 ECC CA,OU=www.supremessl.com,O=SupremeSSL,C=NL","subjectDN":"MGkxCzAJBgNVBAYTAk5MMRMwEQYDVQQKEwpTdXByZW1lU1NMMRswGQYDVQQLExJ3d3cuc3VwcmVtZXNzbC5jb20xKDAmBgNVBAMTH0dlb1RydXN0IFN1cHJlbWVTU0wgRVYgMSBFQ0MgQ0E=","whitelist":false,"attachment":{"hash":"41ecc5811611c2cca06c08009be39d0f651319e8cea2f6913a6d81897be776be","size":1423,"filename":"A97Lx6chFTH9FkG_Io5Uc5oemCnN0d8O2NjR9d-Pr0w=.pem","location":"security-state-staging/intermediates/baa9711d-751b-4f52-b6fb-eae863fd4185.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"A97Lx6chFTH9FkG/Io5Uc5oemCnN0d8O2NjR9d+Pr0w=","crlite_enrolled":false,"id":"abb039f2-2555-43ce-acd5-8385099aac50","last_modified":1562025725454},{"schema":1562025723206,"derHash":"sM1q57niDsX4MP7gH2ZtXZDm4inQa8RqMKzO3+yIlkg=","subject":"CN=GlobalSign ECC CloudSSL CA - SHA384 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTEwLwYDVQQDEyhHbG9iYWxTaWduIEVDQyBDbG91ZFNTTCBDQSAtIFNIQTM4NCAtIEcz","whitelist":false
,"attachment":{"hash":"de1af3b87a33aa08369966e57403b2c34643335f40db514a7afc6b97b106c162","size":1394,"filename":"jvkkZQCW-mhUvg-i2GTn-E3FaOYoVhJ1eCS-o6Q4yNk=.pem","location":"security-state-staging/intermediates/9cc4ce11-6d6f-43c7-bb98-74044eaff317.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jvkkZQCW+mhUvg+i2GTn+E3FaOYoVhJ1eCS+o6Q4yNk=","crlite_enrolled":false,"id":"64bc9cda-86f9-4b20-91ec-08b77c65c922","last_modified":1562025723952},{"schema":1562025722450,"derHash":"fAkS5d6EeLuG6OpGulrmXcOHC878vC9GeV7uz2SM++c=","subject":"CN=DigiCert Extended Validation CA G3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNVBAMTIkRpZ2lDZXJ0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgRzM=","whitelist":false,"attachment":{"hash":"a9b8d926d5c6840a9c7cfbb16d22ea65f23628c6fdb4af615cb30e7d3ceaa1f1","size":1158,"filename":"26Ut6iLcm-3yJllopC51FzYrG4EvCSFIv9j5aRSvwvk=.pem","location":"security-state-stagin
g/intermediates/d9eb8ff7-9305-49b0-b4e6-9b4a86ebd7f6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"26Ut6iLcm+3yJllopC51FzYrG4EvCSFIv9j5aRSvwvk=","crlite_enrolled":true,"id":"afc3f6a7-6865-4035-9978-68f1eaa2e5dc","last_modified":1562025723199},{"schema":1562025721682,"derHash":"daZZy9u+bJV+VBTbB4ySEm9jQ4IYnaG/XAojgP4MAVQ=","subject":"SERIALNUMBER=201902,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTAy","whitelist":false,"attachment":{"hash":"4b65325d9d02469390d5b023e714e4e9c753ef0799e3f6a10e5916619c16dcc1","size":2333,"filename":"UwHbo6A5SENp-x9peFd6eLRH2pPK2OEh1Opi66naGmE=.pem","location":"security-state-staging/intermediates/3c472536-c16a-4f6a-8075-bc11e7725343.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UwHbo6A5SENp+x9peFd6eLRH2pPK2OEh1Opi66naGmE=","crlite_enrolled":false,"id":"8b83b14e-f66d-4d00-b7e1-4b8f9a
dff491","last_modified":1562025722443},{"schema":1562025718618,"derHash":"pIeewPNs+EtvLth65X7juUoHhcaGIjjNRUgQhNFS6xg=","subject":"CN=QuoVadis Global SSL ICA G2,O=QuoVadis Limited,C=BM","subjectDN":"ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMg==","whitelist":false,"attachment":{"hash":"95a08802015a5ec4188aae43d624318718b33b1845abd2cc08cde2dd08795dda","size":1898,"filename":"tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=.pem","location":"security-state-staging/intermediates/c20f4e11-fb50-446a-a3bf-298dcc6d3e94.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=","crlite_enrolled":true,"id":"d60313ed-86f7-4c58-b298-f728a4d599dd","last_modified":1562025719366},{"schema":1562025714026,"derHash":"zxCWu5Mj2XLcMktnNx3AT/nYGPgyX5sUJPr/xIYWF94=","subject":"CN=MilleniumSign Client Certificate CA RSA R3,O=MilleniumSign Limited,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGMMQswCQYDVQ
QGEwJNVTEYMBYGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTMwMQYDVQQDDCpNaWxsZW5pdW1TaWduIENsaWVudCBDZXJ0aWZpY2F0ZSBDQSBSU0EgUjM=","whitelist":false,"attachment":{"hash":"66dc6cdcca92c736db22d6b0528e851eca29640b778a93b8e2ca01e136e44de9","size":2597,"filename":"rxjVY4zcTYKtIONSk7n6L7MrJYe_ND2NwaXtNQUP5TM=.pem","location":"security-state-staging/intermediates/73e81b8a-cb82-42dc-a82c-b44aa5531cff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rxjVY4zcTYKtIONSk7n6L7MrJYe/ND2NwaXtNQUP5TM=","crlite_enrolled":false,"id":"f4577da3-a2f0-4bf9-8805-1bf7390a8200","last_modified":1562025714778},{"schema":1562025713265,"derHash":"M9VzWYMfh3VObnVda1tW5+cSl93f6h1jlwhmBCgPb/w=","subject":"CN=Cybertrust Japan Secure Server CA,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MF4xCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEqMCgGA1UEAxMhQ3liZXJ0cnVzdCBKYXBhbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"3
d3d273966feacef23b9bad6f99c08f1cc7d487295361ce8cc0b10c724baf67a","size":1711,"filename":"bVyC1r63wwzb47rnbZ46v-604DOoFUXTp4JA0srlZRE=.pem","location":"security-state-staging/intermediates/aa91ff40-8753-4ea6-bc6c-9c2f51e7c6a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bVyC1r63wwzb47rnbZ46v+604DOoFUXTp4JA0srlZRE=","crlite_enrolled":true,"id":"03556fa4-abec-492c-a31c-149b44f3f991","last_modified":1562025714019},{"schema":1562025711764,"derHash":"hDJGhhPZjK3s3wgWxJ6it/aZ9KEc7AD1eMK6NnsmHAg=","subject":"CN=XiPS CA,O=XiPS,C=JP","subjectDN":"MC4xCzAJBgNVBAYTAkpQMQ0wCwYDVQQKEwRYaVBTMRAwDgYDVQQDEwdYaVBTIENB","whitelist":false,"attachment":{"hash":"3b65f8702240ac2d635ce5225969970a6e8557d2b9dd5eb165f96cadc14bfdc6","size":1455,"filename":"aqVWvShe1mzkhWFbetNw9nGqpsrVqF3oxvVKvhsIlK8=.pem","location":"security-state-staging/intermediates/5190658d-b50b-4f85-9700-87cd6e9064bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aqVWvShe1mzkhWFbetNw9nGqpsrVqF3oxvVKvhsIlK8=","crlite_e
nrolled":false,"id":"f181d5e2-48b8-4d91-a36f-3d0f2d8ee54b","last_modified":1562025712505},{"schema":1562025711016,"derHash":"H/7OCWgvhwJKKkSyyYex/M7jsrXPAh788jhpIkpMoVQ=","subject":"CN=Sectigo ECC Extended Validation Secure Server CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGRMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxOTA3BgNVBAMTMFNlY3RpZ28gRUNDIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"fd85716a6add00125b582d3433c00b0de6d6b0b552bfd0c8ca14d4b009f89167","size":1374,"filename":"tMfg7Fo2Cq1tZyZLF7qjiWh-5J3kMiUXlIyn4Vr5nX4=.pem","location":"security-state-staging/intermediates/41bc169c-72dd-4bf8-b3cb-64ed94baec4a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tMfg7Fo2Cq1tZyZLF7qjiWh+5J3kMiUXlIyn4Vr5nX4=","crlite_enrolled":true,"id":"c6c4f0ce-0b29-4979-9287-aeced0243644","last_modified":1562025711756},{"schema":1562025708768,"d
erHash":"jSKvzLIsm24kJnzkILKZZVyB9dceKs/5B/5SqqU3qFg=","subject":"SERIALNUMBER=201802,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODAy","whitelist":false,"attachment":{"hash":"102da7f31c535ea34d89635c806e2f2a5b759361e5b43ab595e6034e13660279","size":2333,"filename":"60YC4wjR2aMWmgm6s6gc7QNiw4QMHharRlBVWIH_dEE=.pem","location":"security-state-staging/intermediates/4afbb779-dbbc-4b0b-89c7-7381a2898294.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"60YC4wjR2aMWmgm6s6gc7QNiw4QMHharRlBVWIH/dEE=","crlite_enrolled":false,"id":"9f54a066-75df-4d37-ade1-4dde85e658ea","last_modified":1562025709507},{"schema":1562025708011,"derHash":"FwFvanA1ZeKKsd9+Kai5iNLjW42DKBeh+TediK1xFBE=","subject":"SERIALNUMBER=201801,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMT
Q2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE4MDE=","whitelist":false,"attachment":{"hash":"e366da3a353529ab9e5aa4af9c4efab7baca0c8c3d39aac37cc5493de9185065","size":2337,"filename":"r1BqawCRtfiaTeSiVNjGZXvqScB9gfO7G-0GeWVXm80=.pem","location":"security-state-staging/intermediates/32f8564a-c764-4da5-a3f7-7bfa055ea02f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"r1BqawCRtfiaTeSiVNjGZXvqScB9gfO7G+0GeWVXm80=","crlite_enrolled":false,"id":"514257fc-5422-4e69-b26c-e204e375c4a0","last_modified":1562025708760},{"schema":1562025707263,"derHash":"JbdJ1yKw/IhOac9afqobCx/vHiWdbQfwi3mOb++CPgI=","subject":"CN=eMudhra RSA Client Authentication and Secure Email CA,O=eMudhra Technologies Limited,L=Bengaluru,ST=Karnataka,C=IN","subjectDN":"MIGcMQswCQYDVQQGEwJJTjESMBAGA1UECBMJS2FybmF0YWthMRIwEAYDVQQHEwlCZW5nYWx1cnUxJTAjBgNVBAoTHGVNdWRocmEgVGVjaG5vbG9naWVzIExpbWl0ZWQxPjA8BgNVBAMTNWVNdWRocmEgUlNBIENsaWVudCBBdXRoZW50aWNhdGlvbiBhbmQgU2VjdXJlIEVtYWlsIENB","whitelist
":false,"attachment":{"hash":"c27ec82343f0d00259fda513c138c7d65d666bc8fe8ef949140eb37491534dd1","size":2182,"filename":"iBP3IIWrGNTEuOlANBTEQYR6YtaX4fTgxoiY4wfOsAE=.pem","location":"security-state-staging/intermediates/549b17f7-c9e3-4a71-a5d4-4b62bb4e1916.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iBP3IIWrGNTEuOlANBTEQYR6YtaX4fTgxoiY4wfOsAE=","crlite_enrolled":false,"id":"c68ae40e-0221-459c-9b5b-4816b26eec06","last_modified":1562025708004},{"schema":1562025706478,"derHash":"dcWz8B/R9RosRHq3x4XXLmn6nEcsCFcefq3zuOq65ww=","subject":"CN=Entrust Certification Authority - L1M,OU=See www.entrust.net/legal-terms+OU=(c) 2014 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTQgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFN","whitelist":false,"attachme
nt":{"hash":"0f6a7a76e82068b37ee6c3f29a6d0c18baf727d5d7df2bb42b93f0257d84d61a","size":1853,"filename":"VYZwGiJkq3NNo1YRI2RGiSTI1mqTWG8zDcRf1_KAN6I=.pem","location":"security-state-staging/intermediates/4c299a33-dc8e-4885-82a2-d1b50cc80a72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VYZwGiJkq3NNo1YRI2RGiSTI1mqTWG8zDcRf1/KAN6I=","crlite_enrolled":true,"id":"d372a7cc-1a5d-4429-8b38-67272cb151ed","last_modified":1562025707255},{"schema":1562025704941,"derHash":"0E25J8ZjqoyFPVRxbdbcKksv75w64b+yUER/xdd3Hlc=","subject":"CN=Entrust Extended Validation Code Signing CA - EVCS1,OU=See www.entrust.net/legal-terms+OU=(c) 2015 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIHIMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTUgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MTwwOgYDVQQDEzNFbnRydXN0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZSBTaWduaW5nIENBIC0gRVZDUzE=","whitelist"
:false,"attachment":{"hash":"1bf84b7a3f77f8f67f9e51d9336139cbd80e4db10cc4953df2414b0be4f645fe","size":1861,"filename":"GcPkbBB-ik0_z7Ti-5ln9eO4LtiY-qTd63BI9Hcr__o=.pem","location":"security-state-staging/intermediates/0e96ba5e-bdf5-4987-9558-5a42128bc3f2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GcPkbBB+ik0/z7Ti+5ln9eO4LtiY+qTd63BI9Hcr//o=","crlite_enrolled":true,"id":"a2bd91d4-dd54-4a7c-92d7-9fff7bf0db8c","last_modified":1562025705694},{"schema":1562025703410,"derHash":"wzO2FjiwMV+oAcziHMTqlu9/ZaOZlFAYapnRm7IBKPc=","subject":"CN=Yandex CA,OU=Yandex Certification Authority,O=Yandex LLC,C=RU","subjectDN":"MF8xCzAJBgNVBAYTAlJVMRMwEQYDVQQKEwpZYW5kZXggTExDMScwJQYDVQQLEx5ZYW5kZXggQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxEjAQBgNVBAMTCVlhbmRleCBDQQ==","whitelist":false,"attachment":{"hash":"af258c6dfdfa092e5143efddb130a9995d357d1ad61ae4f796479ef04168a7a4","size":1674,"filename":"LNFe-yc4_NZbJVynpxAeAd-brU3EPwGbtwF6VeUjI_Y=.pem","location":"security-state-staging/intermediates/479968c7
-7027-4f7e-8b5c-3222fd1e1b98.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LNFe+yc4/NZbJVynpxAeAd+brU3EPwGbtwF6VeUjI/Y=","crlite_enrolled":true,"id":"bf9d3f01-d8b6-4d86-8653-747e081c93a4","last_modified":1562025704179},{"schema":1562025701871,"derHash":"KkG6gZ62Elr1y0uLDp6VTs55jCp+5D3Nr305WYfE1VI=","subject":"CN=AlwaysOnSSL TLS RSA CA G1,OU=Domain Validated SSL,O=CertCenter AG,C=DE","subjectDN":"MGgxCzAJBgNVBAYTAkRFMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEiMCAGA1UEAxMZQWx3YXlzT25TU0wgVExTIFJTQSBDQSBHMQ==","whitelist":false,"attachment":{"hash":"60ae06b06554f13d49fcd4ab75f5917d8c57dc17bd11f157428e11c66db10d22","size":1670,"filename":"DOdL2thyQw2ljWo5qhqUbm1_3EZBtYXxLKw14G9PO30=.pem","location":"security-state-staging/intermediates/a5955525-beea-41cd-bc30-2fdc381e930d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DOdL2thyQw2ljWo5qhqUbm1/3EZBtYXxLKw14G9PO30=","crlite_enrolled":false,"id":"47d5ce96-0aef-4db0-a607-a2e1c9d545d8","last_
modified":1562025702639},{"schema":1562025701131,"derHash":"+WkIgIGfBs3MCy8iSyB/KvYAP7VzObhnmhYPqVII1i0=","subject":"CN=DigiCert Baltimore CA-2 G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGkRpZ2lDZXJ0IEJhbHRpbW9yZSBDQS0yIEcy","whitelist":false,"attachment":{"hash":"bd36d2274e9da51b8bdff6a5034236a8cd4be11b09a0484694bb0d5786f90c06","size":1581,"filename":"56higu_MFWb_c2b0avLE5oN2ECS2C43RvzSUgx_2xIE=.pem","location":"security-state-staging/intermediates/95cd362d-50b9-447c-9a65-f2618e6ef5a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"56higu/MFWb/c2b0avLE5oN2ECS2C43RvzSUgx/2xIE=","crlite_enrolled":true,"id":"25183d60-3420-4e98-9619-5f0eec8fee1d","last_modified":1562025701864},{"schema":1562025699565,"derHash":"vOtfbxkOdDBvdGmeK/bfPaO4MnTJTaYnMHfexjAkvCs=","subject":"CN=USERTrust Extended Validation Code Signing CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey
,C=US","subjectDN":"MIGQMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE2MDQGA1UEAxMtVVNFUlRydXN0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"00ea6e2039bc7a594fce068cab36473f438d4d297b6a0dc47aefbfa0e23e48d6","size":1845,"filename":"qmiXmivqVtgR0GyawcxUjKYGCU2FpsPYSvuOnjXIl7A=.pem","location":"security-state-staging/intermediates/72c86bfc-7240-48e0-8b9e-f36bed44515a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qmiXmivqVtgR0GyawcxUjKYGCU2FpsPYSvuOnjXIl7A=","crlite_enrolled":false,"id":"6a69c8b2-71af-4964-b1b2-8cf7a40252ae","last_modified":1562025700328},{"schema":1562025698800,"derHash":"e+x4J+BdGTHdgmia9rLxmj9eTHVu+hYr1wjJJ50ank4=","subject":"CN=Hellenic Academic and Research Institutions AdminCA R5,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGUMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc
3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxPzA9BgNVBAMTNkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQWRtaW5DQSBSNQ==","whitelist":false,"attachment":{"hash":"8ca53e2983ea3a48eebfa803f1747e95b415a1cb5d2480b8f436856a80d4faaa","size":2938,"filename":"AreUX-bchtedTom4SB7dY0hDFUCi6QqZHbrsRYdMV5w=.pem","location":"security-state-staging/intermediates/e9bb19e6-d0ac-490f-a20c-8c91408b1553.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AreUX+bchtedTom4SB7dY0hDFUCi6QqZHbrsRYdMV5w=","crlite_enrolled":true,"id":"002552b1-47b6-4410-a854-a48b4b40c244","last_modified":1562025699557},{"schema":1562025696418,"derHash":"gwy0Q+kSkB77qP+Pjhu86XAyqpEjjoGdi9bq/NWFLVA=","subject":"CN=SSLs.com ECC DV Secure Server CA,O=SSLs.com,L=Phoenix,ST=Arizona,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRAwDgYDVQQHEwdQaG9lbml4MREwDwYDVQQKEwhTU0xzLmNvbTEpMCcGA1UEAxMgU1NMcy5jb20gRUNDIERWIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"c384b3ab12ff6ea1b44a206f1afe0a9e2
94295d9b659f35735ad3b8f63df3777","size":1293,"filename":"dxXXi-wgMRVEkMxf8oNkW9S3knJacN3pyTKktpz6CO8=.pem","location":"security-state-staging/intermediates/e058b6fd-1598-40fa-bfc8-88653250ee88.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dxXXi+wgMRVEkMxf8oNkW9S3knJacN3pyTKktpz6CO8=","crlite_enrolled":false,"id":"f9d6e124-3ddc-44f9-bbe1-dbb93eca419a","last_modified":1562025697178},{"schema":1562025694846,"derHash":"q97sUxSQmPigsH79lys0Wom+3o7eaXXmG+le4Cbafvo=","subject":"CN=Actalis Client Authentication CA G1,O=Actalis S.p.A./03358520967,L=Milano,ST=Milano,C=IT","subjectDN":"MIGCMQswCQYDVQQGEwJJVDEPMA0GA1UECAwGTWlsYW5vMQ8wDQYDVQQHDAZNaWxhbm8xIzAhBgNVBAoMGkFjdGFsaXMgUy5wLkEuLzAzMzU4NTIwOTY3MSwwKgYDVQQDDCNBY3RhbGlzIENsaWVudCBBdXRoZW50aWNhdGlvbiBDQSBHMQ==","whitelist":false,"attachment":{"hash":"737f0f0ce1590b65bb7efa52f0521e84ec1ac16313c8b4c6cd288064af2d127d","size":2235,"filename":"YsqG87ugr7iITRNFFaHeNX5oMmY80JlEVuqBCxAhZAM=.pem","location":"security-state-staging/intermed
iates/5df58a07-e383-4a1a-8af4-9471aa61c013.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YsqG87ugr7iITRNFFaHeNX5oMmY80JlEVuqBCxAhZAM=","crlite_enrolled":true,"id":"621a2382-280e-48de-b859-5293ba5379b7","last_modified":1562025695624},{"schema":1562025691799,"derHash":"Dc3Afsq7v+OKRga6ZjmHzbO9mBf8Z9HdDPCUrIyieH0=","subject":"CN=RapidSSL CA - G2,O=GeoTrust Inc.,C=US","subjectDN":"MEAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRkwFwYDVQQDExBSYXBpZFNTTCBDQSAtIEcy","whitelist":false,"attachment":{"hash":"aa7fa595813e97a484acd6547bac20c9e71b2d410cc8c1411ce7c8dff477d7d9","size":1561,"filename":"ECmYCLPqKAHbhvlT_55ArJLWPUg2ET7VnEs9qxe4WMY=.pem","location":"security-state-staging/intermediates/954d8841-1fdb-4c14-b270-208ca50318c9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ECmYCLPqKAHbhvlT/55ArJLWPUg2ET7VnEs9qxe4WMY=","crlite_enrolled":false,"id":"43b0aa37-7f19-4ef9-a14a-884ae615c7ad","last_modified":1562025692543},{"schema":1562025690289,"derHash":"6Y3cwNFYh2g2zUt
q2CbES/ClmjY4ls4mbJ8ObO3AQLw=","subject":"CN=SSL.com EV Code Signing Intermediate CA RSA R3,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxNzA1BgNVBAMMLlNTTC5jb20gRVYgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBDQSBSU0EgUjM=","whitelist":false,"attachment":{"hash":"32169e8329c248fa74da3ecdba2cb2ab5ddb103e65d9b25269226afcf1726058","size":2442,"filename":"A0PvmC7MDwMStpG2AMOTBGRwFSj4zczHavxDSYtMrUU=.pem","location":"security-state-staging/intermediates/29e6ec48-04e0-4511-8814-f046fc5fd80b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"A0PvmC7MDwMStpG2AMOTBGRwFSj4zczHavxDSYtMrUU=","crlite_enrolled":false,"id":"2195f4e0-79ea-4388-98b0-6f42f8589dc9","last_modified":1562025691031},{"schema":1562025688012,"derHash":"sFR/1Gj7tuM3/gGwEINOU7TFsSZJ7O52+uw4uGQPiHg=","subject":"CN=Sectigo RSA Pro Series Secure Server CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGIMQswCQYDVQQ
GEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxMDAuBgNVBAMTJ1NlY3RpZ28gUlNBIFBybyBTZXJpZXMgU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"21a5a5d98c08860c8bbdac09ecacbf28db1bf7fd896db33c56327c2680b27302","size":1699,"filename":"xTMa5n3gNYAxLuPmUb1OHXP8yMoC1p7qRTc2QnDh85w=.pem","location":"security-state-staging/intermediates/680c172b-fc67-4690-b97d-d1dea9a9f9be.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xTMa5n3gNYAxLuPmUb1OHXP8yMoC1p7qRTc2QnDh85w=","crlite_enrolled":false,"id":"dce12f32-7494-4a0b-a01f-b3b7fcaa5481","last_modified":1562025688751},{"schema":1562025687263,"derHash":"3izLCHRurwKZjmyV4ko9LPtv9KPUHq+/g/1XAGby8qg=","subject":"CN=Network Solutions OV Server CA 2,O=Network Solutions L.L.C.,L=Herndon,ST=VA,C=US","subjectDN":"MHoxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJWQTEQMA4GA1UEBxMHSGVybmRvbjEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMSkwJwYDVQQDEyBOZXR3b3JrIFNvbHV0aW9ucyBPViBTZXJ2ZXIgQ0EgM
g==","whitelist":false,"attachment":{"hash":"523a86b5180b5ec7c1414d69ac133130ee5d4575bd013804765541e369aae790","size":2150,"filename":"hIBbkSty62Y4PvvLLkYxEHhqoAK2s9JgMSFHh6HeR60=.pem","location":"security-state-staging/intermediates/97e3a8c1-f036-4137-9c18-5bdaae60b5d3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hIBbkSty62Y4PvvLLkYxEHhqoAK2s9JgMSFHh6HeR60=","crlite_enrolled":true,"id":"fdf54b28-a69b-460f-a7af-12df7c5b6620","last_modified":1562025688004},{"schema":1562025682694,"derHash":"7gnUnHz0QYQNpRWNDnDUxsrrT8z+Z1juTMRccaKH3zk=","subject":"CN=Shuidi Webtrust SSL Organization Validated,O=Shanghai Ping An Credit Reference Company Limited,C=CN","subjectDN":"MH4xCzAJBgNVBAYTAkNOMTowOAYDVQQKDDFTaGFuZ2hhaSBQaW5nIEFuIENyZWRpdCBSZWZlcmVuY2UgQ29tcGFueSBMaW1pdGVkMTMwMQYDVQQDDCpTaHVpZGkgV2VidHJ1c3QgU1NMIE9yZ2FuaXphdGlvbiBWYWxpZGF0ZWQ=","whitelist":false,"attachment":{"hash":"f975da322d7fcdc38e3cb51f4091077525b9e851b700830f29f444cceea7c7ca","size":1788,"filename":"bQEpVS_P2TaJB
IhgpEXBC8jHqXLloS9b4EkKf3WILE8=.pem","location":"security-state-staging/intermediates/08ed8214-4b33-43b4-8ba3-b97456144534.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bQEpVS/P2TaJBIhgpEXBC8jHqXLloS9b4EkKf3WILE8=","crlite_enrolled":true,"id":"5ac2630d-d43f-4a21-8de4-363eea88f44e","last_modified":1562025683468},{"schema":1562025681943,"derHash":"SyTFIcR2AOg4AKP/DC1Y3ALIF3732ml8WoDB1IZ6Zt0=","subject":"CN=KPN CM PKIoverheid EV CA,O=KPN Corporate Market B.V.,C=NL","subjectDN":"MFQxCzAJBgNVBAYTAk5MMSIwIAYDVQQKDBlLUE4gQ29ycG9yYXRlIE1hcmtldCBCLlYuMSEwHwYDVQQDDBhLUE4gQ00gUEtJb3ZlcmhlaWQgRVYgQ0E=","whitelist":false,"attachment":{"hash":"a099dffc591861b7aafbe0f0a05c8b1f7bf81f559c01699413024d9884a31de1","size":2422,"filename":"LTKzfVX5csoVECsYSoKgWD8fCxvpkV_QvnpzmSXD67E=.pem","location":"security-state-staging/intermediates/133d0516-cda0-41bf-b11e-001d82752fbb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LTKzfVX5csoVECsYSoKgWD8fCxvpkV/QvnpzmSXD67E=","crlite_enrolled":fal
se,"id":"571566e8-e55e-4901-b8d3-2549845c752d","last_modified":1562025682686},{"schema":1562025681184,"derHash":"12QgV8oX4AY1zEEFPxSRmYSIjmVwvi2Wah+ug6ZKTjA=","subject":"CN=Thawte Class 3 ECC CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGFRoYXd0ZSBDbGFzcyAzIEVDQyBDQSBHMQ==","whitelist":false,"attachment":{"hash":"19920e1734805d1433e4ddbcc6556c5621f82552ecd3b1267802075ffe89b5bc","size":1118,"filename":"74qDh4tduGxF1WQBec7yb2TVAkVDQcZtSGFT6Fv2rKU=.pem","location":"security-state-staging/intermediates/b6b109d9-029d-47cb-9143-2b3f88a80822.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"74qDh4tduGxF1WQBec7yb2TVAkVDQcZtSGFT6Fv2rKU=","crlite_enrolled":false,"id":"511368c0-9bad-4168-ba0e-8752f57a500e","last_modified":1562025681935},{"schema":1562025678880,"derHash":"tBq4Rcq025yx/mUFdl82oIaK3F30GbOJeftqT+QTH3A=","subject":"CN=TrustAsia DV SSL CA - G5,OU=Symantec Trust Ne
twork+OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MIGXMQswCQYDVQQGEwJDTjElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxITAfBgNVBAMTGFRydXN0QXNpYSBEViBTU0wgQ0EgLSBHNQ==","whitelist":false,"attachment":{"hash":"3bf080b95af149ffd2e506772a96b0a2877c5d8652f00df4e6bcc0cbb8a66cd9","size":1930,"filename":"IiSbZ4pMDEyXvtl7Lg8K3FNmJcTAhKUTrB2FQOaAO_s=.pem","location":"security-state-staging/intermediates/92184c22-dea5-4c8a-a75f-4d675f372117.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IiSbZ4pMDEyXvtl7Lg8K3FNmJcTAhKUTrB2FQOaAO/s=","crlite_enrolled":false,"id":"acd0d2d4-f089-4bc5-b759-b139cb3901cc","last_modified":1562025679624},{"schema":1562025678128,"derHash":"CQ3xIgpg6Ohl+GB7miS8O+ANkz1Dj7aGoxc978W/u0A=","subject":"CN=SecureTrust Timestamping CA\\, Level 1,O=SecureTrust,L=Chicago,ST=Illinois,C=US","subjectDN":"MHcxLTArBgNVBAMTJFNlY3VyZVRydXN0IFRpbWVzdGFtcGluZ
yBDQSwgTGV2ZWwgMTEUMBIGA1UEChMLU2VjdXJlVHJ1c3QxEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"4b45073fb2635b629bbf1095fb23e052ca68b981e23461115b479b6f22314bac","size":1691,"filename":"j2P1Z0mLSp4GAoBeesMfnj__nZWEBzdTPjXQKs135uY=.pem","location":"security-state-staging/intermediates/94b365b9-ee57-47ab-ae3e-0869f15a6ffc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"j2P1Z0mLSp4GAoBeesMfnj//nZWEBzdTPjXQKs135uY=","crlite_enrolled":false,"id":"7b52d53f-2f70-4371-93de-fb4749b36a27","last_modified":1562025678867},{"schema":1562025677364,"derHash":"Pzr5ycwsdZnvj23XylFs/BeX19EgAiVPO/0NTQ/p3oY=","subject":"CN=thawte SHA256 SSL CA,O=thawte\\, Inc.,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xHTAbBgNVBAMTFHRoYXd0ZSBTSEEyNTYgU1NMIENB","whitelist":false,"attachment":{"hash":"b784117d8a3ab57799dc2c072d17609dee8c92bc8067b1e11b8a4900f0e83e05","size":1711,"filename":"_36ymPAVaJl3QDyB1lUkVf9GqJNug0R8JJPDN
6348p8=.pem","location":"security-state-staging/intermediates/4e0ed124-2d83-43f1-9448-6fb4dd45e482.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/36ymPAVaJl3QDyB1lUkVf9GqJNug0R8JJPDN6348p8=","crlite_enrolled":true,"id":"943e3610-ed29-496d-9a3e-cbb01e1ef005","last_modified":1562025678120},{"schema":1562025675802,"derHash":"EL7dxICqJ1Y0gLG8qrbCW1KZXqg26aKs6D+PWSBuJJY=","subject":"CN=New Mexico Health Information Collaborative CA,OU=Orion Health Direct Secure Messaging,O=New Mexico Health Information Collaborative,C=US","subjectDN":"MIGrMQswCQYDVQQGEwJVUzE0MDIGA1UEChMrTmV3IE1leGljbyBIZWFsdGggSW5mb3JtYXRpb24gQ29sbGFib3JhdGl2ZTEtMCsGA1UECxMkT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nMTcwNQYDVQQDEy5OZXcgTWV4aWNvIEhlYWx0aCBJbmZvcm1hdGlvbiBDb2xsYWJvcmF0aXZlIENB","whitelist":false,"attachment":{"hash":"3b860277584fea9df4295aab0745f897464dbf5e91296f9d2538f97974e21939","size":2349,"filename":"1m6_yYaaSZddN2cNjj0VawaRiHpS64DzwthprWkjdg8=.pem","location":"security-state-staging/in
termediates/86f2c550-3b2e-4b7e-af76-e2becc64f74f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1m6/yYaaSZddN2cNjj0VawaRiHpS64DzwthprWkjdg8=","crlite_enrolled":false,"id":"f0a27a30-b268-4bf4-b255-1744ec057719","last_modified":1562025676587},{"schema":1562025673533,"derHash":"2N9+EYPW3vVh2E1W5iGm82oGXccX85Wbs7r8gkVW1Iw=","subject":"CN=NII Open Domain S/MIME CA,O=National Institute of Informatics,L=Academe,C=JP","subjectDN":"MG8xCzAJBgNVBAYTAkpQMRAwDgYDVQQHEwdBY2FkZW1lMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxIjAgBgNVBAMTGU5JSSBPcGVuIERvbWFpbiBTL01JTUUgQ0E=","whitelist":false,"attachment":{"hash":"4e6542a6648b4213a588d591b628e5dc92a54b95e08df2450f8821dc95d1784d","size":1654,"filename":"F9TkBe88zcRKkRsEqLE6JxhxN-bsw3hDKVMLUDn2y1M=.pem","location":"security-state-staging/intermediates/e43ae758-2dfb-4c9a-928e-c083c6da465e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F9TkBe88zcRKkRsEqLE6JxhxN+bsw3hDKVMLUDn2y1M=","crlite_enrolled":false,"id":"da5348e6-
9e70-459c-bb07-1d2af71e7daf","last_modified":1562025674279},{"schema":1562025672771,"derHash":"6cUco5FHtXOPZPg1Jp0DTBAEc3VaQWnpbB/CNGmCGw4=","subject":"SERIALNUMBER=201820,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODIw","whitelist":false,"attachment":{"hash":"d2d13671c68a60835e1e652999025d0de6c631132ed3998cf5f6ee83d3144875","size":2333,"filename":"mL7LZxrYZ14X6ReGlhJRjYKddvqFCFZVLs-CL3gWAb8=.pem","location":"security-state-staging/intermediates/7338f0e5-344e-473a-93cb-121d6783b136.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mL7LZxrYZ14X6ReGlhJRjYKddvqFCFZVLs+CL3gWAb8=","crlite_enrolled":false,"id":"b9608c79-4ea9-44ef-8289-87b4489939bf","last_modified":1562025673525},{"schema":1562025670493,"derHash":"DOv5fR+rxkdTeZ96mlCMfF8rWLko+xs83GxBCcDPLpk=","subject":"CN=Thawte SGC CA - G2,O=Thawte\\, Inc.,C=US","subjectDN":"MEEx
CzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxUaGF3dGUsIEluYy4xGzAZBgNVBAMTElRoYXd0ZSBTR0MgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"484ba258f69f5a37429f7d0b9ef2ef46b4d8b05206ce0450b1081e696c815fe5","size":1723,"filename":"W6zRQBarVwwnzzEuDHuqu0dzg_srzfCimk7kZe_lXt0=.pem","location":"security-state-staging/intermediates/c3d071a4-89cc-4281-9735-9bdbad9e3f93.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"W6zRQBarVwwnzzEuDHuqu0dzg/srzfCimk7kZe/lXt0=","crlite_enrolled":false,"id":"d5dd4bbc-e6c1-4112-8b6a-c0dd8f5aed77","last_modified":1562025671254},{"schema":1562025669735,"derHash":"75E4mTZU35LS+1hg4o3ogYqfSdtW7LaJpnp/wtWIHdI=","subject":"CN=DigiCert Secure Site Korea ECC CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKjAoBgNVBAMTIURpZ2lDZXJ0IFNlY3VyZSBTaXRlIEtvcmVhIEVDQyBDQQ==","whitelist":false,"attachment":{"hash":"4b5bb15272048ea3f749dc2fa5eba0a04f9588364d8744af5fa74ba1eeced218","
size":1410,"filename":"DqywqWwTJGFOkcrnV9IPNGtEO_GJMB1Y28mAQyChmRY=.pem","location":"security-state-staging/intermediates/9b369138-ca7e-43fa-806c-9e6cd4beea06.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DqywqWwTJGFOkcrnV9IPNGtEO/GJMB1Y28mAQyChmRY=","crlite_enrolled":false,"id":"df60b489-c782-4306-b537-e7d0761c45ae","last_modified":1562025670486},{"schema":1562025668215,"derHash":"VTJKmDJRL8bJnxW/Dp7T1r60OYzO4ZS3/4SdltkTDUQ=","subject":"CN=GDCA TrustAUTH R4 Extended Validation SSL CA,O=GUANG DONG CERTIFICATE AUTHORITY CO.\\,LTD.,C=CN","subjectDN":"MHgxCzAJBgNVBAYTAkNOMTIwMAYDVQQKDClHVUFORyBET05HIENFUlRJRklDQVRFIEFVVEhPUklUWSBDTy4sTFRELjE1MDMGA1UEAwwsR0RDQSBUcnVzdEFVVEggUjQgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTU0wgQ0E=","whitelist":false,"attachment":{"hash":"b7f589fd332a96773c813b272dcd486bc1231918f0643ed0662f171680cc3963","size":2093,"filename":"LA_cQZEhZA_J3pK28of_Jf7Wn0WmfSQvp4eYJW5o8NQ=.pem","location":"security-state-staging/intermediates/f42f0088-3a96-4549-833e-5948b8098639.
pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LA/cQZEhZA/J3pK28of/Jf7Wn0WmfSQvp4eYJW5o8NQ=","crlite_enrolled":true,"id":"eee3bb7d-8e10-46cc-af2c-14e1ec4763e3","last_modified":1562025668953},{"schema":1562025667477,"derHash":"WBTmy1Tq6VND2FmZKgFjD1krFVrxdSQx48G/OwVWJlA=","subject":"CN=CSP SSL Service CA 6,O=CENTRAL SECURITY PATROLS CO.\\, LTD.,L=Shinjuku-ku,ST=Tokyo,C=JP","subjectDN":"MH8xCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzEUMBIGA1UEBxMLU2hpbmp1a3Uta3UxKzApBgNVBAoTIkNFTlRSQUwgU0VDVVJJVFkgUEFUUk9MUyBDTy4sIExURC4xHTAbBgNVBAMTFENTUCBTU0wgU2VydmljZSBDQSA2","whitelist":false,"attachment":{"hash":"ea11110864b5c9817abbf5aa566a8057805deaf75f9481b604f2331ea70e98dc","size":2138,"filename":"q7drg9v6vXmd5nzhVcopuDRYMQ_LMZeqBynfhpYbHOk=.pem","location":"security-state-staging/intermediates/df60022f-853f-4111-a78b-4f89480bba48.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q7drg9v6vXmd5nzhVcopuDRYMQ/LMZeqBynfhpYbHOk=","crlite_enrolled":false,"id":"5042a531-0af6-42d0-813f-e9ce
d7e21003","last_modified":1562025668207},{"schema":1562025665967,"derHash":"t6roJv/3LeP9azGIGlYiHXB3w9VcZLOUDO37ev0NzjU=","subject":"CN=Sectigo RSA Document Signing CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGAMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxKDAmBgNVBAMTH1NlY3RpZ28gUlNBIERvY3VtZW50IFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"1afce422c54b00d30a903b931affa5c308ec9659de65c8cd7d9e68a0f9d83799","size":2190,"filename":"-Oc83wrXpHfiURh-sv35nT6kTLieb8t5m99W0qLHamc=.pem","location":"security-state-staging/intermediates/f747522e-7e39-4df3-aa39-2ef6d207958b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+Oc83wrXpHfiURh+sv35nT6kTLieb8t5m99W0qLHamc=","crlite_enrolled":false,"id":"a628600a-3dd2-4224-8076-be7ce8f30dae","last_modified":1562025666707},{"schema":1562025664465,"derHash":"G2gobe/OA2USpdrHbIq9Bn0zoH1ODe93BwicmAB14ZI=","subject":"CN=Highmark Tapestry HI
E CA,OU=Orion Health Direct Secure Messaging,O=High Mark HIE\\, LLC,C=US","subjectDN":"MHwxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJIaWdoIE1hcmsgSElFLCBMTEMxLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEhMB8GA1UEAxMYSGlnaG1hcmsgVGFwZXN0cnkgSElFIENB","whitelist":false,"attachment":{"hash":"5e734fa19464bfd827dba86f076eeb3d032d3ce3f019eee75129e92a6dd81e20","size":2284,"filename":"tvN1gIKzR86qPSQ2AwrqugmOi6GtrIpoHkme7sem91Y=.pem","location":"security-state-staging/intermediates/f6c02c5c-dc08-47eb-899a-ae6b83749d80.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tvN1gIKzR86qPSQ2AwrqugmOi6GtrIpoHkme7sem91Y=","crlite_enrolled":false,"id":"a6432f10-db63-4211-8287-ee5b3019add5","last_modified":1562025665206},{"schema":1562025663727,"derHash":"6tYvQrs2ndQ89hMawtjXLk+f7oXmnUXar/4yaqwqRvE=","subject":"CN=thawte ECC EV SSL CA,O=thawte\\, Inc.,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xHTAbBgNVBAMTFHRoYXd0ZSBFQ0MgRVYgU1NMIENB","whitelist":false,"attachme
nt":{"hash":"b9896b22533f91f08e44fd0d913e570893beda53a7ddaabc17bb5de4ac3715fa","size":1272,"filename":"v3yOKQDQnYnr9hQ5ns91kotLui5ZZWuKHuumsGg2skg=.pem","location":"security-state-staging/intermediates/7a20713d-c595-454a-aa10-6a71cb4cb5fc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"v3yOKQDQnYnr9hQ5ns91kotLui5ZZWuKHuumsGg2skg=","crlite_enrolled":false,"id":"9294ecd4-a4c2-4786-9f0b-a20345e54442","last_modified":1562025664458},{"schema":1562025662215,"derHash":"P7oKpJ+94cgUyoMIeO0Dx9JDI/Y0g+Ut7o/0LBU8I08=","subject":"CN=GlobeSSL EV Certification Authority 2,OU=Controlled by COMODO exclusively for Globe Hosting\\, Inc.,O=Globe Hosting\\, Inc.,L=Wilmington,ST=DE,C=US","subjectDN":"MIHAMQswCQYDVQQGEwJVUzELMAkGA1UECBMCREUxEzARBgNVBAcTCldpbG1pbmd0b24xHDAaBgNVBAoTE0dsb2JlIEhvc3RpbmcsIEluYy4xQTA/BgNVBAsTOENvbnRyb2xsZWQgYnkgQ09NT0RPIGV4Y2x1c2l2ZWx5IGZvciBHbG9iZSBIb3N0aW5nLCBJbmMuMS4wLAYDVQQDEyVHbG9iZVNTTCBFViBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAy","whitelist":false,"attachment":{"hash"
:"8081c701056c43713db349d2808d99c5a352629faf0a60a54c7e2008170fc91c","size":2276,"filename":"iQ6SmjjdklCphf7sBBL9m4lWWf44bngHmvy7B8dl6XQ=.pem","location":"security-state-staging/intermediates/a35dab3a-08bf-43e8-b264-b1f7fa410a12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iQ6SmjjdklCphf7sBBL9m4lWWf44bngHmvy7B8dl6XQ=","crlite_enrolled":true,"id":"4fc9e088-612e-4c87-9986-7ef73542a266","last_modified":1562025662944},{"schema":1562025661465,"derHash":"wGiop8wvCL4Omh3bDfAeL3rnm/5QMSLFUrt7M2of1vQ=","subject":"CN=LuxTrust SSL CA 5,O=LuxTrust S.A.,C=LU","subjectDN":"MEExCzAJBgNVBAYTAkxVMRYwFAYDVQQKDA1MdXhUcnVzdCBTLkEuMRowGAYDVQQDDBFMdXhUcnVzdCBTU0wgQ0EgNQ==","whitelist":false,"attachment":{"hash":"07e1eb74359b90ce357ff15b2837652122ed2943ca4724c19f4a3192da301b57","size":2288,"filename":"bcglypvVD9g3zJapYfU5_6QrN_GcvIy5NZ1p98WA-tU=.pem","location":"security-state-staging/intermediates/3be807ca-d51c-486c-9724-945c312574a2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bcgly
pvVD9g3zJapYfU5/6QrN/GcvIy5NZ1p98WA+tU=","crlite_enrolled":true,"id":"412b16c9-e9a4-4fdd-8e97-755cf0cd9015","last_modified":1562025662207},{"schema":1562025659950,"derHash":"CCskMEe/APWEQB9Ti1BLrp7AYOAH//KLFZwIQXBoZU4=","subject":"CN=GlobalSign Organization Validation CA - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTMwMQYDVQQDEypHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"e673e3e0c445d31eaaf7607090b13063ce93218b2424fad674db3bc682f6265e","size":1634,"filename":"OqqTlivI4taTCDJE1oq61tAsdnSQ_13Ibp0QKE1H7tc=.pem","location":"security-state-staging/intermediates/d2a682c5-e5d3-4d5f-8e12-1a3cbf600d6b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OqqTlivI4taTCDJE1oq61tAsdnSQ/13Ibp0QKE1H7tc=","crlite_enrolled":false,"id":"d5374ecb-80ce-47e5-b059-bece1cff031d","last_modified":1562025660705},{"schema":1562025658474,"derHash":"sZHt60y3cseYMVDAR1F/UL2SIcjLyTSaEdDMPn73K/0=","sub
ject":"CN=CA A7,O=DST,C=US","subjectDN":"MCsxCzAJBgNVBAYTAlVTMQwwCgYDVQQKEwNEU1QxDjAMBgNVBAMTBUNBIEE3","whitelist":false,"attachment":{"hash":"234f347bea5e6f979a5a03efb10ec2fdad80a05a5cf9ded51547fb01294a97f9","size":1114,"filename":"pIEW0Ptmy7_0EoTnwa5tDDgFuFD-p6-tNOU0O__34jM=.pem","location":"security-state-staging/intermediates/2df0a451-ff09-4261-a690-b21e121528de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pIEW0Ptmy7/0EoTnwa5tDDgFuFD+p6+tNOU0O//34jM=","crlite_enrolled":false,"id":"fb10dfd0-dceb-4cf8-99d9-966518cbbe69","last_modified":1562025659202},{"schema":1562025656956,"derHash":"cC25BNQaA4wMkpXPdD/DHy0OoXzEIou/z4Hle5oTmPk=","subject":"CN=COMODO ECC Extended Validation Code Signing CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGRMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE3MDUGA1UEAxMuQ09NT0RPIEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIENvZGUgU2lnbmluZyBDQQ==","whitelist":
false,"attachment":{"hash":"86ad7eec9fe49f2da6658c805ff49b8cd4c0d919c347cd6ee2446088aacb544b","size":1345,"filename":"WD9JjqhTQMxwDO7l8vVZLuQPr1qlVa6IiVp1QVlgeRM=.pem","location":"security-state-staging/intermediates/7ad82a21-1226-4e6c-a4d1-f54dc95a4952.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WD9JjqhTQMxwDO7l8vVZLuQPr1qlVa6IiVp1QVlgeRM=","crlite_enrolled":false,"id":"ff63e1e4-f2df-4c1f-912d-140d9482d281","last_modified":1562025657724},{"schema":1562025656215,"derHash":"vTgAKIBt7svIM2r4cLeat0/5gsKOPn/wnbI2MARL3tk=","subject":"CN=CrossTrust DV CA1,O=CrossTrust,C=JP","subjectDN":"MD4xCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpDcm9zc1RydXN0MRowGAYDVQQDExFDcm9zc1RydXN0IERWIENBMQ==","whitelist":false,"attachment":{"hash":"fec40cd025070029bdff6f3e4e23cc05a21fc2f02394834d05664e175bed593a","size":1475,"filename":"H7SdZc_IEjlBeqVzFuiez9bEZDA35H1qoMvWqNj3cTg=.pem","location":"security-state-staging/intermediates/9a1c5eae-ad1b-4c59-8e67-068aa1271cbe.pem","mimetype":"application/x-pem-file"}
,"pubKeyHash":"H7SdZc/IEjlBeqVzFuiez9bEZDA35H1qoMvWqNj3cTg=","crlite_enrolled":false,"id":"5229c4ed-b6d6-49aa-ac06-ff9409e3fe51","last_modified":1562025656948},{"schema":1562025655469,"derHash":"3MpxYWfwKaqaMJ7oyj/x9AF9Gh89GYG9/55a8/UDaCo=","subject":"CN=Booz Allen Hamilton BA CA 01,OU=TrustID,O=IdenTrust,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxEDAOBgNVBAsTB1RydXN0SUQxJTAjBgNVBAMTHEJvb3ogQWxsZW4gSGFtaWx0b24gQkEgQ0EgMDE=","whitelist":false,"attachment":{"hash":"909f0042606279a43c7d642c24bb37ea7161ec199ee60c8c634d754172b1ea23","size":2040,"filename":"UdncogVDGpmz7WJo4cgW3yRJEEC_B94goUWpdotXqis=.pem","location":"security-state-staging/intermediates/5c0368c0-92c7-4bdf-a1bd-6456c1a67422.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UdncogVDGpmz7WJo4cgW3yRJEEC/B94goUWpdotXqis=","crlite_enrolled":false,"id":"f48c0b76-fdb4-48ef-8265-f5936ac95931","last_modified":1562025656207},{"schema":1562025654686,"derHash":"t2ovsWJyFiIq+ksCXPTaey5Oyh7HvPdcXH8E+gnIJjo
=","subject":"CN=TrustOcean SSL CA - ECC - 2018,OU=ECC Domain Validation Secure Server - 2018,O=TrustOcean Ltd.,L=Denver,ST=CO,C=US","subjectDN":"MIGjMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPVHJ1c3RPY2VhbiBMdGQuMTMwMQYDVQQLEypFQ0MgRG9tYWluIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciAtIDIwMTgxJzAlBgNVBAMTHlRydXN0T2NlYW4gU1NMIENBIC0gRUNDIC0gMjAxOA==","whitelist":false,"attachment":{"hash":"8563213d0beedc0bfe2aeaf6eea186a61ed41cc23c14a763c1ba2c84517a3a00","size":1362,"filename":"PKd-ld-FuxfPZ5wgPJhWwsUah7IUyvrd0dVMuPAcCHw=.pem","location":"security-state-staging/intermediates/dcc8872f-13cc-416b-b26c-72c8733ead48.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PKd+ld+FuxfPZ5wgPJhWwsUah7IUyvrd0dVMuPAcCHw=","crlite_enrolled":true,"id":"90f1d6dd-0284-4beb-9154-f681754b0384","last_modified":1562025655462},{"schema":1562025647187,"derHash":"6sJBwEQKNoMBETgzNrwgysdAnCD26I1PhPSCe+kZ4zg=","subject":"CN=e-Szigno SSL CA 2014,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN
":"MHgxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEdMBsGA1UEAwwUZS1Temlnbm8gU1NMIENBIDIwMTQxHzAdBgkqhkiG9w0BCQEWEGluZm9AZS1zemlnbm8uaHU=","whitelist":false,"attachment":{"hash":"a0cfba79ba47c056ad89715d67ca81adb743a5af504f88e8533bb086aa28c2a6","size":2268,"filename":"DuvXKXobTisU7ufJpGVYzPTgBJ3Vjeta2kpZtG9qXc8=.pem","location":"security-state-staging/intermediates/632fc789-8c70-460e-a724-365f1a2f468b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DuvXKXobTisU7ufJpGVYzPTgBJ3Vjeta2kpZtG9qXc8=","crlite_enrolled":true,"id":"b199af11-7ea2-49db-8145-22cd545ac30f","last_modified":1562025647917},{"schema":1562025646434,"derHash":"j3zEVemlUHgEEgZV1xORhiU+Q7AEIuc0JjoHadL4n30=","subject":"CN=ACCVCA-130,OU=PKIACCV,O=ACCV,C=ES","subjectDN":"MEMxEzARBgNVBAMMCkFDQ1ZDQS0xMzAxEDAOBgNVBAsMB1BLSUFDQ1YxDTALBgNVBAoMBEFDQ1YxCzAJBgNVBAYTAkVT","whitelist":false,"attachment":{"hash":"c7a672c81ca3a88f9f1026542e8a440443a8270bb0d1179ac7f197bfae1d5169","size":2686,"filena
me":"Y4wPdQMFev6SAz6Zy7McH45VYp5uADyuOVtFnivRtu4=.pem","location":"security-state-staging/intermediates/45659546-7b93-4a34-9576-89edb332e236.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y4wPdQMFev6SAz6Zy7McH45VYp5uADyuOVtFnivRtu4=","crlite_enrolled":false,"id":"fdbfe4a6-8fe3-4795-a5fa-49db19f65800","last_modified":1562025647179},{"schema":1562025644937,"derHash":"IxukAuKLNJXzvgythweNm4+9hgQRFq+bgEfnsc/6gtA=","subject":"CN=Medicity Direct CA,OU=www.medicity.com,O=Medicity Inc.,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1NZWRpY2l0eSBJbmMuMRkwFwYDVQQLExB3d3cubWVkaWNpdHkuY29tMRswGQYDVQQDExJNZWRpY2l0eSBEaXJlY3QgQ0E=","whitelist":false,"attachment":{"hash":"a8fe64d502cfb57f08bdf2b32b5b90927e134d559471c8aad19c666b7d29ebbc","size":2154,"filename":"Kcbe6mdTGz7kGQXiuqkZB-C5l9pbNG9BpLKyFU6s8MI=.pem","location":"security-state-staging/intermediates/1638d79d-0fa1-4196-828b-4100a5c9634d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Kcbe6mdTGz7kGQXiuqkZB+C5l9pbNG9BpL
KyFU6s8MI=","crlite_enrolled":false,"id":"c64e8b9f-acff-4734-8fac-8fd5810cd9cd","last_modified":1562025645673},{"schema":1562025640410,"derHash":"D9marh/81dnwrXbt3cvva4hMyFwWv8+ktSRhVdZZftY=","subject":"CN=EC-Ciutadania,OU=Serveis P\u00fablics de Certificaci\u00f3,O=CONSORCI ADMINISTRACIO OBERTA DE CATALUNYA,C=ES","subjectDN":"MIGGMQswCQYDVQQGEwJFUzEzMDEGA1UECgwqQ09OU09SQ0kgQURNSU5JU1RSQUNJTyBPQkVSVEEgREUgQ0FUQUxVTllBMSowKAYDVQQLDCFTZXJ2ZWlzIFDDumJsaWNzIGRlIENlcnRpZmljYWNpw7MxFjAUBgNVBAMMDUVDLUNpdXRhZGFuaWE=","whitelist":false,"attachment":{"hash":"159d49dde4802a499bf0db5648ce2298fe56a96ce3f2e2800785445ea996088e","size":2097,"filename":"N2E0VULCCzFKdEp8VKghUqKDvpzc2iM_BQAAwtDlBw0=.pem","location":"security-state-staging/intermediates/df04e35c-a63e-447a-a80e-73770c3aef84.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"N2E0VULCCzFKdEp8VKghUqKDvpzc2iM/BQAAwtDlBw0=","crlite_enrolled":false,"id":"dca24481-e123-47e7-97bb-84d938fe8132","last_modified":1562025641172},{"schema":15620
25637342,"derHash":"d6vmXfS+lOXsIi/JBeEjP4x31rOuKTM0agwvw7Lx9WA=","subject":"CN=Oklahoma State Department of Health CA,OU=Orion Health Direct Secure Messaging,O=Oklahoma State Department of Health,C=US","subjectDN":"MIGbMQswCQYDVQQGEwJVUzEsMCoGA1UEChMjT2tsYWhvbWEgU3RhdGUgRGVwYXJ0bWVudCBvZiBIZWFsdGgxLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEvMC0GA1UEAxMmT2tsYWhvbWEgU3RhdGUgRGVwYXJ0bWVudCBvZiBIZWFsdGggQ0E=","whitelist":false,"attachment":{"hash":"03627595711bc45e6bb6e4689b2bbe75b2cea7c9fd224b0697209dadce2df2d3","size":2324,"filename":"xQRTlo6N9UfoVMjpnJGZtpJr06LdDBpWpY-8ECdpOkk=.pem","location":"security-state-staging/intermediates/f4576b6f-cb28-441b-aa43-161c2d12c329.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xQRTlo6N9UfoVMjpnJGZtpJr06LdDBpWpY+8ECdpOkk=","crlite_enrolled":false,"id":"797ff527-d050-47f9-8c3d-7f29381409db","last_modified":1562025638143},{"schema":1562025636604,"derHash":"ir/8+n0+Cd9TGnL/FkBls6bYCnfjPOxDbunT9g+EEzs=","subject":"CN=Inter
Continental Hotels Group RSA Client CA,O=Six Continents Hotels\\, Inc.,L=Dunwoody,ST=GA,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzELMAkGA1UECBMCR0ExETAPBgNVBAcTCER1bndvb2R5MSQwIgYDVQQKExtTaXggQ29udGluZW50cyBIb3RlbHMsIEluYy4xNDAyBgNVBAMTK0ludGVyQ29udGluZW50YWwgSG90ZWxzIEdyb3VwIFJTQSBDbGllbnQgQ0E=","whitelist":false,"attachment":{"hash":"5128156a66f41cfb94c396626f58c95d45092d39232a2feee7a7f2663ae33066","size":2138,"filename":"qv_cktSW8maQyApxu-hdyO0fqYE834dm-HuXQIPLkOo=.pem","location":"security-state-staging/intermediates/f700690a-57b2-42f5-8f69-7b97adf26565.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qv/cktSW8maQyApxu+hdyO0fqYE834dm+HuXQIPLkOo=","crlite_enrolled":false,"id":"1f3a6742-4807-4da5-8b58-7b88abdece12","last_modified":1562025637335},{"schema":1562025635854,"derHash":"SJzJ8M0OKTehCtlqI3XAvRAxs+zFS9Bk1YWMwGK0GxA=","subject":"SERIALNUMBER=201812,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1U
EChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODEy","whitelist":false,"attachment":{"hash":"209782e4f2ac908d3abdd1e2c651c9a94332adacb8ef3bed6f67ee015f73a1f6","size":2333,"filename":"K_y7Bld60S98GQkoxgI2sf4UHNiS90hGcdg2ZT9Sv2g=.pem","location":"security-state-staging/intermediates/ccf20a3e-8818-446c-bec4-8f650112c804.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"K/y7Bld60S98GQkoxgI2sf4UHNiS90hGcdg2ZT9Sv2g=","crlite_enrolled":false,"id":"43c10a9f-ecd2-4c0b-b6c2-3c51ffbe80c8","last_modified":1562025636597},{"schema":1562025635117,"derHash":"RtO1D+3PjDa19nIjnMOi6eAu0V8zy9wMJiqGR4SUA/Q=","subject":"CN=USERTrust ECC Organization Validation Secure Server CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGZMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE/MD0GA1UEAxM2VVNFUlRydXN0IEVDQyBPcmdhbml6YXRpb24gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":fals
e,"attachment":{"hash":"0b8353c2d7776cd1f3b5e4ebc5145432dc3af3be23f68d2a3eaf204e02a02b17","size":1337,"filename":"kRGhnbdY7rR4yOa8G3EFT4gmen6uTLPFQPPk_s1vl-M=.pem","location":"security-state-staging/intermediates/ca9f4481-d288-4f5b-80c8-2bd10db0c543.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kRGhnbdY7rR4yOa8G3EFT4gmen6uTLPFQPPk/s1vl+M=","crlite_enrolled":false,"id":"a4586dee-7ea9-4b73-90f6-cb41b7b9cdfe","last_modified":1562025635846},{"schema":1562025634359,"derHash":"eqRdb1sU2rHGhEwZwoBOFLWBHm7eHwKwrvBlp7NZxo8=","subject":"CN=ATT Organization Validated CA 2019,OU=ATT Business Wi-Fi Services,O=ATT Services Inc,L=Austin,ST=Texas,C=US","subjectDN":"MIGcMQswCQYDVQQGEwJVUzEZMBcGA1UEChMQQVRUIFNlcnZpY2VzIEluYzEkMCIGA1UECxMbQVRUIEJ1c2luZXNzIFdpLUZpIFNlcnZpY2VzMQ8wDQYDVQQHEwZBdXN0aW4xDjAMBgNVBAgTBVRleGFzMSswKQYDVQQDEyJBVFQgT3JnYW5pemF0aW9uIFZhbGlkYXRlZCBDQSAyMDE5","whitelist":false,"attachment":{"hash":"ce151b1a5253a78fd23ad82efdd0ffb88b59b41f34a9871b6e2f3552df194f91","size":17
35,"filename":"YOMvMe2Iot921yxSyd-8wLY-a8b_zYZmd31zENECyFE=.pem","location":"security-state-staging/intermediates/412a704f-f9d7-4f8f-8eb9-faf3eb2b7c8d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YOMvMe2Iot921yxSyd+8wLY+a8b/zYZmd31zENECyFE=","crlite_enrolled":true,"id":"126186e4-fe3d-4610-a378-9d6ddff47030","last_modified":1562025635109},{"schema":1562025633607,"derHash":"ZeeA3/y1OHDqTtnhhLz5v8pGSEi00n5e7fY5GOabO4c=","subject":"CN=Don Dominio / MrDomain RSA OV CA,O=Soluciones Corporativas IP\\, SL,L=Manacor,ST=Illes Balears,C=ES","subjectDN":"MIGLMQswCQYDVQQGEwJFUzEWMBQGA1UECBMNSWxsZXMgQmFsZWFyczEQMA4GA1UEBxMHTWFuYWNvcjEnMCUGA1UEChMeU29sdWNpb25lcyBDb3Jwb3JhdGl2YXMgSVAsIFNMMSkwJwYDVQQDEyBEb24gRG9taW5pbyAvIE1yRG9tYWluIFJTQSBPViBDQQ==","whitelist":false,"attachment":{"hash":"14cfac3f01120e8fab0ace79a95549801b13c469346a2d0e6aee4c6c99a8f967","size":2170,"filename":"PDA9PcTMXiEjxDxKYS1P_SinvLjX1xMCDWv1_fCl8_Q=.pem","location":"security-state-staging/intermediates/27edf606-4cc9-
4094-b4bf-458c740217ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PDA9PcTMXiEjxDxKYS1P/SinvLjX1xMCDWv1/fCl8/Q=","crlite_enrolled":false,"id":"116c9082-ffba-4a57-92f9-73cd7e530aaa","last_modified":1562025634351},{"schema":1562025632851,"derHash":"ppxZlm67zf7H9P8CiMhv9gNW+nhgIIuTtDoJWwYAzB4=","subject":"CN=nazwaSSL,OU=http://nazwa.pl,O=nazwa.pl sp. z o.o.,C=PL","subjectDN":"MFgxCzAJBgNVBAYTAlBMMRwwGgYDVQQKDBNuYXp3YS5wbCBzcC4geiBvLm8uMRgwFgYDVQQLDA9odHRwOi8vbmF6d2EucGwxETAPBgNVBAMMCG5hendhU1NM","whitelist":false,"attachment":{"hash":"882b6da025cdfc61d89e03806a350163dfdfc251470ff6e5f8433ca8370adea9","size":1605,"filename":"AW6U8qPqk114rfl2sAhiEim2Pf0mq_Rb_BeWSlVAiP4=.pem","location":"security-state-staging/intermediates/4a692d29-8a7d-4aa6-b0fa-426ad6f59300.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AW6U8qPqk114rfl2sAhiEim2Pf0mq/Rb/BeWSlVAiP4=","crlite_enrolled":true,"id":"bbeb9d9e-3dd2-4546-8c96-d7fc9be4f2e6","last_modified":1562025633599},{"schema":15620256313
37,"derHash":"KaTsi8oy3ZHxEg3hT1u0OTVtSO2AEg3xo6hmF+pIS8g=","subject":"CN=KeyNet Systems ECC DV CA,O=KeyNet Systems LLC,L=Las Vegas,ST=Nevada,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMQ8wDQYDVQQIEwZOZXZhZGExEjAQBgNVBAcTCUxhcyBWZWdhczEbMBkGA1UEChMSS2V5TmV0IFN5c3RlbXMgTExDMSEwHwYDVQQDExhLZXlOZXQgU3lzdGVtcyBFQ0MgRFYgQ0E=","whitelist":false,"attachment":{"hash":"05956e2bbe03a04e21687f1c9ca0133edafbb9211cbc05d0b3a5a99a07c8284b","size":1297,"filename":"BUAXj7DRPY9FwGYzytth18HC8DBDa4DvU_tIIX5dMkI=.pem","location":"security-state-staging/intermediates/a89204d4-8ae2-4fce-b46a-2384b1364511.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BUAXj7DRPY9FwGYzytth18HC8DBDa4DvU/tIIX5dMkI=","crlite_enrolled":false,"id":"3e638609-9645-46cf-88c9-263cbcf1d0e0","last_modified":1562025632090},{"schema":1562025629816,"derHash":"UFG9aeGdbNA2FHlJrFu8+Zg0Vh8Rn2DceTgkjWHHe70=","subject":"CN=Sectigo RSA Code Signing CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MHwxCzAJBgNVBAYTAkd
CMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGDAWBgNVBAoTD1NlY3RpZ28gTGltaXRlZDEkMCIGA1UEAxMbU2VjdGlnbyBSU0EgQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"b8513c9c5b4db1eb407ce93a963c2fdb99d70689e74421029f245511fb2897fd","size":2125,"filename":"Ez_HDfkC0S25jJCRx4IUnR4y_p77QuYeiWPHVhWZbQU=.pem","location":"security-state-staging/intermediates/cbc4d51d-ac52-4ef3-8e1c-7c0fd3382973.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ez/HDfkC0S25jJCRx4IUnR4y/p77QuYeiWPHVhWZbQU=","crlite_enrolled":true,"id":"c2a4d5c5-1885-48b1-9bb9-b33f5686ec39","last_modified":1562025630576},{"schema":1562025629070,"derHash":"13N+Xy0//KQpkC6fOIz9bFlZzTWg/BA87i9+k9HGalI=","subject":"CN=DigiCert Assured ID TLS CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGkRpZ2lDZXJ0IEFzc3VyZWQgSUQgVExTIENB","whitelist":false,"attachment":{"hash":"3acfd29ff87e4c65c2f222ef3a
9d1cf2386bb9c35bc8466e5ff9d4b21ca177bf","size":1735,"filename":"wcEQuH5mngysd8OrgXuw0roT-SkrGkVZxVSpoNafgws=.pem","location":"security-state-staging/intermediates/0bd20a8e-99cf-4d4b-af90-c59deca2697a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wcEQuH5mngysd8OrgXuw0roT+SkrGkVZxVSpoNafgws=","crlite_enrolled":true,"id":"1a882256-e765-4db1-820b-0d4c76dcf9a5","last_modified":1562025629808},{"schema":1562025627540,"derHash":"M88fXJOW1+6egoOy529ADlBFBXXrFa0CyVbBxVdbGE0=","subject":"CN=MobileMD Direct Intermediate CA,OU=MobileMD,O=MobileMD Health Services,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMSEwHwYDVQQKExhNb2JpbGVNRCBIZWFsdGggU2VydmljZXMxETAPBgNVBAsTCE1vYmlsZU1EMSgwJgYDVQQDEx9Nb2JpbGVNRCBEaXJlY3QgSW50ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{"hash":"35d053969fc5821037b137191551940bcf7fc50bfa0647a305746da9e582adeb","size":2190,"filename":"KF8mfWmAHOhFnWmjw7qocu6GmfRi8m7LPwwcVgTMS7s=.pem","location":"security-state-staging/intermediates/a811cee7-9306-41ed-ac9d-dd0f6360c
358.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KF8mfWmAHOhFnWmjw7qocu6GmfRi8m7LPwwcVgTMS7s=","crlite_enrolled":false,"id":"59b4f0d3-d12e-4839-9c4d-373f62ed31ef","last_modified":1562025628306},{"schema":1562025626775,"derHash":"JTA8/QvxuqHvJIwp8HP//C58gVgu4jtFx/HDsy40Gtg=","subject":"CN=EAEko HAetako langileen CA - CA personal de AAPP vascas (2),OU=AZZ Ziurtagiri publikoa - Certificado publico SCA,O=IZENPE S.A.,C=ES","subjectDN":"MIGlMQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xOjA4BgNVBAsMMUFaWiBaaXVydGFnaXJpIHB1Ymxpa29hIC0gQ2VydGlmaWNhZG8gcHVibGljbyBTQ0ExRDBCBgNVBAMMO0VBRWtvIEhBZXRha28gbGFuZ2lsZWVuIENBIC0gQ0EgcGVyc29uYWwgZGUgQUFQUCB2YXNjYXMgKDIp","whitelist":false,"attachment":{"hash":"33e5893bceb45f8047a84fd02b68d534b9290eb9deebc53433c7defcf5607d2c","size":2572,"filename":"fIoFCop2r5Hw838PL7crV4ts16Lq1s1xjk7E-I98dE8=.pem","location":"security-state-staging/intermediates/9635a458-c14c-408e-9445-8e8074645a18.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fIo
FCop2r5Hw838PL7crV4ts16Lq1s1xjk7E+I98dE8=","crlite_enrolled":true,"id":"ca492503-140b-4ef0-895d-d6ffd21fe324","last_modified":1562025627531},{"schema":1562025624539,"derHash":"vD8DpDYkDtul+DcU9vZ340s3+bHwwIweVY2YHieeggk=","subject":"CN=RapidSSL SHA256 CA - G3,O=GeoTrust Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSAwHgYDVQQDExdSYXBpZFNTTCBTSEEyNTYgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"6e37822b18adbba04ed1ed6f1d2b14f9a4d268516dd949736146f64d645e0617","size":1496,"filename":"6X0iNAQtPIjXKEVcqZBwyMcRwq1yW60549axatu3oDE=.pem","location":"security-state-staging/intermediates/f9e93d0f-a61e-467e-8adb-526e38c507be.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6X0iNAQtPIjXKEVcqZBwyMcRwq1yW60549axatu3oDE=","crlite_enrolled":false,"id":"20d5332c-be89-418c-a8bb-b3fa2467c0f1","last_modified":1562025625274},{"schema":1562025623789,"derHash":"9kDlZDxAwfMp4QBDjijJV2ka+opT5AWjJvev63DCO8E=","subject":"CN=itsme Sign Issuing CA G1,O=QuoVadis Tr
ustlink BVBA,C=BE","subjectDN":"MG0xCzAJBgNVBAYTAkJFMRkwFwYDVQRhDBBOVFJCRS0wNTM3Njk4MzE4MSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQlZCQTEhMB8GA1UEAwwYaXRzbWUgU2lnbiBJc3N1aW5nIENBIEcx","whitelist":false,"attachment":{"hash":"b2592a909119953ff1445030e304e8ee3639a647ff3a126baef272b71727b5d0","size":2467,"filename":"nUS99ZApOt7vAjJaTRPLXupkkwz8777d3Be6QJ9XmXI=.pem","location":"security-state-staging/intermediates/db061d36-ae08-416c-9b85-54031ca3196d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nUS99ZApOt7vAjJaTRPLXupkkwz8777d3Be6QJ9XmXI=","crlite_enrolled":false,"id":"32e98d40-0e1a-4f96-bbd6-8cea5f34753c","last_modified":1562025624531},{"schema":1562025622305,"derHash":"HlW5BHmnN+eLVvOctXBRSisdy9mvJJwGGIaDeph8aVg=","subject":"CN=NII Open Domain Code Signing CA,O=National Institute of Informatics,L=Academe,C=JP","subjectDN":"MHUxCzAJBgNVBAYTAkpQMRAwDgYDVQQHEwdBY2FkZW1lMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxKDAmBgNVBAMTH05JSSBPcGVuIERvbWFpbiBDb2RlIFNpZ25pbmcg
Q0E=","whitelist":false,"attachment":{"hash":"1cf70e67f36acabb305f46fa93fe5f445a8d376d8408160bbec5c9104908fd83","size":1638,"filename":"m3mE8ZnK8HZ9jzJz9euIeftEUmi37GkgQPeuCCQJI8o=.pem","location":"security-state-staging/intermediates/d2643bff-aec0-4b5e-b8ae-f32d7a258f21.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m3mE8ZnK8HZ9jzJz9euIeftEUmi37GkgQPeuCCQJI8o=","crlite_enrolled":false,"id":"ba200c93-1e24-4cf0-b8ae-4f284461de5d","last_modified":1562025623035},{"schema":1562025620792,"derHash":"HMNYpt+gp2u1RwZg1487JfI8zWOVZn5JzPyCAdo9GS0=","subject":"CN=Certigna Entity CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MHsxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlESElNWU9USVMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxHTAbBgNVBGEMFE5UUkZSLTQ4MTQ2MzA4MTAwMDM2MRswGQYDVQQDDBJDZXJ0aWduYSBFbnRpdHkgQ0E=","whitelist":false,"attachment":{"hash":"61a81d4d9681c5c86696195f2dcb40c8e795f9b490e5f72a7fa8ab4d6fd0ada9","size":2507,"filename":"0Eiyrr-wFIp1JqShtXzNCtJt2yUU0-j_mDnLwk1-AHk=.pem","locat
ion":"security-state-staging/intermediates/bfaf2dab-dfcf-4771-bf64-700aa69c0281.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0Eiyrr+wFIp1JqShtXzNCtJt2yUU0+j/mDnLwk1+AHk=","crlite_enrolled":false,"id":"7c421e3b-f390-4235-af5f-e8a08ad5b7b3","last_modified":1562025621531},{"schema":1562025618556,"derHash":"VGyv+QYO7zD08+AiVfv1Ex5lfBcQyaZQAgEzqBi+wcg=","subject":"CN=GeoTrust EV SSL CA - G7,O=GeoTrust Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSAwHgYDVQQDExdHZW9UcnVzdCBFViBTU0wgQ0EgLSBHNw==","whitelist":false,"attachment":{"hash":"819ac09e5307805d7bca58b450e383b8d795a443c6fe0c3ad0f26bdea6357767","size":1906,"filename":"mSUoTJHVFJsXYTXqbA1e3I1MK46Hl_VXGBvp5bWWW4c=.pem","location":"security-state-staging/intermediates/abc5e6d5-4632-4219-b8c8-fd208ce1314d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mSUoTJHVFJsXYTXqbA1e3I1MK46Hl/VXGBvp5bWWW4c=","crlite_enrolled":false,"id":"cbbe38e9-ee0e-4003-9c25-ae1e817de1e1","last_modified":15620256
19303},{"schema":1562025617811,"derHash":"Zc+Tj9n7NCAMn235Pe1zqltxw2nMdKfEkfDkeh1edL4=","subject":"CN=MarketWare Server CA 2,O=MarketWare - Solu\u00e7\u00f5es para Mercados Digitais\\, Lda.,L=Lisboa,ST=Lisboa,C=PT","subjectDN":"MIGPMQswCQYDVQQGEwJQVDEPMA0GA1UECBMGTGlzYm9hMQ8wDQYDVQQHEwZMaXNib2ExPTA7BgNVBAoMNE1hcmtldFdhcmUgLSBTb2x1w6fDtWVzIHBhcmEgTWVyY2Fkb3MgRGlnaXRhaXMsIExkYS4xHzAdBgNVBAMTFk1hcmtldFdhcmUgU2VydmVyIENBIDI=","whitelist":false,"attachment":{"hash":"f386a64f34b7c17cb08c2a7db308298366857c0b6c8c079eb54b64e3e52da778","size":2174,"filename":"nDi1HIiT115x0MuCzNMX50C66I0SdrTtqTFxWKBs9TA=.pem","location":"security-state-staging/intermediates/db573702-d4d2-4f8b-8424-67deaebcb59b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nDi1HIiT115x0MuCzNMX50C66I0SdrTtqTFxWKBs9TA=","crlite_enrolled":true,"id":"564405bd-7e8b-4930-98d8-7e9a66a09631","last_modified":1562025618549},{"schema":1562025616317,"derHash":"eO4jersjVKpnyo+14r+puRegv1Pi87PKs9rOweLDYeE=","subject":"CN=Gehirn Man
aged Certification Authority - ECC OV,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIGCMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMTgwNgYDVQQDEy9HZWhpcm4gTWFuYWdlZCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDQyBPVg==","whitelist":false,"attachment":{"hash":"cacee93de389613e7f6636cfe013384ae68d256770ea28771d8a6196b104fee6","size":1321,"filename":"oARzv0l1Eo_Mizi_3scY3T6AQ1Zfy7sDSJO-oLT0O0g=.pem","location":"security-state-staging/intermediates/eec8e59e-ea66-4a29-82fe-6c948d312095.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oARzv0l1Eo/Mizi/3scY3T6AQ1Zfy7sDSJO+oLT0O0g=","crlite_enrolled":false,"id":"648ea664-8a0e-4b8c-b41f-de5c67be76d9","last_modified":1562025617054},{"schema":1562025614822,"derHash":"WKqSlhweA1BUrdpk6IO/rhshQ5y/etYeM/Z9xW4pX2o=","subject":"CN=National and Kapodistrian University of Athens CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGSMQswCQYDVQQGEwJHUjFEME
IGA1UECgw7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxPTA7BgNVBAMMNE5hdGlvbmFsIGFuZCBLYXBvZGlzdHJpYW4gVW5pdmVyc2l0eSBvZiBBdGhlbnMgQ0EgUjI=","whitelist":false,"attachment":{"hash":"5789381e4fdcbc89485d0d084b116ecc57eab7a3411841e4acba28a4454b7219","size":2207,"filename":"a-9SzP1XJW2jpz0QniNws25_KvsEBfsN9xrkka1dChc=.pem","location":"security-state-staging/intermediates/b5f529a5-f373-4883-8c9c-9d8f165824f1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"a+9SzP1XJW2jpz0QniNws25/KvsEBfsN9xrkka1dChc=","crlite_enrolled":true,"id":"2e2e2899-2ea5-4d68-b3d0-0c2c1ed211c9","last_modified":1562025615555},{"schema":1562025613331,"derHash":"WMldF5B+dD4SHO9H1IBk17OvMrUUvqPvdNKQpS1wuWw=","subject":"CN=Trend Micro CA,O=Trend Micro Inc,C=US","subjectDN":"MEAxCzAJBgNVBAYTAlVTMRgwFgYDVQQKDA9UcmVuZCBNaWNybyBJbmMxFzAVBgNVBAMMDlRyZW5kIE1pY3JvIENB","whitelist":false,"attachment":{"hash":"33f2077021a616b53e063fdb38858c8315f1fa59cc4a6030f8c6a347c168de22","size":1459,
"filename":"qczcaUM72BvrELfBo2n2WlYnwx7A5w4eV0dgYXXe1Bk=.pem","location":"security-state-staging/intermediates/263841e5-4107-4fe7-9f25-0ff66db32773.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qczcaUM72BvrELfBo2n2WlYnwx7A5w4eV0dgYXXe1Bk=","crlite_enrolled":false,"id":"e5df1dae-0e71-4c7f-8ed1-4926351e8dea","last_modified":1562025614072},{"schema":1562025611813,"derHash":"Js3s3ROkRt6hoLehqs8Xu4BRtoUJ6ZAK0lQdBFSgP/U=","subject":"SERIALNUMBER=201914,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTE0","whitelist":false,"attachment":{"hash":"33f2d6b3dab769a53325ffbb9013e62f16a787048391ec59be9889656248794f","size":2333,"filename":"PaxxgvdBQW_hDijSBTN-csj_vsanAzF9gsjoa6ic5w4=.pem","location":"security-state-staging/intermediates/ed61ec49-d0f8-412c-9387-8b9b3409e56f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PaxxgvdBQW
/hDijSBTN+csj/vsanAzF9gsjoa6ic5w4=","crlite_enrolled":false,"id":"17cb40e4-54d0-4f35-b236-070f94f267f4","last_modified":1562025612546},{"schema":1562025611073,"derHash":"ml7s7px9iYvYHcO/Bm2vau+42xxZZ2IG0r/daCMSxvY=","subject":"CN=Thawte RSA CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xGzAZBgNVBAMTElRoYXd0ZSBSU0EgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"5ab0596aa7dd3f7d6cf1c6d2df754c46aa3f5872ff617e4f9336bde88379619b","size":1634,"filename":"S0mHTmqv2QhJEfy5vyPVERSnyMEliJzdC8RXduOjhAs=.pem","location":"security-state-staging/intermediates/289fd54c-d874-4e7c-966c-99955002ec14.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S0mHTmqv2QhJEfy5vyPVERSnyMEliJzdC8RXduOjhAs=","crlite_enrolled":true,"id":"d280501b-539b-4cdb-87d5-dd02b98025b3","last_modified":1562025611805},{"schema":1562025606564,"derHash":"p7dwK9Ju9/BnodOXXsFyC0bW4B/RAayTQi7rDW3iXzI=","subject":"CN=Sec
ureCore RSA DV CA,O=SecureCore,L=OSAKA,ST=OSAKA,C=JP","subjectDN":"MGExCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVPU0FLQTEOMAwGA1UEBxMFT1NBS0ExEzARBgNVBAoTClNlY3VyZUNvcmUxHTAbBgNVBAMTFFNlY3VyZUNvcmUgUlNBIERWIENB","whitelist":false,"attachment":{"hash":"b3944ffa540226fa1a9e53714f5357803617cd5ef1176c921cf08e37c5a1f503","size":2113,"filename":"CrV-DCuu__rnw7hOV-VT2e3k97fReT_N7f4coJTynlM=.pem","location":"security-state-staging/intermediates/fb5448bb-8cd8-4448-abe0-785a2c069d60.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CrV+DCuu//rnw7hOV+VT2e3k97fReT/N7f4coJTynlM=","crlite_enrolled":true,"id":"9e84ec55-93b1-412d-b1ec-dd9a2fa6d851","last_modified":1562025607312},{"schema":1562025605823,"derHash":"YvubbNJjO5LZHbJkzmeKmxnFdUFKsQrUbRV/B7uibv8=","subject":"CN=GeoTrust Secure Site Starter DV SSL CA - G1,OU=Domain Validated SSL,O=GeoTrust\\, Inc.,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5HZW9UcnVzdCwgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxNDAyBgNVBAMTK0dlb1RydXN0IFNlY3VyZ
SBTaXRlIFN0YXJ0ZXIgRFYgU1NMIENBIC0gRzE=","whitelist":false,"attachment":{"hash":"7fbb720621a1148fa1c1e47a4c221a58b477ab69560c12e200af131f56d400e8","size":1743,"filename":"INyHMxZOziIERyiIqDLB0VLBBRvnFowehelheu9bdZY=.pem","location":"security-state-staging/intermediates/4da4baa6-3ba3-4f18-b318-e556016cb10e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"INyHMxZOziIERyiIqDLB0VLBBRvnFowehelheu9bdZY=","crlite_enrolled":false,"id":"a2c4298c-6d7d-4e67-82d6-bba4f0fb4f9e","last_modified":1562025606556},{"schema":1562025602757,"derHash":"pesHtCHfz+1qnF4ucq5xBeKayGdaiWsrUijjVXYfr7Y=","subject":"CN=Digi-Sign CA Digi-ID,O=Digi-Sign Limited,L=Dublin,ST=County Dublin,C=IE","subjectDN":"MHExCzAJBgNVBAYTAklFMRYwFAYDVQQIEw1Db3VudHkgRHVibGluMQ8wDQYDVQQHEwZEdWJsaW4xGjAYBgNVBAoTEURpZ2ktU2lnbiBMaW1pdGVkMR0wGwYDVQQDExREaWdpLVNpZ24gQ0EgRGlnaS1JRA==","whitelist":false,"attachment":{"hash":"49174c7fb3a07c4ee6bdd8f6d6366142a26863f173d39f278180b7de9c574c7a","size":2121,"filename":"lSWsBqNnQ74d1GG7ux7T
hmLopqXERYuHcDLuXouxsyU=.pem","location":"security-state-staging/intermediates/975bf464-9aac-4785-9db4-bf6f599f9dfc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lSWsBqNnQ74d1GG7ux7ThmLopqXERYuHcDLuXouxsyU=","crlite_enrolled":false,"id":"c9ba0d28-eb09-4617-9b02-8109a727b905","last_modified":1562025603528},{"schema":1562025601957,"derHash":"XxqCwJy64jnU4/BwTJcHVVR+U+PPKQ+Uef5+mGZf7w8=","subject":"CN=Abbott Laboratories Secure Code Signing CA,O=Abbott Laboratories Inc.,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMSEwHwYDVQQKExhBYmJvdHQgTGFib3JhdG9yaWVzIEluYy4xMzAxBgNVBAMTKkFiYm90dCBMYWJvcmF0b3JpZXMgU2VjdXJlIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"c53bc185adf65cc1c3297afab1f667bf42bc5da4e68e8e1b18794a9385973297","size":1878,"filename":"Vgcwr9WVl0WnsAApvKgxDZM4Q7HznM_pP7X9u4ESS1I=.pem","location":"security-state-staging/intermediates/3ae5fbf0-e0db-481a-baad-a316a45d945a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vgcwr9WVl0WnsAApvKgxDZM4Q7HznM/p
P7X9u4ESS1I=","crlite_enrolled":false,"id":"776078c7-791c-4564-8ce2-eb27e585f7b1","last_modified":1562025602746},{"schema":1562025600414,"derHash":"0roL/sQ/p4A4YM3mszd0IbH1Y+wSS1HZCEFbDpNzI+Y=","subject":"CN=QuoVadis Time-Stamping Authority CA G1,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MHkxCzAJBgNVBAYTAk5MMRcwFQYDVQRhDA5OVFJOTC0zMDIzNzQ1OTEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xLzAtBgNVBAMMJlF1b1ZhZGlzIFRpbWUtU3RhbXBpbmcgQXV0aG9yaXR5IENBIEcx","whitelist":false,"attachment":{"hash":"26a4176be473a14f31de29d1da3b12f02f12be34041e77269c5979e00db43293","size":2418,"filename":"6o4kS9EEt21KPoxCFXRoGxaVWapw68wCcDeVHVAcpik=.pem","location":"security-state-staging/intermediates/1b3a0d87-9421-4607-a1d3-7692122d7547.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6o4kS9EEt21KPoxCFXRoGxaVWapw68wCcDeVHVAcpik=","crlite_enrolled":false,"id":"a14b051b-7d8e-4751-a0be-ea7845db3846","last_modified":1562025601175},{"schema":1562025597404,"derHash":"9ooj65c3qMdE7mcRLy/AJKrcUDu7sE8lze1PJ
XbJNIU=","subject":"CN=The Code Project Secure Email (S/mime) CA,O=The Code Project,C=CA","subjectDN":"MFwxCzAJBgNVBAYTAkNBMRkwFwYDVQQKExBUaGUgQ29kZSBQcm9qZWN0MTIwMAYDVQQDEylUaGUgQ29kZSBQcm9qZWN0IFNlY3VyZSBFbWFpbCAoUy9taW1lKSBDQQ==","whitelist":false,"attachment":{"hash":"e34a2353b9ea221ccf98cccc3d39c3562f1daceb776f42298bbc37afdd4fc54a","size":1752,"filename":"xtYGt02m4umLJCyy0kfaczCboF12WILjsGOb1umDfX0=.pem","location":"security-state-staging/intermediates/6a587b25-39c3-4ac6-95d6-78df25a40d97.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xtYGt02m4umLJCyy0kfaczCboF12WILjsGOb1umDfX0=","crlite_enrolled":false,"id":"9533ae64-4d6c-4fcd-bdaa-fbcf2aaf2775","last_modified":1562025598133},{"schema":1562025596661,"derHash":"Xyt9WujUNLYt/EOqPjZ+iF993t2aQ6QtGGk5BAD7MUY=","subject":"SERIALNUMBER=201904,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0
GA1UEBRMGMjAxOTA0","whitelist":false,"attachment":{"hash":"c993ae91e5b73aeec9e80128be6a3eb8363cce5a8b6c955a24aa9c094b3764b8","size":2333,"filename":"_Eevym_zrvrIKVw8p8WS5pcOrGxY2QoyYX8eTm_Qcns=.pem","location":"security-state-staging/intermediates/98f269e6-220e-4aac-b625-a3681b2126a9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/Eevym/zrvrIKVw8p8WS5pcOrGxY2QoyYX8eTm/Qcns=","crlite_enrolled":false,"id":"72c868f6-7898-4524-8d73-77ed61951b94","last_modified":1562025597396},{"schema":1562025595171,"derHash":"zo4QUBzRiNIn73StCjQtl3ZDvS3j8hcWG17S/7BYEac=","subject":"CN=Don Dominio / MrDomain RSA Client CA,O=Soluciones Corporativas IP\\, SL,L=Manacor,ST=Illes Balears,C=ES","subjectDN":"MIGPMQswCQYDVQQGEwJFUzEWMBQGA1UECBMNSWxsZXMgQmFsZWFyczEQMA4GA1UEBxMHTWFuYWNvcjEnMCUGA1UEChMeU29sdWNpb25lcyBDb3Jwb3JhdGl2YXMgSVAsIFNMMS0wKwYDVQQDEyREb24gRG9taW5pbyAvIE1yRG9tYWluIFJTQSBDbGllbnQgQ0E=","whitelist":false,"attachment":{"hash":"b532c1793ab65aa624c09708e7ebac6c4a98303c286d5b180809d182d9d5
44f3","size":2162,"filename":"bZXUokABdjKvAlZHkn4TVSe5U8voAYQQKs7PqX-3PkA=.pem","location":"security-state-staging/intermediates/0f7549c3-9c5e-48fd-b0c1-8791638b7e0c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bZXUokABdjKvAlZHkn4TVSe5U8voAYQQKs7PqX+3PkA=","crlite_enrolled":false,"id":"41d33eac-fc49-4e82-8895-d1613fe6d882","last_modified":1562025595903},{"schema":1562025594407,"derHash":"FDY4IlF+KYmwh9DJpC7vE0p3S9CyoGZNRVr3hLwI9NA=","subject":"CN=Trusted Secure Certificate Authority 5,O=Corporation Service Company,L=Wilmington,ST=DE,C=US","subjectDN":"MIGGMQswCQYDVQQGEwJVUzELMAkGA1UECBMCREUxEzARBgNVBAcTCldpbG1pbmd0b24xJDAiBgNVBAoTG0NvcnBvcmF0aW9uIFNlcnZpY2UgQ29tcGFueTEvMC0GA1UEAxMmVHJ1c3RlZCBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDU=","whitelist":false,"attachment":{"hash":"8a6494ec2603c5d7fa49b972528dee5f7e5ba0c42c069f06d9aeab2c7f90c7fa","size":2166,"filename":"PzYLl5g5RZkQsPcG4YUX6vzXQf86rOUEcSAhn7JxzNo=.pem","location":"security-state-staging/intermediates/e96bc34e-fa49
-44d4-8bed-d0620ff47065.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PzYLl5g5RZkQsPcG4YUX6vzXQf86rOUEcSAhn7JxzNo=","crlite_enrolled":true,"id":"f9fe88db-9db6-4383-b17b-864a507f7e22","last_modified":1562025595163},{"schema":1562025591410,"derHash":"tnb/oxeeiBIJOhter+6HauemqvIxB42tG/shzSiTdko=","subject":"CN=GlobalSign RSA OV SSL CA 2018,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1HbG9iYWxTaWduIFJTQSBPViBTU0wgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"4a0e56bd3b0d5e1f85efac014a7e99c83489b11c4826b602e42b144c4f6e91da","size":1553,"filename":"hETpgVvaLC0bvcGG3t0cuqiHvr4XyP2MTwCiqhgRWwU=.pem","location":"security-state-staging/intermediates/3f1383e4-4860-4b8b-bf8b-eac0b66ceb61.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hETpgVvaLC0bvcGG3t0cuqiHvr4XyP2MTwCiqhgRWwU=","crlite_enrolled":true,"id":"5ec3f078-2414-46ca-aaf8-e9630ae2109a","last_modified":1562025592175},{"schema":1562025590674,"derHa
sh":"CQM/4jmW/kpZxMD1I9JWDjHf5MF9jqFAPUKalx9L1lo=","subject":"CN=WoTrus OV SSL Pro CA,O=WoTrus CA Limited,C=CN","subjectDN":"MEgxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1RydXMgQ0EgTGltaXRlZDEdMBsGA1UEAxMUV29UcnVzIE9WIFNTTCBQcm8gQ0E=","whitelist":false,"attachment":{"hash":"0e6c76a6d70346ff239c0a9320d8ebda8b750ae57610ff62a44fb8e221319a31","size":1861,"filename":"zACNb3_D6r-GIH58_Q4EDalNSChXFVVFbUJICvq7SIQ=.pem","location":"security-state-staging/intermediates/b1a606fe-50b5-4825-a5cc-14e050d9c0ae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zACNb3/D6r+GIH58/Q4EDalNSChXFVVFbUJICvq7SIQ=","crlite_enrolled":true,"id":"633e504e-6010-4677-ba99-3052463cf02f","last_modified":1562025591403},{"schema":1562025589184,"derHash":"d3T6t1SJgiYrL+u0hmQ5sw+Ey7LRA1ed+esZ10tn/u4=","subject":"SERIALNUMBER=201919,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBR
MGMjAxOTE5","whitelist":false,"attachment":{"hash":"61e72b9bfdca750e62c110c66bf30a3e69326deb6d793993bc4a88ba37a6e64d","size":2333,"filename":"tMuaH8MohBI08k1zTBkJ34YXWEOTQLc48i1wOMHbmdE=.pem","location":"security-state-staging/intermediates/37c38782-e0a8-4754-9a6f-655f6a72e086.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tMuaH8MohBI08k1zTBkJ34YXWEOTQLc48i1wOMHbmdE=","crlite_enrolled":false,"id":"1c7d8111-6d2b-43cc-9d4f-8ac30ea4fe05","last_modified":1562025589921},{"schema":1562025586185,"derHash":"cQAks3vZ8OFTfBikwg+aMcS0hdEkjGQ/ILTADzcWuoU=","subject":"CN=DigiCert EV Server CA G4,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCAgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBFViBTZXJ2ZXIgQ0EgRzQ=","whitelist":false,"attachment":{"hash":"bfda2140f26102c7934ae20783fd8234f2b2f5bbbfe9aa291f7d91bb80b6078a","size":1951,"filename":"rSOteFVbBeX8qJ_1s6WFayDHdgaEKLjbWQS5PZDkdvg=.pem","location":"security-stat
e-staging/intermediates/5b85823c-270a-414c-ab27-7a62b77143d1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rSOteFVbBeX8qJ/1s6WFayDHdgaEKLjbWQS5PZDkdvg=","crlite_enrolled":true,"id":"66f62e6d-0c5f-4d24-80c0-b99829e532cb","last_modified":1562025586928},{"schema":1562025585399,"derHash":"cJvk6rCjchI28osquA92/aJRMwsygvUV6l4LbHmuZyk=","subject":"CN=RUB-Chipcard CA G2,O=Ruhr-Universitaet Bochum,C=DE","subjectDN":"ME0xCzAJBgNVBAYTAkRFMSEwHwYDVQQKDBhSdWhyLVVuaXZlcnNpdGFldCBCb2NodW0xGzAZBgNVBAMMElJVQi1DaGlwY2FyZCBDQSBHMg==","whitelist":false,"attachment":{"hash":"5b3189496744b3baca10b9e288920f3c93f91a4cb9238792c8a84cb327282206","size":1947,"filename":"1LhrLd2v38EP1hLDpF6VhNqMjyRxu9cRaZL0r98r04o=.pem","location":"security-state-staging/intermediates/f9495b7a-e1af-4b97-bc3c-208ef9ce1a7e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1LhrLd2v38EP1hLDpF6VhNqMjyRxu9cRaZL0r98r04o=","crlite_enrolled":false,"id":"25ac7183-b98c-44a4-b022-6d05aaf05e96","last_modified":1562025586178}
,{"schema":1562025584632,"derHash":"TRCTIKejRvitcC3/8ad1jvy2E1v7L6OCQRclafAzLIM=","subject":"CN=COMODO Extended Validation Code Signing CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGNMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDEzMDEGA1UEAxMqQ09NT0RPIEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"8e7517a2e51225db3888dceafbd6ffe6b128140e61feec75ab7d84d1927194ce","size":1849,"filename":"7Hf58eWzQ6pqWMtrBn80g3KJoxUpyCJ8oVoYdu4VSr0=.pem","location":"security-state-staging/intermediates/cc2c49d0-3326-4e77-88c2-da405ccf308c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7Hf58eWzQ6pqWMtrBn80g3KJoxUpyCJ8oVoYdu4VSr0=","crlite_enrolled":false,"id":"3d00ad4a-5f8d-4f77-b665-1308530ca883","last_modified":1562025585390},{"schema":1562025581604,"derHash":"8DdiFAXg81ZQfiOfrdZHhC07UIV8PP+ECFkXT3L2/Rg=","subject":"CN=DPDHL User CA I3,O=Deutsche Pos
t,L=Bonn,ST=Nordrhein-Westfalen,C=DE","subjectDN":"MG0xCzAJBgNVBAYTAkRFMRwwGgYDVQQIExNOb3JkcmhlaW4tV2VzdGZhbGVuMQ0wCwYDVQQHEwRCb25uMRYwFAYDVQQKEw1EZXV0c2NoZSBQb3N0MRkwFwYDVQQDExBEUERITCBVc2VyIENBIEkz","whitelist":false,"attachment":{"hash":"aa3ab0230e44f321498e54339387e4d5d251084f2d2be80234f5d282fff8ef58","size":4356,"filename":"U24C-tQ5-xqZXjJsjWmKnA3KCkx84xBNSPzVCzpko_A=.pem","location":"security-state-staging/intermediates/cc9371be-8d27-4657-9e1d-c89b3c6e3e4a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"U24C+tQ5+xqZXjJsjWmKnA3KCkx84xBNSPzVCzpko/A=","crlite_enrolled":false,"id":"cf8eb580-18e7-4ef4-851c-a3845809da47","last_modified":1562025582348},{"schema":1562025578554,"derHash":"F7TgrQSCo9An9YvfyKm9Vfdcq8jfBZpAVqFsyN7lM+8=","subject":"CN=University of Macedonia CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHsxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEmMCQGA1U
EAxMdVW5pdmVyc2l0eSBvZiBNYWNlZG9uaWEgQ0EgUjE=","whitelist":false,"attachment":{"hash":"7827466be49a6ae3b8dcac1383f0357eeae5507bb485fc1f144a41c7f8a6aa64","size":2519,"filename":"Q3wUDE_KGR_qsDlo3z3iA92yNVJJgXo3pVbkHKiMh-g=.pem","location":"security-state-staging/intermediates/529eeb7b-a51a-4cc6-b552-835ff75ba795.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Q3wUDE/KGR/qsDlo3z3iA92yNVJJgXo3pVbkHKiMh+g=","crlite_enrolled":true,"id":"ce7d0110-67fe-41f1-92bf-c23fa3f7d1e5","last_modified":1562025579301},{"schema":1562025577754,"derHash":"hZlo+SeLTcgu4w/RGKXSl9KEtofLZM+XVauKnTjytw8=","subject":"CN=Trustwave Domain Validation SHA256 CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGvMQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE3MDUGA1UEAxMuVHJ1c3R3YXZlIERvbWFpbiBWYWxpZGF0aW9uIFNIQTI1NiBDQSwgTGV2ZWwgMTEfMB0GCSqGSIb3DQEJARYQY2FAdHJ1c3R3YXZlLmNvbQ==","whitelist":false,"attachmen
t":{"hash":"9eada92e3a97dd020d1e54af280aa60bf3400d8c05725aec56aa8357bd9c9bed","size":1768,"filename":"D2BA_wGfRVRt6vATeLdkNJ0B3ckV2GlyUIDdWUqCSDQ=.pem","location":"security-state-staging/intermediates/9e9ff0f0-f45d-41dc-8a17-414e7c15f484.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D2BA/wGfRVRt6vATeLdkNJ0B3ckV2GlyUIDdWUqCSDQ=","crlite_enrolled":true,"id":"60bc13d6-1760-488c-b696-f2dd9d3df1a2","last_modified":1562025578546},{"schema":1562025575484,"derHash":"JhjEFcFGupil8K1+pJiqWHgLpV+o47By0TwzDUEBBxc=","subject":"CN=EuropeanSSL Client CA,O=EUNETIC GmbH,C=DE","subjectDN":"MEQxCzAJBgNVBAYTAkRFMRUwEwYDVQQKEwxFVU5FVElDIEdtYkgxHjAcBgNVBAMTFUV1cm9wZWFuU1NMIENsaWVudCBDQQ==","whitelist":false,"attachment":{"hash":"939382e857302d9c045c2918ffbab03973b2a29f5c566cfdd7e53388636562f6","size":1723,"filename":"6rE_4fpPwsenurNcVvOyU8xh7Vp9kamSGTFA4_9ffGI=.pem","location":"security-state-staging/intermediates/bfff1194-870c-47b2-ba6e-1180017f2936.pem","mimetype":"application/x-pem-file"},"p
ubKeyHash":"6rE/4fpPwsenurNcVvOyU8xh7Vp9kamSGTFA4/9ffGI=","crlite_enrolled":false,"id":"1b741d5d-51c9-4a71-92ad-b421a5c2824e","last_modified":1562025576254},{"schema":1562025573252,"derHash":"cLm6WVQSz4YUt2dH/Wg8yidZ9CZCFkg0++/diFBcTxw=","subject":"CN=emSign ECC Device CA - G3,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MG0xCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMSIwIAYDVQQDExllbVNpZ24gRUNDIERldmljZSBDQSAtIEcz","whitelist":false,"attachment":{"hash":"d7af7c53238ed1dc9fffed6f3e5bce922f646c3ff9a60630c499d766352973cc","size":1142,"filename":"yETFaiH0jqwEN-yzu6pHbtmjgE5XzT3dvmi_Wzb31hM=.pem","location":"security-state-staging/intermediates/b6e31f0d-7208-4e42-8621-2efeaacbb876.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yETFaiH0jqwEN+yzu6pHbtmjgE5XzT3dvmi/Wzb31hM=","crlite_enrolled":false,"id":"c71399ad-5c58-4c11-9f7a-9147f50eae00","last_modified":1562025573987},{"schema":1562025571754,"derHash":"jZk
hf/gtYOTfWb6KESFiXN/8TyLyHhJjod8G0twLVA4=","subject":"CN=QuoVadis QVRCA3G1 SSL ICA,O=QuoVadis Limited,C=BM","subjectDN":"MEwxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSIwIAYDVQQDDBlRdW9WYWRpcyBRVlJDQTNHMSBTU0wgSUNB","whitelist":false,"attachment":{"hash":"4de419e355223a24032129dc3cd0fc679d92fcf36397afb5432936371479b9f5","size":2373,"filename":"m7H4WXNR3iGdK5BvRMFrKs78WAc-SoBCaPH-fLXigIw=.pem","location":"security-state-staging/intermediates/4ff3d1f9-4d98-4fa8-be76-8e1e5434cbdb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m7H4WXNR3iGdK5BvRMFrKs78WAc+SoBCaPH+fLXigIw=","crlite_enrolled":true,"id":"7be166ff-6cb1-402e-a354-a7337b7f2b7a","last_modified":1562025572488},{"schema":1562025571006,"derHash":"cG7LIbCW9v/M3J6+WqG3dvZNuPrn8KXAMscQQeUCuY8=","subject":"CN=AlwaysOnSSL RSA CA G1,OU=Domain Validated SSL,O=CertCenter AG,C=DE","subjectDN":"MGQxCzAJBgNVBAYTAkRFMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEeMBwGA1UEAxMVQWx3YXlzT25TU0wgUlNB
IENBIEcx","whitelist":false,"attachment":{"hash":"0f46d6d2cca30792c370bd3b90969ec1e9cea56ad57621f2bd0fbf01ad6694cf","size":1678,"filename":"e7puxxctXmI2MqLnC-hc5AHDs-k8kQisdTcQbwxeeVw=.pem","location":"security-state-staging/intermediates/3d06736e-8267-4a12-a633-3600f98ff6fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e7puxxctXmI2MqLnC+hc5AHDs+k8kQisdTcQbwxeeVw=","crlite_enrolled":false,"id":"e19127f4-02c2-4c09-a41d-a8487ab8ba3e","last_modified":1562025571746},{"schema":1562025570263,"derHash":"GpSMtekceQdDCTBFiJGmWg+q/o+zrweCSrY38iD2bSk=","subject":"CN=SecureTrust Secure Email CA\\, Level 1,O=SecureTrust,L=Chicago,ST=Illinois,C=US","subjectDN":"MHcxLTArBgNVBAMTJFNlY3VyZVRydXN0IFNlY3VyZSBFbWFpbCBDQSwgTGV2ZWwgMTEUMBIGA1UEChMLU2VjdXJlVHJ1c3QxEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"ab9d76d98b7e15ddaff1cc6705503cc27e91b1c04e31e806f4bcea03dd345850","size":1707,"filename":"BGO27QFH6rNm9gr94hQ_pwpry227wWtyTae
c9ZnAQMM=.pem","location":"security-state-staging/intermediates/4d0c7b73-fb1b-4ba2-852c-7b073f9b829c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BGO27QFH6rNm9gr94hQ/pwpry227wWtyTaec9ZnAQMM=","crlite_enrolled":false,"id":"b9dc7d52-8b0e-46d8-9878-51762ccd2aae","last_modified":1562025570998},{"schema":1562025567263,"derHash":"mp/DkCmr4TLWdNAy0ZnLhDGqyHjavObp4a7LgeyZ9Mw=","subject":"CN=thawte Primary Issuing CA,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSIwIAYDVQQDExl0aGF3dGUgUHJpbWFyeSBJc3N1aW5nIENB","whitelist":false,"attachment":{"hash":"bafc005b16bae347d59a3a7bf07a0c9eaf0f0e42cd9942af7404ef78c1b79f57","size":1662,"filename":"GeZLo-BA_Z6e8rPBE9nX-x6kAYZSVx3EtzJm0kkmCi8=.pem","location":"security-state-staging/intermediates/058fe399-3919-4528-8452-fe055f2b4630.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GeZLo+BA/Z6e8rPBE9nX+x6kAYZSVx3EtzJm0kkmCi8=","crlite_enr
olled":false,"id":"89d303d5-9a8c-4a13-8200-40cec4505421","last_modified":1562025567998},{"schema":1562025566502,"derHash":"W4fiIvIDRvo2KIFu1s5x+qughX+4vLpzd26h+lbNAFc=","subject":"CN=RapidSSL SHA256 CA - G4,O=GeoTrust Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSAwHgYDVQQDExdSYXBpZFNTTCBTSEEyNTYgQ0EgLSBHNA==","whitelist":false,"attachment":{"hash":"cee3d5e53c8fb88912d492c3a976adf689082cc7d09d8f1ad43ff0ab0ea3e52c","size":1670,"filename":"aef6IF2UF6jNEwA2pNmP7kpgT6NFSdt7Tqf5HzaIGWI=.pem","location":"security-state-staging/intermediates/e3b45219-1226-4cd3-b74a-ba627fc772be.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aef6IF2UF6jNEwA2pNmP7kpgT6NFSdt7Tqf5HzaIGWI=","crlite_enrolled":false,"id":"21950fe4-3bac-4f48-8082-d93e1d39f57f","last_modified":1562025567256},{"schema":1562025562772,"derHash":"32UwhcjtX4RMuwkWG4rgvy82gi+Te/e7Gmicb8i9V5o=","subject":"CN=cPanel Extended Validation ECC Certification Authority,OU=Controlled by COMODO exclusively
for cPanel\\, Inc.,O=cPanel\\, Inc.,L=Houston,ST=TX,C=US","subjectDN":"MIHAMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVFgxEDAOBgNVBAcTB0hvdXN0b24xFTATBgNVBAoTDGNQYW5lbCwgSW5jLjE6MDgGA1UECxMxQ29udHJvbGxlZCBieSBDT01PRE8gZXhjbHVzaXZlbHkgZm9yIGNQYW5lbCwgSW5jLjE/MD0GA1UEAxM2Y1BhbmVsIEV4dGVuZGVkIFZhbGlkYXRpb24gRUNDIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"8a86e6f0dba359bf8534a11ef39bc706ea74fe3c37ef6c1ddc14e0fcf3a44a82","size":1427,"filename":"M0KI4Ko0g5TclE_ltD5sgAvt8tWcj6K5Je7fmwLXcmg=.pem","location":"security-state-staging/intermediates/ce27d567-565e-4cf1-97c8-01a6e490337d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M0KI4Ko0g5TclE/ltD5sgAvt8tWcj6K5Je7fmwLXcmg=","crlite_enrolled":false,"id":"7c78c5c2-4088-45e8-b0ba-2ab26ea31e01","last_modified":1562025563524},{"schema":1562025560509,"derHash":"ftGTYa1zTXA/ut8Cn1LsO2ZI2N1WuroIhO1PhZtbk3U=","subject":"CN=Herritar eta Erakundeen CA - CA de Ciudadanos y Entidades (4),OU=NZZ Ziurtagiri publikoa - Certificado
publico SCI,O=IZENPE S.A.,C=ES","subjectDN":"MIGnMQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xOjA4BgNVBAsMMU5aWiBaaXVydGFnaXJpIHB1Ymxpa29hIC0gQ2VydGlmaWNhZG8gcHVibGljbyBTQ0kxRjBEBgNVBAMMPUhlcnJpdGFyIGV0YSBFcmFrdW5kZWVuIENBIC0gQ0EgZGUgQ2l1ZGFkYW5vcyB5IEVudGlkYWRlcyAoNCk=","whitelist":false,"attachment":{"hash":"4e2f85a9143fff0c499621d1b49e3f60d3c41d4a5456e8430b978d6171ec3334","size":2576,"filename":"psxZHe33uBE3X2CLur2frMJV_OKLVcjyPVVShpA--N4=.pem","location":"security-state-staging/intermediates/5cd6b31f-ffd5-4d52-a9e8-fa36ce7bbed8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"psxZHe33uBE3X2CLur2frMJV/OKLVcjyPVVShpA++N4=","crlite_enrolled":true,"id":"9827f84e-7c8f-4336-952d-450a06e83326","last_modified":1562025561262},{"schema":1562025559768,"derHash":"m9+zg/lrCktUtdbBxMweogWCub7Cu8YzkEzeh+6u29E=","subject":"CN=SECOM Passport for Member PUB CA7,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU
0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTc=","whitelist":false,"attachment":{"hash":"2f01f21ca9e48571a30e9933457faf8d617a0fc0544b0e36c7d42ba4165df819","size":1695,"filename":"K_7TdwdfqZgQqXEvsippKe857WFIJ7-iGlYgYdHo0c8=.pem","location":"security-state-staging/intermediates/fea86beb-fe7e-4048-9530-d96971843fc5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"K/7TdwdfqZgQqXEvsippKe857WFIJ7+iGlYgYdHo0c8=","crlite_enrolled":false,"id":"7770d262-2bdb-4ef7-8e57-a12893469529","last_modified":1562025560501},{"schema":1562025559020,"derHash":"XekVK+0x+gUV3R/HRhM/EydWLvcqhM8tJAPnSKYE0NQ=","subject":"CN=Let's Encrypt Authority X4,O=Let's Encrypt,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQDExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBYNA==","whitelist":false,"attachment":{"hash":"c715837b5cfccee20ea9dee2bf1248b0c86b0a49131fefcbe9dc28ff63dc5df4","siz
e":1983,"filename":"sRHdihwgkaib1P1gxX8HFszlD-7_gTfNvuAybgLPNis=.pem","location":"security-state-staging/intermediates/fa35ef4b-12d7-45e2-b335-c02f0d599219.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sRHdihwgkaib1P1gxX8HFszlD+7/gTfNvuAybgLPNis=","crlite_enrolled":false,"id":"6c3e369b-f720-45e1-9370-4ea8065c7c95","last_modified":1562025559758},{"schema":1562025558267,"derHash":"nNBykOi+3ZnPc5f5TLASsi7sE9pS7ZTzAXoupBRuqY0=","subject":"CN=HARICA S/MIME ECC SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGJMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEjMCEGA1UEAwwaSEFSSUNBIFMvTUlNRSBFQ0MgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"f66d479e18356da82e4d231247d8bd5278e9884bf74c3118df07be05c95aa7b6","size":1443,"filename":"axmO2GJ2kjqEicyms7TJ0lABBqiozjItK6Zso_S1D9M=.pem","location":"security-state-staging/intermediates/bc7fd8b5-
70e3-49e4-8c10-9d9d29b1eb10.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"axmO2GJ2kjqEicyms7TJ0lABBqiozjItK6Zso/S1D9M=","crlite_enrolled":false,"id":"11cc2bb1-fc7d-4194-a61a-fddbefb3ca1c","last_modified":1562025559012},{"schema":1562025556764,"derHash":"KAu8NKmMx5YGqJaQ5Sq3L9xf/yddw2bEgnsWVjE+l5A=","subject":"CN=Don Dominio / MrDomain RSA DV CA,O=Soluciones Corporativas IP\\, SL,L=Manacor,ST=Illes Balears,C=ES","subjectDN":"MIGLMQswCQYDVQQGEwJFUzEWMBQGA1UECBMNSWxsZXMgQmFsZWFyczEQMA4GA1UEBxMHTWFuYWNvcjEnMCUGA1UEChMeU29sdWNpb25lcyBDb3Jwb3JhdGl2YXMgSVAsIFNMMSkwJwYDVQQDEyBEb24gRG9taW5pbyAvIE1yRG9tYWluIFJTQSBEViBDQQ==","whitelist":false,"attachment":{"hash":"f6b7422faba44515b2fbf75aa4b06572f321cea63e5a19794440c400e5ac0cc9","size":2170,"filename":"k5zZlzm-7Ha5WKka7Wov4zebiiAPJ0-9cRslSNnRFWA=.pem","location":"security-state-staging/intermediates/356a0d2d-83bc-4215-8e84-dfade5405db5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k5zZlzm+7Ha5WKka7Wov4zebiiAPJ0+9cRslSNnRFWA
=","crlite_enrolled":true,"id":"f9c8f2af-446a-4150-9b8c-e06c472f9754","last_modified":1562025557503},{"schema":1562025555273,"derHash":"Y+2VsX/9y3rjD+rGqHRlMJkmTiGyaNg22VeWbwsEvkM=","subject":"CN=Ericsson NL Individual CA v3,O=Ericsson,C=SE","subjectDN":"MEcxCzAJBgNVBAYTAlNFMREwDwYDVQQKDAhFcmljc3NvbjElMCMGA1UEAwwcRXJpY3Nzb24gTkwgSW5kaXZpZHVhbCBDQSB2Mw==","whitelist":false,"attachment":{"hash":"fbc57ea9c1b2e224c728dfb5633827b206e81886f616d127c7638d4158c30ee6","size":2402,"filename":"gdwzJYc_pmK1jRgbaVo-CtT9QF4X6E1CcSK_5j-CHnc=.pem","location":"security-state-staging/intermediates/0c3604ee-ea79-46ad-8e68-81764865032e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gdwzJYc/pmK1jRgbaVo+CtT9QF4X6E1CcSK/5j+CHnc=","crlite_enrolled":false,"id":"9e2198dd-7423-466f-bd25-622f89d43770","last_modified":1562025556016},{"schema":1562025553755,"derHash":"LoFrz4UtgwJF3cNTS8+FpTsLGZkaUlzTKGJv10pA/II=","subject":"CN=GIS CA,OU=CA,O=GAZINFORMSERVICE Company limited,C=RU","subjectDN":"MFYxCzAJBgN
VBAYTAlJVMSkwJwYDVQQKDCBHQVpJTkZPUk1TRVJWSUNFIENvbXBhbnkgbGltaXRlZDELMAkGA1UECwwCQ0ExDzANBgNVBAMMBkdJUyBDQQ==","whitelist":false,"attachment":{"hash":"4cedd57a38da64d6828aeb1b9ecfff34356abc080d413388c1ee191b7f2655dd","size":1601,"filename":"Bmyhj612-woocGRpHnc19r3dxL8Sz3qG4LDIr6VB3hY=.pem","location":"security-state-staging/intermediates/1c1b4e26-24a6-4505-9e5b-06e5e18d585a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Bmyhj612+woocGRpHnc19r3dxL8Sz3qG4LDIr6VB3hY=","crlite_enrolled":false,"id":"03ccc153-2946-4d3d-be6c-b0881bebecf6","last_modified":1562025554496},{"schema":1562025551490,"derHash":"vbz+EZP7uSOr7hTKZiKP7IkLGOAhAsDZqY7y6GJuyns=","subject":"CN=Technical University of Crete CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGBMQswCQYDVQQGEwJHUjFEMEIGA1UECgw7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxLDAqBgNVBAMMI1RlY2huaWNhbCBVbml2ZXJzaXR5IG9mIENyZXRlIENBIFIx","whitelist":false,"attachment
":{"hash":"3db47bbdd3795e85ad600eb6fe393b0fcb6ae8991ef4af2e9bd7628b6f48f23b","size":2182,"filename":"ANwGE0ZaMhJXXiuIMDohCrwQWZohBpNfhyCEYW4H3dc=.pem","location":"security-state-staging/intermediates/9ac9ad25-52e0-46ee-a3e4-271e8e52c034.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ANwGE0ZaMhJXXiuIMDohCrwQWZohBpNfhyCEYW4H3dc=","crlite_enrolled":true,"id":"434a2f0e-2e97-40ee-b3ed-3b4161a532f7","last_modified":1562025552255},{"schema":1562025549998,"derHash":"1yERA4jKbyC7qf0ajbpO+4wWOSo9662XxVPurwrKyqw=","subject":"CN=TeliaSonera Server CA v2,O=TeliaSonera,C=FI","subjectDN":"MEYxCzAJBgNVBAYTAkZJMRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEhMB8GA1UEAwwYVGVsaWFTb25lcmEgU2VydmVyIENBIHYy","whitelist":false,"attachment":{"hash":"2f9dcba71811d0e494412cb5ac40c7215fd1e0e68794cf9d419462eb22bfdd4d","size":2528,"filename":"Fq3YMR2ibLgpoD509egJDn5cPXPfnXC5MUd2IWwV_qA=.pem","location":"security-state-staging/intermediates/e40e2f56-df5c-40a6-85f6-694d1d00f167.pem","mimetype":"application/x-pem-file"},"
pubKeyHash":"Fq3YMR2ibLgpoD509egJDn5cPXPfnXC5MUd2IWwV/qA=","crlite_enrolled":true,"id":"3082ff87-55fc-4380-b33c-8f226a13dcec","last_modified":1562025550741},{"schema":1562025548476,"derHash":"resKwbN/XaRKaEjhS3NZcPkg/5x2JdqKoJmonqbXfHI=","subject":"CN=Technological Educational Institution of Thessaloniki CA R3,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGZMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO1RlY2hub2xvZ2ljYWwgRWR1Y2F0aW9uYWwgSW5zdGl0dXRpb24gb2YgVGhlc3NhbG9uaWtpIENBIFIz","whitelist":false,"attachment":{"hash":"5b159fe11a04b001c33c5ad2e26f8314521fe4ba8377ff1dfa35fbb0d1c364c9","size":2576,"filename":"qVNET7_Zz6zS9i8KHh-GZOmKOFwBKjPuzYbBnMqBfRo=.pem","location":"security-state-staging/intermediates/747153bd-4eb6-4465-8e57-ed57495ed0a4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qVNET7/Zz6zS9i8KHh+GZOmKOFwBKjPuzYbBnMqBfRo=","crlite_enrolled":true,"id
":"b3fb74cf-8af2-47cc-b99e-55a1850ec31a","last_modified":1562025549240},{"schema":1562025547725,"derHash":"9BppSzgllC24lSPpd1+Zfbn6KZg5jcOadLcmcNrP1Gg=","subject":"CN=Starfield Secure Extended Validation Code Signing CA - G2,O=Starfield Technologies\\, LLC,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIGeMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEkMCIGA1UEChMbU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgTExDMUIwQAYDVQQDEzlTdGFyZmllbGQgU2VjdXJlIEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZSBTaWduaW5nIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"88f852539dedf76ad7544f8aeb8a7d5aec509c504852a87b3cd5ddb9ce509469","size":1813,"filename":"43LAOVcZZKWCk7veYuyGUt0baGZdRZsfIBAmB7OlE8s=.pem","location":"security-state-staging/intermediates/e9ab7ece-e153-4d24-ba09-e51a29208528.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"43LAOVcZZKWCk7veYuyGUt0baGZdRZsfIBAmB7OlE8s=","crlite_enrolled":false,"id":"32ab8607-6d98-4de9-aee6-d3993cd8c627","last_modified":1562025548468},{"schema":15
62025546979,"derHash":"YD1pgiOBoL/CdLvtZwCbx98TPLkC+iQs9Yv3J9I9VJU=","subject":"CN=Sutter Health CA,OU=Orion Health Direct Secure Messaging,O=Sutter Health\\, a California nonprofit public benefit corporation,C=US","subjectDN":"MIGiMQswCQYDVQQGEwJVUzFJMEcGA1UEChNAU3V0dGVyIEhlYWx0aCwgYSBDYWxpZm9ybmlhIG5vbnByb2ZpdCBwdWJsaWMgYmVuZWZpdCBjb3Jwb3JhdGlvbjEtMCsGA1UECxMkT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nMRkwFwYDVQQDExBTdXR0ZXIgSGVhbHRoIENB","whitelist":false,"attachment":{"hash":"261d3dcbc380cdce3b0985f015ff39b28f560089caa3fe079b37d1dc1fd7db9c","size":2337,"filename":"5tfROj-rDBEjz6--464WIXkKw55dhqqzPscv3mBSipM=.pem","location":"security-state-staging/intermediates/7b819190-fb9a-4041-bc3b-78febdf0c849.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5tfROj+rDBEjz6++464WIXkKw55dhqqzPscv3mBSipM=","crlite_enrolled":false,"id":"edd6bf94-d421-4767-a0cc-afc7defb5666","last_modified":1562025547718},{"schema":1562025546244,"derHash":"FEIqG9WpHtunOXuGmJIjabavaYT/h6z2E52qkZ55WhQ="
,"subject":"CN=Hongkong Post e-Cert CA 1 - 14,O=Hongkong Post,C=HK","subjectDN":"ME4xCzAJBgNVBAYTAkhLMRYwFAYDVQQKEw1Ib25na29uZyBQb3N0MScwJQYDVQQDEx5Ib25na29uZyBQb3N0IGUtQ2VydCBDQSAxIC0gMTQ=","whitelist":false,"attachment":{"hash":"5a4d38e1effb5367e3fd8c4536f7e3be9e065be0cb93778e4484d32658a3c99c","size":1626,"filename":"vSKE_tMDVyGX2f0WYoCAXCvfnFi2nosboVhJtpmvc10=.pem","location":"security-state-staging/intermediates/44f50bf9-a77b-4072-997d-ecb9e4196036.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vSKE/tMDVyGX2f0WYoCAXCvfnFi2nosboVhJtpmvc10=","crlite_enrolled":false,"id":"05017875-8b94-4416-a852-fb1978415050","last_modified":1562025546971},{"schema":1562025544009,"derHash":"LmQsC+E6XeC8b7Pr5Cofrdt2Io0k3k/ruVtsOlSVM+s=","subject":"CN=United Parcel Service\\, Inc. RSA Client CA,O=United Parcel Service\\, Inc.,L=Atlanta,ST=GA,C=US","subjectDN":"MIGGMQswCQYDVQQGEwJVUzELMAkGA1UECBMCR0ExEDAOBgNVBAcTB0F0bGFudGExJDAiBgNVBAoTG1VuaXRlZCBQYXJjZWwgU2VydmljZSwgSW5jLjEyMDAGA1UEAxMpVW5pd
GVkIFBhcmNlbCBTZXJ2aWNlLCBJbmMuIFJTQSBDbGllbnQgQ0E=","whitelist":false,"attachment":{"hash":"16a99f6659e69c9ae43dce74e5f55c2821e4c4b8102837c4e4b42be118238fe0","size":2133,"filename":"ADxdm5JW4ZAlMiTPdTtze13AoPKn5Ek4CVg8v3KP1aY=.pem","location":"security-state-staging/intermediates/9378362f-f38c-4094-b57e-66057d63456e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ADxdm5JW4ZAlMiTPdTtze13AoPKn5Ek4CVg8v3KP1aY=","crlite_enrolled":false,"id":"213eee19-f9c9-4440-b1e9-e14ae86ebf53","last_modified":1562025544746},{"schema":1562025538762,"derHash":"yo0PRzZFSuy+xd7sgJmMnr9B0Gxyjzx2zKJBUbxi1GM=","subject":"CN=DigiCert SHA2 Assured ID Timestamping CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMTAvBgNVBAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBUaW1lc3RhbXBpbmcgQ0E=","whitelist":false,"attachment":{"hash":"cd22b462d7f7734d96e2f18ec558531d69e068abc2e4e91aaf88f0e849995c68","size":1861,"filename":
"HXt5TooTUF4biA-m_h8zYOgpzJhFWnTDzgXfFqp3j3U=.pem","location":"security-state-staging/intermediates/2214d2c0-44ec-41b4-9661-48f9f5cfec31.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HXt5TooTUF4biA+m/h8zYOgpzJhFWnTDzgXfFqp3j3U=","crlite_enrolled":true,"id":"89a2403e-23bf-426d-882a-8055a3e89d86","last_modified":1562025539506},{"schema":1562025537279,"derHash":"3/WD46HtNeV9lRBIF62CPAVfuQcc1ABDW1/HTmkggds=","subject":"CN=Symantec Basic DV SSL CA - G2,OU=Symantec Trust Network+OU=Domain Validated SSL,O=Symantec Corporation,C=US","subjectDN":"MIGUMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMSYwJAYDVQQDEx1TeW1hbnRlYyBCYXNpYyBEViBTU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"847aebbd5575a61f84be32bdb3dd7939184b251b0eb1611ef8ddb3440581e832","size":1918,"filename":"vJ6JGRfCsYINcfiUwxxg4vmkhmQOTi3jksgxCavebo8=.pem","location":"security-state-staging/intermediates/9e75dfa5
-ba9c-402f-96de-7b864ea83342.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vJ6JGRfCsYINcfiUwxxg4vmkhmQOTi3jksgxCavebo8=","crlite_enrolled":false,"id":"ae09b3e0-9e79-444e-995b-db575d939ffd","last_modified":1562025538011},{"schema":1562025535060,"derHash":"k8OBywezU6kgwqe+1r6/GVxoJ53QUn038gvdDZnDMPo=","subject":"CN=DigiCert Assured ID CA G2,O=DigiCert Inc,C=US","subjectDN":"MEgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxIjAgBgNVBAMTGURpZ2lDZXJ0IEFzc3VyZWQgSUQgQ0EgRzI=","whitelist":false,"attachment":{"hash":"b7c018817ad0fe311c0e3f46cb59e0998110a056304537716c2436a17916b212","size":1654,"filename":"dnPPE-JM_ZaNCC1Q198LELhQiAdfMsEPXi1LVYU-aPQ=.pem","location":"security-state-staging/intermediates/dd6dcf5a-a932-4645-be43-cc51dd5ef65c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dnPPE+JM/ZaNCC1Q198LELhQiAdfMsEPXi1LVYU+aPQ=","crlite_enrolled":true,"id":"a29b66e0-76d3-421c-90a3-3ed1083fe7a9","last_modified":1562025535793},{"schema":1562025532067,"derHash":"9ujsmwB3X
MNnEDaToAFW/6WrhE5kB7HShTsIQfRRlG8=","subject":"CN=TrustOcean SSL CA - RSA - 2018,OU=RSA Domain Validation Secure Server - 2018,O=TrustOcean Ltd.,L=Denver,ST=CO,C=US","subjectDN":"MIGjMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPVHJ1c3RPY2VhbiBMdGQuMTMwMQYDVQQLEypSU0EgRG9tYWluIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciAtIDIwMTgxJzAlBgNVBAMTHlRydXN0T2NlYW4gU1NMIENBIC0gUlNBIC0gMjAxOA==","whitelist":false,"attachment":{"hash":"ed8dcc0f133ed1d1d3a53ead175c2642a1c5993820e97d74208cf3d363b608c5","size":2203,"filename":"e6xirxtNeGowerSlFMxXXnPAZUkXIXVu3FhkcvhvI7w=.pem","location":"security-state-staging/intermediates/a505f7ec-abe1-4afe-9a42-cad25bf7f8cb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e6xirxtNeGowerSlFMxXXnPAZUkXIXVu3FhkcvhvI7w=","crlite_enrolled":true,"id":"3a66312e-40aa-4141-b4bb-23159586906d","last_modified":1562025532803},{"schema":1562025529824,"derHash":"4F7UqeTHczCKk+hJhhIlrjSakrvUus3UkArU5zsTEQA=","subject":"CN=SECOM Passport for Web SR 3.0
CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MF8xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSkwJwYDVQQDEyBTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIFNSIDMuMCBDQQ==","whitelist":false,"attachment":{"hash":"10b46479f6babe96f43e63ab11f87d973a00150e7dc2e9e4b6ce7b5e22ab3005","size":1634,"filename":"Rhcj0dcdOovISeMPXTWpuUDiNf1EzyxSHeMUK0lfoR8=.pem","location":"security-state-staging/intermediates/ae31b0a6-8423-4c86-a060-ba964c79794d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Rhcj0dcdOovISeMPXTWpuUDiNf1EzyxSHeMUK0lfoR8=","crlite_enrolled":true,"id":"6ccb21c1-806e-410f-a6cb-594456ae82c0","last_modified":1562025530558},{"schema":1562025528330,"derHash":"eCbeG+QU5FTPyuDRexf/DK0S7mjPSH81ezhJnidLAXE=","subject":"CN=certSIGN SSL EV CA Class 3 G2,OU=certSIGN SSL EV CA Class 3 G2,O=certSIGN,C=RO","subjectDN":"MHAxCzAJBgNVBAYTAlJPMREwDwYDVQQKDAhjZXJ0U0lHTjEmMCQGA1UECwwdY2VydFNJR04gU1NMIEVWIENBIENsYXNzIDMgRzIxJjAkBgNVBAMMHWNlcnRTSUdOIFNTTCBFViBDQSBDbGFzcyAzIEcy",
"whitelist":false,"attachment":{"hash":"bc1a9e940bb65deb19b1cb6d6aa4d8f360fdb2b2ae863c58bbf437c0cc0a4c6e","size":1626,"filename":"Yhf8lB-ohgsX4JNEP0LyfAgUEVbH6pn046hso3mF6Hg=.pem","location":"security-state-staging/intermediates/6017afd4-09df-42e0-9159-080ef3054310.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Yhf8lB+ohgsX4JNEP0LyfAgUEVbH6pn046hso3mF6Hg=","crlite_enrolled":false,"id":"092ca645-852e-4f2a-85d5-1fdaa3bbb874","last_modified":1562025529063},{"schema":1562025524408,"derHash":"qcjpcSWaLtbmX3IeB6qWfHLHzbR8e+EojYe/CNLzWA0=","subject":"CN=Accenture Federal Services External CA,O=Accenture Federal Services LLC,ST=DE,C=US","subjectDN":"MHQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJERTEnMCUGA1UEChMeQWNjZW50dXJlIEZlZGVyYWwgU2VydmljZXMgTExDMS8wLQYDVQQDEyZBY2NlbnR1cmUgRmVkZXJhbCBTZXJ2aWNlcyBFeHRlcm5hbCBDQQ==","whitelist":false,"attachment":{"hash":"65c088044cd4735247c82fee610957f89cac4992c45e988b083aeb47757d5c08","size":1869,"filename":"k3Rb5ZqNYk6_1pEsnBWNNE1yn9vfIlJ90ZV3vqb7oEU=.p
em","location":"security-state-staging/intermediates/a12744fd-3faa-416a-921b-d4943319e43c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k3Rb5ZqNYk6/1pEsnBWNNE1yn9vfIlJ90ZV3vqb7oEU=","crlite_enrolled":false,"id":"c540bcea-ae3d-4bd9-ae0d-918e2ffbdbaa","last_modified":1562025525188},{"schema":1562025523636,"derHash":"C/jSeHGiXvvMcPVsJoyAxC0oxfHRimnAGA2YmyuNZxo=","subject":"CN=CertAssure ECC EV Secure Server Certification Authority,OU=Controlled by COMODO exclusively for CertAssure Inc.,O=CertAssure Inc.,L=San Jose,ST=CA,C=US","subjectDN":"MIHIMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExETAPBgNVBAcTCFNhbiBKb3NlMRgwFgYDVQQKEw9DZXJ0QXNzdXJlIEluYy4xPTA7BgNVBAsTNENvbnRyb2xsZWQgYnkgQ09NT0RPIGV4Y2x1c2l2ZWx5IGZvciBDZXJ0QXNzdXJlIEluYy4xQDA+BgNVBAMTN0NlcnRBc3N1cmUgRUNDIEVWIFNlY3VyZSBTZXJ2ZXIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"61bf81b404a388537069a6ca1778291879f9ac51e8f78d42e4e640af887d27ee","size":1443,"filename":"ok9f2xbTTMytgvbxoAC3WVM2u44IiamlaLqKpKO_S
e0=.pem","location":"security-state-staging/intermediates/713b734a-dcb5-4488-8c91-fb386062b7b2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ok9f2xbTTMytgvbxoAC3WVM2u44IiamlaLqKpKO/Se0=","crlite_enrolled":false,"id":"64061b54-c2b8-41e0-9026-003c9204d5c4","last_modified":1562025524400},{"schema":1562025522880,"derHash":"6BsB+fVpLPOCPG/TWIZUK/ru/F6pT04kbkLEqfxf6Ks=","subject":"CN=GDCA TrustAUTH R4 OV SSL CA G2,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJzAlBgNVBAMMHkdEQ0EgVHJ1c3RBVVRIIFI0IE9WIFNTTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"62f632973d4566730fb0c215f361db0c6377f4fe7015f37d2f43bbbff8b9422b","size":1727,"filename":"X_kDRJGyo1gr5XgS4hGkA1JH19Rbn0-jAdxRkGwOfis=.pem","location":"security-state-staging/intermediates/b0587fd9-8f56-4f2e-bb41-45600e3dd3f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"X/kDRJGyo1gr5XgS4hGkA1J
H19Rbn0+jAdxRkGwOfis=","crlite_enrolled":true,"id":"242f8001-c709-472f-8e95-69caf24cb984","last_modified":1562025523628},{"schema":1562025522128,"derHash":"/UwrmT4DVukNT5+9I2He8aSYN4zuzrkt12/grX4sexY=","subject":"CN=LLB Root CA public v3,O=Liechtensteinische Landesbank AG,C=LI","subjectDN":"MFgxCzAJBgNVBAYTAkxJMSkwJwYDVQQKDCBMaWVjaHRlbnN0ZWluaXNjaGUgTGFuZGVzYmFuayBBRzEeMBwGA1UEAwwVTExCIFJvb3QgQ0EgcHVibGljIHYz","whitelist":false,"attachment":{"hash":"225f216bec9fd5f148f91a91fed5f24692bf9e5c51303a7c1e90b008dd44d103","size":2962,"filename":"NRgw95tt85HJuu4CfCZX4-xKo5pkkTNI_W6Iv9pV3vs=.pem","location":"security-state-staging/intermediates/6e7b78f9-c4f1-4ea2-80c7-6fdb9a4be85c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NRgw95tt85HJuu4CfCZX4+xKo5pkkTNI/W6Iv9pV3vs=","crlite_enrolled":false,"id":"5aaa9313-aa3d-449a-8c77-2cb032c7ce53","last_modified":1562025522872},{"schema":1562025521355,"derHash":"Kl6ti0GnzdwSaxDtJIou7+2oVWYDQvIio4zGYF1EPiI=","subject":"CN=InComm Agent Solution
s Inc Root Certificate Authority,O=InComm Agent Solutions Inc,ST=Florida,C=US","subjectDN":"MIGEMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHRmxvcmlkYTEjMCEGA1UEChMaSW5Db21tIEFnZW50IFNvbHV0aW9ucyBJbmMxPjA8BgNVBAMTNUluQ29tbSBBZ2VudCBTb2x1dGlvbnMgSW5jIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"31c63a5f2d41e64fcaf44e0f09cb40d2b97a4cf96133e3e1218bd242f642bdef","size":3279,"filename":"gjRan45dFolfE5atUzE5YRyiRP-Ume28jutJGa4F52Q=.pem","location":"security-state-staging/intermediates/96a22330-b050-4b28-a9d7-0bf6f1c758b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gjRan45dFolfE5atUzE5YRyiRP+Ume28jutJGa4F52Q=","crlite_enrolled":false,"id":"b128a011-ab73-48c6-9a91-ff4aacf63d67","last_modified":1562025522120},{"schema":1562025519874,"derHash":"CtdB2YqEw7nE51UuFb/x42m2gGg5RV26/KxjgSTV8QA=","subject":"CN=WISeKey CertifyID Advanced Services CA 2,OU=Copyright 2011 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGOMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtle
TEiMCAGA1UECxMZQ29weXJpZ2h0IDIwMTEgV0lTZUtleSBTQTEWMBQGA1UECxMNSW50ZXJuYXRpb25hbDExMC8GA1UEAxMoV0lTZUtleSBDZXJ0aWZ5SUQgQWR2YW5jZWQgU2VydmljZXMgQ0EgMg==","whitelist":false,"attachment":{"hash":"81fd96040b579082dcb68419d1094eb56463e3e20c10bd3fa17c3e16517983af","size":1804,"filename":"zdMfiH6IA0YPkhIz4JIAAig1qn2rsNG01lIg77-0Q_g=.pem","location":"security-state-staging/intermediates/7a9e18cd-0dc1-4345-8090-c78b5e715132.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zdMfiH6IA0YPkhIz4JIAAig1qn2rsNG01lIg77+0Q/g=","crlite_enrolled":false,"id":"e8a2ac9e-74de-4224-956d-e36511c05c5c","last_modified":1562025520610},{"schema":1562025518366,"derHash":"IELjj8VziPHbMiLHq1vhHG7bfkVL9FSHrkT/LWordkU=","subject":"CN=Symantec Class 3 SHA256 Code Signing CA - G2,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGEMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxNTAzBgNVBAMTLFN5bWFudGVjIENsYXNzIDMgU0hBMjU2IENvZGUgU2lnbmluZ
yBDQSAtIEcy","whitelist":false,"attachment":{"hash":"3603898500215969498b71d7763fd6c80194030c78e89cbe2cc4cd898da098a3","size":1890,"filename":"XTtvxiBTPOwi4pqFOHdXIcPbd4ypovT6ppPkiD6IopI=.pem","location":"security-state-staging/intermediates/5039c1ab-fbed-4c1c-85f8-8711a9c342ee.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XTtvxiBTPOwi4pqFOHdXIcPbd4ypovT6ppPkiD6IopI=","crlite_enrolled":true,"id":"18f77514-7954-4db7-97e6-ce50963c0834","last_modified":1562025519122},{"schema":1562025516726,"derHash":"SqgmR2MAt/BKTLjqBKPTTu/dczFwaqorN3DHY8bpgpw=","subject":"SERIALNUMBER=201920,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTIw","whitelist":false,"attachment":{"hash":"8be56415b479c3bd71fb4fa3f906ea2c8bee529abda29077c2168bb7dcec9bc3","size":2333,"filename":"agd4jcgZ7U9vszAHzkitYhaMypP6S1xWEdOio1i7XWk=.pem","location":"security-s
tate-staging/intermediates/344fdd15-e8b8-4f4c-b0f7-32deb35dc5f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"agd4jcgZ7U9vszAHzkitYhaMypP6S1xWEdOio1i7XWk=","crlite_enrolled":false,"id":"a2b8c57d-821b-48be-bfd6-98b56202d19c","last_modified":1562025517463},{"schema":1562025515964,"derHash":"hXQ66mqXwTRF4IJMLh/lArl63RJKl+9RIP4H9VgS/DM=","subject":"CN=thawte Primary G3 Transition Root,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSowKAYDVQQDEyF0aGF3dGUgUHJpbWFyeSBHMyBUcmFuc2l0aW9uIFJvb3Q=","whitelist":false,"attachment":{"hash":"b966d0608f7e57b49cc48ab7642ec205cb99622392d0c5e8bbd97d67cac8c981","size":1752,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/42f7fa9a-d4c9-4632-8f9a-43a30673af04.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id"
:"f8329b3a-3b2c-4155-93af-3674f94626d3","last_modified":1562025516717},{"schema":1562025515215,"derHash":"MWImoQ0g2iJE0dqLwLKCg1ral92pT5AVPDy/n9UI8/s=","subject":"CN=TERENA eScience SSL CA 2,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MG0xCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEhMB8GA1UEAxMYVEVSRU5BIGVTY2llbmNlIFNTTCBDQSAy","whitelist":false,"attachment":{"hash":"8581fa18f42b8918adea2532a23e06d00eb6673184af2b360f632d8d8810a0bf","size":2162,"filename":"oc7AIKwh7i1ZIjRUXdABQp1IDxMtDZil5mONjuWhNrw=.pem","location":"security-state-staging/intermediates/3d28f7d6-c877-4952-b501-934e0e63e91d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oc7AIKwh7i1ZIjRUXdABQp1IDxMtDZil5mONjuWhNrw=","crlite_enrolled":false,"id":"6e49815a-23d0-44f5-acfb-3db27567251c","last_modified":1562025515957},{"schema":1562025512974,"derHash":"b5Cl/ZiPrszsWxflYS/zbRmciEVR85TzGquk+SHkKgU=","subject":"CN=WISeKey CertifyID Advanced Services C
A 3,OU=Copyright (c) 2015 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGSMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEmMCQGA1UECxMdQ29weXJpZ2h0IChjKSAyMDE1IFdJU2VLZXkgU0ExFjAUBgNVBAsTDUludGVybmF0aW9uYWwxMTAvBgNVBAMTKFdJU2VLZXkgQ2VydGlmeUlEIEFkdmFuY2VkIFNlcnZpY2VzIENBIDM=","whitelist":false,"attachment":{"hash":"4393e05ab02178bc2ca8fb8233dcc75ea5ab977476ca3a1daac3f35467ee3bd1","size":1861,"filename":"LflM69jQUklvy4-1K0y670OKi5J-qdDMKD65BbHBC1w=.pem","location":"security-state-staging/intermediates/3f6ce260-ca71-4404-84a1-def903f8b228.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LflM69jQUklvy4+1K0y670OKi5J+qdDMKD65BbHBC1w=","crlite_enrolled":false,"id":"e371c1c1-08ab-45e5-808d-ac065dbcc687","last_modified":1562025513720},{"schema":1562025512184,"derHash":"X/rEPg3cW0rytpb2vE236R3zFLuP4NBxOgsaetKmj6w=","subject":"CN=Microsoft IT TLS CA 4,OU=Microsoft IT,O=Microsoft Corporation,L=Redmond,ST=Washington,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ
3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMRUwEwYDVQQLEwxNaWNyb3NvZnQgSVQxHjAcBgNVBAMTFU1pY3Jvc29mdCBJVCBUTFMgQ0EgNA==","whitelist":false,"attachment":{"hash":"0a5d12cc2a6e89cac85a5cf8b44505305622b7fc2728ecbb1e917f31fa71a931","size":2036,"filename":"wUY9EOTJmS7Aj4fDVCu_KeE--mV7FgIcbn4WhMz1I2k=.pem","location":"security-state-staging/intermediates/585005f9-618d-4eba-8492-bc8713587608.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wUY9EOTJmS7Aj4fDVCu/KeE++mV7FgIcbn4WhMz1I2k=","crlite_enrolled":true,"id":"0978a1e0-b34b-4599-902a-03b07addc358","last_modified":1562025512966},{"schema":1562025509913,"derHash":"Qs/dpvZguOW0wcQRllpFGTElWeMmL422nS2uF7JrO6M=","subject":"CN=RNP ICPEdu OV SSL CA 2019,OU=Gerencia de Servicos (GSer),O=Rede Nacional de Ensino e Pesquisa - RNP,L=Rio de Janeiro,ST=Rio de Janeiro,C=BR","subjectDN":"MIG8MQswCQYDVQQGEwJCUjExMC8GA1UEChMoUmVkZSBOYWNpb25hbCBkZSBFbnNpbm8gZSBQZXNxdWlzYSAtIFJOUDEkMCIGA1UECxMbR2VyZW5jaWEgZGUgU2Vydmljb3MgK
EdTZXIpMRcwFQYDVQQHEw5SaW8gZGUgSmFuZWlybzEXMBUGA1UECBMOUmlvIGRlIEphbmVpcm8xIjAgBgNVBAMTGVJOUCBJQ1BFZHUgT1YgU1NMIENBIDIwMTk=","whitelist":false,"attachment":{"hash":"8ed792d583fe417ecf576ea9ba51a3b76f0ca1d1979263b866fdc1d260e49731","size":1934,"filename":"34rLDmx5N4tFlu_FTyuZjezXxhR4lhOmxmSZ9Pjypro=.pem","location":"security-state-staging/intermediates/99d3faaf-d109-49f0-af7e-ace9ffabe9e3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"34rLDmx5N4tFlu/FTyuZjezXxhR4lhOmxmSZ9Pjypro=","crlite_enrolled":true,"id":"dfb5e774-316b-43b6-a38e-c65e551ede8b","last_modified":1562025510662},{"schema":1562025509177,"derHash":"2IiPSoT3TJdN/7Vzob9bu6zRcTuQUJb46wFQYr85bE0=","subject":"CN=DarkMatter Assured CA,O=DarkMatter LLC,C=AE","subjectDN":"MEYxCzAJBgNVBAYTAkFFMRcwFQYDVQQKDA5EYXJrTWF0dGVyIExMQzEeMBwGA1UEAwwVRGFya01hdHRlciBBc3N1cmVkIENB","whitelist":false,"attachment":{"hash":"9ece1aca56a9484d62b81c93e6164987204a80f2f56507875c374fb0142f2469","size":2454,"filename":"wO0gU0a7veButWD1zuAqNjTiR
0p-ds-PvvVjuxF90OM=.pem","location":"security-state-staging/intermediates/174ee1b5-dff7-441d-b8ae-bac7a4ea7395.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wO0gU0a7veButWD1zuAqNjTiR0p+ds+PvvVjuxF90OM=","crlite_enrolled":false,"id":"1eb36774-4682-48b8-99f8-89ba65d1dffb","last_modified":1562025509905},{"schema":1562025506918,"derHash":"3IYqPwJe9/JS+pQTy2DeJeV+aqfh+x3Ke1nSwiFxBuo=","subject":"CN=Staat der Nederlanden EV Intermediair CA,O=Staat der Nederlanden,C=NL","subjectDN":"MGAxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xMTAvBgNVBAMMKFN0YWF0IGRlciBOZWRlcmxhbmRlbiBFViBJbnRlcm1lZGlhaXIgQ0E=","whitelist":false,"attachment":{"hash":"20b32e71047d03130c5abee6c17e94b54266c39387aaeb2f3f20ab2a00293064","size":2385,"filename":"F2qGHcawUpLrFM3Bakvv1HLNsSuhZ3AjWvwFk_fsUlQ=.pem","location":"security-state-staging/intermediates/7c8c1e28-85f4-4b11-beb8-53223276d75f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F2qGHcawUpLrFM3Bakvv1HLNsSuhZ3AjWvwFk/fsUlQ=","crl
ite_enrolled":true,"id":"ee67625f-1d82-4696-87f0-db1c529812ba","last_modified":1562025507665},{"schema":1562025506179,"derHash":"Xk/zRijavtaFm6zy4SioB6CPSbDCWdm+LjP+4Gasevc=","subject":"CN=SecureTrust Code Signing CA\\, Level 1,O=SecureTrust,L=Chicago,ST=Illinois,C=US","subjectDN":"MHcxLTArBgNVBAMTJFNlY3VyZVRydXN0IENvZGUgU2lnbmluZyBDQSwgTGV2ZWwgMTEUMBIGA1UEChMLU2VjdXJlVHJ1c3QxEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"8309159fb3e9a032b16f326c2f3864df8c1f92301ff507d2950a27bea11c67f9","size":1613,"filename":"qWYqJU73KHoO_zICSkIr0M7QWK84NnIZGRhLvRLHocc=.pem","location":"security-state-staging/intermediates/a0f3e90d-4808-4c29-9d90-b6c75dd0bcea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qWYqJU73KHoO/zICSkIr0M7QWK84NnIZGRhLvRLHocc=","crlite_enrolled":false,"id":"80dce9dc-0e12-4410-be32-0a76c54ab462","last_modified":1562025506910},{"schema":1562025505422,"derHash":"m/lJZ3fRRCXtAIbBuywHB7YqYcGUxRYuTwdjev8Wa3Y=",
"subject":"CN=GlobalSign Timestamping CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTEwLwYDVQQDEyhHbG9iYWxTaWduIFRpbWVzdGFtcGluZyBDQSAtIFNIQTI1NiAtIEcy","whitelist":false,"attachment":{"hash":"ce3ed3382cfca8726ebcc664e631bed0756c90bb7140cddbdd109b12175fdab5","size":1475,"filename":"qNR-DwyanLNyMurMwcUpVijQXK6JlGydxz7b2CNJx5k=.pem","location":"security-state-staging/intermediates/f32b145b-de9c-4e75-9666-414e3c647a20.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qNR+DwyanLNyMurMwcUpVijQXK6JlGydxz7b2CNJx5k=","crlite_enrolled":true,"id":"eed033d2-f12a-4125-92b7-1990e51d7913","last_modified":1562025506171},{"schema":1562025502424,"derHash":"CsK2CG6xDbVXajobjrDkNECCwbfYMlBPy/laSATVGDQ=","subject":"CN=CERTSIGN FOR BANKING SIMPLE SSL TEST CA V3,OU=Certificat de test Test certificate,O=certSIGN,C=RO","subjectDN":"MIGDMQswCQYDVQQGEwJSTzERMA8GA1UEChMIY2VydFNJR04xLDAqBgNVBAsTI0NlcnRpZmljYXQgZGUgdGVzdCBUZXN0IGNlcnRpZmljY
XRlMTMwMQYDVQQDEypDRVJUU0lHTiBGT1IgQkFOS0lORyBTSU1QTEUgU1NMIFRFU1QgQ0EgVjM=","whitelist":false,"attachment":{"hash":"301362625731dac5eb7b81495d7d67c27b4fb1d65a5cd95523b7a30f919868a6","size":1658,"filename":"BvkH8t9guVZzP7noiYDJM6l1ZztKvb9J8-54ik-6WFk=.pem","location":"security-state-staging/intermediates/de79005d-2e2f-4dc0-86e8-f105ed580da7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BvkH8t9guVZzP7noiYDJM6l1ZztKvb9J8+54ik+6WFk=","crlite_enrolled":false,"id":"1489788e-e63f-4fdc-8e4e-1a06fd2d279c","last_modified":1562025503177},{"schema":1562025500927,"derHash":"+p1t8a8CdTANUqSF0DawVDtT37REG+wLjJoN/4EbbYg=","subject":"CN=Entrust Code Signing Certification Authority - L1D,OU=www.entrust.net/rpa is incorporated by reference+OU=(c) 2009 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIG+MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L3JwYSBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAwOSBFbnRydXN0LCBJbmMuMTswOQYDVQQDEz
JFbnRydXN0IENvZGUgU2lnbmluZyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEwxRA==","whitelist":false,"attachment":{"hash":"3ab4f99522d4a1ebba62378e60fa3d93d465e523147db6f431462224a0e1fed6","size":1796,"filename":"q4FwU8-QScEfhsNqympCne6e65ZASaL3iUkrlGsfLn4=.pem","location":"security-state-staging/intermediates/7f63a308-cc37-4aa4-a0df-341d3c227db8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q4FwU8+QScEfhsNqympCne6e65ZASaL3iUkrlGsfLn4=","crlite_enrolled":false,"id":"bab7ff8a-caf1-417f-8c18-45de6956da8b","last_modified":1562025501666},{"schema":1562025500166,"derHash":"6uWboswzKBpc3exQz7/Z3QylVl8872mMk2ahDOwIf5c=","subject":"CN=Domain The Net Technologies Ltd CA for SSL R2,O=Domain The Net Technologies Ltd,C=IL","subjectDN":"MG8xCzAJBgNVBAYTAklMMSgwJgYDVQQKDB9Eb21haW4gVGhlIE5ldCBUZWNobm9sb2dpZXMgTHRkMTYwNAYDVQQDDC1Eb21haW4gVGhlIE5ldCBUZWNobm9sb2dpZXMgTHRkIENBIGZvciBTU0wgUjI=","whitelist":false,"attachment":{"hash":"dc6270566751505a7936c7847e06bc81b9c0a9ca4b21fd6512fbeaa3d7d3bc7d","siz
e":2483,"filename":"1FBqLyRsP8ibxXXsW64LYWGTeYMGSsUTMFEetUQakD8=.pem","location":"security-state-staging/intermediates/c052ede4-8c2e-4eed-97b4-5d3e127c78f8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1FBqLyRsP8ibxXXsW64LYWGTeYMGSsUTMFEetUQakD8=","crlite_enrolled":true,"id":"461724c9-5ae7-4021-be3d-b5c081e3b8d7","last_modified":1562025500918},{"schema":1562025498622,"derHash":"kY0pldob4hnjp+S6La+hGgJe6/TUo1o6iy25nnksaH4=","subject":"CN=Institute of Accelerating Systems and Applications SSL CA R1,O=Institute of Accelerating Systems and Applications,L=Athens,C=GR","subjectDN":"MIGiMQswCQYDVQQGEwJHUjEPMA0GA1UEBxMGQXRoZW5zMTswOQYDVQQKEzJJbnN0aXR1dGUgb2YgQWNjZWxlcmF0aW5nIFN5c3RlbXMgYW5kIEFwcGxpY2F0aW9uczFFMEMGA1UEAxM8SW5zdGl0dXRlIG9mIEFjY2VsZXJhdGluZyBTeXN0ZW1zIGFuZCBBcHBsaWNhdGlvbnMgU1NMIENBIFIx","whitelist":false,"attachment":{"hash":"3227d4cd9162632a3344b5bf40179e61028d95d502e5747d6ff997f99e1464eb","size":2584,"filename":"at9jK6417LeuNsZ615BVxxLWrLPtoJLdMBfDe4WPAzQ=.pem","l
ocation":"security-state-staging/intermediates/bbefa09c-cafc-4275-a3e2-b647f7076851.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"at9jK6417LeuNsZ615BVxxLWrLPtoJLdMBfDe4WPAzQ=","crlite_enrolled":true,"id":"a1191fee-2efa-4764-8e64-b63579b09235","last_modified":1562025499398},{"schema":1562025497127,"derHash":"/CJFvlncZGHUEZw6Bu2+5NKIVWvYjEeeMO1fPoFhZGk=","subject":"CN=MPG CA - G02,O=Max-Planck-Gesellschaft,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MGoxCzAJBgNVBAYTAkRFMQ8wDQYDVQQIDAZCYXllcm4xETAPBgNVBAcMCE11ZW5jaGVuMSAwHgYDVQQKDBdNYXgtUGxhbmNrLUdlc2VsbHNjaGFmdDEVMBMGA1UEAwwMTVBHIENBIC0gRzAy","whitelist":false,"attachment":{"hash":"43c1869e7e9b39a3e88534fec1a8ad7b6aa63eab2ad5f1a0dc457dc65ab08804","size":1983,"filename":"KEB9gT0zG0ZMgr0_mhORKVvNbNKMDEvo89gurjLLzYk=.pem","location":"security-state-staging/intermediates/608fe6af-14bc-4de0-83bc-a7b26be45449.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KEB9gT0zG0ZMgr0/mhORKVvNbNKMDEvo89gurjLLzYk=","crlite_enrolled":true,"i
d":"271d3f60-f00e-48ab-a3ed-13509369476e","last_modified":1562025497855},{"schema":1562025496364,"derHash":"ek/LoHn1vdzwp2w7A6N34VWlMAlHShs+uPNJYaU72pw=","subject":"CN=SECOM Passport for Member PUB CA8,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTg=","whitelist":false,"attachment":{"hash":"c0684ee95f098f8e4e9d458872bee1f661763e16e08e9d6468a417a6866b21c0","size":1695,"filename":"knWHoMFrEpDYcH_bcs_miCxeOB-UDZ0Od9J53hcgFTo=.pem","location":"security-state-staging/intermediates/edd28ea1-49ec-45fe-9115-70331fce9330.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"knWHoMFrEpDYcH/bcs/miCxeOB+UDZ0Od9J53hcgFTo=","crlite_enrolled":false,"id":"d9b97f0b-1f33-4059-afc0-b9b22421d0da","last_modified":1562025497120},{"schema":1562025495613,"derHash":"uxwB6ITdCR
mrlNWvVXXNb+tx5WCytYc1p4sVChDVS/M=","subject":"CN=AAMC Direct Intermediate CA,OU=AAMC Direct Messaging,O=Anne Arundel Medical Center,C=US","subjectDN":"MHkxCzAJBgNVBAYTAlVTMSQwIgYDVQQKExtBbm5lIEFydW5kZWwgTWVkaWNhbCBDZW50ZXIxHjAcBgNVBAsTFUFBTUMgRGlyZWN0IE1lc3NhZ2luZzEkMCIGA1UEAxMbQUFNQyBEaXJlY3QgSW50ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{"hash":"286bfecb53b0d9b29d26533c7d51c5fb420701ea2fd97d77c8c2e35b5527c23c","size":2203,"filename":"MX1pC2RK37-NPr5PI1QhpoQO1JlFoVx4eAWyShJegwo=.pem","location":"security-state-staging/intermediates/26ef4eb5-e69e-4422-ba08-cba5446f95be.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MX1pC2RK37+NPr5PI1QhpoQO1JlFoVx4eAWyShJegwo=","crlite_enrolled":false,"id":"a9d06cda-c795-4dae-8f8d-e612bb618904","last_modified":1562025496356},{"schema":1562025493351,"derHash":"+gCOFtHli+acfT5VNTz0/KJtqc5D51sYJs7xabdxlk4=","subject":"SERIALNUMBER=201903,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEw
hCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTAz","whitelist":false,"attachment":{"hash":"3d9efb2320ac377e39214a083ef728e608468f15ac940b44b5ec026f6b5f5dd1","size":2333,"filename":"_ptmGnIhGIL555v-VzrWrwWliXZG-_Gtjaw3U9yq0Dk=.pem","location":"security-state-staging/intermediates/493165da-23b3-4744-a175-3a3659e553c7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/ptmGnIhGIL555v+VzrWrwWliXZG+/Gtjaw3U9yq0Dk=","crlite_enrolled":false,"id":"122cfda9-8350-4bd2-b226-92d6ec264cdd","last_modified":1562025494102},{"schema":1562025490333,"derHash":"tEwGMAOfZeXc5XF6fLCMvtg+EDtHFTWBkcxLIgeTBbo=","subject":"SERIALNUMBER=201907,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTA3","whitelist":false,"attachment":{"hash":"c4e57b87ffc99bca0261b099a9b314f1391c296d7b6d6fa3734ffe823fcb2976","siz
e":2333,"filename":"gfBNwfL6MEQDNCljm2FFypvqnLrJmZGMO3sW47AmZDA=.pem","location":"security-state-staging/intermediates/23d7f272-7d2b-42c7-a799-ce1d5b201e01.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gfBNwfL6MEQDNCljm2FFypvqnLrJmZGMO3sW47AmZDA=","crlite_enrolled":false,"id":"b42c7c68-9e0f-4fe8-8a25-e74156a8a1a3","last_modified":1562025491074},{"schema":1562025489551,"derHash":"uo7RkOkyWu1DgsaERjECUB+DG5b2PojKNfL+G7yMIsA=","subject":"CN=Piraeus University of Applied Sciences CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGKMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxNTAzBgNVBAMTLFBpcmFldXMgVW5pdmVyc2l0eSBvZiBBcHBsaWVkIFNjaWVuY2VzIENBIFIx","whitelist":false,"attachment":{"hash":"9da0c9629fca6be2e40503371efd3345089214f1c51772ce5424419163e0d8f2","size":2743,"filename":"yLZQpI_8sbjP1vWxETUhe0HsHKYOrjE111-yrrS8VHw=.pem","location":"security-state-staging/intermediates/
bddc57bd-9002-4ae5-bbf1-5bc8f7478e4e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yLZQpI/8sbjP1vWxETUhe0HsHKYOrjE111+yrrS8VHw=","crlite_enrolled":false,"id":"b46c4aee-89d5-489f-952e-a0be25381950","last_modified":1562025490325},{"schema":1562025488811,"derHash":"hdsL7tBmjQTXB0AA+Y6EsI0P1UKf9KJi3ny8FSihodo=","subject":"CN=SSL.com EV SSL Intermediate CA RSA R3,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxLjAsBgNVBAMMJVNTTC5jb20gRVYgU1NMIEludGVybWVkaWF0ZSBDQSBSU0EgUjM=","whitelist":false,"attachment":{"hash":"c46e4dd819439f5a2d9a5d2211601d40b993e06abd5d732d23a35bb22ba8c164","size":2442,"filename":"4V6KJv09j4wCTdB1kG8-rfM7XCExYEpiXCGzJNL58IQ=.pem","location":"security-state-staging/intermediates/d130da26-d0a0-4e38-8c36-21ff44017d65.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4V6KJv09j4wCTdB1kG8+rfM7XCExYEpiXCGzJNL58IQ=","crlite_enrolled":true,"id":"2e55d70f-46c9-4052-8db
4-0a4d5811bae2","last_modified":1562025489544},{"schema":1562025486585,"derHash":"5mg+iDFc0ctAPAzqSQ98S0yCyRzUhQN0iarbqpCDn2E=","subject":"CN=RapidSSL SHA256 CA,O=GeoTrust Inc.,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJSYXBpZFNTTCBTSEEyNTYgQ0E=","whitelist":false,"attachment":{"hash":"0c427bb269700930378fdff9222a8084e44be120208a9d1c85da1818c55ccc4f","size":1553,"filename":"Slt48iBVTjuRQJTjbzopminRrHSGtndY0_sj0lFf9Qk=.pem","location":"security-state-staging/intermediates/51d0ad57-d709-4fd6-878e-800853fe44a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Slt48iBVTjuRQJTjbzopminRrHSGtndY0/sj0lFf9Qk=","crlite_enrolled":true,"id":"a1d663ba-8d2d-47cc-a3cf-348370fe97e5","last_modified":1562025487320},{"schema":1562025484343,"derHash":"Dugs637KJBzMKdTliAYsQ+RH7ebGlvE1rMQRlmEmuoM=","subject":"CN=Aristotle University of Thessaloniki SSL RSA SubCA R2,O=Aristotle University of Thessaloniki,L=Thessaloniki,C=GR","subjectDN":"MIGTMQswCQYDVQQGEwJ
HUjEVMBMGA1UEBwwMVGhlc3NhbG9uaWtpMS0wKwYDVQQKDCRBcmlzdG90bGUgVW5pdmVyc2l0eSBvZiBUaGVzc2Fsb25pa2kxPjA8BgNVBAMMNUFyaXN0b3RsZSBVbml2ZXJzaXR5IG9mIFRoZXNzYWxvbmlraSBTU0wgUlNBIFN1YkNBIFIy","whitelist":false,"attachment":{"hash":"01ab73a33c9d719f58a09c3705ba3a27f08494d6b98a58a3c1cf1a8b73c04830","size":2962,"filename":"MOR9elaY2GOSXRQ0lkPZuOKdFNjk0evRDxZV72l0G6Y=.pem","location":"security-state-staging/intermediates/ae130e5d-a17e-4033-9421-9945a803151d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MOR9elaY2GOSXRQ0lkPZuOKdFNjk0evRDxZV72l0G6Y=","crlite_enrolled":true,"id":"0cfe3154-7bb3-4615-b637-5cd7a868f07c","last_modified":1562025485073},{"schema":1562025478331,"derHash":"iHH5nI9khT2RZEZOWa+z6th7brIPmGSbSweghO5sEk4=","subject":"SERIALNUMBER=201402,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTQwMg==","whitelist":false,"attachment":{"hash":"ec26f368737875a2881f23314886b24f9df446cc2759a1b454a725b37cc0fb48","size":1402,"file
name":"5MRz3xew1J2eodt0I8LbElqYaptWQ2dbe84uXbsXefE=.pem","location":"security-state-staging/intermediates/fe54a667-4e34-4f87-9fa8-661cf2939604.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5MRz3xew1J2eodt0I8LbElqYaptWQ2dbe84uXbsXefE=","crlite_enrolled":false,"id":"4a757875-256e-4611-9250-7948cffd2e85","last_modified":1562025479062},{"schema":1562025477573,"derHash":"ICi1Ih3id+8elh9OMYKjxQDuWqZ79bVE06bVil6md30=","subject":"CN=RU-CENTER High Assurance Services CA 2,O=RU-Center (\u0417\u0410\u041e \u0420\u0435\u0433\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0421\u0435\u0442\u0435\u0432\u043e\u0439 \u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u0426\u0435\u043d\u0442\u0440),L=Moscow,ST=Moscow,C=RU","subjectDN":"MIHNMQswCQYDVQQGEwJSVTEPMA0GA1UECBMGTW9zY293MQ8wDQYDVQQHEwZNb3Njb3cxazBpBgNVBAoMYlJVLUNlbnRlciAo0JfQkNCeINCg0LXQs9C40L7QvdCw0LvRjNC90YvQuSDQodC10YLQtdCy0L7QuSDQmNC90YTQvtGA0LzQsNGG0LjQvtC90L3Ri9C5INCm0LXQvdGC0YApMS8w
LQYDVQQDEyZSVS1DRU5URVIgSGlnaCBBc3N1cmFuY2UgU2VydmljZXMgQ0EgMg==","whitelist":false,"attachment":{"hash":"2084d64f65967c43d9b17db5f8cdd4e5657fa8117b7544e8e70885c3ba03dc4d","size":2259,"filename":"Y8qWv3kk8QX9ecEOiluI35bMi7sfrRJPiD5ZnUYgq-g=.pem","location":"security-state-staging/intermediates/31475041-d093-493a-941d-b3b3020753fd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Y8qWv3kk8QX9ecEOiluI35bMi7sfrRJPiD5ZnUYgq+g=","crlite_enrolled":true,"id":"8dae2c43-6457-4056-9435-7fd37736a650","last_modified":1562025478323},{"schema":1562025476821,"derHash":"vJI+nHvr5T9VyXMrFvUdU7dyAzmkSBtCgaQBP2Ypn7Y=","subject":"CN=SSL.com DV CA,OU=www.ssl.com,O=SSL.com,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMRAwDgYDVQQKEwdTU0wuY29tMRQwEgYDVQQLEwt3d3cuc3NsLmNvbTEWMBQGA1UEAxMNU1NMLmNvbSBEViBDQQ==","whitelist":false,"attachment":{"hash":"c5707914003f2e3348b2d819e8a3f836ef2d4b8d2553ceb75fe22a2b62af054c","size":2105,"filename":"Csnhxeh1vsuMPZmVPaq9zufjZbtCA2WDcjROo3ZMJmY=.pem","location":"security-s
tate-staging/intermediates/641c5dbf-a4d3-4f33-854a-1c71bb717a3b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Csnhxeh1vsuMPZmVPaq9zufjZbtCA2WDcjROo3ZMJmY=","crlite_enrolled":true,"id":"4af93016-ef93-484b-9fb5-971506f15e7e","last_modified":1562025477565},{"schema":1562025476076,"derHash":"W49+r3XRjWdK5nBf+rQ8q6YISpWm8Z4YCPBvCwzTfw0=","subject":"SERIALNUMBER=PT507015851,CN=DIGITALSIGN QUALIFIED TSA CA,O=DigitalSign Certificadora Digital,L=Guimaraes (see current address at www.digitalsign.pt),C=PT","subjectDN":"MIG2MRQwEgYDVQQFEwtQVDUwNzAxNTg1MTELMAkGA1UEBhMCUFQxPjA8BgNVBAcTNUd1aW1hcmFlcyAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuZGlnaXRhbHNpZ24ucHQpMSowKAYDVQQKEyFEaWdpdGFsU2lnbiBDZXJ0aWZpY2Fkb3JhIERpZ2l0YWwxJTAjBgNVBAMTHERJR0lUQUxTSUdOIFFVQUxJRklFRCBUU0EgQ0E=","whitelist":false,"attachment":{"hash":"de61aef599e63efcfa0754fb2e8a3dd87ffb49069188a24c4c267b8330852af3","size":2999,"filename":"eba3Dm8gkeBOmAEPMEXJUQJqoFAZpTSW0dUTpoKiXiU=.pem","location":"security-state-staging/intermed
iates/6ba896c9-1dbc-4dbb-a2b0-7b367394ce1a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eba3Dm8gkeBOmAEPMEXJUQJqoFAZpTSW0dUTpoKiXiU=","crlite_enrolled":false,"id":"533f7578-20dd-4424-9067-dcd3cd960b25","last_modified":1562025476813},{"schema":1562025475338,"derHash":"vs/eEkzt00TZJctV7dpmLZqcBoj6mghwzj27baQxPk4=","subject":"CN=QuoVadis PKIoverheid Organisatie Services CA - G3,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MIGEMQswCQYDVQQGEwJOTDEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xFzAVBgNVBGEMDk5UUk5MLTMwMjM3NDU5MTowOAYDVQQDDDFRdW9WYWRpcyBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBTZXJ2aWNlcyBDQSAtIEcz","whitelist":false,"attachment":{"hash":"ba1fd2a539b87d0e6ce58d2ff164fa4995802e3187facea07d2d4a47e2554906","size":2682,"filename":"Dd3dL3h7MwKL57AT7SDAXLcnBsv-F-NSsju9HDfnIUM=.pem","location":"security-state-staging/intermediates/c00199d1-677f-403e-a72f-6661d2766c66.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Dd3dL3h7MwKL57AT7SDAXLcnBsv+F+NSsju9HDfnIUM=","crlite_enrol
led":false,"id":"eada2bb2-7eee-4182-8069-0d14b9b2911e","last_modified":1562025476068},{"schema":1562025474587,"derHash":"I5/6htcQM7olWRR4IFfYfoQhrt1ZELeGkotqEkjD40E=","subject":"CN=CA Disig R2I3 Certification Service,O=Disig a.s.,L=Bratislava,C=SK","subjectDN":"MGUxCzAJBgNVBAYTAlNLMRMwEQYDVQQHDApCcmF0aXNsYXZhMRMwEQYDVQQKDApEaXNpZyBhLnMuMSwwKgYDVQQDDCNDQSBEaXNpZyBSMkkzIENlcnRpZmljYXRpb24gU2VydmljZQ==","whitelist":false,"attachment":{"hash":"3420f786d68e2c9b43dcb43b746ca258b7a646ade27a146a00fe8af877df4f59","size":2142,"filename":"QUf9pBcUZxnKMgP_Op4uLhRku-x-b_JvkEQPmCrNbZY=.pem","location":"security-state-staging/intermediates/ccf776b5-dad9-4394-b424-8c2cacda75f9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QUf9pBcUZxnKMgP/Op4uLhRku+x+b/JvkEQPmCrNbZY=","crlite_enrolled":false,"id":"85d742bd-cad8-4921-b914-8cb3b1931d2c","last_modified":1562025475330},{"schema":1562025473063,"derHash":"/SlUprx/R91EP2Fk2EVCRbsM/pz1Ws4327NbjkiVp9k=","subject":"CN=Technological Educational Insti
tute of Epirus CA R3,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGRMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxPDA6BgNVBAMTM1RlY2hub2xvZ2ljYWwgRWR1Y2F0aW9uYWwgSW5zdGl0dXRlIG9mIEVwaXJ1cyBDQSBSMw==","whitelist":false,"attachment":{"hash":"258f0ec659e411b76f696a63b9b54690d12b54e96a2fb86e896474db260f8cae","size":2560,"filename":"ifNtHuGOosnfWP8xv-35qett4I3b7lw-i4hIbE8TRKQ=.pem","location":"security-state-staging/intermediates/d58bdb06-bf59-4f47-a90c-3aedbe736775.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ifNtHuGOosnfWP8xv+35qett4I3b7lw+i4hIbE8TRKQ=","crlite_enrolled":true,"id":"818fa4ff-655c-4317-9fc1-6f97a7945f56","last_modified":1562025473803},{"schema":1562025472316,"derHash":"TWcjeyz6z/893IPC/xySqOCpinG9BO05+K/0Kq+ZNx0=","subject":"CN=Shuidi Webtrust SSL Domain Validated,O=Shanghai Ping An Credit Reference Company Limited,C=CN","subjectDN":"MHgxCzAJBgNVBAYTAkNOMTow
OAYDVQQKDDFTaGFuZ2hhaSBQaW5nIEFuIENyZWRpdCBSZWZlcmVuY2UgQ29tcGFueSBMaW1pdGVkMS0wKwYDVQQDDCRTaHVpZGkgV2VidHJ1c3QgU1NMIERvbWFpbiBWYWxpZGF0ZWQ=","whitelist":false,"attachment":{"hash":"63bdeba64d270d7fe2be7ee4b7e9a192c4f735067578e4fd400929b5b7d868b1","size":1780,"filename":"z8UvZVIyaOTkJosl2Vn8Hbcn7ChKCosFEmKBgvRLh6U=.pem","location":"security-state-staging/intermediates/8c50117d-cf04-4cb1-a7c7-4359f02fe4df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z8UvZVIyaOTkJosl2Vn8Hbcn7ChKCosFEmKBgvRLh6U=","crlite_enrolled":true,"id":"d35f58a2-ee1e-4379-a992-e748ce904d72","last_modified":1562025473055},{"schema":1562025471549,"derHash":"HZNobKQscDlPvcK8H5hGHRmHHCoAB4uBVJkxLtn2/gw=","subject":"CN=NetLock \u00dczleti Eat. (Class B Legal) Tan\u00fas\u00edtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIG0MQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610d
sOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTFCMEAGA1UEAww5TmV0TG9jayDDnHpsZXRpIEVhdC4gKENsYXNzIEIgTGVnYWwpIFRhbsO6c8OtdHbDoW55a2lhZMOz","whitelist":false,"attachment":{"hash":"4fba3ae97dd053930e8514eb3fdcdbc3ccccbadc3b59f72c390b9e8968b894f8","size":2198,"filename":"_vwER7WMeggAoauXgB8U4heDYF3dmMm_S99ZfAayhZ8=.pem","location":"security-state-staging/intermediates/77e0aaee-29fa-489c-be2e-6dfde8a27857.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/vwER7WMeggAoauXgB8U4heDYF3dmMm/S99ZfAayhZ8=","crlite_enrolled":false,"id":"7174ab51-9ffe-493a-89bf-49620f52a798","last_modified":1562025472308},{"schema":1562025470795,"derHash":"igrdrk8s+dLCTXpJ7tXIbIsd8chbpz3lxHfLFPoNE+k=","subject":"CN=TeleSec ServerPass Extended Validation Class 3 CA,OU=T-Systems Trust Center,O=T-Systems International GmbH,POSTALCODE=57250,STREET=Untere Industriestr. 20,L=Netphen,ST=Nordrhein Westfalen,C=DE","subjectDN":"MIHzMQswCQYDVQQGEwJERTElMCMGA1UECgwcVC1TeXN0ZW1zIEludGVybmF0aW9uYWwgR21iSDEfMB0GA1UECww
WVC1TeXN0ZW1zIFRydXN0IENlbnRlcjEcMBoGA1UECAwTTm9yZHJoZWluIFdlc3RmYWxlbjEOMAwGA1UEEQwFNTcyNTAxEDAOBgNVBAcMB05ldHBoZW4xIDAeBgNVBAkMF1VudGVyZSBJbmR1c3RyaWVzdHIuIDIwMTowOAYDVQQDDDFUZWxlU2VjIFNlcnZlclBhc3MgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDbGFzcyAzIENB","whitelist":false,"attachment":{"hash":"6a9bc970754ff10c0c32a05c6c462115e39db917fcb15d1f1100b01b47dd134b","size":2081,"filename":"MTsGouOKFT5kWxvdmCP_-h4QV7TzhyPSvGXJhG-g5f0=.pem","location":"security-state-staging/intermediates/05b2e8d3-5c0a-4ac8-a431-6bdcf5338f52.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MTsGouOKFT5kWxvdmCP/+h4QV7TzhyPSvGXJhG+g5f0=","crlite_enrolled":true,"id":"a0ea2a21-fe38-42f0-9e75-2978ac3f1b2b","last_modified":1562025471541},{"schema":1562025469311,"derHash":"E0XC05rktlzKceiOmispxx3JE/lS6TWoErAE26eueVc=","subject":"CN=ACCVCA-110,OU=PKIACCV,O=ACCV,C=ES","subjectDN":"MEMxEzARBgNVBAMMCkFDQ1ZDQS0xMTAxEDAOBgNVBAsMB1BLSUFDQ1YxDTALBgNVBAoMBEFDQ1YxCzAJBgNVBAYTAkVT","whitelist":false,"attachment":{"hash":"e6da6a137d6
2a7acc06ba43bbecbca249317995ef2a5821be7c4c3e4904d11cd","size":2649,"filename":"qX1E174XIirdC_7IZnHG6ACm0iCltwbZSr_U507C-Ck=.pem","location":"security-state-staging/intermediates/27528fc3-b963-415a-a99a-4f327d7d7c83.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qX1E174XIirdC/7IZnHG6ACm0iCltwbZSr/U507C+Ck=","crlite_enrolled":false,"id":"4dff9826-c4f5-4bad-9c0b-ef5d5c0bc30d","last_modified":1562025470044},{"schema":1562025468558,"derHash":"ZOtX2jVJwmWF6CxePNUpfaAGZWPNtISlVcVS/HZ3piA=","subject":"SERIALNUMBER=201804,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE4MDQ=","whitelist":false,"attachment":{"hash":"fe1e835417bcb19ae6c16ab3e8a48ce53769d1e1bdfb3714b59bd2df2331e973","size":2337,"filename":"LzTtPR8Oe31ePAty2U7CsncdK3ci20JcLZlNrvPd6qQ=.pem","location":"security-state-staging/intermediates/2295f504-6018-4bf5-ae72-802108
de8889.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LzTtPR8Oe31ePAty2U7CsncdK3ci20JcLZlNrvPd6qQ=","crlite_enrolled":false,"id":"9e0dab9a-1aa8-4da7-91a7-97d2690aa2f7","last_modified":1562025469304},{"schema":1562025467075,"derHash":"z8CPv6IZg+Ql6/lszMSnKsCehze6gUICoNaL34wVfCI=","subject":"CN=TrustAsia RSA Code Signing CA,O=TrustAsia Technologies\\, Inc.,ST=Shanghai,C=CN","subjectDN":"MG8xCzAJBgNVBAYTAkNOMREwDwYDVQQIEwhTaGFuZ2hhaTElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEmMCQGA1UEAxMdVHJ1c3RBc2lhIFJTQSBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"af7f22b3550a9db54d3cbd9e01b7c2e6a303d300c2051effaeb73379580070c4","size":2105,"filename":"uYRmb4FygkQFPiA00xhe4MbHYAXdVv1gWA73i6X9SiE=.pem","location":"security-state-staging/intermediates/e4543cc9-e587-4ab6-843b-44246185720c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uYRmb4FygkQFPiA00xhe4MbHYAXdVv1gWA73i6X9SiE=","crlite_enrolled":false,"id":"1a94f983-ff93-4236-9e20-5cc280aab20d","last_modi
fied":1562025467809},{"schema":1562025464817,"derHash":"ORLFhecn8rB3iI9njwQ/2N3O6ekeZiimJFsbjrvMORI=","subject":"CN=Class2 e-Szigno SSL CA 2016,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHwxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEcMBoGA1UEYQwTVkFUSFUtMjM1ODQ0OTctMi00MTEkMCIGA1UEAwwbQ2xhc3MyIGUtU3ppZ25vIFNTTCBDQSAyMDE2","whitelist":false,"attachment":{"hash":"98b37ae1cc647006d33e1b0891b42ab2c5f41787f32cce3681803aba7fb66524","size":2580,"filename":"NZP4aC4bQmjlxXRAcygA6LF8yzeZlyKkTTGIC7B9glM=.pem","location":"security-state-staging/intermediates/410dd037-e90b-43ec-967e-bcf28d2920e0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NZP4aC4bQmjlxXRAcygA6LF8yzeZlyKkTTGIC7B9glM=","crlite_enrolled":true,"id":"7c942e26-4b79-4354-935f-aa9e284f0568","last_modified":1562025465559},{"schema":1562025464078,"derHash":"JZptXtJOsgfNtf0U6tyHi94RHMt8y/uCdof3ecEYthI=","subject":"SERIALNUMBER=201404,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUw
EwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTQwNA==","whitelist":false,"attachment":{"hash":"889019d5ab04ba92e625e9b5cdc1390f99751d5c4a648649397c10e68edc795f","size":2097,"filename":"FvxdlGm9nh2LfyplssKej4AhCOWYExNd3MU9X-6cfPI=.pem","location":"security-state-staging/intermediates/1c5b7331-8fbe-451b-b06b-103d0b79a2b1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FvxdlGm9nh2LfyplssKej4AhCOWYExNd3MU9X+6cfPI=","crlite_enrolled":false,"id":"f4b85424-2c51-497a-8bbf-1463f03e920b","last_modified":1562025464810},{"schema":1562025462586,"derHash":"2VEjGV+gLBzEBXMzbmTI36IQsXc+PGEQtusm5UN+I6U=","subject":"CN=McAfee OV SSL CA 2,O=McAfee\\, Inc.,L=Santa Clara,ST=CA,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEUMBIGA1UEBxMLU2FudGEgQ2xhcmExFTATBgNVBAoTDE1jQWZlZSwgSW5jLjEbMBkGA1UEAxMSTWNBZmVlIE9WIFNTTCBDQSAy","whitelist":false,"attachment":{"hash":"1f4e1d5a686d456d53d5b5d7a9fcd1f0721fd2a598fe72d3071f05cc432b1bdd","size":2117,"filename":"KKKPHEdd8Vi-l7k78OoSVKsWZubT8CNhOr4ZCA
TqRXU=.pem","location":"security-state-staging/intermediates/2324e47a-771c-434f-a1f7-fd50942664f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KKKPHEdd8Vi+l7k78OoSVKsWZubT8CNhOr4ZCATqRXU=","crlite_enrolled":true,"id":"aab5604f-ab34-4e84-a719-7f0aed1db11d","last_modified":1562025463317},{"schema":1562025461841,"derHash":"PSkoopiCJ85OvDGao05lUunZiDnVziEU55+PXsK/neA=","subject":"CN=Jax HR Saint Vincents HIE CA,OU=Orion Health Direct Secure Messaging,O=Jax Health Records - SV HIE,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzEkMCIGA1UEChMbSmF4IEhlYWx0aCBSZWNvcmRzIC0gU1YgSElFMS0wKwYDVQQLEyRPcmlvbiBIZWFsdGggRGlyZWN0IFNlY3VyZSBNZXNzYWdpbmcxJTAjBgNVBAMTHEpheCBIUiBTYWludCBWaW5jZW50cyBISUUgQ0E=","whitelist":false,"attachment":{"hash":"f03905d542a9fefa6497381ee3132f9939c39d55d0cc647dcf61331e4aba8e20","size":2300,"filename":"7TZ-ZhVf1UwnhC-sgYAt2zg5_E6FaYgFktauJbqafHQ=.pem","location":"security-state-staging/intermediates/3b25f76c-ae83-4275-88b5-ca42f7b985d8.pem","mimetype":"application/x
-pem-file"},"pubKeyHash":"7TZ+ZhVf1UwnhC+sgYAt2zg5/E6FaYgFktauJbqafHQ=","crlite_enrolled":false,"id":"d1c3009a-63fb-421f-9ad2-a297af5df98e","last_modified":1562025462578},{"schema":1562025457260,"derHash":"ku8vW1U1cGB9wpyAEOerwWKD/jVflVokglQpCiYKnrs=","subject":"CN=RapidSSL SHA256 CA - G2,O=GeoTrust Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSAwHgYDVQQDExdSYXBpZFNTTCBTSEEyNTYgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"b94d4cf0a2a3415cd22cc29ae5ef73b31f0116f5e5eb61e676261b110cbcd64e","size":1691,"filename":"hKt_n8XrJnP3czMTKgZLx5NhiiXfYrdLodt3B3OSBA4=.pem","location":"security-state-staging/intermediates/8633f6bc-e397-45d0-9bda-05a8c8b7ef4f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hKt/n8XrJnP3czMTKgZLx5NhiiXfYrdLodt3B3OSBA4=","crlite_enrolled":true,"id":"64a37cce-9a75-4f11-a71a-39c90d2fd63f","last_modified":1562025458022},{"schema":1562025456487,"derHash":"Irbr3umwptpcn6ztJ7+dzgmAPCr8EfdrXAvPR7f31WA=","subject":"SERIALNUMBER
=A62634068,CN=AC Firmaprofesional - OTC,OU=Certificados de un solo uso,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGLMQswCQYDVQQGEwJFUzEeMBwGA1UECgwVRmlybWFwcm9mZXNpb25hbCBTLkEuMSQwIgYDVQQLDBtDZXJ0aWZpY2Fkb3MgZGUgdW4gc29sbyB1c28xEjAQBgNVBAUTCUE2MjYzNDA2ODEiMCAGA1UEAwwZQUMgRmlybWFwcm9mZXNpb25hbCAtIE9UQw==","whitelist":false,"attachment":{"hash":"76dd537d45ecc45c75cf9dbe89c64546ab6cf31e13c36fa01e475159f98cf4dd","size":2312,"filename":"D2ZFPMrSYrfEIs9VT_eGkCEQbRZnAyvXpiKOfaN8FXQ=.pem","location":"security-state-staging/intermediates/d6327b17-6e10-4392-90ec-a8d158fe27a5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D2ZFPMrSYrfEIs9VT/eGkCEQbRZnAyvXpiKOfaN8FXQ=","crlite_enrolled":false,"id":"0275846e-4b4d-4542-ad90-89c87fb603c5","last_modified":1562025457253},{"schema":1562025454957,"derHash":"Uabi7UEECq6OCJ+6v+JqONZW9bCFVjU1L+6VmChrsCE=","subject":"CN=MedicaSoft Direct Intermediate CA,OU=MedicaSoft Direct Messaging,O=MedicaSoft LLC,C=US","subjectDN":"MHgxCzAJBgNVBAYTAlVTMRcwFQ
YDVQQKEw5NZWRpY2FTb2Z0IExMQzEkMCIGA1UECxMbTWVkaWNhU29mdCBEaXJlY3QgTWVzc2FnaW5nMSowKAYDVQQDEyFNZWRpY2FTb2Z0IERpcmVjdCBJbnRlcm1lZGlhdGUgQ0E=","whitelist":false,"attachment":{"hash":"daa2982cf7723c68da56f4044c110649777655603b75f03d055fbeb78ba7d7e5","size":2211,"filename":"V8jIbRTZ2Jcwh--xqrc07Wq7g1sX8qz4m2pdzkAfWc8=.pem","location":"security-state-staging/intermediates/3cb00065-23fe-4e73-b235-f88a1f25319e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V8jIbRTZ2Jcwh++xqrc07Wq7g1sX8qz4m2pdzkAfWc8=","crlite_enrolled":false,"id":"271f87bb-11bf-4a8f-af6d-f6ec1a72b45f","last_modified":1562025455725},{"schema":1562025453478,"derHash":"bWPqpzGCPYDkdiS+YLr6t52eQDDUPj0C4YW9W3fkZls=","subject":"CN=RapidSSL Class 3 ECC CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGlJhcGlkU1NMIENsYXNzIDMgRUNDIENBIEcx","whitelist":false,"attachment":{"hash":"2828a0ce5ac1a03d861de6a22cb781b8b05e
9bd6f6a3e313f25c9f1c8758c0ee","size":1171,"filename":"lsi38yOVz7rsuYInzpsbotgnNxIGE0MBWmOuuxHxyzg=.pem","location":"security-state-staging/intermediates/77ea1cda-330e-46da-9e4f-65f7eac889a7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lsi38yOVz7rsuYInzpsbotgnNxIGE0MBWmOuuxHxyzg=","crlite_enrolled":false,"id":"e6c236d1-ffda-4acc-b341-2a7298a038e3","last_modified":1562025454210},{"schema":1562025452715,"derHash":"JvettyHMLT4m3wY6b+KHOYlLGEcGDDUdxvUxHFffC18=","subject":"CN=Harokopio University CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHgxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEjMCEGA1UEAxMaSGFyb2tvcGlvIFVuaXZlcnNpdHkgQ0EgUjE=","whitelist":false,"attachment":{"hash":"54fc0649f327645e7044c8770a3bfba482784645cec24ffe4fcafdaedea25473","size":2775,"filename":"1hHFX5m3nX4IdanFE39sr-FVsRg1eVo-ThXvmiegp7I=.pem","location":"security-state-staging/intermediates/34bb8603
-35d5-4679-9a06-6af37df069cd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1hHFX5m3nX4IdanFE39sr+FVsRg1eVo+ThXvmiegp7I=","crlite_enrolled":true,"id":"7946af96-326b-4ccb-a095-2e84cf59af33","last_modified":1562025453470},{"schema":1562025451214,"derHash":"L2iJlhp8pwZ+i6EDws+bmpJPjKKT8RF44joZeNLxM9M=","subject":"CN=DigiCert Cloud Services CA-1,O=DigiCert Inc,C=US","subjectDN":"MEsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJTAjBgNVBAMTHERpZ2lDZXJ0IENsb3VkIFNlcnZpY2VzIENBLTE=","whitelist":false,"attachment":{"hash":"a24b6873f5cedd0745b28d5b998ebab8816abfbde4a85fc3dfe456d4dedec97f","size":1646,"filename":"UgpUVparimk8QCjtWQaUQ7EGrtrykc_L8N66EhFY3VE=.pem","location":"security-state-staging/intermediates/ba6a6d30-b17d-4b39-9b81-2d721ab76ed4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UgpUVparimk8QCjtWQaUQ7EGrtrykc/L8N66EhFY3VE=","crlite_enrolled":true,"id":"d3fb3bfb-718d-4849-a53c-b80f49b89818","last_modified":1562025451944},{"schema":1562025450459,"derHash":"LNS
3kUOdL0Zf/G/a+SXgB0q1C61Olxev1fXRvNnkh78=","subject":"CN=CertAssure ECC OV Secure Server Certification Authority,O=CertAssure Inc.,L=San Jose,ST=CA,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExETAPBgNVBAcTCFNhbiBKb3NlMRgwFgYDVQQKEw9DZXJ0QXNzdXJlIEluYy4xQDA+BgNVBAMTN0NlcnRBc3N1cmUgRUNDIE9WIFNlY3VyZSBTZXJ2ZXIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"ca79bd3721de515408fb2058459249c5b588a11756f3a9e50e91639438ddac55","size":1329,"filename":"RHKZjmRhs4WSRd8tMaFGldq7b6_ydn4V_z1gGMLw964=.pem","location":"security-state-staging/intermediates/deb41aaf-0afe-42e7-91f4-fb74aff5a9ca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RHKZjmRhs4WSRd8tMaFGldq7b6/ydn4V/z1gGMLw964=","crlite_enrolled":false,"id":"027ee554-14f3-42b9-ae64-9bcbb2e51d23","last_modified":1562025451206},{"schema":1562025448935,"derHash":"iExR1kO+ESbnLzsbcji6V+AmjB1sSiKs3WJJwXWKU7Y=","subject":"CN=International Hellenic University CA R1,O=Hellenic Academic and Research Insti
tutions Cert. Authority,C=GR","subjectDN":"MIGFMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxMDAuBgNVBAMTJ0ludGVybmF0aW9uYWwgSGVsbGVuaWMgVW5pdmVyc2l0eSBDQSBSMQ==","whitelist":false,"attachment":{"hash":"2796768ed94ab3131e06d64b6e4987fe576a2d613a5f396c616d09ef2dd46087","size":2556,"filename":"a-PXNvvwvG42Rv9bcpQohzLWt4DAOP3eKSIq1DrsZ4k=.pem","location":"security-state-staging/intermediates/daab4b93-62db-4a6b-bc6f-f46b286e4fee.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"a+PXNvvwvG42Rv9bcpQohzLWt4DAOP3eKSIq1DrsZ4k=","crlite_enrolled":true,"id":"abae3c7c-83c7-4697-a147-205cb29d7079","last_modified":1562025449682},{"schema":1562025448185,"derHash":"3Syy7sUvXparHLhDCVL7Vsjmq9/yHqzXaEsc1ziqzP8=","subject":"CN=E-Tu\u011fra Nitelikli Elektronik Sertifika Hizmet Sa\u011flay\u0131c\u0131s\u0131 v2,OU=E-Tu\u011fra Sertifikasyon Merkezi,O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e.,L=Ankara,C=TR
","subjectDN":"MIHVMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMUAwPgYDVQQKDDdFLVR1xJ9yYSBFQkcgQmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXptZXRsZXJpIEEuxZ4uMScwJQYDVQQLDB5FLVR1xJ9yYSBTZXJ0aWZpa2FzeW9uIE1lcmtlemkxSjBIBgNVBAMMQUUtVHXEn3JhIE5pdGVsaWtsaSBFbGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIHYy","whitelist":false,"attachment":{"hash":"d1b6e6e0491d73a71d4ad42658703114017fc34ddf82211704a567e8a79c91cd","size":2532,"filename":"fBnYIiBq8xqr_eWatE8_Qu_RG3xGQvVyMbLEBpH6IaQ=.pem","location":"security-state-staging/intermediates/72c4e87b-00b8-4b94-a865-6ba2f2366e87.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fBnYIiBq8xqr/eWatE8/Qu/RG3xGQvVyMbLEBpH6IaQ=","crlite_enrolled":true,"id":"dbbda893-cc25-40e9-aa54-1d6afced3764","last_modified":1562025448928},{"schema":1562025445182,"derHash":"LmoMx4U6PnkmrnQQ6cF+UnpoGcLn3T3pe6LOH2lYtAs=","subject":"SERIALNUMBER=201705,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vc
mVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwNQ==","whitelist":false,"attachment":{"hash":"74b6e406eb7ac2bec1e58082e3ff46de50ed63b02ee3bd0365de88b16b813eda","size":2154,"filename":"19L-zJeDluxT1FLE36D0RrY9R7OicvzFnd7jRtuX_ls=.pem","location":"security-state-staging/intermediates/5d60b5c0-1b6e-4174-a75c-c9224f584b9f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"19L+zJeDluxT1FLE36D0RrY9R7OicvzFnd7jRtuX/ls=","crlite_enrolled":false,"id":"4627de1d-e106-4813-9f62-b85ac8e53227","last_modified":1562025445931},{"schema":1562025441417,"derHash":"ug4ra/LJjtLDscHAihu9yvknCsUooxlDAd0qC2tnubM=","subject":"CN=GlobalSign Domain Validation CA - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"b7c827e445973f494efe9677b4f9b1b7c035e10603815e752de4b506960b41f1","size":1479,"filename":"TEb9SdyV5a_KjM7PCm4
dOji-92ekxy7uuBKyI1Gg5v4=.pem","location":"security-state-staging/intermediates/14161f5e-9367-4112-8960-f50cd50f3475.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TEb9SdyV5a/KjM7PCm4dOji+92ekxy7uuBKyI1Gg5v4=","crlite_enrolled":false,"id":"83447c12-f983-4f66-882b-bddaa6e4cd07","last_modified":1562025442176},{"schema":1562025440674,"derHash":"x2wI1+IYJ0x92stO0VxzUGt5QvOFHxh+XfpH8l6pV9U=","subject":"CN=SECOM Passport for Member PUB CA6,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTY=","whitelist":false,"attachment":{"hash":"c1024033ff8c20229e3f55fdfb0c9cb4089d0a286659024908308d6dcc485400","size":1695,"filename":"NnvJfXhU4z942ew_zWnITNVe12dq-KCFhcLn4ho0g8c=.pem","location":"security-state-staging/intermediates/18e2fcf0-545a-4a7c-8f38-feb7ce6a5e4f.p
em","mimetype":"application/x-pem-file"},"pubKeyHash":"NnvJfXhU4z942ew/zWnITNVe12dq+KCFhcLn4ho0g8c=","crlite_enrolled":false,"id":"12bf1fe5-ecba-49ad-9f42-1346d9ee9c9c","last_modified":1562025441409},{"schema":1562025439186,"derHash":"8wHcxRgblBCQqRd+n/q0eVt66afSNg6m/aPM4M8N5Jo=","subject":"CN=TrustAsia RSA DV SSL Server CA,O=TrustAsia Technologies\\, Inc.,ST=Shanghai,C=CN","subjectDN":"MHAxCzAJBgNVBAYTAkNOMREwDwYDVQQIEwhTaGFuZ2hhaTElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEnMCUGA1UEAxMeVHJ1c3RBc2lhIFJTQSBEViBTU0wgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"fcc7d966960447b3bda63af26542a4c1033c73ed22b3ac2fbee0dba7c662ad3d","size":2133,"filename":"tBDWSaHOpgXo2ifK2nGQRAAdZWCfbS8D7IHof7Oj_VA=.pem","location":"security-state-staging/intermediates/0a629b5b-de56-4242-9a30-96c616e9eb5e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tBDWSaHOpgXo2ifK2nGQRAAdZWCfbS8D7IHof7Oj/VA=","crlite_enrolled":true,"id":"63bd0518-b42e-4edb-8fff-b0224b41d592","last_modified":15
62025439917},{"schema":1562025437676,"derHash":"Y0/fJsmU52opGNnvxMq5xvyzRO9kKnnIkZK82g7VL0w=","subject":"CN=DigiCert Assured ID CA G3,O=DigiCert Inc,C=US","subjectDN":"MEgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxIjAgBgNVBAMTGURpZ2lDZXJ0IEFzc3VyZWQgSUQgQ0EgRzM=","whitelist":false,"attachment":{"hash":"e8fa45fec67bc1318a3819405f1bfb0e74f616a1846f577a9fcdd141b182ce2d","size":1118,"filename":"PvaHuwE2jRHMyjTCq1y7W0C__z4Wjsb057DegXU0Ars=.pem","location":"security-state-staging/intermediates/1b00f9cd-0690-430b-a511-38456b5cf3a6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PvaHuwE2jRHMyjTCq1y7W0C//z4Wjsb057DegXU0Ars=","crlite_enrolled":true,"id":"7bbbdeb7-763b-47bd-9665-cddbe3976c31","last_modified":1562025438409},{"schema":1562025436923,"derHash":"XYvXudy+UOEcFjgLt+HFnUYsW3LpC38hCmghLsD5QAw=","subject":"SERIALNUMBER=201904,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vU
y5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE5MDQ=","whitelist":false,"attachment":{"hash":"91cf290158b38a029004e1e0ea7b17dda428f83a36f6b66fec3ebb782d024586","size":2337,"filename":"EoHXS07Vl2TiboKoTMwp40itNbiL0bRHZ1TdPrhGiY0=.pem","location":"security-state-staging/intermediates/1bf6c6fe-dcef-4e8e-9218-dba53d3ba51e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EoHXS07Vl2TiboKoTMwp40itNbiL0bRHZ1TdPrhGiY0=","crlite_enrolled":false,"id":"6bcffa6d-4137-4799-89aa-464eceb8efaa","last_modified":1562025437669},{"schema":1562025436165,"derHash":"vrjv6bGnPIQbN1qQ5f/4BIhI46KvZvbE3XuTjW/oxdg=","subject":"CN=TERENA SSL CA 3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MGQxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEYMBYGA1UEAxMPVEVSRU5BIFNTTCBDQSAz","whitelist":false,"attachment":{"hash":"9d893e798bf07b02ee964606c0d5c4fc736a3465312d4895a2e8e195edc18959","size":1788,"filename":"8651wEkMkH5ftiaLp57oqmx3KHTFzDgp7
ZeJXR0ToBs=.pem","location":"security-state-staging/intermediates/6bd257cc-8279-4f32-8333-4b6a39355c56.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8651wEkMkH5ftiaLp57oqmx3KHTFzDgp7ZeJXR0ToBs=","crlite_enrolled":true,"id":"1ca7f3e4-205e-41e8-ba7a-68ea492d0f45","last_modified":1562025436916},{"schema":1562025433930,"derHash":"WDRT7ArdhSaAHmL7hQePCySEXwtnYSgw3al+wOgp9B0=","subject":"CN=Trusted Secure Certificate Authority DV,O=Corporation Service Company,L=Wilmington,ST=DE,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzELMAkGA1UECBMCREUxEzARBgNVBAcTCldpbG1pbmd0b24xJDAiBgNVBAoTG0NvcnBvcmF0aW9uIFNlcnZpY2UgQ29tcGFueTEwMC4GA1UEAxMnVHJ1c3RlZCBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IERW","whitelist":false,"attachment":{"hash":"f504ba38fe591f0922dfc156b69cdcec8b16d9d143a6817c39f7ae33cef29428","size":2166,"filename":"tMbtz8E47Nvp7rWcxBxJwWfSw3stezSqn-KyFA3dAqo=.pem","location":"security-state-staging/intermediates/d7b06aac-8e2d-419e-ad53-1ef35a1631a9.pem","mimetype":"application/x-pem-file
"},"pubKeyHash":"tMbtz8E47Nvp7rWcxBxJwWfSw3stezSqn+KyFA3dAqo=","crlite_enrolled":true,"id":"5df16760-5ec9-4015-87fa-a2ef4bc3bed6","last_modified":1562025434671},{"schema":1562025430931,"derHash":"7c2Itr13/IomgOLsuP+6xFiY36D96YNCXg8b6wWMBLY=","subject":"CN=DigiCert EV Code Signing CA (SHA2) G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLjAsBgNVBAMTJURpZ2lDZXJ0IEVWIENvZGUgU2lnbmluZyBDQSAoU0hBMikgRzI=","whitelist":false,"attachment":{"hash":"a14f5dac8d6f50ed84b645b9217e55446e7d75de6489c65e580ab2df2e4bb02d","size":1804,"filename":"6YC6rxi_m1VJU_goQfoSx50MPPhsiwz8zgwBht5WJBI=.pem","location":"security-state-staging/intermediates/e0f10167-e74d-4bfb-9146-e178b6346fd1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6YC6rxi/m1VJU/goQfoSx50MPPhsiwz8zgwBht5WJBI=","crlite_enrolled":false,"id":"b0a5917e-e060-4bff-9f8a-89d9957be49e","last_modified":1562025431667},{"schema":1562025430186,"der
Hash":"OIPm3kkXpGtZTswtKsapXUPn6qjgiakfm8EE/xbfjeY=","subject":"CN=Secure Site Pro Extended Validation CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLzAtBgNVBAMTJlNlY3VyZSBTaXRlIFBybyBFeHRlbmRlZCBWYWxpZGF0aW9uIENB","whitelist":false,"attachment":{"hash":"873a9affb573886082637d5874421893f652b55adfa77a32cb7cd76d35bb12b5","size":1695,"filename":"C5iNVr6DMrTBS2Wvb08zPxdCQnB0DSWA-yu6a9MbQBI=.pem","location":"security-state-staging/intermediates/1ded7fc2-cc24-4baa-9054-88cf1ffdb23f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"C5iNVr6DMrTBS2Wvb08zPxdCQnB0DSWA+yu6a9MbQBI=","crlite_enrolled":true,"id":"21893de7-b8e7-47a3-b253-4e26a2326ac3","last_modified":1562025430923},{"schema":1562025428680,"derHash":"MafFefJNVWLNsgP6Fanyw/9dwfLmv3wL2V+8sBFMjSE=","subject":"CN=QuoVadis Swiss Advanced CA G3,O=QuoVadis Trustlink Schweiz AG,C=CH","subjectDN":"MH0xCzAJBgNVBAYTAkNIMR4wHAYDVQRhDBVOVFJDS
C1DSEUtMTEyLjIxMC4zNDkxJjAkBgNVBAoMHVF1b1ZhZGlzIFRydXN0bGluayBTY2h3ZWl6IEFHMSYwJAYDVQQDDB1RdW9WYWRpcyBTd2lzcyBBZHZhbmNlZCBDQSBHMw==","whitelist":false,"attachment":{"hash":"4c229971fe06e9adf8da15571ba88a33b97732bcd7efb4c3096b84bafb019de0","size":2467,"filename":"KLQihRcKGkB7ukIgVMH3JF7JqQfl2YglDju59t5S7xc=.pem","location":"security-state-staging/intermediates/7560f454-7151-41fc-8d5c-cc244ed8aee2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KLQihRcKGkB7ukIgVMH3JF7JqQfl2YglDju59t5S7xc=","crlite_enrolled":false,"id":"3dff3c65-da33-4800-8dc5-549bfceca08d","last_modified":1562025429424},{"schema":1562025427924,"derHash":"jtUXtLzfL1DgXow27dMXMukt5m+9OAE5nCxj3PlkqRs=","subject":"SERIALNUMBER=201817,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODE3","whitelist":false,"attachment":{"hash":"a87ea56cf878c4276c1f26db6f637964720a10b7f
ae2d35c645f81023350615c","size":2333,"filename":"kOdfzgDjsNVfydhVydVGyjvTw2nLr0bCdjn9_f-zdz8=.pem","location":"security-state-staging/intermediates/3dfa861d-ea88-4904-978a-0310ac3284bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kOdfzgDjsNVfydhVydVGyjvTw2nLr0bCdjn9/f+zdz8=","crlite_enrolled":false,"id":"f70b9a27-dfae-440f-b8b5-f77e5300d527","last_modified":1562025428672},{"schema":1562025426418,"derHash":"TY7Uo7Xzz3T+yHXoIEISpyGX1x3aOgeuX6W+/rYeycY=","subject":"CN=Trustico ECC EV CA,OU=Controlled by COMODO exclusively for The Trustico Group Ltd,O=The Trustico Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MIG0MQswCQYDVQQGEwJHQjEPMA0GA1UECBMGTG9uZG9uMRAwDgYDVQQHEwdDcm95ZG9uMR8wHQYDVQQKExZUaGUgVHJ1c3RpY28gR3JvdXAgTHRkMUQwQgYDVQQLEztDb250cm9sbGVkIGJ5IENPTU9ETyBleGNsdXNpdmVseSBmb3IgVGhlIFRydXN0aWNvIEdyb3VwIEx0ZDEbMBkGA1UEAxMSVHJ1c3RpY28gRUNDIEVWIENB","whitelist":false,"attachment":{"hash":"442ba57bab9a7615f627b29e8f745bcc614a03a9a8babdc8c7460def49d525da","size":1406,"filen
ame":"oSp7zLM2UdmSs3L-sF5vVgDPO3AMbxo2i3f5JYu4BYI=.pem","location":"security-state-staging/intermediates/9e0b0416-befa-4ad0-a1a0-07c5bc86cb3e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oSp7zLM2UdmSs3L+sF5vVgDPO3AMbxo2i3f5JYu4BYI=","crlite_enrolled":false,"id":"7e4c32a3-05e2-466f-a302-2d4cb7a34e45","last_modified":1562025427178},{"schema":1562025425668,"derHash":"4bKV4UZcJOCVHsC5D799owtnjp6c5EF9/+nzQELfQ4Y=","subject":"CN=TU Dresden CA,O=Technische Universitaet Dresden,L=Dresden,ST=Sachsen,C=DE","subjectDN":"MHMxCzAJBgNVBAYTAkRFMRAwDgYDVQQIDAdTYWNoc2VuMRAwDgYDVQQHDAdEcmVzZGVuMSgwJgYDVQQKDB9UZWNobmlzY2hlIFVuaXZlcnNpdGFldCBEcmVzZGVuMRYwFAYDVQQDDA1UVSBEcmVzZGVuIENB","whitelist":false,"attachment":{"hash":"4bb4a85a2aef8c2bbc7477ee066a25d177f13127df617d2caa763c5c9f3f5c92","size":1995,"filename":"dc-5wn2Qr-3zgoir8SQHWj7HfNM321MTym4ESb5GtH0=.pem","location":"security-state-staging/intermediates/d5d6b138-b20a-438c-bed9-6af0e662b862.pem","mimetype":"application/x-pem-file"},"pubK
eyHash":"dc+5wn2Qr+3zgoir8SQHWj7HfNM321MTym4ESb5GtH0=","crlite_enrolled":true,"id":"5aecaad6-1f2a-4e95-82f0-497d2e825f43","last_modified":1562025426410},{"schema":1562025424927,"derHash":"VvMhZ/AD2PLLc4qzhsNcoVJlzCmpjuEGbNPhrFVsoVw=","subject":"CN=WISeKey CertifyID Personal GB CA 2,O=WISeKey,C=CH","subjectDN":"MEwxCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSswKQYDVQQDEyJXSVNlS2V5IENlcnRpZnlJRCBQZXJzb25hbCBHQiBDQSAy","whitelist":false,"attachment":{"hash":"fcd1020e802ce305dd5335ac117db1394ba35eb66280a7147e781bbc14a2fd48","size":1719,"filename":"PWvk9TZyRU9m6dOhEkswhdztMm-gtB5E3LzgPz8CQ6c=.pem","location":"security-state-staging/intermediates/f115ee94-ac0c-470b-a0c0-cb926fb24dad.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PWvk9TZyRU9m6dOhEkswhdztMm+gtB5E3LzgPz8CQ6c=","crlite_enrolled":false,"id":"fb909118-cd1d-4213-9faf-c66239f756d9","last_modified":1562025425660},{"schema":1562025424183,"derHash":"IQbMeQfGS4pdovwzjulN//EO9xHe27T8aU7gkuxTKx0=","subject":"CN=TrustCubes ICA G1
,OU=www.trustcubes.com,O=TRUSTCUBES LIMITED,C=GB","subjectDN":"MIGhMQswCQYDVQQGEwJHQjEbMBkGA1UEChMSVFJVU1RDVUJFUyBMSU1JVEVEMRcwFQYIKwYBBAGEBwETCTIyMzAxMzcwMTEjMCEGCSsGAQQBg5gqARMUOTg0NTAwNTA1RkU4MENEME5FNTgxGzAZBgNVBAsTEnd3dy50cnVzdGN1YmVzLmNvbTEaMBgGA1UEAxMRVHJ1c3RDdWJlcyBJQ0EgRzE=","whitelist":false,"attachment":{"hash":"002d39d549b3edc3243fc8849e44a7320b6faab7fec61dbc7a17973a224b8dd3","size":1756,"filename":"WQNVf79ywhoSIaihn1jQE-5z8UKENBfhCeJcnklN0YQ=.pem","location":"security-state-staging/intermediates/0a4ef028-7d3c-4559-bee0-36cdd53068ab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WQNVf79ywhoSIaihn1jQE+5z8UKENBfhCeJcnklN0YQ=","crlite_enrolled":true,"id":"84388c52-0b35-4c7c-aa4f-ad6fe76d6235","last_modified":1562025424920},{"schema":1562025423432,"derHash":"4b5ru7cPWiQec2/ETGohYL9s4ZuV7dZ7976JboN3h0U=","subject":"CN=TERENA eScience SSL CA 3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MG0xCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBb
XN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEhMB8GA1UEAxMYVEVSRU5BIGVTY2llbmNlIFNTTCBDQSAz","whitelist":false,"attachment":{"hash":"b0d4a431134fa5326c4d8941ca00bc9e05a182f5314e22010ce190dafef3b64a","size":1800,"filename":"mNPoBotkTew6fh29COIk7FfA9rKbI3N7z9F5Tl9pcMQ=.pem","location":"security-state-staging/intermediates/fb0d63fa-26c1-48ef-b408-173776b4675b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mNPoBotkTew6fh29COIk7FfA9rKbI3N7z9F5Tl9pcMQ=","crlite_enrolled":true,"id":"788f8e47-0819-4adb-a11b-e91c396886c0","last_modified":1562025424175},{"schema":1562025422689,"derHash":"eBrNIJ07hz8Uj12zHGgK2tztQCONjBvxotVTOR+l0PM=","subject":"CN=Certigna Entity Code Signing CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MIGIMQswCQYDVQQGEwJGUjESMBAGA1UECgwJREhJTVlPVElTMRwwGgYDVQQLDBMwMDAyIDQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQRhDBROVFJGUi00ODE0NjMwODEwMDAzNjEoMCYGA1UEAwwfQ2VydGlnbmEgRW50aXR5IENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"08a562df9f7a4bc1c71eb903365f2523a36f48e
8c67b7ab282f68e32bc060c3f","size":2523,"filename":"u3ZvFIlkZqOQDQbj9Abh3WXDOESr4pASOdoob9Oo2YI=.pem","location":"security-state-staging/intermediates/2eb117ef-3a3b-4901-9201-beb77a5e0cc8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"u3ZvFIlkZqOQDQbj9Abh3WXDOESr4pASOdoob9Oo2YI=","crlite_enrolled":false,"id":"0fb33d2f-f64b-456b-ac79-80910985aadd","last_modified":1562025423424},{"schema":1562025421934,"derHash":"Bb+2YF1IUWpXG6+af/dTdhMEcNpe5/9oTCZy6qDAyK0=","subject":"SERIALNUMBER=ZZZZZZA5,CN=Siemens Issuing CA Multi Purpose 2016,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGlMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQTUxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMS4wLAYDVQQDDCVTaWVtZW5zIElzc3VpbmcgQ0EgTXVsdGkgUHVycG9zZSAyMDE2","whitelist":false,"attachment":{"hash":"af0f17b404fbe18f86b9a08fbf3a7290623dc40dfadc1ac8c5d13b301a225fb7","size":2629,"filename":"GXTRtJ2VY1qQoBilPBeqP3z4
74KaNpz5Yeg65lNpPkg=.pem","location":"security-state-staging/intermediates/dc6ad260-c1eb-49e3-8419-9c2c0123af72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GXTRtJ2VY1qQoBilPBeqP3z474KaNpz5Yeg65lNpPkg=","crlite_enrolled":false,"id":"1e840493-34d2-4a03-9e0f-4ab3736899a3","last_modified":1562025422681},{"schema":1562025420418,"derHash":"BRwjj618HcD860rvecrpf+SagtqJFqSgkg8weqzWD4E=","subject":"CN=GDCA TrustAUTH R4 CodeSigning CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MHMxCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xKTAnBgNVBAMMIEdEQ0EgVHJ1c3RBVVRIIFI0IENvZGVTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"7af1e6c6f9dd99eac7019162f8379c26901b03968413c1d8c3c8744bfff66c86","size":2060,"filename":"5Zt41KtIYUpjoXvNDZtGlrN-S-X9juxZk0kJdwQpIlM=.pem","location":"security-state-staging/intermediates/9201b15f-d676-42cb-8b9d-46172588682e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5Zt4
1KtIYUpjoXvNDZtGlrN+S+X9juxZk0kJdwQpIlM=","crlite_enrolled":false,"id":"9e86f345-8b64-4b98-bb28-df4a1df1da0b","last_modified":1562025421177},{"schema":1562025418924,"derHash":"e+0pJ2rL7Z8Xbzi7o6Z85YFbXL8VIse7WezYawnhbtI=","subject":"CN=Amazon,OU=Server CA 4A,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSA0QTEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"80e7ade2cfaf2410560723bc955bfee6189c0738bf29f0cbef746f8ab6211ff5","size":1089,"filename":"F3CN_yt_rsnLG1IV67JCHZewVDyTb6ydbgK5LyDlxwc=.pem","location":"security-state-staging/intermediates/e35a1354-e5b2-4212-a952-670b71886c48.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F3CN/yt/rsnLG1IV67JCHZewVDyTb6ydbgK5LyDlxwc=","crlite_enrolled":false,"id":"e892e888-930b-4d65-ac61-bac8ebb2adc5","last_modified":1562025419658},{"schema":1562025417416,"derHash":"5/vS2obeMa5/4FHGQ/xF0x5nRUsqXNjkPG1lZyOujOo=","subject":"CN=FujiSSL SHA2 Extended Validation Secure Site CA,OU
=Controlled by Sectigo exclusively for Nijimo K.K.,O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN":"MIG+MQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTClNoaWJ1eWEta3UxFDASBgNVBAoTC05pamltbyBLLksuMTowOAYDVQQLEzFDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIE5pamltbyBLLksuMTgwNgYDVQQDEy9GdWppU1NMIFNIQTIgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"5234da30ba635d594351c8f25c9d98755ed276e3fda91212595e2b9141b6a270","size":2268,"filename":"yGo0I_1jRNcQKZcAyqa4MRLItXyEYd7pWVmh6m8y4C4=.pem","location":"security-state-staging/intermediates/18b98149-a8eb-4ec8-80fc-928d1983db68.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yGo0I/1jRNcQKZcAyqa4MRLItXyEYd7pWVmh6m8y4C4=","crlite_enrolled":false,"id":"742b99e6-7240-40bc-8afc-bf1d45a1a9bf","last_modified":1562025418168},{"schema":1562025416678,"derHash":"asFZtMK8jnKfO4RkLvEoa8yA13X+J4x0CtpGjVlDkCU=","subject":"CN=D-TRUST SSL Class 3 CA 1 2009,O=D-Trust GmbH,C=DE","subjectDN":"MEw
xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJjAkBgNVBAMMHUQtVFJVU1QgU1NMIENsYXNzIDMgQ0EgMSAyMDA5","whitelist":false,"attachment":{"hash":"554db3f3f6728e13a10d546724cfe973f631696acc81d3d80206909beb978612","size":1861,"filename":"9w0QP9HzLXkfs-4zENaUFq2XKcQON1oyksoJ-Gg2AZE=.pem","location":"security-state-staging/intermediates/bb452f94-c0b6-479f-b577-d019a89c31d7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9w0QP9HzLXkfs+4zENaUFq2XKcQON1oyksoJ+Gg2AZE=","crlite_enrolled":true,"id":"37dde6cf-08e9-4e8e-bad3-9c993d870f8d","last_modified":1562025417408},{"schema":1562025415204,"derHash":"BkM/yp91OYC1JiNt1yhG7Bsgdwv8x9MYjdZ7wOz7d4I=","subject":"CN=Greenville Health System CA,OU=Orion Health Direct Secure Messaging,O=Greenville Health System,C=US","subjectDN":"MIGFMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYR3JlZW52aWxsZSBIZWFsdGggU3lzdGVtMS0wKwYDVQQLEyRPcmlvbiBIZWFsdGggRGlyZWN0IFNlY3VyZSBNZXNzYWdpbmcxJDAiBgNVBAMTG0dyZWVudmlsbGUgSGVhbHRoIFN5c3RlbSBDQQ==","whitelist":false,"attachment":{"
hash":"940f74f14744addbb8dcb7659509701cf0f713a02960e673bee265fefeaadb89","size":2300,"filename":"yPuMwpJMeMLa4pEq0C8FL_ugpU7_x3Zj_5fmOCHtRhI=.pem","location":"security-state-staging/intermediates/a9c6671b-774f-41f4-a46e-ff017860e2a5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yPuMwpJMeMLa4pEq0C8FL/ugpU7/x3Zj/5fmOCHtRhI=","crlite_enrolled":false,"id":"91d209d2-e7c2-47b4-bd68-058b8adbda03","last_modified":1562025415931},{"schema":1562025414466,"derHash":"khDT/rax8B7K+McmESV1iQW/iH6NCygkjKf6coTC9zk=","subject":"CN=USERTrust RSA Code Signing CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGAMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazEmMCQGA1UEAxMdVVNFUlRydXN0IFJTQSBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"d865305420305a96e03553e0290021ab08fd6bef8d5bf1f6233a13f4349c2159","size":2142,"filename":"PWFYjBN92SersAqUUJzfJ8E4Pj9cxCTLluiO-_6xWqc=.pem","location
":"security-state-staging/intermediates/8a270672-a325-421c-aa0c-d8056f155544.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PWFYjBN92SersAqUUJzfJ8E4Pj9cxCTLluiO+/6xWqc=","crlite_enrolled":true,"id":"1f1fa5d7-28c2-4016-a238-a255210ad688","last_modified":1562025415197},{"schema":1562025411468,"derHash":"//4HdQP9cvDlM4sKe04hjn0f+C5JPn6FKuUaocdYXRc=","subject":"CN=GlobalSign CodeSigning CA - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFExCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMScwJQYDVQQDEx5HbG9iYWxTaWduIENvZGVTaWduaW5nIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"f95ebdf17b6cf9f6ae57dab7480084843c2e7cc2cad146c563a2ee1a97bad6eb","size":1646,"filename":"bAToA1Qda7M7XsA72vR3vK2dwxV3EtiPeCfwswnDh44=.pem","location":"security-state-staging/intermediates/6fe38bdc-2f4e-4fcd-8665-de39d97dc15c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bAToA1Qda7M7XsA72vR3vK2dwxV3EtiPeCfwswnDh44=","crlite_enrolled":false,"id":"36efdaf9-8a7f-4d68-be5e-eae0852be93d","last_
modified":1562025412213},{"schema":1562025410725,"derHash":"3eS+vyYsnY31y1T+T1mVGR6vWK3Lkv5a7TEorA0ZFsc=","subject":"CN=Symantec Class 3 Organizational CA - G2,OU=VeriSign Trust Network+OU=Terms of use at https://www.verisign.com/rpa (c)11,O=Symantec Corporation,C=US","subjectDN":"MIG8MQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOzA5BgNVBAsTMlRlcm1zIG9mIHVzZSBhdCBodHRwczovL3d3dy52ZXJpc2lnbi5jb20vcnBhIChjKTExMTAwLgYDVQQDEydTeW1hbnRlYyBDbGFzcyAzIE9yZ2FuaXphdGlvbmFsIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"2073f18bd8b760997037f65cea8c6463d57c287eeaf37cd78e0afde81beb50ad","size":2008,"filename":"8Vaa7hyPgvofrzXh1bAlF62L9kQg_5tbO-89MDeNtLQ=.pem","location":"security-state-staging/intermediates/ca6cba07-b0ed-4b09-9c57-b753df3f5d0c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8Vaa7hyPgvofrzXh1bAlF62L9kQg/5tbO+89MDeNtLQ=","crlite_enrolled":false,"id":"472a34bc-59f2-4e7d-ab34-7e991d5266c8","last_modified":15620
25411460},{"schema":1562025409209,"derHash":"64T8C0A9m2iSl6XYPqGGg447d3vGGO/aFip1t/6mZsE=","subject":"CN=DigiCert Federated ID US L3 CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJzAlBgNVBAMTHkRpZ2lDZXJ0IEZlZGVyYXRlZCBJRCBVUyBMMyBDQQ==","whitelist":false,"attachment":{"hash":"56a86bb48ed696de350c2df65d97e8c04077813d4858bfbee431f3e3a7b1e6f4","size":1869,"filename":"14vZQlpwjgYpJ-P-OWrCLfFBSxrpJvtuhoFlwDkZfKw=.pem","location":"security-state-staging/intermediates/d381d1d1-fd9f-4813-a5aa-4b22e940bbe5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"14vZQlpwjgYpJ+P+OWrCLfFBSxrpJvtuhoFlwDkZfKw=","crlite_enrolled":false,"id":"b6ac63f3-779d-4f02-888a-0f181a3001d2","last_modified":1562025409946},{"schema":1562025407732,"derHash":"rjc+SI3RPe9xYR1S8LUXndZIJBo4H2eoBzT2YV/25so=","subject":"CN=LuxTrust Corporate CA,O=LuxTrust S.A.,C=LU","subjectDN":"MEUxCzAJBgNVBAYTAkxVMRYwFAYDVQQKEw1MdXhUcn
VzdCBTLkEuMR4wHAYDVQQDExVMdXhUcnVzdCBDb3Jwb3JhdGUgQ0E=","whitelist":false,"attachment":{"hash":"14cabf521e5bbb849b1939229c0aaf15cee63afe34b235bcb187079f1ed2c596","size":2276,"filename":"1IJLHql-hNTPjvXDc2RSsXxNiuzg24zvLWDesq51de8=.pem","location":"security-state-staging/intermediates/f3beac36-1b74-49d5-9904-dcd3444e6570.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1IJLHql+hNTPjvXDc2RSsXxNiuzg24zvLWDesq51de8=","crlite_enrolled":false,"id":"b6d2831c-8bb2-45c7-8018-5016141d7585","last_modified":1562025408461},{"schema":1562025406966,"derHash":"SKL31+gNQucip1LYkjgcBu7EQUFVydZFKqUG7qTtQ/Y=","subject":"CN=Trustico ECC OV CA,O=The Trustico Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MG4xCzAJBgNVBAYTAkdCMQ8wDQYDVQQIEwZMb25kb24xEDAOBgNVBAcTB0Nyb3lkb24xHzAdBgNVBAoTFlRoZSBUcnVzdGljbyBHcm91cCBMdGQxGzAZBgNVBAMTElRydXN0aWNvIEVDQyBPViBDQQ==","whitelist":false,"attachment":{"hash":"db16d66287fc83d7c7d389ce4e8d312e54908daf51f80a248788c398e0b5d751","size":1272,"filename":"WBn6yHQKpmzX
FlZmp92hV73p71SuDLIwooOX99zzGBs=.pem","location":"security-state-staging/intermediates/d37260dd-6fc7-4943-aefe-3a877dde4827.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WBn6yHQKpmzXFlZmp92hV73p71SuDLIwooOX99zzGBs=","crlite_enrolled":false,"id":"dfad7acc-b54c-4fdb-9e08-0579d8b51981","last_modified":1562025407723},{"schema":1562025406218,"derHash":"d1N2gumgssW9XmK8HLNezrOPy+v30twyb35CDw3b7bM=","subject":"CN=RelayHealth Direct CA,O=RelayHealth,C=US","subjectDN":"MEMxCzAJBgNVBAYTAlVTMRQwEgYDVQQKEwtSZWxheUhlYWx0aDEeMBwGA1UEAxMVUmVsYXlIZWFsdGggRGlyZWN0IENB","whitelist":false,"attachment":{"hash":"7b8ec633ea8e4ffb238a02aaa13742373bff1c0a3eca844f96bd5fdcf1a5858c","size":2101,"filename":"8r_WvGnNYwiJkaujqkp9w8Cx_ydDtfGWD-u4L_ZVBUU=.pem","location":"security-state-staging/intermediates/99b1a459-48a1-4e6c-b286-32402da52a8a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8r/WvGnNYwiJkaujqkp9w8Cx/ydDtfGWD+u4L/ZVBUU=","crlite_enrolled":false,"id":"0433b918-a448-4953-9835-5d2116
69a194","last_modified":1562025406959},{"schema":1562025404691,"derHash":"K/TxtAQNvCkMF68cF3QVsV3nt6BeXWk9Gq2zSRmeknE=","subject":"CN=SSL.com Client Authentication and Email CA,OU=www.ssl.com,O=SSL.com,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMRAwDgYDVQQKEwdTU0wuY29tMRQwEgYDVQQLEwt3d3cuc3NsLmNvbTEzMDEGA1UEAxMqU1NMLmNvbSBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIEVtYWlsIENB","whitelist":false,"attachment":{"hash":"4a7e55df2d04b4fbf8ceb238621c3522b71ae629ff4a52cbdb209642962ced24","size":2129,"filename":"o-Stjubrf3fOy2A5YfQYHaRKuUFlHp7EwXfRxi0LD1M=.pem","location":"security-state-staging/intermediates/5ce5a3e3-2971-43e9-adc8-23ac4dbe924a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"o+Stjubrf3fOy2A5YfQYHaRKuUFlHp7EwXfRxi0LD1M=","crlite_enrolled":false,"id":"6f2b7763-47bc-435d-90f4-e167839a82c1","last_modified":1562025405472},{"schema":1562025403937,"derHash":"YmFumxG9Djo1g2DIO3jbxb7qV1yQuX5oJEgz+zBDfGs=","subject":"CN=TERENA Personal CA,O=TERENA,C=NL","subjectDN":"MDsxCzAJBgNVBAYTAk5MM
Q8wDQYDVQQKEwZURVJFTkExGzAZBgNVBAMTElRFUkVOQSBQZXJzb25hbCBDQQ==","whitelist":false,"attachment":{"hash":"b540a4b8690142678f25aaa6f34207fd3c4298612d40cac2034f5049aa748c3b","size":1711,"filename":"GrQOOcgaiD1vs9vGDvRaVMQKNDQm2_Nj7lPXTk4s2F0=.pem","location":"security-state-staging/intermediates/e89a4382-1535-4c37-8a30-6afc7db29ba0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GrQOOcgaiD1vs9vGDvRaVMQKNDQm2/Nj7lPXTk4s2F0=","crlite_enrolled":false,"id":"415dc948-b9c5-49ef-96c2-e37830540e67","last_modified":1562025404683},{"schema":1562025402414,"derHash":"YipCooytyD2WJ3HZ0JvTB4d9SrUTtP4M8uWFHnn/pv4=","subject":"CN=DigiCert Universal Issuing CA,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSYwJAYDVQQDEx1EaWdpQ2VydCBVbml2ZXJzYWwgSXNzdWluZyBDQQ==","whitelist":false,"attachment":{"hash":"f1a1ffb6fdb69d7a3855904617a2703d1eeacea8fdb96c2618a5d48d7cec562f","size":1678,"filename":"rpECg98
Pqf-LyUsBhAF2Y2Or1rqJfjhDeTy2ZQhmgGI=.pem","location":"security-state-staging/intermediates/edab92da-32c4-4827-9208-230a7c26ad84.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rpECg98Pqf+LyUsBhAF2Y2Or1rqJfjhDeTy2ZQhmgGI=","crlite_enrolled":false,"id":"b7cfacc8-6fd6-4e82-8bc6-24d3074d4f66","last_modified":1562025403178},{"schema":1562025400184,"derHash":"Af1z715w9Sb8nBH2X+Lub3Els2k5SSJ//Y5Fnlg8RYo=","subject":"CN=Trusted Root CA SHA256 G2,OU=Trusted Root,O=GlobalSign nv-sa,C=BE","subjectDN":"MGMxCzAJBgNVBAYTAkJFMRUwEwYDVQQLEwxUcnVzdGVkIFJvb3QxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExIjAgBgNVBAMTGVRydXN0ZWQgUm9vdCBDQSBTSEEyNTYgRzI=","whitelist":false,"attachment":{"hash":"0176070032bd2aad1dd44b838d42fdda701908895fbf143871d5d749253510f1","size":1573,"filename":"HHWscHR-mXReMKBRZxCvqEg6wDv6HAbPzKN7NlLvq4c=.pem","location":"security-state-staging/intermediates/989c40e2-7ad5-4b2b-8323-8e4496275666.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HHWscHR+mXReMKBRZxCvqEg6wDv6HAbP
zKN7NlLvq4c=","crlite_enrolled":true,"id":"6cfd8096-2b5c-403d-8580-437aceb14b2e","last_modified":1562025400918},{"schema":1562025399410,"derHash":"L8wAmq/bKOklZDBBCm+m52rwkwGxBE/qqsqwAhWqOeE=","subject":"CN=Secure Site Starter DV SSL CA - G3,OU=Domain Validated SSL,O=GeoTrust\\, Inc.,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5HZW9UcnVzdCwgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxKzApBgNVBAMTIlNlY3VyZSBTaXRlIFN0YXJ0ZXIgRFYgU1NMIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"92ee49d649aaf20a97caf2d91e00782df1925655b89795b19a68aa987d986f4f","size":1650,"filename":"pevGgdMM_FHMatT2CPKUmJVunG4EypGCZJqawFp8J-I=.pem","location":"security-state-staging/intermediates/3c4ee093-9c34-4fd0-816d-87fdc7c5588d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pevGgdMM/FHMatT2CPKUmJVunG4EypGCZJqawFp8J+I=","crlite_enrolled":false,"id":"ddc005b0-cf67-41f1-aae0-2e1f3912a13b","last_modified":1562025400176},{"schema":1562025397124,"derHash":"Js+iBnU+lq7Xww9WdOfG9aDLL5ODevahW
WwveZxyU4U=","subject":"CN=Starfield Secure Code Signing Certificate Authority - G2,OU=http://certs.starfieldtech.com/repository/,O=Starfield Technologies\\, LLC,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIHSMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEkMCIGA1UEChMbU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgTExDMTMwMQYDVQQLEypodHRwOi8vY2VydHMuc3RhcmZpZWxkdGVjaC5jb20vcmVwb3NpdG9yeS8xQTA/BgNVBAMTOFN0YXJmaWVsZCBTZWN1cmUgQ29kZSBTaWduaW5nIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcy","whitelist":false,"attachment":{"hash":"e67baffceaaae8a33973769e8a0fee09f33d86447facacab10005c1e9966f816","size":1841,"filename":"pdrFwFVE08-U0RMwwjTWvOzvNV6eV6GCx6Vc3g5O3qQ=.pem","location":"security-state-staging/intermediates/bd7d360c-039c-441f-b5c0-01b65c968a68.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pdrFwFVE08+U0RMwwjTWvOzvNV6eV6GCx6Vc3g5O3qQ=","crlite_enrolled":false,"id":"3783c081-1bbe-4271-a451-0a0cd17eccac","last_modified":1562025397888},{"schema":1562025396359,"derHash":"rRSm
i+yUnoT2BjQZ1jRl0TfCrdPjqF4A6ePuguW0AY8=","subject":"CN=DigiCert Secure Site Japan CA,OU=www.digicert.co.jp,O=DigiCert Japan G.K.,C=JP","subjectDN":"MHAxCzAJBgNVBAYTAkpQMRwwGgYDVQQKExNEaWdpQ2VydCBKYXBhbiBHLksuMRswGQYDVQQLExJ3d3cuZGlnaWNlcnQuY28uanAxJjAkBgNVBAMTHURpZ2lDZXJ0IFNlY3VyZSBTaXRlIEphcGFuIENB","whitelist":false,"attachment":{"hash":"df60eb3da080f2840db9acafe44fcdcacda6ee46054e6e24d7990e36214d5715","size":1658,"filename":"RuOIM5KDx0FCWTkQrZiunZ5syXM7en8mBJBWgs2ZzpE=.pem","location":"security-state-staging/intermediates/59fe3a3f-e4cb-48ed-85fc-b4682138e5d2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RuOIM5KDx0FCWTkQrZiunZ5syXM7en8mBJBWgs2ZzpE=","crlite_enrolled":false,"id":"18f06aa2-9015-4337-ac7b-12dfa481edb4","last_modified":1562025397117},{"schema":1562025395609,"derHash":"L1CGD5aAU6fboXhRNBdZsNXAQS+FeizRnzcx3TvtG2s=","subject":"CN=SecureTrust Client Authentication CA\\, Level 1,O=SecureTrust,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGAMTYwNAYDVQQDEy1TZWN1cmVUc
nVzdCBDbGllbnQgQXV0aGVudGljYXRpb24gQ0EsIExldmVsIDExFDASBgNVBAoTC1NlY3VyZVRydXN0MRAwDgYDVQQHEwdDaGljYWdvMREwDwYDVQQIEwhJbGxpbm9pczELMAkGA1UEBhMCVVM=","whitelist":false,"attachment":{"hash":"7597ddd7590ab3bc97a1c2993f821d497d01ca156227cc8dd5576381cf270f76","size":1626,"filename":"mwNPmB4uqglX9MTEystm7SE6EITvH7E-j8zAmqo2488=.pem","location":"security-state-staging/intermediates/d1cfcb15-db46-4713-a13c-1c0c9d27bf59.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mwNPmB4uqglX9MTEystm7SE6EITvH7E+j8zAmqo2488=","crlite_enrolled":false,"id":"d86224d9-6318-425c-9d3d-655fbc029085","last_modified":1562025396352},{"schema":1562025394125,"derHash":"srsm0nHcgrtkc1S29xjQq/G01nQRoO2v8aqVm+Xe034=","subject":"CN=STRATO RSA CA,OU=Domain Validated SSL,O=STRATO AG,C=DE","subjectDN":"MFgxCzAJBgNVBAYTAkRFMRIwEAYDVQQKEwlTVFJBVE8gQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRYwFAYDVQQDEw1TVFJBVE8gUlNBIENB","whitelist":false,"attachment":{"hash":"d842b8e25f120d3ec31470876c77959fcf153a53f4a6457032a5ed3
a0b71fa9a","size":1662,"filename":"oq0kkPtB7DgGV2afHdfrfKYwd5HqSWcvdyQogYh9c1A=.pem","location":"security-state-staging/intermediates/c5305a44-babf-450b-8d0a-a867e9e4e1db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oq0kkPtB7DgGV2afHdfrfKYwd5HqSWcvdyQogYh9c1A=","crlite_enrolled":false,"id":"acc31af2-0f15-4651-81d6-75626778da0f","last_modified":1562025394863},{"schema":1562025390366,"derHash":"XKBOk6WgfXTG+0r+Gz1NvGLCXOdNhhfH7mbLVDi6ZX8=","subject":"CN=KeyNet Systems ECC OV CA,O=KeyNet Systems LLC,L=Las Vegas,ST=Nevada,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMQ8wDQYDVQQIEwZOZXZhZGExEjAQBgNVBAcTCUxhcyBWZWdhczEbMBkGA1UEChMSS2V5TmV0IFN5c3RlbXMgTExDMSEwHwYDVQQDExhLZXlOZXQgU3lzdGVtcyBFQ0MgT1YgQ0E=","whitelist":false,"attachment":{"hash":"fa718efade37d1ce6617cd424eb885b934990185cacf99b396a71b3ae4a20df9","size":1297,"filename":"px8fWni3abLFLZV9MOsgswaWeefS4bTPmddWxtEXiag=.pem","location":"security-state-staging/intermediates/9c7bf4e4-f185-47c3-8165-17f826f18051.pem","mimetype":"ap
plication/x-pem-file"},"pubKeyHash":"px8fWni3abLFLZV9MOsgswaWeefS4bTPmddWxtEXiag=","crlite_enrolled":false,"id":"38fecd26-fc2d-4f68-b8af-3bc270e6db61","last_modified":1562025391119},{"schema":1562025388878,"derHash":"8mA2cL7erR2XfWmS+mVU5spZW8UPOwP0Ftzw8g2sNsI=","subject":"CN=NETLOCK Trust Advanced Plus CA,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"MGAxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMScwJQYDVQQDDB5ORVRMT0NLIFRydXN0IEFkdmFuY2VkIFBsdXMgQ0E=","whitelist":false,"attachment":{"hash":"540e442f30e4d92cc77c092424cd284037ee17d43f66a1f403d30efc07c2135e","size":2077,"filename":"mgqek_kZMpAjKUdlEROIUnDVMUVD0aenZnLSASM3iuY=.pem","location":"security-state-staging/intermediates/51f17241-57ee-4ea5-a20b-800c39580154.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mgqek/kZMpAjKUdlEROIUnDVMUVD0aenZnLSASM3iuY=","crlite_enrolled":false,"id":"b922d207-71dc-413f-b0fe-110a94999f23","last_modified":1562025389609},{"schema":1562025388126,"derHash":"zW65N+4X
qfz/YKeQ+L3gypq8oHs+9GB03Rl48Lyk1Ek=","subject":"CN=EAEko Herri Administrazioen CA - CA AAPP Vascas (2),OU=AZZ Ziurtagiri publikoa - Certificado publico SCA,O=IZENPE S.A.,C=ES","subjectDN":"MIGdMQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xOjA4BgNVBAsMMUFaWiBaaXVydGFnaXJpIHB1Ymxpa29hIC0gQ2VydGlmaWNhZG8gcHVibGljbyBTQ0ExPDA6BgNVBAMMM0VBRWtvIEhlcnJpIEFkbWluaXN0cmF6aW9lbiBDQSAtIENBIEFBUFAgVmFzY2FzICgyKQ==","whitelist":false,"attachment":{"hash":"8a1839dcde98a8a35e268cfeba8b062ef97d7715e9cc268450315ee23cfb2c2c","size":2560,"filename":"1du3EfOp93FwG10en54tLejZ-LiGC4VDvyvFeaa50D8=.pem","location":"security-state-staging/intermediates/9e4524c0-0fc8-4de5-bb45-2b4a4446d9a8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1du3EfOp93FwG10en54tLejZ+LiGC4VDvyvFeaa50D8=","crlite_enrolled":true,"id":"ae24e0ff-b8b9-4d71-8508-3ceac79ef326","last_modified":1562025388871},{"schema":1562025385874,"derHash":"zSZAlXz4hhBHDO/UCdhdm+BZYvfWwpmcT0MavMw0EYw=","subject":"CN=Corepoint Direct Intermediat
e CA,O=Corepoint Health,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBDb3JlcG9pbnQgSGVhbHRoMSkwJwYDVQQDEyBDb3JlcG9pbnQgRGlyZWN0IEludGVybWVkaWF0ZSBDQQ==","whitelist":false,"attachment":{"hash":"cc2a17a1ba1f2e38700e08a8b7dab378470299c34a9c211c703448e725d29381","size":2158,"filename":"pcwA2IetNTivVxDNYKmF_fNcmwNsIBxp87A1i9fW_gU=.pem","location":"security-state-staging/intermediates/ed6cd416-0abe-4039-9b98-dc18290ffe88.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pcwA2IetNTivVxDNYKmF/fNcmwNsIBxp87A1i9fW/gU=","crlite_enrolled":false,"id":"01be0b37-1a80-45ba-b618-581f8d1328e9","last_modified":1562025386617},{"schema":1562025380611,"derHash":"9dLSumgXp6mqDiE1S78Ob5XF4ofuiM8vJ58P/sTtrBU=","subject":"CN=GlobalSign PersonalSign 1 CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTMwMQYDVQQDEypHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAxIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"e9535932b8ce7d0bcef6a54
62309da7a327feffdbd8c14e093b83b0b4776caf3","size":1650,"filename":"iMfFHGybWVH4E_m1d7Ieopj7M_3ilnXGAP523KziGTA=.pem","location":"security-state-staging/intermediates/3ae8b875-d65b-4139-9c40-0ca7a4303014.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iMfFHGybWVH4E/m1d7Ieopj7M/3ilnXGAP523KziGTA=","crlite_enrolled":true,"id":"90b74927-605a-46c7-859e-2feb24cd258f","last_modified":1562025381350},{"schema":1562025379866,"derHash":"yyEJeZJAIJcDN64y2lw/mBqeBXFOwiuxw0If5pXlFXo=","subject":"CN=emSign ECC EV CS CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEhMB8GA1UEAxMYZW1TaWduIEVDQyBFViBDUyBDQSAtIEMz","whitelist":false,"attachment":{"hash":"aa29641172fa5da3efadfcea19729a3a0972cd59a4c482c07d9a8f59a9c97b65","size":1122,"filename":"FTdvRLCxhXvzdqcyZyetYe4NaeD_whho2peMBnvy3_0=.pem","location":"security-state-staging/intermediates/29775bdf-351a-4b9a-b8b8-09ec37b40fe8.pem","mimetype":"application/x-pem-
file"},"pubKeyHash":"FTdvRLCxhXvzdqcyZyetYe4NaeD/whho2peMBnvy3/0=","crlite_enrolled":false,"id":"5caabcbd-5f17-4a1a-a3e9-8c20b1c1e213","last_modified":1562025380604},{"schema":1562025379117,"derHash":"d1MwBWSsZl1W/vW9r9mciKcxwh6tjjmWyzc+ea39v9w=","subject":"CN=SignSec High-Assurance OV Authority,OU=SSL Department,O=FBS Inc,L=Irvine,ST=CA,C=US","subjectDN":"MIGEMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExDzANBgNVBAcTBklydmluZTEQMA4GA1UEChMHRkJTIEluYzEXMBUGA1UECxMOU1NMIERlcGFydG1lbnQxLDAqBgNVBAMTI1NpZ25TZWMgSGlnaC1Bc3N1cmFuY2UgT1YgQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"2ee05e9e143fedbf63ea31b25f8a8a197a00c108b7da824449f25fbee96ca62d","size":2162,"filename":"-NJzGF6Gew8FPxWa8xRHx0tz0t0bJjNH38uDaSIgIqI=.pem","location":"security-state-staging/intermediates/87e188d2-04c0-4db5-8bc2-d4a9c755752d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+NJzGF6Gew8FPxWa8xRHx0tz0t0bJjNH38uDaSIgIqI=","crlite_enrolled":false,"id":"f00ff66e-82b8-4bdc-9031-f7847d7239b7","last_modified":1562
025379858},{"schema":1562025377619,"derHash":"wYlJ42Wf998isw7E2mtDQa+L7gDkF3p/hv9ZvEa2ukA=","subject":"CN=TrustAsia Technologies\\, Inc. DV SSL CA - G2,OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MIGJMQswCQYDVQQGEwJDTjElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxNDAyBgNVBAMTK1RydXN0QXNpYSBUZWNobm9sb2dpZXMsIEluYy4gRFYgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"e6cbbd0f9a61cf86b9fd7623d20287f4ac3e43cb278f02f2894ed63fec82069e","size":1703,"filename":"g64L97C6AazxVe3Bk6Wn6SXfqUejdhEXe57ga44NS3c=.pem","location":"security-state-staging/intermediates/2ff3c56d-10d9-4b33-a883-344736f96843.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"g64L97C6AazxVe3Bk6Wn6SXfqUejdhEXe57ga44NS3c=","crlite_enrolled":false,"id":"de1e3c3e-b52c-47c5-b13a-b6c6fe5ba8f9","last_modified":1562025378352},{"schema":1562025376125,"derHash":"lItxEa9C9UbVec/1ziveyCE03ZkUhCvdsMUocutgTjk=","subject":"CN=SSL.com SSL Inter
mediate CA ECC R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxKzApBgNVBAMMIlNTTC5jb20gU1NMIEludGVybWVkaWF0ZSBDQSBFQ0MgUjI=","whitelist":false,"attachment":{"hash":"29138ba36283c37133babfb45ad6da91b908056c4bc777229a9b6114c29bb9d7","size":1264,"filename":"zGgA4OU4DjJdvpRYUqbi5Vh2g9W5Oc_PgKihy9mkLsE=.pem","location":"security-state-staging/intermediates/583bc538-020a-40af-92a9-40c3653a90e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zGgA4OU4DjJdvpRYUqbi5Vh2g9W5Oc/PgKihy9mkLsE=","crlite_enrolled":true,"id":"a0acdb7c-e477-4e0c-8f54-b838e76497f5","last_modified":1562025376857},{"schema":1562025375368,"derHash":"O8UYVgQK1/9mg6qFoNNPnqaAzSPDfLigQjsPiaJEBbk=","subject":"CN=ACCVCA-120,OU=PKIACCV,O=ACCV,C=ES","subjectDN":"MEMxEzARBgNVBAMMCkFDQ1ZDQS0xMjAxEDAOBgNVBAsMB1BLSUFDQ1YxDTALBgNVBAoMBEFDQ1YxCzAJBgNVBAYTAkVT","whitelist":false,"attachment":{"hash":"5c48e95a58a4d10758544929296f57524
a51140212f8479daff1c315fe338caf","size":2686,"filename":"XH3Wh5FuH9ZeZcCdLZM0VbsyQg3aeFV1wujvNEYNRQ8=.pem","location":"security-state-staging/intermediates/fd767b1f-850e-4779-ad1c-fcb1520983b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XH3Wh5FuH9ZeZcCdLZM0VbsyQg3aeFV1wujvNEYNRQ8=","crlite_enrolled":true,"id":"ea1bd9a0-1903-47bb-b8fb-ecb8955b6d38","last_modified":1562025376117},{"schema":1562025373104,"derHash":"+GhNKBK6mKUv6UUoxMsVI3ii1zqCiBCox7hSmHXGRnQ=","subject":"CN=Qualified Pseudonymous e-Szigno CA 2009,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGLMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xMDAuBgNVBAMMJ1F1YWxpZmllZCBQc2V1ZG9ueW1vdXMgZS1Temlnbm8gQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odQ==","whitelist":false,"attachment":{"hash":"347542aaaf94389452ec241deb4e9b0659bd7e3fbfa082767360ebd2bdc7f554","size":1776,"filename":"Q-MM9a5IVpTJcjzEB7Wyr_KGLpH4y_1V4wt5h4NJjQc=.pem","location":"security-state-staging/intermediates/
84a1e40e-aa66-419a-a6e0-b29ad9504f47.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Q+MM9a5IVpTJcjzEB7Wyr/KGLpH4y/1V4wt5h4NJjQc=","crlite_enrolled":false,"id":"2bda9927-7780-4c65-80cf-88e65081a941","last_modified":1562025373847},{"schema":1562025372359,"derHash":"xcX8r25L0K2VvYvr0a6/Fl0dv0SagS8Swatuq2zHkV4=","subject":"CN=KeyNet Systems RSA DV CA,O=KeyNet Systems LLC,L=Las Vegas,ST=Nevada,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMQ8wDQYDVQQIEwZOZXZhZGExEjAQBgNVBAcTCUxhcyBWZWdhczEbMBkGA1UEChMSS2V5TmV0IFN5c3RlbXMgTExDMSEwHwYDVQQDExhLZXlOZXQgU3lzdGVtcyBSU0EgRFYgQ0E=","whitelist":false,"attachment":{"hash":"fb85ea9df4ce4fb7563cf8ffdcd79a5d2a7b3e955ba403f48d67f4e38d6ad1b0","size":2138,"filename":"VTJmz2gVhXT9nFPyCAVJ7HDpV4Rfyg-dNTgE3kbMShE=.pem","location":"security-state-staging/intermediates/a488d2fa-2e4f-4f72-aeaf-6d6787bb87bc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VTJmz2gVhXT9nFPyCAVJ7HDpV4Rfyg+dNTgE3kbMShE=","crlite_enrolled":false,"id":"7db20a5a-a12b-4255-ad
c3-47c77bc3c921","last_modified":1562025373097},{"schema":1562025370878,"derHash":"MdqiXRQtCLkOZA1LxQsknw/jl4XJjV5T4jMlnA+uk5g=","subject":"CN=Online e-Szigno SSL CA 2016,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHwxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEcMBoGA1UEYQwTVkFUSFUtMjM1ODQ0OTctMi00MTEkMCIGA1UEAwwbT25saW5lIGUtU3ppZ25vIFNTTCBDQSAyMDE2","whitelist":false,"attachment":{"hash":"a70c67eb66b82e4075e34248c87882934b44064980cd89b1e783b12797290157","size":2580,"filename":"x0t02qhpw-MVPvpI409gZ7KlO9C8TZ6yqNYTYIDmB98=.pem","location":"security-state-staging/intermediates/168326d2-eb32-4449-8388-890b59e9496f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x0t02qhpw+MVPvpI409gZ7KlO9C8TZ6yqNYTYIDmB98=","crlite_enrolled":true,"id":"2f2ec8eb-d0d3-4ccb-bfe9-6771b302aa0e","last_modified":1562025371611},{"schema":1562025367867,"derHash":"EYJiwgiO4VKOINg20gcIVHB8DY+OgPvjlvns1LkUG1s=","subject":"CN=GlobalSign PersonalSign Partners CA - SHA256 - G2
,O=GlobalSign nv-sa,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTowOAYDVQQDEzFHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiBQYXJ0bmVycyBDQSAtIFNIQTI1NiAtIEcy","whitelist":false,"attachment":{"hash":"a54cee1e50e97652bc6ebb1bf9a786f65fb993c0da0a2f5ca227f33c14524401","size":1577,"filename":"F0bWPekPIC9_nkgAJD7EPawdSSYBw9Bv3fNGdTH1Brg=.pem","location":"security-state-staging/intermediates/22cd08f8-f4e5-4acd-b7cf-81fafc4917c8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F0bWPekPIC9/nkgAJD7EPawdSSYBw9Bv3fNGdTH1Brg=","crlite_enrolled":true,"id":"dd412308-f307-4318-883b-63990c7dea29","last_modified":1562025368603},{"schema":1562025366345,"derHash":"s5nv5CwBoFvcOJeER6eOlQRneT+xHBtrQmxBmg/HORE=","subject":"CN=BEKB - BCBE Issuing CA G2,OU=Issuing Certification Authority,O=Berner Kantonalbank AG,C=CH","subjectDN":"MHwxCzAJBgNVBAYTAkNIMR8wHQYDVQQKExZCZXJuZXIgS2FudG9uYWxiYW5rIEFHMSgwJgYDVQQLEx9Jc3N1aW5nIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIwIAYDVQQDExlCRUtCIC0gQkNCRSBJc3
N1aW5nIENBIEcy","whitelist":false,"attachment":{"hash":"79f462ae20c0a610ce0ab12fc2fd9ca90da21f17887100f85355c97675d7b986","size":2434,"filename":"EEAYW3FK7bntpT70XsEpdNLi9KK69z7ix9M0UPRAGKc=.pem","location":"security-state-staging/intermediates/6bdb371b-20a1-42c8-86dd-bf77318e8c7a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EEAYW3FK7bntpT70XsEpdNLi9KK69z7ix9M0UPRAGKc=","crlite_enrolled":false,"id":"d0dbcc6e-4eba-4b25-a0b6-c8e83527e696","last_modified":1562025367118},{"schema":1562025365609,"derHash":"20djOcy/zJ5L0dbLYGyifwBnnh74pYHnI2MJudY//jc=","subject":"CN=CA de Certificados SSL EV,OU=BZ Ziurtagiri publikoa - Certificado publico EV,O=IZENPE S.A.,C=ES","subjectDN":"MIGBMQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xODA2BgNVBAsML0JaIFppdXJ0YWdpcmkgcHVibGlrb2EgLSBDZXJ0aWZpY2FkbyBwdWJsaWNvIEVWMSIwIAYDVQQDDBlDQSBkZSBDZXJ0aWZpY2Fkb3MgU1NMIEVW","whitelist":false,"attachment":{"hash":"6fa0a579644b4f4e2520de6c187e3d213f16c5035b15ab14690651899dbc5ca9","size":2523,"filename":"B
jaOlbGE-OH8-vlWV2hZE4pvFyfXCm2QvaM1twHCrYk=.pem","location":"security-state-staging/intermediates/2ea9cda5-c628-44e6-aa94-ad77c8ed451b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BjaOlbGE+OH8+vlWV2hZE4pvFyfXCm2QvaM1twHCrYk=","crlite_enrolled":true,"id":"e6c4396d-16a0-4773-a029-036b775926fd","last_modified":1562025366337},{"schema":1562025364848,"derHash":"DgJX8GBri+586ev0UCPKT9ohooMMBJxG7Sr66bKGB8I=","subject":"SERIALNUMBER=201401,CN=Government AA,C=BE","subjectDN":"MDYxCzAJBgNVBAYTAkJFMRYwFAYDVQQDEw1Hb3Zlcm5tZW50IEFBMQ8wDQYDVQQFEwYyMDE0MDE=","whitelist":false,"attachment":{"hash":"d4f0990c106c419b6d20070f298a396846b330490701c9ca58136a2a2e4202d5","size":2097,"filename":"zrqsI0LYhlXwV2fOwnlFX_c-r936bwTFFC4u2Tdf-98=.pem","location":"security-state-staging/intermediates/d3d76b39-0f66-4732-a4a7-8ad736b104df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zrqsI0LYhlXwV2fOwnlFX/c+r936bwTFFC4u2Tdf+98=","crlite_enrolled":false,"id":"d9480fb9-51ff-4517-9cc8-92edd9a9ca6a",
"last_modified":1562025365601},{"schema":1562025364107,"derHash":"L6MV3BVMIT3AwW/RL6Ahupl08MmuFC4kvzrtFQp85vw=","subject":"CN=CA A8,O=DST,C=US","subjectDN":"MCsxCzAJBgNVBAYTAlVTMQwwCgYDVQQKEwNEU1QxDjAMBgNVBAMTBUNBIEE4","whitelist":false,"attachment":{"hash":"8ad25b6dba8e6a3e3eca82e8365e4be66a513461f80510fe2ad4afcf84a4b772","size":1114,"filename":"pMXM3on84rb3AQQVIojjeyZgOk0b95eNmbuYHSssTTQ=.pem","location":"security-state-staging/intermediates/ebd92230-8819-4a34-b485-619e524048de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pMXM3on84rb3AQQVIojjeyZgOk0b95eNmbuYHSssTTQ=","crlite_enrolled":false,"id":"4f938f2f-addb-409f-807b-7832954e7976","last_modified":1562025364841},{"schema":1562025360337,"derHash":"QD4GKiZTBZETKFuvgKDUrkIshIyfePrQH8lLxbh/7xo=","subject":"CN=DigiCert SHA2 Extended Validation Server CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xNDAyBgNVBAMTK0RpZ2lDZXJ0IFNIQT
IgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"a542625d5511b8e15e375edee06b6d656bea32f3a9e2fd08246b0b447f1dea45","size":1695,"filename":"RRM1dGqnDFsCJXBTHky16vi1obOlCgFFn_yOhI_y-ho=.pem","location":"security-state-staging/intermediates/15c21eca-d96f-43c9-94b1-fd4217f81575.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RRM1dGqnDFsCJXBTHky16vi1obOlCgFFn/yOhI/y+ho=","crlite_enrolled":true,"id":"ac18b0e8-cf04-4b62-9dde-6c8bb64149e8","last_modified":1562025361073},{"schema":1562025359563,"derHash":"w6qJpPn3DBiw/qXN/bNeSH2gLBCrbT9g3nmtTJSuKEw=","subject":"CN=GoGetSSL RSA OV CA,O=GoGetSSL,L=Riga,C=LV","subjectDN":"MEwxCzAJBgNVBAYTAkxWMQ0wCwYDVQQHEwRSaWdhMREwDwYDVQQKEwhHb0dldFNTTDEbMBkGA1UEAxMSR29HZXRTU0wgUlNBIE9WIENB","whitelist":false,"attachment":{"hash":"fd420f93d752f6ead1f685f98f4967e9d026eca00d116052e6b9968a41b636a5","size":2085,"filename":"hvk5zQ4_wW8fexIq-RQp19DbNh0mDLs7XtlPnYskzOc=.pem","location":"security-state-staging/intermediates/a
9a7e749-c9b5-4bd8-9269-90fbfcbcdf38.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hvk5zQ4/wW8fexIq+RQp19DbNh0mDLs7XtlPnYskzOc=","crlite_enrolled":true,"id":"5aa56c83-a91d-4f50-92ea-251d98d465d1","last_modified":1562025360329},{"schema":1562025357329,"derHash":"rUeIOkjIajRp4yyXKzmj7hVYBNMr9T/wAgALyhHSldk=","subject":"CN=NetLock K\u00f6zjegyz\u0151i Eat. (Class A Legal) Tan\u00fas\u00edtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIG5MQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTFHMEUGA1UEAww+TmV0TG9jayBLw7Z6amVneXrFkWkgRWF0LiAoQ2xhc3MgQSBMZWdhbCkgVGFuw7pzw610dsOhbnlraWFkw7M=","whitelist":false,"attachment":{"hash":"98303cceb1fcd3ad4d4b766a36ae284b0b6b241967294bab6fa6f499c160964b","size":2203,"filename":"EZuZGAg4_KSV7oRx6yGMpZK9lx1i1gH3UJCYV6YepzM=.pem","location":"security-state-staging
/intermediates/00bf4a30-9a87-4885-a9ec-6c5c8d3d8a9a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EZuZGAg4/KSV7oRx6yGMpZK9lx1i1gH3UJCYV6YepzM=","crlite_enrolled":false,"id":"a705c138-e0f7-4581-9978-d55ab5621403","last_modified":1562025358063},{"schema":1562025355822,"derHash":"F2qui91d0Gp9vUKGLcFzvYOP/jATEDsJe5Zxw3umrhQ=","subject":"CN=Certum Extended Validation Code Signing CA SHA2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGUMQswCQYDVQQGEwJQTDEiMCAGA1UECgwZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECwweQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MTgwNgYDVQQDDC9DZXJ0dW0gRXh0ZW5kZWQgVmFsaWRhdGlvbiBDb2RlIFNpZ25pbmcgQ0EgU0hBMg==","whitelist":false,"attachment":{"hash":"29d062f3902f4c9626af092bcc8aead3944e31783d2e8c305ab8d18685552360","size":1776,"filename":"KmFi5E38OAi9iIt74jct7iJHQ0ASbjOOwdK57OFDu8U=.pem","location":"security-state-staging/intermediates/93162f40-a74d-43ed-b57a-2be36de6b390.pem","mimetype":"application/x-pem-file"},"pubKe
yHash":"KmFi5E38OAi9iIt74jct7iJHQ0ASbjOOwdK57OFDu8U=","crlite_enrolled":false,"id":"79034794-4993-4207-9a13-888fe3887be9","last_modified":1562025356564},{"schema":1562025354324,"derHash":"Uz/pfrRfztJASeQe/p2yVKXdnZDf1TyVEsYgftsh2Cw=","subject":"CN=Digidentity BV PKIoverheid Organisatie Persoon CA - G3,O=Digidentity B.V.,C=NL","subjectDN":"MIGCMQswCQYDVQQGEwJOTDEZMBcGA1UECgwQRGlnaWRlbnRpdHkgQi5WLjEXMBUGA1UEYQwOTlRSTkwtMjczMjI2MzExPzA9BgNVBAMMNkRpZ2lkZW50aXR5IEJWIFBLSW92ZXJoZWlkIE9yZ2FuaXNhdGllIFBlcnNvb24gQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"24f901fd76e07be5ca74ae59a1209d08e86fd511e3a76ea3542c5285750f7541","size":2601,"filename":"MjKBWfIUno5zpHZcoox_zRpAEZ7AAFwqwtLT51BhL-Y=.pem","location":"security-state-staging/intermediates/0424da4d-ff44-499a-93e0-aa4ca3226dcb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MjKBWfIUno5zpHZcoox/zRpAEZ7AAFwqwtLT51BhL+Y=","crlite_enrolled":false,"id":"2a0dcf45-1337-46ef-a43e-971523626591","last_modified":1562025355065},{"schem
a":1562025352786,"derHash":"TFbKejwQ61h2Xg/8+ANcV8nzvbAUhi9nZ1bPeJGT8Q4=","subject":"CN=Sonavation IoT CA,OU=sonavation.com,O=Sonavation\\, Inc.,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBTb25hdmF0aW9uLCBJbmMuMRcwFQYDVQQLEw5zb25hdmF0aW9uLmNvbTEaMBgGA1UEAxMRU29uYXZhdGlvbiBJb1QgQ0E=","whitelist":false,"attachment":{"hash":"18ab135d1a2faf6a0b5c5c5d02d5b9070887cd3dd8d6c059c6956151b5af592a","size":1695,"filename":"vVP8FQS5b7BRuCncy0juht2sjHUUGqg1uuyGap7EMKI=.pem","location":"security-state-staging/intermediates/a3f91b25-e0b3-450f-8129-2c07431d1e59.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vVP8FQS5b7BRuCncy0juht2sjHUUGqg1uuyGap7EMKI=","crlite_enrolled":false,"id":"67cfe98d-cc06-44e2-84e3-4aeab1b20424","last_modified":1562025353534},{"schema":1562025352049,"derHash":"BOy6j5K/90WMSl58aSYfx+LvUtWvVPvdkrFxQbvgZR8=","subject":"CN=QuoVadis Qualified Web ICA G1,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MHAxCzAJBgNVBAYTAk5MMRcwFQYDVQRhDA5OVFJOTC0zMDIzNzQ1OTEgMB4GA1UECg
wXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xJjAkBgNVBAMMHVF1b1ZhZGlzIFF1YWxpZmllZCBXZWIgSUNBIEcx","whitelist":false,"attachment":{"hash":"af6f343ca612b312217ca30cee00b9efa009722998fd072580bde0f44d349962","size":2487,"filename":"EWJY2DWEXe27fystTVa-0cHUmGdi6igRAeyxOTlgFDY=.pem","location":"security-state-staging/intermediates/c5ad5e32-69bd-4133-b577-c545ff03e7de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EWJY2DWEXe27fystTVa+0cHUmGdi6igRAeyxOTlgFDY=","crlite_enrolled":true,"id":"e93aa26a-ab72-42de-ac2b-960617064295","last_modified":1562025352778},{"schema":1562025350573,"derHash":"Fp2vg8CHCriSfJnT/Ad03fNPuiiwK4gdzQtjO21xsro=","subject":"CN=Symantec Class 3 Extended Validation Code Signing CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGMMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxPTA7BgNVBAMTNFN5bWFudGVjIENsYXNzIDMgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"
hash":"2238ffd72ef99d7a932f6493708f5024fbb4da32672fc7a40feea3e027effdad","size":1938,"filename":"zktT0aLlN3tuuQeEOrKYTII7ybGAXJcvbxNyvqGo1dQ=.pem","location":"security-state-staging/intermediates/db401534-395d-4f9b-8dff-298f6e23b3a8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zktT0aLlN3tuuQeEOrKYTII7ybGAXJcvbxNyvqGo1dQ=","crlite_enrolled":false,"id":"eda0f897-de94-418d-a287-4a4be71422cd","last_modified":1562025351305},{"schema":1562025348314,"derHash":"0oAzSTpc/vQJwq6oWbnUL3azhlkVj47bs/tPilh6SJE=","subject":"CN=YourNet SSL for domain,O=FreeBit Co.\\,Ltd.,C=JP","subjectDN":"MEkxCzAJBgNVBAYTAkpQMRkwFwYDVQQKExBGcmVlQml0IENvLixMdGQuMR8wHQYDVQQDExZZb3VyTmV0IFNTTCBmb3IgZG9tYWlu","whitelist":false,"attachment":{"hash":"0d491f1c30a69a0f0803421936a5ebe0b20f2c5ee70ff5705f7fbb8af76a895d","size":1492,"filename":"w0rNtXTKlMHqqX8us7SezMP-EqOqUzMJ5-x9IOvyYjs=.pem","location":"security-state-staging/intermediates/e9645405-ee30-48c7-b9cf-7be06e589c2f.pem","mimetype":"application/x-pem-fi
le"},"pubKeyHash":"w0rNtXTKlMHqqX8us7SezMP+EqOqUzMJ5+x9IOvyYjs=","crlite_enrolled":false,"id":"7e641533-b4be-442b-bb14-aced7bf58fdb","last_modified":1562025349057},{"schema":1562025347548,"derHash":"Ce1umR/DJz2P6jF9M5wCBBhhlzVJz6bhVY9BHxEhGqM=","subject":"SERIALNUMBER=07969287,CN=Go Daddy Secure Certification Authority,OU=http://certificates.godaddy.com/repository,O=GoDaddy.com\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIHKMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEaMBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xMzAxBgNVBAsTKmh0dHA6Ly9jZXJ0aWZpY2F0ZXMuZ29kYWRkeS5jb20vcmVwb3NpdG9yeTEwMC4GA1UEAxMnR28gRGFkZHkgU2VjdXJlIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MREwDwYDVQQFEwgwNzk2OTI4Nw==","whitelist":false,"attachment":{"hash":"3336e31997f16a6b0c8e3b2ca5641682721662f5ee9f648956959daaf8b8ab8d","size":1748,"filename":"MrZLZnJ6IGPkBm87lYywqu5Xal7O_ZUzmbuIdHMdlYc=.pem","location":"security-state-staging/intermediates/9d9449dc-fc0a-41b3-8e29-e1185a4d4526.pem","mimetype":"appl
ication/x-pem-file"},"pubKeyHash":"MrZLZnJ6IGPkBm87lYywqu5Xal7O/ZUzmbuIdHMdlYc=","crlite_enrolled":true,"id":"dbfd9482-8c71-4e1a-b80a-37fbb3beee31","last_modified":1562025348307},{"schema":1562025346055,"derHash":"zfJ+6gw6VRI2kQj9dGNdLUz1DpTWyhmb7X3oGw0JozY=","subject":"CN=HARICA Qualified Legal Entities SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGXMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTExMC8GA1UEAwwoSEFSSUNBIFF1YWxpZmllZCBMZWdhbCBFbnRpdGllcyBTdWJDQSBSMg==","whitelist":false,"attachment":{"hash":"8a0bdbb8b96dee2791a488b9ce949588e7f3341a346c5b8cc52119c67b607537","size":2605,"filename":"aP4JUCD4l8Gb5cKoQl0ai7usQVAOHgsjtOGEe__rD5I=.pem","location":"security-state-staging/intermediates/8dac66c0-21aa-435e-9911-91551650b659.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aP4JUCD4l8Gb5cKoQl0ai7usQVAOHgsjtOGEe//rD5I=","crlite_enroll
ed":false,"id":"ee438ee6-5459-4f0f-94e6-ccd27fac2655","last_modified":1562025346789},{"schema":1562025344551,"derHash":"WC3B2Xp5DvBP4lZ7HsiMJrA79umZN8rmoLUDl60gu/g=","subject":"CN=Symantec Class 3 SHA256 Code Signing CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEwMC4GA1UEAxMnU3ltYW50ZWMgQ2xhc3MgMyBTSEEyNTYgQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"82513c1a54e82926dd75722ae90d375351d27823d1ce05f32bf41a71f2d4218f","size":1914,"filename":"s8kzVzbZoCJLMAVvClIf4wDT-C0efzYgJqpBI0uFLh8=.pem","location":"security-state-staging/intermediates/aa02826e-48b4-4d27-b078-6d7e1b49f241.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"s8kzVzbZoCJLMAVvClIf4wDT+C0efzYgJqpBI0uFLh8=","crlite_enrolled":true,"id":"969300bd-569a-4e2c-abfc-86ab18116743","last_modified":1562025345310},{"schema":1562025343069,"derHash":"nomO0D+kaWlpDa1zxylmdQRf+bWgEAo5m+
uENamPUYU=","subject":"CN=GlobalSign RSA DV SSL CA 2018,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1HbG9iYWxTaWduIFJTQSBEViBTU0wgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"cca208f1e570c01764f76eb5afafc8222abf5a3e3cc7d91541a8791abf93a1dd","size":1609,"filename":"zf-i_fasW4ALe6PM9XFmRtKN_HFCpamlq2FK8z_Vuvs=.pem","location":"security-state-staging/intermediates/1cfc6d0a-1bef-47dd-8656-2dd4ebf008d4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zf+i/fasW4ALe6PM9XFmRtKN/HFCpamlq2FK8z/Vuvs=","crlite_enrolled":true,"id":"99897585-23f4-4f35-9dd3-4022885dd187","last_modified":1562025343805},{"schema":1562025342325,"derHash":"bs9ljM6ospvmDIWQT0rdfMt5UM9YyXu/YNV86kmicD0=","subject":"CN=North Dakota Information Technology Department CA,OU=Orion Health Direct Secure Messaging,O=North Dakota Information Technology Department,C=US","subjectDN":"MIGxMQswCQYDVQQGEwJVUzE3MDUGA1UEChMuTm9ydGggRGFrb3RhIEluZm9ybWF0aW9uIF
RlY2hub2xvZ3kgRGVwYXJ0bWVudDEtMCsGA1UECxMkT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nMTowOAYDVQQDEzFOb3J0aCBEYWtvdGEgSW5mb3JtYXRpb24gVGVjaG5vbG9neSBEZXBhcnRtZW50IENB","whitelist":false,"attachment":{"hash":"5f9cc0ce3c5d93329379d369ff1e0047e498fe1ffedc203f830e46ad0b803c71","size":2357,"filename":"e6QJ3uaxtddKrpwxGhdDIibY-LwCvEaQVA-SewcDHuw=.pem","location":"security-state-staging/intermediates/0decedaf-e893-43bf-8eb8-39ecf09e9125.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e6QJ3uaxtddKrpwxGhdDIibY+LwCvEaQVA+SewcDHuw=","crlite_enrolled":false,"id":"7e063cdc-6733-4883-9098-251e456f3adc","last_modified":1562025343058},{"schema":1562025339315,"derHash":"lqB17d0HKQVakyquJYcPfR9c+eOQGn3CzY6RbMbisQs=","subject":"SERIALNUMBER=201807,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODA3","whitelist":false,"attachment":{"hash":"7e
4d7c6e3a95158f919f57bb217238677995616ec31959d9d20ad76ed10aa9a5","size":2333,"filename":"Via59R_X7HXx5CA2nQ7ywLT26zw0YGiYBhwVzUuDX_s=.pem","location":"security-state-staging/intermediates/9d6bef93-9690-4c8b-a6fb-c17565b52221.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Via59R/X7HXx5CA2nQ7ywLT26zw0YGiYBhwVzUuDX/s=","crlite_enrolled":false,"id":"35982461-e9d0-4e1e-aabe-25f6f5f51428","last_modified":1562025340065},{"schema":1562025337828,"derHash":"tc/msLKqhhoLNnwMBTlaU4rUk6nfARVEqO/EaH/bLMg=","subject":"CN=NQ-SK 2016,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MF8xCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRcwFQYDVQRhDA5OVFJFRS0xMDc0NzAxMzETMBEGA1UEAwwKTlEtU0sgMjAxNg==","whitelist":false,"attachment":{"hash":"b9044318369543a1b181fe0448d08b456293cdbd66d3eb0cf081c7c872466eb7","size":2272,"filename":"-_v9mzheDZaz7Hjj0hmoJAfy8SckawyPQ6Kx_01hio4=.pem","location":"security-state-staging/intermediates/376ae8a1-60ca-43e7-b0fb-7acb9896ba24.pem","mimetype":"ap
plication/x-pem-file"},"pubKeyHash":"+/v9mzheDZaz7Hjj0hmoJAfy8SckawyPQ6Kx/01hio4=","crlite_enrolled":false,"id":"b2430e92-ecf6-470a-82d0-ee268da554fa","last_modified":1562025338559},{"schema":1562025337064,"derHash":"qlNFLViQaevZFCODT+woinisxqe51NDxQ9jJLguD2Ok=","subject":"CN=CERTSIGN FOR BANKING QUALIFIED DS PRODUCTION CA V3,OU=Certificat de productie Production certificate,O=certSIGN,C=RO","subjectDN":"MIGWMQswCQYDVQQGEwJSTzERMA8GA1UECgwIY2VydFNJR04xNzA1BgNVBAsMLkNlcnRpZmljYXQgZGUgcHJvZHVjdGllIFByb2R1Y3Rpb24gY2VydGlmaWNhdGUxOzA5BgNVBAMMMkNFUlRTSUdOIEZPUiBCQU5LSU5HIFFVQUxJRklFRCBEUyBQUk9EVUNUSU9OIENBIFYz","whitelist":false,"attachment":{"hash":"eaa0de7b4753356246d652e36cc56d60e8a923001719aa842e83a1fbfb036ca1","size":1683,"filename":"lgaybEWhquJ9CUpEl0ci8n7TT_mQu7ls6VLD9gC0u2g=.pem","location":"security-state-staging/intermediates/b16e7431-1a00-4dad-9c47-46be383bcfe4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lgaybEWhquJ9CUpEl0ci8n7TT/mQu7ls6VLD9gC0u2g=","crlite_enrolle
d":false,"id":"515bc65f-fec1-4f6b-98db-30c867438ca2","last_modified":1562025337821},{"schema":1562025334820,"derHash":"ZOshqAA2VUiOliDtwrIXy81VklPEU+c15VJwZpXOGHg=","subject":"CN=TrustID HID Enterprise CA 1,O=HID Global,C=US","subjectDN":"MEgxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpISUQgR2xvYmFsMSQwIgYDVQQDExtUcnVzdElEIEhJRCBFbnRlcnByaXNlIENBIDE=","whitelist":false,"attachment":{"hash":"3675fee67c57748a850ca3d25b38e888d086b6e291f15e60fc5955aae4ebdbd8","size":2858,"filename":"cpBDVSnEXaonbErjbbQ5nxA8Mek-w3LsQ6tRL149lGg=.pem","location":"security-state-staging/intermediates/ac3b37a3-2818-4aa7-8d6c-957f5d5ddfd4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cpBDVSnEXaonbErjbbQ5nxA8Mek+w3LsQ6tRL149lGg=","crlite_enrolled":false,"id":"536b01cb-8380-4de7-9d91-20f761c15500","last_modified":1562025335558},{"schema":1562025334072,"derHash":"S3M04diZmCK6+o/2iIElOJsYpOWrJv+mJMf2j9yB8Ms=","subject":"CN=GlobalSign CloudSSL CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJ
FMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIENsb3VkU1NMIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"2d52ef3ad1bf79d364b9204631f8b1fedcd6e4e13aadf92c4b6af52d751e96dd","size":1634,"filename":"-VZJxHgrOOiVyUxgMRbfoo-GIWrMKd4aellBBHtBcKg=.pem","location":"security-state-staging/intermediates/67867c84-32d8-4600-aa2f-a51493938ab0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+VZJxHgrOOiVyUxgMRbfoo+GIWrMKd4aellBBHtBcKg=","crlite_enrolled":true,"id":"8f1617bd-0e32-4828-b630-2a3c510a24ef","last_modified":1562025334812},{"schema":1562025333317,"derHash":"wSP1r6zJ+QloCYUDVeW/eMqTdzSBEbUWepZN3twETek=","subject":"CN=TERENA Personal CA 3 G3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MGwxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEgMB4GA1UEAxMXVEVSRU5BIFBlcnNvbmFsIENBIDMgRzM=","whitelist":false,"attachment":{"hash":"d97fd351c70f4186ab1a1b6d07d4d7cd23c138d05ff6501f8793a7a457d714
a0","size":1561,"filename":"YT82u8O68j48N4ShltJlLRPwW9t8uCpdZikMmWEu9ro=.pem","location":"security-state-staging/intermediates/465904a4-0fb5-43d2-a5c9-9857ba6ecc74.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YT82u8O68j48N4ShltJlLRPwW9t8uCpdZikMmWEu9ro=","crlite_enrolled":false,"id":"834c434b-e007-4e04-818f-bd61ceb2e53a","last_modified":1562025334065},{"schema":1562025331082,"derHash":"j8HBdj9jF6sJBhxaeNTp1nAB7+Cnn+QFc7BIwG6yFlg=","subject":"CN=Thawte Class 3 RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGFRoYXd0ZSBDbGFzcyAzIFJTQSBDQSBHMQ==","whitelist":false,"attachment":{"hash":"81ef8a4772629958118da223f884373db6f97ecd96c968ed91322150dc9cf583","size":1654,"filename":"YYguLfuEMtW11fy4mtQV_FlyFQDLr4EfWdDyGPSae9A=.pem","location":"security-state-staging/intermediates/47b2de9a-7c71-4e03-9275-544fee336f55.pem","mimetype":"application/x-pem-file"},"pubKeyHash"
:"YYguLfuEMtW11fy4mtQV/FlyFQDLr4EfWdDyGPSae9A=","crlite_enrolled":false,"id":"1e02fcc7-2993-47ca-940f-86653e3cecbe","last_modified":1562025331813},{"schema":1562025330338,"derHash":"fo+RQRm7EJDWIEkI5a4fQL4kwUkc19XPtqk2GMvAD9k=","subject":"CN=GlobalSign Partners TSA CA for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"MFYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSwwKgYDVQQDEyNHbG9iYWxTaWduIFBhcnRuZXJzIFRTQSBDQSBmb3IgQUFUTA==","whitelist":false,"attachment":{"hash":"ac692c130dd61ad078ca128601e56417964e4f3c303740c7446aef653a0bf756","size":2036,"filename":"H92PKGXpuffyCKbwBGAY4e4XY990BbquJeNZ072shzw=.pem","location":"security-state-staging/intermediates/79bbb0c5-7608-426c-a235-c0262afa84a4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H92PKGXpuffyCKbwBGAY4e4XY990BbquJeNZ072shzw=","crlite_enrolled":false,"id":"0471bdec-38ad-4b8d-86bd-3f137555792b","last_modified":1562025331074},{"schema":1562025329599,"derHash":"9AUHfHF0cDuXgceVRKe+mUJjhU0VFz5hqNGaKM96SrE=","subject":"
CN=TERENA eScience Personal CA,O=TERENA,C=NL","subjectDN":"MEQxCzAJBgNVBAYTAk5MMQ8wDQYDVQQKEwZURVJFTkExJDAiBgNVBAMTG1RFUkVOQSBlU2NpZW5jZSBQZXJzb25hbCBDQQ==","whitelist":false,"attachment":{"hash":"0ff25cb8ace98409f31247ecb59b650b17e31d145ec2485517081e2ac1dfa4fb","size":1743,"filename":"rfAIoQEXwIYxHVXIaa2COA8XlDmE8FsumvzEWCU7MfU=.pem","location":"security-state-staging/intermediates/8dd56ca7-dc47-487f-bb0a-fde60bbeab18.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rfAIoQEXwIYxHVXIaa2COA8XlDmE8FsumvzEWCU7MfU=","crlite_enrolled":false,"id":"707787e0-3c77-41ba-a894-946cb1999932","last_modified":1562025330331},{"schema":1562025328112,"derHash":"ZuricJtUzdFpMXexMy/wNs3Q9yPbMDntMRVVpsv1/z4=","subject":"SERIALNUMBER=A82743287,CN=Camerfirma Corporate Server II - 2015,OU=AC CAMERFIRMA,O=AC Camerfirma S.A.,L=Madrid (see current address at https://www.camerfirma.com/address),C=ES","subjectDN":"MIHTMQswCQYDVQQGEwJFUzEWMBQGA1UECwwNQUMgQ0FNRVJGSVJNQTEbMBkGA1UECgwSQUMgQ2FtZXJmaXJtYSBTLkE
uMRIwEAYDVQQFEwlBODI3NDMyODcxSzBJBgNVBAcMQk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCBodHRwczovL3d3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTEuMCwGA1UEAwwlQ2FtZXJmaXJtYSBDb3Jwb3JhdGUgU2VydmVyIElJIC0gMjAxNQ==","whitelist":false,"attachment":{"hash":"df2d8a40bc28188df68d3c6579cec37ec903635f58cc869dcf759dfef7fa0eaf","size":3031,"filename":"m6nepCtxe9G9HhpXqQbCc7VSQX41KwYqD6LqFDqntKk=.pem","location":"security-state-staging/intermediates/4e0e9856-a536-495f-8223-f662f7a6e556.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m6nepCtxe9G9HhpXqQbCc7VSQX41KwYqD6LqFDqntKk=","crlite_enrolled":true,"id":"f3d9c664-5684-4d40-b74b-f45fc70887d8","last_modified":1562025328852},{"schema":1562025327350,"derHash":"sayM+xgbnJNU4Xdfy9/P54mMXMmhfXYxW1fBEu7lUjQ=","subject":"CN=Encryption Everywhere DV TLS CA - G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLTArBgNVBAMTJEVuY3J5cHRpb24gRXZlcnl3aGVyZSBEViBUTFMgQ0EgLS
BHMg==","whitelist":false,"attachment":{"hash":"c75d6fc5179d7bb7baea5ffe48d9fda3810fdcb1340a3ca83e1e7b97a4af6478","size":1678,"filename":"gxeKFFaZ2HFJIsTdTjEl6nVo3ckTCX-qzRMqb9Xoa1w=.pem","location":"security-state-staging/intermediates/36b3d43a-f83c-40a5-af78-851b6283fd64.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gxeKFFaZ2HFJIsTdTjEl6nVo3ckTCX+qzRMqb9Xoa1w=","crlite_enrolled":false,"id":"0d9d974c-bea1-4d7f-9958-e5dd76763236","last_modified":1562025328104},{"schema":1562025326608,"derHash":"AB14v0Ck2vlM1WS0IZRVg3sAVtMhayu4/3kZZrQbE24=","subject":"CN=Intel External Issuing CA 7A,O=Intel Corporation,L=Santa Clara,ST=CA,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEUMBIGA1UEBxMLU2FudGEgQ2xhcmExGjAYBgNVBAoTEUludGVsIENvcnBvcmF0aW9uMSUwIwYDVQQDExxJbnRlbCBFeHRlcm5hbCBJc3N1aW5nIENBIDdB","whitelist":false,"attachment":{"hash":"d813527cd54737fcfb5de10708464c3c058ae6b88a50b01c6d0f86657fd1e6ff","size":2588,"filename":"F1nC3g4x7xWb67o-xWeC3pUpqn2PqsssGrUzVFcrPlM=.pem","
location":"security-state-staging/intermediates/5b73c6e2-ee41-4b2d-9a29-be9bf1eb744f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"F1nC3g4x7xWb67o+xWeC3pUpqn2PqsssGrUzVFcrPlM=","crlite_enrolled":false,"id":"d1150731-818c-4e50-9788-d789004759e5","last_modified":1562025327343},{"schema":1562025325869,"derHash":"hgm9zvleSk1CZJe1zY7UsAHJU6XBRHHKr1j7ZQ34q/A=","subject":"CN=Spirit AeroSystems SHA256 CA - G2,O=Spirit AeroSystems\\, Inc.,ST=KS,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJLUzEhMB8GA1UEChMYU3Bpcml0IEFlcm9TeXN0ZW1zLCBJbmMuMSowKAYDVQQDEyFTcGlyaXQgQWVyb1N5c3RlbXMgU0hBMjU2IENBIC0gRzI=","whitelist":false,"attachment":{"hash":"2102b7e34260128aa8eddddcb68a23f8f43ef3852bbd09e6ddf31829ea3f4e94","size":1857,"filename":"-eZm38gBRNSIDBYrgLDj3YjRs2ABUSD5_ssqnCDgYlM=.pem","location":"security-state-staging/intermediates/45b38ccd-17b9-415e-a888-2b1631eceec9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+eZm38gBRNSIDBYrgLDj3YjRs2ABUSD5/ssqnCDgYlM=","crlite_enroll
ed":false,"id":"d0de06c4-5ab3-460f-8fcb-23b27889568f","last_modified":1562025326601},{"schema":1562025322865,"derHash":"CbwbE3wDEjnveIZz6U6xf18+yrB9Otv7SF51q/qvO5o=","subject":"CN=GlobalSign Domain Validation CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"4827709bafd08a7e0584c4d4411937345e9fa8505ca1a15d2c4483e729c804a6","size":1626,"filename":"1kflsxIeB1bcxW1C61yFNdNQjO_xuF0ORdL9EtMe-Rs=.pem","location":"security-state-staging/intermediates/fdb62a70-c092-4d32-81b3-d72418696f57.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1kflsxIeB1bcxW1C61yFNdNQjO/xuF0ORdL9EtMe+Rs=","crlite_enrolled":true,"id":"1c345873-cf2f-48aa-a6a3-93a5661939df","last_modified":1562025323597},{"schema":1562025322116,"derHash":"C8OTcHISi55bzDosak5VMe/T2W0wLByKDfVQ/geKCDo=","subject":"SERIALNUMBER=201915,CN=Citizen CA,O=Certi
post N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTE1","whitelist":false,"attachment":{"hash":"3b8b7b4968d2d4a4042e69f27592e569862bdc2f143e41ebbe1a0c11736d81f0","size":2333,"filename":"kM1AzUSn_oORQFEI2x5nOsi3ZlZJxf6FjYmxYSu74Co=.pem","location":"security-state-staging/intermediates/66b03c59-a25d-40f2-8d5f-dae76d3270d0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kM1AzUSn/oORQFEI2x5nOsi3ZlZJxf6FjYmxYSu74Co=","crlite_enrolled":false,"id":"5e3b9614-e826-466b-8b48-3c5f863463b1","last_modified":1562025322857},{"schema":1562025319082,"derHash":"Lkph5SOOVW6M7bzAtPPeIXgkVmSgvhlbOFW0yF297v8=","subject":"CN=USERTrust RSA Organization Validation Secure Server CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGZMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE/MD
0GA1UEAxM2VVNFUlRydXN0IFJTQSBPcmdhbml6YXRpb24gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"261660739939209c93938fbc278a1e17a758bea711e15624adbd1203f98c95d1","size":2178,"filename":"qmZOfgEUaNPh43JyVsa1dSCvAFxPKkxkytll6bY4_4E=.pem","location":"security-state-staging/intermediates/00deca06-8d9c-4815-b9cd-3365ade55c61.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qmZOfgEUaNPh43JyVsa1dSCvAFxPKkxkytll6bY4/4E=","crlite_enrolled":true,"id":"f52a51f2-1d8f-4dee-b214-c65760473054","last_modified":1562025319823},{"schema":1562025318342,"derHash":"GJWNA6+0CWh6G8Jjhg0Nc1oloASrYODw5F1jM1h0N64=","subject":"CN=GoGetSSL Business Validation CA SHA2,OU=GoGetSSL Certification Authority,O=EnVers Group SIA,C=LV","subjectDN":"MIGCMQswCQYDVQQGEwJMVjEZMBcGA1UECgwQRW5WZXJzIEdyb3VwIFNJQTEpMCcGA1UECwwgR29HZXRTU0wgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxLTArBgNVBAMMJEdvR2V0U1NMIEJ1c2luZXNzIFZhbGlkYXRpb24gQ0EgU0hBMg==","whitelist":false,"attachment":{"hash":"bbda288904603261a16
251c2a9b280cba6dabc71d51dcff1d3c4f6b0447c1a3b","size":1752,"filename":"WhJb1Rhj6-UXftVUkeVV5CiOZwfWF4gdskEVvyWpNxM=.pem","location":"security-state-staging/intermediates/1ce075cb-f977-4ccb-b47f-6aedf5a3162b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WhJb1Rhj6+UXftVUkeVV5CiOZwfWF4gdskEVvyWpNxM=","crlite_enrolled":false,"id":"bf5482ce-06f3-4976-a653-c8d2aced7246","last_modified":1562025319075},{"schema":1562025317595,"derHash":"lzpBJ2/9AeAnoqrUnjTDeEbT6Xb/amILZxLjODIEGqY=","subject":"CN=Go Daddy Secure Certificate Authority - G2,OU=http://certs.godaddy.com/repository/,O=GoDaddy.com\\, Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIG0MQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEaMBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xLTArBgNVBAsTJGh0dHA6Ly9jZXJ0cy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5LzEzMDEGA1UEAxMqR28gRGFkZHkgU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcy","whitelist":false,"attachment":{"hash":"a111efc20329e87b541cfc3e7f526fc54bb24624fddf210f4347b9fadfb1
ab6b","size":1727,"filename":"8Rw90Ej3Ttt8RRkrg-WYDS9n7IS03bk5bjP_UXPtaY8=.pem","location":"security-state-staging/intermediates/a2a04dfe-6201-4d0a-b8cf-80d2975bfb51.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8Rw90Ej3Ttt8RRkrg+WYDS9n7IS03bk5bjP/UXPtaY8=","crlite_enrolled":true,"id":"549c92e2-3738-4c8c-ae37-407e4e6158ce","last_modified":1562025318334},{"schema":1562025314617,"derHash":"eZ4gVk1FSE36DyjtcmA3/wcNZsUd6OI0MoTeyrD8mZE=","subject":"CN=Network Solutions EV Server CA 2,O=Network Solutions L.L.C.,L=Herndon,ST=VA,C=US","subjectDN":"MHoxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJWQTEQMA4GA1UEBxMHSGVybmRvbjEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMSkwJwYDVQQDEyBOZXR3b3JrIFNvbHV0aW9ucyBFViBTZXJ2ZXIgQ0EgMg==","whitelist":false,"attachment":{"hash":"e31f1427ec6db92529d090d990064b3f8fd08dc7b1f02e0b68d1ef7ff9e4505c","size":1857,"filename":"uY4iOhjFT5ZJncBPVcvV4Vp7MzDa5mJyEdEtzpD6i28=.pem","location":"security-state-staging/intermediates/397f2aa1-bd87-47da-b308-5ddefa3c9e3c.pem",
"mimetype":"application/x-pem-file"},"pubKeyHash":"uY4iOhjFT5ZJncBPVcvV4Vp7MzDa5mJyEdEtzpD6i28=","crlite_enrolled":true,"id":"3b08d1c1-eaa3-447e-a837-aa1abd1be8a4","last_modified":1562025315352},{"schema":1562025313862,"derHash":"tf1vgAM09WUDawmZ+DELWwvXJoOV2LJnAFaXr3MBxeg=","subject":"CN=AffirmTrust Certificate Authority - OV1,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGCMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMDAuBgNVBAMTJ0FmZmlybVRydXN0IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIE9WMQ==","whitelist":false,"attachment":{"hash":"0444cfdbccd513e2a46e37f1768b21669333660cb0c9e2802b9e5041b414be02","size":1674,"filename":"RM5J-l4IeDRKjL4ZuWGG2Jt3Wae0v4pWKttrQv-DsGM=.pem","location":"security-state-staging/intermediates/eb61a73a-5fdb-41c0-848b-e07b9e3a24e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RM5J+l4IeDRKjL4ZuWGG2Jt3Wae0v4pWKttrQv+DsGM=","crlite_enrolled":true,"id":"be2ceaf1-8ba0-4ca
b-bd2a-0cdb7f118523","last_modified":1562025314608},{"schema":1562025313115,"derHash":"x/VG8Mdsmg2pmS6YhOYki3yiu2reg4vXoDqMQe4qMGQ=","subject":"CN=WoSign OV SSL CA,O=WoSign CA Limited,C=CN","subjectDN":"MEQxCzAJBgNVBAYTAkNOMRowGAYDVQQKDBFXb1NpZ24gQ0EgTGltaXRlZDEZMBcGA1UEAwwQV29TaWduIE9WIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"048dba35914e23e206772fb60d80b4ca80d87cf337af50dd6dc2287381e3e76a","size":1691,"filename":"MZKD2c60FHEBoj-uZNlegylIGvCafu0tBZ2eUHao0-0=.pem","location":"security-state-staging/intermediates/b60c5c46-1be6-40b6-8d56-cd82c562287f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MZKD2c60FHEBoj+uZNlegylIGvCafu0tBZ2eUHao0+0=","crlite_enrolled":true,"id":"2a6ed91a-06ad-49ae-94d2-9fd509326fda","last_modified":1562025313853},{"schema":1562025310863,"derHash":"b1h9G+4vFhxPwuZiBT35z/7+URRM6SfTFD5KTDSLhWc=","subject":"CN=GENIOUS ECC Organization Validation Secure Server CA,O=Genious Communications,L=Marrakech,ST=Marrakech,C=MA","subjectDN":"MIGVMQswCQYDV
QQGEwJNQTESMBAGA1UECBMJTWFycmFrZWNoMRIwEAYDVQQHEwlNYXJyYWtlY2gxHzAdBgNVBAoTFkdlbmlvdXMgQ29tbXVuaWNhdGlvbnMxPTA7BgNVBAMTNEdFTklPVVMgRUNDIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"a15ce7808aa99574fda608941c7b79aeebab97da5fdca6096ca97147951f3fab","size":1345,"filename":"9JEABMnN_SwMIz1lP1QSJXAr9u9DfOC_51G3sB_hgvg=.pem","location":"security-state-staging/intermediates/11e95b57-aa8c-455b-bf47-2ce89665585e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9JEABMnN/SwMIz1lP1QSJXAr9u9DfOC/51G3sB/hgvg=","crlite_enrolled":false,"id":"eba108e8-2131-4af1-aa97-148aa27d0bbd","last_modified":1562025311599},{"schema":1562025307101,"derHash":"jDhVsKoIU/ZTfHcnrEFqJHYcioE54n2B4Ssz67dzhdg=","subject":"SERIALNUMBER=201908,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTA4","whitelist":false,"at
tachment":{"hash":"cccaf9299dbfe420f3015ef4d158c1965fe160e99937c153a0290d2f9bc45873","size":2333,"filename":"Yuh8cRCxqhDPCJCNLDTVXWmhSaBY8Jl6YlQFhDVMYrU=.pem","location":"security-state-staging/intermediates/261862b1-2bce-41b6-ad40-c999c0dfa834.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Yuh8cRCxqhDPCJCNLDTVXWmhSaBY8Jl6YlQFhDVMYrU=","crlite_enrolled":false,"id":"2f9d0c1d-b80d-43af-a476-95278b1e87b8","last_modified":1562025307842},{"schema":1562025305606,"derHash":"3QwL6c4JBB8Wty1rPWKluPU4Qn7BpC2DMa8bWd/mlEY=","subject":"CN=AffirmTrust Networking Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=AffirmTrust,C=US","subjectDN":"MIGKMQswCQYDVQQGEwJVUzEUMBIGA1UECgwLQWZmaXJtVHJ1c3QxLTArBgNVBAsMJGh0dHA6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291cmNlczE2MDQGA1UEAwwtQWZmaXJtVHJ1c3QgTmV0d29ya2luZyBFeHRlbmRlZCBWYWxpZGF0aW9uIENB","whitelist":false,"attachment":{"hash":"c7b2667e5d9802f3d9c42a37d05f6c68fba7119a56843956b872ec74a1115970","size":1581,"filename":"DJdCClyMUYAHIPZVC
PPJWty8pFkigRmSqua8RS8UJpk=.pem","location":"security-state-staging/intermediates/9050ab70-b46f-45d7-90b4-edff1e8b4d24.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DJdCClyMUYAHIPZVCPPJWty8pFkigRmSqua8RS8UJpk=","crlite_enrolled":false,"id":"4db21147-aaec-40a6-b50d-3790bbcfd4f4","last_modified":1562025306340},{"schema":1562025304867,"derHash":"450+2Iblo68mudarYIAovG+8UuWZyzI9p+nndbUwM3w=","subject":"CN=Amazon,OU=Server CA 0A,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAwQTEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"a68a630350b255e6f2fc6123fbd732917d5259386f485d3136d80a777271ef2a","size":1666,"filename":"tYU57KoTkhzNuA0400h1_eZHHFoVnZvu8vpvmZg71hE=.pem","location":"security-state-staging/intermediates/ad29234d-055c-47ec-b5fb-78bb146b74e2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tYU57KoTkhzNuA0400h1/eZHHFoVnZvu8vpvmZg71hE=","crlite_enrolled":false,"id":"e243a4ba-3208-4938-97f4-f4fe00c73c5
e","last_modified":1562025305598},{"schema":1562025303361,"derHash":"43EPDGZ+WJ3o5K6jfnAa+vP7tidXYub+o/1mKVRCedY=","subject":"CN=Symantec Class 3 Organizational CA - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEwMC4GA1UEAxMnU3ltYW50ZWMgQ2xhc3MgMyBPcmdhbml6YXRpb25hbCBDQSAtIEc0","whitelist":false,"attachment":{"hash":"a14b89bb2062f598bd836c642489dc372a04cf0bc46001ed6613adf12484de00","size":1849,"filename":"uNzZ9PuqZ750aAgYLpKabu6MjXW-QU_Qg4jjBcbvEik=.pem","location":"security-state-staging/intermediates/0eafa101-533d-4a28-a0f1-4d0fe9c795a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uNzZ9PuqZ750aAgYLpKabu6MjXW+QU/Qg4jjBcbvEik=","crlite_enrolled":false,"id":"4ad1dc4a-0a9b-4057-867a-1d1aaef8e793","last_modified":1562025304109},{"schema":1562025302614,"derHash":"3Bqx78ogg/4eptDT3Ep4edXMbT2j8KgelMhpnTqnyw4=","subject":"CN=Institute of Acceleratin
g Systems and Applications Client CA R1,O=Institute of Accelerating Systems and Applications,L=Athens,C=GR","subjectDN":"MIGlMQswCQYDVQQGEwJHUjEPMA0GA1UEBxMGQXRoZW5zMTswOQYDVQQKEzJJbnN0aXR1dGUgb2YgQWNjZWxlcmF0aW5nIFN5c3RlbXMgYW5kIEFwcGxpY2F0aW9uczFIMEYGA1UEAxM/SW5zdGl0dXRlIG9mIEFjY2VsZXJhdGluZyBTeXN0ZW1zIGFuZCBBcHBsaWNhdGlvbnMgQ2xpZW50IENBIFIx","whitelist":false,"attachment":{"hash":"3c6264fd3d686bf2adb8496b232e035774c7efe61bb19a690633eaeb3995552c","size":2621,"filename":"IhXE146qQEkPE3NDCXQL_XCLpRiVTVuOAnKEHxg0A3w=.pem","location":"security-state-staging/intermediates/a6fe91af-3457-4d40-97b4-e7ac3e0bf68a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IhXE146qQEkPE3NDCXQL/XCLpRiVTVuOAnKEHxg0A3w=","crlite_enrolled":false,"id":"c10c0ae5-e174-4d1e-8333-c111ab28da33","last_modified":1562025303351},{"schema":1562025298880,"derHash":"rftaDyWTCRIrzR8DAmAHmIJRclX1s40z+Nq5c8tg4LY=","subject":"CN=FujiSSL ECC Domain Secure Site CA,O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN":
"MHQxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzETMBEGA1UEBxMKU2hpYnV5YS1rdTEUMBIGA1UEChMLTmlqaW1vIEsuSy4xKjAoBgNVBAMTIUZ1amlTU0wgRUNDIERvbWFpbiBTZWN1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"a956c6214bc00a3983c1ec59a5c5b4fef7452a3a94862da4f2b186ac1f059736","size":1297,"filename":"2rgbkrRXysWSf_k1kOj6EDKWKuKW-YVR38ExFhGbHac=.pem","location":"security-state-staging/intermediates/bfdd4e7d-8b03-4761-b3d1-ab4103ab8df3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2rgbkrRXysWSf/k1kOj6EDKWKuKW+YVR38ExFhGbHac=","crlite_enrolled":false,"id":"f1917f9a-0c69-4510-a86a-08ce3db84cf9","last_modified":1562025299610},{"schema":1562025295880,"derHash":"6QSgV9g5vL5jEJK0IV3YzE+ISbqHtRqvJyi3HmSs51E=","subject":"CN=DREAMHOST SECURE EMAIL CA,O=DREAMHOST CERTIFICATION AUTHORITY,C=US","subjectDN":"MF0xCzAJBgNVBAYTAlVTMSowKAYDVQQKEyFEUkVBTUhPU1QgQ0VSVElGSUNBVElPTiBBVVRIT1JJVFkxIjAgBgNVBAMTGURSRUFNSE9TVCBTRUNVUkUgRU1BSUwgQ0E=","whitelist":false,"attachment":{"hash":"bd46e6b3068ecccbabe7d
a0273be8a3d35a413fdfcca05bc18847e7402db16fa","size":1756,"filename":"63NWnCfq1JadpotgYBS_ORAIQ4nhhoHBm9FjkLxi1nA=.pem","location":"security-state-staging/intermediates/f2757c69-e3af-4940-ab12-328e5089e118.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"63NWnCfq1JadpotgYBS/ORAIQ4nhhoHBm9FjkLxi1nA=","crlite_enrolled":false,"id":"1c2b0263-fa38-44fa-be13-95992ca973b2","last_modified":1562025296626},{"schema":1562025295127,"derHash":"7WeTcIOwc58wI5b5dK+0G/umSEc5Z3gLLFm4isQSGtQ=","subject":"CN=Volusion\\, Inc. DV SSL CA - G4,OU=Domain Validated SSL,O=Volusion\\, Inc.,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5Wb2x1c2lvbiwgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxJjAkBgNVBAMTHVZvbHVzaW9uLCBJbmMuIERWIFNTTCBDQSAtIEc0","whitelist":false,"attachment":{"hash":"2345f19d6cfb45db379df441b2cdc6a5cfc3cb08f620d38c40c9b1efd1aae341","size":1642,"filename":"2vpFY_GsHi5tYScV5TkSw7SuQkJ1Qtyos25uI1C0Cok=.pem","location":"security-state-staging/intermediates/b12a2c62-5974-4e93-b3de
-d12852b5fe03.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2vpFY/GsHi5tYScV5TkSw7SuQkJ1Qtyos25uI1C0Cok=","crlite_enrolled":false,"id":"d468c55f-58fb-4439-a16d-69f3fafd2500","last_modified":1562025295872},{"schema":1562025292866,"derHash":"dK/O7OBzFYe0XDzae8IQ/JF1AqMjQB6TLoZbw9eX56s=","subject":"CN=Atos TrustedRoot Issuing CA for WWE 2015,O=Atos,C=DE","subjectDN":"ME8xMTAvBgNVBAMMKEF0b3MgVHJ1c3RlZFJvb3QgSXNzdWluZyBDQSBmb3IgV1dFIDIwMTUxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"0c5d1ea52b767af0853d6af41c73f1d188589a66e9c919e2858bc429241f4ffc","size":1573,"filename":"IA32tKC4ljNAfmi44SQR9xeWWNipPKjmUmjtzoT6pkY=.pem","location":"security-state-staging/intermediates/345d4a3f-ed22-4e47-af57-c4da221aa0cd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IA32tKC4ljNAfmi44SQR9xeWWNipPKjmUmjtzoT6pkY=","crlite_enrolled":false,"id":"69330f6b-0bbf-4528-a402-c89b6262cce4","last_modified":1562025293606},{"schema":1562025292126,"derHash":"K/lNoe25
VOkofJ5F4p/2ptKvuPiJDPJzO9dkEdV9vv4=","subject":"SERIALNUMBER=201402,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDI=","whitelist":false,"attachment":{"hash":"ae7283dfb872e87e5821a01f3bc4d8820099528e2f30c0e7e063e4d650afe62e","size":1402,"filename":"0EXmMnZ8pOr9XL2evHgo2vhHefnCt2aq-aHmDVgtjKU=.pem","location":"security-state-staging/intermediates/614d38fd-2482-4116-9af6-e749766cd34f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0EXmMnZ8pOr9XL2evHgo2vhHefnCt2aq+aHmDVgtjKU=","crlite_enrolled":false,"id":"f1f158d2-8546-42eb-9aba-1e797216092b","last_modified":1562025292859},{"schema":1562025291368,"derHash":"/ToPPdRIAJK21FBHPeuSAaCzCKiAeDOjxzj4oH64HtM=","subject":"CN=GlobalSign Qualified CA 2,O=GlobalSign nv-sa,C=BE","subjectDN":"MEwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSIwIAYDVQQDExlHbG9iYWxTaWduIFF1YWxpZmllZCBDQSAy","whitelist":false,"attachment":{"hash":"666808b17b5d5c0349aaa78a66212cf4825a5213929f0923b
1a7e7ad57f22de8","size":2109,"filename":"6gTNFHlwskoXv_3BC7UG_CElyhyz-r3yoROD5FPGkK0=.pem","location":"security-state-staging/intermediates/adcf2001-8f21-4761-be6c-9e62f61e8388.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6gTNFHlwskoXv/3BC7UG/CElyhyz+r3yoROD5FPGkK0=","crlite_enrolled":false,"id":"e1f44dc0-1060-4ef8-9484-d4260f68e10d","last_modified":1562025292119},{"schema":1562025290627,"derHash":"K97vpzX/cAXf6C5mZBdy2CXno2GbvKyxPP4gEGYOPZ0=","subject":"CN=FujiSSL ECC Business Secure Site CA,O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN":"MHYxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzETMBEGA1UEBxMKU2hpYnV5YS1rdTEUMBIGA1UEChMLTmlqaW1vIEsuSy4xLDAqBgNVBAMTI0Z1amlTU0wgRUNDIEJ1c2luZXNzIFNlY3VyZSBTaXRlIENB","whitelist":false,"attachment":{"hash":"a386eaf0d14a248038d2dbe1176d0e3ce1059635e00d20a970a14c70e2aea71e","size":1301,"filename":"VSIhlyLVTq0piI3j7ajNA5ZmdmgumlgTW-MV_okesCc=.pem","location":"security-state-staging/intermediates/931dec64-f845-46f7-8d31-c72027306d9c.pem",
"mimetype":"application/x-pem-file"},"pubKeyHash":"VSIhlyLVTq0piI3j7ajNA5ZmdmgumlgTW+MV/okesCc=","crlite_enrolled":false,"id":"5e423d91-6fa8-4e19-9256-bcceaf49c94a","last_modified":1562025291360},{"schema":1562025287648,"derHash":"f2iJ/+iwIEXiysmaLy7k9MLu0kk0tlIYctNL+BJnHEs=","subject":"CN=Oracle SSL CA,OU=VeriSign Trust Network+OU=Class 3 MPKI Secure Server CA,O=Oracle Corporation,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEbMBkGA1UEChMST3JhY2xlIENvcnBvcmF0aW9uMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMSYwJAYDVQQLEx1DbGFzcyAzIE1QS0kgU2VjdXJlIFNlcnZlciBDQTEWMBQGA1UEAxMNT3JhY2xlIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"7ee4ae6d41d1ebeeccf162c75257607ac06eccb9355c405dd9feb4a7974e24a3","size":1760,"filename":"jAlQJcRUeMgTS65SuJLkC6qE2B093mGImtHccMYGG44=.pem","location":"security-state-staging/intermediates/78a7a038-46d1-4bda-b8d6-a3b6d6b8054b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jAlQJcRUeMgTS65SuJLkC6qE2B093mGImtHccMYGG44=","crlite_enrolled":false,"id":"8
7511250-6e4a-46a5-b783-2c8da9c8699a","last_modified":1562025288390},{"schema":1562025285415,"derHash":"Ut/XNdStpK6sstd5aPlxEUP7DDxag7UKxN65h6h45Qk=","subject":"CN=USERTrust ECC Client Authentication and Secure Email CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGaMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazFAMD4GA1UEAxM3VVNFUlRydXN0IEVDQyBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIFNlY3VyZSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"502ff44158f951d41a26530bc84cf7795c28a1df29c855cfcef1ccac9b79ffea","size":1329,"filename":"vjKVj54qS0DDdeD0OJ1UYEfRr3NvN4Z5QRmAX66bxB8=.pem","location":"security-state-staging/intermediates/fceaa33d-3b3c-40c0-9a8f-8de7dc41a6c5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vjKVj54qS0DDdeD0OJ1UYEfRr3NvN4Z5QRmAX66bxB8=","crlite_enrolled":false,"id":"de9349f5-db91-4241-8540-d0370d7c4de3","last_modified":1562025286167},{"schema":1562025284669,"d
erHash":"OZfHIYk7OSbTk4oxHKB6Jhsq4i4B3Fh/GB3/FbmLTqY=","subject":"CN=TrustAsia Technologies\\, Inc. DV SSL CA - G1,OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MIGJMQswCQYDVQQGEwJDTjElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxNDAyBgNVBAMTK1RydXN0QXNpYSBUZWNobm9sb2dpZXMsIEluYy4gRFYgU1NMIENBIC0gRzE=","whitelist":false,"attachment":{"hash":"11872ef0761a794cdfd0a48bdcaf7cd23daea461861f20c6fd25fe349bf445b0","size":1934,"filename":"OOzymZtqtOUPeO7RggB8hPhhnT-cN00YxTIniP-3dbM=.pem","location":"security-state-staging/intermediates/2198bb6c-f4f0-49d8-a771-38b6a5d3d95f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OOzymZtqtOUPeO7RggB8hPhhnT+cN00YxTIniP+3dbM=","crlite_enrolled":false,"id":"990db375-32be-4512-98dd-189df3712cf5","last_modified":1562025285408},{"schema":1562025283917,"derHash":"+jl96NtvEQp/o00QG6yKkUdQ9TsCI6i9L7gS51cVXCA=","subject":"CN=SwissSign Personal Silver CA 2008 - G2,O=SwissSign AG,
C=CH","subjectDN":"MFUxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxLzAtBgNVBAMTJlN3aXNzU2lnbiBQZXJzb25hbCBTaWx2ZXIgQ0EgMjAwOCAtIEcy","whitelist":false,"attachment":{"hash":"c1c9d52213575e65ceed56f35a6ed33a249d8d1c3a280659df44920339ef7ffe","size":2280,"filename":"jyhVT5llCBR7-xwGoq2SlKQcMasWHqmouxTYUO1Fhiw=.pem","location":"security-state-staging/intermediates/ea4ea5bd-3a75-4cd2-a235-c3e8ef18c8c6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jyhVT5llCBR7+xwGoq2SlKQcMasWHqmouxTYUO1Fhiw=","crlite_enrolled":false,"id":"4f348dc6-e98b-4a77-a839-d0327398fe7f","last_modified":1562025284661},{"schema":1562025283171,"derHash":"U8Ra7/0YwhQHTBmDD/T1u0+g9sQkUIt7wEMhZThoXlo=","subject":"SERIALNUMBER=201805,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODA1","whitelist":false,"attachment":{"hash":"e34007490624a17574e785aa940bb4a087283
cee6f3c794ed80db3caecae05b0","size":2333,"filename":"ioQjHVX2Sgc0RK99U3WoHL7qOrrxLgG4Vk0NB28dfkU=.pem","location":"security-state-staging/intermediates/e1e9dbef-94d9-4968-b370-92830e644fe3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ioQjHVX2Sgc0RK99U3WoHL7qOrrxLgG4Vk0NB28dfkU=","crlite_enrolled":false,"id":"c1417a0b-e2ff-4c67-bbcb-92f31268a84c","last_modified":1562025283909},{"schema":1562025282408,"derHash":"fjI2jiSizEjT0p6IOyYOQM7aIq+XGJx4/FuShITpoBA=","subject":"CN=COMODO ECC Domain Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGQMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE2MDQGA1UEAxMtQ09NT0RPIEVDQyBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"abc0795848f66d2488b81a62506ef09e4d6d926185ae30b0ab7290d81e4c61f4","size":1313,"filename":"EohwrK1N7rr3bRQphPj4j2cel-B2d0NNbM9PWHNDXpM=.pem","location":"secur
ity-state-staging/intermediates/6f4d4854-993d-42ab-936d-589d8c7fd633.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EohwrK1N7rr3bRQphPj4j2cel+B2d0NNbM9PWHNDXpM=","crlite_enrolled":true,"id":"693849c2-1989-4277-9217-80926c45cb4f","last_modified":1562025283163},{"schema":1562025280120,"derHash":"M8+wYs0pUeTdGiVr7RVr6lPykNA53u+4W+leGQEhajY=","subject":"CN=Trustico RSA DV CA,O=The Trustico Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MG4xCzAJBgNVBAYTAkdCMQ8wDQYDVQQIEwZMb25kb24xEDAOBgNVBAcTB0Nyb3lkb24xHzAdBgNVBAoTFlRoZSBUcnVzdGljbyBHcm91cCBMdGQxGzAZBgNVBAMTElRydXN0aWNvIFJTQSBEViBDQQ==","whitelist":false,"attachment":{"hash":"02328d098993eca5c1b5bf2cc236d3f542a361cb3ed4b2e31d3d3ae57be6d2d2","size":2113,"filename":"B_bkhTDI5DJw6nXXzz0RfEQettWUxxESQlnc8VMZ4uk=.pem","location":"security-state-staging/intermediates/087c9b71-a0a9-4909-9e5f-c7b1e4f77ee3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B/bkhTDI5DJw6nXXzz0RfEQettWUxxESQlnc8VMZ4uk=","crlite_enrolled":true,"id":
"7e702c67-68fb-441f-a66f-cf0a09acdafd","last_modified":1562025280864},{"schema":1562025279350,"derHash":"dNmS05ELz340uLXNKPkerrT0Hz2mOU14uMQ2ctQ/Tw8=","subject":"CN=ESTEID-SK 2015,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MGMxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRcwFQYDVQRhDA5OVFJFRS0xMDc0NzAxMzEXMBUGA1UEAwwORVNURUlELVNLIDIwMTU=","whitelist":false,"attachment":{"hash":"e79288e6283a6cf8e401f46b989c7aba65f6bce135c24772fae33f54a7339c1e","size":2292,"filename":"cl4xfKuRdlBntQEBobDSd3nPt8GamO_lYQLJgp-QIK8=.pem","location":"security-state-staging/intermediates/3e90d73f-3a85-419c-8bab-c12f148d4549.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cl4xfKuRdlBntQEBobDSd3nPt8GamO/lYQLJgp+QIK8=","crlite_enrolled":false,"id":"d4fae966-1bfe-4fcc-858e-bd9b0868c507","last_modified":1562025280113},{"schema":1562025278609,"derHash":"g/yJGzUNng1+vm3Spr/j0LD0ZT/KBIYVpd7rvAOaP2Y=","subject":"CN=GlobalSign AATL Partners CA 2019,O=GlobalSign nv-sa,C=BE","subjectDN":
"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIEFBVEwgUGFydG5lcnMgQ0EgMjAxOQ==","whitelist":false,"attachment":{"hash":"d000e3224251910e8fb77335b40609ff5b3d0205b628feaf700f6e228504357a","size":2320,"filename":"lhJQC7F2rtgQWIaZBt4zOXO4E9P82bsb47uEijI-pcM=.pem","location":"security-state-staging/intermediates/9525d4df-8f6a-4b8f-b69e-ce869574f13c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lhJQC7F2rtgQWIaZBt4zOXO4E9P82bsb47uEijI+pcM=","crlite_enrolled":false,"id":"643f92c8-d792-43c2-a342-b580ba9e0749","last_modified":1562025279342},{"schema":1562025277127,"derHash":"wSRamgOcxRG8+zpQvh2JqYmTNDHyXA+WZbqXf5T4dsE=","subject":"CN=TeliaSonera Mobile ID CA v2,O=TeliaSonera Finland Oyj,C=FI","subjectDN":"MFUxCzAJBgNVBAYTAkZJMSAwHgYDVQQKDBdUZWxpYVNvbmVyYSBGaW5sYW5kIE95ajEkMCIGA1UEAwwbVGVsaWFTb25lcmEgTW9iaWxlIElEIENBIHYy","whitelist":false,"attachment":{"hash":"eaf431cf6c23f62a0ea543c5ad0adc1419e73f94ab2cab3d87029b9c730e91b4","size":2418,"filena
me":"cDMfyugvFsXyMurrO5J9HB6avAWXo9wMS1nT_8Mt7KA=.pem","location":"security-state-staging/intermediates/ada98906-2009-431a-ae1c-97f895b6b074.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cDMfyugvFsXyMurrO5J9HB6avAWXo9wMS1nT/8Mt7KA=","crlite_enrolled":false,"id":"10063ad2-f0b0-4c5f-96ba-842b66ad98f5","last_modified":1562025277858},{"schema":1562025276325,"derHash":"2eRFsixvyzeylvzRMxSGVpZRqNuYBxdT/vxz0sl79zI=","subject":"CN=Qualified KET e-Szigno CA 2018,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHoxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJzAlBgNVBAMMHlF1YWxpZmllZCBLRVQgZS1Temlnbm8gQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"6b304876a14dedb4738c9754f4bc04eec54cc78cd3212181152603a8af2bcd15","size":2231,"filename":"oknJfA6HpIW3Guv29R8tlmS5hAgGjhhUfpBsZPu2Pds=.pem","location":"security-state-staging/intermediates/2563636d-ab39-462e-8e03-eeda6388ea2a.pem","mimetype":"application/x-pem-file"},"pubK
eyHash":"oknJfA6HpIW3Guv29R8tlmS5hAgGjhhUfpBsZPu2Pds=","crlite_enrolled":false,"id":"0a5a0741-ed12-460d-8ae6-94cb14567a42","last_modified":1562025277120},{"schema":1562025273330,"derHash":"TmKiUlkvnXH/4gN3V/hV1KAjXWY4vRBenvFwhs4rvCU=","subject":"CN=SECOM Passport for Web MH CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MFsxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSUwIwYDVQQDExxTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIE1IIENB","whitelist":false,"attachment":{"hash":"4325c7065bb83e9d92f3718a9948fddc4a55dc191e11a5d9b3164c843c5def37","size":1670,"filename":"q9I-r-WPX4f6FsDftbkgFglISBQJtf5Dqt8hXHPa7-U=.pem","location":"security-state-staging/intermediates/4c0cdeb1-6b0a-4cc1-8425-c5d64b1a5c3a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"q9I+r+WPX4f6FsDftbkgFglISBQJtf5Dqt8hXHPa7+U=","crlite_enrolled":true,"id":"a48f8f7b-e4c4-4695-b74a-c002a3d4d4c9","last_modified":1562025274069},{"schema":1562025270327,"derHash":"JNBrln5wvIziH/yv0+tbaaTi4suvNruc1k6rzdFC
PE4=","subject":"CN=Ericsson NL Individual CA v2,O=Ericsson","subjectDN":"MDoxETAPBgNVBAoMCEVyaWNzc29uMSUwIwYDVQQDDBxFcmljc3NvbiBOTCBJbmRpdmlkdWFsIENBIHYy","whitelist":false,"attachment":{"hash":"9bd44a9602e69344b4bafda91c3b4a8dd3d025582daf9faf359359dd39289296","size":2385,"filename":"w-D6Z-19kKBN5dh4sJv7cmEtM_38D_ZKyomDU56r6Gs=.pem","location":"security-state-staging/intermediates/0ae9ba0f-5da4-47f6-be43-46d84e790e1f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"w+D6Z+19kKBN5dh4sJv7cmEtM/38D/ZKyomDU56r6Gs=","crlite_enrolled":false,"id":"643acb4e-7965-4eb4-98eb-22787679daf9","last_modified":1562025271070},{"schema":1562025267327,"derHash":"nG0IkzIBQH+/KxJUC2fMDkyWZvEy4VBHYqcXy66PP9Y=","subject":"CN=HydrantID SSL ICA G2,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMTAwLgYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHTAbBgNVBAMTFEh5ZHJhbnRJRCBTU0wgSUNBIEcy","whitelist":false,"attachment":{"hash":"c4fbca9a15eb275e83118896e48
39aba070abde056cf047aa1a57afdd78af927","size":2406,"filename":"400Fim9IQe4j-Gj-Ci4R44M3gA6J1_TRh8LlPSLF3I8=.pem","location":"security-state-staging/intermediates/a6966be8-fd40-411c-9f57-e4027bd92592.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"400Fim9IQe4j+Gj+Ci4R44M3gA6J1/TRh8LlPSLF3I8=","crlite_enrolled":true,"id":"c6e5ffe6-a302-4ac5-a6b6-3b6b960d5347","last_modified":1562025268059},{"schema":1562025265805,"derHash":"CCf2v9u/MOoP6s8be9Bu72XbJxrNfptdJpoPLzcrIek=","subject":"CN=EuropeanSSL Server CA 2,O=EUNETIC GmbH,L=Durmersheim,ST=Baden-W\u00fcrttemberg,C=DE","subjectDN":"MHkxCzAJBgNVBAYTAkRFMRswGQYDVQQIDBJCYWRlbi1Xw7xydHRlbWJlcmcxFDASBgNVBAcTC0R1cm1lcnNoZWltMRUwEwYDVQQKEwxFVU5FVElDIEdtYkgxIDAeBgNVBAMTF0V1cm9wZWFuU1NMIFNlcnZlciBDQSAy","whitelist":false,"attachment":{"hash":"09d22bba9126989782eb2682c0b1fab55cbf0dc7dc8b1afbd39bcf120f1c52fe","size":2142,"filename":"voGNYzoU7vT-Rbv9zjL5yL6Z294ZkClnxHkt0bjiTWM=.pem","location":"security-state-staging/intermediates/0e75900a-a
f17-4c88-b8e2-a11d13588bd9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"voGNYzoU7vT+Rbv9zjL5yL6Z294ZkClnxHkt0bjiTWM=","crlite_enrolled":true,"id":"497678fd-cecb-41ae-8247-6870a5a994e1","last_modified":1562025266548},{"schema":1562025264327,"derHash":"aezbwxR/WB39y1Itne+yYLJnhK1JVcdOalJSLMxMRAg=","subject":"CN=Hongkong Post e-Cert SSL CA 3 - 17,O=Hongkong Post,L=Hong Kong,ST=Hong Kong,C=HK","subjectDN":"MHoxCzAJBgNVBAYTAkhLMRIwEAYDVQQIEwlIb25nIEtvbmcxEjAQBgNVBAcTCUhvbmcgS29uZzEWMBQGA1UEChMNSG9uZ2tvbmcgUG9zdDErMCkGA1UEAxMiSG9uZ2tvbmcgUG9zdCBlLUNlcnQgU1NMIENBIDMgLSAxNw==","whitelist":false,"attachment":{"hash":"d819d0da20d45c8f93a0efb0d37fd86e274107134845bf5480d9b3697bb0711d","size":2093,"filename":"SUe0dPoWC5QKoJyXReRB3haevgxOd9ZVd5sn7N65_DY=.pem","location":"security-state-staging/intermediates/b1839acb-c26b-4d29-aa46-65f25e6250c5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SUe0dPoWC5QKoJyXReRB3haevgxOd9ZVd5sn7N65/DY=","crlite_enrolled":true,"id":"4d1c3055-4469
-4d11-a7a0-e646d9c6bd59","last_modified":1562025265062},{"schema":1562025263575,"derHash":"yrAWxeoyBhvQZf4TpVpA+mEFiyezSn+NF19xAe4GPjs=","subject":"CN=DigiCert Federated ID L1 CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0IEZlZGVyYXRlZCBJRCBMMSBDQQ==","whitelist":false,"attachment":{"hash":"7a2334ef63e735c7a9de8317fb1bbca56541bf3f0d2bd5aa7df6733294d35767","size":1845,"filename":"PUDyhbzncnmmUQ8SN4OwZj01ukzlqryo_kEquVWErUo=.pem","location":"security-state-staging/intermediates/ddd65303-64d3-475c-8530-62101b203d10.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PUDyhbzncnmmUQ8SN4OwZj01ukzlqryo/kEquVWErUo=","crlite_enrolled":false,"id":"97566edd-1d57-4cb3-8126-4a4c2b0482b8","last_modified":1562025264319},{"schema":1562025262823,"derHash":"F+9vtce+3y8P555xsbzMjYnnWgreFvVuo6qt3x0BLtg=","subject":"SERIALNUMBER=201818,CN=Citizen CA,O=Certipost N.V./S.A.,L=Bruss
els,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODE4","whitelist":false,"attachment":{"hash":"1974a713335bdf0f88de6d1870fe48c4da9b47a0591e661657ce8e67bc14c9b4","size":2333,"filename":"Kb5-3Axv89fCYAIhhiEJWD0TJRRx0BZ7FLrkwQkAMBA=.pem","location":"security-state-staging/intermediates/dcc6ed3d-ff66-4c1a-97b7-b513478a0679.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Kb5+3Axv89fCYAIhhiEJWD0TJRRx0BZ7FLrkwQkAMBA=","crlite_enrolled":false,"id":"8f13126f-ea09-4860-bb62-7c3995e356bf","last_modified":1562025263567},{"schema":1562025262072,"derHash":"/ciYbPrE818azVF+D2G4eYgq4HbiuoC3e9Pw/lzviGI=","subject":"CN=DigiCert ECC Extended Validation Server CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMzAxBgNVBAMTKkRpZ2lDZXJ0IEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQQ==","whitelist":fal
se,"attachment":{"hash":"31ecd5e8057fdfa62dc602519feac045085c66fc65b202627b24662a21a6de2f","size":1414,"filename":"WOINGBsGlG95B7s_6U7XB_KM7U73y-sXgtLqZpn3G88=.pem","location":"security-state-staging/intermediates/60a912ac-30e3-4cf3-b9c7-b3c3a357755f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WOINGBsGlG95B7s/6U7XB/KM7U73y+sXgtLqZpn3G88=","crlite_enrolled":true,"id":"7ea2d3a5-3815-43a7-93ac-94921c661784","last_modified":1562025262816},{"schema":1562025261328,"derHash":"Sw0TktORVzUyB6ZMyxRoPd6dLO0ftYsW4Di+VwfCeBM=","subject":"CN=GlobalSign HV ECC DV SSL CA 2018,O=GlobalSign nv-sa,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIEhWIEVDQyBEViBTU0wgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"1acd32da9feed3e2e4ee157a2618013352d326fef642f7bfd585f8ae92c7d2ed","size":1163,"filename":"0fnBFUmy_VBjGa_Pg7kDaXRGAe4mSax_PZ77vht_SZk=.pem","location":"security-state-staging/intermediates/0463ef18-4ed8-456d-b684-8528412f4
82c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0fnBFUmy/VBjGa/Pg7kDaXRGAe4mSax/PZ77vht/SZk=","crlite_enrolled":false,"id":"8ada5368-0eb6-43b5-9561-ebab68b2417b","last_modified":1562025262065},{"schema":1562025258340,"derHash":"NFpS8WTfYTRjyHKIQmytJGurAoJFKU3b+mGMa7O+PDw=","subject":"CN=USERTrust ECC Code Signing CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGAMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazEmMCQGA1UEAxMdVVNFUlRydXN0IEVDQyBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"6d2fff64af8033e0034b6470f651280afccd50ced99453f4d67c9f2930b76ba3","size":1301,"filename":"0pKpvg7zRQ3q1ij8opewIS6KAUpC33v2uz9IDAj7Vm8=.pem","location":"security-state-staging/intermediates/0945ec2b-c44f-4f2b-a547-56c1007278dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0pKpvg7zRQ3q1ij8opewIS6KAUpC33v2uz9IDAj7Vm8=","crlite_enrolled":false,"id":"b8be43b3-c5c5-42cd-9
032-02ad84857d12","last_modified":1562025259081},{"schema":1562025254563,"derHash":"EEUVQJRXCA2yCi6SH0e71q+nd1Wa272Xz8KtnXtBO2M=","subject":"CN=TERENA Personal CA 2,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MGkxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEdMBsGA1UEAxMUVEVSRU5BIFBlcnNvbmFsIENBIDI=","whitelist":false,"attachment":{"hash":"ab5e9dc41345f4e069db5085e2e2163cca665a1acb76e2027588a96dfe55d4c1","size":2109,"filename":"lYumc4BVxXiIXDsLhm-7RneF4K3-Oq0Y7tWzE53jpdY=.pem","location":"security-state-staging/intermediates/f6cf20f8-9d99-4e75-86db-8ea4091ef3a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lYumc4BVxXiIXDsLhm+7RneF4K3+Oq0Y7tWzE53jpdY=","crlite_enrolled":false,"id":"e2f6d9c6-6f0b-4bc2-a31b-53a2c110e920","last_modified":1562025255321},{"schema":1562025253083,"derHash":"q0nGSsXSf5s2iMqAqjiSfxw3zRZZZBQIY/NDJ84FAiw=","subject":"SERIALNUMBER=A82743287,CN=Camerfirma TSA - 2013,O=AC Camerfirma S.A.,L
=Madrid (see current address at https://www.camerfirma.com/address),C=ES","subjectDN":"MIGrMQswCQYDVQQGEwJFUzEbMBkGA1UEChMSQUMgQ2FtZXJmaXJtYSBTLkEuMRIwEAYDVQQFEwlBODI3NDMyODcxSzBJBgNVBAcTQk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCBodHRwczovL3d3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTEeMBwGA1UEAxMVQ2FtZXJmaXJtYSBUU0EgLSAyMDEz","whitelist":false,"attachment":{"hash":"06bc7202aab2c07f1258303519c61f00bb59c17c80441fdb907ded166ba74a1b","size":2922,"filename":"EUdCx9qvs_LbJR4oy_CzU4P-rk_mcz-RAiT7758aSxE=.pem","location":"security-state-staging/intermediates/2ca3ac52-97ea-42f0-ac7f-0cceb0f6b524.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EUdCx9qvs/LbJR4oy/CzU4P+rk/mcz+RAiT7758aSxE=","crlite_enrolled":false,"id":"e582d41c-4c40-4138-8e0e-bab122025d20","last_modified":1562025253818},{"schema":1562025251569,"derHash":"CP1BixGIU0hP0bBm8ZIqgPVx2P/3Jo1Ziwht8YtYCtg=","subject":"CN=Atos TrustedRoot Server-CA 2019,O=Atos,C=DE","subjectDN":"MEYxKDAmBgNVBAMMH0F0b3MgVHJ1c3RlZFJvb3QgU2VydmVyLUNBIDIw
MTkxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"e9026c05fca12f79a992b5c8a7d90af2ccafac750d96e6d2a420590a55a54e3c","size":1922,"filename":"SD8O2olCwqFt3wL6_lvBiVzprjUyo7vWr7bIS3B3am8=.pem","location":"security-state-staging/intermediates/c310d05d-c0b0-4149-9d40-04e0f46a1fab.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SD8O2olCwqFt3wL6/lvBiVzprjUyo7vWr7bIS3B3am8=","crlite_enrolled":true,"id":"4f5ba09a-4228-4ae3-b9fb-e261273f7b68","last_modified":1562025252319},{"schema":1562025250085,"derHash":"YK+eXznYc7I2vhQrxwbaVxhJrtf65jX8WhRhoM90WcU=","subject":"CN=Qualified e-Szigno Organization CA 2016,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGIMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xHDAaBgNVBGEME1ZBVEhVLTIzNTg0NDk3LTItNDExMDAuBgNVBAMMJ1F1YWxpZmllZCBlLVN6aWdubyBPcmdhbml6YXRpb24gQ0EgMjAxNg==","whitelist":false,"attachment":{"hash":"dc2952bb2d73640240643f13334e8d01c2d9e778dde282b5c91837df5e8fae4e","size":2601,
"filename":"WWpF25055wfjcZBv75P1HqErKnpSgGY5RThLltVZ-uo=.pem","location":"security-state-staging/intermediates/4a7927f3-053b-4fb2-b88a-f0952955b74b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WWpF25055wfjcZBv75P1HqErKnpSgGY5RThLltVZ+uo=","crlite_enrolled":false,"id":"e0a7a8fd-452f-48c1-a2d9-8dc311bf2cf1","last_modified":1562025250818},{"schema":1562025249333,"derHash":"N9IgpsdSJ5kCEZE0nBg/kXvhvoYmz5JrD9bgqGge4DE=","subject":"SERIALNUMBER=ZZZZZZAD,CN=Siemens Issuing CA EE Network Smartcard Auth 2016,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGxMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQUQxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMTowOAYDVQQDDDFTaWVtZW5zIElzc3VpbmcgQ0EgRUUgTmV0d29yayBTbWFydGNhcmQgQXV0aCAyMDE2","whitelist":false,"attachment":{"hash":"83492b707e3f19c0afa5426bfb86e053d1a36c3bb7f6b2a1fbbe180edc9522b1","size":2662,"filename":"ela416lvtgHOV0XkKFtPo_tjgfnex9VPmwF
MF-IIdz4=.pem","location":"security-state-staging/intermediates/69464078-b92d-4ac6-a641-b03a66daeab5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ela416lvtgHOV0XkKFtPo/tjgfnex9VPmwFMF+IIdz4=","crlite_enrolled":false,"id":"ea3a7109-fc97-48d4-8817-07a2ab0f437f","last_modified":1562025250077},{"schema":1562025247810,"derHash":"LEkPUwE2ARY8fpunSHAYGYnaRwC9vK6ZrSFk6UKF+0E=","subject":"CN=MilleniumSign SSL Certificate CA ECC R2,O=MilleniumSign Limited,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGJMQswCQYDVQQGEwJNVTEYMBYGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTAwLgYDVQQDDCdNaWxsZW5pdW1TaWduIFNTTCBDZXJ0aWZpY2F0ZSBDQSBFQ0MgUjI=","whitelist":false,"attachment":{"hash":"388484e855dcfa09a1d7e93bed5665fdab3d7827d888db660bc23756917d5656","size":1402,"filename":"rZHx6oWsQ4M32pcJKskm--yrHi1znChiiNn-Hyx1h8M=.pem","location":"security-state-staging/intermediates/705ae7c2-bcc3-48a7-a342-3aa6bbff0d09.pem","mimetype":"application/x-pem
-file"},"pubKeyHash":"rZHx6oWsQ4M32pcJKskm++yrHi1znChiiNn+Hyx1h8M=","crlite_enrolled":false,"id":"50fb555a-6152-4dbe-945c-1397deedac59","last_modified":1562025248555},{"schema":1562025247064,"derHash":"yucvZtYa+5ppczjo9TWNgHG6+krk0nF8fmNftepD02U=","subject":"CN=CERTSIGN FOR BANKING SIMPLE SSL PRODUCTION CA V3,OU=Certificat de productie Production certificate,O=certSIGN,C=RO","subjectDN":"MIGUMQswCQYDVQQGEwJSTzERMA8GA1UECgwIY2VydFNJR04xNzA1BgNVBAsMLkNlcnRpZmljYXQgZGUgcHJvZHVjdGllIFByb2R1Y3Rpb24gY2VydGlmaWNhdGUxOTA3BgNVBAMMMENFUlRTSUdOIEZPUiBCQU5LSU5HIFNJTVBMRSBTU0wgUFJPRFVDVElPTiBDQSBWMw==","whitelist":false,"attachment":{"hash":"9c05002f5f1bd3a2e682040ad3ca45aa65b80fbea14f287d0b612d125aae2b87","size":1678,"filename":"dSEYX-UXMMv7WVy6VlLFnfcCjxt0nH-xwgRrYqDvmpA=.pem","location":"security-state-staging/intermediates/86434fba-a8fc-495a-9af1-290826501bfc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dSEYX+UXMMv7WVy6VlLFnfcCjxt0nH+xwgRrYqDvmpA=","crlite_enrolled":false,"id":"9a
546d40-8e30-4cfa-b711-298337b46008","last_modified":1562025247802},{"schema":1562025246330,"derHash":"3apfcuEP060HKtLA0hlY2/FwnnrtE7OMJkco/OXJuh4=","subject":"CN=Academy of Athens Client CA R1,O=Academy of Athens,L=Athens,C=GR","subjectDN":"MGMxCzAJBgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxGjAYBgNVBAoTEUFjYWRlbXkgb2YgQXRoZW5zMScwJQYDVQQDEx5BY2FkZW15IG9mIEF0aGVucyBDbGllbnQgQ0EgUjE=","whitelist":false,"attachment":{"hash":"738c602f730b5e939f0962cda747abb3d84044de87505427faa5ed30e21e2ffc","size":2507,"filename":"E3sk6OwcCzO2DS5RQD94etvklmoU-SzyHf0OMzBriOs=.pem","location":"security-state-staging/intermediates/0e543b1f-c433-4a49-9b06-a28052d1a2d4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"E3sk6OwcCzO2DS5RQD94etvklmoU+SzyHf0OMzBriOs=","crlite_enrolled":false,"id":"83b9cbcd-5447-49b5-9b7b-1016057c6718","last_modified":1562025247057},{"schema":1562025245561,"derHash":"qyicYDV+1pBQ3F6ZlX8xZMyc+so7Q+IMsVGYnXbjIBk=","subject":"CN=GoGetSSL RSA Codesigning CA,O=GoGetSSL,L=Riga,C=LV","sub
jectDN":"MFUxCzAJBgNVBAYTAkxWMQ0wCwYDVQQHEwRSaWdhMREwDwYDVQQKEwhHb0dldFNTTDEkMCIGA1UEAxMbR29HZXRTU0wgUlNBIENvZGVzaWduaW5nIENB","whitelist":false,"attachment":{"hash":"56b2b32dff5d71ed02e3e1749067d61d2a4a19ce62f7b78032a17588c7de239f","size":2068,"filename":"OlrioTffYEv0uD6tvV0JN2CtnQFZNo8zTIfkc_7jV4k=.pem","location":"security-state-staging/intermediates/6ff3a14d-3bfb-4b39-a5de-5a8dd144f7d4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OlrioTffYEv0uD6tvV0JN2CtnQFZNo8zTIfkc/7jV4k=","crlite_enrolled":false,"id":"0da20e8d-2bbd-4b52-a722-8736b486c6f2","last_modified":1562025246322},{"schema":1562025244064,"derHash":"Ns3MfI84P3SFZYRm/ZUOdT/LAZ4lD9G8GgbFmB2KQYg=","subject":"CN=InterCloud SSL Certificate CA ECC R2,O=InterCloud Ventures Inc,L=Victoria,ST=Mah\u00e9,C=SC","subjectDN":"MIGBMQswCQYDVQQGEwJTQzEOMAwGA1UECAwFTWFow6kxETAPBgNVBAcMCFZpY3RvcmlhMSAwHgYDVQQKDBdJbnRlckNsb3VkIFZlbnR1cmVzIEluYzEtMCsGA1UEAwwkSW50ZXJDbG91ZCBTU0wgQ2VydGlmaWNhdGUgQ0EgRUNDIFIy","whitelist":false,"attac
hment":{"hash":"2cd63ff457b9092043714375c47ef5c79b689924fd883a1846c0ee4e9a49871d","size":1288,"filename":"YZPwIxnplYZBGJ6aDvGcMHWqSiLPmhSwJq2dfNdJpTs=.pem","location":"security-state-staging/intermediates/08672d16-76ef-46ff-aa4a-125020548103.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YZPwIxnplYZBGJ6aDvGcMHWqSiLPmhSwJq2dfNdJpTs=","crlite_enrolled":false,"id":"9c2507f9-b425-4085-9b3c-64ab602d5412","last_modified":1562025244801},{"schema":1562025239559,"derHash":"fPdfAGzP+Now1uoqL3xQ0ER6olE/9KSje/KSRwu6jIU=","subject":"CN=FujiSSL Public Certification Authority - G1,O=Nijimo\\, Inc.,C=JP","subjectDN":"MFoxCzAJBgNVBAYTAkpQMRUwEwYDVQQKEwxOaWppbW8sIEluYy4xNDAyBgNVBAMTK0Z1amlTU0wgUHVibGljIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzE=","whitelist":false,"attachment":{"hash":"cbb38aed230419e776913b69c50f5489e2883ea7de0a1c182db31c687d9a5917","size":1626,"filename":"QrPwZsEgVVVbnQwEikJnQTnAiO0XvqNOi9gKQj7Xt4Q=.pem","location":"security-state-staging/intermediates/4c7aeb8b-1028-40e6-ae83-
98ccf972fed1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QrPwZsEgVVVbnQwEikJnQTnAiO0XvqNOi9gKQj7Xt4Q=","crlite_enrolled":true,"id":"fd898cc0-617c-40fc-bcda-7dbae1c4d2f6","last_modified":1562025240312},{"schema":1562025237334,"derHash":"YvT7eFosKeEJ3xAx70hMJERrkkoHQATp44PKZH+OsLo=","subject":"CN=Fuji Xerox Endorsement CA - G2,O=Fuji Xerox,C=JP","subjectDN":"MEsxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MScwJQYDVQQDEx5GdWppIFhlcm94IEVuZG9yc2VtZW50IENBIC0gRzI=","whitelist":false,"attachment":{"hash":"0bb50bc4474c1ca0ef3bbc22a21bf0edf96e41de9c858df8b08a934e21799aa0","size":1492,"filename":"THZ4O6mY6jclidc9TcI2ggOB6Kjgqp1Yft1QUe3A3jU=.pem","location":"security-state-staging/intermediates/942e28d9-1950-44b5-bbd0-8cb87c3ac2ff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"THZ4O6mY6jclidc9TcI2ggOB6Kjgqp1Yft1QUe3A3jU=","crlite_enrolled":false,"id":"b2054ca3-7428-4e5a-a9c9-22f757e254b3","last_modified":1562025238075},{"schema":1562025235807,"derHash":"eM28aqlcqlR0SDefjN
OtAXIsrRwox80BbqMDIXi2+Q4=","subject":"CN=Trustico RSA Codesigning CA,O=The Trustico Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MHcxCzAJBgNVBAYTAkdCMQ8wDQYDVQQIEwZMb25kb24xEDAOBgNVBAcTB0Nyb3lkb24xHzAdBgNVBAoTFlRoZSBUcnVzdGljbyBHcm91cCBMdGQxJDAiBgNVBAMTG1RydXN0aWNvIFJTQSBDb2Rlc2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"b39728ee3f57d600c272e6b0909784e9e2d5977b9e37926796e1b2fa95ed5211","size":2097,"filename":"Ug92Z2BWdjAeqBPInm_J2qZ7xpu0c9WPKfLenpi1D2E=.pem","location":"security-state-staging/intermediates/2b80c2a4-5245-46e5-b987-b293156a093f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ug92Z2BWdjAeqBPInm/J2qZ7xpu0c9WPKfLenpi1D2E=","crlite_enrolled":false,"id":"fd01dcdb-5d23-4b8b-a726-5631f3601fed","last_modified":1562025236542},{"schema":1562025235061,"derHash":"xCSF/f8jKRjjUqV58BiWUT/M1V8oe5lPL30MsaF9rvI=","subject":"SERIALNUMBER=201801,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoG
A1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODAx","whitelist":false,"attachment":{"hash":"2e3e7c68603bc963d5ce38fcf7b7a0867d685fa12317d9ae8f34b7122733cd28","size":2333,"filename":"CLJidSOXyNp7QB-C-rgFknAe-a-PnfNwE0NWaNnWuhs=.pem","location":"security-state-staging/intermediates/663df175-b989-4842-abee-ef65aef3cdbf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CLJidSOXyNp7QB+C+rgFknAe+a+PnfNwE0NWaNnWuhs=","crlite_enrolled":false,"id":"02d7902f-27a7-4d28-96ee-40819eabe73f","last_modified":1562025235799},{"schema":1562025234319,"derHash":"ic+8j7/3/gJrbPLqaIQZvei7wftFEynIZdbGy89r0Jc=","subject":"CN=Optioncare CA,OU=Orion Health Direct Secure Messaging,O=Optioncare,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpPcHRpb25jYXJlMS0wKwYDVQQLEyRPcmlvbiBIZWFsdGggRGlyZWN0IFNlY3VyZSBNZXNzYWdpbmcxFjAUBgNVBAMTDU9wdGlvbmNhcmUgQ0E=","whitelist":false,"attachment":{"hash":"c5ec747cb1ece7fc513e3ffe6733e3f68858c6fd41a0df7bb58477429286e633","size":2255
,"filename":"1cowHAof9qXhiitFN7riBHrm51fUMtgurbQOt2XdQSg=.pem","location":"security-state-staging/intermediates/db238548-ddd1-4d86-9ce7-662bcca2a1a7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1cowHAof9qXhiitFN7riBHrm51fUMtgurbQOt2XdQSg=","crlite_enrolled":false,"id":"6dfdcc6d-af98-4e9a-844c-6ebaa3d2567d","last_modified":1562025235053},{"schema":1562025233549,"derHash":"MAO/iFNCfHuRAj91OYU9mHxY3E4Ru+BH0qkwXAGmFSw=","subject":"CN=certSIGN Non-Repudiation CA Class 4 G2,OU=certSIGN Non-Repudiation CA Class 4 G2,O=certSIGN,C=RO","subjectDN":"MIGCMQswCQYDVQQGEwJSTzERMA8GA1UEChMIY2VydFNJR04xLzAtBgNVBAsTJmNlcnRTSUdOIE5vbi1SZXB1ZGlhdGlvbiBDQSBDbGFzcyA0IEcyMS8wLQYDVQQDEyZjZXJ0U0lHTiBOb24tUmVwdWRpYXRpb24gQ0EgQ2xhc3MgNCBHMg==","whitelist":false,"attachment":{"hash":"bb516b77cbf95fd334340bb2777b602490882a3aa757c5d82da5214f34585cda","size":1654,"filename":"5z5YTIwg2yLkx8NYmJAGw7XsuJfhisYA72CTV71K7Tc=.pem","location":"security-state-staging/intermediates/052ceaa4-fdf0-40d7-8242-4aa8fc
b41d3e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5z5YTIwg2yLkx8NYmJAGw7XsuJfhisYA72CTV71K7Tc=","crlite_enrolled":false,"id":"0d31579b-64f1-4e30-bf5f-c484b7588ede","last_modified":1562025234312},{"schema":1562025232809,"derHash":"Q1bGYhulfb0NN3DWzJiEcS3zZEQMBb+diFmwqAbdd/M=","subject":"SERIALNUMBER=201401,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MDE=","whitelist":false,"attachment":{"hash":"839021b1de60208540a9123dea7576e3773b96d12a1357c006d16c4aa25c7596","size":1402,"filename":"uihwVCIO6RorncQNk_rHAVOp0_Y9MCzVk-hzMA_tgMY=.pem","location":"security-state-staging/intermediates/39a1490f-f91b-4254-bbf7-a7d0b9bff451.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uihwVCIO6RorncQNk/rHAVOp0/Y9MCzVk+hzMA/tgMY=","crlite_enrolled":false,"id":"ae0b7dd9-df0c-4681-9ebc-abcc95a6d27a","last_modified":1562025233541},{"schema":1562025231317,"derHash":"A0+AFHT5ncDUIOdhFXGK4fZpRzkycmc7k2H9teKJN/w=","subject":"SERIALNUMBE
R=201905,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE5MDU=","whitelist":false,"attachment":{"hash":"b628ed8414cbc809f0141003c3ea00ee92d3457c7ed6f91d2953e53243f6cac2","size":2337,"filename":"Uw1jSWXDQtfEXIm3dx0aXt7NdGNEukGrjvGgZ8NxRGc=.pem","location":"security-state-staging/intermediates/d8ee1247-7d8f-4043-af7f-c7115e3531ae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uw1jSWXDQtfEXIm3dx0aXt7NdGNEukGrjvGgZ8NxRGc=","crlite_enrolled":false,"id":"5acf219e-ab7d-4369-a193-be85c2a1505f","last_modified":1562025232055},{"schema":1562025229059,"derHash":"6sumyWWYtKQf1T1pq57Z+7sTgRVMRTRWcgwXT/5XbR0=","subject":"CN=ICPEdu,OU=Gerencia de Servicos (GSer),O=Rede Nacional de Ensino e Pesquisa - RNP,L=Rio de Janeiro,ST=Rio de Janeiro,C=BR","subjectDN":"MIGpMQswCQYDVQQGEwJCUjEXMBUGA1UECBMOUmlvIGRlIEphbmVpcm8xFzAVBgNVBAcTDlJpbyBkZSBKY
W5laXJvMSQwIgYDVQQLExtHZXJlbmNpYSBkZSBTZXJ2aWNvcyAoR1NlcikxMTAvBgNVBAoTKFJlZGUgTmFjaW9uYWwgZGUgRW5zaW5vIGUgUGVzcXVpc2EgLSBSTlAxDzANBgNVBAMTBklDUEVkdQ==","whitelist":false,"attachment":{"hash":"c399340277a2b92eeb636040d4463ee38fe895ba4563359367c2497d50c84824","size":1833,"filename":"m_Zke2f6Q6acou-ZOFg-8OdSCzint_5uosSYaFXE3EM=.pem","location":"security-state-staging/intermediates/df2eaa98-44e8-4093-9bfb-24b2af701dad.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m/Zke2f6Q6acou+ZOFg+8OdSCzint/5uosSYaFXE3EM=","crlite_enrolled":true,"id":"cca3b0f0-63dc-4374-bde8-b4fe6d44c0af","last_modified":1562025229802},{"schema":1562025226011,"derHash":"QVMi85cMjND1QxHg+TxfXDe6MFn9sQ9SQKwgk0cX+EA=","subject":"CN=Western Connecticut Health Network CA,OU=Orion Health Direct Secure Messaging,O=Western Connecticut Health Network,C=US","subjectDN":"MIGZMQswCQYDVQQGEwJVUzErMCkGA1UEChMiV2VzdGVybiBDb25uZWN0aWN1dCBIZWFsdGggTmV0d29yazEtMCsGA1UECxMkT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nMS4wL
AYDVQQDEyVXZXN0ZXJuIENvbm5lY3RpY3V0IEhlYWx0aCBOZXR3b3JrIENB","whitelist":false,"attachment":{"hash":"ad34e17b2be6fc08447c7875e5f068cf3dd45d3ea5df594843ac89c847de456f","size":2341,"filename":"Iq5P_COu5eY2kCVZTJFfILRT5F6wWOLsVM192K5sD14=.pem","location":"security-state-staging/intermediates/d1e9c620-48f6-4c4a-bf6c-e4d32ec89be3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Iq5P/COu5eY2kCVZTJFfILRT5F6wWOLsVM192K5sD14=","crlite_enrolled":false,"id":"ebf707dd-ec7f-4c61-81fd-7b93ee38276a","last_modified":1562025226761},{"schema":1562025223722,"derHash":"yXeSPHceGmbJJaK29QFzLmeNyYh6/mv6rAOdHZpx8Ow=","subject":"CN=GlobalSign Timestamping CA - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFIxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSgwJgYDVQQDEx9HbG9iYWxTaWduIFRpbWVzdGFtcGluZyBDQSAtIEcy","whitelist":false,"attachment":{"hash":"3f735d53cbfc9c9cf464dca8c6fec3be339e6b3042e8ae4d78624f83a2135a3b","size":1475,"filename":"CB1u_HwQPTTVFNyruoDBDUle8-oPzUs0Sos_KZuLoSY=.pem","location"
:"security-state-staging/intermediates/bb2c1a75-d1fe-4b31-b963-c069bbd87014.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CB1u/HwQPTTVFNyruoDBDUle8+oPzUs0Sos/KZuLoSY=","crlite_enrolled":true,"id":"79f0cde1-be3d-490c-9393-5d6adae7c88b","last_modified":1562025224469},{"schema":1562025221473,"derHash":"wH6QN8uBAS0wRmEyhcFLY6AoSWSk9agh/DsY7N66CmY=","subject":"CN=Indian Health Service-RPMS DIRECT Messaging CA,OU=directihs.net,O=Indian Health Service,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVJbmRpYW4gSGVhbHRoIFNlcnZpY2UxFjAUBgNVBAsTDWRpcmVjdGlocy5uZXQxNzA1BgNVBAMTLkluZGlhbiBIZWFsdGggU2VydmljZS1SUE1TIERJUkVDVCBNZXNzYWdpbmcgQ0E=","whitelist":false,"attachment":{"hash":"cfcfe7b0a5865bb762fcc4c690048647d5174092a26326b321a32e470af9ee79","size":2215,"filename":"5eKTKcGalwhgde85C8DNZVC8RLow23EfZRE9nPGBklk=.pem","location":"security-state-staging/intermediates/19418a87-7f85-49d7-8d1b-48a0ab485687.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5eKTKcGalwhgde85C8DNZVC
8RLow23EfZRE9nPGBklk=","crlite_enrolled":false,"id":"820a6f72-9c51-491b-855e-1305b0e08ad5","last_modified":1562025222211},{"schema":1562025220729,"derHash":"DDtpZy66vh+WyvPL5Zj3dHwB94AUr2URkZUNZz/ZF4Q=","subject":"CN=Trafigura PTE DocuSign CA,O=Trafigura PTE,C=SG","subjectDN":"MEkxCzAJBgNVBAYTAlNHMRYwFAYDVQQKEw1UcmFmaWd1cmEgUFRFMSIwIAYDVQQDExlUcmFmaWd1cmEgUFRFIERvY3VTaWduIENB","whitelist":false,"attachment":{"hash":"5760d5ba17953454835f4fb2e9c885e596eb48574236b7e06e685ecad224f48a","size":5420,"filename":"tY3lwWb8C3Hpe9A51N8X716yDkdDsNb-UNhyod7-RYs=.pem","location":"security-state-staging/intermediates/c927acb3-ab62-4b1f-b81c-a42d0a6faa7d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tY3lwWb8C3Hpe9A51N8X716yDkdDsNb+UNhyod7+RYs=","crlite_enrolled":false,"id":"fb955dbd-342c-4a10-9095-ad50f6ec1593","last_modified":1562025221465},{"schema":1562025216188,"derHash":"xCKrhsFynoifvK9c1z8hfgPCn+KsUCEvRRMH2RWGn0c=","subject":"CN=emSign ECC Time stamping CA - G3,OU=emSign PKI,O=eMudhr
a Technologies Limited,C=IN","subjectDN":"MHQxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMSkwJwYDVQQDEyBlbVNpZ24gRUNDIFRpbWUgc3RhbXBpbmcgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"43563791245e66f7d04d4403f12dee8bbb8f7711661317ba5453f4c6e767bc3d","size":1183,"filename":"YoOJpTBtL_MN54SktLirvc0ScusOCm7NbSR29u1TcCo=.pem","location":"security-state-staging/intermediates/c327bd51-d114-4fdf-adb9-e757346beb61.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YoOJpTBtL/MN54SktLirvc0ScusOCm7NbSR29u1TcCo=","crlite_enrolled":false,"id":"0f491dc5-c66c-42dd-ad69-90150f1e3cfc","last_modified":1562025216956},{"schema":1562025213182,"derHash":"Sh/2u/SBFw07dzzsHzqE3jtQlldc2/iwhDIgkxjKD70=","subject":"CN=Amazon,OU=Server CA 1B,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"c0bc37b96bec8011b8d307eeca3d00c574601d1002
0be55221559de429641537","size":1544,"filename":"JSMzqOOrtyOT1kmau6zKhgT676hGgczD5VMdRMyJZFA=.pem","location":"security-state-staging/intermediates/a7a30d9c-6953-4f41-8b0e-5c00269c7884.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JSMzqOOrtyOT1kmau6zKhgT676hGgczD5VMdRMyJZFA=","crlite_enrolled":true,"id":"5f8eb034-72cd-45a6-8a55-0c083afa34dd","last_modified":1562025213926},{"schema":1562025211675,"derHash":"RDyBWCZHEMC3aKgXDlm/H65AedK8OZOaefqDkXTtga4=","subject":"CN=SCHIEx Direct CA,OU=SCHIEx Direct Messaging,O=SCHIEx,ST=SC,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJTQzEPMA0GA1UEChMGU0NISUV4MSAwHgYDVQQLExdTQ0hJRXggRGlyZWN0IE1lc3NhZ2luZzEZMBcGA1UEAxMQU0NISUV4IERpcmVjdCBDQQ==","whitelist":false,"attachment":{"hash":"e1b38bc809d0be6e2f28dd9d87bf7af46bc55ec35074ec8a61ba5e97efc85679","size":2166,"filename":"lJMFEIPnHjQE1GKzbE6JzsSjl__N_NEFBDFqOtNsnjI=.pem","location":"security-state-staging/intermediates/69582fad-b5af-41e4-a398-1f36db772037.pem","mimetype":"application
/x-pem-file"},"pubKeyHash":"lJMFEIPnHjQE1GKzbE6JzsSjl//N/NEFBDFqOtNsnjI=","crlite_enrolled":false,"id":"7551978d-4ce2-43d8-8b1a-c0b5d20b4978","last_modified":1562025212421},{"schema":1562025210934,"derHash":"9Rjwu3FlIfCib9tAwwT/m4L72+esvUa/DvI6GAGI61w=","subject":"CN=Apple Public Server RSA CA 2 - G1,O=Apple Inc.,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSowKAYDVQQDEyFBcHBsZSBQdWJsaWMgU2VydmVyIFJTQSBDQSAyIC0gRzE=","whitelist":false,"attachment":{"hash":"6dce70aef7f5bbcfc26a7b76bf285c6b1f15fd77bc1eb1294734cad5fb239722","size":1634,"filename":"GszFzuV0vZD9UeeCY9kvsItQltvQTZsjBfB9INf-GEk=.pem","location":"security-state-staging/intermediates/38288d50-1e5f-4fae-8d28-8249bf4ffc30.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GszFzuV0vZD9UeeCY9kvsItQltvQTZsjBfB9INf+GEk=","crlite_enrolled":false,"id":"cc783f4c-70a8-49b7-b913-26b52dfbccbc","last_modified":1562025211668},{"schema":1562025209421,"derHash":"ubiFHCX2zDXUjhsrd+Pr8FftysmIWkF3rLWjlgRYJh4=","subj
ect":"CN=COMODO/HP Secure Email CA 2,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MH4xCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMSQwIgYDVQQDExtDT01PRE8vSFAgU2VjdXJlIEVtYWlsIENBIDI=","whitelist":false,"attachment":{"hash":"c2e03a2f920b43601df9788753597b0274b7e0641144be0fdf9aa2a4260f9f94","size":2129,"filename":"P0GLZRFPpkxNALwZ7Kj6O3PmIpBgliTbY_rTcBxfLB0=.pem","location":"security-state-staging/intermediates/18a8ce01-f094-4111-ab9e-0578a28dc363.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"P0GLZRFPpkxNALwZ7Kj6O3PmIpBgliTbY/rTcBxfLB0=","crlite_enrolled":false,"id":"b4b7e711-5c6d-4248-b6b2-35bffa9748ae","last_modified":1562025210174},{"schema":1562025208671,"derHash":"+KplFlF7ONNQEltzHky6I6dQe/XN/T3vPbiRvR3C1Ak=","subject":"SERIALNUMBER=201811,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3
N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODEx","whitelist":false,"attachment":{"hash":"5688ca317891d45d552cff0a5b80364d8be585ddc70976061e528244a5262255","size":2333,"filename":"-_BX4AN6l--82ldfEPa8Jt09pmz7zqnrp7P6A0cmnN8=.pem","location":"security-state-staging/intermediates/b549103e-cbc3-4b61-b560-80a0727877c2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+/BX4AN6l++82ldfEPa8Jt09pmz7zqnrp7P6A0cmnN8=","crlite_enrolled":false,"id":"7303be73-95b7-47d9-9433-2c3c91042451","last_modified":1562025209413},{"schema":1562025203410,"derHash":"B/LOVcoapsuZJxmx5CPB0Cwep1mm4uq04VDIgoLiJVA=","subject":"CN=Certigna Services CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MH0xCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlESElNWU9USVMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxHTAbBgNVBGEMFE5UUkZSLTQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQQDDBRDZXJ0aWduYSBTZXJ2aWNlcyBDQQ==","whitelist":false,"attachment":{"hash":"daabfa439246bec01c439eeb12080417731f3b5fc130616edf23facbe1995d4b","size":2511,
"filename":"Vvyvg4-bOEbI6aO7K28ioVsUfckLqCSKqlIqZTEB_uE=.pem","location":"security-state-staging/intermediates/eafb024c-95d9-45ad-af85-982024cc73e9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vvyvg4+bOEbI6aO7K28ioVsUfckLqCSKqlIqZTEB/uE=","crlite_enrolled":true,"id":"42115fab-f048-4a66-92be-15d909da568b","last_modified":1562025204181},{"schema":1562025202667,"derHash":"myLn+gjT+MbW6fQg2PdWx5E15m0bLXCweQNyHwPb5bY=","subject":"CN=DOMENY SSL OV Certification Authority,O=DOMENY.PL sp. z o.o,L=Krak\u00f3w,ST=Ma\u0142opolskie,C=PL","subjectDN":"MIGEMQswCQYDVQQGEwJQTDEVMBMGA1UECAwMTWHFgm9wb2xza2llMRAwDgYDVQQHDAdLcmFrw7N3MRwwGgYDVQQKExNET01FTlkuUEwgc3AuIHogby5vMS4wLAYDVQQDEyVET01FTlkgU1NMIE9WIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"6d124a8da18e0ea28bdde6bbae190816c6220594402c01c09264ca9940d4a150","size":2154,"filename":"y6RI9X1eeUkKidF2MrXM7RymKK9CUcax6TB8EJO15E4=.pem","location":"security-state-staging/intermediates/6219f215-f8b2-4671-94d1-1f2817
6da5df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"y6RI9X1eeUkKidF2MrXM7RymKK9CUcax6TB8EJO15E4=","crlite_enrolled":true,"id":"ac25e523-d7a1-4700-87a8-f528654cc35b","last_modified":1562025203402},{"schema":1562025201928,"derHash":"MTH/29ln180dd3Qq+XcvEFH/TJrkE3WfQ0/h6BERngM=","subject":"CN=TrustOcean EV SSL CA - RSA - 2019,OU=Controlled by Sectigo exclusively for TrustOcean Ltd.+OU=RSA Extended Validation Secure Server - 2019,O=TrustOcean Ltd.,L=Denver,ST=CO,C=US","subjectDN":"MIHoMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPVHJ1c3RPY2VhbiBMdGQuMT4wPAYDVQQLEzVDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIFRydXN0T2NlYW4gTHRkLjE1MDMGA1UECxMsUlNBIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciAtIDIwMTkxKjAoBgNVBAMTIVRydXN0T2NlYW4gRVYgU1NMIENBIC0gUlNBIC0gMjAxOQ==","whitelist":false,"attachment":{"hash":"bb57de69afc6d6f5f59b1c80758edf0ef1791b7a08530fed8903ef18cd25188e","size":2324,"filename":"uG18SfTnbrT8g2zCkpa7kWClIcTyqEW_1iPtChk9nTQ=.pem","locat
ion":"security-state-staging/intermediates/6020590f-b065-482b-9549-d56eb98c4b60.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uG18SfTnbrT8g2zCkpa7kWClIcTyqEW/1iPtChk9nTQ=","crlite_enrolled":true,"id":"12413a5f-6a98-4669-8438-f936d9b86ea3","last_modified":1562025202660},{"schema":1562025200417,"derHash":"sQhhc3s+ybEfphVNI5cP+y2r/Ciuamv1bD8yBCZiOa0=","subject":"CN=SECOM Passport for Member PUB CA4,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTQ=","whitelist":false,"attachment":{"hash":"100ce60a3bd64526f68ff84f5c51cf0fabb69da5d8bf4709a02d9b8381cf053e","size":1695,"filename":"e0UlwaDksSng0NsuhQLDMdL3HdRLRk89Csk7QJK7Xm4=.pem","location":"security-state-staging/intermediates/5fe7d18d-a5f7-47cc-b17d-78176befba8d.pem","mimetype":"application/x-pem-file
"},"pubKeyHash":"e0UlwaDksSng0NsuhQLDMdL3HdRLRk89Csk7QJK7Xm4=","crlite_enrolled":true,"id":"43cd6bcc-8fa9-4afc-8ef7-d30357eb5641","last_modified":1562025201171},{"schema":1562025198927,"derHash":"SWlaXw9+9u32mBk9me1Iuq3iDqRXQDwRzq1JLEWGZdo=","subject":"CN=TWCA Global EVSSL Certification Authority,OU=Global EVSSL Sub-CA,O=TAIWAN-CA,C=TW","subjectDN":"MHMxCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExHDAaBgNVBAsTE0dsb2JhbCBFVlNTTCBTdWItQ0ExMjAwBgNVBAMTKVRXQ0EgR2xvYmFsIEVWU1NMIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"4f777697d0c427439f9282b53a652b4a868074c5e1ae55a6dfe51dc32d19b817","size":1955,"filename":"3sXbPfqhHfn3hza4ob3X6iuMjfN9qdgOhBAC5GOp-TY=.pem","location":"security-state-staging/intermediates/d4e10b9c-0b97-413b-97b1-5b93a2c878a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3sXbPfqhHfn3hza4ob3X6iuMjfN9qdgOhBAC5GOp+TY=","crlite_enrolled":true,"id":"b7f1ffd4-4c9e-4762-a0b9-1a840835047b","last_modified":1562025199670},{"schema":15620251966
69,"derHash":"Uu+YG6hbwFTFl/CcbKyxNLffl9Yf6u4lF/Tb2Cv47Mo=","subject":"OU=\u7d44\u7e54\u53ca\u5718\u9ad4\u6191\u8b49\u7ba1\u7406\u4e2d\u5fc3,O=\u884c\u653f\u9662,C=TW","subjectDN":"ME0xCzAJBgNVBAYTAlRXMRIwEAYDVQQKDAnooYzmlL/pmaIxKjAoBgNVBAsMIee1hOe5lOWPiuWcmOmrlOaGkeitieeuoeeQhuS4reW/gw==","whitelist":false,"attachment":{"hash":"b85fc65fd55253ce8f8d9427e4bc632f8277e15047e0e4a7d1babca0069e73ab","size":1853,"filename":"b7VNMgYVBy0ME-PSGiNUKsoQ56R9SOLrQt2AlaXwxvc=.pem","location":"security-state-staging/intermediates/fbbe5d3f-d9db-41ad-bfb6-ba438ae13b11.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"b7VNMgYVBy0ME+PSGiNUKsoQ56R9SOLrQt2AlaXwxvc=","crlite_enrolled":false,"id":"62db3b82-de0b-4257-93e2-1261643f7872","last_modified":1562025197408},{"schema":1562025195931,"derHash":"YoSgO6+uhhow46JaAwQoMG9+tSvQuld6HZYqgJqDDJ4=","subject":"CN=NetLock Min\u0151s\u00edtett Eat. (Class Q Legal) Tan\u00fas\u00edtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification S
ervices),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIG5MQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTFHMEUGA1UEAww+TmV0TG9jayBNaW7FkXPDrXRldHQgRWF0LiAoQ2xhc3MgUSBMZWdhbCkgVGFuw7pzw610dsOhbnlraWFkw7M=","whitelist":false,"attachment":{"hash":"be44ba2f0e98d91976e0b376d14bfcfbf5e04990413aeb73457eb447f773a585","size":2203,"filename":"wbqAvjVExNzYgkWT-psQa7MDcYIscGSOYZa0cm5x83M=.pem","location":"security-state-staging/intermediates/602c1224-b665-4b69-848a-f07cbc00e0be.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wbqAvjVExNzYgkWT+psQa7MDcYIscGSOYZa0cm5x83M=","crlite_enrolled":true,"id":"73e86e8a-47ad-4f60-be1d-64ed2011a0bb","last_modified":1562025196662},{"schema":1562025193661,"derHash":"rtXdmlM5aF37Ap9tiaFDNallEsPKzFKymUr4trN/pNI=","subject":"CN=GlobalSign Extended Validation CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MGIxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYW
xTaWduIG52LXNhMTgwNgYDVQQDEy9HbG9iYWxTaWduIEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgLSBTSEEyNTYgLSBHMw==","whitelist":false,"attachment":{"hash":"bbc372d9ecdf9fa392a04587c4d036f042f3f09c6f0914cc81e10d9e8e8a3a02","size":1577,"filename":"86fLIetopQLDNxFZ0uMI66Xpl1pFgLlHHn9v6kT0i4I=.pem","location":"security-state-staging/intermediates/a42b26ca-6177-4156-b30c-df67c447df2e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"86fLIetopQLDNxFZ0uMI66Xpl1pFgLlHHn9v6kT0i4I=","crlite_enrolled":true,"id":"6faa42a8-09b8-46c4-9167-2568ddb696c8","last_modified":1562025194416},{"schema":1562025192919,"derHash":"boFQk3bJP7znlHLIQ6Vo6IPLXSPs7qgpmly+nFe87hw=","subject":"CN=Atos TrustedRoot Mailgateway CA 2019,O=Atos,C=DE","subjectDN":"MEsxLTArBgNVBAMMJEF0b3MgVHJ1c3RlZFJvb3QgTWFpbGdhdGV3YXkgQ0EgMjAxOTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"66f8b8a94ed51f0047bea1a83138cfd3a5d139f5c67d0a0513a6ffab9d53aa8d","size":1930,"filename":"EQQkSccU6u9HYRYQa9ZtgDlg8dInLePxpauqH5cu3
yk=.pem","location":"security-state-staging/intermediates/1392833e-1a88-42fa-b9ee-58bdaea81a4e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EQQkSccU6u9HYRYQa9ZtgDlg8dInLePxpauqH5cu3yk=","crlite_enrolled":false,"id":"40af8905-ec8c-43f0-8c5c-3d64cbd00b59","last_modified":1562025193654},{"schema":1562025191421,"derHash":"BHIXdyBR0pIjjzNV9cVDXpuENkzNFD/En5wxzWBUOfA=","subject":"CN=TrustAsia Secure Email CA,OU=www.trustasia.com,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MHQxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMRowGAYDVQQLExF3d3cudHJ1c3Rhc2lhLmNvbTEiMCAGA1UEAxMZVHJ1c3RBc2lhIFNlY3VyZSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"d82324ec120fcf3fcfe7449f972f518f8bbf990131866eba4f7c7f561bcf6a0f","size":1699,"filename":"TjLSAwYTumO8ghSNmQQzwjA7CtZ3wO75cLt3bYVVIro=.pem","location":"security-state-staging/intermediates/d8683bc8-f975-48c3-94c9-f332895c7592.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TjLSAwYTumO8ghSNmQQzwjA
7CtZ3wO75cLt3bYVVIro=","crlite_enrolled":false,"id":"28ed55e4-b148-4d29-9d8d-c9e528950d61","last_modified":1562025192172},{"schema":1562025186932,"derHash":"ecQJGwWxXBaDEot6NV4KrWLhu7w+Xzc1NwwGzE0a+0Q=","subject":"CN=CrossTrust OV CA5,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MFAxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMRowGAYDVQQDExFDcm9zc1RydXN0IE9WIENBNQ==","whitelist":false,"attachment":{"hash":"bd3caa1f305a9f0b5a55466e00fb389199886a78055b526ee4a8fd5a2c317e51","size":1642,"filename":"9QmSs2TRmBuBXXpRPhom-2y54_RQ3KsK4te_JED6g0Q=.pem","location":"security-state-staging/intermediates/0cd79666-328f-4d26-a58d-65b8203303df.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9QmSs2TRmBuBXXpRPhom+2y54/RQ3KsK4te/JED6g0Q=","crlite_enrolled":true,"id":"b6b1d83f-6615-4c21-bf97-c5dba8c7d925","last_modified":1562025187668},{"schema":1562025186186,"derHash":"6u77CNVo5/bPbYksq2oi4U8gxvEOOkGM+0KxIwkzM2c=","subject":"CN=MHIN Direct CA,OU=www.mhin.com,O=Mi
chiana Health Information Network,C=US","subjectDN":"MGsxCzAJBgNVBAYTAlVTMSwwKgYDVQQKEyNNaWNoaWFuYSBIZWFsdGggSW5mb3JtYXRpb24gTmV0d29yazEVMBMGA1UECxMMd3d3Lm1oaW4uY29tMRcwFQYDVQQDEw5NSElOIERpcmVjdCBDQQ==","whitelist":false,"attachment":{"hash":"623c45a2681ba34512932f4d0345ac733c2eff7148c61bfbd81939fd0dbde54a","size":2166,"filename":"yM7_IeYu7HtJ1cALcYpLZhIj1S7pQNxaHt7sIarSmPk=.pem","location":"security-state-staging/intermediates/d47781dd-8df0-46fb-ab8f-62555bc1bec2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yM7/IeYu7HtJ1cALcYpLZhIj1S7pQNxaHt7sIarSmPk=","crlite_enrolled":false,"id":"ee38fa45-bfe8-4470-8e7a-828569883e63","last_modified":1562025186923},{"schema":1562025183926,"derHash":"EmUF6SkzTMPHPugm5aThxK25DHEIBXWfbLaf+st2onY=","subject":"CN=Trust Provider B.V. RSA CA G1,OU=Domain Validated SSL,O=Trust Provider B.V.,C=NL","subjectDN":"MHIxCzAJBgNVBAYTAk5MMRwwGgYDVQQKExNUcnVzdCBQcm92aWRlciBCLlYuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEmMCQGA1UEAxMdVHJ1c3QgUHJvdmlkZXIgQ
i5WLiBSU0EgQ0EgRzE=","whitelist":false,"attachment":{"hash":"e0afbf8c38e3854bdf1fa7f03733cec06fb616292b10ea38c79ba608c5a91db2","size":1695,"filename":"8zsd4iJkDVP9ORk6JvjRp3miQdmu0pE5mlQEcNsLlgw=.pem","location":"security-state-staging/intermediates/3af9fc7d-4e85-4eae-b097-00f4c9fcc597.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8zsd4iJkDVP9ORk6JvjRp3miQdmu0pE5mlQEcNsLlgw=","crlite_enrolled":false,"id":"b2561bcb-96c7-4c29-a072-a3ed78f089d7","last_modified":1562025184653},{"schema":1562025182429,"derHash":"zIW/mX0pKdOPwB6BIrMw+e++ONs789gBd9wSvVWQAsQ=","subject":"CN=XiPS CA2,O=XiPS,C=JP","subjectDN":"MC8xCzAJBgNVBAYTAkpQMQ0wCwYDVQQKEwRYaVBTMREwDwYDVQQDEwhYaVBTIENBMg==","whitelist":false,"attachment":{"hash":"5663f50d87b7c18b3c99b0b5ad1bf10363286a03fcb05ab9c0fb34760c55e21f","size":1561,"filename":"PaXj-eLR-CVXHDdDFA2h3HDdlslWT-0lS7xNjPnqusM=.pem","location":"security-state-staging/intermediates/ed9b6200-0079-4951-a12a-4ee37a29fadf.pem","mimetype":"application/x-pem-file"},"
pubKeyHash":"PaXj+eLR+CVXHDdDFA2h3HDdlslWT+0lS7xNjPnqusM=","crlite_enrolled":false,"id":"123b4df1-cf35-410b-bfd9-b8a9714c0056","last_modified":1562025183180},{"schema":1562025181676,"derHash":"P3hQJbzPrKRwGhc0zg97MM5BBpQsjZL0G3CwZ+1l01Q=","subject":"CN=KPN PKIoverheid Organisatie Persoon CA - G3,O=KPN Corporate Market B.V.,C=NL","subjectDN":"MGcxCzAJBgNVBAYTAk5MMSIwIAYDVQQKDBlLUE4gQ29ycG9yYXRlIE1hcmtldCBCLlYuMTQwMgYDVQQDDCtLUE4gUEtJb3ZlcmhlaWQgT3JnYW5pc2F0aWUgUGVyc29vbiBDQSAtIEcz","whitelist":false,"attachment":{"hash":"0e097c3463e82d7ba7f80fa33b0a12ba5995651fc226460fb6047bcb593fe4a7","size":2511,"filename":"z6o4qaIdcAF_cYD5IoV-HIyALNwwhBoQqpMK1NirbXg=.pem","location":"security-state-staging/intermediates/5becb1c9-6ed2-4cdd-bba9-0ecc641e7d12.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"z6o4qaIdcAF/cYD5IoV+HIyALNwwhBoQqpMK1NirbXg=","crlite_enrolled":false,"id":"9324909c-8842-426a-9bd9-339ea000a9a5","last_modified":1562025182421},{"schema":1562025179816,"derHash":"ZP1/ZrgF7
w+uCdrAbq0amrXCjm8krQdZmW00mYf+5+I=","subject":"CN=HERTZ SHA256 CA - G2,O=The HERTZ Corporation,ST=Florida,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdGbG9yaWRhMR4wHAYDVQQKExVUaGUgSEVSVFogQ29ycG9yYXRpb24xHTAbBgNVBAMTFEhFUlRaIFNIQTI1NiBDQSAtIEcy","whitelist":false,"attachment":{"hash":"e265e407a875697a7f656b762252ca51920bf962f795981ca45b3df5305744ad","size":1841,"filename":"0mE9i9waw6FU7T9jthzR6RWqVlYfOZWnDt__W7w0MbE=.pem","location":"security-state-staging/intermediates/b47806d4-9344-4686-991c-48d34375975f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0mE9i9waw6FU7T9jthzR6RWqVlYfOZWnDt//W7w0MbE=","crlite_enrolled":false,"id":"aac644a1-6f9b-40fb-899e-d6c96e2ef1dc","last_modified":1562025180912},{"schema":1562025176064,"derHash":"8SJB7jTAOmCNNNvA6kZeG9GqEwkVVPnU0IYlP/POg9Q=","subject":"CN=DC Government SHA2 EV Intermediate CA,OU=Office of the Chief Technology Officer,O=Government of the District of Columbia,C=US","subjectDN":"MIGfMQswCQYDVQQGEwJVUzEvMC0GA1UEChMmR29
2ZXJubWVudCBvZiB0aGUgRGlzdHJpY3Qgb2YgQ29sdW1iaWExLzAtBgNVBAsTJk9mZmljZSBvZiB0aGUgQ2hpZWYgVGVjaG5vbG9neSBPZmZpY2VyMS4wLAYDVQQDEyVEQyBHb3Zlcm5tZW50IFNIQTIgRVYgSW50ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{"hash":"14472d3dc922dcba7c834374f5b8121efcd08cab9d0778d052e329913bee403d","size":2073,"filename":"D6bVPPyHKUFV0WmvSS6nCMgaQId_SQKugGjOOT48QXE=.pem","location":"security-state-staging/intermediates/7e3f4ba8-098a-4f7e-a594-d98f5caa1fa9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D6bVPPyHKUFV0WmvSS6nCMgaQId/SQKugGjOOT48QXE=","crlite_enrolled":true,"id":"2316b3da-de73-40e0-8b36-7f2ad4206eec","last_modified":1562025176800},{"schema":1562025175329,"derHash":"Uc8P/8MlP8ATr3hvlbGQEJ+Mh/NN/RzsRMRYiHifU1U=","subject":"CN=GeoTrust DV SSL CA - G3,OU=Domain Validated SSL,O=GeoTrust Inc.,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEgMB4GA1UEAxMXR2VvVHJ1c3QgRFYgU1NMIENBIC0gRzM=","whitelist":false,"attachment":{
"hash":"63a067013ea0d27be1b9a024be996607207d1aa923f90c6456d060fae4240284","size":1597,"filename":"l2yRLumd__mpm_WYi63mkNBZrNOpv-iqbuuqZHz2FZk=.pem","location":"security-state-staging/intermediates/ed2fd4a4-5cbc-463b-bc2a-b41bc797b801.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"l2yRLumd//mpm/WYi63mkNBZrNOpv+iqbuuqZHz2FZk=","crlite_enrolled":true,"id":"0fbfc5ef-c42c-4bdc-ad8a-b5c8aacf75c5","last_modified":1562025176056},{"schema":1562025173823,"derHash":"SC9pNhYtrE73dG5hz4HzVzwwip8M5rQatuLj+Jt59bo=","subject":"CN=MilleniumSign for ClientCert RSA,O=MilleniumSign Limited,C=MU","subjectDN":"MFgxCzAJBgNVBAYTAk1VMR4wHAYDVQQKDBVNaWxsZW5pdW1TaWduIExpbWl0ZWQxKTAnBgNVBAMMIE1pbGxlbml1bVNpZ24gZm9yIENsaWVudENlcnQgUlNB","whitelist":false,"attachment":{"hash":"222e53090c93ea7a3779daaa08cc08cf97e15f2266f97a6ad486be1ac818b4b2","size":2446,"filename":"7RR-mxCqu0zXAK2CPP57e8q0pE8ACz7Hfr7VCAPuMzs=.pem","location":"security-state-staging/intermediates/d35d4472-28b5-4102-be24-ddb035487984.pem"
,"mimetype":"application/x-pem-file"},"pubKeyHash":"7RR+mxCqu0zXAK2CPP57e8q0pE8ACz7Hfr7VCAPuMzs=","crlite_enrolled":false,"id":"e8790135-766c-4bf9-83a4-b937fd0e2db0","last_modified":1562025174583},{"schema":1562025173067,"derHash":"kf3rUtQmUSC4Q7GV0bbNtc5hJRhlpFo+kg5hD92mYNM=","subject":"CN=DigiCert Federated ID L2 CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0IEZlZGVyYXRlZCBJRCBMMiBDQQ==","whitelist":false,"attachment":{"hash":"730111e89089443c53b0d835562133c99ad97378a9c7763e7061ed7377bd59ae","size":1825,"filename":"uFgNVuVHMiQAV8MwYU1yjg_jHUWYZx_q2sWdfqJ0Pfo=.pem","location":"security-state-staging/intermediates/8c127577-0572-4da9-9b18-64d923f10edb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uFgNVuVHMiQAV8MwYU1yjg/jHUWYZx/q2sWdfqJ0Pfo=","crlite_enrolled":false,"id":"eaa80a7d-defb-4cf5-94e8-a99a54278063","last_modified":1562025173815},{"schema":1562
025172327,"derHash":"9051Cl3PANXoUWimDJY+wq69yjrbApHTKB2PUhumo70=","subject":"CN=SSL.com Code Signing Intermediate CA ECC R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHgxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxNDAyBgNVBAMMK1NTTC5jb20gQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBDQSBFQ0MgUjI=","whitelist":false,"attachment":{"hash":"5addb3224fc91346ad8299e095d7d8bb81f96f9f55d9ed65dae3f496519b4909","size":1264,"filename":"i4YxhNKtWxupjB-UY-D9fvW_PWFEagq-NIqDjFBiMww=.pem","location":"security-state-staging/intermediates/5e0dbc1f-6963-4872-9057-16ae085e9dd3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i4YxhNKtWxupjB+UY+D9fvW/PWFEagq+NIqDjFBiMww=","crlite_enrolled":false,"id":"fe2dcca1-885e-4fd3-99b5-2ac3a3ac9bf6","last_modified":1562025173060},{"schema":1562025171561,"derHash":"kdp6XKYTSHUAiZTCUNrZIh8MXi1OPglz95Ydy9+3Q+w=","subject":"CN=Sectigo ECC Client Authentication and Secure Email CA,O=Sectigo Limited,L=Salford,ST=Greater Ma
nchester,C=GB","subjectDN":"MIGWMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxPjA8BgNVBAMTNVNlY3RpZ28gRUNDIENsaWVudCBBdXRoZW50aWNhdGlvbiBhbmQgU2VjdXJlIEVtYWlsIENB","whitelist":false,"attachment":{"hash":"77d9497e0c15f70b924892d7c86e086a085789309a6a79986df9aee018ada485","size":1325,"filename":"rYhp-cXTMtrastq0z_cB6bdqkXAleWeAfwJUCvBPVtw=.pem","location":"security-state-staging/intermediates/34a6b890-81a2-488f-a509-9e82908e5f74.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rYhp+cXTMtrastq0z/cB6bdqkXAleWeAfwJUCvBPVtw=","crlite_enrolled":false,"id":"fa31210d-e75b-4ca0-a8d2-7401b0b5850f","last_modified":1562025172319},{"schema":1562025170804,"derHash":"Viy7y96+6zy1WUa9ziSMpKYj0rpud7Y7dU06Vx9n36I=","subject":"CN=Fraunhofer User CA - G02,OU=Fraunhofer Corporate PKI,O=Fraunhofer,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGMMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjETMBEGA1UECgwKRnJhdW5ob2Z
lcjEhMB8GA1UECwwYRnJhdW5ob2ZlciBDb3Jwb3JhdGUgUEtJMSEwHwYDVQQDDBhGcmF1bmhvZmVyIFVzZXIgQ0EgLSBHMDI=","whitelist":false,"attachment":{"hash":"432002444ca45071e8819aab9fc1a1245de7b320fabca6185adea7a8e46ddb6f","size":2024,"filename":"tI25lyfua-OITC74D7J6Z7TyLi_ZfzDhng7frVgmB8Q=.pem","location":"security-state-staging/intermediates/50b461d3-a1bf-4841-8d0b-db184a8ef60c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tI25lyfua+OITC74D7J6Z7TyLi/ZfzDhng7frVgmB8Q=","crlite_enrolled":false,"id":"a40de547-e3aa-46b0-bb6e-12b28685b132","last_modified":1562025171553},{"schema":1562025168582,"derHash":"nmvF+ezFJGDo7cAsZE0b4cufIxb0Ha87YWoLIFgpSzE=","subject":"CN=Symantec Class 3 EV SSL CA - G3,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MHcxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEoMCYGA1UEAxMfU3ltYW50ZWMgQ2xhc3MgMyBFViBTU0wgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"608d82155649d760dc44ec6d53af42
33429881ad64762476c94fdf570c9f572e","size":1853,"filename":"gMxWOrX4PMQesK9qFNbYBxjBfjUvlkn_vN1n-L9lE5E=.pem","location":"security-state-staging/intermediates/7e855262-9907-44b6-b613-7e7c05da23f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gMxWOrX4PMQesK9qFNbYBxjBfjUvlkn/vN1n+L9lE5E=","crlite_enrolled":true,"id":"01baeb08-779e-4097-bfb8-cb384ac992d8","last_modified":1562025169317},{"schema":1562025166063,"derHash":"4i5rJZCOEQemB68GDgsk5QxtlWL/BPRVvg+N9BpQMsA=","subject":"CN=SZAFIR Trusted CA2,O=Krajowa Izba Rozliczeniowa S.A.,C=PL","subjectDN":"MFQxCzAJBgNVBAYTAlBMMSgwJgYDVQQKDB9LcmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRswGQYDVQQDDBJTWkFGSVIgVHJ1c3RlZCBDQTI=","whitelist":false,"attachment":{"hash":"b998d1830338d9ca1bada5e5e1a33ef3a5f89c9c13ccfa1b8ea7a2f3aea980a1","size":1825,"filename":"Ea2smccTC5mFDdTrs5gKD6HaYthL4lhPx97QmLgbFQc=.pem","location":"security-state-staging/intermediates/f9a9ee57-a010-4240-a6e4-f16037c4556f.pem","mimetype":"application/x-pem-file"},"pubKeyH
ash":"Ea2smccTC5mFDdTrs5gKD6HaYthL4lhPx97QmLgbFQc=","crlite_enrolled":true,"id":"acce9c9e-9a82-41d4-b3c0-5cd8eeaf7bef","last_modified":1562025166794},{"schema":1562025165326,"derHash":"eNycpfTCkT8/t0rFLf/80jANpady/CuExToudEN+3SA=","subject":"CN=STRATO SSL - G2,OU=Domain Validated SSL,O=STRATO AG,C=DE","subjectDN":"MFoxCzAJBgNVBAYTAkRFMRIwEAYDVQQKEwlTVFJBVE8gQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRgwFgYDVQQDEw9TVFJBVE8gU1NMIC0gRzI=","whitelist":false,"attachment":{"hash":"97b250a9bb08b735bbb140ac1e4a20bfc87008a831c5820e8596eafb6230e542","size":1524,"filename":"sHuZJYYMcPPO0syUwdicHEjFhiXf8r_Bt_cMNeh2WcA=.pem","location":"security-state-staging/intermediates/19be972c-855b-4247-9a3f-930662fc00db.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sHuZJYYMcPPO0syUwdicHEjFhiXf8r/Bt/cMNeh2WcA=","crlite_enrolled":false,"id":"01f90665-8998-4aa2-9af5-82d8cc7e756c","last_modified":1562025166055},{"schema":1562025162348,"derHash":"DOM6QnGx5Gz/tDLbg6T5xSYa+IvyRR2K75Ah9gsgvmU=","subjec
t":"CN=Atos TrustedRoot Client-CA for equensWorldlinePartner 2019,O=Atos,C=DE","subjectDN":"MGExQzBBBgNVBAMMOkF0b3MgVHJ1c3RlZFJvb3QgQ2xpZW50LUNBIGZvciBlcXVlbnNXb3JsZGxpbmVQYXJ0bmVyIDIwMTkxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"a0b74fdfcd60684e6ae62fd67423cdebb5cd9e677c08d4fd376a50429722dfac","size":1959,"filename":"iwM-2PVlSP6blr9vu-dLHZGkTj3xQhLSJ2vrN5miZ0Q=.pem","location":"security-state-staging/intermediates/06cc9ce9-20a6-4fd8-baf1-d9b6179addf9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iwM+2PVlSP6blr9vu+dLHZGkTj3xQhLSJ2vrN5miZ0Q=","crlite_enrolled":false,"id":"d9d8d521-dd27-47c2-b709-26ac9a7fd92a","last_modified":1562025163074},{"schema":1562025161609,"derHash":"jXxJnX/p7uwF2etC8D7+QCgHkZgD6ObNbB8r9e9qfY8=","subject":"CN=GeoTrust Code Signing CA - G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJjAkBgNVBAMTHUdlb1RydXN0IENvZGUgU2lnb
mluZyBDQSAtIEcy","whitelist":false,"attachment":{"hash":"249e928f4de591132364a871e84037a9815e30634a553077a2fe538b4236fdde","size":1796,"filename":"f8Aqq2cYQjeMInX4NF9BwX9DWyG90RZdekvgJeybb6E=.pem","location":"security-state-staging/intermediates/1193d8fc-a0a0-449e-813d-6f173f7abfcd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"f8Aqq2cYQjeMInX4NF9BwX9DWyG90RZdekvgJeybb6E=","crlite_enrolled":false,"id":"436fecb6-3d28-4509-af27-78c80daf1fa7","last_modified":1562025162340},{"schema":1562025160859,"derHash":"rB7FVjGOPqcPjwTgOg8mM7/nOZI1moEBRf/fGkJzlu4=","subject":"CN=TeleSec ServerPass Class 2 CA,OU=T-Systems Trust Center,O=T-Systems International GmbH,POSTALCODE=57250,STREET=Untere Industriestr. 20,L=Netphen,ST=Nordrhein Westfalen,C=DE","subjectDN":"MIHfMQswCQYDVQQGEwJERTElMCMGA1UECgwcVC1TeXN0ZW1zIEludGVybmF0aW9uYWwgR21iSDEfMB0GA1UECwwWVC1TeXN0ZW1zIFRydXN0IENlbnRlcjEcMBoGA1UECAwTTm9yZHJoZWluIFdlc3RmYWxlbjEOMAwGA1UEEQwFNTcyNTAxEDAOBgNVBAcMB05ldHBoZW4xIDAeBgNVBAkMF1VudGVyZSBJbmR
1c3RyaWVzdHIuIDIwMSYwJAYDVQQDDB1UZWxlU2VjIFNlcnZlclBhc3MgQ2xhc3MgMiBDQQ==","whitelist":false,"attachment":{"hash":"76978532a4380253c7bbfe0ea07b7f0f9f595824a78f411a83835514c3a8d76f","size":2052,"filename":"c3jf-L8VIAFQnJJDM6Mfb4MtI1JnhVS8JwZHMwJj28M=.pem","location":"security-state-staging/intermediates/54f348f3-2ed6-4b67-a108-3c418ed93826.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"c3jf+L8VIAFQnJJDM6Mfb4MtI1JnhVS8JwZHMwJj28M=","crlite_enrolled":true,"id":"b19a4517-16ee-477e-bdf2-a6c9a655f216","last_modified":1562025161601},{"schema":1562025160116,"derHash":"ApUjhC0j7zlfVynjUlIvgEJlhRgL02dowayt0i2Op9o=","subject":"CN=The University of Texas Health Science Center at Houston RSA CA,O=The University of Texas Health Science Center at Houston,L=Houston,ST=TX,C=US","subjectDN":"MIG5MQswCQYDVQQGEwJVUzELMAkGA1UECBMCVFgxEDAOBgNVBAcTB0hvdXN0b24xQTA/BgNVBAoTOFRoZSBVbml2ZXJzaXR5IG9mIFRleGFzIEhlYWx0aCBTY2llbmNlIENlbnRlciBhdCBIb3VzdG9uMUgwRgYDVQQDEz9UaGUgVW5pdmVyc2l0eSBvZiBUZXhhcyBIZWF
sdGggU2NpZW5jZSBDZW50ZXIgYXQgSG91c3RvbiBSU0EgQ0E=","whitelist":false,"attachment":{"hash":"14f00997a0e1aae935a7e964b272b85446ca14ca29a7f9a1a75c583f98a17633","size":2223,"filename":"X8zUA8bZTNKvwOf9_GKpmKtl4dD17EdNxWTm4nwRGgI=.pem","location":"security-state-staging/intermediates/2221c890-496b-4c16-b0bd-1ead2b97e050.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"X8zUA8bZTNKvwOf9/GKpmKtl4dD17EdNxWTm4nwRGgI=","crlite_enrolled":false,"id":"987637d9-0c2e-42f7-b676-b2e53c0955f0","last_modified":1562025160852},{"schema":1562025159345,"derHash":"I7o6l8WA3ywxZiTX+l92Y1gCYcsgSBQsc6PoaxE+sm0=","subject":"CN=Mass HIway CA,OU=Orion Health Direct Secure Messaging,O=Massachusetts Health Information Highway (Mass HIway),C=US","subjectDN":"MIGUMQswCQYDVQQGEwJVUzE+MDwGA1UEChM1TWFzc2FjaHVzZXR0cyBIZWFsdGggSW5mb3JtYXRpb24gSGlnaHdheSAoTWFzcyBISXdheSkxLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEWMBQGA1UEAxMNTWFzcyBISXdheSBDQQ==","whitelist":false,"attachment":{"hash":"71b0cd912
fe6d5f87208dacb9ba968dcd735896e9970ece8e45dd1ecf0cc4d6e","size":2239,"filename":"PVEW06JTRRwMsNF9P6Oq0ePQfB7-eaqQtzqjaUZbq3Y=.pem","location":"security-state-staging/intermediates/9410489c-fa40-4eaa-8d3b-da65e27f51ef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PVEW06JTRRwMsNF9P6Oq0ePQfB7+eaqQtzqjaUZbq3Y=","crlite_enrolled":false,"id":"07055610-8ad6-4cb4-bbe5-1cd78eaed258","last_modified":1562025160109},{"schema":1562025158603,"derHash":"YGNr4vKU7AePTHJpZLTdUCscguCZz3dWMeiD/u5F+VE=","subject":"CN=EC-GENCAT,OU=Serveis Publics de Certificacio ECV-1+OU=Vegeu https://www.catcert.net/verCIC-1 (c)03+OU=Generalitat de Catalunya,O=Agencia Catalana de Certificacio (NIF Q-0801176-I),C=ES","subjectDN":"MIHpMQswCQYDVQQGEwJFUzE7MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8gKE5JRiBRLTA4MDExNzYtSSkxLjAsBgNVBAsTJVNlcnZlaXMgUHVibGljcyBkZSBDZXJ0aWZpY2FjaW8gRUNWLTExNjA0BgNVBAsTLVZlZ2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQubmV0L3ZlckNJQy0xICAoYykwMzEhMB8GA1UECxMYR2VuZXJhbGl0YXQgZGUgQ2F0YWx1
bnlhMRIwEAYDVQQDEwlFQy1HRU5DQVQ=","whitelist":false,"attachment":{"hash":"ed647ac49271c35288aad77057c157edd24e55f000681fa746f99ab847142e8f","size":2629,"filename":"plh85tWIetVs5VcJnItuNLDy-XNaKKGitW1elxmTBeI=.pem","location":"security-state-staging/intermediates/93a7595b-5765-4a71-9a9d-ad56d74a8ce0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"plh85tWIetVs5VcJnItuNLDy+XNaKKGitW1elxmTBeI=","crlite_enrolled":false,"id":"1b234c30-ce6d-4884-9629-a002cc6d89fb","last_modified":1562025159338},{"schema":1562025156354,"derHash":"QZsMmta4cqixu4c0GvY+6S5psnuZZmLnMwMvEogQjfs=","subject":"CN=GeoTrust EV SSL CA - G6,O=GeoTrust Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSAwHgYDVQQDExdHZW9UcnVzdCBFViBTU0wgQ0EgLSBHNg==","whitelist":false,"attachment":{"hash":"e3ace3997f5254862ba31b6b1b032f6e2ffc20f9bba4c0f616b8909fecf8009e","size":1906,"filename":"wrSQwdbHfW1CspprUJ7cm0XLtkDB3nyY2bZn6MZqHL8=.pem","location":"security-state-staging/intermediates/24479845-1d
51-479a-8e01-ffa788643f1a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wrSQwdbHfW1CspprUJ7cm0XLtkDB3nyY2bZn6MZqHL8=","crlite_enrolled":false,"id":"3b445982-59e3-490a-8362-c15f65d89a41","last_modified":1562025157120},{"schema":1562025155566,"derHash":"tpG0appRDb1muYnamtBpBKwGRz2NDXnyGV1rE/+0oYM=","subject":"CN=TrustSign ECC OV CA,O=Ziwit,L=Montpellier,ST=Herault,C=FR","subjectDN":"MGMxCzAJBgNVBAYTAkZSMRAwDgYDVQQIEwdIZXJhdWx0MRQwEgYDVQQHEwtNb250cGVsbGllcjEOMAwGA1UEChMFWml3aXQxHDAaBgNVBAMTE1RydXN0U2lnbiBFQ0MgT1YgQ0E=","whitelist":false,"attachment":{"hash":"ec54abad16f8fa60b0a392691a78c2f7503476682a33ddb306dfe52826034ecf","size":1276,"filename":"zdcn7aFVDOpjk4ry7Di1KqCcZhqCF7892ueBmfuRY2g=.pem","location":"security-state-staging/intermediates/3a07e49f-0b15-4531-b4f7-785fc87be9ff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zdcn7aFVDOpjk4ry7Di1KqCcZhqCF7892ueBmfuRY2g=","crlite_enrolled":false,"id":"0a2ba468-3c5c-4619-add7-a43dba6c5dce","last_modified":1562025156346
},{"schema":1562025154811,"derHash":"/alHIIv6MgOmxXuHFKZHtwCeUWjoiVE0VFCx0tP5Gn0=","subject":"CN=TERENA eScience Personal CA 3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MHIxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEmMCQGA1UEAxMdVEVSRU5BIGVTY2llbmNlIFBlcnNvbmFsIENBIDM=","whitelist":false,"attachment":{"hash":"7ea6124756c90b6331413e85db4359452c378d63911d5b07dbce10ad0631a783","size":1804,"filename":"D4s14JIoSBMzTNeUUcWADRb_-SykkRSe9uuLuoU5ots=.pem","location":"security-state-staging/intermediates/409968e6-3674-4763-a739-1304627ae2d5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D4s14JIoSBMzTNeUUcWADRb/+SykkRSe9uuLuoU5ots=","crlite_enrolled":true,"id":"03f1b517-d8b6-4d50-8c17-fb4f5025f7b1","last_modified":1562025155558},{"schema":1562025153323,"derHash":"jNlTxQYii/HXTWBi6R5+CHPq67sZ+/IArK3CODAAa4M=","subject":"CN=TrustAsia RSA EV SSL Server CA,OU=Controlled by COMODO exclusively for TrustAsia Technologies,
O=TrustAsia Technologies\\, Inc.,ST=Shanghai,C=CN","subjectDN":"MIG2MQswCQYDVQQGEwJDTjERMA8GA1UECBMIU2hhbmdoYWkxJTAjBgNVBAoTHFRydXN0QXNpYSBUZWNobm9sb2dpZXMsIEluYy4xRDBCBgNVBAsTO0NvbnRyb2xsZWQgYnkgQ09NT0RPIGV4Y2x1c2l2ZWx5IGZvciBUcnVzdEFzaWEgVGVjaG5vbG9naWVzMScwJQYDVQQDEx5UcnVzdEFzaWEgUlNBIEVWIFNTTCBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"70e45d2feec0fc507a7142b382526e399bb9e3bc67d30403aa926b3762d1921b","size":2263,"filename":"GxkkcEUvgSYWq0Iy2T9NnbqmBzYGl6Xday5FGhp66kM=.pem","location":"security-state-staging/intermediates/f9ebbc5b-f149-4a4f-8052-4b6f0b63152b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GxkkcEUvgSYWq0Iy2T9NnbqmBzYGl6Xday5FGhp66kM=","crlite_enrolled":false,"id":"e58a1d0e-c454-44c3-a00f-02c0d4483afc","last_modified":1562025154062},{"schema":1562025152565,"derHash":"Y1r2iJ9JBg/g57q8DyMxT7EY87GCQ90X9H2GR6aWhLE=","subject":"CN=Thawte Partner CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MFsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJb
mMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xGjAYBgNVBAMTEVRoYXd0ZSBQYXJ0bmVyIENB","whitelist":false,"attachment":{"hash":"60ece73007734d78c9e04b93695af5557289e36eb46cfe36246074d65ebbd645","size":1630,"filename":"W91BaGXmCLPVN1dHiQP6qf3bRnkklNI0e470b1Yl6Hc=.pem","location":"security-state-staging/intermediates/b4cae8e4-1f4c-4f8f-8e6b-a5611240bcf7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"W91BaGXmCLPVN1dHiQP6qf3bRnkklNI0e470b1Yl6Hc=","crlite_enrolled":false,"id":"238b8a15-e417-4895-866a-8dc86bb8a4c8","last_modified":1562025153315},{"schema":1562025151821,"derHash":"lb5tPC4qOidpXzsxO26vDLoT7VRQ0gQdR9zVeu98e+s=","subject":"CN=MilleniumSign Code Signing Certificate CA RSA R3,O=MilleniumSign Limited,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGSMQswCQYDVQQGEwJNVTEYMBYGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTkwNwYDVQQDDDBNaWxsZW5pdW1TaWduIENvZGUgU2lnbmluZyBDZXJ0aWZpY2F0ZSBDQSBSU0EgUjM=","whitelist":false,"attachment":{"hash
":"aa16bf81f675c6d11a25b78e5994acc69a324c06f3cc278413284cf9ec7b3b19","size":2584,"filename":"l_0NH_ikSLrTCKMvvz6dkNzfx-BPk9wO2rAM1fHHEpE=.pem","location":"security-state-staging/intermediates/632dc22f-8e34-49f2-8ae9-bf7551b8d988.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"l/0NH/ikSLrTCKMvvz6dkNzfx+BPk9wO2rAM1fHHEpE=","crlite_enrolled":false,"id":"3dc118b2-773a-4754-a647-50c4ea325ca4","last_modified":1562025152558},{"schema":1562025150329,"derHash":"w2g/fZF1Qhna2k6Nww5LGL05KLU9Ork9BzhLxYcc41U=","subject":"CN=Cybertrust Japan Secure Server ECC CA,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MGIxCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjEuMCwGA1UEAxMlQ3liZXJ0cnVzdCBKYXBhbiBTZWN1cmUgU2VydmVyIEVDQyBDQQ==","whitelist":false,"attachment":{"hash":"4ef5e6f2d2f8ff4b8ddd818cd5d7d27891e39644ea2ce02225a9d9ce00621aa3","size":1187,"filename":"QNrgssEKlwJV3LCOAwSPpkc3S6pOvGY2WT_YKfPuvVU=.pem","location":"security-state-staging/intermediates/e169883d-c67d-422
b-9497-6e692391df75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QNrgssEKlwJV3LCOAwSPpkc3S6pOvGY2WT/YKfPuvVU=","crlite_enrolled":false,"id":"1add0595-65df-4e38-a378-f1ca21b6bd9f","last_modified":1562025151073},{"schema":1562025148047,"derHash":"o1f9tXSI6jf48c1poBa4Z3+thZJjKlGtqULEcVvxfh4=","subject":"CN=FUJIFILM Fnet CA - G2,O=Fuji Xerox,C=JP","subjectDN":"MEIxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MR4wHAYDVQQDExVGVUpJRklMTSBGbmV0IENBIC0gRzI=","whitelist":false,"attachment":{"hash":"7284b6f8f1a8e6cb3529c35f3bc5ec0859430fef3c6f8a621fc05d84037e0f40","size":1479,"filename":"7zYxtJ9jLwFb0WEOBLAAo-vuoQMJ0Xpx70rmlp9xdfY=.pem","location":"security-state-staging/intermediates/06378283-1c8c-45ce-a045-f2e678089f5f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7zYxtJ9jLwFb0WEOBLAAo+vuoQMJ0Xpx70rmlp9xdfY=","crlite_enrolled":false,"id":"c88511d0-5e08-4e63-9656-6e16d27f3978","last_modified":1562025148790},{"schema":1562025146538,"derHash":"z28k/+SPhAinXPrfK2X4pOQXLzt8JMQ
bW3SB0kAYGXw=","subject":"CN=Symantec Class 3 Organizational CA - G3,OU=Symantec Trust Network+OU=Insattningsgaranti Service CA,O=Symantec Corporation,C=US","subjectDN":"MIGnMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxJjAkBgNVBAsTHUluc2F0dG5pbmdzZ2FyYW50aSBTZXJ2aWNlIENBMTAwLgYDVQQDEydTeW1hbnRlYyBDbGFzcyAzIE9yZ2FuaXphdGlvbmFsIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"c79aef06bad6276fc86a2e31fb1c6f204f6e41a307a218d5e07fd3e65032588b","size":2097,"filename":"nqV8AzrYXrBySpqYUyy2yG0H7CWZY0WpjPUzO0eO4bE=.pem","location":"security-state-staging/intermediates/d5d01852-cb45-4081-80e5-4f7ff5e74906.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nqV8AzrYXrBySpqYUyy2yG0H7CWZY0WpjPUzO0eO4bE=","crlite_enrolled":false,"id":"649f0c89-bf4f-4775-9d3c-d22bb75f0d0c","last_modified":1562025147299},{"schema":1562025145776,"derHash":"0cIAnUcoNa+6lMyKywbdDHJxOK4ec4NDlNJ7DAbPEmU=","subject":"CN=KeystoneHIE KeyHIE CA,OU=Orion Heal
th Direct Secure Messaging,O=Keystone Health Information Exchange (KeyHIE),C=US","subjectDN":"MIGUMQswCQYDVQQGEwJVUzE2MDQGA1UEChMtS2V5c3RvbmUgSGVhbHRoIEluZm9ybWF0aW9uIEV4Y2hhbmdlIChLZXlISUUpMS0wKwYDVQQLEyRPcmlvbiBIZWFsdGggRGlyZWN0IFNlY3VyZSBNZXNzYWdpbmcxHjAcBgNVBAMTFUtleXN0b25lSElFIEtleUhJRSBDQQ==","whitelist":false,"attachment":{"hash":"98e266e29f1b0debc92e5f5f678ff38e4063e78bd781620b0312e9323a4d89b4","size":2316,"filename":"BqFOY5ec4fQq7Sh8blvP9sX_mHtMzqYivI5aRbj6LMc=.pem","location":"security-state-staging/intermediates/da472eb5-f686-41e8-ac2a-b967448f0e11.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BqFOY5ec4fQq7Sh8blvP9sX/mHtMzqYivI5aRbj6LMc=","crlite_enrolled":false,"id":"66d93205-2931-4627-8a5d-ea5331932a90","last_modified":1562025146529},{"schema":1562025145009,"derHash":"VnmkMeedTrnulnxg2HA8fHj0Q/cduXFX5DBZ3kLYUN8=","subject":"CN=KPN BV PKIoverheid Organisatie Server CA - G3,O=KPN B.V.,C=NL","subjectDN":"MHExCzAJBgNVBAYTAk5MMREwDwYDVQQKDAhLUE4gQi5WLjEXMBUGA1UEYQw
OTlRSTkwtMjcxMjQ3MDExNjA0BgNVBAMMLUtQTiBCViBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBTZXJ2ZXIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"afa70e68747e22a197469ee8aea83455014ad7e290fde28fd13e2f68a485c72c","size":2601,"filename":"rW1GnpJmh2k9F6uNIGFDm27MmL0j4O1CwybyyFn-TXs=.pem","location":"security-state-staging/intermediates/317d0f28-56a8-47b7-b730-5bc6a31489ae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rW1GnpJmh2k9F6uNIGFDm27MmL0j4O1CwybyyFn+TXs=","crlite_enrolled":true,"id":"2780fe8e-e8a3-4eae-bb45-d2eddbf234bf","last_modified":1562025145768},{"schema":1562025142734,"derHash":"wAqBg8mGWghHwBFY94Wl813Li1lse/Rv1kl/cvAuXjI=","subject":"CN=TWCA InfoSec User CA,OU=User CA,O=TAIWAN-CA Inc.,C=TW","subjectDN":"MFcxCzAJBgNVBAYTAlRXMRcwFQYDVQQKEw5UQUlXQU4tQ0EgSW5jLjEQMA4GA1UECxMHVXNlciBDQTEdMBsGA1UEAxMUVFdDQSBJbmZvU2VjIFVzZXIgQ0E=","whitelist":false,"attachment":{"hash":"6f175666ee2b368e75d584321a8ac5028a163f7f1f691e5f36e059f87f6f5015","size":1666,"filename":"0XL_diXmZHRX9sGpY
NhcrViPrqHXxyYwucHs8TA_5W8=.pem","location":"security-state-staging/intermediates/8e6bf5f6-5604-4d8c-a6d9-257414f5b6cd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0XL/diXmZHRX9sGpYNhcrViPrqHXxyYwucHs8TA/5W8=","crlite_enrolled":false,"id":"dd2b472f-d1f1-474f-b861-276f1cbec0eb","last_modified":1562025143470},{"schema":1562025141974,"derHash":"OLJs9FyTLqKAGdk+RArHK66D+cv1LWrZE2mLGPzIcX0=","subject":"CN=EINS/PKI Public Certification Authority V4,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMTMwMQYDVQQDEypFSU5TL1BLSSBQdWJsaWMgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgVjQ=","whitelist":false,"attachment":{"hash":"3b9ae4a74d5261ecc85f6b9d358b4c4079b49f0f3a8e227d829b9ac02d03ca98","size":1674,"filename":"hMBp2m4PvojCldfsrzoX4dPk_9MctmHJZLUZTqPmBYk=.pem","location":"security-state-staging/intermediates/dc89c814-2876-4b30-b10a-bc5d94abe445.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hMBp2m4PvojCldfsrzo
X4dPk/9MctmHJZLUZTqPmBYk=","crlite_enrolled":true,"id":"179db5f9-cfdb-44f1-a333-5ce2db577865","last_modified":1562025142725},{"schema":1562025140477,"derHash":"gPWw0W+ujnK58TRv7deIg9SmKdE4L7z8aU9Uv8Hu3Tw=","subject":"CN=NII Open Domain CA - G5,O=National Institute of Informatics,C=JP","subjectDN":"MFsxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFOYXRpb25hbCBJbnN0aXR1dGUgb2YgSW5mb3JtYXRpY3MxIDAeBgNVBAMTF05JSSBPcGVuIERvbWFpbiBDQSAtIEc1","whitelist":false,"attachment":{"hash":"748e4489edca7296798a29e5a219a2b19349b29db773ac9e517d14e1ea4fe49b","size":1630,"filename":"aj-4mbqOOY7cgtDqWtgGaLG69EShl59AQocV--hJAk8=.pem","location":"security-state-staging/intermediates/50ef58fd-9c22-4ac3-9f5e-c898ab5bfbe2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aj+4mbqOOY7cgtDqWtgGaLG69EShl59AQocV++hJAk8=","crlite_enrolled":true,"id":"8b6f71a8-715d-4aba-96bb-ca79f1ec64c7","last_modified":1562025141214},{"schema":1562025136731,"derHash":"vD8K3F/4aks3TcaR+P4nOxuH3HPkOCT1/n82w+AAgxE=","subject":"CN=STRATO SSL
- G4,OU=Domain Validated SSL,O=STRATO AG,C=DE","subjectDN":"MFoxCzAJBgNVBAYTAkRFMRIwEAYDVQQKEwlTVFJBVE8gQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRgwFgYDVQQDEw9TVFJBVE8gU1NMIC0gRzQ=","whitelist":false,"attachment":{"hash":"4e6d887b47fddc0e152fedf91f701e3e14afa9cb17d66c66aff6b81f3b2bf2b0","size":1618,"filename":"5oR-PNh3bknmMosEFMizpVd_K6NW9Mg35aMUY2g_tJ0=.pem","location":"security-state-staging/intermediates/082bceb0-77d7-47d4-9492-01e6b2283094.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5oR+PNh3bknmMosEFMizpVd/K6NW9Mg35aMUY2g/tJ0=","crlite_enrolled":false,"id":"f41316d7-e91d-4076-bd60-7bc27fef2ae5","last_modified":1562025137472},{"schema":1562025134484,"derHash":"Q8rDHvjouhtLFrggbkwKJsW62y/DqgnpAXDkG2bC/WQ=","subject":"CN=GoGetSSL RSA DV CA,O=GoGetSSL,L=Riga,C=LV","subjectDN":"MEwxCzAJBgNVBAYTAkxWMQ0wCwYDVQQHEwRSaWdhMREwDwYDVQQKEwhHb0dldFNTTDEbMBkGA1UEAxMSR29HZXRTU0wgUlNBIERWIENB","whitelist":false,"attachment":{"hash":"416a15c9d2f048314780b6da5dc96d6d118331d05d84ede
cee9e19189b209bfb","size":2085,"filename":"T-6uyT5C6WT480t2wqX2OJ3ZrNt2j8v52bWLj-XIvz8=.pem","location":"security-state-staging/intermediates/15643bb1-316f-4368-ab99-a8a038c5fe52.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"T+6uyT5C6WT480t2wqX2OJ3ZrNt2j8v52bWLj+XIvz8=","crlite_enrolled":true,"id":"61d52502-e268-4365-9df4-7e0aacbfa38e","last_modified":1562025135235},{"schema":1562025133747,"derHash":"QqtNnxgJRU6+wkXY2wb/YaqCibBaJj3+6WYtrJFmYEM=","subject":"SERIALNUMBER=ZZZZZZA6,CN=Siemens Issuing CA Medium Strength Authentication 2016,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIG2MQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQTYxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMT8wPQYDVQQDDDZTaWVtZW5zIElzc3VpbmcgQ0EgTWVkaXVtIFN0cmVuZ3RoIEF1dGhlbnRpY2F0aW9uIDIwMTY=","whitelist":false,"attachment":{"hash":"e0621966aec1e2621a278a766224cf528557ebcfab4270f199e7eea7d2675623","size":2653,"fil
ename":"DrWu4Hq8850SEsM72-PVKQ1tYB6sBR3LCdZJGICQePQ=.pem","location":"security-state-staging/intermediates/272b7db7-0908-4ffc-840c-eef0cb622efd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DrWu4Hq8850SEsM72+PVKQ1tYB6sBR3LCdZJGICQePQ=","crlite_enrolled":false,"id":"2d630350-e60d-4235-9fda-8b0f08314a1c","last_modified":1562025134476},{"schema":1562025132263,"derHash":"6tDFB3yZ+PpAzFVtvC6spB9U6dmevUaJVq6ovsWq92o=","subject":"CN=SSL.com Client Certificate Intermediate CA ECC R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxOjA4BgNVBAMMMVNTTC5jb20gQ2xpZW50IENlcnRpZmljYXRlIEludGVybWVkaWF0ZSBDQSBFQ0MgUjI=","whitelist":false,"attachment":{"hash":"c32940ffc93bbf65d67b3107fd8491c272d8a8bf1f1ee00f8ed0c79366ba5152","size":1301,"filename":"Z0cAXCbw1xo4sVpeEsdPDoiHdluFH7wEtczt9XdK7Sc=.pem","location":"security-state-staging/intermediates/7dc0f3f4-c262-4358-bf27-85f5085b55b4.pem","mimetype":"a
pplication/x-pem-file"},"pubKeyHash":"Z0cAXCbw1xo4sVpeEsdPDoiHdluFH7wEtczt9XdK7Sc=","crlite_enrolled":false,"id":"9a625a71-583a-4afa-9248-664ad9eae363","last_modified":1562025133003},{"schema":1562025130010,"derHash":"uVrlT4OOOr8LV6zMGxJm3GjHo/p3QBX6Eo1gzdGq4oA=","subject":"CN=TeliaSonera Class 1 CA v2,O=TeliaSonera,C=FI","subjectDN":"MEcxCzAJBgNVBAYTAkZJMRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEiMCAGA1UEAwwZVGVsaWFTb25lcmEgQ2xhc3MgMSBDQSB2Mg==","whitelist":false,"attachment":{"hash":"158d92505eb3b45b3e6b4f6ad2ec4039c093d61b3bfe9fd73d31588465d0a2da","size":2532,"filename":"7iiRGudmfB5TF0Xjv7u_ECYjflwjOVVvuWfXqeDL9v8=.pem","location":"security-state-staging/intermediates/caafc12b-ae2e-4f72-b6dc-37355ce3511f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7iiRGudmfB5TF0Xjv7u/ECYjflwjOVVvuWfXqeDL9v8=","crlite_enrolled":false,"id":"08d229d0-4919-4ab4-9baa-f3b645c75af6","last_modified":1562025130755},{"schema":1562025129265,"derHash":"7T23SNbXju/wuUUrxqAuA5A5xVB1pDkyO4uoX7Ibndo=","subject":
"CN=QuoVadis PKIoverheid EV CA,O=QuoVadis Trustlink BV,C=NL","subjectDN":"MFIxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVRdW9WYWRpcyBUcnVzdGxpbmsgQlYxIzAhBgNVBAMMGlF1b1ZhZGlzIFBLSW92ZXJoZWlkIEVWIENB","whitelist":false,"attachment":{"hash":"36c648cb7bd3c186d7d9e0859c485e365c65a8548541b6aa3bbf6e5145b6c94c","size":2422,"filename":"_4M8fiegSVHwMhxeXXG0hHTjicxrP4MocMfnDzRve4Y=.pem","location":"security-state-staging/intermediates/b4128fcb-cc63-4709-a527-2228c4e5c0e6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/4M8fiegSVHwMhxeXXG0hHTjicxrP4MocMfnDzRve4Y=","crlite_enrolled":true,"id":"636a1114-c599-4e1e-9b78-725c0460b51e","last_modified":1562025130001},{"schema":1562025127747,"derHash":"F1cpGj19C7W5uc+IAvGyrhc+VrCTWXD8hrY6J0mdteI=","subject":"CN=Mississippi Division of Medicaid CA,OU=Orion Health Direct Secure Messaging,O=Mississippi Division of Medicaid,C=US","subjectDN":"MIGVMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgTWlzc2lzc2lwcGkgRGl2aXNpb24gb2YgTWVkaWNhaWQxLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3
QgU2VjdXJlIE1lc3NhZ2luZzEsMCoGA1UEAxMjTWlzc2lzc2lwcGkgRGl2aXNpb24gb2YgTWVkaWNhaWQgQ0E=","whitelist":false,"attachment":{"hash":"cca273f49f71c1ff7f8f40ea75ee3f2df48645b9f0d620d081223e02dc8f3321","size":2316,"filename":"QSHb9BKVt3sbbZcpbsYhza74RWYYrCyW2TRiOuRYm24=.pem","location":"security-state-staging/intermediates/0a2a8364-6973-4442-8eef-5927bc28bcef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QSHb9BKVt3sbbZcpbsYhza74RWYYrCyW2TRiOuRYm24=","crlite_enrolled":false,"id":"cef1bd37-f531-4ab9-959c-5a8c3ce41d8a","last_modified":1562025128479},{"schema":1562025127010,"derHash":"0CxXxteEvH/1xNAzwizbpac6L4fZ4diA7HjNGuD4J04=","subject":"CN=TERENA eScience Personal CA 2,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MHIxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEmMCQGA1UEAxMdVEVSRU5BIGVTY2llbmNlIFBlcnNvbmFsIENBIDI=","whitelist":false,"attachment":{"hash":"e1127ebdc239f9dd82e4c2cde697bb33a369369a3c114af4dbb2d849aba0dd
d1","size":2142,"filename":"PRDfx01D2tGMhHfAORezk6RxRuzL198DON5jY4n-V-4=.pem","location":"security-state-staging/intermediates/b176cf5c-6fd4-4e00-9e7b-cf987807af32.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PRDfx01D2tGMhHfAORezk6RxRuzL198DON5jY4n+V+4=","crlite_enrolled":false,"id":"404f7c65-b381-4bf3-af34-70c1b2e70fba","last_modified":1562025127739},{"schema":1562025126254,"derHash":"IlETztpo+6teYo4CFKFaZRxHqn7nu/R2CZtuFC7syOw=","subject":"CN=SECOM TimeStamping CA2,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MFUxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMR8wHQYDVQQDExZTRUNPTSBUaW1lU3RhbXBpbmcgQ0Ey","whitelist":false,"attachment":{"hash":"b79bcebbdbe1d9b2e2ea489fca18c99a683e821b17174c6fea226b5019dbe31c","size":1622,"filename":"kFsLMWudOm7QLAlLqDicbVVw7Daqh252pLGjqKrHPQ4=.pem","location":"security-state-staging/intermediates/3a2cfed7-d044-40b7-a016-e67672e57467.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kFsLMWudOm7QLAlLqDicbV
Vw7Daqh252pLGjqKrHPQ4=","crlite_enrolled":false,"id":"3f00218c-7886-47cf-8ee9-5b1518d9ef10","last_modified":1562025127002},{"schema":1562025121762,"derHash":"Q49HPr/IiE710+DVLSZM2+Vso4LZ6/xonXdIlAn1Wm4=","subject":"CN=Google CA1,O=Google\\, Inc.,L=Mountain View,ST=CA,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEVMBMGA1UEChMMR29vZ2xlLCBJbmMuMRMwEQYDVQQDEwpHb29nbGUgQ0Ex","whitelist":false,"attachment":{"hash":"3af4c41659b8039f273a6dacdf6c94bac5d0c669051cf7c3193a04011fdc1079","size":1695,"filename":"JqNL7R3G-I-oNR0Uoa1_QE7RwLsPo10K2QlsnoYQ8eg=.pem","location":"security-state-staging/intermediates/f88caf87-4bc1-4a4c-a37c-266f3dbed491.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JqNL7R3G+I+oNR0Uoa1/QE7RwLsPo10K2QlsnoYQ8eg=","crlite_enrolled":false,"id":"9f917307-df70-4aef-9de2-d3f38129efe8","last_modified":1562025122497},{"schema":1562025120279,"derHash":"CgXEYnVjkN0fHV3YJ5TDAPBL54nc521+MS95DWj9OFo=","subject":"CN=InCommon RSA Serve
r CA,OU=InCommon,O=Internet2,L=Ann Arbor,ST=MI,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJNSTESMBAGA1UEBxMJQW5uIEFyYm9yMRIwEAYDVQQKEwlJbnRlcm5ldDIxETAPBgNVBAsTCEluQ29tbW9uMR8wHQYDVQQDExZJbkNvbW1vbiBSU0EgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"3959f96c1c3a6e88dfd1193a6ce41b3322674ad833793a0ff92f5a272c114f9f","size":2129,"filename":"b1JA6-4svjmZnxGjAiQY3RS0A9FtjKLCWaRlVmCPM28=.pem","location":"security-state-staging/intermediates/ca260223-49d4-4648-b181-def80753276d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"b1JA6+4svjmZnxGjAiQY3RS0A9FtjKLCWaRlVmCPM28=","crlite_enrolled":true,"id":"4c82bc48-ddcd-4b3d-a03a-9eb182f2f7d6","last_modified":1562025121016},{"schema":1562025118745,"derHash":"N+micetHJck82vGDVix9fZ6o/BOfg3T/5BjXfTJCj+A=","subject":"CN=New Hampshire Health Information Organization CA,OU=Orion Health Direct Secure Messaging,O=New Hampshire Health Information Organization Corporation,C=US","subjectDN":"MIG7MQswCQYDVQQGEwJVUzFCMEAGA1UEChM5TmV3
IEhhbXBzaGlyZSBIZWFsdGggSW5mb3JtYXRpb24gT3JnYW5pemF0aW9uIENvcnBvcmF0aW9uMS0wKwYDVQQLEyRPcmlvbiBIZWFsdGggRGlyZWN0IFNlY3VyZSBNZXNzYWdpbmcxOTA3BgNVBAMTME5ldyBIYW1wc2hpcmUgSGVhbHRoIEluZm9ybWF0aW9uIE9yZ2FuaXphdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"2922fb883b4e192002b98a3501ca3ae60c4ab145c5b910af0e2f4bd8c5fc8929","size":2369,"filename":"FcaQBKoKOodq4LMiSFEUzCJa0dFILZ6txuxivUIQWA4=.pem","location":"security-state-staging/intermediates/8f263fea-ce90-415d-94b7-527302ef2d65.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FcaQBKoKOodq4LMiSFEUzCJa0dFILZ6txuxivUIQWA4=","crlite_enrolled":false,"id":"3b9c9c53-a91e-4f93-aeef-79ae47ea63fc","last_modified":1562025119531},{"schema":1562025118011,"derHash":"roIgH1ZeBDm39K1okydZTrl0pPeBsabL/tWb04IxfxM=","subject":"CN=Thawte TLS ECC CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHTAbBgNVBAMTFFRoYXd0ZSBUTFMgRUNDIENBIEcx","whitelist":
false,"attachment":{"hash":"add9d8816c4153cd678d313dec7135ed32f3b5d71e1c1b6f73bf061cd4162394","size":1142,"filename":"Z2FuypjaQ1wWJ4YxsCzQZPBTleqi8I6cEO-bYvpiEQI=.pem","location":"security-state-staging/intermediates/5724bc90-8b80-4c0c-b710-f8b313c76589.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z2FuypjaQ1wWJ4YxsCzQZPBTleqi8I6cEO+bYvpiEQI=","crlite_enrolled":false,"id":"dff3760d-8e5d-4c69-8668-9cf682af48a9","last_modified":1562025118738},{"schema":1562025117267,"derHash":"xdgUZyz2W5U+b2nnAsfCOl69pFeWqliDQSHfsNBsCEY=","subject":"CN=thawte Primary Transition Root,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMScwJQYDVQQDEx50aGF3dGUgUHJpbWFyeSBUcmFuc2l0aW9uIFJvb3Q=","whitelist":false,"attachment":{"hash":"d074ef6628a7cb58702f27da00b4aba9b3b74c4953ec5393a085dd2c691a1552","size":1313,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-stagin
g/intermediates/89580d25-17ba-4667-ac01-e3e72a6b9158.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"e8972f4c-b265-4859-871b-9a07bfcd532d","last_modified":1562025118003},{"schema":1562025116492,"derHash":"j+l3I5D20iqVPZjbzRl1SsvTQJILDHDdyh/v5Icyl1A=","subject":"CN=EINS/PKI Public Certification Authority V2,O=INTEC INC.,C=JP","subjectDN":"MFcxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpJTlRFQyBJTkMuMTMwMQYDVQQDEypFSU5TL1BLSSBQdWJsaWMgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgVjI=","whitelist":false,"attachment":{"hash":"991ddc8794f0daa071f015020faf9f96b617452fc700241d6b2e77450d2deaea","size":1597,"filename":"UAXhCsI8VFL2KFAMyEK1fRS-4Xo9P8T-q-ZMcJBfvcs=.pem","location":"security-state-staging/intermediates/29482520-eeb7-4ff7-b611-fda14001a03b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UAXhCsI8VFL2KFAMyEK1fRS+4Xo9P8T+q+ZMcJBfvcs=","crlite_enrolled":false,"id":"b388d70b-38e4-4ec1-9c8d-095362f5d6e3","last_modified"
:1562025117259},{"schema":1562025114922,"derHash":"qYyM7ZP5pDYxq+RXOGTgbFGSkAcj6X0e7SwNfGiy0Hk=","subject":"CN=Advanced Code Signing Class2 e-Szigno CA 2016,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGOMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xHDAaBgNVBGEME1ZBVEhVLTIzNTg0NDk3LTItNDExNjA0BgNVBAMMLUFkdmFuY2VkIENvZGUgU2lnbmluZyBDbGFzczIgZS1Temlnbm8gQ0EgMjAxNg==","whitelist":false,"attachment":{"hash":"64067aab0874bc037193b6acdb923c5b3f8be5f6ce9e88eeefe2ebd7d958132b","size":2609,"filename":"xFdYXbpSYOTcKmpFvTeBEjUJFCvx6SNaltd9jtCg594=.pem","location":"security-state-staging/intermediates/8c58155b-730e-4bd1-a4a4-a9d2120083b4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xFdYXbpSYOTcKmpFvTeBEjUJFCvx6SNaltd9jtCg594=","crlite_enrolled":false,"id":"f3a00705-bb5f-44e5-aefb-59098a06f4e5","last_modified":1562025115705},{"schema":1562025114183,"derHash":"G6RA9+sEikAqhwkcSUB0BGJUmirzli+LxxhK0LBLgx0=","subject":"CN=University of Patras CA R1,O=Helle
nic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHgxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEjMCEGA1UEAxMaVW5pdmVyc2l0eSBvZiBQYXRyYXMgQ0EgUjE=","whitelist":false,"attachment":{"hash":"21e16a0dccadb707cc68dc9e26f6d00380e449c017fe72bffa76423cc88355f7","size":2584,"filename":"yWuLmWbmLueFjc04Qp7TQPUOOX-6i8azb2QoXYNtOv8=.pem","location":"security-state-staging/intermediates/fb23a6f7-db94-4b12-a05d-b7c2f1a2c437.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yWuLmWbmLueFjc04Qp7TQPUOOX+6i8azb2QoXYNtOv8=","crlite_enrolled":true,"id":"ea530e37-2e6a-4377-bcbe-2c0bb0fb334f","last_modified":1562025114914},{"schema":1562025113418,"derHash":"91Qc9p0d4ayVOrwfrW94B6NO3+nhLBHmahlZMMI61sY=","subject":"CN=DigiCert Global CA G3,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFURpZ2lDZXJ0IEdsb2JhbCBDQSBHMw==","whitelist":false,"attachment":{"hash":"ca
f0ca58fa4e543dbd0a13f2d28c0f3ba36a68e2ce4db8f05cbe1c0cc102e4ce","size":1106,"filename":"lh6fRVDi7gDQENRcjLNsiTdmqn9awnJtmhUMzPTx6FM=.pem","location":"security-state-staging/intermediates/d3b97027-ab86-4c2f-bde3-30d9f0e79337.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lh6fRVDi7gDQENRcjLNsiTdmqn9awnJtmhUMzPTx6FM=","crlite_enrolled":true,"id":"042596bd-887e-46b0-a897-969aef8e476a","last_modified":1562025114175},{"schema":1562025112681,"derHash":"buBlr1i3BDyyNy/GY540hjBPzQlNnLaDjXaojOIMMN0=","subject":"CN=USERTrust RSA Domain Validation Secure Server CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGTMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE5MDcGA1UEAxMwVVNFUlRydXN0IFJTQSBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"f6e9d1e1c2c0f490e19c26afc850c4184e1f2eebd9f9245a8d6557c5030b419f","size":2170,"filename":"jPQXFCdXn0NxGIW3P3JUl22ASU
1QS7BTE83baBiuZpc=.pem","location":"security-state-staging/intermediates/87e7a783-ce18-4cab-8226-a64514640d48.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jPQXFCdXn0NxGIW3P3JUl22ASU1QS7BTE83baBiuZpc=","crlite_enrolled":true,"id":"37b1fced-36f9-4c04-b5ef-93347b78666e","last_modified":1562025113411},{"schema":1562025111941,"derHash":"e88cihLuCyhUobQQcGUrAyXn0MILnETUrOnGQzh/FDE=","subject":"CN=Class3 KET e-Szigno CA 2018,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MHcxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxJDAiBgNVBAMMG0NsYXNzMyBLRVQgZS1Temlnbm8gQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"b8363cf53cbc0d53826cb443efcf270b8480d872fe5f866c272fe115ac7daa95","size":2227,"filename":"9cUMZguTNlS7SsqERbenmwQ2nFpq1XEyXFYq20LBYKQ=.pem","location":"security-state-staging/intermediates/1e730201-a474-4fd9-b805-d7a04496b3b5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9cUMZguTNlS7SsqERbenmwQ2nFpq1X
EyXFYq20LBYKQ=","crlite_enrolled":false,"id":"a393de41-fe5f-4381-951c-6e5fcf3cb617","last_modified":1562025112674},{"schema":1562025111185,"derHash":"nwMezP+1xfZqL3CFOCDqWrVKfa4bBzwGfQVI2Lx0vms=","subject":"CN=SecureCore RSA Secure Client and Email CA,O=SecureCore,L=OSAKA,ST=OSAKA,C=JP","subjectDN":"MHYxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVPU0FLQTEOMAwGA1UEBxMFT1NBS0ExEzARBgNVBAoTClNlY3VyZUNvcmUxMjAwBgNVBAMTKVNlY3VyZUNvcmUgUlNBIFNlY3VyZSBDbGllbnQgYW5kIEVtYWlsIENB","whitelist":false,"attachment":{"hash":"2bc5fded9a0980430c28b69a3f3a55e6fec28e75e562e0274a8eec10fca95c6d","size":2129,"filename":"KBLXQ9-jOdoOf7rJ1mS67CFv5GiWDtEk9tpsMiIQhZ4=.pem","location":"security-state-staging/intermediates/18a2a864-4b38-4e2d-a9ec-0a188a9bf902.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KBLXQ9+jOdoOf7rJ1mS67CFv5GiWDtEk9tpsMiIQhZ4=","crlite_enrolled":false,"id":"8530b5fa-bac9-4fe6-873e-22d0ae2c14a8","last_modified":1562025111933},{"schema":1562025110415,"derHash":"lcB041kCoUq9nRmvtuf4Dmaf+OI2MnBT
nZY2E/BKqiE=","subject":"CN=GTS CA 1O1,O=Google Trust Services,C=US","subjectDN":"MEIxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVHb29nbGUgVHJ1c3QgU2VydmljZXMxEzARBgNVBAMTCkdUUyBDQSAxTzE=","whitelist":false,"attachment":{"hash":"6b83970dc396a58790e6b658e13c63e57dafec798ebdec22b4b70519932de38c","size":1548,"filename":"YZPgTZ-woNCCCIW3LH2CxQeLzB_1m42QcCTBSdgayjs=.pem","location":"security-state-staging/intermediates/d1df4cf2-b819-43ed-a6e3-59e264ed21b2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YZPgTZ+woNCCCIW3LH2CxQeLzB/1m42QcCTBSdgayjs=","crlite_enrolled":true,"id":"73b3dfa7-731a-4bfe-b218-d585c8e45d6d","last_modified":1562025111178},{"schema":1562025108184,"derHash":"A2oY9fDrndXuAreFTfXDOEVgHYk5z7e2B/adFCwB2Qk=","subject":"CN=TrustAsia TLS RSA CA G8,OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MHUxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEgMB4GA1UEAxMXVHJ1c3RBc2lhIFRMUyBSU0EgQ0EgRzg=
","whitelist":false,"attachment":{"hash":"cbb7a86cf96f690954bcd21bb8c71a00ef436ee942cd65831bf21c11cbc25909","size":1687,"filename":"rnv8EixdQFjoJF2hhedxVmsIlmFhW2jkp1llCWfHEvw=.pem","location":"security-state-staging/intermediates/d04ab9f3-2fc4-47a8-931d-4b644bd07cbf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rnv8EixdQFjoJF2hhedxVmsIlmFhW2jkp1llCWfHEvw=","crlite_enrolled":false,"id":"6687c4bb-a959-4fee-9b6b-63f4d03a8c85","last_modified":1562025108917},{"schema":1562025107419,"derHash":"WNehl/CabqVSuOprGlMYWgMKOtjVIiDADETj9FDk+5A=","subject":"CN=NETLOCK Trust CA,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"MFIxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMRkwFwYDVQQDDBBORVRMT0NLIFRydXN0IENB","whitelist":false,"attachment":{"hash":"162d2ef1f5f7a945a8033cb0bb83b55948d4915840c9e5f98f83b3666f2aec62","size":2060,"filename":"JNdSz2IBG96B7N8LkEnVH6myMdo7MCXP8kJ-NPi5A64=.pem","location":"security-state-staging/intermediates/645b58d9-0779-4656-9fe8-ac54
78c57d4f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JNdSz2IBG96B7N8LkEnVH6myMdo7MCXP8kJ+NPi5A64=","crlite_enrolled":false,"id":"9784e5cb-7f50-43e5-853d-bce88eb86d00","last_modified":1562025108176},{"schema":1562025105176,"derHash":"2C+H+T0x1fyBjdZr1Q5/MZrhefwcXQBUe2WOjrP0zlY=","subject":"CN=NETLOCK Trust Advanced CA,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"MFsxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMSIwIAYDVQQDDBlORVRMT0NLIFRydXN0IEFkdmFuY2VkIENB","whitelist":false,"attachment":{"hash":"d2114d074fdd6d510393f4e4475f26c915693c1226b230324cdcc50ab4dec84b","size":2073,"filename":"vUlRVy11U4UcMGkV_J50oacQuaDzZcAvkc6eUz9yR9c=.pem","location":"security-state-staging/intermediates/ad1cf639-62d7-4f1c-ae01-76b1bce15693.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vUlRVy11U4UcMGkV/J50oacQuaDzZcAvkc6eUz9yR9c=","crlite_enrolled":false,"id":"4772163f-50e2-43cd-9d63-17d1e8176bd8","last_modified":1562025105914},{"schema":1562025102913,"der
Hash":"yJwktBWnLJQJZn6I+15ukqONVgnDyZ5V2ZtLHUWJkPk=","subject":"CN=certSIGN Qualified CA Class 3 G2,OU=certSIGN Qualified CA Class 3 G2,O=certSIGN,C=RO","subjectDN":"MHYxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEpMCcGA1UECxMgY2VydFNJR04gUXVhbGlmaWVkIENBIENsYXNzIDMgRzIxKTAnBgNVBAMTIGNlcnRTSUdOIFF1YWxpZmllZCBDQSBDbGFzcyAzIEcy","whitelist":false,"attachment":{"hash":"8790a1c05eb34050a0518d6b450074d0a070eab4fdfc196e7812a7cc01b12fc8","size":1634,"filename":"UPMbIpu91S39VXXONt79PssKsPf6YLoNySvPP-qGdwY=.pem","location":"security-state-staging/intermediates/dcc54254-18e6-46af-8584-ac6c726a3de5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UPMbIpu91S39VXXONt79PssKsPf6YLoNySvPP+qGdwY=","crlite_enrolled":false,"id":"17f3db66-1a26-4fc2-b72b-4734ccc0cd35","last_modified":1562025103641},{"schema":1562025101431,"derHash":"XSh2HL8wTq/NEns01hT+F5rHdE8VUq8cMSmEJa0FonU=","subject":"CN=Aetna Inc. Secure CA2,O=Aetna Inc,C=US","subjectDN":"MEExCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlBZXRuYSBJbmMxHjAcBg
NVBAMTFUFldG5hIEluYy4gU2VjdXJlIENBMg==","whitelist":false,"attachment":{"hash":"79fdcd0fdb21095bb95b3fb6c0d2e5a49a456e49968efb573d826c26b3cca0e5","size":1683,"filename":"NIgvyyhcGFo7vlL_K_w6cn8iFWO9ftJXWrIU77O5hMI=.pem","location":"security-state-staging/intermediates/f1b50907-9001-4396-aa45-939f75f991c6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NIgvyyhcGFo7vlL/K/w6cn8iFWO9ftJXWrIU77O5hMI=","crlite_enrolled":true,"id":"65d41ecf-d71f-4a7d-bf9b-57d8825ab674","last_modified":1562025102166},{"schema":1562025100681,"derHash":"V9i9zViVWlWQpXxqr6WB7ZuWvtdvr+6WmxORh8Wocsc=","subject":"CN=Sectigo RSA Extended Validation Secure Server CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGRMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxOTA3BgNVBAMTMFNlY3RpZ28gUlNBIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"3c04f880fa1e0f0085d430978a6bc33abae6
717b85151f854d3ff05199bf6410","size":2211,"filename":"hEJ5FNYP7ZpNILySZtJgiP6UtW3ClYUTRFxXGqWSWQ0=.pem","location":"security-state-staging/intermediates/37a9c68e-c8d4-4809-882d-5b941bdb7165.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hEJ5FNYP7ZpNILySZtJgiP6UtW3ClYUTRFxXGqWSWQ0=","crlite_enrolled":true,"id":"3b4f8ef4-d9a1-4755-85ba-fe5df21a98c3","last_modified":1562025101423},{"schema":1562025099203,"derHash":"3Nd+NLRtUwrvZFpRM4nNT/wPfRlqEVuPYqX9DVV9RsY=","subject":"CN=Hyperion SMIME CA 2018,O=Hyperion Services Ltd.,L=London,ST=London,C=GB","subjectDN":"MHExCzAJBgNVBAYTAkdCMQ8wDQYDVQQIEwZMb25kb24xDzANBgNVBAcTBkxvbmRvbjEfMB0GA1UEChMWSHlwZXJpb24gU2VydmljZXMgTHRkLjEfMB0GA1UEAxMWSHlwZXJpb24gU01JTUUgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"3fbf797d090a78ef888fdc499ae42541542cf7827762b8ccc489eb873eddc923","size":1873,"filename":"KZbbX3n6ko-IU98hurc1EgrFvk1o2vwDfC6xMZH_7aA=.pem","location":"security-state-staging/intermediates/2cfb2953-ca27-4ba1-9b23-acac7070e2e8.pe
m","mimetype":"application/x-pem-file"},"pubKeyHash":"KZbbX3n6ko+IU98hurc1EgrFvk1o2vwDfC6xMZH/7aA=","crlite_enrolled":false,"id":"22df953a-4459-4148-a0a1-a104c0645863","last_modified":1562025099933},{"schema":1562025097714,"derHash":"JHptgH/xZAMeDrIsqF3jKaOk5mA9vGID8MbigqnJ6oQ=","subject":"SERIALNUMBER=07945211006,CN=InfoCert Organization Validation CA 3,OU=WSA Trust Service Provider,O=InfoCert S.p.A.,C=IT","subjectDN":"MIGSMQswCQYDVQQGEwJJVDEYMBYGA1UECgwPSW5mb0NlcnQgUy5wLkEuMSMwIQYDVQQLDBpXU0EgVHJ1c3QgU2VydmljZSBQcm92aWRlcjEUMBIGA1UEBRMLMDc5NDUyMTEwMDYxLjAsBgNVBAMMJUluZm9DZXJ0IE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIDM=","whitelist":false,"attachment":{"hash":"f6ce0e2e3315e95e38e3c168f1b2993eea7b2b1811d7782d5cfe1f74278a911d","size":2942,"filename":"a-x8kAay98aATSdhIwydXnat5b0q__ixXZNoxswIZ1o=.pem","location":"security-state-staging/intermediates/2161ca2c-c902-4553-8e92-c331a903b4d7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"a+x8kAay98aATSdhIwydXnat5b0q//ixXZNoxswIZ1o=","cr
lite_enrolled":true,"id":"0ad6adc0-7bae-4a0d-8a0a-ff78e01348df","last_modified":1562025098460},{"schema":1562025096209,"derHash":"6+ABXvZBxICVTtKmiEL8zSqKeSE67tg23fpigujqj2o=","subject":"CN=BlackCert\\, Inc. RSA EV Certification Authority,OU=Controlled by COMODO exclusively for BlackCert\\, Inc.,O=BlackCert\\, Inc.,L=Denver,ST=CO,C=US","subjectDN":"MIG9MQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPQmxhY2tDZXJ0LCBJbmMuMT0wOwYDVQQLEzRDb250cm9sbGVkIGJ5IENPTU9ETyBleGNsdXNpdmVseSBmb3IgQmxhY2tDZXJ0LCBJbmMuMTcwNQYDVQQDEy5CbGFja0NlcnQsIEluYy4gUlNBIEVWIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"cc5e72b6d860c3d9cb108395e1dbe41b4443dcb561415f556b6aa1f3f763729b","size":2272,"filename":"nq1PHRuOp_qQ-vlMQDWIjBXQS9CPEsH5CLd-dlkam7U=.pem","location":"security-state-staging/intermediates/6e6eaa86-3ce0-4465-ab9e-337525dba314.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nq1PHRuOp/qQ+vlMQDWIjBXQS9CPEsH5CLd+dlkam7U=","crlite_enrolled":fa
lse,"id":"df82f80e-3b6f-455e-ae56-4770117ecbdb","last_modified":1562025096954},{"schema":1562025094676,"derHash":"kz5KLY2x/5/w5QjqfxY34HT2YP5vNloiM9/CtSyInZg=","subject":"CN=AlphaSSL CA - SHA256 - G2,O=AlphaSSL","subjectDN":"MDcxETAPBgNVBAoTCEFscGhhU1NMMSIwIAYDVQQDExlBbHBoYVNTTCBDQSAtIFNIQTI1NiAtIEcy","whitelist":false,"attachment":{"hash":"387ae998795c0cb5d04b22c0bbfb366d42adc2767c993a0b6254218326a44c7b","size":1512,"filename":"amMeV6gb9QNx0Zf7FtJ19Wa_t2B7KpCF_1n2Js3UuSU=.pem","location":"security-state-staging/intermediates/0c0cebe7-5e9b-4eac-b906-9e157cfd6a82.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"amMeV6gb9QNx0Zf7FtJ19Wa/t2B7KpCF/1n2Js3UuSU=","crlite_enrolled":true,"id":"6044f076-a6cf-4215-82f0-8b5ff9aa3ffc","last_modified":1562025095417},{"schema":1562025093933,"derHash":"bjKjW1mekIe7GrNc5zAi7C4mrzS+OIkZQZyVcAzY5/s=","subject":"CN=Trusted Root CA G2,OU=Trusted Root,O=GlobalSign nv-sa,C=BE","subjectDN":"MFwxCzAJBgNVBAYTAkJFMRUwEwYDVQQLEwxUcnVzdGVkIFJvb3QxGTAXBgNV
BAoTEEdsb2JhbFNpZ24gbnYtc2ExGzAZBgNVBAMTElRydXN0ZWQgUm9vdCBDQSBHMg==","whitelist":false,"attachment":{"hash":"c6c5a13b2392745618b20f994004aa62c9b088be893958a18f79135b156a42cb","size":1573,"filename":"W66tP4wePoAO-Y8UjUlgyqqFM7jqIJHVT7pIzmYXOtI=.pem","location":"security-state-staging/intermediates/744cf51d-71fb-49fc-8ab6-fe14dce35ca1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"W66tP4wePoAO+Y8UjUlgyqqFM7jqIJHVT7pIzmYXOtI=","crlite_enrolled":true,"id":"7be6334e-99cf-4ea5-b61c-2c199025e86b","last_modified":1562025094668},{"schema":1562025093184,"derHash":"cLahDAynbeznrb6XC3ajfYoChXsTTHUFsYTr1fyk8+o=","subject":"CN=HARICA SSL RSA SubCA R3,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGGMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEgMB4GA1UEAwwXSEFSSUNBIFNTTCBSU0EgU3ViQ0EgUjM=","whitelist":false,"attachment":{"hash":"cedc43d39f09a719a27599d55f
251f9b11242c16b81336fe59c19b7813994c1e","size":2503,"filename":"jBZXnMw3910qHNl4GpA8ufttU_ABxauO7Xs8rkNWmHE=.pem","location":"security-state-staging/intermediates/5542e9c0-bf1d-4c98-b99d-c78ac7be7cf1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jBZXnMw3910qHNl4GpA8ufttU/ABxauO7Xs8rkNWmHE=","crlite_enrolled":true,"id":"6a0c4fba-c9c1-4273-b116-3435c8b09dd6","last_modified":1562025093925},{"schema":1562025092426,"derHash":"DnhDTsitZhNWLIOQ2LMwb8YIfgWTx9WsL6+a0mOHl0U=","subject":"CN=DigiCert Accredited Direct Med CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGsxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKjAoBgNVBAMTIURpZ2lDZXJ0IEFjY3JlZGl0ZWQgRGlyZWN0IE1lZCBDQQ==","whitelist":false,"attachment":{"hash":"53d0dac262584f5d7ebc0923e541b5828cbf1d3a5c1e0cf334be28b3dd82033e","size":2300,"filename":"bJKSpALMZEtN8MtL5JhmKs5KNAAP3Z3m_oaeTa7A8vQ=.pem","location":"security-state-staging/intermediates/c074475f-6f2f-494a-a050-d78b1d741b2
6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bJKSpALMZEtN8MtL5JhmKs5KNAAP3Z3m/oaeTa7A8vQ=","crlite_enrolled":false,"id":"28327394-cfae-4edb-aa78-e5f8d18caf65","last_modified":1562025093176},{"schema":1562025090182,"derHash":"EorBG0j05isu5XngkyLjmhc15zo9lk9eXXInF5b+CjY=","subject":"CN=Oregon State Treasury RSA Client CA,OU=Office of the State Treasurer,O=Oregon State Treasury,L=Salem,ST=Oregon,C=US","subjectDN":"MIGkMQswCQYDVQQGEwJVUzEPMA0GA1UECBMGT3JlZ29uMQ4wDAYDVQQHEwVTYWxlbTEeMBwGA1UEChMVT3JlZ29uIFN0YXRlIFRyZWFzdXJ5MSYwJAYDVQQLEx1PZmZpY2Ugb2YgdGhlIFN0YXRlIFRyZWFzdXJlcjEsMCoGA1UEAxMjT3JlZ29uIFN0YXRlIFRyZWFzdXJ5IFJTQSBDbGllbnQgQ0E=","whitelist":false,"attachment":{"hash":"fff008b20f8ee90e4c5aaa17d09ef3f8aed6655a427538e3fb2d3504b6906b60","size":2174,"filename":"xv6VIcmRAUtsQmMX6xbFZdKy9CyqZlAGKv6q2fNSHWU=.pem","location":"security-state-staging/intermediates/4e1beacd-8dc6-4ec4-a0a1-34c554c6811c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xv6VIcmRAUtsQmMX6xbFZ
dKy9CyqZlAGKv6q2fNSHWU=","crlite_enrolled":false,"id":"52f6a804-6e60-45ab-9e53-115bc19880ea","last_modified":1562025090915},{"schema":1562025089412,"derHash":"fOHbfRbpv+gGkyFKPXxiY6okeJ45kBfmnt5IAuz29xE=","subject":"CN=NETLOCK Trust Qualified SCD CA,O=NETLOCK Ltd.,L=Budapest,C=HU","subjectDN":"MGAxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTkVUTE9DSyBMdGQuMScwJQYDVQQDDB5ORVRMT0NLIFRydXN0IFF1YWxpZmllZCBTQ0QgQ0E=","whitelist":false,"attachment":{"hash":"efcaaf465785dda6f37158642f960522b0fbb28b652b8dd1d415feb8b3843a40","size":2077,"filename":"e2y-IcyyWA7mZKQQFWLVH34cdYOha_33T_SE2Yj7jp8=.pem","location":"security-state-staging/intermediates/da84341e-9c4a-411d-81b2-cba5084edf77.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e2y+IcyyWA7mZKQQFWLVH34cdYOha/33T/SE2Yj7jp8=","crlite_enrolled":false,"id":"33b62fc5-1349-4933-8a0b-bac57c2adc38","last_modified":1562025090175},{"schema":1562025085617,"derHash":"QyY5E7SD628LAgVA+Pe+Ch18nOdlL+D7R0PXITOTVRw=","subject":"CN=Beame.
io CA 1,O=Beame.io Ltd,L=Tel Aviv-Jaffa,ST=Tel Aviv,C=IL","subjectDN":"MGgxCzAJBgNVBAYTAklMMREwDwYDVQQIEwhUZWwgQXZpdjEXMBUGA1UEBxMOVGVsIEF2aXYtSmFmZmExFTATBgNVBAoTDEJlYW1lLmlvIEx0ZDEWMBQGA1UEAxMNQmVhbWUuaW8gQ0EgMQ==","whitelist":false,"attachment":{"hash":"2ede44f6018db9de8c44fdb625cfc55d1f5acf992c2e1601671f84f30bf8b229","size":1800,"filename":"5fxJ002g5Il0LSaAZtiEC7BeF8z-cxBoMLk7llE9WeI=.pem","location":"security-state-staging/intermediates/75df26fa-72c6-408e-b18d-8816a9d5bcfd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5fxJ002g5Il0LSaAZtiEC7BeF8z+cxBoMLk7llE9WeI=","crlite_enrolled":false,"id":"d73fd51e-4861-4081-91b1-760652365c4d","last_modified":1562025086359},{"schema":1562025083342,"derHash":"XIDlafzuk/FaK8BDUQKyagT1qh7JkSwToFiBwarVAtI=","subject":"CN=Cleverbase ID PKIoverheid Burger CA - G3,O=Cleverbase ID B.V.,C=NL","subjectDN":"MHYxCzAJBgNVBAYTAk5MMRswGQYDVQQKDBJDbGV2ZXJiYXNlIElEIEIuVi4xFzAVBgNVBGEMDk5UUk5MLTY3NDE5OTI1MTEwLwYDVQQDDChDbGV2ZXJiYXNlIElEIFBLSW92ZXJoZ
WlkIEJ1cmdlciBDQSAtIEcz","whitelist":false,"attachment":{"hash":"aac14b1ffb25fc6fffba063081448afc1a36690e2d88f82e7b95e6c951203ba5","size":2515,"filename":"c3WqQNTp8NSwj6Ar5Z3bAzdLCkLGhqGXOVps_pS8BKM=.pem","location":"security-state-staging/intermediates/3ed57a24-3064-4897-9209-cdf438896a68.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"c3WqQNTp8NSwj6Ar5Z3bAzdLCkLGhqGXOVps/pS8BKM=","crlite_enrolled":false,"id":"0279ebd1-4242-44b7-a1a2-73190b4f1f39","last_modified":1562025084103},{"schema":1562025081828,"derHash":"yrnBLb3jrV0rwCAbVLGL4gnNXhRqqghau98kGwlt/0c=","subject":"CN=QuoVadis Global SSL ICA G3,O=QuoVadis Limited,C=BM","subjectDN":"ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMw==","whitelist":false,"attachment":{"hash":"02738114b030370213ecaf8808b823088a25f270059a42ccf2185bd1d5cdbf7f","size":2170,"filename":"KM3iZPSceB-hgYuNI-cSg4LRgTiUxCeGjrfXRQAY6Rs=.pem","location":"security-state-staging/intermediates/fb6d60
a1-e61a-44fd-961d-965bb7c9fb88.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KM3iZPSceB+hgYuNI+cSg4LRgTiUxCeGjrfXRQAY6Rs=","crlite_enrolled":true,"id":"6356ab18-9e19-400c-8782-0d5c6bbea774","last_modified":1562025082569},{"schema":1562025081075,"derHash":"PXdLZe6V/W79HIcytX5gfJvuQjw25G9uHMjKHwrmLiM=","subject":"CN=TrustAsia Secure Enterprise Email CA,OU=www.trustasia.com,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MH8xCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMRowGAYDVQQLExF3d3cudHJ1c3Rhc2lhLmNvbTEtMCsGA1UEAxMkVHJ1c3RBc2lhIFNlY3VyZSBFbnRlcnByaXNlIEVtYWlsIENB","whitelist":false,"attachment":{"hash":"20b01b33815a02bfa2f3c548a9482ee66729f3a9eb6744f9b7b7a0a4acbf9d6f","size":1711,"filename":"5AZRODSr4yzVRSQdofdzrLh4-_fDra8nT16mH7dhrIA=.pem","location":"security-state-staging/intermediates/4a0d1ac7-535b-4466-a0e8-0dd4b614ecc7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5AZRODSr4yzVRSQdofdzrLh4+/fDra8nT16mH7dhrIA=","crlite_enrolled":f
alse,"id":"94318fe7-87ee-4ceb-b386-6938eb65acae","last_modified":1562025081815},{"schema":1562025077308,"derHash":"IxbQWi4tNH+hQRNbmO0J9W6B8c9WeXk9OzndbY5GGkg=","subject":"CN=D-TRUST CA 2-2 EV 2016,O=D-Trust GmbH,C=DE","subjectDN":"MF4xCzAJBgNVBAYTAkRFMRUwEwYDVQQKEwxELVRydXN0IEdtYkgxHzAdBgNVBAMTFkQtVFJVU1QgQ0EgMi0yIEVWIDIwMTYxFzAVBgNVBGETDk5UUkRFLUhSQjc0MzQ2","whitelist":false,"attachment":{"hash":"0825406b026a6a7eccc3247066b51626c668bc7f4c309505d5c1e32a1af60822","size":2182,"filename":"i6ujKRFlQ2Ig06L83VzPhB9sBlGOZCDwkUjNLjHtSJo=.pem","location":"security-state-staging/intermediates/8b7d4055-606f-43ea-83f8-a86a2a904797.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i6ujKRFlQ2Ig06L83VzPhB9sBlGOZCDwkUjNLjHtSJo=","crlite_enrolled":true,"id":"6fc15004-2622-45ba-a821-4bcba503d6f5","last_modified":1562025078039},{"schema":1562025076548,"derHash":"vzLalUVxZZqvcVwT7nA+NkPfy67uLYIRDKaOtXy2fOA=","subject":"CN=TUBITAK Kamu SM SSL Sertifika Hizmet Saglayicisi - Surum 1,OU=Kamu Sertifi
kasyon Merkezi - Kamu SM,O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK,L=Gebze - Kocaeli,C=TR","subjectDN":"MIHfMQswCQYDVQQGEwJUUjEYMBYGA1UEBwwPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKDDlUdXJraXllIEJpbGltc2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklUQUsxLTArBgNVBAsMJEthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBTTTFDMEEGA1UEAww6VFVCSVRBSyBLYW11IFNNIFNTTCBTZXJ0aWZpa2EgSGl6bWV0IFNhZ2xheWljaXNpIC0gU3VydW0gMQ==","whitelist":false,"attachment":{"hash":"ab10fd30609bc30f75d3ede708f810cf2fdb009802424fd6ed3e4c6bf308db7c","size":2296,"filename":"FUrqo5K2woGDo0xUxDmAoLHpCJRt3-d67a7xGdVm1s8=.pem","location":"security-state-staging/intermediates/56f71156-d839-4560-9fe4-299ea364f331.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FUrqo5K2woGDo0xUxDmAoLHpCJRt3+d67a7xGdVm1s8=","crlite_enrolled":true,"id":"461c30ef-db33-4e0c-bcf1-c4fb264c2a61","last_modified":1562025077300},{"schema":1562025075778,"derHash":"zWwQig5kHyyhIqqm0D+CZ1nK58b4AOq/dtxItnzQg84=","subject":"CN=COMODO E
CC Domain Validation Secure Server CA 2,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGSMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE4MDYGA1UEAxMvQ09NT0RPIEVDQyBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENBIDI=","whitelist":false,"attachment":{"hash":"7facb26c244929edfadc101e9d19a9d34d32396b62ea53c5d23503e6bc13eb7d","size":1317,"filename":"x9SZw6TwIqfmvrLZ_kz1o0Ossjmn728BnBKpUFqGNVM=.pem","location":"security-state-staging/intermediates/fffcaf3e-173f-4e58-b6c4-9954f5874559.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x9SZw6TwIqfmvrLZ/kz1o0Ossjmn728BnBKpUFqGNVM=","crlite_enrolled":true,"id":"c6b2463c-5d7d-46a7-81b3-08d470deb2cb","last_modified":1562025076540},{"schema":1562025073491,"derHash":"x+l2qnfpJJHCaYQLLxRh5lFHorsYHuWatjvNhnBP5FY=","subject":"CN=SHECA RSA Code Signing CA G3,O=UniTrust,C=CN","subjectDN":"MEcxCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDElMCMGA1UEAwwcU0hF
Q0EgUlNBIENvZGUgU2lnbmluZyBDQSBHMw==","whitelist":false,"attachment":{"hash":"04a5c4549fb8f38d3d8667477114ebb450959d81527a986faab3d950083f6f57","size":1999,"filename":"1ZF5amwL4aSG-YZ86E54FJywudjHd13EF9RlMionCIk=.pem","location":"security-state-staging/intermediates/7f712404-bc1b-47a2-932b-37e11e83d004.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1ZF5amwL4aSG+YZ86E54FJywudjHd13EF9RlMionCIk=","crlite_enrolled":false,"id":"494cbaa5-812e-4b2f-955d-b47b33fc6092","last_modified":1562025074261},{"schema":1562025072011,"derHash":"UCx6hwNB175n2ybb+s+WR6/YmoVL+IEvpO9ww1bsE+U=","subject":"CN=VR IDENT SSL CA 2018,OU=VR IDENT,O=Fiducia & GAD IT AG,C=DE","subjectDN":"MF0xCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMREwDwYDVQQLDAhWUiBJREVOVDEdMBsGA1UEAwwUVlIgSURFTlQgU1NMIENBIDIwMTg=","whitelist":false,"attachment":{"hash":"bef7765a6512b8ca9ae0249e5ae13feb4bab372a421c7f5baac1aa38a4051dc3","size":2097,"filename":"9frFyfDp-D9WCFjQblKwXUi5EgVRtx22594YJETOc_Y=.pem","location":"s
ecurity-state-staging/intermediates/82a38024-ae36-439e-82e2-33dccd4b696e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9frFyfDp+D9WCFjQblKwXUi5EgVRtx22594YJETOc/Y=","crlite_enrolled":true,"id":"d70ce8a6-7038-4f00-b159-048f0e1bb4a7","last_modified":1562025072738},{"schema":1562025065222,"derHash":"Z7vZFEbTre+bIcBXaZbc2OZmjWsMEz8Ha5H6cc7mtCg=","subject":"CN=eMudhra ECC Extended Validation Secure Server CA,OU=Controlled by Sectigo exclusively for eMudhra Technologies Ltd.,O=eMudhra Technologies Limited,L=Bengaluru,ST=Karnataka,C=IN","subjectDN":"MIHhMQswCQYDVQQGEwJJTjESMBAGA1UECBMJS2FybmF0YWthMRIwEAYDVQQHEwlCZW5nYWx1cnUxJTAjBgNVBAoTHGVNdWRocmEgVGVjaG5vbG9naWVzIExpbWl0ZWQxSDBGBgNVBAsTP0NvbnRyb2xsZWQgYnkgU2VjdGlnbyBleGNsdXNpdmVseSBmb3IgZU11ZGhyYSBUZWNobm9sb2dpZXMgTHRkLjE5MDcGA1UEAxMwZU11ZGhyYSBFQ0MgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"f4e2753836be21882cf81baaf3794e45c6251465fdc3122487eaf955a4717b2c","size":1475,"filename":"4i
lprzeauYUkRwucZKCyuMuQcVH9en_FzR8kab23FUw=.pem","location":"security-state-staging/intermediates/5dde594d-faa8-45b6-b6dc-05a87417963b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4ilprzeauYUkRwucZKCyuMuQcVH9en/FzR8kab23FUw=","crlite_enrolled":false,"id":"2a3b5d82-65bb-4191-8f82-c390f1255cee","last_modified":1562025065952},{"schema":1562025064486,"derHash":"n+MG5mPkWWRGRPYKcVOiIUNvuXAaDr2RJO74FZ0Vy0M=","subject":"CN=Volusion\\, Inc. DV SSL CA - G5,OU=Domain Validated SSL,O=Volusion\\, Inc.,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5Wb2x1c2lvbiwgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxJjAkBgNVBAMTHVZvbHVzaW9uLCBJbmMuIERWIFNTTCBDQSAtIEc1","whitelist":false,"attachment":{"hash":"d600675b0ea244526a7e982b0b42e29a9e2f8c443783402839710f9d61aa039d","size":1780,"filename":"0qaE-lR_HlMyGUft-kaWwHccbGBGkL_WTsxQSJfcsSY=.pem","location":"security-state-staging/intermediates/7aa3b67a-7df3-4fce-87db-ff1f1ed65a32.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0
qaE+lR/HlMyGUft+kaWwHccbGBGkL/WTsxQSJfcsSY=","crlite_enrolled":false,"id":"0a95c72f-274f-4fd6-82c2-b58fc7d5898c","last_modified":1562025065214},{"schema":1562025063738,"derHash":"DagZ5S3YXGv8iJljXIvbtq8PtPKDBK4R22eaZ+q2jtU=","subject":"CN=Gehirn Managed Certification Authority - RSA Code Signing,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMUIwQAYDVQQDEzlHZWhpcm4gTWFuYWdlZCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIFJTQSBDb2RlIFNpZ25pbmc=","whitelist":false,"attachment":{"hash":"35d2dd8a48c50a74aef445ab0ec7bae08b2819039adc788c1de3b36cf7650cff","size":2146,"filename":"5rb709u6Spj2XvBxL9BirCoj9Rgkne_qaJSTgc_p_BE=.pem","location":"security-state-staging/intermediates/f20a11f5-df0f-477e-a442-c14708d9220b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5rb709u6Spj2XvBxL9BirCoj9Rgkne/qaJSTgc/p/BE=","crlite_enrolled":false,"id":"7c6dfd39-8b1c-4df2-8ef3-b8c4f355d6db","last_modified"
:1562025064478},{"schema":1562025062950,"derHash":"z3z6T528y8ptIO/evq1OFzs052vaHrHmGfROBulfwgg=","subject":"CN=Wells Fargo Public Trust Certification Authority 01 G2,OU=Organization Validated TLS,O=Wells Fargo & Company,C=US","subjectDN":"MIGTMQswCQYDVQQGEwJVUzEeMBwGA1UECgwVV2VsbHMgRmFyZ28gJiBDb21wYW55MSMwIQYDVQQLExpPcmdhbml6YXRpb24gVmFsaWRhdGVkIFRMUzE/MD0GA1UEAxM2V2VsbHMgRmFyZ28gUHVibGljIFRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IDAxIEcy","whitelist":false,"attachment":{"hash":"6a95abe84c8fbfe5c918a8ab12dc0a36ee395740e96f9b6ac44f84ce7b6f2fd0","size":1727,"filename":"piL8cJbKkJ2PJeful08_TUBtZu6QcnuC-5qgNu13n_c=.pem","location":"security-state-staging/intermediates/997b2303-b010-4dfd-b758-6970b5ab0dad.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"piL8cJbKkJ2PJeful08/TUBtZu6QcnuC+5qgNu13n/c=","crlite_enrolled":true,"id":"a1e2fd83-de14-4ea7-89a4-a885aa53e074","last_modified":1562025063730},{"schema":1562025062205,"derHash":"/x4NIzGWt+wgvt/GWYjgrhmF7GrDMqea3/5xuGvAIIo=","subject"
:"CN=Trustwave Organization Validation SHA256 CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIG1MQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE9MDsGA1UEAxM0VHJ1c3R3YXZlIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNIQTI1NiBDQSwgTGV2ZWwgMTEfMB0GCSqGSIb3DQEJARYQY2FAdHJ1c3R3YXZlLmNvbQ==","whitelist":false,"attachment":{"hash":"c4e85dd715d693fa9930a447454ded3d627e3d3b3b286d7920644bb09c1f9485","size":1788,"filename":"OSqnIRIhJQGKEtc7abZMpS4Y3djh39opzqI2WqlYVqM=.pem","location":"security-state-staging/intermediates/47da45ba-e89b-4a33-9469-9f4ccb00099f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OSqnIRIhJQGKEtc7abZMpS4Y3djh39opzqI2WqlYVqM=","crlite_enrolled":true,"id":"146dea34-1807-4e59-b4c6-47e194cb050a","last_modified":1562025062941},{"schema":1562025061470,"derHash":"ypcck2xpm8XWpgnSUp+QOmD24UGizxK+cjE9pQymThc=","subject":"CN=Entrust Certification Authority - L1C,OU=www.entrust.net
/rpa is incorporated by reference+OU=(c) 2009 Entrust\\, Inc.,O=Entrust\\, Inc.,C=US","subjectDN":"MIGxMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L3JwYSBpcyBpbmNvcnBvcmF0ZWQgYnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAwOSBFbnRydXN0LCBJbmMuMS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFD","whitelist":false,"attachment":{"hash":"e336697d6d6d247a3534a773c8f042c58cc674921c708305291fc08c2c8f71c1","size":1780,"filename":"VFv5NemtodoRftw8KsvFb8AoCWwOJL6bOJS-Ui0bQ94=.pem","location":"security-state-staging/intermediates/05273d59-b2eb-4c09-919e-6bb3e8f76735.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VFv5NemtodoRftw8KsvFb8AoCWwOJL6bOJS+Ui0bQ94=","crlite_enrolled":false,"id":"173e072b-5593-4d2c-a599-a3f87cc0518b","last_modified":1562025062198},{"schema":1562025059950,"derHash":"mxby9oDXxL1qZ/YJNA2mQWq/nkPxMmsBuYgZInHQtfI=","subject":"CN=TWCA Secure SSL Certification Authority,OU=Secure SSL Sub-CA,O=TAIWAN-CA,C=TW","subjectDN":"MG
8xCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExGjAYBgNVBAsTEVNlY3VyZSBTU0wgU3ViLUNBMTAwLgYDVQQDEydUV0NBIFNlY3VyZSBTU0wgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"acd717a163c1e31ec674bb2953f2f16be424838b5d36e703984df5d77c80d023","size":2032,"filename":"8hqbhsMMFPaPA8t81pxqFer9-neHBcQvO7-TAKjWkb0=.pem","location":"security-state-staging/intermediates/264eee83-19f9-4406-ab9f-ae5fc55e9a70.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8hqbhsMMFPaPA8t81pxqFer9+neHBcQvO7+TAKjWkb0=","crlite_enrolled":true,"id":"2535f8ba-07ba-4b54-85a8-742db433036d","last_modified":1562025060710},{"schema":1562025058467,"derHash":"eUxj2yRLpz+yhvFdq40MpUJVCDgemIRJVOY4I7tdf3Q=","subject":"CN=TERENA Code Signing CA 3 G3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MHAxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEkMCIGA1UEAxMbVEVSRU5BIENvZGUgU2lnbmluZyBDQSAzIEcz","whitelist":false,"attachment":{"hash":"67d12
a6df588120ded0c554ece180c84351d42fc41dbf982b6948dab2df22467","size":1597,"filename":"FeQyg5uKifHhVqnOqFJSwfGgb8uYTvS8cKI3bV75nCc=.pem","location":"security-state-staging/intermediates/62b75d9a-a2dd-494d-a88d-c787419e47d1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FeQyg5uKifHhVqnOqFJSwfGgb8uYTvS8cKI3bV75nCc=","crlite_enrolled":false,"id":"539ffd44-f8ec-443f-8e22-8157ceeced08","last_modified":1562025059208},{"schema":1562025056217,"derHash":"8crKarI1CnZowT5BlgkIaB2vzH42jcuNR/7PljE5BIE=","subject":"CN=TrustAsia ECC OV TLS Pro CA,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFoxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSQwIgYDVQQDExtUcnVzdEFzaWEgRUNDIE9WIFRMUyBQcm8gQ0E=","whitelist":false,"attachment":{"hash":"6c1475f6577a7d8b8cd4032290f9d3b4f16ef261f5dea618390de753433264ba","size":1435,"filename":"Gk60bmqo_Mr2nOHuGjR4JqFa8B4v-ZsjwYEWTGOxLZ8=.pem","location":"security-state-staging/intermediates/80dd276f-7f90-4ae3-bab0-8c263d2a1ebf.pem","mi
metype":"application/x-pem-file"},"pubKeyHash":"Gk60bmqo/Mr2nOHuGjR4JqFa8B4v+ZsjwYEWTGOxLZ8=","crlite_enrolled":true,"id":"63b7bdc2-0b6c-4e17-a4de-f25eb0e600ee","last_modified":1562025056958},{"schema":1562025054736,"derHash":"YaAep+jYAWzO+S/xPj2+CC4HecTLZL9vDDFiWNYhD1w=","subject":"CN=Postecom CS5,OU=Servizi di Certificazione,O=Postecom S.p.A.,C=IT","subjectDN":"MGIxCzAJBgNVBAYTAklUMRgwFgYDVQQKEw9Qb3N0ZWNvbSBTLnAuQS4xIjAgBgNVBAsTGVNlcnZpemkgZGkgQ2VydGlmaWNhemlvbmUxFTATBgNVBAMTDFBvc3RlY29tIENTNQ==","whitelist":false,"attachment":{"hash":"f73449e65874ddaf76a68ad4ca913f3ef07165a4119dcb650289f8ff2ba6de0e","size":1821,"filename":"S7BcBDWMjWvsvh-sjH2B5aN-jXOOiQoUlhVMqtpLSWw=.pem","location":"security-state-staging/intermediates/cdd87641-44fd-450b-9842-0b4bacada09c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S7BcBDWMjWvsvh+sjH2B5aN+jXOOiQoUlhVMqtpLSWw=","crlite_enrolled":false,"id":"89689b27-7f23-4f31-a04c-fef27fbc6e21","last_modified":1562025055469},{"schema":1562025053217,"d
erHash":"1B0jxRVZ9l5cIlA9enq/XNll7DnGHGmKfZjXl69we0g=","subject":"CN=QuoVadis PKIoverheid Burger CA - G3,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MHYxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEXMBUGA1UEYQwOTlRSTkwtMzAyMzc0NTkxLDAqBgNVBAMMI1F1b1ZhZGlzIFBLSW92ZXJoZWlkIEJ1cmdlciBDQSAtIEcz","whitelist":false,"attachment":{"hash":"c7a9f074902a6aa68cc5daf09ea2342f7c79943b0a12ce3c81b74e5b11a70d93","size":2515,"filename":"yXbbq97SU3naAOm_9b7Z3abjalu8evwL90mvR5tYrxI=.pem","location":"security-state-staging/intermediates/31886e5b-8fc9-43a9-be21-dedceb3da392.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yXbbq97SU3naAOm/9b7Z3abjalu8evwL90mvR5tYrxI=","crlite_enrolled":false,"id":"6ff3e434-3089-4258-9de6-40967e5f4132","last_modified":1562025053958},{"schema":1562025050938,"derHash":"RN/NLFcxEOdL9OhZA1lfZgZQ7ZJbcwZULFToc5ZnHwM=","subject":"CN=Entrust Timestamping CA - TS1,OU=See www.entrust.net/legal-terms+OU=(c) 2015 Entrust\\, Inc. - for authorized use only,O=En
trust\\, Inc.,C=US","subjectDN":"MIGyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTUgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MSYwJAYDVQQDEx1FbnRydXN0IFRpbWVzdGFtcGluZyBDQSAtIFRTMQ==","whitelist":false,"attachment":{"hash":"577dbd9da74652ee25974192c61a23516212a969fc34528add1fcc80925bd074","size":1821,"filename":"2ZRlUMP6KnCWtb1kDwzUvFMy7HFk7d75zoOnwZikIso=.pem","location":"security-state-staging/intermediates/d1400fc2-ba20-411a-a9ec-82f2036a0d41.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2ZRlUMP6KnCWtb1kDwzUvFMy7HFk7d75zoOnwZikIso=","crlite_enrolled":true,"id":"2e96e934-bc60-4e45-b1ae-6ac3cd4d7192","last_modified":1562025051685},{"schema":1562025050182,"derHash":"WkmxWuYP9ifaJyqHQ9ZxYrrKEJYWggMhOs+CJ69MSUI=","subject":"CN=Herritar eta Erakundeen CA - CA de Ciudadanos y Entidades (3),OU=NZZ Ziurtagiri publikoa - Certificado publico SCI,O=IZENPE S.A.,C=ES","subjectDN":"MIGnMQswC
QYDVQQGEwJFUzEUMBIGA1UEChMLSVpFTlBFIFMuQS4xOjA4BgNVBAsTMU5aWiBaaXVydGFnaXJpIHB1Ymxpa29hIC0gQ2VydGlmaWNhZG8gcHVibGljbyBTQ0kxRjBEBgNVBAMTPUhlcnJpdGFyIGV0YSBFcmFrdW5kZWVuIENBIC0gQ0EgZGUgQ2l1ZGFkYW5vcyB5IEVudGlkYWRlcyAoMyk=","whitelist":false,"attachment":{"hash":"d85bcef74f09e1dbd2ce16da48da2ee5fc7a20a7fff9caa5dc49af6709f5f48c","size":2576,"filename":"bMhIINBfI65xm4qrUlaPfhKn2U2zsWEE7sOwUjKeoT8=.pem","location":"security-state-staging/intermediates/d89eb328-693b-4b24-90f8-34bf2e499dca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bMhIINBfI65xm4qrUlaPfhKn2U2zsWEE7sOwUjKeoT8=","crlite_enrolled":true,"id":"fb272741-7da4-469b-ab59-52ece6f412f9","last_modified":1562025050930},{"schema":1562025048669,"derHash":"O21wEzGoy4CUQ+QqcyutZ18iWxXMQ5rPJqCVh8iF7P0=","subject":"CN=Symantec Class 3 ECC 256 bit SSL CA - G2,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGAMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcm
sxMTAvBgNVBAMTKFN5bWFudGVjIENsYXNzIDMgRUNDIDI1NiBiaXQgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"dd8428516f7ee04d365e81abc17f14b27db1dd65e497858fb5076ee6a42789d1","size":1544,"filename":"pvsOo_07kXBfe36yjJgm6H46EJRe7gurjSAeunJgFyg=.pem","location":"security-state-staging/intermediates/c43cbcd9-1879-4ef8-a529-ade872f5c07d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pvsOo/07kXBfe36yjJgm6H46EJRe7gurjSAeunJgFyg=","crlite_enrolled":true,"id":"76183d88-9a69-4233-a9d4-377d8af9daef","last_modified":1562025049405},{"schema":1562025045660,"derHash":"IR3fUFkimzV3dg1iPVFI25Ly0FJupTA+fuoDANn6/z8=","subject":"CN=GeoTrust SSL CA - G4,O=GeoTrust Inc.,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQDExRHZW9UcnVzdCBTU0wgQ0EgLSBHNA==","whitelist":false,"attachment":{"hash":"4b9e0e629f273674af2b982675d640bf5da8b3cc39e14022da35f88d46659b08","size":1492,"filename":"QoTQx7p3k0wVLzWrcAjFS6UajzFlS4Lr9rtoIZxCk4g=.pem","location":"security-state-sta
ging/intermediates/c774e78c-fcab-4c20-88c0-0ac1d943184e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QoTQx7p3k0wVLzWrcAjFS6UajzFlS4Lr9rtoIZxCk4g=","crlite_enrolled":false,"id":"eefd72ee-9737-4b19-895e-8b65b055fa5f","last_modified":1562025046407},{"schema":1562025044898,"derHash":"VIN+97WsSqI2BqFe8w3kbpu34j5g9u1PJhIJK5Ttxo8=","subject":"CN=Data Management Intermediate Certificate Authority,OU=Fresenius Kabi USA,O=Fresenius Kabi AG,C=US","subjectDN":"MIGDMQswCQYDVQQGEwJVUzEaMBgGA1UEChMRRnJlc2VuaXVzIEthYmkgQUcxGzAZBgNVBAsTEkZyZXNlbml1cyBLYWJpIFVTQTE7MDkGA1UEAxMyRGF0YSBNYW5hZ2VtZW50IEludGVybWVkaWF0ZSBDZXJ0aWZpY2F0ZSBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"e31d3bb304fdcef75199ff47761dd7a91e1a654cedec5485da203640dc0eee39","size":1748,"filename":"6tOYk51VDHXklgQiMTHvUHAqQsHRj8do_RweZi812do=.pem","location":"security-state-staging/intermediates/941016f3-c0dc-47ea-8440-1a189d509dbf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6tOYk51VDHXklgQiMTHvUHAqQsHRj
8do/RweZi812do=","crlite_enrolled":true,"id":"1e9a1998-a52f-498c-8217-0418e4aaeb12","last_modified":1562025045652},{"schema":1562025043405,"derHash":"umoMEXDhxzI4YHSbXnsO02WXXY/JB0CxXXD4Q6I5SUI=","subject":"CN=Secure Site Pro CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xGzAZBgNVBAMTElNlY3VyZSBTaXRlIFBybyBDQQ==","whitelist":false,"attachment":{"hash":"66b49fd854d0f3af5d909f8ce76dcf4b94b573305dd98b683cde0582e3dfb8c4","size":1674,"filename":"yFzqzO6UfU8CG8Xw6hrhKs8Wc7kjwaPPHpMW5A4WT3k=.pem","location":"security-state-staging/intermediates/c371d115-079f-4788-8e8b-6a4ee2c482b2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yFzqzO6UfU8CG8Xw6hrhKs8Wc7kjwaPPHpMW5A4WT3k=","crlite_enrolled":true,"id":"283d1332-2aae-4370-8412-97de93ae7f53","last_modified":1562025044153},{"schema":1562025041146,"derHash":"ayMo5//1mLKt+Qt/PqQrRfpgbXjisRe31g6Z6CjPdWU=","subject":"CN=SecurityMetrics DigiCer
t EV CA,OU=www.securitymetrics.com,O=SecurityMetrics,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMRgwFgYDVQQKEw9TZWN1cml0eU1ldHJpY3MxIDAeBgNVBAsTF3d3dy5zZWN1cml0eW1ldHJpY3MuY29tMScwJQYDVQQDEx5TZWN1cml0eU1ldHJpY3MgRGlnaUNlcnQgRVYgQ0E=","whitelist":false,"attachment":{"hash":"336f835546bcbd7bfe88c38d0c674fd47a6a5c5be1a5486d4daa23f269db4fcd","size":2316,"filename":"f8vazxLVGT76Jd96F8flimC6GezMF1z65oKBNglhwWI=.pem","location":"security-state-staging/intermediates/7c79f9fa-67cb-4c11-82e6-64052aec3db6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"f8vazxLVGT76Jd96F8flimC6GezMF1z65oKBNglhwWI=","crlite_enrolled":false,"id":"628f9c50-cfa7-4a7f-b0c3-3351d5f5cf3a","last_modified":1562025041897},{"schema":1562025035890,"derHash":"ZJkbaYayLPAGSdr4+pIu2aFNyDBcznzYNyy/SGXmrzU=","subject":"CN=InCommon RSA Standard Assurance Client CA,OU=InCommon,O=Internet2,L=Ann Arbor,ST=MI,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzELMAkGA1UECBMCTUkxEjAQBgNVBAcTCUFubiBBcmJvcjESMBAGA1UEChMJSW50ZXJuZXQyMREwDwYDVQ
QLEwhJbkNvbW1vbjEyMDAGA1UEAxMpSW5Db21tb24gUlNBIFN0YW5kYXJkIEFzc3VyYW5jZSBDbGllbnQgQ0E=","whitelist":false,"attachment":{"hash":"5516a3bdf31fbe862f6d40c679b1e72adff036e89dc6da16d3f805c225393b32","size":2146,"filename":"eMuPzKB_rex8LWz8BNirHFcDvwMQzLyJm8N3Lt63-H0=.pem","location":"security-state-staging/intermediates/993a6a3b-3703-47e1-b7d3-1b59393d7302.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eMuPzKB/rex8LWz8BNirHFcDvwMQzLyJm8N3Lt63+H0=","crlite_enrolled":true,"id":"f5dcc1de-de9d-438d-96d4-2168936f35d2","last_modified":1562025036647},{"schema":1562025035117,"derHash":"RCLpY+5TzVjMn4XNQL9f/sAJX98aFUU1ZhwcBrytxps=","subject":"CN=RapidSSL TLS RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHzAdBgNVBAMTFlJhcGlkU1NMIFRMUyBSU0EgQ0EgRzE=","whitelist":false,"attachment":{"hash":"69d032f5f19ec96ac1d0f6f0b439e8d2c2bfd00ab74cdabf88312932bac1b34f","size":1691,"filename":"E3tYcwo
9CiqATmKtpMLW5V-pzIq-ZoDmpXSiJlXGmTo=.pem","location":"security-state-staging/intermediates/375bde0a-beb6-483a-9339-61f13f530c25.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"E3tYcwo9CiqATmKtpMLW5V+pzIq+ZoDmpXSiJlXGmTo=","crlite_enrolled":true,"id":"59d85ee5-bf80-40cd-a805-345268365f1f","last_modified":1562025035883},{"schema":1562025032835,"derHash":"qOuP4Jnphs1iLWIRX+xzCnBUIvTTRlns8XvdbSZe+WQ=","subject":"SERIALNUMBER=201724,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzI0","whitelist":false,"attachment":{"hash":"c362bc91d6eb297cf53c9ce9a9b934af9e305ffa3e0cc90c664c495fee09c6ff","size":2402,"filename":"YTmDkSKXvIVulXo3XSSMwIrhUc6vs-5me4IYjfUANq4=.pem","location":"security-state-staging/intermediates/c1485633-198e-4497-9bc4-30b5e3e29c77.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YTmDkSKXvIVulXo3XSSMwIrhUc6vs+
5me4IYjfUANq4=","crlite_enrolled":false,"id":"f7154206-f444-4a55-bee3-ce319dda62c2","last_modified":1562025033589},{"schema":1562025031339,"derHash":"ghzFXOfsXHT+u0L2JOtqNsR4IVox7Wfjz3I6Z+jHXro=","subject":"CN=cPanel\\, Inc. Certification Authority,O=cPanel\\, Inc.,L=Houston,ST=TX,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJUWDEQMA4GA1UEBxMHSG91c3RvbjEVMBMGA1UEChMMY1BhbmVsLCBJbmMuMS0wKwYDVQQDEyRjUGFuZWwsIEluYy4gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"cc5ca55f55fe8db39161538d89c9181ab530eb451e3e3b5363c71f91b98190bd","size":2121,"filename":"hOF1upiO-xevnDEQ13g3aY3M3Uqa44RN5rVlwvU2WC8=.pem","location":"security-state-staging/intermediates/5083a119-aa5f-40e8-ad0e-86d5bc86d01f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hOF1upiO+xevnDEQ13g3aY3M3Uqa44RN5rVlwvU2WC8=","crlite_enrolled":true,"id":"7e0a7eb1-8624-47dc-a0e1-488b57b12c42","last_modified":1562025032080},{"schema":1562025030594,"derHash":"RbKjpNBu5lLpQPq8pc2HIcH7f+7Yt1sMx/Bn4
dJuLP4=","subject":"CN=TrustAsia ECC CA G9,OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEcMBoGA1UEAxMTVHJ1c3RBc2lhIEVDQyBDQSBHOQ==","whitelist":false,"attachment":{"hash":"bd06281ba8b65c487bcaf02e8c67fced703516ea1e968c14dad4048435006cb1","size":1158,"filename":"E_JWIAleox34urTjQsyJItGCeb7utaBK4A4Q4BxWn7Q=.pem","location":"security-state-staging/intermediates/53fd78cb-a50d-4f97-aae6-46787d4f5ee8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"E/JWIAleox34urTjQsyJItGCeb7utaBK4A4Q4BxWn7Q=","crlite_enrolled":false,"id":"2c378a94-8c79-4f69-9f15-f546474cf1e0","last_modified":1562025031331},{"schema":1562025026869,"derHash":"Y0wIQiwQQdC0OZj4cgnfyt+ALReYKkGINkYQ47JwIuY=","subject":"CN=TrustOcean EV SSL CA - ECC - 2019,OU=Controlled by Sectigo exclusively for TrustOcean Ltd.+OU=ECC Extended Validation Secure Server - 2019,O=TrustOcean Ltd.,L
=Denver,ST=CO,C=US","subjectDN":"MIHoMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPVHJ1c3RPY2VhbiBMdGQuMT4wPAYDVQQLEzVDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIFRydXN0T2NlYW4gTHRkLjE1MDMGA1UECxMsRUNDIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciAtIDIwMTkxKjAoBgNVBAMTIVRydXN0T2NlYW4gRVYgU1NMIENBIC0gRUNDIC0gMjAxOQ==","whitelist":false,"attachment":{"hash":"c519d329637101adf8248c369a8ab756f60797499dbf135d441c9e2ce13d0271","size":1488,"filename":"Vc2_CgGqt67rbPDmVebdbcjW8DdUmegpdRVNRHMHKK8=.pem","location":"security-state-staging/intermediates/500b6284-ebaf-43a0-9c1b-6ef5e20dd053.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Vc2/CgGqt67rbPDmVebdbcjW8DdUmegpdRVNRHMHKK8=","crlite_enrolled":false,"id":"bbdc2c26-85fe-4475-95d7-a38dbd368c3e","last_modified":1562025027604},{"schema":1562025022401,"derHash":"Jb/bHF/izOBR7G378rsk54yS+WmxuzeGfa7fk9Gnrn4=","subject":"CN=SHECA Extended Validation SSL CA,O=UniTrust,C=CN","subjectDN":"MEsxCzAJBgNVBAYTAkNOM
REwDwYDVQQKDAhVbmlUcnVzdDEpMCcGA1UEAwwgU0hFQ0EgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTU0wgQ0E=","whitelist":false,"attachment":{"hash":"42b647c52ed57012729814fa390a3a85ee801287cea6820f002c3e2d0f8cb467","size":1959,"filename":"J1sjCSbhps4X1wNpt4UhFDB8y_McQPnMa3S-sE4q0u0=.pem","location":"security-state-staging/intermediates/270af4bc-d20d-421d-baa5-121348e70203.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"J1sjCSbhps4X1wNpt4UhFDB8y/McQPnMa3S+sE4q0u0=","crlite_enrolled":false,"id":"d83176fc-a4d2-461d-84e7-446080d64684","last_modified":1562025023133},{"schema":1562025021661,"derHash":"vbeqKPFk5LwV1pIHM7Ij7ZjlUiCj5W87Hs/QTofTC3E=","subject":"CN=InCommon ECC Server CA,OU=InCommon,O=Internet2,L=Ann Arbor,ST=MI,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJNSTESMBAGA1UEBxMJQW5uIEFyYm9yMRIwEAYDVQQKEwlJbnRlcm5ldDIxETAPBgNVBAsTCEluQ29tbW9uMR8wHQYDVQQDExZJbkNvbW1vbiBFQ0MgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"bd2692889db0e772b2adde17ac8a48c54a2d7f098304383c50e831df081e8097
","size":1293,"filename":"8Ped1-_2NPqUB2Q-UJri8oBJaaIrldtkbw8LmkGTkrE=.pem","location":"security-state-staging/intermediates/c7b87f92-6e81-430b-96fe-25ebc26395bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8Ped1+/2NPqUB2Q+UJri8oBJaaIrldtkbw8LmkGTkrE=","crlite_enrolled":true,"id":"f7abff5f-fd5e-4449-bd72-971145c852f0","last_modified":1562025022393},{"schema":1562025020924,"derHash":"qfjQ7GD3LYrIefbjzDgOUACYvACAwHrFOfrmglQ//AI=","subject":"CN=UbiquiTLS\u2122 DV ECC Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGAMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDEmMCQGA1UEAwwdVWJpcXVpVExT4oSiIERWIEVDQyBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"1cf7f75e73f68c6177fe790e1d4a9c2fe8833648fe4b568093a3cd04201f3bce","size":1293,"filename":"PCnX_sRleYJP1z0cO3yKQbR6-NN9ywVZIPJzzytrEH8=.pem","location":"security-state-staging/intermediates/322e50ca-ba44-4200-89bd-bdf70
4bce13c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PCnX/sRleYJP1z0cO3yKQbR6+NN9ywVZIPJzzytrEH8=","crlite_enrolled":false,"id":"da8c9975-55f9-4df4-8621-e6a574681b68","last_modified":1562025021653},{"schema":1562025017923,"derHash":"d/6HahxHY0n165rpv1P3gUoK5BFWJmfFi37SeGnFQJE=","subject":"CN=Symantec Class 3 ECC 384 bit Extended Validation CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxPDA6BgNVBAMTM1N5bWFudGVjIENsYXNzIDMgRUNDIDM4NCBiaXQgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"4d67dc1e033fc9d483ce72d6b2665130f2837b5d642207e8d127e5fa9124e5fb","size":1451,"filename":"Rj9-JX3TAMGFOmCkoBiFCNUGzpcbKCjKv1dH5mqR0wo=.pem","location":"security-state-staging/intermediates/0c746153-158f-4efa-a07b-d38f5298431c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Rj9+JX3TAMGFOmCkoBiFCNUGzpcbKCjKv1dH5mqR0wo=","crlite_enr
olled":false,"id":"f5db4a59-ac54-49e3-b94d-2b61159c94ce","last_modified":1562025018653},{"schema":1562025017174,"derHash":"Rh+0YuUdVKWaBBzVplF2CuhHrhwnwQOIfVLsCV9o5zw=","subject":"CN=Oracle RSA CA G1,OU=Organization Validated SSL,O=Oracle Corporation,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJPcmFjbGUgQ29ycG9yYXRpb24xIzAhBgNVBAsTGk9yZ2FuaXphdGlvbiBWYWxpZGF0ZWQgU1NMMRkwFwYDVQQDExBPcmFjbGUgUlNBIENBIEcx","whitelist":false,"attachment":{"hash":"c6475b4f4c4fecb05c8501f5cc0843d9255b24c61d4ff8f2e5c97fbc6b780faf","size":1687,"filename":"5YjN9RnyFnf-H3-j50ooFCdGoEN44UPUyAMy2UFnZYY=.pem","location":"security-state-staging/intermediates/12c5bd58-7852-4637-a5cb-95ca447bc7e3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5YjN9RnyFnf+H3+j50ooFCdGoEN44UPUyAMy2UFnZYY=","crlite_enrolled":false,"id":"0ee8a5b9-c069-43f3-ada0-e50684926783","last_modified":1562025017915},{"schema":1562025016420,"derHash":"S5bvoShnuKvyrZtO2/op2eCJsYO7XLfIG4OT+mlr0ME=","subject":"SERIALNUMBER=201901,CN
=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE5MDE=","whitelist":false,"attachment":{"hash":"19844f98179cd99f2c77dee6696880e76d7b2450ccdd651197a6ff8fd22b5edd","size":2337,"filename":"42J41ut5RRKEnkyB1fMHY7UKcEEByr5294Y5ffs_a6Q=.pem","location":"security-state-staging/intermediates/30bef80e-101a-4453-bd8d-ac9065a9f125.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"42J41ut5RRKEnkyB1fMHY7UKcEEByr5294Y5ffs/a6Q=","crlite_enrolled":false,"id":"93b323b4-b4ee-4918-b6e5-97943a6135df","last_modified":1562025017166},{"schema":1562025015677,"derHash":"LQaxtec1DZSaC9WAU9/tbwJgrlMV1BMqDMg/8Ilck8o=","subject":"CN=University of Texas Health Science Center at San Antonio RSA CA,O=The University of Texas Health Science Center at San Antonio,L=San Antonio,ST=TX,C=US","subjectDN":"MIHBMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVFgxFDASBgNVBAcTC1NhbiBBb
nRvbmlvMUUwQwYDVQQKEzxUaGUgVW5pdmVyc2l0eSBvZiBUZXhhcyBIZWFsdGggU2NpZW5jZSBDZW50ZXIgYXQgU2FuIEFudG9uaW8xSDBGBgNVBAMTP1VuaXZlcnNpdHkgb2YgVGV4YXMgSGVhbHRoIFNjaWVuY2UgQ2VudGVyIGF0IFNhbiBBbnRvbmlvIFJTQSBDQQ==","whitelist":false,"attachment":{"hash":"b5fb6720dcb740e7f089749a940f3ceaa8902143d027d65eff3d9013fa534d8e","size":2231,"filename":"nuC4L1p-OVZKcOe0o9CULKzfd9QuBwKRkV8NDZkcSAg=.pem","location":"security-state-staging/intermediates/e6c015a5-266c-46ba-907e-17bb1e4fc7c4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nuC4L1p+OVZKcOe0o9CULKzfd9QuBwKRkV8NDZkcSAg=","crlite_enrolled":false,"id":"8bda349b-e57d-4195-bbfb-0da391a25173","last_modified":1562025016412},{"schema":1562025014914,"derHash":"8y3q8iznJGYfU9UocxGv8lQes47K9J3Yd7lAI+OhGx8=","subject":"CN=SecurityMetrics DigiCert CA,OU=www.securitymetrics.com,O=SecurityMetrics,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRgwFgYDVQQKEw9TZWN1cml0eU1ldHJpY3MxIDAeBgNVBAsTF3d3dy5zZWN1cml0eW1ldHJpY3MuY29tMSQwIgYDVQQDExtTZWN1cml0eU1ldHJpY3MgRG
lnaUNlcnQgQ0E=","whitelist":false,"attachment":{"hash":"0970375d7d27699620d3d11d4a82a61d6886f73e51c1c1866db791381de6880f","size":2312,"filename":"m-VKH0mPQWihT4uaJ80flL4auSAFAu5yhBL9G2W29xk=.pem","location":"security-state-staging/intermediates/291f4913-8df6-4e94-90b5-40989c03e635.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"m+VKH0mPQWihT4uaJ80flL4auSAFAu5yhBL9G2W29xk=","crlite_enrolled":false,"id":"27307236-88cc-41cc-9958-6934903e04cc","last_modified":1562025015669},{"schema":1562025013420,"derHash":"T/QE8C4s0AGI8V0cAPS20eOLWjlc+FMU6uuoVbamS3U=","subject":"CN=Microsoft IT TLS CA 1,OU=Microsoft IT,O=Microsoft Corporation,L=Redmond,ST=Washington,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMRUwEwYDVQQLEwxNaWNyb3NvZnQgSVQxHjAcBgNVBAMTFU1pY3Jvc29mdCBJVCBUTFMgQ0EgMQ==","whitelist":false,"attachment":{"hash":"dce0811c755bec02d9ace622121eef2a9874cd68090b416d4540e1b26ea3b012","size":2036,"f
ilename":"xjXxgkOYlag7jCtR5DreZm9b61iaIhd-J3-b2LiybIw=.pem","location":"security-state-staging/intermediates/b826eaa3-3ebe-4464-bcb2-be9746c24afd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xjXxgkOYlag7jCtR5DreZm9b61iaIhd+J3+b2LiybIw=","crlite_enrolled":true,"id":"4dca8bde-78f0-4bc1-85cc-35b0938a893a","last_modified":1562025014163},{"schema":1562025012668,"derHash":"Ke2X6fDrxVWu4P2KN1niFsmHoKQLPvQvEbTlKW3w+38=","subject":"SERIALNUMBER=201704,CN=Citizen CA,O=http://repository.eid.belgium.be/,C=BE","subjectDN":"MF8xCzAJBgNVBAYTAkJFMSowKAYDVQQKEyFodHRwOi8vcmVwb3NpdG9yeS5laWQuYmVsZ2l1bS5iZS8xEzARBgNVBAMTCkNpdGl6ZW4gQ0ExDzANBgNVBAUTBjIwMTcwNA==","whitelist":false,"attachment":{"hash":"05f39765de9a3b2c8e30da66ee7955b8b5c1c1e49f4d56492af3ea16cc171541","size":2154,"filename":"ABkwhuUeukpacod9kYjopDaXWUb8vzCg9Sj51UrwBKY=.pem","location":"security-state-staging/intermediates/10b90d8e-2ee1-4303-8ce4-db7d6b0ca543.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ABkwhuUeukpaco
d9kYjopDaXWUb8vzCg9Sj51UrwBKY=","crlite_enrolled":false,"id":"767b3e09-f0c8-4aea-baa1-cf3c6d1f147c","last_modified":1562025013412},{"schema":1562025007428,"derHash":"klO/tmjz50OlJeSLX3UKimYDX4Bil8JfgTTcisljW9g=","subject":"CN=JCSI TLSSign Public CA,O=Cybertrust Japan Co.\\,Ltd.,C=JP","subjectDN":"MFIxCzAJBgNVBAYTAkpQMSIwIAYDVQQKExlDeWJlcnRydXN0IEphcGFuIENvLixMdGQuMR8wHQYDVQQDExZKQ1NJIFRMU1NpZ24gUHVibGljIENB","whitelist":false,"attachment":{"hash":"b6c1ba4e4707652fffa0f770954eae8f4d1bb58417950efc707c48d89d30379b","size":2044,"filename":"qU78sJ3fTvtBYPBxk_PfpIZWlA7ptK9MTP1UDx9LWdc=.pem","location":"security-state-staging/intermediates/27590e7a-01bd-4184-a4db-a987fa097a73.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qU78sJ3fTvtBYPBxk/PfpIZWlA7ptK9MTP1UDx9LWdc=","crlite_enrolled":false,"id":"2038b122-978e-4534-b273-996f254ac1a8","last_modified":1562025008171},{"schema":1562025006676,"derHash":"ini5Zsc9dpBAwagcMhaM74ubnpbswtM8xKu1oM+MHGc=","subject":"CN=DigiCert EV Code Signin
g CA (SHA2) G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLjAsBgNVBAMTJURpZ2lDZXJ0IEVWIENvZGUgU2lnbmluZyBDQSAoU0hBMikgRzE=","whitelist":false,"attachment":{"hash":"bc63ae4e19f31debb6845226b79533d07f1386d720b838d6942383f100b944b4","size":1748,"filename":"oL6bQvdAH7Gl51lEx4-NJT-zVM6WKnbdLvbYv351Fbs=.pem","location":"security-state-staging/intermediates/d77d5ade-5702-4224-8823-39f280c0be1b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oL6bQvdAH7Gl51lEx4+NJT+zVM6WKnbdLvbYv351Fbs=","crlite_enrolled":false,"id":"38109b7d-ce77-4cd9-8bf6-6b5796a2ed2c","last_modified":1562025007420},{"schema":1562025005179,"derHash":"LWArHxZtYxba/Ua0se3W3PxU0q+KlEvjWIWP1QSqoWs=","subject":"CN=Care360 Direct Intermediate CA,OU=Care360 Direct Messaging,O=Quest Diagnostics Care360,C=US","subjectDN":"MH0xCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlRdWVzdCBEaWFnbm9zdGljcyBDYXJlMzYwMSEwHwYDVQQLExhDYXJlMzYwIERpcmVjdCBNZX
NzYWdpbmcxJzAlBgNVBAMTHkNhcmUzNjAgRGlyZWN0IEludGVybWVkaWF0ZSBDQQ==","whitelist":false,"attachment":{"hash":"394755e945b33d461689f0afa1f1b626c96ad37e6df57aef74a65fd0c84c83db","size":2211,"filename":"4Vc-jglRQEtySvKvXdV2CykmL03fYouL0fdSgW7wqJQ=.pem","location":"security-state-staging/intermediates/532713a0-fee2-4438-97d6-ee210e310465.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4Vc+jglRQEtySvKvXdV2CykmL03fYouL0fdSgW7wqJQ=","crlite_enrolled":false,"id":"7f28c5f6-4818-447e-93d8-79fc00dc0c4a","last_modified":1562025005925},{"schema":1562024994614,"derHash":"pDSq5OFaVRnpsRH9COwZD9Kt8Tu+MIFcbhYGVVyzFFA=","subject":"CN=SwissSign EV Gold CA 2014 - G22,O=SwissSign AG,C=CH","subjectDN":"ME4xCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxKDAmBgNVBAMTH1N3aXNzU2lnbiBFViBHb2xkIENBIDIwMTQgLSBHMjI=","whitelist":false,"attachment":{"hash":"6adec53afaeac81fd0e85e675219c92a638f9f249f381dfac8c6f8f4b591b137","size":2389,"filename":"mDKR5ptpp7PqVUefxx2Ftq5ymsEuzCEg-EVrLOrQFB8=.pem","location":
"security-state-staging/intermediates/0cec1d67-bead-4bb6-85d5-a11312ecfaf8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mDKR5ptpp7PqVUefxx2Ftq5ymsEuzCEg+EVrLOrQFB8=","crlite_enrolled":true,"id":"ef05a6b5-bda6-4917-a51a-a6ce6523d866","last_modified":1562024995347},{"schema":1562024993127,"derHash":"wUkuup9JLsv21OTxHTm8GpATYz/Ae17pYwHXrUY7128=","subject":"SERIALNUMBER=201911,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTEx","whitelist":false,"attachment":{"hash":"d093c41f1c66976da5a572a9fb9b4b9208f861756be1e55d561bddec0254d48d","size":2333,"filename":"jRLIyyb8zq9aIC8U6liq7FbbVW4DdfKK62nTd3qe12w=.pem","location":"security-state-staging/intermediates/488eb0e2-16c6-4962-8e20-ebbc1a7c6761.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jRLIyyb8zq9aIC8U6liq7FbbVW4DdfKK62nTd3qe12w=","crlite_enrolled":false,"id":"99c80d37
-3b7e-41e4-93f6-5362973877d1","last_modified":1562024993860},{"schema":1562024988613,"derHash":"4l3pcKqLaFzfVUF4l/Zd5kxjpV1h7p5LgwJh3Pu//7Q=","subject":"CN=MRO Direct Intermediate CA,OU=MRO HIE Solutions,O=MRO Corporation,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRgwFgYDVQQKEw9NUk8gQ29ycG9yYXRpb24xGjAYBgNVBAsTEU1STyBISUUgU29sdXRpb25zMSMwIQYDVQQDExpNUk8gRGlyZWN0IEludGVybWVkaWF0ZSBDQQ==","whitelist":false,"attachment":{"hash":"403c39acc06a843ef717880f0c744c3f6ac52dd30b6649cca22a386369ec3ecd","size":2178,"filename":"MJuewyCldXsYBFl3uqjzMgQjNypJNP7P7ZPLxer309A=.pem","location":"security-state-staging/intermediates/2dfbb453-65fa-4e13-833b-1cec6684dbb7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MJuewyCldXsYBFl3uqjzMgQjNypJNP7P7ZPLxer309A=","crlite_enrolled":false,"id":"0d7367cd-10af-416d-b55b-0ed7e9bd4837","last_modified":1562024989346},{"schema":1562024987874,"derHash":"xW8PKGYYweew4RLJe57pb+tNceeUlsFR+h/oqM69Bs0=","subject":"CN=NetLock CodeSign CA,OU=Certification Services,O=
NetLock Ltd.,L=Budapest,C=HU","subjectDN":"MHYxCzAJBgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEVMBMGA1UECgwMTmV0TG9jayBMdGQuMR8wHQYDVQQLDBZDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzMRwwGgYDVQQDDBNOZXRMb2NrIENvZGVTaWduIENB","whitelist":false,"attachment":{"hash":"a44be497ab772a1eb6e68b4bcd8d66f873262b6f8c218a461eb1a2916e56e4b6","size":2109,"filename":"e9x__uYSnevFMntPG5wGBZVLvAL83lTxZlVS9aGJ_-I=.pem","location":"security-state-staging/intermediates/3e50c772-6e6b-44a6-a9ca-2b159d8e0abb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e9x//uYSnevFMntPG5wGBZVLvAL83lTxZlVS9aGJ/+I=","crlite_enrolled":false,"id":"5f1127b1-8e1f-4f9e-9512-92bcde094385","last_modified":1562024988606},{"schema":1562024987134,"derHash":"Cziq5n+j6fbTIP4QuVM9i3roJkNf/DsWYC+HtpQszCQ=","subject":"CN=The University of Texas at Arlington RSA CA,O=The University of Texas at Arlington,L=Arlington,ST=TX,C=US","subjectDN":"MIGTMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVFgxEjAQBgNVBAcTCUFybGluZ3RvbjEtMCsGA1UEChMkVGhlIFVuaXZlcnNpdHkgb2YgVGV4YX
MgYXQgQXJsaW5ndG9uMTQwMgYDVQQDEytUaGUgVW5pdmVyc2l0eSBvZiBUZXhhcyBhdCBBcmxpbmd0b24gUlNBIENB","whitelist":false,"attachment":{"hash":"2e87cf020f45d832fc00b304e12e590eb787d2539a48b3bc2f6aff63a1a3cf09","size":2170,"filename":"wT2LAU5h7_aI1jsj78C99RVlZNnZPvQSzQqLGcbu7Uk=.pem","location":"security-state-staging/intermediates/cc09a6bf-8ff9-4fb9-ba26-61a14b27a987.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wT2LAU5h7/aI1jsj78C99RVlZNnZPvQSzQqLGcbu7Uk=","crlite_enrolled":false,"id":"f6f27ed3-c922-4dcb-b829-40b0606e9b95","last_modified":1562024987867},{"schema":1562024986357,"derHash":"g/LOgfLybg7KtSqVk16bQzzxBP0PORQ9ZV7D1M02tW8=","subject":"CN=Fnet CA,O=Fuji Xerox,C=JP","subjectDN":"MDQxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MRAwDgYDVQQDEwdGbmV0IENB","whitelist":false,"attachment":{"hash":"448a08a68d7ed7754d89d12a72062cbf75a30c4bdeeb77d37613086121b56eb9","size":1451,"filename":"puqOSkJtbeGTV0fhGgxvlO9lSKK1aR1y6oqyJFioMi4=.pem","location":"security-state-staging/intermediates/
d5ef565a-81ca-48d8-a11a-721cb32eb894.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"puqOSkJtbeGTV0fhGgxvlO9lSKK1aR1y6oqyJFioMi4=","crlite_enrolled":false,"id":"404ee307-3112-4ff7-89cb-5fb71099a17f","last_modified":1562024987126},{"schema":1562024983335,"derHash":"Sv/k/vOUZNF4jGYK9ZHV5gGyYcSBHfCj3Z1hyv6OXtg=","subject":"CN=TrustAsia EV TLS Pro CA,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFYxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSAwHgYDVQQDExdUcnVzdEFzaWEgRVYgVExTIFBybyBDQQ==","whitelist":false,"attachment":{"hash":"9a34bc6ed9a54f81e18afe77e80e21229b781d54bc55db04519ecea2fb3e30f4","size":1658,"filename":"JTqDYh_WILx03HF-qMSr0wy2uDSoWh4uqNea4MnbzZ8=.pem","location":"security-state-staging/intermediates/76f83317-0be3-4d36-a0dc-2b78af79a99f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JTqDYh/WILx03HF+qMSr0wy2uDSoWh4uqNea4MnbzZ8=","crlite_enrolled":true,"id":"75933b65-c630-416f-89b3-52bbbcf4d983","last_modified":1562024984092},
{"schema":1562024982596,"derHash":"9ybIiRM2sbl8vIb1lvEmf8GAFSEiVz521RRafGTiz/c=","subject":"CN=Symantec Class 3 Extended Validation Code Signing CA - G2,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGRMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxQjBABgNVBAMTOVN5bWFudGVjIENsYXNzIDMgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDb2RlIFNpZ25pbmcgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"4acbc7350c18a439fcd9681ed171a05b0aba786ddff1a08ac60f669b1f7794a5","size":1910,"filename":"CFimR36T4UVCwZbUriIJlppqe23sbqJ64330exu8p_E=.pem","location":"security-state-staging/intermediates/43af4419-cea4-45e7-84eb-b0074f3bc2fc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CFimR36T4UVCwZbUriIJlppqe23sbqJ64330exu8p/E=","crlite_enrolled":true,"id":"a1648fd0-9e8b-4b9c-9d33-48ad6a04d424","last_modified":1562024983328},{"schema":1562024981077,"derHash":"8O5ZFO2UxyUtBYtOOYCK7m+o9izwl0+31tKp3xbjqH8=","subject":"CN=Microsoft IT
TLS CA 5,OU=Microsoft IT,O=Microsoft Corporation,L=Redmond,ST=Washington,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMRUwEwYDVQQLEwxNaWNyb3NvZnQgSVQxHjAcBgNVBAMTFU1pY3Jvc29mdCBJVCBUTFMgQ0EgNQ==","whitelist":false,"attachment":{"hash":"bc66460eac4ecba1a41893560649ac0a5935b0618344e6870fbfc87ef5c59e56","size":2036,"filename":"RCbqB-W8nwjznTeP4O6VjqcwdxIgI79eBpnBKRr32gc=.pem","location":"security-state-staging/intermediates/92736656-01e9-4228-8ea5-b1cfef7a3342.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RCbqB+W8nwjznTeP4O6VjqcwdxIgI79eBpnBKRr32gc=","crlite_enrolled":true,"id":"45047569-986c-460d-82a8-316c641d6f88","last_modified":1562024981814},{"schema":1562024978115,"derHash":"ZVAQN34j5M3+LlLK9YzjDFwDlcxgRvgTvdvgey84VEg=","subject":"CN=KDDI Web Communications Certification Authority,O=KDDI Web Communications Inc.,C=JP","subjectDN":"MG4xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxLRERJIFdlYiBDb21t
dW5pY2F0aW9ucyBJbmMuMTgwNgYDVQQDEy9LRERJIFdlYiBDb21tdW5pY2F0aW9ucyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"378ac91ceeae997985a7faae969763fb3d5806a36440e8baeeca771c46b0aa15","size":1646,"filename":"2TEQYmL1HeKriROlREzt-6M8lVW8avv9NztuQOiIHJc=.pem","location":"security-state-staging/intermediates/be8f4741-ecef-4de6-9965-23801913e2a3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2TEQYmL1HeKriROlREzt+6M8lVW8avv9NztuQOiIHJc=","crlite_enrolled":false,"id":"c9cc94c9-20c2-4321-9fa0-3872b56b5712","last_modified":1562024978848},{"schema":1562024975124,"derHash":"kbznVEFGkIq0vPnf9/mAZ2VaabDGQuEXoDHNIsfJoO4=","subject":"CN=SECOM Passport for Web SR 3.0 CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MF8xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSkwJwYDVQQDEyBTRUNPTSBQYXNzcG9ydCBmb3IgV2ViIFNSIDMuMCBDQQ==","whitelist":false,"attachment":{"hash":"0aed52ecc835b26d13f5c55cf98dedf45a8623cee6253f8013906f15eabdc316","size":1
626,"filename":"-HZ42z-6jzbfrf-8zoB-rhhWo8lWk9UMNlhPseiUpJs=.pem","location":"security-state-staging/intermediates/e15b0493-c6fc-4d99-8375-9654323114dc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+HZ42z+6jzbfrf+8zoB+rhhWo8lWk9UMNlhPseiUpJs=","crlite_enrolled":true,"id":"de8d47ad-573c-43a2-991b-fc87c4e56b69","last_modified":1562024975861},{"schema":1562024973611,"derHash":"25mk8oTM8Qsm3nt6XWUXJbhXy8hx67MwKNZ7VVEO/Nk=","subject":"CN=Abbott Laboratories Secure Authentication CA,O=Abbott Laboratories Inc.,C=US","subjectDN":"MGcxCzAJBgNVBAYTAlVTMSEwHwYDVQQKExhBYmJvdHQgTGFib3JhdG9yaWVzIEluYy4xNTAzBgNVBAMTLEFiYm90dCBMYWJvcmF0b3JpZXMgU2VjdXJlIEF1dGhlbnRpY2F0aW9uIENB","whitelist":false,"attachment":{"hash":"13601b8d2aa24812d2d72f675f124723372e60d0db7dcd9dbd16be20186f8b46","size":1772,"filename":"S-zMrWUPK-hCylswDO1ieeWHUSws1lexaXMxp-YEjWA=.pem","location":"security-state-staging/intermediates/6392bedf-a3cb-40b5-99a3-490d9af06a71.pem","mimetype":"application/x-pem-file"},"pubKeyHa
sh":"S+zMrWUPK+hCylswDO1ieeWHUSws1lexaXMxp+YEjWA=","crlite_enrolled":false,"id":"c68bc179-b841-4682-980d-88ac74913ba3","last_modified":1562024974352},{"schema":1562024971359,"derHash":"enfL1FjGKCtA8DN/0ESj5JqJzSexLFM9SDYViKQJ1OE=","subject":"SERIALNUMBER=201916,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTE2","whitelist":false,"attachment":{"hash":"43eb426da20061d8e11cdc54684699286087e17729e81f3bf24d6525dd7985e3","size":2333,"filename":"2y31tlf1YoSIRQOCqKCNs6piLK00d-zLVvBxXCTMeP4=.pem","location":"security-state-staging/intermediates/fc5d3e6b-45ce-4919-90c0-55d81d291dd3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2y31tlf1YoSIRQOCqKCNs6piLK00d+zLVvBxXCTMeP4=","crlite_enrolled":false,"id":"c1ff1c6b-3e3b-420d-9cae-90bcf936a0a3","last_modified":1562024972112},{"schema":1562024970613,"derHash":"OKdSUCLJZYyq/GBgdk/VHGpcW+8jL
T5sfkivB6CY3x4=","subject":"CN=Comodo Japan RSA DV CA,O=Comodo Japan\\, Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MHAxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzETMBEGA1UEBxMKQ2hpeW9kYS1rdTEbMBkGA1UEChMSQ29tb2RvIEphcGFuLCBJbmMuMR8wHQYDVQQDExZDb21vZG8gSmFwYW4gUlNBIERWIENB","whitelist":false,"attachment":{"hash":"7754006695792a630cfa6e7a5b8fe4f962d29eee1dd2bbc7b03206053e6f4be5","size":1658,"filename":"oGI3G9oW9P0H6HjREnI-teLBhK_5fC1XowTKkZ9VZXE=.pem","location":"security-state-staging/intermediates/4adec782-7ba7-4345-8a85-84d81c3c9fc1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oGI3G9oW9P0H6HjREnI+teLBhK/5fC1XowTKkZ9VZXE=","crlite_enrolled":true,"id":"0e5bba7c-894d-4422-b61d-6d49e9b23b36","last_modified":1562024971351},{"schema":1562024969871,"derHash":"hJZThEmAOcyUWGEDGDA/nM/EUuI2eA+93EdIVn8FoO4=","subject":"CN=GoGetSSL ECC DV CA,O=GoGetSSL,L=Riga,C=LV","subjectDN":"MEwxCzAJBgNVBAYTAkxWMQ0wCwYDVQQHEwRSaWdhMREwDwYDVQQKEwhHb0dldFNTTDEbMBkGA1UEAxMSR29HZXRTU0wgRUNDIERWIENB","w
hitelist":false,"attachment":{"hash":"807962d5b256b434822d5d9ee5e1b629a71afab5fe9af4608367d7743aee656d","size":1244,"filename":"v7s8gnnUIPgE_G0J6878I42tOsH3uq3oEiIBuxWKvb0=.pem","location":"security-state-staging/intermediates/ccba3bfc-711d-4e2e-a31b-afcbae08c836.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"v7s8gnnUIPgE/G0J6878I42tOsH3uq3oEiIBuxWKvb0=","crlite_enrolled":true,"id":"3a5b6d43-a56f-44c7-a487-449a4d8e3f0f","last_modified":1562024970606},{"schema":1562024969125,"derHash":"xNGOCljk7/0X7XfIQLYT7xX1UQduqSwrd/ZgmmwlV8c=","subject":"CN=thawte SHA256 Code Signing CA,O=thawte\\, Inc.,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xJjAkBgNVBAMTHXRoYXd0ZSBTSEEyNTYgQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"7a9762f73747c344e67453177689676cd25a9659658b4626a5d7842d1c01eb29","size":1654,"filename":"ojV9zYWXKz1QGxqVDyQznbwp3_f7lG2Vs-Z5lATJD2M=.pem","location":"security-state-staging/intermediates/8de8ac8a-71bf-46f1-830c-1ec0ce8056a4.
pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ojV9zYWXKz1QGxqVDyQznbwp3/f7lG2Vs+Z5lATJD2M=","crlite_enrolled":true,"id":"21e0f087-5d81-48a8-b990-98815b457492","last_modified":1562024969863},{"schema":1562024966122,"derHash":"OcedKkz/4Jxh3mnsFJkdjpXOcTTs9x7weZANCtVHjK0=","subject":"CN=BlackCert\\, Inc. ECC EV Certification Authority,OU=Controlled by COMODO exclusively for BlackCert\\, Inc.,O=BlackCert\\, Inc.,L=Denver,ST=CO,C=US","subjectDN":"MIG9MQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPQmxhY2tDZXJ0LCBJbmMuMT0wOwYDVQQLEzRDb250cm9sbGVkIGJ5IENPTU9ETyBleGNsdXNpdmVseSBmb3IgQmxhY2tDZXJ0LCBJbmMuMTcwNQYDVQQDEy5CbGFja0NlcnQsIEluYy4gRUNDIEVWIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"3e9b2e222d9547e06e86f360ff56f36e2b15cde91ae5eb113a95f14ef5c1f462","size":1431,"filename":"YMJYGd5waNYmUtnRh_uwLFzS5lXUfdRoNphUMGKD7UY=.pem","location":"security-state-staging/intermediates/4174b4d5-c45c-40ea-b665-296b00f2ea1d.pem","mimetype":"
application/x-pem-file"},"pubKeyHash":"YMJYGd5waNYmUtnRh/uwLFzS5lXUfdRoNphUMGKD7UY=","crlite_enrolled":false,"id":"6e42b6df-14db-44eb-9daf-29923f5c3a88","last_modified":1562024966861},{"schema":1562024964611,"derHash":"LQvIZWSOoHW6VI6/4WovmR6PlkX/IfZpX4YQeeqeIso=","subject":"SERIALNUMBER=201903,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE5MDM=","whitelist":false,"attachment":{"hash":"88b1a3bb821a4aa6daecaa570343ddee62505d9f82cdfe9acc77cada464e44ae","size":2337,"filename":"TMl7JzGd02XF7Rijnv4x-FJ-6ciY9o6J9WjsDU6WBQE=.pem","location":"security-state-staging/intermediates/67e6e792-85bb-461f-b45f-ad508502c59a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TMl7JzGd02XF7Rijnv4x+FJ+6ciY9o6J9WjsDU6WBQE=","crlite_enrolled":false,"id":"b1e9bced-d3da-4da6-a020-71ab0611072e","last_modified":1562024965358},{"schema":1562024963870,
"derHash":"7TyZFGbLxFtf0dooECj5WHuCGVI2R+DKG0fyxSfSkg8=","subject":"CN=AffirmTrust Extended Validation CA - EV1,OU=See www.affirmtrust.com/repository,O=AffirmTrust,C=CA","subjectDN":"MIGDMQswCQYDVQQGEwJDQTEUMBIGA1UEChMLQWZmaXJtVHJ1c3QxKzApBgNVBAsTIlNlZSB3d3cuYWZmaXJtdHJ1c3QuY29tL3JlcG9zaXRvcnkxMTAvBgNVBAMTKEFmZmlybVRydXN0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgLSBFVjE=","whitelist":false,"attachment":{"hash":"22bb58450c6234f294cba177f1dbd93e6d193576017408e8cdc292f4bc6a925e","size":1674,"filename":"xAD7ZgT8h1RQOQsz_6DxwKe17_oiwt-Jy6y1G1Akw00=.pem","location":"security-state-staging/intermediates/cfde6906-9b1c-47ff-a5d9-15c5809705bd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xAD7ZgT8h1RQOQsz/6DxwKe17/oiwt+Jy6y1G1Akw00=","crlite_enrolled":true,"id":"ee7fb2cb-357d-4c77-afde-598161638058","last_modified":1562024964604},{"schema":1562024963124,"derHash":"sZGhVdUN2u+xLvX4KbzNXZ/oqeh3Z7c3S/XDbOdA/0o=","subject":"CN=TBS X509 CA persona 2,OU=TBS INTERNET CA,O=TBS INTERNET,L=Caen,ST=Calva
dos,C=FR","subjectDN":"MIGAMQswCQYDVQQGEwJGUjERMA8GA1UECBMIQ2FsdmFkb3MxDTALBgNVBAcTBENhZW4xFTATBgNVBAoTDFRCUyBJTlRFUk5FVDEYMBYGA1UECxMPVEJTIElOVEVSTkVUIENBMR4wHAYDVQQDExVUQlMgWDUwOSBDQSBwZXJzb25hIDI=","whitelist":false,"attachment":{"hash":"a9859ca50ce84ad6bdf91b9d7c46e32fe61f11d14399189c7c6b462117149bc7","size":2142,"filename":"ubjhAc6yaPi98oC31QdS1V0UUGGet-1zQl2VpfOY61s=.pem","location":"security-state-staging/intermediates/eaf1e313-1e14-43ec-b8b1-51ccf3548f15.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ubjhAc6yaPi98oC31QdS1V0UUGGet+1zQl2VpfOY61s=","crlite_enrolled":false,"id":"462860d8-3e72-4f5d-b4eb-60c9db3e94ef","last_modified":1562024963862},{"schema":1562024962352,"derHash":"fp3eEfdWaw+sYiigCQWoTmNg6VAacBs+f8gy6juf2ng=","subject":"CN=Don Dominio / MrDomain RSA EV CA,OU=Controlled by COMODO CA for Soluciones Corporativas IP\\, SL,O=Soluciones Corporativas IP\\, SL,L=Manacor,ST=Illes Balears,C=ES","subjectDN":"MIHQMQswCQYDVQQGEwJFUzEWMBQGA1UECBMNSWxsZXMgQmFsZWFyczEQ
MA4GA1UEBxMHTWFuYWNvcjEnMCUGA1UEChMeU29sdWNpb25lcyBDb3Jwb3JhdGl2YXMgSVAsIFNMMUMwQQYDVQQLEzpDb250cm9sbGVkIGJ5IENPTU9ETyBDQSBmb3IgU29sdWNpb25lcyBDb3Jwb3JhdGl2YXMgSVAsIFNMMSkwJwYDVQQDEyBEb24gRG9taW5pbyAvIE1yRG9tYWluIFJTQSBFViBDQQ==","whitelist":false,"attachment":{"hash":"a1afd055411579d9c95224e1ed86afb5c615d247f595fa414519966b8ea70d3d","size":2296,"filename":"w0Shysnt57XAAwS7oiySGBbwyEZ1Xlrn5_wYfb_pOfc=.pem","location":"security-state-staging/intermediates/9ffa0a17-2adf-4743-a19e-380a5f3e825d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"w0Shysnt57XAAwS7oiySGBbwyEZ1Xlrn5/wYfb/pOfc=","crlite_enrolled":false,"id":"4f9a8f8f-970a-480c-ab7f-f9d5a51599a8","last_modified":1562024963117},{"schema":1562024961614,"derHash":"dJzFKc2qua4oWBR8SwAa4dW+BY/BZcPnSvlwQTHF4cE=","subject":"CN=nazwaSSL,OU=http://nazwa.pl,O=nazwa.pl S.A.,C=PL","subjectDN":"MFIxCzAJBgNVBAYTAlBMMRYwFAYDVQQKDA1uYXp3YS5wbCBTLkEuMRgwFgYDVQQLDA9odHRwOi8vbmF6d2EucGwxETAPBgNVBAMMCG5hendhU1NM","whitelist":false,"attachmen
t":{"hash":"897f59110ae0cae8614eb96580a96fd7cb3225869d9da4c4530b1281bf753e8a","size":1597,"filename":"sPhpJMOX1_QEIjMN_nLy-YioxkO0pBGSK7c-Mj9wybw=.pem","location":"security-state-staging/intermediates/ca6a636d-2b32-4c6b-91b3-5dba3a3cbee6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sPhpJMOX1/QEIjMN/nLy+YioxkO0pBGSK7c+Mj9wybw=","crlite_enrolled":false,"id":"d51ec63a-9f60-4dd7-b26b-29c22b1fe537","last_modified":1562024962345},{"schema":1562024960127,"derHash":"v6r5kLmNkWhGap8HV9wvFhS5+Tizp0URuZSiuFjhSQ4=","subject":"CN=TWCA InfoSec User CA,OU=User CA,O=TAIWAN-CA Inc.,C=TW","subjectDN":"MFcxCzAJBgNVBAYTAlRXMRcwFQYDVQQKEw5UQUlXQU4tQ0EgSW5jLjEQMA4GA1UECxMHVXNlciBDQTEdMBsGA1UEAxMUVFdDQSBJbmZvU2VjIFVzZXIgQ0E=","whitelist":false,"attachment":{"hash":"e46a74573c0c8d261f43c664107450c8cb57b01ae5173762e958d2af50e63b9b","size":2089,"filename":"aLyS-WCb9RvbNJeSwszhasSrqQSVJntxtPR2ngWYjN4=.pem","location":"security-state-staging/intermediates/f35c712d-0fc6-4650-9043-5ad0afcd052e.pem","m
imetype":"application/x-pem-file"},"pubKeyHash":"aLyS+WCb9RvbNJeSwszhasSrqQSVJntxtPR2ngWYjN4=","crlite_enrolled":false,"id":"fd553303-b2b5-4e92-8d4a-684fe1d7afb0","last_modified":1562024960856},{"schema":1562024957869,"derHash":"/QI2IkTzEmbK/wBYGNEATsTrCPsjmq+qr/9HSX1gBdY=","subject":"CN=Certum Organization Validation CA SHA2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGLMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS8wLQYDVQQDEyZDZXJ0dW0gT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQ0EgU0hBMg==","whitelist":false,"attachment":{"hash":"ee9903c59449e4d0acc7b6208d9d0397e473dfb4bdf3dca7397b4cf26911831b","size":1735,"filename":"51GveKNrpJjtGpXY5QDx03s3YTQwaQic6dWBqo3zX6s=.pem","location":"security-state-staging/intermediates/aec69216-92cf-49fb-ad18-7c895d138dbb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"51GveKNrpJjtGpXY5QDx03s3YTQwaQic6dWBqo3zX6s=","crlite_enrolled":true,"id
":"c76e2118-173c-4a95-bf4e-159a6ad00ee9","last_modified":1562024958614},{"schema":1562024956351,"derHash":"Pu122wpAy9GW3k+yfKQEgNKkKs4l/zYpHuHaECjWGQc=","subject":"CN=USERTrust RSA Extended Validation Code Signing CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGUMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE6MDgGA1UEAxMxVVNFUlRydXN0IFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"aec6dfea40b2d04b6ee1fd349f0e964f718375be85967b2e3dfdd434447a0017","size":2203,"filename":"SVno834iaJ-fItrISzwy9bMXxU9xtlSDOEkUWWB44AY=.pem","location":"security-state-staging/intermediates/006c3f08-81d7-4a4a-82dc-53df3731dc3e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SVno834iaJ+fItrISzwy9bMXxU9xtlSDOEkUWWB44AY=","crlite_enrolled":false,"id":"d02af984-79a3-414d-aec0-6fa0a598a299","last_modified":1562024957121},{"schema":1562024955607,"derHash":"F
Vf2W6YclYt076SlgruuvdYqbZtl/pWoDV7VGPRu2H8=","subject":"CN=EY LLP SHA256 CA - G2,O=Ernst & Young LLP,C=GB","subjectDN":"MEkxCzAJBgNVBAYTAkdCMRowGAYDVQQKDBFFcm5zdCAmIFlvdW5nIExMUDEeMBwGA1UEAxMVRVkgTExQIFNIQTI1NiBDQSAtIEcy","whitelist":false,"attachment":{"hash":"3b35a96418cedad712c8b5fc962614860bf163aa01cf6e82be4b937ec1e0dc64","size":1833,"filename":"hd2ITqtCyMy8qkh7o5Jz3cR0DAFmxakpv2WbEWWJe5U=.pem","location":"security-state-staging/intermediates/0bcf042f-21c7-4509-9592-de8e0d2f9af4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hd2ITqtCyMy8qkh7o5Jz3cR0DAFmxakpv2WbEWWJe5U=","crlite_enrolled":false,"id":"3be1086f-07b3-4571-9167-80dd1baddcc3","last_modified":1562024956343},{"schema":1562024954119,"derHash":"j6xXZDnJ/T7xU7Ufnt0NOBtd97h1Wc6+ygQpfdRKY5s=","subject":"CN=DigiCert Global CA G2,O=DigiCert Inc,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxHjAcBgNVBAMTFURpZ2lDZXJ0IEdsb2JhbCBDQSBHMg==","whitelist":false,"attachment":{"hash":"f974f77c91205dbd3c9
e89bb41254df4a42a70a49efa60ce9c07db31dbcc3712","size":1634,"filename":"njN4rRG-22dNXAi-yb8e3UMypgzPUPHlv4-foULwl1g=.pem","location":"security-state-staging/intermediates/d91dd6ee-e83b-47b7-b9dd-835d20657b98.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"njN4rRG+22dNXAi+yb8e3UMypgzPUPHlv4+foULwl1g=","crlite_enrolled":true,"id":"a41a5511-de35-4c5d-af6a-1283493ecab1","last_modified":1562024954850},{"schema":1562024953354,"derHash":"lya+H9YsztPzIzYV3DJMoKfnh+tCJzyL5M4903m/nXA=","subject":"SERIALNUMBER=201815,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODE1","whitelist":false,"attachment":{"hash":"9471b05e41efc78e40a6ced8077181e9a004a285dfd308ae6ab1cd57fe38d124","size":2333,"filename":"0xXaKHZeQsGiM_TY67qlJLl3VSY03py-NLYxVTNDz2g=.pem","location":"security-state-staging/intermediates/9e215d26-d89c-494e-8ab1-0238205d9a31.pem","mi
metype":"application/x-pem-file"},"pubKeyHash":"0xXaKHZeQsGiM/TY67qlJLl3VSY03py+NLYxVTNDz2g=","crlite_enrolled":false,"id":"37714fea-c69d-4735-a2af-5aedaeaec17f","last_modified":1562024954111},{"schema":1562024952617,"derHash":"Vh3Hg1H15+5aRkrG5YoNFk7ydo+Y8C5u5lUBEg/NnF4=","subject":"CN=SwissSign Server Gold CA 2014 - G22,O=SwissSign AG,C=CH","subjectDN":"MFIxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxLDAqBgNVBAMTI1N3aXNzU2lnbiBTZXJ2ZXIgR29sZCBDQSAyMDE0IC0gRzIy","whitelist":false,"attachment":{"hash":"b44b7aee422e730e14cf3b845c69862c0c573458ff55af4b3a534005005b358a","size":2389,"filename":"skyozdmp140ljrHvjRijq3v2_yQ1nyfFyBiA9uOKuw8=.pem","location":"security-state-staging/intermediates/ef30ec5a-365b-47f4-b6c5-f11d5c720e99.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"skyozdmp140ljrHvjRijq3v2/yQ1nyfFyBiA9uOKuw8=","crlite_enrolled":true,"id":"e9049b0c-8a98-4b05-abb3-fa6928effd62","last_modified":1562024953346},{"schema":1562024949623,"derHash":"RREUUPsx71E35LfP+e4r7yPo
u/0WUIbfvZPfLzKbeF4=","subject":"OU=\u5167\u653f\u90e8\u6191\u8b49\u7ba1\u7406\u4e2d\u5fc3,O=\u884c\u653f\u9662,C=TW","subjectDN":"MEcxCzAJBgNVBAYTAlRXMRIwEAYDVQQKDAnooYzmlL/pmaIxJDAiBgNVBAsMG+WFp+aUv+mDqOaGkeitieeuoeeQhuS4reW/gw==","whitelist":false,"attachment":{"hash":"1d2e89002031e2f067f634eb677f5895443049d3c69a01ca96c7142c7730442b","size":1845,"filename":"hqLmhgIEASticguKuke6YdSMZ139HmKHWRNfNRObcW4=.pem","location":"security-state-staging/intermediates/ca34cab1-fdc7-4bad-a028-8564f3760c53.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hqLmhgIEASticguKuke6YdSMZ139HmKHWRNfNRObcW4=","crlite_enrolled":false,"id":"b59c56ec-1e6c-4d20-a5df-9d80375a71e9","last_modified":1562024950356},{"schema":1562024948867,"derHash":"XLnp3jKxh+QLoU/fIA/aYse0+/iNZPd84C3W6+a8wbA=","subject":"CN=Hongkong Post e-Cert CA 1 - 15,O=Hongkong Post,L=Hong Kong,ST=Hong Kong,C=HK","subjectDN":"MHYxCzAJBgNVBAYTAkhLMRIwEAYDVQQIEwlIb25nIEtvbmcxEjAQBgNVBAcTCUhvbmcgS29uZzEWMBQGA1UEChMNSG9uZ2tvbmcgUG9zdDEnMCU
GA1UEAxMeSG9uZ2tvbmcgUG9zdCBlLUNlcnQgQ0EgMSAtIDE1","whitelist":false,"attachment":{"hash":"b1dec54f97f654e9b417aea0e0d23a22852001ddaf0a4b9b7a4c8d05cb468de6","size":1743,"filename":"nJWwmV0E5pEw1Pt8yzqltuQOo94m9iy9I53BzzbPaqE=.pem","location":"security-state-staging/intermediates/75266247-0a7b-4385-ae5c-7bde1cbc59fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nJWwmV0E5pEw1Pt8yzqltuQOo94m9iy9I53BzzbPaqE=","crlite_enrolled":true,"id":"143884ed-af2d-4415-8a20-84ab1314e2dc","last_modified":1562024949615},{"schema":1562024948125,"derHash":"66NMexCWcWFMNn4d4HUSTDlUzhn4X6z2EJDsMZ9/Gn8=","subject":"CN=GlobalSign CA 4 for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"MEsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSEwHwYDVQQDExhHbG9iYWxTaWduIENBIDQgZm9yIEFBVEw=","whitelist":false,"attachment":{"hash":"45bcc3a929864966eb19baeecc3aa340568be7939f1cd9bdae711d351e223a9f","size":2121,"filename":"Xj0OpiKM5fkJ7g__pfUXsKnp9Ggz3CaAgIY6QU_Ml6I=.pem","location":"security-state-staging/i
ntermediates/52fadff7-e23b-4528-893e-fd86c53c6e69.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Xj0OpiKM5fkJ7g//pfUXsKnp9Ggz3CaAgIY6QU/Ml6I=","crlite_enrolled":false,"id":"1e71a145-4354-432c-a01b-1f3771722c5a","last_modified":1562024948860},{"schema":1562024947352,"derHash":"v4q+kn0Y62bvn7Ul7SDuCR63gqSP2m9M8jLQZo/NXMY=","subject":"CN=Technological Educational Institution of Thessaly CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGVMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMTN1RlY2hub2xvZ2ljYWwgRWR1Y2F0aW9uYWwgSW5zdGl0dXRpb24gb2YgVGhlc3NhbHkgQ0EgUjI=","whitelist":false,"attachment":{"hash":"0ec1a3ac7824be699c0d1bf1d695a867cac5c011afa5daf8ebbdc748d654d68c","size":2645,"filename":"ErB7rPO_p1d_EBICC4d-nI1lPmPDMPf4n9dW9Nx2nu8=.pem","location":"security-state-staging/intermediates/6371394b-44d6-4eeb-be22-579f6186536f.pem","mimetype":"application/x-pem-file"},
"pubKeyHash":"ErB7rPO/p1d/EBICC4d+nI1lPmPDMPf4n9dW9Nx2nu8=","crlite_enrolled":true,"id":"a786d069-c3bd-425a-8944-bc17028a3e53","last_modified":1562024948117},{"schema":1562024945836,"derHash":"M4VzODYez8SFjd/2ue9ic+PbhWq5zqHA4sZZJdHIeXg=","subject":"CN=Entrust Class 3 Client CA - SHA256,OU=See www.entrust.net/legal-terms+OU=(c) 2015 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG3MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTUgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MSswKQYDVQQDEyJFbnRydXN0IENsYXNzIDMgQ2xpZW50IENBIC0gU0hBMjU2","whitelist":false,"attachment":{"hash":"6deba95e7ac393b234997f0c4cd6212d2cb0447abafefd772a54537cf31c4507","size":1869,"filename":"9km003uGP3CTXdUQ8RZMVSb0qYwAyhU4oBMh8XI9xmc=.pem","location":"security-state-staging/intermediates/94f7fa6c-549d-4332-b94d-12a8c60a36c2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9km003uGP3C
TXdUQ8RZMVSb0qYwAyhU4oBMh8XI9xmc=","crlite_enrolled":false,"id":"3afa9f9b-e103-4f63-8488-e4fb026802cf","last_modified":1562024946596},{"schema":1562024944329,"derHash":"FZF8TLdLswHERaLgMM3SkJGMgDIDgQBpJ9IqQ/1B/9E=","subject":"SERIALNUMBER=201803,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODAz","whitelist":false,"attachment":{"hash":"e75d3c411b9b5678ad1021ffbd8366c426026c0b8b6fdd4af5fd216c6cdbdc36","size":2333,"filename":"TOFoosa_0iP5q1cejoIgepaH1pVPDAFbd9NYScqLFhY=.pem","location":"security-state-staging/intermediates/1eaa8ed0-14ac-40e9-8ae8-f64252e79d83.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TOFoosa/0iP5q1cejoIgepaH1pVPDAFbd9NYScqLFhY=","crlite_enrolled":false,"id":"6cc509c0-8aca-497b-8718-d4ff8163244b","last_modified":1562024945067},{"schema":1562024942072,"derHash":"x0It4hzryS7K5r6dzX5xHuZQ0wrtcR+7Dfayx4S2xPs="
,"subject":"CN=Digidentity BV PKIoverheid Organisatie Server CA - G3,O=Digidentity B.V.,C=NL","subjectDN":"MIGBMQswCQYDVQQGEwJOTDEZMBcGA1UECgwQRGlnaWRlbnRpdHkgQi5WLjEXMBUGA1UEYQwOTlRSTkwtMjczMjI2MzExPjA8BgNVBAMMNURpZ2lkZW50aXR5IEJWIFBLSW92ZXJoZWlkIE9yZ2FuaXNhdGllIFNlcnZlciBDQSAtIEcz","whitelist":false,"attachment":{"hash":"610bbc1d7e1b7d3eb20a159a94adbb060737aeebfce7662b453045c143b00aad","size":2625,"filename":"zm4euNC-JiW-4by3xDIvrjNA-47VRZb3MnFpy-xVE4E=.pem","location":"security-state-staging/intermediates/a5a5281d-d3a3-48cd-a934-751e77014391.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zm4euNC+JiW+4by3xDIvrjNA+47VRZb3MnFpy+xVE4E=","crlite_enrolled":true,"id":"cd3a32e6-e26e-49f5-ac44-49cbd2d4c344","last_modified":1562024942810},{"schema":1562024941330,"derHash":"MG6XOeNFj/RUaHe3BLLjkF5YsjXWTjL08CaskbcpXRU=","subject":"CN=GlobalSign CA 5 for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"MEsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSEwHwYDVQQDExhHbG9iYWxTaWduIENB
IDUgZm9yIEFBVEw=","whitelist":false,"attachment":{"hash":"285c007491cf789ba43976f05e189adf64a0f29b5e14db89718cee363825ccba","size":2089,"filename":"QgVxWR5NsnuI7x6GKGlxVsQHK7mDlibMZigdzw2qsxU=.pem","location":"security-state-staging/intermediates/907deced-77e9-464c-98c8-40c0f0871333.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QgVxWR5NsnuI7x6GKGlxVsQHK7mDlibMZigdzw2qsxU=","crlite_enrolled":false,"id":"4d25ca1b-87f3-41f4-864a-04927784f280","last_modified":1562024942064},{"schema":1562024939817,"derHash":"xjVDcpo3DCaVK0fh0dGuqEyxsH8bD5ZML+3cUj/Xx5U=","subject":"CN=Advanced Class 2 e-Szigno CA 2009,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGFMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xKjAoBgNVBAMMIUFkdmFuY2VkIENsYXNzIDIgZS1Temlnbm8gQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odQ==","whitelist":false,"attachment":{"hash":"b0b37eca6a850f10df2d2f0f58151a4dde91bb13056fb825499ebe669a693f7c","size":1768,"filename":"TldDn68qkoctgHZQtrMac
-o1wa3jCibE3kU6UUsRCkk=.pem","location":"security-state-staging/intermediates/6cc7acac-4c52-41c2-aa25-5c066d9c2b1d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TldDn68qkoctgHZQtrMac+o1wa3jCibE3kU6UUsRCkk=","crlite_enrolled":false,"id":"5f2ec7fc-3106-4948-a7e0-9fa8387772ef","last_modified":1562024940568},{"schema":1562024937487,"derHash":"GtUWhBmK+R6iQ525x5ID9Hp0nr2JYnm3fcYn+D/+SdY=","subject":"CN=Network Solutions DV Server CA 2,O=Network Solutions L.L.C.,L=Herndon,ST=VA,C=US","subjectDN":"MHoxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJWQTEQMA4GA1UEBxMHSGVybmRvbjEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMSkwJwYDVQQDEyBOZXR3b3JrIFNvbHV0aW9ucyBEViBTZXJ2ZXIgQ0EgMg==","whitelist":false,"attachment":{"hash":"52fbbb1f5aa39c3d13d1e3d0c45b2292cba37ce769970a1ceca9ed32e4131b1d","size":2150,"filename":"G8g19iXohPy9KZGriQ807A59lcylMu81Zi8hXz5xxsM=.pem","location":"security-state-staging/intermediates/6949f924-1eec-45ee-a7db-edf592b5bd93.pem","mimetype":"application/x-pem-file"},"pubKeyHash":
"G8g19iXohPy9KZGriQ807A59lcylMu81Zi8hXz5xxsM=","crlite_enrolled":true,"id":"c62bc944-30d0-4aec-98f6-e797e9e832cb","last_modified":1562024938279},{"schema":1562024936752,"derHash":"EleqwvTurGyklCwsg/C2e0GjtHEgxNU0KZKVE6ytRow=","subject":"CN=DFN-Verein Global Issuing CA,OU=DFN-PKI,O=Verein zur Foerderung eines Deutschen Forschungsnetzes e. V.,C=DE","subjectDN":"MIGNMQswCQYDVQQGEwJERTFFMEMGA1UECgw8VmVyZWluIHp1ciBGb2VyZGVydW5nIGVpbmVzIERldXRzY2hlbiBGb3JzY2h1bmdzbmV0emVzIGUuIFYuMRAwDgYDVQQLDAdERk4tUEtJMSUwIwYDVQQDDBxERk4tVmVyZWluIEdsb2JhbCBJc3N1aW5nIENB","whitelist":false,"attachment":{"hash":"69e4d49fecfd6be962aff5ae8fab5ea53f3d878ed48ee7a692e4baadc6b9b1cc","size":2028,"filename":"2plWEFSbja5Tz0pERjlr4FL2fr0H4L48Rt0ZF3sKBEQ=.pem","location":"security-state-staging/intermediates/8de4ccb4-4260-4e43-8cbf-5a833dadfdd3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2plWEFSbja5Tz0pERjlr4FL2fr0H4L48Rt0ZF3sKBEQ=","crlite_enrolled":true,"id":"93b2b132-1d87-4798-b133-b6722f1ba378","last_
modified":1562024937479},{"schema":1562024931476,"derHash":"dKYa3Z8g+RRhicb328ifV3ViRP01ZmQQja44uCo7UlA=","subject":"CN=YourNet SSL for domain2,O=FreeBit Co.\\,Ltd.,C=JP","subjectDN":"MEoxCzAJBgNVBAYTAkpQMRkwFwYDVQQKExBGcmVlQml0IENvLixMdGQuMSAwHgYDVQQDExdZb3VyTmV0IFNTTCBmb3IgZG9tYWluMg==","whitelist":false,"attachment":{"hash":"b7dad8429dcfc03d08d7ba14a861340cb74932bd40ccbada03ee17a7a6637fef","size":1597,"filename":"zd0UqyvGX7-jgJxlCj_Bzwg3ZZtVY-37N2N0HaQW9N8=.pem","location":"security-state-staging/intermediates/1469d0ba-cd8f-4e5e-b64a-17afac0c6c59.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zd0UqyvGX7+jgJxlCj/Bzwg3ZZtVY+37N2N0HaQW9N8=","crlite_enrolled":false,"id":"977ddfb9-da2c-424d-958a-3172269a99e2","last_modified":1562024932228},{"schema":1562024930729,"derHash":"bqy5/qbMa/RZW0nCIsJgBNiTceuThK5I7Be5V4SUhlE=","subject":"CN=GENIOUS RSA Domain Validation Secure Server CA,O=Genious Communications,L=Marrakech,ST=Marrakech,C=MA","subjectDN":"MIGPMQswCQYDVQQGEwJNQTESMBAGA
1UECBMJTWFycmFrZWNoMRIwEAYDVQQHEwlNYXJyYWtlY2gxHzAdBgNVBAoTFkdlbmlvdXMgQ29tbXVuaWNhdGlvbnMxNzA1BgNVBAMTLkdFTklPVVMgUlNBIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"e1cfbd7e1821deb85427599da6afff700f4fe6bbd50a6617c015a36c7081220d","size":2178,"filename":"fpm00n1Dh8cybnaCvT8lZPwH6X-P_MKtYFzCSSgBorQ=.pem","location":"security-state-staging/intermediates/ce167ca1-2411-4863-820e-956dec419f09.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fpm00n1Dh8cybnaCvT8lZPwH6X+P/MKtYFzCSSgBorQ=","crlite_enrolled":false,"id":"34d6c620-1aeb-4e81-b738-dc70ae0d0f79","last_modified":1562024931469},{"schema":1562024929222,"derHash":"Z/kfJvW/v6SHOL4GeN0vj3X3uAdh1WVng8qLkgqqVlk=","subject":"CN=SwissSign Server Silver CA 2014 - G22,O=SwissSign AG,C=CH","subjectDN":"MFQxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxLjAsBgNVBAMTJVN3aXNzU2lnbiBTZXJ2ZXIgU2lsdmVyIENBIDIwMTQgLSBHMjI=","whitelist":false,"attachment":{"hash":"a57cf71c0388c65ff88458240a3172504ec1
bec49381cd3711b4403c60d9cd06","size":2393,"filename":"mJwcSA1WE5bfCsQ5o79wGCvasvwdVsznZlqR1H3YPdI=.pem","location":"security-state-staging/intermediates/7cd962f0-d1e7-4935-b0c3-8a88414cbafc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mJwcSA1WE5bfCsQ5o79wGCvasvwdVsznZlqR1H3YPdI=","crlite_enrolled":true,"id":"e5b5ea99-6ffd-494f-a33d-c7e05abcd103","last_modified":1562024929964},{"schema":1562024928479,"derHash":"ydaRPz/t3v8YTJ7h1+F8WuyQiG7tXMPW6YEFgxyMDgs=","subject":"CN=TERENA SSL CA 3 G3,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MGcxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEbMBkGA1UEAxMSVEVSRU5BIFNTTCBDQSAzIEcz","whitelist":false,"attachment":{"hash":"545222651c83bbd8eccbb5048089e729de4cba6f967e78628258418fa0ea02a4","size":1557,"filename":"CZ7AmTfjAN5e7IHESKlD7oZew2o25fDM7eqsgsH2OSk=.pem","location":"security-state-staging/intermediates/c3c1fb06-2e31-41ec-8ec1-1a01c2fc381f.pem","mimetype":"application
/x-pem-file"},"pubKeyHash":"CZ7AmTfjAN5e7IHESKlD7oZew2o25fDM7eqsgsH2OSk=","crlite_enrolled":false,"id":"e64924af-35f5-4a17-be7d-7a374e1f9cf9","last_modified":1562024929214},{"schema":1562024925387,"derHash":"z/qcAexZwp5xjQ3Q71R58JtRyVeAr7e9adPIBUr+TSg=","subject":"CN=Belgium Root CA2,C=BE","subjectDN":"MCgxCzAJBgNVBAYTAkJFMRkwFwYDVQQDExBCZWxnaXVtIFJvb3QgQ0Ey","whitelist":false,"attachment":{"hash":"6421003db92dad67986e00159b3cab338f36443058a88decb98d278a0b730b9c","size":1423,"filename":"-OX5BbyTmREme4PVCBSpAyO1Hhg2KdtS1PwtVGilpXg=.pem","location":"security-state-staging/intermediates/c45f186f-ef1c-4bec-a5dc-28abe0872ea5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+OX5BbyTmREme4PVCBSpAyO1Hhg2KdtS1PwtVGilpXg=","crlite_enrolled":true,"id":"687db8f3-9aec-4b32-855e-3e940b432c69","last_modified":1562024926156},{"schema":1562024924614,"derHash":"gQUcNV7J9aifupHRpb0/BQHqzYDvk7IYAD2VzyUadnA=","subject":"CN=Trust Provider B.V. DV SSL CA - G2,OU=Domain Validated SSL,O=Trust Provide
r B.V.,C=NL","subjectDN":"MHcxCzAJBgNVBAYTAk5MMRwwGgYDVQQKExNUcnVzdCBQcm92aWRlciBCLlYuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDErMCkGA1UEAxMiVHJ1c3QgUHJvdmlkZXIgQi5WLiBEViBTU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"79e96ea8b4bed312f4e2620cb89f3da3150daf80c22aa93eee8d0cf97382d481","size":1674,"filename":"Ug7hbhTOgcIi7lxx_EXJNjbE7vY2XIM8TCIVY7FWyPM=.pem","location":"security-state-staging/intermediates/78a192bf-c52b-4e45-8953-0741da28873a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ug7hbhTOgcIi7lxx/EXJNjbE7vY2XIM8TCIVY7FWyPM=","crlite_enrolled":true,"id":"c35703ef-e86e-40c0-95b4-ccee1457e97a","last_modified":1562024925376},{"schema":1562024923845,"derHash":"1cAJMS+EXF7IUG6tVg1iRHv/SmCpwlIQURIXrW3nau0=","subject":"CN=Adobe Analytics - DigiCert CA,OU=Adobe Systems Incorporated\\, DMBU,O=Adobe Systems Incorporated,C=US","subjectDN":"MIGFMQswCQYDVQQGEwJVUzEjMCEGA1UEChMaQWRvYmUgU3lzdGVtcyBJbmNvcnBvcmF0ZWQxKTAnBgNVBAsTIEFkb2JlIFN5c3RlbXMgSW5jb3Jwb3JhdGVkLCBETUJV
MSYwJAYDVQQDEx1BZG9iZSBBbmFseXRpY3MgLSBEaWdpQ2VydCBDQQ==","whitelist":false,"attachment":{"hash":"4524101b35f64af46493e4d82f8fb77b7173f9cc3a97eeea5fb649665c7fe151","size":1683,"filename":"j7zHvn8BNXTYE-Zg6cBClkcvbJgxCRanrqi66iJkxxo=.pem","location":"security-state-staging/intermediates/29a72042-a98e-4486-97aa-78d4b0c0c60a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"j7zHvn8BNXTYE+Zg6cBClkcvbJgxCRanrqi66iJkxxo=","crlite_enrolled":false,"id":"5151b0c7-4782-496c-bb80-783f0674974d","last_modified":1562024924606},{"schema":1562024922323,"derHash":"lyIUU7shRkLB3Fq82nn+Tu218rA5RPACuBuEfDn4D+w=","subject":"CN=Trustico RSA Client CA,O=The Trustico Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MHIxCzAJBgNVBAYTAkdCMQ8wDQYDVQQIEwZMb25kb24xEDAOBgNVBAcTB0Nyb3lkb24xHzAdBgNVBAoTFlRoZSBUcnVzdGljbyBHcm91cCBMdGQxHzAdBgNVBAMTFlRydXN0aWNvIFJTQSBDbGllbnQgQ0E=","whitelist":false,"attachment":{"hash":"0b4273439c52956ab9ed46383b38f3889b55a43dd0e5c392028e3b83cf98beb5","size":2105,"filename":"xn
vxH2EA9Kd3kwOIpzC0bRhbt111r-GKHT4GfHQAyYY=.pem","location":"security-state-staging/intermediates/059c4a4d-bd05-446b-bf6c-5d06af8e64a5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xnvxH2EA9Kd3kwOIpzC0bRhbt111r+GKHT4GfHQAyYY=","crlite_enrolled":false,"id":"514fb8e7-4b80-456a-821d-b96dd274be16","last_modified":1562024923058},{"schema":1562024920801,"derHash":"+7d3rIzcz3mT7zkk/4zQn5X7FnOQp4zB88hSwfFaZtM=","subject":"CN=MarketWare Secure Email / Client Authentication CA 2,O=MarketWare - Solu\u00e7\u00f5es para Mercados Digitais\\, Lda.,L=Lisboa,ST=Lisboa,C=PT","subjectDN":"MIGtMQswCQYDVQQGEwJQVDEPMA0GA1UECBMGTGlzYm9hMQ8wDQYDVQQHEwZMaXNib2ExPTA7BgNVBAoMNE1hcmtldFdhcmUgLSBTb2x1w6fDtWVzIHBhcmEgTWVyY2Fkb3MgRGlnaXRhaXMsIExkYS4xPTA7BgNVBAMTNE1hcmtldFdhcmUgU2VjdXJlIEVtYWlsIC8gQ2xpZW50IEF1dGhlbnRpY2F0aW9uIENBIDI=","whitelist":false,"attachment":{"hash":"de3143439ab3c01030021cca448210d408e58781f63a29dfb9094fa44dc57533","size":2203,"filename":"IjeaRrgYP7bL-bSu8xuukrup5xA-eP8RJIWT1wBPIDQ
=.pem","location":"security-state-staging/intermediates/7b4805c7-0159-47ce-9559-bf93d0bd7e46.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IjeaRrgYP7bL+bSu8xuukrup5xA+eP8RJIWT1wBPIDQ=","crlite_enrolled":false,"id":"a6626126-010b-4880-b496-85eb7715c636","last_modified":1562024921543},{"schema":1562024919307,"derHash":"IFFUt3ftxVpRRlhaXlTgVKcL5KrTuF0CMY2ie/gHrfE=","subject":"CN=Amazon,OU=Server CA 3A,O=Amazon,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAzQTEPMA0GA1UEAxMGQW1hem9u","whitelist":false,"attachment":{"hash":"05a3b22929a248fe09c8e080b25d2e2076a990ab5c629c24916624485d790547","size":1008,"filename":"fFO133kTXZr2GV72u3OrmMLImVC4krGS3_14TbklpBw=.pem","location":"security-state-staging/intermediates/88877557-2163-4dde-bcc8-c9e7b0b12206.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fFO133kTXZr2GV72u3OrmMLImVC4krGS3/14TbklpBw=","crlite_enrolled":false,"id":"7760fae2-5a3c-4718-9149-d102bf58eb33","last_modified":1562024
920055},{"schema":1562024918544,"derHash":"dkoNhNVVLNWHLHNGTzfwIXXNpwWIECsTraKgGZ/EA+k=","subject":"CN=QuoVadis QVRCA3G3 SSL ICA,O=QuoVadis Limited,C=BM","subjectDN":"MEwxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSIwIAYDVQQDDBlRdW9WYWRpcyBRVlJDQTNHMyBTU0wgSUNB","whitelist":false,"attachment":{"hash":"0b6a1e6291e43621aa0cf422b683e1c4f2016acae9e2ca13b4b504d63ea22bab","size":2381,"filename":"GGH9ZFzlZtn0UI4iUubJxa5wjuMzMBq88DKTwhDzjDY=.pem","location":"security-state-staging/intermediates/c140db1c-419f-4e1f-a41d-5e757e022a04.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GGH9ZFzlZtn0UI4iUubJxa5wjuMzMBq88DKTwhDzjDY=","crlite_enrolled":true,"id":"8208fd07-a06e-42eb-a618-7e951831700f","last_modified":1562024919299},{"schema":1562024917049,"derHash":"bN+dy/NRCju0AnYdYtDF5OevxR2c/wHwK9UyVtxWet8=","subject":"CN=GDCA TrustAUTH R4 DV SSL CA G2,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJl
cnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJzAlBgNVBAMMHkdEQ0EgVHJ1c3RBVVRIIFI0IERWIFNTTCBDQSBHMg==","whitelist":false,"attachment":{"hash":"6649636f2813ad008e8133da4658e92771065ef07c503f24fb1bf0e9efebc92c","size":1727,"filename":"cfsQj68ZkIybk1gX6hizWacoE7hvqJNujNu2E03n_3g=.pem","location":"security-state-staging/intermediates/38a31f82-83ee-41b4-80ac-dd89b54a7ece.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cfsQj68ZkIybk1gX6hizWacoE7hvqJNujNu2E03n/3g=","crlite_enrolled":true,"id":"93bffb7c-4c34-4987-80a0-4fcbf72ce0d6","last_modified":1562024917781},{"schema":1562024916313,"derHash":"9U9s7VbPaCtXCmyuwxPpSCdg3hLo+SiuMEUsTGasdho=","subject":"CN=GeoTrust Primary Transition Root,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGsxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSkwJwYDVQQDEyBHZW9UcnVzdCBQcmltYXJ5IFRyYW5zaXRpb24gUm9vdA==","whitelist":false,"attachment":{"hash":"2cfe9c1ecf88a44a669b657cddd2e2a0e0ab6a7d532af76b531f030235
c27d6d","size":1695,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/b797792a-0c11-40a3-a801-622d9f8c11a6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rFC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"ea98bddb-7dc4-4f7a-a7a0-7c56ac081855","last_modified":1562024917040},{"schema":1562024915551,"derHash":"kP/FFQzgU1Bp5+Xvlh5AR/sIYaFAcyyM7cfo1Y61m9E=","subject":"OU=\u5de5\u5546\u6191\u8b49\u7ba1\u7406\u4e2d\u5fc3,O=\u884c\u653f\u9662,C=TW","subjectDN":"MEQxCzAJBgNVBAYTAlRXMRIwEAYDVQQKDAnooYzmlL/pmaIxITAfBgNVBAsMGOW3peWVhuaGkeitieeuoeeQhuS4reW/gw==","whitelist":false,"attachment":{"hash":"49892e8be74428a0ec09f0541dce4e2ccb3e57d9c14435714a4659b3e422dede","size":1845,"filename":"G0Nm8-uK2OHaJz-7F_jtcJoRpm0-pac0NTsSs2ZA7uo=.pem","location":"security-state-staging/intermediates/fe5ab866-5d0d-4e4d-a1b6-e542c1902f86.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G0Nm8+uK2OHaJz+7F/jtcJoR
pm0+pac0NTsSs2ZA7uo=","crlite_enrolled":false,"id":"851210ea-741c-422f-9fe9-5eb4577556dc","last_modified":1562024916305},{"schema":1562024914016,"derHash":"rWEyfumbQGE+SAdRtWaRoJZBLGj3T0ASsp+g9Iu5JMk=","subject":"CN=COMODO SHA-256 Client Authentication and Secure Email CA 3,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGdMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDFDMEEGA1UEAxM6Q09NT0RPIFNIQS0yNTYgQ2xpZW50IEF1dGhlbnRpY2F0aW9uIGFuZCBTZWN1cmUgRW1haWwgQ0EgMw==","whitelist":false,"attachment":{"hash":"41505d9d2e6bf1388086b3492cd202a6456bbb9c4959479a2a8caca9c66b3c4b","size":1699,"filename":"DTkS_gGeaXlwZz7Tk6HjzEMiE0e5gCVs3AQrkI99SgE=.pem","location":"security-state-staging/intermediates/0d4ea80a-907c-4083-8c4b-e70ff8c1a53c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DTkS/gGeaXlwZz7Tk6HjzEMiE0e5gCVs3AQrkI99SgE=","crlite_enrolled":false,"id":"0e0066de-bfb1-4731-a2b3-aaf190da061
c","last_modified":1562024914790},{"schema":1562024913272,"derHash":"UEjbq/Qb2e99UAlAX0G2dxrIiN4+rJCzBY9VWWS35F8=","subject":"CN=eMudhra RSA Domain Validation Secure Server CA,O=eMudhra Technologies Limited,L=Bengaluru,ST=Karnataka,C=IN","subjectDN":"MIGVMQswCQYDVQQGEwJJTjESMBAGA1UECBMJS2FybmF0YWthMRIwEAYDVQQHEwlCZW5nYWx1cnUxJTAjBgNVBAoTHGVNdWRocmEgVGVjaG5vbG9naWVzIExpbWl0ZWQxNzA1BgNVBAMTLmVNdWRocmEgUlNBIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"00d80076905e12a61bd293836d9efa12e45d6f81308bde3faf55d751f38d04b5","size":2186,"filename":"17G136GRsFqQDON1NPTY6yR_UA1QudGkzCd3wo7sczM=.pem","location":"security-state-staging/intermediates/38dffa99-f6ff-42b2-9d56-b21dbb250217.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"17G136GRsFqQDON1NPTY6yR/UA1QudGkzCd3wo7sczM=","crlite_enrolled":false,"id":"d2e8bfc6-485a-4d20-9405-978f2701ee3f","last_modified":1562024914008},{"schema":1562024912527,"derHash":"/x017UZAY9YDHHHkFCYswjEOjFR6t/fPKVXJ4D
SeUz8=","subject":"CN=GeoTrust True Identity CA 2,OU=GeoTrust Authentication Services,O=GeoTrust Inc.,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSkwJwYDVQQLEyBHZW9UcnVzdCBBdXRoZW50aWNhdGlvbiBTZXJ2aWNlczEkMCIGA1UEAxMbR2VvVHJ1c3QgVHJ1ZSBJZGVudGl0eSBDQSAy","whitelist":false,"attachment":{"hash":"9e7e3dd482a7bdcb8d715576fc589613eb0fbcc6f9f72fee1cd6c9983cd5c477","size":1467,"filename":"Er8r3dSx8J_PXp27RON-7OVuMvwD0SXXfHReZYPBxZk=.pem","location":"security-state-staging/intermediates/3ea3e629-0567-49c6-8887-7e3cd5bed8f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Er8r3dSx8J/PXp27RON+7OVuMvwD0SXXfHReZYPBxZk=","crlite_enrolled":false,"id":"a6e16a57-0717-40f8-a342-1fc4a1910e9a","last_modified":1562024913264},{"schema":1562024911771,"derHash":"++rLHuW9XzNRXGSsdS/weCJNiO5AZHTDMflUPUtyGEY=","subject":"CN=Eastern Macedonia and Thrace Institute of Technology CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGYMQswCQYD
VQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQzBBBgNVBAMTOkVhc3Rlcm4gTWFjZWRvbmlhIGFuZCBUaHJhY2UgSW5zdGl0dXRlIG9mIFRlY2hub2xvZ3kgQ0EgUjE=","whitelist":false,"attachment":{"hash":"3e7b18ea08168c2467503f094fb014bcf205cd1d07595f29010fea2ccb0b995a","size":2905,"filename":"y2aPBkC8F76dsQ5qfH5V18duuXnA5-zq0P4A9k8kX6E=.pem","location":"security-state-staging/intermediates/9cb657da-04ae-45f1-9d33-7b531bf463ee.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"y2aPBkC8F76dsQ5qfH5V18duuXnA5+zq0P4A9k8kX6E=","crlite_enrolled":false,"id":"40dc7a33-428e-4422-b0f7-34f7b111042c","last_modified":1562024912519},{"schema":1562024908759,"derHash":"Iar6t69YPihlmM/sqL1DWMN9es7Vy2NwrIEQuDmL5HY=","subject":"CN=Ensured Document Signing CA,O=Ensured B.V.,L=Heerhugowaard,ST=Noord-Holland,C=NL","subjectDN":"MHoxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRYwFAYDVQQHEw1IZWVyaHVnb3dhYXJkMRUwEwYDVQQKEwxFbnN1cmVkIEIuVi4xJDAiBgNVBAMTG0Vuc3VyZWQgRG
9jdW1lbnQgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"efbe87dfeb2b83d30e35e6c5c075f7f20e9de0cfb5641f51604664608a01290c","size":6426,"filename":"1Zha9XtDFk7GUo708OAH26oRT9eyA9hRP_RqCmrxNXE=.pem","location":"security-state-staging/intermediates/f9f6418c-24fe-4995-8172-964073611677.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1Zha9XtDFk7GUo708OAH26oRT9eyA9hRP/RqCmrxNXE=","crlite_enrolled":false,"id":"02d9cb51-9bed-4f96-ab41-c69994b18edc","last_modified":1562024909499},{"schema":1562024907269,"derHash":"Vu2G7YaauIYxFohjEruZFbidmaRWI+DwZfgcvVaTeRk=","subject":"CN=DOMENY CODE SIGNING Certification Authority,O=DOMENY.PL sp. z o.o,L=Krak\u00f3w,ST=Ma\u0142opolskie,C=PL","subjectDN":"MIGKMQswCQYDVQQGEwJQTDEVMBMGA1UECAwMTWHFgm9wb2xza2llMRAwDgYDVQQHDAdLcmFrw7N3MRwwGgYDVQQKExNET01FTlkuUEwgc3AuIHogby5vMTQwMgYDVQQDEytET01FTlkgQ09ERSBTSUdOSU5HIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"31b35ca440069dcffe73ec5d1e038d21abe790f988c05d40aa78e21b0d
3b5f6b","size":2142,"filename":"g-0D2wOqufSPZH-me0ymwpfpamM9jgCd7MkOiEusGXo=.pem","location":"security-state-staging/intermediates/a5765b22-16fc-422d-9560-37857b9737e5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"g+0D2wOqufSPZH+me0ymwpfpamM9jgCd7MkOiEusGXo=","crlite_enrolled":false,"id":"9d5405c6-1956-4e48-928b-cdd098e7fcac","last_modified":1562024908001},{"schema":1562024904264,"derHash":"8YRCvt9wtNFSETVscrZZMyvtA//Tu6evqqvm3p1yMAI=","subject":"CN=QuoVadis EV SSL ICA G3,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDDBZRdW9WYWRpcyBFViBTU0wgSUNBIEcz","whitelist":false,"attachment":{"hash":"310b7d0c2f7140dbbd2962b07906fd9f4eb3be23c393d130330bb6e59f58ed81","size":2389,"filename":"S0SyfMJffMM5SZRx8KboH82naxKe-XlFltR_gu3qSzg=.pem","location":"security-state-staging/intermediates/5b636dd9-7860-4f2d-a4f2-0410d642b8f7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S0SyfMJffMM5SZRx8KboH82naxKe+XlFltR/gu3qSzg=","c
rlite_enrolled":true,"id":"88048931-9c43-47bf-a3ce-2295c41a573d","last_modified":1562024905000},{"schema":1562024903501,"derHash":"nyURoj5w2V+2J5hQimdsw4lkEAk2pubTyudxVMApDwI=","subject":"CN=thawte DV SSL CA - G2,OU=Domain Validated SSL,O=thawte\\, Inc.,C=US","subjectDN":"MGMxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMR4wHAYDVQQDExV0aGF3dGUgRFYgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"f71b79c8c35cf956e94a6b78786c73cbd2346bbd250a0683171d0423afef9a5d","size":1731,"filename":"Uu5hqMmQleSn68vgjrmAQIz2tFLJ3ra_RLK7zEgYYms=.pem","location":"security-state-staging/intermediates/7cd6c71a-dc1a-4a9a-b73c-14d4ba922009.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Uu5hqMmQleSn68vgjrmAQIz2tFLJ3ra/RLK7zEgYYms=","crlite_enrolled":true,"id":"eff1a811-4b4d-4b86-8d1f-bababea8deae","last_modified":1562024904256},{"schema":1562024901246,"derHash":"/h7K297g5VgGjdvHszq3jdV9DcIvzBw2ARkBA3Wwphs=","subject":"CN=TrustCor Basic Secure Sit
e (CA1),OU=TrustCor Network,O=TrustCor Systems S. de R.L.,ST=Panama,C=PA","subjectDN":"MIGKMQswCQYDVQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xGTAXBgNVBAsMEFRydXN0Q29yIE5ldHdvcmsxKTAnBgNVBAMMIFRydXN0Q29yIEJhc2ljIFNlY3VyZSBTaXRlIChDQTEp","whitelist":false,"attachment":{"hash":"0c4ee3d67969b7bf371502575c7bef43da7ea5edee6add68dfe802d1f2c36baf","size":2211,"filename":"kHJg-GOK0x_65nWqv_uV70OMsqljk0LjqTDnfjQ6eRQ=.pem","location":"security-state-staging/intermediates/dca168d0-9454-4b21-b712-c05956c90dd3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kHJg+GOK0x/65nWqv/uV70OMsqljk0LjqTDnfjQ6eRQ=","crlite_enrolled":true,"id":"eeb9f30c-488c-4fe2-93ea-864c9148aca8","last_modified":1562024901976},{"schema":1562024899001,"derHash":"SPyVnQBBkI2cUV2RnTJbxOxb5DMKJ8Kz+eksJAAu7ys=","subject":"SERIALNUMBER=201721,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE
4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE3MjE=","whitelist":false,"attachment":{"hash":"98ae387ad7d37d7bf83007c8ca8c278365e35ebb6b41eb3c75e62eed755f88cb","size":2402,"filename":"hGCOQw-9K-ytxK5hhBre3AMERQA7tOvG__AJlpFRH_E=.pem","location":"security-state-staging/intermediates/0e6eb2bb-7490-4624-b32e-43fc18094a3b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hGCOQw+9K+ytxK5hhBre3AMERQA7tOvG//AJlpFRH/E=","crlite_enrolled":false,"id":"29600948-951b-472f-8a33-6580a407ab3e","last_modified":1562024899747},{"schema":1562024896760,"derHash":"b/b2P2oNPWNEbNqlI9Jic7EmwC+SLgXXPEdI64m4Y5M=","subject":"CN=Volusion\\, Inc. DV SSL CA - G2,OU=Domain Validated SSL,O=Volusion\\, Inc.,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5Wb2x1c2lvbiwgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxJjAkBgNVBAMTHVZvbHVzaW9uLCBJbmMuIERWIFNTTCBDQSAtIEcy","whitelist":false,"attachment":{"hash":"6c0bf8e4ade43f22681e0a5f5f70b6e770a636633f3800c6f35346253ffa38a1","size":1548,"file
name":"wL1M1GDAtMuwpOcLt4IiLDqjQ5yipn_-RaBKCU2F-YI=.pem","location":"security-state-staging/intermediates/50fda369-641f-4a5a-8256-ccd79c520165.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wL1M1GDAtMuwpOcLt4IiLDqjQ5yipn/+RaBKCU2F+YI=","crlite_enrolled":false,"id":"2012eb92-99b2-46a4-8952-d6cf483cfcfb","last_modified":1562024897497},{"schema":1562024896021,"derHash":"KgFVMaXzpM5Ym9hTxx3QaVhzIvV02Fycm5+d+PhsB14=","subject":"CN=GlobalSign Partners Timestamping CA - SHA384 - G4,O=GlobalSign nv-sa,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTowOAYDVQQDEzFHbG9iYWxTaWduIFBhcnRuZXJzIFRpbWVzdGFtcGluZyBDQSAtIFNIQTM4NCAtIEc0","whitelist":false,"attachment":{"hash":"55fd7cdb607d62d8b1e1502661056767eac9a992e199601d101161e96d67bbfd","size":2272,"filename":"MV3IyrkNFIBvx9PowOoHv2BarAqZ3RsECQExDLC8gdA=.pem","location":"security-state-staging/intermediates/06afec3c-1c14-4055-9ca7-b51b1cd0e043.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MV3IyrkNFI
Bvx9PowOoHv2BarAqZ3RsECQExDLC8gdA=","crlite_enrolled":false,"id":"39acce96-ef65-4549-8e3c-54f9f3bf3d7e","last_modified":1562024896753},{"schema":1562024895272,"derHash":"gkB0wh8cKJfynCb/24Lk5ru4WWdqtVb/XJXGbG9YGMg=","subject":"SERIALNUMBER=201918,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTE4","whitelist":false,"attachment":{"hash":"3899b94862bfa35c040a240dbb5dd3a8ee30015cac42cc3bff7ebae9452fa971","size":2333,"filename":"6Byf7EtTwdFgQUzD4t4l9RcQFmGVUYrB7tEJzMqqaSg=.pem","location":"security-state-staging/intermediates/003cc6b1-20a9-4b60-9df1-68e892602e8a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6Byf7EtTwdFgQUzD4t4l9RcQFmGVUYrB7tEJzMqqaSg=","crlite_enrolled":false,"id":"17ba986d-94e9-4bb8-9c12-7f0f31e1300d","last_modified":1562024896012},{"schema":1562024893766,"derHash":"D0UXSH/QqLoxlKYSJFCnsyyYf/8W8tSvVObttv7Wjgg=
","subject":"CN=Cloudflare ECC DV CA,O=Cloudflare\\, Inc.,L=San Francisco,ST=CA,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQQ2xvdWRmbGFyZSwgSW5jLjEdMBsGA1UEAxMUQ2xvdWRmbGFyZSBFQ0MgRFYgQ0E=","whitelist":false,"attachment":{"hash":"6e91e6887bc3aa9215d3f27e6515378a675129324d6ddbde54d654d70a2bfe9e","size":1398,"filename":"TItdfwmeIeGsIvsAjHCM7VsLyRqqdj5W2ECpVF4S9pI=.pem","location":"security-state-staging/intermediates/34573d47-f19f-4053-b767-2aeb0f372e6e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TItdfwmeIeGsIvsAjHCM7VsLyRqqdj5W2ECpVF4S9pI=","crlite_enrolled":false,"id":"c3e60f9b-aa45-41d4-9e47-576137eaf347","last_modified":1562024894503},{"schema":1562024893016,"derHash":"xBXOv6P8LvPHQJK4QmW61kw/yZlMkRd5ZWZ9er7pBYg=","subject":"OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MF0xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMScwJQYDVQQLEx5TZWN1cml0eSBDb21
tdW5pY2F0aW9uIFJvb3RDQTI=","whitelist":false,"attachment":{"hash":"646b73a99fcc560ca1fe3ce6a321bf45c814a8676d3322ace82a7e7e8897f46a","size":1601,"filename":"M4BwmvOwlr48wqQFSBQsClIAKNsJ4st3riIGYWq2y7Q=.pem","location":"security-state-staging/intermediates/461fedad-31f0-49a0-8419-88fcb971810f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M4BwmvOwlr48wqQFSBQsClIAKNsJ4st3riIGYWq2y7Q=","crlite_enrolled":true,"id":"441e263c-474f-4706-8caf-067062a7022a","last_modified":1562024893759},{"schema":1562024892262,"derHash":"Um4w3ta/nVziFvUMgyQCtIq3DVWu2pGKGHOliD69sbU=","subject":"CN=Symantec Basic DV SSL CA - G1,OU=Symantec Trust Network+OU=Domain Validated SSL,O=Symantec Corporation,C=US","subjectDN":"MIGUMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMSYwJAYDVQQDEx1TeW1hbnRlYyBCYXNpYyBEViBTU0wgQ0EgLSBHMQ==","whitelist":false,"attachment":{"hash":"d57957d42aa2c6e0e84d528db5cf8a57338ce2857
05866b2655d9da23d3170af","size":1926,"filename":"ELaoZg6JkSInELBlz5pqy_4JobLWGrsC0OXAhqypqQI=.pem","location":"security-state-staging/intermediates/dec3f331-de15-4e97-9ad1-29047e1ac63f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ELaoZg6JkSInELBlz5pqy/4JobLWGrsC0OXAhqypqQI=","crlite_enrolled":false,"id":"cb5a05ef-ee16-4785-876e-987ea32b123e","last_modified":1562024893008},{"schema":1562024890738,"derHash":"vAh4y7xODa96naRkqxYmKiNb/a7TO5+VaboY/zSZdYA=","subject":"CN=TrustAsia EV SSL CA - C3,O=TrustAsia Technologies Inc.,C=CN","subjectDN":"MFYxCzAJBgNVBAYTAkNOMSQwIgYDVQQKDBtUcnVzdEFzaWEgVGVjaG5vbG9naWVzIEluYy4xITAfBgNVBAMMGFRydXN0QXNpYSBFViBTU0wgQ0EgLSBDMw==","whitelist":false,"attachment":{"hash":"9a649e99d2774f04cb0fae10618205891e66d84669058b04828430921f6da774","size":1691,"filename":"3zvhr9FLox_6HK-CLvR_wE4XKQjtqDvzNPxSr0M8jeY=.pem","location":"security-state-staging/intermediates/3b83a2b4-a052-4057-8763-f1e172ed3331.pem","mimetype":"application/x-pem-file"},"pubKeyHash"
:"3zvhr9FLox/6HK+CLvR/wE4XKQjtqDvzNPxSr0M8jeY=","crlite_enrolled":false,"id":"c43c72cc-d8f7-448e-b348-fab85a1d5fad","last_modified":1562024891481},{"schema":1562024889996,"derHash":"yXO+rKZUSUUeXEExVw0F5y800q3r2U2y5R6aVE4eAQE=","subject":"CN=University of the Peloponnese CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGBMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxLDAqBgNVBAMTI1VuaXZlcnNpdHkgb2YgdGhlIFBlbG9wb25uZXNlIENBIFIy","whitelist":false,"attachment":{"hash":"547632361fdb2ec2e526aa18221cf86e10f3968c0f48f91c1a655af07e963108","size":2532,"filename":"KxXWghXPpQcg84tdgEguQr8nOCM52RJF_m1eSznAo90=.pem","location":"security-state-staging/intermediates/4741d96b-ad99-4071-94b3-1919ec36f478.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KxXWghXPpQcg84tdgEguQr8nOCM52RJF/m1eSznAo90=","crlite_enrolled":true,"id":"d85352f9-9695-4bfe-89a2-ff7538e82f56","last_modified":156202489
0730},{"schema":1562024889244,"derHash":"5TBRElnTP7Pt044OeZ/56PmdTbLaDe4I6vWm0VzOm/w=","subject":"CN=HARICA S/MIME RSA SubCA R1,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGJMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEjMCEGA1UEAwwaSEFSSUNBIFMvTUlNRSBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"aa6ee4b6bf9ece9b618b29f123445ced2df4d96772d25b1990276d8d2d624806","size":2194,"filename":"xM8U6lxZu3SNSAyNpbQ36H-EvxjEnARVpIOCGxsLfKk=.pem","location":"security-state-staging/intermediates/6078f10c-0713-49fb-9a6f-f79c11264457.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xM8U6lxZu3SNSAyNpbQ36H+EvxjEnARVpIOCGxsLfKk=","crlite_enrolled":false,"id":"15c738ed-e049-4949-a3f5-3ecff5b5e781","last_modified":1562024889988},{"schema":1562024888485,"derHash":"mrJcHnlchaMhQZ0wYvhLUhMrqo9xiEOoPjH7+Z/tw9c=","subject":"SERIALNUMBER=PT507015851,CN=Di
gitalSign CA,O=DigitalSign Certificadora Digital,L=Guimaraes (see current address at www.digitalsign.pt),C=PT","subjectDN":"MIGoMRQwEgYDVQQFEwtQVDUwNzAxNTg1MTELMAkGA1UEBhMCUFQxPjA8BgNVBAcTNUd1aW1hcmFlcyAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuZGlnaXRhbHNpZ24ucHQpMSowKAYDVQQKEyFEaWdpdGFsU2lnbiBDZXJ0aWZpY2Fkb3JhIERpZ2l0YWwxFzAVBgNVBAMTDkRpZ2l0YWxTaWduIENB","whitelist":false,"attachment":{"hash":"a7bf3cbf3d969531a35ed1576876c52a36fedd914f4726823a39f4a86e4c2a2a","size":2991,"filename":"TTc5T1QJhP_HGF4fhXRILAEsILItrPkhDWbrKLF-g48=.pem","location":"security-state-staging/intermediates/df358802-1b62-4be3-af9c-0be569798451.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TTc5T1QJhP/HGF4fhXRILAEsILItrPkhDWbrKLF+g48=","crlite_enrolled":false,"id":"4e1247f1-3352-47d6-a70b-918f9ff41f43","last_modified":1562024889236},{"schema":1562024887746,"derHash":"SOWl4mSjzyYbv+Ay7d4d2LS0sPXdDdDJ/YXYbXg/fMk=","subject":"CN=Fuji Xerox Xnet CA - S2,O=Fuji Xerox,C=JP","subjectDN":"MEQxCzAJBgNVBAYTAkpQMRMwE
QYDVQQKEwpGdWppIFhlcm94MSAwHgYDVQQDExdGdWppIFhlcm94IFhuZXQgQ0EgLSBTMg==","whitelist":false,"attachment":{"hash":"ca7f1f00fc7733732971935188acb56d2f10501bcf1785f9529278c0af6da1e7","size":1597,"filename":"B7_wi5BX-cgrZ8uOuYuwLz2cFlyRGuCKCG8QhI13A_8=.pem","location":"security-state-staging/intermediates/ff8c919b-9df1-4a2d-a30a-dd1b88ea5a03.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B7/wi5BX+cgrZ8uOuYuwLz2cFlyRGuCKCG8QhI13A/8=","crlite_enrolled":true,"id":"f12a157c-5c8a-4341-bb3e-fa661dc4fd0a","last_modified":1562024888478},{"schema":1562024880268,"derHash":"jCdFNSKJ6ZSz6jSURbHPZBjlF0DhYU+LVmfa0pkKrvs=","subject":"CN=Intermediate Certificate DV SSL CA,OU=Domain Validated SSL,O=Intermediate Certificate,C=NL","subjectDN":"MHwxCzAJBgNVBAYTAk5MMSEwHwYDVQQKExhJbnRlcm1lZGlhdGUgQ2VydGlmaWNhdGUxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMSswKQYDVQQDEyJJbnRlcm1lZGlhdGUgQ2VydGlmaWNhdGUgRFYgU1NMIENB","whitelist":false,"attachment":{"hash":"b4d9375ac158ea565d87e19563efe0bffa2d9b35d0a3ec1c
b40439fcbf57c2b9","size":1585,"filename":"XtinDwVCH8wSv8pJHbNpWDeamHpqtaKQzHBMJWbcb0o=.pem","location":"security-state-staging/intermediates/c970cff7-e508-4abb-a23d-c648d2a7eb09.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XtinDwVCH8wSv8pJHbNpWDeamHpqtaKQzHBMJWbcb0o=","crlite_enrolled":false,"id":"9ea12716-014d-47bb-96ee-1f04e7bc9e0f","last_modified":1562024881013},{"schema":1562024879513,"derHash":"f0UljqJ7Vv/P072WlaAdAIM1hbAsotQAHyB8rnB9TP0=","subject":"SERIALNUMBER=201810,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODEw","whitelist":false,"attachment":{"hash":"f66ae0ff53aa01cd3d96a637d858b40b7dcb40083da89b0ed48517ba8002be4e","size":2333,"filename":"gYvJdgfG4RYNxCReph78bEwJe4ZMUTH4m5WdTSGBQO0=.pem","location":"security-state-staging/intermediates/f86f76f4-0c31-4f6e-a700-fd319376608e.pem","mimetype":"application/x-pem-f
ile"},"pubKeyHash":"gYvJdgfG4RYNxCReph78bEwJe4ZMUTH4m5WdTSGBQO0=","crlite_enrolled":false,"id":"c30168e6-4b85-420c-a9db-c6867770efbe","last_modified":1562024880259},{"schema":1562024878761,"derHash":"NkXg8F4ZW+js1FblGMjCPBuyWc1s9GkfKcdErvDBH90=","subject":"CN=HIN Health Info Net CA G2,O=Health Info Net AG,C=CH","subjectDN":"MG4xCzAJBgNVBAYTAkNIMR4wHAYDVQRhDBVOVFJDSC1DSEUtMTAzLjQ4OS4yMTgxGzAZBgNVBAoMEkhlYWx0aCBJbmZvIE5ldCBBRzEiMCAGA1UEAwwZSElOIEhlYWx0aCBJbmZvIE5ldCBDQSBHMg==","whitelist":false,"attachment":{"hash":"1f02a00631f077e6d497487633ace61595a152bb13130f7f948399a4ea859165","size":2426,"filename":"2qRzikSeSMqF3GAhuSwDDfCPaZ7WK5_fh-ltdqq_pHs=.pem","location":"security-state-staging/intermediates/dcf188ae-a660-4584-90f3-d516c6bb0812.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2qRzikSeSMqF3GAhuSwDDfCPaZ7WK5/fh+ltdqq/pHs=","crlite_enrolled":false,"id":"2c275aa5-fa4a-4954-9766-eb65a05fd92c","last_modified":1562024879504},{"schema":1562024878021,"derHash":"PHUECYgkhtZBUfT
Ltb1hQypKe/QvSKhRmNJFpkrqIRc=","subject":"CN=DigiCert Global CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHTAbBgNVBAMTFERpZ2lDZXJ0IEdsb2JhbCBDQS0x","whitelist":false,"attachment":{"hash":"5488bc0ff40136ae2cb36b9c6832c59747d8afaa43a7f76b52325e286d34753c","size":2377,"filename":"RvzX55Asf6l-cqO5SkbhR9BWb7l3-NErRBT107Elrz0=.pem","location":"security-state-staging/intermediates/91bf19a3-1e46-4902-9fb2-2c722c9e1323.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RvzX55Asf6l+cqO5SkbhR9BWb7l3+NErRBT107Elrz0=","crlite_enrolled":false,"id":"e6419a66-4917-4c6b-b43e-d95def76ef80","last_modified":1562024878754},{"schema":1562024875071,"derHash":"KwqXLcDa4hjpR3OW09gt64LeEYhn3Rnh0v/9lYy7bak=","subject":"CN=DigiCert EV Code Signing CA (SHA2) G3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLjAsB
gNVBAMTJURpZ2lDZXJ0IEVWIENvZGUgU2lnbmluZyBDQSAoU0hBMikgRzM=","whitelist":false,"attachment":{"hash":"5a448b983252a58eb053810201b198c8e0ca3708ef783d3d423dee742a47828d","size":1926,"filename":"KR5gTc0QATJ3BazYGPqHpEWyJKctmA4D8rAR_G5ZTDs=.pem","location":"security-state-staging/intermediates/74a045f9-4415-4b62-913a-1db386925e23.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KR5gTc0QATJ3BazYGPqHpEWyJKctmA4D8rAR/G5ZTDs=","crlite_enrolled":false,"id":"15028061-f9e6-499d-821f-65d2a86999f4","last_modified":1562024875804},{"schema":1562024872072,"derHash":"WLOFt2/SjmH2ymHh1eQbMr0rb/UR0vWuoKQCkwT05Io=","subject":"SERIALNUMBER=201721,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzIx","whitelist":false,"attachment":{"hash":"1aab2c75a3e101a669521b32a31699e957880a8fc9dcd0800083e61ec235ea1c","size":2402,"filename":"pA5xKViHaau-7Y9W7OAVG-t
XBMCXmY-y21N9sBCDKfo=.pem","location":"security-state-staging/intermediates/dde7f3bf-969b-40ba-9d5d-5624e9ef8fd6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pA5xKViHaau+7Y9W7OAVG+tXBMCXmY+y21N9sBCDKfo=","crlite_enrolled":false,"id":"c2d88b2d-3ae6-4af0-855f-e79a625e0121","last_modified":1562024872816},{"schema":1562024869815,"derHash":"ZChKpfjchpfUPZc3z04mZiVBTkScAZZncUU3/37eMbc=","subject":"CN=Cerner Corporation Resonance Intermediate CA,OU=Cerner Resonance,O=Cerner Corporation,C=US","subjectDN":"MHwxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJDZXJuZXIgQ29ycG9yYXRpb24xGTAXBgNVBAsTEENlcm5lciBSZXNvbmFuY2UxNTAzBgNVBAMTLENlcm5lciBDb3Jwb3JhdGlvbiBSZXNvbmFuY2UgSW50ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{"hash":"9f624f222fa5cd4a2856e02e5004f9842d469f56e8872ab89c0f7bc51516c2ed","size":1991,"filename":"4C07Vx9oeNSH3l4niOhQm70ScZnmEeg8OqJMEHi4z9U=.pem","location":"security-state-staging/intermediates/f70d825c-cf4d-49f0-9b9c-d3f0ced63101.pem","mimetype":"application/x-pem-file"},"pubK
eyHash":"4C07Vx9oeNSH3l4niOhQm70ScZnmEeg8OqJMEHi4z9U=","crlite_enrolled":false,"id":"20f6264e-9de5-41e5-a881-6e3b1f47e8fe","last_modified":1562024870559},{"schema":1562024869073,"derHash":"oaBOTPxW/RkX60gfxGYpouRmVnVvoI4iSH9Utk4co+c=","subject":"CN=GRnet Client RSA SubCA R1,O=Greek Research and Technology Network,L=Athens,C=GR","subjectDN":"MHIxCzAJBgNVBAYTAkdSMQ8wDQYDVQQHDAZBdGhlbnMxLjAsBgNVBAoMJUdyZWVrIFJlc2VhcmNoIGFuZCBUZWNobm9sb2d5IE5ldHdvcmsxIjAgBgNVBAMMGUdSbmV0IENsaWVudCBSU0EgU3ViQ0EgUjE=","whitelist":false,"attachment":{"hash":"4c50596281c571a054e43965332daf357b3937daf3f45b7d2f565f691bec1c33","size":2897,"filename":"MH1lWQOCumqlkszCNDBuz80yo8Fj_thQXg9jnFecWgc=.pem","location":"security-state-staging/intermediates/17214962-d27b-4854-babd-44e89df3ac9f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MH1lWQOCumqlkszCNDBuz80yo8Fj/thQXg9jnFecWgc=","crlite_enrolled":false,"id":"509309e3-6189-400c-ae81-c45c2abac5d3","last_modified":1562024869808},{"schema":1562024868324,"derH
ash":"X3xuYEHapRPL/j1OB/3ITiMNohry3hhkYMnsBIFRbas=","subject":"CN=RTI SHA256 CA - G2,O=RTI International,ST=NC,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJOQzEaMBgGA1UEChMRUlRJIEludGVybmF0aW9uYWwxGzAZBgNVBAMTElJUSSBTSEEyNTYgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"cbef60c762d29886a600043acf7949a95177ebc650a28e59784022968b60ab80","size":1825,"filename":"xFFKZx2Nrui3Dfx2WCyqmSMf_fKapm_iSGqD9HeReZ4=.pem","location":"security-state-staging/intermediates/e251dce3-60e0-45ea-bd46-4bb8e8ba5648.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xFFKZx2Nrui3Dfx2WCyqmSMf/fKapm/iSGqD9HeReZ4=","crlite_enrolled":false,"id":"74348592-3637-4bdf-ba15-78a85d3d0e6b","last_modified":1562024869065},{"schema":1562024863814,"derHash":"UQRHBr0je5G4m3gTN+bWJlbGnw/P++jkN0E2eUgSeGI=","subject":"CN=DigiCert SHA2 Assured ID Code Signing CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xMTAv
BgNVBAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"dd0b79ea02b6563d3e84faf5dc0697b11407132275d90389c15a9ddd28522099","size":1857,"filename":"Aku_IBq7yK9olk3VEZXtYwXrnZNnmT_LG0IJShBEL8A=.pem","location":"security-state-staging/intermediates/a74bcd6c-f384-4fde-ad3b-504cc56e416a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Aku/IBq7yK9olk3VEZXtYwXrnZNnmT/LG0IJShBEL8A=","crlite_enrolled":true,"id":"ca7e6cd9-9ffa-4c56-b2cf-5e35e31952c1","last_modified":1562024864546},{"schema":1562024861561,"derHash":"KDymk5UwwbVQORUFGTY3iuNocZZ7A+TC58JD8Uln3rE=","subject":"CN=Advanced Code Signing Class3 e-Szigno CA 2016,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGOMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xHDAaBgNVBGEME1ZBVEhVLTIzNTg0NDk3LTItNDExNjA0BgNVBAMMLUFkdmFuY2VkIENvZGUgU2lnbmluZyBDbGFzczMgZS1Temlnbm8gQ0EgMjAxNg==","whitelist":false,"attachment":{"hash":"12682a46c377cf0af1a09b1c08ef498ef4f1a969
10c1f5442eb2b93d74c1a63c","size":2609,"filename":"IRoGHWUMgrIjO51yPcDjQ7km1QjZxz45uOOJou6I2pc=.pem","location":"security-state-staging/intermediates/fa8ed706-b516-4b1c-8125-839eea7101ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IRoGHWUMgrIjO51yPcDjQ7km1QjZxz45uOOJou6I2pc=","crlite_enrolled":false,"id":"0b5fdf3a-67b2-4466-b789-59a7d9a1889a","last_modified":1562024862308},{"schema":1562024860822,"derHash":"JiqVadYPuN5epRi4pxYib6dOsA3M6+zfq4e3cEr1Kxo=","subject":"CN=UIS-IsuB1-CA","subjectDN":"MFkxEzARBgoJkiaJk/IsZAEZFgNjb20xFjAUBgoJkiaJk/IsZAEZFgZ1bmlzeXMxEzARBgoJkiaJk/IsZAEZFgN1aXMxFTATBgNVBAMTDFVJUy1Jc3VCMS1DQQ==","whitelist":false,"attachment":{"hash":"a08272301840b097781c274e5446f676d117787159bb8f518efb6ddbed72cb4a","size":2487,"filename":"nPyHHj3iaTRtU8JqSy01uXEKmAdoIJseqjWg0UAG7tk=.pem","location":"security-state-staging/intermediates/a30aa611-1168-414f-a8bc-4c66f0ab693f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nPyHHj3iaTRtU8JqSy01uXEKmAdoIJseqjWg0UAG
7tk=","crlite_enrolled":false,"id":"8410f360-6f88-469b-9196-dfbaf3acd285","last_modified":1562024861553},{"schema":1562024859332,"derHash":"KqvkLLVo6V1CjT+vWya+QHJOzfyZeEDgVVvVi2LE7yM=","subject":"CN=Sectigo ECC Extended Validation Code Signing CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGQMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxODA2BgNVBAMTL1NlY3RpZ28gRUNDIEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"9828e13ba39934a6990e6451aa9158a8e684732373e595b1c319b8df4be3ea5b","size":1313,"filename":"5JDYk2l2fSok8gLeyXpwC1pk8SkhbPX0CmZF5u-n-x4=.pem","location":"security-state-staging/intermediates/c642714a-7fa3-43bd-9bc7-a3fe279072c4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5JDYk2l2fSok8gLeyXpwC1pk8SkhbPX0CmZF5u+n+x4=","crlite_enrolled":false,"id":"9271e1a4-5616-4363-8211-35732600e9ab","last_modified":1562024860073},{"schema":15620
24857065,"derHash":"WTxKtgZs32GFBn9WJnf93/UzZW20vS1XdzUwFwQVAhg=","subject":"CN=HARICA S/MIME RSA SubCA R3,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGJMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEjMCEGA1UEAwwaSEFSSUNBIFMvTUlNRSBSU0EgU3ViQ0EgUjM=","whitelist":false,"attachment":{"hash":"a83f0a21e25c370f20d5b261f8c0144f52b2dbaee8bc152173328d14b5b5333d","size":2576,"filename":"mAFvZFLJVXz5g-NekMLk2KNs8YG2rW6wdyEVN_f39oo=.pem","location":"security-state-staging/intermediates/b247282b-5d94-4b53-9606-a3673633c9ef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mAFvZFLJVXz5g+NekMLk2KNs8YG2rW6wdyEVN/f39oo=","crlite_enrolled":false,"id":"2a41a971-f7dc-43b7-8399-58834c275ffa","last_modified":1562024857807},{"schema":1562024856324,"derHash":"wWhWg/PIWQ6IWAGX8hnKuZ5UgqFWhjX1ltCYZ7L0Bb0=","subject":"CN=Postecom CS4,OU=Servizi di Certificazione,O=Post
ecom S.p.A.,C=IT","subjectDN":"MGIxCzAJBgNVBAYTAklUMRgwFgYDVQQKEw9Qb3N0ZWNvbSBTLnAuQS4xIjAgBgNVBAsTGVNlcnZpemkgZGkgQ2VydGlmaWNhemlvbmUxFTATBgNVBAMTDFBvc3RlY29tIENTNA==","whitelist":false,"attachment":{"hash":"de76f670947dcff8a54c28b36c13874dd66e9d06b895c4db7e7d1a6f868e235c","size":1630,"filename":"PBHUzxe1k4g4H4IZx6Fgmys4v5LbfykzxSURHhuSvZU=.pem","location":"security-state-staging/intermediates/bb160719-35aa-4b66-8da3-d888d2e69d82.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PBHUzxe1k4g4H4IZx6Fgmys4v5LbfykzxSURHhuSvZU=","crlite_enrolled":false,"id":"cfba4ef3-ee7d-4149-a5c5-2ee13435b22f","last_modified":1562024857057},{"schema":1562024855553,"derHash":"6BRDFB48EjLQZGXhG70fbKcYGj4Df4FbuPqurea+vtE=","subject":"CN=USERTrust ECC Extended Validation Secure Server CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGVMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazE7MDkGA1UEAxMyVVNFUlRy
dXN0IEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"73ad2394da4b0573e87030992e5584fa70d07050a7e76cd42001999693620fa7","size":1362,"filename":"H-5ErRMlCt-Y6SWx-LsLzsfdqO6rR8VCeSlgzeC0WN4=.pem","location":"security-state-staging/intermediates/9082d08a-28cc-471e-be19-5909cd26b697.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H+5ErRMlCt+Y6SWx+LsLzsfdqO6rR8VCeSlgzeC0WN4=","crlite_enrolled":true,"id":"e9b57d1a-9af1-4e57-9928-32303fcf43bb","last_modified":1562024856315},{"schema":1562024854039,"derHash":"WtzFRRSRawLb9eBllS6cEwvsWUIeD+oc6WR/AgULfsY=","subject":"CN=AffirmTrust Premium ECC Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=AffirmTrust,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEUMBIGA1UECgwLQWZmaXJtVHJ1c3QxLTArBgNVBAsMJGh0dHA6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291cmNlczE3MDUGA1UEAwwuQWZmaXJtVHJ1c3QgUHJlbWl1bSBFQ0MgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"7c6fa8fcab000dee92f2
ec0db7f18ca2b144e6a21ce56a5a139a14b4bbf233cd","size":1130,"filename":"wbpI9B7IKa-_o7qnyxj6V-kvQMgcCDHDVt0t5EmhFCU=.pem","location":"security-state-staging/intermediates/45dd76ee-2745-409b-bee9-161e415c43f9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wbpI9B7IKa+/o7qnyxj6V+kvQMgcCDHDVt0t5EmhFCU=","crlite_enrolled":false,"id":"b0b9a2da-1db8-477b-8f2d-fd982ccf1c1f","last_modified":1562024854781},{"schema":1562024851756,"derHash":"K/IbQe5Lg2ylXm8kcrh9DKPPSz/gpRtvrzwvLZx06tg=","subject":"CN=KAGOYA JAPAN Certification Authority,O=KAGOYA JAPAN Inc.,C=JP","subjectDN":"MFgxCzAJBgNVBAYTAkpQMRowGAYDVQQKExFLQUdPWUEgSkFQQU4gSW5jLjEtMCsGA1UEAxMkS0FHT1lBIEpBUEFOIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"1a080603b98669a1a61cbd208ffc3f06e5b85723a23cbba442d7126215e92d9c","size":1601,"filename":"wsjiB7F9r4B6PJrOA__iDtqeFteT01LDiESeoSm0aZI=.pem","location":"security-state-staging/intermediates/fe7eede0-1dba-45e7-9192-31be08622204.pem","mimetype":"application/x-
pem-file"},"pubKeyHash":"wsjiB7F9r4B6PJrOA//iDtqeFteT01LDiESeoSm0aZI=","crlite_enrolled":false,"id":"1a7227e1-a59c-4b29-ab18-0f65195a0fa1","last_modified":1562024852483},{"schema":1562024851020,"derHash":"dM6MFjHvnzjnpBl9o/VHTbw08AHylnwltZmVYrzIydQ=","subject":"CN=QuoVadis Grid ICA G2,O=QuoVadis Limited,C=BM","subjectDN":"MEcxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR0wGwYDVQQDExRRdW9WYWRpcyBHcmlkIElDQSBHMg==","whitelist":false,"attachment":{"hash":"068ffe7d3845059cb2339b66db36d7eb98f9f4a3f6355a0096a5afacba936f8b","size":2235,"filename":"5rlUfVlXaS82HCd6DZI7w8rIamphHCdjnXNpXREZynQ=.pem","location":"security-state-staging/intermediates/e056a24a-4812-4978-a64d-ee15e4344a04.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5rlUfVlXaS82HCd6DZI7w8rIamphHCdjnXNpXREZynQ=","crlite_enrolled":true,"id":"b4215e2b-457b-4e7f-a5b1-31fb5a7d6a9b","last_modified":1562024851748},{"schema":1562024846502,"derHash":"MGKRjZ3WF5JScbx/gIC4pqXSGFu9iA94Yv1MBDsZQZE=","subject":"CN=Buypass Cl
ass 2 CA 5,O=Buypass AS-983163327,C=NO","subjectDN":"MEsxCzAJBgNVBAYTAk5PMR0wGwYDVQQKDBRCdXlwYXNzIEFTLTk4MzE2MzMyNzEdMBsGA1UEAwwUQnV5cGFzcyBDbGFzcyAyIENBIDU=","whitelist":false,"attachment":{"hash":"fd5a69fd438ea769861dbb346922f606e66c972bf1b76d0b4b699d88aef6ef6a","size":2170,"filename":"QlGZmcMUM6a8-CxL2TmTAfoYCm-fXAouAzzKYCxGoss=.pem","location":"security-state-staging/intermediates/d6a8096b-9b05-41b8-984a-b244edc193b6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QlGZmcMUM6a8+CxL2TmTAfoYCm+fXAouAzzKYCxGoss=","crlite_enrolled":true,"id":"355287c5-30e3-4992-b72c-8013c887d757","last_modified":1562024847233},{"schema":1562024844261,"derHash":"c2uZbTOWhHKcQ8s5fRuysvP0p4FqXjxdWJID+IXF1Hw=","subject":"CN=Certigna Identity Plus CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MIGCMQswCQYDVQQGEwJGUjESMBAGA1UECgwJREhJTVlPVElTMRwwGgYDVQQLDBMwMDAyIDQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQRhDBROVFJGUi00ODE0NjMwODEwMDAzNjEiMCAGA1UEAwwZQ2VydGlnbmEgSWRlbnRpdHkgUGx1cyBDQQ==","whitelist":fal
se,"attachment":{"hash":"f191c1abecb352ea767687d0c74090ae61fb68eaf1b3c23628b26f00a9933fe1","size":2519,"filename":"ywhSp1oF34bfFheBzKO3KqbsXi-qQbyfXu94SMYBxwg=.pem","location":"security-state-staging/intermediates/ac1807a4-6a83-4902-a18f-cc1d275b7d34.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ywhSp1oF34bfFheBzKO3KqbsXi+qQbyfXu94SMYBxwg=","crlite_enrolled":false,"id":"e7d0d7ea-579e-4b38-893f-de28d80bc3ba","last_modified":1562024844993},{"schema":1562024843491,"derHash":"91pNSaUrBD/HMkuPJjrIqbe9IqMohoWIvfyTfTw5brY=","subject":"CN=Belgium Root CA3,C=BE","subjectDN":"MCgxCzAJBgNVBAYTAkJFMRkwFwYDVQQDExBCZWxnaXVtIFJvb3QgQ0Ez","whitelist":false,"attachment":{"hash":"241dee2e8ef4e0f89c5b6071322dc968ba5e5de346e84839261ec88e12c3706e","size":1768,"filename":"x7xeSTcmu_Ux9i_F9VE6wD6tgTr03NRFszBbo9PVM3Q=.pem","location":"security-state-staging/intermediates/052d56a4-4cca-49d4-9fc4-3c121e75f3b0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x7xeSTcmu/Ux9i/F9VE6wD6tgTr03NRFsz
Bbo9PVM3Q=","crlite_enrolled":true,"id":"9d3cfb47-14a6-4dab-9b93-a2164cae62c4","last_modified":1562024844254},{"schema":1562024842011,"derHash":"Bq+ECc5a1B4bfs/c0yF3PhiGlafpD+eWM4VKBAsH8Io=","subject":"SERIALNUMBER=201909,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTA5","whitelist":false,"attachment":{"hash":"155fee7f4485ec5abbb06ea19377003c4720b3678db5e8260b1327ab444e7b9a","size":2333,"filename":"HqqnLyY4pkP41GQ_CWZPTbAhR6NJ_qx2zkp_fCPzaqM=.pem","location":"security-state-staging/intermediates/d07f50ce-d0fe-4f38-b04d-fc8bb21111e9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HqqnLyY4pkP41GQ/CWZPTbAhR6NJ/qx2zkp/fCPzaqM=","crlite_enrolled":false,"id":"637b4b4d-19c6-49e1-a72d-3cb503859a46","last_modified":1562024842745},{"schema":1562024841257,"derHash":"oF7kPlVsjCo4dm0Dd/tIaAbRaeoZXmnNhzOB2Oq3380=","subject":"OU=\u91ab\u4
e8b\u6191\u8b49\u7ba1\u7406\u4e2d\u5fc3,O=\u884c\u653f\u9662,C=TW","subjectDN":"MEQxCzAJBgNVBAYTAlRXMRIwEAYDVQQKDAnooYzmlL/pmaIxITAfBgNVBAsMGOmGq+S6i+aGkeitieeuoeeQhuS4reW/gw==","whitelist":false,"attachment":{"hash":"5aac98b3e8004b6852a1a3686b2d78a1cf8f9b3caf283358f17bead0b43dc7a8","size":1841,"filename":"shQPJLnlxje6ndMEVR9GtIQdN2YEIsFYAHMiwD_1bdE=.pem","location":"security-state-staging/intermediates/c36c8a14-915a-43a4-81be-aad60c6c0113.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"shQPJLnlxje6ndMEVR9GtIQdN2YEIsFYAHMiwD/1bdE=","crlite_enrolled":false,"id":"9db46b42-5447-4d92-b0f4-4701e9a0e1d9","last_modified":1562024842003},{"schema":1562024840500,"derHash":"ATeet7hfaO3CRltCQ4CXaH6+Hq5JMZY5v7NC78PO+h0=","subject":"CN=CERTSIGN FOR BANKING QUALIFIED DS TEST CA V3,OU=Certificat de test Test certificate,O=certSIGN,C=RO","subjectDN":"MIGFMQswCQYDVQQGEwJSTzERMA8GA1UEChMIY2VydFNJR04xLDAqBgNVBAsTI0NlcnRpZmljYXQgZGUgdGVzdCBUZXN0IGNlcnRpZmljYXRlMTUwMwYDVQQDEyxDRVJUU0lHTiBGT1IgQkF
OS0lORyBRVUFMSUZJRUQgRFMgVEVTVCBDQSBWMw==","whitelist":false,"attachment":{"hash":"bf0841437cff0c49b20954c90edf74119d9005723c6fac5a22f5b7e9949b7562","size":1658,"filename":"KWZVh2Uo0VJTsQaEe-fd3OibRGv0EhYSgphzM6kiYeY=.pem","location":"security-state-staging/intermediates/4e2829f2-e770-4a7b-bf5f-26dc917d6fd4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KWZVh2Uo0VJTsQaEe+fd3OibRGv0EhYSgphzM6kiYeY=","crlite_enrolled":false,"id":"9ad29fec-b9bc-433a-96c0-21647e2caaa0","last_modified":1562024841250},{"schema":1562024839008,"derHash":"1eetJ1qin9TUXn+dPf9X78ywlPGFOxqhrSKWjLGLLMU=","subject":"CN=SECOM Passport for Code Signing CA,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MGExCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMSswKQYDVQQDEyJTRUNPTSBQYXNzcG9ydCBmb3IgQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"b1b8376a419f1cdb25298ba405e9601b0a8815e1b993c4cc0dba4d36e4cb899c","size":1613,"filename":"nbl62DjAbORsYtz-i6CUcy6Va4Bn0Wb6XbbJyf7h5
t4=.pem","location":"security-state-staging/intermediates/5a196805-7716-4404-94c8-0d7c6d6fce7f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nbl62DjAbORsYtz+i6CUcy6Va4Bn0Wb6XbbJyf7h5t4=","crlite_enrolled":false,"id":"b915a10c-dc02-4bcf-af1a-9f479bfa83fd","last_modified":1562024839746},{"schema":1562024836744,"derHash":"XCpjKbe9Gi//HB7dcyUxSJLfEUkbOUKoP08LE2lMzAE=","subject":"SERIALNUMBER=201730,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzMw","whitelist":false,"attachment":{"hash":"48e5e3e9a19fd493091deb28a383f2a979a45f74c5f56b81826daf977e48c075","size":2402,"filename":"MGswEonwdtFVVnhmZzb1mw5D9KJSfCyi_dRuQSn64sY=.pem","location":"security-state-staging/intermediates/7eb06311-8888-4d7c-8cc1-7b7b92e20d3e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MGswEonwdtFVVnhmZzb1mw5D9KJSfCyi/dRuQSn64sY=","crlite_enrolled"
:false,"id":"80c699b8-5637-4698-b774-eefba7401a08","last_modified":1562024837488},{"schema":1562024834509,"derHash":"fTOuYYzWJVM3fSU9LryihdhOmKkk2J+Y1L5P7jH5Kqg=","subject":"SERIALNUMBER=ZZZZZZB9,CN=Siemens Issuing CA Internet Server 2017,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGnMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQjkxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMTAwLgYDVQQDDCdTaWVtZW5zIElzc3VpbmcgQ0EgSW50ZXJuZXQgU2VydmVyIDIwMTc=","whitelist":false,"attachment":{"hash":"c9439a1dc15fd344909f598016e2c848de6e40651f0f2294891f78e59cb26f4a","size":2804,"filename":"f4p5PJI5fILNPQJUbuMdNzd-JMnwHZgjMi4ZjRUXTTk=.pem","location":"security-state-staging/intermediates/a4a5c871-1de7-4529-bc71-a59dfdc2f199.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"f4p5PJI5fILNPQJUbuMdNzd+JMnwHZgjMi4ZjRUXTTk=","crlite_enrolled":true,"id":"491aff6b-5922-48f6-b983-555e06fe0188","last_modified":156
2024835254},{"schema":1562024833018,"derHash":"yIOz7MasDe51zdWF5zogkoe8DJ+dedSIhg9j4uqKfSw=","subject":"CN=GlobalSign EC Administration CA2,O=GlobalSign nv-sa,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIEVDIEFkbWluaXN0cmF0aW9uIENBMg==","whitelist":false,"attachment":{"hash":"fa6f0725fd87b33f403012750721939c96d5375455d0c99502d8483d16257b3e","size":1077,"filename":"zzbDiHfMkWT0L5Kqak7r2CbmLNItoOhMZrRdT1c4eHQ=.pem","location":"security-state-staging/intermediates/5a9babab-e54e-4213-a0a3-463e6b9c5fc7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zzbDiHfMkWT0L5Kqak7r2CbmLNItoOhMZrRdT1c4eHQ=","crlite_enrolled":true,"id":"fc596052-49ff-470b-807f-143c5f421b18","last_modified":1562024833753},{"schema":1562024832266,"derHash":"kaMhrX/TyXgSFNdvXijrDTGshml+33AOmvlMdIX1tSE=","subject":"CN=GoGetSSL RSA EV CA,OU=Controlled by COMODO CA exclusively for GoGetSSL,O=GoGetSSL,L=Riga,C=LV","subjectDN":"MIGHMQswCQYDVQQGEwJMVjENMAsGA1UE
BxMEUmlnYTERMA8GA1UEChMIR29HZXRTU0wxOTA3BgNVBAsTMENvbnRyb2xsZWQgYnkgQ09NT0RPIENBIGV4Y2x1c2l2ZWx5IGZvciBHb0dldFNTTDEbMBkGA1UEAxMSR29HZXRTU0wgUlNBIEVWIENB","whitelist":false,"attachment":{"hash":"b3e85c26c77bebd92394771e7fb3c0466dd42cb33e30893cb845e25d76146b7f","size":2198,"filename":"kr1IBiy8TZumRDu-iU8HD2GILSEqTPUTw6G9jcHRek4=.pem","location":"security-state-staging/intermediates/a2855c8c-ae89-46bc-b28d-664f3cdf95d9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kr1IBiy8TZumRDu+iU8HD2GILSEqTPUTw6G9jcHRek4=","crlite_enrolled":true,"id":"0e87223f-7e82-4b81-82ee-0ac036409b87","last_modified":1562024833010},{"schema":1562024830009,"derHash":"aNCy6Mhb8Am02zmsi14vqOH9n9HlAocE6pKIx+Ryqus=","subject":"CN=TrustAsia TLS ECC CA,OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MHIxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEdMBsGA1UEAxMUVHJ1c3RBc2lhIFRMUyBFQ0MgQ0E=","whitelist":false,"attachme
nt":{"hash":"7ee8d9739388c554cf3b1e8c694adbfcc8987281bc7d6e0e3f70e444d02785f6","size":1406,"filename":"x-B4VfwG1Q5TkeQLpvUFHvsaT9cd8FIf8sfKwgA4sCE=.pem","location":"security-state-staging/intermediates/c71c3a1a-6e42-4bc5-a94e-780ef1d291b0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x+B4VfwG1Q5TkeQLpvUFHvsaT9cd8FIf8sfKwgA4sCE=","crlite_enrolled":false,"id":"70288a6a-8a68-4abd-90d8-88c8a920eafb","last_modified":1562024830748},{"schema":1562024829266,"derHash":"ahdFsxF2+sKEQgorzvZ7WeIqHTd1OrryzFGy9XKSJYg=","subject":"CN=Google S/MIME Authority,O=Google Inc,ST=California,C=US","subjectDN":"MFkxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpHb29nbGUgSW5jMRMwEQYDVQQIEwpDYWxpZm9ybmlhMSAwHgYDVQQDExdHb29nbGUgUy9NSU1FIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"1e75e1f63fa5904dbac0ed5fd58f6d1fa0b06f2923a05d13e1a380f9de1994d7","size":1516,"filename":"6OsRXz4NaQTtHc0exgRVipVz12OxHvsJx91beGJIISY=.pem","location":"security-state-staging/intermediates/6905c2d3-33a3-4d80-820f-a4e4667c46ea.
pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6OsRXz4NaQTtHc0exgRVipVz12OxHvsJx91beGJIISY=","crlite_enrolled":false,"id":"af05d3d2-2dc9-4bc1-bb41-e70d4ddeebbb","last_modified":1562024830001},{"schema":1562024826951,"derHash":"ybBswIMYYiBhjmGodyZA+CTfadVhrVa9wVrVbQzghgg=","subject":"CN=Apple IST CA 2 - G1,OU=Certification Authority,O=Apple Inc.,C=US","subjectDN":"MGIxHDAaBgNVBAMTE0FwcGxlIElTVCBDQSAyIC0gRzExIDAeBgNVBAsTF0NlcnRpZmljYXRpb24gQXV0aG9yaXR5MRMwEQYDVQQKEwpBcHBsZSBJbmMuMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"d84962e6ad0e174b509f0b27d7aca095081588308e85148f0e798c3dcccfd511","size":1662,"filename":"tc-C1H75gj-ap48SMYbFLoh56oSw-CLJHYPgQnm3j9U=.pem","location":"security-state-staging/intermediates/811c650d-5339-4109-9f5c-e9b038422338.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tc+C1H75gj+ap48SMYbFLoh56oSw+CLJHYPgQnm3j9U=","crlite_enrolled":true,"id":"acc298cc-782a-430e-96f7-3ba5d0bc27cf","last_modified":1562024827724},{"schema":15620248
25471,"derHash":"FD3+ZYMuID5NKOww+2C6c77jru4wij+NGUu2Hn0dm8A=","subject":"CN=FujiSSL ECC Extended Validation Secure Site CA,OU=Controlled by Sectigo exclusively for Nijimo K.K.,O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN":"MIG9MQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTClNoaWJ1eWEta3UxFDASBgNVBAoTC05pamltbyBLLksuMTowOAYDVQQLEzFDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIE5pamltbyBLLksuMTcwNQYDVQQDEy5GdWppU1NMIEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTaXRlIENB","whitelist":false,"attachment":{"hash":"7fd1609480c2d19f3b96f886987e7f05a7ffd31bd99533859f434d8cadcdc8d2","size":1427,"filename":"2e_93k3ZMkd5hB-WURSs0iPYqDfeY-hXB4RKemS8IaE=.pem","location":"security-state-staging/intermediates/9d3d3199-435c-45cd-86ba-6042d28ece9d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2e/93k3ZMkd5hB+WURSs0iPYqDfeY+hXB4RKemS8IaE=","crlite_enrolled":false,"id":"3cfe9cd7-b3f2-44ad-a875-c7796e21f3a9","last_modified":1562024826204},{"schema":1562024823958,"derHash":"4ImK1
mJHS591PHm+qHgDHJpdY0pJ7dYxC5YKsCPALA4=","subject":"CN=Symantec Class 3 Secure Server SHA256 SSL CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGEMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxNTAzBgNVBAMTLFN5bWFudGVjIENsYXNzIDMgU2VjdXJlIFNlcnZlciBTSEEyNTYgU1NMIENB","whitelist":false,"attachment":{"hash":"6856696d26dbf4f188099804b32d22a587d73027e302a1bade4f49e4827ad115","size":1894,"filename":"UUrclr9NL3MR9M9GTzAcVbt7zjo5AEKuhrEWmsJftnM=.pem","location":"security-state-staging/intermediates/adf7b301-8924-4c07-87fb-659291ed7d21.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UUrclr9NL3MR9M9GTzAcVbt7zjo5AEKuhrEWmsJftnM=","crlite_enrolled":true,"id":"7376bf35-99c0-4599-b55b-4372cc68156e","last_modified":1562024824721},{"schema":1562024823207,"derHash":"2xKx0/jMUv/0h08Ki4Xp+2ogUIYbGxxhSBp0OsDTPVo=","subject":"CN=Rush Health CA,OU=Orion Health Direct Secure Messaging,O=Rush Health,C=US","subjectDN"
:"MGsxCzAJBgNVBAYTAlVTMRQwEgYDVQQKEwtSdXNoIEhlYWx0aDEtMCsGA1UECxMkT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nMRcwFQYDVQQDEw5SdXNoIEhlYWx0aCBDQQ==","whitelist":false,"attachment":{"hash":"777756dbdf8987198ed063115b1af53ee0bec8ee20305ff10783615126df2832","size":2259,"filename":"H4lnk1fnK8QrG5dwIupUznM6vj1SaMgHe3uXgdSHJ-o=.pem","location":"security-state-staging/intermediates/06583537-d1cb-435e-b252-acc108705a5d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H4lnk1fnK8QrG5dwIupUznM6vj1SaMgHe3uXgdSHJ+o=","crlite_enrolled":false,"id":"8d5c4590-b907-4274-953c-6e4dcad27053","last_modified":1562024823950},{"schema":1562024821713,"derHash":"MrSzdoylpNgOnfjVV7dCT4CvVWCxFI0FVI3D12p+1hk=","subject":"CN=Apple Public Client RSA CA 2 - G1,O=Apple Inc.,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSowKAYDVQQDEyFBcHBsZSBQdWJsaWMgQ2xpZW50IFJTQSBDQSAyIC0gRzE=","whitelist":false,"attachment":{"hash":"29d465ec2e13b115b26b4088d20107aae09a74247d8056a2222d2c038b00e1a9","
size":1593,"filename":"yARYMQ6SJG9XZEjFw3uGtG-NvMLIHJJ92EADe2HF4R8=.pem","location":"security-state-staging/intermediates/46b493f4-0121-4083-874f-08b85d4a39b0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yARYMQ6SJG9XZEjFw3uGtG+NvMLIHJJ92EADe2HF4R8=","crlite_enrolled":false,"id":"19e6f602-273b-4858-ad46-71682dead98a","last_modified":1562024822460},{"schema":1562024817950,"derHash":"Zp53J6kr5y2XGOFpItwbwUkrGvM/pHk+aNh3jxmi6+A=","subject":"CN=GlobalSign Domain Validation CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIERvbWFpbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzI=","whitelist":false,"attachment":{"hash":"a1bfe295fb75b101ae4073c6fbcf06f41c7f851774b0b9fd6b9cac8bea35926a","size":1573,"filename":"PL1_TTDEe9Cm2lb2X0tixyQC7zaPREm_V0IHJscTCmw=.pem","location":"security-state-staging/intermediates/29e7705d-08aa-4026-aa35-5039e8543166.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PL
1/TTDEe9Cm2lb2X0tixyQC7zaPREm/V0IHJscTCmw=","crlite_enrolled":true,"id":"b87cbd17-c73d-4c6b-a126-fb3cff29f8f3","last_modified":1562024818708},{"schema":1562024816467,"derHash":"L3IBnLRbB6sFyxu47MMHbXByZgtXop5C6+KqV7g7xgs=","subject":"CN=Symantec Class 3 Shared Public Organization CA - SHA256,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGPMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxQDA+BgNVBAMTN1N5bWFudGVjIENsYXNzIDMgU2hhcmVkIFB1YmxpYyBPcmdhbml6YXRpb24gQ0EgLSBTSEEyNTY=","whitelist":false,"attachment":{"hash":"a99b6543f5b69ea99d4f440cdea24736cc6e6c9b19053da4a191265ee6e04b02","size":1910,"filename":"-TjXJ8RrycvnPfZ2ADExTGcSG5sKLN4p4fett5kkFVc=.pem","location":"security-state-staging/intermediates/28645f83-6522-408d-967b-8b5b43d0b945.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+TjXJ8RrycvnPfZ2ADExTGcSG5sKLN4p4fett5kkFVc=","crlite_enrolled":false,"id":"edd90e50-1b90-45ae-834d-6d43597478f3","l
ast_modified":1562024817197},{"schema":1562024815714,"derHash":"CJKAkjZZMWGXWfK4tE7Sq8Aw2K9sPDFJ+8sHx4qWzjY=","subject":"CN=SSLs.com RSA EV Secure Server CA,OU=Controlled by Sectigo exclusively for SSLs.com,O=SSLs.com (Namecheap\\, Inc.),L=Phoenix,ST=Arizona,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTEQMA4GA1UEBxMHUGhvZW5peDEjMCEGA1UEChMaU1NMcy5jb20gKE5hbWVjaGVhcCwgSW5jLikxNzA1BgNVBAsTLkNvbnRyb2xsZWQgYnkgU2VjdGlnbyBleGNsdXNpdmVseSBmb3IgU1NMcy5jb20xKTAnBgNVBAMTIFNTTHMuY29tIFJTQSBFViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"cf68f2c97f44e659a8fec4a8a0a3cf961eacf7dd93197d05df0d3970f3157ec6","size":2263,"filename":"e3CoG9n5TuSLIlY6MxPqo4fACcPQacL73N47EKEZh80=.pem","location":"security-state-staging/intermediates/45afb960-c21a-415e-a67c-c856bb993f2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"e3CoG9n5TuSLIlY6MxPqo4fACcPQacL73N47EKEZh80=","crlite_enrolled":false,"id":"77895549-6665-42c1-957c-27c5953f4670","last_modified":1562024816459
},{"schema":1562024814967,"derHash":"7r7fhG8dug6Iqba5qw/2Xwl/KEwGpkqTnujFyebzE/Q=","subject":"CN=WISeKey CertifyID Personal GB CA 1,O=WISeKey,C=CH","subjectDN":"MEwxCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSswKQYDVQQDEyJXSVNlS2V5IENlcnRpZnlJRCBQZXJzb25hbCBHQiBDQSAx","whitelist":false,"attachment":{"hash":"eeb8f2892ae58328e19191b4b5160a2d5d690fcb71232c4a0298be7be4686bee","size":1752,"filename":"O0NXa9mctJwNcofSAYnjRkrOXQmaULQorTfUS7KRo6c=.pem","location":"security-state-staging/intermediates/4c416bc6-29ca-4a1d-8453-554ce8e86371.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"O0NXa9mctJwNcofSAYnjRkrOXQmaULQorTfUS7KRo6c=","crlite_enrolled":false,"id":"85c5274a-871e-4fd7-80bf-bd6711023ec2","last_modified":1562024815705},{"schema":1562024814212,"derHash":"ZVXWYdN/JJSiPC1fg0eeeAUbbedqFHtQbWvqKIK00GY=","subject":"CN=DigiCert Secure Site Korea CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j
b20xJjAkBgNVBAMTHURpZ2lDZXJ0IFNlY3VyZSBTaXRlIEtvcmVhIENB","whitelist":false,"attachment":{"hash":"fc29957f16bdc0486d762dbf5aedac6a8beb9dcb70bffc98c77fdf64a61c982a","size":1646,"filename":"trjGmNMo7m2JbQME1aNrIcNXkG-fscWHZcrs2zCZOHg=.pem","location":"security-state-staging/intermediates/0494e722-cc07-4c6a-9de7-04ad4fe72e28.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"trjGmNMo7m2JbQME1aNrIcNXkG+fscWHZcrs2zCZOHg=","crlite_enrolled":false,"id":"1d1dcdf6-815c-4995-b5e9-5396aa70d4dc","last_modified":1562024814959},{"schema":1562024813469,"derHash":"xUgNe/+VLRvoYXj/cT8R9Rz3QjLuVnb8WhcNSmpv5Qo=","subject":"CN=IdenTrust ACES CA 2,OU=IdenTrust Public Sector,O=IdenTrust,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxIDAeBgNVBAsTF0lkZW5UcnVzdCBQdWJsaWMgU2VjdG9yMRwwGgYDVQQDExNJZGVuVHJ1c3QgQUNFUyBDQSAy","whitelist":false,"attachment":{"hash":"70fc07993b6ce80dd61ad20839fdb1f4a131a992c9111b6d78359f0a6afee877","size":2374,"filename":"IwMaflbabx_L7ZJzQfxYFjeJq6DfrV4Dtdt
BvNHuyNQ=.pem","location":"security-state-staging/intermediates/d40df6fc-5112-4daa-a568-3a1638209e5c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"IwMaflbabx/L7ZJzQfxYFjeJq6DfrV4DtdtBvNHuyNQ=","crlite_enrolled":true,"id":"0edeebe3-9085-404e-9104-ccf70090f4dc","last_modified":1562024814204},{"schema":1562024812732,"derHash":"pccVHarAwyimncZNZ3vWZwM3EIZ/0+IZ5H4qSeC7Qr8=","subject":"CN=MilleniumSign Code Signing Certificate CA RSA,O=MilleniumSign Limited,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGPMQswCQYDVQQGEwJNVTEYMBYGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTYwNAYDVQQDDC1NaWxsZW5pdW1TaWduIENvZGUgU2lnbmluZyBDZXJ0aWZpY2F0ZSBDQSBSU0E=","whitelist":false,"attachment":{"hash":"aeaa40b5d73d509719af557963bf77aa71b1368ff2b832b2653f0c0046c65710","size":2568,"filename":"WdSLOooV5TQ8cmS2oXIK3QCY0LIp5kupdZbbUo5psYU=.pem","location":"security-state-staging/intermediates/5605ff36-2876-486c-8365-4842b367be04.pem","mimetype":"appl
ication/x-pem-file"},"pubKeyHash":"WdSLOooV5TQ8cmS2oXIK3QCY0LIp5kupdZbbUo5psYU=","crlite_enrolled":false,"id":"8f581b38-d44e-4f78-8b77-d374d71b3718","last_modified":1562024813461},{"schema":1562024811611,"derHash":"1XuYcrHu+OgDKrLoyw5jtoXRZVxRxFTyP5l136Ktfgo=","subject":"CN=AffirmTrust Premium Extended Validation CA,OU=http://www.affirmtrust.com/resources,O=AffirmTrust,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzEUMBIGA1UECgwLQWZmaXJtVHJ1c3QxLTArBgNVBAsMJGh0dHA6Ly93d3cuYWZmaXJtdHJ1c3QuY29tL3Jlc291cmNlczEzMDEGA1UEAwwqQWZmaXJtVHJ1c3QgUHJlbWl1bSBFeHRlbmRlZCBWYWxpZGF0aW9uIENB","whitelist":false,"attachment":{"hash":"0e5a29ad6919bb5ec5d101857ea182d71e759e19915b21684a1d1cde6ed06b13","size":2414,"filename":"3gMCuDMv_P0gIb194xpHJCsdZogzAhE3N6usv_7BXhk=.pem","location":"security-state-staging/intermediates/199b0582-a65b-42a8-ba15-7d0fbdcf2937.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3gMCuDMv/P0gIb194xpHJCsdZogzAhE3N6usv/7BXhk=","crlite_enrolled":false,"id":"17ae7da2-5633-4d3a-92b
0-82782ee74321","last_modified":1562024812723},{"schema":1562024809754,"derHash":"7cc0xQFQHceidEj6AsdJMfhXi/KXsXPzS4QegsZpGSY=","subject":"CN=GlobalSign RSA EV QWAC CA 2019,O=GlobalSign nv-sa,C=BE","subjectDN":"MFExCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMScwJQYDVQQDEx5HbG9iYWxTaWduIFJTQSBFViBRV0FDIENBIDIwMTk=","whitelist":false,"attachment":{"hash":"e36e727ca82d6250ef1552ffd1b955b45f64f8d642e3b0b7c74440a913343a99","size":1959,"filename":"sHs4J5kRzSpOR8B4w5hjWaDPqfeO_b7HlAyT-cooapo=.pem","location":"security-state-staging/intermediates/3a1b3cff-c7d5-48dd-a11d-654a654eafc5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"sHs4J5kRzSpOR8B4w5hjWaDPqfeO/b7HlAyT+cooapo=","crlite_enrolled":false,"id":"4f4e7833-37a9-4ab5-b9b6-773e1a6dd497","last_modified":1562024810490},{"schema":1562024808990,"derHash":"gP3kKCEq8MoKxTHu5u0t89PCpFV9/OhXBw/JR5IumyQ=","subject":"CN=HydrantID EV SSL ICA G1,O=HydrantID (Avalanche Cloud Corporation),C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMTAwL
gYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxIDAeBgNVBAMTF0h5ZHJhbnRJRCBFViBTU0wgSUNBIEcx","whitelist":false,"attachment":{"hash":"73d01cd825755ae10a290835ef3db09ca9ed8937d4f11bcf9f033cd8a7315522","size":2438,"filename":"EnmchGPCp5YYVoSwFIxrS6A7RJUxstcXt8NlMXfA6Tw=.pem","location":"security-state-staging/intermediates/50c0d7df-0130-4f21-b8b8-42dd52838404.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EnmchGPCp5YYVoSwFIxrS6A7RJUxstcXt8NlMXfA6Tw=","crlite_enrolled":true,"id":"fc1f6c56-2813-4b76-9707-d6f69619e349","last_modified":1562024809746},{"schema":1562024803886,"derHash":"VU464xSv8mTT/efyu8gY8uc02UszYgjt7+fDexYrapY=","subject":"CN=SSL.com EV Timestamping Intermediate CA RSA R1,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxNzA1BgNVBAMMLlNTTC5jb20gRVYgVGltZXN0YW1waW5nIEludGVybWVkaWF0ZSBDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"1854e08a78906263193fd
2a0a983ae57a216a24ba67d1eb24771dd1d729d9465","size":2511,"filename":"gaRV9R7xQa8c6ov_2Zq2uULuRvjacPoz06QTG4LB0h0=.pem","location":"security-state-staging/intermediates/a423da0f-3134-4795-a33f-2cf3af4e8559.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gaRV9R7xQa8c6ov/2Zq2uULuRvjacPoz06QTG4LB0h0=","crlite_enrolled":false,"id":"36d7107c-26e1-4e68-8d92-fcb78298673e","last_modified":1562024808982},{"schema":1562024803135,"derHash":"Kp0NAYu0n96hTWwW6boKlC8oM7mq3/utEwbjAbSVz7c=","subject":"CN=DigiCert SHA2 Assured ID Code Signing CA - G2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xNjA0BgNVBAMTLURpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBDb2RlIFNpZ25pbmcgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"2ad03492e4239b9829ba99cbc77972e7aa518670367cb6c29b439894422fba8b","size":1817,"filename":"moFjHuv-moWxld4bAnXe_iuvG8CdWVGn1hd1j6npb7s=.pem","location":"security-state-staging/intermediates/a
a96186c-483d-49db-ae7f-f3087565a3d3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"moFjHuv+moWxld4bAnXe/iuvG8CdWVGn1hd1j6npb7s=","crlite_enrolled":false,"id":"6376e328-15c0-4ccf-9703-eebe193ffcc1","last_modified":1562024803879},{"schema":1562024800131,"derHash":"Ep+13lAeJAQc0UqBB1/RzeJXQI1KNT5jaRLji92i0/s=","subject":"CN=Certum Domain Validation CA SHA2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGFMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSkwJwYDVQQDEyBDZXJ0dW0gRG9tYWluIFZhbGlkYXRpb24gQ0EgU0hBMg==","whitelist":false,"attachment":{"hash":"e25bdf92d0be8655e107328d6904320e57365813d9a19f81ea387cb5426c4296","size":1727,"filename":"S4AbJNGvyS57nzJwv8sPMUML8VHSqH1vbiBftdPcErI=.pem","location":"security-state-staging/intermediates/4ebda4af-1b27-4b52-bf3e-baac3a47d395.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"S4AbJNGvyS57nzJwv8sPMUML8VHSqH1vbiBftdPcErI
=","crlite_enrolled":true,"id":"61249918-c227-4afe-9de6-22348a31422d","last_modified":1562024800874},{"schema":1562024798615,"derHash":"sFBb8pR/CAerri1CwZND6vCNHd4/h0WwWJpXNieS5HA=","subject":"CN=DigiCert Secure Site Korea EV ECC CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MG4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xLTArBgNVBAMTJERpZ2lDZXJ0IFNlY3VyZSBTaXRlIEtvcmVhIEVWIEVDQyBDQQ==","whitelist":false,"attachment":{"hash":"8f3ba34bb39284e4eac1c23c6af465a31d3ec30f7896fbb885e6a74b38a9ce11","size":1427,"filename":"AdP_iRzhlqZTNB5kWPVQycXqelrhzOIKeur3cseH-6k=.pem","location":"security-state-staging/intermediates/8ae1458e-7b25-4f7f-8570-16c7af6e2a7c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AdP/iRzhlqZTNB5kWPVQycXqelrhzOIKeur3cseH+6k=","crlite_enrolled":false,"id":"92ca13e1-2098-42b2-aa2b-5dbe4643c974","last_modified":1562024799347},{"schema":1562024797879,"derHash":"TJGYtnNVCFh5mtJ0TMCDwboAJ+d9O4/W1Wz1NiDQmeI=","subject
":"CN=emSign Device CA - G1,OU=emSign PKI,O=eMudhra Technologies Limited,C=IN","subjectDN":"MGkxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMR4wHAYDVQQDExVlbVNpZ24gRGV2aWNlIENBIC0gRzE=","whitelist":false,"attachment":{"hash":"8956d067022b96359ff3d30c6bcb351e2ba5eb96b50837b275bedd8c2468cc4f","size":1585,"filename":"Ivw7wv5XpckfdFlOxj37SBDwiI0WAhkp1WOGE3r2BvU=.pem","location":"security-state-staging/intermediates/20d32f63-93e8-4cc0-9495-4924fe795c22.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ivw7wv5XpckfdFlOxj37SBDwiI0WAhkp1WOGE3r2BvU=","crlite_enrolled":false,"id":"74cd2ebb-684e-40ec-a833-df95792630aa","last_modified":1562024798607},{"schema":1562024797128,"derHash":"L/GDLeb5UGqsnSx3V+oHV2TsaMyccKDs4z7MYWB8vkM=","subject":"CN=TERENA SSL CA 2,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MGQxCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEYMBYGA1UEAxMPVEVSRU5B
IFNTTCBDQSAy","whitelist":false,"attachment":{"hash":"56a3b2875df755c4075fee31fc3820a0cdcd21908ed25a2a21a9e02e177112f2","size":2129,"filename":"PYHJ7Ok9y2OoV3yMZFAcH45HI64yll_qcT9kRYmQFTY=.pem","location":"security-state-staging/intermediates/ca22d756-cc29-4f7f-a172-a93147c9b473.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PYHJ7Ok9y2OoV3yMZFAcH45HI64yll/qcT9kRYmQFTY=","crlite_enrolled":false,"id":"d1f8117c-a369-49f0-88ac-e00cc462a0ab","last_modified":1562024797871},{"schema":1562024796371,"derHash":"FtgJ7RVcKsfpSJ4aIEEWydFu++TJH1M2lyWis5VTXig=","subject":"CN=WIPO CA - G4,OU=Class 2 Managed PKI Individual Subscriber CA,O=World Intellectual Property Organization,C=CH","subjectDN":"MIGOMQswCQYDVQQGEwJDSDExMC8GA1UEChMoV29ybGQgSW50ZWxsZWN0dWFsIFByb3BlcnR5IE9yZ2FuaXphdGlvbjE1MDMGA1UECxMsQ2xhc3MgMiBNYW5hZ2VkIFBLSSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0ExFTATBgNVBAMTDFdJUE8gQ0EgLSBHNA==","whitelist":false,"attachment":{"hash":"086054c0052cdacea72072357a2b79945d9bf92ef3447038cc5e5e684752
71d3","size":2044,"filename":"PU8NkYLfLUTa_7ny2Z-c1CJ0H02QfjBsjXu9EWq22IM=.pem","location":"security-state-staging/intermediates/33189e7d-6c9b-4f44-bef2-771f215db497.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PU8NkYLfLUTa/7ny2Z+c1CJ0H02QfjBsjXu9EWq22IM=","crlite_enrolled":false,"id":"2d7e382f-d25c-4413-b71f-3ec5aeb49509","last_modified":1562024797121},{"schema":1562024794876,"derHash":"Hgo6uZMVdxcoHUKr+AHrZN7tUA5BaMpwbWpx2BA8c6I=","subject":"CN=DigiCert Grid Trust CA,OU=www.digicert.com,O=DigiCert Grid,C=US","subjectDN":"MGExCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCBHcmlkMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMR8wHQYDVQQDExZEaWdpQ2VydCBHcmlkIFRydXN0IENB","whitelist":false,"attachment":{"hash":"3be9651d72ef4f44fcb67274ba0d3e7ae2eb7c8388fcf0a3ab02a3a2c72077f8","size":2316,"filename":"TBKoZNHPiEWnnKpVqLc_CHX3Z3iNpZdilsVXHJhcqkw=.pem","location":"security-state-staging/intermediates/1ddc95cc-acc5-4a61-b546-b433d299fd22.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"T
BKoZNHPiEWnnKpVqLc/CHX3Z3iNpZdilsVXHJhcqkw=","crlite_enrolled":false,"id":"a43ec252-2c43-4461-a2b2-56c2fe1b0e7a","last_modified":1562024795608},{"schema":1562024794135,"derHash":"phmVYVOcSoqwGesTaz/Q12kBddQa5/WKO/SKHwsTKCg=","subject":"CN=FujiSSL RSA Client Authentication and Secure Email CA,O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN":"MIGIMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTClNoaWJ1eWEta3UxFDASBgNVBAoTC05pamltbyBLLksuMT4wPAYDVQQDEzVGdWppU1NMIFJTQSBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIFNlY3VyZSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"eb739dda586a45fc7a126da56fa0e1975b84e84d1a11dc5cf2a1e059668b71cd","size":2154,"filename":"XTsWwydKIeLgLUHk_CjpouCdZpEZv977b3O3Y6fz7A8=.pem","location":"security-state-staging/intermediates/bf387768-b33b-4aac-a92d-f931ea2d2f89.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XTsWwydKIeLgLUHk/CjpouCdZpEZv977b3O3Y6fz7A8=","crlite_enrolled":false,"id":"1eb1cf61-0810-46cc-9db3-87bd5b0eda59","last_modified":1562024
794868},{"schema":1562024793401,"derHash":"q/OAPNKTniaAPlIoCoH2fEbD4O51/Nux4w+wOjIaz60=","subject":"SERIALNUMBER=ZZZZZZA3,CN=Siemens Issuing CA EE Enc 2016,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGeMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQTMxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMScwJQYDVQQDDB5TaWVtZW5zIElzc3VpbmcgQ0EgRUUgRW5jIDIwMTY=","whitelist":false,"attachment":{"hash":"e179d01b41716c0c072162345534013646eeb1fc9debcf658c9fe6ecf951163f","size":2641,"filename":"27n7khZ5-Np87z6aLw4RQRXZ3DgzlUK97JppGYxBCL4=.pem","location":"security-state-staging/intermediates/0a84edea-9e19-41cc-b761-52eb6a135d6c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"27n7khZ5+Np87z6aLw4RQRXZ3DgzlUK97JppGYxBCL4=","crlite_enrolled":true,"id":"efb1c9d1-30cf-4343-bcb1-91ee6610e777","last_modified":1562024794128},{"schema":1562024792628,"derHash":"cD6goXPiBCNV8d/rEHkpLUHqaMBGydRcxg3FQQEE9Hg=","s
ubject":"CN=SSLs.com RSA DV Secure Server CA,O=SSLs.com,L=Phoenix,ST=Arizona,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRAwDgYDVQQHEwdQaG9lbml4MREwDwYDVQQKEwhTU0xzLmNvbTEpMCcGA1UEAxMgU1NMcy5jb20gUlNBIERWIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"9ff134c8ecf90893574b07ad8b3c077f8d5360967fc1094e63da8fb49c97f7e3","size":2129,"filename":"rvbtHIVTfnQ4hhhu4JyOGPoRZ3c9W-uCcbjlRAfUPXM=.pem","location":"security-state-staging/intermediates/a97db1f4-38f2-4210-9c42-fd651e18de13.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rvbtHIVTfnQ4hhhu4JyOGPoRZ3c9W+uCcbjlRAfUPXM=","crlite_enrolled":false,"id":"a11d7ecc-7398-48bb-89de-0e90aa0466c9","last_modified":1562024793393},{"schema":1562024791880,"derHash":"alR0N7H1K3KnLMcwGTqHPKmz0D45krGj+uwQp4BU4qE=","subject":"CN=Fuji Xerox Xnet CA 2,O=Fuji Xerox,C=JP","subjectDN":"MEExCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MR0wGwYDVQQDExRGdWppIFhlcm94IFhuZXQgQ0EgMg==","whitelist":false,"attachment":{"hash"
:"9217faaa39a466f5d9d9788fdda62aeff7af0b31e46484feab2f84c35486efa6","size":1471,"filename":"LnpLBgKouhAPdvkLl4dk97HUdhFGLO_43TBsKNajdA4=.pem","location":"security-state-staging/intermediates/f4af1e17-0334-407c-a8cb-77b3a44b5f11.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LnpLBgKouhAPdvkLl4dk97HUdhFGLO/43TBsKNajdA4=","crlite_enrolled":false,"id":"010baff6-15c0-4fe2-915b-96e9c9e53168","last_modified":1562024792620},{"schema":1562024791135,"derHash":"Zd4yKh73r/7etzhxOMJgYIJbCMwn4Zkt2erIM3KXlXs=","subject":"CN=SpaceSSL CA,OU=SpaceSSL Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MHIxCzAJBgNVBAYTAlBMMSIwIAYDVQQKDBlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMSkwJwYDVQQLDCBTcGFjZVNTTCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEUMBIGA1UEAwwLU3BhY2VTU0wgQ0E=","whitelist":false,"attachment":{"hash":"52e6e18f68c49814eb88ea228460269803ebcae2f04a71366b605d06fd85ae21","size":1638,"filename":"AOXy6QeFRXr3Le2jy9VUHVc0TY6NofDQseFQcaDRlow=.pem","location":"security-state-staging/inter
mediates/189976ec-c00a-4ec0-bc47-3f11ee1374ff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AOXy6QeFRXr3Le2jy9VUHVc0TY6NofDQseFQcaDRlow=","crlite_enrolled":true,"id":"a846caeb-4b0d-4bb1-af76-d203f6bd83ea","last_modified":1562024791871},{"schema":1562024789653,"derHash":"DhC93udRLb156/C09I/u18g8K9PdgXZVZfT/EQt7+kI=","subject":"CN=Cybertrust Japan Extended Validation Server CA,O=Cybertrust Japan Co.\\, Ltd.,C=JP","subjectDN":"MGsxCzAJBgNVBAYTAkpQMSMwIQYDVQQKExpDeWJlcnRydXN0IEphcGFuIENvLiwgTHRkLjE3MDUGA1UEAxMuQ3liZXJ0cnVzdCBKYXBhbiBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"e3d590ab4b71fbd20183713733b3253b32ef24a73382153319f8916fc66d3c1d","size":1678,"filename":"VfKdH3KeIRG8iIljlHEf2ck5OXG4Z8_yf2AOohCgqgk=.pem","location":"security-state-staging/intermediates/222e4d33-ee5a-4885-add5-c30b4495b281.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VfKdH3KeIRG8iIljlHEf2ck5OXG4Z8/yf2AOohCgqgk=","crlite_enrolled":true,"id":"92292d1f-471
b-4db3-ba30-6f423a7d649b","last_modified":1562024790389},{"schema":1562024786680,"derHash":"/ikDnS1H0CkoTZqoz7He1yb/DiX955/oSpVAGHhktLc=","subject":"SERIALNUMBER=201819,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODE5","whitelist":false,"attachment":{"hash":"05b1a5a6497b489b6d6a517b7b39506cb13e79efc9a9ba91d6c7fc2fc2c20683","size":2333,"filename":"-K9Xx7VSSzN1D6LkHvOiAdN5OId_n4uHBErF19bWM-A=.pem","location":"security-state-staging/intermediates/635f8211-242f-4cc5-8ffa-a716fe7af988.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+K9Xx7VSSzN1D6LkHvOiAdN5OId/n4uHBErF19bWM+A=","crlite_enrolled":false,"id":"90bc409e-b5d7-4431-bbe4-21feadabcedd","last_modified":1562024787417},{"schema":1562024785925,"derHash":"Xwo1uk+Epl9osW1KM/ZRfAl3CDk+qv0oVvuak0GHGfQ=","subject":"CN=SGTRUST EMAIL AND CLIENT CA,O=SGssl,C=KR","subjectDN":"MEMxCzA
JBgNVBAYTAktSMQ4wDAYDVQQKEwVTR3NzbDEkMCIGA1UEAxMbU0dUUlVTVCBFTUFJTCBBTkQgQ0xJRU5UIENB","whitelist":false,"attachment":{"hash":"17a9b911f686f237aa390ea2ff06319ae420ccb51198aeed267a5518db5715c4","size":1723,"filename":"gQN5MDXBIRQe70cFfEaNKKTh3AELpmBrtzu-04X41Po=.pem","location":"security-state-staging/intermediates/4fecef25-4c06-47de-9524-159f4379ebf8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gQN5MDXBIRQe70cFfEaNKKTh3AELpmBrtzu+04X41Po=","crlite_enrolled":false,"id":"65f004f2-8ee7-4e50-a1d2-01f1ae7a9bd2","last_modified":1562024786673},{"schema":1562024783680,"derHash":"PKGOHtvmhg1wkU6aoNuOYeGT5+9UfNq4tN9UX0bexrs=","subject":"CN=BlackCert\\, Inc. ECC OV Certification Authority,O=BlackCert\\, Inc.,L=Denver,ST=CO,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDTzEPMA0GA1UEBxMGRGVudmVyMRgwFgYDVQQKEw9CbGFja0NlcnQsIEluYy4xNzA1BgNVBAMTLkJsYWNrQ2VydCwgSW5jLiBFQ0MgT1YgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"1f0b0920e94a21420191c41211ce3bc
ffb04a7ce995f0af6bd0b824c3b294700","size":1313,"filename":"bQkT-mQD0009MLZyZZBcx4FuOI9_hOoj322Ms-tQWFo=.pem","location":"security-state-staging/intermediates/7feaca48-406a-4093-b833-11b132d33bdd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bQkT+mQD0009MLZyZZBcx4FuOI9/hOoj322Ms+tQWFo=","crlite_enrolled":false,"id":"9e10f424-cd96-43ca-bfe4-a236bf60a4c6","last_modified":1562024784419},{"schema":1562024782184,"derHash":"xRuDoN5JogGl++lHAywEcC+Mp8LQKt8otz1CyKzRw2I=","subject":"CN=DigiCert SHA2 High Assurance Code Signing CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xNTAzBgNVBAMTLERpZ2lDZXJ0IFNIQTIgSGlnaCBBc3N1cmFuY2UgQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"54b858a92a75d1898919ae2dbf0249a5192fa1abe37b3e993d38ef789c3653cc","size":1902,"filename":"SOMlUK5lwhJe91sGwPNVv0zyq01iywv_f4ztkbkD4Rs=.pem","location":"security-state-staging/intermediates/5ba14d1f-2ebf-41
4a-a378-e6c4bae24fd8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SOMlUK5lwhJe91sGwPNVv0zyq01iywv/f4ztkbkD4Rs=","crlite_enrolled":true,"id":"e3b58caf-2eb9-4b25-9732-0c4502a01f62","last_modified":1562024782921},{"schema":1562024775415,"derHash":"1Dn4jo8vgKMG+RDc3lSNcbv9mahfxwNO+2EON0lVCTI=","subject":"CN=Cloudflare RSA DV CA,O=Cloudflare\\, Inc.,L=San Francisco,ST=CA,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNU2FuIEZyYW5jaXNjbzEZMBcGA1UEChMQQ2xvdWRmbGFyZSwgSW5jLjEdMBsGA1UEAxMUQ2xvdWRmbGFyZSBSU0EgRFYgQ0E=","whitelist":false,"attachment":{"hash":"0937a5bef35a20366a9d1dce5f361e3ec0fce9ea799d8c4f053763a0f051e116","size":1634,"filename":"HyqqOGaeH9zg7Bg12wtuQNNUB5DZwfj2c0W_oWqDLI0=.pem","location":"security-state-staging/intermediates/c91a2caf-3079-4edb-9866-0831343c6e4a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HyqqOGaeH9zg7Bg12wtuQNNUB5DZwfj2c0W/oWqDLI0=","crlite_enrolled":false,"id":"e4608891-f782-40aa-8ec9-06ab2e2cf7b0","last_modifi
ed":1562024776157},{"schema":1562024774677,"derHash":"U39guIoxdvSyFWdH23H34sEGaEUm2fp/UmtukUQXi1U=","subject":"CN=McAfee Code Signing CA 2,O=McAfee\\, Inc.,L=Santa Clara,ST=CA,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEUMBIGA1UEBxMLU2FudGEgQ2xhcmExFTATBgNVBAoTDE1jQWZlZSwgSW5jLjEhMB8GA1UEAxMYTWNBZmVlIENvZGUgU2lnbmluZyBDQSAy","whitelist":false,"attachment":{"hash":"ae65196a88f85c709ece2d8f3936cb8d958a94c0968600b289b616617e38e411","size":2097,"filename":"UOb_aKj9K46D2KVYS2zC_0EO6gN1gKFCU77O9fiUQAI=.pem","location":"security-state-staging/intermediates/8811b1a8-349c-4b4e-8801-f5594cc329e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UOb/aKj9K46D2KVYS2zC/0EO6gN1gKFCU77O9fiUQAI=","crlite_enrolled":false,"id":"67bc7ab5-6413-4e91-b1c4-078571161042","last_modified":1562024775407},{"schema":1562024773191,"derHash":"n048Qvr+2jz4jAXMS0rwwK8wZBXDDT0e6+3r99F3qYI=","subject":"CN=Hostpoint DV SSL CA - G1,OU=Domain Validated SSL,O=Hostpoint AG,C=CH","subjectDN":"MGYxCzAJBgN
VBAYTAkNIMRUwEwYDVQQKEwxIb3N0cG9pbnQgQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMSEwHwYDVQQDExhIb3N0cG9pbnQgRFYgU1NMIENBIC0gRzE=","whitelist":false,"attachment":{"hash":"31c545df0c9287df1891ee7b1dfb383d83b9b321cd47a06cd0839a7276526477","size":1886,"filename":"KgLIfe7B9GImTO2eqwyHoxC8kpEMc7pC4vGNYZbchyA=.pem","location":"security-state-staging/intermediates/8daa3e79-7c44-475e-b300-0f7bce72bc93.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KgLIfe7B9GImTO2eqwyHoxC8kpEMc7pC4vGNYZbchyA=","crlite_enrolled":false,"id":"ebd61b76-f146-485d-8454-4f96842fc39f","last_modified":1562024773933},{"schema":1562024772426,"derHash":"O4u3vuWk6yHqjZJ58/RWyvO4nFbW3Uxpo/vX+eTtnNM=","subject":"CN=SSLs.com ECC EV Secure Server CA,OU=Controlled by Sectigo exclusively for SSLs.com,O=SSLs.com (Namecheap\\, Inc.),L=Phoenix,ST=Arizona,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTEQMA4GA1UEBxMHUGhvZW5peDEjMCEGA1UEChMaU1NMcy5jb20gKE5hbWVjaGVhcCwgSW5jLikxNzA1BgNVBAsTLkNvbnRyb2xsZWQgYn
kgU2VjdGlnbyBleGNsdXNpdmVseSBmb3IgU1NMcy5jb20xKTAnBgNVBAMTIFNTTHMuY29tIEVDQyBFViBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"153e25238ab589a8e93ff09e8b7ffa6150358fa68c68b93cc94f92faa5455a28","size":1423,"filename":"Ym-0KV9EAV6PC8waJvh5eI-QjQ_3STgXc-UH0obWlKM=.pem","location":"security-state-staging/intermediates/1dbfb594-d15e-4c6d-8944-fa5c1ca6d499.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ym+0KV9EAV6PC8waJvh5eI+QjQ/3STgXc+UH0obWlKM=","crlite_enrolled":false,"id":"e298cb45-294a-447d-a70e-9e33908895ee","last_modified":1562024773182},{"schema":1562024771685,"derHash":"1Ia/o/ANFl7iz2Jw/afQCBfljNot9Polbg8usSLPjwI=","subject":"CN=TeleSec PKS CA 8,OU=T-Systems Trust Center,O=T-Systems International GmbH,C=DE","subjectDN":"MHAxCzAJBgNVBAYTAkRFMSUwIwYDVQQKExxULVN5c3RlbXMgSW50ZXJuYXRpb25hbCBHbWJIMR8wHQYDVQQLExZULVN5c3RlbXMgVHJ1c3QgQ2VudGVyMRkwFwYDVQQDExBUZWxlU2VjIFBLUyBDQSA4","whitelist":false,"attachment":{"hash":"6429eb3f7af5f32d22260a3d57e029842bb6095362c3
ccacc7482be3a501efcc","size":1597,"filename":"cQ5-P7xFNQKPQ_CQI4rTW9uBJQm8ZTcsHGP7IsAVuSM=.pem","location":"security-state-staging/intermediates/76092767-ec1d-46b8-804e-59e91f2d0727.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cQ5+P7xFNQKPQ/CQI4rTW9uBJQm8ZTcsHGP7IsAVuSM=","crlite_enrolled":false,"id":"8208c8e6-ee6a-4515-bd16-3d2ff082836a","last_modified":1562024772418},{"schema":1562024770934,"derHash":"UNPXH8DNfjatrjIiH+++jMKbJna6MmwJuPobJNvnVRQ=","subject":"CN=Plex Devices High Assurance CA2,O=Plex\\, Inc.,C=US","subjectDN":"MEwxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpQbGV4LCBJbmMuMSgwJgYDVQQDEx9QbGV4IERldmljZXMgSGlnaCBBc3N1cmFuY2UgQ0Ey","whitelist":false,"attachment":{"hash":"67f35d42ba7361bbc47c1f3a29680a229ed60061b9fa502c40e4669b0794e8aa","size":1699,"filename":"ymL44ll2Q9SIPAQZkomkZ5uFqCHuOYoXpsbrXWfyZkg=.pem","location":"security-state-staging/intermediates/17ca09ba-dca0-4d29-ba41-22b2b69e084a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ymL44ll2Q9SIPAQZkomkZ5uFq
CHuOYoXpsbrXWfyZkg=","crlite_enrolled":false,"id":"2a05f09e-4930-43ff-891b-351f3751cce6","last_modified":1562024771677},{"schema":1562024769411,"derHash":"6mljaWdQVkoiiz64jg/UMExdonp6+S0dQZk1elAHgxU=","subject":"CN=WoTrus EV SSL CA,O=WoTrus CA Limited,C=CN","subjectDN":"MEQxCzAJBgNVBAYTAkNOMRowGAYDVQQKDBFXb1RydXMgQ0EgTGltaXRlZDEZMBcGA1UEAwwQV29UcnVzIEVWIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"fc57e3fad962bd4b00feeaae47893e01b5b42af32dadb1d3e0e55cad0d68a007","size":1691,"filename":"bfm30K2ufQC3gQINxl7OwREoFSQEJrK4ecMD3jy_Qlc=.pem","location":"security-state-staging/intermediates/744615e6-3b14-49f9-9fef-3d7691a5c6d6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bfm30K2ufQC3gQINxl7OwREoFSQEJrK4ecMD3jy/Qlc=","crlite_enrolled":true,"id":"9cb658c6-3e52-4a94-b178-1d2ab7a03ad7","last_modified":1562024770176},{"schema":1562024768666,"derHash":"eErKEGO+RwCzpi9Fwvk7fu+L8jD7hpYQ6GT8Szoj0J8=","subject":"CN=GeoTrust DV SSL SHA256 CA,OU=Domain Validated SSL,O=GeoTrust Inc.,C
=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEiMCAGA1UEAxMZR2VvVHJ1c3QgRFYgU1NMIFNIQTI1NiBDQQ==","whitelist":false,"attachment":{"hash":"336b710bd635c00f02cb1abb4dfdd7642880004f653cb1e6b7aaa8dc272df643","size":1735,"filename":"jP-_jyFvpl2RHZrfgoObTO1xpirwu4KeuFSYhdPgDno=.pem","location":"security-state-staging/intermediates/c7c73925-4bfb-4972-94cf-7df88442e3bb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jP+/jyFvpl2RHZrfgoObTO1xpirwu4KeuFSYhdPgDno=","crlite_enrolled":true,"id":"ace5b1a2-9c9e-48ab-8146-03a2d8f88d8f","last_modified":1562024769403},{"schema":1562024767927,"derHash":"UnpgsCq/OkpVGcT2L7vVYOMDQHTu7IuHmaqTaGk/420=","subject":"CN=SSL.com RSA SSL subCA,O=SSL Corporation,L=Houston,ST=Texas,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMR4wHAYDVQQDDBVTU0wuY29tIFJTQSBTU0wgc3ViQ0E=","whitelist":false,"attachment":{"hash":"19883ec9
48ba65cabab87774d50633120945ef053a62f8362d2e09b43597fe1a","size":2292,"filename":"7LcB5Z8ATVz4rcQtIY5xJir8_-F3e_HPi8IDdCnjCaE=.pem","location":"security-state-staging/intermediates/23914bfd-6f12-4a9d-8c1a-a2c9e445a1bf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7LcB5Z8ATVz4rcQtIY5xJir8/+F3e/HPi8IDdCnjCaE=","crlite_enrolled":true,"id":"b976a3a6-3c96-4aca-9c5f-fc654e3c4f6c","last_modified":1562024768658},{"schema":1562024767188,"derHash":"cx09nPqgYUh6HXFEWkL2ffCvyipsLS+Y/3s84RKx9Wg=","subject":"CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US","subjectDN":"MEoxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQDExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBYMw==","whitelist":false,"attachment":{"hash":"657ef5d80546aa62cbfc4df47ce7b6d13a55f1a365959985c45ff6cd95bbba49","size":1983,"filename":"YLh1dUR9y6Kja30RrAn7JKnbQG_uEtLMkBgFF2Fuihg=.pem","location":"security-state-staging/intermediates/56cc56ae-6c42-4e45-a1ee-4dff7ceb2ed4.pem","mimetype":"application/x-pem-file"},"pubKeyH
ash":"YLh1dUR9y6Kja30RrAn7JKnbQG/uEtLMkBgFF2Fuihg=","crlite_enrolled":false,"id":"dd797093-8a63-4153-8bb1-7f1ad9eb78d4","last_modified":1562024767919},{"schema":1562024764929,"derHash":"wwmtIoGSEzUs3Jlx0brY2/2MGlwnflYHm9xLFfPC+IY=","subject":"SERIALNUMBER=201420,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE0MjA=","whitelist":false,"attachment":{"hash":"82baf28c8e8f2f5eed9bfa651ab576ae26debfdbe468a8da9e531007866fd3f4","size":2093,"filename":"BXPYBHLDcjLdWqfbeS-3Wn3FyXMcPOt4MLp_WZ3dNRE=.pem","location":"security-state-staging/intermediates/c37fe368-288e-403b-92f1-5f67e7fb18b0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BXPYBHLDcjLdWqfbeS+3Wn3FyXMcPOt4MLp/WZ3dNRE=","crlite_enrolled":false,"id":"f5badd92-19cd-42f3-8fd9-bca16a2010de","last_modified":1562024765675},{"schema":1562024764185,"derHash":"OwstKZr3dNbDMrK/q7RfRNhmQyuVUuoJTVKbbtElBIs=","subject":"SERIALNUMBER=A82743287,CN=Camerfirma Codesign II - 2014,OU=AC CAMERF
IRMA,O=AC Camerfirma S.A.,L=Madrid (see current address at https://www.camerfirma.com/address),C=ES","subjectDN":"MIHLMQswCQYDVQQGEwJFUzEWMBQGA1UECwwNQUMgQ0FNRVJGSVJNQTEbMBkGA1UECgwSQUMgQ2FtZXJmaXJtYSBTLkEuMRIwEAYDVQQFEwlBODI3NDMyODcxSzBJBgNVBAcMQk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCBodHRwczovL3d3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTEmMCQGA1UEAwwdQ2FtZXJmaXJtYSBDb2Rlc2lnbiBJSSAtIDIwMTQ=","whitelist":false,"attachment":{"hash":"f1869c6545bc1c6234532651e68563d726b9b578290681c53ff1d9eb8955d278","size":3011,"filename":"8es0CNrSdbjFtrocXsDOpgrVyEAq0-J-uvoksmifuDk=.pem","location":"security-state-staging/intermediates/a6d8c412-ac3b-422e-8b40-1476c1f2271d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8es0CNrSdbjFtrocXsDOpgrVyEAq0+J+uvoksmifuDk=","crlite_enrolled":false,"id":"de0d0798-3da0-4c1c-b5e2-d1f8d2450c88","last_modified":1562024764922},{"schema":1562024763424,"derHash":"f6T/aOwEqZ11KNUIX5SQf00d0cU4G6zcgy7VyWAhRnY=","subject":"CN=Sectigo RSA Domain Validation Secure Server
CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGPMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxNzA1BgNVBAMTLlNlY3RpZ28gUlNBIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"c5bc13ba28e3fad9bb69c25f294e5bebe315acc4947330a5cd0d2ce7928e2994","size":2166,"filename":"4a6cPehI7OG6cuDZka5NDZ7FR8a60d3auda-sKfg4Ng=.pem","location":"security-state-staging/intermediates/c2e0bcef-51d3-4306-93e1-9a40a8e77b7e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4a6cPehI7OG6cuDZka5NDZ7FR8a60d3auda+sKfg4Ng=","crlite_enrolled":false,"id":"6598d3bd-466d-49c7-b158-9ec07c6d53ac","last_modified":1562024764178},{"schema":1562024762680,"derHash":"k63XyEhr8VpBaUnhY3vCGaNFXjdODq+YAVMDWrF/PsU=","subject":"CN=HARICA Qualified Legal Entities SubCA R1,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGXMQswCQYDVQQGEwJHUjEPMA0GA1UEB
xMGQXRoZW5zMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTExMC8GA1UEAxMoSEFSSUNBIFF1YWxpZmllZCBMZWdhbCBFbnRpdGllcyBTdWJDQSBSMQ==","whitelist":false,"attachment":{"hash":"bc6cc8a34a080067df5a211a1ee0cc3ef6a1dcf5be3086883e888f22e2186b93","size":2434,"filename":"3NY0njQdFfwxsQu3sKMmdqGNJfWSRtz3x_GJn2JrJSM=.pem","location":"security-state-staging/intermediates/0c53d623-ca04-458c-a73c-43feafde8b16.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3NY0njQdFfwxsQu3sKMmdqGNJfWSRtz3x/GJn2JrJSM=","crlite_enrolled":false,"id":"892e29c1-f423-4b27-9ee7-bc21c7e30e3d","last_modified":1562024763416},{"schema":1562024761185,"derHash":"XEvFlykauccCP7ZEX9YDgaZcYN3UBPEk5foUP+mLBfM=","subject":"CN=Trustwave S/MIME SHA256 CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGkMQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjEsMCoGA1UEAxMjVHJ1c3R3YXZlIFMvTU
lNRSBTSEEyNTYgQ0EsIExldmVsIDExHzAdBgkqhkiG9w0BCQEWEGNhQHRydXN0d2F2ZS5jb20=","whitelist":false,"attachment":{"hash":"ed83656947f250a6c5ddc676c7ae6695bbf83f8d233c9e01dcb0ae8574c80def","size":1833,"filename":"0ziypZGtbQSlJkd3bO6sa64Aaev_F9DMXoWrdIPMuic=.pem","location":"security-state-staging/intermediates/322a4690-6387-44f2-8714-f8ecfa2909cb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0ziypZGtbQSlJkd3bO6sa64Aaev/F9DMXoWrdIPMuic=","crlite_enrolled":true,"id":"e02c5baa-af93-44fd-a07d-a4dc0f77962f","last_modified":1562024761923},{"schema":1562024760432,"derHash":"mZNeIEJFNewBbzN7K+aPE0neZszkylqzZ/jzc4IVuDM=","subject":"CN=DigiCert Secure Site ECC CA-1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJjAkBgNVBAMTHURpZ2lDZXJ0IFNlY3VyZSBTaXRlIEVDQyBDQS0x","whitelist":false,"attachment":{"hash":"c1873c9110b38d6483be9516efcc79cdd751a74f8f10ff176ee411a27f5e6802","size":1374,"filename":"Z5_2
RtWXrCvvJsLXdZ4t9HEaVg21e9AhczULn9tmg4M=.pem","location":"security-state-staging/intermediates/63cecafd-26c5-4442-a764-6a7ef05785ca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Z5/2RtWXrCvvJsLXdZ4t9HEaVg21e9AhczULn9tmg4M=","crlite_enrolled":true,"id":"38a4e0fc-47a6-4351-8c6e-d512e40ea47b","last_modified":1562024761178},{"schema":1562024759684,"derHash":"l4vPOcPDqs7+EEj6A2AoPcLr+lFQAkxeN4UU0+decpU=","subject":"CN=Ecclesiastical Academy of Vella Client RSA SubCA R1,O=University Ecclesiastical Academy of Vella of Ioannina,L=Ioannina,C=GR","subjectDN":"MIGfMQswCQYDVQQGEwJHUjERMA8GA1UEBwwISW9hbm5pbmExPzA9BgNVBAoMNlVuaXZlcnNpdHkgRWNjbGVzaWFzdGljYWwgQWNhZGVteSBvZiBWZWxsYSBvZiBJb2FubmluYTE8MDoGA1UEAwwzRWNjbGVzaWFzdGljYWwgQWNhZGVteSBvZiBWZWxsYSBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"1ea505bcb0b55faef63c1cc254b9f6612d99491beb1b6b0958f3ee1c4f3c1675","size":2463,"filename":"BMcD2w-cJB838WspMeM-A5JCa6C9qk45hCCtD2798To=.pem","location":"security-state-stagin
g/intermediates/649a06eb-0758-4347-a0b6-aee78ce4e55a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BMcD2w+cJB838WspMeM+A5JCa6C9qk45hCCtD2798To=","crlite_enrolled":false,"id":"9598a752-8f67-4ba2-b7dc-4c47cdf017e6","last_modified":1562024760423},{"schema":1562024758184,"derHash":"rtqeEp5fuhJTynkRau2ZDd+qqyS9SKHMvZmn4Dyd25Y=","subject":"CN=WISeKey CertifyID Standard G1 CA,OU=Copyright (c) 2005 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGKMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEmMCQGA1UECxMdQ29weXJpZ2h0IChjKSAyMDA1IFdJU2VLZXkgU0ExFjAUBgNVBAsTDUludGVybmF0aW9uYWwxKTAnBgNVBAMTIFdJU2VLZXkgQ2VydGlmeUlEIFN0YW5kYXJkIEcxIENB","whitelist":false,"attachment":{"hash":"99f53a0f0a04102d0dc798862f7cddb908d4b19a382c02d2a501e95f73f888a4","size":1796,"filename":"V-iy-tAeMX9lDedsiiJL_8dZxPz-eL1s19Q5oU1d1Vg=.pem","location":"security-state-staging/intermediates/6968a7e4-49ad-4bc8-966e-16c6348b8280.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"V+iy+tAeMX9lDedsiiJL/8dZ
xPz+eL1s19Q5oU1d1Vg=","crlite_enrolled":true,"id":"7af2b755-f8c2-4221-b4d9-98a4a40d8f82","last_modified":1562024758924},{"schema":1562024757412,"derHash":"E++zmi9mVOjGe9BPTG1MkM1sq1CRvO3HN4f2t309P+c=","subject":"CN=Entrust Certification Authority - L1K,OU=See www.entrust.net/legal-terms+OU=(c) 2012 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTIgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFL","whitelist":false,"attachment":{"hash":"2317985189faf07f31bc3c665a12f23068191e798992ad37652b74c99ac9bb73","size":1813,"filename":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0uc=.pem","location":"security-state-staging/intermediates/18eafa54-0261-4c50-a26c-e36ab1883d27.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"980Ionqp3wkYtN9SZVgMzuWQzJta1nfxNPwTem1X0u
c=","crlite_enrolled":true,"id":"760c1e85-d14f-45de-9089-5346d069bb23","last_modified":1562024758176},{"schema":1562024755893,"derHash":"fYmukYslr9+RA27uXBXljGAPQiZoZqjeAccdvGNcocA=","subject":"CN=AlwaysOnSSL CA - G2,OU=Domain Validated SSL,O=CertCenter AG,C=DE","subjectDN":"MGIxCzAJBgNVBAYTAkRFMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEcMBoGA1UEAxMTQWx3YXlzT25TU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"5a3569b6f9543f3155c9ebc71c27e7c74e57fd312e089d9ad6781dcd5667723d","size":1646,"filename":"ssE7QqKUKKZNwPdkucGxKcejYYKjpfRsYXOHhO9vDYI=.pem","location":"security-state-staging/intermediates/97de2daa-b660-43e4-9979-80e4f6a0f540.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ssE7QqKUKKZNwPdkucGxKcejYYKjpfRsYXOHhO9vDYI=","crlite_enrolled":false,"id":"d788b871-e71a-4146-9d20-3e2d8c9eecac","last_modified":1562024756665},{"schema":1562024754381,"derHash":"XMXixoF272PUrFuyRW0vzBMohPpzVWgy+TJ1HXZdpy8=","subject":"SERIALNUMBER=201727,CN=C
itizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzI3","whitelist":false,"attachment":{"hash":"5a7146a77461838f5a1843035d4a48aa4c82961a25f1da94dc025a7f4abcdd8b","size":2402,"filename":"bB9c6AN2JnHasyK5D2eIB9oxCfM50LTPnnl3kB89YXE=.pem","location":"security-state-staging/intermediates/22cae430-9901-4519-aec3-bbc56ed82b06.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bB9c6AN2JnHasyK5D2eIB9oxCfM50LTPnnl3kB89YXE=","crlite_enrolled":false,"id":"0b86594c-f5d4-4575-b6f7-b68483bebf4b","last_modified":1562024755141},{"schema":1562024751078,"derHash":"CYa1occxTvsE+2SLnitXz0hC/R1DRdKOUglMkKn+y/4=","subject":"CN=NAESB Issuing CA - SHA384 - G3,O=GMO GlobalSign Inc.,L=Portsmouth,ST=New Hampshire,C=US","subjectDN":"MIGBMQswCQYDVQQGEwJVUzEWMBQGA1UECBMNTmV3IEhhbXBzaGlyZTETMBEGA1UEBxMKUG9ydHNtb3V0aDEcMBoGA1UEChMTR01PIEdsb2JhbFNpZ24gSW5jLjEnMCUGA1UEA
xMeTkFFU0IgSXNzdWluZyBDQSAtIFNIQTM4NCAtIEcz","whitelist":false,"attachment":{"hash":"d49a532b85e082e491e221c8f33b16fe8422a94bea4c35c9948650604f3ca837","size":2073,"filename":"LV_Lp60GpBfNPlUINSof9qendyj5Iph8haNKt4Ks1OU=.pem","location":"security-state-staging/intermediates/d212f5ca-0adf-4e01-8ef0-908775f6b878.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LV/Lp60GpBfNPlUINSof9qendyj5Iph8haNKt4Ks1OU=","crlite_enrolled":false,"id":"7b2c039b-5a89-4f22-9b42-e0bd5d57c6b3","last_modified":1562024752817},{"schema":1562024749921,"derHash":"Lx4jkI1LNfslICo2QLpXBUvq3mextgcP+Jb+AQ9UYTs=","subject":"CN=FUJIFILM Fnet CA - S,O=FUJIFILM,C=JP","subjectDN":"MD8xCzAJBgNVBAYTAkpQMREwDwYDVQQKEwhGVUpJRklMTTEdMBsGA1UEAxMURlVKSUZJTE0gRm5ldCBDQSAtIFM=","whitelist":false,"attachment":{"hash":"1d23dc7789b794fe7d42ddcfba44e339a63d08faa95b81febad9709dab455441","size":1589,"filename":"HklRNHbqiczty-mu_7-EsslYyqJV5eL1EXnD11xrky0=.pem","location":"security-state-staging/intermediates/1eed61f6-1e57-4d9d-a
db4-743c366a80ed.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HklRNHbqiczty+mu/7+EsslYyqJV5eL1EXnD11xrky0=","crlite_enrolled":false,"id":"4d214f92-f862-44fa-a108-b0165201355b","last_modified":1562024751070},{"schema":1562024749130,"derHash":"efH1q2l96/GV9bfaZflTmWgu2uuAEVudQqauXi+piAI=","subject":"CN=TrustAsia TLS RSA CA,OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MHIxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEdMBsGA1UEAxMUVHJ1c3RBc2lhIFRMUyBSU0EgQ0E=","whitelist":false,"attachment":{"hash":"9c4047b27b1b439594f0eb24b088e1d1ed2f32b8eaf4ad49dd4d2745b8add3f5","size":1683,"filename":"jzqM6_58ozsPRvxUzg0hzjM-GcfwhTbU_G0TCDvL7hU=.pem","location":"security-state-staging/intermediates/2c6b0e8d-5db7-43f4-ac20-43f2a3577b50.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jzqM6/58ozsPRvxUzg0hzjM+GcfwhTbU/G0TCDvL7hU=","crlite_enrolled":false,"id":"985da675-4aa3-4fc4-a366-147d9cc
6b52b","last_modified":1562024749914},{"schema":1562024743075,"derHash":"48UkTRX44LA09QCQO32hHFfBZWF1uGYIx/zcVh0IG/Y=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - CFEA,OU=Certificados de Firma Electronica Avanzada,O=Firmaprofesional S.A.,C=ES","subjectDN":"MIGbMQswCQYDVQQGEwJFUzEeMBwGA1UECgwVRmlybWFwcm9mZXNpb25hbCBTLkEuMTMwMQYDVQQLDCpDZXJ0aWZpY2Fkb3MgZGUgRmlybWEgRWxlY3Ryb25pY2EgQXZhbnphZGExEjAQBgNVBAUTCUE2MjYzNDA2ODEjMCEGA1UEAwwaQUMgRmlybWFwcm9mZXNpb25hbCAtIENGRUE=","whitelist":false,"attachment":{"hash":"388c7390fd655de86c6807905f53164ea046c0a2c453eea6afb6887f81eba392","size":2337,"filename":"KO9CWWzDLCHF2tkv_s3T4tkDZ1JcNCoaADD2wa1h9Es=.pem","location":"security-state-staging/intermediates/c1de4d24-123b-4648-9d5d-4b7609ce59a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KO9CWWzDLCHF2tkv/s3T4tkDZ1JcNCoaADD2wa1h9Es=","crlite_enrolled":false,"id":"17c9e6f6-0f5d-41db-af92-89fb0e502421","last_modified":1562024743816},{"schema":1562024742327,"derHash":"EjRl7sQJL
4z3q/6SuMcBrAnqeaSY8dP2oCwXFPOahCM=","subject":"CN=DKHS Device CA,OU=GeoRoot Certification Authority,O=NTT DOCOMO\\, INC.,C=JP","subjectDN":"MGsxCzAJBgNVBAYTAkpQMRkwFwYDVQQKExBOVFQgRE9DT01PLCBJTkMuMSgwJgYDVQQLEx9HZW9Sb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRcwFQYDVQQDEw5ES0hTIERldmljZSBDQQ==","whitelist":false,"attachment":{"hash":"0dad32db64d125e5bd490ac9ead766806e1830e2dd3231d12e06165af78bc99f","size":1435,"filename":"2csLg17pewpYWpMoGlL9tpqZNfK0Xiyb8-ZdoxQJDfw=.pem","location":"security-state-staging/intermediates/215e95e7-dbc9-41ad-beca-82dc6583e809.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2csLg17pewpYWpMoGlL9tpqZNfK0Xiyb8+ZdoxQJDfw=","crlite_enrolled":false,"id":"1d5ac6e1-d38a-4677-b3a5-9433b4cd1a5a","last_modified":1562024743067},{"schema":1562024741573,"derHash":"fwEpH2i6JJHUuT3A+YPz27ahQ8MAeqs+ShIEPKtdOe0=","subject":"SERIALNUMBER=201806,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ
2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODA2","whitelist":false,"attachment":{"hash":"d8c1a6a0b861a09c8788da6425106999f114b15b2b5e416683ce65f3f97232d2","size":2333,"filename":"HUkqo7ks9SSqrwVtx5-EbZ5_X2pu1urVxQlJdSbTQ6A=.pem","location":"security-state-staging/intermediates/eca3931d-d300-4dec-a61c-e938b033c589.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"HUkqo7ks9SSqrwVtx5+EbZ5/X2pu1urVxQlJdSbTQ6A=","crlite_enrolled":false,"id":"d6563e6e-19de-4000-b6b1-f6915fc1fa4e","last_modified":1562024742319},{"schema":1562024740056,"derHash":"RgOPYyYijNtWYZxSJmYT2gTIykmeDQOw7c/8EQ1c/HA=","subject":"CN=GlobalSign PersonalSign 2 ECC CA SHA 384 - G4,O=GlobalSign nv-sa,C=BE","subjectDN":"MGAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTYwNAYDVQQDEy1HbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAyIEVDQyBDQSBTSEEgMzg0IC0gRzQ=","whitelist":false,"attachment":{"hash":"c7d733918214f65618244169320b852165e4cf03e0cdcbb3c09a1516a67e706c","size":1317,"filename":"lna5HZAGso
cA3Pju5zM06F95XywtOa-LxU5QUgC3EX8=.pem","location":"security-state-staging/intermediates/b72356d7-b40c-46a5-a245-76ee8e592a3a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lna5HZAGsocA3Pju5zM06F95XywtOa+LxU5QUgC3EX8=","crlite_enrolled":false,"id":"ab4c9864-87dc-43a9-b4a5-f4d223bebbb7","last_modified":1562024740795},{"schema":1562024739285,"derHash":"/QKa3j96gKmNb//JQpBGWF7x2MuBk6F/YhQxfQZS18M=","subject":"CN=COMODO/HP Secure Email CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MHwxCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMSIwIAYDVQQDExlDT01PRE8vSFAgU2VjdXJlIEVtYWlsIENB","whitelist":false,"attachment":{"hash":"adb2966a8c1fc1a877edbb79b2d43109f804829872e34bd8667f85ba432153e5","size":1975,"filename":"VQkNSqdqPoVan53-i1N5YrjNCMnJRtvNFB7icXr9un8=.pem","location":"security-state-staging/intermediates/c3470c12-1607-4586-9888-c399a9291d93.pem","mimetype":"application/x-pem-file"},
"pubKeyHash":"VQkNSqdqPoVan53+i1N5YrjNCMnJRtvNFB7icXr9un8=","crlite_enrolled":false,"id":"851cd0f4-450c-474d-8fd8-6090b0b6f5f4","last_modified":1562024740048},{"schema":1562024737001,"derHash":"lylXMEAxI07Rdnn9y5dVbWFz1fK/Dm5m1hJoDKbndoU=","subject":"CN=UZI-register Medewerker niet op naam CA G3,O=CIBG,C=NL","subjectDN":"MGoxCzAJBgNVBAYTAk5MMQ0wCwYDVQQKDARDSUJHMRcwFQYDVQRhDA5OVFJOTC01MDAwMDUzNTEzMDEGA1UEAwwqVVpJLXJlZ2lzdGVyIE1lZGV3ZXJrZXIgbmlldCBvcCBuYWFtIENBIEcz","whitelist":false,"attachment":{"hash":"a6ad25c671822cfc5a55526a91ef47c754a74a1c8a12fd7b454e85652c742c79","size":2645,"filename":"io70m-V_59D3apVL30ZLD4BQjGAhNUmM2cLS-be8t_s=.pem","location":"security-state-staging/intermediates/c7d2ec98-db00-4406-89b7-d86ce3937af3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"io70m+V/59D3apVL30ZLD4BQjGAhNUmM2cLS+be8t/s=","crlite_enrolled":false,"id":"74733176-ea07-49c5-b60a-dbd7c1256529","last_modified":1562024737740},{"schema":1562024733253,"derHash":"j6YC//WQ31g6NtUJwmX2w+qMNK
nVbP+GKF+/6ZNr/FU=","subject":"CN=JCAN Sub Root CA0,OU=JCAN Sub Root CA0,O=JIPDEC,C=JP","subjectDN":"MFYxCzAJBgNVBAYTAkpQMQ8wDQYDVQQKEwZKSVBERUMxGjAYBgNVBAsTEUpDQU4gU3ViIFJvb3QgQ0EwMRowGAYDVQQDExFKQ0FOIFN1YiBSb290IENBMA==","whitelist":false,"attachment":{"hash":"871cbff3d95fe676c0cd3b4745350c714edd6aadf6d40bd13bf176dce9ea6e41","size":1382,"filename":"I02P_H74AjyBi_GfR4lBhtey51ZDKA2W-fOZZSid4V4=.pem","location":"security-state-staging/intermediates/7b2549ac-1575-477f-9793-1ddb62c1fd9f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"I02P/H74AjyBi/GfR4lBhtey51ZDKA2W+fOZZSid4V4=","crlite_enrolled":true,"id":"496c9bfb-8161-4544-af96-3b6e9fdff991","last_modified":1562024733996},{"schema":1562024730949,"derHash":"Y7BwFldXT8YPNIx4UFj4MKft0MhjxysSkPjUfV2Sh/s=","subject":"SERIALNUMBER=201803,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQF
EwYyMDE4MDM=","whitelist":false,"attachment":{"hash":"152a682a8ba56d789b2a9e4fca605dec1b7b9981f653fa67f030bcf66f10a6ad","size":2337,"filename":"K4GLd4lfZhixwmB0xbzzoe824xrytO-tH5fMEZ6ifsM=.pem","location":"security-state-staging/intermediates/9d8577c4-554c-403a-ac20-21abaafba3d0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"K4GLd4lfZhixwmB0xbzzoe824xrytO+tH5fMEZ6ifsM=","crlite_enrolled":false,"id":"77846c07-4d7d-4170-ba9e-bc880bed629a","last_modified":1562024731705},{"schema":1562024729465,"derHash":"2Haggfs4J7oipAh99nUSb/ipaquQNkvGH2LOjpUHqpM=","subject":"CN=Intermediate Certificate DV SSL CA - G2,OU=Domain Validated SSL,O=Intermediate Certificate,C=NL","subjectDN":"MIGBMQswCQYDVQQGEwJOTDEhMB8GA1UEChMYSW50ZXJtZWRpYXRlIENlcnRpZmljYXRlMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEwMC4GA1UEAxMnSW50ZXJtZWRpYXRlIENlcnRpZmljYXRlIERWIFNTTCBDQSAtIEcy","whitelist":false,"attachment":{"hash":"82dcd057921f6bd85130996e035be697fc268a9a31d1830d5ee055f355b2dee8","size":1577,"filename":"pJ9
PrX4U-hWFvZYgO5Qo0PX4C-dnEo-R9p0ek-2ssDE=.pem","location":"security-state-staging/intermediates/bbbdb8ec-d55b-42f0-a90b-e0f5e445ce73.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pJ9PrX4U+hWFvZYgO5Qo0PX4C+dnEo+R9p0ek+2ssDE=","crlite_enrolled":false,"id":"eca16d96-e44c-48e8-b1a7-205586e51810","last_modified":1562024730202},{"schema":1562024728714,"derHash":"DrvfFG5j9w+qWSfujlNG6clsXw2b3TISsE7WaHF5h00=","subject":"CN=AC Firmaprofesional - CA1,OU=Consulte http://www.firmaprofesional.com+OU=Jerarquia de Certificacion Firmaprofesional,O=Firmaprofesional S.A. NIF A-62634068,L=C/ Muntaner 244 Barcelona,C=ES","subjectDN":"MIIBFjELMAkGA1UEBhMCRVMxJzAlBgkqhkiG9w0BCQEWGGNhMUBmaXJtYXByb2Zlc2lvbmFsLmNvbTEiMCAGA1UEBxMZQy8gTXVudGFuZXIgMjQ0IEJhcmNlbG9uYTExMC8GA1UECxMoQ29uc3VsdGUgaHR0cDovL3d3dy5maXJtYXByb2Zlc2lvbmFsLmNvbTE0MDIGA1UECxMrSmVyYXJxdWlhIGRlIENlcnRpZmljYWNpb24gRmlybWFwcm9mZXNpb25hbDEtMCsGA1UEChMkRmlybWFwcm9mZXNpb25hbCBTLkEuIE5JRiBBLTYyNjM0MDY4MSIwIAYDVQQDExlBQyBGaXJtYXByb2Zlc2lvb
mFsIC0gQ0Ex","whitelist":false,"attachment":{"hash":"bbdd4921a8930b33ba74748b849b85b781995c1df4ff5eb07b3e4a285a958904","size":2093,"filename":"B_ap-qAli0QgK_GmwkqkWS5Ta20el3pYN4MTgORZMjo=.pem","location":"security-state-staging/intermediates/e4d22c71-7375-4c8e-a206-47116103869e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"B/ap+qAli0QgK/GmwkqkWS5Ta20el3pYN4MTgORZMjo=","crlite_enrolled":true,"id":"dcfb6515-9873-4150-b71a-c2af481fddfe","last_modified":1562024729458},{"schema":1562024727955,"derHash":"BsJ0YcBBfVE84PY0+rWt0wyI7w4lyE/eDkISW4jKBHU=","subject":"CN=COMODO ECC Extended Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGSMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE4MDYGA1UEAxMvQ09NT0RPIEVDQyBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"f0ed2d7d6e60382f01a548b254343b7f5848f74af3472fd2ceae1c155e23dd
b0","size":1321,"filename":"YH3gQW7-dkqR106QZabQ1Aj-6wtLuy70aAZpWreNcBc=.pem","location":"security-state-staging/intermediates/15b589e4-c214-4d65-96a6-5424c2514a86.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YH3gQW7+dkqR106QZabQ1Aj+6wtLuy70aAZpWreNcBc=","crlite_enrolled":true,"id":"acf6d715-9a75-4c95-8c4d-840c47d4fdfd","last_modified":1562024728706},{"schema":1562024722725,"derHash":"Ln5luxoBPa8L32k4UC5D44IX/gDXbKL5n3qp4pj0hTQ=","subject":"CN=STRATO SSL,OU=Domain Validated SSL,O=STRATO AG,C=DE","subjectDN":"MFUxCzAJBgNVBAYTAkRFMRIwEAYDVQQKEwlTVFJBVE8gQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRMwEQYDVQQDEwpTVFJBVE8gU1NM","whitelist":false,"attachment":{"hash":"cb6ed07ea2573518382e2f2f838842a96f379ada0bbc5db15e4288b7b8384a9f","size":1532,"filename":"_LT0CMe5E7VgQyKeEQ6GlQp8nKPL1MNFw-rtCUA-0ak=.pem","location":"security-state-staging/intermediates/511003bd-4380-40cc-ac6c-e0ea641c6692.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/LT0CMe5E7VgQyKeEQ6GlQp8nKPL1MNF
w+rtCUA+0ak=","crlite_enrolled":false,"id":"ad34bc25-64e6-458b-baf2-26022a492da8","last_modified":1562024723456},{"schema":1562024721984,"derHash":"pXbClIH1oqyx30dQBimmD5b2rKMk6Hj/3Pq9heVkmu8=","subject":"CN=The Koble Group CA,OU=Orion Health Direct Secure Messaging,O=The Koble Group\\, LLC,C=US","subjectDN":"MHgxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRUaGUgS29ibGUgR3JvdXAsIExMQzEtMCsGA1UECxMkT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nMRswGQYDVQQDExJUaGUgS29ibGUgR3JvdXAgQ0E=","whitelist":false,"attachment":{"hash":"26d2fe9de89376ac8e1c6629f7c329bd897418bfef5bfd6e1f96183eb3015d65","size":2276,"filename":"-bxu-yaG1XG4Y7p1WLTMN9VfkKOEpBn_Bsu7tJsi2U4=.pem","location":"security-state-staging/intermediates/60227b91-2842-47e3-8043-43cd17252c0b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+bxu+yaG1XG4Y7p1WLTMN9VfkKOEpBn/Bsu7tJsi2U4=","crlite_enrolled":false,"id":"df4be940-d330-4c3a-9923-bafa52a3e054","last_modified":1562024722717},{"schema":1562024721169,"derHash":"SUKtBEEhiuwi2sQXrE
mdfeTFTsvT0zXzSl+LBo9ubJY=","subject":"CN=Actalis Extended Validation Server CA G1,O=Actalis S.p.A./03358520967,L=Milano,ST=Milano,C=IT","subjectDN":"MIGHMQswCQYDVQQGEwJJVDEPMA0GA1UECAwGTWlsYW5vMQ8wDQYDVQQHDAZNaWxhbm8xIzAhBgNVBAoMGkFjdGFsaXMgUy5wLkEuLzAzMzU4NTIwOTY3MTEwLwYDVQQDDChBY3RhbGlzIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VydmVyIENBIEcx","whitelist":false,"attachment":{"hash":"9dca42b206384547c8a9ebe8126b177b165c1f506a22d83e63775bee433d5029","size":2243,"filename":"iiRAhRCKHfD_Hl73m_3kvrRJsjFUTTQ3Xaw6E8qVac4=.pem","location":"security-state-staging/intermediates/0bd6f9b1-1826-400c-9fc8-549c1432ff92.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iiRAhRCKHfD/Hl73m/3kvrRJsjFUTTQ3Xaw6E8qVac4=","crlite_enrolled":true,"id":"d9a1301f-ca8e-47e1-b6ae-ce1d56900f3c","last_modified":1562024721910},{"schema":1562024719663,"derHash":"00E47RRYrn3k7eo27TmS5PRubsnPHmM+U43p/w84+OU=","subject":"CN=Orion Health Direct Secure Messaging Public HISP CA,OU=Orion Health Direct Secure Messaging,O=Orion
Health Inc.,C=US","subjectDN":"MIGWMQswCQYDVQQGEwJVUzEaMBgGA1UEChMRT3Jpb24gSGVhbHRoIEluYy4xLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzE8MDoGA1UEAxMzT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nIFB1YmxpYyBISVNQIENB","whitelist":false,"attachment":{"hash":"94c25258c628090ccbfef78173fce5207a7b7d7d0786b01453aea545d1cc641f","size":2320,"filename":"_DkDZj8zqrqts7ngR8veYl3QLQiCdaFvI7j3ovLJLjQ=.pem","location":"security-state-staging/intermediates/e2ed17bc-c0a2-4f50-8600-d93fffa8427b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/DkDZj8zqrqts7ngR8veYl3QLQiCdaFvI7j3ovLJLjQ=","crlite_enrolled":false,"id":"a445528f-2000-4f16-a7e8-904d69b05da8","last_modified":1562024720406},{"schema":1562024718918,"derHash":"7qNsD/o/VP/bDPFLO9NKU+x7d19UBT3YsH39L4vskIM=","subject":"CN=Trustwave Extended Validation SHA256 CA\\, Level 1,O=Trustwave Holdings\\, Inc.,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGxMQswCQYDVQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfB
gNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE5MDcGA1UEAxMwVHJ1c3R3YXZlIEV4dGVuZGVkIFZhbGlkYXRpb24gU0hBMjU2IENBLCBMZXZlbCAxMR8wHQYJKoZIhvcNAQkBFhBjYUB0cnVzdHdhdmUuY29t","whitelist":false,"attachment":{"hash":"621b7f65d119f8cacb26cf5956b7a206e1d42c2d931a41cf4311fdbc0bf8501e","size":1825,"filename":"zE8XYBj3Yf6nXNVdTry0tXUx6LGqIbwnbyd7rIOKue0=.pem","location":"security-state-staging/intermediates/1cd64f4c-6774-4383-aea2-1be395858f0e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zE8XYBj3Yf6nXNVdTry0tXUx6LGqIbwnbyd7rIOKue0=","crlite_enrolled":true,"id":"3ba57112-f78c-4fa3-94f7-1eb77f9f8f2f","last_modified":1562024719654},{"schema":1562024717416,"derHash":"M+ik7UiTB2DOGtei1E8HmyL2YAUnU5dhCeb8dHUlUr0=","subject":"CN=TrustAsia OV TLS Pro CA,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MFYxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSAwHgYDVQQDExdUcnVzdEFzaWEgT1YgVExTIFBybyBDQQ==","whitelist":false,"attachment":{"hash":"8f0250802a5effb55f9283f5becfe9736
b17e0bdec2123b985d6c547798bc239","size":1666,"filename":"cJhQtqu9DZRLxNRS1bDaM1E3d1GuJZmxfwKcfb-Gx3Y=.pem","location":"security-state-staging/intermediates/2a54b660-4cce-4591-9297-660cc2220117.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cJhQtqu9DZRLxNRS1bDaM1E3d1GuJZmxfwKcfb+Gx3Y=","crlite_enrolled":true,"id":"4f9e9017-56da-4481-8083-248564e69585","last_modified":1562024718171},{"schema":1562024715170,"derHash":"nN/YJZbRusnkTT5JHiwH2NzJIEGZFf1vNhz3Ch5DOxA=","subject":"CN=DigiCert SHA2 Assured ID Code Signing CA - G3,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHcxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xNjA0BgNVBAMTLURpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBDb2RlIFNpZ25pbmcgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"e43fe8619c09201ff336d2be7ea7b065245035b10edefc0d0c9cc445a0098b2d","size":1898,"filename":"jKeOrq37W9ZMRnlHh4gnOcrawDmxuqzbS5Om5m6Qyak=.pem","location":"security-state-staging/intermediates/73ad83c3-1e6c-
4031-bb8e-e7800b1bb2b3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jKeOrq37W9ZMRnlHh4gnOcrawDmxuqzbS5Om5m6Qyak=","crlite_enrolled":false,"id":"fd568972-755f-4a1e-8c44-f58d86c73a15","last_modified":1562024715911},{"schema":1562024714413,"derHash":"/IiJpBHRkQt6beFZ+zKPhN/9J1ajmnjpHLm7kMb+puQ=","subject":"CN=University of Crete CA R3,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHcxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEiMCAGA1UEAxMZVW5pdmVyc2l0eSBvZiBDcmV0ZSBDQSBSMw==","whitelist":false,"attachment":{"hash":"3f38972b3ba184fdd5a88bd5edfc309ffb146203c5e6710ef016700d3f649337","size":2775,"filename":"2tJ14hiF-3qIssF_Ns01wnvA9a1i8i26VjWdV82Wlq4=.pem","location":"security-state-staging/intermediates/9342a366-b470-4d8b-a331-808dee9e9d0a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2tJ14hiF+3qIssF/Ns01wnvA9a1i8i26VjWdV82Wlq4=","crlite_enrolled":true,"id":"ea5f5ef2
-9532-40eb-8804-ddc6a420ae90","last_modified":1562024715162},{"schema":1562024712927,"derHash":"HLRwcoz1bzAgA7sOTrBiQU+hHU+X4/BhFwyWyIBx1xE=","subject":"SERIALNUMBER=A11029279,CN=SIGNE Autoridad de Certificacion,O=SIGNE S.A.,L=Avenida de la Industria 18. Tres Cantos 28760-Madrid,C=ES","subjectDN":"MIGgMQswCQYDVQQGEwJFUzE9MDsGA1UEBww0QXZlbmlkYSBkZSBsYSBJbmR1c3RyaWEgMTguIFRyZXMgQ2FudG9zIDI4NzYwLU1hZHJpZDETMBEGA1UECgwKU0lHTkUgUy5BLjESMBAGA1UEBRMJQTExMDI5Mjc5MSkwJwYDVQQDDCBTSUdORSBBdXRvcmlkYWQgZGUgQ2VydGlmaWNhY2lvbg==","whitelist":false,"attachment":{"hash":"3f6d219cd54b538f11bc52eddaf32c9cbcb619f67f7a017b15a8e82efc886d08","size":2503,"filename":"ynelJ6-KsF0J-NiKpRriqZWi-wy8fLZiL_E1OPI9m7Q=.pem","location":"security-state-staging/intermediates/6843e057-b3a1-4c75-9cf3-558a38373e40.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ynelJ6+KsF0J+NiKpRriqZWi+wy8fLZiL/E1OPI9m7Q=","crlite_enrolled":false,"id":"5871aa8f-9987-4d45-9022-05b4d7183a7e","last_modified":1562024713662},{"schema"
:1562024711406,"derHash":"NEe3S15QClSZg/os7XOlZC5qrseIKVRhWEN99m10Nbg=","subject":"CN=Entrust Certification Authority - L1J,OU=See www.entrust.net/legal-terms+OU=(c) 2016 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTYgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFK","whitelist":false,"attachment":{"hash":"2e07048ca86219c4ca3243524ce82f92bd4d6ee5a455e2f0788fa0719d8fec57","size":1414,"filename":"jI4Ykls9hjddSkzQ6huOlUndX7rjGTHuF5_d41IfoQg=.pem","location":"security-state-staging/intermediates/4cf5d4e3-3abb-470a-8f2f-a06b53c04f64.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jI4Ykls9hjddSkzQ6huOlUndX7rjGTHuF5/d41IfoQg=","crlite_enrolled":true,"id":"b9f11e18-5206-4146-9bc4-ddabac60444f","last_modified":1562024712167},{"schema":1562024710635,"de
rHash":"/bNF0mk3ftnTQwi7eIVjKzDmH46vt+tedfgCTV/U4Yc=","subject":"CN=Actalis Extended Validation Server CA G2,O=Actalis S.p.A./03358520967,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGSMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEjMCEGA1UECgwaQWN0YWxpcyBTLnAuQS4vMDMzNTg1MjA5NjcxMTAvBgNVBAMMKEFjdGFsaXMgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTZXJ2ZXIgQ0EgRzI=","whitelist":false,"attachment":{"hash":"d7c5ffb611bebe89f018d16c77607820250f80793e311df76f8f922e05af8915","size":2324,"filename":"7BceCt47nBUwA0apsyAFMrAwZEtOsJ0HcCBwBjIkXMs=.pem","location":"security-state-staging/intermediates/f89bbfa9-5e8b-4f74-96f3-c9bd84205f7e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7BceCt47nBUwA0apsyAFMrAwZEtOsJ0HcCBwBjIkXMs=","crlite_enrolled":true,"id":"d203afe2-d732-4a47-a358-8ca78084b518","last_modified":1562024711399},{"schema":1562024709882,"derHash":"3tsxy87F+Z046G7MTXaUXfQPLlR8lOSwEkCUh1r2pVg=","subject":"CN=GeoTrust DV SSL CA - G2,OU=Domain Validated SSL
,O=GeoTrust Inc.,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEgMB4GA1UEAxMXR2VvVHJ1c3QgRFYgU1NMIENBIC0gRzI=","whitelist":false,"attachment":{"hash":"3439739bc1e7266a65a0e40c9f19967c1c86002e0c6cd9b795217957c2717c7c","size":1613,"filename":"mgUGy5n-uULtn7glVMU3OUXx8savFGjLQd6g3PsZv7U=.pem","location":"security-state-staging/intermediates/d591331f-b5b9-4283-9332-79fed3577527.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mgUGy5n+uULtn7glVMU3OUXx8savFGjLQd6g3PsZv7U=","crlite_enrolled":false,"id":"76e9e952-cf99-4bca-a810-f8e7f646e88e","last_modified":1562024710628},{"schema":1562024709140,"derHash":"QPR5Vb6j6nJsraxdP+YSl/57665bBQnh73spyDj0nSA=","subject":"CN=Atos TrustedRoot Client Issuing CA 2015,O=Atos,C=DE","subjectDN":"ME4xMDAuBgNVBAMMJ0F0b3MgVHJ1c3RlZFJvb3QgQ2xpZW50IElzc3VpbmcgQ0EgMjAxNTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"dd579a2edbed1e53c1f47b7a826616a0d492b1900
6df01fe4ca95fec7212d82c","size":1569,"filename":"tjnIUgKXmzH2ph7qdeq_3nm1xMqgGPtNJ8mM19Zcu-M=.pem","location":"security-state-staging/intermediates/f292bc25-f1b7-45ff-9df5-d56c9893901c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tjnIUgKXmzH2ph7qdeq/3nm1xMqgGPtNJ8mM19Zcu+M=","crlite_enrolled":false,"id":"4f00eb7d-2e3c-402b-9dbb-97c1958dac20","last_modified":1562024709874},{"schema":1562024708399,"derHash":"wXYR23sxE2HiDXuCMarfR4vLf/oL5YXAbeIwkiPC74o=","subject":"CN=OMC,OU=ENTIDAD DE CERTIFICACION,O=ORGANIZACION MEDICA COLEGIAL,C=ES","subjectDN":"MGUxCzAJBgNVBAYTAkVTMSUwIwYDVQQKDBxPUkdBTklaQUNJT04gTUVESUNBIENPTEVHSUFMMSEwHwYDVQQLDBhFTlRJREFEIERFIENFUlRJRklDQUNJT04xDDAKBgNVBAMMA09NQw==","whitelist":false,"attachment":{"hash":"a803776f3d271b2b4cfdeef5d9a51f8db279dd9d598247889cc6742ab3d3d9ff","size":3165,"filename":"Lx99wFPK21XD3G9yPdiQ9625RbrSgNFJnI9V5mXPXkE=.pem","location":"security-state-staging/intermediates/12aab6e1-bfdf-437e-bbc8-fcb724a9ed52.pem","mimetype":"applicati
on/x-pem-file"},"pubKeyHash":"Lx99wFPK21XD3G9yPdiQ9625RbrSgNFJnI9V5mXPXkE=","crlite_enrolled":false,"id":"6cd35988-abd6-4b5b-ad02-7e3a0e83da05","last_modified":1562024709132},{"schema":1562024706892,"derHash":"Zj/elPiDah/r2DvoMQl5MS1l/4wbcWOU5o9B2COWwfg=","subject":"CN=Aristotle University of Thessaloniki Client RSA SubCA R1,O=Aristotle University of Thessaloniki,L=Thessaloniki,C=GR","subjectDN":"MIGWMQswCQYDVQQGEwJHUjEVMBMGA1UEBwwMVGhlc3NhbG9uaWtpMS0wKwYDVQQKDCRBcmlzdG90bGUgVW5pdmVyc2l0eSBvZiBUaGVzc2Fsb25pa2kxQTA/BgNVBAMMOEFyaXN0b3RsZSBVbml2ZXJzaXR5IG9mIFRoZXNzYWxvbmlraSBDbGllbnQgUlNBIFN1YkNBIFIx","whitelist":false,"attachment":{"hash":"e884941029a92f7cc721cf8f87b2dacfc378d2d5a064c4b6ddba7ad39417d4ee","size":3027,"filename":"ytEFkkfmakfLzegbNdjrBvQKQbWEW2YFusfFkTp1XZ4=.pem","location":"security-state-staging/intermediates/a3aaecf9-aaf9-426f-bad7-768214675cd3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ytEFkkfmakfLzegbNdjrBvQKQbWEW2YFusfFkTp1XZ4=","crlite_enrolled":false
,"id":"5a75985c-ec69-4abe-a08c-8eaaa1d12c61","last_modified":1562024707639},{"schema":1562024706143,"derHash":"Pk8J1lQ4tc9+RWKIwI/p9H7U4+1mknnIGu+rC6+4agk=","subject":"CN=Louisiana Health Care Quality Forum CA,OU=Orion Health Direct Secure Messaging,O=Louisiana Health Care Quality Forum,C=US","subjectDN":"MIGbMQswCQYDVQQGEwJVUzEsMCoGA1UEChMjTG91aXNpYW5hIEhlYWx0aCBDYXJlIFF1YWxpdHkgRm9ydW0xLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEvMC0GA1UEAxMmTG91aXNpYW5hIEhlYWx0aCBDYXJlIFF1YWxpdHkgRm9ydW0gQ0E=","whitelist":false,"attachment":{"hash":"428c87d34cb911d650c2ead42003657d5e3523f033beb76ce916b9717250c2ef","size":2324,"filename":"0oFe6aMlwHnzOWvJ6PJOW1sZTMXgzyY1_0iznwf8fjM=.pem","location":"security-state-staging/intermediates/20dc63b8-33e7-40a2-a18f-047fda833f52.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0oFe6aMlwHnzOWvJ6PJOW1sZTMXgzyY1/0iznwf8fjM=","crlite_enrolled":false,"id":"5f45c22c-a691-4926-a7a5-bc9262b58299","last_modified":1562024706884},{"schema"
:1562024704660,"derHash":"wCLVzqonXypiaPp5rDVlOzpzDe+kH5zYgX1tFZvTMJc=","subject":"CN=DigiCert Secure Site Korea EV CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKTAnBgNVBAMTIERpZ2lDZXJ0IFNlY3VyZSBTaXRlIEtvcmVhIEVWIENB","whitelist":false,"attachment":{"hash":"f253f14a706e3542ba2225ccb86204637d0ef708b5d912aeccc04e74d10e5e16","size":1699,"filename":"GU23iW3XanBnTnSB-qHY60G9W7OWfde0SLEvQJL9stY=.pem","location":"security-state-staging/intermediates/3311e594-a7f2-4770-9ef8-99ef2e365393.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GU23iW3XanBnTnSB+qHY60G9W7OWfde0SLEvQJL9stY=","crlite_enrolled":false,"id":"5839e0ee-6dfe-4352-a923-db68e62acab8","last_modified":1562024705394},{"schema":1562024703916,"derHash":"twIbzzRuhQKxJ1+ABX87l0Z6yLinYWCDQOz4SE7DhIw=","subject":"CN=Symantec Shared Individual Email Certificate Authority,OU=Symantec Trust Network+OU=Universal Root Managed PKI Indiv
idual Subscriber CA,O=Symantec Corporation,C=US","subjectDN":"MIHMMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxPDA6BgNVBAsTM1VuaXZlcnNhbCBSb290IE1hbmFnZWQgUEtJIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQTE/MD0GA1UEAxM2U3ltYW50ZWMgU2hhcmVkIEluZGl2aWR1YWwgRW1haWwgQ2VydGlmaWNhdGUgQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"0e66a63db740bfecf6042b8f34f2aab90907ba00e5cafe54ab3cc5faa750bc35","size":1999,"filename":"2ZRuq3rGjU72BNFg4TcN1Ix1HL_bYnlwehHZPK517-I=.pem","location":"security-state-staging/intermediates/40eebf4d-76e5-448b-8f3f-e6f66e68137d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2ZRuq3rGjU72BNFg4TcN1Ix1HL/bYnlwehHZPK517+I=","crlite_enrolled":false,"id":"c86ad407-3434-41bc-b9a3-1e139da7091e","last_modified":1562024704651},{"schema":1562024701623,"derHash":"uNXWXCP/nYyQL/5r7B3S8gaTryDpiuR3UfHsspgSe24=","subject":"CN=Certigna Wild CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MHkxCzAJBgNVBAYTAkZSMRIw
EAYDVQQKDAlESElNWU9USVMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxHTAbBgNVBGEMFE5UUkZSLTQ4MTQ2MzA4MTAwMDM2MRkwFwYDVQQDDBBDZXJ0aWduYSBXaWxkIENB","whitelist":false,"attachment":{"hash":"c9d1b633464898b551171e5655c6d033a8158730020ca58cbc318d75b497caf4","size":2503,"filename":"6PsBH2V6vxU_w6DnSyY4EpqQYeF8QrYgohY-fWMfhmE=.pem","location":"security-state-staging/intermediates/26d15fd4-439e-44a4-9647-68a200a9c445.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6PsBH2V6vxU/w6DnSyY4EpqQYeF8QrYgohY+fWMfhmE=","crlite_enrolled":true,"id":"eea82515-872e-42a6-a344-f0b1c78abfca","last_modified":1562024702399},{"schema":1562024699344,"derHash":"Q3hZMD0Bg4Yqlvar+LA/KmnUy9MXIXZmAV4aujyEqhE=","subject":"CN=Alaska eHealth Network CA,OU=Orion Health Direct Secure Messaging,O=Alaska eHealth Network\\, Inc.,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzElMCMGA1UEChMcQWxhc2thIGVIZWFsdGggTmV0d29yaywgSW5jLjEtMCsGA1UECxMkT3Jpb24gSGVhbHRoIERpcmVjdCBTZWN1cmUgTWVzc2FnaW5nMSIwIAYDVQQDExlBbGFza2EgZUhlYWx0aCBOZXR3
b3JrIENB","whitelist":false,"attachment":{"hash":"4091de3751ab313e7e649ce44c803e724201dd6805e79a8cbff59e9c013089eb","size":2300,"filename":"dfkE-bSHbmrjRBwkrMH5PQwaIQkos_AmfwEJJXYOIa0=.pem","location":"security-state-staging/intermediates/e5662ed0-eac1-4eab-9ce5-b207ced92959.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dfkE+bSHbmrjRBwkrMH5PQwaIQkos/AmfwEJJXYOIa0=","crlite_enrolled":false,"id":"56f1c6ae-fc7f-4290-82fb-07952074ad17","last_modified":1562024700095},{"schema":1562024698606,"derHash":"QzoJ/92y7tgu6p+RjIYMBMvqsTgaSN/ixI5C4T01r4E=","subject":"CN=RapidSSL Class 3 RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGlJhcGlkU1NMIENsYXNzIDMgUlNBIENBIEcx","whitelist":false,"attachment":{"hash":"000067152686f177585432d9dbf083f3ba0e9247714199a6a0a4dd88853060d8","size":1707,"filename":"A5Wm0DA34lHONfES5fxD574yGj-Q4hJ_2RLfym2qyMQ=.pem","location":"security-state
-staging/intermediates/39d021b4-045d-4df0-bd97-f97c1c1ce4d6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"A5Wm0DA34lHONfES5fxD574yGj+Q4hJ/2RLfym2qyMQ=","crlite_enrolled":false,"id":"d9651719-df4a-45d3-b841-cec02ae95cdc","last_modified":1562024699336},{"schema":1562024697831,"derHash":"ZWldUAEX/XJw8QJ+0SHwWUJnAHVGHTN+7sf2pbdXpHo=","subject":"SERIALNUMBER=A82743287,CN=Camerfirma TSA II - 2014,OU=AC CAMERFIRMA,O=AC Camerfirma S.A.,L=Madrid (see current address at https://www.camerfirma.com/address),C=ES","subjectDN":"MIHGMQswCQYDVQQGEwJFUzEWMBQGA1UECwwNQUMgQ0FNRVJGSVJNQTEbMBkGA1UECgwSQUMgQ2FtZXJmaXJtYSBTLkEuMRIwEAYDVQQFEwlBODI3NDMyODcxSzBJBgNVBAcMQk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCBodHRwczovL3d3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTEhMB8GA1UEAwwYQ2FtZXJmaXJtYSBUU0EgSUkgLSAyMDE0","whitelist":false,"attachment":{"hash":"06cdf05da15710413bcdb3c16b8e3f0453970466f63bdc6906fdb88c05ed5da0","size":2987,"filename":"GnaOorQmNxUdFpJsmrLyIIkCM1_g9iZ0es7p5xqkBxY=.pem","location":"secur
ity-state-staging/intermediates/ee5ffdeb-6347-45c1-89a8-f3d1d0d39dc9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GnaOorQmNxUdFpJsmrLyIIkCM1/g9iZ0es7p5xqkBxY=","crlite_enrolled":false,"id":"31a8767d-3150-41ae-b216-4dca0fa22970","last_modified":1562024698597},{"schema":1562024697080,"derHash":"OOlHN3L2M8nct0O+Jx25JIgQYTqfiyh+Ld8Ns1l8jNs=","subject":"CN=UIS-IsuB1-CA","subjectDN":"MFkxEzARBgoJkiaJk/IsZAEZFgNjb20xFjAUBgoJkiaJk/IsZAEZFgZ1bmlzeXMxEzARBgoJkiaJk/IsZAEZFgN1aXMxFTATBgNVBAMTDFVJUy1Jc3VCMS1DQQ==","whitelist":false,"attachment":{"hash":"c2b1f3688781af36e6d27a330a09d939105128f808804a477bb1ecbd9f6eb250","size":2487,"filename":"vDj0a53UpusZTxtxcI-9ZUwj-RyW5jTHxGzrsv1qKs0=.pem","location":"security-state-staging/intermediates/12fc4555-cc24-4d7c-8d3f-2853ba40865b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vDj0a53UpusZTxtxcI+9ZUwj+RyW5jTHxGzrsv1qKs0=","crlite_enrolled":false,"id":"11cf500b-368e-4976-9070-e14a563874d2","last_modified":1562024697823},{"schema":15
62024696338,"derHash":"25gZTlW5NtJubLP0YKJi62ymYzfnv/F6C/wIMlH2NiY=","subject":"CN=DigiCert Transition ECC Root,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IFRyYW5zaXRpb24gRUNDIFJvb3Q=","whitelist":false,"attachment":{"hash":"a503ee47d948586edc2de135a04ad0a5bf079f3430c38e4fa52765f5414feddd","size":1260,"filename":"fKyaD_MVOHdQuouv2xwrwps_C7oWNiypOpD4TaLfXz4=.pem","location":"security-state-staging/intermediates/1d50ac3c-c208-4965-8496-e94edb6ae235.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fKyaD/MVOHdQuouv2xwrwps/C7oWNiypOpD4TaLfXz4=","crlite_enrolled":false,"id":"8f14a185-27bb-46c9-8a7d-f062d9508611","last_modified":1562024697073},{"schema":1562024693355,"derHash":"4SHBaU2nN8F7hkSK7cYU7r15Rqe0uR+zACW2NgcCOeo=","subject":"CN=TU Dortmund Chipcard CA 2,O=Technische Universitaet Dortmund,C=DE","subjectDN":"MFwxCzAJBgNVBAYTAkRFMSkwJwYDVQQKDCBUZWNobmlzY2h
lIFVuaXZlcnNpdGFldCBEb3J0bXVuZDEiMCAGA1UEAwwZVFUgRG9ydG11bmQgQ2hpcGNhcmQgQ0EgMg==","whitelist":false,"attachment":{"hash":"0bc67e75f1a550023d6bf6415f76c4bbfa22728373423b60d4e7e69eaa7bc87b","size":1967,"filename":"-p4rAAgYbHPbwWrr_BlNozrzb4GHt5BSuZwneaDRlOs=.pem","location":"security-state-staging/intermediates/41136d39-9edf-4465-ab5f-af073bc975d6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+p4rAAgYbHPbwWrr/BlNozrzb4GHt5BSuZwneaDRlOs=","crlite_enrolled":false,"id":"f972f74e-4035-4b85-850c-b92110d4c782","last_modified":1562024694110},{"schema":1562024691129,"derHash":"wYxXFOSGGJ3Sw+b1Y8WpdDTQzgpTkzDyP1ghPrhWirI=","subject":"CN=The University of Texas at Dallas RSA CA,OU=Information Security Office,O=The University of Texas at Dallas,L=Richardson,ST=TX,C=US","subjectDN":"MIG0MQswCQYDVQQGEwJVUzELMAkGA1UECBMCVFgxEzARBgNVBAcTClJpY2hhcmRzb24xKjAoBgNVBAoTIVRoZSBVbml2ZXJzaXR5IG9mIFRleGFzIGF0IERhbGxhczEkMCIGA1UECxMbSW5mb3JtYXRpb24gU2VjdXJpdHkgT2ZmaWNlMTEwLwYDVQQDEyhUaGUgVW5pdmVyc2
l0eSBvZiBUZXhhcyBhdCBEYWxsYXMgUlNBIENB","whitelist":false,"attachment":{"hash":"d83db0100dd0651aed7a1f9d2f176811876df6ea0bbd93799a522ec2d121b897","size":2215,"filename":"oSg8JaDAQ9ImWQdr0rRFk3oUkfB2cH07F8NSCR7dQiw=.pem","location":"security-state-staging/intermediates/46cfac9c-1592-4289-82a4-76a735c25a0a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oSg8JaDAQ9ImWQdr0rRFk3oUkfB2cH07F8NSCR7dQiw=","crlite_enrolled":false,"id":"1e473b20-47b2-43a7-a660-2f7f01c79bea","last_modified":1562024691858},{"schema":1562024690373,"derHash":"2Sv46fqGfb2LeUxqSeb/H8+scfPX9K5Vu5WH6ySsZIk=","subject":"CN=Intel External Issuing CA 7B,O=Intel Corporation,L=Santa Clara,ST=CA,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEUMBIGA1UEBxMLU2FudGEgQ2xhcmExGjAYBgNVBAoTEUludGVsIENvcnBvcmF0aW9uMSUwIwYDVQQDExxJbnRlbCBFeHRlcm5hbCBJc3N1aW5nIENBIDdC","whitelist":false,"attachment":{"hash":"3252f7b7ea0a73ee0dc29fb52054976ceefcfe385a3ed7d3230c1b17bc3b0a51","size":2584,"filename":"nNwmZpaXyiCdG3FOv6U
ayFdR2hD6Jp81-ByKuK4m0hc=.pem","location":"security-state-staging/intermediates/0635c17f-ed6f-4dda-9c17-ad7e86ea81de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nNwmZpaXyiCdG3FOv6UayFdR2hD6Jp81+ByKuK4m0hc=","crlite_enrolled":true,"id":"71f46dcf-1163-4ae4-82d0-70227f0d13aa","last_modified":1562024691121},{"schema":1562024689525,"derHash":"Fgi/h0FM3Pq0J5ECoZcC2dWZapEynj3y+ASVRzqthsY=","subject":"CN=GROB-WERKE GmbH und Co. KG SMIME CA,O=GROB-WERKE GmbH und Co. KG,L=Mindelheim,ST=Bayern,C=DE","subjectDN":"MIGGMQswCQYDVQQGEwJERTEPMA0GA1UECBMGQmF5ZXJuMRMwEQYDVQQHEwpNaW5kZWxoZWltMSMwIQYDVQQKExpHUk9CLVdFUktFIEdtYkggdW5kIENvLiBLRzEsMCoGA1UEAxMjR1JPQi1XRVJLRSBHbWJIIHVuZCBDby4gS0cgU01JTUUgQ0E=","whitelist":false,"attachment":{"hash":"e902888764e15f459260d581daca513e4d9312ed891f8366f61cfa3a818da4eb","size":1898,"filename":"9C6CMkucrjEzjuHJ0_Yvi_3haIQNwSsvg6dURAGCvQw=.pem","location":"security-state-staging/intermediates/2eeedbc9-d767-4120-9f52-1b8596e7016e.pem","mimetype":"applicati
on/x-pem-file"},"pubKeyHash":"9C6CMkucrjEzjuHJ0/Yvi/3haIQNwSsvg6dURAGCvQw=","crlite_enrolled":false,"id":"aa9c5926-0cf0-4383-8c7c-86fbb9e3275c","last_modified":1562024690364},{"schema":1562024688131,"derHash":"WWFWvCpDFet2jIJtfMoykVjK48b492BTaWW+58ra9u0=","subject":"CN=GENIOUS RSA Organization Validation Secure Server CA,O=Genious Communications,L=Marrakech,ST=Marrakech,C=MA","subjectDN":"MIGVMQswCQYDVQQGEwJNQTESMBAGA1UECBMJTWFycmFrZWNoMRIwEAYDVQQHEwlNYXJyYWtlY2gxHzAdBgNVBAoTFkdlbmlvdXMgQ29tbXVuaWNhdGlvbnMxPTA7BgNVBAMTNEdFTklPVVMgUlNBIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"b67d95389481054676ee7593a657285e90ebc97092559fd2c290b35a70e6adb4","size":2186,"filename":"TGPK3krjByA1NGzfFpJE6yAuNxJS1sOdosy48yS34bY=.pem","location":"security-state-staging/intermediates/bb436925-661b-4c7d-b6d9-4cadc9fee665.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TGPK3krjByA1NGzfFpJE6yAuNxJS1sOdosy48yS34bY=","crlite_enrolled":false,"id":"1
d14fc34-cfca-4720-bd7d-f6bab37335af","last_modified":1562024689517},{"schema":1562024682352,"derHash":"pahZzgMQqF9CpUEdpj+DtBROuUvIplqZdayGgvZn23c=","subject":"CN=KLASS3-SK 2016,OU=Sertifitseerimisteenused,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MIGGMQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEhMB8GA1UECwwYU2VydGlmaXRzZWVyaW1pc3RlZW51c2VkMRcwFQYDVQRhDA5OVFJFRS0xMDc0NzAxMzEXMBUGA1UEAwwOS0xBU1MzLVNLIDIwMTY=","whitelist":false,"attachment":{"hash":"c86690eaf270e47aa47657df040ad7c00e44765f0541b6f39df22674b68d953a","size":2316,"filename":"xef4f3N5BNZP0Q0QcNP_K4mvKbkyVm6HUsu5v4fhkxw=.pem","location":"security-state-staging/intermediates/61e6fc9a-cbb9-46d0-a853-873ffe0a401b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xef4f3N5BNZP0Q0QcNP/K4mvKbkyVm6HUsu5v4fhkxw=","crlite_enrolled":false,"id":"f96d8ef1-2281-4fea-82fe-99e436804069","last_modified":1562024683335},{"schema":1562024680960,"derHash":"FaWN4H88JJ4m/o6pDWtxqWU210V50tO+z6ct66KP5uI=","subject":
"SERIALNUMBER=201802,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE4MDI=","whitelist":false,"attachment":{"hash":"97f5722cd07529a5c144cd8737c75d9df0894a3a632ef8cd9ed63f6dd432fd99","size":2337,"filename":"5Jza1_aAF2D2CllpCE_uElJfffYV4G7_ri5y_L78I7k=.pem","location":"security-state-staging/intermediates/81cbc5f5-72e7-4902-9d9c-06c7bc371cce.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5Jza1/aAF2D2CllpCE/uElJfffYV4G7/ri5y/L78I7k=","crlite_enrolled":false,"id":"a598405e-8a6e-4c07-a762-15192c3040d1","last_modified":1562024682344},{"schema":1562024675733,"derHash":"1AT6+kui9Ca2bNIZxtqE+RwPt8tYQp7IB34qdkMU1V0=","subject":"CN=SHECA RSA Extended Validation Code Signing CA,O=UniTrust,C=CN","subjectDN":"MFgxCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDE2MDQGA1UEAwwtU0hFQ0EgUlNBIEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZSBTaWduaW5nIENB","white
list":false,"attachment":{"hash":"a15897802d23e699976d747ab51f10c55e3269b1d232e8dc8dfd3c1939062fec","size":2056,"filename":"FFIzlMw5Xc6E2LQuZDJSIUp6ilY_hMZ3pV79yOdqxT8=.pem","location":"security-state-staging/intermediates/072a73d3-de48-413f-ae4c-8ece54ee2d74.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FFIzlMw5Xc6E2LQuZDJSIUp6ilY/hMZ3pV79yOdqxT8=","crlite_enrolled":false,"id":"651de304-28d1-4884-8d67-d193d89dce21","last_modified":1562024676798},{"schema":1562024670128,"derHash":"djFLQcutTTf+2gYd//UKywPsgAfmXTYsZSPOGcQaaho=","subject":"CN=SSL Blindado 2,OU=Certifica\u00e7\u00e3o Digital,O=Site Blindado S.A.,L=S\u00e3o Paulo,ST=SP,C=BR","subjectDN":"MIGGMQswCQYDVQQGEwJCUjELMAkGA1UECBMCU1AxEzARBgNVBAcMClPDo28gUGF1bG8xGzAZBgNVBAoTElNpdGUgQmxpbmRhZG8gUy5BLjEfMB0GA1UECwwWQ2VydGlmaWNhw6fDo28gRGlnaXRhbDEXMBUGA1UEAxMOU1NMIEJsaW5kYWRvIDI=","whitelist":false,"attachment":{"hash":"fa57ea713308d04440c58d4fa7a1500999cf041024985d5f8f20c47c1e4a3ee9","size":2162,"filename":"4-iqNnPo4Sq4x
Wzqc2uPKOdxlIAOrvZz-berOkTMMI4=.pem","location":"security-state-staging/intermediates/589c3c5b-ea54-467b-96cd-c34e117bb8a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4+iqNnPo4Sq4xWzqc2uPKOdxlIAOrvZz+berOkTMMI4=","crlite_enrolled":true,"id":"6d3bd155-89d6-4c5a-9aff-142261690ccc","last_modified":1562024671131},{"schema":1562024668446,"derHash":"rL+uvcvOGshMmM8kFAtgYalzGOkmIVQJ3Az0x75QZiA=","subject":"CN=Fraunhofer Service CA - G02,OU=Fraunhofer Corporate PKI,O=Fraunhofer,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGPMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjETMBEGA1UECgwKRnJhdW5ob2ZlcjEhMB8GA1UECwwYRnJhdW5ob2ZlciBDb3Jwb3JhdGUgUEtJMSQwIgYDVQQDDBtGcmF1bmhvZmVyIFNlcnZpY2UgQ0EgLSBHMDI=","whitelist":false,"attachment":{"hash":"f5d44378aebefee88f997f5baa67fce4e41c10b120f38a27f2ed2087d1347498","size":2028,"filename":"k3nI5IvSB1BwykyJ-lu8LZoHsTKb-Zq2JRhAXR7OjBU=.pem","location":"security-state-staging/intermediates/86390395-14c7-4e6b-8840-51150f08950a.pem","
mimetype":"application/x-pem-file"},"pubKeyHash":"k3nI5IvSB1BwykyJ+lu8LZoHsTKb+Zq2JRhAXR7OjBU=","crlite_enrolled":true,"id":"97c725bf-dfc1-4940-bed8-defc980dd7a3","last_modified":1562024669293},{"schema":1562024663411,"derHash":"GPQ2j+k7PK4CUjC85+rTQP2Q+yf5oQ42/uifxFTyJ4g=","subject":"CN=CrossTrust DV CA5,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MFAxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMRowGAYDVQQDExFDcm9zc1RydXN0IERWIENBNQ==","whitelist":false,"attachment":{"hash":"2095edba6d54418256b1c82c2499bd9f75e39608c3dc0e3b395dac7a8870a119","size":1642,"filename":"mfydQPGtsWNlYaYdaD2eprRgxX0MdeoAw0G537kLXzk=.pem","location":"security-state-staging/intermediates/779275d4-b98f-4e5c-9606-7d98a85e2d32.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mfydQPGtsWNlYaYdaD2eprRgxX0MdeoAw0G537kLXzk=","crlite_enrolled":true,"id":"70cd95b5-008a-41bf-b38e-525ca51982fb","last_modified":1562024664425},{"schema":1562024662659,"derHash":"oEZpf7hZ8MJrsTYMDebkqRS
zuujAYxpW7GiJI/lUHuo=","subject":"CN=Greek School Network CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHgxCzAJBgNVBAYTAkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEjMCEGA1UEAxMaR3JlZWsgU2Nob29sIE5ldHdvcmsgQ0EgUjI=","whitelist":false,"attachment":{"hash":"80378669992df895fe7c174b9406850901e279fea75c842fd6b3c2ff6c14043b","size":2515,"filename":"98TGXZmp4DiQ3clcfPyaWFAMTYcQaD8IUO2NCCrpEK0=.pem","location":"security-state-staging/intermediates/01368076-14b4-4b4e-b1c1-b9b490b60ec0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"98TGXZmp4DiQ3clcfPyaWFAMTYcQaD8IUO2NCCrpEK0=","crlite_enrolled":true,"id":"589d8720-2ba2-4203-acda-9cb678c4e712","last_modified":1562024663402},{"schema":1562024661916,"derHash":"HyAocW4zWE8z+pIKgCR77s3D18smUZVUxkTOTExgd6k=","subject":"CN=Gandi Pro SSL CA 2,O=Gandi,L=Paris,ST=Paris,C=FR","subjectDN":"MFoxCzAJBgNVBAYTAkZSMQ4wDAYDVQQIEwVQYXJpczEOMAwGA1UEBxMFUGFyaX
MxDjAMBgNVBAoTBUdhbmRpMRswGQYDVQQDExJHYW5kaSBQcm8gU1NMIENBIDI=","whitelist":false,"attachment":{"hash":"0b14e4838611e1040d16acabdae7756870a021f18844011f2f87c5ebfbf97f22","size":2101,"filename":"XQpYwYiHpVLml4eYccUVEZJpEOh5QrryTkXbWPum2FM=.pem","location":"security-state-staging/intermediates/da1204ed-4700-4361-bbeb-cffde787f323.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XQpYwYiHpVLml4eYccUVEZJpEOh5QrryTkXbWPum2FM=","crlite_enrolled":true,"id":"2e2be106-0cd8-423e-acc8-a99f0741c76c","last_modified":1562024662650},{"schema":1562024659671,"derHash":"o6MQwwU6lC/Rbc0oOqm5qYtOvFAShttTSERFwtQGQ5U=","subject":"SERIALNUMBER=201728,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzI4","whitelist":false,"attachment":{"hash":"f88597ad972bcb415157d862d83d8ba205b08e3b6f81f186151e052143d9c2c1","size":2402,"filename":"Zm0n84A8Hfky-2Hxedi6v
Tc2e7xTRFGkgkHRccK9SQA=.pem","location":"security-state-staging/intermediates/1aa3c537-650e-493f-b57a-b13c3670115b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Zm0n84A8Hfky+2Hxedi6vTc2e7xTRFGkgkHRccK9SQA=","crlite_enrolled":false,"id":"329c9535-9fd6-4a5d-b07b-307647627c7b","last_modified":1562024660408},{"schema":1562024655926,"derHash":"CA5+NrPH+pbsxn239NQc7OHRlEAa8ZakpHt5vcSXBXQ=","subject":"CN=FR03,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"ME4xCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlESElNWU9USVMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxDTALBgNVBAMMBEZSMDM=","whitelist":false,"attachment":{"hash":"0e878e377f71dc53a8708f58d1a029dab3d1ba19aae19818ecaa81b11ff7f98c","size":2361,"filename":"5aXOeu2kcFD4gRajILogB4nDzNx-0ZsGl_VZJJ4Bcck=.pem","location":"security-state-staging/intermediates/ed40f0b5-5f1f-4858-b1a9-0e0e454d7a2f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5aXOeu2kcFD4gRajILogB4nDzNx+0ZsGl/VZJJ4Bcck=","crlite_enrolled":false,"id":"f6f0bd28-e216-439a-
b50e-0eb0e9c39fd4","last_modified":1562024656668},{"schema":1562024654415,"derHash":"JEobcwyh11pppS9eX0IbtUfHl+JK++nPuZyZNIjNwnE=","subject":"CN=SSLs.com RSA OV Secure Server CA,O=SSLs.com,L=Phoenix,ST=Arizona,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRAwDgYDVQQHEwdQaG9lbml4MREwDwYDVQQKEwhTU0xzLmNvbTEpMCcGA1UEAxMgU1NMcy5jb20gUlNBIE9WIFNlY3VyZSBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"d9c03b9d8ce926db05361c2a2e9ebb41169021361e35605f6762ed68c201c0f8","size":2129,"filename":"Zyd1gFi_OihMqmE83KKHmgjVpD3p-B1OSbDcm-Mh1HI=.pem","location":"security-state-staging/intermediates/5b7360a4-d5af-4db0-a175-6ac34f6f359c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Zyd1gFi/OihMqmE83KKHmgjVpD3p+B1OSbDcm+Mh1HI=","crlite_enrolled":false,"id":"ede190ce-6e19-49ed-b777-76affc7a59c3","last_modified":1562024655178},{"schema":1562024653662,"derHash":"FcgTItoi8e58gjGswLUuTxenrmswgRui9mfmSP+C2Ko=","subject":"CN=GeoTrust Class 3 RSA CA G1,OU=www.digicert.com,O=Dig
iCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGkdlb1RydXN0IENsYXNzIDMgUlNBIENBIEcx","whitelist":false,"attachment":{"hash":"35c33dbfaa3357dd26c043e304c3f067c93a1570a4a61d76b2cbd5f28ce68451","size":1658,"filename":"yQ3gGILmNT91r7IExWW0hjmSsOFoarXP2l8w_rCiqjI=.pem","location":"security-state-staging/intermediates/b9dc0b3e-4e93-4c74-a2a2-70baecda5ec8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yQ3gGILmNT91r7IExWW0hjmSsOFoarXP2l8w/rCiqjI=","crlite_enrolled":false,"id":"986f0086-4142-4ea7-a032-8318876fe49c","last_modified":1562024654408},{"schema":1562024650671,"derHash":"jP4TFbFn/L/IsanrVOl/Eygu4lB+DSOwFI0FOuhzb+M=","subject":"CN=Greek Academic Network CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MHoxCzAJBgNVBAYTAkdSMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTElMCMGA1UEAwwcR3JlZWsgQWNhZGVtaWMgTmV0d29yay
BDQSBSMg==","whitelist":false,"attachment":{"hash":"afcea3835e49125880e2099105b71bc7371bb52e07197ab0d7790bdb0e1cdff8","size":2182,"filename":"oioxNDiUVFIA2kOPSehGUrby06Q-zdTupeexlqTUVGg=.pem","location":"security-state-staging/intermediates/27abd690-5eb8-49e0-b7dc-56479e0f2e1e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oioxNDiUVFIA2kOPSehGUrby06Q+zdTupeexlqTUVGg=","crlite_enrolled":true,"id":"d8c20a63-2574-4aa9-99cf-2c559248f49e","last_modified":1562024651416},{"schema":1562024648439,"derHash":"YBKTyiCwmgMpXRliVsaVP/nrqBHbjjzhQEE8G//pqGk=","subject":"CN=AC FNMT Usuarios,OU=Ceres,O=FNMT-RCM,C=ES","subjectDN":"MEsxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ2VyZXMxGTAXBgNVBAMMEEFDIEZOTVQgVXN1YXJpb3M=","whitelist":false,"attachment":{"hash":"98c05c3829d90c10dc917b2cce8e171d89d2621e2a69fdf4104f2ca5c4e1d9b5","size":2434,"filename":"CyFyC5Hw5FxD8ufLGF9VLrfeftRrKsFy7jm1CEFxCm8=.pem","location":"security-state-staging/intermediates/c63e246e-e4a9-41cd-9d0c-d6bd4563f
4d5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CyFyC5Hw5FxD8ufLGF9VLrfeftRrKsFy7jm1CEFxCm8=","crlite_enrolled":false,"id":"e7b7334d-1c42-4373-af42-028c694f4f20","last_modified":1562024649177},{"schema":1562024647686,"derHash":"x5C0cShEfsC2DyK/y3ldccMm3ZEO4Sy7TMWoYZHrkbw=","subject":"CN=RapidSSL RSA CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHTAbBgNVBAMTFFJhcGlkU1NMIFJTQSBDQSAyMDE4","whitelist":false,"attachment":{"hash":"8d48a4abde2999b864fb9607b6e2b43144a92714cdf63de21b44d83e923ae297","size":1687,"filename":"nKWcsYrc-y5I8vLf1VGByjbt-Hnasjl-9h8lNKJytoE=.pem","location":"security-state-staging/intermediates/fbead98d-cbd8-4432-90ef-c600588aad52.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"nKWcsYrc+y5I8vLf1VGByjbt+Hnasjl+9h8lNKJytoE=","crlite_enrolled":true,"id":"1bc7f624-5af1-4e32-adc2-850bcbe509c2","last_modified":1562024648431},{"schema":1562024646934,"d
erHash":"mMJUWiwFo0LtsiqfbHzMH+mNh1lWduOimK3pf3sBKR0=","subject":"CN=Telia Extended Validation CA v3,O=Telia Finland Oyj,C=FI","subjectDN":"MFMxCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEoMCYGA1UEAwwfVGVsaWEgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQSB2Mw==","whitelist":false,"attachment":{"hash":"cfccad2513e8a79668b0439df943a8027f9cf6e9df609184e5a59ecb4652c42a","size":2357,"filename":"M64GXqmJRZS4-HYfzVBON86Fc4RrWpo0uUMAaJSGSoo=.pem","location":"security-state-staging/intermediates/976a3c1d-a72a-4df1-86ae-0d14b9abe958.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M64GXqmJRZS4+HYfzVBON86Fc4RrWpo0uUMAaJSGSoo=","crlite_enrolled":false,"id":"36618487-dec3-4f3c-bbcb-9c997d3da4cd","last_modified":1562024647677},{"schema":1562024645415,"derHash":"aGG71MvtoqoBBmv0dr+PL+bqnwCMsKyOF1Xioyj6WTM=","subject":"CN=GeoTrust SupremeSSL 1 ECC CA,OU=www.supremessl.com,O=SupremeSSL,C=NL","subjectDN":"MGYxCzAJBgNVBAYTAk5MMRMwEQYDVQQKEwpTdXByZW1lU1NMMRswGQYDVQQLExJ3d3cuc3VwcmVtZXNzbC5jb20xJTAjBg
NVBAMTHEdlb1RydXN0IFN1cHJlbWVTU0wgMSBFQ0MgQ0E=","whitelist":false,"attachment":{"hash":"373aa2e25b056cec6efe1e730bddc90c02ef00673b9fcdbdecf27f45022767f5","size":1435,"filename":"MvWcqevnkZnFHxjKilcZrsSWbR8T5JBIZ9pHPT2t7c4=.pem","location":"security-state-staging/intermediates/e13233f4-f7b1-4bda-a820-d84b3227b772.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MvWcqevnkZnFHxjKilcZrsSWbR8T5JBIZ9pHPT2t7c4=","crlite_enrolled":false,"id":"d0d43bdc-8347-4819-898f-44ee3a2094bc","last_modified":1562024646178},{"schema":1562024643925,"derHash":"t9/cJ+X/nzXv7J9LxTLDX3J3ibackKBIm0AkcpnZcDg=","subject":"CN=NCC Group Secure Server CA G4,O=NCC Group,C=US","subjectDN":"MEkxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlOQ0MgR3JvdXAxJjAkBgNVBAMTHU5DQyBHcm91cCBTZWN1cmUgU2VydmVyIENBIEc0","whitelist":false,"attachment":{"hash":"6bba8a4f7467c485c33229430bcdc46f0a8e260ecda70283cadc4c16d46d3efc","size":2259,"filename":"MVk5FViYCK7Pj5OrMzdLFaJfz4vqivN-THyz125ar_w=.pem","location":"security-state-staging/intermedi
ates/92243c0e-e056-4cbe-8c9c-46b2431e55f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MVk5FViYCK7Pj5OrMzdLFaJfz4vqivN+THyz125ar/w=","crlite_enrolled":false,"id":"1be64318-c01e-4e05-9642-ba1a140b8f77","last_modified":1562024644659},{"schema":1562024643182,"derHash":"rYBqk1e4fR6x3YWlo8CS0CBLpEf/SzcU4/EDT0096KA=","subject":"CN=TrustAsia ECC DV SSL CA - G7,OU=Symantec Trust Network+OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MIGbMQswCQYDVQQGEwJDTjElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxJTAjBgNVBAMTHFRydXN0QXNpYSBFQ0MgRFYgU1NMIENBIC0gRzc=","whitelist":false,"attachment":{"hash":"ebbd88e3ff6a42d32837fa50a25dbd9d8cd0a7160b4513be3bff457a5f2f9a2e","size":1662,"filename":"HxpZpgA2aeZ4tewEwREYzhJ-jiwtTgrvLw0DLcn9Zuo=.pem","location":"security-state-staging/intermediates/73491823-ff56-4639-bfd4-809dcebab607.pem","mimetype":"application/x-pem-file"},"pubKe
yHash":"HxpZpgA2aeZ4tewEwREYzhJ+jiwtTgrvLw0DLcn9Zuo=","crlite_enrolled":false,"id":"c1afb7e3-58f3-4382-aff3-6da3ae7cf800","last_modified":1562024643918},{"schema":1562024641634,"derHash":"bLxbMwid37MlI3QGbYrgu+v7p3nbrldHJ5gmygzQXao=","subject":"SERIALNUMBER=201520,CN=Citizen CA,C=BE","subjectDN":"MDMxCzAJBgNVBAYTAkJFMRMwEQYDVQQDEwpDaXRpemVuIENBMQ8wDQYDVQQFEwYyMDE1MjA=","whitelist":false,"attachment":{"hash":"f8368bcc57ccb54a60e5cd5f771bae93885dd835ac9c7d93fb4bf0c6879f2be4","size":2093,"filename":"dUEUuB5jxCsvgh9iUJs0gNgF5SUPlP6kHDXYF6TI0qg=.pem","location":"security-state-staging/intermediates/b8123175-0124-4b42-9ca9-8fa735e58ffb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dUEUuB5jxCsvgh9iUJs0gNgF5SUPlP6kHDXYF6TI0qg=","crlite_enrolled":false,"id":"b66503e2-5ae2-40cd-9a39-31e70edc2fe8","last_modified":1562024642398},{"schema":1562024640879,"derHash":"7g9kewN50+S9JLTNpvhwe2fETVUR9aJbMd0pk+0TuZE=","subject":"CN=KeyNet Systems RSA Codesigning CA,O=KeyNet Systems LLC,L=Las Ve
gas,ST=Nevada,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMQ8wDQYDVQQIEwZOZXZhZGExEjAQBgNVBAcTCUxhcyBWZWdhczEbMBkGA1UEChMSS2V5TmV0IFN5c3RlbXMgTExDMSowKAYDVQQDEyFLZXlOZXQgU3lzdGVtcyBSU0EgQ29kZXNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"d806fefd7fc730cee01857ae79aa61d872cec7e504d5fdc5b237d214bbe49a0e","size":2121,"filename":"yF0wtp1jCZD5CVHOt8FGpYuYs0KHDFYkMO7rLbCWnxs=.pem","location":"security-state-staging/intermediates/ea4041b7-4458-4530-b792-3dd083eb24ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yF0wtp1jCZD5CVHOt8FGpYuYs0KHDFYkMO7rLbCWnxs=","crlite_enrolled":false,"id":"b8a82aab-854e-43df-8a83-e56b2abc56a3","last_modified":1562024641626},{"schema":1562024640128,"derHash":"dKvl5czrdUkf9yxM8yVAXYrb/jkOGJz0MLpg5ieYh44=","subject":"CN=GlobalSign Qualified Time Stamping CA 2019,O=GlobalSign nv-sa,C=BE","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTMwMQYDVQQDEypHbG9iYWxTaWduIFF1YWxpZmllZCBUaW1lIFN0YW1waW5nIENBIDIwMTk=","whitelist":false,"at
tachment":{"hash":"390e714997d51e1e6c2518f0577114169f70bf99bf7075c17ede8ab266418f8b","size":2333,"filename":"wa9IwR3KKWRyfMtS73Nt1hUWl63Qj3Pfg6VDVR2hZZc=.pem","location":"security-state-staging/intermediates/9d78e16e-5b65-4571-a961-a72d55244348.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"wa9IwR3KKWRyfMtS73Nt1hUWl63Qj3Pfg6VDVR2hZZc=","crlite_enrolled":false,"id":"9e5df267-d269-49ba-accc-7148af1740ec","last_modified":1562024640872},{"schema":1562024639346,"derHash":"ce/DA7efYnc6YgZQkGKRCRN2Ftr6OBT3ZPKk8t4wjJc=","subject":"CN=Don Dominio / MrDomain RSA Codesigning CA,O=Soluciones Corporativas IP\\, SL,L=Manacor,ST=Illes Balears,C=ES","subjectDN":"MIGUMQswCQYDVQQGEwJFUzEWMBQGA1UECBMNSWxsZXMgQmFsZWFyczEQMA4GA1UEBxMHTWFuYWNvcjEnMCUGA1UEChMeU29sdWNpb25lcyBDb3Jwb3JhdGl2YXMgSVAsIFNMMTIwMAYDVQQDEylEb24gRG9taW5pbyAvIE1yRG9tYWluIFJTQSBDb2Rlc2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"93809ce288569e0a80022d76b567f6111be181c1409952f6104a03054e439930","size":2158,"filename
":"CrN64DaXdgi0ZeV86ffGFSIF8l-3irYcKimQA8lXRvc=.pem","location":"security-state-staging/intermediates/83703eb2-f064-48c1-a37b-48595cd66e27.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CrN64DaXdgi0ZeV86ffGFSIF8l+3irYcKimQA8lXRvc=","crlite_enrolled":false,"id":"827ccb06-0216-48bc-9dc5-0e275639a416","last_modified":1562024640120},{"schema":1562024636330,"derHash":"6GvBbMZJHl9LmXYxOEKz0CyZ6iY66x3CI9iY+ofISEU=","subject":"CN=Intermediate Certificate DV SSL CA - G3,OU=Domain Validated SSL,O=Intermediate Certificate,C=NL","subjectDN":"MIGBMQswCQYDVQQGEwJOTDEhMB8GA1UEChMYSW50ZXJtZWRpYXRlIENlcnRpZmljYXRlMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEwMC4GA1UEAxMnSW50ZXJtZWRpYXRlIENlcnRpZmljYXRlIERWIFNTTCBDQSAtIEcz","whitelist":false,"attachment":{"hash":"195afb969c8619e4ae9d77e800d89622d5b5e6863724ca0b08cfc1acf51e176f","size":1752,"filename":"RttTLrYI9IiksyY9ikb6Z5G21gXd-PC6JavBmeoUhFQ=.pem","location":"security-state-staging/intermediates/3c8e4cea-ada4-4d01-99ef-c17583cd2e32.pem","mi
metype":"application/x-pem-file"},"pubKeyHash":"RttTLrYI9IiksyY9ikb6Z5G21gXd+PC6JavBmeoUhFQ=","crlite_enrolled":false,"id":"19f456b7-aefd-4a74-bfc2-4c69c84b227b","last_modified":1562024637072},{"schema":1562024634825,"derHash":"/NczzyQ6oyLxiQoZuSL2+q3PM8RJhTcvH9QDYOXbRUA=","subject":"CN=HEAL-LINK Hellenic Academic Libraries Link CA R2,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGOMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxOTA3BgNVBAMTMEhFQUwtTElOSyBIZWxsZW5pYyBBY2FkZW1pYyBMaWJyYXJpZXMgTGluayBDQSBSMg==","whitelist":false,"attachment":{"hash":"faa326d8a1f2b480e44d115d21b8ede6d23515f18895ccd916c77df67e3b3fe3","size":2572,"filename":"7sJ8RMpnyY2DImVRw5k-1OVZMBQjegMbRJJlc8JvQYw=.pem","location":"security-state-staging/intermediates/744082c5-b92f-4e8b-b2a4-62c76f2ed069.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"7sJ8RMpnyY2DImVRw5k+1OVZMBQjegMbRJJlc8JvQYw=","crlite_enrol
led":true,"id":"e3ec2766-2033-4174-b315-24dfed391391","last_modified":1562024635558},{"schema":1562024634083,"derHash":"k1abJqpTXj4HyJHGvS+p3Ak5wk20s3Jq2FMe2xfEl8o=","subject":"CN=Thawte EV RSA CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHjAcBgNVBAMTFVRoYXd0ZSBFViBSU0EgQ0EgMjAxOA==","whitelist":false,"attachment":{"hash":"aa41f2f1317c4207a1ce000f100f89792938ebbd08ccc7367391461f45499ac8","size":1662,"filename":"LrLVqGD-UOnCQjaFUpgBUORdtTIaWwBeJtZ2JTpAm_U=.pem","location":"security-state-staging/intermediates/96e7bbbb-d73b-4033-b2a1-e8243524a5bf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LrLVqGD+UOnCQjaFUpgBUORdtTIaWwBeJtZ2JTpAm/U=","crlite_enrolled":true,"id":"85dafc08-0b93-4086-a997-de6c1c290cdb","last_modified":1562024634817},{"schema":1562024633327,"derHash":"EYDDOuHyMiiSP2rmmMnBDccp4NgR/IsuwCcm4twm4uQ=","subject":"CN=Mary Washington Healthcare CA,OU=Orion Health
Direct Secure Messaging,O=Mary Washington Healthcare,C=US","subjectDN":"MIGJMQswCQYDVQQGEwJVUzEjMCEGA1UEChMaTWFyeSBXYXNoaW5ndG9uIEhlYWx0aGNhcmUxLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEmMCQGA1UEAxMdTWFyeSBXYXNoaW5ndG9uIEhlYWx0aGNhcmUgQ0E=","whitelist":false,"attachment":{"hash":"f27a0d7f7099ac8f18503b8f3e491b2a79d0e29e512d0183a401f13211fb332e","size":2308,"filename":"3fZZys3pCVAZzGIvFjCN9qPTAa_HZxcHFvElXaL0oEo=.pem","location":"security-state-staging/intermediates/90afa439-0588-4864-86ca-7342ec654bef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3fZZys3pCVAZzGIvFjCN9qPTAa/HZxcHFvElXaL0oEo=","crlite_enrolled":false,"id":"7f4afbf6-84ea-4275-bf34-2df9f0ef7ec1","last_modified":1562024634075},{"schema":1562024631064,"derHash":"fwfBL/9GU9a7ZfnM/RoOnuRmiE6wdyd7ubtF12JDzCI=","subject":"CN=cPanel Extended Validation RSA Certification Authority,OU=Controlled by COMODO exclusively for cPanel\\, Inc.,O=cPanel\\, Inc.,L=Houston,ST=TX,C=US","subjectDN":"MIHAMQswCQY
DVQQGEwJVUzELMAkGA1UECBMCVFgxEDAOBgNVBAcTB0hvdXN0b24xFTATBgNVBAoTDGNQYW5lbCwgSW5jLjE6MDgGA1UECxMxQ29udHJvbGxlZCBieSBDT01PRE8gZXhjbHVzaXZlbHkgZm9yIGNQYW5lbCwgSW5jLjE/MD0GA1UEAxM2Y1BhbmVsIEV4dGVuZGVkIFZhbGlkYXRpb24gUlNBIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"d1bbc1da043caed75d76f28bd38fb18682563dac07cd7bf50225a2df8a59a870","size":2263,"filename":"KpHjtz2O9rMfP4azz-Q54sswiBTZMPXTpgqz8YbaLxY=.pem","location":"security-state-staging/intermediates/9f5ff8d2-5dad-434f-96b3-f774d101a4f0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KpHjtz2O9rMfP4azz+Q54sswiBTZMPXTpgqz8YbaLxY=","crlite_enrolled":false,"id":"6210dc38-77f8-4be4-9d9d-dc0af9f6a298","last_modified":1562024631797},{"schema":1562024627331,"derHash":"yBksMve0nH8yocoAFZWn+eNsnnIFjW6qG6t3UqjBZxg=","subject":"CN=GlobalSign SMIME CA 2018,O=GlobalSign nv-sa,C=BE","subjectDN":"MEsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSEwHwYDVQQDExhHbG9iYWxTaWduIFNNSU1FIENBIDIwMTg=","whitelist":fal
se,"attachment":{"hash":"60387e84f4510d6de07955c632fa7b57744fec7421e7a6c71b8146efbe767f1e","size":1646,"filename":"5METmo6RU7kSFFHasy87-Yr-zR3pFY6GNCY1M084qpg=.pem","location":"security-state-staging/intermediates/7f667502-8313-4684-ad31-beaae087ae6e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5METmo6RU7kSFFHasy87+Yr+zR3pFY6GNCY1M084qpg=","crlite_enrolled":false,"id":"d6835983-aca8-442a-ad58-55908e0b7315","last_modified":1562024628080},{"schema":1562024626566,"derHash":"/CgbGiVMKgBz2Vk/GCOBvieHBl47UiE0VClMXC8RlTc=","subject":"CN=Sectigo RSA Extended Validation Code Signing CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGQMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxODA2BgNVBAMTL1NlY3RpZ28gUlNBIEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"33e7c322675e7bdb5f32c2d6d1233bffe8d9634feda4861f4b95735289052139","size":2154,"filename":"Mn6dn
rahNIa08AjqfJouU0xQyNvIF6P_y5xeJthQTwI=.pem","location":"security-state-staging/intermediates/e05a0dc7-704c-497d-8660-79aca583ade4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Mn6dnrahNIa08AjqfJouU0xQyNvIF6P/y5xeJthQTwI=","crlite_enrolled":false,"id":"3af61df4-c217-4f92-90ea-5bb3de3f7043","last_modified":1562024627323},{"schema":1562024624262,"derHash":"S8xeI0/oHt5Or4g6oZwxM1sLJuheBmuZReTLYVPrIMI=","subject":"CN=Thawte TLS RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHTAbBgNVBAMTFFRoYXd0ZSBUTFMgUlNBIENBIEcx","whitelist":false,"attachment":{"hash":"ab46e21b2e6e52647007f65c64b45ece54a6f9162bf19babfd723021d1ed126d","size":1634,"filename":"42b9RNOnyb3tlC0KYtNPA3KKpJluskyU6aG-CipUmaM=.pem","location":"security-state-staging/intermediates/2deee9f5-6f96-4266-860b-0f80cf881111.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"42b9RNOnyb3tlC0KYtNPA3KKpJluskyU6aG+CipUmaM
=","crlite_enrolled":true,"id":"30af8c0a-f879-42ef-9671-106eda3c7cbb","last_modified":1562024625011},{"schema":1562024623475,"derHash":"gNnttFt/WSzTAlTlW8MWu/ROR9/AwASjgygcA/NFujk=","subject":"CN=Volusion\\, Inc. DV SSL CA - G3,OU=Domain Validated SSL,O=Volusion\\, Inc.,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5Wb2x1c2lvbiwgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxJjAkBgNVBAMTHVZvbHVzaW9uLCBJbmMuIERWIFNTTCBDQSAtIEcz","whitelist":false,"attachment":{"hash":"0898be28f7290da5c6273dfad054616ae1855f6aa5901d7922a67344d09f7763","size":1723,"filename":"RMqGtQ81XY6e9YblNqPQsG-I-Vl4drli249zNcNSNG8=.pem","location":"security-state-staging/intermediates/9634597d-175a-49aa-8c22-d757966db0e3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"RMqGtQ81XY6e9YblNqPQsG+I+Vl4drli249zNcNSNG8=","crlite_enrolled":false,"id":"6b1ed47e-c61a-4822-abd2-60fe59426945","last_modified":1562024624251},{"schema":1562024622714,"derHash":"ERAGN4r76OmbsCuoc5DKQp/KJ3P3TX9+tXRPXd9oAUs=","subject"
:"CN=COMODO RSA Organization Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGWMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE8MDoGA1UEAxMzQ09NT0RPIFJTQSBPcmdhbml6YXRpb24gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"392b7ffb2a6d72092399d66449152de878985c5738c191f6ef26addba3d8eb50","size":2158,"filename":"EgNpQklEUNXn9Nl6RoIOC532j1g5-EFw0ZpLxxJq9Ms=.pem","location":"security-state-staging/intermediates/c80aa8eb-6981-4908-8d72-212d3bd441de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EgNpQklEUNXn9Nl6RoIOC532j1g5+EFw0ZpLxxJq9Ms=","crlite_enrolled":true,"id":"a6d34d17-e949-4454-abaa-0a9d4b0491c3","last_modified":1562024623466},{"schema":1562024621218,"derHash":"TywMFwG94Btr7tptF8M2BCQhr3MRcGM0f36Xt2rYl/U=","subject":"CN=GlobalSSL Secure E-Mail and Client Authentication CA,O=GlobalSSL,C=DE","subjectDN":"MGAxCzAJBgNVBAYTAk
RFMRIwEAYDVQQKEwlHbG9iYWxTU0wxPTA7BgNVBAMTNEdsb2JhbFNTTCBTZWN1cmUgRS1NYWlsIGFuZCBDbGllbnQgQXV0aGVudGljYXRpb24gQ0E=","whitelist":false,"attachment":{"hash":"b2019acf4321d57d1f4034c278f7761779e2fc130bbf2ca87aabbe5a7047c614","size":1760,"filename":"rvxRPOOErynHJj6lYghacyWHWiAPuUDhnQ7bzVQe7nA=.pem","location":"security-state-staging/intermediates/877ea40c-279d-4cd8-b03b-99944b427bcb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rvxRPOOErynHJj6lYghacyWHWiAPuUDhnQ7bzVQe7nA=","crlite_enrolled":false,"id":"f9c9ddb7-531e-4937-a263-83d2c27d3642","last_modified":1562024621953},{"schema":1562024619702,"derHash":"EMP0Dpu+F7SPCzx8IpyrCiCHH86+zMz2orsyDwYAxV0=","subject":"CN=GENIOUS ECC Domain Validation Secure Server CA,O=Genious Communications,L=Marrakech,ST=Marrakech,C=MA","subjectDN":"MIGPMQswCQYDVQQGEwJNQTESMBAGA1UECBMJTWFycmFrZWNoMRIwEAYDVQQHEwlNYXJyYWtlY2gxHzAdBgNVBAoTFkdlbmlvdXMgQ29tbXVuaWNhdGlvbnMxNzA1BgNVBAMTLkdFTklPVVMgRUNDIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0E=","whit
elist":false,"attachment":{"hash":"f3a06e4e586746c718894b7aa2c2e9bd671253ab6b338d4df2627f4a2d14d8d7","size":1337,"filename":"1cqz0JJYdVUqvZUaW4P8qx8yIL49CzeX5G4oCYvH4Rk=.pem","location":"security-state-staging/intermediates/1a177cfa-33d9-4c35-9cdd-4a73c7973fc6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1cqz0JJYdVUqvZUaW4P8qx8yIL49CzeX5G4oCYvH4Rk=","crlite_enrolled":false,"id":"7c266e3a-9521-4d0f-9d73-3c71c87172f8","last_modified":1562024620466},{"schema":1562024618939,"derHash":"5z8fGaRFmmBnpF6E21hdbB348SpznXM/WyiZZUbxh1o=","subject":"CN=EID-SK 2016,O=AS Sertifitseerimiskeskus,C=EE","subjectDN":"MGAxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlBUyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMRcwFQYDVQRhDA5OVFJFRS0xMDc0NzAxMzEUMBIGA1UEAwwLRUlELVNLIDIwMTY=","whitelist":false,"attachment":{"hash":"d1877d7e7d6896cdc30b2a96d22c25da8e88a3850982a8200030af501da20c0d","size":2446,"filename":"WjtwJIwch5NRyJIrp2ugEDPftPNWvNEABHOUTFt-3Ts=.pem","location":"security-state-staging/intermediates/7aa7841a-915a-45b2
-ac5b-777c1b425ffa.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WjtwJIwch5NRyJIrp2ugEDPftPNWvNEABHOUTFt+3Ts=","crlite_enrolled":false,"id":"77f687a7-202f-4434-8803-51beb26f0c1e","last_modified":1562024619694},{"schema":1562024617416,"derHash":"HnLYPtlJnLpoaWhFK+WRxIgW7JGBORpdA8H007oWWNw=","subject":"CN=Inland Empire Health Information Exchange,OU=Inland Empire Health Information Exchange,O=Inland Empire EHR Resource Center,C=US","subjectDN":"MIGhMQswCQYDVQQGEwJVUzEqMCgGA1UEChMhSW5sYW5kIEVtcGlyZSBFSFIgUmVzb3VyY2UgQ2VudGVyMTIwMAYDVQQLEylJbmxhbmQgRW1waXJlIEhlYWx0aCBJbmZvcm1hdGlvbiBFeGNoYW5nZTEyMDAGA1UEAxMpSW5sYW5kIEVtcGlyZSBIZWFsdGggSW5mb3JtYXRpb24gRXhjaGFuZ2U=","whitelist":false,"attachment":{"hash":"56a96226dc0a4ebcd492c2ba0a04368f7c5f5189a22e885261c55391d2562b9a","size":2333,"filename":"q6gCaPEu6hA3-78YqCU97RQxanv-hMImmAKou_5S3gk=.pem","location":"security-state-staging/intermediates/b63f11e8-55f8-4280-920f-f5c9455fdaef.pem","mimetype":"application/x-pem-file"},"pubKeyHas
h":"q6gCaPEu6hA3+78YqCU97RQxanv+hMImmAKou/5S3gk=","crlite_enrolled":false,"id":"38ae9eda-30d4-49fa-9452-56249cf4e96f","last_modified":1562024618180},{"schema":1562024616673,"derHash":"jMNOEcFnBFgkreYcSQemRA7bLEOY6ZwRKoWdZh+OK8c=","subject":"CN=GeoTrust RSA CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHTAbBgNVBAMTFEdlb1RydXN0IFJTQSBDQSAyMDE4","whitelist":false,"attachment":{"hash":"a013c9348417f4076dc717cab4baf557d42e0c77d49f5a42c13f09fafee4a167","size":1634,"filename":"zUIraRNo-4JoAYA7ROeWjARtIoN4rIEbCpfCRQT6N6A=.pem","location":"security-state-staging/intermediates/be8a1d98-433a-4bf6-941e-c31bcf350d57.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zUIraRNo+4JoAYA7ROeWjARtIoN4rIEbCpfCRQT6N6A=","crlite_enrolled":true,"id":"5fa2fd0c-5f29-4a58-ab51-5fee7d3956b4","last_modified":1562024617409},{"schema":1562024615906,"derHash":"qyyT4BzCFYB/BM2/w2KAjYiUCnss7nAjjTVtjZSVbfk=","
subject":"CN=COMODO RSA Extended Validation Secure Server CA 2,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGUMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE6MDgGA1UEAxMxQ09NT0RPIFJTQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0EgMg==","whitelist":false,"attachment":{"hash":"c9ffc8c4cf8f0c1b8f57788dbb13ef5542a34da4b3a7f581d414769ea5f86cde","size":2207,"filename":"_KV5PqHI-A-AHDl7BRjU7Yfi8xL4XtBw8FQAx1HWgH4=.pem","location":"security-state-staging/intermediates/0741c886-1069-4fed-ba52-8aa03fd43e8f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/KV5PqHI+A+AHDl7BRjU7Yfi8xL4XtBw8FQAx1HWgH4=","crlite_enrolled":false,"id":"9d095dee-9b79-4c70-bbe1-b0414439ac0d","last_modified":1562024616665},{"schema":1562024612891,"derHash":"CBmY09n35M2dpqQpRwv11EKAMlJE+g4B7l+XLKGfSFI=","subject":"CN=D-TRUST CA 2-1 2015,O=D-Trust GmbH,L=Berlin,C=DE","subjectDN":"MFMxCzAJBgNVBAYTAkRFMQ8wDQYDVQQH
EwZCZXJsaW4xFTATBgNVBAoTDEQtVHJ1c3QgR21iSDEcMBoGA1UEAxMTRC1UUlVTVCBDQSAyLTEgMjAxNQ==","whitelist":false,"attachment":{"hash":"3ee88758fbc42936cdbaed638d306033285f883f6fc602279794d4d88452d2fd","size":2064,"filename":"tBmQRPuFevsHIbhhN0kSgAJhEeKQhFq-DxUdV4m8qjA=.pem","location":"security-state-staging/intermediates/ec9f953f-facc-41f4-b5d0-2c6a1e31915a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tBmQRPuFevsHIbhhN0kSgAJhEeKQhFq+DxUdV4m8qjA=","crlite_enrolled":false,"id":"eaf29e12-56d5-477b-8328-1ce42f6733c7","last_modified":1562024613656},{"schema":1562024612131,"derHash":"QuDAWgD8Lkc9jQdu+0SnAXzv+/YEBisWrLZE7q4e//w=","subject":"CN=GoGetSSL RSA Client CA,O=GoGetSSL,L=Riga,C=LV","subjectDN":"MFAxCzAJBgNVBAYTAkxWMQ0wCwYDVQQHEwRSaWdhMREwDwYDVQQKEwhHb0dldFNTTDEfMB0GA1UEAxMWR29HZXRTU0wgUlNBIENsaWVudCBDQQ==","whitelist":false,"attachment":{"hash":"2beb77fd6eea7febde47fc783ed0bf34a16601fd477256a11c28da821d02c17e","size":2077,"filename":"AZIBKLEh9RhLmf8irgJ9nlzVJAU1ySO6mTPIPOHqRuY=.
pem","location":"security-state-staging/intermediates/55adcf08-23d6-4397-bed3-bd2a8d244e6f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AZIBKLEh9RhLmf8irgJ9nlzVJAU1ySO6mTPIPOHqRuY=","crlite_enrolled":false,"id":"d2998b45-cbc9-462d-b3c6-e56dda5c943b","last_modified":1562024612884},{"schema":1562024001225,"derHash":"mQI8Yjbaexn/sUgzuCDZIGOTi4/OE2kMY8TAS2V/qy0=","subject":"SERIALNUMBER=PT507015851,CN=DIGITALSIGN QUALIFIED CA,O=DigitalSign Certificadora Digital,L=Guimaraes (see current address at www.digitalsign.pt),C=PT","subjectDN":"MIGyMRQwEgYDVQQFEwtQVDUwNzAxNTg1MTELMAkGA1UEBhMCUFQxPjA8BgNVBAcTNUd1aW1hcmFlcyAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuZGlnaXRhbHNpZ24ucHQpMSowKAYDVQQKEyFEaWdpdGFsU2lnbiBDZXJ0aWZpY2Fkb3JhIERpZ2l0YWwxITAfBgNVBAMTGERJR0lUQUxTSUdOIFFVQUxJRklFRCBDQQ==","whitelist":false,"attachment":{"hash":"b675985300d025f65fe9827dec53d33102a6f925454c266cf8c101e39ca1f3a1","size":3007,"filename":"XnyavelRFrecWitFpdKCH6tt4uvYXn4uWw85BpJFc8Q=.pem","location":"security-st
ate-staging/intermediates/c244d547-6237-434a-b7ea-3dfbab9f0c2d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XnyavelRFrecWitFpdKCH6tt4uvYXn4uWw85BpJFc8Q=","crlite_enrolled":false,"id":"3691181e-ad54-44dd-b4b5-442c1cea58d0","last_modified":1562024612123},{"schema":1562023998218,"derHash":"g/bwF8JTbXRUt7mEhnTzZAEpz1Vd0H2D02KhfIG3Ul8=","subject":"SERIALNUMBER=A62634068,CN=AC Firmaprofesional - AAPP,OU=Certificados Digitales para la Administracion Publica,O=Firmaprofesional SA,C=ES","subjectDN":"MIGkMQswCQYDVQQGEwJFUzEcMBoGA1UEChMTRmlybWFwcm9mZXNpb25hbCBTQTE+MDwGA1UECxM1Q2VydGlmaWNhZG9zIERpZ2l0YWxlcyBwYXJhIGxhIEFkbWluaXN0cmFjaW9uIFB1YmxpY2ExEjAQBgNVBAUTCUE2MjYzNDA2ODEjMCEGA1UEAxMaQUMgRmlybWFwcm9mZXNpb25hbCAtIEFBUFA=","whitelist":false,"attachment":{"hash":"b98bc5a31792d37a50d2b260b8ed96c230e3529f2d97f627c3072c493daca57e","size":2381,"filename":"hLz0sJLVz-CYXLdvw4BHmbCD3Gt3C5gAep7ycaEAChw=.pem","location":"security-state-staging/intermediates/ac3a8a6e-7ab4-4f2b-9899-75eafdb945b
1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hLz0sJLVz+CYXLdvw4BHmbCD3Gt3C5gAep7ycaEAChw=","crlite_enrolled":false,"id":"8f582949-0077-4497-9855-078b473ca565","last_modified":1562023998962},{"schema":1562023997464,"derHash":"t3h0inkrj5HwSwG6/DGjHtfvanEq/4C2YQ2are4get8=","subject":"CN=GlobalSign PersonalSign 2 CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MF0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTMwMQYDVQQDEypHbG9iYWxTaWduIFBlcnNvbmFsU2lnbiAyIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"55ef97771e1a5db3bed9a55930e18bfa8c515f42eed6a6898d2b9fe5be13bf50","size":1760,"filename":"moVGXeLu33Z1sQyVonZDRMiCGiG4C1YXJPZjuqaf0vE=.pem","location":"security-state-staging/intermediates/04ad1207-747d-4bbc-aec8-534ace9d0ce2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"moVGXeLu33Z1sQyVonZDRMiCGiG4C1YXJPZjuqaf0vE=","crlite_enrolled":true,"id":"b37f92b2-240f-4970-87fb-063ff1d871ed","last_modified":1562023998206},{"schema":156202399594
7,"derHash":"eILZ+qSai7NR8Pxu1oXvH8UVQdDOCkIiB00dnhb9wws=","subject":"CN=TrustCor External PKI (ECA1),OU=TrustCor Network,O=TrustCor Systems S. de R.L.,ST=Panama,C=PA","subjectDN":"MIGGMQswCQYDVQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xGTAXBgNVBAsMEFRydXN0Q29yIE5ldHdvcmsxJTAjBgNVBAMMHFRydXN0Q29yIEV4dGVybmFsIFBLSSAoRUNBMSk=","whitelist":false,"attachment":{"hash":"f8c6a9c5a539d228e33a4f7d992ac66e08c7b640cc56f5001fc6d112058b9557","size":1841,"filename":"r8bpcGxaP_Y16yqulxob7gpE3Q_rlYtNW1KdjRa2f1s=.pem","location":"security-state-staging/intermediates/2bf859ab-2a88-4ff7-af17-307ea95d877a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"r8bpcGxaP/Y16yqulxob7gpE3Q/rlYtNW1KdjRa2f1s=","crlite_enrolled":true,"id":"9284e1ce-82d9-41fe-905b-061a3bc6e3f9","last_modified":1562023996685},{"schema":1562023992214,"derHash":"bGa3bmjWx5+v5clOm30M91PHFcyFOH4RMjt5NfhhwYc=","subject":"CN=Symantec Class 3 EV SSL CA - G2,OU=Symantec Trust Network,O=Symantec
Corporation,C=US","subjectDN":"MHcxCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEoMCYGA1UEAxMfU3ltYW50ZWMgQ2xhc3MgMyBFViBTU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"5a78e0580a5b4a406494a8640e18f7ea3ff821f8be3f9b0ee6a91001569a7da2","size":1853,"filename":"9vTUviB31wX_C0Yzx-HkTZxJmAcqoWvp_aPTgD-kyr8=.pem","location":"security-state-staging/intermediates/0135fea2-a052-473e-8cb6-2b987f16c6ef.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9vTUviB31wX/C0Yzx+HkTZxJmAcqoWvp/aPTgD+kyr8=","crlite_enrolled":false,"id":"fbb73ec4-342b-4aa9-9df7-3ca9f646f690","last_modified":1562023992953},{"schema":1562023989959,"derHash":"H5NmbaV+HuQ7Gec2f3IlFR1EqWZxhDrWJiKI20qoA3c=","subject":"CN=FujiSSL SHA2 Business Secure Site CA,O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN":"MHcxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzETMBEGA1UEBxMKU2hpYnV5YS1rdTEUMBIGA1UEChMLTmlqaW1vIEsuSy4xLTArBgNVBAMTJEZ1amlTU0wgU0hBMiBCdXNpbmVzcyBTZW
N1cmUgU2l0ZSBDQQ==","whitelist":false,"attachment":{"hash":"482afe899c6f0d8f22e431adaae4099bcc9ca90c82b6bbf311ea220ad7be3fbc","size":2142,"filename":"AapugBjS_xPRoLxwSH9ER41rNad1oyfyVH7OwZcxPkY=.pem","location":"security-state-staging/intermediates/eb5a1c32-ead7-49e1-a96f-02cc6acc3d51.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"AapugBjS/xPRoLxwSH9ER41rNad1oyfyVH7OwZcxPkY=","crlite_enrolled":true,"id":"b25cf132-6ed5-42dd-95be-9a1049d9494f","last_modified":1562023990717},{"schema":1562023989217,"derHash":"oNFSOgv2Y1UOuQgem93toSgU+VcLdpfZXfLqU9T/deM=","subject":"CN=RapidSSL ECC CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHTAbBgNVBAMTFFJhcGlkU1NMIEVDQyBDQSAyMDE4","whitelist":false,"attachment":{"hash":"ee5666095b0adbea4d0fc0e22f86c954e59f68c2eb5a347a7c6c3eaf8db0a25f","size":1410,"filename":"zJax49jXNWVm12ouj-dVmlW_r0Zw4NbjfsoCxV3-blM=.pem","location":"security-state-stag
ing/intermediates/79d47d47-5626-42ac-99ee-cfbdac6397b1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zJax49jXNWVm12ouj+dVmlW/r0Zw4NbjfsoCxV3+blM=","crlite_enrolled":true,"id":"763411e1-8114-46f4-8c40-92fecd1f7cc4","last_modified":1562023989952},{"schema":1562023988478,"derHash":"83b25b9mD2vtt2jc0TA+rdSpby7XqXcX6Hj65rtZWfo=","subject":"CN=thawte EV Code Signing CA,O=thawte\\, Inc.,C=US","subjectDN":"MEgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xIjAgBgNVBAMTGXRoYXd0ZSBFViBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"9f1b61ed157098a541e167d69899a6e220062c8853f21e51e158779d17889570","size":1792,"filename":"iHlBWPUQuLqy-fke8htnHN-RscOd6sowyaclmFVQdC8=.pem","location":"security-state-staging/intermediates/e9705c73-c0fc-4403-9fbc-82eb39aac338.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"iHlBWPUQuLqy+fke8htnHN+RscOd6sowyaclmFVQdC8=","crlite_enrolled":false,"id":"4cdf6681-6886-48ea-a0fa-e4c2dddbb9de","last_modified":1562023989209},{"schema":156202
3987725,"derHash":"Q2/tMIldbH8NbcCdtiGrO4jsYyHFbKb9SdeYEeKlmMo=","subject":"CN=TBS X509 CA business 2,OU=TBS INTERNET CA,O=TBS INTERNET,L=Caen,ST=Calvados,C=FR","subjectDN":"MIGBMQswCQYDVQQGEwJGUjERMA8GA1UECBMIQ2FsdmFkb3MxDTALBgNVBAcTBENhZW4xFTATBgNVBAoTDFRCUyBJTlRFUk5FVDEYMBYGA1UECxMPVEJTIElOVEVSTkVUIENBMR8wHQYDVQQDExZUQlMgWDUwOSBDQSBidXNpbmVzcyAy","whitelist":false,"attachment":{"hash":"10ac6fea486a331fa522b3ef2a2198adfa12ebeac4d525146320a9a4dc9c4ac0","size":2154,"filename":"SSBQnpJB4S4xChF_ht4nYT6NSI2ORtzmPESVfewnepc=.pem","location":"security-state-staging/intermediates/ec1f383e-adad-4dea-b81f-b702db7ee117.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SSBQnpJB4S4xChF/ht4nYT6NSI2ORtzmPESVfewnepc=","crlite_enrolled":true,"id":"9ddcb45e-54b3-4bf4-979b-25e170de22f3","last_modified":1562023988470},{"schema":1562023986956,"derHash":"ZjpOZY+790/BmwFV8vrLEsybaXBY9EfveRF4/puNBz0=","subject":"CN=Trustico RSA EV CA,OU=Controlled by COMODO exclusively for The Trustico Group Ltd,O=
The Trustico Group Ltd,L=Croydon,ST=London,C=GB","subjectDN":"MIG0MQswCQYDVQQGEwJHQjEPMA0GA1UECBMGTG9uZG9uMRAwDgYDVQQHEwdDcm95ZG9uMR8wHQYDVQQKExZUaGUgVHJ1c3RpY28gR3JvdXAgTHRkMUQwQgYDVQQLEztDb250cm9sbGVkIGJ5IENPTU9ETyBleGNsdXNpdmVseSBmb3IgVGhlIFRydXN0aWNvIEdyb3VwIEx0ZDEbMBkGA1UEAxMSVHJ1c3RpY28gUlNBIEVWIENB","whitelist":false,"attachment":{"hash":"eee3863ef1b6090102296c0bb3ae3aaa94c133aa41d948886a83f0d998f0ab01","size":2247,"filename":"KwL2fukG72afNxr2mfIc-zRSfV9FvVkQd67wLyLhGLY=.pem","location":"security-state-staging/intermediates/9063beaf-04d5-4fc4-9fe6-18bd29f50ff9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KwL2fukG72afNxr2mfIc+zRSfV9FvVkQd67wLyLhGLY=","crlite_enrolled":true,"id":"720c9041-549b-4132-9f95-9f7f40057140","last_modified":1562023987718},{"schema":1562023985472,"derHash":"Abnz0I4xqejhYA0RjCq/2FaHXqYIJwIEaYZbokLuvhw=","subject":"CN=KIT-CA,O=Karlsruhe Institute of Technology,L=Karlsruhe,ST=Baden-Wuerttemberg,C=DE","subjectDN":"MHsxCzAJBgNVBAYTAkRFMRswGQYDVQQI
DBJCYWRlbi1XdWVydHRlbWJlcmcxEjAQBgNVBAcMCUthcmxzcnVoZTEqMCgGA1UECgwhS2FybHNydWhlIEluc3RpdHV0ZSBvZiBUZWNobm9sb2d5MQ8wDQYDVQQDDAZLSVQtQ0E=","whitelist":false,"attachment":{"hash":"57d86dbb18c2e8959844b08e15275c9f4e998e6bdecb15b2b7a77730e1c220a5","size":2008,"filename":"DvZiVD0jtzGADZxUQnbhnHsFjD8JVapxjCjP6aLBeoY=.pem","location":"security-state-staging/intermediates/5e91cd24-d2d6-4885-96ae-f41fd7f2fa91.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DvZiVD0jtzGADZxUQnbhnHsFjD8JVapxjCjP6aLBeoY=","crlite_enrolled":true,"id":"3131956b-39c5-40b6-93ef-b46c278f30de","last_modified":1562023986203},{"schema":1562023980906,"derHash":"y64nZ+6M1/tJtmK0Ivch20Ui62dM2/FstiCeRcxMuZ4=","subject":"CN=DigiCert Class 3 ECC CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGkRpZ2lDZXJ0IENsYXNzIDMgRUNDIENBIEcx","whitelist":false,"attachment":{"hash":"b9fa0a6f524e0d4ba96ac6f144f478c2eb0b8b3
e26130eff45513a544d53f51a","size":1122,"filename":"zEmSNnW6fJ5Iqjj7nFju1Oo-THW233SD1mcA_AYTsIQ=.pem","location":"security-state-staging/intermediates/c1f0a12d-cef9-4764-926e-63bc50c9dc83.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"zEmSNnW6fJ5Iqjj7nFju1Oo+THW233SD1mcA/AYTsIQ=","crlite_enrolled":false,"id":"4cd2d258-9f4c-4594-8f6f-ffd1ffda2a7e","last_modified":1562023981651},{"schema":1562023979410,"derHash":"Vtpu/vHVBBNMcu7cOuRKp/oRuEiCDb+qhsqONdYO2wQ=","subject":"CN=FujiSSL Public Validation Authority - G3,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MGcxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMTEwLwYDVQQDEyhGdWppU1NMIFB1YmxpYyBWYWxpZGF0aW9uIEF1dGhvcml0eSAtIEcz","whitelist":false,"attachment":{"hash":"bbb89301ab3ea4fd79d1448f5c852927551328811eee186c33c831d20d5e0ae0","size":1674,"filename":"dzjq2willdWoAe9M1lz4AuLGmmFYgxAD2zYIXMhbzjo=.pem","location":"security-state-staging/intermediates/f2374571-0b80-42e0-8883-fda71075451e.pem","mimetyp
e":"application/x-pem-file"},"pubKeyHash":"dzjq2willdWoAe9M1lz4AuLGmmFYgxAD2zYIXMhbzjo=","crlite_enrolled":true,"id":"77918a2e-3fdb-4dcf-8e32-cbe1b39f74f4","last_modified":1562023980153},{"schema":1562023978668,"derHash":"g4aYGG3Qb45zbDnK+95k5C1Yq6Y2zirZ3/jRhV6peQo=","subject":"SERIALNUMBER=201901,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTAx","whitelist":false,"attachment":{"hash":"84159d3c932465ae7a84a6ccf35cde1f35966c191eeea2c094ac2d5ee1eac878","size":2333,"filename":"1CTr2EMZuVrTNlxyZgkW5swxcLs2mFupZgcP-OxRDww=.pem","location":"security-state-staging/intermediates/09b4f348-2689-46a4-8c8c-7f747f843a72.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1CTr2EMZuVrTNlxyZgkW5swxcLs2mFupZgcP+OxRDww=","crlite_enrolled":false,"id":"dfa4b7da-e066-4c3e-baff-3786a59cfc48","last_modified":1562023979402},{"schema":1562023977920,"de
rHash":"BS8CbB5i5pekeRPgfOJN6DyIG/MAo8wkzAydRuyCR7s=","subject":"CN=TBS X509 CA pro hosting 2,OU=TBS INTERNET CA,O=TBS INTERNET,L=Caen,ST=Calvados,C=FR","subjectDN":"MIGEMQswCQYDVQQGEwJGUjERMA8GA1UECBMIQ2FsdmFkb3MxDTALBgNVBAcTBENhZW4xFTATBgNVBAoTDFRCUyBJTlRFUk5FVDEYMBYGA1UECxMPVEJTIElOVEVSTkVUIENBMSIwIAYDVQQDExlUQlMgWDUwOSBDQSBwcm8gaG9zdGluZyAy","whitelist":false,"attachment":{"hash":"993599686a8894c81c679246e879ef9412dfdb43d1397ad6267c2c8fed59290d","size":2162,"filename":"XVLXL83TODHCORI1qq2fNoRUOUkHLj4GCQZqTjJ6v8Q=.pem","location":"security-state-staging/intermediates/c78d6da1-ce01-48ea-a32a-17541a01fbfe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XVLXL83TODHCORI1qq2fNoRUOUkHLj4GCQZqTjJ6v8Q=","crlite_enrolled":true,"id":"8599ae99-290a-4ccb-9b99-261d95b6f43f","last_modified":1562023978660},{"schema":1562023977173,"derHash":"3Ist7lDdR4qxNcrCac6miFFVepEpq82Y31ITsj2/s80=","subject":"CN=QuoVadis Europe SSL CA G1,O=QuoVadis Trustlink BVBA,C=BE","subjectDN":"MFMxCzAJBgNVBAYTA
kJFMSAwHgYDVQQKExdRdW9WYWRpcyBUcnVzdGxpbmsgQlZCQTEiMCAGA1UEAxMZUXVvVmFkaXMgRXVyb3BlIFNTTCBDQSBHMQ==","whitelist":false,"attachment":{"hash":"871e25e4b9ca85246a4b37ec76971395d8cc080cda844fd7e9419affa5171af1","size":2308,"filename":"k3XnEYQCK79AtL9GYnT_nyhsabas03V-bhRQYHQbpXU=.pem","location":"security-state-staging/intermediates/84a519a2-7323-495a-8f7c-1fb9364bc534.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"k3XnEYQCK79AtL9GYnT/nyhsabas03V+bhRQYHQbpXU=","crlite_enrolled":true,"id":"3413fc51-a47b-4ef2-ba0b-c5c737f0aa91","last_modified":1562023977912},{"schema":1562023976406,"derHash":"XbHSLXBmhPBxnokC+4azRrP8nk0aH5IoOkiLw9GgSEs=","subject":"CN=KPN PKIoverheid EV CA,O=KPN B.V.,C=NL","subjectDN":"MEAxCzAJBgNVBAYTAk5MMREwDwYDVQQKDAhLUE4gQi5WLjEeMBwGA1UEAwwVS1BOIFBLSW92ZXJoZWlkIEVWIENB","whitelist":false,"attachment":{"hash":"3223a6f20d3bcb5d806c34644dc513be43f488b74f0a98a8bd87b2f973f3e5e1","size":2398,"filename":"I3seYPBcqTLCDRX732wxVtBaCAQOzNasd4KqO6a0mHk=.pem","location":"s
ecurity-state-staging/intermediates/e35603f8-d7e3-4a6f-9359-4ce261a49d75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"I3seYPBcqTLCDRX732wxVtBaCAQOzNasd4KqO6a0mHk=","crlite_enrolled":true,"id":"574422ec-9c83-49c3-af28-f0b84daaad6f","last_modified":1562023977164},{"schema":1562023974115,"derHash":"TY60k4Dscqyf3yH+HG2y6UkMdr6t0fe1KMPM0nLI/ig=","subject":"CN=GlobalSign TSA CA for AATL,O=GlobalSign nv-sa,C=BE","subjectDN":"ME0xCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSMwIQYDVQQDExpHbG9iYWxTaWduIFRTQSBDQSBmb3IgQUFUTA==","whitelist":false,"attachment":{"hash":"b66664c300d9d856dd6eef13fa063334f34d358466c922d8c47b40ad0c0b0e44","size":2024,"filename":"49lIjSAnHwOuVWuOR-RTuElzQhgXaCC3y9iz_nrQN2I=.pem","location":"security-state-staging/intermediates/a857ed41-1550-4d26-8db7-818835c03d40.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"49lIjSAnHwOuVWuOR+RTuElzQhgXaCC3y9iz/nrQN2I=","crlite_enrolled":false,"id":"e77711f5-130c-4fb9-ba65-f13cf7fe4e7a","last_modified":15
62023974847},{"schema":1562023971865,"derHash":"ziMyOQIIdCoaymUTl0xMnbJpHq9FaLUz5KF+1d2pc+Y=","subject":"CN=QuoVadis PKIoverheid Organisatie Server CA - G3,O=QuoVadis Trustlink B.V.,C=NL","subjectDN":"MIGCMQswCQYDVQQGEwJOTDEgMB4GA1UECgwXUXVvVmFkaXMgVHJ1c3RsaW5rIEIuVi4xFzAVBgNVBGEMDk5UUk5MLTMwMjM3NDU5MTgwNgYDVQQDDC9RdW9WYWRpcyBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBTZXJ2ZXIgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"9525b72d3221be1b9347991e7b0d27ed63304244a37e568e02a881198dd0e180","size":2625,"filename":"0RDPmiZ5chLjLl0zHCAarPh4229A9O3S02zEXEMOZL4=.pem","location":"security-state-staging/intermediates/911f64d6-2761-4b8b-af66-93fe6683dfd1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0RDPmiZ5chLjLl0zHCAarPh4229A9O3S02zEXEMOZL4=","crlite_enrolled":true,"id":"1334321a-2837-4638-a78c-39d8abf02ec7","last_modified":1562023972605},{"schema":1562023971111,"derHash":"JbZjkN1CWGfsDeWKaxmPWYW+WKQ6RgXhoLjG81uS1+4=","subject":"CN=DigiCert Transition Issuing CA G3,OU=www.digicert.com
,O=DigiCert\\, Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSowKAYDVQQDEyFEaWdpQ2VydCBUcmFuc2l0aW9uIElzc3VpbmcgQ0EgRzM=","whitelist":false,"attachment":{"hash":"3db9cade05807e7d695419e46f030bf8947492fa115aa4f663b14352e0c42ac5","size":1666,"filename":"vWZ6uLUEEYECEjKFJEMsz_6EwAfw1zYwbvVxr4xS6Jg=.pem","location":"security-state-staging/intermediates/a9d455c2-351f-466e-86bd-080e8839a158.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vWZ6uLUEEYECEjKFJEMsz/6EwAfw1zYwbvVxr4xS6Jg=","crlite_enrolled":false,"id":"204c48d8-5783-4bf9-b862-a37638c87cd4","last_modified":1562023971857},{"schema":1562023970347,"derHash":"CSIy5d8b+Ly/7Rr02R81U/JWYYTgky5L6vcdFqWa1sg=","subject":"SERIALNUMBER=201729,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxNzI5","whitelist":false,"attachm
ent":{"hash":"07d0f80c6b777643e464217a9b873097b3f26ba8bc375ca90b6908c3d7bcc0df","size":2402,"filename":"NcK6oyN11YK2iroVd4M8_YvV2-gLKHeDevPGXmnoWlk=.pem","location":"security-state-staging/intermediates/58253a8a-2a3d-4341-ad75-d94d0251c68c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NcK6oyN11YK2iroVd4M8/YvV2+gLKHeDevPGXmnoWlk=","crlite_enrolled":false,"id":"77d3b8ac-c30b-4922-ab9c-caf13765cb69","last_modified":1562023971104},{"schema":1562023969605,"derHash":"kfSGCmh2DlX08hWEeOZ/lYvWN7fA+2CT6ekE36RqwzQ=","subject":"CN=Intertek Document Signing Authority,O=Intertek Group plc,C=GB","subjectDN":"MFgxCzAJBgNVBAYTAkdCMRswGQYDVQQKExJJbnRlcnRlayBHcm91cCBwbGMxLDAqBgNVBAMTI0ludGVydGVrIERvY3VtZW50IFNpZ25pbmcgQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"19af2bba948c39703d8d3595df8354c3acc80e9e5a764f484112a95dc145a505","size":1938,"filename":"YHxb7yqXsZo593tQi7lml-UbIYBZ-nRncrwmyt7z_jU=.pem","location":"security-state-staging/intermediates/3d7ae7b9-a9e4-46bd-99ae-9325d76b8b
da.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YHxb7yqXsZo593tQi7lml+UbIYBZ+nRncrwmyt7z/jU=","crlite_enrolled":false,"id":"aa97eece-537e-4d3c-8f70-b629fb852344","last_modified":1562023970339},{"schema":1562023968860,"derHash":"428WX/dznNkAolYnZ7Pq++Z6NMg8OoL0wh1fUcPtGR4=","subject":"CN=WoTrus DV Server CA,OU=Controlled by Sectigo exclusively for WoTrus CA Limited,O=WoTrus CA Limited,L=Shenzhen,ST=Guangdong,C=CN","subjectDN":"MIGwMQswCQYDVQQGEwJDTjESMBAGA1UECBMJR3Vhbmdkb25nMREwDwYDVQQHEwhTaGVuemhlbjEaMBgGA1UEChMRV29UcnVzIENBIExpbWl0ZWQxQDA+BgNVBAsTN0NvbnRyb2xsZWQgYnkgU2VjdGlnbyBleGNsdXNpdmVseSBmb3IgV29UcnVzIENBIExpbWl0ZWQxHDAaBgNVBAMTE1dvVHJ1cyBEViBTZXJ2ZXIgQ0E=","whitelist":false,"attachment":{"hash":"ad4c5148267048017f28179ac20a4ea5bfdb82d16c59f8f2a51e279ab002cf1e","size":2203,"filename":"BhCtKhlg16YgpKtkvEyMb10W4rnVIagCz4ZLBicH1aQ=.pem","location":"security-state-staging/intermediates/1293d917-4168-4c3c-89cd-afa2186222ca.pem","mimetype":"application/x-pem-file"},"pubKe
yHash":"BhCtKhlg16YgpKtkvEyMb10W4rnVIagCz4ZLBicH1aQ=","crlite_enrolled":false,"id":"324811d1-4f0b-4ec9-8ed5-314d562ded2c","last_modified":1562023969598},{"schema":1562023965880,"derHash":"jLMkgs2vON1o4yKrm0Q053ORDzOy9W+AItUVYghGVBc=","subject":"CN=SSL.com EV Code Signing Intermediate CA ECC R2,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"MHsxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxNzA1BgNVBAMMLlNTTC5jb20gRVYgQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBDQSBFQ0MgUjI=","whitelist":false,"attachment":{"hash":"188db821b5f6a15b8ce89543363312e52cf935460178da5aef5d0ab64099ddec","size":1276,"filename":"weV6wI2oYtFTmDbezTHq8MAYi-4aJnVykEP6-ixWceA=.pem","location":"security-state-staging/intermediates/170e0ef4-125c-4da5-85a5-f176eaed09fd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"weV6wI2oYtFTmDbezTHq8MAYi+4aJnVykEP6+ixWceA=","crlite_enrolled":false,"id":"0163c88a-9ef4-4162-9ca4-17556a156a94","last_modified":1562023966614},{"schema":156202
3961331,"derHash":"EUdT6I0ADnWZYVqZB+Jrc7bYUTF/8rJ6yp24/FBWkqc=","subject":"CN=E-Tugra Organization Validated CA,OU=E-Tu\u011fra Sertifikasyon Merkezi,O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e.,L=Ankara,C=TR","subjectDN":"MIG1MQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMUAwPgYDVQQKDDdFLVR1xJ9yYSBFQkcgQmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXptZXRsZXJpIEEuxZ4uMScwJQYDVQQLDB5FLVR1xJ9yYSBTZXJ0aWZpa2FzeW9uIE1lcmtlemkxKjAoBgNVBAMMIUUtVHVncmEgT3JnYW5pemF0aW9uIFZhbGlkYXRlZCBDQQ==","whitelist":false,"attachment":{"hash":"c20540a909d14bde73c51dde53da2ff3fea4d75a0c875924065198ab7de00da3","size":2304,"filename":"2C9V2-VZ5v93wYg0HupOPel5wBqM8YEDtTLQWSkHjis=.pem","location":"security-state-staging/intermediates/375b6c2a-70ea-49da-8638-9e7de1fc7e9b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2C9V2+VZ5v93wYg0HupOPel5wBqM8YEDtTLQWSkHjis=","crlite_enrolled":true,"id":"14fdc6a9-ae04-401c-9371-d01b4bbb58b9","last_modified":1562023962077},{"schema":1562023959068,"derHash
":"6DVm5vWZSBZ4wNmYkhach/d5FMYh/fHmWccIV3LUpIc=","subject":"CN=Aristotle University of Thessaloniki Central CA R5,O=Aristotle University of Thessaloniki,C=GR","subjectDN":"MHkxCzAJBgNVBAYTAkdSMS0wKwYDVQQKDCRBcmlzdG90bGUgVW5pdmVyc2l0eSBvZiBUaGVzc2Fsb25pa2kxOzA5BgNVBAMMMkFyaXN0b3RsZSBVbml2ZXJzaXR5IG9mIFRoZXNzYWxvbmlraSBDZW50cmFsIENBIFI1","whitelist":false,"attachment":{"hash":"f877b8c5582fb9b976cbb608c45d7c53f404146e9e3ee07dd3debe10f13b2c90","size":2186,"filename":"ZJk1YGaQpyFBeYVERrAwWxnil7BDdshNsfqH9K0pdvo=.pem","location":"security-state-staging/intermediates/161bd307-4be8-4e31-b933-2e65f5bcb068.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZJk1YGaQpyFBeYVERrAwWxnil7BDdshNsfqH9K0pdvo=","crlite_enrolled":true,"id":"7fd49ce7-75fa-47b3-85d9-7a6cb059c9f9","last_modified":1562023959799},{"schema":1562023958320,"derHash":"L9Qqlsgw/SxVKywnZg7ukwfYRwbem3XPOa51DrIhue4=","subject":"CN=COMODO ECC Code Signing CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"
MH0xCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMSMwIQYDVQQDExpDT01PRE8gRUNDIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"ad1f4bf9e94339cc0664891d79fb8cf7ded16cf12929ccc6122ce1a2c2ccddbc","size":1256,"filename":"jBwB7HG5X1XDblx25nsCjVULW3dw9vJXmqth06gcMAw=.pem","location":"security-state-staging/intermediates/2694c0d7-dac9-4e5f-a10a-2c02e92f7442.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jBwB7HG5X1XDblx25nsCjVULW3dw9vJXmqth06gcMAw=","crlite_enrolled":false,"id":"59606746-4b04-433d-be2b-fe782421a43c","last_modified":1562023959061},{"schema":1562023956056,"derHash":"j9p6iBNUb5p8sGXNMtNlDVtWorf5QrlJmutCqGo+nVY=","subject":"CN=Volusion\\, Inc. DV SSL CA,OU=Domain Validated SSL,O=Volusion\\, Inc.,C=US","subjectDN":"MGgxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5Wb2x1c2lvbiwgSW5jLjEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxITAfBgNVBAMTGFZvbHVzaW9uLCBJbmMuIERWIFNTTCBDQQ==","whitelist":false,"attachm
ent":{"hash":"6b16f64a748628562ece61ff4693d637b4798e23d8849bb6e47281bd75358aa8","size":1447,"filename":"5zFyfNsHCq6F08mNF-IWy_ZJ7qypkZPj-t1dA4DZi4E=.pem","location":"security-state-staging/intermediates/c96d8299-16b6-4c87-9985-df5013adb3e5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5zFyfNsHCq6F08mNF+IWy/ZJ7qypkZPj+t1dA4DZi4E=","crlite_enrolled":false,"id":"ae81bf57-add1-4988-8063-af83aaa1406d","last_modified":1562023956793},{"schema":1562023955312,"derHash":"6ppDUV4Tj/d4L8rNucfo4aYc/R0XCW7V3dH0ANArA/U=","subject":"CN=certSIGN SSL DV CA Class 3 G2,OU=certSIGN SSL DV CA Class 3 G2,O=certSIGN,C=RO","subjectDN":"MHAxCzAJBgNVBAYTAlJPMREwDwYDVQQKDAhjZXJ0U0lHTjEmMCQGA1UECwwdY2VydFNJR04gU1NMIERWIENBIENsYXNzIDMgRzIxJjAkBgNVBAMMHWNlcnRTSUdOIFNTTCBEViBDQSBDbGFzcyAzIEcy","whitelist":false,"attachment":{"hash":"27c0349500f0a3bb1a05e55a47d5c9fb8216d028bb4be566fb5acd95419f5850","size":1626,"filename":"FZ9KA10aaA0Pq9Q4xOxYK99jgxb3tQy47R4dIFgxFUo=.pem","location":"security-state-staging
/intermediates/24cf3b35-2f29-40e6-9bca-d871a307ae78.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FZ9KA10aaA0Pq9Q4xOxYK99jgxb3tQy47R4dIFgxFUo=","crlite_enrolled":true,"id":"d4028f7a-433e-4118-9af5-f556af86871c","last_modified":1562023956048},{"schema":1562023953811,"derHash":"ChpSIfON1Fg2eiDVJ9sYgAgqzO72moVG+2fTAlP5CCQ=","subject":"CN=Atos TrustedRoot CodeSigning-CA 2013,O=Atos,C=DE","subjectDN":"MEsxLTArBgNVBAMMJEF0b3MgVHJ1c3RlZFJvb3QgQ29kZVNpZ25pbmctQ0EgMjAxMzENMAsGA1UECgwEQXRvczELMAkGA1UEBhMCREU=","whitelist":false,"attachment":{"hash":"1fe6385ba0486b50631ee6ded9d813fe00c7b69915bb5ff98811bac7db2a494a","size":1565,"filename":"pxAruQtiJ4aLD27HqNd4qfvv07MUns2jaoeSYYi6OrQ=.pem","location":"security-state-staging/intermediates/54d610af-b3dc-447e-b948-7032624747a7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pxAruQtiJ4aLD27HqNd4qfvv07MUns2jaoeSYYi6OrQ=","crlite_enrolled":true,"id":"d043bdbb-43b3-4701-b169-93da04b081aa","last_modified":1562023954561},{"schema":15620
23952325,"derHash":"g8k180xQt2ZUCUBK/l36B63LXHtSsr7wrG6ZPABUXXY=","subject":"CN=Symantec Class 3 Registration Authority Intermediate CA,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGPMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxQDA+BgNVBAMTN1N5bWFudGVjIENsYXNzIDMgUmVnaXN0cmF0aW9uIEF1dGhvcml0eSBJbnRlcm1lZGlhdGUgQ0E=","whitelist":false,"attachment":{"hash":"0a89ba17c46d9d5fd2bd15423a6b0a3bb0763fbd740bf73f58873f2a18d9d1cf","size":2194,"filename":"vO3_XaIzmqGtcOO2LQL_yHzKa4ueBDChpnLbfwpiu8c=.pem","location":"security-state-staging/intermediates/359077c3-cc8f-44fc-bdbe-4b64c1d935e9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"vO3/XaIzmqGtcOO2LQL/yHzKa4ueBDChpnLbfwpiu8c=","crlite_enrolled":false,"id":"02300412-fd6e-43bc-9cbd-ebe9ef836aa7","last_modified":1562023953055},{"schema":1562023951552,"derHash":"SMShxTleK0mdLj6+Ju76kdEc813V+hSTfu5egHov9Ic=","subject":"CN=TrustAsia RSA CA G8,OU=Domain Val
idated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MHExCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEcMBoGA1UEAxMTVHJ1c3RBc2lhIFJTQSBDQSBHOA==","whitelist":false,"attachment":{"hash":"ece1d5f1cba9be7739a5e4813740471d2c9732eb9a89dfa2e75b6222568df132","size":1695,"filename":"9SkVUsat-0_UDRvolgMzKIdw6JFpvrT-hOa-1EbArt8=.pem","location":"security-state-staging/intermediates/0a0070ca-9c1d-47fe-b759-75e6dfa7238e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9SkVUsat+0/UDRvolgMzKIdw6JFpvrT+hOa+1EbArt8=","crlite_enrolled":false,"id":"afe0b493-5e68-46df-9fdb-0eb4f37545a6","last_modified":1562023952317},{"schema":1562023950036,"derHash":"clY8yYraLF0hJlQqzJCBVK6x+db36DpVwJdEx9et3bo=","subject":"CN=RVBD Certificate Issuer,O=Riverbed Technology\\, Inc.,C=US","subjectDN":"MFMxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlSaXZlcmJlZCBUZWNobm9sb2d5LCBJbmMuMSAwHgYDVQQDExdSVkJEIENlcnRpZmljYXRlIElzc3Vlcg==","whitelist":false,"atta
chment":{"hash":"071b981d1ae8525753515a159884613e388dc310fd76b561f152df246b6c732d","size":1829,"filename":"L2Gt7r61eOKqKfbZ0LwGLCzvrPMMGMdsveQQC5X4gOQ=.pem","location":"security-state-staging/intermediates/3ab21025-6c92-4a25-9b0e-4d9d46ea3cda.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"L2Gt7r61eOKqKfbZ0LwGLCzvrPMMGMdsveQQC5X4gOQ=","crlite_enrolled":false,"id":"666ea0f5-3d53-451c-908f-bbd0a6c22b1c","last_modified":1562023950800},{"schema":1562023949273,"derHash":"v0ZV8WqjONfH/yvclJpSS9R5e4s8g0HGCMn2XLHLgXc=","subject":"CN=Axesson Direct CA,OU=www.axesson.com,O=Axesson Inc.,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxBeGVzc29uIEluYy4xGDAWBgNVBAsTD3d3dy5heGVzc29uLmNvbTEaMBgGA1UEAxMRQXhlc3NvbiBEaXJlY3QgQ0E=","whitelist":false,"attachment":{"hash":"e00a1132c4bf94763c577e4704af4bd328ddb8ee906a302c2ff86110798085ff","size":2146,"filename":"x2wj42-CVwbXi4SeWBzRyyv7rEjRu1AKF3yyj6_VNrM=.pem","location":"security-state-staging/intermediates/4eb92e47-69fe-4c31-b0c5-8f830476
7c3f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x2wj42+CVwbXi4SeWBzRyyv7rEjRu1AKF3yyj6/VNrM=","crlite_enrolled":false,"id":"01d796b9-a372-4e2b-b2c0-678b11ec5dc0","last_modified":1562023950010},{"schema":1562023947759,"derHash":"wj0BuOlYVhPiYOyOpIW/+PWYcpjV/ALAcGTFRGIj+cc=","subject":"CN=Fuji Xerox Xnet CA - C,O=Fuji Xerox,C=JP","subjectDN":"MEMxCzAJBgNVBAYTAkpQMRMwEQYDVQQKEwpGdWppIFhlcm94MR8wHQYDVQQDExZGdWppIFhlcm94IFhuZXQgQ0EgLSBD","whitelist":false,"attachment":{"hash":"3288f4c254a9b840d254a43033b88864319168b9ff573c3fa182d9cf4867edf6","size":1597,"filename":"Rctcx_fiaRRDpUcitk3vPz1ZUD7o5sV-LHA0YdyXVl4=.pem","location":"security-state-staging/intermediates/e5f2e418-ce6e-4298-b8e8-6373e43518f4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Rctcx/fiaRRDpUcitk3vPz1ZUD7o5sV+LHA0YdyXVl4=","crlite_enrolled":false,"id":"08956575-33ad-4922-a433-8c4193d67244","last_modified":1562023948487},{"schema":1562023947011,"derHash":"ATkyRl7k/CRI0Mmu7qBJ3pBjr153PopQGrYm8JV+E0U="
,"subject":"CN=HARICA Code Signing ECC SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGPMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEpMCcGA1UEAwwgSEFSSUNBIENvZGUgU2lnbmluZyBFQ0MgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"b6cc45afa6490d756cabf21fa29ea89943fa6d3af2dce38e2cc35b97dde4cc34","size":1370,"filename":"outUmoUrqbkdis1hc4ahnCRx1jVCZxK-HiBp0_inK-8=.pem","location":"security-state-staging/intermediates/bfbea10f-5ad5-49e0-94d8-61a172b54ab2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"outUmoUrqbkdis1hc4ahnCRx1jVCZxK+HiBp0/inK+8=","crlite_enrolled":false,"id":"46837ec3-9bf7-4f67-9c60-6fef82636bf0","last_modified":1562023947751},{"schema":1562023946273,"derHash":"0tfUvuj/G33rpCd0AIHAf3sYai8poSNg1T+MINRVU40=","subject":"CN=TrustAsia RSA OV SSL Server CA,O=TrustAsia Technologies\\, Inc.,ST=Shanghai,C=CN","subjectDN":"MHAx
CzAJBgNVBAYTAkNOMREwDwYDVQQIEwhTaGFuZ2hhaTElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEnMCUGA1UEAxMeVHJ1c3RBc2lhIFJTQSBPViBTU0wgU2VydmVyIENB","whitelist":false,"attachment":{"hash":"cef0257132e6443d4fa6a6f012339e0c0a90ba4eb8ce5d8083038ca1f5461393","size":2133,"filename":"ZyqPojkZzOKu3M2n4NkoNEh6f1YBTiJm2DtfHJroAWA=.pem","location":"security-state-staging/intermediates/f5b72560-0bb5-40bd-b68b-381a9e82b9e3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZyqPojkZzOKu3M2n4NkoNEh6f1YBTiJm2DtfHJroAWA=","crlite_enrolled":false,"id":"e944087f-76e7-41f9-a1bb-8ef5a2cd787a","last_modified":1562023947003},{"schema":1562023944727,"derHash":"ODDbjqFSC2zfV+HgCl8Sl74R2eZDDINgcXYhL/hdLbg=","subject":"CN=TrustCor Enhanced Secure Site (CA2),OU=TrustCor Network,O=TrustCor Systems S. de R.L.,ST=Panama,C=PA","subjectDN":"MIGNMQswCQYDVQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xGTAXBgNVBAsMEFRydXN0Q29yIE5ldHdvcmsxLDAqBgNVBAMMI1RydXN0Q29yIEVuaGFuY2VkIF
NlY3VyZSBTaXRlIChDQTIp","whitelist":false,"attachment":{"hash":"26631969fe5fbc543132a914eb2829ace13e9b418495495a837a47d8936c69b6","size":2564,"filename":"gTvKBlqs6VknFEiItiUhp5K_Oy0UnzZd7vVB6Ko3ZeE=.pem","location":"security-state-staging/intermediates/e49aa502-2469-4f4f-b00b-3d32c9f282e8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gTvKBlqs6VknFEiItiUhp5K/Oy0UnzZd7vVB6Ko3ZeE=","crlite_enrolled":true,"id":"7f04f0ef-3fdc-4bfa-9cc5-c76e75f35add","last_modified":1562023945471},{"schema":1562023943248,"derHash":"Cd5/pznuR8BikYRfLg6Knhx8wpAK01TPFnMW4COGvZs=","subject":"CN=Cerner Corporation Direct Intermediate CA,OU=Cerner Direct,O=Cerner Corporation,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMRswGQYDVQQKExJDZXJuZXIgQ29ycG9yYXRpb24xFjAUBgNVBAsTDUNlcm5lciBEaXJlY3QxMjAwBgNVBAMTKUNlcm5lciBDb3Jwb3JhdGlvbiBEaXJlY3QgSW50ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{"hash":"329d75edeca644875431ecdfbb5af45d15a5d4adf45ec91ae5b365a31878c6fc","size":2215,"filename":"tmPespZP4I0UhQJaBGkHj
oK6goz4XFag5dWMseOeDQk=.pem","location":"security-state-staging/intermediates/6fceb1fd-4fdf-4c6b-a721-8f40ce85ab00.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tmPespZP4I0UhQJaBGkHjoK6goz4XFag5dWMseOeDQk=","crlite_enrolled":false,"id":"8e67b7d0-aea3-4831-96a3-f712c2d261f8","last_modified":1562023943981},{"schema":1562023941722,"derHash":"edd4kk/Qj3FTEuV+EHVmqBYeoeaGSb1F6okYSqYuox4=","subject":"CN=CertAssure RSA Client Personal ID CA,O=CertAssure Inc.,L=San Jose,ST=CA,C=US","subjectDN":"MHYxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTERMA8GA1UEBxMIU2FuIEpvc2UxGDAWBgNVBAoTD0NlcnRBc3N1cmUgSW5jLjEtMCsGA1UEAxMkQ2VydEFzc3VyZSBSU0EgQ2xpZW50IFBlcnNvbmFsIElEIENB","whitelist":false,"attachment":{"hash":"87b59b94993c9ea590060a739644ad092c822a230b0bb1cfbd3eae497e596c3e","size":2125,"filename":"_vhenjJborDchqObw9eZLKuYlEq8pfTiwJCmJYlaDZI=.pem","location":"security-state-staging/intermediates/3e846fdd-caff-49a4-bd01-ee3bbf26d40a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/vhenjJborD
chqObw9eZLKuYlEq8pfTiwJCmJYlaDZI=","crlite_enrolled":false,"id":"88958b83-c5cb-4066-84f3-102a6c5c4376","last_modified":1562023942475},{"schema":1562023940958,"derHash":"0o20NeMSEqO9zPh2IPZUS5mpwCMov5g+iC/QYnodEw8=","subject":"CN=UZI-register Medewerker op naam CA G3,O=CIBG,C=NL","subjectDN":"MGUxCzAJBgNVBAYTAk5MMQ0wCwYDVQQKDARDSUJHMRcwFQYDVQRhDA5OVFJOTC01MDAwMDUzNTEuMCwGA1UEAwwlVVpJLXJlZ2lzdGVyIE1lZGV3ZXJrZXIgb3AgbmFhbSBDQSBHMw==","whitelist":false,"attachment":{"hash":"a73ac4ff82e89f690fe1a921d0ad61b7d5629b27b30eea5b1c3ca475ef79e8ad","size":2560,"filename":"dCyrxAKUK8j5RoQJISk_QPQ9eWh1wvDZFjkJxvysY1M=.pem","location":"security-state-staging/intermediates/5c181d64-4ff2-4921-9364-d3cd368e9d22.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dCyrxAKUK8j5RoQJISk/QPQ9eWh1wvDZFjkJxvysY1M=","crlite_enrolled":false,"id":"8c74a361-cbc0-45c9-a37d-003f782ada17","last_modified":1562023941715},{"schema":1562023940219,"derHash":"jIi6UQUptkJjzLIac9grpXJaVcFEbyVHvOMB/NxDFNs=","subject":"CN=
STRATO SSL - G5,OU=Domain Validated SSL,O=STRATO AG,C=DE","subjectDN":"MFoxCzAJBgNVBAYTAkRFMRIwEAYDVQQKEwlTVFJBVE8gQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRgwFgYDVQQDEw9TVFJBVE8gU1NMIC0gRzU=","whitelist":false,"attachment":{"hash":"c65817fb1a8da16ce1ca58346c65942c26cda3152c3eb9738efe79a6bda4f603","size":1756,"filename":"rO8kkFRlJlAkz68GeZxazuE37UKFGkLltXPH90hYNf4=.pem","location":"security-state-staging/intermediates/b2d5fa66-b400-4078-8efd-b61b8db30d33.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rO8kkFRlJlAkz68GeZxazuE37UKFGkLltXPH90hYNf4=","crlite_enrolled":false,"id":"5c8bab04-380f-453a-9c0a-b774af2e2428","last_modified":1562023940950},{"schema":1562023939469,"derHash":"0DSxh1G+4Qqq+UwvFDUNP2VOW5NNDdpZKzHlgYekiVI=","subject":"CN=emSign Device CA - C1,OU=emSign PKI,O=eMudhra Inc,C=US","subjectDN":"MFgxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEeMBwGA1UEAxMVZW1TaWduIERldmljZSBDQSAtIEMx","whitelist":false,"attachment":{"hash":"b85abdf
53b134a2c1985785da850d5d78657dd1abcc923a85eeaf3cf7d536125","size":1540,"filename":"W7hjn_Iwl5OzSJsB1o-RIXEUKhNjgqs-85cgtFliENM=.pem","location":"security-state-staging/intermediates/7214b980-7213-4794-a274-6fe5036d46c7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"W7hjn/Iwl5OzSJsB1o+RIXEUKhNjgqs+85cgtFliENM=","crlite_enrolled":false,"id":"b06160c1-50d8-44e1-9e0d-33cf64458a5c","last_modified":1562023940210},{"schema":1562023937221,"derHash":"kFjVBl+PPppjqv5c6Jp2RHCw3vnc87nsfQWH+riP66A=","subject":"CN=QuoVadis QVRCA1G1 SSL ICA,O=QuoVadis Limited,C=BM","subjectDN":"MEwxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSIwIAYDVQQDDBlRdW9WYWRpcyBRVlJDQTFHMSBTU0wgSUNB","whitelist":false,"attachment":{"hash":"472285bb2b9a0e36f7a8b4405e5b35d448a9333872ca825e8bdcd79a53f8a41b","size":2101,"filename":"oB-l9fuJRX8mzgRrGC4yGRLXF1IEiTrPchG7uV0y8-M=.pem","location":"security-state-staging/intermediates/be28a1da-7adf-4d5a-8b3e-a96a20b3fd9b.pem","mimetype":"application/x-pem-file"},"pub
KeyHash":"oB+l9fuJRX8mzgRrGC4yGRLXF1IEiTrPchG7uV0y8+M=","crlite_enrolled":true,"id":"dadb9e8a-9a0b-4816-b5fc-66b000ef66cf","last_modified":1562023937947},{"schema":1562023936475,"derHash":"zJ+q2DwzUJQ9TkX6QWxPi8Vk96qUz0stK850IJ0EZMk=","subject":"CN=Mirth Direct Intermediate CA,OU=NextGen Share,O=Mirth,C=US","subjectDN":"MFwxCzAJBgNVBAYTAlVTMQ4wDAYDVQQKEwVNaXJ0aDEWMBQGA1UECxMNTmV4dEdlbiBTaGFyZTElMCMGA1UEAxMcTWlydGggRGlyZWN0IEludGVybWVkaWF0ZSBDQQ==","whitelist":false,"attachment":{"hash":"539031ec4b7416b127f8b73f71eba2b81bda87c227f140052c0721557ef4488c","size":2162,"filename":"P70tJuapBoh4Tl7BeWUQnpl9vnyfhOQmuZVfj1BLPIg=.pem","location":"security-state-staging/intermediates/76c6f679-67dc-4207-b000-4770f729fc56.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"P70tJuapBoh4Tl7BeWUQnpl9vnyfhOQmuZVfj1BLPIg=","crlite_enrolled":false,"id":"f4127efd-aef8-424a-a432-057bf7e21c0f","last_modified":1562023937213},{"schema":1562023935734,"derHash":"vtDxntRtlJANKp/NfG9mC2H/dYjYtxz48nnV+qMCHM8
=","subject":"CN=LuxTrust Global Qualified CA 3,O=LuxTrust S.A.,C=LU","subjectDN":"ME4xCzAJBgNVBAYTAkxVMRYwFAYDVQQKDA1MdXhUcnVzdCBTLkEuMScwJQYDVQQDDB5MdXhUcnVzdCBHbG9iYWwgUXVhbGlmaWVkIENBIDM=","whitelist":false,"attachment":{"hash":"93020ca6fa27c7dae09b0247af1d912eac8f119d08b590855a6f996090d750ba","size":2296,"filename":"x3DBF1xU5o--Dvt6U6adkDhvC8kWrK1IWtJJZ5jBw18=.pem","location":"security-state-staging/intermediates/09d46878-7261-4162-8336-5e064910a9d3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x3DBF1xU5o++Dvt6U6adkDhvC8kWrK1IWtJJZ5jBw18=","crlite_enrolled":true,"id":"738ef4a9-0311-42bb-beae-391d42ce751f","last_modified":1562023936464},{"schema":1562023934966,"derHash":"MBEZvOt6cufie4rYeV/JsursZXV/b/9PWroWGhomjoo=","subject":"CN=MilleniumSign Client Certificate CA ECC R3,O=MilleniumSign Limited,L=Ebene,ST=Plaines Wilhems,C=MU","subjectDN":"MIGMMQswCQYDVQQGEwJNVTEYMBYGA1UECAwPUGxhaW5lcyBXaWxoZW1zMQ4wDAYDVQQHDAVFYmVuZTEeMBwGA1UECgwVTWlsbGVuaXVtU2lnbiBMaW1pdGVkMTMwMQYDVQ
QDDCpNaWxsZW5pdW1TaWduIENsaWVudCBDZXJ0aWZpY2F0ZSBDQSBFQ0MgUjM=","whitelist":false,"attachment":{"hash":"2b567d87b851810362c037e0cadc2da1bfc7a9dd2b898019e90062e63bcdd632","size":1447,"filename":"83d1IVr2xTvH_PaNkbnTL4kci6miUaFtd7QLI-w-A1w=.pem","location":"security-state-staging/intermediates/c9394921-1e7c-4fa2-9f34-0493b374d212.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"83d1IVr2xTvH/PaNkbnTL4kci6miUaFtd7QLI+w+A1w=","crlite_enrolled":false,"id":"f4d37b0b-9a53-48a5-9e2a-1d0c4bd49c5e","last_modified":1562023935726},{"schema":1562023933480,"derHash":"uQ4Xq0uHeLEPnyjLqnZk3i7j1m4a/FdNFo7dJKEDOf8=","subject":"CN=TrustAsia DV SSL CA - G6,OU=Symantec Trust Network+OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MIGXMQswCQYDVQQGEwJDTjElMCMGA1UEChMcVHJ1c3RBc2lhIFRlY2hub2xvZ2llcywgSW5jLjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEdMBsGA1UECxMURG9tYWluIFZhbGlkYXRlZCBTU0wxITAfBgNVBAMTGFRydXN0QXNpYSBEViBTU0wgQ0EgLSBHNg==","whitelist":false,"attachment":{"h
ash":"b6f89d614177e86c720fc91f770d85edcaff24350a854408afba9ab2b9d78c2f","size":1922,"filename":"MUj3ElSyDVu0X3TYBNY9f0axqYEtb7fmFTLy2Z8_l-Y=.pem","location":"security-state-staging/intermediates/bfe8252d-cbe0-4d5f-a88b-2792eb490b4d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MUj3ElSyDVu0X3TYBNY9f0axqYEtb7fmFTLy2Z8/l+Y=","crlite_enrolled":false,"id":"57d894ba-559b-4b7e-95cd-c42a4377eb6b","last_modified":1562023934224},{"schema":1562023931233,"derHash":"jD+rWYVBF760BGZwH4nMgiQZakUOsXwvT9iNNJfqJoc=","subject":"CN=Domain The Net Technologies Ltd CA for Code Signing R2,O=Domain The Net Technologies Ltd,C=IL","subjectDN":"MHgxCzAJBgNVBAYTAklMMSgwJgYDVQQKDB9Eb21haW4gVGhlIE5ldCBUZWNobm9sb2dpZXMgTHRkMT8wPQYDVQQDDDZEb21haW4gVGhlIE5ldCBUZWNobm9sb2dpZXMgTHRkIENBIGZvciBDb2RlIFNpZ25pbmcgUjI=","whitelist":false,"attachment":{"hash":"6cd1244808cf3297acbc1db3a6698bcaeff589f795304830aad10b260c06c428","size":2515,"filename":"tQ28VcCBKgtvuytE6MNlMdLWjjmOUZ1OHheIJqaPxx0=.pem","location":"sec
urity-state-staging/intermediates/9444ad32-c97b-4b63-a2ca-32dc448a17e1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tQ28VcCBKgtvuytE6MNlMdLWjjmOUZ1OHheIJqaPxx0=","crlite_enrolled":false,"id":"471e9599-0ffc-49b2-b37a-c79bfd133af1","last_modified":1562023931974},{"schema":1562023927515,"derHash":"/BbVMgO9kYfWnMmdLaVRB2tNyymBQNZ1H3oBKWbJn90=","subject":"CN=RapidSSL TLS ECC CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGAxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHzAdBgNVBAMTFlJhcGlkU1NMIFRMUyBFQ0MgQ0EgRzE=","whitelist":false,"attachment":{"hash":"5ab29482e9032bced4020a6ffd28ba40b857897ed628b88bc1554bc73e84f763","size":1199,"filename":"cBtUiO-mwdgMfNeEp_qKuEHswRn2nHp2FDUKVi_aTDw=.pem","location":"security-state-staging/intermediates/a7d241d1-10f7-486a-be9d-7d013030af11.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cBtUiO+mwdgMfNeEp/qKuEHswRn2nHp2FDUKVi/aTDw=","crlite_enrolled":false,"id":"f21e7595-bb74-4d43-87
65-075259ddef98","last_modified":1562023928253},{"schema":1562023926016,"derHash":"MZiW45VNUQ2jpLdTh+jIcLO8LDIo2FUJFuvpq9y3+SE=","subject":"CN=Oracle TLS RSA CA G1,OU=Organization Validated SSL,O=Oracle Corporation,C=US","subjectDN":"MG4xCzAJBgNVBAYTAlVTMRswGQYDVQQKExJPcmFjbGUgQ29ycG9yYXRpb24xIzAhBgNVBAsTGk9yZ2FuaXphdGlvbiBWYWxpZGF0ZWQgU1NMMR0wGwYDVQQDExRPcmFjbGUgVExTIFJTQSBDQSBHMQ==","whitelist":false,"attachment":{"hash":"450ac021db301c37c528daccbe40e94f74a28f7ae6f6ba039650b6aae3c3d13e","size":1678,"filename":"92UUNzSFrSZZ2mG20rm7eFX2MV_e3zCq8ck0jTA9zMw=.pem","location":"security-state-staging/intermediates/ab1e19a8-c972-4ca6-84ee-d4ca47a1a385.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"92UUNzSFrSZZ2mG20rm7eFX2MV/e3zCq8ck0jTA9zMw=","crlite_enrolled":false,"id":"c2b42df2-4fa8-48f7-8666-741d1b771779","last_modified":1562023926759},{"schema":1562023922211,"derHash":"hv/qQPNvppEyeHEP6rqbIG8yiNo/0cZSvFtYlaKxqHc=","subject":"CN=Oregon Health Authority Direct CA,O=Oregon Heal
th Authority,C=US","subjectDN":"MFsxCzAJBgNVBAYTAlVTMSAwHgYDVQQKExdPcmVnb24gSGVhbHRoIEF1dGhvcml0eTEqMCgGA1UEAxMhT3JlZ29uIEhlYWx0aCBBdXRob3JpdHkgRGlyZWN0IENB","whitelist":false,"attachment":{"hash":"c479fa9505d835f1638c400911242170ff9011865fabe90fab5ee2126ba98139","size":2170,"filename":"DNdYJRYEP9-HYWq0AW8zHl7xzEsYssaB1vCUHUipRQM=.pem","location":"security-state-staging/intermediates/5f655899-434c-4631-b137-de14b7b959a1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DNdYJRYEP9+HYWq0AW8zHl7xzEsYssaB1vCUHUipRQM=","crlite_enrolled":false,"id":"35ca3b80-9261-4b67-9e34-b6b8216de1bc","last_modified":1562023922942},{"schema":1562023921473,"derHash":"OSWDVDuTsQ4FBt511pOZ/LvBRpyN45YGbHVgiLkiQdo=","subject":"CN=Apple Public Server RSA CA 1 - G1,O=Apple Inc.,C=US","subjectDN":"ME4xCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpBcHBsZSBJbmMuMSowKAYDVQQDEyFBcHBsZSBQdWJsaWMgU2VydmVyIFJTQSBDQSAxIC0gRzE=","whitelist":false,"attachment":{"hash":"35b8ea0b8b208776616acd154fabbd1d3abade4a57f7a5e656ec072d1b474
f8a","size":1654,"filename":"9Vw5Oz-M36bapAlDoz-njgwaF-AaQLrKSmhcZZnxAcY=.pem","location":"security-state-staging/intermediates/76b79706-32a3-45c2-94cf-fd61a2eb2c5d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9Vw5Oz+M36bapAlDoz+njgwaF+AaQLrKSmhcZZnxAcY=","crlite_enrolled":false,"id":"14809122-3e00-45ce-b8d8-b63bb3ff0adf","last_modified":1562023922204},{"schema":1562023920721,"derHash":"9t/e1h/4jvELnm3PvODxYV4Fhmzrr81tSK7oATLHA0c=","subject":"CN=WoSign EV Code Signing Pro CA,O=WoSign CA Limited,C=CN","subjectDN":"MFExCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRlZDEmMCQGA1UEAxMdV29TaWduIEVWIENvZGUgU2lnbmluZyBQcm8gQ0E=","whitelist":false,"attachment":{"hash":"8536611d113671c5cb3dc75d5e0bf12a809bddbed4952eaf259b6465f9545d7d","size":1731,"filename":"5zUpCObCLFLZgrnR6TGCOtmLjBBbI4mpEj9CP409UWY=.pem","location":"security-state-staging/intermediates/f5f030c6-0035-459e-81c9-43944f596b65.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5zUpCObCLFLZgrnR6TGCOtmLjBBbI4m
pEj9CP409UWY=","crlite_enrolled":false,"id":"e1447988-52dc-409e-b96d-b1fdba0c492c","last_modified":1562023921465},{"schema":1562023919958,"derHash":"XXTtYdCzEemBu88PQZo1+p+h7HD/Gut0LXO8/roGz/8=","subject":"CN=GeoTrust True Credentials CA 3,O=GeoTrust\\, Inc.,C=US","subjectDN":"ME8xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5HZW9UcnVzdCwgSW5jLjEnMCUGA1UEAxMeR2VvVHJ1c3QgVHJ1ZSBDcmVkZW50aWFscyBDQSAz","whitelist":false,"attachment":{"hash":"b66df6fdfbd926e26674fc928d090142497594ed9f7d8d0cdbc90dff7e9ee618","size":1414,"filename":"o2dN2rQs101OU1N1FNLbW2U6i4ApoFhY-pI9wu1fcyw=.pem","location":"security-state-staging/intermediates/17b26a4b-cf0e-4d42-b68e-e4e72b00cb85.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"o2dN2rQs101OU1N1FNLbW2U6i4ApoFhY+pI9wu1fcyw=","crlite_enrolled":false,"id":"3bc639af-b93f-4769-a1de-d9721dba182a","last_modified":1562023920713},{"schema":1562023919206,"derHash":"zJ9yVE/2F8FM6+goMZSnDx6Jgc8WPVo/2NzP2EbV3Bo=","subject":"CN=NetLock OnlineSSL (Class Online) Tan\u00fas\u00
edtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIGwMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE+MDwGA1UEAww1TmV0TG9jayBPbmxpbmVTU0wgKENsYXNzIE9ubGluZSkgVGFuw7pzw610dsOhbnlraWFkw7M=","whitelist":false,"attachment":{"hash":"72ae8f0a0087c7b13f79d2f02193b9bca142172f3053cad4b927af716cd0534a","size":2190,"filename":"He6eOdoX1CHCLhtg75AtdDdI18-x-VfWOYW5_LCt5kk=.pem","location":"security-state-staging/intermediates/6bab6451-8f63-49f3-a556-455c6b868bd1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"He6eOdoX1CHCLhtg75AtdDdI18+x+VfWOYW5/LCt5kk=","crlite_enrolled":true,"id":"ca8f61c9-fe67-45a0-8bc2-f0a8348e2cdb","last_modified":1562023919950},{"schema":1562023917707,"derHash":"2GoYtfdpUrc26Jots/D9+QcHEUYBFLagjWScpieTXJY=","subject":"CN=COMODO SHA-256 Client Authentication and Secure Email CA 2,O
=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGdMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDFDMEEGA1UEAxM6Q09NT0RPIFNIQS0yNTYgQ2xpZW50IEF1dGhlbnRpY2F0aW9uIGFuZCBTZWN1cmUgRW1haWwgQ0EgMg==","whitelist":false,"attachment":{"hash":"047895ba02981d540016dd3f1b11f8959d568808c8392376e4f72812219bfd23","size":1719,"filename":"MV-oXptPSGVj-n7_WowdFiUjBX7WRZeHO7XdRoAt_Ro=.pem","location":"security-state-staging/intermediates/4b905e58-de32-42f6-9817-56b9d2cf0c30.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MV+oXptPSGVj+n7/WowdFiUjBX7WRZeHO7XdRoAt/Ro=","crlite_enrolled":false,"id":"ef2f4901-d741-470a-9b1b-3be0635e43d9","last_modified":1562023918464},{"schema":1562023916205,"derHash":"XJfg/R69bhNqcWJvhgq11lt5fn7TwcG/TmU4IjdaRkQ=","subject":"CN=HARICA S/MIME RSA SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGJMQswCQYDVQQGEwJHUjEPMA0GA1
UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTEjMCEGA1UEAwwaSEFSSUNBIFMvTUlNRSBSU0EgU3ViQ0EgUjI=","whitelist":false,"attachment":{"hash":"d4e941ad40230b5c13c3996c883aa85ff7b6445f041b6bbd0143d744129cbd81","size":2564,"filename":"o79a142SfRPFvEK57ct8ocJ_tHYpTuDy-1a3i-te0aQ=.pem","location":"security-state-staging/intermediates/9c236c6d-f2eb-44ea-9409-6eae4d0e468d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"o79a142SfRPFvEK57ct8ocJ/tHYpTuDy+1a3i+te0aQ=","crlite_enrolled":false,"id":"ed331ef0-35ea-4e53-9633-07cd14412686","last_modified":1562023916945},{"schema":1562023914706,"derHash":"nvyRAnEJS4hr2aj8njlNvyrlFHeMs3NUQIWvgVyr/i0=","subject":"CN=Go Daddy Secure Extended Validation Code Signing CA - G2,O=GoDaddy Inc.,L=Scottsdale,ST=Arizona,C=US","subjectDN":"MIGOMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEVMBMGA1UEChMMR29EYWRkeSBJbmMuMUEwPwYDVQQDEzhHbyBEYWRkeSBTZWN1cmUgRXh0ZW5kZWQgVmFsaWRh
dGlvbiBDb2RlIFNpZ25pbmcgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"3517f89c468b80d775015979f32eb5377e091426aa65e2fe810ff308ae2351a7","size":1752,"filename":"UNzTXQQxA4weEEFceBlgOF0AeE9rV8ZoIXwFOgNm31I=.pem","location":"security-state-staging/intermediates/0f02d488-dc83-4cb0-9899-40a3ec673425.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UNzTXQQxA4weEEFceBlgOF0AeE9rV8ZoIXwFOgNm31I=","crlite_enrolled":false,"id":"1515b6bc-9090-44ac-bbf4-00e69844929a","last_modified":1562023915452},{"schema":1562023913211,"derHash":"9bzzqnotFhoYISBPUlM3xs+UnnNa09M25HZLJadsKlo=","subject":"CN=TrustSign RSA DV CA,O=Ziwit,L=Montpellier,ST=Herault,C=FR","subjectDN":"MGMxCzAJBgNVBAYTAkZSMRAwDgYDVQQIEwdIZXJhdWx0MRQwEgYDVQQHEwtNb250cGVsbGllcjEOMAwGA1UEChMFWml3aXQxHDAaBgNVBAMTE1RydXN0U2lnbiBSU0EgRFYgQ0E=","whitelist":false,"attachment":{"hash":"e7641150501f3bf2c280ba7a371a352089b2a8c465adf46df5630b5d4e2d3556","size":2113,"filename":"jEvvAqAI3_5hDMtldisHHkOwAFpxjTzbkoL_r-GTKJU=.pem","locati
on":"security-state-staging/intermediates/00ed82e9-9d56-4db6-bd16-63bf411f4e53.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jEvvAqAI3/5hDMtldisHHkOwAFpxjTzbkoL/r+GTKJU=","crlite_enrolled":false,"id":"f14daf92-a223-40b9-8d99-37d837b4cc5c","last_modified":1562023913938},{"schema":1562023912477,"derHash":"ewvDVj1DMJEY9WCmyZoiHDU5mxApP3O+QaEqygM4B18=","subject":"CN=WoSign Code Signing CA,O=WoSign CA Limited,C=CN","subjectDN":"MEoxCzAJBgNVBAYTAkNOMRowGAYDVQQKDBFXb1NpZ24gQ0EgTGltaXRlZDEfMB0GA1UEAwwWV29TaWduIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"308987b783a08ed974b3fb4505d7eaaa4169b07441c7afec1b5e1c24e45bc2ef","size":1687,"filename":"FZS0F__J7FHzpNqv22fhTZZ1ns8livqEaiB9NftdioU=.pem","location":"security-state-staging/intermediates/67e1b6cb-99f1-41b3-853e-8dbea4618741.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"FZS0F//J7FHzpNqv22fhTZZ1ns8livqEaiB9NftdioU=","crlite_enrolled":false,"id":"84a9e3a2-9105-45c4-b36d-4db6f5938b74","last_modified":15
62023913204},{"schema":1562023910995,"derHash":"Qz0QPeCZzD80FNAE+HD02lyef0Gki6isuvP5Hu/LDWA=","subject":"CN=USERTrust RSA Client Authentication and Secure Email CA,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US","subjectDN":"MIGaMQswCQYDVQQGEwJVUzETMBEGA1UECBMKTmV3IEplcnNleTEUMBIGA1UEBxMLSmVyc2V5IENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazFAMD4GA1UEAxM3VVNFUlRydXN0IFJTQSBDbGllbnQgQXV0aGVudGljYXRpb24gYW5kIFNlY3VyZSBFbWFpbCBDQQ==","whitelist":false,"attachment":{"hash":"8f747b0e65ff509fb91eb3e429e3530a8e8fb3bd2c74bbbcb8af53fada5d42d3","size":2170,"filename":"GxuU4F5l6xPkmDYqjOmR8nS3Nr2bV2oJ0CV0Jx-NWD4=.pem","location":"security-state-staging/intermediates/55af3597-6627-40c7-8e2b-4e91e9bff09a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"GxuU4F5l6xPkmDYqjOmR8nS3Nr2bV2oJ0CV0Jx+NWD4=","crlite_enrolled":false,"id":"6c1153d9-3eb0-4419-a890-9743512226f3","last_modified":1562023911730},{"schema":1562023906470,"derHash":"l/QDkKXK4ljW+y/40COxmHdf9Haku+wdG6rBM05XtuE=",
"subject":"SERIALNUMBER=201804,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODA0","whitelist":false,"attachment":{"hash":"abd99c8a6f8baad7db821237b5df895c2d6df0ba6af78ec83ff206eee062e281","size":2333,"filename":"jfS6UYK1YqR7g1U9V5MqubOAgnB-fPO0u-eN8q0c0yE=.pem","location":"security-state-staging/intermediates/109e6702-5f02-415c-bf5a-dc562a660188.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jfS6UYK1YqR7g1U9V5MqubOAgnB+fPO0u+eN8q0c0yE=","crlite_enrolled":false,"id":"ae00e3ac-d2d1-428e-852a-47f7e58676c3","last_modified":1562023907207},{"schema":1562023901967,"derHash":"zf8nr6Pa+fcGqnrFMCmDN+UgyLEKIvZRTgDiH9KHO3k=","subject":"CN=Ecclesiastical Academy of Vella SSL RSA SubCA R2,O=University Ecclesiastical Academy of Vella of Ioannina,L=Ioannina,C=GR","subjectDN":"MIGcMQswCQYDVQQGEwJHUjERMA8GA1UEBwwISW9hbm5pbmExPzA9BgNVBAoMNlVu
aXZlcnNpdHkgRWNjbGVzaWFzdGljYWwgQWNhZGVteSBvZiBWZWxsYSBvZiBJb2FubmluYTE5MDcGA1UEAwwwRWNjbGVzaWFzdGljYWwgQWNhZGVteSBvZiBWZWxsYSBTU0wgUlNBIFN1YkNBIFIy","whitelist":false,"attachment":{"hash":"156b5156f2e0bc0a6ad31fb9b70bcedf0e5c8d29fe23f55ec3d22943f3bf990d","size":2995,"filename":"W-LP2L6GtiR5yYoztYP5ABaxz_faz3yBSub4W5M0wa4=.pem","location":"security-state-staging/intermediates/4236385b-60c6-4921-9be8-258e10ac5db3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"W+LP2L6GtiR5yYoztYP5ABaxz/faz3yBSub4W5M0wa4=","crlite_enrolled":false,"id":"13c7f02d-d089-4c63-8bad-0087f66298cf","last_modified":1562023902725},{"schema":1562023901225,"derHash":"ZObglZJvUkdRFsFk1qhemyEyKitIZ99+cqHGMvjHQUM=","subject":"CN=GeoTrust Class 3 ECC CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xIzAhBgNVBAMTGkdlb1RydXN0IENsYXNzIDMgRUNDIENBIEcx","whitelist":false,"attachment":{"hash":"b1a1311c8d0ca5a0ab5a0d77e5
4b396512314e1b99f25b6b72a10008ee7cd248","size":1122,"filename":"PidygEfLQ98SYkWF8QWGCdIeWhyfGPy00o2Y6-8L4Ug=.pem","location":"security-state-staging/intermediates/4bb37b11-2e9e-4e32-9e80-ce030b4910fc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PidygEfLQ98SYkWF8QWGCdIeWhyfGPy00o2Y6+8L4Ug=","crlite_enrolled":false,"id":"32550637-f3c2-475b-a788-7ef9bd526589","last_modified":1562023901959},{"schema":1562023900475,"derHash":"XMofL/OaSokko2BgNtiq3i4jwCTvyv89wsZnWf73dvs=","subject":"CN=Symantec Class 3 Organizational CA - G5,OU=Symantec Trust Network+OU=Insattningsgaranti Service SHA256 CA,O=Symantec Corporation,C=US","subjectDN":"MIGuMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxLTArBgNVBAsTJEluc2F0dG5pbmdzZ2FyYW50aSBTZXJ2aWNlIFNIQTI1NiBDQTEwMC4GA1UEAxMnU3ltYW50ZWMgQ2xhc3MgMyBPcmdhbml6YXRpb25hbCBDQSAtIEc1","whitelist":false,"attachment":{"hash":"ee77c69da5c00a9b0ba61a8658517885313b3b057bb2e374617159832a3c99dc","size":19
59,"filename":"cBpmTzPT3skhhtGMrQJfEnBDG3RXp4d1W_TeftxNX5o=.pem","location":"security-state-staging/intermediates/aa26f891-6509-4035-811b-356b1da5cab9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cBpmTzPT3skhhtGMrQJfEnBDG3RXp4d1W/TeftxNX5o=","crlite_enrolled":false,"id":"b801a445-982a-48d0-9791-5fec6b93b05b","last_modified":1562023901218},{"schema":1562023899695,"derHash":"O/fPS2GSO651p8JX9VBwAD7Pcn4c2mufy4VR/GSdb+s=","subject":"CN=GlobeSSL DV Certification Authority 2,O=Globe Hosting\\, Inc.,L=Wilmington,ST=DE,C=US","subjectDN":"MH0xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJERTETMBEGA1UEBxMKV2lsbWluZ3RvbjEcMBoGA1UEChMTR2xvYmUgSG9zdGluZywgSW5jLjEuMCwGA1UEAxMlR2xvYmVTU0wgRFYgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgMg==","whitelist":false,"attachment":{"hash":"c70f8758f89a5a215393c93d186b22f43da0b0f148d6226d96c339271c9d9ad6","size":2150,"filename":"lQ_FKBR5nsUo6XzQqIOg6_wickZMgocia2x_uINY_uw=.pem","location":"security-state-staging/intermediates/70120228-d3eb-46ce-8660-044d1c900414.pem","mime
type":"application/x-pem-file"},"pubKeyHash":"lQ/FKBR5nsUo6XzQqIOg6/wickZMgocia2x/uINY/uw=","crlite_enrolled":true,"id":"78baa603-1046-4055-bcea-dbb019a819d2","last_modified":1562023900467},{"schema":1562023898952,"derHash":"N/a9m+4MdPYI3UdLVqcvgYMHffwmYq95v+PU+rzwscQ=","subject":"CN=thawte EV SSL CA - G2,O=thawte\\, Inc.,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xHjAcBgNVBAMTFXRoYXd0ZSBFViBTU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"cdc8303c392107878e951abcd532ced1f3ec3f8ad0b3e91a30dacf150ddcf945","size":1683,"filename":"UsnhaVdJ4pzPc4oJoB-DvYML3sL25lZj8K42HWaTu_M=.pem","location":"security-state-staging/intermediates/c940d8a5-f84d-43f4-ba77-b676afec2504.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"UsnhaVdJ4pzPc4oJoB+DvYML3sL25lZj8K42HWaTu/M=","crlite_enrolled":false,"id":"cc6703a8-cebe-49cc-bd39-4e1a7a3f620e","last_modified":1562023899687},{"schema":1562023898215,"derHash":"9r+Isqjc1P60AVmE7C8UJ8gBfRQM9B8i7mieDWcYAS8=","subject
":"CN=WoTrus OV SSL CA,O=WoTrus CA Limited,C=CN","subjectDN":"MEQxCzAJBgNVBAYTAkNOMRowGAYDVQQKDBFXb1RydXMgQ0EgTGltaXRlZDEZMBcGA1UEAwwQV29UcnVzIE9WIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"ce4ba30cb7d9fab70ae32267594148013d61f09cd075d7e3e07f4792e46d517c","size":1691,"filename":"xxDKJ6WsrIZ1X_E1XI1IQgUNGc1SquSk5UkyOBHKq4I=.pem","location":"security-state-staging/intermediates/b8d761f5-e513-43c4-ba77-4138f539938e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xxDKJ6WsrIZ1X/E1XI1IQgUNGc1SquSk5UkyOBHKq4I=","crlite_enrolled":true,"id":"773ec055-4ebc-48c9-84a6-04ffd1e4b40d","last_modified":1562023898944},{"schema":1562023897472,"derHash":"WfjLfX6eE8t3j/YhmOvgVVG1FaWLu6LvGcM8dgyCORY=","subject":"CN=Symantec Class 3 Secure Server CA - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MH4xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3JhdGlvbjEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEvMC0GA1UEAxMmU3ltYW50ZWMgQ2xhc3MgMyBTZWN1cmUgU2VydmVyIENBIC0gR
zQ=","whitelist":false,"attachment":{"hash":"872450a43824a979c2e9576d217c927280ea4a1bfb4504ea3330e00aa649136e","size":1865,"filename":"9n0izTnSRF-W4W4JTq51avSXkWhQB8duS2bxVLfzXsY=.pem","location":"security-state-staging/intermediates/efda7551-5b7a-460b-a28b-26cdc37bca68.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9n0izTnSRF+W4W4JTq51avSXkWhQB8duS2bxVLfzXsY=","crlite_enrolled":true,"id":"696e4f33-7c3d-43d1-afc8-c045f8b1043c","last_modified":1562023898207},{"schema":1562023896701,"derHash":"9/veuCvpnUHNykGfyRhZ0+UobAdiBODpA9Z4uyE+2Js=","subject":"CN=Hostpoint TLS RSA CA,OU=Domain Validated SSL,O=Hostpoint AG,C=CH","subjectDN":"MGIxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxIb3N0cG9pbnQgQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMR0wGwYDVQQDExRIb3N0cG9pbnQgVExTIFJTQSBDQQ==","whitelist":false,"attachment":{"hash":"e06a612c20a2679cb1522f8e77265194fd2509fa105e19f74503f5f6e26acc68","size":1662,"filename":"Q5l5uNBWZnOf3EnCFMK3ciNhPZboa_YPtUtL6yZ_DvU=.pem","location":"security-state-staging
/intermediates/c78cb670-c087-4971-a213-9724dc2bf071.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Q5l5uNBWZnOf3EnCFMK3ciNhPZboa/YPtUtL6yZ/DvU=","crlite_enrolled":false,"id":"71101667-ae1e-451f-a1e6-bbf37b5d1c15","last_modified":1562023897463},{"schema":1562023895955,"derHash":"MM5AljESCgxaxUir+yMXiahHQRw4GKVumwb+sXI855c=","subject":"OU=\u653f\u5e9c\u6191\u8b49\u7ba1\u7406\u4e2d\u5fc3,O=\u884c\u653f\u9662,C=TW","subjectDN":"MEQxCzAJBgNVBAYTAlRXMRIwEAYDVQQKDAnooYzmlL/pmaIxITAfBgNVBAsMGOaUv+W6nOaGkeitieeuoeeQhuS4reW/gw==","whitelist":false,"attachment":{"hash":"136cce10aa7fe302678af5476af5c33cd4f4b62cc81c3a7400d01d1ad4402def","size":1845,"filename":"9SrSmq9hgCZP8N1M7kFgIC_97LEKOAceLOYuCEt3NPA=.pem","location":"security-state-staging/intermediates/7eaa26ca-66dc-4067-bf06-faea7b0778c2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9SrSmq9hgCZP8N1M7kFgIC/97LEKOAceLOYuCEt3NPA=","crlite_enrolled":false,"id":"bb082824-c5dc-4766-82b5-bf6bca3cd472","last_modified":1562023896
694},{"schema":1562023895217,"derHash":"fBQwkslrZFn1QwaU4m/C/TIE2z6l4joNhOFBBDHY86o=","subject":"CN=Sectigo ECC Code Signing CA,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MHwxCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGDAWBgNVBAoTD1NlY3RpZ28gTGltaXRlZDEkMCIGA1UEAxMbU2VjdGlnbyBFQ0MgQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"9a2de842160f7d190ed3b3cba30dbb63769ac15807d220080a3a2bd9bd1b666f","size":1288,"filename":"w6yFEnzGbuGwNdmUt6sCUgKBh2h32AoeHYoMDYzuK_k=.pem","location":"security-state-staging/intermediates/0747832d-f5b5-4a97-a9bc-25a37db463a6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"w6yFEnzGbuGwNdmUt6sCUgKBh2h32AoeHYoMDYzuK/k=","crlite_enrolled":false,"id":"db0253fc-b96f-4659-99b7-c03a04b8abb8","last_modified":1562023895947},{"schema":1562023892959,"derHash":"qFyEoIJaoBncCPqaAsTDnj/UGTR7LpLfBGM+5CbZAHc=","subject":"SERIALNUMBER=PT507015851,CN=DigitalSign TSA CA,O=DigitalSign Certificad
ora Digital,L=Guimaraes (see current address at www.digitalsign.pt),C=PT","subjectDN":"MIGsMRQwEgYDVQQFEwtQVDUwNzAxNTg1MTELMAkGA1UEBhMCUFQxPjA8BgNVBAcTNUd1aW1hcmFlcyAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuZGlnaXRhbHNpZ24ucHQpMSowKAYDVQQKEyFEaWdpdGFsU2lnbiBDZXJ0aWZpY2Fkb3JhIERpZ2l0YWwxGzAZBgNVBAMTEkRpZ2l0YWxTaWduIFRTQSBDQQ==","whitelist":false,"attachment":{"hash":"b810a0659616ef9705eed08822a6adc2f20b3b1253e9c32d6a67b5d6516f3a48","size":2983,"filename":"14wpPqI0rKKu2wfgxtYzi79V21Q-G8MMRfL27MMj9Iw=.pem","location":"security-state-staging/intermediates/be9846a9-01e0-44bc-8be5-f15f96a33766.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"14wpPqI0rKKu2wfgxtYzi79V21Q+G8MMRfL27MMj9Iw=","crlite_enrolled":false,"id":"aa36797b-9b27-45db-b8cc-8675b7b7187e","last_modified":1562023893696},{"schema":1562023890715,"derHash":"F81lBLJ1pmNO4AFu/+U7Jr/8yiicfe1KHI9DU80FsJw=","subject":"CN=SSL.com Client Certificate Enterprise Intermediate CA RSA R1,O=SSL Corp,L=Houston,ST=Texas,C=US","subjectDN":"
MIGJMQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0b24xETAPBgNVBAoMCFNTTCBDb3JwMUUwQwYDVQQDDDxTU0wuY29tIENsaWVudCBDZXJ0aWZpY2F0ZSBFbnRlcnByaXNlIEludGVybWVkaWF0ZSBDQSBSU0EgUjE=","whitelist":false,"attachment":{"hash":"6c7e49020c5475b9abc349acd61d6b88925429b682acd6e2e5abe999f3b60a83","size":2475,"filename":"h9sqkTNlvbHEc_SCe09NcuKt0lMiI1LoVjl_27pfS1w=.pem","location":"security-state-staging/intermediates/d4e928bc-793e-4205-bd4e-edef3135e988.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"h9sqkTNlvbHEc/SCe09NcuKt0lMiI1LoVjl/27pfS1w=","crlite_enrolled":false,"id":"64099b82-85e1-4bae-a95e-a86a258020a2","last_modified":1562023891466},{"schema":1562023889965,"derHash":"uoscVM+tNpROU5GJH2sP8P7BZTOXmEynDUHH1JJfloE=","subject":"CN=YourNet SSL for business2,O=FreeBit Co.\\,Ltd.,C=JP","subjectDN":"MEwxCzAJBgNVBAYTAkpQMRkwFwYDVQQKExBGcmVlQml0IENvLixMdGQuMSIwIAYDVQQDExlZb3VyTmV0IFNTTCBmb3IgYnVzaW5lc3My","whitelist":false,"attachment":{"hash":"9e6dd2fa6e9bc32016adf0bfa400528e7
2306689a6ec1eca064f3dd27a85822f","size":1601,"filename":"oYqPK-xVUS7-RcUnQeCetmqmeRrQMdovxW4BWxh-Emk=.pem","location":"security-state-staging/intermediates/4bbf284e-2f36-40c1-bd92-f2b16be4d3ae.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"oYqPK+xVUS7+RcUnQeCetmqmeRrQMdovxW4BWxh+Emk=","crlite_enrolled":false,"id":"c47d3556-f86b-4ab6-9b3d-f9af03cd2bd9","last_modified":1562023890707},{"schema":1562023889223,"derHash":"Z3dGRFHJm4WxKtMj9z9xNsgr9NE+F16VCCWPwTdcc8c=","subject":"CN=Technological Educational Institution of Central Macedonia CA R3,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGeMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxSTBHBgNVBAMTQFRlY2hub2xvZ2ljYWwgRWR1Y2F0aW9uYWwgSW5zdGl0dXRpb24gb2YgQ2VudHJhbCBNYWNlZG9uaWEgQ0EgUjM=","whitelist":false,"attachment":{"hash":"36ffb3046dd658ff9ccba6ea9eb4df83e4add8be6a87212bf86afc91550e4239","size":2576,"filename":"I0fdRdZ1pQ-XM4
dJAEPngv0L1YgRqn0kogIzrBTN_tk=.pem","location":"security-state-staging/intermediates/5079f208-5c1b-44b7-a9f4-c02be180c2ac.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"I0fdRdZ1pQ+XM4dJAEPngv0L1YgRqn0kogIzrBTN/tk=","crlite_enrolled":true,"id":"539cd105-51fc-4e3e-a033-4aacc41b639c","last_modified":1562023889956},{"schema":1562023888479,"derHash":"P+i+OSoIaEuZ9JfmGMfd9aAqQom/nQjllQRZMb+6gU8=","subject":"CN=QuoVadis EV SSL ICA G1,O=QuoVadis Limited,C=BM","subjectDN":"MEkxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR8wHQYDVQQDExZRdW9WYWRpcyBFViBTU0wgSUNBIEcx","whitelist":false,"attachment":{"hash":"551cf1c482303e95516618b5d32f583a46517b1ec9aad2cf0021a782aa675281","size":1959,"filename":"2ZnCTNQBrKShr4c1olKfwNG53KiL6qoNcQi65YGRBn8=.pem","location":"security-state-staging/intermediates/c17b1b5f-620a-4306-968a-5c4260d25ab8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2ZnCTNQBrKShr4c1olKfwNG53KiL6qoNcQi65YGRBn8=","crlite_enrolled":true,"id":"0314ca5c-23af-4a2b-b
c71-b2e37c50ac54","last_modified":1562023889215},{"schema":1562023887737,"derHash":"RqKjoPEeA8A6QfPlF1/Vi+wQIvuB65NJMX4f26ZMw9Q=","subject":"CN=WISeKey CertifyID Advanced G1 CA,OU=Copyright (c) 2005 WISeKey SA+OU=International,O=WISeKey,C=CH","subjectDN":"MIGKMQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEmMCQGA1UECxMdQ29weXJpZ2h0IChjKSAyMDA1IFdJU2VLZXkgU0ExFjAUBgNVBAsTDUludGVybmF0aW9uYWwxKTAnBgNVBAMTIFdJU2VLZXkgQ2VydGlmeUlEIEFkdmFuY2VkIEcxIENB","whitelist":false,"attachment":{"hash":"20233f4415718b169b238134dbe831bb4d946d37afb8c1b48c1adb10fe7ac94e","size":1792,"filename":"tv0EwdMH3jyu8FHFCeLpxbPmlyakqJMlF9pChboTB90=.pem","location":"security-state-staging/intermediates/09a7a43f-5d95-4f5a-8572-f43ac38325eb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tv0EwdMH3jyu8FHFCeLpxbPmlyakqJMlF9pChboTB90=","crlite_enrolled":true,"id":"8cf5872b-da2d-4b66-ba16-f07b1a526a9c","last_modified":1562023888471},{"schema":1562023887003,"derHash":"owdxJdafyc2Ztdqnz+gKDvKy6YTm1x7QeL8kJOmmz9U=","sub
ject":"CN=Hellenic Academic and Research Institutions AdminCA R6,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGUMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxPzA9BgNVBAMTNkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQWRtaW5DQSBSNg==","whitelist":false,"attachment":{"hash":"e97b90c29ca08c32a29e1dcb3016225c5d29421decefc81fdce9995717f8465d","size":2767,"filename":"D6zzR3_KFUAa348dTG5H2yMt4bp9Pii8OwW14yQxJEM=.pem","location":"security-state-staging/intermediates/aca214f4-7536-4d5a-85ee-9a4aa5638493.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"D6zzR3/KFUAa348dTG5H2yMt4bp9Pii8OwW14yQxJEM=","crlite_enrolled":true,"id":"f2248a36-d454-482f-958b-a9dc15720d84","last_modified":1562023887729},{"schema":1562023884749,"derHash":"hxHuU550IT9fQS60oYqYw7WNpiC01D51sFQq/Dn8YDM=","subject":"CN=Apple IST CA 8 - G1,O=Apple Inc.,C=US","subjectDN":"MEAxHDAaBgNVBAMME0FwcGxlIElTVCBD
QSA4IC0gRzExEzARBgNVBAoMCkFwcGxlIEluYy4xCzAJBgNVBAYTAlVT","whitelist":false,"attachment":{"hash":"2cd6b163c464a522511c510d8e9b798eae4d6dbe7d90880114a485a3a0e1f2a7","size":1142,"filename":"4k-OjCGF2i9eiNRXnoF8R79ur7yFBfD5YP1aDfRHOtM=.pem","location":"security-state-staging/intermediates/64c1ffef-d9d4-4408-8e40-276c0ba9cfd9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4k+OjCGF2i9eiNRXnoF8R79ur7yFBfD5YP1aDfRHOtM=","crlite_enrolled":true,"id":"f27a949a-d1d5-478e-9330-6841cb12ffa8","last_modified":1562023885487},{"schema":1562023883962,"derHash":"qbVpjFJjvv89YHINwYRMuV0W8G4EJovOO+TWAoKwHvk=","subject":"CN=KPN BV PKIoverheid Organisatie Persoon CA - G3,O=KPN B.V.,C=NL","subjectDN":"MHIxCzAJBgNVBAYTAk5MMREwDwYDVQQKDAhLUE4gQi5WLjEXMBUGA1UEYQwOTlRSTkwtMjcxMjQ3MDExNzA1BgNVBAMMLktQTiBCViBQS0lvdmVyaGVpZCBPcmdhbmlzYXRpZSBQZXJzb29uIENBIC0gRzM=","whitelist":false,"attachment":{"hash":"2322b3b033011ddfda96b303a8450928d8781e9758dbd8686a93db915c70ebbc","size":2560,"filename":"8zXk1x8L1cy7g
e8UwVX_L83jPq3uLmMVnaXX38tAKyU=.pem","location":"security-state-staging/intermediates/b202526e-54f8-4a28-b669-5130627cb3d3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8zXk1x8L1cy7ge8UwVX/L83jPq3uLmMVnaXX38tAKyU=","crlite_enrolled":false,"id":"da1e6bb9-7ead-4982-b7d5-d844af089570","last_modified":1562023884741},{"schema":1562023882482,"derHash":"Wyroq/Xn5WO7w0yXoiVU6COT16zAnBdl5QSuCMFXtaw=","subject":"CN=GeoTrust EV SSL CA - G5,O=GeoTrust Inc.,C=US","subjectDN":"MEcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMSAwHgYDVQQDExdHZW9UcnVzdCBFViBTU0wgQ0EgLSBHNQ==","whitelist":false,"attachment":{"hash":"00efa1f665aec6aaf8d6c9e15cc2e0d9bc291c7fff5e9a1cadfc599437b40520","size":1553,"filename":"LIGFMT2Zjq8CjsXF7zcvXgMX9FcE9iAsUb9iDx11IOI=.pem","location":"security-state-staging/intermediates/43bb4adf-b41c-4f49-bb65-d43dc9c92894.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LIGFMT2Zjq8CjsXF7zcvXgMX9FcE9iAsUb9iDx11IOI=","crlite_enrolled":false,"id":"dd7d6e8c-53bd-4231-
93b3-7b92a36e951f","last_modified":1562023883212},{"schema":1562023881733,"derHash":"YcEGcIOuBE7x1knOWQu/CdnXOeAl2o0ZX3HPqtbrrmk=","subject":"CN=GlobalSign Timestamping CA - R3,OU=Timestamping CA,O=GlobalSign","subjectDN":"MFkxGDAWBgNVBAsTD1RpbWVzdGFtcGluZyBDQTETMBEGA1UEChMKR2xvYmFsU2lnbjEoMCYGA1UEAxMfR2xvYmFsU2lnbiBUaW1lc3RhbXBpbmcgQ0EgLSBSMw==","whitelist":false,"attachment":{"hash":"00f7896c16a21188e61de02a8277feaa52a4b1ce711c256892645e3a7a78fd28","size":1479,"filename":"6p1mBoam4p5pkVPKIbd2jwQWyu5AebEnipX-25eoiRg=.pem","location":"security-state-staging/intermediates/4ad73b23-357c-4ee7-a6d4-d7ae4fc9f8bc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6p1mBoam4p5pkVPKIbd2jwQWyu5AebEnipX+25eoiRg=","crlite_enrolled":false,"id":"ab3640fa-d9d9-4510-b69b-b6ff0623c0c9","last_modified":1562023882474},{"schema":1562023880998,"derHash":"PsOaz5ZsvBfYm/zy4HsVW5sEcWzeynPNhkwm8rL6mnA=","subject":"CN=FujiSSL OV Code Signing CA (SHA2),O=Nijimo K.K.,L=Shibuya-ku,ST=Tokyo,C=JP","subjectDN
":"MHQxCzAJBgNVBAYTAkpQMQ4wDAYDVQQIEwVUb2t5bzETMBEGA1UEBxMKU2hpYnV5YS1rdTEUMBIGA1UEChMLTmlqaW1vIEsuSy4xKjAoBgNVBAMTIUZ1amlTU0wgT1YgQ29kZSBTaWduaW5nIENBIChTSEEyKQ==","whitelist":false,"attachment":{"hash":"c3ee0faf6bb6497407e15442afbf1069e1247899461c8c8cf1fa146a55f2d49e","size":2109,"filename":"H0gCzGcWIGHafa3ydC73l4EDYZ7SkdVJeqxNBsDIwiI=.pem","location":"security-state-staging/intermediates/4d2197a4-c1c3-40c8-883f-68f1ca50c471.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"H0gCzGcWIGHafa3ydC73l4EDYZ7SkdVJeqxNBsDIwiI=","crlite_enrolled":false,"id":"b7cdd2ff-51a0-4519-a7a6-d23a1614880e","last_modified":1562023881725},{"schema":1562023880256,"derHash":"MEFZ/FBwfewu32ZazJeoH0Ojr8ok9K5anyEdl7VATGQ=","subject":"SERIALNUMBER=201402,CN=Government CA,C=BE","subjectDN":"MDYxCzAJBgNVBAYTAkJFMRYwFAYDVQQDEw1Hb3Zlcm5tZW50IENBMQ8wDQYDVQQFEwYyMDE0MDI=","whitelist":false,"attachment":{"hash":"4e4514cdc5a28e277b3f89386cc021171cf1d2b50f73a6c8b73f5f77ca2d5f4d","size":2097,"filename":"xSTwUEQSI
fxcbg4xCuj23Ya2b3QZup1o-rlGYv1hOiQ=.pem","location":"security-state-staging/intermediates/b8a1adb7-8ae3-4bbb-a046-664664ff0771.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xSTwUEQSIfxcbg4xCuj23Ya2b3QZup1o+rlGYv1hOiQ=","crlite_enrolled":false,"id":"843b14ea-2a93-4f34-b1f5-453e4b96af8a","last_modified":1562023880990},{"schema":1562023879494,"derHash":"dFCEYqXCpPJb3LVcslkxCgVrfWI92OVTUfO0Lx0ySGs=","subject":"CN=TrustSign RSA OV CA,O=Ziwit,L=Montpellier,ST=Herault,C=FR","subjectDN":"MGMxCzAJBgNVBAYTAkZSMRAwDgYDVQQIEwdIZXJhdWx0MRQwEgYDVQQHEwtNb250cGVsbGllcjEOMAwGA1UEChMFWml3aXQxHDAaBgNVBAMTE1RydXN0U2lnbiBSU0EgT1YgQ0E=","whitelist":false,"attachment":{"hash":"e4f8e4c2fc7a0eebc4bc552e536ebdd76c0b0553eb218e1bff323f7729969d80","size":2117,"filename":"chB881BfDWAiJ-J0Xbjx2_V5kxVs4F8Bof_rFzQm8kw=.pem","location":"security-state-staging/intermediates/3712897c-ea80-4f7b-a166-8193962ca35d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"chB881BfDWAiJ+J0Xbjx2/V5kxVs4F8Bof/rFzQm8k
w=","crlite_enrolled":true,"id":"23cc5cfc-37c0-40fb-a746-f53e5d03c584","last_modified":1562023880249},{"schema":1562023875682,"derHash":"sJNdwEtOYMDELe9+xXobHY+VjReYjnHMgKjPXmNbpbQ=","subject":"CN=D-TRUST SSL Class 3 CA 1 EV 2009,O=D-Trust GmbH,C=DE","subjectDN":"ME8xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKTAnBgNVBAMMIEQtVFJVU1QgU1NMIENsYXNzIDMgQ0EgMSBFViAyMDA5","whitelist":false,"attachment":{"hash":"a0be570032309c0aac96a0960dbae7ab544e4e0e1377b894c66b261ef8bb0ed5","size":1886,"filename":"lv5BNZ5aWd27ooolULDolFTwIaaWjHvG4yyH3rss4X8=.pem","location":"security-state-staging/intermediates/b08f7a1d-1d7f-4bb2-943d-d367a79b03d1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lv5BNZ5aWd27ooolULDolFTwIaaWjHvG4yyH3rss4X8=","crlite_enrolled":true,"id":"6a2eddcc-3e30-4ca4-9940-4edce439b163","last_modified":1562023876500},{"schema":1562023874934,"derHash":"cjnS93D6/zsc+L4qBewD7eqsBTtVT5DTaSEVW6gFGYE=","subject":"SERIALNUMBER=A82743287,CN=Camerfirma AAPP II - 2014,OU=AC CAMERFI
RMA,O=AC Camerfirma S.A.,L=Madrid (see current address at https://www.camerfirma.com/address),C=ES","subjectDN":"MIHHMQswCQYDVQQGEwJFUzEWMBQGA1UECwwNQUMgQ0FNRVJGSVJNQTEbMBkGA1UECgwSQUMgQ2FtZXJmaXJtYSBTLkEuMRIwEAYDVQQFEwlBODI3NDMyODcxSzBJBgNVBAcMQk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCBodHRwczovL3d3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTEiMCAGA1UEAwwZQ2FtZXJmaXJtYSBBQVBQIElJIC0gMjAxNA==","whitelist":false,"attachment":{"hash":"0a86bcc0922d8e5aedf06717254f6bb2250c686e3881dcb8d9e29b4a3af1d342","size":3015,"filename":"LvwNZPeX39Q9uSy8R8xO89Ml4v-I1qwWGFHanFIzBuE=.pem","location":"security-state-staging/intermediates/3ec75359-9645-4c2e-be4e-fa2cd9e3db8c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LvwNZPeX39Q9uSy8R8xO89Ml4v+I1qwWGFHanFIzBuE=","crlite_enrolled":true,"id":"25860e85-f410-4572-8308-d25aa0771aed","last_modified":1562023875674},{"schema":1562023873412,"derHash":"Xm0viPYX3IuAmu5xJEWkGzzeJq+HSiIancmOodxo49U=","subject":"CN=COMODO RSA Code Signing CA,O=COMODO CA Limited,L=
Salford,ST=Greater Manchester,C=GB","subjectDN":"MH0xCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMSMwIQYDVQQDExpDT01PRE8gUlNBIENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"0689264a1352756f294e4a44cb5daff0f733aa53157d8380f3178406b9372a24","size":2097,"filename":"i8_I5MKP3MSfyB8JAq96_ACK-uEGN_MBobZRhsYHU98=.pem","location":"security-state-staging/intermediates/69c6bb50-ff62-440f-b50b-6465b81903ba.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"i8/I5MKP3MSfyB8JAq96/ACK+uEGN/MBobZRhsYHU98=","crlite_enrolled":true,"id":"fe9571ec-d486-4292-aac0-966f5f1838e7","last_modified":1562023874180},{"schema":1562023872662,"derHash":"j3JA8WCTbx/UBr8CizW11gm2SzvQ4x4TzG3Zq3yhLm8=","subject":"CN=GLOBE SSL SECURE EMAIL CA,O=GLOBE HOSTING CERTIFICATION AUTHORITY,C=RO","subjectDN":"MGExCzAJBgNVBAYTAlJPMS4wLAYDVQQKEyVHTE9CRSBIT1NUSU5HIENFUlRJRklDQVRJT04gQVVUSE9SSVRZMSIwIAYDVQQDExlHTE9CRSBTU0wgU0VDVVJFIEVNQUlM
IENB","whitelist":false,"attachment":{"hash":"1cf3286ce0babb75314968445c3959acec4c2fb01d7342d74be3d80efd77125a","size":1764,"filename":"_eRFHz8wxXnTOa1eOct617RUUVoCS6wHVpWc2LKjvVg=.pem","location":"security-state-staging/intermediates/6ea4ccfe-618c-4d73-a015-3e42e8920b65.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"/eRFHz8wxXnTOa1eOct617RUUVoCS6wHVpWc2LKjvVg=","crlite_enrolled":false,"id":"da8a31fa-d3a3-48b0-bda4-897fb3c4ad78","last_modified":1562023873404},{"schema":1562023869671,"derHash":"+XXzzjruzi6EIWgumY669R3qIzk01r7QmAOW1OnTBfM=","subject":"SERIALNUMBER=201910,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTEw","whitelist":false,"attachment":{"hash":"0fbf6add7408151179d37d5abe61f87abcdd4c99bab406623bb0febcb40eedc5","size":2333,"filename":"jW7wLbKuIJZUC7-BzA_NfMVouvtE6dzFjDevOw1XW6E=.pem","location":"security-state-s
taging/intermediates/77c35205-5000-4e7d-b8c5-c0c77986d218.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jW7wLbKuIJZUC7+BzA/NfMVouvtE6dzFjDevOw1XW6E=","crlite_enrolled":false,"id":"2d54b6a4-823a-43d6-a133-dec0ecd5ae88","last_modified":1562023870410},{"schema":1562023868924,"derHash":"w/kIp5zdgMEwJctTI7ERrHkJnrgBIvmZ27IvGqFmLdw=","subject":"CN=JPRS Domain Validation Authority - G2,O=Japan Registry Services Co.\\, Ltd.,C=JP","subjectDN":"MGkxCzAJBgNVBAYTAkpQMSowKAYDVQQKEyFKYXBhbiBSZWdpc3RyeSBTZXJ2aWNlcyBDby4sIEx0ZC4xLjAsBgNVBAMTJUpQUlMgRG9tYWluIFZhbGlkYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"16d77651077ea51b94f72d3624452d07aaab57511a1fe8d9e10625a11e43a9d7","size":1646,"filename":"p7rWc93y9zFUE3P3-6IYKwtnR1GvtybOoTPGXdSMN6A=.pem","location":"security-state-staging/intermediates/eab9d35c-019e-4c89-b21c-0c8b8c620889.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"p7rWc93y9zFUE3P3+6IYKwtnR1GvtybOoTPGXdSMN6A=","crlite_enrolled":true,"id":"43923
5e2-cd11-4053-986f-d05773a53816","last_modified":1562023869663},{"schema":1562023868186,"derHash":"gmxqphDvGQvi18A+ItAyQFsomATjMZ4jPEw3/78wXxo=","subject":"CN=Allina Health Connect HIE Intermediate CA,OU=Information Services,O=Allina Health System,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRBbGxpbmEgSGVhbHRoIFN5c3RlbTEdMBsGA1UECxMUSW5mb3JtYXRpb24gU2VydmljZXMxMjAwBgNVBAMTKUFsbGluYSBIZWFsdGggQ29ubmVjdCBISUUgSW50ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{"hash":"3fed557524a047ca7ae40592d462cee185e97808c1e5320c1eb52c5a7a4d8298","size":2227,"filename":"kuL4whKnDZSJ1xWg0SN5QgraxcT7tVGkaZ4bhp_RHE0=.pem","location":"security-state-staging/intermediates/e891c8b2-5e6d-48ee-83c8-adb90530ee92.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"kuL4whKnDZSJ1xWg0SN5QgraxcT7tVGkaZ4bhp/RHE0=","crlite_enrolled":false,"id":"d006724b-20f0-4f42-a4d0-36155fc63363","last_modified":1562023868916},{"schema":1562023866678,"derHash":"9s9db/hQ0U2wgsyc98BWvGDjax5U8cyj4kvfOTlIl40=","subject
":"CN=thawte Primary Issuing CA G3,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MGcxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSUwIwYDVQQDExx0aGF3dGUgUHJpbWFyeSBJc3N1aW5nIENBIEcz","whitelist":false,"attachment":{"hash":"b1b90ae5480250915ff746025d104e268a490964caffb8c60f83a5cb64b9d82b","size":1674,"filename":"hMS-T3DAYkVPWmsj2FHZdA-NePI3o2weSSK33d653rE=.pem","location":"security-state-staging/intermediates/231cc96c-85ed-46e6-842c-512d94373031.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"hMS+T3DAYkVPWmsj2FHZdA+NePI3o2weSSK33d653rE=","crlite_enrolled":false,"id":"1d7a0db8-9a29-4c6a-b445-a3a7ae5430b2","last_modified":1562023867410},{"schema":1562023865931,"derHash":"/Zi0DrlKrAl2IhefHjrN2s0/PJUnzWl03DYU0JrTeq4=","subject":"CN=Actalis Domain Validation Server CA G1,O=Actalis S.p.A./03358520967,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGQMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEj
MCEGA1UECgwaQWN0YWxpcyBTLnAuQS4vMDMzNTg1MjA5NjcxLzAtBgNVBAMMJkFjdGFsaXMgRG9tYWluIFZhbGlkYXRpb24gU2VydmVyIENBIEcx","whitelist":false,"attachment":{"hash":"6acbc0db9e14c20b7451ac6a4370d052bc7c3e5998ac0c9ffd0579f1e572ba26","size":2255,"filename":"BJJEqWcyIOaOIv8i-zwBwibnq29_3M0jCAjL4VG3bvU=.pem","location":"security-state-staging/intermediates/7dfd8c65-c838-4d5b-9e31-7514f9077c07.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BJJEqWcyIOaOIv8i+zwBwibnq29/3M0jCAjL4VG3bvU=","crlite_enrolled":true,"id":"8508b975-2be6-4467-9f9f-2771caa111e4","last_modified":1562023866670},{"schema":1562023865184,"derHash":"yW8kxFET/ZGuL55A4QZlO/oP+8+gfiCVJMhE58jaQUg=","subject":"CN=CA Disig R2I2 Certification Service,O=Disig a.s.,L=Bratislava,C=SK","subjectDN":"MGUxCzAJBgNVBAYTAlNLMRMwEQYDVQQHDApCcmF0aXNsYXZhMRMwEQYDVQQKDApEaXNpZyBhLnMuMSwwKgYDVQQDDCNDQSBEaXNpZyBSMkkyIENlcnRpZmljYXRpb24gU2VydmljZQ==","whitelist":false,"attachment":{"hash":"f15a1b6085ecf56bcc317ea1be8002f3c662d6a3a7e4bb6320daa95d1ef
02dee","size":2142,"filename":"v1zylIDkrVcStoBb1ajeFz3xSjTmFzgYYMJDQsfaIxo=.pem","location":"security-state-staging/intermediates/74dc56b9-2278-47d0-9591-8771a0e9d98a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"v1zylIDkrVcStoBb1ajeFz3xSjTmFzgYYMJDQsfaIxo=","crlite_enrolled":true,"id":"bf754a3f-1f3e-4515-933a-fcb359cafde5","last_modified":1562023865923},{"schema":1562023864420,"derHash":"y2/O5BxV4kd03wK+Nd5tQY6U71gR99sTc6+ICc9wfyo=","subject":"CN=E-Tugra Domain Validated CA,OU=E-Tu\u011fra Sertifikasyon Merkezi,O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e.,L=Ankara,C=TR","subjectDN":"MIGvMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMUAwPgYDVQQKDDdFLVR1xJ9yYSBFQkcgQmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXptZXRsZXJpIEEuxZ4uMScwJQYDVQQLDB5FLVR1xJ9yYSBTZXJ0aWZpa2FzeW9uIE1lcmtlemkxJDAiBgNVBAMMG0UtVHVncmEgRG9tYWluIFZhbGlkYXRlZCBDQQ==","whitelist":false,"attachment":{"hash":"c6b2887b29d06c3a32442bacd3087e92f206a5fa698d64deded68c4d8bb5d347","size":2296,"filename":
"DReMCzHTvlRp8z0vjOXH2lx0lpHIz5iXick53RZbRT8=.pem","location":"security-state-staging/intermediates/570f1b75-429e-4c79-b0e9-d7653e227ce7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DReMCzHTvlRp8z0vjOXH2lx0lpHIz5iXick53RZbRT8=","crlite_enrolled":true,"id":"feefbefd-6161-49d5-84fd-5b09c850c80c","last_modified":1562023865176},{"schema":1562023862132,"derHash":"rw42PK5t9Inyl2ooTRLUwzyUsTX6d/ieiSmNdJHpmXQ=","subject":"CN=DigiCert Universal Transition Root,OU=www.digicert.com,O=DigiCert\\, Inc,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1EaWdpQ2VydCwgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBVbml2ZXJzYWwgVHJhbnNpdGlvbiBSb290","whitelist":false,"attachment":{"hash":"44f2ec36fe8de0e388d84737946813eb0731ca6601ec2a951ad5c73c0f6dc2e8","size":1325,"filename":"rFC1-3OK7Wy3gcw1-__3eG93EJrafAiGfASlc_1c-e4=.pem","location":"security-state-staging/intermediates/8af928e7-9473-4306-ab1b-3e6f07091c8e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"r
FC1+3OK7Wy3gcw1+//3eG93EJrafAiGfASlc/1c+e4=","crlite_enrolled":false,"id":"1405f90f-5565-4eaf-b839-4cc432f5d0d6","last_modified":1562023862873},{"schema":1562023861362,"derHash":"xbZ5EGlYFS+D+1iG3cQfB4UZPvZ8aXW+PlCfF/KbeoY=","subject":"CN=GlobalSign R6 Admin CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRHbG9iYWxTaWduIFI2IEFkbWluIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"d411527b2215bfc1772e8bbc2166bf5747830130b17f09875dd24cc7a2e36616","size":2003,"filename":"2TuBICswiXipsvQWl-U2oY732gn0rOk3bqUON3nbD5I=.pem","location":"security-state-staging/intermediates/77f7915f-d31c-40af-b0b8-7aed1e3c67b3.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2TuBICswiXipsvQWl+U2oY732gn0rOk3bqUON3nbD5I=","crlite_enrolled":true,"id":"8056d838-0202-4784-ba86-3b2c1652b669","last_modified":1562023862124},{"schema":1562023860621,"derHash":"77Kj83Jz01iQR5GYJepTN+m5OKjBeLYcGMK0JwuWZaw=","subject":"CN=
DigiCert Federated ID L4 CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0IEZlZGVyYXRlZCBJRCBMNCBDQQ==","whitelist":false,"attachment":{"hash":"e33421e9de9bb46d59d4535e270f3a16d15114db462071faf04cdfb5ded34219","size":1922,"filename":"5fYPs_zqPfuLvwmwbyYHfEa_uzaWa2EbbczMDStZEYY=.pem","location":"security-state-staging/intermediates/bc53ef2a-bdb3-4134-a63e-f5e5443ce163.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5fYPs/zqPfuLvwmwbyYHfEa/uzaWa2EbbczMDStZEYY=","crlite_enrolled":false,"id":"2b3c12c4-e1b4-4036-aea5-c8c07ccc99d3","last_modified":1562023861354},{"schema":1562023858358,"derHash":"GDWw5ILqZVNvwBDkvBPAYPZWaBZfupfi9ULOlspt/vw=","subject":"CN=Entrust Certification Authority - L1F,OU=See www.entrust.net/legal-terms+OU=(c) 2016 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG6MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCw
gSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTYgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MS4wLAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFG","whitelist":false,"attachment":{"hash":"b215df35bd16df20092886331099193a624ea14d00398b12325bb57279cf4181","size":1410,"filename":"45FtWowsHe863G4x3FzC8qT3R9tgrLIVwZGjN5hwd80=.pem","location":"security-state-staging/intermediates/60dd4560-425b-4a39-9729-7bc1fc60adbc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"45FtWowsHe863G4x3FzC8qT3R9tgrLIVwZGjN5hwd80=","crlite_enrolled":true,"id":"7cb091bb-e197-494b-8caa-a6f3725b7737","last_modified":1562023859119},{"schema":1562023856875,"derHash":"M3rFbzn7iHe58FJFVLdV0YNagH/8kFjfxt4bcH9pYSM=","subject":"CN=Certum Class I CA,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MHYxCzAJBgNVBAYTAlBMMSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGjAYBg
NVBAMTEUNlcnR1bSBDbGFzcyBJIENB","whitelist":false,"attachment":{"hash":"1c717a79efa6612fceeb4dd338a92b801131469bafdebec7a6c46a0ecbc22049","size":2414,"filename":"Wr7s1eee1m0JS_6tdr5Yu_rJOpqsjsb8IeNchmSjkL4=.pem","location":"security-state-staging/intermediates/475a2a7a-38fc-478b-ae6a-f0659a08775d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Wr7s1eee1m0JS/6tdr5Yu/rJOpqsjsb8IeNchmSjkL4=","crlite_enrolled":false,"id":"b84bfc47-4590-4d6c-b85e-ceb5465f3c63","last_modified":1562023857605},{"schema":1562023856138,"derHash":"AJhxw6TGBzEeWukvAQlfm/dhALh5SrCppSEOZ5TIYHw=","subject":"CN=Trust Provider B.V. TLS RSA CA G1,OU=Domain Validated SSL,O=Trust Provider B.V.,C=NL","subjectDN":"MHYxCzAJBgNVBAYTAk5MMRwwGgYDVQQKExNUcnVzdCBQcm92aWRlciBCLlYuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEqMCgGA1UEAxMhVHJ1c3QgUHJvdmlkZXIgQi5WLiBUTFMgUlNBIENBIEcx","whitelist":false,"attachment":{"hash":"be93cbc768b2a781054d69b3d1b32596d09aabb573a067ff44e5770bc18fb99e","size":1687,"filename":"DZ2CNIcIqZj3
arOg4dqY2nkxRPJTRypLcTMN_FbGZLM=.pem","location":"security-state-staging/intermediates/00957b9f-f181-49ab-a3e6-7197b2141488.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DZ2CNIcIqZj3arOg4dqY2nkxRPJTRypLcTMN/FbGZLM=","crlite_enrolled":true,"id":"478147bd-3418-4c7f-8860-2be1d4c12427","last_modified":1562023856867},{"schema":1562023855404,"derHash":"B0VB7N+I7Zku1a3j7N3vJ6JrobREgKGVwKja2uJSHY4=","subject":"CN=GeoTrust SSL CA - G3,O=GeoTrust Inc.,C=US","subjectDN":"MEQxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQDExRHZW9UcnVzdCBTU0wgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"4e997aea59ed936c28e58cecab18f43ae0848c11ca0390f85e3cd97d9a16b9ee","size":1553,"filename":"PbNCVpVasMJxps3IqFfLTRKkVnRCLrTlZVc5kspqlkw=.pem","location":"security-state-staging/intermediates/3a8a386b-c548-4e8c-a1a3-cc450d46c6e2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PbNCVpVasMJxps3IqFfLTRKkVnRCLrTlZVc5kspqlkw=","crlite_enrolled":true,"id":"b3409488-e32c-4056-88d1-f4d
89941e37e","last_modified":1562023856130},{"schema":1562023852415,"derHash":"/5EtVAP9psuxpyS+tgtK0bT5vllFJe4fFkiMA5840u4=","subject":"CN=BlackCert\\, Inc. RSA Client Certification Authority,O=BlackCert\\, Inc.,L=Denver,ST=CO,C=US","subjectDN":"MIGCMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPQmxhY2tDZXJ0LCBJbmMuMTswOQYDVQQDEzJCbGFja0NlcnQsIEluYy4gUlNBIENsaWVudCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"820b9d9225f295df2cec72638271e9e4972f857ab19ffd4040452777bda1e8dc","size":2146,"filename":"J0cNZ23ANHAptnJJaXt70Dv2laxN8JC5meZIFs6ch2Q=.pem","location":"security-state-staging/intermediates/decccfcf-7e23-48b9-afd0-c27621db52cd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"J0cNZ23ANHAptnJJaXt70Dv2laxN8JC5meZIFs6ch2Q=","crlite_enrolled":false,"id":"64a81e56-72d4-4533-aad1-0048e8806a7a","last_modified":1562023853161},{"schema":1562023851676,"derHash":"Xxg5DyFJApKglf/zgPLokn3TFZIjp2ET7eNXqisxHB8=","subject":"CN=Gehirn Ma
naged Certification Authority - ECC EV,OU=Controlled by COMODO CA exclusively for Gehirn Inc.,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIHAMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMTwwOgYDVQQLEzNDb250cm9sbGVkIGJ5IENPTU9ETyBDQSBleGNsdXNpdmVseSBmb3IgR2VoaXJuIEluYy4xODA2BgNVBAMTL0dlaGlybiBNYW5hZ2VkIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRUNDIEVW","whitelist":false,"attachment":{"hash":"9430085f782a8e581ee60b50f4aee87fd9ca49475d6c5378b586ff578827bbc5","size":1435,"filename":"qSizb9i49llI7pUZp1-Y6gXcrABhDgM-8a1v9VWvTnY=.pem","location":"security-state-staging/intermediates/52c95b67-44ae-45fe-a516-574047902f4c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qSizb9i49llI7pUZp1+Y6gXcrABhDgM+8a1v9VWvTnY=","crlite_enrolled":false,"id":"2fece5dc-21db-4816-a010-1fbd706af66a","last_modified":1562023852406},{"schema":1562023850204,"derHash":"/yAcoSyHpvDLpkPpq7PJVMkVWt0xObLi6u0RS/n3XTE=","subject":"CN=COMODO RSA Domain Valida
tion Secure Server CA 2,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGSMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE4MDYGA1UEAxMvQ09NT0RPIFJTQSBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENBIDI=","whitelist":false,"attachment":{"hash":"c3af80c298bee7bb78b92a6907c2737f0f2499d7469ab1445b6ac2c3afca282e","size":2154,"filename":"EULHwYvGhknyznoBvyvgbidiBH3JX3eFHHlIO3YK8Ek=.pem","location":"security-state-staging/intermediates/8acfb92a-ce66-4fb5-b98b-4972b2012e02.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EULHwYvGhknyznoBvyvgbidiBH3JX3eFHHlIO3YK8Ek=","crlite_enrolled":true,"id":"d7edf4f6-8ea9-48ae-8d08-69ed5736f29e","last_modified":1562023850930},{"schema":1562023847212,"derHash":"lA0vISoqOcyEvULQ9txPe6TEd+elqZIslrn17BTkpsg=","subject":"SERIALNUMBER=ZZZZZZA2,CN=Siemens Issuing CA EE Auth 2016,OU=Siemens Trust Center,O=Siemens,L=Muenchen,ST=Bayern,C=DE","subjectDN":"MIGfMQswCQY
DVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEQMA4GA1UECgwHU2llbWVuczERMA8GA1UEBRMIWlpaWlpaQTIxHTAbBgNVBAsMFFNpZW1lbnMgVHJ1c3QgQ2VudGVyMSgwJgYDVQQDDB9TaWVtZW5zIElzc3VpbmcgQ0EgRUUgQXV0aCAyMDE2","whitelist":false,"attachment":{"hash":"1bc1c575c0c25eabed479a2d3598ce3f07b4fa37c821f8112919dea06b3659f9","size":2637,"filename":"mK19rDzuSvRGMEDPJLlMOI0yXJx2HMcqf75ficQsHb4=.pem","location":"security-state-staging/intermediates/c93ab0f3-290e-4e26-865c-fad95f2e5e95.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"mK19rDzuSvRGMEDPJLlMOI0yXJx2HMcqf75ficQsHb4=","crlite_enrolled":true,"id":"73d53000-4514-4e59-9781-f064a11afe8f","last_modified":1562023847950},{"schema":1562023846475,"derHash":"pq55WaGVdJyohzhvoESCvRadwRV+MS0wGw1cMz+vKwI=","subject":"CN=IBM New Zealand Limited Public CA,OU=Symantec Trust Network,O=IBM New Zealand Limited,C=NZ","subjectDN":"MHwxCzAJBgNVBAYTAk5aMSAwHgYDVQQKExdJQk0gTmV3IFplYWxhbmQgTGltaXRlZDEfMB0GA1UECxMWU3ltYW50ZWMgVHJ1c3QgTmV0d29yazEqMCgGA1UEAxMh
SUJNIE5ldyBaZWFsYW5kIExpbWl0ZWQgUHVibGljIENB","whitelist":false,"attachment":{"hash":"e26288de5e13511bcb13ccfd1f3dfda1cb52a4b8d5f3b28f5c139bc3c2323669","size":1398,"filename":"Zq0nTmnMxQ4X8EbS5Miz_8_bZskoyMZcrqwzFr53uGY=.pem","location":"security-state-staging/intermediates/bbd5d60b-441a-4059-9ca1-2294ac6e4d52.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Zq0nTmnMxQ4X8EbS5Miz/8/bZskoyMZcrqwzFr53uGY=","crlite_enrolled":false,"id":"69507212-dd76-4998-9e40-0c068a88a0b1","last_modified":1562023847205},{"schema":1562023844992,"derHash":"GlzNcUq9fHr1Kg+pRrycj4aWvL8ifYEzlDDl0zlOzJc=","subject":"CN=TU Ilmenau CA G2,O=Technische Universitaet Ilmenau,C=DE","subjectDN":"MFIxCzAJBgNVBAYTAkRFMSgwJgYDVQQKDB9UZWNobmlzY2hlIFVuaXZlcnNpdGFldCBJbG1lbmF1MRkwFwYDVQQDDBBUVSBJbG1lbmF1IENBIEcy","whitelist":false,"attachment":{"hash":"ac88cae9a73fc870c8732cac7b3ef3c93112a4abcf6b7e4ed2de251558a6cd88","size":1951,"filename":"6SXfWL___HfILksBCAAWXWAQClUVsEeSl6Lg8jmVlWo=.pem","location":"security-stat
e-staging/intermediates/4aa70727-c6f8-46b4-9a57-73a0a9d47ebd.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"6SXfWL///HfILksBCAAWXWAQClUVsEeSl6Lg8jmVlWo=","crlite_enrolled":true,"id":"4a92eec8-9b5a-4058-aff9-c75fd8949758","last_modified":1562023845732},{"schema":1562023844250,"derHash":"2uNDT2lvyfD2UuGypvabXpJz0J9DvTvdRxfWFB+M0sI=","subject":"OU=Public Certification Authority - G2,O=Chunghwa Telecom Co.\\, Ltd.,C=TW","subjectDN":"MGAxCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEsMCoGA1UECwwjUHVibGljIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzI=","whitelist":false,"attachment":{"hash":"d35775690c65ebee8113249b23f19a293655d0ed08e999f64243089ed009db1b","size":2129,"filename":"tnFqrstaexEa6Zz-CVGGozhI8IF1FafM6uzX3zzHrUI=.pem","location":"security-state-staging/intermediates/07e9d719-440e-4db5-9e24-7f15cd5cee54.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tnFqrstaexEa6Zz+CVGGozhI8IF1FafM6uzX3zzHrUI=","crlite_enrolled":true,"id":"9bae286e-930a-4285-8a27-
54c6509f3077","last_modified":1562023844984},{"schema":1562023843492,"derHash":"8Hu73gdvm0DFfMS+/t6Xyh9Tua4UfwNdKEy/U/NDL7g=","subject":"CN=CFCA OV OCA,O=China Financial Certification Authority,C=CN","subjectDN":"MFUxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdDaGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFDASBgNVBAMMC0NGQ0EgT1YgT0NB","whitelist":false,"attachment":{"hash":"bc37658d1568750ae385b92be54ede64df31899d30f67211fd1e015c9dc7803b","size":1963,"filename":"uc0FPx73f1ObHGmGZOcevy371Uo9asVjdabpiS0lKgQ=.pem","location":"security-state-staging/intermediates/8a832b56-3f0a-4b5f-8966-8a1da5242863.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uc0FPx73f1ObHGmGZOcevy371Uo9asVjdabpiS0lKgQ=","crlite_enrolled":true,"id":"b2b776e5-2b2f-4c8e-819d-026b8d3855d2","last_modified":1562023844242},{"schema":1562023842756,"derHash":"OuaZ2U6P69rLhtT5DUCQMzNHjmXgZVxDJFEZfjP6B/I=","subject":"CN=DarkMatter High Assurance CA,O=DarkMatter LLC,C=AE","subjectDN":"ME0xCzAJBgNVBAYTAkFFMRcwFQYDVQQKDA5EYXJr
TWF0dGVyIExMQzElMCMGA1UEAwwcRGFya01hdHRlciBIaWdoIEFzc3VyYW5jZSBDQQ==","whitelist":false,"attachment":{"hash":"29e18c8b9486962fd829de646542f3e70fd375aee342613cc9acf89995787849","size":2467,"filename":"eBpM8ukkUvPuAdDDgaQhTzkEFlw5CtvWH80RJE4Jstw=.pem","location":"security-state-staging/intermediates/11f4327c-4223-417d-ade5-2d4d436b18d2.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eBpM8ukkUvPuAdDDgaQhTzkEFlw5CtvWH80RJE4Jstw=","crlite_enrolled":true,"id":"c5819102-1052-4780-bcdd-3eaa82f68270","last_modified":1562023843484},{"schema":1562023842017,"derHash":"aXDjlmIUF9zuMVqsKLteoxYfF1Ag9/Tpuhfa3ljbsI0=","subject":"CN=WoTrus DV SSL CA,O=WoTrus CA Limited,C=CN","subjectDN":"MEQxCzAJBgNVBAYTAkNOMRowGAYDVQQKDBFXb1RydXMgQ0EgTGltaXRlZDEZMBcGA1UEAwwQV29UcnVzIERWIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"c00640d76f2191d5d2fd5624662ed82ab5430015987a69f81f883cdc4d5a7b43","size":1691,"filename":"qo1QyzYCUCM6TTpkflyWle2ERuNQ8q7_99oCt1RmDgk=.pem","location":"security-state-stagi
ng/intermediates/ac244e93-fe89-4324-8196-d9da2b7bf0b9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qo1QyzYCUCM6TTpkflyWle2ERuNQ8q7/99oCt1RmDgk=","crlite_enrolled":true,"id":"b97451e0-61f4-46a5-908d-5fd947861af6","last_modified":1562023842749},{"schema":1562023841259,"derHash":"tquNsRC19tNf2aa1/3Bx2EJmWBJsQlYpvHzaMTVPTNA=","subject":"CN=FUJIFILM Fnet CA - C,O=FUJIFILM,C=JP","subjectDN":"MD8xCzAJBgNVBAYTAkpQMREwDwYDVQQKEwhGVUpJRklMTTEdMBsGA1UEAxMURlVKSUZJTE0gRm5ldCBDQSAtIEM=","whitelist":false,"attachment":{"hash":"cdd8e18850561e92de8d49cb4cb56e71a16a242cdd3c288f43a03ddfa92e4412","size":1589,"filename":"BF0M6q5HK3EucyPuMYh1-P2tykWlFWnyzlFrzFQqvGQ=.pem","location":"security-state-staging/intermediates/2ec396dc-b563-4cbd-930d-7de56991f018.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BF0M6q5HK3EucyPuMYh1+P2tykWlFWnyzlFrzFQqvGQ=","crlite_enrolled":false,"id":"2fa5f637-6677-49f4-906f-ffde7b0d2f40","last_modified":1562023842008},{"schema":1562023839762,"derHash":"qmojg
KfoJU2tRiCuCJXedAR/M/Umh1jc8nxNKAs4SlA=","subject":"CN=Trust Technologies Global Client CA,OU=Digital Identity and Security,O=Telecom Italia Trust Technologies S.r.l.,C=IT","subjectDN":"MIGWMQswCQYDVQQGEwJJVDExMC8GA1UEChMoVGVsZWNvbSBJdGFsaWEgVHJ1c3QgVGVjaG5vbG9naWVzIFMuci5sLjEmMCQGA1UECxMdRGlnaXRhbCBJZGVudGl0eSBhbmQgU2VjdXJpdHkxLDAqBgNVBAMTI1RydXN0IFRlY2hub2xvZ2llcyBHbG9iYWwgQ2xpZW50IENB","whitelist":false,"attachment":{"hash":"a1ebd3c53dcb40baac891b57ab477f14d4b3afc34c91a62b5b8c580f800493e3","size":1707,"filename":"BbI65NDhxD_m5B-mPY1xvko26icvW3iWYISpR9SvWC8=.pem","location":"security-state-staging/intermediates/115c0963-8f7c-4505-be5a-c66871482aea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BbI65NDhxD/m5B+mPY1xvko26icvW3iWYISpR9SvWC8=","crlite_enrolled":false,"id":"f99c32e0-0924-4435-8934-7158db6251b8","last_modified":1562023840499},{"schema":1562023839017,"derHash":"RVTCEMdRrIIRtuIEa3n2iv/ICCJ0rqSJA4ZgYgxBgt0=","subject":"CN=SECOM Passport for Member PUB CA3,OU=SECOM
Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTM=","whitelist":false,"attachment":{"hash":"96b4ebc82851db1b6b6ae2984c856e75f401999eefa282134fbfd11c3a759e77","size":1581,"filename":"MVOOkY-CSvhzP9Q_l-rKIx-_Qt7f3yC8pbQgH0FQpXQ=.pem","location":"security-state-staging/intermediates/436cd56f-7584-4ad0-a820-72c2b5a9f1f7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MVOOkY+CSvhzP9Q/l+rKIx+/Qt7f3yC8pbQgH0FQpXQ=","crlite_enrolled":false,"id":"5b698c8f-82c1-4637-a282-76a058f19fab","last_modified":1562023839754},{"schema":1562023837538,"derHash":"9unOsfPDaJhR+IYFVTHacu0LxeVtFkkls65/3OhxfXA=","subject":"CN=KeyNet Systems RSA OV CA,O=KeyNet Systems LLC,L=Las Vegas,ST=Nevada,C=US","subjectDN":"MHIxCzAJBgNVBAYTAlVTMQ8wDQYDVQQIEwZOZXZhZGExEjAQBgNVBAcTCUxhcyBWZWdhczEbMB
kGA1UEChMSS2V5TmV0IFN5c3RlbXMgTExDMSEwHwYDVQQDExhLZXlOZXQgU3lzdGVtcyBSU0EgT1YgQ0E=","whitelist":false,"attachment":{"hash":"6834156d59e4d2f03dd0abbc702c34e050c4e798044b5f6fd911b3a37b351e43","size":2138,"filename":"yZ5Axfrz6TT2LCftMDwKgTE4QQ41sZW0CP1oieeztpI=.pem","location":"security-state-staging/intermediates/db3a4237-c968-435f-bb9d-f34cd5995771.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yZ5Axfrz6TT2LCftMDwKgTE4QQ41sZW0CP1oieeztpI=","crlite_enrolled":false,"id":"f5924da9-0730-47bb-8e5a-9c4b647cc493","last_modified":1562023838272},{"schema":1562023834547,"derHash":"tgQCajWQOSq++2sY6BdkU2VhFdKgBg9xPhkan9B2Uyo=","subject":"CN=CompuGroup Medical Certificate Authority,OU=IT,O=Compugroup Medical\\, Inc,C=US","subjectDN":"MG8xCzAJBgNVBAYTAlVTMSAwHgYDVQQKExdDb21wdWdyb3VwIE1lZGljYWwsIEluYzELMAkGA1UECxMCSVQxMTAvBgNVBAMTKENvbXB1R3JvdXAgTWVkaWNhbCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHk=","whitelist":false,"attachment":{"hash":"3a3807e9e6c4883a2bab883da53e548b6e33e80835bb71a8d682deec8a1bc5a
9","size":2207,"filename":"jiFd49hgJ7OqvKchE20pWzOluAN8L1TBxe0YBzN5oPc=.pem","location":"security-state-staging/intermediates/f37211f9-f5d2-4ab2-8d21-68f22e873847.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"jiFd49hgJ7OqvKchE20pWzOluAN8L1TBxe0YBzN5oPc=","crlite_enrolled":false,"id":"7d0b7d8e-c334-41a4-92af-d211360e2f37","last_modified":1562023835290},{"schema":1562023831541,"derHash":"h38kznD0owR+TqcL7BvDG+m2Uzrf86OT/5v7PIEClEY=","subject":"CN=TrustAsia TLS ECC CA G9,OU=Domain Validated SSL,O=TrustAsia Technologies\\, Inc.,C=CN","subjectDN":"MHUxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEgMB4GA1UEAxMXVHJ1c3RBc2lhIFRMUyBFQ0MgQ0EgRzk=","whitelist":false,"attachment":{"hash":"619365f9c59d0f0dcfcb64ba525d68621f75fadebe181e15429e3dc854262b7c","size":1191,"filename":"z_Y0aMrBs7J0RBthUJnRbIqFivDK0vBrLe1Q3OF0GjQ=.pem","location":"security-state-staging/intermediates/94070f05-b053-49e6-8de7-0b2dba8ba010.pem","mime
type":"application/x-pem-file"},"pubKeyHash":"z/Y0aMrBs7J0RBthUJnRbIqFivDK0vBrLe1Q3OF0GjQ=","crlite_enrolled":false,"id":"5ba8fcec-1524-40f5-bf99-0dd3b9641a19","last_modified":1562023832267},{"schema":1562023830806,"derHash":"V0NCratO1573gY6CmQWOHAcawOQx/kIcq7Yt9NTp5MU=","subject":"CN=Atos TrustedRoot Issuing CA for Primetals 2015,O=Atos,C=DE","subjectDN":"MFUxNzA1BgNVBAMMLkF0b3MgVHJ1c3RlZFJvb3QgSXNzdWluZyBDQSBmb3IgUHJpbWV0YWxzIDIwMTUxDTALBgNVBAoMBEF0b3MxCzAJBgNVBAYTAkRF","whitelist":false,"attachment":{"hash":"5ade36d683c37e2eead15d6a475ad0cea29346f577f4600faa9a32397f52bb2c","size":1581,"filename":"Ed79H7X5vQv3PR5-yCPH4ihzJhZFJlA-HsWA-xT7qAI=.pem","location":"security-state-staging/intermediates/8efad479-fc51-47cc-b880-7913a377291d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Ed79H7X5vQv3PR5+yCPH4ihzJhZFJlA+HsWA+xT7qAI=","crlite_enrolled":false,"id":"05eaf66f-1805-4619-9d87-bf6d7bfd6e36","last_modified":1562023831534},{"schema":1562023828546,"derHash":"qClEStL7SAeaWV+72I
xOZY7iCJpeEpuJqqzOhRGY/9c=","subject":"CN=Symantec Class 3 Shared Public Organization CA - SHA1,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGNMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxPjA8BgNVBAMTNVN5bWFudGVjIENsYXNzIDMgU2hhcmVkIFB1YmxpYyBPcmdhbml6YXRpb24gQ0EgLSBTSEEx","whitelist":false,"attachment":{"hash":"021a80512da52a65049663e34f330aa42c4e0cc02a4cee9b9008dadeb792a9d4","size":2194,"filename":"2U0T8GZhpLigHF6ChDBAZpgEBhCK4QPSSnTb09TAv6I=.pem","location":"security-state-staging/intermediates/e26d09a9-b1e2-47b9-b856-b66a98cf8a8f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"2U0T8GZhpLigHF6ChDBAZpgEBhCK4QPSSnTb09TAv6I=","crlite_enrolled":false,"id":"d2495fba-828e-4b4f-bc15-e38ee9827c0a","last_modified":1562023829273},{"schema":1562023826316,"derHash":"Aldk5uGdkLxsxwZpRFWT1T/A2YNve5QoA2IIYQtTmUM=","subject":"CN=TrustSign ECC EV CA,OU=Controlled by Sectigo exclusively for Ziwit,O=Ziwit,L=
Montpellier,ST=Herault,C=FR","subjectDN":"MIGZMQswCQYDVQQGEwJGUjEQMA4GA1UECBMHSGVyYXVsdDEUMBIGA1UEBxMLTW9udHBlbGxpZXIxDjAMBgNVBAoTBVppd2l0MTQwMgYDVQQLEytDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIFppd2l0MRwwGgYDVQQDExNUcnVzdFNpZ24gRUNDIEVWIENB","whitelist":false,"attachment":{"hash":"eb2d6f05c96f188381bd1171d6fa4afb21d12035743de566ce609f7ca5bda596","size":1382,"filename":"JtXGnD_eYf2MNlncNj_WbCi9uD6VYCdIXyT735ieGbg=.pem","location":"security-state-staging/intermediates/1010923c-cbc6-4d1e-8ed2-ffce2c0fa2fb.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JtXGnD/eYf2MNlncNj/WbCi9uD6VYCdIXyT735ieGbg=","crlite_enrolled":false,"id":"04d89624-479a-4a19-a2f7-29d3230db81f","last_modified":1562023827049},{"schema":1562023825546,"derHash":"Yy/Wl7rK8e0jJRfsm3Yit8JeFEiwzGJrMyhnGeNRzoo=","subject":"CN=Giesecke and Devrient CA,OU=Corporate CA,O=Giesecke and Devrient,L=Munich,C=DE","subjectDN":"MHgxCzAJBgNVBAYTAkRFMQ8wDQYDVQQHEwZNdW5pY2gxHjAcBgNVBAoTFUdpZXNlY2tlIGFuZCBEZXZyaWVudDEVMB
MGA1UECxMMQ29ycG9yYXRlIENBMSEwHwYDVQQDExhHaWVzZWNrZSBhbmQgRGV2cmllbnQgQ0E=","whitelist":false,"attachment":{"hash":"e464f73793737913979fd573cde24680aa6beb3d0a1536caf6f84d2dd0928efd","size":2832,"filename":"x-foNQ4x_jlYBHMXga5zVB0UNOMRxxnju5lOjtuhUmo=.pem","location":"security-state-staging/intermediates/3350d069-eb24-4e49-887f-4b126aa2bbcf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"x+foNQ4x/jlYBHMXga5zVB0UNOMRxxnju5lOjtuhUmo=","crlite_enrolled":false,"id":"c48b6fd8-b06a-407e-aa0d-d68bddb6bea1","last_modified":1562023826309},{"schema":1562023823312,"derHash":"+Tc4W4j2WYQJCUB7gOTrJfJcW0rq757ieYgO4L8F7e8=","subject":"CN=Certification Authority,OU=Ministry of Defense,O=Japanese Government,C=JP","subjectDN":"MGsxCzAJBgNVBAYTAkpQMRwwGgYDVQQKExNKYXBhbmVzZSBHb3Zlcm5tZW50MRwwGgYDVQQLExNNaW5pc3RyeSBvZiBEZWZlbnNlMSAwHgYDVQQDExdDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"98d0179cfafdd09af29ed667827cfc04e1bc4ad4d0f7eec2b6d464dd2cf6b378","size":1650,"fi
lename":"KbQxsgiSt363tFvyQehFWksqyFq4Y5_GQHqCruQ7lPA=.pem","location":"security-state-staging/intermediates/313fc711-872f-4c90-bbdc-d86cea66d801.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KbQxsgiSt363tFvyQehFWksqyFq4Y5/GQHqCruQ7lPA=","crlite_enrolled":false,"id":"26fa37cb-aba7-4e95-8382-5b64698bfbee","last_modified":1562023824045},{"schema":1562023819546,"derHash":"u2YddQxTFmGBgHpomP1GQGXOWSmJhq1m2db//LvUc4o=","subject":"CN=NetLock Expressz Eat. (Class C Legal) Tan\u00fas\u00edtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIG1MQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTFDMEEGA1UEAww6TmV0TG9jayBFeHByZXNzeiBFYXQuIChDbGFzcyBDIExlZ2FsKSBUYW7DunPDrXR2w6FueWtpYWTDsw==","whitelist":false,"attachment":{"hash":"cf7c4f8886152f1548287e1f1314115b3db7ea5a596a43daa585a1a0e2f9e79c","size":2198,"f
ilename":"-QUSW1ozNhu9biYeUP4qycv4BLZu3JGAci7jNGIo4PI=.pem","location":"security-state-staging/intermediates/408172d6-6f39-4e21-9ed3-d79b6dd424a4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"+QUSW1ozNhu9biYeUP4qycv4BLZu3JGAci7jNGIo4PI=","crlite_enrolled":false,"id":"9ccfdb3e-9fe2-4d0c-a088-5e0ba1450d2e","last_modified":1562023820285},{"schema":1562023816556,"derHash":"KzDV6RKQY1jJrW+1f9ezaKAaeOOVtOwRZFxbmKCWfeg=","subject":"CN=KDDI Web Communications Certification Authority 3,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MHAxCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMTowOAYDVQQDEzFLRERJIFdlYiBDb21tdW5pY2F0aW9ucyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAz","whitelist":false,"attachment":{"hash":"060dbe29951ae1012870c4ee26bb98926968e0fea64e43fdc0746acf31108a56","size":1687,"filename":"jIWLX2MDYLP12p947FUGxwdJR8AY8yPcYv_TpWUNDQQ=.pem","location":"security-state-staging/intermediates/a8e2cd0b-0920-44ce-9620-e32ff03bd8cd.pem","mimetype":"application/x-pe
m-file"},"pubKeyHash":"jIWLX2MDYLP12p947FUGxwdJR8AY8yPcYv/TpWUNDQQ=","crlite_enrolled":true,"id":"7fe81ac3-e601-4e9c-ac30-be5018f136a5","last_modified":1562023817313},{"schema":1562023815806,"derHash":"c/gpVfkx3GgCvQfF0d+UBBE/PCJPel5yBAvkQuQfMvw=","subject":"OU=Trustis FPS FF Issuing Authority,O=Trustis Limited,C=GB","subjectDN":"MFIxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9UcnVzdGlzIExpbWl0ZWQxKTAnBgNVBAsTIFRydXN0aXMgRlBTIEZGIElzc3VpbmcgQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"25f4051ff993ea304d7f826c473763beaba1048c4d81074983e9c6f45e52dd86","size":1951,"filename":"dcSuTd19rcEF97RhSta5TbUNWKHIOxrSRcDupjDbXZk=.pem","location":"security-state-staging/intermediates/cc33bc05-8ad8-4986-be9b-8acea0f3c2ea.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dcSuTd19rcEF97RhSta5TbUNWKHIOxrSRcDupjDbXZk=","crlite_enrolled":true,"id":"f6fd8e6c-c71d-462f-afa0-7dad266d9359","last_modified":1562023816547},{"schema":1562023814315,"derHash":"eZjyXc21sR/yrpRhu9mNAn3vIuCOW4LkuvvLYLeeziM=","sub
ject":"SERIALNUMBER=201401,CN=Foreigner CA,C=BE","subjectDN":"MDUxCzAJBgNVBAYTAkJFMRUwEwYDVQQDEwxGb3JlaWduZXIgQ0ExDzANBgNVBAUTBjIwMTQwMQ==","whitelist":false,"attachment":{"hash":"b8bed1769b1a6ef9bcc9789fbb84f0881a40be844acb824e8b7f3703ba48b3a3","size":1402,"filename":"fvtABvaKOw2PF9nCsZUaEY9iC6VzN_FdQiP1jFR7a-s=.pem","location":"security-state-staging/intermediates/d5d9747a-bbb1-42d0-8885-da78b8cf26f5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fvtABvaKOw2PF9nCsZUaEY9iC6VzN/FdQiP1jFR7a+s=","crlite_enrolled":false,"id":"dab01327-2eca-4caf-840f-1812c8c9f612","last_modified":1562023815061},{"schema":1562023813549,"derHash":"teRJHPHgoGwZRB+sKVtngiZClgP8xBTGJuIQsu/JXwA=","subject":"CN=Certigna Identity CA,OU=0002 48146308100036,O=DHIMYOTIS,C=FR","subjectDN":"MIGCMQswCQYDVQQGEwJGUjESMBAGA1UECgwJREhJTVlPVElTMRwwGgYDVQQLDBMwMDAyIDQ4MTQ2MzA4MTAwMDM2MSIwIAYDVQRhDBlOVFJGUi0wMDAyIDQ4MTQ2MzA4MTAwMDM2MR0wGwYDVQQDDBRDZXJ0aWduYSBJZGVudGl0eSBDQQ==","whitelist":false,"attachment":{"hash"
:"8fffbc881ae6f4ef224bc772397cce665787accfbbd9be25a200ea93e8a42613","size":2515,"filename":"lwJkDQYtogkGJEFJMX5DjskCXh2W7dNBRH_eJZlWjWo=.pem","location":"security-state-staging/intermediates/56d8fb27-0de0-4b61-ab41-299e1d0c14c9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"lwJkDQYtogkGJEFJMX5DjskCXh2W7dNBRH/eJZlWjWo=","crlite_enrolled":true,"id":"52365c35-c17b-4e16-abb3-36a0687ea4c5","last_modified":1562023814306},{"schema":1562023812811,"derHash":"zhA5EhatpGw3a3MzcVd3p5LY1CK9fF4G/i63laANx+w=","subject":"CN=McAfee Client/Email CA 2,O=McAfee\\, Inc.,L=Santa Clara,ST=CA,C=US","subjectDN":"MGoxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEUMBIGA1UEBxMLU2FudGEgQ2xhcmExFTATBgNVBAoTDE1jQWZlZSwgSW5jLjEhMB8GA1UEAxMYTWNBZmVlIENsaWVudC9FbWFpbCBDQSAy","whitelist":false,"attachment":{"hash":"5bc268b7826fdc5d76c11010496322362492a8274003d0c6398bb7a54848e55a","size":2113,"filename":"TPnIj68eKdodJLOk1P1H6qztrjvIWD_sPyWq4s3vSGk=.pem","location":"security-state-staging/intermediates/1885f863-9e79-45a0
-8f72-a556a1d3cb95.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"TPnIj68eKdodJLOk1P1H6qztrjvIWD/sPyWq4s3vSGk=","crlite_enrolled":false,"id":"55049def-d1d5-49b8-b27e-784120a1d096","last_modified":1562023813542},{"schema":1562023812053,"derHash":"a+fQTiD/wo8ZjKiPwMNkR4T9FWkDvweBMPuWTAJY26A=","subject":"CN=United Parcel Service\\, Inc. RSA OV CA,O=United Parcel Service\\, Inc.,L=Atlanta,ST=GA,C=US","subjectDN":"MIGCMQswCQYDVQQGEwJVUzELMAkGA1UECBMCR0ExEDAOBgNVBAcTB0F0bGFudGExJDAiBgNVBAoTG1VuaXRlZCBQYXJjZWwgU2VydmljZSwgSW5jLjEuMCwGA1UEAxMlVW5pdGVkIFBhcmNlbCBTZXJ2aWNlLCBJbmMuIFJTQSBPViBDQQ==","whitelist":false,"attachment":{"hash":"392ca8f231a1c38f1201cf145dde7d73e1d632d11a6ea3ed9f59160e766185e2","size":2142,"filename":"SwXmbcFTOEV-82sxJhAl0R-uGVTqV9eWCnYAM12xQYs=.pem","location":"security-state-staging/intermediates/f3550763-54ff-4877-a395-498babc118ff.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SwXmbcFTOEV+82sxJhAl0R+uGVTqV9eWCnYAM12xQYs=","crlite_enrolled":false,"
id":"9ef159f4-984f-41ba-974e-093e836bf9ed","last_modified":1562023812803},{"schema":1562023811314,"derHash":"U1cNBeQNxi+d+R0Vr7AVtWqqaAwgzBaObVfZRsnOJoQ=","subject":"CN=QuoVadis Swiss Regulated CA G1,O=QuoVadis Trustlink Schweiz AG,C=CH","subjectDN":"MH4xCzAJBgNVBAYTAkNIMR4wHAYDVQRhDBVOVFJDSC1DSEUtMTEyLjIxMC4zNDkxJjAkBgNVBAoMHVF1b1ZhZGlzIFRydXN0bGluayBTY2h3ZWl6IEFHMScwJQYDVQQDDB5RdW9WYWRpcyBTd2lzcyBSZWd1bGF0ZWQgQ0EgRzE=","whitelist":false,"attachment":{"hash":"22b9742847b9ab6abdad54c699e9692ed9618e8671e4046c99fa2af1b0a3a426","size":2540,"filename":"60b_Hr5z04YiWfrcZlkQZtKfGEaLb5KOd9VjN9uVRks=.pem","location":"security-state-staging/intermediates/f24f46f5-7719-4f04-9db5-6e705c7e8bd8.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"60b/Hr5z04YiWfrcZlkQZtKfGEaLb5KOd9VjN9uVRks=","crlite_enrolled":true,"id":"b33e1999-4a4d-4f36-a44d-123037de65e1","last_modified":1562023812045},{"schema":1562023809819,"derHash":"aQ7yFLwRTvHXJr1+8D5UbNbLe+W8I/rNORJjv/tXlwo=","subject":"CN=cPanel High
Assurance RSA Certification Authority,O=cPanel\\, Inc.,L=Houston,ST=TX,C=US","subjectDN":"MH8xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJUWDEQMA4GA1UEBxMHSG91c3RvbjEVMBMGA1UEChMMY1BhbmVsLCBJbmMuMTowOAYDVQQDEzFjUGFuZWwgSGlnaCBBc3N1cmFuY2UgUlNBIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"515ad74a8a9644ed7d7e651b809dee9f927e0c09028aa60161f5dd268ff3777d","size":6117,"filename":"btauesE0qNPMvYa1wCIsn_jg_om1G73FWer38Ur7kQE=.pem","location":"security-state-staging/intermediates/1a7b6383-a8d8-4f48-b6bb-f5a5cbc9883b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"btauesE0qNPMvYa1wCIsn/jg/om1G73FWer38Ur7kQE=","crlite_enrolled":true,"id":"97a2119a-a356-445c-8eb8-989fd062161b","last_modified":1562023810560},{"schema":1561997070297,"derHash":"gw/yBa5pSFBZw/sjdqfy+e4cKmHeJZ3QnQu2rWn4iDI=","subject":"SERIALNUMBER=Q2826004J,CN=AC Administraci\u00f3n P\u00fablica,OU=CERES,O=FNMT-RCM,C=ES","subjectDN":"MGoxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ0VSRVMxEjAQB
gNVBAUTCVEyODI2MDA0SjEkMCIGA1UEAwwbQUMgQWRtaW5pc3RyYWNpw7NuIFDDumJsaWNh","whitelist":false,"attachment":{"hash":"1a643193c39cf1aa75be19f71a124a43c4ff5403f87361b228eed95bdccebd66","size":2438,"filename":"uoKUEuwkPtDw_4xcvGkwXVXs-8X9iESzjMRl18SDGV0=.pem","location":"security-state-staging/intermediates/b2066e9b-2ccd-4607-b8f6-e71ba0621bca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"uoKUEuwkPtDw/4xcvGkwXVXs+8X9iESzjMRl18SDGV0=","crlite_enrolled":true,"id":"a37e40f6-ffa2-4d26-992d-432521bce7f9","last_modified":1562023808306},{"schema":1559867790401,"derHash":"x0YLDt2htEyOIWSyNOvsw5YqajepNrdKbn1GaCk48IQ=","subject":"CN=DigiCert EV Code Signing CA (SHA2),OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNVBAMTIkRpZ2lDZXJ0IEVWIENvZGUgU2lnbmluZyBDQSAoU0hBMik=","whitelist":false,"attachment":{"hash":"66fbaa9bc2d541bb65b103b1e7beea732f29148f830f01aa655d2aa8a2fe0db4","size":2393,"filen
ame":"pcpyVjsv8yFFdFLHtUAzS7ZJt2VTimUM6OuTLzMOqPM=.pem","location":"security-state-staging/intermediates/07f62659-5a1e-4940-901b-98a97d5a2c45.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pcpyVjsv8yFFdFLHtUAzS7ZJt2VTimUM6OuTLzMOqPM=","crlite_enrolled":true,"id":"aa338e39-dbdc-4d4b-a5fe-9098e2a81760","last_modified":1559867791204},{"schema":1559867775772,"derHash":"2byXP4iQlpbaEIMxl5RMpYrEqIhHd5yRMzdCZxAO7Fg=","subject":"CN=VeriSign Class 3 Public Primary Certification Authority - G5,OU=VeriSign Trust Network+OU=(c) 2006 VeriSign\\, Inc. - For authorized use only,O=VeriSign\\, Inc.,C=US","subjectDN":"MIHKMQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAyMDA2IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHNQ==","whitelist":false,"attachment":{"hash":"8c27ef0472925897276a375939fcfb0a9923a56d945831850f7684af74691c
ed","size":2223,"filename":"JbQbUG5JMJUoI6brnx0x3vZF6jilxsapbXGVfjhN8Fg=.pem","location":"security-state-staging/intermediates/26497f8c-d5cd-43b4-a151-49c3160d6679.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JbQbUG5JMJUoI6brnx0x3vZF6jilxsapbXGVfjhN8Fg=","crlite_enrolled":true,"id":"ca224e06-34d2-4a49-b0ac-eb7f3ad7719a","last_modified":1559867776576},{"schema":1559867708766,"derHash":"WuT3d0JrvFqoWYbKSNMZJwxVNiENyOoaKNUC9rNZUTg=","subject":"CN=Inpriva Direct Federated CA,O=Inpriva Inc,C=US","subjectDN":"MEkxCzAJBgNVBAYTAlVTMRQwEgYDVQQKEwtJbnByaXZhIEluYzEkMCIGA1UEAxMbSW5wcml2YSBEaXJlY3QgRmVkZXJhdGVkIENB","whitelist":false,"attachment":{"hash":"f7ea7da994e7d75e4255611ed437f7a154e0e25a76711ae142337c1b96640839","size":2138,"filename":"EbPRGHnlhhe6ua7F4tDHdk9b21suw0adgBJmLt7jZrk=.pem","location":"security-state-staging/intermediates/352fbe3e-0fa8-4a62-b3f6-bed976b2f7e7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"EbPRGHnlhhe6ua7F4tDHdk9b21suw0adgBJmLt7jZrk=","crlite
_enrolled":false,"id":"343e0db4-ae27-43dc-a56b-2ab4c75e4c98","last_modified":1559867709576},{"schema":1559867705094,"derHash":"U3xcgHI2PhR8hNIdDSJItrmamopDMRZZg17DOSbaKGA=","subject":"CN=thawte DV SSL SHA256 CA,OU=Domain Validated SSL,O=thawte\\, Inc.,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMSAwHgYDVQQDExd0aGF3dGUgRFYgU1NMIFNIQTI1NiBDQQ==","whitelist":false,"attachment":{"hash":"7209c671afa40e770c49789601b57a8d17edff8f2a2e501da1b9703f954ca286","size":1743,"filename":"Rgf6Wnwbdv9nEsdxDeB2gCPXUB6C3Y3dDbU7tDwQ4Ic=.pem","location":"security-state-staging/intermediates/3584c5e9-3feb-421a-8dda-eee21cf023ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Rgf6Wnwbdv9nEsdxDeB2gCPXUB6C3Y3dDbU7tDwQ4Ic=","crlite_enrolled":true,"id":"2ad7d7e1-56fc-4751-a1c3-0c70bb9794d2","last_modified":1559867705882},{"schema":1559867684823,"derHash":"9nIr5ErNrltaizsLSvn0v15fvDlhz1JsvZdp0cbhSFk=","subject":"CN=Sectigo ECC Domain Vali
dation Secure Server CA 2,O=Sectigo Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGRMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxOTA3BgNVBAMTMFNlY3RpZ28gRUNDIERvbWFpbiBWYWxpZGF0aW9uIFNlY3VyZSBTZXJ2ZXIgQ0EgMg==","whitelist":false,"attachment":{"hash":"ad8ca4ef91dbda033c17e8dbf198a410d147227e58e0981a280cafe1867ccc27","size":1329,"filename":"Js263FpzCgFxGxbtSYGcowFcKG4SjKAkg5R8oucb6bk=.pem","location":"security-state-staging/intermediates/42ec9fe3-884f-4466-82dc-da23d6c795ca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Js263FpzCgFxGxbtSYGcowFcKG4SjKAkg5R8oucb6bk=","crlite_enrolled":false,"id":"814ba8eb-43a2-4b3e-9b40-cf9cb1b220b3","last_modified":1559867685643},{"schema":1559867653200,"derHash":"TvqqEECsL0TT3uIG2VIqKI2E7Djd9ZKYySbgL0ydmu8=","subject":"CN=TrustCor Basic Secure Site 2048 (CA1),OU=TrustCor Network,O=TrustCor Systems S. de R.L.,ST=Panama,C=PA","subjectDN":"MIGPMQswCQYDVQQGEwJQQ
TEPMA0GA1UECAwGUGFuYW1hMSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xGTAXBgNVBAsMEFRydXN0Q29yIE5ldHdvcmsxLjAsBgNVBAMMJVRydXN0Q29yIEJhc2ljIFNlY3VyZSBTaXRlIDIwNDggKENBMSk=","whitelist":false,"attachment":{"hash":"da4d2d1acf769f58428741b22d18919f6c746cc708fc5aab39f601e0afbd27f6","size":1869,"filename":"eBBAlQ999Dnt37FkvhzStv4GMlSaWJN88WDxZob6g0Y=.pem","location":"security-state-staging/intermediates/6fc43816-7b30-430f-950f-7f7adea2e3d4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eBBAlQ999Dnt37FkvhzStv4GMlSaWJN88WDxZob6g0Y=","crlite_enrolled":true,"id":"1d9c258c-3953-4116-8203-74400019183e","last_modified":1559867653993},{"schema":1559867619107,"derHash":"ucMHOq10s2iDL1SXlY4nmx0nd8r4hBcTsoqxCkuqCBA=","subject":"CN=DigiCert Document Signing CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGYxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJTAjBgNVBAMTHERpZ2lDZXJ0IERvY3VtZW50IFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"h
ash":"f147cd6f9b30e75b6857e07676867168a2183790b5061a3544fa187e9c41df4e","size":2263,"filename":"d1lOi04HgnJxWnVWramDVXKL69TmdcUrD0KFSyHCY7M=.pem","location":"security-state-staging/intermediates/8b2d6f14-b216-4dec-b3ae-6faa8dc57067.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"d1lOi04HgnJxWnVWramDVXKL69TmdcUrD0KFSyHCY7M=","crlite_enrolled":false,"id":"fcc7df4d-c24e-429a-bdf8-9b73dadce6d1","last_modified":1559867619903},{"schema":1559867617469,"derHash":"e0ZNw4T9saUlwswnntDHz60kvs9yxGp9cJPRV8IXYH4=","subject":"CN=JCAN Public CA1 - G4,OU=JCAN Public CA1 - G4,O=JIPDEC,C=JP","subjectDN":"MFwxCzAJBgNVBAYTAkpQMQ8wDQYDVQQKEwZKSVBERUMxHTAbBgNVBAsTFEpDQU4gUHVibGljIENBMSAtIEc0MR0wGwYDVQQDExRKQ0FOIFB1YmxpYyBDQTEgLSBHNA==","whitelist":false,"attachment":{"hash":"30c35cbb85ffebbe17e8f88a88493ac33ccc34dfc4b87197d625a66ab72e0a78","size":1959,"filename":"3tMZPGsnKWPtXhCY57EqxEpfZ4PjoCUq1LLWjhMG9I8=.pem","location":"security-state-staging/intermediates/8f3170db-bb69-4c39-a416-2be83ba51135.
pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3tMZPGsnKWPtXhCY57EqxEpfZ4PjoCUq1LLWjhMG9I8=","crlite_enrolled":false,"id":"19617ac9-88d7-4f7a-967f-f43305320ae5","last_modified":1559867618287},{"schema":1559867612590,"derHash":"lrL4CiPKaOPLUzisX2izeqwZ4vPAhu79SlNBsR6uUIM=","subject":"SERIALNUMBER=201902,CN=Foreigner CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjEVMBMGA1UEAxMMRm9yZWlnbmVyIENBMQ8wDQYDVQQFEwYyMDE5MDI=","whitelist":false,"attachment":{"hash":"cbd7381d18982609b76855fd51bb7687605553c2c1995b88a61490857c5f2586","size":2337,"filename":"NU7LgS9pQbEK9tCUN7bjxgyP0twtIeis03XF3HkJgko=.pem","location":"security-state-staging/intermediates/fa6b4ebc-c0e3-4078-aec5-1bc0ea106000.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NU7LgS9pQbEK9tCUN7bjxgyP0twtIeis03XF3HkJgko=","crlite_enrolled":false,"id":"06a6e126-9df4-4e5a-a8a0-9e1d0340a8c1","last_modified":1559867613377},{"schem
a":1559867554956,"derHash":"YbrWiZIy9kFd4N6i1DTqTs3A8E7ztpDXyiPSfUa7BRU=","subject":"CN=Digi-Sign CA Digi-Code,O=Digi-Sign Limited,L=Dublin,ST=County Dublin,C=IE","subjectDN":"MHMxCzAJBgNVBAYTAklFMRYwFAYDVQQIEw1Db3VudHkgRHVibGluMQ8wDQYDVQQHEwZEdWJsaW4xGjAYBgNVBAoTEURpZ2ktU2lnbiBMaW1pdGVkMR8wHQYDVQQDExZEaWdpLVNpZ24gQ0EgRGlnaS1Db2Rl","whitelist":false,"attachment":{"hash":"ea5ce76b51e50b3bb54759596ed823dbf7f69f7a27c63ed3c45189716ca0a3a7","size":2109,"filename":"5jhR4E5Gjr25Cvky8Qt5e4EoRerWxLnksVkkE5tu9uo=.pem","location":"security-state-staging/intermediates/63f428cb-1cd8-493c-a2d7-46ccf1d6edcf.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5jhR4E5Gjr25Cvky8Qt5e4EoRerWxLnksVkkE5tu9uo=","crlite_enrolled":false,"id":"6b150bfe-21b9-4e05-a6d9-1ecfadbf8d34","last_modified":1559867555756},{"schema":1559867552520,"derHash":"i8G51978yhzNCbrNqI8ndiCS8e1KNK5eRgK7nMkVxQY=","subject":"CN=GeoTrust DV SSL CA - G4,OU=Domain Validated SSL,O=GeoTrust Inc.,C=US","subjectDN":"MGYxCzAJBgNVBAYTAl
VTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEgMB4GA1UEAxMXR2VvVHJ1c3QgRFYgU1NMIENBIC0gRzQ=","whitelist":false,"attachment":{"hash":"0ab32076e7222afcf3887c9ad0bcc8513aa15c6353f66bfec1ca95e57c3b215f","size":1540,"filename":"47vMpYDaFnUzDRQdNlsSppZ2DbMBfK5uwhBNakbz2n4=.pem","location":"security-state-staging/intermediates/457a8046-b1c4-40d2-866e-01d5c77d468d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"47vMpYDaFnUzDRQdNlsSppZ2DbMBfK5uwhBNakbz2n4=","crlite_enrolled":false,"id":"cd7ae099-d32b-48df-9cc0-5f040e73307f","last_modified":1559867553330},{"schema":1559867489166,"derHash":"J83Wmd4V7oigW7EO2d8vxeTKJbX91CmIljo47IlA1Vo=","subject":"SERIALNUMBER=10810700152,CN=Intesa Sanpaolo Organization Validation CA,OU=WSA Trust Service Provider,O=Intesa Sanpaolo S.p.A.,C=IT","subjectDN":"MIGeMQswCQYDVQQGEwJJVDEfMB0GA1UECgwWSW50ZXNhIFNhbnBhb2xvIFMucC5BLjEjMCEGA1UECwwaV1NBIFRydXN0IFNlcnZpY2UgUHJvdmlkZXIxFDASBgNVBAUTCzEwODEwNzAwMTUyMTMwMQYDVQQDDCpJbnRlc2EgU
2FucGFvbG8gT3JnYW5pemF0aW9uIFZhbGlkYXRpb24gQ0E=","whitelist":false,"attachment":{"hash":"521f6ad8cf11723e0d6a63d6246310675e5590a80d8e44dac4de2ecee9be0a46","size":2958,"filename":"DZug655eTUjrJRXnExUEtKkFrsw9LgUACiAkLII7f2s=.pem","location":"security-state-staging/intermediates/ac398d21-7a9d-46bf-9fd1-971750487c1f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DZug655eTUjrJRXnExUEtKkFrsw9LgUACiAkLII7f2s=","crlite_enrolled":true,"id":"cdcb922e-b3df-4980-a0fd-4e03c4069b46","last_modified":1559867489952},{"schema":1559867484297,"derHash":"zFt6Dl1ncbo0jT12N1LwZnAms1McU5btviStzpMhVyM=","subject":"CN=Entrust Code Signing CA - OVCS1,OU=See www.entrust.net/legal-terms+OU=(c) 2015 Entrust\\, Inc. - for authorized use only,O=Entrust\\, Inc.,C=US","subjectDN":"MIG0MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5jLjEoMCYGA1UECxMfU2VlIHd3dy5lbnRydXN0Lm5ldC9sZWdhbC10ZXJtczE5MDcGA1UECxMwKGMpIDIwMTUgRW50cnVzdCwgSW5jLiAtIGZvciBhdXRob3JpemVkIHVzZSBvbmx5MSgwJgYDVQQDEx9FbnRydXN0IENvZGUgU2lnbmluZ
yBDQSAtIE9WQ1Mx","whitelist":false,"attachment":{"hash":"cfac676380794f70d7d94b6076893414ccd8e2cee343208d8b11e8ba2a0ecc68","size":1833,"filename":"ZKpNzfvWKu9J0YxLZCHZ7ZuSkFgadPTP6L772QDWNs0=.pem","location":"security-state-staging/intermediates/73affa8d-5765-4e6f-9c74-ce08b71fecb1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ZKpNzfvWKu9J0YxLZCHZ7ZuSkFgadPTP6L772QDWNs0=","crlite_enrolled":true,"id":"7894d85e-6a23-4249-bc0a-35e6df37cf77","last_modified":1559867485088},{"schema":1559867458908,"derHash":"pSJvM0dLUzkmZSmLSPTmEpgk6YvU04304x67zxT6M80=","subject":"CN=Cal INDEX CA,OU=Orion Health Direct Secure Messaging,O=California Integrated Data Exchange\\, Inc.,C=US","subjectDN":"MIGHMQswCQYDVQQGEwJVUzEyMDAGA1UEChMpQ2FsaWZvcm5pYSBJbnRlZ3JhdGVkIERhdGEgRXhjaGFuZ2UsIEluYy4xLTArBgNVBAsTJE9yaW9uIEhlYWx0aCBEaXJlY3QgU2VjdXJlIE1lc3NhZ2luZzEVMBMGA1UEAxMMQ2FsIElOREVYIENB","whitelist":false,"attachment":{"hash":"34264be5346b44e8b15bc7137a26395abb6e18063abe3ee90589cd695348b957","size":23
00,"filename":"9GtwDsjMtADoYOwb1RfJrsaX3bJbRRZHhkQATNIEJgs=.pem","location":"security-state-staging/intermediates/04188e49-53db-4da6-8a95-bdc1c98aa34a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"9GtwDsjMtADoYOwb1RfJrsaX3bJbRRZHhkQATNIEJgs=","crlite_enrolled":false,"id":"71693213-c8af-4415-8506-ccbce004ca0d","last_modified":1559867459702},{"schema":1559867457298,"derHash":"0OOap9L6U1gQCKFdglxX0lvUkkeDRDH4oieinCgKHAw=","subject":"CN=Advanced Pseudonymous e-Szigno CA 2009,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGKMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xLzAtBgNVBAMMJkFkdmFuY2VkIFBzZXVkb255bW91cyBlLVN6aWdubyBDQSAyMDA5MR8wHQYJKoZIhvcNAQkBFhBpbmZvQGUtc3ppZ25vLmh1","whitelist":false,"attachment":{"hash":"28e4ef20b258d0cd99dc8ed4bbb7f34994c1e6d05e6098c32453f0ff79651007","size":1776,"filename":"32Xpx0UBvg8xkUwG8UN0XoE1SdCOILkoXK07BeFi7sc=.pem","location":"security-state-staging/intermediates/75abdb27-3ceb-4f0f-8207-29811aa50f7b.pem","mim
etype":"application/x-pem-file"},"pubKeyHash":"32Xpx0UBvg8xkUwG8UN0XoE1SdCOILkoXK07BeFi7sc=","crlite_enrolled":false,"id":"c4f80d62-a618-4681-a631-871006820e7b","last_modified":1559867458091},{"schema":1559867439398,"derHash":"WzErfhG3DQfBTgq5nwjQB0iWYJjFKqhaBqCCK75ZoCw=","subject":"CN=Telia Domain Validation CA v2,O=Telia Finland Oyj,C=FI","subjectDN":"MFExCzAJBgNVBAYTAkZJMRowGAYDVQQKDBFUZWxpYSBGaW5sYW5kIE95ajEmMCQGA1UEAwwdVGVsaWEgRG9tYWluIFZhbGlkYXRpb24gQ0EgdjI=","whitelist":false,"attachment":{"hash":"e50f92a6a1126e1974b698dc74b5324cb74a1bf0a656d8fa21ae230568387c3f","size":2328,"filename":"gB4lDqs5uw6KjxweLgOqWfxNkncJhFCg7rB3hEJ4fvo=.pem","location":"security-state-staging/intermediates/8258df94-c3d1-471b-9fb1-34f2157ac923.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gB4lDqs5uw6KjxweLgOqWfxNkncJhFCg7rB3hEJ4fvo=","crlite_enrolled":true,"id":"52f5910f-78f9-4bc2-b611-367c69c58d8d","last_modified":1559867440189},{"schema":1559867436992,"derHash":"R1EWKfK8O3z4Tv7J8yeYpDr2JS
5VC2yudqOFWHEuN9g=","subject":"CN=DigiCert High Assurance Intermediate CA (SHA2),OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MHgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xNzA1BgNVBAMTLkRpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEludGVybWVkaWF0ZSBDQSAoU0hBMik=","whitelist":false,"attachment":{"hash":"cefb259a9f513a1d4ee0dc081cff6c0050d8cc359ce9c5db5ac79bc7fe7b2b8e","size":2442,"filename":"3tMIKnnueOFiBfBxInvJjOJo4QLv6wmIUMfKgDFmgvs=.pem","location":"security-state-staging/intermediates/8607ec3d-cee7-41e3-9bf2-dce699146209.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"3tMIKnnueOFiBfBxInvJjOJo4QLv6wmIUMfKgDFmgvs=","crlite_enrolled":false,"id":"7eeef585-e240-41af-81bb-b177c89b7b32","last_modified":1559867437775},{"schema":1559867432168,"derHash":"EYj4MclJpi6c1PYONvclRPCvkk3gf52pkuJuRMmW7uA=","subject":"CN=DigiCert High Assurance EV CA-2,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGkxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJ
bmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKDAmBgNVBAMTH0RpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEVWIENBLTI=","whitelist":false,"attachment":{"hash":"b145b565a9904eaa02b6a72abb75193f832000fd38aeafaa780db87365ff2c14","size":2259,"filename":"xIR53dzZj47wArExuiNyNGwPlWUfxINMgw3ePpMqhtM=.pem","location":"security-state-staging/intermediates/3743430c-e300-4654-9602-bfdefe2354b7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"xIR53dzZj47wArExuiNyNGwPlWUfxINMgw3ePpMqhtM=","crlite_enrolled":false,"id":"78f96e89-32b4-40fe-af94-7cb1e85e9957","last_modified":1559867432960},{"schema":1559867405286,"derHash":"QyArnocGWZIfnaJu2p5Hv2mQ2wMaC8CyOvoeeWjtPpk=","subject":"CN=Rochester RHIO Intermediate CA,OU=Rochester RHIO HISP,O=Rochester RHIO,C=US","subjectDN":"MG0xCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5Sb2NoZXN0ZXIgUkhJTzEcMBoGA1UECxMTUm9jaGVzdGVyIFJISU8gSElTUDEnMCUGA1UEAxMeUm9jaGVzdGVyIFJISU8gSW50ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{"hash":"870292cce395c5649329f68463094135ea65bace91ee902f32f937816
f15274d","size":2190,"filename":"OQ7Veo7DPNU0rXuY4y1SzFyKRrZc4T0S8rWwrqbKPVQ=.pem","location":"security-state-staging/intermediates/6691c4dc-77ad-402f-a799-57f985d82c4c.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OQ7Veo7DPNU0rXuY4y1SzFyKRrZc4T0S8rWwrqbKPVQ=","crlite_enrolled":false,"id":"6c3aaa16-0a8b-42c2-9f23-e3180b8d9479","last_modified":1559867406096},{"schema":1559867394636,"derHash":"q0gNj31yChYclnGEPq3qqqvFRH79nvjzRwh02SfMuGE=","subject":"CN=Hewlett Packard Enterprise Collaboration CA G22,OU=Class 2 Managed PKI Individual Subscriber CA,O=Hewlett Packard Enterprise Company,C=US","subjectDN":"MIGrMQswCQYDVQQGEwJVUzErMCkGA1UEChMiSGV3bGV0dCBQYWNrYXJkIEVudGVycHJpc2UgQ29tcGFueTE1MDMGA1UECxMsQ2xhc3MgMiBNYW5hZ2VkIFBLSSBJbmRpdmlkdWFsIFN1YnNjcmliZXIgQ0ExODA2BgNVBAMTL0hld2xldHQgUGFja2FyZCBFbnRlcnByaXNlIENvbGxhYm9yYXRpb24gQ0EgRzIy","whitelist":false,"attachment":{"hash":"4be6df8ee06a84caf5b78062f1a42d87be4b1918f83ac5ea7795f5f93eb25506","size":2081,"filename":"cFn8YV7QznqAeNsQ
c3EMF3ITUowUDECD7omXX1kLh0E=.pem","location":"security-state-staging/intermediates/e4f4b248-458f-4d2e-87fc-272e282734b6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cFn8YV7QznqAeNsQc3EMF3ITUowUDECD7omXX1kLh0E=","crlite_enrolled":false,"id":"2c51902b-f7f1-41a4-bb72-5618f37b1dbf","last_modified":1559867395440},{"schema":1559867368777,"derHash":"hu5KL5MTfKiIdnQHizlAcPGJswSd0tJAU66SkkJUxmg=","subject":"CN=SHECA RSA Time Stamp Authority G1,O=UniTrust,C=CN","subjectDN":"MEwxCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEqMCgGA1UEAwwhU0hFQ0EgUlNBIFRpbWUgU3RhbXAgQXV0aG9yaXR5IEcx","whitelist":false,"attachment":{"hash":"fdc548ebeba5d0a525e38967a6ebcf6047b11e25ea4b1a9b19e976873339445d","size":1991,"filename":"ksHDA5DDxQ9GXo8e3jhl08TIZyMS1ynjRcsLB6SLRH8=.pem","location":"security-state-staging/intermediates/e726ca51-983e-49a8-a4fc-fd76141f0092.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ksHDA5DDxQ9GXo8e3jhl08TIZyMS1ynjRcsLB6SLRH8=","crlite_enrolled":false,"id":"5518046d-1529
-4ce9-94ef-3cf0e4622489","last_modified":1559867369577},{"schema":1559867329817,"derHash":"l9J2xf3y3JRTmrueF7w5lXMM1Rc56ulbD2eznpmQXxE=","subject":"CN=INTEGRIS Direct Intermediate CA,OU=INTEGRIS DIRECT Messaging HISP,O=INTEGRIS,C=US","subjectDN":"MHMxCzAJBgNVBAYTAlVTMREwDwYDVQQKEwhJTlRFR1JJUzEnMCUGA1UECxMeSU5URUdSSVMgRElSRUNUIE1lc3NhZ2luZyBISVNQMSgwJgYDVQQDEx9JTlRFR1JJUyBEaXJlY3QgSW50ZXJtZWRpYXRlIENB","whitelist":false,"attachment":{"hash":"3f8040fd714dac482df84f0d9e6f2c8de009105ca26473f8a3c3447ed69c8154","size":2198,"filename":"VIqwZkD738CQKqG0EwMQGMJq2KPiGa3oaemfSdZMHQU=.pem","location":"security-state-staging/intermediates/bc855478-972a-4e0c-a292-8e721c232afc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"VIqwZkD738CQKqG0EwMQGMJq2KPiGa3oaemfSdZMHQU=","crlite_enrolled":false,"id":"bb561a33-9fcd-4d7a-aa33-413a7f86d171","last_modified":1559867330632},{"schema":1559867302256,"derHash":"BPehwRJgflk5KP7HhsxgIb1uvZUAHxxpO4xLOE6xn2o=","subject":"CN=TrustSign BR Certification Aut
hority (DV) 2,O=TrustSign Certificadora Dig. & Solu\u00e7\u00f5es Seguran\u00e7a da Inf. Ltda.,L=S\u00e3o Jos\u00e9 dos Campos,ST=S\u00e3o Paulo,C=BR","subjectDN":"MIHFMQswCQYDVQQGEwJCUjETMBEGA1UECAwKU8OjbyBQYXVsbzEeMBwGA1UEBwwVU8OjbyBKb3PDqSBkb3MgQ2FtcG9zMUswSQYDVQQKDEJUcnVzdFNpZ24gQ2VydGlmaWNhZG9yYSBEaWcuICYgU29sdcOnw7VlcyBTZWd1cmFuw6dhIGRhIEluZi4gTHRkYS4xNDAyBgNVBAMTK1RydXN0U2lnbiBCUiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAoRFYpIDI=","whitelist":false,"attachment":{"hash":"c0b20fc2f58fbdde9863a50434876955a72362820cb00b3c4b28524916c15ae3","size":2247,"filename":"BWKUCA6WpdRrjXTT5uzsuXJ6Gb81wQGRLjW5bslnp7k=.pem","location":"security-state-staging/intermediates/57ae4bf8-97bc-4406-a91c-b9050a07787e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BWKUCA6WpdRrjXTT5uzsuXJ6Gb81wQGRLjW5bslnp7k=","crlite_enrolled":true,"id":"2e0e37b3-09ed-4d09-9512-e4f61413080c","last_modified":1559867303051},{"schema":1559867247253,"derHash":"t6ivKkpD8KhrFWBN5kYSCcnNdolNiwdIvJnZp5cBO7A=","subject":"CN=th
awte SSL CA - G2,O=thawte\\, Inc.,C=US","subjectDN":"MEExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwx0aGF3dGUsIEluYy4xGzAZBgNVBAMTEnRoYXd0ZSBTU0wgQ0EgLSBHMg==","whitelist":false,"attachment":{"hash":"c454ede86932cb7288384504fd67f0db2369a6367c8a2aa8310001339c7f976a","size":1687,"filename":"aR6DUqN8qK4HQGhBpcDLVnkRAvOHH1behpQUU1Xl7fE=.pem","location":"security-state-staging/intermediates/ae73053a-5449-4b9b-904d-11588789fc75.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"aR6DUqN8qK4HQGhBpcDLVnkRAvOHH1behpQUU1Xl7fE=","crlite_enrolled":true,"id":"a1f2fc0b-8850-43fc-8db2-3f9e546df871","last_modified":1559867248041},{"schema":1559867226214,"derHash":"9kJBjk0MY97Hhclg76aLp0XziFF0TvgfIly4kwUxTVA=","subject":"CN=GlobalSign Timestamping CA - SHA384 - G4,O=GlobalSign nv-sa,C=BE","subjectDN":"MFsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTEwLwYDVQQDEyhHbG9iYWxTaWduIFRpbWVzdGFtcGluZyBDQSAtIFNIQTM4NCAtIEc0","whitelist":false,"attachment":{"hash":"a6ba61ac5f4cc0f9765d5d0f0def7f6c14969571829d
f90422bff82e1730c78b","size":2259,"filename":"bxL2hYprHPwXRcMzTOZMDGOgJ8V36UngBYWMNmpyTUA=.pem","location":"security-state-staging/intermediates/0431a6e2-dcab-4cb9-905c-49a692134a41.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bxL2hYprHPwXRcMzTOZMDGOgJ8V36UngBYWMNmpyTUA=","crlite_enrolled":false,"id":"ef392ac2-e86d-44ea-9ba4-44c1128fd89f","last_modified":1559867227001},{"schema":1559867193847,"derHash":"B0hA46Z9zSYAtrAE4Rh6yAvf6JbK9JPflMw9mjymiBQ=","subject":"CN=TWCA InfoSec User CA,OU=User CA,O=TAIWAN-CA Inc.,C=TW","subjectDN":"MFcxCzAJBgNVBAYTAlRXMRcwFQYDVQQKEw5UQUlXQU4tQ0EgSW5jLjEQMA4GA1UECxMHVXNlciBDQTEdMBsGA1UEAxMUVFdDQSBJbmZvU2VjIFVzZXIgQ0E=","whitelist":false,"attachment":{"hash":"45844bd66bf712d05a01885a5ed8fe191938dc90ceb1c6bb05a732c72ec77002","size":1703,"filename":"ffKwXiiyZfl8ltFLZ9k5urWtoCKNBNklL8cqiHHZUUQ=.pem","location":"security-state-staging/intermediates/c5276bf0-c900-4b43-8dd3-e46484423040.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"ffKwXii
yZfl8ltFLZ9k5urWtoCKNBNklL8cqiHHZUUQ=","crlite_enrolled":false,"id":"c4144e37-5fca-4438-94df-2524de197266","last_modified":1559867194628},{"schema":1559867189046,"derHash":"FVSRh0kDFPUXdkHwvrMmNKoSMOss8sKK2cc5FPsYq6A=","subject":"CN=GlobalSign ECC384 EV SSL CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFMxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSkwJwYDVQQDEyBHbG9iYWxTaWduIEVDQzM4NCBFViBTU0wgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"7761a3e40e444b8b7f00e4e6441a2b460b5e4ae76245aa2678f0336e0e77d193","size":1150,"filename":"MjwImBXGPClGSmdJpCliwmnLG4rkiw8r8qhz04EBHZc=.pem","location":"security-state-staging/intermediates/3237ec26-03ed-426d-8bbb-f3fa278bb2fe.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MjwImBXGPClGSmdJpCliwmnLG4rkiw8r8qhz04EBHZc=","crlite_enrolled":false,"id":"353fb3cf-1f87-44ed-b343-5cb7de582468","last_modified":1559867189833},{"schema":1559867180142,"derHash":"x7V6Avk3rgvj4hAnAwWSydR6cNcBPrOqlNvDt7WrBmI=","subject":"CN=GeoTrust Exte
nded Validation SSL CA - G2,O=GeoTrust Inc.,C=US","subjectDN":"MFgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTEwLwYDVQQDEyhHZW9UcnVzdCBFeHRlbmRlZCBWYWxpZGF0aW9uIFNTTCBDQSAtIEcy","whitelist":false,"attachment":{"hash":"bbcdd9edbc938bb3f1c719ebf87a28c4a802a927298570655845e0d44a1d420f","size":1654,"filename":"Kd5qpztW2P94BhrmO1KRqfDixvm8E3VliyctI5P6oks=.pem","location":"security-state-staging/intermediates/6cd04e7b-d31a-4806-8481-dc02856dc1a7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Kd5qpztW2P94BhrmO1KRqfDixvm8E3VliyctI5P6oks=","crlite_enrolled":false,"id":"44491442-f7d8-45f4-8fa7-6e193c6865c9","last_modified":1559867180939},{"schema":1559867069047,"derHash":"BCEZUzoNtnjQMEJn359fHfGXlR4C9eXbLmCgFlgC4h4=","subject":"CN=TERENA Code Signing CA 2,O=TERENA,L=Amsterdam,ST=Noord-Holland,C=NL","subjectDN":"MG0xCzAJBgNVBAYTAk5MMRYwFAYDVQQIEw1Ob29yZC1Ib2xsYW5kMRIwEAYDVQQHEwlBbXN0ZXJkYW0xDzANBgNVBAoTBlRFUkVOQTEhMB8GA1UEAxMYVEVSRU5BIENvZGUgU2lnbmluZyBDQSAy","whitelist":false,
"attachment":{"hash":"5a4b2dc41430a1c37846768f9ed9f04a7107d359857715f5554bd632169998ee","size":2101,"filename":"G7K9EGaf5R7AraL3XsZSjPH6XvzQTbq95skwp70Gnx4=.pem","location":"security-state-staging/intermediates/c5775c4d-5958-4b2b-83ff-e5631228bb61.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"G7K9EGaf5R7AraL3XsZSjPH6XvzQTbq95skwp70Gnx4=","crlite_enrolled":false,"id":"a366d93c-802b-490b-b7a2-ece154bf2242","last_modified":1559867069830},{"schema":1559867055312,"derHash":"9x2jKCMcMNfjwFnGJhQj0QxP8sjrkuuQk6XZr3Fgq1U=","subject":"CN=Democritus University of Thrace CA R1,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR","subjectDN":"MIGDMQswCQYDVQQGEwJHUjFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxLjAsBgNVBAMTJURlbW9jcml0dXMgVW5pdmVyc2l0eSBvZiBUaHJhY2UgQ0EgUjE=","whitelist":false,"attachment":{"hash":"c43aa72137f3367b18b9c9cdb80ca11d2b08d6aba913f5f508664257f1537f20","size":2536,"filename":"gPfhVfTSpL0dgTS2T3BMSU
xNDeNWIjEDX2cYu3mNZOA=.pem","location":"security-state-staging/intermediates/daaa7c64-7a3f-43f5-96ea-26752c457e1f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"gPfhVfTSpL0dgTS2T3BMSUxNDeNWIjEDX2cYu3mNZOA=","crlite_enrolled":true,"id":"9a504e2c-d2ab-45f2-85da-d3bbb9ae038c","last_modified":1559867056099},{"schema":1559867028528,"derHash":"opwQSxAMOnkzRz5i5L5jcdZToWBNBO2q0CyVgGBlzuM=","subject":"CN=Advanced eIDAS Class2 e-Szigno CA 2016,O=Microsec Ltd.,L=Budapest,C=HU","subjectDN":"MIGHMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xHDAaBgNVBGEME1ZBVEhVLTIzNTg0NDk3LTItNDExLzAtBgNVBAMMJkFkdmFuY2VkIGVJREFTIENsYXNzMiBlLVN6aWdubyBDQSAyMDE2","whitelist":false,"attachment":{"hash":"bcff9a806f140a24db8d80fb25e53c8830ceeeeaad81257e333c72d97c0070d8","size":2597,"filename":"cnBaSiDjhxiyXuUvokBKGtmAg7IeqDnVkrWBvwTBrJU=.pem","location":"security-state-staging/intermediates/9fcf94ff-9fb8-4a24-a227-cc9c133af787.pem","mimetype":"application/x-pem-file"},"pubKeyHa
sh":"cnBaSiDjhxiyXuUvokBKGtmAg7IeqDnVkrWBvwTBrJU=","crlite_enrolled":false,"id":"312fdb56-c1ae-466b-92aa-cce0b03303a3","last_modified":1559867029341},{"schema":1559867026115,"derHash":"TZYa7g0t0K30M7SqwmHOWHFmXPOfyhtIOK5mINpoUEY=","subject":"CN=HARICA Qualified Natural Entities ECC SubCA R2,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR","subjectDN":"MIGdMQswCQYDVQQGEwJHUjEPMA0GA1UEBwwGQXRoZW5zMUQwQgYDVQQKDDtIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENlcnQuIEF1dGhvcml0eTE3MDUGA1UEAwwuSEFSSUNBIFF1YWxpZmllZCBOYXR1cmFsIEVudGl0aWVzIEVDQyBTdWJDQSBSMg==","whitelist":false,"attachment":{"hash":"c5cfa630e56da489c7904c80eb445823e31980801b41160832fdce4a344a2109","size":1418,"filename":"cnhqpBVFEnKDZQ8sXe9NIGzIRWdFqCxZ68tJNsX30s0=.pem","location":"security-state-staging/intermediates/5540f483-9acf-43cb-991a-4867bc3a6abc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"cnhqpBVFEnKDZQ8sXe9NIGzIRWdFqCxZ68tJNsX30s0=","crlite_enrolled":false,"id":
"71f797a0-3380-4843-9f9a-7aba5ecb9a32","last_modified":1559867026905},{"schema":1559866996817,"derHash":"kUfDjgO0bIzl3dsCyqKTLx4WdcCgAVKRODNu0Q2ZmDo=","subject":"CN=COMODO RSA Domain Validation Secure Server CA 3,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGSMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDE4MDYGA1UEAxMvQ09NT0RPIFJTQSBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENBIDM=","whitelist":false,"attachment":{"hash":"3ba031befb11cb2e743b864c59c22110bcfd40f33272315977867894ca4b1fa5","size":2158,"filename":"InQsVwxFxCARGa9oRQJcZVg2VPAXkUYSVkDc3jhuVUM=.pem","location":"security-state-staging/intermediates/ea43abf3-9b67-42be-94ae-a65fa4d80a69.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"InQsVwxFxCARGa9oRQJcZVg2VPAXkUYSVkDc3jhuVUM=","crlite_enrolled":false,"id":"d35555ee-80e5-40db-a2ef-82628963df98","last_modified":1559866997668},{"schema":1559866987126,"derHash":"Ak8WKx0J9
qCGjDi0yLQlfB7qbFoxWJQW1SDPFiSRfrM=","subject":"CN=.NET Foundation Projects Code Signing CA,O=.NET Foundation,C=US","subjectDN":"MFoxCzAJBgNVBAYTAlVTMRgwFgYDVQQKEw8uTkVUIEZvdW5kYXRpb24xMTAvBgNVBAMTKC5ORVQgRm91bmRhdGlvbiBQcm9qZWN0cyBDb2RlIFNpZ25pbmcgQ0E=","whitelist":false,"attachment":{"hash":"fd0dab3f4c0a11b4e19fa79479ab2bfa7f47262b7b73263a5fdd5c73368352dd","size":1642,"filename":"OosLbidguElYKU6vSGfwNmwHxjVMbSr5S9pcbc5E6I0=.pem","location":"security-state-staging/intermediates/61ff11b3-dfff-4ceb-b1d4-cfc06f31e971.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"OosLbidguElYKU6vSGfwNmwHxjVMbSr5S9pcbc5E6I0=","crlite_enrolled":false,"id":"05e74429-ac3c-4843-b05d-b405a1eebf3d","last_modified":1559866987914},{"schema":1559866984705,"derHash":"EdkzDRojmFCN1Q0wlOsosbRJANmSj4wisl73p4G9tAM=","subject":"CN=SecureTrust Organization Validation CA\\, Level 1,O=SecureTrust,L=Chicago,ST=Illinois,C=US","subjectDN":"MIGCMTgwNgYDVQQDEy9TZWN1cmVUcnVzdCBPcmdhbml6YXRpb24gVmFsaWRhdGlvbiBDQSwgTGV
2ZWwgMTEUMBIGA1UEChMLU2VjdXJlVHJ1c3QxEDAOBgNVBAcTB0NoaWNhZ28xETAPBgNVBAgTCElsbGlub2lzMQswCQYDVQQGEwJVUw==","whitelist":false,"attachment":{"hash":"2fbb26d89a7df4499089ee4d2d7d54042f375261e865316c51caa6ea3d367c5f","size":1642,"filename":"naxobvdvRxrUbxomHwj81l5L4m0vZobqUIuxo5hwUQY=.pem","location":"security-state-staging/intermediates/db3a6f95-518e-4c87-a822-e3be67b873a0.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"naxobvdvRxrUbxomHwj81l5L4m0vZobqUIuxo5hwUQY=","crlite_enrolled":false,"id":"0446d2af-40a8-49d1-b3fe-9e83881afe72","last_modified":1559866985488},{"schema":1559866981460,"derHash":"70R46wlMSPuf6soJc2JwSZylLrBOP47kwbLtyZYDmP0=","subject":"CN=AlwaysOnSSL CA - G1,OU=Domain Validated SSL,O=CertCenter AG,C=DE","subjectDN":"MGIxCzAJBgNVBAYTAkRFMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEcMBoGA1UEAxMTQWx3YXlzT25TU0wgQ0EgLSBHMQ==","whitelist":false,"attachment":{"hash":"1040fe16193b9f02fff18e80e4c535f43ee66775f4e96c4201662bd96f48aa79","size
":1882,"filename":"YtTxIzDWQbqdohOzNgNqrqMUDSKPiJZV2NK7zUOskPo=.pem","location":"security-state-staging/intermediates/c40d000c-7f78-42cf-9cf1-975d8ebb0b77.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"YtTxIzDWQbqdohOzNgNqrqMUDSKPiJZV2NK7zUOskPo=","crlite_enrolled":false,"id":"c979bd2e-d167-46e9-8799-de7753f057f0","last_modified":1559866982272},{"schema":1559866974197,"derHash":"W7I4LSDgmuVrTzpRV4OPe65J5C485TSE1m7rLAdH70o=","subject":"CN=GlobalSign Extended Validation CA - SHA256 - G2,O=GlobalSign nv-sa,C=BE","subjectDN":"MGIxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTgwNgYDVQQDEy9HbG9iYWxTaWduIEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgLSBTSEEyNTYgLSBHMg==","whitelist":false,"attachment":{"hash":"3497281a6231e63615ec1be2b86c286a4a28fe2dd8a949446fcda3829105d665","size":1573,"filename":"LvRiGEjRqfzurezaWuj8Wie2gyHMrW5Q06LspMnox7A=.pem","location":"security-state-staging/intermediates/8908cf91-36bb-46af-a060-a0d350cf371a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"
LvRiGEjRqfzurezaWuj8Wie2gyHMrW5Q06LspMnox7A=","crlite_enrolled":false,"id":"422c153b-2663-4f06-8d24-a04ce31d1da3","last_modified":1559866974990},{"schema":1559866972593,"derHash":"3SM1XGHVmXBCMARyl5XK73ev2zl2enlXQNTgTLYVipk=","subject":"CN=SecureTrust Extended Validation CA\\, Level 1,O=SecureTrust,L=Chicago,ST=Illinois,C=US","subjectDN":"MH4xNDAyBgNVBAMTK1NlY3VyZVRydXN0IEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EsIExldmVsIDExFDASBgNVBAoTC1NlY3VyZVRydXN0MRAwDgYDVQQHEwdDaGljYWdvMREwDwYDVQQIEwhJbGxpbm9pczELMAkGA1UEBhMCVVM=","whitelist":false,"attachment":{"hash":"d0105c5ecad0b2ab41480518899e2653e240f06b4a8927ca3d5283c60f63c72e","size":1634,"filename":"DfrsmfuM5QjUozBeqZ75qybJwEDwRIG64DTyM3Kx5Wg=.pem","location":"security-state-staging/intermediates/b46f9bc3-cb55-4302-b52b-e519808c0128.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DfrsmfuM5QjUozBeqZ75qybJwEDwRIG64DTyM3Kx5Wg=","crlite_enrolled":false,"id":"110bade2-6494-40e6-869c-71f45a348718","last_modified":1559866973381},{"schema":15598
66970155,"derHash":"zx6hXcnAWrxyrw5ixI2TQ0rgJxsapDGL41RBJtJLYYQ=","subject":"CN=Certum Extended Validation CA,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGCMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSYwJAYDVQQDEx1DZXJ0dW0gRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"e34ed85d8f7cd8d8572bc535cef388fdeca726b0b1f570db12ecb2c658c3cfaf","size":1727,"filename":"M9jfvUTOEXqakcClNZh0xICWc12quCpR9R8l41FetpI=.pem","location":"security-state-staging/intermediates/aa0b4687-ec1c-483c-878f-31363ebb0565.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"M9jfvUTOEXqakcClNZh0xICWc12quCpR9R8l41FetpI=","crlite_enrolled":false,"id":"52a1bed3-2ae3-4c96-8566-936ef8a25df3","last_modified":1559866970939},{"schema":1559866925659,"derHash":"PUUR0KgKqUmm2ZslOhc0cXl8RFkYemMp5zbDfLVJPkY=","subject":"CN=emSign ECC Device CA - C3,OU=emSign PKI,O=eMudhra Inc,C=US","s
ubjectDN":"MFwxCzAJBgNVBAYTAlVTMRMwEQYDVQQLEwplbVNpZ24gUEtJMRQwEgYDVQQKEwtlTXVkaHJhIEluYzEiMCAGA1UEAxMZZW1TaWduIEVDQyBEZXZpY2UgQ0EgLSBDMw==","whitelist":false,"attachment":{"hash":"01af63ee9e2b37ec4c8865ff21ae0e4cdb096992d7907932ef24acf8eedfdc46","size":1098,"filename":"bpFe8tgoaUQ4GlAAa0fUVmVkLEKAO1rs9xELs8ndVnE=.pem","location":"security-state-staging/intermediates/1d4a8c13-e9b9-41ba-ab80-6e38c400e23f.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"bpFe8tgoaUQ4GlAAa0fUVmVkLEKAO1rs9xELs8ndVnE=","crlite_enrolled":false,"id":"e7091d6a-54ab-4e1a-ace6-0cf33cabe180","last_modified":1559866926464},{"schema":1559866729252,"derHash":"CtanM0paI8mGmA9v7NJQBrVjoLbxvKplwDRbotlpKNM=","subject":"CN=SGN FISGLOBAL PUBLIC CA,OU=Class 2 Managed PKI Individual Subscriber CA,O=Fidelity National Information Services\\, Inc.,C=US","subjectDN":"MIGdMQswCQYDVQQGEwJVUzE1MDMGA1UEChMsRmlkZWxpdHkgTmF0aW9uYWwgSW5mb3JtYXRpb24gU2VydmljZXMsIEluYy4xNTAzBgNVBAsTLENsYXNzIDIgTWFuYWdlZCBQS0kgSW5kaXZpZHVhbCBTdW
JzY3JpYmVyIENBMSAwHgYDVQQDExdTR04gRklTR0xPQkFMIFBVQkxJQyBDQQ==","whitelist":false,"attachment":{"hash":"0abf8df1e687f2286bcfbc92d9bfc4d0d5a85f3deab34f15b0928b32afd8f3c5","size":2064,"filename":"tjF4OWI3FI1EgkyujCVcvW3y0P7Ff83RiLHthEN0kg4=.pem","location":"security-state-staging/intermediates/2f6e2f02-425a-4545-a425-4709a1bf2225.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"tjF4OWI3FI1EgkyujCVcvW3y0P7Ff83RiLHthEN0kg4=","crlite_enrolled":false,"id":"25fce179-8c18-4b02-96e2-d10b51c7103d","last_modified":1559866730048},{"schema":1559866635925,"derHash":"eKle2CGAocM6nzTtt15ndP1Ltzqix8QSFFPdtifbG68=","subject":"CN=GeoTrust Code Signing CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGEdlb1RydXN0IENvZGUgU2lnbmluZyBDQQ==","whitelist":false,"attachment":{"hash":"0ebb76cc437a4875e1965d802d1ef4116c3f64f24eec194afb86a70ad1667e59","size":1869,"filename":"W2U41SQHEtuuIcPdtOMy4IlY
KK8SkwxCszZpM88De1Y=.pem","location":"security-state-staging/intermediates/c65c285e-2d6e-46de-95f1-d00412600e1b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"W2U41SQHEtuuIcPdtOMy4IlYKK8SkwxCszZpM88De1Y=","crlite_enrolled":false,"id":"29f9902f-3092-43f3-9002-cb3213388a72","last_modified":1559866636749},{"schema":1559866615732,"derHash":"0fJlasg4JzmjsIfEerXKuUWjLxYrYUnDCHg8fgaviug=","subject":"CN=TeliaSonera Email CA v4,O=TeliaSonera,C=SE","subjectDN":"MEUxCzAJBgNVBAYTAlNFMRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEgMB4GA1UEAwwXVGVsaWFTb25lcmEgRW1haWwgQ0EgdjQ=","whitelist":false,"attachment":{"hash":"50a551c554a5b7ee132109ae7bf90dc4b34f3526462e40e5e30612608a8a6257","size":2528,"filename":"t0Th3Tcrbh3qBKdPTiMoiViMapdZEGG29yWyhWFOnu8=.pem","location":"security-state-staging/intermediates/a4ac8e27-46ae-4971-8848-eb9b6cfdfa8e.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"t0Th3Tcrbh3qBKdPTiMoiViMapdZEGG29yWyhWFOnu8=","crlite_enrolled":false,"id":"f80be745-7d54-490b-8882-57a4fbcdda3f
","last_modified":1559866616522},{"schema":1559866583346,"derHash":"3GxErIo81cNFEnP0QxUmsu9mYGLudjJYqSj2C9COOf4=","subject":"CN=GlobalSign ECC384 SSL CA - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MFAxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMSYwJAYDVQQDEx1HbG9iYWxTaWduIEVDQzM4NCBTU0wgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"e381db75fa5b615dfa1e287a661d1ef2ff0990637741a94dcc8712b342a4f1a8","size":1146,"filename":"LhF0h0iYJokyuUHZnRxfXT7YSYW3qA1meoPEmJTNIfU=.pem","location":"security-state-staging/intermediates/b8ef29b4-3d13-4379-ac25-f77f41bfebe1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"LhF0h0iYJokyuUHZnRxfXT7YSYW3qA1meoPEmJTNIfU=","crlite_enrolled":false,"id":"21d88639-9ac9-4590-834c-f2ca7f76d6a7","last_modified":1559866584144},{"schema":1559866569358,"derHash":"aZ1Ut0gqXTKTMeoEFcwu3NYP2gHRnnHQVBlrzgZ3c1w=","subject":"CN=GlobalSign Organization Validation CA - SHA256 - G3,O=GlobalSign nv-sa,C=BE","subjectDN":"MGYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExB
HbG9iYWxTaWduIG52LXNhMTwwOgYDVQQDEzNHbG9iYWxTaWduIE9yZ2FuaXphdGlvbiBWYWxpZGF0aW9uIENBIC0gU0hBMjU2IC0gRzM=","whitelist":false,"attachment":{"hash":"2503aecef7682dc86265404bb3212730e5bfa9316dbc827331274d72deee9383","size":1634,"filename":"19e9lxa6ojidVP5dVZZuTl4VDK62HtqIUx9aA4Kc3aw=.pem","location":"security-state-staging/intermediates/d382ff16-ea91-4cd3-a050-90c8d6613505.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"19e9lxa6ojidVP5dVZZuTl4VDK62HtqIUx9aA4Kc3aw=","crlite_enrolled":true,"id":"018fd818-2416-4ecf-bd00-0eae97797a59","last_modified":1559866570149},{"schema":1559866548393,"derHash":"2eDGSrJ6ZNeczPQqNOx1olGn5UM1PBnphKcOsvVGzf8=","subject":"CN=GeoTrust SHA256 SSL CA,O=GeoTrust Inc.,C=US","subjectDN":"MEYxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMR8wHQYDVQQDExZHZW9UcnVzdCBTSEEyNTYgU1NMIENB","whitelist":false,"attachment":{"hash":"41395f394b5b7a1a1e7b37a2168f0c8b0544a4478ce5c008e2b0663391ae26c1","size":1715,"filename":"PuXtzNBJoFElmIPIBszvOE5GbIMi7uXkODinPrxfy5U
=.pem","location":"security-state-staging/intermediates/52586f92-f320-4c76-aaa4-6210328fc3c5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"PuXtzNBJoFElmIPIBszvOE5GbIMi7uXkODinPrxfy5U=","crlite_enrolled":true,"id":"af213913-9965-48ef-8e0e-aed1b914c7c8","last_modified":1559866549194},{"schema":1559866541061,"derHash":"94rk1tq8dGQEkKrjY3V3p3LjzCffMiuWnDCXlVf1kg0=","subject":"SERIALNUMBER=201809,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxODA5","whitelist":false,"attachment":{"hash":"d046cdd580c6ff2d0057e1c6da6748bdb7c41b15d2ac26075435915b2a31a78e","size":2333,"filename":"fjrmK24DSG4huN9mrwx93lBvNqivEcAx2KuPtpwutKQ=.pem","location":"security-state-staging/intermediates/a1046294-5e59-48a1-aff1-9aa052f00742.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"fjrmK24DSG4huN9mrwx93lBvNqivEcAx2KuPtpwutKQ=","crlite_enrolled":fa
lse,"id":"4ab2e721-a85d-44aa-9af2-f0c18f2c3671","last_modified":1559866541896},{"schema":1559866535109,"derHash":"UVh8hnv2bzXs5VSgjgpBwTuLvZtZ0mLSBKcDCaZyvuY=","subject":"CN=QuoVadis QVRCA1G3 SSL ICA,O=QuoVadis Limited,C=BM","subjectDN":"MEwxCzAJBgNVBAYTAkJNMRkwFwYDVQQKDBBRdW9WYWRpcyBMaW1pdGVkMSIwIAYDVQQDDBlRdW9WYWRpcyBRVlJDQTFHMyBTU0wgSUNB","whitelist":false,"attachment":{"hash":"461a8ce2869e6d66752413bc1efe37ae1166b3ddb02f5fd89ee6f16b8ab72340","size":2381,"filename":"qHlqfHd5vL1EFqEmnKfLFiwdoWaMNSlifKAdh9Bgr6g=.pem","location":"security-state-staging/intermediates/796036c7-0924-44a1-8f29-5c91b93cfd73.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qHlqfHd5vL1EFqEmnKfLFiwdoWaMNSlifKAdh9Bgr6g=","crlite_enrolled":true,"id":"8983e814-f99a-4bfe-b043-6a5194bef244","last_modified":1559866535949},{"schema":1559866454656,"derHash":"16BtRir8gNcRg9lKOYstzIJYNefGbaXkVAVXLwSwWl0=","subject":"CN=Actalis Domain Validation Server CA G2,O=Actalis S.p.A./03358520967,L=Ponte San Pietro,ST=Be
rgamo,C=IT","subjectDN":"MIGQMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEjMCEGA1UECgwaQWN0YWxpcyBTLnAuQS4vMDMzNTg1MjA5NjcxLzAtBgNVBAMMJkFjdGFsaXMgRG9tYWluIFZhbGlkYXRpb24gU2VydmVyIENBIEcy","whitelist":false,"attachment":{"hash":"0199eefe8b3b2e90fd118ce82599499a60c5ed728bed0078537ce1245a0de359","size":2320,"filename":"MmeNHRDuDHyx0vNfPkV0ZBTuO5ScnOMjw2AkNv1Fs0c=.pem","location":"security-state-staging/intermediates/9ddd3d98-2360-458a-af24-f87fae1c19de.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"MmeNHRDuDHyx0vNfPkV0ZBTuO5ScnOMjw2AkNv1Fs0c=","crlite_enrolled":true,"id":"fe4ab240-fcee-45f1-b8d0-1b25ebe22007","last_modified":1559866455447},{"schema":1559866449762,"derHash":"vRk8R15OZ5OL7zQSK5i1WKKILn7ZQ2mmywETIO8VYjw=","subject":"CN=AlwaysOnSSL TLS ECC CA G1,OU=Domain Validated SSL,O=CertCenter AG,C=DE","subjectDN":"MGgxCzAJBgNVBAYTAkRFMRYwFAYDVQQKEw1DZXJ0Q2VudGVyIEFHMR0wGwYDVQQLExREb21haW4gVmFsaWRhdGVkIFNTTDEiMCAGA1UEAxMZQWx3YXlzT25TU0wgVExT
IEVDQyBDQSBHMQ==","whitelist":false,"attachment":{"hash":"499064f03f4574c2c427e17330ae382a5058acecff6c7f5b7cbdc36b9933961b","size":1175,"filename":"0W9t3LKpNLN0CxCis6AJXuaxxouX1FIp8IEuXgow59U=.pem","location":"security-state-staging/intermediates/3d30c347-f98b-4558-b56e-baf0b4674e1a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"0W9t3LKpNLN0CxCis6AJXuaxxouX1FIp8IEuXgow59U=","crlite_enrolled":false,"id":"6362cd69-7d81-45cb-a636-f824de74bb36","last_modified":1559866450581},{"schema":1559866428654,"derHash":"81DahhtR0XBWfbzg3nv2a7M0DfxFliFjENRmK8HeoFg=","subject":"CN=CertAssure RSA Code Signing CA,O=CertAssure Inc.,L=San Jose,ST=CA,C=US","subjectDN":"MHAxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTERMA8GA1UEBxMIU2FuIEpvc2UxGDAWBgNVBAoTD0NlcnRBc3N1cmUgSW5jLjEnMCUGA1UEAxMeQ2VydEFzc3VyZSBSU0EgQ29kZSBTaWduaW5nIENB","whitelist":false,"attachment":{"hash":"d08d74bc10327226964aa652c768fce52a6591a2b4862e85a9d609f39ca1042b","size":2105,"filename":"weu0ISLSXTD6wlo6q1m3T52id0ynkK2BySe0U6d6YY0=.pem
","location":"security-state-staging/intermediates/381e9263-c700-4217-b439-38ec819aa09a.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"weu0ISLSXTD6wlo6q1m3T52id0ynkK2BySe0U6d6YY0=","crlite_enrolled":false,"id":"a9831a62-e083-46ea-bf4e-f22664378357","last_modified":1559866429443},{"schema":1559866415399,"derHash":"mUQsj4OjxQkMpQwcCx3ksy7UGP8Kp8MkDpEjAVnz578=","subject":"CN=GDCA TrustAUTH R4 IV SSL CA,O=Global Digital Cybersecurity Authority Co.\\, Ltd.,C=CN","subjectDN":"MG4xCzAJBgNVBAYTAkNOMTkwNwYDVQQKDDBHbG9iYWwgRGlnaXRhbCBDeWJlcnNlY3VyaXR5IEF1dGhvcml0eSBDby4sIEx0ZC4xJDAiBgNVBAMMG0dEQ0EgVHJ1c3RBVVRIIFI0IElWIFNTTCBDQQ==","whitelist":false,"attachment":{"hash":"c9c27dde9ab53fa7533998d21fe575c8d337e49fedce536ed71cebe74d6a82cb","size":2052,"filename":"h9ljtPIsvf1wnqfE3LU5OJSEC20BaNan3CxC8wbqBnI=.pem","location":"security-state-staging/intermediates/b5bec3ea-ca92-493c-af9a-8fe3ef022434.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"h9ljtPIsvf1wnqfE3LU5OJSEC20BaNan3CxC8
wbqBnI=","crlite_enrolled":false,"id":"ae50a764-96b4-4d80-b152-ecb7f2d01363","last_modified":1559866416201},{"schema":1559866398418,"derHash":"Xey2HOk6UEC1tqToEdDlxuDxYW4MiZB3hlAUT7EdJXw=","subject":"CN=YourNet SSL for business,O=FreeBit Co.\\,Ltd.,C=JP","subjectDN":"MEsxCzAJBgNVBAYTAkpQMRkwFwYDVQQKExBGcmVlQml0IENvLixMdGQuMSEwHwYDVQQDExhZb3VyTmV0IFNTTCBmb3IgYnVzaW5lc3M=","whitelist":false,"attachment":{"hash":"9280f070bd7ccd133be66b2af02627550abac320372a484ed962540661f58759","size":1492,"filename":"qnqdzr4K7xpxYew1TDa1ckxZsejonO8Q8GR4TeQmBYw=.pem","location":"security-state-staging/intermediates/0656eeb9-3387-4f80-bf11-98daf8e669e9.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qnqdzr4K7xpxYew1TDa1ckxZsejonO8Q8GR4TeQmBYw=","crlite_enrolled":false,"id":"2df52334-2163-4a35-bb33-5f7f57df2d91","last_modified":1559866399208},{"schema":1559866372407,"derHash":"T9b6UnFX7qRjaJ16TCuTTvIiJ5clQTiT2YRyQshcqd8=","subject":"CN=SHECA RSA Extended Validation Server CA,O=UniTrust,C=CN","sub
jectDN":"MFIxCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEwMC4GA1UEAwwnU0hFQ0EgUlNBIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VydmVyIENB","whitelist":false,"attachment":{"hash":"b58523d4da82d8049eb9b4115799b963aab05526caa6f6e0040ca88e05ad2be8","size":2012,"filename":"dSFJXz4vHOWleaG1OgAbLF3rUHbSM2AR6Viu9xdSol8=.pem","location":"security-state-staging/intermediates/ca826164-049f-4c05-91f0-9b1e9243437b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"dSFJXz4vHOWleaG1OgAbLF3rUHbSM2AR6Viu9xdSol8=","crlite_enrolled":true,"id":"346f5cdb-b18d-404b-86c1-ae1ab80747f8","last_modified":1559866373200},{"schema":1559866343126,"derHash":"FUxDPEkZKcXvaG6DjjI2ZKAOag2CLMyVj7TasD5JoI8=","subject":"CN=DigiCert SHA2 Secure Server CA,O=DigiCert Inc,C=US","subjectDN":"ME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"6edb4a81fe4f8f9a18de8035d87dad2c701e2cc7fc5ce3832cbdce4468bd31f3","size":1646,"filename":"5kJvNEMw
0KjrCAu7eXY5HZdvyCS13BbA0VJG1RSP91w=.pem","location":"security-state-staging/intermediates/2dade068-5ff0-4ce7-9d2b-b1fca06fd9e1.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"5kJvNEMw0KjrCAu7eXY5HZdvyCS13BbA0VJG1RSP91w=","crlite_enrolled":true,"id":"e8a303db-012e-4b10-88d9-69dca19e2f97","last_modified":1559866343924},{"schema":1559866340662,"derHash":"bQvW4awOw5juhTeQbZjzePx6tJweKWryMzdPpaJx2zQ=","subject":"CN=Symantec Class 3 Admin Intermediate Certificate Authority,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MIGRMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxQjBABgNVBAMTOVN5bWFudGVjIENsYXNzIDMgQWRtaW4gSW50ZXJtZWRpYXRlIENlcnRpZmljYXRlIEF1dGhvcml0eQ==","whitelist":false,"attachment":{"hash":"cb4c35653304cbbfbea275d095cbd84d649442d21ab4c00b648177f91feb4d65","size":2194,"filename":"DIqmg6q0EEYaGDu2kzw3JDDctRJMyX5PRKKp2nBoL5I=.pem","location":"security-state-staging/intermediates/353215d3-c3a1-49c
1-ba8b-cb6140386874.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"DIqmg6q0EEYaGDu2kzw3JDDctRJMyX5PRKKp2nBoL5I=","crlite_enrolled":false,"id":"366de8fc-cf57-431a-ba80-da16e22073d1","last_modified":1559866341455},{"schema":1559866293718,"derHash":"7gIE40wLTUXMg5zzuQFc7slGo2Yc8r8QlyM5Qmxg6Ak=","subject":"CN=SECOM Passport for Member PUB CA10,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP","subjectDN":"MIGNMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSswKQYDVQQDEyJTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTEw","whitelist":false,"attachment":{"hash":"d95bc4e2ec72de93175628906114d8bd0f3ff59ffce75734d73b793fa608330a","size":1727,"filename":"XDUzAHVq4IiaHQw3QSgU1eRxAmLfVjwgS3LDYc5B1Rs=.pem","location":"security-state-staging/intermediates/2f5b94f0-6f0d-4e3d-b050-b1bff1646988.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"XDUzAHVq4IiaHQw3QSgU1eRxAmLfVjwgS3LDYc5B1
Rs=","crlite_enrolled":false,"id":"fdb09588-35e0-4e80-b131-9a36bdcb8201","last_modified":1559866294504},{"schema":1559866270982,"derHash":"EoYXPm8BAve90ywvgwkQlTSJvyLBYpXYTdkKPaE3Fko=","subject":"CN=COMODO SHA-2 Pro Series Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB","subjectDN":"MIGLMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDExMC8GA1UEAxMoQ09NT0RPIFNIQS0yIFBybyBTZXJpZXMgU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"854a130598ea11463a70a791d66099b64bccbb45f4ed76af30c587e4646f7d96","size":1707,"filename":"4gSqIYIbYqiQ1NfKCAfvkzCzqmOipsGL9CFJJdH7Ms4=.pem","location":"security-state-staging/intermediates/9b47dd14-9620-411c-bf2a-407266084564.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"4gSqIYIbYqiQ1NfKCAfvkzCzqmOipsGL9CFJJdH7Ms4=","crlite_enrolled":true,"id":"6f99857c-e0a6-49e1-9764-895a594d08cd","last_modified":1559866271774},{"schema":1559866232465,"d
erHash":"TApYiMNKoBt0X066JoaWssyz9KoxyO3LOv6PqEy3TME=","subject":"CN=iShare Medical Direct Intermediate CA,O=iShare Medical,C=US","subjectDN":"MFYxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5pU2hhcmUgTWVkaWNhbDEuMCwGA1UEAxMlaVNoYXJlIE1lZGljYWwgRGlyZWN0IEludGVybWVkaWF0ZSBDQQ==","whitelist":false,"attachment":{"hash":"16347dce0fe6fabddcac6b1ee3422faca2c7a11714ff833f84a2a28c0cd1e616","size":2166,"filename":"yCqFvFSoWlrlSkhYTl28RzjG38okJneuXy8b6cUfEV0=.pem","location":"security-state-staging/intermediates/b7278ac4-4783-40b3-8817-affe98a900a5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"yCqFvFSoWlrlSkhYTl28RzjG38okJneuXy8b6cUfEV0=","crlite_enrolled":false,"id":"290cdd36-d7c6-4c5b-aaee-b3f6b84c3e6b","last_modified":1559866233281},{"schema":1559866219394,"derHash":"qMCpKw2Q6CFszKNMGhaDs060dY1GDIksqMUSqKKswI8=","subject":"CN=Hostpoint RSA CA,OU=Domain Validated SSL,O=Hostpoint AG,C=CH","subjectDN":"MF4xCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxIb3N0cG9pbnQgQUcxHTAbBgNVBAsTFERvbWFpbiBWYWxpZGF0ZWQgU1NMMRk
wFwYDVQQDExBIb3N0cG9pbnQgUlNBIENB","whitelist":false,"attachment":{"hash":"bd0b77e1ad7c766478cf2792f2390fc6dbc81b708a0c71c36c53e208635a60a4","size":1670,"filename":"KdhTtQeOQpuAPS1eltTuWsDPY1eewAMFmlvc5UIbk4k=.pem","location":"security-state-staging/intermediates/b3c11b52-e6f8-45e1-ae00-9da7044abefc.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KdhTtQeOQpuAPS1eltTuWsDPY1eewAMFmlvc5UIbk4k=","crlite_enrolled":false,"id":"62c93f86-ae45-4b99-a827-2170f2416255","last_modified":1559866220196},{"schema":1559866176457,"derHash":"GUzCtbBkk8DvCwqfqDdvlYviQqJ0ral0rLyRAjNoeNw=","subject":"CN=DOMENY SSL DV Certification Authority,O=DOMENY.PL sp. z o.o,L=Krak\u00f3w,ST=Ma\u0142opolskie,C=PL","subjectDN":"MIGEMQswCQYDVQQGEwJQTDEVMBMGA1UECAwMTWHFgm9wb2xza2llMRAwDgYDVQQHDAdLcmFrw7N3MRwwGgYDVQQKExNET01FTlkuUEwgc3AuIHogby5vMS4wLAYDVQQDEyVET01FTlkgU1NMIERWIENlcnRpZmljYXRpb24gQXV0aG9yaXR5","whitelist":false,"attachment":{"hash":"4ae7713a7c33e45405293b35aa867f795213ba9becc489f35146c71f51673521"
,"size":2154,"filename":"c4Z4xm0MVOlxzaOy4OXC86lTgsofdZML4CYOmaSpWYM=.pem","location":"security-state-staging/intermediates/8ecc0bf4-31de-41ef-b195-d3d4e799c302.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"c4Z4xm0MVOlxzaOy4OXC86lTgsofdZML4CYOmaSpWYM=","crlite_enrolled":true,"id":"d5ea596c-6fe9-45d3-84b0-0f1eb9ea2b08","last_modified":1559866177285},{"schema":1559866168360,"derHash":"znrcGXdXpS5pogFMzgPZgGMlAnZHQsKSPXOAVo4hAKY=","subject":"CN=E-Tugra Extended Validated CA,OU=E-Tu\u011fra Sertifikasyon Merkezi,O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e.,L=Ankara,C=TR","subjectDN":"MIGxMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMUAwPgYDVQQKDDdFLVR1xJ9yYSBFQkcgQmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXptZXRsZXJpIEEuxZ4uMScwJQYDVQQLDB5FLVR1xJ9yYSBTZXJ0aWZpa2FzeW9uIE1lcmtlemkxJjAkBgNVBAMMHUUtVHVncmEgRXh0ZW5kZWQgVmFsaWRhdGVkIENB","whitelist":false,"attachment":{"hash":"12ff7eb3fc7ad0d030464cfca8808d4239fab2f60c03f47a3f76ec1c962d10f8","size":2296,"filename":"Cbs
SUO015uoyaPW3UoozNFDyIZuKJooRSCguLZLEHjg=.pem","location":"security-state-staging/intermediates/b4924736-081c-4006-83d9-18747abe70b7.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"CbsSUO015uoyaPW3UoozNFDyIZuKJooRSCguLZLEHjg=","crlite_enrolled":true,"id":"7c935540-4c03-4352-b768-16756b45aed8","last_modified":1559866169149},{"schema":1559866096673,"derHash":"pUK8oJxeRXnGGXdK5ZCCvOD4bSYcWnpaD2IXwQJ56nw=","subject":"CN=DigiCert SHA2 Assured ID CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJRCBDQQ==","whitelist":false,"attachment":{"hash":"4e3c1ebfbeec02bf731c95b85a98fa732e6965367dac4484c3c1874f56b577ca","size":2247,"filename":"KFZYqX5VzrLyLTGNVQGlkHRFKrLkZ3UddPIGfeE7tKI=.pem","location":"security-state-staging/intermediates/73e8da81-d69e-4de2-ac9b-c40d075bd421.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"KFZYqX5VzrLyLTGNVQGlkHR
FKrLkZ3UddPIGfeE7tKI=","crlite_enrolled":true,"id":"f2f88f3f-b9b1-45b6-a155-beb11a1c37aa","last_modified":1559866097495},{"schema":1559866042836,"derHash":"NlH5s2odqYMgDG7k787PpN78BZRmaJ2qGm22hKVMnns=","subject":"CN=Actalis Organization Validated Server CA G1,O=Actalis S.p.A./03358520967,L=Ponte San Pietro,ST=Bergamo,C=IT","subjectDN":"MIGVMQswCQYDVQQGEwJJVDEQMA4GA1UECAwHQmVyZ2FtbzEZMBcGA1UEBwwQUG9udGUgU2FuIFBpZXRybzEjMCEGA1UECgwaQWN0YWxpcyBTLnAuQS4vMDMzNTg1MjA5NjcxNDAyBgNVBAMMK0FjdGFsaXMgT3JnYW5pemF0aW9uIFZhbGlkYXRlZCBTZXJ2ZXIgQ0EgRzE=","whitelist":false,"attachment":{"hash":"6abedb9881ea66af627c7960fe41956b260b02726a2719d0ac283185d97e16cf","size":2263,"filename":"pmKuxMFaLv7ve9PLjGilItvtdgTK9uISTaDGBZSO3kQ=.pem","location":"security-state-staging/intermediates/a33bcad3-47f9-4423-ab8e-92ad859cc5ec.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"pmKuxMFaLv7ve9PLjGilItvtdgTK9uISTaDGBZSO3kQ=","crlite_enrolled":true,"id":"041225c6-347b-421b-89b7-20269162c1f4","last_modified":15
59866043641},{"schema":1559866037153,"derHash":"Pmk2hUsVb7sV7phEye47v5L4SSiXp3L5CSxS7ShQfr8=","subject":"SERIALNUMBER=201913,CN=Citizen CA,O=Certipost N.V./S.A.,L=Brussels,C=BE","subjectDN":"MGQxCzAJBgNVBAYTAkJFMREwDwYDVQQHEwhCcnVzc2VsczEcMBoGA1UEChMTQ2VydGlwb3N0IE4uVi4vUy5BLjETMBEGA1UEAxMKQ2l0aXplbiBDQTEPMA0GA1UEBRMGMjAxOTEz","whitelist":false,"attachment":{"hash":"14ef386b3d7bd03ea81423a233913c96bfeca45ba0cefee666bff7c27ba50b1e","size":2333,"filename":"Jsk0sModzjZIxYKO3IRJSdYqtPzqR6bbb8LX6PhSPwY=.pem","location":"security-state-staging/intermediates/2f6d5ee7-2efc-4fd2-aa08-a955d2c93f94.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"Jsk0sModzjZIxYKO3IRJSdYqtPzqR6bbb8LX6PhSPwY=","crlite_enrolled":false,"id":"e795ec9e-893e-4bd9-9c1a-075665a007e8","last_modified":1559866037946},{"schema":1559866019917,"derHash":"ACfIUuagp06thEtfrCQ0zCSWaFPITOYyEkaIgbYWZl0=","subject":"CN=SMBC Certificate Authority CA2,OU=SMBC Authority,O=Sumitomo Mitsui Banking Corporation,C=JP","subjectDN":"
MH0xCzAJBgNVBAYTAkpQMSwwKgYDVQQKEyNTdW1pdG9tbyBNaXRzdWkgQmFua2luZyBDb3Jwb3JhdGlvbjEXMBUGA1UECxMOU01CQyBBdXRob3JpdHkxJzAlBgNVBAMTHlNNQkMgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IENBMg==","whitelist":false,"attachment":{"hash":"a2117111540332765fe1764c3bf9435092c6e93c8fe8ee65054259b3a4832ed3","size":1674,"filename":"8DUaRM2LbmS8cveWB1rUODjdayFFeT7IHpAqhCLVI4c=.pem","location":"security-state-staging/intermediates/af2004b4-f64d-4c8e-9247-07ccfeacefb4.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"8DUaRM2LbmS8cveWB1rUODjdayFFeT7IHpAqhCLVI4c=","crlite_enrolled":false,"id":"654df36c-da2e-4178-82ee-f75edff4129f","last_modified":1559866020722},{"schema":1559866009149,"derHash":"F1LCGdAzcBm8jBk0fJ8rvjcIH6bMGxsJoDdY5gwwfgk=","subject":"CN=Gehirn Managed Certification Authority - RSA DV,O=Gehirn Inc.,L=Chiyoda-ku,ST=Tokyo,C=JP","subjectDN":"MIGCMQswCQYDVQQGEwJKUDEOMAwGA1UECBMFVG9reW8xEzARBgNVBAcTCkNoaXlvZGEta3UxFDASBgNVBAoTC0dlaGlybiBJbmMuMTgwNgYDVQQDEy9HZWhpcm4gTWFuYWdlZCBDZXJ0aWZpY2F0aW9uIEF1dG
hvcml0eSAtIFJTQSBEVg==","whitelist":false,"attachment":{"hash":"2a599a3d41037f018b5b829d6ebee32d6e3022d7811d0629fc6a1ab8cedfbbce","size":2158,"filename":"SWuXVKtSHOw5ZPbQM2Hw49GYwfpJkXf6azkkNwpZ9TQ=.pem","location":"security-state-staging/intermediates/d88294ca-5505-4a98-9cda-33ec41b77048.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"SWuXVKtSHOw5ZPbQM2Hw49GYwfpJkXf6azkkNwpZ9TQ=","crlite_enrolled":true,"id":"c2f8d5bf-b34e-4d22-b008-bc3dd0b9a6a4","last_modified":1559866009943},{"schema":1559865975116,"derHash":"ayP62JAYDDN7hkFV2uDem62e8L2njREvLL3D0CrReVY=","subject":"CN=NetLock \u00dczleti (Class B) Tan\u00fas\u00edtv\u00e1nykiad\u00f3,OU=Tan\u00fas\u00edtv\u00e1nykiad\u00f3k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU","subjectDN":"MIGpMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE3MDUGA1UEAwwuTmV0TG9jayDDnHpsZXRpIChDbGFzcyBCKSBUYW7DunPDrXR2w6FueWtpYWTDsw==",
"whitelist":false,"attachment":{"hash":"573f7ca4199a4ab7b67cf4b5b1c8e25a89da7c93d3296ece5e8301e5bf64c39b","size":2182,"filename":"1YROuDznuNvrat3sL9gwGR124PRLocGQQWd6IoM50Ls=.pem","location":"security-state-staging/intermediates/5ae11eb3-59e2-4f2f-a3ad-09d610869295.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"1YROuDznuNvrat3sL9gwGR124PRLocGQQWd6IoM50Ls=","crlite_enrolled":true,"id":"1a8145a6-66a3-4c40-914b-e027086ea091","last_modified":1559865975919},{"schema":1559865954402,"derHash":"bGniAWVkQOuYzQh1dkoe0ZAV7YxEJ2Aaypxor6iXOVk=","subject":"CN=Abbott Laboratories Secure Server CA,O=Abbott Laboratories Inc.,C=US","subjectDN":"MF8xCzAJBgNVBAYTAlVTMSEwHwYDVQQKExhBYmJvdHQgTGFib3JhdG9yaWVzIEluYy4xLTArBgNVBAMTJEFiYm90dCBMYWJvcmF0b3JpZXMgU2VjdXJlIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"eff2021a84dc350c344035f14d9ace98bd2aff4df26812ac44f35532c31dc995","size":1670,"filename":"WLek4rSUF1hqMCGoR58aNhDKwFpMOcmhWVSaGRqkM5Y=.pem","location":"security-state-staging/inte
rmediates/fd41a272-a56d-4cc1-8ab0-48e779b64f93.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"WLek4rSUF1hqMCGoR58aNhDKwFpMOcmhWVSaGRqkM5Y=","crlite_enrolled":false,"id":"dd1862ea-9ff3-42ff-907f-f83e355dd278","last_modified":1559865955200},{"schema":1559865922818,"derHash":"eBbHsFZrRng7HBXYoo2LDSDP6yCz0T95RG4VxKUckd8=","subject":"CN=Certum Extended Validation CA,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL","subjectDN":"MIGCMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSYwJAYDVQQDEx1DZXJ0dW0gRXh0ZW5kZWQgVmFsaWRhdGlvbiBDQQ==","whitelist":false,"attachment":{"hash":"0705626e2fe60aaf3f2b067419aa1d9994ec7c33fd5519e98851d2477d71ba8e","size":2430,"filename":"rxmDSIbuiNS8fzkHrqwb5gM8fGXYXY7Egq5fLYyEn4s=.pem","location":"security-state-staging/intermediates/ad1b09ec-5983-4577-b17f-3bcdc6f7349d.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"rxmDSIbuiNS8fzkHrqwb5gM8fGXYXY7Egq5fLYy
En4s=","crlite_enrolled":true,"id":"a6162e7a-0ad4-4d74-9ccf-7528c89121b2","last_modified":1559865923624},{"schema":1559865909816,"derHash":"h6pxrwMuNr1p2vQBT8rY8nM6oA3quVkzWuOGbkttOh0=","subject":"CN=RapidSSL Enterprise CA,OU=For Internal Use Only,O=GeoTrust\\, Inc.,C=US","subjectDN":"MGcxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5HZW9UcnVzdCwgSW5jLjEeMBwGA1UECxMVRm9yIEludGVybmFsIFVzZSBPbmx5MR8wHQYDVQQDExZSYXBpZFNTTCBFbnRlcnByaXNlIENB","whitelist":false,"attachment":{"hash":"d814cbeb3bba9c4301c57cac75040699c4d480925c5650fee8c11fffffdc68df","size":1508,"filename":"NU79QJ5AFUOrmQDTq80lNzSOHvYG8jU1KQoGfjQbehg=.pem","location":"security-state-staging/intermediates/6a07c4a8-7692-4de3-b7e2-381dbbbffdb6.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"NU79QJ5AFUOrmQDTq80lNzSOHvYG8jU1KQoGfjQbehg=","crlite_enrolled":false,"id":"039f2d8c-c45f-47df-8c82-7db505c836b6","last_modified":1559865910620},{"schema":1559865898453,"derHash":"FRo1kbdl0Cw1nuycVu2N2tDFTnVqSX0Cv5efqN1dlbs=","subject":"CN=Catholi
c Health Initiatives CA,OU=Orion Health Direct Secure Messaging,O=Catholic Health Initiatives,C=US","subjectDN":"MIGLMQswCQYDVQQGEwJVUzEkMCIGA1UEChMbQ2F0aG9saWMgSGVhbHRoIEluaXRpYXRpdmVzMS0wKwYDVQQLEyRPcmlvbiBIZWFsdGggRGlyZWN0IFNlY3VyZSBNZXNzYWdpbmcxJzAlBgNVBAMTHkNhdGhvbGljIEhlYWx0aCBJbml0aWF0aXZlcyBDQQ==","whitelist":false,"attachment":{"hash":"ee6a309e0de6cb67ace3bdaab607e586d5285e59b539600424872e26eb2416c6","size":2304,"filename":"eGgIb9Mf8R2HbnNEy1RdxWcW2zycYmpZml33v8IU60Y=.pem","location":"security-state-staging/intermediates/cf1968f2-109b-48cb-b587-0b7b16705e3b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eGgIb9Mf8R2HbnNEy1RdxWcW2zycYmpZml33v8IU60Y=","crlite_enrolled":false,"id":"e21eb37a-004c-4f2f-b310-00ae5b96e7e5","last_modified":1559865899247},{"schema":1559865897655,"derHash":"wmfcEV1X3QImJ5s0bfGVPdLAeoXLSKDYmf1XJPWvaB8=","subject":"CN=Symantec Class 3 Extended Validation Code Signing CA - G3,OU=Symantec Trust Network,O=Symantec Corporation,C=US","subjectDN":"MI
GRMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNVBAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxQjBABgNVBAMTOVN5bWFudGVjIENsYXNzIDMgRXh0ZW5kZWQgVmFsaWRhdGlvbiBDb2RlIFNpZ25pbmcgQ0EgLSBHMw==","whitelist":false,"attachment":{"hash":"207fc06b42669c71ee04aa593840172f925d130cfd82a1c6286bbb57a47662ba","size":1902,"filename":"QVwcabwoERXIBspXIsZlwkJ7SmEfO8TMs3IiG5iwXM8=.pem","location":"security-state-staging/intermediates/303eb490-7274-4466-9fa5-888d4a682229.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"QVwcabwoERXIBspXIsZlwkJ7SmEfO8TMs3IiG5iwXM8=","crlite_enrolled":false,"id":"43d4e068-b019-457b-a223-234db563b467","last_modified":1559865898440},{"schema":1559865883837,"derHash":"7toVugALAG6tSaIbvnafO6bOdckknwEU2N2ILfwPLBs=","subject":"CN=GoGetSSL Extended Validation CA SHA2,OU=GoGetSSL Certification Authority,O=EnVers Group SIA,C=LV","subjectDN":"MIGCMQswCQYDVQQGEwJMVjEZMBcGA1UECgwQRW5WZXJzIEdyb3VwIFNJQTEpMCcGA1UECwwgR29HZXRTU0wgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxLTArBgNV
BAMMJEdvR2V0U1NMIEV4dGVuZGVkIFZhbGlkYXRpb24gQ0EgU0hBMg==","whitelist":false,"attachment":{"hash":"3f571450d63eacb78406320bff9a534186fb3c5714e38ef5e9421cc30dd0f091","size":1752,"filename":"BPECx6wNq90p8gu0YpJ1Fc0Dx7h0SmkteDK5xDmXT5Y=.pem","location":"security-state-staging/intermediates/69c28a8d-33ee-4e47-bb72-44abfc083dca.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"BPECx6wNq90p8gu0YpJ1Fc0Dx7h0SmkteDK5xDmXT5Y=","crlite_enrolled":false,"id":"30f7ecb1-568f-400d-8562-fef6ac31428f","last_modified":1559865884636},{"schema":1559865881436,"derHash":"xhApyO7jzgh1XVYrtQxfdeDvhJIUlwsTvZkYU2fR0Rk=","subject":"CN=DigiCert Provisional Direct Med CA,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNVBAMTIkRpZ2lDZXJ0IFByb3Zpc2lvbmFsIERpcmVjdCBNZWQgQ0E=","whitelist":false,"attachment":{"hash":"9db67e54d72b0ed5cb3af0e6d5ae65878c009c049543ecb722e8c2429928a21d","size":2138,"filename":"qrhUgzeh
JmpLBJORSXw5Rr74Be05U1eHnv0PnDNXUX4=.pem","location":"security-state-staging/intermediates/2fdc0c6f-f377-4cd0-acf8-21d1f34ac6a5.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"qrhUgzehJmpLBJORSXw5Rr74Be05U1eHnv0PnDNXUX4=","crlite_enrolled":false,"id":"8ad399aa-03ed-477e-aefd-6f8675cf5313","last_modified":1559865882224},{"schema":1559865879001,"derHash":"V2XGaWoOtcgWRFcyPcQbYSmWHuXFWMEeygKagGdd4to=","subject":"CN=InCommon IGTF Server CA,OU=InCommon,O=Internet2,C=US","subjectDN":"MFYxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJbnRlcm5ldDIxETAPBgNVBAsTCEluQ29tbW9uMSAwHgYDVQQDExdJbkNvbW1vbiBJR1RGIFNlcnZlciBDQQ==","whitelist":false,"attachment":{"hash":"adb731d717bfcd68bba75cde81004aa2c9510de557a9130c02d3f1b558d3dd61","size":2105,"filename":"eKK5WQ3iY2Qjww9Titbu9ylESXstB780TnTJBT7c0zI=.pem","location":"security-state-staging/intermediates/fc1eec87-d8f8-4300-91ea-b217ad53fb3b.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"eKK5WQ3iY2Qjww9Titbu9ylESXstB780TnTJBT7c0zI=","crlite_enrolled
":true,"id":"bab3a8d0-faa9-4a2d-9faa-bf897b48540b","last_modified":1559865879785},{"schema":1559865877396,"derHash":"2OJppusIy8M3rWV4xyE1eHSEyZ0vsIzO0CnoBr4QQPw=","subject":"CN=GeoTrust ECC CA 2018,OU=www.digicert.com,O=DigiCert Inc,C=US","subjectDN":"MF4xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xHTAbBgNVBAMTFEdlb1RydXN0IEVDQyBDQSAyMDE4","whitelist":false,"attachment":{"hash":"ed3ea6d09c5ea1ee4aff94776f7636c5caa4a1f898b7cf38a7a51186ce041b2e","size":1362,"filename":"A0W8sBH3jBrKa3ukj8kse0jYSSeQM5e5tb8obnMQvak=.pem","location":"security-state-staging/intermediates/d91f6034-4d0e-4712-b034-11eafafca044.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"A0W8sBH3jBrKa3ukj8kse0jYSSeQM5e5tb8obnMQvak=","crlite_enrolled":true,"id":"a4d953b4-251b-4c06-931a-1e3ed439794e","last_modified":1559865878190},{"schema":1559865862835,"derHash":"eFhUEwsU9vHun5hCV6urtiVbBajb77doDTNACsKP6Qk=","subject":"CN=certSIGN Code Signing CA Class 3 G2,OU=certSIGN Code S
igning CA Class 3 G2,O=certSIGN,C=RO","subjectDN":"MHwxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEsMCoGA1UECxMjY2VydFNJR04gQ29kZSBTaWduaW5nIENBIENsYXNzIDMgRzIxLDAqBgNVBAMTI2NlcnRTSUdOIENvZGUgU2lnbmluZyBDQSBDbGFzcyAzIEcy","whitelist":false,"attachment":{"hash":"979d813e8beb4bc5b97e32b32670bc7d542475a2869e021c2f5258073fc2683f","size":1723,"filename":"JfGTViyEYla3GTtoAL7NpEIwzj14wMFgtWvcWICwEsM=.pem","location":"security-state-staging/intermediates/729b520d-7781-44fd-a627-50fb1479e236.pem","mimetype":"application/x-pem-file"},"pubKeyHash":"JfGTViyEYla3GTtoAL7NpEIwzj14wMFgtWvcWICwEsM=","crlite_enrolled":false,"id":"586b6f01-c7f7-4a5e-ba71-e7dca3e77add","last_modified":1559865863642}]}
\ No newline at end of file
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 1616120 - Add suppression for esr78. r=decoder, a=npotb
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit d526c68a3a170c29d9384c2e5e485d360f320111
Author: Alexis Beingessner <a.beingessner(a)gmail.com>
Date: Tue Jan 19 17:49:47 2021 +0000
Bug 1616120 - Add suppression for esr78. r=decoder, a=npotb
Differential Revision: https://phabricator.services.mozilla.com/D102332
---
mozglue/build/TsanOptions.cpp | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/mozglue/build/TsanOptions.cpp b/mozglue/build/TsanOptions.cpp
index 54e6c9cd876d..bd9be2d86db6 100644
--- a/mozglue/build/TsanOptions.cpp
+++ b/mozglue/build/TsanOptions.cpp
@@ -308,6 +308,10 @@ extern "C" const char* __tsan_default_suppressions() {
"thread:mozilla::layers::ImageBridgeChild\n"
"race:mozilla::layers::ImageBridgeChild::ShutDown\n"
+ // Bug 1616120
+ "race:nsSocketTransport::OnInputClosed\n"
+ "race:nsSocketTransport::OpenInputStream\n"
+
// Benign races in third-party code
//
// SIMD Initialization in libjpeg, potentially runs
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 1542194: Update blocked-uri in CSP reporting by treating frame naviations as redirects. r=freddyb, dveditz, mixedpuppy, a=pascalc
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit b7969c3b8319354766443502066b59f3a1f8e49a
Author: Christoph Kerschbaumer <ckerschb(a)christophkerschbaumer.com>
Date: Thu Feb 11 09:09:17 2021 +0000
Bug 1542194: Update blocked-uri in CSP reporting by treating frame naviations as redirects. r=freddyb,dveditz,mixedpuppy, a=pascalc
Differential Revision: https://phabricator.services.mozilla.com/D103697
---
dom/security/nsCSPService.cpp | 29 ++++++++++++++++++----
modules/libpref/init/StaticPrefList.yaml | 5 ++++
.../test_ext_contentscript_triggeringPrincipal.js | 11 ++++++++
3 files changed, 40 insertions(+), 5 deletions(-)
diff --git a/dom/security/nsCSPService.cpp b/dom/security/nsCSPService.cpp
index af50331e2ddd..3fb9abd64ba8 100644
--- a/dom/security/nsCSPService.cpp
+++ b/dom/security/nsCSPService.cpp
@@ -172,12 +172,31 @@ bool subjectToCSP(nsIURI* aURI, nsContentPolicyType aContentType) {
nsCOMPtr<nsIContentSecurityPolicy> csp = aLoadInfo->GetCsp();
if (csp) {
+ // Generally aOriginalURI denotes the URI before a redirect and hence
+ // will always be a nullptr here. Only exception are frame navigations
+ // which we want to treat as a redirect for the purpose of CSP reporting
+ // and in particular the `blocked-uri` in the CSP report where we want
+ // to report the prePath information.
+ nsCOMPtr<nsIURI> originalURI = nullptr;
+ nsContentPolicyType extType =
+ nsContentUtils::InternalContentPolicyTypeToExternal(contentType);
+ if (extType == nsIContentPolicy::TYPE_SUBDOCUMENT &&
+ !aLoadInfo->GetOriginalFrameSrcLoad() &&
+ mozilla::StaticPrefs::
+ security_csp_truncate_blocked_uri_for_frame_navigations()) {
+ nsAutoCString prePathStr;
+ nsresult rv = aContentLocation->GetPrePath(prePathStr);
+ NS_ENSURE_SUCCESS(rv, rv);
+ rv = NS_NewURI(getter_AddRefs(originalURI), prePathStr);
+ NS_ENSURE_SUCCESS(rv, rv);
+ }
+
// obtain the enforcement decision
- rv = csp->ShouldLoad(contentType, cspEventListener, aContentLocation,
- aMimeTypeGuess,
- nullptr, // no redirect, aOriginal URL is null.
- aLoadInfo->GetSendCSPViolationEvents(), cspNonce,
- parserCreatedScript, aDecision);
+ rv = csp->ShouldLoad(
+ contentType, cspEventListener, aContentLocation, aMimeTypeGuess,
+ originalURI, // no redirect, unless it's a frame navigation.
+ aLoadInfo->GetSendCSPViolationEvents(), cspNonce,
+ parserCreatedScript, aDecision);
if (NS_CP_REJECTED(*aDecision)) {
NS_SetRequestBlockingReason(
diff --git a/modules/libpref/init/StaticPrefList.yaml b/modules/libpref/init/StaticPrefList.yaml
index a0e5d2fd6d4f..eb05986e017c 100644
--- a/modules/libpref/init/StaticPrefList.yaml
+++ b/modules/libpref/init/StaticPrefList.yaml
@@ -8485,6 +8485,11 @@
value: 40
mirror: always
+- name: security.csp.truncate_blocked_uri_for_frame_navigations
+ type: bool
+ value: true
+ mirror: always
+
# TODO: Bug 1324406: Treat 'data:' documents as unique, opaque origins
# If true, data: URIs will be treated as unique opaque origins, hence will use
# a NullPrincipal as the security context.
diff --git a/toolkit/components/extensions/test/xpcshell/test_ext_contentscript_triggeringPrincipal.js b/toolkit/components/extensions/test/xpcshell/test_ext_contentscript_triggeringPrincipal.js
index 993ee071abb0..772d1fd6892e 100644
--- a/toolkit/components/extensions/test/xpcshell/test_ext_contentscript_triggeringPrincipal.js
+++ b/toolkit/components/extensions/test/xpcshell/test_ext_contentscript_triggeringPrincipal.js
@@ -25,6 +25,12 @@ Services.prefs.setIntPref(
4096
);
+// Do not trunacate the blocked-uri in CSP reports for frame navigations.
+Services.prefs.setBoolPref(
+ "security.csp.truncate_blocked_uri_for_frame_navigations",
+ false
+);
+
// ExtensionContent.jsm needs to know when it's running from xpcshell,
// to use the right timeout for content scripts executed at document_idle.
ExtensionTestUtils.mockAppInfo();
@@ -831,6 +837,8 @@ function computeBaseURLs(tests, expectedSources, forbiddenSources = {}) {
function* iterSources(test, sources) {
for (let [source, attrs] of Object.entries(sources)) {
+ // if a source defines attributes (e.g. liveSrc in PAGE_SOURCES etc.) then all
+ // attributes in the source must be matched by the test (see const TEST).
if (Object.keys(attrs).every(attr => attrs[attr] === test[attr])) {
yield `${BASE_URL}/${test.src}?source=${source}`;
}
@@ -1083,6 +1091,9 @@ const TESTS = [
},
// TODO: <frame> element, which requires a frameset document.
{
+ // the blocked-uri for frame-navigations is the pre-path URI. For the
+ // purpose of this test we do not strip the blocked-uri by setting the
+ // preference 'truncate_blocked_uri_for_frame_navigations'
element: ["iframe", {}],
src: "iframe.html",
},
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 1542194: Set original frame src load. r=mattwoodrow, a=RyanVM
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit fa30ece0dcdd38d07935bd360650ae5e015d3765
Author: Christoph Kerschbaumer <ckerschb(a)christophkerschbaumer.com>
Date: Mon Feb 15 13:57:44 2021 +0100
Bug 1542194: Set original frame src load. r=mattwoodrow, a=RyanVM
---
docshell/base/nsDocShell.cpp | 7 +++++++
ipc/glue/BackgroundUtils.cpp | 2 ++
netwerk/base/LoadInfo.cpp | 4 ++--
netwerk/base/LoadInfo.h | 14 +++++++-------
netwerk/ipc/NeckoChannelParams.ipdlh | 1 +
5 files changed, 19 insertions(+), 9 deletions(-)
diff --git a/docshell/base/nsDocShell.cpp b/docshell/base/nsDocShell.cpp
index fcdbe4918064..43fb261a9f8a 100644
--- a/docshell/base/nsDocShell.cpp
+++ b/docshell/base/nsDocShell.cpp
@@ -9636,6 +9636,13 @@ nsresult nsDocShell::DoURILoad(nsDocShellLoadState* aLoadState,
loadInfo->SetHasValidUserGestureActivation(true);
}
+ // if this is an iframe load then store if it's the inital frame src load
+ if (nsContentUtils::InternalContentPolicyTypeToExternal(contentPolicyType) ==
+ nsIContentPolicy::TYPE_SUBDOCUMENT) {
+ loadInfo->SetOriginalFrameSrcLoad(
+ aLoadState->HasLoadFlags(INTERNAL_LOAD_FLAGS_ORIGINAL_FRAME_SRC));
+ }
+
/* Get the cache Key from SH */
uint32_t cacheKey = 0;
if (mLSHE) {
diff --git a/ipc/glue/BackgroundUtils.cpp b/ipc/glue/BackgroundUtils.cpp
index 1fd0b585f357..ecacef83c500 100644
--- a/ipc/glue/BackgroundUtils.cpp
+++ b/ipc/glue/BackgroundUtils.cpp
@@ -522,6 +522,7 @@ nsresult LoadInfoToLoadInfoArgs(nsILoadInfo* aLoadInfo,
aLoadInfo->GetAllowInsecureRedirectToDataURI(),
aLoadInfo->GetBypassCORSChecks(),
aLoadInfo->GetSkipContentPolicyCheckForWebRequest(),
+ aLoadInfo->GetOriginalFrameSrcLoad(),
aLoadInfo->GetForceInheritPrincipalDropped(),
aLoadInfo->GetInnerWindowID(), aLoadInfo->GetOuterWindowID(),
aLoadInfo->GetParentOuterWindowID(), aLoadInfo->GetTopOuterWindowID(),
@@ -748,6 +749,7 @@ nsresult LoadInfoArgsToLoadInfo(
loadInfoArgs.allowInsecureRedirectToDataURI(),
loadInfoArgs.bypassCORSChecks(),
loadInfoArgs.skipContentPolicyCheckForWebRequest(),
+ loadInfoArgs.originalFrameSrcLoad(),
loadInfoArgs.forceInheritPrincipalDropped(), loadInfoArgs.innerWindowID(),
loadInfoArgs.outerWindowID(), loadInfoArgs.parentOuterWindowID(),
loadInfoArgs.topOuterWindowID(), loadInfoArgs.frameOuterWindowID(),
diff --git a/netwerk/base/LoadInfo.cpp b/netwerk/base/LoadInfo.cpp
index 17468a7d3d0b..3a3d3acd25cb 100644
--- a/netwerk/base/LoadInfo.cpp
+++ b/netwerk/base/LoadInfo.cpp
@@ -826,7 +826,7 @@ LoadInfo::LoadInfo(
bool aBrowserUpgradeInsecureRequests,
bool aBrowserWouldUpgradeInsecureRequests, bool aForceAllowDataURI,
bool aAllowInsecureRedirectToDataURI, bool aBypassCORSChecks,
- bool aSkipContentPolicyCheckForWebRequest,
+ bool aSkipContentPolicyCheckForWebRequest, bool aOriginalFrameSrcLoad,
bool aForceInheritPrincipalDropped, uint64_t aInnerWindowID,
uint64_t aOuterWindowID, uint64_t aParentOuterWindowID,
uint64_t aTopOuterWindowID, uint64_t aFrameOuterWindowID,
@@ -876,7 +876,7 @@ LoadInfo::LoadInfo(
mBypassCORSChecks(aBypassCORSChecks),
mSkipContentPolicyCheckForWebRequest(
aSkipContentPolicyCheckForWebRequest),
- mOriginalFrameSrcLoad(false),
+ mOriginalFrameSrcLoad(aOriginalFrameSrcLoad),
mForceInheritPrincipalDropped(aForceInheritPrincipalDropped),
mInnerWindowID(aInnerWindowID),
mOuterWindowID(aOuterWindowID),
diff --git a/netwerk/base/LoadInfo.h b/netwerk/base/LoadInfo.h
index caf5e7debee8..60b9adbf08e4 100644
--- a/netwerk/base/LoadInfo.h
+++ b/netwerk/base/LoadInfo.h
@@ -152,13 +152,13 @@ class LoadInfo final : public nsILoadInfo {
bool aBrowserWouldUpgradeInsecureRequests, bool aForceAllowDataURI,
bool aAllowInsecureRedirectToDataURI, bool aBypassCORSChecks,
bool aSkipContentPolicyCheckForWebRequest,
- bool aForceInheritPrincipalDropped, uint64_t aInnerWindowID,
- uint64_t aOuterWindowID, uint64_t aParentOuterWindowID,
- uint64_t aTopOuterWindowID, uint64_t aFrameOuterWindowID,
- uint64_t aBrowsingContextID, uint64_t aFrameBrowsingContextID,
- bool aInitialSecurityCheckDone, bool aIsThirdPartyRequest,
- bool aIsThirdPartyContextToTopWindow, bool aIsFormSubmission,
- bool aSendCSPViolationEvents,
+ bool aOriginalFrameSrcLoad, bool aForceInheritPrincipalDropped,
+ uint64_t aInnerWindowID, uint64_t aOuterWindowID,
+ uint64_t aParentOuterWindowID, uint64_t aTopOuterWindowID,
+ uint64_t aFrameOuterWindowID, uint64_t aBrowsingContextID,
+ uint64_t aFrameBrowsingContextID, bool aInitialSecurityCheckDone,
+ bool aIsThirdPartyRequest, bool aIsThirdPartyContextToTopWindow,
+ bool aIsFormSubmission, bool aSendCSPViolationEvents,
const OriginAttributes& aOriginAttributes,
RedirectHistoryArray& aRedirectChainIncludingInternalRedirects,
RedirectHistoryArray& aRedirectChain,
diff --git a/netwerk/ipc/NeckoChannelParams.ipdlh b/netwerk/ipc/NeckoChannelParams.ipdlh
index 69b9af45b0a5..7f4fe332f5a1 100644
--- a/netwerk/ipc/NeckoChannelParams.ipdlh
+++ b/netwerk/ipc/NeckoChannelParams.ipdlh
@@ -93,6 +93,7 @@ struct LoadInfoArgs
bool allowInsecureRedirectToDataURI;
bool bypassCORSChecks;
bool skipContentPolicyCheckForWebRequest;
+ bool originalFrameSrcLoad;
bool forceInheritPrincipalDropped;
uint64_t innerWindowID;
uint64_t outerWindowID;
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 1687342: Blocked-URI in CSP reports should be URI before redirects with ref removed r=freddyb, dveditz a=pascalc
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit 834ae039ea8957f794624ca6d125628e3979569f
Author: Christoph Kerschbaumer <ckerschb(a)christophkerschbaumer.com>
Date: Tue Feb 9 18:42:03 2021 +0000
Bug 1687342: Blocked-URI in CSP reports should be URI before redirects with ref removed r=freddyb,dveditz a=pascalc
Differential Revision: https://phabricator.services.mozilla.com/D103450
---
dom/security/nsCSPContext.cpp | 38 ++++++++--------------
.../test/csp/test_blocked_uri_in_reports.html | 6 ++--
.../frame-src/frame-src-redirect.html.ini | 5 +++
3 files changed, 22 insertions(+), 27 deletions(-)
diff --git a/dom/security/nsCSPContext.cpp b/dom/security/nsCSPContext.cpp
index 3601f5a4f2fc..413044afcc88 100644
--- a/dom/security/nsCSPContext.cpp
+++ b/dom/security/nsCSPContext.cpp
@@ -950,20 +950,18 @@ void nsCSPContext::logToConsole(const char* aName,
/**
* Strip URI for reporting according to:
- * http://www.w3.org/TR/CSP/#violation-reports
+ * https://w3c.github.io/webappsec-csp/#security-violation-reports
*
* @param aURI
- * The uri to be stripped for reporting
- * @param aSelfURI
- * The uri of the protected resource
- * which is needed to enforce the SOP.
- * @return ASCII serialization of the uri to be reported.
+ * The URI of the blocked resource. In case of a redirect, this it the
+ * initial URI the request started out with, not the redirected URI.
+ * @return The ASCII serialization of the uri to be reported ignoring
+ * the ref part of the URI.
*/
-void StripURIForReporting(nsIURI* aURI, nsIURI* aSelfURI,
- nsACString& outStrippedURI) {
- // 1) If the origin of uri is a globally unique identifier (for example,
- // aURI has a scheme of data, blob, or filesystem), then return the
- // ASCII serialization of uri’s scheme.
+void StripURIForReporting(nsIURI* aURI, nsACString& outStrippedURI) {
+ // If the origin of aURI is a globally unique identifier (for example,
+ // aURI has a scheme of data, blob, or filesystem), then
+ // return the ASCII serialization of uri’s scheme.
bool isHttpFtpOrWs =
(aURI->SchemeIs("http") || aURI->SchemeIs("https") ||
aURI->SchemeIs("ftp") || aURI->SchemeIs("ws") || aURI->SchemeIs("wss"));
@@ -976,7 +974,7 @@ void StripURIForReporting(nsIURI* aURI, nsIURI* aSelfURI,
return;
}
- // Return uri, with any fragment component removed.
+ // Return aURI, with any fragment component removed.
aURI->GetSpecIgnoringRef(outStrippedURI);
}
@@ -996,7 +994,7 @@ nsresult nsCSPContext::GatherSecurityPolicyViolationEventData(
// document-uri
nsAutoCString reportDocumentURI;
- StripURIForReporting(mSelfURI, mSelfURI, reportDocumentURI);
+ StripURIForReporting(mSelfURI, reportDocumentURI);
aViolationEventInit.mDocumentURI = NS_ConvertUTF8toUTF16(reportDocumentURI);
// referrer
@@ -1004,17 +1002,9 @@ nsresult nsCSPContext::GatherSecurityPolicyViolationEventData(
// blocked-uri
if (aBlockedURI) {
- // in case of blocking a browsing context (frame) we have to report
- // the final URI in case of a redirect. For subresources we report
- // the URI before redirects.
- nsCOMPtr<nsIURI> uriToReport;
- if (aViolatedDirective.EqualsLiteral("frame-src")) {
- uriToReport = aBlockedURI;
- } else {
- uriToReport = aOriginalURI ? aOriginalURI : aBlockedURI;
- }
nsAutoCString reportBlockedURI;
- StripURIForReporting(uriToReport, mSelfURI, reportBlockedURI);
+ StripURIForReporting(aOriginalURI ? aOriginalURI : aBlockedURI,
+ reportBlockedURI);
aViolationEventInit.mBlockedURI = NS_ConvertUTF8toUTF16(reportBlockedURI);
} else {
aViolationEventInit.mBlockedURI = NS_ConvertUTF8toUTF16(aBlockedString);
@@ -1914,4 +1904,4 @@ void nsCSPContext::SerializePolicies(
}
aPolicies.AppendElements(mIPCPolicies);
-}
\ No newline at end of file
+}
diff --git a/dom/security/test/csp/test_blocked_uri_in_reports.html b/dom/security/test/csp/test_blocked_uri_in_reports.html
index 0bb986ec3d04..f40d98efc5d3 100644
--- a/dom/security/test/csp/test_blocked_uri_in_reports.html
+++ b/dom/security/test/csp/test_blocked_uri_in_reports.html
@@ -19,9 +19,9 @@ SimpleTest.waitForExplicitFinish();
* which gets redirected to:
* http://test1.example.com/tests/dom/security//test/csp/file_path_matching.js
*
- * The blocked-uri in the csp-report should be:
- * test1.example.com
- * instead of:
+ * The blocked-uri in the csp-report should be the original URI:
+ * http://example.com/tests/dom/security/test/csp/file_path_matching_redirect_…
+ * instead of the redirected URI:
* http://test1.example.com/tests/com/security/test/csp/file_path_matching.js
*
* see also: http://www.w3.org/TR/CSP/#violation-reports
diff --git a/testing/web-platform/meta/content-security-policy/frame-src/frame-src-redirect.html.ini b/testing/web-platform/meta/content-security-policy/frame-src/frame-src-redirect.html.ini
new file mode 100644
index 000000000000..afc5b552aae4
--- /dev/null
+++ b/testing/web-platform/meta/content-security-policy/frame-src/frame-src-redirect.html.ini
@@ -0,0 +1,5 @@
+[frame-src-redirect.html]
+ expected: TIMEOUT
+ [Redirected iframe src should evaluate both enforced and report-only policies on both original request and when following redirect]
+ expected: TIMEOUT
+
1
0

[tor-browser/tor-browser-78.8.0esr-10.0-1] Bug 1686168: Immediately unset __PYVENV_LAUNCHER__ when `mach` starts. r=sheehan, glandium a=RyanVM
by sysrqb@torproject.org 17 Feb '21
by sysrqb@torproject.org 17 Feb '21
17 Feb '21
commit bace0d2a46cabd36f5bdc738c000f15ae4a4225c
Author: Mitchell Hentges <mhentges(a)mozilla.com>
Date: Wed Jan 20 16:27:09 2021 +0000
Bug 1686168: Immediately unset __PYVENV_LAUNCHER__ when `mach` starts. r=sheehan,glandium a=RyanVM
Catch additional cases where both __PYVENV_LAUNCHER__ is set and we invoke a
virtualenv python by unsetting the variable in a prominent location.
This will specifically catch the `./mach bootstrap` => `./mach artifact` case.
Differential Revision: https://phabricator.services.mozilla.com/D101809
---
mach | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/mach b/mach
index 8bdd2756889a..0cc566d4dff7 100755
--- a/mach
+++ b/mach
@@ -216,6 +216,14 @@ def get_mach():
return check_and_get_mach(os.path.dirname(os.path.realpath(__file__)))
def main(args):
+ # XCode python sets __PYVENV_LAUNCHER__, which overrides the executable
+ # used when a python subprocess is created. This is an issue when we want
+ # to run using our virtualenv python executables.
+ # In future Python relases, __PYVENV_LAUNCHER__ will be cleared before
+ # application code (mach) is started.
+ # https://github.com/python/cpython/pull/9516
+ os.environ.pop("__PYVENV_LAUNCHER__", None)
+
mach = get_mach()
if not mach:
print('Could not run mach: No mach source directory found.')
1
0

[torbutton/maint-10.0] Switch DDG search on homepage from POST to GET
by sysrqb@torproject.org 16 Feb '21
by sysrqb@torproject.org 16 Feb '21
16 Feb '21
commit 74d22e9cc3cd29bc5f676ffb17bfd3c05c59081a
Author: Peter Story <pstory(a)andrew.cmu.edu>
Date: Mon Jan 11 13:56:54 2021 -0500
Switch DDG search on homepage from POST to GET
See tor-browser#40287
Also, eliminate extra "b" parameter from the search form. The
presence of "b" would reveal that the search was initiated from
the landing page, rather than the urlbar.
---
chrome/content/aboutTor/aboutTor.xhtml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/chrome/content/aboutTor/aboutTor.xhtml b/chrome/content/aboutTor/aboutTor.xhtml
index fdc02593..a5ef1f1c 100644
--- a/chrome/content/aboutTor/aboutTor.xhtml
+++ b/chrome/content/aboutTor/aboutTor.xhtml
@@ -53,12 +53,12 @@
</div>
<div class="searchbox hideIfTorOff"> <!-- begin form based search -->
- <form action="&aboutTor.searchDDGPost.link;" method="post">
+ <form action="&aboutTor.searchDDGPost.link;" method="get">
<div class="searchwrapper">
<label class="searchlabel" for="search-text"> </label>
<input name="q" id="search-text" placeholder="&aboutTor.search.label;"
autocomplete="off" type="text"/>
- <input name="b" id="search-button" value=""
+ <input id="search-button" value=""
title="&aboutTor.search.label;"
alt="&aboutTor.search.label;" type="submit"/>
</div>
1
0

[tor-browser/tor-browser-78.7.1esr-10.0-1] fixup! Bug 10760: Integrate TorButton to TorBrowser core
by sysrqb@torproject.org 16 Feb '21
by sysrqb@torproject.org 16 Feb '21
16 Feb '21
commit c3890932793466b647d6f4c1c1dee32bd7e6ccbe
Author: Matthew Finkel <sysrqb(a)torproject.org>
Date: Tue Feb 16 21:44:47 2021 +0000
fixup! Bug 10760: Integrate TorButton to TorBrowser core
---
toolkit/torproject/torbutton | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/toolkit/torproject/torbutton b/toolkit/torproject/torbutton
index 4c72d3fced61..1138ead65a4d 160000
--- a/toolkit/torproject/torbutton
+++ b/toolkit/torproject/torbutton
@@ -1 +1 @@
-Subproject commit 4c72d3fced61c72023621996682995ad5bf74e7e
+Subproject commit 1138ead65a4d3083c9d9d9d819a5c23dd3264603
1
0

16 Feb '21
commit 90ecad19b0194b8378b770c4122800d39c4371ce
Author: Matthew Finkel <sysrqb(a)torproject.org>
Date: Mon Feb 8 21:58:13 2021 +0000
Bug 40026: Add feedback survey banner
---
chrome/content/aboutTor/aboutTor.xhtml | 11 ++++++++
chrome/skin/aboutTor.css | 47 ++++++++++++++++++++++++++++++++++
chrome/skin/tor-survey-icon.svg | 1 +
3 files changed, 59 insertions(+)
diff --git a/chrome/content/aboutTor/aboutTor.xhtml b/chrome/content/aboutTor/aboutTor.xhtml
index 5e9ffea0..6121ea5e 100644
--- a/chrome/content/aboutTor/aboutTor.xhtml
+++ b/chrome/content/aboutTor/aboutTor.xhtml
@@ -65,6 +65,17 @@
</form>
</div>
+ <div id="surveyBanner">
+ <img id="surveyImg" src="resource://torbutton-assets/tor-survey-icon.svg" />
+ <div id="surveyTextCol">
+ <div id="surveyHeader">We’d love to get your feedback</div>
+ <br />
+ <div id="surveyDescription">We put our users at the center of our development process. You can help us improve Tor Browser by completing this short survey about your experience:</div>
+ <br />
+ <a id="surveyLink" target="_blank" href="https://survey.torproject.org/index.php/217469">Launch the Survey</a>
+ </div>
+ </div>
+
<div id="bottom">
<p id="donate" class="moreInfoLink">&aboutTor.donationBanner.freeToUse;
<a href="https://donate.torproject.org/">&aboutTor.donationBanner.buttonA; »</a>
diff --git a/chrome/skin/aboutTor.css b/chrome/skin/aboutTor.css
index 8d5c4a83..d53e4060 100644
--- a/chrome/skin/aboutTor.css
+++ b/chrome/skin/aboutTor.css
@@ -212,6 +212,53 @@ body:not([showmanual]) .showForManual {
background-color: rgba(12, 12, 13, 0.1); /* same as Firefox's about:home */
}
+#surveyBanner {
+ width: 690px;
+ padding: 20px 25px 25px;
+ background: rgba(0, 0, 0, 0.3);
+ border-radius: 6px;
+ margin: 35px auto 0px;
+ display: flex;
+ flex-direction: row;
+ align-items: flex-start;
+ position: static;
+}
+
+@media only screen and (min-width: 900px) {
+ #surveyBanner {
+ margin: 35px 0px 0px 135px;
+ }
+}
+
+#surveyTextCol {
+ padding: 8px 0px 0px 15px;
+ font-size: 15px;
+ line-height: normal;
+ color: #FFFFFF;
+ width: 633px;
+}
+
+#surveyHeader {
+ font-weight: bold;
+}
+
+#surveyImg {
+ width: 32px;
+ position: static;
+}
+
+div.surveyDescription, div.surveyLink {
+ padding-top: 10px;
+}
+
+a#surveyLink {
+ text-decoration: underline;
+}
+
+a#surveyLink:hover {
+ text-decoration: none;
+}
+
/* #search-text is the search input field */
#search-text {
flex: 1;
diff --git a/chrome/skin/tor-survey-icon.svg b/chrome/skin/tor-survey-icon.svg
new file mode 100644
index 00000000..6e1eca1a
--- /dev/null
+++ b/chrome/skin/tor-survey-icon.svg
@@ -0,0 +1 @@
+<svg fill="none" height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg"><rect fill="#df58a9" height="32" rx="16" width="32"/><g fill="#240a3b"><path clip-rule="evenodd" d="m16.3397 25c-4.9708 0-8.99998-4.0295-8.99998-9.0002 0-4.9706 4.02918-8.9998 8.99998-8.9998 4.9706 0 9 4.0292 9 8.9998 0 4.9707-4.0294 9.0002-9 9.0002zm.0185-2.7279v1.091c4.0584-.01 7.3449-3.3024 7.3449-7.3633 0-4.0607-3.2865-7.35293-7.3449-7.36316v1.09101c3.4559.00997 6.2541 2.81395 6.2541 6.27215 0 3.4583-2.7982 6.2623-6.2541 6.2723zm3.527-6.2723c0 1.9519-1.5778 3.5344-3.527 3.5447v1.0907c2.552-.0099 4.618-2.0809 4.618-4.6354 0-2.5543-2.066-4.6253-4.618-4.6353v1.0908c1.9492.0102 3.527 1.5927 3.527 3.5445zm-3.527-1.9081c1.0456.01 1.8906.86 1.8906 1.908 0 1.0484-.845 1.8984-1.8906 1.9084z" fill-rule="evenodd"/><path d="m10.3461 4.99805c-.3237-.07201-.6639-.08099-1.00111-.02643s-.66484.17159-.96417.34441-.56449.39804-.78035.66279c-.21585.26475-.37816.56384-.47766.8802l-.2066.65635-.67173-.1492
5c-.65378-.14527-1.36067-.03082-1.96515.31818-.60449.349-1.05705.90396-1.25814 1.54278-.20108.63883-.13422 1.30922.18589 1.86362.32011.5545.86723.9476 1.52102 1.0928l.67172.1493 4.93018 1.0955 1.5164-4.81745.2066-.65635c.0997-.31632.1345-.64373.1027-.96352-.0319-.31979-.1299-.6257-.2884-.90025s-.3744-.51236-.6354-.69985c-.261-.18748-.562-.32097-.8858-.39283z" stroke="#df58a9" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2"/></g></svg>
\ No newline at end of file
1
0

[torbutton/maint-10.0] fixup! Bug 40026: Add feedback survey banner
by sysrqb@torproject.org 16 Feb '21
by sysrqb@torproject.org 16 Feb '21
16 Feb '21
commit 1138ead65a4d3083c9d9d9d819a5c23dd3264603
Author: Matthew Finkel <sysrqb(a)torproject.org>
Date: Tue Feb 16 21:32:26 2021 +0000
fixup! Bug 40026: Add feedback survey banner
---
chrome/content/aboutTor/aboutTor.xhtml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/aboutTor/aboutTor.xhtml b/chrome/content/aboutTor/aboutTor.xhtml
index 6121ea5e..fdc02593 100644
--- a/chrome/content/aboutTor/aboutTor.xhtml
+++ b/chrome/content/aboutTor/aboutTor.xhtml
@@ -72,7 +72,7 @@
<br />
<div id="surveyDescription">We put our users at the center of our development process. You can help us improve Tor Browser by completing this short survey about your experience:</div>
<br />
- <a id="surveyLink" target="_blank" href="https://survey.torproject.org/index.php/217469">Launch the Survey</a>
+ <a id="surveyLink" target="_blank" href="http://bogdyardcfurxcle.onion/index.php/217469">Launch the Survey</a>
</div>
</div>
1
0

16 Feb '21
commit ac4114cd6d036cc76b98a3b35fa98e7c8e96104a
Author: Matthew Finkel <sysrqb(a)torproject.org>
Date: Tue Feb 16 21:32:26 2021 +0000
fixup! Bug 40026: Add feedback survey banner
---
chrome/content/aboutTor/aboutTor.xhtml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/aboutTor/aboutTor.xhtml b/chrome/content/aboutTor/aboutTor.xhtml
index 0eca9976..a5ef1f1c 100644
--- a/chrome/content/aboutTor/aboutTor.xhtml
+++ b/chrome/content/aboutTor/aboutTor.xhtml
@@ -72,7 +72,7 @@
<br />
<div id="surveyDescription">We put our users at the center of our development process. You can help us improve Tor Browser by completing this short survey about your experience:</div>
<br />
- <a id="surveyLink" target="_blank" href="https://survey.torproject.org/index.php/217469">Launch the Survey</a>
+ <a id="surveyLink" target="_blank" href="http://bogdyardcfurxcle.onion/index.php/217469">Launch the Survey</a>
</div>
</div>
1
0
commit 5422d6088430108cbc5f407e83d8e792899f7cdd
Author: Matthew Finkel <sysrqb(a)torproject.org>
Date: Tue Feb 9 22:56:18 2021 +0000
Bug 40013: Add FF86 audit
---
audits/FF86_NETWORK_AUDIT | 140 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 140 insertions(+)
diff --git a/audits/FF86_NETWORK_AUDIT b/audits/FF86_NETWORK_AUDIT
new file mode 100644
index 0000000..74d76b0
--- /dev/null
+++ b/audits/FF86_NETWORK_AUDIT
@@ -0,0 +1,140 @@
+`git diff 5a2e34d5821fa203454eb9a8b12d7749a7c50d00 cb5d7889e9b8fb61fe5fe6c87f6b58e261be0ddb`
+and then go over all the changes containing the
+below mentioned potentially dangerous calls and features. Grep the diff for
+the following strings and examine surrounding usage.
+
+=============== Native DNS Portion =============
+
+PR_GetHostByName
+PR_GetIPNodeByName
+PR_GetAddrInfoByName
+PR_StringToNetAddr (itself is good as it passes AI_NUMERICHOST to getaddrinfo. No resolution.)
+
+MDNS
+TRR (DNS Trusted Recursive Resolver)
+Direct Paths to DNS resolution:
+nsDNSService::Resolve
+nsDNSService::AsyncResolve
+nsHostResolver::ResolveHost
+
+# FF86:
+# Bug 1652723 :
+# - Prefetch https rr in HTMLDNSPrefetch
+# - Review Result: Safe
+
+============ Misc Socket Portion ==============
+
+SOCK_
+SOCKET_
+_SOCKET
+
+# FF86:
+# - Bug 1685900
+# - Split internal and external contentPolicyType
+# - Review Result: Safe
+
+UDPSocket
+TCPSocket
+ PR_NewTCPSocket
+ AsyncTCPSocket
+
+Misc PR_Socket
+
+# FF86: Nothing of interest
+
+=========== Misc XPCOM Portion ================
+
+Misc XPCOM (including commands for pre-diff review approach)
+ *SocketProvider
+ grep -R udp-socket .
+ grep -R tcp-socket .
+ grep for tcpsocket
+ grep -R "NS_" | grep SOCKET | grep "_C"
+ grep -R "@mozilla.org/network/" . | grep socket | grep -v udp-socket
+
+# FF86:
+# Bug 1684982:
+# - Add a scope to XRE_mainRun
+# - Review Result: Safe
+
+# Bug 1681307
+# - clean up view-source utils now that .webShell property on the progress listener no longer exists
+# - Review Result: Safe
+
+============ Rust Portion ================
+
+Rust
+ - XXX: What do we grep for here? Or do we rely on Ritter's compile-time tool?
+ - Check for new sendmsg and recvmsg usage
+
+# FF86: Nothing of interest (mostly new neqo tests)
+
+============ Android Portion =============
+
+Android Java calls
+ - URLConnection
+ - XXX: getInputStream? other methods?
+ - HttpURLConnection
+ - UrlConnectionDownloader
+ - ch.boye.httpclientandroidlib.impl.client.* (look for execute() calls)
+ - grep -n openConnection\( mobile/android/thirdparty/
+ - java.net.URL -- has SEVERAL proxy bypass URL fetching methods :/
+ - java.net
+ - javax.net
+ - ch.boye.httpclientandroidlib.conn.* (esp ssl)
+ - ch.boye.httpclientandroidlib.impl.conn.* (esp ssl)
+ - Sudden appearance of thirdparty libs:
+ - OkHttp
+ - Retrofit
+ - Glide
+ - com.amitshekhar.android
+ - IntentHelper
+ - openUriExternal (can come from GeckoAppShell too)
+ - getHandlersForMimeType
+ - getHandlersForURL
+ - getHandlersForIntent
+ - android.content.Intent - too common; instead find launch methods:
+ - startActivity
+ - startActivities
+ - sendBroadcast
+ - sendOrderedBroadcast
+ - startService
+ - bindService
+ - android.app.PendingIntent
+ - android.app.DownloadManager
+ - ActivityHandlerHelper.startIntentAndCatch
+
+# FF86: Nothing new (using `java_audit.sh`)
+
+============ Application Services Portion =============
+
+Start: 4cc798c8cd8a1e38ce88e0bb22a05692be63b164 # v67.2.0
+End: 4cc798c8cd8a1e38ce88e0bb22a05692be63b164 # v67.2.0
+
+# FF86: Same tag as FF85
+
+============ Android Components Portion =============
+
+Start: 21ce9abdda0bc4001a72835fbbe7d71026ac0e66 # v70.0.16
+End: 4f36d0f93dab50e946a0dede0732c901c9942851 # v72.0.5
+
+# FF86 (using `java_audit.sh`)
+# Issue 8598:
+# - Adds ActivityDelegate to support the GeckoView delegate
+# - Review Result: Conditionally Safe
+# - Comment: Uses PendingIntent, safety depends on usage. Current
+# usage by new WebAuthn support in Fenix is safe.
+
+============ Fenix Portion =============
+
+Start: 24995d51a12d8e0bb10166f9f286c68d23b84a6a # v85.1.0
+End: 159c13ba04cdd8e4cd888b637d65e11e95241696 # v86.0.0-beta.2
+
+# FF86: Nothing new (using `java_audit.sh`)
+
+============ Regression/Prior Vuln Review =========
+
+Review proxy bypass bugs; check for new vectors to look for:
+ - https://trac.torproject.org/projects/tor/query?keywords=~tbb-proxy
+ - Look for new features like these. Especially external app launch vectors
+
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] 40209: Implement Basic Crypto Safety
by sysrqb@torproject.org 10 Feb '21
by sysrqb@torproject.org 10 Feb '21
10 Feb '21
commit cc7dcbbba2139416c2a4f4ab39ac04bc54f30f83
Author: sanketh <me(a)snkth.com>
Date: Mon Feb 8 20:12:44 2021 -0500
40209: Implement Basic Crypto Safety
Adds a CryptoSafety actor which detects when you've copied a crypto
address from a HTTP webpage and shows a warning.
Closes #40209.
---
browser/actors/CryptoSafetyChild.jsm | 87 ++++++++++++++++
browser/actors/CryptoSafetyParent.jsm | 142 +++++++++++++++++++++++++++
browser/actors/moz.build | 2 +
browser/base/content/popup-notifications.inc | 14 +++
browser/components/BrowserGlue.jsm | 17 ++++
browser/modules/TorStrings.jsm | 48 +++++++++
browser/themes/shared/browser.inc.css | 5 +
toolkit/content/license.html | 32 ++++++
toolkit/modules/Bech32Decode.jsm | 103 +++++++++++++++++++
toolkit/modules/moz.build | 1 +
10 files changed, 451 insertions(+)
diff --git a/browser/actors/CryptoSafetyChild.jsm b/browser/actors/CryptoSafetyChild.jsm
new file mode 100644
index 000000000000..87ff261d4915
--- /dev/null
+++ b/browser/actors/CryptoSafetyChild.jsm
@@ -0,0 +1,87 @@
+/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
+/* Copyright (c) 2020, The Tor Project, Inc.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+var EXPORTED_SYMBOLS = ["CryptoSafetyChild"];
+
+const { Bech32Decode } = ChromeUtils.import(
+ "resource://gre/modules/Bech32Decode.jsm"
+);
+
+const { XPCOMUtils } = ChromeUtils.import(
+ "resource://gre/modules/XPCOMUtils.jsm"
+);
+
+const kPrefCryptoSafety = "security.cryptoSafety";
+
+XPCOMUtils.defineLazyPreferenceGetter(
+ this,
+ "isCryptoSafetyEnabled",
+ kPrefCryptoSafety,
+ true /* defaults to true */
+);
+
+function looksLikeCryptoAddress(s) {
+ // P2PKH and P2SH addresses
+ // https://stackoverflow.com/a/24205650
+ const bitcoinAddr = /^[13][a-km-zA-HJ-NP-Z1-9]{25,39}$/;
+ if (bitcoinAddr.test(s)) {
+ return true;
+ }
+
+ // Bech32 addresses
+ if (Bech32Decode(s) !== null) {
+ return true;
+ }
+
+ // regular addresses
+ const etherAddr = /^0x[a-fA-F0-9]{40}$/;
+ if (etherAddr.test(s)) {
+ return true;
+ }
+
+ // t-addresses
+ // https://www.reddit.com/r/zec/comments/8mxj6x/simple_regex_to_validate_a_zca…
+ const zcashAddr = /^t1[a-zA-Z0-9]{33}$/;
+ if (zcashAddr.test(s)) {
+ return true;
+ }
+
+ // Standard, Integrated, and 256-bit Integrated addresses
+ // https://monero.stackexchange.com/a/10627
+ const moneroAddr = /^4(?:[0-9AB]|[1-9A-HJ-NP-Za-km-z]{12}(?:[1-9A-HJ-NP-Za-km-z]{30})?)[1-9A-HJ-NP-Za-km-z]{93}$/;
+ if (moneroAddr.test(s)) {
+ return true;
+ }
+
+ return false;
+}
+
+class CryptoSafetyChild extends JSWindowActorChild {
+ handleEvent(event) {
+ if (isCryptoSafetyEnabled) {
+ // Ignore non-HTTP addresses
+ if (!this.document.documentURIObject.schemeIs("http")) {
+ return;
+ }
+ // Ignore onion addresses
+ if (this.document.documentURIObject.host.endsWith(".onion")) {
+ return;
+ }
+
+ if (event.type == "copy" || event.type == "cut") {
+ this.contentWindow.navigator.clipboard.readText().then(clipText => {
+ const selection = clipText.trim();
+ if (looksLikeCryptoAddress(selection)) {
+ this.sendAsyncMessage("CryptoSafety:CopiedText", {
+ selection,
+ });
+ }
+ });
+ }
+ }
+ }
+}
diff --git a/browser/actors/CryptoSafetyParent.jsm b/browser/actors/CryptoSafetyParent.jsm
new file mode 100644
index 000000000000..bac151df5511
--- /dev/null
+++ b/browser/actors/CryptoSafetyParent.jsm
@@ -0,0 +1,142 @@
+/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
+/* Copyright (c) 2020, The Tor Project, Inc.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+var EXPORTED_SYMBOLS = ["CryptoSafetyParent"];
+
+const { XPCOMUtils } = ChromeUtils.import(
+ "resource://gre/modules/XPCOMUtils.jsm"
+);
+
+XPCOMUtils.defineLazyModuleGetters(this, {
+ TorStrings: "resource:///modules/TorStrings.jsm",
+});
+
+const kPrefCryptoSafety = "security.cryptoSafety";
+
+XPCOMUtils.defineLazyPreferenceGetter(
+ this,
+ "isCryptoSafetyEnabled",
+ kPrefCryptoSafety,
+ true /* defaults to true */
+);
+
+class CryptoSafetyParent extends JSWindowActorParent {
+ getBrowser() {
+ return this.browsingContext.top.embedderElement;
+ }
+
+ receiveMessage(aMessage) {
+ if (isCryptoSafetyEnabled) {
+ if (aMessage.name == "CryptoSafety:CopiedText") {
+ showPopup(this.getBrowser(), aMessage.data.selection);
+ }
+ }
+ }
+}
+
+function trimAddress(cryptoAddr) {
+ if (cryptoAddr.length <= 32) {
+ return cryptoAddr;
+ }
+ return cryptoAddr.substring(0, 32) + "...";
+}
+
+function showPopup(aBrowser, cryptoAddr) {
+ const chromeDoc = aBrowser.ownerDocument;
+ if (chromeDoc) {
+ const win = chromeDoc.defaultView;
+ const cryptoSafetyPrompt = new CryptoSafetyPrompt(
+ aBrowser,
+ win,
+ cryptoAddr
+ );
+ cryptoSafetyPrompt.show();
+ }
+}
+
+class CryptoSafetyPrompt {
+ constructor(aBrowser, aWin, cryptoAddr) {
+ this._browser = aBrowser;
+ this._win = aWin;
+ this._cryptoAddr = cryptoAddr;
+ }
+
+ show() {
+ const primaryAction = {
+ label: TorStrings.cryptoSafetyPrompt.primaryAction,
+ accessKey: TorStrings.cryptoSafetyPrompt.primaryActionAccessKey,
+ callback: () => {
+ this._win.torbutton_new_circuit();
+ },
+ };
+
+ const secondaryAction = {
+ label: TorStrings.cryptoSafetyPrompt.secondaryAction,
+ accessKey: TorStrings.cryptoSafetyPrompt.secondaryActionAccessKey,
+ callback: () => {},
+ };
+
+ let _this = this;
+ const options = {
+ popupIconURL: "chrome://browser/skin/cert-error.svg",
+ eventCallback(aTopic) {
+ if (aTopic === "showing") {
+ _this._onPromptShowing();
+ }
+ },
+ };
+
+ const cryptoWarningText = TorStrings.cryptoSafetyPrompt.cryptoWarning.replace(
+ "%S",
+ trimAddress(this._cryptoAddr)
+ );
+
+ if (this._win.PopupNotifications) {
+ this._prompt = this._win.PopupNotifications.show(
+ this._browser,
+ "crypto-safety-warning",
+ cryptoWarningText,
+ null /* anchor ID */,
+ primaryAction,
+ [secondaryAction],
+ options
+ );
+ }
+ }
+
+ _onPromptShowing() {
+ let xulDoc = this._browser.ownerDocument;
+
+ let whatCanHeading = xulDoc.getElementById(
+ "crypto-safety-warning-notification-what-can-heading"
+ );
+ if (whatCanHeading) {
+ whatCanHeading.textContent = TorStrings.cryptoSafetyPrompt.whatCanHeading;
+ }
+
+ let whatCanBody = xulDoc.getElementById(
+ "crypto-safety-warning-notification-what-can-body"
+ );
+ if (whatCanBody) {
+ whatCanBody.textContent = TorStrings.cryptoSafetyPrompt.whatCanBody;
+ }
+
+ let learnMoreElem = xulDoc.getElementById(
+ "crypto-safety-warning-notification-learnmore"
+ );
+ if (learnMoreElem) {
+ learnMoreElem.setAttribute(
+ "value",
+ TorStrings.cryptoSafetyPrompt.learnMore
+ );
+ learnMoreElem.setAttribute(
+ "href",
+ TorStrings.cryptoSafetyPrompt.learnMoreURL
+ );
+ }
+ }
+}
diff --git a/browser/actors/moz.build b/browser/actors/moz.build
index e70f0f09fe3a..9eb5ca397060 100644
--- a/browser/actors/moz.build
+++ b/browser/actors/moz.build
@@ -50,6 +50,8 @@ FINAL_TARGET_FILES.actors += [
'ContentSearchParent.jsm',
'ContextMenuChild.jsm',
'ContextMenuParent.jsm',
+ 'CryptoSafetyChild.jsm',
+ 'CryptoSafetyParent.jsm',
'DOMFullscreenChild.jsm',
'DOMFullscreenParent.jsm',
'FormValidationChild.jsm',
diff --git a/browser/base/content/popup-notifications.inc b/browser/base/content/popup-notifications.inc
index 42e17e90c648..ff6f8cdeca80 100644
--- a/browser/base/content/popup-notifications.inc
+++ b/browser/base/content/popup-notifications.inc
@@ -114,3 +114,17 @@
</vbox>
</popupnotificationfooter>
</popupnotification>
+
+ <popupnotification id="crypto-safety-warning-notification" hidden="true">
+ <popupnotificationcontent orient="vertical">
+ <description id="crypto-safety-warning-notification-desc"/>
+ <html:div id="crypto-safety-warning-notification-what-can">
+ <html:strong id="crypto-safety-warning-notification-what-can-heading" />
+ <html:br/>
+ <html:span id="crypto-safety-warning-notification-what-can-body" />
+ </html:div>
+ <label id="crypto-safety-warning-notification-learnmore"
+ class="popup-notification-learnmore-link"
+ is="text-link"/>
+ </popupnotificationcontent>
+ </popupnotification>
diff --git a/browser/components/BrowserGlue.jsm b/browser/components/BrowserGlue.jsm
index 3750230a250b..5f708fca3d5c 100644
--- a/browser/components/BrowserGlue.jsm
+++ b/browser/components/BrowserGlue.jsm
@@ -297,6 +297,23 @@ let JSWINDOWACTORS = {
allFrames: true,
},
+ CryptoSafety: {
+ parent: {
+ moduleURI: "resource:///actors/CryptoSafetyParent.jsm",
+ },
+
+ child: {
+ moduleURI: "resource:///actors/CryptoSafetyChild.jsm",
+ group: "browsers",
+ events: {
+ copy: { mozSystemGroup: true },
+ cut: { mozSystemGroup: true },
+ },
+ },
+
+ allFrames: true,
+ },
+
DOMFullscreen: {
parent: {
moduleURI: "resource:///actors/DOMFullscreenParent.jsm",
diff --git a/browser/modules/TorStrings.jsm b/browser/modules/TorStrings.jsm
index e8a8d37ae373..bf522234d588 100644
--- a/browser/modules/TorStrings.jsm
+++ b/browser/modules/TorStrings.jsm
@@ -101,6 +101,54 @@ class TorPropertyStringBundle {
Security Level Strings
*/
var TorStrings = {
+ /*
+ CryptoSafetyPrompt Strings
+ */
+ cryptoSafetyPrompt: (function() {
+ let tsb = new TorPropertyStringBundle(
+ "chrome://torbutton/locale/torbutton.properties",
+ "cryptoSafetyPrompt."
+ );
+ let getString = function(key, fallback) {
+ return tsb.getString(key, fallback);
+ };
+
+ let retval = {
+ cryptoWarning: getString(
+ "cryptoSafetyPrompt.cryptoWarning",
+ "A cryptocurrency address (%S) has been copied from an insecure website. It could have been modified."
+ ),
+ whatCanHeading: getString(
+ "cryptoSafetyPrompt.whatCanHeading",
+ "What can you do about it?"
+ ),
+ whatCanBody: getString(
+ "cryptoSafetyPrompt.whatCanBody",
+ "You can try reconnecting with a new circuit to establish a secure connection, or accept the risk and dismiss this warning."
+ ),
+ learnMore: getString("cryptoSafetyPrompt.learnMore", "Learn more"),
+ learnMoreURL: `https://support.torproject.org/${getLocale()}/`,
+ primaryAction: getString(
+ "cryptoSafetyPrompt.primaryAction",
+ "Reload Tab with a New Circuit"
+ ),
+ primaryActionAccessKey: getString(
+ "cryptoSafetyPrompt.primaryActionAccessKey",
+ "R"
+ ),
+ secondaryAction: getString(
+ "cryptoSafetyPrompt.secondaryAction",
+ "Dismiss Warning"
+ ),
+ secondaryActionAccessKey: getString(
+ "cryptoSafetyPrompt.secondaryActionAccessKey",
+ "D"
+ ),
+ };
+
+ return retval;
+ })() /* CryptoSafetyPrompt Strings */,
+
/*
Tor Browser Security Level Strings
*/
diff --git a/browser/themes/shared/browser.inc.css b/browser/themes/shared/browser.inc.css
index 0113466e8e56..4ef27d880754 100644
--- a/browser/themes/shared/browser.inc.css
+++ b/browser/themes/shared/browser.inc.css
@@ -620,3 +620,8 @@ menupopup::part(drop-indicator) {
#sharing-warning-proceed-to-tab:hover {
background-color: rgb(0,62,170);
}
+
+#crypto-safety-warning-notification-what-can {
+ display: block;
+ margin: 5px;
+}
diff --git a/toolkit/content/license.html b/toolkit/content/license.html
index e44c31ec6d4e..90995236b41b 100644
--- a/toolkit/content/license.html
+++ b/toolkit/content/license.html
@@ -72,6 +72,7 @@
<li><a href="about:license#arm">ARM License</a></li>
<li><a href="about:license#babel">Babel License</a></li>
<li><a href="about:license#babylon">Babylon License</a></li>
+ <li><a href="about:license#bech32">Bech32 License</a></li>
<li><a href="about:license#bincode">bincode License</a></li>
<li><a href="about:license#bsd2clause">BSD 2-Clause License</a></li>
<li><a href="about:license#bsd3clause">BSD 3-Clause License</a></li>
@@ -2795,6 +2796,37 @@ furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+</pre>
+
+
+ <hr>
+
+ <h1><a id="bech32"></a>Bech32 License</h1>
+
+ <p>This license applies to the file
+ <code>toolkit/modules/Bech32Decode.jsm</code>.
+ </p>
+
+<pre>
+Copyright (c) 2017 Pieter Wuille
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
diff --git a/toolkit/modules/Bech32Decode.jsm b/toolkit/modules/Bech32Decode.jsm
new file mode 100644
index 000000000000..3a2bc7ae0a10
--- /dev/null
+++ b/toolkit/modules/Bech32Decode.jsm
@@ -0,0 +1,103 @@
+// Adapted from the reference implementation of Bech32
+// https://github.com/sipa/bech32
+
+// Copyright (c) 2017 Pieter Wuille
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights
+// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the Software is
+// furnished to do so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in
+// all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+// THE SOFTWARE.
+
+"use strict";
+
+/**
+ * JS module implementation of Bech32 decoding adapted from the reference
+ * implementation https://github.com/sipa/bech32.
+ */
+
+var EXPORTED_SYMBOLS = ["Bech32Decode"];
+
+var CHARSET = "qpzry9x8gf2tvdw0s3jn54khce6mua7l";
+var GENERATOR = [0x3b6a57b2, 0x26508e6d, 0x1ea119fa, 0x3d4233dd, 0x2a1462b3];
+
+function polymod(values) {
+ var chk = 1;
+ for (var p = 0; p < values.length; ++p) {
+ var top = chk >> 25;
+ chk = ((chk & 0x1ffffff) << 5) ^ values[p];
+ for (var i = 0; i < 5; ++i) {
+ if ((top >> i) & 1) {
+ chk ^= GENERATOR[i];
+ }
+ }
+ }
+ return chk;
+}
+
+function hrpExpand(hrp) {
+ var ret = [];
+ var p;
+ for (p = 0; p < hrp.length; ++p) {
+ ret.push(hrp.charCodeAt(p) >> 5);
+ }
+ ret.push(0);
+ for (p = 0; p < hrp.length; ++p) {
+ ret.push(hrp.charCodeAt(p) & 31);
+ }
+ return ret;
+}
+
+function verifyChecksum(hrp, data) {
+ return polymod(hrpExpand(hrp).concat(data)) === 1;
+}
+
+function Bech32Decode(bechString) {
+ var p;
+ var has_lower = false;
+ var has_upper = false;
+ for (p = 0; p < bechString.length; ++p) {
+ if (bechString.charCodeAt(p) < 33 || bechString.charCodeAt(p) > 126) {
+ return null;
+ }
+ if (bechString.charCodeAt(p) >= 97 && bechString.charCodeAt(p) <= 122) {
+ has_lower = true;
+ }
+ if (bechString.charCodeAt(p) >= 65 && bechString.charCodeAt(p) <= 90) {
+ has_upper = true;
+ }
+ }
+ if (has_lower && has_upper) {
+ return null;
+ }
+ bechString = bechString.toLowerCase();
+ var pos = bechString.lastIndexOf("1");
+ if (pos < 1 || pos + 7 > bechString.length || bechString.length > 90) {
+ return null;
+ }
+ var hrp = bechString.substring(0, pos);
+ var data = [];
+ for (p = pos + 1; p < bechString.length; ++p) {
+ var d = CHARSET.indexOf(bechString.charAt(p));
+ if (d === -1) {
+ return null;
+ }
+ data.push(d);
+ }
+ if (!verifyChecksum(hrp, data)) {
+ return null;
+ }
+ return { hrp: hrp, data: data.slice(0, data.length - 6) };
+}
diff --git a/toolkit/modules/moz.build b/toolkit/modules/moz.build
index e1f1eb5759c5..698d2773a7ed 100644
--- a/toolkit/modules/moz.build
+++ b/toolkit/modules/moz.build
@@ -160,6 +160,7 @@ EXTRA_JS_MODULES += [
'ActorManagerParent.jsm',
'AppMenuNotifications.jsm',
'AsyncPrefs.jsm',
+ 'Bech32Decode.jsm',
'BinarySearch.jsm',
'BrowserUtils.jsm',
'CanonicalJSON.jsm',
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Merge remote-tracking branch 'sankethgl/40209-squashed-again' into tor-browser-78.7.1esr-10.5-1
by sysrqb@torproject.org 10 Feb '21
by sysrqb@torproject.org 10 Feb '21
10 Feb '21
commit 760b25c199910e2bd9ad4ef530ecb1516f1f0d5e
Merge: 46d47c8f0cb0 cc7dcbbba213
Author: Matthew Finkel <sysrqb(a)torproject.org>
Date: Wed Feb 10 18:57:15 2021 +0000
Merge remote-tracking branch 'sankethgl/40209-squashed-again' into tor-browser-78.7.1esr-10.5-1
browser/actors/CryptoSafetyChild.jsm | 87 ++++++++++++++++
browser/actors/CryptoSafetyParent.jsm | 142 +++++++++++++++++++++++++++
browser/actors/moz.build | 2 +
browser/base/content/popup-notifications.inc | 14 +++
browser/components/BrowserGlue.jsm | 17 ++++
browser/modules/TorStrings.jsm | 48 +++++++++
browser/themes/shared/browser.inc.css | 5 +
toolkit/content/license.html | 32 ++++++
toolkit/modules/Bech32Decode.jsm | 103 +++++++++++++++++++
toolkit/modules/moz.build | 1 +
10 files changed, 451 insertions(+)
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] fixup! Bug 10760: Integrate TorButton to TorBrowser core
by sysrqb@torproject.org 10 Feb '21
by sysrqb@torproject.org 10 Feb '21
10 Feb '21
commit 46d47c8f0cb0872f56ddb1abeac4b33e580cadc1
Author: Matthew Finkel <sysrqb(a)torproject.org>
Date: Wed Feb 10 00:07:03 2021 +0000
fixup! Bug 10760: Integrate TorButton to TorBrowser core
---
toolkit/torproject/torbutton | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/toolkit/torproject/torbutton b/toolkit/torproject/torbutton
index 28abe803ac50..edad4c65724f 160000
--- a/toolkit/torproject/torbutton
+++ b/toolkit/torproject/torbutton
@@ -1 +1 @@
-Subproject commit 28abe803ac506b792269568fe02a3813157de8ef
+Subproject commit edad4c65724fecfcacec5afd7e8c394f850d9f1d
1
0

10 Feb '21
commit edad4c65724fecfcacec5afd7e8c394f850d9f1d
Author: Matthew Finkel <sysrqb(a)torproject.org>
Date: Mon Feb 8 21:58:13 2021 +0000
Bug 40026: Add feedback survey banner
---
chrome/content/aboutTor/aboutTor.xhtml | 11 ++++++++
chrome/skin/aboutTor.css | 47 ++++++++++++++++++++++++++++++++++
chrome/skin/tor-survey-icon.svg | 1 +
3 files changed, 59 insertions(+)
diff --git a/chrome/content/aboutTor/aboutTor.xhtml b/chrome/content/aboutTor/aboutTor.xhtml
index 6c712a67..0eca9976 100644
--- a/chrome/content/aboutTor/aboutTor.xhtml
+++ b/chrome/content/aboutTor/aboutTor.xhtml
@@ -65,6 +65,17 @@
</form>
</div>
+ <div id="surveyBanner">
+ <img id="surveyImg" src="resource://torbutton-assets/tor-survey-icon.svg" />
+ <div id="surveyTextCol">
+ <div id="surveyHeader">We’d love to get your feedback</div>
+ <br />
+ <div id="surveyDescription">We put our users at the center of our development process. You can help us improve Tor Browser by completing this short survey about your experience:</div>
+ <br />
+ <a id="surveyLink" target="_blank" href="https://survey.torproject.org/index.php/217469">Launch the Survey</a>
+ </div>
+ </div>
+
<div id="bottom">
<p id="donate" class="moreInfoLink">&aboutTor.donationBanner.freeToUse;
<a href="https://donate.torproject.org/">&aboutTor.donationBanner.buttonA; »</a>
diff --git a/chrome/skin/aboutTor.css b/chrome/skin/aboutTor.css
index 8d5c4a83..d53e4060 100644
--- a/chrome/skin/aboutTor.css
+++ b/chrome/skin/aboutTor.css
@@ -212,6 +212,53 @@ body:not([showmanual]) .showForManual {
background-color: rgba(12, 12, 13, 0.1); /* same as Firefox's about:home */
}
+#surveyBanner {
+ width: 690px;
+ padding: 20px 25px 25px;
+ background: rgba(0, 0, 0, 0.3);
+ border-radius: 6px;
+ margin: 35px auto 0px;
+ display: flex;
+ flex-direction: row;
+ align-items: flex-start;
+ position: static;
+}
+
+@media only screen and (min-width: 900px) {
+ #surveyBanner {
+ margin: 35px 0px 0px 135px;
+ }
+}
+
+#surveyTextCol {
+ padding: 8px 0px 0px 15px;
+ font-size: 15px;
+ line-height: normal;
+ color: #FFFFFF;
+ width: 633px;
+}
+
+#surveyHeader {
+ font-weight: bold;
+}
+
+#surveyImg {
+ width: 32px;
+ position: static;
+}
+
+div.surveyDescription, div.surveyLink {
+ padding-top: 10px;
+}
+
+a#surveyLink {
+ text-decoration: underline;
+}
+
+a#surveyLink:hover {
+ text-decoration: none;
+}
+
/* #search-text is the search input field */
#search-text {
flex: 1;
diff --git a/chrome/skin/tor-survey-icon.svg b/chrome/skin/tor-survey-icon.svg
new file mode 100644
index 00000000..6e1eca1a
--- /dev/null
+++ b/chrome/skin/tor-survey-icon.svg
@@ -0,0 +1 @@
+<svg fill="none" height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg"><rect fill="#df58a9" height="32" rx="16" width="32"/><g fill="#240a3b"><path clip-rule="evenodd" d="m16.3397 25c-4.9708 0-8.99998-4.0295-8.99998-9.0002 0-4.9706 4.02918-8.9998 8.99998-8.9998 4.9706 0 9 4.0292 9 8.9998 0 4.9707-4.0294 9.0002-9 9.0002zm.0185-2.7279v1.091c4.0584-.01 7.3449-3.3024 7.3449-7.3633 0-4.0607-3.2865-7.35293-7.3449-7.36316v1.09101c3.4559.00997 6.2541 2.81395 6.2541 6.27215 0 3.4583-2.7982 6.2623-6.2541 6.2723zm3.527-6.2723c0 1.9519-1.5778 3.5344-3.527 3.5447v1.0907c2.552-.0099 4.618-2.0809 4.618-4.6354 0-2.5543-2.066-4.6253-4.618-4.6353v1.0908c1.9492.0102 3.527 1.5927 3.527 3.5445zm-3.527-1.9081c1.0456.01 1.8906.86 1.8906 1.908 0 1.0484-.845 1.8984-1.8906 1.9084z" fill-rule="evenodd"/><path d="m10.3461 4.99805c-.3237-.07201-.6639-.08099-1.00111-.02643s-.66484.17159-.96417.34441-.56449.39804-.78035.66279c-.21585.26475-.37816.56384-.47766.8802l-.2066.65635-.67173-.1492
5c-.65378-.14527-1.36067-.03082-1.96515.31818-.60449.349-1.05705.90396-1.25814 1.54278-.20108.63883-.13422 1.30922.18589 1.86362.32011.5545.86723.9476 1.52102 1.0928l.67172.1493 4.93018 1.0955 1.5164-4.81745.2066-.65635c.0997-.31632.1345-.64373.1027-.96352-.0319-.31979-.1299-.6257-.2884-.90025s-.3744-.51236-.6354-.69985c-.261-.18748-.562-.32097-.8858-.39283z" stroke="#df58a9" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2"/></g></svg>
\ No newline at end of file
1
0

[tor-browser/tor-browser-86.0b5-10.5-1] squash! TB4: Tor Browser's Firefox preference overrides.
by gk@torproject.org 09 Feb '21
by gk@torproject.org 09 Feb '21
09 Feb '21
commit 8c25821d4973f33459ad9a75fc181dd5fe431b34
Author: Georg Koppen <gk(a)torproject.org>
Date: Tue Feb 9 15:53:59 2021 +0000
squash! TB4: Tor Browser's Firefox preference overrides.
Bug 40322: Consider disabling network.connectivity-service.enabled
---
browser/app/profile/000-tor-browser.js | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js
index 5ffdc386042b..885a3fe4867b 100644
--- a/browser/app/profile/000-tor-browser.js
+++ b/browser/app/profile/000-tor-browser.js
@@ -267,8 +267,9 @@ pref("security.ssl.enable_false_start", true);
pref("network.http.connection-retry-timeout", 0);
pref("network.http.max-persistent-connections-per-proxy", 256);
pref("network.manage-offline-status", false);
-// No need to leak things to Mozilla, see bug 21790
+// No need to leak things to Mozilla, see bug 21790 and tor-browser#40322
pref("network.captive-portal-service.enabled", false);
+pref("network.connectivity-service.enabled", false);
// As a "defense in depth" measure, configure an empty push server URL (the
// DOM Push features are disabled by default via other prefs).
pref("dom.push.serverURL", "");
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] squash! TB4: Tor Browser's Firefox preference overrides.
by gk@torproject.org 09 Feb '21
by gk@torproject.org 09 Feb '21
09 Feb '21
commit 148c964c0812f2013e9e26758a3498e391687e16
Author: Georg Koppen <gk(a)torproject.org>
Date: Tue Feb 9 15:53:59 2021 +0000
squash! TB4: Tor Browser's Firefox preference overrides.
Bug 40322: Consider disabling network.connectivity-service.enabled
---
browser/app/profile/000-tor-browser.js | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js
index 1218ebfe3d49..3961eca0868a 100644
--- a/browser/app/profile/000-tor-browser.js
+++ b/browser/app/profile/000-tor-browser.js
@@ -260,8 +260,9 @@ pref("security.ssl.enable_false_start", true);
pref("network.http.connection-retry-timeout", 0);
pref("network.http.max-persistent-connections-per-proxy", 256);
pref("network.manage-offline-status", false);
-// No need to leak things to Mozilla, see bug 21790
+// No need to leak things to Mozilla, see bug 21790 and tor-browser#40322
pref("network.captive-portal-service.enabled", false);
+pref("network.connectivity-service.enabled", false);
// As a "defense in depth" measure, configure an empty push server URL (the
// DOM Push features are disabled by default via other prefs).
pref("dom.push.serverURL", "");
1
0

05 Feb '21
commit b52fb3fecb60de5efda0f53d127a4eefd31e0508
Author: Matthew Finkel <sysrqb(a)torproject.org>
Date: Fri Feb 5 17:31:02 2021 +0000
Release preparations for 10.5a10
Versions bump and Changelog update
---
projects/firefox-langpacks/config | 2 +-
projects/firefox/config | 2 +-
projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt | 4 ++++
rbm.conf | 4 ++--
4 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/projects/firefox-langpacks/config b/projects/firefox-langpacks/config
index 17a707a..34d6fad 100644
--- a/projects/firefox-langpacks/config
+++ b/projects/firefox-langpacks/config
@@ -4,7 +4,7 @@ filename: '[% project %]-[% c("version") %]-[% c("var/osname") %]-[% c("var/buil
var:
ff_version: '[% pc("firefox", "var/firefox_version") %]'
- ff_build: build2
+ ff_build: build1
input_filename: 'dl-langpack-[% c("var/ff_arch") %]-[% c("version") %]'
targets:
diff --git a/projects/firefox/config b/projects/firefox/config
index 00d45f3..e9df895 100644
--- a/projects/firefox/config
+++ b/projects/firefox/config
@@ -8,7 +8,7 @@ git_submodule: 1
gpg_keyring: torbutton.gpg
var:
- firefox_platform_version: 78.7.0
+ firefox_platform_version: 78.7.1
firefox_version: '[% c("var/firefox_platform_version") %]esr'
torbrowser_branch: 10.5
branding_directory: 'browser/branding/alpha'
diff --git a/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt b/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt
index f1bb8c4..12dd037 100644
--- a/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt
+++ b/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt
@@ -1,3 +1,7 @@
+Tor Browser 10.5a10 -- February 7 2021
+ * Windows
+ * Update Firefox to 78.7.1esr
+
Tor Browser 10.5a9 -- February 5 2021
* Android
* Update Fenix to 86.0.0-beta.2
diff --git a/rbm.conf b/rbm.conf
index a027f7c..76ab74b 100644
--- a/rbm.conf
+++ b/rbm.conf
@@ -24,10 +24,10 @@ buildconf:
git_signtag_opt: '-s'
var:
- torbrowser_version: '10.5a9'
+ torbrowser_version: '10.5a10'
torbrowser_build: 'build1'
torbrowser_incremental_from:
- - 10.5a7
+ - 10.5a8
project_name: tor-browser
multi_lingual: 0
build_mar: 1
1
0

[tor-browser-build/maint-10.0-desktop] Release preparation for 10.0.11
by gk@torproject.org 05 Feb '21
by gk@torproject.org 05 Feb '21
05 Feb '21
commit 1dd79281f904bfce4a9c5d4dfeb998367dc0b853
Author: Matthew Finkel <sysrqb(a)torproject.org>
Date: Fri Feb 5 16:55:12 2021 +0000
Release preparation for 10.0.11
Versions bump and Changelog update
---
projects/firefox-langpacks/config | 2 +-
projects/firefox/config | 6 +++---
projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt | 4 ++++
rbm.conf | 4 ++--
4 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/projects/firefox-langpacks/config b/projects/firefox-langpacks/config
index 17a707a..34d6fad 100644
--- a/projects/firefox-langpacks/config
+++ b/projects/firefox-langpacks/config
@@ -4,7 +4,7 @@ filename: '[% project %]-[% c("version") %]-[% c("var/osname") %]-[% c("var/buil
var:
ff_version: '[% pc("firefox", "var/firefox_version") %]'
- ff_build: build2
+ ff_build: build1
input_filename: 'dl-langpack-[% c("var/ff_arch") %]-[% c("version") %]'
targets:
diff --git a/projects/firefox/config b/projects/firefox/config
index 1ffe7b0..4aa0f72 100644
--- a/projects/firefox/config
+++ b/projects/firefox/config
@@ -1,14 +1,14 @@
# vim: filetype=yaml sw=2
version: '[% c("abbrev") %]'
filename: 'firefox-[% c("version") %]-[% c("var/osname") %]-[% c("var/build_id") %]'
-git_hash: 'tor-browser-[% c("var/firefox_version") %]-[% c("var/torbrowser_branch") %]-2-build1'
+git_hash: 'tor-browser-[% c("var/firefox_version") %]-[% c("var/torbrowser_branch") %]-1-build1'
tag_gpg_id: 1
git_url: https://git.torproject.org/tor-browser.git
git_submodule: 1
gpg_keyring: torbutton.gpg
var:
- firefox_platform_version: 78.7.0
+ firefox_platform_version: 78.7.1
firefox_version: '[% c("var/firefox_platform_version") %]esr'
torbrowser_branch: 10.0
branding_directory: 'browser/branding/alpha'
@@ -49,7 +49,7 @@ targets:
branding_directory: 'browser/branding/official'
nightly:
- git_hash: 'tor-browser-[% c("var/firefox_version") %]-[% c("var/torbrowser_branch") %]-2'
+ git_hash: 'tor-browser-[% c("var/firefox_version") %]-[% c("var/torbrowser_branch") %]-1'
tag_gpg_id: 0
var:
branding_directory: 'browser/branding/nightly'
diff --git a/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt b/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt
index 7714bfc..3342c5e 100644
--- a/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt
+++ b/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt
@@ -1,3 +1,7 @@
+Tor Browser 10.0.11 -- February 6 2021
+ * Windows
+ * Update Firefox to 78.7.1esr
+
Tor Browser 10.0.10 -- February 3 2021
* Windows + OS X + Linux
* Update NoScript to 11.2
diff --git a/rbm.conf b/rbm.conf
index ba9a51e..368fa3a 100644
--- a/rbm.conf
+++ b/rbm.conf
@@ -24,11 +24,11 @@ buildconf:
git_signtag_opt: '-s'
var:
- torbrowser_version: '10.0.10'
+ torbrowser_version: '10.0.11'
torbrowser_build: 'build1'
torbrowser_incremental_from:
- - 10.0.8
- 10.0.9
+ - 10.0.10
project_name: tor-browser
multi_lingual: 0
build_mar: 1
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#tor
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit d0efd6617c313f2c10bd014372521746acc60193
Author: Richard Pospesel <richard(a)torproject.org>
Date: Mon Sep 16 15:25:39 2019 -0700
Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#tor
This patch adds a new about:preferences#tor page which allows modifying
bridge, proxy, and firewall settings from within Tor Browser. All of the
functionality present in tor-launcher's Network Configuration panel is
present:
- Setting built-in bridges
- Requesting bridges from BridgeDB via moat
- Using user-provided bridges
- Configuring SOCKS4, SOCKS5, and HTTP/HTTPS proxies
- Setting firewall ports
- Viewing and Copying Tor's logs
- The Networking Settings in General preferences has been removed
---
browser/components/moz.build | 1 +
browser/components/preferences/main.inc.xhtml | 55 --
browser/components/preferences/main.js | 14 -
browser/components/preferences/preferences.js | 9 +
browser/components/preferences/preferences.xhtml | 5 +
browser/components/preferences/privacy.js | 1 +
.../torpreferences/content/parseFunctions.jsm | 89 +++
.../torpreferences/content/requestBridgeDialog.jsm | 202 +++++
.../content/requestBridgeDialog.xhtml | 35 +
.../torpreferences/content/torBridgeSettings.jsm | 325 ++++++++
.../torpreferences/content/torCategory.inc.xhtml | 9 +
.../torpreferences/content/torFirewallSettings.jsm | 72 ++
.../torpreferences/content/torLogDialog.jsm | 66 ++
.../torpreferences/content/torLogDialog.xhtml | 23 +
.../components/torpreferences/content/torPane.js | 857 +++++++++++++++++++++
.../torpreferences/content/torPane.xhtml | 123 +++
.../torpreferences/content/torPreferences.css | 77 ++
.../torpreferences/content/torPreferencesIcon.svg | 5 +
.../torpreferences/content/torProxySettings.jsm | 245 ++++++
browser/components/torpreferences/jar.mn | 14 +
browser/components/torpreferences/moz.build | 1 +
browser/modules/BridgeDB.jsm | 110 +++
browser/modules/TorProtocolService.jsm | 212 +++++
browser/modules/moz.build | 2 +
24 files changed, 2483 insertions(+), 69 deletions(-)
diff --git a/browser/components/moz.build b/browser/components/moz.build
index cb6eeb9164ef..09e209dc9c3b 100644
--- a/browser/components/moz.build
+++ b/browser/components/moz.build
@@ -58,6 +58,7 @@ DIRS += [
'syncedtabs',
'uitour',
'urlbar',
+ 'torpreferences',
'translation',
]
diff --git a/browser/components/preferences/main.inc.xhtml b/browser/components/preferences/main.inc.xhtml
index f3502e87af98..37ac50ee940b 100644
--- a/browser/components/preferences/main.inc.xhtml
+++ b/browser/components/preferences/main.inc.xhtml
@@ -676,59 +676,4 @@
<label id="cfrFeaturesLearnMore" class="learnMore" data-l10n-id="browsing-cfr-recommendations-learn-more" is="text-link"/>
</hbox>
</groupbox>
-
-<hbox id="networkProxyCategory"
- class="subcategory"
- hidden="true"
- data-category="paneGeneral">
- <html:h1 data-l10n-id="network-settings-title"/>
-</hbox>
-
-<!-- Network Settings-->
-<groupbox id="connectionGroup" data-category="paneGeneral" hidden="true">
- <label class="search-header" hidden="true"><html:h2 data-l10n-id="network-settings-title"/></label>
-
- <hbox align="center">
- <hbox align="center" flex="1">
- <description id="connectionSettingsDescription" control="connectionSettings"/>
- <spacer width="5"/>
- <label id="connectionSettingsLearnMore" class="learnMore" is="text-link"
- data-l10n-id="network-proxy-connection-learn-more">
- </label>
- <separator orient="vertical"/>
- </hbox>
-
- <!-- Please don't remove the wrapping hbox/vbox/box for these elements. It's used to properly compute the search tooltip position. -->
- <hbox>
- <button id="connectionSettings"
- is="highlightable-button"
- class="accessory-button"
- data-l10n-id="network-proxy-connection-settings"
- searchkeywords="doh trr"
- search-l10n-ids="
- connection-window.title,
- connection-proxy-option-no.label,
- connection-proxy-option-auto.label,
- connection-proxy-option-system.label,
- connection-proxy-option-manual.label,
- connection-proxy-http,
- connection-proxy-https,
- connection-proxy-ftp,
- connection-proxy-http-port,
- connection-proxy-socks,
- connection-proxy-socks4,
- connection-proxy-socks5,
- connection-proxy-noproxy,
- connection-proxy-noproxy-desc,
- connection-proxy-http-sharing.label,
- connection-proxy-autotype.label,
- connection-proxy-reload.label,
- connection-proxy-autologin.label,
- connection-proxy-socks-remote-dns.label,
- connection-dns-over-https.label,
- connection-dns-over-https-url-custom.label,
- " />
- </hbox>
- </hbox>
-</groupbox>
</html:template>
diff --git a/browser/components/preferences/main.js b/browser/components/preferences/main.js
index 9f36871d6303..6b258429e773 100644
--- a/browser/components/preferences/main.js
+++ b/browser/components/preferences/main.js
@@ -361,15 +361,6 @@ var gMainPane = {
});
this.updatePerformanceSettingsBox({ duringChangeEvent: false });
this.displayUseSystemLocale();
- let connectionSettingsLink = document.getElementById(
- "connectionSettingsLearnMore"
- );
- let connectionSettingsUrl =
- Services.urlFormatter.formatURLPref("app.support.baseURL") +
- "prefs-connection-settings";
- connectionSettingsLink.setAttribute("href", connectionSettingsUrl);
- this.updateProxySettingsUI();
- initializeProxyUI(gMainPane);
if (Services.prefs.getBoolPref("intl.multilingual.enabled")) {
gMainPane.initBrowserLocale();
@@ -503,11 +494,6 @@ var gMainPane = {
"change",
gMainPane.updateHardwareAcceleration.bind(gMainPane)
);
- setEventListener(
- "connectionSettings",
- "command",
- gMainPane.showConnections
- );
setEventListener(
"browserContainersCheckbox",
"command",
diff --git a/browser/components/preferences/preferences.js b/browser/components/preferences/preferences.js
index 27e9763a1f9e..089533f20ade 100644
--- a/browser/components/preferences/preferences.js
+++ b/browser/components/preferences/preferences.js
@@ -13,6 +13,7 @@
/* import-globals-from findInPage.js */
/* import-globals-from ../../base/content/utilityOverlay.js */
/* import-globals-from ../../../toolkit/content/preferencesBindings.js */
+/* import-globals-from ../torpreferences/content/torPane.js */
"use strict";
@@ -91,6 +92,14 @@ function init_all() {
document.getElementById("template-paneSync").remove();
}
register_module("paneSearchResults", gSearchResultsPane);
+ if (gTorPane.enabled) {
+ document.getElementById("category-tor").hidden = false;
+ register_module("paneTor", gTorPane);
+ } else {
+ // Remove the pane from the DOM so it doesn't get incorrectly included in search results.
+ document.getElementById("template-paneTor").remove();
+ }
+
gSearchResultsPane.init();
gMainPane.preInit();
diff --git a/browser/components/preferences/preferences.xhtml b/browser/components/preferences/preferences.xhtml
index c176457c68fd..2a99400bfb70 100644
--- a/browser/components/preferences/preferences.xhtml
+++ b/browser/components/preferences/preferences.xhtml
@@ -13,6 +13,7 @@
<?xml-stylesheet href="chrome://browser/skin/preferences/containers.css"?>
<?xml-stylesheet href="chrome://browser/skin/preferences/privacy.css"?>
<?xml-stylesheet href="chrome://browser/content/securitylevel/securityLevelPreferences.css"?>
+<?xml-stylesheet href="chrome://browser/content/torpreferences/torPreferences.css"?>
<!DOCTYPE html [
<!ENTITY % aboutTorDTD SYSTEM "chrome://torbutton/locale/aboutTor.dtd">
@@ -141,6 +142,9 @@
<image class="category-icon"/>
<label class="category-name" flex="1" data-l10n-id="pane-sync-title2"></label>
</richlistitem>
+
+#include ../torpreferences/content/torCategory.inc.xhtml
+
</richlistbox>
<spacer flex="1"/>
@@ -200,6 +204,7 @@
#include privacy.inc.xhtml
#include containers.inc.xhtml
#include sync.inc.xhtml
+#include ../torpreferences/content/torPane.xhtml
</vbox>
</vbox>
</vbox>
diff --git a/browser/components/preferences/privacy.js b/browser/components/preferences/privacy.js
index 949fa84c24ab..35e1fda9f96b 100644
--- a/browser/components/preferences/privacy.js
+++ b/browser/components/preferences/privacy.js
@@ -77,6 +77,7 @@ XPCOMUtils.defineLazyGetter(this, "AlertsServiceDND", function() {
}
});
+// TODO: module import via ChromeUtils.defineModuleGetter
XPCOMUtils.defineLazyScriptGetter(
this,
["SecurityLevelPreferences"],
diff --git a/browser/components/torpreferences/content/parseFunctions.jsm b/browser/components/torpreferences/content/parseFunctions.jsm
new file mode 100644
index 000000000000..954759de63a5
--- /dev/null
+++ b/browser/components/torpreferences/content/parseFunctions.jsm
@@ -0,0 +1,89 @@
+"use strict";
+
+var EXPORTED_SYMBOLS = [
+ "parsePort",
+ "parseAddrPort",
+ "parseUsernamePassword",
+ "parseAddrPortList",
+ "parseBridgeStrings",
+ "parsePortList",
+];
+
+// expects a string representation of an integer from 1 to 65535
+let parsePort = function(aPort) {
+ // ensure port string is a valid positive integer
+ const validIntRegex = /^[0-9]+$/;
+ if (!validIntRegex.test(aPort)) {
+ throw new Error(`Invalid PORT string : '${aPort}'`);
+ }
+
+ // ensure port value is on valid range
+ let port = Number.parseInt(aPort);
+ if (port < 1 || port > 65535) {
+ throw new Error(
+ `Invalid PORT value, needs to be on range [1,65535] : '${port}'`
+ );
+ }
+
+ return port;
+};
+// expects a string in the format: "ADDRESS:PORT"
+let parseAddrPort = function(aAddrColonPort) {
+ let tokens = aAddrColonPort.split(":");
+ if (tokens.length != 2) {
+ throw new Error(`Invalid ADDRESS:PORT string : '${aAddrColonPort}'`);
+ }
+ let address = tokens[0];
+ let port = parsePort(tokens[1]);
+ return [address, port];
+};
+
+// expects a string in the format: "USERNAME:PASSWORD"
+// split on the first colon and any subsequent go into password
+let parseUsernamePassword = function(aUsernameColonPassword) {
+ let colonIndex = aUsernameColonPassword.indexOf(":");
+ if (colonIndex < 0) {
+ // we don't log the contents of the potentially password containing string
+ throw new Error("Invalid USERNAME:PASSWORD string");
+ }
+
+ let username = aUsernameColonPassword.substring(0, colonIndex);
+ let password = aUsernameColonPassword.substring(colonIndex + 1);
+
+ return [username, password];
+};
+
+// expects a string in the format: ADDRESS:PORT,ADDRESS:PORT,...
+// returns array of ports (as ints)
+let parseAddrPortList = function(aAddrPortList) {
+ let addrPorts = aAddrPortList.split(",");
+ // parse ADDRESS:PORT string and only keep the port (second element in returned array)
+ let retval = addrPorts.map(addrPort => parseAddrPort(addrPort)[1]);
+ return retval;
+};
+
+// expects a '/n' or '/r/n' delimited bridge string, which we split and trim
+// each bridge string can also optionally have 'bridge' at the beginning ie:
+// bridge $(type) $(address):$(port) $(certificate)
+// we strip out the 'bridge' prefix here
+let parseBridgeStrings = function(aBridgeStrings) {
+
+ // replace carriage returns ('\r') with new lines ('\n')
+ aBridgeStrings = aBridgeStrings.replace(/\r/g, "\n");
+ // then replace contiguous new lines ('\n') with a single one
+ aBridgeStrings = aBridgeStrings.replace(/[\n]+/g, "\n");
+
+ // split on the newline and for each bridge string: trim, remove starting 'bridge' string
+ // finally discard entries that are empty strings; empty strings could occur if we receive
+ // a new line containing only whitespace
+ let splitStrings = aBridgeStrings.split("\n");
+ return splitStrings.map(val => val.trim().replace(/^bridge\s+/i, ""))
+ .filter(bridgeString => bridgeString != "");
+};
+
+// expecting a ',' delimited list of ints with possible white space between
+// returns an array of ints
+let parsePortList = function(aPortListString) {
+ let splitStrings = aPortListString.split(",");
+ return splitStrings.map(val => parsePort(val.trim()));
+};
diff --git a/browser/components/torpreferences/content/requestBridgeDialog.jsm b/browser/components/torpreferences/content/requestBridgeDialog.jsm
new file mode 100644
index 000000000000..45419d001a7b
--- /dev/null
+++ b/browser/components/torpreferences/content/requestBridgeDialog.jsm
@@ -0,0 +1,202 @@
+"use strict";
+
+var EXPORTED_SYMBOLS = ["RequestBridgeDialog"];
+
+const { BridgeDB } = ChromeUtils.import("resource:///modules/BridgeDB.jsm");
+const { TorStrings } = ChromeUtils.import("resource:///modules/TorStrings.jsm");
+
+class RequestBridgeDialog {
+ constructor() {
+ this._dialog = null;
+ this._submitButton = null;
+ this._dialogDescription = null;
+ this._captchaImage = null;
+ this._captchaEntryTextbox = null;
+ this._captchaRefreshButton = null;
+ this._incorrectCaptchaHbox = null;
+ this._incorrectCaptchaLabel = null;
+ this._bridges = [];
+ this._proxyURI = null;
+ }
+
+ static get selectors() {
+ return {
+ submitButton:
+ "accept" /* not really a selector but a key for dialog's getButton */,
+ dialogDescription: "description#torPreferences-requestBridge-description",
+ captchaImage: "image#torPreferences-requestBridge-captchaImage",
+ captchaEntryTextbox: "input#torPreferences-requestBridge-captchaTextbox",
+ refreshCaptchaButton:
+ "button#torPreferences-requestBridge-refreshCaptchaButton",
+ incorrectCaptchaHbox:
+ "hbox#torPreferences-requestBridge-incorrectCaptchaHbox",
+ incorrectCaptchaLabel:
+ "label#torPreferences-requestBridge-incorrectCaptchaError",
+ };
+ }
+
+ _populateXUL(dialog) {
+ const selectors = RequestBridgeDialog.selectors;
+
+ this._dialog = dialog;
+ const dialogWin = dialog.parentElement;
+ dialogWin.setAttribute(
+ "title",
+ TorStrings.settings.requestBridgeDialogTitle
+ );
+ // user may have opened a Request Bridge dialog in another tab, so update the
+ // CAPTCHA image or close out the dialog if we have a bridge list
+ this._dialog.addEventListener("focusin", () => {
+ const uri = BridgeDB.currentCaptchaImage;
+ const bridges = BridgeDB.currentBridges;
+
+ // new captcha image
+ if (uri) {
+ this._setcaptchaImage(uri);
+ } else if (bridges) {
+ this._bridges = bridges;
+ this._submitButton.disabled = false;
+ this._dialog.cancelDialog();
+ }
+ });
+
+ this._submitButton = this._dialog.getButton(selectors.submitButton);
+ this._submitButton.setAttribute("label", TorStrings.settings.submitCaptcha);
+ this._submitButton.disabled = true;
+ this._dialog.addEventListener("dialogaccept", e => {
+ e.preventDefault();
+ this.onSubmitCaptcha();
+ });
+
+ this._dialogDescription = this._dialog.querySelector(
+ selectors.dialogDescription
+ );
+ this._dialogDescription.textContent =
+ TorStrings.settings.contactingBridgeDB;
+
+ this._captchaImage = this._dialog.querySelector(selectors.captchaImage);
+
+ // request captcha from bridge db
+ BridgeDB.requestNewCaptchaImage(this._proxyURI).then(uri => {
+ this._setcaptchaImage(uri);
+ });
+
+ this._captchaEntryTextbox = this._dialog.querySelector(
+ selectors.captchaEntryTextbox
+ );
+ this._captchaEntryTextbox.setAttribute(
+ "placeholder",
+ TorStrings.settings.captchaTextboxPlaceholder
+ );
+ this._captchaEntryTextbox.disabled = true;
+ // disable submit if entry textbox is empty
+ this._captchaEntryTextbox.oninput = () => {
+ this._submitButton.disabled = this._captchaEntryTextbox.value == "";
+ };
+
+ this._captchaRefreshButton = this._dialog.querySelector(
+ selectors.refreshCaptchaButton
+ );
+ this._captchaRefreshButton.disabled = true;
+
+ this._incorrectCaptchaHbox = this._dialog.querySelector(
+ selectors.incorrectCaptchaHbox
+ );
+ this._incorrectCaptchaLabel = this._dialog.querySelector(
+ selectors.incorrectCaptchaLabel
+ );
+ this._incorrectCaptchaLabel.setAttribute(
+ "value",
+ TorStrings.settings.incorrectCaptcha
+ );
+
+ return true;
+ }
+
+ _setcaptchaImage(uri) {
+ if (uri != this._captchaImage.src) {
+ this._captchaImage.src = uri;
+ this._dialogDescription.textContent = TorStrings.settings.solveTheCaptcha;
+ this._setUIDisabled(false);
+ this._captchaEntryTextbox.focus();
+ this._captchaEntryTextbox.select();
+ }
+ }
+
+ _setUIDisabled(disabled) {
+ this._submitButton.disabled = this._captchaGuessIsEmpty() || disabled;
+ this._captchaEntryTextbox.disabled = disabled;
+ this._captchaRefreshButton.disabled = disabled;
+ }
+
+ _captchaGuessIsEmpty() {
+ return this._captchaEntryTextbox.value == "";
+ }
+
+ init(window, dialog) {
+ // defer to later until firefox has populated the dialog with all our elements
+ window.setTimeout(() => {
+ this._populateXUL(dialog);
+ }, 0);
+ }
+
+ close() {
+ BridgeDB.close();
+ }
+
+ /*
+ Event Handlers
+ */
+ onSubmitCaptcha() {
+ let captchaText = this._captchaEntryTextbox.value.trim();
+ // noop if the field is empty
+ if (captchaText == "") {
+ return;
+ }
+
+ // freeze ui while we make request
+ this._setUIDisabled(true);
+ this._incorrectCaptchaHbox.style.visibility = "hidden";
+
+ BridgeDB.submitCaptchaGuess(captchaText)
+ .then(aBridges => {
+ this._bridges = aBridges;
+
+ this._submitButton.disabled = false;
+ // This was successful, but use cancelDialog() to close, since
+ // we intercept the `dialogaccept` event.
+ this._dialog.cancelDialog();
+ })
+ .catch(aError => {
+ this._bridges = [];
+ this._setUIDisabled(false);
+ this._incorrectCaptchaHbox.style.visibility = "visible";
+ });
+ }
+
+ onRefreshCaptcha() {
+ this._setUIDisabled(true);
+ this._captchaImage.src = "";
+ this._dialogDescription.textContent =
+ TorStrings.settings.contactingBridgeDB;
+ this._captchaEntryTextbox.value = "";
+ this._incorrectCaptchaHbox.style.visibility = "hidden";
+
+ BridgeDB.requestNewCaptchaImage(this._proxyURI).then(uri => {
+ this._setcaptchaImage(uri);
+ });
+ }
+
+ openDialog(gSubDialog, aProxyURI, aCloseCallback) {
+ this._proxyURI = aProxyURI;
+ gSubDialog.open(
+ "chrome://browser/content/torpreferences/requestBridgeDialog.xhtml",
+ "resizable=yes",
+ this,
+ () => {
+ this.close();
+ aCloseCallback(this._bridges);
+ }
+ );
+ }
+}
diff --git a/browser/components/torpreferences/content/requestBridgeDialog.xhtml b/browser/components/torpreferences/content/requestBridgeDialog.xhtml
new file mode 100644
index 000000000000..64c4507807fb
--- /dev/null
+++ b/browser/components/torpreferences/content/requestBridgeDialog.xhtml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
+<?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css"?>
+<?xml-stylesheet href="chrome://browser/content/torpreferences/torPreferences.css"?>
+
+<window type="child"
+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
+ xmlns:html="http://www.w3.org/1999/xhtml">
+<dialog id="torPreferences-requestBridge-dialog"
+ buttons="accept,cancel">
+ <!-- ok, so ​ is a zero-width space. We need to have *something* in the innerText so that XUL knows how tall the
+ description node is so that it can determine how large to make the dialog element's inner draw area. If we have
+ nothing in the innerText, then it collapse to 0 height, and the contents of the dialog ends up partially hidden >:( -->
+ <description id="torPreferences-requestBridge-description">​</description>
+ <!-- init to transparent 400x125 png -->
+ <image id="torPreferences-requestBridge-captchaImage" flex="1"/>
+ <hbox id="torPreferences-requestBridge-inputHbox">
+ <html:input id="torPreferences-requestBridge-captchaTextbox" type="text" style="-moz-box-flex: 1;"/>
+ <button id="torPreferences-requestBridge-refreshCaptchaButton"
+ image="chrome://browser/skin/reload.svg"
+ oncommand="requestBridgeDialog.onRefreshCaptcha();"/>
+ </hbox>
+ <hbox id="torPreferences-requestBridge-incorrectCaptchaHbox" align="center">
+ <image id="torPreferences-requestBridge-errorIcon" />
+ <label id="torPreferences-requestBridge-incorrectCaptchaError" flex="1"/>
+ </hbox>
+ <script type="application/javascript"><![CDATA[
+ "use strict";
+
+ let requestBridgeDialog = window.arguments[0];
+ let dialog = document.getElementById("torPreferences-requestBridge-dialog");
+ requestBridgeDialog.init(window, dialog);
+ ]]></script>
+</dialog>
+</window>
\ No newline at end of file
diff --git a/browser/components/torpreferences/content/torBridgeSettings.jsm b/browser/components/torpreferences/content/torBridgeSettings.jsm
new file mode 100644
index 000000000000..ceb61d3ec972
--- /dev/null
+++ b/browser/components/torpreferences/content/torBridgeSettings.jsm
@@ -0,0 +1,325 @@
+"use strict";
+
+var EXPORTED_SYMBOLS = [
+ "TorBridgeSource",
+ "TorBridgeSettings",
+ "makeTorBridgeSettingsNone",
+ "makeTorBridgeSettingsBuiltin",
+ "makeTorBridgeSettingsBridgeDB",
+ "makeTorBridgeSettingsUserProvided",
+];
+
+const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
+const { TorProtocolService } = ChromeUtils.import(
+ "resource:///modules/TorProtocolService.jsm"
+);
+const { TorStrings } = ChromeUtils.import("resource:///modules/TorStrings.jsm");
+
+const TorBridgeSource = {
+ NONE: "NONE",
+ BUILTIN: "BUILTIN",
+ BRIDGEDB: "BRIDGEDB",
+ USERPROVIDED: "USERPROVIDED",
+};
+
+class TorBridgeSettings {
+ constructor() {
+ this._bridgeSource = TorBridgeSource.NONE;
+ this._selectedDefaultBridgeType = null;
+ this._bridgeStrings = [];
+ }
+
+ get selectedDefaultBridgeType() {
+ if (this._bridgeSource == TorBridgeSource.BUILTIN) {
+ return this._selectedDefaultBridgeType;
+ }
+ return undefined;
+ }
+
+ get bridgeSource() {
+ return this._bridgeSource;
+ }
+
+ // for display
+ get bridgeStrings() {
+ return this._bridgeStrings.join("\n");
+ }
+
+ // raw
+ get bridgeStringsArray() {
+ return this._bridgeStrings;
+ }
+
+ static get defaultBridgeTypes() {
+ if (TorBridgeSettings._defaultBridgeTypes) {
+ return TorBridgeSettings._defaultBridgeTypes;
+ }
+
+ let bridgeListBranch = Services.prefs.getBranch(
+ TorStrings.preferenceBranches.defaultBridge
+ );
+ let bridgePrefs = bridgeListBranch.getChildList("", {});
+
+ // an unordered set for shoving bridge types into
+ let bridgeTypes = new Set();
+ // look for keys ending in ".N" and treat string before that as the bridge type
+ const pattern = /\.[0-9]+$/;
+ for (const key of bridgePrefs) {
+ const offset = key.search(pattern);
+ if (offset != -1) {
+ const bt = key.substring(0, offset);
+ bridgeTypes.add(bt);
+ }
+ }
+
+ // recommended bridge type goes first in the list
+ let recommendedBridgeType = Services.prefs.getCharPref(
+ TorStrings.preferenceKeys.recommendedBridgeType,
+ null
+ );
+
+ let retval = [];
+ if (recommendedBridgeType && bridgeTypes.has(recommendedBridgeType)) {
+ retval.push(recommendedBridgeType);
+ }
+
+ for (const bridgeType of bridgeTypes.values()) {
+ if (bridgeType != recommendedBridgeType) {
+ retval.push(bridgeType);
+ }
+ }
+
+ // cache off
+ TorBridgeSettings._defaultBridgeTypes = retval;
+ return retval;
+ }
+
+ _readDefaultBridges(aBridgeType) {
+ let bridgeBranch = Services.prefs.getBranch(
+ TorStrings.preferenceBranches.defaultBridge
+ );
+ let bridgeBranchPrefs = bridgeBranch.getChildList("", {});
+
+ let retval = [];
+
+ // regex matches against strings ending in ".N" where N is a positive integer
+ let pattern = /\.[0-9]+$/;
+ for (const key of bridgeBranchPrefs) {
+ // verify the location of the match is the correct offset required for aBridgeType
+ // to fit, and that the string begins with aBridgeType
+ if (
+ key.search(pattern) == aBridgeType.length &&
+ key.startsWith(aBridgeType)
+ ) {
+ let bridgeStr = bridgeBranch.getCharPref(key);
+ retval.push(bridgeStr);
+ }
+ }
+
+ // fisher-yates shuffle
+ // shuffle so that Tor Browser users don't all try the built-in bridges in the same order
+ for (let i = retval.length - 1; i > 0; --i) {
+ // number n such that 0.0 <= n < 1.0
+ const n = Math.random();
+ // integer j such that 0 <= j <= i
+ const j = Math.floor(n * (i + 1));
+
+ // swap values at indices i and j
+ const tmp = retval[i];
+ retval[i] = retval[j];
+ retval[j] = tmp;
+ }
+
+ return retval;
+ }
+
+ _readBridgeDBBridges() {
+ let bridgeBranch = Services.prefs.getBranch(
+ `${TorStrings.preferenceBranches.bridgeDBBridges}`
+ );
+ let bridgeBranchPrefs = bridgeBranch.getChildList("", {});
+ // the child prefs do not come in any particular order so sort the keys
+ // so the values can be compared to what we get out off torrc
+ bridgeBranchPrefs.sort();
+
+ // just assume all of the prefs under the parent point to valid bridge string
+ let retval = bridgeBranchPrefs.map(key =>
+ bridgeBranch.getCharPref(key).trim()
+ );
+
+ return retval;
+ }
+
+ _readTorrcBridges() {
+ let bridgeList = TorProtocolService.readStringArraySetting(
+ TorStrings.configKeys.bridgeList
+ );
+
+ let retval = [];
+ for (const line of bridgeList) {
+ let trimmedLine = line.trim();
+ if (trimmedLine) {
+ retval.push(trimmedLine);
+ }
+ }
+
+ return retval;
+ }
+
+ // analagous to initBridgeSettings()
+ readSettings() {
+ // restore to defaults
+ this._bridgeSource = TorBridgeSource.NONE;
+ this._selectedDefaultBridgeType = null;
+ this._bridgeStrings = [];
+
+ // So the way tor-launcher determines the origin of the configured bridges is a bit
+ // weird and depends on inferring our scenario based on some firefox prefs and the
+ // relationship between the saved list of bridges in about:config vs the list saved in torrc
+
+ // first off, if "extensions.torlauncher.default_bridge_type" is set to one of our
+ // builtin default types (obfs4, meek-azure, snowflake, etc) then we provide the
+ // bridges in "extensions.torlauncher.default_bridge.*" (filtered by our default_bridge_type)
+
+ // next, we compare the list of bridges saved in torrc to the bridges stored in the
+ // "extensions.torlauncher.bridgedb_bridge."" branch. If they match *exactly* then we assume
+ // the bridges were retrieved from BridgeDB and use those. If the torrc list is empty then we know
+ // we have no bridge settings
+
+ // finally, if none of the previous conditions are not met, it is assumed the bridges stored in
+ // torrc are user-provided
+
+ // what we should(?) do once we excise tor-launcher entirely is explicitly store an int/enum in
+ // about:config that tells us which scenario we are in so we don't have to guess
+
+ let defaultBridgeType = Services.prefs.getCharPref(
+ TorStrings.preferenceKeys.defaultBridgeType,
+ null
+ );
+
+ // check if source is BUILTIN
+ if (defaultBridgeType) {
+ this._bridgeStrings = this._readDefaultBridges(defaultBridgeType);
+ this._bridgeSource = TorBridgeSource.BUILTIN;
+ this._selectedDefaultBridgeType = defaultBridgeType;
+ return;
+ }
+
+ let torrcBridges = this._readTorrcBridges();
+
+ // no stored bridges means no bridge is in use
+ if (torrcBridges.length == 0) {
+ this._bridgeStrings = [];
+ this._bridgeSource = TorBridgeSource.NONE;
+ return;
+ }
+
+ let bridgedbBridges = this._readBridgeDBBridges();
+
+ // if these two lists are equal then we got our bridges from bridgedb
+ // ie: same element in identical order
+ let arraysEqual = (left, right) => {
+ if (left.length != right.length) {
+ return false;
+ }
+ const length = left.length;
+ for (let i = 0; i < length; ++i) {
+ if (left[i] != right[i]) {
+ return false;
+ }
+ }
+ return true;
+ };
+
+ // agreement between prefs and torrc means bridgedb bridges
+ if (arraysEqual(torrcBridges, bridgedbBridges)) {
+ this._bridgeStrings = torrcBridges;
+ this._bridgeSource = TorBridgeSource.BRIDGEDB;
+ return;
+ }
+
+ // otherwise they must be user provided
+ this._bridgeStrings = torrcBridges;
+ this._bridgeSource = TorBridgeSource.USERPROVIDED;
+ }
+
+ writeSettings() {
+ let settingsObject = new Map();
+
+ // init tor bridge settings to null
+ settingsObject.set(TorStrings.configKeys.useBridges, null);
+ settingsObject.set(TorStrings.configKeys.bridgeList, null);
+
+ // clear bridge related firefox prefs
+ Services.prefs.setCharPref(TorStrings.preferenceKeys.defaultBridgeType, "");
+ let bridgeBranch = Services.prefs.getBranch(
+ `${TorStrings.preferenceBranches.bridgeDBBridges}`
+ );
+ let bridgeBranchPrefs = bridgeBranch.getChildList("", {});
+ for (const pref of bridgeBranchPrefs) {
+ Services.prefs.clearUserPref(
+ `${TorStrings.preferenceBranches.bridgeDBBridges}${pref}`
+ );
+ }
+
+ switch (this._bridgeSource) {
+ case TorBridgeSource.BUILTIN:
+ // set builtin bridge type to use in prefs
+ Services.prefs.setCharPref(
+ TorStrings.preferenceKeys.defaultBridgeType,
+ this._selectedDefaultBridgeType
+ );
+ break;
+ case TorBridgeSource.BRIDGEDB:
+ // save bridges off to prefs
+ for (let i = 0; i < this.bridgeStringsArray.length; ++i) {
+ Services.prefs.setCharPref(
+ `${TorStrings.preferenceBranches.bridgeDBBridges}${i}`,
+ this.bridgeStringsArray[i]
+ );
+ }
+ break;
+ }
+
+ // write over our bridge list if bridges are enabled
+ if (this._bridgeSource != TorBridgeSource.NONE) {
+ settingsObject.set(TorStrings.configKeys.useBridges, true);
+ settingsObject.set(
+ TorStrings.configKeys.bridgeList,
+ this.bridgeStringsArray
+ );
+ }
+ TorProtocolService.writeSettings(settingsObject);
+ }
+}
+
+function makeTorBridgeSettingsNone() {
+ return new TorBridgeSettings();
+}
+
+function makeTorBridgeSettingsBuiltin(aBridgeType) {
+ let retval = new TorBridgeSettings();
+ retval._bridgeSource = TorBridgeSource.BUILTIN;
+ retval._selectedDefaultBridgeType = aBridgeType;
+ retval._bridgeStrings = retval._readDefaultBridges(aBridgeType);
+
+ return retval;
+}
+
+function makeTorBridgeSettingsBridgeDB(aBridges) {
+ let retval = new TorBridgeSettings();
+ retval._bridgeSource = TorBridgeSource.BRIDGEDB;
+ retval._selectedDefaultBridgeType = null;
+ retval._bridgeStrings = aBridges;
+
+ return retval;
+}
+
+function makeTorBridgeSettingsUserProvided(aBridges) {
+ let retval = new TorBridgeSettings();
+ retval._bridgeSource = TorBridgeSource.USERPROVIDED;
+ retval._selectedDefaultBridgeType = null;
+ retval._bridgeStrings = aBridges;
+
+ return retval;
+}
diff --git a/browser/components/torpreferences/content/torCategory.inc.xhtml b/browser/components/torpreferences/content/torCategory.inc.xhtml
new file mode 100644
index 000000000000..abe56200f571
--- /dev/null
+++ b/browser/components/torpreferences/content/torCategory.inc.xhtml
@@ -0,0 +1,9 @@
+<richlistitem id="category-tor"
+ class="category"
+ value="paneTor"
+ helpTopic="prefs-tor"
+ align="center"
+ hidden="true">
+ <image class="category-icon"/>
+ <label id="torPreferences-labelCategory" class="category-name" flex="1" value="Tor"/>
+</richlistitem>
diff --git a/browser/components/torpreferences/content/torFirewallSettings.jsm b/browser/components/torpreferences/content/torFirewallSettings.jsm
new file mode 100644
index 000000000000..e77f18ef2fae
--- /dev/null
+++ b/browser/components/torpreferences/content/torFirewallSettings.jsm
@@ -0,0 +1,72 @@
+"use strict";
+
+var EXPORTED_SYMBOLS = [
+ "TorFirewallSettings",
+ "makeTorFirewallSettingsNone",
+ "makeTorFirewallSettingsCustom",
+];
+
+const { TorProtocolService } = ChromeUtils.import(
+ "resource:///modules/TorProtocolService.jsm"
+);
+const { TorStrings } = ChromeUtils.import("resource:///modules/TorStrings.jsm");
+const { parseAddrPortList } = ChromeUtils.import(
+ "chrome://browser/content/torpreferences/parseFunctions.jsm"
+);
+
+class TorFirewallSettings {
+ constructor() {
+ this._allowedPorts = [];
+ }
+
+ get portsConfigurationString() {
+ let portStrings = this._allowedPorts.map(port => `*:${port}`);
+ return portStrings.join(",");
+ }
+
+ get commaSeparatedListString() {
+ return this._allowedPorts.join(",");
+ }
+
+ get hasPorts() {
+ return this._allowedPorts.length > 0;
+ }
+
+ readSettings() {
+ let addressPortList = TorProtocolService.readStringSetting(
+ TorStrings.configKeys.reachableAddresses
+ );
+
+ let allowedPorts = [];
+ if (addressPortList) {
+ allowedPorts = parseAddrPortList(addressPortList);
+ }
+ this._allowedPorts = allowedPorts;
+ }
+
+ writeSettings() {
+ let settingsObject = new Map();
+
+ // init to null so Tor daemon resets if no ports
+ settingsObject.set(TorStrings.configKeys.reachableAddresses, null);
+
+ if (this._allowedPorts.length > 0) {
+ settingsObject.set(
+ TorStrings.configKeys.reachableAddresses,
+ this.portsConfigurationString
+ );
+ }
+
+ TorProtocolService.writeSettings(settingsObject);
+ }
+}
+
+function makeTorFirewallSettingsNone() {
+ return new TorFirewallSettings();
+}
+
+function makeTorFirewallSettingsCustom(aPortsList) {
+ let retval = new TorFirewallSettings();
+ retval._allowedPorts = aPortsList;
+ return retval;
+}
diff --git a/browser/components/torpreferences/content/torLogDialog.jsm b/browser/components/torpreferences/content/torLogDialog.jsm
new file mode 100644
index 000000000000..ba4b76738447
--- /dev/null
+++ b/browser/components/torpreferences/content/torLogDialog.jsm
@@ -0,0 +1,66 @@
+"use strict";
+
+var EXPORTED_SYMBOLS = ["TorLogDialog"];
+
+const { TorProtocolService } = ChromeUtils.import(
+ "resource:///modules/TorProtocolService.jsm"
+);
+const { TorStrings } = ChromeUtils.import("resource:///modules/TorStrings.jsm");
+
+class TorLogDialog {
+ constructor() {
+ this._dialog = null;
+ this._logTextarea = null;
+ this._copyLogButton = null;
+ }
+
+ static get selectors() {
+ return {
+ copyLogButton: "extra1",
+ logTextarea: "textarea#torPreferences-torDialog-textarea",
+ };
+ }
+
+ _populateXUL(aDialog) {
+ this._dialog = aDialog;
+ const dialogWin = this._dialog.parentElement;
+ dialogWin.setAttribute("title", TorStrings.settings.torLogDialogTitle);
+
+ this._logTextarea = this._dialog.querySelector(
+ TorLogDialog.selectors.logTextarea
+ );
+
+ this._copyLogButton = this._dialog.getButton(
+ TorLogDialog.selectors.copyLogButton
+ );
+ this._copyLogButton.setAttribute("label", TorStrings.settings.copyLog);
+ this._copyLogButton.addEventListener("command", () => {
+ this.copyTorLog();
+ });
+
+ this._logTextarea.value = TorProtocolService.getLog();
+ }
+
+ init(window, aDialog) {
+ // defer to later until firefox has populated the dialog with all our elements
+ window.setTimeout(() => {
+ this._populateXUL(aDialog);
+ }, 0);
+ }
+
+ copyTorLog() {
+ // Copy tor log messages to the system clipboard.
+ let clipboard = Cc["@mozilla.org/widget/clipboardhelper;1"].getService(
+ Ci.nsIClipboardHelper
+ );
+ clipboard.copyString(this._logTextarea.value);
+ }
+
+ openDialog(gSubDialog) {
+ gSubDialog.open(
+ "chrome://browser/content/torpreferences/torLogDialog.xhtml",
+ "resizable=yes",
+ this
+ );
+ }
+}
diff --git a/browser/components/torpreferences/content/torLogDialog.xhtml b/browser/components/torpreferences/content/torLogDialog.xhtml
new file mode 100644
index 000000000000..9c17f8132978
--- /dev/null
+++ b/browser/components/torpreferences/content/torLogDialog.xhtml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
+<?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css"?>
+<?xml-stylesheet href="chrome://browser/content/torpreferences/torPreferences.css"?>
+
+<window type="child"
+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
+ xmlns:html="http://www.w3.org/1999/xhtml">
+<dialog id="torPreferences-torLog-dialog"
+ buttons="accept,extra1">
+ <html:textarea
+ id="torPreferences-torDialog-textarea"
+ multiline="true"
+ readonly="true"/>
+ <script type="application/javascript"><![CDATA[
+ "use strict";
+
+ let torLogDialog = window.arguments[0];
+ let dialog = document.getElementById("torPreferences-torLog-dialog");
+ torLogDialog.init(window, dialog);
+ ]]></script>
+</dialog>
+</window>
\ No newline at end of file
diff --git a/browser/components/torpreferences/content/torPane.js b/browser/components/torpreferences/content/torPane.js
new file mode 100644
index 000000000000..49054b5dac6a
--- /dev/null
+++ b/browser/components/torpreferences/content/torPane.js
@@ -0,0 +1,857 @@
+"use strict";
+
+const { TorProtocolService } = ChromeUtils.import(
+ "resource:///modules/TorProtocolService.jsm"
+);
+
+const {
+ TorBridgeSource,
+ TorBridgeSettings,
+ makeTorBridgeSettingsNone,
+ makeTorBridgeSettingsBuiltin,
+ makeTorBridgeSettingsBridgeDB,
+ makeTorBridgeSettingsUserProvided,
+} = ChromeUtils.import(
+ "chrome://browser/content/torpreferences/torBridgeSettings.jsm"
+);
+
+const {
+ TorProxyType,
+ TorProxySettings,
+ makeTorProxySettingsNone,
+ makeTorProxySettingsSocks4,
+ makeTorProxySettingsSocks5,
+ makeTorProxySettingsHTTPS,
+} = ChromeUtils.import(
+ "chrome://browser/content/torpreferences/torProxySettings.jsm"
+);
+const {
+ TorFirewallSettings,
+ makeTorFirewallSettingsNone,
+ makeTorFirewallSettingsCustom,
+} = ChromeUtils.import(
+ "chrome://browser/content/torpreferences/torFirewallSettings.jsm"
+);
+
+const { TorLogDialog } = ChromeUtils.import(
+ "chrome://browser/content/torpreferences/torLogDialog.jsm"
+);
+
+const { RequestBridgeDialog } = ChromeUtils.import(
+ "chrome://browser/content/torpreferences/requestBridgeDialog.jsm"
+);
+
+ChromeUtils.defineModuleGetter(
+ this,
+ "TorStrings",
+ "resource:///modules/TorStrings.jsm"
+);
+
+const { parsePort, parseBridgeStrings, parsePortList } = ChromeUtils.import(
+ "chrome://browser/content/torpreferences/parseFunctions.jsm"
+);
+
+/*
+ Tor Pane
+
+ Code for populating the XUL in about:preferences#tor, handling input events, interfacing with tor-launcher
+*/
+const gTorPane = (function() {
+ /* CSS selectors for all of the Tor Network DOM elements we need to access */
+ const selectors = {
+ category: {
+ title: "label#torPreferences-labelCategory",
+ },
+ torPreferences: {
+ header: "h1#torPreferences-header",
+ description: "span#torPreferences-description",
+ learnMore: "label#torPreferences-learnMore",
+ },
+ bridges: {
+ header: "h2#torPreferences-bridges-header",
+ description: "span#torPreferences-bridges-description",
+ learnMore: "label#torPreferences-bridges-learnMore",
+ useBridgeCheckbox: "checkbox#torPreferences-bridges-toggle",
+ bridgeSelectionRadiogroup:
+ "radiogroup#torPreferences-bridges-bridgeSelection",
+ builtinBridgeOption: "radio#torPreferences-bridges-radioBuiltin",
+ builtinBridgeList: "menulist#torPreferences-bridges-builtinList",
+ requestBridgeOption: "radio#torPreferences-bridges-radioRequestBridge",
+ requestBridgeButton: "button#torPreferences-bridges-buttonRequestBridge",
+ requestBridgeTextarea:
+ "textarea#torPreferences-bridges-textareaRequestBridge",
+ provideBridgeOption: "radio#torPreferences-bridges-radioProvideBridge",
+ provideBridgeDescription:
+ "description#torPreferences-bridges-descriptionProvideBridge",
+ provideBridgeTextarea:
+ "textarea#torPreferences-bridges-textareaProvideBridge",
+ },
+ advanced: {
+ header: "h2#torPreferences-advanced-header",
+ description: "span#torPreferences-advanced-description",
+ learnMore: "label#torPreferences-advanced-learnMore",
+ useProxyCheckbox: "checkbox#torPreferences-advanced-toggleProxy",
+ proxyTypeLabel: "label#torPreferences-localProxy-type",
+ proxyTypeList: "menulist#torPreferences-localProxy-builtinList",
+ proxyAddressLabel: "label#torPreferences-localProxy-address",
+ proxyAddressTextbox: "input#torPreferences-localProxy-textboxAddress",
+ proxyPortLabel: "label#torPreferences-localProxy-port",
+ proxyPortTextbox: "input#torPreferences-localProxy-textboxPort",
+ proxyUsernameLabel: "label#torPreferences-localProxy-username",
+ proxyUsernameTextbox: "input#torPreferences-localProxy-textboxUsername",
+ proxyPasswordLabel: "label#torPreferences-localProxy-password",
+ proxyPasswordTextbox: "input#torPreferences-localProxy-textboxPassword",
+ useFirewallCheckbox: "checkbox#torPreferences-advanced-toggleFirewall",
+ firewallAllowedPortsLabel: "label#torPreferences-advanced-allowedPorts",
+ firewallAllowedPortsTextbox:
+ "input#torPreferences-advanced-textboxAllowedPorts",
+ torLogsLabel: "label#torPreferences-torLogs",
+ torLogsButton: "button#torPreferences-buttonTorLogs",
+ },
+ }; /* selectors */
+
+ let retval = {
+ // cached frequently accessed DOM elements
+ _useBridgeCheckbox: null,
+ _bridgeSelectionRadiogroup: null,
+ _builtinBridgeOption: null,
+ _builtinBridgeMenulist: null,
+ _requestBridgeOption: null,
+ _requestBridgeButton: null,
+ _requestBridgeTextarea: null,
+ _provideBridgeOption: null,
+ _provideBridgeTextarea: null,
+ _useProxyCheckbox: null,
+ _proxyTypeLabel: null,
+ _proxyTypeMenulist: null,
+ _proxyAddressLabel: null,
+ _proxyAddressTextbox: null,
+ _proxyPortLabel: null,
+ _proxyPortTextbox: null,
+ _proxyUsernameLabel: null,
+ _proxyUsernameTextbox: null,
+ _proxyPasswordLabel: null,
+ _proxyPasswordTextbox: null,
+ _useFirewallCheckbox: null,
+ _allowedPortsLabel: null,
+ _allowedPortsTextbox: null,
+
+ // tor network settings
+ _bridgeSettings: null,
+ _proxySettings: null,
+ _firewallSettings: null,
+
+ // disables the provided list of elements
+ _setElementsDisabled(elements, disabled) {
+ for (let currentElement of elements) {
+ currentElement.disabled = disabled;
+ }
+ },
+
+ // populate xul with strings and cache the relevant elements
+ _populateXUL() {
+ // saves tor settings to disk when navigate away from about:preferences
+ window.addEventListener("blur", val => {
+ TorProtocolService.flushSettings();
+ });
+
+ document
+ .querySelector(selectors.category.title)
+ .setAttribute("value", TorStrings.settings.categoryTitle);
+
+ let prefpane = document.getElementById("mainPrefPane");
+
+ // Heading
+ prefpane.querySelector(selectors.torPreferences.header).innerText =
+ TorStrings.settings.torPreferencesHeading;
+ prefpane.querySelector(selectors.torPreferences.description).textContent =
+ TorStrings.settings.torPreferencesDescription;
+ {
+ let learnMore = prefpane.querySelector(
+ selectors.torPreferences.learnMore
+ );
+ learnMore.setAttribute("value", TorStrings.settings.learnMore);
+ learnMore.setAttribute(
+ "href",
+ TorStrings.settings.learnMoreTorBrowserURL
+ );
+ }
+
+ // Bridge setup
+ prefpane.querySelector(selectors.bridges.header).innerText =
+ TorStrings.settings.bridgesHeading;
+ prefpane.querySelector(selectors.bridges.description).textContent =
+ TorStrings.settings.bridgesDescription;
+ {
+ let learnMore = prefpane.querySelector(selectors.bridges.learnMore);
+ learnMore.setAttribute("value", TorStrings.settings.learnMore);
+ learnMore.setAttribute("href", TorStrings.settings.learnMoreBridgesURL);
+ }
+
+ this._useBridgeCheckbox = prefpane.querySelector(
+ selectors.bridges.useBridgeCheckbox
+ );
+ this._useBridgeCheckbox.setAttribute(
+ "label",
+ TorStrings.settings.useBridge
+ );
+ this._useBridgeCheckbox.addEventListener("command", e => {
+ const checked = this._useBridgeCheckbox.checked;
+ gTorPane.onToggleBridge(checked).onUpdateBridgeSettings();
+ });
+ this._bridgeSelectionRadiogroup = prefpane.querySelector(
+ selectors.bridges.bridgeSelectionRadiogroup
+ );
+ this._bridgeSelectionRadiogroup.value = TorBridgeSource.BUILTIN;
+ this._bridgeSelectionRadiogroup.addEventListener("command", e => {
+ const value = this._bridgeSelectionRadiogroup.value;
+ gTorPane.onSelectBridgeOption(value).onUpdateBridgeSettings();
+ });
+
+ // Builtin bridges
+ this._builtinBridgeOption = prefpane.querySelector(
+ selectors.bridges.builtinBridgeOption
+ );
+ this._builtinBridgeOption.setAttribute(
+ "label",
+ TorStrings.settings.selectBridge
+ );
+ this._builtinBridgeOption.setAttribute("value", TorBridgeSource.BUILTIN);
+ this._builtinBridgeMenulist = prefpane.querySelector(
+ selectors.bridges.builtinBridgeList
+ );
+ this._builtinBridgeMenulist.addEventListener("command", e => {
+ gTorPane.onUpdateBridgeSettings();
+ });
+
+ // Request bridge
+ this._requestBridgeOption = prefpane.querySelector(
+ selectors.bridges.requestBridgeOption
+ );
+ this._requestBridgeOption.setAttribute(
+ "label",
+ TorStrings.settings.requestBridgeFromTorProject
+ );
+ this._requestBridgeOption.setAttribute("value", TorBridgeSource.BRIDGEDB);
+ this._requestBridgeButton = prefpane.querySelector(
+ selectors.bridges.requestBridgeButton
+ );
+ this._requestBridgeButton.setAttribute(
+ "label",
+ TorStrings.settings.requestNewBridge
+ );
+ this._requestBridgeButton.addEventListener("command", () =>
+ gTorPane.onRequestBridge()
+ );
+ this._requestBridgeTextarea = prefpane.querySelector(
+ selectors.bridges.requestBridgeTextarea
+ );
+
+ // Provide a bridge
+ this._provideBridgeOption = prefpane.querySelector(
+ selectors.bridges.provideBridgeOption
+ );
+ this._provideBridgeOption.setAttribute(
+ "label",
+ TorStrings.settings.provideBridge
+ );
+ this._provideBridgeOption.setAttribute(
+ "value",
+ TorBridgeSource.USERPROVIDED
+ );
+ prefpane.querySelector(
+ selectors.bridges.provideBridgeDescription
+ ).textContent = TorStrings.settings.provideBridgeDirections;
+ this._provideBridgeTextarea = prefpane.querySelector(
+ selectors.bridges.provideBridgeTextarea
+ );
+ this._provideBridgeTextarea.setAttribute(
+ "placeholder",
+ TorStrings.settings.provideBridgePlaceholder
+ );
+ this._provideBridgeTextarea.addEventListener("blur", () => {
+ gTorPane.onUpdateBridgeSettings();
+ });
+
+ // Advanced setup
+ prefpane.querySelector(selectors.advanced.header).innerText =
+ TorStrings.settings.advancedHeading;
+ prefpane.querySelector(selectors.advanced.description).textContent =
+ TorStrings.settings.advancedDescription;
+ {
+ let learnMore = prefpane.querySelector(selectors.advanced.learnMore);
+ learnMore.setAttribute("value", TorStrings.settings.learnMore);
+ learnMore.setAttribute(
+ "href",
+ TorStrings.settings.learnMoreNetworkSettingsURL
+ );
+ }
+
+ // Local Proxy
+ this._useProxyCheckbox = prefpane.querySelector(
+ selectors.advanced.useProxyCheckbox
+ );
+ this._useProxyCheckbox.setAttribute(
+ "label",
+ TorStrings.settings.useLocalProxy
+ );
+ this._useProxyCheckbox.addEventListener("command", e => {
+ const checked = this._useProxyCheckbox.checked;
+ gTorPane.onToggleProxy(checked).onUpdateProxySettings();
+ });
+ this._proxyTypeLabel = prefpane.querySelector(
+ selectors.advanced.proxyTypeLabel
+ );
+ this._proxyTypeLabel.setAttribute("value", TorStrings.settings.proxyType);
+
+ let mockProxies = [
+ {
+ value: TorProxyType.SOCKS4,
+ label: TorStrings.settings.proxyTypeSOCKS4,
+ },
+ {
+ value: TorProxyType.SOCKS5,
+ label: TorStrings.settings.proxyTypeSOCKS5,
+ },
+ { value: TorProxyType.HTTPS, label: TorStrings.settings.proxyTypeHTTP },
+ ];
+ this._proxyTypeMenulist = prefpane.querySelector(
+ selectors.advanced.proxyTypeList
+ );
+ this._proxyTypeMenulist.addEventListener("command", e => {
+ const value = this._proxyTypeMenulist.value;
+ gTorPane.onSelectProxyType(value).onUpdateProxySettings();
+ });
+ for (let currentProxy of mockProxies) {
+ let menuEntry = document.createXULElement("menuitem");
+ menuEntry.setAttribute("value", currentProxy.value);
+ menuEntry.setAttribute("label", currentProxy.label);
+ this._proxyTypeMenulist
+ .querySelector("menupopup")
+ .appendChild(menuEntry);
+ }
+
+ this._proxyAddressLabel = prefpane.querySelector(
+ selectors.advanced.proxyAddressLabel
+ );
+ this._proxyAddressLabel.setAttribute(
+ "value",
+ TorStrings.settings.proxyAddress
+ );
+ this._proxyAddressTextbox = prefpane.querySelector(
+ selectors.advanced.proxyAddressTextbox
+ );
+ this._proxyAddressTextbox.setAttribute(
+ "placeholder",
+ TorStrings.settings.proxyAddressPlaceholder
+ );
+ this._proxyAddressTextbox.addEventListener("blur", () => {
+ gTorPane.onUpdateProxySettings();
+ });
+ this._proxyPortLabel = prefpane.querySelector(
+ selectors.advanced.proxyPortLabel
+ );
+ this._proxyPortLabel.setAttribute("value", TorStrings.settings.proxyPort);
+ this._proxyPortTextbox = prefpane.querySelector(
+ selectors.advanced.proxyPortTextbox
+ );
+ this._proxyPortTextbox.addEventListener("blur", () => {
+ gTorPane.onUpdateProxySettings();
+ });
+ this._proxyUsernameLabel = prefpane.querySelector(
+ selectors.advanced.proxyUsernameLabel
+ );
+ this._proxyUsernameLabel.setAttribute(
+ "value",
+ TorStrings.settings.proxyUsername
+ );
+ this._proxyUsernameTextbox = prefpane.querySelector(
+ selectors.advanced.proxyUsernameTextbox
+ );
+ this._proxyUsernameTextbox.setAttribute(
+ "placeholder",
+ TorStrings.settings.proxyUsernamePasswordPlaceholder
+ );
+ this._proxyUsernameTextbox.addEventListener("blur", () => {
+ gTorPane.onUpdateProxySettings();
+ });
+ this._proxyPasswordLabel = prefpane.querySelector(
+ selectors.advanced.proxyPasswordLabel
+ );
+ this._proxyPasswordLabel.setAttribute(
+ "value",
+ TorStrings.settings.proxyPassword
+ );
+ this._proxyPasswordTextbox = prefpane.querySelector(
+ selectors.advanced.proxyPasswordTextbox
+ );
+ this._proxyPasswordTextbox.setAttribute(
+ "placeholder",
+ TorStrings.settings.proxyUsernamePasswordPlaceholder
+ );
+ this._proxyPasswordTextbox.addEventListener("blur", () => {
+ gTorPane.onUpdateProxySettings();
+ });
+
+ // Local firewall
+ this._useFirewallCheckbox = prefpane.querySelector(
+ selectors.advanced.useFirewallCheckbox
+ );
+ this._useFirewallCheckbox.setAttribute(
+ "label",
+ TorStrings.settings.useFirewall
+ );
+ this._useFirewallCheckbox.addEventListener("command", e => {
+ const checked = this._useFirewallCheckbox.checked;
+ gTorPane.onToggleFirewall(checked).onUpdateFirewallSettings();
+ });
+ this._allowedPortsLabel = prefpane.querySelector(
+ selectors.advanced.firewallAllowedPortsLabel
+ );
+ this._allowedPortsLabel.setAttribute(
+ "value",
+ TorStrings.settings.allowedPorts
+ );
+ this._allowedPortsTextbox = prefpane.querySelector(
+ selectors.advanced.firewallAllowedPortsTextbox
+ );
+ this._allowedPortsTextbox.setAttribute(
+ "placeholder",
+ TorStrings.settings.allowedPortsPlaceholder
+ );
+ this._allowedPortsTextbox.addEventListener("blur", () => {
+ gTorPane.onUpdateFirewallSettings();
+ });
+
+ // Tor logs
+ prefpane
+ .querySelector(selectors.advanced.torLogsLabel)
+ .setAttribute("value", TorStrings.settings.showTorDaemonLogs);
+ let torLogsButton = prefpane.querySelector(
+ selectors.advanced.torLogsButton
+ );
+ torLogsButton.setAttribute("label", TorStrings.settings.showLogs);
+ torLogsButton.addEventListener("command", () => {
+ gTorPane.onViewTorLogs();
+ });
+
+ // Disable all relevant elements by default
+ this._setElementsDisabled(
+ [
+ this._builtinBridgeOption,
+ this._builtinBridgeMenulist,
+ this._requestBridgeOption,
+ this._requestBridgeButton,
+ this._requestBridgeTextarea,
+ this._provideBridgeOption,
+ this._provideBridgeTextarea,
+ this._proxyTypeLabel,
+ this._proxyTypeMenulist,
+ this._proxyAddressLabel,
+ this._proxyAddressTextbox,
+ this._proxyPortLabel,
+ this._proxyPortTextbox,
+ this._proxyUsernameLabel,
+ this._proxyUsernameTextbox,
+ this._proxyPasswordLabel,
+ this._proxyPasswordTextbox,
+ this._allowedPortsLabel,
+ this._allowedPortsTextbox,
+ ],
+ true
+ );
+
+ // load bridge settings
+ let torBridgeSettings = new TorBridgeSettings();
+ torBridgeSettings.readSettings();
+
+ // populate the bridge list
+ for (let currentBridge of TorBridgeSettings.defaultBridgeTypes) {
+ let menuEntry = document.createXULElement("menuitem");
+ menuEntry.setAttribute("value", currentBridge);
+ menuEntry.setAttribute("label", currentBridge);
+ this._builtinBridgeMenulist
+ .querySelector("menupopup")
+ .appendChild(menuEntry);
+ }
+
+ this.onSelectBridgeOption(torBridgeSettings.bridgeSource);
+ this.onToggleBridge(
+ torBridgeSettings.bridgeSource != TorBridgeSource.NONE
+ );
+ switch (torBridgeSettings.bridgeSource) {
+ case TorBridgeSource.NONE:
+ break;
+ case TorBridgeSource.BUILTIN:
+ this._builtinBridgeMenulist.value =
+ torBridgeSettings.selectedDefaultBridgeType;
+ break;
+ case TorBridgeSource.BRIDGEDB:
+ this._requestBridgeTextarea.value = torBridgeSettings.bridgeStrings;
+ break;
+ case TorBridgeSource.USERPROVIDED:
+ this._provideBridgeTextarea.value = torBridgeSettings.bridgeStrings;
+ break;
+ }
+
+ this._bridgeSettings = torBridgeSettings;
+
+ // load proxy settings
+ let torProxySettings = new TorProxySettings();
+ torProxySettings.readSettings();
+
+ if (torProxySettings.type != TorProxyType.NONE) {
+ this.onToggleProxy(true);
+ this.onSelectProxyType(torProxySettings.type);
+ this._proxyAddressTextbox.value = torProxySettings.address;
+ this._proxyPortTextbox.value = torProxySettings.port;
+ this._proxyUsernameTextbox.value = torProxySettings.username;
+ this._proxyPasswordTextbox.value = torProxySettings.password;
+ }
+
+ this._proxySettings = torProxySettings;
+
+ // load firewall settings
+ let torFirewallSettings = new TorFirewallSettings();
+ torFirewallSettings.readSettings();
+
+ if (torFirewallSettings.hasPorts) {
+ this.onToggleFirewall(true);
+ this._allowedPortsTextbox.value =
+ torFirewallSettings.commaSeparatedListString;
+ }
+
+ this._firewallSettings = torFirewallSettings;
+ },
+
+ init() {
+ this._populateXUL();
+ },
+
+ // whether the page should be present in about:preferences
+ get enabled() {
+ return TorProtocolService.ownsTorDaemon;
+ },
+
+ //
+ // Callbacks
+ //
+
+ // callback when using bridges toggled
+ onToggleBridge(enabled) {
+ this._useBridgeCheckbox.checked = enabled;
+ let disabled = !enabled;
+
+ // first disable all the bridge related elements
+ this._setElementsDisabled(
+ [
+ this._builtinBridgeOption,
+ this._builtinBridgeMenulist,
+ this._requestBridgeOption,
+ this._requestBridgeButton,
+ this._requestBridgeTextarea,
+ this._provideBridgeOption,
+ this._provideBridgeTextarea,
+ ],
+ disabled
+ );
+
+ // and selectively re-enable based on the radiogroup's current value
+ if (enabled) {
+ this.onSelectBridgeOption(this._bridgeSelectionRadiogroup.value);
+ } else {
+ this.onSelectBridgeOption(TorBridgeSource.NONE);
+ }
+ return this;
+ },
+
+ // callback when a bridge option is selected
+ onSelectBridgeOption(source) {
+ // disable all of the bridge elements under radio buttons
+ this._setElementsDisabled(
+ [
+ this._builtinBridgeMenulist,
+ this._requestBridgeButton,
+ this._requestBridgeTextarea,
+ this._provideBridgeTextarea,
+ ],
+ true
+ );
+
+ if (source != TorBridgeSource.NONE) {
+ this._bridgeSelectionRadiogroup.value = source;
+ }
+
+ switch (source) {
+ case TorBridgeSource.BUILTIN: {
+ this._setElementsDisabled([this._builtinBridgeMenulist], false);
+ break;
+ }
+ case TorBridgeSource.BRIDGEDB: {
+ this._setElementsDisabled(
+ [this._requestBridgeButton, this._requestBridgeTextarea],
+ false
+ );
+ break;
+ }
+ case TorBridgeSource.USERPROVIDED: {
+ this._setElementsDisabled([this._provideBridgeTextarea], false);
+ break;
+ }
+ }
+ return this;
+ },
+
+ // called when the request bridge button is activated
+ onRequestBridge() {
+ let requestBridgeDialog = new RequestBridgeDialog();
+ requestBridgeDialog.openDialog(
+ gSubDialog,
+ this._proxySettings.proxyURI,
+ aBridges => {
+ if (aBridges.length > 0) {
+ let bridgeSettings = makeTorBridgeSettingsBridgeDB(aBridges);
+ bridgeSettings.writeSettings();
+ this._bridgeSettings = bridgeSettings;
+
+ this._requestBridgeTextarea.value = bridgeSettings.bridgeStrings;
+ }
+ }
+ );
+ return this;
+ },
+
+ // pushes bridge settings from UI to tor
+ onUpdateBridgeSettings() {
+ let bridgeSettings = null;
+
+ let source = this._useBridgeCheckbox.checked
+ ? this._bridgeSelectionRadiogroup.value
+ : TorBridgeSource.NONE;
+ switch (source) {
+ case TorBridgeSource.NONE: {
+ bridgeSettings = makeTorBridgeSettingsNone();
+ break;
+ }
+ case TorBridgeSource.BUILTIN: {
+ // if there is a built-in bridge already selected, use that
+ let bridgeType = this._builtinBridgeMenulist.value;
+ if (bridgeType) {
+ bridgeSettings = makeTorBridgeSettingsBuiltin(bridgeType);
+ } else {
+ bridgeSettings = makeTorBridgeSettingsNone();
+ }
+ break;
+ }
+ case TorBridgeSource.BRIDGEDB: {
+ // if there are bridgedb bridges saved in the text area, use them
+ let bridgeStrings = this._requestBridgeTextarea.value;
+ if (bridgeStrings) {
+ let bridgeStringList = parseBridgeStrings(bridgeStrings);
+ bridgeSettings = makeTorBridgeSettingsBridgeDB(bridgeStringList);
+ } else {
+ bridgeSettings = makeTorBridgeSettingsNone();
+ }
+ break;
+ }
+ case TorBridgeSource.USERPROVIDED: {
+ // if bridges already exist in the text area, use them
+ let bridgeStrings = this._provideBridgeTextarea.value;
+ if (bridgeStrings) {
+ let bridgeStringList = parseBridgeStrings(bridgeStrings);
+ bridgeSettings = makeTorBridgeSettingsUserProvided(
+ bridgeStringList
+ );
+ } else {
+ bridgeSettings = makeTorBridgeSettingsNone();
+ }
+ break;
+ }
+ }
+ bridgeSettings.writeSettings();
+ this._bridgeSettings = bridgeSettings;
+ return this;
+ },
+
+ // callback when proxy is toggled
+ onToggleProxy(enabled) {
+ this._useProxyCheckbox.checked = enabled;
+ let disabled = !enabled;
+
+ this._setElementsDisabled(
+ [
+ this._proxyTypeLabel,
+ this._proxyTypeMenulist,
+ this._proxyAddressLabel,
+ this._proxyAddressTextbox,
+ this._proxyPortLabel,
+ this._proxyPortTextbox,
+ this._proxyUsernameLabel,
+ this._proxyUsernameTextbox,
+ this._proxyPasswordLabel,
+ this._proxyPasswordTextbox,
+ ],
+ disabled
+ );
+ this.onSelectProxyType(this._proxyTypeMenulist.value);
+ return this;
+ },
+
+ // callback when proxy type is changed
+ onSelectProxyType(value) {
+ if (value == "") {
+ value = TorProxyType.NONE;
+ }
+ this._proxyTypeMenulist.value = value;
+ switch (value) {
+ case TorProxyType.NONE: {
+ this._setElementsDisabled(
+ [
+ this._proxyAddressLabel,
+ this._proxyAddressTextbox,
+ this._proxyPortLabel,
+ this._proxyPortTextbox,
+ this._proxyUsernameLabel,
+ this._proxyUsernameTextbox,
+ this._proxyPasswordLabel,
+ this._proxyPasswordTextbox,
+ ],
+ true
+ ); // DISABLE
+
+ this._proxyAddressTextbox.value = "";
+ this._proxyPortTextbox.value = "";
+ this._proxyUsernameTextbox.value = "";
+ this._proxyPasswordTextbox.value = "";
+ break;
+ }
+ case TorProxyType.SOCKS4: {
+ this._setElementsDisabled(
+ [
+ this._proxyAddressLabel,
+ this._proxyAddressTextbox,
+ this._proxyPortLabel,
+ this._proxyPortTextbox,
+ ],
+ false
+ ); // ENABLE
+ this._setElementsDisabled(
+ [
+ this._proxyUsernameLabel,
+ this._proxyUsernameTextbox,
+ this._proxyPasswordLabel,
+ this._proxyPasswordTextbox,
+ ],
+ true
+ ); // DISABLE
+
+ this._proxyUsernameTextbox.value = "";
+ this._proxyPasswordTextbox.value = "";
+ break;
+ }
+ case TorProxyType.SOCKS5:
+ case TorProxyType.HTTPS: {
+ this._setElementsDisabled(
+ [
+ this._proxyAddressLabel,
+ this._proxyAddressTextbox,
+ this._proxyPortLabel,
+ this._proxyPortTextbox,
+ this._proxyUsernameLabel,
+ this._proxyUsernameTextbox,
+ this._proxyPasswordLabel,
+ this._proxyPasswordTextbox,
+ ],
+ false
+ ); // ENABLE
+ break;
+ }
+ }
+ return this;
+ },
+
+ // pushes proxy settings from UI to tor
+ onUpdateProxySettings() {
+ const proxyType = this._useProxyCheckbox.checked
+ ? this._proxyTypeMenulist.value
+ : TorProxyType.NONE;
+ const addressString = this._proxyAddressTextbox.value;
+ const portString = this._proxyPortTextbox.value;
+ const usernameString = this._proxyUsernameTextbox.value;
+ const passwordString = this._proxyPasswordTextbox.value;
+
+ let proxySettings = null;
+
+ switch (proxyType) {
+ case TorProxyType.NONE:
+ proxySettings = makeTorProxySettingsNone();
+ break;
+ case TorProxyType.SOCKS4:
+ proxySettings = makeTorProxySettingsSocks4(
+ addressString,
+ parsePort(portString)
+ );
+ break;
+ case TorProxyType.SOCKS5:
+ proxySettings = makeTorProxySettingsSocks5(
+ addressString,
+ parsePort(portString),
+ usernameString,
+ passwordString
+ );
+ break;
+ case TorProxyType.HTTPS:
+ proxySettings = makeTorProxySettingsHTTPS(
+ addressString,
+ parsePort(portString),
+ usernameString,
+ passwordString
+ );
+ break;
+ }
+
+ proxySettings.writeSettings();
+ this._proxySettings = proxySettings;
+ return this;
+ },
+
+ // callback when firewall proxy is toggled
+ onToggleFirewall(enabled) {
+ this._useFirewallCheckbox.checked = enabled;
+ let disabled = !enabled;
+
+ this._setElementsDisabled(
+ [this._allowedPortsLabel, this._allowedPortsTextbox],
+ disabled
+ );
+
+ return this;
+ },
+
+ // pushes firewall settings from UI to tor
+ onUpdateFirewallSettings() {
+ let portListString = this._useFirewallCheckbox.checked
+ ? this._allowedPortsTextbox.value
+ : "";
+ let firewallSettings = null;
+
+ if (portListString) {
+ firewallSettings = makeTorFirewallSettingsCustom(
+ parsePortList(portListString)
+ );
+ } else {
+ firewallSettings = makeTorFirewallSettingsNone();
+ }
+
+ firewallSettings.writeSettings();
+ this._firewallSettings = firewallSettings;
+ return this;
+ },
+
+ onViewTorLogs() {
+ let torLogDialog = new TorLogDialog();
+ torLogDialog.openDialog(gSubDialog);
+ },
+ };
+ return retval;
+})(); /* gTorPane */
diff --git a/browser/components/torpreferences/content/torPane.xhtml b/browser/components/torpreferences/content/torPane.xhtml
new file mode 100644
index 000000000000..3c966b2b3726
--- /dev/null
+++ b/browser/components/torpreferences/content/torPane.xhtml
@@ -0,0 +1,123 @@
+<!-- Tor panel -->
+
+<script type="application/javascript"
+ src="chrome://browser/content/torpreferences/torPane.js"/>
+<html:template id="template-paneTor">
+<hbox id="torPreferencesCategory"
+ class="subcategory"
+ data-category="paneTor"
+ hidden="true">
+ <html:h1 id="torPreferences-header"/>
+</hbox>
+
+<groupbox data-category="paneTor"
+ hidden="true">
+ <description flex="1">
+ <html:span id="torPreferences-description" class="tail-with-learn-more"/>
+ <label id="torPreferences-learnMore" class="learnMore text-link" is="text-link"/>
+ </description>
+</groupbox>
+
+<!-- Bridges -->
+<groupbox id="torPreferences-bridges-group"
+ data-category="paneTor"
+ hidden="true">
+ <html:h2 id="torPreferences-bridges-header"/>
+ <description flex="1">
+ <html:span id="torPreferences-bridges-description" class="tail-with-learn-more"/>
+ <label id="torPreferences-bridges-learnMore" class="learnMore text-link" is="text-link"/>
+ </description>
+ <checkbox id="torPreferences-bridges-toggle"/>
+ <radiogroup id="torPreferences-bridges-bridgeSelection">
+ <hbox class="indent">
+ <radio id="torPreferences-bridges-radioBuiltin"/>
+ <spacer flex="1"/>
+ <menulist id="torPreferences-bridges-builtinList" class="torMarginFix">
+ <menupopup/>
+ </menulist>
+ </hbox>
+ <vbox class="indent">
+ <hbox>
+ <radio id="torPreferences-bridges-radioRequestBridge"/>
+ <space flex="1"/>
+ <button id="torPreferences-bridges-buttonRequestBridge" class="torMarginFix"/>
+ </hbox>
+ <html:textarea
+ id="torPreferences-bridges-textareaRequestBridge"
+ class="indent torMarginFix"
+ multiline="true"
+ rows="3"
+ readonly="true"/>
+ </vbox>
+ <hbox class="indent" flex="1">
+ <vbox flex="1">
+ <radio id="torPreferences-bridges-radioProvideBridge"/>
+ <description id="torPreferences-bridges-descriptionProvideBridge" class="indent"/>
+ <html:textarea
+ id="torPreferences-bridges-textareaProvideBridge"
+ class="indent torMarginFix"
+ multiline="true"
+ rows="3"/>
+ </vbox>
+ </hbox>
+ </radiogroup>
+</groupbox>
+
+<!-- Advanced -->
+<groupbox id="torPreferences-advanced-group"
+ data-category="paneTor"
+ hidden="true">
+ <html:h2 id="torPreferences-advanced-header"/>
+ <description flex="1">
+ <html:span id="torPreferences-advanced-description" class="tail-with-learn-more"/>
+ <label id="torPreferences-advanced-learnMore" class="learnMore text-link" is="text-link" style="display:none"/>
+ </description>
+ <box id="torPreferences-advanced-grid">
+ <!-- Local Proxy -->
+ <hbox class="torPreferences-advanced-checkbox-container">
+ <checkbox id="torPreferences-advanced-toggleProxy"/>
+ </hbox>
+ <hbox class="indent" align="center">
+ <label id="torPreferences-localProxy-type"/>
+ </hbox>
+ <hbox align="center">
+ <spacer flex="1"/>
+ <menulist id="torPreferences-localProxy-builtinList" class="torMarginFix">
+ <menupopup/>
+ </menulist>
+ </hbox>
+ <hbox class="indent" align="center">
+ <label id="torPreferences-localProxy-address"/>
+ </hbox>
+ <hbox align="center">
+ <html:input id="torPreferences-localProxy-textboxAddress" type="text" class="torMarginFix"/>
+ <label id="torPreferences-localProxy-port"/>
+ <!-- proxy-port-input class style pulled from preferences.css and used in the vanilla proxy setup menu -->
+ <html:input id="torPreferences-localProxy-textboxPort" class="proxy-port-input torMarginFix" hidespinbuttons="true" type="number" min="0" max="65535" maxlength="5"/>
+ </hbox>
+ <hbox class="indent" align="center">
+ <label id="torPreferences-localProxy-username"/>
+ </hbox>
+ <hbox align="center">
+ <html:input id="torPreferences-localProxy-textboxUsername" type="text" class="torMarginFix"/>
+ <label id="torPreferences-localProxy-password"/>
+ <html:input id="torPreferences-localProxy-textboxPassword" class="torMarginFix" type="password"/>
+ </hbox>
+ <!-- Firewall -->
+ <hbox class="torPreferences-advanced-checkbox-container">
+ <checkbox id="torPreferences-advanced-toggleFirewall"/>
+ </hbox>
+ <hbox class="indent" align="center">
+ <label id="torPreferences-advanced-allowedPorts"/>
+ </hbox>
+ <hbox align="center">
+ <html:input id="torPreferences-advanced-textboxAllowedPorts" type="text" class="torMarginFix" value="80,443"/>
+ </hbox>
+ </box>
+ <hbox id="torPreferences-torDaemon-hbox" align="center">
+ <label id="torPreferences-torLogs"/>
+ <spacer flex="1"/>
+ <button id="torPreferences-buttonTorLogs" class="torMarginFix"/>
+ </hbox>
+</groupbox>
+</html:template>
\ No newline at end of file
diff --git a/browser/components/torpreferences/content/torPreferences.css b/browser/components/torpreferences/content/torPreferences.css
new file mode 100644
index 000000000000..4dac2c457823
--- /dev/null
+++ b/browser/components/torpreferences/content/torPreferences.css
@@ -0,0 +1,77 @@
+#category-tor > .category-icon {
+ list-style-image: url("chrome://browser/content/torpreferences/torPreferencesIcon.svg");
+}
+
+#torPreferences-advanced-grid {
+ display: grid;
+ grid-template-columns: auto 1fr;
+}
+
+.torPreferences-advanced-checkbox-container {
+ grid-column: 1 / 3;
+}
+
+#torPreferences-localProxy-textboxAddress,
+#torPreferences-localProxy-textboxUsername,
+#torPreferences-localProxy-textboxPassword,
+#torPreferences-advanced-textboxAllowedPorts {
+ -moz-box-flex: 1;
+}
+
+hbox#torPreferences-torDaemon-hbox {
+ margin-top: 20px;
+}
+
+description#torPreferences-requestBridge-description {
+ /*margin-bottom: 1em;*/
+ min-height: 2em;
+}
+
+image#torPreferences-requestBridge-captchaImage {
+ margin: 1em;
+ min-height: 125px;
+}
+
+button#torPreferences-requestBridge-refreshCaptchaButton {
+ min-width: initial;
+}
+
+dialog#torPreferences-requestBridge-dialog > hbox {
+ margin-bottom: 1em;
+}
+
+/*
+ Various elements that really should be lining up don't because they have inconsistent margins
+*/
+.torMarginFix {
+ margin-left : 4px;
+ margin-right : 4px;
+}
+
+/*
+ This hbox is hidden by css here by default so that the
+ xul dialog allocates enough screen space for the error message
+ element, otherwise it gets cut off since dialog's overflow is hidden
+*/
+hbox#torPreferences-requestBridge-incorrectCaptchaHbox {
+ visibility: hidden;
+}
+
+image#torPreferences-requestBridge-errorIcon {
+ list-style-image: url("chrome://browser/skin/warning.svg");
+}
+
+groupbox#torPreferences-bridges-group textarea {
+ white-space: pre;
+ overflow: auto;
+}
+
+textarea#torPreferences-torDialog-textarea {
+ -moz-box-flex: 1;
+ font-family: monospace;
+ font-size: 0.8em;
+ white-space: pre;
+ overflow: auto;
+ /* 10 lines */
+ min-height: 20em;
+}
\ No newline at end of file
diff --git a/browser/components/torpreferences/content/torPreferencesIcon.svg b/browser/components/torpreferences/content/torPreferencesIcon.svg
new file mode 100644
index 000000000000..d7895f1107c5
--- /dev/null
+++ b/browser/components/torpreferences/content/torPreferencesIcon.svg
@@ -0,0 +1,5 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
+ <g fill="context-fill" fill-opacity="context-fill-opacity" fill-rule="nonzero">
+ <path d="M12.0246161,21.8174863 L12.0246161,20.3628098 C16.6324777,20.3495038 20.3634751,16.6108555 20.3634751,11.9996673 C20.3634751,7.38881189 16.6324777,3.65016355 12.0246161,3.63685757 L12.0246161,2.18218107 C17.4358264,2.1958197 21.8178189,6.58546322 21.8178189,11.9996673 C21.8178189,17.4142042 17.4358264,21.8041803 12.0246161,21.8174863 L12.0246161,21.8174863 Z M12.0246161,16.7259522 C14.623607,16.7123136 16.7272828,14.6023175 16.7272828,11.9996673 C16.7272828,9.39734991 14.623607,7.28735377 12.0246161,7.27371516 L12.0246161,5.81937131 C15.4272884,5.8326773 18.1819593,8.59400123 18.1819593,11.9996673 C18.1819593,15.4056661 15.4272884,18.1669901 12.0246161,18.1802961 L12.0246161,16.7259522 Z M12.0246161,9.45556355 C13.4187503,9.46886953 14.5454344,10.6022066 14.5454344,11.9996673 C14.5454344,13.3974608 13.4187503,14.5307978 12.0246161,14.5441038 L12.0246161,9.45556355 Z M0,11.9996673 C0,18.6273771 5.37229031,24 12,24 C18.6273771,24 24,18.6273771 24,11.9996673 C24,5.37229031
18.6273771,0 12,0 C5.37229031,0 0,5.37229031 0,11.9996673 Z"/>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/browser/components/torpreferences/content/torProxySettings.jsm b/browser/components/torpreferences/content/torProxySettings.jsm
new file mode 100644
index 000000000000..98bb5e8d5cbf
--- /dev/null
+++ b/browser/components/torpreferences/content/torProxySettings.jsm
@@ -0,0 +1,245 @@
+"use strict";
+
+var EXPORTED_SYMBOLS = [
+ "TorProxyType",
+ "TorProxySettings",
+ "makeTorProxySettingsNone",
+ "makeTorProxySettingsSocks4",
+ "makeTorProxySettingsSocks5",
+ "makeTorProxySettingsHTTPS",
+];
+
+const { TorProtocolService } = ChromeUtils.import(
+ "resource:///modules/TorProtocolService.jsm"
+);
+const { TorStrings } = ChromeUtils.import("resource:///modules/TorStrings.jsm");
+const { parseAddrPort, parseUsernamePassword } = ChromeUtils.import(
+ "chrome://browser/content/torpreferences/parseFunctions.jsm"
+);
+
+const TorProxyType = {
+ NONE: "NONE",
+ SOCKS4: "SOCKS4",
+ SOCKS5: "SOCKS5",
+ HTTPS: "HTTPS",
+};
+
+class TorProxySettings {
+ constructor() {
+ this._proxyType = TorProxyType.NONE;
+ this._proxyAddress = undefined;
+ this._proxyPort = undefined;
+ this._proxyUsername = undefined;
+ this._proxyPassword = undefined;
+ }
+
+ get type() {
+ return this._proxyType;
+ }
+ get address() {
+ return this._proxyAddress;
+ }
+ get port() {
+ return this._proxyPort;
+ }
+ get username() {
+ return this._proxyUsername;
+ }
+ get password() {
+ return this._proxyPassword;
+ }
+ get proxyURI() {
+ switch (this._proxyType) {
+ case TorProxyType.SOCKS4:
+ return `socks4a://${this._proxyAddress}:${this._proxyPort}`;
+ case TorProxyType.SOCKS5:
+ if (this._proxyUsername) {
+ return `socks5://${this._proxyUsername}:${this._proxyPassword}@${
+ this._proxyAddress
+ }:${this._proxyPort}`;
+ }
+ return `socks5://${this._proxyAddress}:${this._proxyPort}`;
+ case TorProxyType.HTTPS:
+ if (this._proxyUsername) {
+ return `http://${this._proxyUsername}:${this._proxyPassword}@${
+ this._proxyAddress
+ }:${this._proxyPort}`;
+ }
+ return `http://${this._proxyAddress}:${this._proxyPort}`;
+ }
+ return undefined;
+ }
+
+ // attempts to read proxy settings from Tor daemon
+ readSettings() {
+ // SOCKS4
+ {
+ let addressPort = TorProtocolService.readStringSetting(
+ TorStrings.configKeys.socks4Proxy
+ );
+ if (addressPort) {
+ // address+port
+ let [proxyAddress, proxyPort] = parseAddrPort(addressPort);
+
+ this._proxyType = TorProxyType.SOCKS4;
+ this._proxyAddress = proxyAddress;
+ this._proxyPort = proxyPort;
+ this._proxyUsername = "";
+ this._proxyPassword = "";
+
+ return;
+ }
+ }
+
+ // SOCKS5
+ {
+ let addressPort = TorProtocolService.readStringSetting(
+ TorStrings.configKeys.socks5Proxy
+ );
+
+ if (addressPort) {
+ // address+port
+ let [proxyAddress, proxyPort] = parseAddrPort(addressPort);
+ // username
+ let proxyUsername = TorProtocolService.readStringSetting(
+ TorStrings.configKeys.socks5ProxyUsername
+ );
+ // password
+ let proxyPassword = TorProtocolService.readStringSetting(
+ TorStrings.configKeys.socks5ProxyPassword
+ );
+
+ this._proxyType = TorProxyType.SOCKS5;
+ this._proxyAddress = proxyAddress;
+ this._proxyPort = proxyPort;
+ this._proxyUsername = proxyUsername;
+ this._proxyPassword = proxyPassword;
+
+ return;
+ }
+ }
+
+ // HTTP
+ {
+ let addressPort = TorProtocolService.readStringSetting(
+ TorStrings.configKeys.httpsProxy
+ );
+
+ if (addressPort) {
+ // address+port
+ let [proxyAddress, proxyPort] = parseAddrPort(addressPort);
+
+ // username:password
+ let proxyAuthenticator = TorProtocolService.readStringSetting(
+ TorStrings.configKeys.httpsProxyAuthenticator
+ );
+
+ let [proxyUsername, proxyPassword] = ["", ""];
+ if (proxyAuthenticator) {
+ [proxyUsername, proxyPassword] = parseUsernamePassword(
+ proxyAuthenticator
+ );
+ }
+
+ this._proxyType = TorProxyType.HTTPS;
+ this._proxyAddress = proxyAddress;
+ this._proxyPort = proxyPort;
+ this._proxyUsername = proxyUsername;
+ this._proxyPassword = proxyPassword;
+ }
+ }
+ // no proxy settings
+ } /* TorProxySettings::ReadFromTor() */
+
+ // attempts to write proxy settings to Tor daemon
+ // throws on error
+ writeSettings() {
+ let settingsObject = new Map();
+
+ // init proxy related settings to null so Tor daemon resets them
+ settingsObject.set(TorStrings.configKeys.socks4Proxy, null);
+ settingsObject.set(TorStrings.configKeys.socks5Proxy, null);
+ settingsObject.set(TorStrings.configKeys.socks5ProxyUsername, null);
+ settingsObject.set(TorStrings.configKeys.socks5ProxyPassword, null);
+ settingsObject.set(TorStrings.configKeys.httpsProxy, null);
+ settingsObject.set(TorStrings.configKeys.httpsProxyAuthenticator, null);
+
+ switch (this._proxyType) {
+ case TorProxyType.SOCKS4:
+ settingsObject.set(
+ TorStrings.configKeys.socks4Proxy,
+ `${this._proxyAddress}:${this._proxyPort}`
+ );
+ break;
+ case TorProxyType.SOCKS5:
+ settingsObject.set(
+ TorStrings.configKeys.socks5Proxy,
+ `${this._proxyAddress}:${this._proxyPort}`
+ );
+ settingsObject.set(
+ TorStrings.configKeys.socks5ProxyUsername,
+ this._proxyUsername
+ );
+ settingsObject.set(
+ TorStrings.configKeys.socks5ProxyPassword,
+ this._proxyPassword
+ );
+ break;
+ case TorProxyType.HTTPS:
+ settingsObject.set(
+ TorStrings.configKeys.httpsProxy,
+ `${this._proxyAddress}:${this._proxyPort}`
+ );
+ settingsObject.set(
+ TorStrings.configKeys.httpsProxyAuthenticator,
+ `${this._proxyUsername}:${this._proxyPassword}`
+ );
+ break;
+ }
+
+ TorProtocolService.writeSettings(settingsObject);
+ } /* TorProxySettings::WriteToTor() */
+}
+
+// factory methods for our various supported proxies
+function makeTorProxySettingsNone() {
+ return new TorProxySettings();
+}
+
+function makeTorProxySettingsSocks4(aProxyAddress, aProxyPort) {
+ let retval = new TorProxySettings();
+ retval._proxyType = TorProxyType.SOCKS4;
+ retval._proxyAddress = aProxyAddress;
+ retval._proxyPort = aProxyPort;
+ return retval;
+}
+
+function makeTorProxySettingsSocks5(
+ aProxyAddress,
+ aProxyPort,
+ aProxyUsername,
+ aProxyPassword
+) {
+ let retval = new TorProxySettings();
+ retval._proxyType = TorProxyType.SOCKS5;
+ retval._proxyAddress = aProxyAddress;
+ retval._proxyPort = aProxyPort;
+ retval._proxyUsername = aProxyUsername;
+ retval._proxyPassword = aProxyPassword;
+ return retval;
+}
+
+function makeTorProxySettingsHTTPS(
+ aProxyAddress,
+ aProxyPort,
+ aProxyUsername,
+ aProxyPassword
+) {
+ let retval = new TorProxySettings();
+ retval._proxyType = TorProxyType.HTTPS;
+ retval._proxyAddress = aProxyAddress;
+ retval._proxyPort = aProxyPort;
+ retval._proxyUsername = aProxyUsername;
+ retval._proxyPassword = aProxyPassword;
+ return retval;
+}
diff --git a/browser/components/torpreferences/jar.mn b/browser/components/torpreferences/jar.mn
new file mode 100644
index 000000000000..857bc9ee3eac
--- /dev/null
+++ b/browser/components/torpreferences/jar.mn
@@ -0,0 +1,14 @@
+browser.jar:
+ content/browser/torpreferences/parseFunctions.jsm (content/parseFunctions.jsm)
+ content/browser/torpreferences/requestBridgeDialog.xhtml (content/requestBridgeDialog.xhtml)
+ content/browser/torpreferences/requestBridgeDialog.jsm (content/requestBridgeDialog.jsm)
+ content/browser/torpreferences/torBridgeSettings.jsm (content/torBridgeSettings.jsm)
+ content/browser/torpreferences/torCategory.inc.xhtml (content/torCategory.inc.xhtml)
+ content/browser/torpreferences/torFirewallSettings.jsm (content/torFirewallSettings.jsm)
+ content/browser/torpreferences/torLogDialog.jsm (content/torLogDialog.jsm)
+ content/browser/torpreferences/torLogDialog.xhtml (content/torLogDialog.xhtml)
+ content/browser/torpreferences/torPane.js (content/torPane.js)
+ content/browser/torpreferences/torPane.xhtml (content/torPane.xhtml)
+ content/browser/torpreferences/torPreferences.css (content/torPreferences.css)
+ content/browser/torpreferences/torPreferencesIcon.svg (content/torPreferencesIcon.svg)
+ content/browser/torpreferences/torProxySettings.jsm (content/torProxySettings.jsm)
diff --git a/browser/components/torpreferences/moz.build b/browser/components/torpreferences/moz.build
new file mode 100644
index 000000000000..7e103239c8d6
--- /dev/null
+++ b/browser/components/torpreferences/moz.build
@@ -0,0 +1 @@
+JAR_MANIFESTS += ['jar.mn']
diff --git a/browser/modules/BridgeDB.jsm b/browser/modules/BridgeDB.jsm
new file mode 100644
index 000000000000..2caa26b4e2e0
--- /dev/null
+++ b/browser/modules/BridgeDB.jsm
@@ -0,0 +1,110 @@
+"use strict";
+
+var EXPORTED_SYMBOLS = ["BridgeDB"];
+
+const { TorLauncherBridgeDB } = ChromeUtils.import(
+ "resource://torlauncher/modules/tl-bridgedb.jsm"
+);
+const { TorProtocolService } = ChromeUtils.import(
+ "resource:///modules/TorProtocolService.jsm"
+);
+const { TorStrings } = ChromeUtils.import("resource:///modules/TorStrings.jsm");
+
+var BridgeDB = {
+ _moatRequestor: null,
+ _currentCaptchaInfo: null,
+ _bridges: null,
+
+ get currentCaptchaImage() {
+ if (this._currentCaptchaInfo) {
+ return this._currentCaptchaInfo.captchaImage;
+ }
+ return null;
+ },
+
+ get currentBridges() {
+ return this._bridges;
+ },
+
+ submitCaptchaGuess(aCaptchaSolution) {
+ if (this._moatRequestor && this._currentCaptchaInfo) {
+ return this._moatRequestor
+ .finishFetch(
+ this._currentCaptchaInfo.transport,
+ this._currentCaptchaInfo.challenge,
+ aCaptchaSolution
+ )
+ .then(aBridgeInfo => {
+ this._moatRequestor.close();
+ this._moatRequestor = null;
+ this._currentCaptchaInfo = null;
+ this._bridges = aBridgeInfo.bridges;
+ // array of bridge strings
+ return this._bridges;
+ });
+ }
+
+ return new Promise((aResponse, aReject) => {
+ aReject(new Error("Invalid _moatRequestor or _currentCaptchaInfo"));
+ });
+ },
+
+ requestNewCaptchaImage(aProxyURI) {
+ // close and clear out existing state on captcha request
+ this.close();
+
+ let transportPlugins = TorProtocolService.readStringArraySetting(
+ TorStrings.configKeys.clientTransportPlugin
+ );
+
+ let meekClientPath;
+ let meekTransport; // We support both "meek" and "meek_lite".
+ let meekClientArgs;
+ // TODO: shouldn't this early out once meek settings are found?
+ for (const line of transportPlugins) {
+ // Parse each ClientTransportPlugin line and look for the meek or
+ // meek_lite transport. This code works a lot like the Tor daemon's
+ // parse_transport_line() function.
+ let tokens = line.split(" ");
+ if (tokens.length > 2 && tokens[1] == "exec") {
+ let transportArray = tokens[0].split(",").map(aStr => aStr.trim());
+ let transport = transportArray.find(
+ aTransport => aTransport === "meek"
+ );
+ if (!transport) {
+ transport = transportArray.find(
+ aTransport => aTransport === "meek_lite"
+ );
+ }
+ if (transport) {
+ meekTransport = transport;
+ meekClientPath = tokens[2];
+ meekClientArgs = tokens.slice(3);
+ }
+ }
+ }
+
+ this._moatRequestor = TorLauncherBridgeDB.createMoatRequestor();
+
+ return this._moatRequestor
+ .init(aProxyURI, meekTransport, meekClientPath, meekClientArgs)
+ .then(() => {
+ // TODO: get this from TorLauncherUtil
+ let bridgeType = "obfs4";
+ return this._moatRequestor.fetchBridges([bridgeType]);
+ })
+ .then(aCaptchaInfo => {
+ // cache off the current captcha info as the challenge is needed for response
+ this._currentCaptchaInfo = aCaptchaInfo;
+ return aCaptchaInfo.captchaImage;
+ });
+ },
+
+ close() {
+ if (this._moatRequestor) {
+ this._moatRequestor.close();
+ this._moatRequestor = null;
+ }
+ this._currentCaptchaInfo = null;
+ },
+};
diff --git a/browser/modules/TorProtocolService.jsm b/browser/modules/TorProtocolService.jsm
new file mode 100644
index 000000000000..b4e6ed9a3253
--- /dev/null
+++ b/browser/modules/TorProtocolService.jsm
@@ -0,0 +1,212 @@
+"use strict";
+
+var EXPORTED_SYMBOLS = ["TorProtocolService"];
+
+const { TorLauncherUtil } = ChromeUtils.import(
+ "resource://torlauncher/modules/tl-util.jsm"
+);
+
+var TorProtocolService = {
+ _tlps: Cc["@torproject.org/torlauncher-protocol-service;1"].getService(
+ Ci.nsISupports
+ ).wrappedJSObject,
+
+ // maintain a map of tor settings set by Tor Browser so that we don't
+ // repeatedly set the same key/values over and over
+ // this map contains string keys to primitive or array values
+ _settingsCache: new Map(),
+
+ _typeof(aValue) {
+ switch (typeof aValue) {
+ case "boolean":
+ return "boolean";
+ case "string":
+ return "string";
+ case "object":
+ if (aValue == null) {
+ return "null";
+ } else if (Array.isArray(aValue)) {
+ return "array";
+ }
+ return "object";
+ }
+ return "unknown";
+ },
+
+ _assertValidSettingKey(aSetting) {
+ // ensure the 'key' is a string
+ if (typeof aSetting != "string") {
+ throw new Error(
+ `Expected setting of type string but received ${typeof aSetting}`
+ );
+ }
+ },
+
+ _assertValidSetting(aSetting, aValue) {
+ this._assertValidSettingKey(aSetting);
+
+ const valueType = this._typeof(aValue);
+ switch (valueType) {
+ case "boolean":
+ case "string":
+ case "null":
+ return;
+ case "array":
+ for (const element of aValue) {
+ if (typeof element != "string") {
+ throw new Error(
+ `Setting '${aSetting}' array contains value of invalid type '${typeof element}'`
+ );
+ }
+ }
+ return;
+ default:
+ throw new Error(
+ `Invalid object type received for setting '${aSetting}'`
+ );
+ }
+ },
+
+ // takes a Map containing tor settings
+ // throws on error
+ writeSettings(aSettingsObj) {
+ // only write settings that have changed
+ let newSettings = new Map();
+ for (const [setting, value] of aSettingsObj) {
+ let saveSetting = false;
+
+ // make sure we have valid data here
+ this._assertValidSetting(setting, value);
+
+ if (!this._settingsCache.has(setting)) {
+ // no cached setting, so write
+ saveSetting = true;
+ } else {
+ const cachedValue = this._settingsCache.get(setting);
+ if (value != cachedValue) {
+ // compare arrays member-wise
+ if (Array.isArray(value) && Array.isArray(cachedValue)) {
+ if (value.length != cachedValue.length) {
+ saveSetting = true;
+ } else {
+ const arrayLength = value.length;
+ for (let i = 0; i < arrayLength; ++i) {
+ if (value[i] != cachedValue[i]) {
+ saveSetting = true;
+ break;
+ }
+ }
+ }
+ } else {
+ // some other different values
+ saveSetting = true;
+ }
+ }
+ }
+
+ if (saveSetting) {
+ newSettings.set(setting, value);
+ }
+ }
+
+ // only write if new setting to save
+ if (newSettings.size > 0) {
+ // convert settingsObject map to js object for torlauncher-protocol-service
+ let settingsObject = {};
+ for (const [setting, value] of newSettings) {
+ settingsObject[setting] = value;
+ }
+
+ let errorObject = {};
+ if (!this._tlps.TorSetConfWithReply(settingsObject, errorObject)) {
+ throw new Error(errorObject.details);
+ }
+
+ // save settings to cache after successfully writing to Tor
+ for (const [setting, value] of newSettings) {
+ this._settingsCache.set(setting, value);
+ }
+ }
+ },
+
+ _readSetting(aSetting) {
+ this._assertValidSettingKey(aSetting);
+ let reply = this._tlps.TorGetConf(aSetting);
+ if (this._tlps.TorCommandSucceeded(reply)) {
+ return reply.lineArray;
+ }
+ throw new Error(reply.lineArray.join("\n"));
+ },
+
+ _readBoolSetting(aSetting) {
+ let lineArray = this._readSetting(aSetting);
+ if (lineArray.length != 1) {
+ throw new Error(
+ `Expected an array with length 1 but received array of length ${
+ lineArray.length
+ }`
+ );
+ }
+
+ let retval = lineArray[0];
+ switch (retval) {
+ case "0":
+ return false;
+ case "1":
+ return true;
+ default:
+ throw new Error(`Expected boolean (1 or 0) but received '${retval}'`);
+ }
+ },
+
+ _readStringSetting(aSetting) {
+ let lineArray = this._readSetting(aSetting);
+ if (lineArray.length != 1) {
+ throw new Error(
+ `Expected an array with length 1 but received array of length ${
+ lineArray.length
+ }`
+ );
+ }
+ return lineArray[0];
+ },
+
+ _readStringArraySetting(aSetting) {
+ let lineArray = this._readSetting(aSetting);
+ return lineArray;
+ },
+
+ readBoolSetting(aSetting) {
+ let value = this._readBoolSetting(aSetting);
+ this._settingsCache.set(aSetting, value);
+ return value;
+ },
+
+ readStringSetting(aSetting) {
+ let value = this._readStringSetting(aSetting);
+ this._settingsCache.set(aSetting, value);
+ return value;
+ },
+
+ readStringArraySetting(aSetting) {
+ let value = this._readStringArraySetting(aSetting);
+ this._settingsCache.set(aSetting, value);
+ return value;
+ },
+
+ // writes current tor settings to disk
+ flushSettings() {
+ this._tlps.TorSendCommand("SAVECONF");
+ },
+
+ getLog() {
+ let countObj = { value: 0 };
+ let torLog = this._tlps.TorGetLog(countObj);
+ return torLog;
+ },
+
+ // true if we launched and control tor, false if using system tor
+ get ownsTorDaemon() {
+ return TorLauncherUtil.shouldStartAndOwnTor;
+ },
+};
diff --git a/browser/modules/moz.build b/browser/modules/moz.build
index 61fe5371e48f..5fb78d1c07a8 100644
--- a/browser/modules/moz.build
+++ b/browser/modules/moz.build
@@ -128,6 +128,7 @@ EXTRA_JS_MODULES += [
'AboutNewTab.jsm',
'AppUpdater.jsm',
'AsyncTabSwitcher.jsm',
+ 'BridgeDB.jsm',
'BrowserUsageTelemetry.jsm',
'BrowserWindowTracker.jsm',
'ContentCrashHandlers.jsm',
@@ -154,6 +155,7 @@ EXTRA_JS_MODULES += [
'TabUnloader.jsm',
'ThemeVariableMap.jsm',
'TopSiteAttribution.jsm',
+ 'TorProtocolService.jsm',
'TorStrings.jsm',
'TransientPrefs.jsm',
'webrtcUI.jsm',
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bring back old Firefox onboarding
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 9d7b5f70a25af4f1d38394d7bde664ca9422e19c
Author: Alex Catarineu <acat(a)torproject.org>
Date: Wed May 29 20:04:37 2019 +0200
Bring back old Firefox onboarding
Revert "Bug 1462415 - Delete onboarding system add-on r=Standard8,k88hudson"
This reverts commit f7ffd78b62541d44d0102f8051d2f4080bdbc432.
Revert "Bug 1498378 - Actually remove the old onboarding add-on's prefs r=Gijs"
This reverts commit 057fe36fc6f3e93e265505c7dcc703a0941778e2.
Bug 28822: Convert onboarding to webextension
Partially revert 1564367 (controlCenter in UITour.jsm)
---
browser/app/profile/firefox.js | 16 +
browser/components/BrowserGlue.jsm | 11 -
browser/components/uitour/UITour.jsm | 42 +
browser/extensions/moz.build | 1 +
.../extensions/onboarding/OnboardingTelemetry.jsm | 578 +++++++
.../extensions/onboarding/OnboardingTourType.jsm | 40 +
browser/extensions/onboarding/README.md | 87 ++
browser/extensions/onboarding/api.js | 238 +++
browser/extensions/onboarding/background.js | 8 +
.../extensions/onboarding/content/Onboarding.jsm | 1581 ++++++++++++++++++++
.../onboarding/content/img/figure_addons.svg | 1 +
.../onboarding/content/img/figure_customize.svg | 561 +++++++
.../onboarding/content/img/figure_default.svg | 1 +
.../onboarding/content/img/figure_library.svg | 689 +++++++++
.../onboarding/content/img/figure_performance.svg | 1 +
.../onboarding/content/img/figure_private.svg | 1 +
.../onboarding/content/img/figure_screenshots.svg | 191 +++
.../onboarding/content/img/figure_singlesearch.svg | 1 +
.../onboarding/content/img/figure_sync.svg | 1 +
.../onboarding/content/img/icons_addons.svg | 1 +
.../onboarding/content/img/icons_customize.svg | 1 +
.../onboarding/content/img/icons_default.svg | 1 +
.../onboarding/content/img/icons_library.svg | 1 +
.../onboarding/content/img/icons_performance.svg | 1 +
.../onboarding/content/img/icons_private.svg | 1 +
.../onboarding/content/img/icons_screenshots.svg | 1 +
.../onboarding/content/img/icons_singlesearch.svg | 1 +
.../onboarding/content/img/icons_sync.svg | 1 +
.../onboarding/content/img/icons_tour-complete.svg | 17 +
.../onboarding/content/img/watermark.svg | 1 +
.../onboarding/content/onboarding-tour-agent.js | 94 ++
.../extensions/onboarding/content/onboarding.css | 589 ++++++++
.../extensions/onboarding/content/onboarding.js | 37 +
browser/extensions/onboarding/data_events.md | 154 ++
browser/extensions/onboarding/jar.mn | 14 +
.../onboarding/locales/en-US/onboarding.properties | 126 ++
browser/extensions/onboarding/locales/jar.mn | 8 +
browser/extensions/onboarding/locales/moz.build | 7 +
browser/extensions/onboarding/manifest.json | 26 +
browser/extensions/onboarding/moz.build | 29 +
browser/extensions/onboarding/schema.json | 1 +
.../onboarding/test/browser/.eslintrc.js | 7 +
.../extensions/onboarding/test/browser/browser.ini | 18 +
.../browser/browser_onboarding_accessibility.js | 89 ++
.../test/browser/browser_onboarding_keyboard.js | 137 ++
.../browser/browser_onboarding_notification.js | 62 +
.../browser/browser_onboarding_notification_2.js | 80 +
.../browser/browser_onboarding_notification_3.js | 82 +
.../browser/browser_onboarding_notification_4.js | 84 ++
.../browser/browser_onboarding_notification_5.js | 25 +
...arding_notification_click_auto_complete_tour.js | 33 +
.../browser_onboarding_select_default_tour.js | 80 +
.../test/browser/browser_onboarding_skip_tour.js | 47 +
.../test/browser/browser_onboarding_tours.js | 115 ++
.../test/browser/browser_onboarding_tourset.js | 82 +
.../test/browser/browser_onboarding_uitour.js | 167 +++
browser/extensions/onboarding/test/browser/head.js | 288 ++++
.../extensions/onboarding/test/unit/.eslintrc.js | 7 +
browser/extensions/onboarding/test/unit/head.js | 54 +
.../test/unit/test-onboarding-tour-type.js | 89 ++
.../extensions/onboarding/test/unit/xpcshell.ini | 5 +
browser/installer/package-manifest.in | 1 +
browser/locales/Makefile.in | 2 +
browser/locales/filter.py | 1 +
browser/locales/l10n.ini | 1 +
browser/locales/l10n.toml | 4 +
extensions/permissions/PermissionManager.cpp | 3 +
tools/lint/codespell.yml | 1 +
68 files changed, 6714 insertions(+), 11 deletions(-)
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
index 2529f0b130d3..531ac26f6db9 100644
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -1856,6 +1856,22 @@ pref("browser.sessionstore.restore_tabs_lazily", true);
pref("browser.suppress_first_window_animation", true);
+// Preferences for Photon onboarding system extension
+pref("browser.onboarding.enabled", true);
+// Mark this as an upgraded profile so we don't offer the initial new user onboarding tour.
+pref("browser.onboarding.tourset-version", 2);
+pref("browser.onboarding.state", "default");
+// On the Activity-Stream page, the snippet's position overlaps with our notification.
+// So use `browser.onboarding.notification.finished` to let the AS page know
+// if our notification is finished and safe to show their snippet.
+pref("browser.onboarding.notification.finished", false);
+pref("browser.onboarding.notification.mute-duration-on-first-session-ms", 300000); // 5 mins
+pref("browser.onboarding.notification.max-life-time-per-tour-ms", 432000000); // 5 days
+pref("browser.onboarding.notification.max-life-time-all-tours-ms", 1209600000); // 14 days
+pref("browser.onboarding.notification.max-prompt-count-per-tour", 8);
+pref("browser.onboarding.newtour", "performance,private,screenshots,addons,customize,default");
+pref("browser.onboarding.updatetour", "performance,library,screenshots,singlesearch,customize,sync");
+
// Preference that allows individual users to disable Screenshots.
pref("extensions.screenshots.disabled", false);
// Preference that allows individual users to leave Screenshots enabled, but
diff --git a/browser/components/BrowserGlue.jsm b/browser/components/BrowserGlue.jsm
index 44b1426b92e0..7d147d01d561 100644
--- a/browser/components/BrowserGlue.jsm
+++ b/browser/components/BrowserGlue.jsm
@@ -3414,17 +3414,6 @@ BrowserGlue.prototype = {
);
}
- if (currentUIVersion < 76) {
- // Clear old onboarding prefs from profile (bug 1462415)
- let onboardingPrefs = Services.prefs.getBranch("browser.onboarding.");
- if (onboardingPrefs) {
- let onboardingPrefsArray = onboardingPrefs.getChildList("");
- for (let item of onboardingPrefsArray) {
- Services.prefs.clearUserPref("browser.onboarding." + item);
- }
- }
- }
-
if (currentUIVersion < 77) {
// Remove currentset from all the toolbars
let toolbars = [
diff --git a/browser/components/uitour/UITour.jsm b/browser/components/uitour/UITour.jsm
index ac6c38320df2..2e0a178bf425 100644
--- a/browser/components/uitour/UITour.jsm
+++ b/browser/components/uitour/UITour.jsm
@@ -875,6 +875,14 @@ var UITour = {
["ViewShowing", this.onPageActionPanelSubviewShowing],
],
},
+ {
+ name: "controlCenter",
+ node: aWindow.gIdentityHandler._identityPopup,
+ events: [
+ ["popuphidden", this.onPanelHidden],
+ ["popuphiding", this.onControlCenterHiding],
+ ],
+ },
];
for (let panel of panels) {
// Ensure the menu panel is hidden and clean up panel listeners after calling hideMenu.
@@ -1515,6 +1523,31 @@ var UITour = {
} else if (aMenuName == "bookmarks") {
let menuBtn = aWindow.document.getElementById("bookmarks-menu-button");
openMenuButton(menuBtn);
+ } else if (aMenuName == "controlCenter") {
+ let popup = aWindow.gIdentityHandler._identityPopup;
+
+ // Add the listener even if the panel is already open since it will still
+ // only get registered once even if it was UITour that opened it.
+ popup.addEventListener("popuphiding", this.onControlCenterHiding);
+ popup.addEventListener("popuphidden", this.onPanelHidden);
+
+ popup.setAttribute("noautohide", "true");
+ this.clearAvailableTargetsCache();
+
+ if (popup.state == "open") {
+ if (aOpenCallback) {
+ aOpenCallback();
+ }
+ return;
+ }
+
+ this.recreatePopup(popup);
+
+ // Open the control center
+ if (aOpenCallback) {
+ popup.addEventListener("popupshown", aOpenCallback, { once: true });
+ }
+ aWindow.document.getElementById("identity-box").click();
} else if (aMenuName == "pocket") {
let pageAction = PageActions.actionForID("pocket");
if (!pageAction) {
@@ -1558,6 +1591,9 @@ var UITour = {
} else if (aMenuName == "bookmarks") {
let menuBtn = aWindow.document.getElementById("bookmarks-menu-button");
closeMenuButton(menuBtn);
+ } else if (aMenuName == "controlCenter") {
+ let panel = aWindow.gIdentityHandler._identityPopup;
+ panel.hidePopup();
} else if (aMenuName == "urlbar") {
aWindow.gURLBar.view.close();
} else if (aMenuName == "pageActionPanel") {
@@ -1654,6 +1690,12 @@ var UITour = {
);
},
+ onControlCenterHiding(aEvent) {
+ UITour._hideAnnotationsForPanel(aEvent, true, aTarget => {
+ return aTarget.targetName.startsWith("controlCenter-");
+ });
+ },
+
onPanelHidden(aEvent) {
aEvent.target.removeAttribute("noautohide");
UITour.recreatePopup(aEvent.target);
diff --git a/browser/extensions/moz.build b/browser/extensions/moz.build
index 499c59b8d6a5..b0f98f9d4a2a 100644
--- a/browser/extensions/moz.build
+++ b/browser/extensions/moz.build
@@ -5,6 +5,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
DIRS += [
+ 'onboarding',
'pdfjs',
]
diff --git a/browser/extensions/onboarding/OnboardingTelemetry.jsm b/browser/extensions/onboarding/OnboardingTelemetry.jsm
new file mode 100644
index 000000000000..494c8d246d87
--- /dev/null
+++ b/browser/extensions/onboarding/OnboardingTelemetry.jsm
@@ -0,0 +1,578 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+"use strict";
+
+var EXPORTED_SYMBOLS = ["OnboardingTelemetry"];
+
+ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm");
+XPCOMUtils.defineLazyModuleGetters(this, {
+ PingCentre: "resource:///modules/PingCentre.jsm",
+});
+XPCOMUtils.defineLazyServiceGetter(this, "gUUIDGenerator",
+ "@mozilla.org/uuid-generator;1", "nsIUUIDGenerator");
+
+// Validate the content has non-empty string
+function hasString(str) {
+ return typeof str == "string" && str.length > 0;
+}
+
+// Validate the content is an empty string
+function isEmptyString(str) {
+ return typeof str == "string" && str === "";
+}
+
+// Validate the content is an interger
+function isInteger(i) {
+ return Number.isInteger(i);
+}
+
+// Validate the content is a positive interger
+function isPositiveInteger(i) {
+ return Number.isInteger(i) && i > 0;
+}
+
+// Validate the number is -1
+function isMinusOne(num) {
+ return num === -1;
+}
+
+// Validate the category value is within the list
+function isValidCategory(category) {
+ return ["logo-interactions", "onboarding-interactions",
+ "overlay-interactions", "notification-interactions"]
+ .includes(category);
+}
+
+// Validate the page value is within the list
+function isValidPage(page) {
+ return ["about:newtab", "about:home", "about:welcome"].includes(page);
+}
+
+// Validate the tour_type value is within the list
+function isValidTourType(type) {
+ return ["new", "update"].includes(type);
+}
+
+// Validate the bubble state value is within the list
+function isValidBubbleState(str) {
+ return ["bubble", "dot", "hide"].includes(str);
+}
+
+// Validate the logo state value is within the list
+function isValidLogoState(str) {
+ return ["logo", "watermark"].includes(str);
+}
+
+// Validate the notification state value is within the list
+function isValidNotificationState(str) {
+ return ["show", "hide", "finished"].includes(str);
+}
+
+// Validate the column must be defined per ping
+function definePerPing(column) {
+ return function() {
+ throw new Error(`Must define the '${column}' validator per ping because it is not the same for all pings`);
+ };
+}
+
+// Basic validators for session pings
+// client_id, locale are added by PingCentre, IP is added by server
+// so no need check these column here
+const BASIC_SESSION_SCHEMA = {
+ addon_version: hasString,
+ category: isValidCategory,
+ page: isValidPage,
+ parent_session_id: hasString,
+ root_session_id: hasString,
+ session_begin: isInteger,
+ session_end: isInteger,
+ session_id: hasString,
+ tour_type: isValidTourType,
+ type: hasString,
+};
+
+// Basic validators for event pings
+// client_id, locale are added by PingCentre, IP is added by server
+// so no need check these column here
+const BASIC_EVENT_SCHEMA = {
+ addon_version: hasString,
+ bubble_state: definePerPing("bubble_state"),
+ category: isValidCategory,
+ current_tour_id: definePerPing("current_tour_id"),
+ logo_state: definePerPing("logo_state"),
+ notification_impression: definePerPing("notification_impression"),
+ notification_state: definePerPing("notification_state"),
+ page: isValidPage,
+ parent_session_id: hasString,
+ root_session_id: hasString,
+ target_tour_id: definePerPing("target_tour_id"),
+ timestamp: isInteger,
+ tour_type: isValidTourType,
+ type: hasString,
+ width: isPositiveInteger,
+};
+
+/**
+ * We send 2 kinds (firefox-onboarding-event2, firefox-onboarding-session2) of pings to ping centre
+ * server (they call it `topic`). The `internal` state in `topic` field means this event is used internaly to
+ * track states and will not send out any message.
+ *
+ * To save server space and make query easier, we track session begin and end but only send pings
+ * when session end. Therefore the server will get single "onboarding/overlay/notification-session"
+ * event which includes both `session_begin` and `session_end` timestamp.
+ *
+ * We send `session_begin` and `session_end` timestamps instead of `session_duration` diff because
+ * of analytics engineer's request.
+ */
+const EVENT_WHITELIST = {
+ // track when a notification appears.
+ "notification-appear": {
+ topic: "firefox-onboarding-event2",
+ category: "notification-interactions",
+ parent: "notification-session",
+ validators: Object.assign({}, BASIC_EVENT_SCHEMA, {
+ bubble_state: isValidBubbleState,
+ current_tour_id: hasString,
+ logo_state: isValidLogoState,
+ notification_impression: isPositiveInteger,
+ notification_state: isValidNotificationState,
+ target_tour_id: isEmptyString,
+ }),
+ },
+ // track when a user clicks close notification button
+ "notification-close-button-click": {
+ topic: "firefox-onboarding-event2",
+ category: "notification-interactions",
+ parent: "notification-session",
+ validators: Object.assign({}, BASIC_EVENT_SCHEMA, {
+ bubble_state: isValidBubbleState,
+ current_tour_id: hasString,
+ logo_state: isValidLogoState,
+ notification_impression: isPositiveInteger,
+ notification_state: isValidNotificationState,
+ target_tour_id: hasString,
+ }),
+ },
+ // track when a user clicks notification's Call-To-Action button
+ "notification-cta-click": {
+ topic: "firefox-onboarding-event2",
+ category: "notification-interactions",
+ parent: "notification-session",
+ validators: Object.assign({}, BASIC_EVENT_SCHEMA, {
+ bubble_state: isValidBubbleState,
+ current_tour_id: hasString,
+ logo_state: isValidLogoState,
+ notification_impression: isPositiveInteger,
+ notification_state: isValidNotificationState,
+ target_tour_id: hasString,
+ }),
+ },
+ // track the start and end time of the notification session
+ "notification-session": {
+ topic: "firefox-onboarding-session2",
+ category: "notification-interactions",
+ parent: "onboarding-session",
+ validators: BASIC_SESSION_SCHEMA,
+ },
+ // track the start of a notification
+ "notification-session-begin": {topic: "internal"},
+ // track the end of a notification
+ "notification-session-end": {topic: "internal"},
+ // track when a user clicks the Firefox logo
+ "onboarding-logo-click": {
+ topic: "firefox-onboarding-event2",
+ category: "logo-interactions",
+ parent: "onboarding-session",
+ validators: Object.assign({}, BASIC_EVENT_SCHEMA, {
+ bubble_state: isValidBubbleState,
+ current_tour_id: isEmptyString,
+ logo_state: isValidLogoState,
+ notification_impression: isMinusOne,
+ notification_state: isValidNotificationState,
+ target_tour_id: isEmptyString,
+ }),
+ },
+ // track when the onboarding is not visisble due to small screen in the 1st load
+ "onboarding-noshow-smallscreen": {
+ topic: "firefox-onboarding-event2",
+ category: "onboarding-interactions",
+ parent: "onboarding-session",
+ validators: Object.assign({}, BASIC_EVENT_SCHEMA, {
+ bubble_state: isEmptyString,
+ current_tour_id: isEmptyString,
+ logo_state: isEmptyString,
+ notification_impression: isMinusOne,
+ notification_state: isEmptyString,
+ target_tour_id: isEmptyString,
+ }),
+ },
+ // init onboarding session with session_key, page url, and tour_type
+ "onboarding-register-session": {topic: "internal"},
+ // track the start and end time of the onboarding session
+ "onboarding-session": {
+ topic: "firefox-onboarding-session2",
+ category: "onboarding-interactions",
+ parent: "onboarding-session",
+ validators: BASIC_SESSION_SCHEMA,
+ },
+ // track onboarding start time (when user loads about:home or about:newtab)
+ "onboarding-session-begin": {topic: "internal"},
+ // track onboarding end time (when user unloads about:home or about:newtab)
+ "onboarding-session-end": {topic: "internal"},
+ // track when a user clicks the close overlay button
+ "overlay-close-button-click": {
+ topic: "firefox-onboarding-event2",
+ category: "overlay-interactions",
+ parent: "overlay-session",
+ validators: Object.assign({}, BASIC_EVENT_SCHEMA, {
+ bubble_state: isEmptyString,
+ current_tour_id: hasString,
+ logo_state: isEmptyString,
+ notification_impression: isMinusOne,
+ notification_state: isEmptyString,
+ target_tour_id: hasString,
+ }),
+ },
+ // track when a user clicks outside the overlay area to end the tour
+ "overlay-close-outside-click": {
+ topic: "firefox-onboarding-event2",
+ category: "overlay-interactions",
+ parent: "overlay-session",
+ validators: Object.assign({}, BASIC_EVENT_SCHEMA, {
+ bubble_state: isEmptyString,
+ current_tour_id: hasString,
+ logo_state: isEmptyString,
+ notification_impression: isMinusOne,
+ notification_state: isEmptyString,
+ target_tour_id: hasString,
+ }),
+ },
+ // track when a user clicks overlay's Call-To-Action button
+ "overlay-cta-click": {
+ topic: "firefox-onboarding-event2",
+ category: "overlay-interactions",
+ parent: "overlay-session",
+ validators: Object.assign({}, BASIC_EVENT_SCHEMA, {
+ bubble_state: isEmptyString,
+ current_tour_id: hasString,
+ logo_state: isEmptyString,
+ notification_impression: isMinusOne,
+ notification_state: isEmptyString,
+ target_tour_id: hasString,
+ }),
+ },
+ // track when a tour is shown in the overlay
+ "overlay-current-tour": {
+ topic: "firefox-onboarding-event2",
+ category: "overlay-interactions",
+ parent: "overlay-session",
+ validators: Object.assign({}, BASIC_EVENT_SCHEMA, {
+ bubble_state: isEmptyString,
+ current_tour_id: hasString,
+ logo_state: isEmptyString,
+ notification_impression: isMinusOne,
+ notification_state: isEmptyString,
+ target_tour_id: isEmptyString,
+ }),
+ },
+ // track when an overlay is opened and disappeared because the window is resized too small
+ "overlay-disapear-resize": {
+ topic: "firefox-onboarding-event2",
+ category: "overlay-interactions",
+ parent: "overlay-session",
+ validators: Object.assign({}, BASIC_EVENT_SCHEMA, {
+ bubble_state: isEmptyString,
+ current_tour_id: isEmptyString,
+ logo_state: isEmptyString,
+ notification_impression: isMinusOne,
+ notification_state: isEmptyString,
+ target_tour_id: isEmptyString,
+ }),
+ },
+ // track when a user clicks a navigation button in the overlay
+ "overlay-nav-click": {
+ topic: "firefox-onboarding-event2",
+ category: "overlay-interactions",
+ parent: "overlay-session",
+ validators: Object.assign({}, BASIC_EVENT_SCHEMA, {
+ bubble_state: isEmptyString,
+ current_tour_id: hasString,
+ logo_state: isEmptyString,
+ notification_impression: isMinusOne,
+ notification_state: isEmptyString,
+ target_tour_id: hasString,
+ }),
+ },
+ // track the start and end time of the overlay session
+ "overlay-session": {
+ topic: "firefox-onboarding-session2",
+ category: "overlay-interactions",
+ parent: "onboarding-session",
+ validators: BASIC_SESSION_SCHEMA,
+ },
+ // track the start of an overlay session
+ "overlay-session-begin": {topic: "internal"},
+ // track the end of an overlay session
+ "overlay-session-end": {topic: "internal"},
+ // track when a user clicks 'Skip Tour' button in the overlay
+ "overlay-skip-tour": {
+ topic: "firefox-onboarding-event2",
+ category: "overlay-interactions",
+ parent: "overlay-session",
+ validators: Object.assign({}, BASIC_EVENT_SCHEMA, {
+ bubble_state: isEmptyString,
+ current_tour_id: hasString,
+ logo_state: isEmptyString,
+ notification_impression: isMinusOne,
+ notification_state: isEmptyString,
+ target_tour_id: isEmptyString,
+ }),
+ },
+};
+
+const ONBOARDING_ID = "onboarding";
+
+let OnboardingTelemetry = {
+ sessionProbe: null,
+ eventProbe: null,
+ state: {
+ sessions: {},
+ },
+
+ init(startupData) {
+ this.sessionProbe = new PingCentre({topic: "firefox-onboarding-session2"});
+ this.eventProbe = new PingCentre({topic: "firefox-onboarding-event2"});
+ this.state.addon_version = startupData.version;
+ },
+
+ // register per tab session data
+ registerNewOnboardingSession(data) {
+ let { page, session_key, tour_type } = data;
+ if (this.state.sessions[session_key]) {
+ return;
+ }
+ // session_key and page url are must have
+ if (!session_key || !page || !tour_type) {
+ throw new Error("session_key, page url, and tour_type are required for onboarding-register-session");
+ }
+ let onboarding_session_id = gUUIDGenerator.generateUUID().toString();
+ this.state.sessions[session_key] = {
+ onboarding_session_id,
+ overlay_session_id: "",
+ notification_session_id: "",
+ page,
+ tour_type,
+ };
+ },
+
+ process(data) {
+ let { type, session_key } = data;
+ if (type === "onboarding-register-session") {
+ this.registerNewOnboardingSession(data);
+ return;
+ }
+
+ if (!this.state.sessions[session_key]) {
+ throw new Error(`${type} should pass valid session_key`);
+ }
+
+ switch (type) {
+ case "onboarding-session-begin":
+ if (!this.state.sessions[session_key].onboarding_session_id) {
+ throw new Error(`should fire onboarding-register-session event before ${type}`);
+ }
+ this.state.sessions[session_key].onboarding_session_begin = Date.now();
+ return;
+ case "onboarding-session-end":
+ data = Object.assign({}, data, {
+ type: "onboarding-session",
+ });
+ this.state.sessions[session_key].onboarding_session_end = Date.now();
+ break;
+ case "overlay-session-begin":
+ this.state.sessions[session_key].overlay_session_id = gUUIDGenerator.generateUUID().toString();
+ this.state.sessions[session_key].overlay_session_begin = Date.now();
+ return;
+ case "overlay-session-end":
+ data = Object.assign({}, data, {
+ type: "overlay-session",
+ });
+ this.state.sessions[session_key].overlay_session_end = Date.now();
+ break;
+ case "notification-session-begin":
+ this.state.sessions[session_key].notification_session_id = gUUIDGenerator.generateUUID().toString();
+ this.state.sessions[session_key].notification_session_begin = Date.now();
+ return;
+ case "notification-session-end":
+ data = Object.assign({}, data, {
+ type: "notification-session",
+ });
+ this.state.sessions[session_key].notification_session_end = Date.now();
+ break;
+ }
+ let topic = EVENT_WHITELIST[data.type] && EVENT_WHITELIST[data.type].topic;
+ if (!topic) {
+ throw new Error(`ping-centre doesn't know ${type} after processPings, only knows ${Object.keys(EVENT_WHITELIST)}`);
+ }
+ this._sendPing(topic, data);
+ },
+
+ // send out pings by topic
+ _sendPing(topic, data) {
+ if (topic === "internal") {
+ throw new Error(`internal ping ${data.type} should be processed within processPings`);
+ }
+
+ let {
+ addon_version,
+ } = this.state;
+ let {
+ bubble_state = "",
+ current_tour_id = "",
+ logo_state = "",
+ notification_impression = -1,
+ notification_state = "",
+ session_key,
+ target_tour_id = "",
+ type,
+ width,
+ } = data;
+ let {
+ notification_session_begin,
+ notification_session_end,
+ notification_session_id,
+ onboarding_session_begin,
+ onboarding_session_end,
+ onboarding_session_id,
+ overlay_session_begin,
+ overlay_session_end,
+ overlay_session_id,
+ page,
+ tour_type,
+ } = this.state.sessions[session_key];
+ let {
+ category,
+ parent,
+ } = EVENT_WHITELIST[type];
+ let parent_session_id;
+ let payload;
+ let session_begin;
+ let session_end;
+ let session_id;
+ let root_session_id = onboarding_session_id;
+
+ // assign parent_session_id
+ switch (parent) {
+ case "onboarding-session":
+ parent_session_id = onboarding_session_id;
+ break;
+ case "overlay-session":
+ parent_session_id = overlay_session_id;
+ break;
+ case "notification-session":
+ parent_session_id = notification_session_id;
+ break;
+ }
+ if (!parent_session_id) {
+ throw new Error(`Unable to find the ${parent} parent session for the event ${type}`);
+ }
+
+ switch (topic) {
+ case "firefox-onboarding-session2":
+ switch (type) {
+ case "onboarding-session":
+ session_id = onboarding_session_id;
+ session_begin = onboarding_session_begin;
+ session_end = onboarding_session_end;
+ delete this.state.sessions[session_key];
+ break;
+ case "overlay-session":
+ session_id = overlay_session_id;
+ session_begin = overlay_session_begin;
+ session_end = overlay_session_end;
+ break;
+ case "notification-session":
+ session_id = notification_session_id;
+ session_begin = notification_session_begin;
+ session_end = notification_session_end;
+ break;
+ }
+ if (!session_id || !session_begin || !session_end) {
+ throw new Error(`should fire ${type}-begin and ${type}-end event before ${type}`);
+ }
+
+ payload = {
+ addon_version,
+ category,
+ page,
+ parent_session_id,
+ root_session_id,
+ session_begin,
+ session_end,
+ session_id,
+ tour_type,
+ type,
+ };
+ this._validatePayload(payload);
+ this.sessionProbe && this.sessionProbe.sendPing(payload,
+ {filter: ONBOARDING_ID});
+ break;
+ case "firefox-onboarding-event2":
+ let timestamp = Date.now();
+ payload = {
+ addon_version,
+ bubble_state,
+ category,
+ current_tour_id,
+ logo_state,
+ notification_impression,
+ notification_state,
+ page,
+ parent_session_id,
+ root_session_id,
+ target_tour_id,
+ timestamp,
+ tour_type,
+ type,
+ width,
+ };
+ this._validatePayload(payload);
+ this.eventProbe && this.eventProbe.sendPing(payload,
+ {filter: ONBOARDING_ID});
+ break;
+ }
+ },
+
+ // validate data sanitation and make sure correct ping params are sent
+ _validatePayload(payload) {
+ let type = payload.type;
+ let { validators } = EVENT_WHITELIST[type];
+ if (!validators) {
+ throw new Error(`Event ${type} without validators should not be sent.`);
+ }
+ let validatorKeys = Object.keys(validators);
+ // Not send with undefined column
+ if (Object.keys(payload).length > validatorKeys.length) {
+ throw new Error(`Event ${type} want to send more columns than expect, should not be sent.`);
+ }
+ let results = {};
+ let failed = false;
+ // Per column validation
+ for (let key of validatorKeys) {
+ if (payload[key] !== undefined) {
+ results[key] = validators[key](payload[key]);
+ if (!results[key]) {
+ failed = true;
+ }
+ } else {
+ results[key] = false;
+ failed = true;
+ }
+ }
+ if (failed) {
+ throw new Error(`Event ${type} contains incorrect data: ${JSON.stringify(results)}, should not be sent.`);
+ }
+ },
+};
diff --git a/browser/extensions/onboarding/OnboardingTourType.jsm b/browser/extensions/onboarding/OnboardingTourType.jsm
new file mode 100644
index 000000000000..d984fc42f390
--- /dev/null
+++ b/browser/extensions/onboarding/OnboardingTourType.jsm
@@ -0,0 +1,40 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+"use strict";
+
+var EXPORTED_SYMBOLS = ["OnboardingTourType"];
+
+ChromeUtils.defineModuleGetter(this, "Services",
+ "resource://gre/modules/Services.jsm");
+
+var OnboardingTourType = {
+ /**
+ * Determine the current tour type (new user tour or update user tour).
+ * The function checks 2 criterias
+ * - TOURSET_VERSION: current onboarding tourset version
+ * - PREF_SEEN_TOURSET_VERSION: the user seen tourset version
+ * As the result the function will set the right current tour type in the tour type pref (PREF_TOUR_TYPE) for later use.
+ */
+ check() {
+ const PREF_TOUR_TYPE = "browser.onboarding.tour-type";
+ const PREF_SEEN_TOURSET_VERSION = "browser.onboarding.seen-tourset-version";
+ const TOURSET_VERSION = Services.prefs.getIntPref("browser.onboarding.tourset-version");
+
+ if (!Services.prefs.prefHasUserValue(PREF_SEEN_TOURSET_VERSION)) {
+ // User has never seen an onboarding tour, present the user with the new user tour.
+ Services.prefs.setStringPref(PREF_TOUR_TYPE, "new");
+ } else if (Services.prefs.getIntPref(PREF_SEEN_TOURSET_VERSION) < TOURSET_VERSION) {
+ // show the update user tour when tour set version is larger than the seen tourset version
+ Services.prefs.setStringPref(PREF_TOUR_TYPE, "update");
+ // Reset all the notification-related prefs because tours update.
+ Services.prefs.setBoolPref("browser.onboarding.notification.finished", false);
+ Services.prefs.clearUserPref("browser.onboarding.notification.prompt-count");
+ Services.prefs.clearUserPref("browser.onboarding.notification.last-time-of-changing-tour-sec");
+ Services.prefs.clearUserPref("browser.onboarding.notification.tour-ids-queue");
+ Services.prefs.clearUserPref("browser.onboarding.state");
+ }
+ Services.prefs.setIntPref(PREF_SEEN_TOURSET_VERSION, TOURSET_VERSION);
+ },
+};
diff --git a/browser/extensions/onboarding/README.md b/browser/extensions/onboarding/README.md
new file mode 100644
index 000000000000..c63be42b7181
--- /dev/null
+++ b/browser/extensions/onboarding/README.md
@@ -0,0 +1,87 @@
+# Onboarding
+
+System addon to provide the onboarding overlay for user-friendly tours.
+
+## How to show the onboarding tour
+
+Open `about:config` page and filter with `onboarding` keyword. Then set following preferences:
+
+```
+browser.onboarding.disabled = false
+browser.onboarding.tour-set = "new" // for new user tour, or "update" for update user tour
+```
+And make sure the value of `browser.onboarding.tourset-verion` and `browser.onboarding.seen-tourset-verion` are the same.
+
+## How to show the onboarding notification
+
+Besides above settings, notification will wait 5 minutes before showing the first notification on a new profile or the updated user profile (to not put too much information to the user at once).
+
+To manually remove the mute duration, set pref `browser.onboarding.notification.mute-duration-on-first-session-ms` to `0` and notification will be shown at the next time you open `about:home`, `about:newtab`, or `about:welcome`.
+
+## How to show the snippets
+
+Snippets (the remote notification that handled by activity stream) will only be shown after onboarding notifications are all done. You can set preference `browser.onboarding.notification.finished` to `true` to disable onboarding notification and accept snippets right away.
+
+## Architecture
+
+
+
+During booting from `bootstrap.js`, `OnboardingTourType.jsm` will check the onboarding tour type (`new` and `update` are supported types) and set required initial states into preferences.
+
+Everytime `about:home`, `about:newtab`, or `about:welcome` page is opened, `onboarding.js` is injected into that page via [frame scripts](https://developer.mozilla.org/en-US/Firefox/Multiprocess_Firefox/M….
+
+Then in `onboarding.js`, all tours are defined inside of `onboardingTourset` dictionary. `getTourIDList` function will load tours from proper preferences. (Check `How to change the order of tours` section for more detail).
+
+When user clicks the action button in each tour, We use [UITour](http://bedrock.readthedocs.io/en/latest/uitour.html) to highlight the correspondent browser UI element. The UITour client is bundled in onboarding addon via `jar.mn`.
+
+## Landing rules
+
+We would apply some rules:
+
+* To avoid conflict with the origin page, all styles and ids should be formatted as `onboarding-*`.
+* For consistency and easier filtering, all strings in `locales` should be formatted as `onboarding.*`.
+* For consistency, all related preferences should be formatted as `browser.onboarding.*`.
+* For accessibility, images that are for presentation only should have `role="presentation"` attribute.
+
+## How to change the order of tours
+
+Edit `browser/app/profile/firefox.js` and modify `browser.onboarding.newtour` for the new user tour or `browser.onboarding.updatetour` for the update user tour. You can change the tour list and the order by concate `tourIds` with `,` sign. You can find available `tourId` from `onboardingTourset` in `onboarding.js`.
+
+## How to pump tour set version after update tours
+
+We only update the tourset version when we have different **update** tourset. Update the new tourset **does not** require update the tourset version.
+
+The tourset version is used to track the last major tourset change version. The `tourset-version` pref store the major tourset version (ex: `1`) but not the current browser version. When browser update to the next version (ex: 58, 59) the tourset pref is still `1` if we didn't do any major tourset update.
+
+Once the tour set version is updated (ex: `2`), onboarding overlay should show the update tour to the updated user (ex: update from v56 -> v57), even when user has watched the previous tours or preferred to hide the previous tours.
+
+Edit `browser/app/profile/firefox.js` and set `browser.onboarding.tourset-version` as `[tourset version]` (in integer format).
+
+For example, if we update the tourset in v60 and decide to show all update users the tour, we set `browser.onboarding.tourset-version` as `3`.
+
+## Icon states
+
+Onboarding module has two states for its overlay icon: `default` and `watermark`.
+By default, it shows `default` state.
+When either tours or notifications are all completed, the icon changes to the `watermark` state.
+The icon state is stored in `browser.onboarding.state`.
+When `tourset-version` is updated, or when we detect the `tour-type` is changed to `update`, icon state will be changed back to the `default` state.
+
+## Customizable preferences
+
+Here are current support preferences that allow to customize the Onboarding's behavior.
+
+| PREF | DESCRIPTION | DEFAULT |
+|-----|-------------|:-----:|
+| `browser.onboarding.enabled` | disable onboarding experience entirely | true
+| `browser.onboarding.notification.finished` | Decide if we want to hide the notification permanently. | false
+| `browser.onboarding.notification.mute-duration-on-first-session-ms` |Notification mute duration. It also effect when the speech bubble is hidden and turned into the blue dot | 300000 (5 Min)
+| `browser.onboarding.notification.max-life-time-all-tours-ms` | Notification tours will all hide after this period | 1209600000 (10 Days)
+| `browser.onboarding.notification.max-life-time-per-tours-ms` | Per Notification tours will hide and show the next tour after this period | 432000000 (5 Days)
+| `browser.onboarding.notification.max-prompt-count-per-tour` | Each tour can only show the specific times in notification bar if user didn't interact with the tour notification. | 8
+| `browser.onboarding.newtour` | The tourset of new user tour. | performance,private,screenshots,addons,customize,default
+| `browser.onboarding.newtour.tooltip` | The string id which is shown in the new user tour's speech bubble. The preffered length is 2 lines. Should use `%S` to denote Firefox (brand short name) in string, or use `%1$S` if the name shows more than 1 time. | `onboarding.overlay-icon-tooltip2`
+| `browser.onboarding.updatetour` | The tourset of new user tour. | performance,library,screenshots,singlesearch,customize,sync
+| `browser.onboarding.updatetour.tooltip` | The string id which is shown in the update user tour's speech bubble. The preffered length is 2 lines. Should use `%S` to denote Firefox (brand short name) in string, or use `%1$S` if the name shows shows more than 1 time. | `onboarding.overlay-icon-tooltip-updated2`
+| `browser.onboarding.default-icon-src` | The default icon url. Should be svg or at least 64x64 | `chrome://branding/content/icon64.png`
+| `browser.onboarding.watermark-icon-src` | The watermark icon url. Should be svg or at least 64x64 | `resource://onboarding/img/watermark.svg`
diff --git a/browser/extensions/onboarding/api.js b/browser/extensions/onboarding/api.js
new file mode 100644
index 000000000000..c40800577976
--- /dev/null
+++ b/browser/extensions/onboarding/api.js
@@ -0,0 +1,238 @@
+/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+/* globals APP_STARTUP, ADDON_INSTALL */
+"use strict";
+
+ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm");
+XPCOMUtils.defineLazyModuleGetters(this, {
+ OnboardingTourType: "resource://onboarding/modules/OnboardingTourType.jsm",
+ OnboardingTelemetry: "resource://onboarding/modules/OnboardingTelemetry.jsm",
+ Services: "resource://gre/modules/Services.jsm",
+ UIState: "resource://services-sync/UIState.jsm",
+});
+
+XPCOMUtils.defineLazyServiceGetter(this, "resProto",
+ "@mozilla.org/network/protocol;1?name=resource",
+ "nsISubstitutingProtocolHandler");
+
+const RESOURCE_HOST = "onboarding";
+
+const {PREF_STRING, PREF_BOOL, PREF_INT} = Ci.nsIPrefBranch;
+
+const BROWSER_READY_NOTIFICATION = "browser-delayed-startup-finished";
+const BROWSER_SESSION_STORE_NOTIFICATION = "sessionstore-windows-restored";
+const PREF_WHITELIST = [
+ ["browser.onboarding.enabled", PREF_BOOL],
+ ["browser.onboarding.state", PREF_STRING],
+ ["browser.onboarding.notification.finished", PREF_BOOL],
+ ["browser.onboarding.notification.prompt-count", PREF_INT],
+ ["browser.onboarding.notification.last-time-of-changing-tour-sec", PREF_INT],
+ ["browser.onboarding.notification.tour-ids-queue", PREF_STRING],
+];
+
+[
+ "onboarding-tour-addons",
+ "onboarding-tour-customize",
+ "onboarding-tour-default-browser",
+ "onboarding-tour-library",
+ "onboarding-tour-performance",
+ "onboarding-tour-private-browsing",
+ "onboarding-tour-screenshots",
+ "onboarding-tour-singlesearch",
+ "onboarding-tour-sync",
+].forEach(tourId => PREF_WHITELIST.push([`browser.onboarding.tour.${tourId}.completed`, PREF_BOOL]));
+
+let waitingForBrowserReady = true;
+let startupData;
+
+/**
+ * Set pref. Why no `getPrefs` function is due to the privilege level.
+ * We cannot set prefs inside a framescript but can read.
+ * For simplicity and efficiency, we still read prefs inside the framescript.
+ *
+ * @param {Array} prefs the array of prefs to set.
+ * The array element carries info to set pref, should contain
+ * - {String} name the pref name, such as `browser.onboarding.state`
+ * - {*} value the value to set
+ **/
+function setPrefs(prefs) {
+ prefs.forEach(pref => {
+ let prefObj = PREF_WHITELIST.find(([name ]) => name == pref.name);
+ if (!prefObj) {
+ return;
+ }
+
+ let [name, type] = prefObj;
+
+ switch (type) {
+ case PREF_BOOL:
+ Services.prefs.setBoolPref(name, pref.value);
+ break;
+ case PREF_INT:
+ Services.prefs.setIntPref(name, pref.value);
+ break;
+ case PREF_STRING:
+ Services.prefs.setStringPref(name, pref.value);
+ break;
+ default:
+ throw new TypeError(`Unexpected type (${type}) for preference ${name}.`);
+ }
+ });
+}
+
+/**
+ * syncTourChecker listens to and maintains the login status inside, and can be
+ * queried at any time once initialized.
+ */
+let syncTourChecker = {
+ _registered: false,
+ _loggedIn: false,
+
+ isLoggedIn() {
+ return this._loggedIn;
+ },
+
+ observe(subject, topic) {
+ const state = UIState.get();
+ if (state.status == UIState.STATUS_NOT_CONFIGURED) {
+ this._loggedIn = false;
+ } else {
+ this.setComplete();
+ }
+ },
+
+ init() {
+ if (!Services.prefs.getBoolPref("identity.fxaccounts.enabled")) {
+ return;
+ }
+ // Check if we've already logged in at startup.
+ const state = UIState.get();
+ if (state.status != UIState.STATUS_NOT_CONFIGURED) {
+ this.setComplete();
+ }
+ this.register();
+ },
+
+ register() {
+ if (this._registered) {
+ return;
+ }
+ Services.obs.addObserver(this, "sync-ui-state:update");
+ this._registered = true;
+ },
+
+ setComplete() {
+ this._loggedIn = true;
+ Services.prefs.setBoolPref("browser.onboarding.tour.onboarding-tour-sync.completed", true);
+ },
+
+ unregister() {
+ if (!this._registered) {
+ return;
+ }
+ Services.obs.removeObserver(this, "sync-ui-state:update");
+ this._registered = false;
+ },
+
+ uninit() {
+ this.unregister();
+ },
+};
+
+/**
+ * Listen and process events from content.
+ */
+function initContentMessageListener() {
+ Services.mm.addMessageListener("Onboarding:OnContentMessage", msg => {
+ switch (msg.data.action) {
+ case "set-prefs":
+ setPrefs(msg.data.params);
+ break;
+ case "get-login-status":
+ msg.target.messageManager.sendAsyncMessage("Onboarding:ResponseLoginStatus", {
+ isLoggedIn: syncTourChecker.isLoggedIn(),
+ });
+ break;
+ case "ping-centre":
+ try {
+ OnboardingTelemetry.process(msg.data.params.data);
+ } catch (e) {
+ Cu.reportError(e);
+ }
+ break;
+ }
+ });
+}
+
+/**
+ * onBrowserReady - Continues startup of the add-on after browser is ready.
+ */
+function onBrowserReady() {
+ waitingForBrowserReady = false;
+
+ OnboardingTourType.check();
+ OnboardingTelemetry.init(startupData);
+ Services.mm.loadFrameScript("resource://onboarding/onboarding.js", true, true);
+ initContentMessageListener();
+}
+
+/**
+ * observe - nsIObserver callback to handle various browser notifications.
+ */
+function observe(subject, topic, data) {
+ switch (topic) {
+ case BROWSER_READY_NOTIFICATION:
+ Services.obs.removeObserver(observe, BROWSER_READY_NOTIFICATION);
+ onBrowserReady();
+ break;
+ case BROWSER_SESSION_STORE_NOTIFICATION:
+ Services.obs.removeObserver(observe, BROWSER_SESSION_STORE_NOTIFICATION);
+ // Postpone Firefox account checking until "before handling user events"
+ // phase to meet performance criteria. The reason we don't postpone the
+ // whole onBrowserReady here is because in that way we will miss onload
+ // events for onboarding.js.
+ Services.tm.idleDispatchToMainThread(() => syncTourChecker.init());
+ break;
+ }
+}
+
+this.onboarding = class extends ExtensionAPI {
+ onStartup() {
+ resProto.setSubstitutionWithFlags(RESOURCE_HOST,
+ Services.io.newURI("chrome/content/", null, this.extension.rootURI),
+ resProto.ALLOW_CONTENT_ACCESS);
+
+ if (this.extension.rootURI instanceof Ci.nsIJARURI) {
+ this.manifest = this.extension.rootURI.JARFile.QueryInterface(Ci.nsIFileURL).file;
+ } else if (this.extension.rootURI instanceof Ci.nsIFileURL) {
+ this.manifest = this.extension.rootURI.file;
+ }
+
+ if (this.manifest) {
+ Components.manager.addBootstrappedManifestLocation(this.manifest);
+ } else {
+ Cu.reportError("Cannot find onboarding chrome.manifest for registring translated strings");
+ }
+
+ // Only start Onboarding when the browser UI is ready
+ if (Services.startup.startingUp) {
+ Services.obs.addObserver(observe, BROWSER_READY_NOTIFICATION);
+ Services.obs.addObserver(observe, BROWSER_SESSION_STORE_NOTIFICATION);
+ } else {
+ onBrowserReady();
+ syncTourChecker.init();
+ }
+ }
+
+ onShutdown() {
+ resProto.setSubstitution(RESOURCE_HOST, null);
+
+ // Stop waiting for browser to be ready
+ if (waitingForBrowserReady) {
+ Services.obs.removeObserver(observe, BROWSER_READY_NOTIFICATION);
+ }
+ syncTourChecker.uninit();
+ }
+};
diff --git a/browser/extensions/onboarding/background.js b/browser/extensions/onboarding/background.js
new file mode 100644
index 000000000000..efe296ff2278
--- /dev/null
+++ b/browser/extensions/onboarding/background.js
@@ -0,0 +1,8 @@
+/* eslint-env webextensions */
+
+"use strict";
+
+browser.runtime.onUpdateAvailable.addListener(details => {
+ // By listening to but ignoring this event, any updates will
+ // be delayed until the next browser restart.
+});
diff --git a/browser/extensions/onboarding/content/Onboarding.jsm b/browser/extensions/onboarding/content/Onboarding.jsm
new file mode 100644
index 000000000000..de95a66632ab
--- /dev/null
+++ b/browser/extensions/onboarding/content/Onboarding.jsm
@@ -0,0 +1,1581 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+/* eslint-env mozilla/frame-script */
+
+"use strict";
+
+var EXPORTED_SYMBOLS = ["Onboarding"];
+
+const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
+
+const ONBOARDING_CSS_URL = "resource://onboarding/onboarding.css";
+const BUNDLE_URI = "chrome://onboarding/locale/onboarding.properties";
+const UITOUR_JS_URI = "resource://onboarding/lib/UITour-lib.js";
+const TOUR_AGENT_JS_URI = "resource://onboarding/onboarding-tour-agent.js";
+const BRAND_SHORT_NAME = Services.strings
+ .createBundle("chrome://branding/locale/brand.properties")
+ .GetStringFromName("brandShortName");
+const PROMPT_COUNT_PREF = "browser.onboarding.notification.prompt-count";
+const NOTIFICATION_FINISHED_PREF = "browser.onboarding.notification.finished";
+const ONBOARDING_DIALOG_ID = "onboarding-overlay-dialog";
+const ONBOARDING_MIN_WIDTH_PX = 960;
+const SPEECH_BUBBLE_MIN_WIDTH_PX = 1365;
+const SPEECH_BUBBLE_NEWTOUR_STRING_ID = "onboarding.overlay-icon-tooltip2";
+const SPEECH_BUBBLE_UPDATETOUR_STRING_ID = "onboarding.overlay-icon-tooltip-updated2";
+const ICON_STATE_WATERMARK = "watermark";
+const ICON_STATE_DEFAULT = "default";
+
+/**
+ * Helper function to create the tour description UI element.
+ */
+function createOnboardingTourDescription(div, title, description) {
+ let doc = div.ownerDocument;
+ let section = doc.createElement("section");
+ section.className = "onboarding-tour-description";
+
+ let h1 = doc.createElement("h1");
+ h1.setAttribute("data-l10n-id", title);
+ section.appendChild(h1);
+
+ let p = doc.createElement("p");
+ p.setAttribute("data-l10n-id", description);
+ section.appendChild(p);
+
+ div.appendChild(section);
+ return section;
+}
+
+/**
+ * Helper function to create the tour content UI element.
+ */
+function createOnboardingTourContent(div, imageSrc) {
+ let doc = div.ownerDocument;
+ let section = doc.createElement("section");
+ section.className = "onboarding-tour-content";
+
+ let img = doc.createElement("img");
+ img.setAttribute("src", imageSrc);
+ img.setAttribute("role", "presentation");
+ section.appendChild(img);
+
+ div.appendChild(section);
+ return section;
+}
+
+/**
+ * Helper function to create the tour button UI element.
+ */
+function createOnboardingTourButton(div, buttonId, l10nId, buttonElementTagName = "button") {
+ let doc = div.ownerDocument;
+ let aside = doc.createElement("aside");
+ aside.className = "onboarding-tour-button-container";
+
+ let button = doc.createElement(buttonElementTagName);
+ button.id = buttonId;
+ button.className = "onboarding-tour-action-button";
+ button.setAttribute("data-l10n-id", l10nId);
+ aside.appendChild(button);
+
+ div.appendChild(aside);
+ return aside;
+}
+
+/**
+ * Add any number of tours, key is the tourId, value should follow the format below
+ * "tourId": { // The short tour id which could be saved in pref
+ * // The unique tour id
+ * id: "onboarding-tour-addons",
+ * // (optional) mark tour as complete instantly when the user enters the tour
+ * instantComplete: false,
+ * // The string id of tour name which would be displayed on the navigation bar
+ * tourNameId: "onboarding.tour-addon",
+ * // The method returing strings used on tour notification
+ * getNotificationStrings(bundle):
+ * - title: // The string of tour notification title
+ * - message: // The string of tour notification message
+ * - button: // The string of tour notification action button title
+ * // Return a div appended with elements for this tours.
+ * // Each tour should contain the following 3 sections in the div:
+ * // .onboarding-tour-description, .onboarding-tour-content, .onboarding-tour-button-container.
+ * // If there was a .onboarding-tour-action-button present and was clicked, tour would be marked as completed.
+ * getPage() {},
+ * },
+ **/
+var onboardingTourset = {
+ "private": {
+ id: "onboarding-tour-private-browsing",
+ tourNameId: "onboarding.tour-private-browsing",
+ getNotificationStrings(bundle) {
+ return {
+ title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-private-browsing.title"),
+ message: bundle.GetStringFromName("onboarding.notification.onboarding-tour-private-browsing.message2"),
+ button: bundle.GetStringFromName("onboarding.button.learnMore"),
+ };
+ },
+ getPage(win) {
+ let div = win.document.createElement("div");
+
+ createOnboardingTourDescription(div,
+ "onboarding.tour-private-browsing.title2", "onboarding.tour-private-browsing.description3");
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_private.svg");
+ createOnboardingTourButton(div,
+ "onboarding-tour-private-browsing-button", "onboarding.tour-private-browsing.button");
+
+ return div;
+ },
+ },
+ "addons": {
+ id: "onboarding-tour-addons",
+ tourNameId: "onboarding.tour-addons",
+ getNotificationStrings(bundle) {
+ return {
+ title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-addons.title"),
+ message: bundle.formatStringFromName("onboarding.notification.onboarding-tour-addons.message", [BRAND_SHORT_NAME], 1),
+ button: bundle.GetStringFromName("onboarding.button.learnMore"),
+ };
+ },
+ getPage(win) {
+ let div = win.document.createElement("div");
+
+ createOnboardingTourDescription(div,
+ "onboarding.tour-addons.title2", "onboarding.tour-addons.description2");
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_addons.svg");
+ createOnboardingTourButton(div,
+ "onboarding-tour-addons-button", "onboarding.tour-addons.button");
+
+ return div;
+ },
+ },
+ "customize": {
+ id: "onboarding-tour-customize",
+ tourNameId: "onboarding.tour-customize",
+ getNotificationStrings(bundle) {
+ return {
+ title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-customize.title"),
+ message: bundle.formatStringFromName("onboarding.notification.onboarding-tour-customize.message", [BRAND_SHORT_NAME], 1),
+ button: bundle.GetStringFromName("onboarding.button.learnMore"),
+ };
+ },
+ getPage(win) {
+ let div = win.document.createElement("div");
+
+ createOnboardingTourDescription(div,
+ "onboarding.tour-customize.title2", "onboarding.tour-customize.description2");
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_customize.svg");
+ createOnboardingTourButton(div,
+ "onboarding-tour-customize-button", "onboarding.tour-customize.button");
+
+ return div;
+ },
+ },
+ "default": {
+ id: "onboarding-tour-default-browser",
+ instantComplete: true,
+ tourNameId: "onboarding.tour-default-browser",
+ getNotificationStrings(bundle) {
+ return {
+ title: bundle.formatStringFromName("onboarding.notification.onboarding-tour-default-browser.title", [BRAND_SHORT_NAME], 1),
+ message: bundle.formatStringFromName("onboarding.notification.onboarding-tour-default-browser.message", [BRAND_SHORT_NAME], 1),
+ button: bundle.GetStringFromName("onboarding.button.learnMore"),
+ };
+ },
+ getPage(win, bundle) {
+ let div = win.document.createElement("div");
+ let setFromBackGround = bundle.formatStringFromName("onboarding.tour-default-browser.win7.button", [BRAND_SHORT_NAME], 1);
+ let setFromPanel = bundle.GetStringFromName("onboarding.tour-default-browser.button");
+ let isDefaultMessage = bundle.GetStringFromName("onboarding.tour-default-browser.is-default.message");
+ let isDefault2ndMessage = bundle.formatStringFromName("onboarding.tour-default-browser.is-default.2nd-message", [BRAND_SHORT_NAME], 1);
+
+ createOnboardingTourDescription(div,
+ "onboarding.tour-default-browser.title2", "onboarding.tour-default-browser.description2");
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_default.svg");
+
+ let aside = win.document.createElement("aside");
+ aside.className = "onboarding-tour-button-container";
+ div.appendChild(aside);
+
+ let button = win.document.createElement("button");
+ button.id = "onboarding-tour-default-browser-button";
+ button.className = "onboarding-tour-action-button";
+ button.setAttribute("data-bg", setFromBackGround);
+ button.setAttribute("data-panel", setFromPanel);
+ aside.appendChild(button);
+
+ let isDefaultBrowserMsg = win.document.createElement("div");
+ isDefaultBrowserMsg.id = "onboarding-tour-is-default-browser-msg";
+ isDefaultBrowserMsg.className = "onboarding-hidden";
+ aside.appendChild(isDefaultBrowserMsg);
+ isDefaultBrowserMsg.append(isDefaultMessage);
+
+ let br = win.document.createElement("br");
+ isDefaultBrowserMsg.appendChild(br);
+ isDefaultBrowserMsg.append(isDefault2ndMessage);
+
+ div.addEventListener("beforeshow", () => {
+ win.document.dispatchEvent(new Event("Agent:CanSetDefaultBrowserInBackground"));
+ });
+ return div;
+ },
+ },
+ "sync": {
+ id: "onboarding-tour-sync",
+ instantComplete: true,
+ tourNameId: "onboarding.tour-sync2",
+ getNotificationStrings(bundle) {
+ return {
+ title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-sync.title"),
+ message: bundle.GetStringFromName("onboarding.notification.onboarding-tour-sync.message"),
+ button: bundle.GetStringFromName("onboarding.button.learnMore"),
+ };
+ },
+ getPage(win, bundle) {
+ const STATE_LOGOUT = "logged-out";
+ const STATE_LOGIN = "logged-in";
+ let div = win.document.createElement("div");
+ div.dataset.loginState = STATE_LOGOUT;
+ // The email validation pattern used in the form comes from IETF rfc5321,
+ // which is identical to server-side checker of Firefox Account. See
+ // discussion in https://bugzilla.mozilla.org/show_bug.cgi?id=1378770#c6
+ // for detail.
+ let emailRegex = "^[\\w.!#$%&’*+\\/=?^`{|}~-]{1,64}@[a-z\\d](?:[a-z\\d-]{0,253}[a-z\\d])?(?:\\.[a-z\\d](?:[a-z\\d-]{0,253}[a-z\\d])?)+$";
+
+ let description = createOnboardingTourDescription(div,
+ "onboarding.tour-sync.title2", "onboarding.tour-sync.description2");
+
+ description.querySelector("h1").className = "show-on-logged-out";
+ description.querySelector("p").className = "show-on-logged-out";
+
+ let h1LoggedIn = win.document.createElement("h1");
+ h1LoggedIn.setAttribute("data-l10n-id", "onboarding.tour-sync.logged-in.title");
+ h1LoggedIn.className = "show-on-logged-in";
+ description.appendChild(h1LoggedIn);
+
+ let pLoggedIn = win.document.createElement("p");
+ pLoggedIn.setAttribute("data-l10n-id", "onboarding.tour-sync.logged-in.description");
+ pLoggedIn.className = "show-on-logged-in";
+ description.appendChild(pLoggedIn);
+
+ let content = win.document.createElement("section");
+ content.className = "onboarding-tour-content";
+ div.appendChild(content);
+
+ let form = win.document.createElement("form");
+ form.className = "show-on-logged-out";
+ content.appendChild(form);
+
+ let h3 = win.document.createElement("h3");
+ h3.setAttribute("data-l10n-id", "onboarding.tour-sync.form.title");
+ form.appendChild(h3);
+
+ let p = win.document.createElement("p");
+ p.setAttribute("data-l10n-id", "onboarding.tour-sync.form.description");
+ form.appendChild(p);
+
+ let input = win.document.createElement("input");
+ input.id = "onboarding-tour-sync-email-input";
+ input.setAttribute("required", "true");
+ input.setAttribute("type", "email");
+ input.placeholder =
+ bundle.GetStringFromName("onboarding.tour-sync.email-input.placeholder");
+ input.pattern = emailRegex;
+ form.appendChild(input);
+
+ let br = win.document.createElement("br");
+ form.appendChild(br);
+
+ let button = win.document.createElement("button");
+ button.id = "onboarding-tour-sync-button";
+ button.className = "onboarding-tour-action-button";
+ button.setAttribute("data-l10n-id", "onboarding.tour-sync.button");
+ form.appendChild(button);
+
+ let img = win.document.createElement("img");
+ img.setAttribute("src", "resource://onboarding/img/figure_sync.svg");
+ img.setAttribute("role", "presentation");
+ content.appendChild(img);
+
+ let aside = win.document.createElement("aside");
+ aside.className = "onboarding-tour-button-container show-on-logged-in";
+ div.appendChild(aside);
+
+ let connectDeviceButton = win.document.createElement("button");
+ connectDeviceButton.id = "onboarding-tour-sync-connect-device-button";
+ connectDeviceButton.className = "onboarding-tour-action-button";
+ connectDeviceButton.setAttribute("data-l10n-id", "onboarding.tour-sync.connect-device.button");
+ aside.appendChild(connectDeviceButton);
+
+ div.addEventListener("beforeshow", () => {
+ function loginStatusListener(msg) {
+ removeMessageListener("Onboarding:ResponseLoginStatus", loginStatusListener);
+ div.dataset.loginState = msg.data.isLoggedIn ? STATE_LOGIN : STATE_LOGOUT;
+ }
+ this.sendMessageToChrome("get-login-status");
+ this.mm.addMessageListener("Onboarding:ResponseLoginStatus", loginStatusListener);
+ });
+
+ return div;
+ },
+ },
+ "library": {
+ id: "onboarding-tour-library",
+ tourNameId: "onboarding.tour-library",
+ getNotificationStrings(bundle) {
+ return {
+ title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-library.title"),
+ message: bundle.formatStringFromName("onboarding.notification.onboarding-tour-library.message", [BRAND_SHORT_NAME], 1),
+ button: bundle.GetStringFromName("onboarding.button.learnMore"),
+ };
+ },
+ getPage(win) {
+ let div = win.document.createElement("div");
+
+ createOnboardingTourDescription(div,
+ "onboarding.tour-library.title", "onboarding.tour-library.description2");
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_library.svg");
+ createOnboardingTourButton(div,
+ "onboarding-tour-library-button", "onboarding.tour-library.button2");
+
+ return div;
+ },
+ },
+ "singlesearch": {
+ id: "onboarding-tour-singlesearch",
+ tourNameId: "onboarding.tour-singlesearch",
+ getNotificationStrings(bundle) {
+ return {
+ title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-singlesearch.title"),
+ message: bundle.GetStringFromName("onboarding.notification.onboarding-tour-singlesearch.message"),
+ button: bundle.GetStringFromName("onboarding.button.learnMore"),
+ };
+ },
+ getPage(win, bundle) {
+ let div = win.document.createElement("div");
+
+ createOnboardingTourDescription(div,
+ "onboarding.tour-singlesearch.title", "onboarding.tour-singlesearch.description");
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_singlesearch.svg");
+ createOnboardingTourButton(div,
+ "onboarding-tour-singlesearch-button", "onboarding.tour-singlesearch.button");
+
+ return div;
+ },
+ },
+ "performance": {
+ id: "onboarding-tour-performance",
+ instantComplete: true,
+ tourNameId: "onboarding.tour-performance",
+ getNotificationStrings(bundle) {
+ return {
+ title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-performance.title"),
+ message: bundle.formatStringFromName("onboarding.notification.onboarding-tour-performance.message", [BRAND_SHORT_NAME], 1),
+ button: bundle.GetStringFromName("onboarding.button.learnMore"),
+ };
+ },
+ getPage(win, bundle) {
+ let div = win.document.createElement("div");
+
+ createOnboardingTourDescription(div,
+ "onboarding.tour-performance.title", "onboarding.tour-performance.description");
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_performance.svg");
+
+ return div;
+ },
+ },
+ "screenshots": {
+ id: "onboarding-tour-screenshots",
+ tourNameId: "onboarding.tour-screenshots",
+ getNotificationStrings(bundle) {
+ return {
+ title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-screenshots.title"),
+ message: bundle.formatStringFromName("onboarding.notification.onboarding-tour-screenshots.message", [BRAND_SHORT_NAME], 1),
+ button: bundle.GetStringFromName("onboarding.button.learnMore"),
+ };
+ },
+ getPage(win, bundle) {
+ let div = win.document.createElement("div");
+ // Screenshot tour opens the screenshot page directly, see below a#onboarding-tour-screenshots-button.
+ // The screenshots page should be responsible for highlighting the Screenshots button
+
+ createOnboardingTourDescription(div,
+ "onboarding.tour-screenshots.title", "onboarding.tour-screenshots.description");
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_screenshots.svg");
+
+ let aside = createOnboardingTourButton(div,
+ "onboarding-tour-screenshots-button",
+ "onboarding.tour-screenshots.button",
+ "a");
+
+ let button = aside.querySelector("a");
+ button.setAttribute("href", "https://screenshots.firefox.com/#tour");
+ button.setAttribute("target", "_blank");
+
+ return div;
+ },
+ },
+};
+
+/**
+ * The script won't be initialized if we turned off onboarding by
+ * setting "browser.onboarding.enabled" to false.
+ */
+class Onboarding {
+ constructor(mm, contentWindow) {
+ this.mm = mm;
+ this.init(contentWindow);
+ }
+
+
+ /**
+ * @param {String} action the action to ask the chrome to do
+ * @param {Array | Object} params the parameters for the action
+ */
+ sendMessageToChrome(action, params) {
+ this.mm.sendAsyncMessage("Onboarding:OnContentMessage", {
+ action, params,
+ });
+ }
+
+ /**
+ * Template code for talking to `PingCentre`
+ * @param {Object} data the payload for the telemetry
+ */
+ telemetry(data) {
+ this.sendMessageToChrome("ping-centre", {data});
+ }
+
+ registerNewTelemetrySession(data) {
+ this.telemetry(Object.assign(data, {
+ type: "onboarding-register-session",
+ }));
+ }
+
+ async init(contentWindow) {
+ this._window = contentWindow;
+ // session_key is used for telemetry to track the current tab.
+ // The number will renew after reloading the page.
+ this._session_key = Date.now();
+ this._tours = [];
+ this._tourType = Services.prefs.getStringPref("browser.onboarding.tour-type", "update");
+
+ let tourIds = this._getTourIDList();
+ tourIds.forEach(tourId => {
+ if (onboardingTourset[tourId]) {
+ this._tours.push(onboardingTourset[tourId]);
+ }
+ });
+
+ if (this._tours.length === 0) {
+ return;
+ }
+
+ // We want to create and append elements after CSS is loaded so
+ // no flash of style changes and no additional reflow.
+ await this._loadCSS();
+ this._bundle = Services.strings.createBundle(BUNDLE_URI);
+
+ this._loadJS(UITOUR_JS_URI);
+
+ this.uiInitialized = false;
+ let doc = this._window.document;
+ if (doc.hidden) {
+ // When the preloaded-browser feature is on,
+ // it would preload a hidden about:newtab in the background.
+ // We don't want to show onboarding experience in that hidden state.
+ let onVisible = () => {
+ if (!doc.hidden) {
+ doc.removeEventListener("visibilitychange", onVisible);
+ this._startUI();
+ }
+ };
+ doc.addEventListener("visibilitychange", onVisible);
+ } else {
+ this._startUI();
+ }
+ }
+
+ _startUI() {
+ this.registerNewTelemetrySession({
+ page: this._window.location.href,
+ session_key: this._session_key,
+ tour_type: this._tourType,
+ });
+
+ this._window.addEventListener("beforeunload", this);
+ this._window.addEventListener("unload", this);
+ this._window.addEventListener("resize", this);
+ this._resizeTimerId =
+ this._window.requestIdleCallback(() => this._resizeUI());
+ // start log the onboarding-session when the tab is visible
+ this.telemetry({
+ type: "onboarding-session-begin",
+ session_key: this._session_key,
+ });
+ }
+
+ _resizeUI() {
+ this._windowWidth = this._window.document.body.getBoundingClientRect().width;
+ if (this._windowWidth < ONBOARDING_MIN_WIDTH_PX) {
+ // Don't show the overlay UI before we get to a better, responsive design.
+ this.destroy();
+ return;
+ }
+
+ this._initUI();
+ if (this._isFirstSession && this._windowWidth >= SPEECH_BUBBLE_MIN_WIDTH_PX) {
+ this._overlayIcon.classList.add("onboarding-speech-bubble");
+ } else {
+ this._overlayIcon.classList.remove("onboarding-speech-bubble");
+ }
+ }
+
+ _initUI() {
+ if (this.uiInitialized) {
+ return;
+ }
+ this.uiInitialized = true;
+ this._tourItems = [];
+ this._tourPages = [];
+
+ let { body } = this._window.document;
+ this._overlayIcon = this._renderOverlayButton();
+ this._overlayIcon.addEventListener("click", this);
+ this._overlayIcon.addEventListener("keypress", this);
+ body.insertBefore(this._overlayIcon, body.firstChild);
+
+ this._overlay = this._renderOverlay();
+ this._overlay.addEventListener("click", this);
+ this._overlay.addEventListener("keydown", this);
+ this._overlay.addEventListener("keypress", this);
+ body.appendChild(this._overlay);
+
+ this._loadJS(TOUR_AGENT_JS_URI);
+
+ this._initPrefObserver();
+ this._onIconStateChange(Services.prefs.getStringPref("browser.onboarding.state", ICON_STATE_DEFAULT));
+
+ // Doing tour notification takes some effort. Let's do it on idle.
+ this._window.requestIdleCallback(() => this.showNotification());
+ }
+
+ _getTourIDList() {
+ let tours = Services.prefs.getStringPref(`browser.onboarding.${this._tourType}tour`, "");
+ return tours.split(",").filter(tourId => {
+ if (tourId === "sync" && !Services.prefs.getBoolPref("identity.fxaccounts.enabled")) {
+ return false;
+ }
+ return tourId !== "";
+ }).map(tourId => tourId.trim());
+ }
+
+ _initPrefObserver() {
+ if (this._prefsObserved) {
+ return;
+ }
+
+ this._prefsObserved = new Map();
+ this._prefsObserved.set("browser.onboarding.state", () => {
+ this._onIconStateChange(Services.prefs.getStringPref("browser.onboarding.state", ICON_STATE_DEFAULT));
+ });
+ this._tours.forEach(tour => {
+ let tourId = tour.id;
+ this._prefsObserved.set(`browser.onboarding.tour.${tourId}.completed`, () => {
+ this.markTourCompletionState(tourId);
+ this._checkWatermarkByTours();
+ });
+ });
+ for (let [name, callback] of this._prefsObserved) {
+ Services.prefs.addObserver(name, callback);
+ }
+ }
+
+ _checkWatermarkByTours() {
+ let tourDone = this._tours.every(tour => this.isTourCompleted(tour.id));
+ if (tourDone) {
+ this.sendMessageToChrome("set-prefs", [{
+ name: "browser.onboarding.state",
+ value: ICON_STATE_WATERMARK,
+ }]);
+ }
+ }
+
+ _clearPrefObserver() {
+ if (this._prefsObserved) {
+ for (let [name, callback] of this._prefsObserved) {
+ Services.prefs.removeObserver(name, callback);
+ }
+ this._prefsObserved = null;
+ }
+ }
+
+ /**
+ * Find a tour that should be selected. It is either a first tour that was not
+ * yet complete or the first one in the tab list.
+ */
+ get _firstUncompleteTour() {
+ return this._tours.find(tour => !this.isTourCompleted(tour.id)) ||
+ this._tours[0];
+ }
+
+ /*
+ * Return currently showing tour navigation item
+ */
+ get _activeTourId() {
+ // We are doing lazy load so there might be no items.
+ if (!this._tourItems) {
+ return "";
+ }
+
+ let tourItem = this._tourItems.find(item => item.classList.contains("onboarding-active"));
+ return tourItem ? tourItem.id : "";
+ }
+
+ /**
+ * Return current logo state as "logo" or "watermark".
+ */
+ get _logoState() {
+ return this._overlayIcon.classList.contains("onboarding-watermark") ?
+ "watermark" : "logo";
+ }
+
+ /**
+ * Return current speech bubble state as "bubble", "dot" or "hide".
+ */
+ get _bubbleState() {
+ let state;
+ if (this._overlayIcon.classList.contains("onboarding-watermark")) {
+ state = "hide";
+ } else if (this._overlayIcon.classList.contains("onboarding-speech-bubble")) {
+ state = "bubble";
+ } else {
+ state = "dot";
+ }
+ return state;
+ }
+
+ /**
+ * Return current notification state as "show", "hide" or "finished".
+ */
+ get _notificationState() {
+ if (this._notificationCachedState === "finished") {
+ return this._notificationCachedState;
+ }
+
+ if (Services.prefs.getBoolPref(NOTIFICATION_FINISHED_PREF, false)) {
+ this._notificationCachedState = "finished";
+ } else if (this._notification) {
+ this._notificationCachedState = "show";
+ } else {
+ // we know it is in the hidden state if there's no notification bar
+ this._notificationCachedState = "hide";
+ }
+
+ return this._notificationCachedState;
+ }
+
+ /**
+ * Return current notification prompt count.
+ */
+ get _notificationPromptCount() {
+ return Services.prefs.getIntPref(PROMPT_COUNT_PREF, 0);
+ }
+
+ /**
+ * Return current screen width and round it up to the nearest 50 pixels.
+ * Collecting rounded values reduces the risk that this could be used to
+ * derive a unique user identifier
+ */
+ get _windowWidthRounded() {
+ return Math.round(this._windowWidth / 50) * 50;
+ }
+
+ handleClick(target) {
+ let { id, classList } = target;
+ // Only containers receive pointer events in onboarding tour tab list,
+ // actual semantic tab is their first child.
+ if (classList.contains("onboarding-tour-item-container")) {
+ ({ id, classList } = target.firstChild);
+ }
+
+ switch (id) {
+ case "onboarding-overlay-button-icon":
+ case "onboarding-overlay-button":
+ this.telemetry({
+ type: "onboarding-logo-click",
+ bubble_state: this._bubbleState,
+ logo_state: this._logoState,
+ notification_state: this._notificationState,
+ session_key: this._session_key,
+ width: this._windowWidthRounded,
+ });
+ this.showOverlay();
+ this.gotoPage(this._firstUncompleteTour.id);
+ break;
+ case "onboarding-skip-tour-button":
+ this.hideNotification();
+ this.hideOverlay();
+ this.skipTour();
+ break;
+ case "onboarding-overlay-close-btn":
+ // If the clicking target is directly on the outer-most overlay,
+ // that means clicking outside the tour content area.
+ // Let's toggle the overlay.
+ case "onboarding-overlay":
+ let eventName = id === "onboarding-overlay-close-btn" ?
+ "overlay-close-button-click" : "overlay-close-outside-click";
+ this.telemetry({
+ type: eventName,
+ current_tour_id: this._activeTourId,
+ session_key: this._session_key,
+ target_tour_id: this._activeTourId,
+ width: this._windowWidthRounded,
+ });
+ this.hideOverlay();
+ break;
+ case "onboarding-notification-close-btn":
+ let currentTourId = this._notificationBar.dataset.targetTourId;
+ // should trigger before notification-session event is sent
+ this.telemetry({
+ type: "notification-close-button-click",
+ bubble_state: this._bubbleState,
+ current_tour_id: currentTourId,
+ logo_state: this._logoState,
+ notification_impression: this._notificationPromptCount,
+ notification_state: this._notificationState,
+ session_key: this._session_key,
+ target_tour_id: currentTourId,
+ width: this._windowWidthRounded,
+ });
+ this.hideNotification();
+ this._removeTourFromNotificationQueue(currentTourId);
+ break;
+ case "onboarding-notification-action-btn":
+ let tourId = this._notificationBar.dataset.targetTourId;
+ this.telemetry({
+ type: "notification-cta-click",
+ bubble_state: this._bubbleState,
+ current_tour_id: tourId,
+ logo_state: this._logoState,
+ notification_impression: this._notificationPromptCount,
+ notification_state: this._notificationState,
+ session_key: this._session_key,
+ target_tour_id: tourId,
+ width: this._windowWidthRounded,
+ });
+ this.showOverlay();
+ this.gotoPage(tourId);
+ this._removeTourFromNotificationQueue(tourId);
+ break;
+ }
+ if (classList.contains("onboarding-tour-item")) {
+ this.telemetry({
+ type: "overlay-nav-click",
+ current_tour_id: this._activeTourId,
+ session_key: this._session_key,
+ target_tour_id: id,
+ width: this._windowWidthRounded,
+ });
+ this.gotoPage(id);
+ // Keep focus (not visible) on current item for potential keyboard
+ // navigation.
+ target.focus();
+ } else if (classList.contains("onboarding-tour-action-button")) {
+ let activeTourId = this._activeTourId;
+ this.setToursCompleted([ activeTourId ]);
+ this.telemetry({
+ type: "overlay-cta-click",
+ current_tour_id: activeTourId,
+ session_key: this._session_key,
+ target_tour_id: activeTourId,
+ width: this._windowWidthRounded,
+ });
+ }
+ }
+
+ /**
+ * Wrap keyboard focus within the dialog.
+ * When moving forward, focus on the first element when the current focused
+ * element is the last one.
+ * When moving backward, focus on the last element when the current focused
+ * element is the first one.
+ * Do nothing if focus is moving in the middle of the list of dialog's focusable
+ * elements.
+ *
+ * @param {DOMNode} current currently focused element
+ * @param {Boolean} back direction
+ * @return {DOMNode} newly focused element if any
+ */
+ wrapMoveFocus(current, back) {
+ let elms = [...this._dialog.querySelectorAll(
+ `button, input[type="checkbox"], input[type="email"], [tabindex="0"]`)];
+ let next;
+ if (back) {
+ if (elms.indexOf(current) === 0) {
+ next = elms[elms.length - 1];
+ next.focus();
+ }
+ } else if (elms.indexOf(current) === elms.length - 1) {
+ next = elms[0];
+ next.focus();
+ }
+ return next;
+ }
+
+ handleKeydown(event) {
+ let { target, key, shiftKey } = event;
+
+ // Currently focused item could be tab container if previous navigation was done
+ // via mouse.
+ if (target.classList.contains("onboarding-tour-item-container")) {
+ target = target.firstChild;
+ }
+ let targetIndex;
+ switch (key) {
+ case "ArrowUp":
+ // Go to and focus on the previous tab if it's available.
+ targetIndex = this._tourItems.indexOf(target);
+ if (targetIndex > 0) {
+ let previous = this._tourItems[targetIndex - 1];
+ this.handleClick(previous);
+ previous.focus();
+ }
+ event.preventDefault();
+ break;
+ case "ArrowDown":
+ // Go to and focus on the next tab if it's available.
+ targetIndex = this._tourItems.indexOf(target);
+ if (targetIndex > -1 && targetIndex < this._tourItems.length - 1) {
+ let next = this._tourItems[targetIndex + 1];
+ this.handleClick(next);
+ next.focus();
+ }
+ event.preventDefault();
+ break;
+ case "Escape":
+ this.hideOverlay();
+ break;
+ case "Tab":
+ let next = this.wrapMoveFocus(target, shiftKey);
+ // If focus was wrapped, prevent Tab key default action.
+ if (next) {
+ event.preventDefault();
+ }
+ break;
+ default:
+ break;
+ }
+ event.stopPropagation();
+ }
+
+ handleKeypress(event) {
+ let { target, key } = event;
+
+ if (target === this._overlayIcon) {
+ if ([" ", "Enter"].includes(key)) {
+ // Remember that the dialog was opened with a keyboard.
+ this._overlayIcon.dataset.keyboardFocus = true;
+ this.handleClick(target);
+ event.preventDefault();
+ }
+ return;
+ }
+
+ // Currently focused item could be tab container if previous navigation was done
+ // via mouse.
+ if (target.classList.contains("onboarding-tour-item-container")) {
+ target = target.firstChild;
+ }
+ switch (key) {
+ case " ":
+ case "Enter":
+ // Assume that the handle function should be identical for keyboard
+ // activation if there is a click handler for the target.
+ if (target.classList.contains("onboarding-tour-item")) {
+ this.handleClick(target);
+ target.focus();
+ }
+ break;
+ default:
+ break;
+ }
+ event.stopPropagation();
+ }
+
+ handleEvent(evt) {
+ switch (evt.type) {
+ case "beforeunload":
+ // To make sure the telemetry pings are sent,
+ // we send "onboarding-session-end" ping as well as
+ // "overlay-session-end" and "notification-session-end" ping
+ // (by hiding the overlay and notificaiton) on beforeunload.
+ this.hideOverlay();
+ this.hideNotification();
+ this.telemetry({
+ type: "onboarding-session-end",
+ session_key: this._session_key,
+ });
+ break;
+ case "unload":
+ // Notice: Cannot do `destroy` on beforeunload, must do on unload.
+ // Otherwise, we would hit the docShell leak in the test.
+ // See Bug 1413830#c190 and Bug 1429652 for details.
+ this.destroy();
+ break;
+ case "resize":
+ this._window.cancelIdleCallback(this._resizeTimerId);
+ this._resizeTimerId =
+ this._window.requestIdleCallback(() => this._resizeUI());
+ break;
+ case "keydown":
+ this.handleKeydown(evt);
+ break;
+ case "keypress":
+ this.handleKeypress(evt);
+ break;
+ case "click":
+ this.handleClick(evt.target);
+ break;
+ default:
+ break;
+ }
+ }
+
+ destroy() {
+ if (!this.uiInitialized) {
+ return;
+ }
+ this.uiInitialized = false;
+
+ this._overlayIcon.dispatchEvent(new this._window.CustomEvent("Agent:Destroy"));
+
+ this._clearPrefObserver();
+ this._overlayIcon.remove();
+ if (this._overlay) {
+ // send overlay-session telemetry
+ this.hideOverlay();
+ this._overlay.remove();
+ }
+ if (this._notificationBar) {
+ // send notification-session telemetry
+ this.hideNotification();
+ this._notificationBar.remove();
+ }
+ this._tourItems = this._tourPages =
+ this._overlayIcon = this._overlay = this._notificationBar = null;
+ }
+
+ _onIconStateChange(state) {
+ switch (state) {
+ case ICON_STATE_DEFAULT:
+ this._overlayIcon.classList.remove("onboarding-watermark");
+ break;
+ case ICON_STATE_WATERMARK:
+ this._overlayIcon.classList.add("onboarding-watermark");
+ break;
+ }
+ return true;
+ }
+
+ showOverlay() {
+ if (this._tourItems.length == 0) {
+ // Lazy loading until first toggle.
+ this._loadTours(this._tours);
+ }
+
+ if (this._overlay && !this._overlay.classList.contains("onboarding-opened")) {
+ this.hideNotification();
+ this._overlay.classList.add("onboarding-opened");
+ this.toggleModal(true);
+ this.telemetry({
+ type: "overlay-session-begin",
+ session_key: this._session_key,
+ });
+ }
+ }
+
+ hideOverlay() {
+ if (this._overlay && this._overlay.classList.contains("onboarding-opened")) {
+ this._overlay.classList.remove("onboarding-opened");
+ this.toggleModal(false);
+ this.telemetry({
+ type: "overlay-session-end",
+ session_key: this._session_key,
+ });
+ }
+ }
+
+ /**
+ * Set modal dialog state and properties for accessibility purposes.
+ * @param {Boolean} opened whether the dialog is opened or closed.
+ */
+ toggleModal(opened) {
+ let { document: doc } = this._window;
+ if (opened) {
+ // Set aria-hidden to true for the rest of the document.
+ [...doc.body.children].forEach(
+ child => child.id !== "onboarding-overlay" &&
+ child.setAttribute("aria-hidden", true));
+ // When dialog is opened with the keyboard, focus on the first
+ // uncomplete tour because it will be the selected tour.
+ if (this._overlayIcon.dataset.keyboardFocus) {
+ doc.getElementById(this._firstUncompleteTour.id).focus();
+ } else {
+ // When the dialog is opened with the mouse, focus on the dialog
+ // itself to avoid visible keyboard focus styling.
+ this._dialog.focus();
+ }
+ } else {
+ // Remove all set aria-hidden attributes.
+ [...doc.body.children].forEach(
+ child => child.removeAttribute("aria-hidden"));
+ // If dialog was opened with a keyboard, set the focus back to the overlay
+ // button.
+ if (this._overlayIcon.dataset.keyboardFocus) {
+ delete this._overlayIcon.dataset.keyboardFocus;
+ this._overlayIcon.focus();
+ } else {
+ this._window.document.activeElement.blur();
+ }
+ }
+ }
+
+ /**
+ * Switch to proper tour.
+ * @param {String} tourId specify which tour should be switched.
+ */
+ gotoPage(tourId) {
+ let targetPageId = `${tourId}-page`;
+ for (let page of this._tourPages) {
+ if (page.id === targetPageId) {
+ page.style.display = "";
+ page.dispatchEvent(new this._window.CustomEvent("beforeshow"));
+ } else {
+ page.style.display = "none";
+ }
+ }
+ for (let tab of this._tourItems) {
+ if (tab.id == tourId) {
+ tab.classList.add("onboarding-active");
+ tab.setAttribute("aria-selected", true);
+ this.telemetry({
+ type: "overlay-current-tour",
+ current_tour_id: tourId,
+ session_key: this._session_key,
+ width: this._windowWidthRounded,
+ });
+
+ // Some tours should complete instantly upon showing.
+ if (tab.getAttribute("data-instant-complete")) {
+ this.setToursCompleted([tourId]);
+ }
+ } else {
+ tab.classList.remove("onboarding-active");
+ tab.setAttribute("aria-selected", false);
+ }
+ }
+ }
+
+ isTourCompleted(tourId) {
+ return Services.prefs.getBoolPref(`browser.onboarding.tour.${tourId}.completed`, false);
+ }
+
+ setToursCompleted(tourIds) {
+ let params = [];
+ tourIds.forEach(id => {
+ if (!this.isTourCompleted(id)) {
+ params.push({
+ name: `browser.onboarding.tour.${id}.completed`,
+ value: true,
+ });
+ }
+ });
+ if (params.length > 0) {
+ this.sendMessageToChrome("set-prefs", params);
+ }
+ }
+
+ markTourCompletionState(tourId) {
+ // We are doing lazy load so there might be no items.
+ if (!this._tourItems || this._tourItems.length === 0) {
+ return;
+ }
+
+ let completed = this.isTourCompleted(tourId);
+ let targetItem = this._tourItems.find(item => item.id == tourId);
+ let completedTextId = `onboarding-complete-${tourId}-text`;
+ // Accessibility: Text version of the auxiliary information about the tour
+ // item completion is provided via an invisible node with an aria-label that
+ // the tab is pointing to via aria-described by.
+ let completedText = targetItem.querySelector(`#${completedTextId}`);
+ if (completed) {
+ targetItem.classList.add("onboarding-complete");
+ if (!completedText) {
+ completedText = this._window.document.createElement("span");
+ completedText.id = completedTextId;
+ completedText.setAttribute("aria-label",
+ this._bundle.GetStringFromName("onboarding.complete"));
+ targetItem.appendChild(completedText);
+ targetItem.setAttribute("aria-describedby", completedTextId);
+ }
+ } else {
+ targetItem.classList.remove("onboarding-complete");
+ targetItem.removeAttribute("aria-describedby");
+ if (completedText) {
+ completedText.remove();
+ }
+ }
+ }
+
+ get _isFirstSession() {
+ // Should only directly return on the "false" case. Consider:
+ // 1. On the 1st session, `_firstSession` is true
+ // 2. During the 1st session, user resizes window so that the UI is destroyed
+ // 3. After the 1st mute session, user resizes window so that the UI is re-init
+ if (this._firstSession === false) {
+ return false;
+ }
+ this._firstSession = true;
+
+ // There is a queue, which means we had prompted tour notifications before. Therefore this is not the 1st session.
+ if (Services.prefs.prefHasUserValue("browser.onboarding.notification.tour-ids-queue")) {
+ this._firstSession = false;
+ }
+
+ // When this is set to 0 on purpose, always judge as not the 1st session
+ if (Services.prefs.getIntPref("browser.onboarding.notification.mute-duration-on-first-session-ms") === 0) {
+ this._firstSession = false;
+ }
+
+ return this._firstSession;
+ }
+
+ _getLastTourChangeTime() {
+ return 1000 * Services.prefs.getIntPref("browser.onboarding.notification.last-time-of-changing-tour-sec", 0);
+ }
+
+ _muteNotificationOnFirstSession(lastTourChangeTime) {
+ if (!this._isFirstSession) {
+ return false;
+ }
+
+ if (lastTourChangeTime <= 0) {
+ this.sendMessageToChrome("set-prefs", [{
+ name: "browser.onboarding.notification.last-time-of-changing-tour-sec",
+ value: Math.floor(Date.now() / 1000),
+ }]);
+ return true;
+ }
+ let muteDuration = Services.prefs.getIntPref("browser.onboarding.notification.mute-duration-on-first-session-ms");
+ return Date.now() - lastTourChangeTime <= muteDuration;
+ }
+
+ _isTimeForNextTourNotification(lastTourChangeTime) {
+ let maxCount = Services.prefs.getIntPref("browser.onboarding.notification.max-prompt-count-per-tour");
+ if (this._notificationPromptCount >= maxCount) {
+ return true;
+ }
+
+ let maxTime = Services.prefs.getIntPref("browser.onboarding.notification.max-life-time-per-tour-ms");
+ if (lastTourChangeTime && Date.now() - lastTourChangeTime >= maxTime) {
+ return true;
+ }
+
+ return false;
+ }
+
+ _removeTourFromNotificationQueue(tourId) {
+ let params = [];
+ let queue = this._getNotificationQueue();
+ params.push({
+ name: "browser.onboarding.notification.tour-ids-queue",
+ value: queue.filter(id => id != tourId).join(","),
+ });
+ params.push({
+ name: "browser.onboarding.notification.last-time-of-changing-tour-sec",
+ value: 0,
+ });
+ params.push({
+ name: "browser.onboarding.notification.prompt-count",
+ value: 0,
+ });
+ this.sendMessageToChrome("set-prefs", params);
+ }
+
+ _getNotificationQueue() {
+ let queue = "";
+ if (Services.prefs.prefHasUserValue("browser.onboarding.notification.tour-ids-queue")) {
+ queue = Services.prefs.getStringPref("browser.onboarding.notification.tour-ids-queue");
+ } else {
+ // For each tour, it only gets 2 chances to prompt with notification
+ // (each chance includes 8 impressions or 5-days max life time)
+ // if user never interact with it.
+ // Assume there are tour #0 ~ #5. Here would form the queue as
+ // "#0,#1,#2,#3,#4,#5,#0,#1,#2,#3,#4,#5".
+ // Then we would loop through this queue and remove prompted tour from the queue
+ // until the queue is empty.
+ let ids = this._tours.map(tour => tour.id).join(",");
+ queue = `${ids},${ids}`;
+ this.sendMessageToChrome("set-prefs", [{
+ name: "browser.onboarding.notification.tour-ids-queue",
+ value: queue,
+ }]);
+ }
+ return queue ? queue.split(",") : [];
+ }
+
+ showNotification() {
+ if (this._notificationState === "finished") {
+ return;
+ }
+
+ let lastTime = this._getLastTourChangeTime();
+ if (this._muteNotificationOnFirstSession(lastTime)) {
+ return;
+ }
+
+ // After the notification mute on the 1st session,
+ // we don't want to show the speech bubble by default
+ this._overlayIcon.classList.remove("onboarding-speech-bubble");
+
+ let queue = this._getNotificationQueue();
+ let totalMaxTime = Services.prefs.getIntPref("browser.onboarding.notification.max-life-time-all-tours-ms");
+ if (lastTime && Date.now() - lastTime >= totalMaxTime) {
+ // Reach total max life time for all tour notifications.
+ // Clear the queue so that we would finish tour notifications below
+ queue = [];
+ }
+
+ let startQueueLength = queue.length;
+ // See if need to move on to the next tour
+ if (queue.length > 0 && this._isTimeForNextTourNotification(lastTime)) {
+ queue.shift();
+ }
+ // We don't want to prompt the completed tour.
+ while (queue.length > 0 && this.isTourCompleted(queue[0])) {
+ queue.shift();
+ }
+
+ if (queue.length == 0) {
+ this.sendMessageToChrome("set-prefs", [
+ {
+ name: NOTIFICATION_FINISHED_PREF,
+ value: true,
+ },
+ {
+ name: "browser.onboarding.notification.tour-ids-queue",
+ value: "",
+ },
+ {
+ name: "browser.onboarding.state",
+ value: ICON_STATE_WATERMARK,
+ },
+ ]);
+ return;
+ }
+ let targetTourId = queue[0];
+ let targetTour = this._tours.find(tour => tour.id == targetTourId);
+
+ // Show the target tour notification
+ this._notificationBar = this._renderNotificationBar();
+ this._notificationBar.addEventListener("click", this);
+ this._notificationBar.dataset.targetTourId = targetTour.id;
+ let notificationStrings = targetTour.getNotificationStrings(this._bundle);
+ let actionBtn = this._notificationBar.querySelector("#onboarding-notification-action-btn");
+ actionBtn.textContent = notificationStrings.button;
+ let tourTitle = this._notificationBar.querySelector("#onboarding-notification-tour-title");
+ tourTitle.textContent = notificationStrings.title;
+ let tourMessage = this._notificationBar.querySelector("#onboarding-notification-tour-message");
+ tourMessage.textContent = notificationStrings.message;
+ this._notificationBar.classList.add("onboarding-opened");
+ this._window.document.body.appendChild(this._notificationBar);
+
+ let params = [];
+ let promptCount = 1;
+ if (startQueueLength != queue.length) {
+ // We just change tour so update the time, the count and the queue
+ params.push({
+ name: "browser.onboarding.notification.last-time-of-changing-tour-sec",
+ value: Math.floor(Date.now() / 1000),
+ });
+ params.push({
+ name: PROMPT_COUNT_PREF,
+ value: promptCount,
+ });
+ params.push({
+ name: "browser.onboarding.notification.tour-ids-queue",
+ value: queue.join(","),
+ });
+ } else {
+ promptCount = this._notificationPromptCount + 1;
+ params.push({
+ name: PROMPT_COUNT_PREF,
+ value: promptCount,
+ });
+ }
+ this.sendMessageToChrome("set-prefs", params);
+ this.telemetry({
+ type: "notification-session-begin",
+ session_key: this._session_key,
+ });
+ // since set-perfs is async, pass promptCount directly to avoid gathering the wrong
+ // notification_impression.
+ this.telemetry({
+ type: "notification-appear",
+ bubble_state: this._bubbleState,
+ current_tour_id: targetTourId,
+ logo_state: this._logoState,
+ notification_impression: promptCount,
+ notification_state: this._notificationState,
+ session_key: this._session_key,
+ width: this._windowWidthRounded,
+ });
+ }
+
+ hideNotification() {
+ if (this._notificationBar) {
+ if (this._notificationBar.classList.contains("onboarding-opened")) {
+ this._notificationBar.classList.remove("onboarding-opened");
+ this.telemetry({
+ type: "notification-session-end",
+ session_key: this._session_key,
+ });
+ }
+ }
+ }
+
+ _renderNotificationBar() {
+ let footer = this._window.document.createElement("footer");
+ footer.id = "onboarding-notification-bar";
+ footer.setAttribute("aria-live", "polite");
+ footer.setAttribute("aria-labelledby", "onboarding-notification-tour-title");
+
+ let section = this._window.document.createElement("section");
+ section.id = "onboarding-notification-message-section";
+ section.setAttribute("role", "presentation");
+ footer.appendChild(section);
+
+ let icon = this._window.document.createElement("div");
+ icon.id = "onboarding-notification-tour-icon";
+ icon.setAttribute("role", "presentation");
+ section.appendChild(icon);
+
+ let onboardingNotificationBody = this._window.document.createElement("div");
+ onboardingNotificationBody.id = "onboarding-notification-body";
+ onboardingNotificationBody.setAttribute("role", "presentation");
+ section.appendChild(onboardingNotificationBody);
+
+ let title = this._window.document.createElement("h1");
+ title.id = "onboarding-notification-tour-title";
+ onboardingNotificationBody.appendChild(title);
+
+ let message = this._window.document.createElement("p");
+ message.id = "onboarding-notification-tour-message";
+ onboardingNotificationBody.appendChild(message);
+
+ let actionButton = this._window.document.createElement("button");
+ actionButton.id = "onboarding-notification-action-btn";
+ actionButton.className = "onboarding-action-button";
+ section.appendChild(actionButton);
+
+ let closeButton = this._window.document.createElement("button");
+ closeButton.id = "onboarding-notification-close-btn";
+ closeButton.className = "onboarding-close-btn";
+ footer.appendChild(closeButton);
+
+ closeButton.setAttribute("title",
+ this._bundle.GetStringFromName("onboarding.notification-close-button-tooltip"));
+
+ return footer;
+ }
+
+ skipTour() {
+ this.setToursCompleted(this._tours.map(tour => tour.id));
+ this.sendMessageToChrome("set-prefs", [
+ {
+ name: NOTIFICATION_FINISHED_PREF,
+ value: true,
+ },
+ {
+ name: "browser.onboarding.state",
+ value: ICON_STATE_WATERMARK,
+ },
+ ]);
+ this.telemetry({
+ type: "overlay-skip-tour",
+ current_tour_id: this._activeTourId,
+ session_key: this._session_key,
+ width: this._windowWidthRounded,
+ });
+ }
+
+ _renderOverlay() {
+ let div = this._window.document.createElement("div");
+ div.id = "onboarding-overlay";
+
+ this._dialog = this._window.document.createElement("div");
+ this._dialog.setAttribute("role", "dialog");
+ this._dialog.setAttribute("tabindex", "-1");
+ this._dialog.setAttribute("aria-labelledby", "onboarding-header");
+ this._dialog.id = ONBOARDING_DIALOG_ID;
+ div.appendChild(this._dialog);
+
+ let header = this._window.document.createElement("header");
+ header.id = "onboarding-header";
+ header.textContent = this._bundle.GetStringFromName("onboarding.overlay-title2");
+ this._dialog.appendChild(header);
+
+ let nav = this._window.document.createElement("nav");
+ this._dialog.appendChild(nav);
+
+ let tourList = this._window.document.createElement("ul");
+ tourList.id = "onboarding-tour-list";
+ tourList.setAttribute("role", "tablist");
+ nav.appendChild(tourList);
+
+ let footer = this._window.document.createElement("footer");
+ footer.id = "onboarding-footer";
+ this._dialog.appendChild(footer);
+
+ let button = this._window.document.createElement("button");
+ button.id = "onboarding-overlay-close-btn";
+ button.className = "onboarding-close-btn";
+ button.setAttribute("title",
+ this._bundle.GetStringFromName("onboarding.overlay-close-button-tooltip"));
+ this._dialog.appendChild(button);
+
+ // support show/hide skip tour button via pref
+ if (!Services.prefs.getBoolPref("browser.onboarding.skip-tour-button.hide", false)) {
+ let skipButton = this._window.document.createElement("button");
+ skipButton.id = "onboarding-skip-tour-button";
+ skipButton.classList.add("onboarding-action-button");
+ skipButton.textContent = this._bundle.GetStringFromName("onboarding.skip-tour-button-label");
+ footer.appendChild(skipButton);
+ }
+
+ return div;
+ }
+
+ _renderOverlayButton() {
+ let button = this._window.document.createElement("button");
+ // support customize speech bubble string via pref
+ let tooltipStringPrefId = "";
+ let defaultTourStringId = "";
+ if (this._tourType === "new") {
+ tooltipStringPrefId = "browser.onboarding.newtour.tooltip";
+ defaultTourStringId = SPEECH_BUBBLE_NEWTOUR_STRING_ID;
+ } else {
+ tooltipStringPrefId = "browser.onboarding.updatetour.tooltip";
+ defaultTourStringId = SPEECH_BUBBLE_UPDATETOUR_STRING_ID;
+ }
+ let tooltip = "";
+ try {
+ let tooltipStringId = Services.prefs.getStringPref(tooltipStringPrefId, defaultTourStringId);
+ tooltip = this._bundle.formatStringFromName(tooltipStringId, [BRAND_SHORT_NAME], 1);
+ } catch (e) {
+ Cu.reportError(e);
+ // fallback to defaultTourStringId to proceed
+ tooltip = this._bundle.formatStringFromName(defaultTourStringId, [BRAND_SHORT_NAME], 1);
+ }
+ button.setAttribute("aria-label", tooltip);
+ button.id = "onboarding-overlay-button";
+ button.setAttribute("aria-haspopup", true);
+ button.setAttribute("aria-controls", `${ONBOARDING_DIALOG_ID}`);
+ let defaultImg = this._window.document.createElement("img");
+ defaultImg.id = "onboarding-overlay-button-icon";
+ defaultImg.setAttribute("role", "presentation");
+ defaultImg.src = Services.prefs.getStringPref("browser.onboarding.default-icon-src",
+ "chrome://branding/content/icon64.png");
+ button.appendChild(defaultImg);
+ let watermarkImg = this._window.document.createElement("img");
+ watermarkImg.id = "onboarding-overlay-button-watermark-icon";
+ watermarkImg.setAttribute("role", "presentation");
+ watermarkImg.src = Services.prefs.getStringPref("browser.onboarding.watermark-icon-src",
+ "resource://onboarding/img/watermark.svg");
+ button.appendChild(watermarkImg);
+ return button;
+ }
+
+ _loadTours(tours) {
+ let itemsFrag = this._window.document.createDocumentFragment();
+ let pagesFrag = this._window.document.createDocumentFragment();
+ for (let tour of tours) {
+ // Create tour navigation items dynamically
+ let li = this._window.document.createElement("li");
+ // List item should have no semantics. It is just a container for an
+ // actual tab.
+ li.setAttribute("role", "presentation");
+ li.className = "onboarding-tour-item-container";
+ // Focusable but not tabbable.
+ li.tabIndex = -1;
+
+ let tab = this._window.document.createElement("span");
+ tab.id = tour.id;
+ tab.textContent = this._bundle.GetStringFromName(tour.tourNameId);
+ tab.className = "onboarding-tour-item";
+ if (tour.instantComplete) {
+ tab.dataset.instantComplete = true;
+ }
+ tab.tabIndex = 0;
+ tab.setAttribute("role", "tab");
+
+ let tourPanelId = `${tour.id}-page`;
+ tab.setAttribute("aria-controls", tourPanelId);
+
+ li.appendChild(tab);
+ itemsFrag.appendChild(li);
+ // Dynamically create tour pages
+ let div = tour.getPage.call(this, this._window, this._bundle);
+
+ // Do a traverse for elements in the page that need to be localized.
+ let l10nElements = div.querySelectorAll("[data-l10n-id]");
+ for (let i = 0; i < l10nElements.length; i++) {
+ let element = l10nElements[i];
+ // We always put brand short name as the first argument for it's the
+ // only and frequently used arguments in our l10n case. Rewrite it if
+ // other arguments appear.
+ element.textContent = this._bundle.formatStringFromName(
+ element.dataset.l10nId, [BRAND_SHORT_NAME], 1);
+ }
+
+ div.id = tourPanelId;
+ div.classList.add("onboarding-tour-page");
+ div.setAttribute("role", "tabpanel");
+ div.setAttribute("aria-labelledby", tour.id);
+ div.style.display = "none";
+ pagesFrag.appendChild(div);
+ // Cache elements in arrays for later use to avoid cost of querying elements
+ this._tourItems.push(tab);
+ this._tourPages.push(div);
+
+ this.markTourCompletionState(tour.id);
+ }
+
+ let ul = this._window.document.getElementById("onboarding-tour-list");
+ ul.appendChild(itemsFrag);
+ let footer = this._window.document.getElementById("onboarding-footer");
+ this._dialog.insertBefore(pagesFrag, footer);
+ }
+
+ _loadCSS() {
+ // Returning a Promise so we can inform caller of loading complete
+ // by resolving it.
+ return new Promise(resolve => {
+ let doc = this._window.document;
+ let link = doc.createElement("link");
+ link.rel = "stylesheet";
+ link.type = "text/css";
+ link.href = ONBOARDING_CSS_URL;
+ link.addEventListener("load", resolve);
+ doc.head.appendChild(link);
+ });
+ }
+
+ _loadJS(uri) {
+ let doc = this._window.document;
+ let script = doc.createElement("script");
+ script.type = "text/javascript";
+ script.src = uri;
+ doc.head.appendChild(script);
+ }
+}
diff --git a/browser/extensions/onboarding/content/img/figure_addons.svg b/browser/extensions/onboarding/content/img/figure_addons.svg
new file mode 100644
index 000000000000..b5f056737f11
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/figure_addons.svg
@@ -0,0 +1 @@
+<svg width="295" height="199" viewBox="0 0 295 199" xmlns="http://www.w3.org/2000/svg"><title>addons</title><defs><linearGradient x1="-3335.765%" y1="-2236.632%" x2="5558.543%" y2="3780.103%" id="a"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-251.09%" y1="-799.657%" x2="413.095%" y2="1054.368%" id="b"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-573.525%" y1="-521.071%" x2="763.527%" y2="703.894%" id="c"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-2190.515%" y1="-1349.885%" x2="1528.924%" y2="974.764%" id="d"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1533.42%" y1="-541.311%" x2="2119.6%" y2="822.483%" id="e"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="1
00%"/></linearGradient><linearGradient x1="-16561.05%" y1="-16565.77%" x2="3895.86%" y2="3891.14%" id="f"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-204.8%" y1="-96.752%" x2="205.158%" y2="122.743%" id="g"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-112.715%" y1="-148.497%" x2="122.964%" y2="186.313%" id="h"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-817.408%" y1="-862.654%" x2="1335.951%" y2="1471.194%" id="i"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-923.374%" y1="-755.994%" x2="781.368%" y2="664.624%" id="j"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-57.385%" y1="-74.839%" x2="205.558%" y2="247.317%" i
d="k"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-136.437%" y1="-251.542%" x2="257.723%" y2="370.248%" id="l"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-3134.668%" y1="-1436.328%" x2="4644.893%" y2="2194.132%" id="m"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-3763.993%" y1="-1729.31%" x2="4015.564%" y2="1901.152%" id="n"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-967.977%" y1="-2316.493%" x2="1244.002%" y2="2869.881%" id="o"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-828.528%" y1="-1974.736%" x2="1398.399%" y2="3211.636%" id="p"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100
%"/></linearGradient><linearGradient x1="-341.455%" y1="-545.157%" x2="204.062%" y2="280.185%" id="q"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-6989.704%" y1="-10987.987%" x2="1723.404%" y2="2626.238%" id="r"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-346.468%" y1="-491.716%" x2="205.755%" y2="249.195%" id="s"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-163.142%" y1="-212.577%" x2="367.782%" y2="441.559%" id="t"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-431.069%" y1="-1508.892%" x2="196.676%" y2="489.527%" id="u"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-46.826%" y1="-91.711%" x2="115.212%" y2="164.256%
" id="v"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-469.407%" y1="-1536.217%" x2="369.344%" y2="1016.816%" id="w"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1395.389%" y1="-1859.067%" x2="1629.996%" y2="2107.556%" id="x"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-2132.529%" y1="-2452.139%" x2="1054.189%" y2="1199.521%" id="y"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1425.341%" y1="-2206.746%" x2="1446.3%" y2="2189.629%" id="z"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1606.851%" y1="-1906.042%" x2="1515.309%" y2="1780.906%" id="A"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offse
t="100%"/></linearGradient><linearGradient x1="-2952.119%" y1="-1785.48%" x2="1577.955%" y2="986.112%" id="B"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1774.73%" y1="-1132.379%" x2="2586.424%" y2="1691.85%" id="C"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-2922.831%" y1="-2221.905%" x2="1969.085%" y2="1525.629%" id="D"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-2790%" y1="-1744.265%" x2="1698.406%" y2="1091.887%" id="E"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-2160.459%" y1="-2153.729%" x2="1208.199%" y2="1206.393%" id="F"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-2197.557%" y1="-2601.613%" x2="936.46
2%" y2="1097.31%" id="G"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-2154.892%" y1="-3309.827%" x2="719.541%" y2="1068.777%" id="H"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-548.887%" y1="-964.209%" x2="654.188%" y2="1081.481%" id="I"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-318.202%" y1="-291.169%" x2="636.625%" y2="583.64%" id="J"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-455.827%" y1="-310.105%" x2="637.3%" y2="482.798%" id="K"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-5771.947%" y1="-7842.936%" x2="4994.847%" y2="6769.143%" id="L"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF"
offset="100%"/></linearGradient><linearGradient x1="-4086.052%" y1="-5400.884%" x2="4096.712%" y2="5365.911%" id="M"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1126.574%" y1="-1260.202%" x2="1146.414%" y2="1265.342%" id="N"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1150.53%" y1="-1333.596%" x2="1122.46%" y2="1289.085%" id="O"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-3947.183%" y1="-5480.943%" x2="3106.924%" y2="4260.443%" id="P"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-3712.853%" y1="-2757.137%" x2="2679.931%" y2="2000.284%" id="Q"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1265.89%" y1="-1395.587%"
x2="1007.1%" y2="1099.159%" id="R"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-2822.135%" y1="-2883.724%" x2="1935.286%" y2="1986.969%" id="S"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1548.018%" y1="-2218.877%" x2="1374.022%" y2="1940.124%" id="T"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1369.976%" y1="-1928.433%" x2="1334.398%" y2="1827.217%" id="U"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-2000.906%" y1="-2495.611%" x2="1322.352%" y2="1633.822%" id="V"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1470.604%" y1="-2072.202%" x2="1136.662%" y2="1558.26%" id="W"><stop stop-color="#00C8D7" offset="0%"/><st
op stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1194.36%" y1="-1336.72%" x2="901.341%" y2="996.106%" id="X"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-3044.038%" y1="-2935.975%" x2="2075.73%" y2="2014.652%" id="Y"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1070.957%" y1="-1207.499%" x2="1021.673%" y2="1139.289%" id="Z"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-668.331%" y1="-735.951%" x2="792.876%" y2="862.245%" id="aa"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-757.712%" y1="-833.503%" x2="703.496%" y2="764.693%" id="ab"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-27.011%" y1
="-65.863%" x2="141.75%" y2="151.803%" id="ac"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1321.337%" y1="-997.486%" x2="1168.46%" y2="905.137%" id="ad"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1178.308%" y1="-888.422%" x2="1311.49%" y2="1014.201%" id="ae"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-546.976%" y1="-767.016%" x2="189.173%" y2="248.435%" id="af"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-93.493%" y1="-91.832%" x2="384.41%" y2="447.193%" id="ag"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-258.202%" y1="-134.734%" x2="952.458%" y2="591.721%" id="ah"><stop stop-color="#00C8D7" offset="0%"/><stop
stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-764.248%" y1="-327.902%" x2="2650.413%" y2="1243.88%" id="ai"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-341.63%" y1="-267.69%" x2="726.152%" y2="596.706%" id="aj"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-517.979%" y1="-536.225%" x2="166.434%" y2="167.425%" id="ak"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-792.149%" y1="-462.294%" x2="98.549%" y2="87.052%" id="al"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-964.554%" y1="-879.35%" x2="1659.876%" y2="1524.226%" id="am"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-797.538%" y1="-665.
814%" x2="581.403%" y2="509.871%" id="an"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1165.123%" y1="-1561.869%" x2="356.021%" y2="461.04%" id="ao"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-505.775%" y1="-623.411%" x2="1092.421%" y2="1325.92%" id="ap"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-365.189%" y1="-194.484%" x2="727.939%" y2="447.534%" id="aq"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-2359.875%" y1="-1563.43%" x2="1606.616%" y2="1099.129%" id="ar"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><path d="M-31-68h352v303H-31z"/><g fill-rule="nonzero"><g fill="#D7D7DB"><path d="M23
8.3 15.6c-5.5 0-8.3-1.5-11-3-2.6-1.4-5-2.7-9.9-2.7s-7.4 1.3-9.9 2.7c-2.7 1.5-5.5 3-11 3s-8.3-1.5-11-3c-2.6-1.4-5-2.7-9.9-2.7s-7.4 1.3-9.9 2.7c-2.7 1.5-5.5 3-11 3-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1 4.9 0 7.4-1.3 9.9-2.7 2.7-1.5 5.5-3 11-3s8.3 1.5 11 3c2.6 1.4 5 2.7 9.9 2.7s7.4-1.3 9.9-2.7c2.7-1.5 5.5-3 11-3s8.3 1.5 11 3c2.6 1.4 5 2.7 9.9 2.7s7.4-1.3 9.9-2.7c2.7-1.5 5.5-3 11-3 .6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1-4.9 0-7.4 1.3-9.9 2.7-2.7 1.5-5.5 3-11 3zM196.2 7.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6 1.2 0 2.2-.1 3.2-.3.3-.1.6.2.6.5.1.3-.2.6-.5.6-1 .3-2.1.4-3.3.4zm7.6-1.6c-.2 0-.4-.1-.5-.3-.1-.3 0-.6.3-.7.3-.2.7-.3 1-.5.3-.1.6 0 .7.2.1.3 0 .6-.2.7-.3.2-.7.3-1 .5-.2.1-.2.1-.3.1zm-16.3-.1c-.1 0-.2 0-.2-.1-.8-.4-1.5-.7-2.2-1.1-2.6-1.4-5.1-2.8-10.2-2.8-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6 5.4 0 8.1 1.5 10.7 2.9.7.4 1.4.7 2.1 1.1.3.1.4.5.3.7-.1.4-.3.5-.5.5zm26.6-3.8c-.3 0-.5-.2-.6-.5 0-.3.2-.6.5-.6.8-.1 1.7-.1 2.7-.1.3 0 .6.2.6.6 0 .3-.2.6-.6.6-.9-.2-1.7-.1-2.6 0 .1 0 0 0 0 0zM238.5 23.1c-.3
0-.6-.2-.6-.6 0-.3.2-.6.6-.6 1.2 0 2.2-.1 3.2-.3.3-.1.6.2.6.5.1.3-.2.6-.5.6-1 .3-2.1.4-3.3.4zm7.6-1.5c-.2 0-.4-.1-.5-.3-.1-.3 0-.6.3-.7.3-.2.7-.3 1-.5.3-.1.6 0 .7.2.1.3 0 .6-.2.7-.3.2-.7.3-1 .5-.2 0-.3.1-.3.1zm-16.3-.2c-.1 0-.2 0-.2-.1-.8-.4-1.5-.7-2.2-1.1-2.6-1.4-5.1-2.8-10.2-2.8-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6 5.4 0 8.1 1.5 10.7 2.9.7.4 1.4.7 2.1 1.1.3.1.4.5.3.7-.1.4-.3.5-.5.5zm26.6-3.8c-.3 0-.5-.2-.6-.5 0-.3.2-.6.5-.6.8-.1 1.7-.1 2.6-.1.3 0 .6.2.6.6 0 .3-.2.6-.6.6-.8-.1-1.6-.1-2.5 0z"/></g><path d="M6.2 133.5c-2.8 0-5.1-2.2-5.1-4.8V10.2c0-3 2.4-5.4 5.4-5.4h127.2c3 0 5.4 2.4 5.4 5.4v118.5c0 2.6-2.3 4.8-5 4.8H6.2z" fill="#FFF"/><path d="M133.7 6c2.3 0 4.2 1.9 4.2 4.2v118.5c0 2-1.8 3.7-3.9 3.7H6.2c-2.2 0-3.9-1.7-3.9-3.7V10.2C2.3 7.9 4.2 6 6.5 6h127.2zm0-2.2H6.6C3 3.8.1 6.7.1 10.3v118.4c0 3.3 2.8 5.9 6.2 5.9H134c3.4 0 6.2-2.7 6.2-5.9V10.2c0-3.5-2.9-6.4-6.5-6.4z" fill="#D7D7DB"/><path d="M132.6 27.1v98.2c0 1-.1 1.2-.1 1.2s-.2.1-1.2.1H9.1c-1 0-1.2-.1-1.2-.1s-.1-.2-.1-1.2V27.1h124.8zm1.
1-1.1H6.6v99.3c0 2 .4 2.5 2.5 2.5h122.2c2 0 2.5-.4 2.5-2.5V26h-.1z" fill="#D7D7DB"/><g fill="#D7D7DB"><circle cx="3.4" cy="2.9" r="2.9" transform="translate(10 13)"/><circle cx="3.7" cy="2.9" r="2.9" transform="translate(19 13)"/><path d="M102.1 19.2H38.2c-1.7 0-3.1-1.4-3.1-3.1v-.3c0-1.7 1.4-3.1 3.1-3.1h63.9c1.7 0 3.1 1.4 3.1 3.1v.3c0 1.7-1.4 3.1-3.1 3.1z"/><g><circle cx="3.6" cy="2.9" r="2.9" transform="translate(114 13)"/><circle cx="2.9" cy="2.9" r="2.9" transform="translate(124 13)"/></g></g><ellipse fill="#EDEDF0" cx="177.8" cy="191.1" rx="78.4" ry="7.4"/><g fill="#D7D7DB"><path d="M241.5 164.9c-5.5 0-8.3-1.5-11-3-2.6-1.4-5-2.7-9.9-2.7s-7.4 1.3-9.9 2.7c-2.7 1.5-5.5 3-11 3s-8.3-1.5-11-3c-2.6-1.4-5-2.7-9.9-2.7s-7.4 1.3-9.9 2.7c-2.7 1.5-5.5 3-11 3s-8.3-1.5-11-3c-2.6-1.4-5-2.7-9.9-2.7s-7.4 1.3-9.9 2.7c-2.7 1.5-5.5 3-11 3s-8.3-1.5-11-3c-2.6-1.4-5-2.7-9.9-2.7-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1 5.5 0 8.3 1.5 11 3 2.6 1.4 5 2.7 9.9 2.7s7.4-1.3 9.9-2.7c2.7-1.5 5.5-3 11-3s8.3 1.5 11
3c2.6 1.4 5 2.7 9.9 2.7s7.4-1.3 9.9-2.7c2.7-1.5 5.5-3 11-3s8.3 1.5 11 3c2.6 1.4 5 2.7 9.9 2.7s7.4-1.3 9.9-2.7c2.7-1.5 5.5-3 11-3s8.3 1.5 11 3c2.6 1.4 5 2.7 9.9 2.7.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1zM200.5 155.8c-.8 0-1.5 0-2.3-.1-.3 0-.5-.3-.5-.6s.3-.5.6-.5c.7.1 1.4.1 2.2.1h1.1c.3 0 .6.2.6.5s-.2.6-.5.6h-1.2zm-41.4 0c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6 1.2 0 2.2-.1 3.2-.3.3-.1.6.2.6.5.1.3-.2.6-.5.6-1 .3-2.1.4-3.3.4zm46.9-.7c-.2 0-.5-.2-.5-.4-.1-.3.1-.6.4-.7.4-.1.7-.2 1-.3.3-.1.6.1.7.3.1.3-.1.6-.3.7-.4.1-.7.2-1.1.3-.1.1-.2.1-.2.1zm-39.3-.9c-.2 0-.4-.1-.5-.3-.1-.3 0-.6.3-.7.3-.2.7-.3 1-.5.3-.1.6 0 .7.2.1.3 0 .6-.2.7-.3.2-.7.3-1 .5-.2.1-.3.1-.3.1zm-16.3-.1c-.1 0-.2 0-.2-.1-.8-.4-1.5-.7-2.2-1.1-2.6-1.4-5.1-2.8-10.2-2.8-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6 5.4 0 8.1 1.5 10.7 2.9.7.4 1.4.7 2.1 1.1.3.1.4.5.3.7-.1.3-.3.5-.5.5zm39.5-1.2c-.1 0-.2 0-.3-.1-2.4-1.3-4.9-2.7-10-2.7-.9 0-1.7 0-2.5.1-.3 0-.6-.2-.6-.5s.2-.6.5-.6c.8-.1 1.7-.1 2.7-.1 5.4 0 8.1 1.5 10.5 2.8.3.1.4.5.2.8-.1.1-.3.3-.5.3zm26.3-2
.2c-.2 0-.5-.2-.5-.4-.1-.3.1-.6.4-.7 1.6-.4 3.3-.6 5.3-.6.3 0 .6.2.6.6 0 .3-.2.6-.6.6-1.9 0-3.5.2-5 .6-.1-.1-.2-.1-.2-.1z"/></g><g fill="#D7D7DB"><path d="M76.9 101c-.8 0-2.2-.1-3.6-.7-1.8-.8-2.7-2.2-2.7-4.1 0-1.6.9-2.6 1.8-3.5 1-1 1.9-2 1.9-3.8 0-1.5-2.1-3.7-5.8-3.7-3.8 0-5.5 2.2-5.5 3.7 0 1.8.9 2.8 1.9 3.8.9.9 1.9 1.9 1.9 3.5 0 3.5-3.2 4.8-6.2 4.8H47.8c-2.4 0-4.3-2-4.3-4.4V84.9c0-.1-.2-3 1.5-4.8.8-.9 1.9-1.3 3.3-1.3 1.6 0 2.5 1 3.4 1.9.9 1 1.8 2 3.6 2 1.6 0 3.3-1.9 3.3-5.4 0-3.6-1.7-5.2-3.3-5.2-1.8 0-2.7 1-3.6 2-.9 1-1.7 2-3.4 2-1.4 0-2.5-.4-3.3-1.3-1.7-1.8-1.5-4.9-1.5-5v-7.4c0-.9.3-1.8.8-2.6.8-1.1 2.1-1.8 3.5-1.8h9.3s2.7-.5 2.7-2.3c0-.7-.4-1.2-1.1-1.9-1-1-2.2-2.2-2.2-4.9 0-2.3 1.1-6.2 8.2-6.2 7.6 0 8.5 4.3 8.5 6.2 0 2.7-1.3 4-2.4 5-.8.7-1.2 1.2-1.2 1.9 0 1.8 2.8 2.3 2.8 2.3h9.9c2.4 0 4.3 2 4.3 4.4v5.6s.4 3 2.1 3c.7 0 1.1-.4 1.7-1.1.8-1 2-2.4 4.7-2.4 2.4 0 6.5 1 6.5 8.1 0 7.8-4.9 8.4-6.5 8.4-2.8 0-3.9-1.4-4.7-2.5-.6-.8-1-1.2-1.7-1.2-1.8 0-2.1 3-2.2 3v13.5c0 2.4-1.9 4.4-4.3 4.4h-5c
0-.3-.1-.3-.3-.3z"/></g></g><path d="M258.9 143.4c-.2.6-.7 1.1-1.2 1.5 0 1-.2 1.9-.6 2.8.9-.3 1.8-.8 2.6-1.6.7-.8 1.1-1.6 1.5-2.3.8-2 .4-4.2-1.1-5.5-.4-.4-1-.6-1.5-.8-.7-.2-1.5-.2-2.3 0 2.2 1.4 3.6 3.4 2.6 5.9zM129.7 89.8l-.2-.1c-.2 0-.3-.1-.5-.1h-.1-.1-.1H128.1c-.1 0-.1 0-.1.1 0 0-.1 0-.2.1-.1 0-.2.1-.3.2-.3.2-.7.6-1.1 1.1l-.7.7c.1.1.2.3.1.5-.2 1.1-.5 1.9-.8 2.7.2.6.4 1.1.6 1.6.4.8.9 1.6 1.5 2.4.6.8 1.3 1.5 2.2 2.2.5.4.9.7 1.3.9h.1c.4.3.9.5 1.5.7 1 .4 2.1.7 3.2.8.3 0 .7.1 1.1.1h2.1c.6-.1 1.1-.3 1.5-.4.6-.2 1-.4 1.3-.6.3-.2.5-.3.8-.5.5-3.3.9-7 1.1-11.2-1.3-.6-2.6-1.3-3.7-2.1-1 1-2 1.6-2.9 1.6-.3 0-.5 0-.8-.1l-3-1.2c-1.2.6-2.3.9-3.2.6z"/><path d="M141.1 57.4c0 .7 0 1.4.1 2.1-.3.3-.7.6-1 .9.3-.3.6-.6 1-.9-.1-.7-.1-1.4-.1-2.1zM180.3 24.8c-2-.4-4-.6-6-.6-.7 0-1.4 0-2.1.1.7 0 1.4-.1 2.1-.1 2 .1 4 .2 6 .6zM122.9 136.4c.6-.6 1.2-1.3 1.8-2-.6.6-1.2 1.3-1.8 2-1 1-2 2-3 2.9 1-.9 2-1.9 3-2.9zM134.2 123.6c.3-.4.7-.7 1.1-1.1l-1.1 1.1c-1.3 1.4-2.6 2.8-3.9 4.3-.6.7-1.2 1.5-1.9 2.2.6-.7 1.2-1.5 1.9
-2.2 1.2-1.4 2.5-2.9 3.9-4.3zM129.1 119.1l1.8.9c.6.3 1.3.5 1.9.7-.7-.2-1.3-.5-1.9-.7l-1.8-.9zM241.7 82.7v-.3M244.7 142.3h-.4.4zM145.9 40.2c.6-.9 1.2-1.8 1.8-2.6-.7.8-1.3 1.7-1.8 2.6zM211 186.6h.2-.5.3zM137.4 186.6h.3-.5.2zM177.3 142.7c-.3-.8-.6-1.5-.9-2.2.3.7.6 1.4.9 2.2zM109.4 153.9c1 .2 2.1.3 3.2.3h1.4-1.4c-1.1 0-2.2-.1-3.2-.3zM144.3 43c.5-1 1-1.9 1.5-2.8-.5.9-1 1.9-1.5 2.8z" fill="#FFF" fill-rule="nonzero"/><path d="M142 102c-.3.2-.5.3-.8.5-.3.2-.8.4-1.3.6-.4.1-.9.3-1.5.4h-1-1.1c-.4 0-.8 0-1.1-.1-1.1-.1-2.2-.4-3.2-.8-.6-.2-1-.5-1.5-.7h-.1c-.4-.2-.8-.5-1.3-.9-.8-.7-1.6-1.5-2.2-2.2-.6-.8-1.1-1.6-1.5-2.4-.2-.5-.5-1-.6-1.6-.5.9-1 1.6-1.8 2.1h-.1c.1.2.1.3.2.5.5 1 1 1.9 1.7 2.8.7.9 1.6 1.8 2.6 2.6.6.5 1.1.8 1.6 1.1.5.3 1.1.6 1.8.9 1.2.5 2.5.9 3.8 1 .4 0 .8.1 1.3.1h2.5c.7-.2 1.3-.3 1.8-.5.7-.3 1.2-.5 1.6-.7.6-.3 1.2-.8 1.8-1.2.7-4 1.2-8.6 1.4-13.9-1.6-.6-3.1-1.3-4.4-2.3-.4.6-.8 1.2-1.3 1.6 1.1.8 2.4 1.6 3.7 2.1-.1 4-.4 7.7-1 11z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M140.8 174.9
c.5-.5 1-1 1.4-1.5-.4.5-.9 1-1.4 1.5zM198.7 183.3c1.1.6 2.1 1.1 3.1 1.5.5.2 1 .4 1.5.5-.5-.2-1-.3-1.5-.5-1-.4-2-.9-3.1-1.5zM203.8 136.1c.6.1 1.2.2 1.9.4.3.1.6.2.9.2-.3-.1-.6-.2-.9-.2-.7-.2-1.3-.3-1.9-.4zM182.4 161.8c.2.7.5 1.4.7 2.1.5 1.4 1.1 2.8 1.8 4.1-.7-1.3-1.2-2.7-1.8-4.1-.2-.7-.4-1.4-.7-2.1zM180.3 153v.1-.1zM255 146.2c-.1.6-.4 1.1-.7 1.6.1 0 .1.1.2.1.8.2 1.7.2 2.6-.1.4-.9.6-1.8.6-2.8-.7.5-1.6.9-2.7 1.2z" fill="#FFF" fill-rule="nonzero"/><path d="M249.9 67.3c-.6.7-1.1 1.3-1.6 1.9-.5.7-1.1 1.4-1.5 2.2-.5.8-.9 1.6-1.3 2.3-.3.7-.7 1.5-1 2.4-.5 1.6-.7 3.4-.7 5.4V83.2l.1 1.2v.4c0 .4.1.7.1 1 .1 2 .1 4.1 0 6.1-.3 4.7-1.3 9.1-2.9 13.1-1 2.4-2.1 4.6-3.5 6.6-1.2 1.8-2.7 3.4-4.4 4.9-.3.4-.8.8-1.2 1.2-.3.2-.5.4-.8.5-1.8 1.3-3.7 2.5-5.8 3.4-1 .4-1.9.7-2.8 1 2.1 1.6 4.8 4.3 7.8 8.7 4.8 7.1 10.4 8.7 14.7 9 .4-.9.8-1.7 1.2-2.2-4.1-.1-9.3-1.3-13.8-8-1.9-2.8-3.7-5-5.4-6.6 2.5-1.1 4.8-2.6 6.9-4.3 2.2-1.8 4.2-3.9 5.8-6.2 1.5-2.1 2.8-4.5 3.8-7 1.7-4.2 2.7-8.8 3.1-13.8.1-2.1.1-4.2 0-6.3 0-.4 0-.7-.1
-1.1v-.4l-.1-1.1V82.4v-.5-.2c0-1.7.2-3.3.6-4.7.2-.6.5-1.3.9-2.2.3-.7.7-1.4 1.1-2 .4-.7.9-1.3 1.4-2 .4-.5.8-1 1.3-1.6-.8-.6-1.5-1.2-1.9-1.9zM138.8 58.5v-1.1c0-19.5 15.9-35.4 35.4-35.4s35.4 15.9 35.4 35.4v1.1c3.8 3.5 5.9 8.3 5.9 13.5 0 7.9-4.9 14.7-12.2 17.3 0 .8.1 1.5.1 2.3 0 0 .1.1.1.2.2.3.3.6.5.9l.3.6v.1c.1.3.3.5.4.8v.1c.1.2.2.3.2.5 0 .1.1.1.1.2l.1.2v.1l.1.2.1.2.3.6c.1.1.1.2.2.4.1.1.2.3.2.4.4.6.7 1.1 1 1.5.4.5.9 1 1.3 1.4.9.8 2 1.4 3.2 1.7h.1c.5.2 1.1.2 1.8.2h.2c.4 0 .8-.1 1.3-.1h.1c1.2-.2 2.2-.7 3.1-1.3.7-.5 1.2-1 1.6-1.5.5-.6 1-1.3 1.4-2.1 1-1.9 1.7-4.1 2-6.4.2-1.5.4-2.7.4-3.8v-.1-.5-1-2.3c0-.4.1-.9.1-1.3.4-4 1.7-8 3.5-11.5 1.6-3 3.6-5.7 6.1-8.2 1.8-1.8 3.8-3.3 6.3-4.9 1.9-1.3 3.6-2.1 5.1-2.9l.2-.1-.3-1-3.2 1.1c-.3.1-.7.2-1.1.2h-.2l-1.5.9c-2.6 1.6-4.7 3.3-6.6 5.2-2.7 2.6-4.9 5.6-6.5 8.7-2 3.7-3.3 8-3.7 12.3 0 .4-.1.9-.1 1.3v.4l-.1.7v2.9c-.1 1-.2 2.2-.4 3.6-.3 2.1-1 4.1-1.8 5.7-.3.6-.7 1.2-1.1 1.7-.3.4-.7.7-1.2 1.1-.7.5-1.4.8-2.2 1-.4.1-.8.1-1 .1h-.1c-.3 0-.9-.1-1.2-.1h-.1c-.8-.2-
1.6-.6-2.3-1.2-.4-.3-.7-.7-1-1.1-.2-.3-.5-.7-.8-1.2-.1-.1-.1-.3-.2-.4 0-.1-.1-.1-.1-.2-.1-.2-.2-.5-.3-.7l-.1-.1-.1-.2s0-.1-.1-.1l-.1-.2v-.1c-.1-.2-.2-.3-.3-.5v-.1c-.1-.2-.3-.5-.4-.7 0-.1-.1-.1-.1-.2-.1-.2-.2-.4-.3-.5-.1-.2-.2-.4-.4-.7v-.1c7.3-3.3 12.1-10.5 12.1-18.8 0-5.4-2.1-10.6-5.9-14.4V58c0-20.8-16.9-37.6-37.6-37.6-20.7 0-37.6 16.9-37.6 37.6v.2c-3.2 3.2-5.1 7.3-5.7 11.8l1.9.8c.5-5.1 2.5-9.2 5.8-12.3z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M238.7 153.9h-1.6.4c.5.1.9.1 1.2 0zM223.8 148.2c-.4-.3-.9-.7-1.3-1-.7-.5-1.3-1.1-2-1.6.6.5 1.3 1.1 2 1.6.4.3.9.6 1.3 1z" fill="#FFF" fill-rule="nonzero"/><path d="M251.4 150.6c-.1.1-.2.2-.4.3-.9.7-1.9 1.4-3.2 2.2-1.3.8-3 1.7-5.2 2.3-1.1.3-2.3.6-3.7.7-.4 0-.9.1-1.4.1-.9 0-1.9-.1-2.8-.2-3.2-.5-6-1.9-7.8-3-2.2-1.3-4.1-2.8-5.8-4.1-.8-.6-1.5-1.3-2.3-1.9-.7-.6-1.4-1.1-2.1-1.7-.2-.1-.5-.3-.7-.5-.4-.3-.7-.6-1-.9-1-.8-2-1.5-2.9-2.1-.6-.4-1.2-.7-1.9-1.2-.7-.4-1.3-.7-1.9-.9-1.1-.5-2.1-.9-3.3-1.2-.9-.2-1.9-.4-2.8-.5v7c.1 1.4.1 2.8.1 4.2v1.5c.4 16.7
4.3 19.4 9.8 23.1 6.3 4.2 8.2 5.5 7.7 9-.1 3.1-2.7 5.7-5.8 5.7h-.1c-.5.1-1.5.2-3 .2-.5 0-1.1 0-1.6-.1-1.8-.1-3.6-.4-5.3-.9-1.1-.3-2.2-.6-3.2-1.1-1.3-.5-2.4-1-3.4-1.6-1.2-.7-2.3-1.4-3.4-2.2-1.1-.9-2.2-1.8-3.3-2.8-1-1-2-2.1-3-3.4-1-1.2-1.9-2.5-2.7-3.8-1.6-2.6-3-5.5-4.1-8.4-.5-1.4-1-2.9-1.4-4.4-.2-.6-.3-1.2-.5-1.8v-.2l-.1-.4c-.1-.6-.3-1.2-.4-1.9l-.4-2v-.2V153.2l-.1-.4-.2-.8c-.3-1-.5-2.1-.8-3.2-.5-2-1.1-3.8-1.7-5.2-.4-.9-.6-1.5-.9-2.1-.1-.1-.1-.2-.2-.3 0 .1-.1.2-.1.3-.3.6-.5 1.2-.9 2.1-.6 1.5-1.2 3.2-1.7 5.3-.3 1-.6 2.1-.8 3.2l-.2.8-.1.4v.5l-.4 2c-.1.7-.3 1.3-.4 1.9l-.1.4-.1.5c-.1.6-.3 1.2-.5 1.7-.4 1.5-.9 3-1.4 4.4-1.1 3-2.5 5.8-4.1 8.4-.8 1.3-1.7 2.6-2.7 3.8-1.1 1.3-2 2.4-3 3.4s-2.2 2-3.3 2.8c-1.1.8-2.2 1.5-3.4 2.2-1 .6-2.1 1.1-3.4 1.6-1 .4-2.1.8-3.2 1.1-1.7.5-3.5.8-5.3.9h-1.6c-1.5 0-2.5-.1-3-.2h-.1c-3.2 0-5.8-2.7-5.8-5.9 0-3 2.3-5.6 5.3-5.9l.2-.1c.4-.2 1-.4 1.7-.8.8-.4 1.6-1 2.4-1.6.4-.4.9-.7 1.3-1.1.4-.3.8-.8 1.3-1.3.4-.5.8-1 1.2-1.6.4-.6.7-1.2 1.1-1.8.3-.6.6-1.3.9-2.1.3-.7.5-1.5.8-
2.3.2-.7.4-1.6.6-2.6.2-.8.3-1.7.4-2.7.1-.9.2-1.9.3-3 0-.4 0-.8.1-1.2v-.3V151.3v-.1-1.9c0-1.5 0-2.9.1-4.3l.3-3.9c-.9.5-1.8 1.2-3 2-.8.5-1.6 1.1-2.4 1.7-2.4 1.6-5 3.5-7.9 5.2-2.2 1.4-4.3 2.4-6.2 3.3-2.4 1.1-4.7 1.9-7 2.5-1.1.3-2.3.5-3.7.6-1 .1-1.9.1-2.8.1h-.9c-1.8-.1-3.5-.3-5.3-.8.4.8.7 1.6.9 2.4 1.5.3 3 .5 4.6.6h1c.9 0 1.9 0 3-.2h.1c1.5-.2 2.8-.4 4-.7 2.4-.6 4.9-1.4 7.4-2.6 2-.9 4.1-2 6.4-3.4 2.9-1.8 5.6-3.6 8-5.3.5-.4 1-.7 1.5-1.1-.1 1.3-.1 2.5-.1 3.9v5.2c0 .4 0 .8-.1 1.2v.1c-.1 1-.2 2-.3 2.8-.1 1-.3 1.8-.4 2.5-.2.9-.4 1.7-.6 2.4-.2.8-.5 1.5-.7 2.2-.3.7-.6 1.3-.9 1.9l-.9 1.5c-.4.5-.7 1-1 1.4-.4.5-.8.9-1.1 1.2-.4.3-.8.7-1.2 1-.8.6-1.6 1.1-2.1 1.4-.6.3-1.1.6-1.5.7-3.9.6-6.9 4-6.9 8 0 4.4 3.5 8 7.9 8.1.5.1 1.7.2 3.3.2.6 0 1.1 0 1.7-.1 2-.1 3.9-.4 5.7-.9 1.2-.3 2.3-.7 3.4-1.1 1.3-.5 2.5-1.1 3.6-1.7 1.3-.7 2.5-1.5 3.6-2.3 1.2-.9 2.4-1.9 3.5-3 1.1-1 2.1-2.2 3.2-3.6 1-1.3 2-2.6 2.8-4 1.7-2.8 3.2-5.7 4.3-8.8.5-1.5 1-3 1.5-4.6.2-.6.3-1.2.5-1.8l.1-.4v-.1l.1-.4c.1-.6.3-1.3.4-2l.4-2v-.2-.2l.1-.
5.2-.8c.2-1 .5-2.1.8-3.1l.6-2.1c.2.7.4 1.3.6 2.1.3 1 .5 2.1.8 3.1l.2.8.1.4v.4l.4 2c.1.7.3 1.3.4 2l.1.4v.1l.1.4c.1.6.3 1.2.5 1.9.4 1.6.9 3.1 1.5 4.6 1.1 3.1 2.6 6 4.3 8.8.9 1.4 1.8 2.8 2.8 4 1.1 1.4 2.2 2.6 3.2 3.6 1.1 1.1 2.3 2.1 3.5 3 1.2.9 2.4 1.6 3.7 2.4 1.1.6 2.3 1.2 3.6 1.7 1.1.4 2.3.8 3.4 1.1 1.8.5 3.8.8 5.7.9.6 0 1.2.1 1.7.1 1.6 0 2.7-.1 3.3-.2 4.2-.1 7.7-3.5 7.9-7.7.6-4.8-2.3-6.8-8.7-11.1-5.1-3.4-8.5-5.7-8.9-21.2v-1.5c0-1.4 0-2.9-.1-4.3v-3.9-.4c1.1.3 2 .6 2.9 1h.1c.5.2 1 .5 1.6.8.7.4 1.3.7 1.8 1.1 1.2.8 2.5 1.7 4 3 .8.6 1.6 1.3 2.4 2 .7.6 1.5 1.3 2.3 1.9 1.8 1.4 3.7 2.9 6.1 4.3 2 1.2 5 2.7 8.6 3.3 1.1.2 2.1.3 3.2.3.5 0 1.1 0 1.6-.1 1.5-.1 2.8-.4 4.1-.8 2.4-.7 4.3-1.7 5.7-2.5 1.4-.9 2.5-1.7 3.4-2.4l.1-.1c.5-.4.9-.7 1.2-1-.1 0-.3 0-.4-.1-.2-.2-1-.5-1.6-1z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M258.3 51.2c-.2-.3-.5-.5-.8-.7l.3.9c.1-.1.3-.1.5-.2z" fill="#FFF" fill-rule="nonzero"/><path d="M100.3 137.6c.1-.1.1-.1.2-.1.3-.1.6.1.7.4 0 .1.1.3.1.4.7.2 1.4.4 2.3.7 2.3.8 5.5 1.
8 8.4 1.8 1 0 1.9-.1 2.6-.4 1-.6 2.1-1.4 3.2-2.3 1.1-.9 2.2-2 3.5-3.4 1.8-1.9 3.5-3.9 5.4-6.1.6-.8 1.3-1.5 1.9-2.3 1.3-1.5 2.4-2.7 3.4-3.8-.7-.2-1.3-.5-1.9-.7-2.7-1.1-5.1-2.6-7.3-4.4-1.1-.9-2.1-1.8-2.9-2.7-.8-.8-1.6-1.8-2.4-2.9-1.4-1.9-2.4-3.9-3.2-5.9-.3-.7-.5-1.4-.7-2-.5-.4-.9-1-1-1.7v-.3-.1-.2-.8-1.2c0-.2 0-.4.1-.6-.1-.9-.2-1.8-.2-2.7v-.8V94.7v-.2c-1-1.1-1.4-2.3-1.6-3.3-.1.4-.2.8-.2 1.2l-.1.8c0 .4-.1.9-.1 1.3v1.7c0 1.6.2 3.1.4 4.6.3 2 .9 3.9 1.6 5.8.9 2.2 2 4.3 3.5 6.4.9 1.2 1.7 2.2 2.6 3.2.9 1 2 2 3.1 2.9 2.1 1.7 4.3 3.1 6.8 4.2-.4.4-.8.9-1.2 1.4-.7.8-1.3 1.5-2 2.3-1.8 2.1-3.5 4.2-5.3 6-1.2 1.3-2.3 2.3-3.3 3.2-.9.8-1.8 1.4-2.6 1.9-.5.1-1.1.2-1.8.2-2.5 0-5.4-.9-7.6-1.7-1.5-.5-2.6-.9-3.7-1-.4-.1-.7-.1-1.1-.1-.3 0-.6 0-.8.1l.1.6c.3.5.8.9 1.1 1.4z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M146.2 166.2c-.1.4-.2.7-.4 1.1.2-.3.3-.7.4-1.1z" fill="#FFF" fill-rule="nonzero"/><path d="M37.1 92.1c.1 0 .2-.1.3-.1-.6-.9-1.2-1.8-1.7-2.7-.2.1-.4.2-.6.2.1.2.2.5.2.7.3.8.7 1.6 1.1 2.5.2-.3.4-.5
.7-.6z" fill="url(#a)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M65.2 105.7s2.7-.5 6.3-2.1c.1-.3.1-.5.2-.8-3.1 1.1-6.7 1.7-10.9 1.7h-1.1c-8.8-.2-15.1-4.7-18.7-8.2.2 1 .1 1.8-.1 2.5.7.7 1.5 1.5 2.3 2.1 1.5 1.2 3.1 2.3 4.9 3.2l1.8.9c.6.3 1.3.5 1.9.7.7.2 1.3.4 2 .6l1 .2c.1 0 .2 0 .3.1l-.1.1c3.6.6 6.8.7 9.2.6 0-.1-.1-.2-.1-.2.1-.7.5-1.3 1.1-1.4z" fill="url(#b)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M38.9 124.2c2.9-2.4 6.1-6.1 10-10.6 1.6-1.8 3.4-3.9 5.3-6.1l-1.1 1.1c-1.3 1.4-2.6 2.8-3.9 4.3-.6.7-1.2 1.5-1.9 2.2-.6.7-1.2 1.4-1.8 2.2l-1.8 2.1c-.6.7-1.2 1.4-1.8 2-1 1-2 2-3 2.8z" fill="url(#c)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M65.2 151.2c-.1.4-.2.7-.4 1.1-.3.8-.7 1.5-1 2.3-.4.7-.8 1.4-1.2 2-.4.6-.9 1.2-1.3 1.8-.5.5-.9 1.1-1.4 1.5-.1.1-.1.1-.2.1 2.5-1.8 4.4-4.6 5.5-8.8z" fill="url(#d)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M70.5 73.8c-.1 0-.1 0 0 0-.2 0-.8.1-1.8.1-.7 0-1.5 0-2.3-.1-.2 5.8-.7 10.7-1.5 15 .6
-.7 1-1.3 1.4-1.9 1.9-3.4 3.4-9.4 4.2-13.1z" fill="url(#e)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M171.4 131.5s.1 0 0 0c.1 0 .1 0 0 0 .1 0 .1 0 0 0z" fill="url(#f)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M162.9 131.2c-7.1 3-14.2-.7-19.1-5.2-4.9-4.5-16.4-17.9-16.4-17.9l9.3-.7s.5.1 1.5.6c-.3-.3-.7-.5-1-.8h-1.3c-2.6 0-4.7-.4-4.8-.4-.3-.1-.5-.3-.5-.6.1-.3.3-.5.6-.5 0 0 4 .7 7.7.2.4-.1.7-.1 1.1-.2 1.2-.3 2.4-.7 3.5-1.2 1-.4 1.9-.9 2.9-1.4-.4-1 .4-2.7 2.1-3.9 1.5-1.1 3.1-1.5 4-1 .9-.9 1.6-1.9 2.3-2.9 1-1.5 1.9-3 2.6-4.6.2-.5.5-1 .7-1.6.6-1.4 1-2.8 1.4-4.3-.3.1-.5.1-.8.1-1.2-.3-1.6-2.3-1.1-4.4.6-2.1 2-3.6 3.1-3.3v-.4c.1-2 .1-3.9 0-5.8 0-.5-.1-.9-.1-1.4 0-.4-.1-.8-.1-1.2v-.8-.2-.7c0-1.6.1-3.2.4-4.6.1-.5.2-1 .4-1.4.3-.9.7-1.8 1.1-2.7.4-.9.9-1.7 1.4-2.6l1.5-2.1c-.4 0-.7-.2-.9-.4-.8-.9-.2-2.8 1.4-4.3.4-.4.9-.7 1.3-1l-.6-1.7c-1.8 1.2-3.6 2.7-4.8 4.8-3.6 6.1-4.4 8.7-4.4 13.9v1.3c0 6.1.1 17.4-4.2 23.9-5.6 8.4-14 12.5-25.6 12.5H126c2.9.5 6 .7 9.4.2.6-.1 1.2
.3 1.3.9.1.6-.3 1.2-.9 1.3-1.5.2-3 .4-4.5.4-5.3 0-9.9-1.4-13.2-2.9.7 4 1.1 8.1 1.2 12.3.3 0 .5.2.5.5 0 0 .2 2.3.2 6.2.4 0 .8 0 1.2.1.4 0 .9.1 1.4.2.6.1 1.2.2 1.9.4.3.1.6.2.9.2.6.2 1.2.4 1.9.6.3.1.6.3 1 .4.7.3 1.3.6 2 1s1.4.8 2.1 1.3c.3.2.5.4.8.6.8-.8 2.7-.5 4.4.7 1.8 1.3 2.7 3.2 2 4.1.6.5 1.3 1.1 2 1.6.4.3.8.7 1.3 1 .4.3.9.7 1.3 1l1.8 1.2c0-.1 0-.3.1-.4.4-1.1 2.5-1.3 4.5-.5 2.1.8 3.4 2.4 2.9 3.5-.1.2-.2.4-.4.5.3.1.7.2 1 .2.6.1 1.1.1 1.7.2h2c1.2-.1 2.2-.3 3.2-.6.2-.1.4-.1.6-.2l-.3-.3c-.6-1 .5-2.8 2.4-3.9 1.4-.8 3.1-1.1 4.3-.8l-.6-1.2c-1-.4-1.8-1-2.4-1.6-.7.1-1.4.4-2.1.7z" fill="url(#g)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M134.8 169.1c-3.6 0-10.7-2.3-15.5-4.8-7.7-4.1-13.4-16.9-14.8-26.9-1.7-12.1-5.1-22.4-8.1-25.1-1.3-1.1-2.5-1.7-3.5-1.9-2.6.9-4.7 2.6-6.1 5.1-2 3.5-2.8 10.4-3.7 17.7-1 8.3-2.1 16.9-4.9 21.5-5.7 9.4-11.9 13.8-20.6 14.8-1.1.1-2.1.2-2.9.2-2.8 0-4.2-.6-4.9-1.1.4 1.6 1.8 2.8 3.5 2.8h4.5c1.4-.1 3-.3 4.8-.8.5-.1.9-.3 1.4-.4.5-.2 1-.3 1.5-.5s1-.4 1.5-.7c
.5-.2 1-.5 1.6-.8 1.1-.6 2.1-1.3 3.2-2 .2-.2.5-.4.7-.6-.1 0-.1-.1-.2-.1-.9-.8-.3-2.8 1.3-4.4 1.6-1.6 3.5-2.2 4.4-1.3 0 0 .1.1.1.2.8-1 1.5-2 2.2-3.1.4-.6.8-1.3 1.1-1.9.7-1.3 1.4-2.7 2-4 .3-.7.6-1.4.8-2.1.4-1.1.8-2.2 1.1-3.3h-.7c-1.1-.4-1.4-2.4-.7-4.5.7-1.9 2-3.2 3.1-3.1l.1-.2.1-.4.2-.9c.3-1.1.5-2.2.8-3.2.3-1 .6-2 .9-2.9.3-.9.6-1.8.9-2.6.3-.8.6-1.5.9-2.2.2-.3.3-.6.5-.9.1-.3.3-.6.4-.9.5-.8.9-1.5 1.3-2.2.4.6.8 1.4 1.3 2.2.1.3.3.6.4.9.1.3.3.6.5.9.3.7.6 1.4.9 2.2.6 1.6 1.2 3.4 1.8 5.5.3 1 .6 2.1.8 3.2l.2.9.1.4.1.2V138.3l.4 2c.1.8.3 1.5.5 2.2l.6 2.1.6 2.1c.2.7.5 1.4.7 2.1.5 1.4 1.1 2.8 1.8 4.1.7 1.3 1.4 2.7 2.2 3.9.8 1.3 1.6 2.5 2.5 3.6.9 1.1 1.8 2.2 2.9 3.2.5.5 1 .9 1.5 1.4.5.4 1 .9 1.6 1.2.5.4 1.1.8 1.6 1.1.5.3 1.1.7 1.6 1 1.1.6 2.1 1.1 3.1 1.5.5.2 1 .4 1.5.5.5.2 1 .3 1.4.4 1.9.5 3.5.7 4.8.8h4.6c1.7 0 3.1-1.1 3.5-2.7h-.1c-.4.2-1 .3-1.7.3z" fill="url(#h)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M62.2 64.1c0 1.5-.3 3.3-1.1 5.3-.1.2-.2.5-.3.7 1.6 1.2 3.5 2.1 5.6 2.6 1.9.3
3.7.1 3.9.1-.7-1-1.4-2-2.1-3.1-2.4-1.4-4.5-3.3-6-5.6z" fill="url(#i)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M129.4 88.3c-1.2-.4-2.3-1.1-3.3-1.9-.6-.5-1.1-1.1-1.6-1.7-.2-.3-.5-.6-.7-.9l-.6-.9c-.2-.3-.4-.6-.5-.9-.1-.2-.2-.3-.2-.5-.1-.2-.1-.3-.2-.5-.1-.1-.2-.3-.2-.4-.1-.1-.1-.3-.2-.4-.1-.3-.3-.6-.4-.8-.1-.3-.3-.5-.4-.8-.1-.2-.2-.5-.4-.7-.1-.2-.2-.4-.3-.5-.1-1.1-.2-2.3-.2-3.5-1.2.2-2.3.3-2.8.3.1 2.1.3 4.3.9 5.8.7 1.7 3.6 7.6 11.1 8.3z" fill="url(#j)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M64.6 42.9c-.1-1.1-.2-2.1-.2-3.2C64.4 23.8 77.3 11 93.1 11c15.9 0 28.7 12.9 28.7 28.7v1.5c4.1 3.1 6.7 7.9 6.7 13.4 0 6.4-3.6 12-8.8 14.8-.7 1.2-1.5 2.4-2.3 3.5.6 0 1.7-.1 3-.3.7-.2 1.4-.4 2.1-.7.8-.4 1.6-.8 2.3-1.3 4.4-2.9 7.4-7.9 7.4-13.5 0-2.5-.6-4.9-1.6-7-1-2.1-2.5-4-4.3-5.5 0-.7.1-1.4.1-2.1 0-2.8-.3-5.4-1-8-.1-.2-.1-.4-.2-.6-1.5-5.7-4.5-10.8-8.6-14.8-1-1-2.1-2-3.2-2.8-1.1-.9-2.3-1.7-3.6-2.4-2.5-1.4-5.2-2.6-8-3.3-.2-.1-.4-.1-.6-.2-.6-.2-1.3-.3-1.9-.4-2-.4-4-
.6-6-.6-.7 0-1.4 0-2.1.1-2.1.1-4.2.5-6.2 1-6.9 1.8-12.9 5.7-17.3 11-.3.4-.7.8-1 1.3-.6.9-1.2 1.7-1.8 2.6-.6.9-1.1 1.9-1.5 2.8-.7 1.5-1.3 3-1.8 4.5-.3 1-.6 2.1-.8 3.2-.4 2.2-.7 4.4-.7 6.7 0 .7 0 1.4.1 2.1-.3.3-.7.6-1 .9-.6.6-1.2 1.3-1.7 2-.3.4-.5.7-.7 1.1-.6 1-1.1 2.1-1.5 3.2-.5 1.4-.8 2.9-.9 4.4l1.8.7c.9.4 1.4 1.4 1.6 2.8l3 1.2c-.7-1.8-1.1-3.8-1.1-5.9-.2-4.9 1.8-9.1 4.9-12.2z" fill="url(#k)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M70.7 106.4c-.2.1-.5.2-.7.3.2.1.3.2.4.4.1.3-.1.6-.4.7-.2 0-2.9.7-7.2.7-1 0-2.1 0-3.3-.1l1.9.7c.1 0 .2.1.3.2.2.4 1.1 2.5-4.2 7.8l-1.3 1.3c-5.2 5.2-13 13.1-21.1 13.8-.7.1-1.4.1-2 .1-5.2 0-10.7-1.5-14.3-2.7l.6 5.5c.3.1.5.2.8.3v-.1c.6-1 2.7-1 4.6.2 1.6.9 2.5 2.3 2.5 3.3.4.1.7.2 1.1.2 1 .2 2.1.3 3.2.3H33.4c.5 0 1-.1 1.5-.1h.2c-.1-.1-.2-.2-.2-.3-.4-1.1.9-2.7 2.9-3.5 2.1-.8 4.1-.6 4.5.5.2.5 0 1.1-.4 1.7l3-1.2c1.5-.7 2.9-1.4 4.2-2.2-.2-.1-.3-.2-.4-.4-.7-1 .2-2.8 2-4.1 1.8-1.3 3.8-1.6 4.5-.6.2.3.3.7.2 1.2 1.2-.8 2.3-1.6 3.4-2.3.8-.6 1.6-1.1 2.3-1
.6 1.5-1 2.9-2 4.2-2.7.6-.4 1.2-.7 1.8-1 .8-4.4 1-7.1 1-7.2 0-.3.3-.5.5-.5.1-.3.1-.6.2-.9.4-2.2 1.1-4.8 1.9-7.7z" fill="url(#l)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M153.8 118c.1 0 .2-.1.3-.1.9-.4 1.9-1.2 2.7-1.9-.9.5-1.8 1-2.8 1.4-.1.2-.1.4-.2.6z" fill="#FAFAFA" fill-rule="nonzero"/><path d="M131.2 182.5c.3.3 1.9 1.5 7.2.9 8.3-1 14.3-5.3 19.8-14.3 2.7-4.4 3.7-12.9 4.8-21.1.9-7.4 1.8-14.4 3.8-18.2 1.1-2 2.6-3.5 4.2-4.5-.5.2-.8.3-.8.3l-1.1.7 4-22.6c-.5-.6-1-1.2-1.4-1.8-2.8-4.2.3-9.3 4.1-13.4v-.3h.2c3.5-3.7 7.5-6.4 7.8-6.6l.2-.1 14.6 1.2-.1.6s-.2 2-.2 4.4h.2c.9-1.1 1.6-2.3 2.3-3.5 5.3-2.8 8.8-8.4 8.8-14.8 0-5.5-2.7-10.4-6.7-13.4v-1.5c0-15.9-12.9-28.7-28.7-28.7-15.9 0-28.7 12.9-28.7 28.7 0 1.1.1 2.2.2 3.2-3.1 3.1-5.1 7.3-5.1 12 0 2.1.4 4 1.1 5.9 1 .4 1.6 1.6 1.6 3.2 1.5 2.3 3.5 4.2 6 5.6.6 1.1 1.3 2.1 2.1 3.1.1 0 .3 0 .4.1.3-1.4.4-2.3.5-2.3l.1-.3.3-.1c.5-.2 13.4-5.6 18.2-1.2 2 1.8 2.3 5 .9 9.4-2.5 8-5.5 14.5-10 19 .1 0 .2.1.3.2.5.4.5 1.1.1 1.6-.1.2-3.7 4.2-6.9 5.
8-.7.4-1.4.7-2.1 1-.9 3.3-1.6 6.1-2 8.3-1.8 10-1.9 13.6-2.1 21 0 1.7-.1 3.7-.2 6-.4 12-3.6 18.7-9.9 21.2-.5.2-1.1.4-1.6.6-.6.2-1.1.4-1.6.6-.3.1-.5.2-.7.3-.4.2-.6.3-.5.3h-.2c-1.9.9-3.1 1.9-3.2 3.5zm63.3-112.3c0 .8-.6 1.4-1.4 1.4-.8 0-1.4-.6-1.4-1.4V67c0-.8.6-1.4 1.4-1.4.8 0 1.4.6 1.4 1.4v3.2zm-6.2-15c.1-.1 1.6-2.5 4.8-2.5 3.1 0 4.7 2.4 4.8 2.5.3.5.2 1.2-.3 1.5-.2.1-.4.2-.6.2-.4 0-.7-.2-.9-.5 0-.1-1-1.5-2.9-1.5s-2.9 1.4-2.9 1.5c-.3.5-1 .7-1.5.3-.7-.3-.8-1-.5-1.5zm-29 15c0 .8-.6 1.4-1.4 1.4-.8 0-1.4-.6-1.4-1.4V67c0-.8.6-1.4 1.4-1.4.8 0 1.4.6 1.4 1.4v3.2zm3-7c-.2.1-.4.2-.6.2-.4 0-.7-.2-.9-.5 0-.1-1-1.5-2.9-1.5s-2.9 1.4-2.9 1.5c-.3.5-1 .7-1.5.3-.5-.3-.7-1-.3-1.5.1-.1 1.6-2.5 4.8-2.5 3.2 0 4.7 2.4 4.8 2.5.2.5 0 1.2-.5 1.5z" fill="#FAFAFA" fill-rule="nonzero"/><path d="M138.7 177.3c6.3-2.5 9.5-9.2 9.9-21.2.1-2.3.1-4.2.2-6 .2-7.3.3-11 2.1-21 .4-2.2 1.1-5 2-8.3-.5.2-.9.4-1.3.5-.8 2.9-1.4 5.6-1.8 7.6-.1.3-.1.6-.2.9h.1c.3 0 .5.3.5.6 0 0-.2 3.5-1.3 8.9-.1.6-.2 1.1-.3 1.7-.2 1.4-.3 2.7-.4 4.1 0
.7-.1 1.4-.1 2.1v7.2c0 .5 0 1.1-.1 1.6-.1 1-.2 2.1-.3 3.1-.1.5-.1 1-.2 1.5s-.2 1-.3 1.4c-.2.9-.4 1.9-.7 2.7-.2.5-.3 1-.5 1.4-1.1 4.1-3 7-5.5 8.8-.4.4-.9.8-1.3 1.1-1 .7-1.9 1.3-2.7 1.8l-1.2.6c.5-.2 1.1-.4 1.6-.6.8-.1 1.3-.3 1.8-.5z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M76.9 50.6c-.8 0-1.4.6-1.4 1.4v3.2c0 .8.6 1.4 1.4 1.4.8 0 1.4-.6 1.4-1.4V52c0-.8-.6-1.4-1.4-1.4z" fill="url(#m)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M112.1 50.6c-.8 0-1.4.6-1.4 1.4v3.2c0 .8.6 1.4 1.4 1.4.8 0 1.4-.6 1.4-1.4V52c0-.8-.7-1.4-1.4-1.4z" fill="url(#n)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M107.6 41.7c.5.3 1.2.2 1.5-.3 0 0 1-1.5 2.9-1.5s2.8 1.4 2.9 1.5c.2.3.6.5.9.5.2 0 .4-.1.6-.2.5-.3.7-1 .3-1.5-.1-.1-1.6-2.5-4.8-2.5-3.1 0-4.7 2.4-4.8 2.5-.1.5 0 1.2.5 1.5z" fill="url(#o)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M76.9 44.2c-3.1 0-4.7 2.4-4.8 2.5-.3.5-.2 1.2.3 1.5.5.3 1.2.2 1.5-.3 0 0 1-1.5 2.9-1.5s2.8 1.4 2.9 1.5c.2.3.6.5.9.5.2 0 .4-.1.6-.2
.5-.3.7-1 .3-1.5.1-.1-1.5-2.5-4.6-2.5z" fill="url(#p)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M140.7 118.4c15.7.3 23.7-6.5 29.7-25.4 1.3-4 1.1-6.7-.6-8.2-3.9-3.6-14.8.6-16.7 1.3-.3 1.9-2.2 11.5-4.9 16.3-2.3 4.1-7.5 7.6-13.9 6.2-6.5-1.5-12.3-5.7-14.1-10.1 0 0 0 .1-.1.1-.2.6-.4 1.1-.6 1.7-.2.6-.5 1.1-.7 1.5-.3.5-.5.9-.8 1.2-.2.3-.4.5-.5.6 1 1.7 2.2 3.5 3.7 5.3 3.1 3.4 9.6 9.3 19.5 9.5z" fill="#FAFAFA" fill-rule="nonzero"/><path d="M120.3 98.4c1.9 4.4 7.6 8.7 14.1 10.1 6.4 1.4 11.6-2.1 13.9-6.2 2.7-4.8 4.5-14.4 4.9-16.3 1.9-.8 12.8-4.9 16.7-1.3 1.6 1.5 1.8 4.3.6 8.2-6 18.9-14 25.8-29.7 25.4-9.9-.2-16.4-6.1-19.4-9.5-1.5-1.7-2.7-3.5-3.7-5.3l-.1.1-.2.2-.1.1c-.2.1-.4.3-.6.4.5.9 1.1 1.8 1.7 2.7 1.1-.1 2.5 1.1 3.2 3 .2.4.3.9.4 1.3 3.6 3.5 9.8 8 18.7 8.2h1.1c4.2 0 7.8-.6 10.9-1.7-.1.3-.2.5-.2.8.4-.2.9-.4 1.3-.6.1-.2.1-.4.2-.6 1-.4 1.9-.9 2.8-1.4 1.9-1.6 3.4-3.4 3.5-3.4.3-.4.8-.5 1.3-.3 4.5-4.5 7.4-11 10-19 1.4-4.4 1.1-7.6-.9-9.4-4.8-4.4-17.7 1-18.2 1.2l-.3.1-.1.3s-.2.9-.5
2.3c.1.1.2.2.2.4 0 .3-.2.5-.4.6-.8 3.7-2.3 9.7-4.1 13-.3.6-.8 1.3-1.4 1.9 0 .2-.1.4-.1.6-.8.8-1.7 1.4-2.8 2-.3.2-.6.3-.9.5-.3.1-.6.3-1 .4-.3.1-.7.2-1 .3-.4.1-.7.2-1.1.3h.2H136.1c-.5 0-1.1 0-1.6-.1-1.1-.1-2.3-.4-3.4-.8-.4-.1-.7-.3-1.1-.4-.4-.2-.7-.3-1-.5-.3-.2-.7-.4-1-.6-.3-.2-.6-.4-1-.6-.3-.2-.6-.4-.9-.7-1.2-.9-2.2-2-3-3-.6-.8-1.1-1.6-1.5-2.4-.1-.3-.3-.5-.4-.8-.1-.3-.2-.5-.3-.8h-.2c0 .1-.1.1-.1.2-.1.7-.2.9-.3 1.1z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M174 104.9l-3.4 19.5c.5-.2 1.2-.3 2-.3 1.5 0 3.4.5 5.5 2.3 3.8 3.4 7 15.4 8.5 25.8 1.6 11.5 7.8 22.7 14.2 26.1 6.5 3.4 14.5 5.4 16.3 4.5.1 0 .1-.1.2-.1.3-1.7-.2-2.2-6.5-6.4-5.7-3.9-10.7-7.2-11.1-25.4-.1-3.3-.1-6.6-.1-9.8 0-8.9 0-17.1-1.5-24.9-.4-.2-.8-.4-1.1-.6-9.5-1.9-18.1-5.9-23-10.7z" fill="#FAFAFA" fill-rule="nonzero"/><path d="M198 116.2c1.5 7.8 1.5 15.9 1.5 24.9 0 3.2 0 6.4.1 9.8.4 18.2 5.3 21.5 11.1 25.4 6.3 4.2 6.8 4.7 6.5 6.4 0 0-.1.1-.2.1-1.7.9-9.7-1.1-16.3-4.5-6.5-3.4-12.6-14.6-14.2-26.1-1.5-10.4-4.7-22.4-8.5-25.8-2-
1.8-4-2.3-5.5-2.3-.8 0-1.5.1-2 .3l3.4-19.5c4.9 4.9 13.5 8.9 22.9 10.8-1.8-.9-2.9-1.7-3-1.8 0 0 0-.1-.1-.1-9.5-2.5-17.7-7.1-21.2-12.4-4.6-6.9 10-17.4 11.7-18.6l13.1 1.1c-.1 1.9-.5 8 .8 11.3.9 2.4 4.9 10.1 15.3 9.2 9.7-.8 12.1-9.5 13.2-17.9.1-1.2.3-2.2.4-3.2.8-6.3 1-8.4 3.6-14.2l.3-.6c-.4.7-.9 1.4-1.3 2.2-1.6 3.1-2.8 6.8-3.2 10.7-.1.5-.1 1-.1 1.6v3.5c-.1 1.4-.3 2.7-.5 4.1-.4 2.6-1.2 5.1-2.3 7.1-.5 1-1.1 1.9-1.7 2.6-.6.7-1.3 1.3-1.9 1.8-.7.5-1.3.8-2 1.1-.7.3-1.4.5-2.1.6-.6.1-1.2.2-1.8.2h-.4c-.7 0-1.5-.1-2.2-.3-.3-.1-.5-.2-.8-.3-7.4-.7-10.4-6.5-11.2-8.5-.6-1.5-.8-3.7-.9-5.8h-.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h.3c0-2.4.2-4.4.2-4.4l.1-.6-14.6-1.2-.2.1c-.3.2-4.3 2.9-7.8 6.6h-.2v.3c-3.8 4-6.9 9.1-4.1 13.4.4.6.9 1.2 1.4 1.8l-4 22.6 1.1-.7s.3-.2.8-.3c-1.6 1-3.1 2.4-4.2 4.5-2.1 3.7-2.9 10.7-3.8 18.2-1 8.2-2 16.6-4.8 21.1-5.5 9.1-11.4 13.3-19.8 14.3-5.2.6-6.8-.5-7.2-.9.1-1.7 1.3-2.7 2.9-3.5-1.9.1-3.5 1.7-3.5 3.7 0 .3 0 .6.1.9.7.5 2.1 1.1 4.9 1.1.8 0 1.8-.1 2.9-.2 8.7-1 14.9-5.5 20.6-14.8 2.8-4
.7 3.9-13.2 4.9-21.5.9-7.3 1.7-14.2 3.7-17.7 1.4-2.5 3.4-4.2 6.1-5.1 1 .2 2.2.8 3.5 1.9 3 2.7 6.4 13 8.1 25.1 1.4 10 7.1 22.9 14.8 26.9 4.8 2.5 11.9 4.8 15.5 4.8.7 0 1.3-.1 1.8-.3h.1c.1-.3.2-.7.2-1 .1-.5.1-1 0-1.4-.3-1.1-1.6-2.1-4.6-4.2-.6-.4-1.3-.9-2.1-1.4-2.5-1.7-4.7-3.3-6.5-5.7-1.1-1.5-2-3.3-2.7-5.7-.4-1.2-.7-2.5-.9-4-.4-2.6-.7-5.7-.8-9.5v-1.5c0-1.3 0-2.7-.1-4.1v-9.4c-.1-3.8-.2-6.1-.2-6.1 0-.3.2-.6.5-.6h.1c-.2-4.2-.5-8.3-1.2-12.3-.7-.5-1.1-.7-1.5-.9z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M227 83.3c-.1 1-.2 2-.4 3.2-1.1 8.4-3.4 17.1-13.2 17.9-10.4.9-14.3-6.8-15.3-9.2-1.3-3.3-1-9.4-.8-11.3l-13.1-1.1c-1.7 1.2-16.3 11.6-11.7 18.6 3.5 5.3 11.7 9.9 21.2 12.4-.4-.4-.5-1-.2-1.5.4-.5 1.1-.6 1.6-.3 0 0 2.6 1.8 6.6 3.3 1.5.2 3 .3 4.5.4 12.5.6 21.4-3.3 27.1-11.9 4.1-6.2 4.1-17.7 4.1-23.3v-1.3c0-5.5.9-8.2 4.6-14.5 1.4-2.3 3.4-4 5.4-5.3l-1.3-3.9c-.3.2-.6.3-1 .5-1.1.6-2.4 1.3-3.8 2.2l-.1.1c-2.3 1.6-4.6 3.5-6.5 5.4-.8.8-1.5 1.6-2.2 2.6-.5.7-1 1.3-1.5 2.1l-.3.6c-2.7 5.8-3 8-3.7 14.3z" fil
l="#FAFAFA" fill-rule="nonzero"/><path d="M241.9 64.8c-3.7 6.3-4.6 9-4.6 14.5v1.3c0 5.5.1 17-4.1 23.3-5.8 8.6-14.6 12.5-27.1 11.9-1.5-.1-3-.2-4.5-.4 1.6.6 3.5 1.2 5.5 1.5h1.5c11.6 0 20-4.1 25.6-12.5 4.3-6.5 4.3-17.8 4.2-23.9v-1.3c0-5.2.8-7.8 4.4-13.9 1.2-2 3-3.6 4.8-4.8l-.4-1.1c-1.9 1.4-3.9 3.1-5.3 5.4zM235.3 63c-.3.2-.5.5-.8.8 1.9-1.9 4.2-3.7 6.5-5.4-1.7 1.2-3.7 2.7-5.7 4.6z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M127.4 108s11.6 13.5 16.4 17.9c4.9 4.5 12 8.2 19.1 5.2.7-.3 1.4-.6 2-.8-.5-.5-.9-1.1-1.1-1.8-.1-.4-.2-.9-.2-1.3h-.4c-.2 0-.4 0-.6-.1-.2 0-.3 0-.5-.1-.2 0-.4-.1-.6-.1-.2 0-.3-.1-.5-.1s-.4-.1-.6-.1c-.2 0-.4-.1-.5-.1-.2-.1-.4-.1-.7-.2-.2-.1-.4-.1-.6-.2-.2-.1-.4-.2-.7-.2-.2-.1-.4-.1-.6-.2-.2-.1-.4-.2-.7-.3l-.6-.3c-.2-.1-.5-.2-.7-.4l-.6-.3c-.2-.1-.5-.3-.7-.4-.2-.1-.4-.2-.6-.4-.2-.2-.5-.3-.7-.5-.2-.1-.4-.3-.6-.4-.2-.2-.5-.4-.7-.6-.2-.2-.4-.3-.5-.5l-.7-.7-.5-.5c-.3-.3-.5-.6-.8-.9-.1-.2-.3-.3-.4-.5-.4-.5-.8-1-1.2-1.6-.4-.5-.7-1-1-1.5-.1-.1-.2-.2-.2-.3-.3-.5-.7-.9-1-1.3v-.1c
-.3-.4-.6-.8-.9-1.1-.1-.1-.1-.2-.2-.2-.3-.3-.6-.7-.9-1l-.1-.1-.8-.8-.2-.2c-.3-.3-.5-.5-.8-.7-.1 0-.1-.1-.2-.1-.2-.2-.4-.3-.6-.5-.1-.1-.2-.1-.2-.2-.2-.2-.4-.3-.6-.4-.1-.1-.2-.1-.3-.2-.1-.1-.2-.1-.3-.2-.1-.1-.2-.1-.3-.2-.3-.2-.5-.3-.7-.4-.9-.5-1.5-.6-1.5-.6l-9.1.6z" fill="url(#q)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M116 146c7.7-.7 15.4-8.4 20.4-13.5l1.3-1.3c3.9-3.9 4.1-5.8 4-6.3l-5.4-2c-2.1 2.3-3.9 4.5-5.6 6.4-6.1 7-10.5 12.1-15.1 13.6-4.4 1.4-9.5-.3-13-1.4-.5-.2-1-.3-1.5-.5-.1.3-.2.7-.4 1-.3.5-.6.9-1 1.3 4 1.4 10.7 3.2 16.3 2.7z" fill="#FAFAFA" fill-rule="nonzero"/><path d="M116.1 147.1c8.1-.7 16-8.6 21.1-13.8l1.3-1.3c5.3-5.3 4.4-7.4 4.2-7.8-.1-.1-.2-.2-.3-.2l-1.9-.7c-1.6-.1-3.4-.3-5.2-.7-1.9 2.2-3.7 4.2-5.3 6.1-3.9 4.5-7.1 8.2-10 10.6-.2.2-.5.4-.7.6-1.2 1-2.5 1.9-3.7 2.6-1.1.4-2.3.5-3.5.5-4 0-8.1-1.7-10.6-2.4 0 .2-.1.4-.1.5.5.1.9.3 1.5.5 3.4 1.1 8.6 2.9 13 1.4 4.6-1.5 9-6.6 15.1-13.6 1.7-1.9 3.6-4.1 5.6-6.4l5.4 2c0 .5-.2 2.4-4 6.3l-1.3 1.3c-5.1 5.1-12.7 12.8-
20.4 13.5-5.6.5-12.3-1.4-16.2-2.6l-.2.2.1 1c3.5 1.2 9.1 2.7 14.3 2.7.4-.2 1.1-.2 1.8-.3z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M171.5 131.5c.1.2.3.4.5.6.4.3.8.5 1.3.7.3-.5.6-1 .7-1.6-.8.2-1.6.3-2.5.3z" fill="url(#r)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M149.4 116.1c-3-4.4-5.7-7.1-7.8-8.7.9-.2 1.8-.6 2.8-1 2.1-.9 4.1-2 5.8-3.4-1.5.9-3.1.9-3.7.1-.1-.1-.1-.2-.1-.3-.9.5-1.9 1-2.9 1.4-1.1.5-2.3.9-3.5 1.2-.3.1-.7.1-1.1.2-3.7.5-7.7-.1-7.7-.2-.3-.1-.6.2-.6.5-.1.3.2.6.5.6.1 0 2.2.4 4.8.4h1.3c.3.3.7.5 1 .8.2.1.5.2.7.4.1.1.2.1.3.2.1.1.2.1.3.2.1.1.2.1.3.2.2.1.4.3.6.4.1.1.2.1.2.2.2.1.4.3.6.5.1 0 .1.1.2.1.2.2.5.5.8.7l.2.2c.3.2.5.5.8.8l.1.1c.3.3.6.6.9 1 .1.1.1.2.2.2.3.4.6.7.9 1.1v.1c.3.4.7.8 1 1.3.1.1.2.2.2.3.3.5.7 1 1 1.5.4.6.8 1.1 1.2 1.6.1.2.3.3.4.5.3.3.5.7.8.9l.5.5c.2.3.5.5.7.7.2.2.4.3.5.5.2.2.5.4.7.6.2.2.4.3.6.4.2.2.5.4.7.5.2.1.4.3.6.4.2.2.5.3.7.4l.6.3c.2.1.5.2.7.4l.6.3c.2.1.4.2.7.3.2.1.4.2.6.2.2.1.4.2.7.2.2.1.4.1.6.2.2.1.4.1.7.2.2 0 .4.1.5.1.2.1.4.1.6.1.2 0 .4.
1.5.1.2 0 .4.1.6.1.2 0 .3.1.5.1s.4 0 .6.1h.4c0 .4 0 .9.2 1.3.2.7.6 1.3 1.1 1.8.6.6 1.4 1.1 2.4 1.6.6.2 1.2.5 1.9.6h.1c.2 0 .5-.2.5-.4.1-.3-.1-.6-.4-.7-.1 0-.2-.1-.3-.1-2.4-.7-3.8-1.8-4.2-3.2-.7-2.5 1.8-5.4 1.9-5.4.1-.1.2-.3.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.6-.2-.8 0 0 0-.3.3-.6.7-.4.5-.9 1.3-1.2 2.2-4.5.3-10.1-1.3-14.9-8.4z" fill="url(#s)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M31.3 79.8v1.6c0 .9.1 1.8.2 2.7 0-.3.1-.6.2-1 .1-.3.1-.6.2-.9.1-.3.2-.7.3-1 .1-.2.1-.4.2-.6.7.5 1.6.9 2.8 1.3 1.3.4 2.7.7 4.1.7H39.9c.1.3.2.5.3.8.1.3.3.5.4.8.4.8.9 1.6 1.5 2.4.8 1.1 1.8 2.1 3 3 .3.2.6.5.9.7.3.2.6.4 1 .6.3.2.7.4 1 .6.3.2.7.3 1 .5.4.2.7.3 1.1.4 1.1.4 2.2.6 3.4.8.5.1 1.1.1 1.6.1h3.1-.2c.4-.1.7-.2 1.1-.3.4-.1.7-.2 1-.3.3-.1.7-.3 1-.4.3-.1.6-.3.9-.5 1-.6 2-1.3 2.8-2 0-.2.1-.4.1-.6.8-4.3 1.3-9.2 1.5-15 .8.1 1.6.1 2.3.1.9 0 1.6-.1 1.7-.1h.1c.3-.1.4-.3.4-.6 0-.2-.1-.3-.2-.4-.1-.1-.3-.1-.4-.1-.1 0-2 .2-3.9-.1-2-.5-3.9-1.4-5.6-2.6.1-.2.2-.5.3-.7.8-1.9 1.1-3.8 1.1-5.3-.1-1.6-.6-2.8-1.6-3
.2l-3-1.2c.1.4.1.8.1 1.2l2.5 1c1.1.5 1.4 3.5-.1 7.1-1.5 3.6-3.7 5.6-4.9 5.1l-2.5-1c-.3.3-.6.6-.9.8l3 1.2c.2.1.5.1.8.1.9 0 1.9-.6 2.9-1.6.4-.5.9-1 1.3-1.6 1.4.9 2.8 1.7 4.4 2.3-.2 5.3-.7 9.9-1.4 13.9-.5.5-1.1.9-1.8 1.2-.4.2-.9.5-1.6.7-.5.2-1.1.3-1.8.5h-.8H55.1c-.5 0-.9 0-1.3-.1-1.3-.1-2.6-.5-3.8-1l-1.8-.9c-.5-.3-1-.7-1.6-1.1-1-.8-1.9-1.7-2.6-2.6-.7-.9-1.2-1.8-1.7-2.8-.1-.2-.1-.3-.2-.5h.1c.8-.5 1.3-1.2 1.8-2.1.4-.7.7-1.6.8-2.7 0-.2 0-.3-.1-.5-.1-.1-.2-.2-.3-.2-.3-.1-.6.2-.6.5 0 .1-.1.3-.1.4-.4 1.8-1 3-2 3.6-1.3.8-3.1.8-6.1-.1-5.7-1.7-4.6-6-4.5-6.2.1-.2 0-.5-.2-.6-.1 0-.1-.1-.2-.1-.3-.1-.6.1-.7.4 0 0-.2.9-.1 2.1.1 1 .5 2.2 1.6 3.3-.2 0-.2.1-.2.1z" fill="url(#t)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M157.7 138.9c-.4 0-.8.1-1.2.1h-.8c-.5 0-1.1-.1-1.7-.2-.3-.1-.7-.1-1-.2-.8.6-2.4.7-4.1 0-1.8-.7-3.1-2.1-3-3.1l-1.8-1.2c-.5-.3-.9-.7-1.3-1-.4-.3-.9-.7-1.3-1-.7-.5-1.3-1.1-2-1.6-.6.8-2.2.7-3.8-.2.7.5 1.4 1.1 2.1 1.7.7.6 1.5 1.2 2.3 1.9 1.7 1.4 3.6 2.8 5.8 4.1 1.8 1.1 4.6 2
.5 7.8 3 1 .1 1.9.2 2.8.2.5 0 .9 0 1.4-.1 1.3-.1 2.5-.3 3.7-.7 2.2-.6 3.8-1.5 5.2-2.3 1.3-.8 2.3-1.6 3.2-2.2.1-.1.3-.2.4-.3-.3-.2-.6-.4-.8-.6-.2-.2-.4-.4-.6-.5-.2 1-1.6 2.3-3.1 3.2-1.7 1-3.5 1.2-4.3.4-.2.1-.4.1-.6.2-1 .1-2.1.3-3.3.4z" fill="url(#u)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M31.5 141.4h.9c.9 0 1.8 0 2.8-.1 1.4-.2 2.6-.4 3.7-.6 2.3-.5 4.6-1.4 7-2.5 1.9-.9 4-2 6.2-3.3 2.9-1.7 5.5-3.6 7.9-5.2.8-.6 1.6-1.1 2.4-1.7 1.1-.8 2.1-1.4 3-2-.2 1.3-.3 2.6-.3 3.9-.1 1.4-.1 2.8-.1 4.3V139.6c0 .4 0 .8-.1 1.2-.1 1.1-.2 2.1-.3 3-.1 1-.3 1.9-.4 2.7-.2 1-.4 1.8-.6 2.6-.2.8-.5 1.6-.8 2.3-.3.8-.7 1.5-.9 2.1-.3.6-.7 1.2-1.1 1.8-.4.6-.8 1.1-1.2 1.6-.5.6-.9 1-1.3 1.3-.4.4-.9.8-1.3 1.1-.8.6-1.6 1.1-2.4 1.6-.7.4-1.3.7-1.7.8l-.2.1c-3 .3-5.3 2.8-5.3 5.9 0 3.2 2.6 5.9 5.8 5.9h.1c.5.1 1.5.2 3 .2h1.6c1.8-.1 3.6-.4 5.3-.9 1.1-.3 2.1-.6 3.2-1.1 1.2-.5 2.4-1 3.4-1.6 1.2-.7 2.3-1.4 3.4-2.2 1.1-.9 2.3-1.8 3.3-2.8 1-1 2-2.1 3-3.4 1-1.2 1.9-2.5 2.7-3.8 1.6-2.6 3-5.5 4.1-8.4.5-1.4 1-2.9 1
.4-4.4.2-.6.3-1.2.5-1.7l.1-.5.1-.4c.1-.6.3-1.2.4-1.9l.4-2v-.2V138.2l.1-.4.2-.8c.2-1 .5-2.1.8-3.2.5-2 1.1-3.8 1.7-5.3.3-.8.6-1.5.9-2.1 0-.1.1-.2.1-.3.1.1.1.2.2.3.2.5.5 1.2.9 2.1.6 1.5 1.2 3.2 1.7 5.2.3 1 .6 2.1.8 3.2l.2.8.1.4v.5l.4 2c.1.7.3 1.3.4 1.9l.1.4.1.5c.1.6.3 1.2.5 1.8.4 1.5.9 3 1.4 4.4 1.1 2.9 2.5 5.8 4.1 8.4.8 1.3 1.7 2.6 2.7 3.8 1 1.3 2 2.4 3 3.4s2.2 2 3.3 2.8c1.1.8 2.2 1.5 3.4 2.2 1 .6 2.1 1.1 3.4 1.6 1 .4 2.1.8 3.2 1.1 1.7.5 3.5.8 5.3.9.5 0 1.1.1 1.6.1 1.5 0 2.5-.1 3-.2h.1c3.1 0 5.7-2.6 5.8-5.7.5-3.5-1.5-4.8-7.7-9-5.5-3.7-9.5-6.4-9.8-23.1v-1.5c0-1.4 0-2.8-.1-4.2v-4-3c.9.1 1.9.3 2.8.5 1.2.3 2.3.7 3.3 1.2.6.3 1.2.6 1.9.9.7.4 1.3.8 1.9 1.2.9.6 1.8 1.3 2.9 2.1-1.1-1.2-1.5-2.5-1-3.2l.1-.1c-.3-.2-.5-.4-.8-.6-.7-.5-1.4-.9-2.1-1.3-.7-.4-1.3-.7-2-1-.3-.2-.6-.3-1-.4-.6-.3-1.3-.5-1.9-.6-.3-.1-.6-.2-.9-.2-.7-.2-1.3-.3-1.9-.4-.5-.1-.9-.1-1.4-.2-.4 0-.8-.1-1.2-.1-.1-3.9-.2-6.2-.2-6.2 0-.3-.2-.5-.5-.5h-.1c-.3 0-.5.3-.5.6 0 0 .2 2.3.2 6.1v9.4c.1 1.4.1 2.8.1 4.1v1.5c.1 3.8.4 6.9.8 9.5.2 1
.5.6 2.8.9 4 .7 2.4 1.6 4.2 2.7 5.7 1.7 2.4 3.9 4 6.5 5.7.8.5 1.5 1 2.1 1.4 3.1 2.1 4.3 3.1 4.6 4.2.1.4.1.9 0 1.4 0 .4-.1.7-.2 1-.4 1.5-1.8 2.7-3.5 2.7h-.1H132h-.5H128.1c-1.4-.1-3-.3-4.8-.8-.5-.1-.9-.3-1.4-.4-.5-.2-1-.3-1.5-.5-1-.4-2.1-.9-3.1-1.5-.5-.3-1.1-.6-1.6-1-.5-.3-1.1-.7-1.6-1.1-.5-.4-1-.8-1.6-1.2-.5-.4-1-.9-1.5-1.4-1-1-1.9-2-2.9-3.2-.9-1.1-1.8-2.3-2.5-3.6-.8-1.3-1.5-2.6-2.2-3.9-.7-1.3-1.2-2.7-1.8-4.1-.3-.7-.5-1.4-.7-2.1l-.6-2.1-.6-2.1c-.2-.7-.3-1.4-.5-2.2l-.4-2v-.2-.1l-.1-.2-.1-.4-.2-.9c-.3-1.1-.5-2.2-.8-3.2-.6-2.1-1.2-3.9-1.8-5.5-.3-.8-.6-1.5-.9-2.2-.2-.3-.3-.6-.5-.9-.1-.3-.3-.6-.4-.9-.5-.8-.9-1.5-1.3-2.2-.4.6-.8 1.4-1.3 2.2-.1.3-.3.6-.4.9-.1.3-.3.6-.5.9-.3.7-.6 1.4-.9 2.2-.3.8-.6 1.6-.9 2.6-.3.9-.6 1.9-.9 2.9-.3 1-.6 2.1-.8 3.2l-.2.9-.1.4-.1.2h.3c1.1.4 1.4 2.4.7 4.5-.6 1.7-1.7 2.9-2.7 3.1-.3 1.1-.7 2.2-1.1 3.3-.3.7-.5 1.4-.8 2.1-.6 1.4-1.2 2.7-2 4-.4.7-.7 1.3-1.1 1.9-.7 1.1-1.4 2.1-2.2 3.1.7.9.1 2.7-1.4 4.2s-3.3 2.1-4.2 1.5c-.2.2-.5.4-.7.6-1.1.8-2.1 1.5-3.2 2-.5.3-1.1.6-1.
6.8-.5.2-1 .5-1.5.7-.5.2-1 .4-1.5.5-.5.2-1 .3-1.4.4-1.9.5-3.5.7-4.8.8H54.1h-1-.2c-1.7 0-3.1-1.2-3.5-2.8-.1-.3-.1-.6-.1-.9 0-2 1.5-3.6 3.5-3.7h.2c-.1 0 .1-.1.5-.3.2-.1.4-.2.7-.3.3-.2.7-.4 1.2-.6.8-.4 1.7-1 2.7-1.8.4-.3.9-.7 1.3-1.1.1-.1.1-.1.2-.1.5-.5 1-1 1.4-1.5.5-.5.9-1.1 1.3-1.8.4-.6.8-1.3 1.2-2 .4-.7.7-1.5 1-2.3.1-.3.2-.7.4-1.1.2-.5.3-.9.5-1.4.3-.9.5-1.8.7-2.7.1-.5.2-.9.3-1.4.1-.5.1-1 .2-1.5.1-1 .2-2 .3-3.1 0-.5.1-1 .1-1.6V136.2v.1-1.8-2.1c0-.7 0-1.4.1-2.1.1-1.3.2-2.7.4-4.1.1-.6.2-1.1.3-1.7 1.1-5.4 1.3-8.9 1.3-8.9 0-.3-.2-.6-.5-.6h-.1c-.3 0-.5.2-.5.5 0 0-.2 2.8-1 7.2-.6.3-1.1.6-1.8 1-1.3.8-2.7 1.7-4.2 2.7-.8.5-1.5 1-2.3 1.6-1.1.7-2.2 1.5-3.4 2.3-.2.9-1 2.1-2.2 2.9-1.5 1.1-3.2 1.5-4.1 1-1.4.8-2.8 1.5-4.2 2.2-1 .4-2 .9-3 1.2-.5.7-1.4 1.4-2.5 1.8-1.8.7-3.6.6-4.3-.2h-.2c-.5 0-1 .1-1.5.1h-1.8c-1.1 0-2.2-.2-3.2-.3-.4-.1-.7-.2-1.1-.2 0 .2 0 .4-.2.6-.2.4-.7.6-1.4.7-1.3-2.1-3.3-3.8-5.6-4.7-.3-.1-.5-.2-.8-.3l-.6-5.5-.1-1 .2-.2c.4-.4.7-.8 1-1.3.2-.3.3-.6.4-1 .1-.2.1-.4.1-.5 2.5.8 6.6 2.4 10
.6 2.4 1.2 0 2.4-.2 3.5-.5 1.2-.7 2.5-1.6 3.7-2.6.2-.2.5-.4.7-.6 1-.9 2-1.8 3-2.9.6-.6 1.2-1.3 1.8-2l1.8-2.1c.6-.7 1.2-1.4 1.8-2.2.6-.7 1.2-1.5 1.9-2.2 1.3-1.5 2.5-2.9 3.9-4.3.3-.4.7-.7 1.1-1.1 1.9.4 3.6.6 5.2.7 1.2.1 2.3.1 3.3.1 4.3 0 7-.7 7.2-.7.3-.1.5-.4.4-.7-.1-.2-.2-.3-.4-.4h-.3s-2 .5-5.3.6c-2.4.1-5.6 0-9.2-.6l.1-.1c-.1 0-.2 0-.3-.1l-1-.2c-.7-.2-1.3-.4-2-.6-.7-.2-1.3-.5-1.9-.7l-1.8-.9c-1.8-.9-3.4-2-4.9-3.2-.8-.7-1.6-1.4-2.3-2.1-.2.4-.4.6-.7.8-1.1.5-2.7-.8-3.5-2.9-.6-1.6-.7-3.1-.1-4-.4-.8-.8-1.7-1.1-2.5-.1-.2-.2-.5-.2-.7-.1 0-.2.1-.3.1-.8.1-1.7-.1-2.3-.6.2.7.4 1.4.7 2 .8 2 1.9 4 3.2 5.9.8 1.1 1.6 2.1 2.4 2.9.8.9 1.8 1.8 2.9 2.7 2.2 1.8 4.6 3.3 7.3 4.4.6.3 1.2.5 1.9.7-1 1.1-2.1 2.3-3.4 3.8-.7.8-1.3 1.5-1.9 2.3-1.8 2.2-3.6 4.2-5.4 6.1-1.3 1.4-2.4 2.5-3.5 3.4-1.1.9-2.1 1.7-3.2 2.3-.8.2-1.7.4-2.6.4-2.9 0-6-1.1-8.4-1.8-.9-.3-1.7-.6-2.3-.7 0-.1 0-.3-.1-.4-.1-.3-.4-.4-.7-.4-.1 0-.1.1-.2.1-.2.1-.2.4-.2.6.4 1.2.3 2.3-.3 3.4-1 1.7-3.2 2.9-4.9 3.3-2.5.6-4.4.3-5.6-.7-1.5-1.2-1.4-3.3-1.4-3.3
0-.3-.2-.5-.4-.5h-.2c-.3 0-.6.2-.6.5 0 .1-.1 2.6 1.8 4.2.6.5 1.4.9 2.3 1.1l.5 4.8c-1.3.7-2.5 1.7-3.4 2.8-1.9 2.4-2.8 5.4-2.5 8.4.5 4.6 3.6 8.4 8 9.8.2.1.3.1.5.1h.2c.4 0 .8-.3 1.1-.6.3-.3.4-.8.4-1.2v-.2l-.8-7.7c0-.2.1-.3.1-.3 0-.1.1-.1.3-.2l2-.2.8-.1.8-.1c.3 0 .5.2.5.4l.8 7.9c.1.8.8 1.5 1.6 1.5h.2c.2 0 .4-.1.6-.2.4-.2.9-.5 1.3-.9.8-.6 1.4-1.2 2-1.9 1.9-2.4 2.8-5.4 2.5-8.4L27 143c-.2-.9-.5-1.7-.9-2.4 1.8.5 3.6.8 5.4.8zm-5.2 3.6c.3 2.9-.6 5.6-2.3 7.6-.5.6-1.1 1.2-1.8 1.7l-.8-7.7c0-.4-.2-.8-.5-1-.3-.2-.6-.4-1-.4h-.2l-3.6.4-2 .2c-.4 0-.8.3-1 .6-.3.3-.4.7-.3 1.1l.8 7.7c-3.2-1.5-5.5-4.6-5.9-8.3-.3-2.9.6-5.6 2.3-7.6 1-1.2 2.3-2.2 3.7-2.9l-.6-5.3c.4-.1.7-.1 1.1-.2 1.1-.2 2.4-.8 3.5-1.5l.7 6.5c4.2 1 7.5 4.5 7.9 9.1z" fill="url(#v)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M114.1 97.1c-.5-.4-1.2-.2-1.6.3-.3.5-.2 1.1.2 1.5 0 0 0 .1.1.1.1.1 1.2.9 3 1.8.3.2.7.4 1.1.6l1.2.6c3.3 1.4 7.9 2.9 13.2 2.9 1.5 0 2.9-.1 4.5-.4.6-.1 1-.7.9-1.3-.1-.6-.7-1-1.3-.9-3.3.5-6.5.3-9.4-.2-2-.4-3.9
-.9-5.5-1.5-3.8-1.7-6.3-3.5-6.4-3.5z" fill="url(#w)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M24.8 135.4c-1.9-1.1-4-1.2-4.6-.2v.1c2.4.9 4.3 2.6 5.6 4.7.6-.1 1.1-.3 1.4-.7.1-.2.1-.4.2-.6-.1-1.1-1.1-2.4-2.6-3.3z" fill="url(#x)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M148.5 99.1c-1.6 1.2-2.5 2.9-2.1 3.9 0 .1.1.2.1.3.6.8 2.2.7 3.7-.1.3-.2.5-.3.8-.5.5-.4.9-.8 1.2-1.2.9-1.1 1.2-2.3.7-3-.1-.2-.3-.3-.5-.4-.8-.5-2.4-.1-3.9 1z" fill="url(#y)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M42.4 135.7c-.4-1.1-2.5-1.3-4.5-.5-2.1.8-3.4 2.4-2.9 3.5.1.1.1.2.2.3.7.8 2.5.9 4.3.2 1.1-.5 2-1.1 2.5-1.8.4-.6.6-1.2.4-1.7z" fill="url(#z)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M55.3 128.9c-.7-1-2.7-.7-4.5.6-1.8 1.3-2.7 3.2-2 4.1.1.2.3.3.4.4.9.5 2.6.1 4.1-1 1.2-.9 2-2 2.2-2.9.1-.5 0-.9-.2-1.2z" fill="url(#A)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M157.7 80.4c-.6 2.1-.1 4.1 1.1 4.4.3.1.5 0 .8-.1 1-.3 1.9-1.6 2.4-3.3.
6-2.1.1-4.1-1.1-4.4-1.2-.2-2.6 1.3-3.2 3.4z" fill="url(#B)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M41 96.3c-.1-.4-.2-.9-.4-1.3-.8-1.9-2.1-3.1-3.2-3-.1 0-.2 0-.3.1-.3.1-.5.3-.6.6-.5.9-.5 2.4.1 4 .8 2.1 2.4 3.4 3.5 2.9.3-.1.6-.4.7-.8.4-.7.4-1.6.2-2.5z" fill="url(#C)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M164.5 52.7c.2.2.6.4.9.4.9.1 2.1-.4 3.2-1.4v-.1l-1.4-4.3c-.4.3-.9.6-1.3 1-1.6 1.5-2.2 3.5-1.4 4.4z" fill="url(#D)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M84 141c-.7 2.1-.4 4.1.7 4.5.2.1.4.1.7 0 1-.2 2.1-1.4 2.7-3.1.7-2.1.4-4.1-.7-4.5h-.3c-1.1-.1-2.4 1.2-3.1 3.1z" fill="url(#E)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M73.7 161.2c-1.6 1.6-2.1 3.5-1.3 4.4 0 0 .1.1.2.1.9.6 2.7 0 4.2-1.5s2.1-3.3 1.4-4.2c0-.1-.1-.1-.1-.2-.9-.8-2.9-.2-4.4 1.4z" fill="url(#F)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M139.6 130.5c.8-1-.1-2.9-1.9-4.2-1.7-1.2-3.6-1.5-4.4-.7l-.1.1c-.6.8-.1 2.1 1 3.2.3.3.6.6 1 .9.
2.2.5.3.7.5 1.4.9 3 1 3.7.2z" fill="url(#G)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M149 138.6c1.7.7 3.3.6 4.1 0 .2-.1.4-.3.4-.5.4-1.1-.9-2.7-2.9-3.5-2.1-.8-4.1-.6-4.5.5 0 .1-.1.3-.1.4-.1 1 1.1 2.3 3 3.1z" fill="url(#H)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M72 105.8c.7-.3 1.4-.6 2.1-1 3.2-1.6 6.7-5.7 6.9-5.8.4-.5.4-1.2-.1-1.6-.1-.1-.2-.1-.3-.2-.4-.2-.9-.1-1.3.3 0 0-1.6 1.8-3.5 3.4-.9.8-1.9 1.5-2.7 1.9-.1 0-.2.1-.3.1-.5.2-.9.4-1.3.6-3.6 1.6-6.2 2.1-6.3 2.1-.6.1-1 .7-.9 1.3 0 .1.1.2.1.2 3.3-.1 5.3-.6 5.3-.6h.3c.2-.1.5-.2.7-.3.4 0 .8-.2 1.3-.4z" fill="url(#I)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M11.6 117.5c-4.2-1-7.4-4.5-7.8-9.1-.3-2.9.6-5.6 2.3-7.6.5-.6 1.1-1.2 1.8-1.7l.8 7.7c.1.8.8 1.4 1.5 1.4h.2l2-.2 3.6-.4c.4 0 .8-.3 1-.6.3-.3.4-.7.3-1.1l-.8-7.7c3.2 1.5 5.5 4.6 5.9 8.3.3 2.9-.6 5.6-2.3 7.6-1 1.2-2.3 2.2-3.7 2.9l.4 3.7c.4.2.8.3 1.2.6l-.1-.6-.3-3.1c1.3-.7 2.5-1.7 3.4-2.8 1.9-2.4 2.8-5.4 2.5-8.4-.4-4-2.8-7.5-6.5-9.2l-1
.5-.6c-.2-.1-.3-.1-.5-.1h-.2c-.4 0-.8.3-1.1.6-.3.3-.4.8-.4 1.2l.8 7.9c0 .2-.1.3-.1.3 0 .1-.1.1-.3.2l-1.6.2-2 .2c-.3 0-.5-.2-.5-.4L9 99v-.2c-.1-.8-.8-1.5-1.6-1.5h-.2c-.2 0-.4.1-.6.2-1.3.7-2.4 1.7-3.3 2.8-1.9 2.4-2.8 5.4-2.5 8.4.5 4.7 3.7 8.5 8.1 9.9l.3 2.8c.8-.5 1.8-.8 2.9-1l-.5-2.9z" fill="url(#J)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M18.3 135.9l-.7-6.5c-1.1.8-2.4 1.3-3.5 1.5-.4.1-.7.1-1.1.2l.6 5.3c-1.5.7-2.7 1.7-3.7 2.9-1.7 2.1-2.6 4.8-2.3 7.6.4 3.8 2.7 6.8 5.9 8.3l-.8-7.7c0-.4.1-.8.3-1.1.3-.3.6-.5 1-.6l2-.2 3.6-.4h.2c.4 0 .8.1 1 .4.3.2.5.6.5 1l.8 7.7c.7-.5 1.3-1.1 1.8-1.7 1.7-2.1 2.6-4.8 2.3-7.6-.3-4.6-3.6-8.1-7.9-9.1z" fill="url(#K)" fill-rule="nonzero" transform="translate(81 15)"/><path fill="url(#L)" fill-rule="nonzero" d="M171.1 22.7l-.3-.8-1.6 1.4" transform="translate(81 15)"/><path fill="url(#M)" fill-rule="nonzero" d="M158.9 18.3l.3 1.1 2.2-1.9" transform="translate(81 15)"/><path d="M168.9 16.1l-.3-.9-2 .7-6.4 5.4c-.1.1-.2.1-.3.2l.6 1.8 8.1-6.9c.1-
.2.2-.3.3-.3z" fill="url(#N)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M161.1 25.2l.2.7 2.7-.9 5.8-4.9c.1-.1.2-.1.3-.2l-.6-1.8-8.1 6.9c-.1.1-.2.1-.3.2z" fill="url(#O)" fill-rule="nonzero" transform="translate(81 15)"/><path fill="url(#P)" fill-rule="nonzero" d="M165 37.1l.4 1.2 2.5-2.1" transform="translate(81 15)"/><path d="M170.3 41.7l-2.7 2.3c-.1.1-.2.1-.3.2l.6 1.8 2.6-2.2c-.2-.8-.2-1.5-.2-2.1z" fill="url(#Q)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M175.1 35l-.4-1.1-1.6.5-6.7 5.7c-.1.1-.2.1-.3.2l.6 1.8 8.1-6.9c.1-.1.2-.1.3-.2z" fill="url(#R)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M171.5 45.5l-2.6 2.2c-.1.1-.2.1-.3.2l.6 1.8 3.7-3.1c-.6-.3-1-.7-1.4-1.1z" fill="url(#S)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M164 25l5.2-1.7 1.6-1.4.3-.3c.4-.4.5-1 .1-1.5-.3-.3-.7-.4-1.1-.3-.1 0-.2.1-.3.2l-5.8 5z" fill="url(#T)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M166.6 15.8l-5.2 1.7-2.2 1.9-.3.3c-.4
.4-.5 1-.1 1.5l.3.3c.2.1.5.1.8.1.1 0 .2-.1.3-.2l6.4-5.6z" fill="url(#U)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M175 47.4c-.8-.2-1.6-.5-2.2-.9l-3.7 3.1-.3.3c-.4.4-.5 1-.1 1.5l.3.3c.3.1.6.1.8 0 .1 0 .2-.1.3-.2l4.9-4.1z" fill="url(#V)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M173.2 34.5l-5.2 1.7-2.5 2.1-.3.3c-.4.4-.5 1-.1 1.5l.3.3c.2.1.5.1.8.1.1 0 .2-.1.3-.2l6.7-5.8z" fill="url(#W)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M170.3 41.7c.1-1.1.6-2 .6-2 .1-.3.5-.4.7-.2.1 0 .1.1.2.1 1.1-1.3 2.8-2.3 4.5-3 .2-.4.2-.9-.1-1.2-.3-.3-.7-.4-1.1-.3-.1 0-.2.1-.3.2l-8.1 6.9-.3.3c-.4.4-.5 1-.1 1.5l.3.3c.2.1.5.1.8.1.1 0 .2-.1.3-.2l2.6-2.5z" fill="url(#X)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M171.5 45.5c-.3-.4-.6-.7-.8-1.2-.1-.2-.2-.4-.2-.7l-2.6 2.2-.3.3c-.4.4-.5 1-.1 1.5l.3.3c.2.1.5.1.8.1.1 0 .2-.1.3-.2l2.6-2.3z" fill="url(#Y)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M161.1 25.2c.1 0 .2-.1.3-.2l8.1-6.9.
3-.3c.4-.4.5-1 .1-1.5-.3-.3-.7-.4-1.1-.3-.1 0-.2.1-.3.2l-8.1 6.9-.3.3c-.4.4-.5 1-.1 1.5l.3.3c.3 0 .5.1.8 0z" fill="url(#Z)" fill-rule="nonzero" transform="translate(81 15)"/><path fill="url(#aa)" fill-rule="nonzero" d="M165.6 4.8l-11 3.6 3 9.2 11-3.7" transform="translate(81 15)"/><path fill="url(#ab)" fill-rule="nonzero" d="M174.8 32.7l-3-9.1-11 3.6 3 9.2" transform="translate(81 15)"/><path d="M160.8 38.5l3.2-1.1.3 1-.2.1c-1.5.7-3.2 1.6-5.1 2.9-2.4 1.6-4.4 3.1-6.3 4.9-2.5 2.5-4.6 5.2-6.1 8.2-1.8 3.5-3 7.4-3.5 11.5 0 .4-.1.8-.1 1.3v3.9c-.1 1.1-.2 2.3-.4 3.8-.4 2.3-1.1 4.5-2 6.4-.4.8-.9 1.5-1.4 2.1-.4.5-.9 1-1.6 1.5-.9.7-1.9 1.1-3.1 1.3h-.1c-.5.1-.9.1-1.3.1h-.2c-.6 0-1.3-.1-1.8-.2h-.1c-1.2-.3-2.3-.9-3.2-1.7-.5-.4-.9-.9-1.3-1.4-.3-.4-.6-.9-1-1.5-.1-.1-.1-.3-.2-.4-.1-.1-.1-.2-.2-.4l-.3-.6-.1-.2-.1-.2v-.1l-.1-.2c0-.1-.1-.1-.1-.2-.1-.2-.2-.3-.2-.5v-.1c-.1-.3-.3-.5-.4-.8v-.1l-.3-.6c-.2-.3-.3-.6-.5-.9 0-.1-.1-.1-.1-.2-.1-.7-.1-1.5-.1-2.3 7.3-2.6 12.2-9.4 12.2-17.3 0-5.2-2.1-10-5.9-13.5v-1
.1c0-19.5-15.9-35.4-35.4-35.4S58.3 22.4 58.3 41.9V43c-3.3 3.1-5.4 7.2-5.8 11.6l2.2.9c.1-1.5.4-3 .9-4.4.4-1.1.9-2.2 1.5-3.2.2-.4.5-.7.7-1.1.5-.7 1.1-1.4 1.7-2 .3-.3.6-.6 1-.9 0-.7-.1-1.4-.1-2.1 0-2.3.2-4.5.7-6.7.2-1.1.5-2.1.8-3.2.5-1.6 1.1-3.1 1.8-4.5.5-1 1-1.9 1.5-2.8.6-.9 1.2-1.8 1.8-2.6.3-.4.6-.8 1-1.3 4.4-5.3 10.4-9.3 17.3-11 2-.5 4-.8 6.2-1 .7 0 1.4-.1 2.1-.1 2.1 0 4.1.2 6 .6.7.1 1.3.3 1.9.4.2.1.4.1.6.2 2.8.8 5.5 1.9 8 3.3 1.2.7 2.4 1.5 3.6 2.4 1.1.9 2.2 1.8 3.2 2.8 4 4 7 9.1 8.6 14.8.1.2.1.4.2.6.6 2.6 1 5.2 1 8 0 .7 0 1.4-.1 2.1 1.8 1.5 3.3 3.3 4.3 5.5 1 2.1 1.6 4.5 1.6 7 0 5.7-2.9 10.7-7.4 13.5-.7.5-1.5.9-2.3 1.3-.7.3-1.4.5-2.1.7-1.3.2-2.4.3-3 .3h-.5c-.3 0-.6.3-.6.6s.2.6.6.6h.3c.5 0 1.5-.1 2.8-.3.1 1.2.1 2.4.2 3.5.1.2.2.3.3.5.1.2.2.5.4.7.1.2.3.5.4.8.1.3.3.5.4.8.1.1.1.3.2.4.1.1.2.3.2.4.1.1.1.3.2.5s.2.3.2.5c.1.3.3.6.5.9l.6.9c.2.3.4.6.7.9.5.6 1 1.2 1.6 1.7 1 .8 2.1 1.5 3.3 1.9.3.1.5.2.8.3.7.2 1.5.3 2.2.3h.4c.6 0 1.2-.1 1.8-.2.7-.1 1.4-.3 2.1-.6.7-.3 1.3-.7 2-1.1.6-.5 1.3-1.1 1.9-
1.8.6-.7 1.2-1.6 1.7-2.6 1-2 1.8-4.4 2.3-7.1.2-1.3.4-2.7.5-4.1V68.8 67c0-.5.1-1.1.1-1.6.4-3.9 1.6-7.6 3.2-10.7.4-.8.8-1.5 1.3-2.2l1.5-2.1c.7-.9 1.5-1.8 2.2-2.6l.8-.8c2-1.9 4-3.4 5.8-4.6l.1-.1c1.4-.9 2.7-1.6 3.8-2.2.3-.2.7-.3 1-.5l1.3 3.9.4 1.1.6 1.7 1.4 4.3v.1c-1.1.9-2.3 1.4-3.2 1.4l-1.5 2.1c-.5.8-1 1.7-1.4 2.6-.4.9-.8 1.8-1.1 2.7-.1.5-.3.9-.4 1.4-.3 1.5-.5 3-.4 4.6v1.7c0 .4.1.8.1 1.2 0 .5.1.9.1 1.4.1 1.9.1 3.8 0 5.8v.4c1.1.3 1.6 2.3 1.1 4.4-.4 1.7-1.4 3-2.4 3.3-.4 1.4-.8 2.8-1.4 4.3-.2.5-.4 1-.7 1.6-.7 1.6-1.6 3.1-2.6 4.6-.7 1-1.5 2-2.3 2.9.2.1.4.2.5.4.5.7.2 1.9-.7 3 1.7-1.5 3.1-3.2 4.4-4.9 1.4-2 2.6-4.2 3.5-6.6 1.6-4 2.6-8.4 2.9-13.1.1-2 .1-4.1 0-6.1 0-.3 0-.7-.1-1v-.4l-.1-1.2V66.3v0-.1-.4-.3c0-2 .2-3.8.7-5.4.3-.9.7-1.8 1-2.4.4-.8.8-1.5 1.3-2.3.5-.7 1-1.5 1.5-2.2.5-.6 1-1.2 1.6-1.9.4.7 1 1.3 1.8 1.7.5.2 1.1.4 1.7.4.4 0 .8-.1 1.2-.2l4.4-1.4c1-.3 1.8-1 2.3-2 .5-.9.6-2 .2-3l-.2-.7c-.4.1-.7.2-1.1.2l.3.8c.5 1.5-.3 3.1-1.8 3.6l-4.4 1.4c-.3.1-.6.1-.9.1-1 0-2-.6-2.5-1.5-.3.1-.6.1-.8 0-.1-
.1-.2-.1-.3-.3-.4-.4-.3-1.1.1-1.5l.3-.3-.6-1.8c-.3.1-.5.1-.8-.1-.1-.1-.2-.1-.3-.3-.4-.4-.3-1.1.1-1.5l.3-.3-.6-1.8c-.3.1-.5.1-.8-.1-.1-.1-.2-.1-.3-.3-.4-.4-.3-1.1.1-1.5l.3-.3-.6-1.8c-.3.1-.5.1-.8-.1-.1-.1-.2-.1-.3-.3-.4-.4-.3-1.1.1-1.5l.3-.3-.4-1.2 2.9-1 5.2-1.7 1.6-.5.4 1.1c.4-.1.8 0 1.1.3.3.4.3.9.1 1.2.2-.1.3-.1.5-.2l-.3-.9-.6-2 3.2-1.1c.9-.3 1.6-.9 2-1.7.4-.8.5-1.7.2-2.6l-1.6-4.8c-.6-1.8-2.5-2.7-4.3-2.2l-3.2 1.1-2.5-7.5 3.2-1.1c.9-.3 1.6-.9 2-1.7.1-.2.2-.4.2-.6.1-.2.1-.4.1-.6 0-.4 0-.9-.2-1.3l-1.6-4.8c-.3-.9-.9-1.6-1.7-2-.8-.4-1.7-.5-2.6-.2l-18.3 6c-1.8.6-2.7 2.5-2.2 4.3l1.6 4.8c.3.9.9 1.6 1.7 2 .5.2 1 .4 1.5.4.4 0 .7-.1 1.1-.2l3.2-1.1 2.5 7.5-3.2 1.1c-.9.3-1.6.9-2 1.7-.4.8-.5 1.7-.2 2.6l1.6 4.8c.3.9.9 1.6 1.7 2 .4.2.9.3 1.4.3h.2c.3 1.9.6 1.8 1 1.7zm14.9-16.2c1.2-.4 2.5.3 2.9 1.5l1.6 4.8c.2.6.1 1.2-.1 1.7-.3.5-.7.9-1.3 1.1l-2.8.9-3-9.2 2.7-.8zm-6.2-18.8c.6-.2 1.2-.1 1.7.1.5.3.9.7 1.1 1.3l1.6 4.8c.2.6.1 1.2-.1 1.7-.3.5-.7.9-1.3 1.1l-2.8.9-3-9.2 2.8-.7zm-11.7 14.6l-3.4 1.1c-1.5.5-3.
1-.3-3.6-1.8l-1.6-4.8c-.5-1.5.3-3.1 1.8-3.6l3.4-1.1.2.5 11-3.6 3 9.2-11 3.6.2.5zm2.2 6.8c-.4-.4-.3-1.1.1-1.5l.3-.3-.6-1.8c-.3.1-.5.1-.8-.1-.1-.1-.2-.1-.3-.3-.4-.4-.3-1.1.1-1.5l.3-.3-.3-1 2.5-.8 5.2-1.7 2-.7.3.9c.4-.1.8 0 1.1.3.4.4.3 1.1-.1 1.5l-.3.3.6 1.8c.4-.1.8 0 1.1.3.4.4.3 1.1-.1 1.5l-.3.3.2.8-1.9.6L164 25l-2.7.9-.2-.7c-.3.1-.5.1-.8-.1-.1 0-.2-.1-.3-.2zm-3 11.3l-1.6-4.8c-.5-1.5.3-3.1 1.8-3.6l3.4-1.1.2.5 11-3.6 3 9.2-11 3.6.2.5-3.4 1.1c-1.5.5-3.1-.3-3.6-1.8z" fill="url(#ac)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M164 36.9l-.2-.5-3-9.2-.2-.5-3.4 1.1c-1.5.5-2.3 2.1-1.8 3.6l1.6 4.8c.5 1.5 2.1 2.3 3.6 1.8l3.4-1.1z" fill="url(#ad)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M154.4 7.9L151 9c-1.5.5-2.3 2.1-1.8 3.6l1.6 4.8c.5 1.5 2.1 2.3 3.6 1.8l3.4-1.1-.2-.5-3-9.2-.2-.5z" fill="url(#ae)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M253.5 27.7c.6-.2 1-.6 1.3-1.1.3-.5.3-1.2.1-1.7l-1.6-4.8c-.2-.6-.6-1-1.1-1.3-.5-.3-1.2-.3-1.7-.1l-2.8.9 3
9.2 2.8-1.1zM259.7 46.5c.6-.2 1-.6 1.3-1.1.3-.5.3-1.2.1-1.7l-1.6-4.8c-.4-1.2-1.7-1.8-2.9-1.5l-2.8.9 3 9.2 2.9-1z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M190.7 121.8c0-.2-.1-.4-.2-.6-.1-.3-.3-.5-.5-.7l-3.2-2.6c-.1-.1-.2-.1-.3-.2-.1-.1-.3-.1-.4-.2-.2-.1-.4-.1-.7-.1h-.2c-.4.1-.8.3-1.1.7l-2.2 2.7-.4-.4c-.9-.7-1.9-1.2-3-1.5-3-.8-6.3.2-8.7 2.5 1.8-.1 3.8.3 5.5 1.3.8-.2 1.5-.2 2.3 0 .6.1 1.1.4 1.5.8 1.5 1.2 1.9 3.4 1.1 5.5-.3.7-.8 1.4-1.5 2.3-.8.7-1.7 1.3-2.6 1.6-.9.3-1.8.3-2.6.1-.1 0-.1-.1-.2-.1-.5-.2-.9-.4-1.3-.7-.2-.2-.4-.3-.5-.5-.8 0-1.6 0-2.3-.1.1 0 .2.1.3.1.3.1.5.4.4.7-.1.2-.3.4-.5.4h-.1c-.7-.2-1.3-.4-1.9-.6l.6 1.2c-1.1-.3-2.9 0-4.3.8-1.9 1.1-3 2.9-2.4 3.9l.3.3c.8.7 2.6.6 4.3-.4 1.5-.9 2.9-2.2 3.1-3.2.2.2.4.4.6.5.3.2.5.4.8.6.7.4 1.4.7 2.2.9.1 0 .3 0 .4.1 3.3.7 6.9-.6 9.2-3.5.2-.2.3-.4.5-.7l3-3.7 4.6-5.6c.3-.6.5-1.1.4-1.6z" fill="url(#af)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M126.4 68.5l-.1-.1c-.2-.3-.5-.6-.8-.7-.2-.1-.3-.1-.5-.1h-.2l-.1-.1c-7.8-4.7-17.8
-11.7-21.3-17.9-.2-.5-.4-.9-.6-1.2-.5-.8-1.1-1.3-1.8-1.6-1.9-.8-4.5.3-7.3 3-2.9 2.8-5.5 7-7.5 11.8-3.9 9.7-3.8 19.3.3 20.9 1.2.5 2.7.3 4.3-.7l.1-.1c6.9-1.7 18.4.3 26.8 2.2h.2l.1.2c.2.2.4.4.6.5.4.2.8.1 1.3-.1l.2-.1h.2c.2.1.4.1.6.2 1.8-1.1 3.8-3.7 5.1-7 1.4-3.5 1.8-6.8 1.1-8.8-.2-.1-.4-.3-.7-.4v.1zm-23.7-6.6s0 .1 0 0c-.1.6-.3 1.2-.4 1.7 0 .1 0 .2-.1.3-.1.5-.3 1-.5 1.5 0 .1-.1.2-.1.3-.2.6-.4 1.2-.7 1.8-.2.6-.5 1.1-.7 1.7 0 .1-.1.2-.1.3-.3.5-.5 1-.8 1.5-2.9 5.3-6.6 8.7-9.6 8.7-.5 0-.9-.1-1.4-.3-1.9-.8-3-3.1-3-6.4-.1-3.2.7-7.1 2.3-11 1.6-3.9 3.7-7.2 6-9.5 2.4-2.4 4.8-3.3 6.7-2.5 2.8 1.2 3.7 6 2.4 11.9z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M39.9 69.8c-.2-.1-.4-.1-.6-.2h-.2l-.2.1c-.5.2-1 .2-1.3.1-.2-.1-.4-.3-.6-.5l-.1-.2h-.2c-8.4-1.9-19.9-3.8-26.8-2.2l-.1.1c-1.6.9-3.1 1.1-4.3.7-4.1-1.7-4.2-11.2-.3-20.9 2-4.8 4.6-9 7.5-11.8 2.7-2.6 5.4-3.7 7.3-3 .7.3 1.3.8 1.8 1.6.2.3.4.7.6 1.2 3.5 6.2 13.5 13.1 21.3 17.9l.1.1h.2c.2 0 .4 0 .5.1.3.1.5.3.8.7l.1.1.1.1c.2.1.5.3.7.4-.3-.9-.7-1.5-1.4-1.8
l1.9.8c-.2-.1-.3-.2-.5-.3-.3-.5-.7-.8-1.2-1-.2-.1-.5-.2-.8-.2-6.3-3.8-17.2-11.2-20.8-17.3-.2-.5-.4-.9-.7-1.3-.6-1-1.4-1.6-2.3-2-2.4-1-5.4.2-8.5 3.2-3 2.9-5.7 7.2-7.8 12.2C-.2 57.1.2 66.9 5 68.9c1.5.6 3.3.4 5.2-.7 6.6-1.6 17.8.3 26 2.1.3.3.6.5.9.7.5.2 1.1.2 1.7.1l-1.5-.6c.9 0 1.7-.2 2.6-.7z" fill="url(#ag)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M133.7 88l2.5 1c1.1.5 3.4-1.5 4.9-5.1 1.5-3.6 1.2-6.6.1-7.1l-2.5-1c0 1.9-.5 4.2-1.4 6.5-1 2.4-2.3 4.4-3.6 5.7z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M19.3 35c-1.9-.8-4.2.1-6.7 2.5-2.3 2.3-4.5 5.6-6 9.5-1.6 3.9-2.4 7.8-2.3 11 .1 3.4 1.2 5.7 3 6.4.4.2.9.3 1.4.3 3 0 6.8-3.4 9.6-8.7.3-.5.5-1 .8-1.5.1-.1.1-.2.1-.3.3-.5.5-1.1.7-1.7.2-.6.5-1.2.7-1.8 0-.1.1-.2.1-.3.2-.5.3-1 .5-1.5 0-.1 0-.2.1-.3.2-.6.3-1.1.4-1.7v-.1c1.3-5.8.4-10.6-2.4-11.8zm1.6 10.3c-.4 2.2-1 4.5-1.9 6.8-.9 2.3-2.1 4.4-3.3 6.2h-.1c-.9-.4-1.1-3.3.5-7.4.7-1.8 1.7-3.4 2.7-4.5.7-.8 1.4-1.2 1.9-1.2l.2.1c-.1-.1 0-.1 0 0z" fill="url(#ah)" fill-rule="nonzero" tran
sform="translate(81 15)"/><path d="M18.7 46.4c-1 1.1-2 2.7-2.7 4.5-1.6 4-1.4 7-.5 7.4h.1c1.3-1.8 2.4-4 3.3-6.2.9-2.3 1.6-4.6 1.9-6.8H20.5c-.4-.1-1.1.3-1.8 1.1z" fill="url(#ai)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M43.6 77.3c0-.1.1-.3.1-.4.1-.3.3-.5.6-.5.1 0 .2.1.3.2.2-.3.5-.5.7-.7.4-.5.8-.8 1.1-1.1.1-.1.3-.2.3-.2.1-.1.1-.1.2-.1s0 0 .1-.1H47.9c.2.1.3.1.5.1l.2.1c.9.4 2 0 3.2-.9.3-.2.6-.5.9-.8 1.3-1.3 2.6-3.3 3.5-5.7 1-2.4 1.4-4.7 1.4-6.5 0-.4 0-.9-.1-1.2-.2-1.4-.7-2.5-1.6-2.8l-1.8-.7-2.2-.9-1.9-.8-.8-.3-2.8-1.1-1.9-.8c.7.3 1.1.9 1.4 1.8.6 2 .3 5.4-1.1 8.8-1.3 3.3-3.3 5.9-5.1 7-.9.6-1.8.7-2.5.4l1.5.6h.1c-.1.2-.3.3-.4.5-.1.1-.2.2-.2.3 2.5 1.1 4.9 3.4 5.4 5.8z" fill="url(#aj)" fill-rule="nonzero" transform="translate(81 15)"/><g fill-rule="nonzero"><path d="M283.2 146.6l-6.8.9-5.3-38.5c-.4-3.1 1.6-6 4.7-6.7.2-.1.5.1.5.4l6.9 43.9z" fill="#C8C8CC"/><path d="M292.8 107.4c.2-.2.5-.2.6 0 2.1 2.3 2.1 5.9-.1 8.2L266.8 144l-5-4.7 31-31.9z" fill="#E1E1E6"/><path d="M.9 10.6
c-.1 2.6.8 4.9 2.6 6.5.9.8 1.9 1.4 3 1.8 3.5 1.2 7.5 0 10.2-2.9l.6-.6 8.6-9.2c.4-.4.6-.9.5-1.4 0-.5-.2-1-.6-1.4L22.7.5c-.2-.2-.5-.4-.7-.4-.2-.1-.5-.1-.7-.1-.5 0-1 .2-1.4.6l-2.5 2.6-.4-.4c-.9-.8-1.9-1.4-3-1.8C10.5-.2 6.5 1 3.8 3.9 2 5.7 1 8.1.9 10.6zm5.8-4c1.6-1.7 4.1-2.5 6-1.8.6.2 1.1.5 1.5.9 1.5 1.4 1.7 3.7.8 5.8-.4.7-.9 1.5-1.7 2.3-1.6 1.4-3.8 2-5.5 1.4-.6-.2-1.1-.5-1.5-.9-.9-.9-1.4-2.1-1.3-3.5 0-1.5.6-3 1.7-4.2z" transform="translate(246 133)" fill="url(#ak)"/><path d="M.7 3.7l1.7 12.5c0 .3 0 .6.1.9C3 21 5.6 24.2 9 25.3c1.2.4 2.4.5 3.7.3 4.9-.7 8.2-5.6 7.5-11-.5-3.9-3.1-7.1-6.5-8.2-1.2-.4-2.4-.5-3.7-.3-.2 0-.4.1-.6.1l-.5-3.6c-.1-.8-.7-1.4-1.4-1.6-.3-.1-.6-.1-.9-.1l-4.2.6c-.5.1-1 .4-1.3.8-.3.3-.5.8-.4 1.4zm11.7 6.5c2 .6 3.4 2.6 3.7 4.9.4 3.2-1.4 6.1-4 6.4-.6.1-1.3 0-1.9-.2-1.8-.6-3.1-2.2-3.6-4.3v-.1c-.1-1.1-.2-2-.1-2.8.4-2.2 2-4 4-4.2.6 0 1.3.1 1.9.3z" transform="translate(274 137)" fill="url(#al)"/><path d="M277.1 126c1.2 0 2.3.9 2.3 2.2 0 1.2-.9 2.3-2.2 2.3-1.3 0-2.3-.9-2.3-2.2
0-1.2.9-2.2 2.2-2.3z" fill="#C8C8CC"/></g><path d="M36.2 88.9s.1 0 0 0l.2-.2.1-.1c.1-.2.3-.4.5-.6.2-.3.5-.7.8-1.2.3-.5.5-1 .7-1.5.2-.5.4-1.1.6-1.7 0 0 0-.1.1-.1.1-.2.2-.5.3-.7 0-.1.1-.1.1-.2h-.4c-1.4 0-2.8-.4-4.1-.7-1.1-.3-2-.8-2.8-1.3-.1.2-.1.4-.2.6-.1.4-.2.7-.3 1-.1.3-.2.6-.2.9-.1.3-.1.7-.2 1 0 .2-.1.4-.1.6v2.6c.1.7.5 1.3 1 1.7.6.5 1.4.8 2.3.6.1 0 .2-.1.3-.1.2-.1.4-.1.6-.2.4-.1.6-.3.7-.4z" fill="url(#am)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M176.3 36.6c-1.7.6-3.4 1.7-4.5 3 .2.2.2.4.1.6 0 0-1 2-.2 3.7.5 1.2 1.8 2 3.8 2.5.3.1.5.4.4.7-.1.3-.3.4-.5.4h-.1c-.1 0-.1 0-.2-.1l-4.8 4.1c-.1.1-.2.1-.3.2.5.9 1.5 1.5 2.5 1.5.3 0 .6 0 .9-.1l4.4-1.4c1.5-.5 2.3-2.1 1.8-3.6l-.3-.8c.4-.1.7-.1 1.1-.2.7-.2 1.4-.5 2-.9 3.7-2.4 3.3-8.5-2-10.3-.6-.2-1.8-.1-3.1.3-.2 0-.3.1-.5.2s-.3.1-.5.2z" fill="url(#an)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M166.8 122.9s-2.6 2.9-1.9 5.4c.4 1.4 1.8 2.5 4.2 3.2.7.1 1.5.1 2.3.1h.1c.9 0 1.7-.1 2.5-.3 1-.2 2-.6 2.7-1.2.5-.4.9-.9 1
.2-1.5 1-2.6-.4-4.6-2.6-5.8-1.6-.9-3.7-1.4-5.5-1.3-.7 0-1.4.2-2 .4-.3.1-.6.3-1 .6.1.1.1.3 0 .4z" fill="url(#ao)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M35.5 80.8c2.9.9 4.8.9 6.1.1 1-.6 1.7-1.8 2-3.6-.5-2.4-2.8-4.7-5.3-5.7-.8-.3-1.6-.6-2.3-.6-1.5-.1-4.1 1-5.2 3 .2.1.3.4.2.6-.1.2-1.2 4.5 4.5 6.2z" fill="url(#ap)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M6.9 125.8s-.1 2.1 1.4 3.3c1.2 1 3.1 1.2 5.6.7 1.7-.4 3.9-1.5 4.9-3.3.6-1 .7-2.2.3-3.4-.1-.2 0-.4.2-.6-.3-.5-.8-.9-1.3-1.2l-1.2-.6-.4-3.7c1.5-.7 2.7-1.7 3.7-2.9 1.7-2.1 2.6-4.8 2.3-7.6-.4-3.8-2.7-6.8-5.9-8.3l.8 7.7c0 .4-.1.8-.3 1.1-.3.3-.6.5-1 .6l-3.6.4-2 .2h-.2c-.8 0-1.5-.6-1.5-1.4l-.8-7.7c-.7.5-1.3 1.1-1.8 1.7-1.7 2.1-2.6 4.8-2.3 7.6.5 4.5 3.7 8 7.8 9.1l.3 2.9c-1.1.2-2.1.5-2.9 1-.2.1-.3.2-.5.3-.8.6-1.7 2-2 3.5.3.2.4.4.4.6z" fill="url(#aq)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M170.9 39.7c0 .1-.4.9-.6 2-.1.6-.1 1.3.1 2 .1.2.1.4.2.7.2.4.5.8.8 1.2.4.4.8.7 1.3 1 .6.4 1.3.6 2.2.
9.1 0 .1 0 .2.1h.1c.3 0 .5-.2.5-.4.1-.3-.1-.6-.4-.7-1.9-.5-3.2-1.3-3.8-2.5-.8-1.7.2-3.7.2-3.7.1-.2.1-.5-.1-.6 0 0-.1-.1-.2-.1 0-.3-.3-.2-.5.1z" fill="url(#ar)" fill-rule="nonzero" transform="translate(81 15)"/></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/figure_customize.svg b/browser/extensions/onboarding/content/img/figure_customize.svg
new file mode 100644
index 000000000000..0c0cb30df5dc
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/figure_customize.svg
@@ -0,0 +1,561 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="295" height="238">
+ <defs>
+ <linearGradient id="a" x1="-678.179817%" x2="218.03211%" y1="-1879.5122%" y2="503.09878%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="b" x1="-2438.15968%" x2="713.035484%" y1="-2346.83281%" y2="705.8875%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="c" x1="-1876.47349%" x2="477.431325%" y1="-2215.7169%" y2="536.030986%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="d" x1="-300.502319%" x2="326.878731%" y1="-277.869139%" y2="301.876261%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="e" x1="-556.386842%" x2="471.897895%" y1="-1050.94952%" y2="809.757143%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="f" x1="-2301.11875%" x2="1769.175%" y1="-4460.38%" y2="3354.584%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="g" x1="-14090.38%" x2="5447.03%" y1="-14085.94%" y2="5451.47%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="h" x1="-1245.88053%" x2="483.093805%" y1="-2962.82857%" y2="1024.39796%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="i" x1="-4762.32308%" x2="1072.27051%" y1="-2525.31233%" y2="591.799315%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="j" x1="-419.785061%" x2="175.867683%" y1="-263.047589%" y2="146.541719%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="k" x1="-13945.16%" x2="5592.25%" y1="-13931.16%" y2="5606.26%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="l" x1="-93.8791876%" x2="171.036409%" y1="-368.29%" y2="383.149231%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="m" x1="-105.119971%" x2="175.589943%" y1="-106.702736%" y2="160.566895%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="n" x1="-4526.45652%" x2="3968.06957%" y1="-3864.98889%" y2="3371.08889%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="o" x1="-1590.58053%" x2="2387.43252%" y1="-835.835705%" y2="1325.72397%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="p" x1="-1174.27536%" x2="1657.23333%" y1="-1275.87873%" y2="1781.26242%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="q" x1="-8557.56%" x2="10979.85%" y1="-4234.38%" y2="5534.325%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="r" x1="-949.737079%" x2="1245.47865%" y1="-1023.81277%" y2="1336.75514%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="s" x1="-850.555238%" x2="1010.15048%" y1="-759.279881%" y2="912.10717%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="t" x1="-2526.775%" x2="962.048214%" y1="-2513.94763%" y2="949.261152%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="u" x1="-953.117868%" x2="406.88755%" y1="-1083.71008%" y2="471.112383%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="v" x1="-1736.94827%" x2="671.463404%" y1="-2238.58822%" y2="855.656147%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="w" x1="-9592.54%" x2="9944.87%" y1="-9613.77%" y2="9923.64%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="x" x1="-546.9251%" x2="669.232184%" y1="-637.97868%" y2="716.339388%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="y" x1="-2626.25%" x2="2515.17368%" y1="-10166.57%" y2="9370.85%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="z" x1="-26076.58%" x2="9092.02%" y1="-26064.58%" y2="9104.02%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="A" x1="-11996.8348%" x2="3293.86087%" y1="-4084.84179%" y2="1164.20299%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="B" x1="-1988.44219%" x2="759.104687%" y1="-1576.81875%" y2="621.219375%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="C" x1="-4889.30185%" x2="1623.40185%" y1="-2351.25495%" y2="817.087387%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="D" x1="-2655.5559%" x2="951.48%" y1="-6714.61282%" y2="2302.97692%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="E" x1="-11418.996%" x2="2648.448%" y1="-28603.67%" y2="6564.93%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="F" x1="-1067.54883%" x2="792.163033%" y1="-899.682353%" y2="691.657014%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="G" x1="-3245.82558%" x2="2272.05861%" y1="-2753.32267%" y2="1935.824%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="H" x1="-835.133806%" x2="827.684161%" y1="-835.133806%" y2="827.684161%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="I" x1="-4541.82131%" x2="1223.52295%" y1="-2322.54576%" y2="657.84322%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="J" x1="-2057.47051%" x2="889.742903%" y1="-1738.77914%" y2="791.335971%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="K" x1="-1278.62667%" x2="1189.34526%" y1="-1278.9986%" y2="1188.97333%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="L" x1="-6112.0075%" x2="2680.1425%" y1="-6270.03333%" y2="2747.55641%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="M" x1="-1115.93023%" x2="572.391158%" y1="-1175.6355%" y2="582.7945%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="N" x1="-9656.07586%" x2="2471.02759%" y1="-9322.84667%" y2="2400.02%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="O" x1="-7887.73698%" x2="3321.17237%" y1="-6188.2325%" y2="2603.9175%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="P" x1="-984.783738%" x2="288.77261%" y1="-1902.68288%" y2="506.125342%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="Q" x1="-2522.67732%" x2="1102.95155%" y1="-5039.01837%" y2="2138.24694%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="R" x1="-5921.7225%" x2="2870.4275%" y1="-6075.45385%" y2="2942.1359%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="S" x1="-5881.53%" x2="2910.62%" y1="-5881.26%" y2="2910.89%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="T" x1="-5841.3375%" x2="2950.8125%" y1="-5841.4525%" y2="2950.6975%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="U" x1="-7423.23691%" x2="3785.67244%" y1="-5801.6425%" y2="2990.5075%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="V" x1="-4020.34%" x2="1003.74571%" y1="-2527.16182%" y2="669.983636%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="W" x1="-4517.96032%" x2="1064.35714%" y1="-5480.38654%" y2="1282.80577%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="X" x1="-3834.66828%" x2="2163.11753%" y1="-3992.49299%" y2="2248.99581%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="Y" x1="-132.800878%" x2="141.123835%" y1="-126.933901%" y2="145.268963%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="Z" x1="-8624.4%" x2="10913.01%" y1="-4751.06111%" y2="6103.05556%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aa" x1="-20576.83%" x2="14591.77%" y1="-11391.2944%" y2="8146.81667%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ab" x1="-3210.85073%" x2="1716.38147%" y1="-3721.57455%" y2="1963.19067%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ac" x1="-964.539164%" x2="305.324758%" y1="-1877.16986%" y2="531.638356%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ad" x1="-5971.9075%" x2="2820.24%" y1="-7463.6%" y2="3526.5875%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ae" x1="-3626.20024%" x2="2128.73795%" y1="-3780.54791%" y2="2217.23789%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="af" x1="-3545.17742%" x2="2127.17742%" y1="-3793.28448%" y2="2270.26724%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ag" x1="-8571.16538%" x2="4955.21923%" y1="-4812.20217%" y2="2833.14565%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ah" x1="-921.592388%" x2="295.314187%" y1="-948.070803%" y2="335.454745%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ai" x1="-1521.4596%" x2="706.721231%" y1="-1247.46875%" y2="591.922626%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aj" x1="-678.258824%" x2="423.307164%" y1="-682.475952%" y2="429.068947%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ak" x1="-6036.96%" x2="2755.19%" y1="-6038.3275%" y2="2753.82%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="al" x1="-876.033667%" x2="359.821607%" y1="-805.490909%" y2="336.346753%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="am" x1="-6523.57663%" x2="4813.74946%" y1="-5038.58141%" y2="3749.13318%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="an" x1="-2645.94937%" x2="963.166315%" y1="-6683.46667%" y2="2334.12564%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ao" x1="-6631.98345%" x2="4705.34265%" y1="-5121.96932%" y2="3665.74527%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ap" x1="-1435.66843%" x2="1068.42563%" y1="-2846.04456%" y2="2010.54343%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aq" x1="-2633.78646%" x2="975.329221%" y1="-6654.88205%" y2="2362.70769%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ar" x1="-2206.3925%" x2="2189.6825%" y1="-2444.83034%" y2="2406.01103%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="as" x1="-5385.00363%" x2="1874.66412%" y1="-10484.884%" y2="3582.556%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="at" x1="-2391.91311%" x2="1397.1783%" y1="-5593.4125%" y2="3198.7375%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="au" x1="-2264.71662%" x2="1521.15732%" y1="-5306.3925%" y2="3485.7575%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="av" x1="-8124.26538%" x2="5402.11923%" y1="-4560.45%" y2="3084.89783%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aw" x1="-651.882139%" x2="479.56521%" y1="-1403.71323%" y2="934.962067%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ax" x1="-782.651586%" x2="579.099454%" y1="-1688.18577%" y2="1133.37245%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ay" x1="-2808.00445%" x2="930.963547%" y1="-4874.39455%" y2="1519.89636%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="az" x1="-3080.27111%" x2="827.351111%" y1="-4651.45333%" y2="1209.98%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aA" x1="-17842.03%" x2="17326.57%" y1="-17824.13%" y2="17344.47%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aB" x1="-4927.80617%" x2="7466.4141%" y1="-2177.67416%" y2="3371.61183%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aC" x1="-20583.89%" x2="14584.71%" y1="-5842.07714%" y2="4206.09429%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aD" x1="-13953.96%" x2="21214.64%" y1="-2172.57143%" y2="3409.74603%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aE" x1="-13796.3%" x2="21372.3%" y1="-1986.00882%" y2="3185.84412%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aF" x1="-13888.17%" x2="21280.43%" y1="-2353.96379%" y2="3709.58793%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aG" x1="-9372.00909%" x2="6613.71818%" y1="-2958.36812%" y2="2138.53043%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aH" x1="-16384.5222%" x2="12067.4729%" y1="-4573.9%" y2="3418.96364%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aI" x1="-17462.5%" x2="5983.23333%" y1="-13777.5842%" y2="4732.21053%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aJ" x1="-7480.69%" x2="7500.95%" y1="-7483.33%" y2="7498.32%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aK" x1="-7021.27187%" x2="3968.91562%" y1="-20520.9909%" y2="11450.4636%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aL" x1="-9826.0913%" x2="5464.60435%" y1="-22671.15%" y2="12497.45%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aM" x1="-2964.13075%" x2="2873.3758%" y1="-3993.57709%" y2="3854.15587%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aN" x1="-2330.22879%" x2="2205.28384%" y1="-2914.60952%" y2="2667.70794%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aO" x1="-1407.98283%" x2="1424.97017%" y1="-1728.51863%" y2="1719.38333%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aP" x1="-1807.9102%" x2="1780.72245%" y1="-2740.56%" y2="2669.99385%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aQ" x1="-1472.82%" x2="1783.415%" y1="-4365.0426%" y2="5068.41814%">
+ <stop stop-color="#FFFBCC" offset="0%"/>
+ <stop stop-color="#FFC9D5" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aR" x1="-511.087979%" x2="436.292949%" y1="-431.133333%" y2="359.905%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aS" x1="-2336.83483%" x2="1396.15506%" y1="-7055.5%" y2="4019.03333%">
+ <stop stop-color="#FFE900" offset="18.75%"/>
+ <stop stop-color="#FF0039" offset="100%"/>
+ </linearGradient>
+ </defs>
+ <g fill="none" fill-rule="evenodd">
+ <path d="M149.5 168.5c-.1 0-.1.1-.2.1l-3.3 1.5c-.2.1-.3.1-.5.2.7.3 1.4.5 2.2.5 1.6 0 3.1-.7 4.2-1.9 1-1.1 1.4-2.5 1.3-4-.1-.9-.3-1.7-.7-2.4l-1.6 4.4c-.3.6-.8 1.2-1.4 1.6zM178.7 206.1c-.1-.1-.2-.3-.2-.4l-2 2.7 3.1 1.1-.8-2.6c-.1-.2-.1-.5-.1-.8zM240.6 207.9h0zM168.5 200.6h-.2c-.2.2-.5.3-.7.4l-2.5.7.2.8c1.1.7 2 1.7 2.5 2.9l1 .4 3.7-5c.9-1.2 2.2-1.9 3.7-2l-.1-.3-2.5.7c-.2.1-.4.1-.6.1h-.2c-.2.2-.5.3-.7.4l-3.1.9c-.1-.1-.3 0-.5 0zM146.9 159.8c.1.1.2.1.3.2 0-.1.1-.2.1-.3-.1 0-.2 0-.4.1zM143.3 112.9c.2-.3.4-.6.7-.8l4.4-2.8-.1-.1-4.2 2.7c-.3.2-.6.6-.8 1zM142.2 166c.3-.5.7-1 1.3-1.2h.1l.2-.1-1.9-.7c.2.4.2.8.2 1.3 0 .2.1.4.1.7zM200.9 117.6c-1.9 0-3.2 1-3.9 1.7.7-.7 2-1.7 3.9-1.7zM206.8 158.8c-.1 0-.1.1-.2.1.1 0 .1 0 .2-.1zM174.5 190.8c.2-.1.4-.1.6-.1h.2c.2-.2.5-.3.7-.4.5-.2 1-.2 1.6-.2 2.4 0 4.5 1.5 5.2 3.9.1.3.1.5.1.8.2.2.3.5.4.7l.9 3.1c.1.3.1.5.1.8.2.2.3.5.4.7l.3 1.1c.3.2.6.4.9.7-1.7-3.9-2.3-8.6-1.6-13.7-1.1.2-2.3.3-3.5.3-3.4 0-6.8-1-9.7-2.8-.7-.5-1.4-1-2.1-1.6 1.7 2.3 3.5 4.6 5.3 6.7h.2z
M143.4 119.9c-1.1-.3-2-.8-2.8-1.6l-.7.5v.1l.7-.4c.8.7 1.7 1.2 2.8 1.4.4.2.9.2 1.3.2 1.4 0 2.7-.5 3.8-1.3-1.1.8-2.4 1.3-3.7 1.3-.5 0-.9-.1-1.4-.2zM198.7 120.8c.4-.4 1.2-.9 2.2-.9-1 0-1.8.5-2.2.9zM213.3 214.1c-1 0-2 0-3-.1 1.2 4.1 1.9 6.8 2.2 8.8 3.2-.1 6.5-.2 9.9-.2-.1-1.7-.1-3.8-.1-6.6l-7-2c-.6.1-1.3.1-2 .1zM275.4 138.9l.9-.3c-.1-.7.1-1.4.4-2.1-1.5 2-3.5 3.6-5.8 4.5.1 0 .1.1.2.1.2-.2.5-.3.7-.4 1.1-.7 2.4-1.3 3.6-1.8zM139.9 151.5c.5-.3 1.1-.5 1.7-.5.3 0 .7.1 1 .2.7.3 1.3.8 1.6 1.5.1.1.1.3.1.4 1-.3 2-.4 3-.4-2.2-4.2-4.8-9.7-7.4-15.2v14z"/>
+ <path fill="#EDEDF0" fill-rule="nonzero" d="M227.5 226.4c.1.1.1.1.2.1 0 0-.1 0-.2-.1z"/>
+ <path fill="#EDEDF0" fill-rule="nonzero" d="M228.2 231c-1.2 0-2.4-.4-3.4-1.2-1.3-1.1-2.1-2-2.4-7.2-3.4 0-6.7.1-9.9.2.6 3.3.2 4.4-.7 5.6-1 1.4-2.6 2.2-4.3 2.2-2.9 0-5.3-2.1-9.6-7-15.1 1.3-25.3 3.8-25.3 6.6 0 4.3 23.1 7.7 51.6 7.7s51.6-3.4 51.6-7.7c0-3.6-16.7-6.7-39.3-7.5-2.3 5.7-5.1 8.3-8.3 8.3z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M158.9 75.5h13.4c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-13.4c-.3 0-.6.2-.6.6.1.4.3.6.6.6zM155.4 85.7c0-.3-.2-.6-.6-.6h-13.4c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h13.4c.3-.1.6-.3.6-.6z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M134.3 114.7l.6-.4.4-.2c0-.7.1-1.3.2-2 0-.1.1-.2.1-.4-.4-.9-.8-2-1.2-3v6h-.1zM131.8 102.3c-.1-.3 0-.6.3-.7.3-.1.6 0 .7.3l.3.9V67h-13c.7 2.2 1.8 5.2 3.1 8.8.1.3 0 .6-.3.7h-.2c-.2 0-.4-.1-.5-.4-1.3-3.8-2.4-7-3.2-9.2h-3.4c1.1 3.8 3.1 10.1 5.8 18.2l-.1-.5c1.6 4.4 8.9 24.1 11.5 31l.4-.3v-9.5c-.6-1.4-1.1-2.7-1.4-3.5zM121.2 91.2c-3.9-10.9-6.6-19.6-7.9-24.2H7.1v98.7c0 .6 0 .9.1 1 .1 0 .4.1 1 .1h124c.6 0 .9 0 1-.1 0-.1.1-.4.1-1v-38.4l-1.6 1-.4.2c-.3.2-.6.4-1 .6-.6.3-1.2.4-1.9.4h-.2c-2 0-3.8-1.2-4.6-3-1-2.2-.3-4.7 1.5-6 .2-.2.5-.3.7-.5l2.3-1.4 2.7-1.7c-2.5-6.4-7-18.6-9.6-25.7zm-25.6 27.1h-7.1c-.5 2.1-1.4 4-2.6 5.8l5.1 5.1c1.2 1.6 1.2 3.6.1 5.1-.8 1.1-2 1.7-3.4 1.7-.9 0-1.8-.3-2.5-.8L80 130c-1.8 1.1-3.8 1.8-5.8 2.3v7.1c0 2.3-1.9 4.2-4.2 4.2-2.3 0-4.2-1.9-4.2-4.2V132c-2-.4-4-1.2-5.8-2.3l-4.7 5.1c-.2.3-.5.6-.8.8-.7.6-1.6.8-2.5.8-1.3 0-2.6-.6-3.4-1.7-1.4-1.9-1-4.5.8-5.9l5-4.7c-1.1-1.8-1.8-3.7-2.3-5.8H45c-2.3 0-4.2-1.9-4.2-4.2 0-2.3 1.9-4.2 4.2-4.2h7.1c
.4-2.1 1.2-4 2.3-5.8l-5.1-4.7c-.9-.9-1.3-2-1.3-3.2 0-1.2.5-2.3 1.3-3.1.8-.8 2-1.3 3.1-1.3 1.2 0 2.3.5 3.1 1.3l4.7 5.1c1.8-1.1 3.7-1.8 5.8-2.3v-7.1c0-2.3 1.9-4.2 4.2-4.2 2.3 0 4.2 1.9 4.2 4.2v7.1c2.1.4 4 1.2 5.8 2.3l5.1-5.1c.8-.6 1.7-.9 2.6-.9.9 0 1.8.3 2.5.8.9.7 1.5 1.7 1.6 2.8.2 1.1-.1 2.2-.8 3.1l-5.1 5.1c1.1 1.8 1.8 3.8 2.3 5.8h7.1c2.3 0 4.2 1.9 4.2 4.2.2 2.4-1.7 4.3-4.1 4.3zm28.9-11.5c.3-.1.6.1.7.3l1.7 4.7c.1.3-.1.6-.3.7h-.2c-.2 0-.4-.1-.5-.4l-1.7-4.7c-.1-.2.1-.5.3-.6z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M70.3 103.8c-5.6 0-10.2 4.6-10.2 10.2s4.6 10.2 10.2 10.2 10.2-4.6 10.2-10.2c.1-5.6-4.5-10.2-10.2-10.2zM137.7 124.4l-.9.6.9 2.1v-2.7zM135.3 121.7s0 .1 0 0l2.4-1.5v-.1l-2.4 1.6z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M134.8 126.3l-.5.3v39.1c0 1.9-.3 2.2-2.2 2.2H8.1c-1.9 0-2.2-.3-2.2-2.2V65.8h107c-.2-.8-.4-1.4-.4-1.8-.1-.6.3-1.2.9-1.3.6-.1 1.2.3 1.3.9.1.4.3 1.2.6 2.2h3.4l-.8-2.4c-.1-.3.1-.6.4-.7.3-.1.6.1.7.4 0 0 .3 1 .9 2.7h14.5v39.7c.6 1.5 1.3 3.1 1.8 4.4.4-.9.9-1.6 1.6-2.3V49.7c0-2.3-1.9-4.2-4.2-4.2H6.8c-2.3 0-4.2 1.9-4.2 4.2v118c0 2 1.8 3.7 3.9 3.7h127.3c1 0 1.9-.4 2.6-.9-.8-1.6-1.2-3.4-1.3-5.3 0-1.5.9-2.7 2.2-3.3-.8-.8-1.1-2-.7-3.1l1.1-2.9v-23.4c-1-2.1-2-4.3-2.9-6.2zm-18.1-73.5c.3-.1.5 0 .6.3l1.9 5.3v.1c.1.3-.1.5-.4.6h-.1c-.2 0-.4-.1-.4-.3l-1.9-5.3c-.1-.4.1-.6.3-.7zm-1.7.4c0-.3.2-.5.5-.5s.5.2.5.5v5.3c0 .3-.2.5-.5.5s-.5-.2-.5-.5v-5.3zm-1.5.5c0-.3.2-.5.5-.5s.5.2.5.5v4.8c0 .3-.2.5-.5.5s-.5-.2-.5-.5v-4.8zm-1.4-1c0-.3.2-.5.5-.5s.5.2.5.5v5.8c0 .3-.2.5-.5.5s-.5-.2-.5-.5v-5.8zm-77.7 2.7c0-1.7 1.4-3.1 3.1-3.1h63.6c1.7 0 3.1 1.4 3.1 3.1v.3c0 1.7-1.4 3.1-3.1 3.1H37.5c-1.7 0-3.1-1.4-3.1-3.1v-.3zM22 52.7c1.6 0 2.9 1.3 2.9 2.9 0 1.6-1.3 2.9-2.9 2.9-1.6 0-2.9-1.3
-2.9-2.9.1-1.6 1.3-2.9 2.9-2.9zm-9.2 0c1.6 0 2.9 1.3 2.9 2.9 0 1.6-1.3 2.9-2.9 2.9-1.6 0-2.9-1.3-2.9-2.9.1-1.6 1.3-2.9 2.9-2.9z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M129.1 125.6c-.1.1-.2.2-.4.2-.2.1-.4.1-.6.1.2 0 .4 0 .6-.1.2 0 .3-.1.4-.2l4.1-2.5v-.1l-4.1 2.6z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M137.7 120.2v.1l2.2-1.5M139 115.8c-.2-.5-.2-1-.3-1.5 0 .5.1 1 .3 1.5z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M133.8 171.4H6.5c-2.2 0-3.9-1.6-3.9-3.7v-118c0-2.3 1.9-4.2 4.2-4.2h126.6c2.3 0 4.2 1.9 4.2 4.2V107.6c.6-.7 1.4-1.3 2.2-1.8V81.2h27.6c.1-.2.2-.4.2-.6 0-.2.3-.2.3 0 .1.2.1.4.2.6h14.5c.6 0 1.1-.5 1.1-1.1 0-.6-.5-1.1-1.1-1.1h-42.8V49.7c0-3.6-2.9-6.5-6.5-6.5H6.8c-3.6 0-6.5 2.9-6.5 6.5v118c0 3.3 2.8 5.9 6.1 5.9h127.3c1.4 0 2.7-.5 3.7-1.2-.4-.6-.8-1.3-1.1-1.9-.7.5-1.6.9-2.5.9z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M137.7 127.1l-.9-2.1-1.9 1.2c.9 2 1.9 4.1 2.9 6.3V156l1.2-3.2c.2-.5.6-1 1-1.3v-14.1c2.6 5.5 5.2 11 7.4 15.2h.4c.7 0 1.4.1 2.1.2-3.1-6.1-6.1-12.1-8.7-17.9-.2-.5-.7-1.5-1.2-2.7V123l-2.2 1.4v2.7h-.1z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M134.3 65.8h-14.5c-.6-1.7-.9-2.7-.9-2.7-.1-.3-.4-.4-.7-.4-.3.1-.4.4-.4.7l.8 2.4h-3.4c-.3-1-.5-1.8-.6-2.2-.1-.6-.7-1-1.3-.9-.6.1-1 .7-.9 1.3.1.4.2 1 .4 1.8H6v99.8c0 1.9.3 2.2 2.2 2.2h124c1.9 0 2.2-.3 2.2-2.2v-39.1l-1.1.7v38.4c0 .6 0 .9-.1 1-.1 0-.4.1-1 .1H8.2c-.6 0-.9 0-1-.1 0-.1-.1-.4-.1-1V67h106.2c1.3 4.6 4 13.3 7.9 24.2h.1c2.5 7.2 7.1 19.3 9.6 25.7l2-1.2c-2.7-6.9-9.9-26.7-11.5-31l.1.5c-2.8-8.1-4.7-14.4-5.8-18.2h3.4c.8 2.2 1.8 5.4 3.2 9.2.1.2.3.4.5.4h.2c.3-.1.4-.4.3-.7-1.3-3.6-2.3-6.6-3.1-8.8h13v35.8l-.3-.9c-.1-.3-.4-.4-.7-.3-.3.1-.4.4-.3.7.3.8.8 2.1 1.4 3.5v9.5l.2-.1.9-.6v-6c.4 1.1.8 2.1 1.2 3l.6-1.8c-.5-1.3-1.2-2.9-1.8-4.4V65.8h-.1zM12.8 58.4c1.6 0 2.9-1.3 2.9-2.9 0-1.6-1.3-2.9-2.9-2.9-1.6 0-2.9 1.3-2.9 2.9.1 1.7 1.3 2.9 2.9 2.9zM22 58.4c1.6 0 2.9-1.3 2.9-2.9 0-1.6-1.3-2.9-2.9-2.9-1.6 0-2.9 1.3-2.9 2.9.1 1.7 1.3 2.9 2.9 2.9zM37.5 58.8h63.6c1.7 0 3.1-1.4 3.1-3.1v-.3c0-1.7-1.4-3.1-3.1-3.1H37.5c-1.7 0-3.1 1.4-3.1 3.1v.3c0 1.7 1.4 3.1 3
.1 3.1z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M95.6 109.8h-7.1c-.4-2.1-1.2-4-2.3-5.8l5.1-5.1c.7-.9 1-2 .8-3.1-.2-1.1-.7-2.1-1.6-2.8-.7-.6-1.6-.8-2.5-.8-.9 0-1.8.3-2.6.9l-5.1 5.1c-1.8-1.1-3.7-1.8-5.8-2.3v-7.1c0-2.3-1.9-4.2-4.2-4.2-2.3 0-4.2 1.9-4.2 4.2v7.1c-2.1.4-4 1.2-5.8 2.3l-4.7-5.1c-.8-.8-2-1.3-3.1-1.3-1.2 0-2.3.5-3.1 1.3-.8.8-1.3 2-1.3 3.1 0 1.2.5 2.3 1.3 3.2l5.1 4.7c-1.1 1.8-1.8 3.7-2.3 5.8H45c-2.3 0-4.2 1.9-4.2 4.2 0 2.3 1.9 4.2 4.2 4.2h7.1c.4 2.1 1.2 4 2.3 5.8l-5 4.7c-1.9 1.4-2.2 4.1-.8 5.9.8 1.1 2 1.7 3.4 1.7.9 0 1.8-.3 2.5-.8.3-.2.6-.5.8-.8l4.7-5.1c1.8 1.1 3.7 1.8 5.8 2.3v7.4c0 2.3 1.9 4.2 4.2 4.2 2.3 0 4.2-1.9 4.2-4.2v-7.1c2.1-.4 4-1.2 5.8-2.3l5.1 5.1c.7.6 1.6.8 2.5.8 1.3 0 2.6-.6 3.4-1.7 1.1-1.5 1.1-3.6-.1-5.1l-5.1-5.1c1.2-1.8 2.1-3.7 2.6-5.8h7.1c2.3 0 4.2-1.9 4.2-4.2.2-2.3-1.7-4.2-4.1-4.2zm-25.3 14.5c-5.6 0-10.2-4.6-10.2-10.2s4.6-10.2 10.2-10.2 10.2 4.6 10.2 10.2c.1 5.6-4.5 10.2-10.2 10.2zM115.3 21.3h1.1c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-1.1c-.3 0-.6.2-.6.6 0 .4.3.6.6.
6zM126.4 21.3h4.5c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-4.5c-.3 0-.6.2-.6.6.1.4.3.6.6.6zM34.1 20.6h13.4c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6H34.1c-.3 0-.6.2-.6.6.1.4.3.6.6.6zM82 8.5c.1.1.3.2.4.2.1 0 .2 0 .3-.1.2-.2.3-.5.1-.8-.7-.9-1.5-1.8-2.3-2.5-.2-.2-.6-.2-.8 0-.2.2-.2.6 0 .8.8.7 1.6 1.5 2.3 2.4zM109.7 21c.1.2.3.3.5.3h.6c.3 0 .6-.2.6-.6 0-.4-.2-.6-.6-.6h-.3c-.2-.4-.6-1.2-1.2-2.1-.2-.3-.5-.3-.8-.2-.3.2-.3.5-.2.8.9 1.3 1.3 2.2 1.4 2.4zM59.6 4.4c.1 0 .2 0 .3-.1 1.6-1.2 3.7-2.1 6.4-2.4 2.1-.3 4-.2 5.9.2.3.1.6-.1.7-.4.1-.3-.1-.6-.4-.7-2-.4-4.1-.5-6.3-.2-2.9.4-5.2 1.3-6.9 2.7-.2.2-.3.5-.1.8 0 0 .2.1.4.1zM91.5 7.8c1.3-.4 2.7-.5 4.3-.2 2.3.4 4.8 1.8 7.2 4.1.1.1.2.2.4.2.1 0 .3-.1.4-.2.2-.2.2-.6 0-.8-2.6-2.5-5.2-3.9-7.7-4.4-1.8-.3-3.4-.3-4.9.2-.3.1-.4.4-.4.7.1.4.4.5.7.4zM84.9 13c.1.2.3.3.5.3.1 0 .2 0 .2-.1.3-.1.4-.5.3-.7-.1-.3-.3-.6-.5-1-.1-.3-.5-.4-.8-.2-.3.1-.4.5-.2.8.2.3.3.7.5.9zM56.2 14.5c.1 0 .1 0 0 0 .4 0 .6-.3.6-.6 0-.4-.1-.7-.1-1.1 0-.3-.3-.5-.6-.5H56c-.2.1-.4.3-.4.6 0 .4.1.8.1 1.1 0 .1 0 .
1.1.2 0 .2.2.3.4.3zM58.3 20.4c.1-.2.1-.4 0-.5 0 0-.3-.7-.6-1.7-.1-.3-.4-.5-.7-.4-.3.1-.5.4-.4.7.1.4.3.7.4 1h-.7c-.2.1-.4.3-.4.5 0 .3.2.6.6.6H57.9c.2 0 .3-.1.4-.2z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M33.7 25.5h97.9c.6 0 1.1-.5 1.1-1.1 0-.6-.5-1.1-1.1-1.1h-22.8c-2-3.7-7.1-11.7-13.4-12.9-8.4-1.6-10 6.7-10 6.7S79.8 2.6 65.8 4.5c-6.5.9-9 4.2-9.8 7.8h.1c.3 0 .6.2.6.5 0 .4.1.7.1 1.1 0 .3-.2.6-.5.6h-.1c-.2 0-.4-.1-.5-.3-.1 1.9.1 3.8.5 5.3H57c-.1-.3-.2-.6-.4-1-.1-.3.1-.6.4-.7.3-.1.6.1.7.4.3 1 .6 1.7.6 1.7.1.2.1.4 0 .5-.1.2-.3.3-.5.3h-1.3c.4 1.5.9 2.5.9 2.7H33.7c-.6 0-1.1.5-1.1 1.1 0 .5.5 1 1.1 1z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M205.5 42.3c.1 0 .3-.1.4-.2.6-.7 1.5-1.1 2.6-1.4.3-.1.5-.4.4-.7-.1-.3-.4-.5-.7-.4-1.3.4-2.4.9-3.1 1.7-.2.2-.2.6 0 .8.1.2.3.2.4.2zM212.7 40.5c.4.1.7.2 1 .3h.2c.2 0 .5-.1.5-.4.1-.3-.1-.6-.4-.7-.4-.1-.8-.2-1.1-.3-.3-.1-.6.1-.7.4 0 .4.2.7.5.7zM238.3 50.7h3.3c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-3.3c-.3 0-.6.2-.6.6 0 .4.3.6.6.6zM221.2 46.7c.3-1 1.2-3.2 3.8-3.2.3 0 .7 0 1 .1 1.6.3 3.2 1.3 4.8 3 .2.2.6.2.8 0 .2-.2.2-.6 0-.8-1.8-1.9-3.6-3-5.4-3.4-.4-.1-.8-.1-1.2-.1-3.5 0-4.6 3-4.9 4-.1.3.1.6.4.7h.2c.1 0 .2 0 .3-.1.1.1.2 0 .2-.2zM205.5 50.6c.1-.2.1-.4 0-.5l-.1-.1c-.1-.3-.4-.4-.7-.3-.1 0-.1.1-.2.1h-12.7c-.3 0-.6.2-.6.6 0 .3.2.6.6.6H205c.2-.1.4-.2.5-.4z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M191.7 54.6h54.4c.6 0 1.1-.5 1.1-1.1 0-.6-.5-1.1-1.1-1.1h-12.9c-1.1-2.1-3.9-6.5-7.4-7.2-2.4-.5-3.8.5-4.6 1.6 0 .1-.1.2-.2.3-.6 1-.8 1.9-.8 1.9s-3.1-8-10.9-7c-5.7.8-6 5-5.4 7.8h.7s.1-.1.2-.1c.3-.1.6 0 .7.3l.1.1c.1.2.1.4 0 .5-.1.2-.3.3-.5.3h-.9c.2.9.5 1.4.5 1.5h-13.2.2c-.6 0-1.1.5-1.1 1.1-.1.6.4 1.1 1.1 1.1z"/>
+ <path fill="#EDEDF0" fill-rule="nonzero" d="M107.4 231.1c-4 0-5.8-2.5-6.2-4.6l-.1-.5c-7 .5-12.1 2.1-12.1 4 0 2.3 7.3 4.1 16.3 4.1s16.3-1.8 16.3-4.1c0-1.4-2.7-2.6-6.7-3.3-.2.7-.6 1.3-1 1.9-2 2.4-5.7 2.5-6.5 2.5z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M227.3 225.7c-.1-.3-.1-.6-.1-1 0 .4 0 .7.1 1zM228 226.5h-.1.1zM226.9 216v0zM199.5 218.8c.3.3.5.6.8.9-.3-.3-.6-.6-.8-.9z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M237.7 208.7c1-.3 1.9-.5 2.8-.8h.1c6.5-2 12.4-4.7 17.4-7.6-7.2 3.5-15 5-20 5.6 0 1-.1 1.9-.3 2.8z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M241.9 163c.1-.2.2-.4.2-.6 0 .2-.1.4-.2.6zM234.1 70.2c-.3 0-.5-.1-.8-.1-.3 0-.7 0-1 .1.3 0 .7-.1 1-.1.2 0 .5 0 .8.1zM232 70.2c-2.5.4-4.6 2.2-5.5 4.5.9-2.3 3-4 5.5-4.5zM219.1 84.9c0-.1 0-.1 0 0 0-.1 0-.1 0 0zM221.2 79.8c.5-.5 1.1-.9 1.7-1.3-.6.3-1.2.8-1.7 1.3zM226 76.7c-.4.3-.7.7-1 1-.7.1-1.4.4-2.1.7.6-.3 1.3-.6 2.1-.7.3-.3.7-.6 1-1zM207.3 226.3s0-.1 0 0h-.1c0-.1.1 0 .1 0zM263.6 172.3c-.4.1-.8.3-1.2.4.4-.1.8-.2 1.2-.4zM248.7 65.6h.8c-.3.1-.5 0-.8 0zM237.3 69.6c1.3-.5 2.6-.9 4-1.2-1.4.4-2.7.8-4 1.2zM189.2 186.5v0zM252.5 139.1h-1c.3.1.6.1 1 0zM272.6 164c-.5 1.3-1.7 3.4-3.8 5.3 2.2-2 3.3-4.1 3.8-5.3zM262.6 67.9h-.6.6zM219.1 84.9c0 .3 0 .7.1 1-.2.3-.3.6-.5 1 .2-.3.3-.7.5-1 0-.3-.1-.6-.1-1zM202.8 96.1c.1.1.1.2.2.2.1.1.3.2.4.3-.1-.1-.3-.2-.4-.3-.1 0-.2-.1-.2-.2zM202.5 90.4c-.1-.1-.2-.1-.2-.2-.1-.1-.1-.2-.2-.3 0 .1.1.3.2.3l.2.2zM259.2 140.3h-.3.3zM277.1 177.5c-.1 0-.1 0 0 0-.1 0-.1 0 0 0-.1.1-.1 0 0 0zM274.7 180c0-.1 0-.1 0 0-.2 0-.4-.1-.6-.1.2 0
.4 0 .6.1z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M235.8 218c-.5 1.4-1.1 3.2-2 4.9-1.5 3.1-3.5 5.9-5.8 5.9-.7 0-1.3-.2-1.8-.6-.6-.5-1.2-.9-1.4-5.4-.1-1.5-.1-3.5-.1-6.2-.5 0-1-.1-1.6-.2l-.7-.2c0 2.8 0 4.9.1 6.6.2 5.1 1 6.1 2.4 7.2 1 .8 2.1 1.2 3.4 1.2 3.2 0 6-2.7 8.4-8.1.6-1.3 1.2-2.8 1.7-4.4.7-2 1.3-4.8 1.9-8.2-.9.3-1.9.5-2.9.8-.5 2.6-1.1 4.9-1.6 6.7zM265 198.7c-2.4 1.6-5 3.1-7.8 4.7 1.6-.7 3.1-1.4 4.6-2.3h.2c3.7 0 7.1-.5 10.2-1.4-1.7-.2-3.3-.6-4.7-1.3-.8.1-1.6.2-2.5.3z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M284.9 173c.8-.7 1.8-1.2 2.9-1.2.4 0 .7 0 1 .1h.1c-.7-.6-1.5-1.1-2.4-1.2-.3-.1-.6-.1-.8-.1-.8 0-1.6.2-2.3.6l-.2.2c.6.6 1.2 1.1 1.7 1.6zM287.7 188c.3-.6.6-1.1.9-1.7-.4.3-.8.6-1.3.8.1.4.3.6.4.9z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M266.3 154.9c-1.2.6-2.1.9-2.7 1.2-.3.1-.6.2-.8.3-.2.1-.3.1-.3.1-.2.1-.4.1-.7.1-.6 0-1.2-.3-1.7-.7-6.4 3.3-13.7 6.8-16.1 7.9-.1.2-.2.4-.2.6.8-.1 1.7-.1 2.5-.1 3.5 0 6.8.6 9.7 1.8 2.7 1.1 5 2.5 7 4.3 6.4-2.4 7.9-7.8 7.9-8 .2-.9.9-1.5 1.8-1.7h.3c.8 0 1.5.4 1.9 1.1.1.2 1.7 2.9 2.3 7.1 1 .2 2 .6 2.9 1-.5-5.5-2.5-9.1-2.9-9.7-.9-1.4-2.4-2.3-4-2.3-.2 0-.5 0-.7.1-1.9.3-3.4 1.7-3.9 3.5 0 .1-1 3.6-5.1 5.7-1.9-1.4-4-2.7-6.4-3.7-1.3-.6-2.8-1-4.2-1.3 5.1-2.5 10.1-5 13.8-7.1-.1-.1-.1-.2-.2-.2 0-.1-.1-.1-.2 0z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M265.3 137.7h.5-.5zM246.3 166.4h-.3H246.3z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M284.3 126.3l1.2-1.8c4.6-2.2 7.4-7.2 6.8-12.3v-.2c1.4-2.3 2-5 1.7-7.7-.3-2.4-1.3-4.6-2.8-6.4-.3-2.1-.7-4.1-1.3-6.1v-1c0-4-2-7.7-5.3-9.9-2.8-4.1-6.5-7.8-10.6-10.6-1.8-4.4-6.2-7.3-11-7.3-1.4 0-2.9.3-4.3.8-.8-.2-1.6-.4-2.4-.5-2.1-1.6-4.7-2.5-7.3-2.5-.5 0-1 0-1.5.1-2.2.3-4.4 1.2-6.1 2.6-2.1.4-4.2 1.1-6.2 1.9-.6-.1-1.1-.1-1.7-.1-5.2 0-9.9 3.5-11.4 8.4-4.4 1.8-7.4 6.2-7.4 11.1v.2c-.2.5-.4 1-.6 1.4-.4.4-.8.7-1.2 1.2-.1-2.2-1.1-4.2-2.2-6.3-.2-.4-.4-.8-.6-1.3-.9-1.8-2.7-3-4.6-3-3.8 0-5.5 3.8-6.2 5.3-1 2.1-2.3 5.9-1.3 9-.4 3.7.2 6.5 1.8 8.2.1.6.2 1.3.4 1.8-8.4 3.3-26.4 11.2-32.7 19.4-1.9 2.4-2.2 5.7-1 9.8 2.6 8.9 10.6 18.2 15.5 20.1 6.2 2.3 14.3 3.8 22.5 4.3-4.1 1.6-7.4 2.9-10 4.1.6.7 1.1 1.4 1.6 2.2 2.6-1.1 5.7-2.3 9.5-3.9 1.9-1.6 3.9-3.1 6-4.5h-2c-9.9 0-19.7-1.6-27.1-4.3-5.2-1.9-12.1-11.9-14-18.4-.9-3.3-.7-5.8.6-7.6 5.6-7.3 22.8-15.2 33.8-19.4-.6-1.4-.9-3-1.1-4.6l-.1-.1c-1.4-1.1-1.9-3.5-1.5-7.1-1.1-2.3.3-6 1.1-7.6 1.2-2.6 2.4-3.8 3.9-3.8 1 0 1
.9.6 2.4 1.6.2.5.5.9.7 1.3 1.2 2.3 2.2 4.3 1.8 6.3.7 1 1.3 2.1 1.4 3.4.7.6 1.3 1.1 1.9 1.7-.1-.3-.1-.7-.1-1.1 0-2 1-3.8 2.6-4.8.3-.8.7-1.7 1.1-2.5v-.7c0-4.3 2.9-8 7-9.1l.1-.1c.8-4.4 4.7-7.8 9.3-7.8.7 0 1.3.1 2 .2 2.3-1 4.6-1.7 7-2.1 1.5-1.4 3.3-2.2 5.3-2.5.4 0 .8-.1 1.2-.1 2.3 0 4.5.9 6.2 2.4 1.2.2 2.4.5 3.6.8 1.3-.6 2.7-.9 4.1-.9 4.1 0 7.7 2.6 9 6.4 4.3 2.8 8 6.5 10.8 10.8 2.8 1.7 4.6 4.8 4.6 8.1 0 .4 0 .8-.1 1.3.7 2.3 1.2 4.6 1.5 7 1.5 1.5 2.5 3.4 2.7 5.6.3 2.5-.4 4.9-1.8 6.8.1.4.2.7.2 1.1.5 4.3-2 8.5-6 10-.6 1-1.2 1.9-1.8 2.8-.5 3.2-2.7 5.8-5.7 6.9-1.6 4.5-5.8 7.5-10.7 7.5-.5 0-1 0-1.5-.1-1 1.6-2.8 2.7-4.9 2.7-1.4 0-2.7-.5-3.7-1.3-1.3.2-2.7.2-4 .2-.4 1.9-1 3.9-1.6 5.8 8.1-1.9 16.9-3.8 18-3.9h.8c.1-.1.3-.2.4-.3l.6-.5c.2-.2.4-.3.6-.4.4-.3.8-.6 1.2-.8-.1 0-.1-.1-.2-.1 2.3-1 4.3-2.5 5.8-4.5.2-.4.4-.7.7-.9.3-.5.5-.9.8-1.4 2.8-2 5.1-4.9 5.8-8.4z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M287.7 101.9c-.4-.6-.9-1.1-1.4-1.5.6.4 1 .9 1.4 1.5zM286.9 111.2c.2.6.4 1.2.5 1.9 0 .2 0 .5.1.7 0-.2 0-.5-.1-.7-.1-.7-.3-1.3-.5-1.9zM289 106c0-.3 0-.6-.1-.9 0-.4-.1-.7-.2-1.1.1.3.2.7.2 1.1.1.3.1.6.1.9zM263.6 137.5c-.3-.1-.7-.1-1-.2h-.1.1c.3.1.6.1 1 .2zM259.6 140.2c.4-.1.7-.2 1.1-.4-.4.2-.7.4-1.1.4zM188.5 192.2v0zM218.2 88.3c-.2.4-.4.9-.5 1.3-.2.1-.3.1-.5.2.1-.1.3-.2.5-.2.1-.4.3-.9.5-1.3zM186 170.6c0-.1-.1-.1-.1-.2 0 .1 0 .2.1.2zM215.8 97.7c0-.4.1-.9.2-1.3-.1.4-.1.8-.2 1.3z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M207.5 230.7c1.7 0 3.3-.8 4.3-2.2.9-1.2 1.3-2.3.7-5.6-.3-2-1.1-4.8-2.2-8.8 1 0 2 .1 3 .1h2.1l-3.8-1.1-4.8-.6c1.6 5.2 2.4 8.5 2.9 10.6.6 3.2.3 3.7-.2 4.3-.5.8-1.4 1.2-2.3 1.2-1.7 0-3.4-1.3-6.6-4.9-.8-.9-1.8-2-2.9-3.3-3.3-3.8-5.6-8.6-7.1-12.7-1-.5-2-1.1-2.9-1.7 1.6 4.8 4.3 11 8.4 15.8.6.8 1.3 1.5 1.8 2.1 4.4 4.8 6.7 6.8 9.6 6.8zM185.9 201.9c1.2.9 2.4 1.7 3.6 2.5l-.3-.9c-2.1-3-3.1-7-3-11.4-.4-.3-.8-.5-1.2-.8-.2-.2-.3-.5-.1-.8.2-.2.5-.3.8-.1.2.1.4.3.6.4.1-1 .2-2.1.3-3.2-.8.3-1.6.5-2.4.6-.5 5.1 0 9.8 1.7 13.7z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M206.8 158.8c.5-.4 1-.9 1.6-1.3-.6.4-1.1.9-1.6 1.3z"/>
+ <path fill="url(#a)" fill-rule="nonzero" d="M237.4 200.4c-.1 1-.2 2-.2 2.9 4.1-.4 10.5-1.6 17.1-4.5 1.7-.8 3.3-1.6 4.7-2.6-.7-.2-1.4-.6-1.9-1.1-3.5 1.9-8.3 4-14.2 4.8-1.9.2-3.7.4-5.5.5z"/>
+ <path fill="url(#b)" fill-rule="nonzero" d="M268.8 169.3c1.6-.6 3.4-.9 5.1-.9.4 0 .7 0 1.1.1-.4-2.3-1.1-4-1.5-4.9-.1-.3-.3-.5-.3-.6v-.1s0 .1-.1.3c0 .1-.1.2-.1.3-.1.1-.1.3-.2.5-.7 1.2-1.8 3.3-4 5.3z"/>
+ <path fill="url(#c)" fill-rule="nonzero" d="M274.9 176.9c-.3 0-.6-.1-.9-.1-2.6 0-5 1.4-6.3 3.6-.3.5-.7 1-1.1 1.4l1.6.4c0-.1.1-.2.2-.3l.9-.7c.2-.2.6-.1.8.1.2.2.1.6-.1.8l-.5.4.9.2c.8.2 1.5.6 2 1.2.7-1.4 1.3-2.8 1.8-4.1.2-1 .5-1.9.7-2.9z"/>
+ <path fill="url(#d)" fill-rule="nonzero" d="M189.9 156.3c-2.8-1.8-6-2.6-9.1-2.6-5.6 0-11.1 2.8-14.3 7.8-5 7.9-2.7 18.3 5.2 23.3 2.8 1.8 6 2.6 9.1 2.6 2.1 0 4.2-.4 6.1-1.1.3-1.5.7-3.1 1.2-4.6-.5 0-1-.1-1.5-.4-1.5-.8-2.1-2.6-1.3-4s2.6-1.9 4.1-1.1c.3.2.5.3.7.5.6-1.3 1.3-2.6 2-3.9-3.2.4-4.2.5-4.7.5h-.6c-1-.1-2.3-.6-2.9-1.8-.5-.8-.7-2.3.5-4.3.5-.7 1.1-1.9 10.6-5.9-1.4-1.9-3-3.7-5.1-5zm-14.1 2.1c1.7 0 3.1 1.3 3.1 2.9 0 1.6-1.4 2.9-3.1 2.9-1.7 0-3.1-1.3-3.1-2.9 0-1.6 1.4-2.9 3.1-2.9zm-8.7 10.8c.8-1.4 2.6-1.9 4.1-1.1 1.5.8 2.1 2.6 1.3 4s-2.6 1.9-4.1 1.1c-1.4-.8-2.1-2.6-1.3-4zm13.4 12.7c-.6 1-1.9 1.5-3.3 1.2l1.7 1.7c.2.2.2.6 0 .8-.1.1-.3.2-.4.2-.1 0-.3 0-.4-.1-3.1-2.9-6.2-6.2-9.2-9.8-.2-.2-.2-.6.1-.8.2-.2.6-.2.8.1 1.2 1.5 2.5 2.9 3.7 4.3 0-.4.1-.8.3-1.1.4-.7 1.1-1.2 2-1.3l-.9-1.1c-.2-.2-.2-.6.1-.8.2-.2.6-.2.8.1l1.6 1.9c.4.1.8.2 1.1.4 1.9.9 2.8 2.9 2 4.3zm8.2-19.6c-.8 1.3-2.6 1.5-4 .7-1.4-.9-1.9-2.6-1.1-3.9.8-1.3 2.6-1.5 4-.7 1.4.9 1.9 2.7 1.1 3.9z"/>
+ <path fill="url(#e)" fill-rule="nonzero" d="M204.7 160.7c-9.4 3.5-17.8 8.2-17.9 8.3-.1.1-.2.1-.3.1-.2 0-.4-.1-.5-.3-.2.3-.3.6-.3.9v.6c0 .1 0 .2.1.2 0 .1.1.1.1.2.4.5 1.2.5 1.2.5H188c.2 0 .4 0 .6-.1.3 0 .6-.1.9-.1h.2c.3 0 .6-.1.9-.1h.2c.4 0 .7-.1 1.1-.2h.1c.9-.1 2-.3 3.1-.5 2.9-4 5-6.2 5.1-6.4.2-.2.6-.2.8 0 .1.1.2.2.2.4 1.1-1.2 2.2-2.3 3.5-3.5z"/>
+ <path fill="url(#f)" fill-rule="nonzero" d="M187.9 167.1c-.1 0-.1.1-.2.1s-.1.1-.2.1c1.1-.6 2.7-1.4 4.8-2.5-1.8.9-3.4 1.7-4.4 2.3z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M213.3 204.7c-.7-.2-1.3-.7-1.7-1.2l-.4 1.3 1.9.5c.3-.1.7-.2 1-.3l-.8-.3z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M188.7 193.1c0 .1-.1.1-.1.1v1.6c0 .4.1.8.2 1.2 0 .2.1.4.1.5l.3 1.2c0 .2.1.3.1.5.1.4.3.8.4 1.2v.1c.8 1.6 2.9 4.5 8.2 5.4.3.1.5.3.4.6-.1.3-.3.5-.5.5h-.1c-2.7-.5-4.6-1.5-6-2.5l.3.9c.2.5.3 1 .5 1.5 1.4.7 2.7 1.2 4.1 1.7 2.4.8 4.8 1.4 7.2 1.9 0-.1-.1-.3-.1-.4 0-.1-.1-.3-.1-.4-.2-.5-.4-1-.5-1.5-.1-.3-.2-.6-.3-.8h.2c0-.6 0-1.1.2-1.7l1.2-4.1c-.7-.2-1.5-.4-2.2-.6-.3-.1-.5-.4-.4-.7.1-.3.4-.5.7-.4.7.2 1.5.4 2.2.6l4.1-14.3c.7-2.4 2.9-4 5.4-4 .5 0 1 .1 1.6.2l15.3 4.4c2-6.2 3.9-13.4 9.5-22.5.5-1.1 1.1-2.1 1.4-2.4.6-.4 12.5-5.9 18-8.5l.1-.1c.1-.2.3-.4.5-.7.3-.5.9-1.3 1.8-2.3.8-1 1.8-2 2.7-2.9l.6-.6c-3.9.8-12 2.6-19.4 4.4.4-.9.7-1.7 1-2.6.1-.2.1-.4.2-.6.5-1.4.9-2.9 1.3-4.3 1-5.6.1-9.3.1-9.4-.1-.3.1-.5.3-.6-.3-2.1-.8-3.8-1.6-5.3-3.1-1-5.4-3.9-5.4-7.4v-.1c-.8-1-1.4-2-2-2.9-.4-.4-.9-.9-1.3-1.4-2.1-2.7-3.1-5.6-3.5-7.3-.2-.4-.3-.7-.5-1.1-.7-.4-1.3-1-1.8-1.6-.8-.6-1.6-1.4-2-2.3-.5-1.3-.7-2.3-.6-3.2l-3.2-.1c-.2 0-.4-.2-.5-.4-.7 0-1.4 0-2.1.1-.4.6-1 1.2-1.7 1.5v
.1c0 .3-.2.6-.5.6h-.6c-1.5 0-2.7-.8-3.2-1.2l-1.4.4c1.1 1.2 2.1 2.8 2.1 4.8 0 4.6-4.6 6.2-4.7 6.2h-.2c-.2 0-.4-.1-.5-.3-.8.2-1.6.3-2.5.1-.2 0-.5-.2-.7-.3h-.2c-.2 0-4.3-.9-6.1-6.6-.1-.3 0-.5 0-.7-.2.1-.4.1-.6.2-.2.1-.3.1-.5.2-.3.1-.5.2-.8.3-.2.1-.4.1-.5.2-.3.1-.5.2-.8.3-.2.1-.4.1-.5.2-.3.1-.5.2-.8.3-.2.1-.4.2-.6.2-.3.1-.5.2-.8.3-.2.1-.4.2-.6.2-.3.1-.5.2-.8.3l-.6.3c-.3.1-.5.2-.8.3l-.6.3c-.3.1-.5.2-.8.3l-.6.3c-.5.2-.9.4-1.4.6-.3.1-.5.2-.8.3-.2.1-.4.2-.7.3-.2.1-.5.2-.7.3-.2.1-.5.2-.7.3-.2.1-.5.2-.7.3-.2.1-.4.2-.7.3-.2.1-.5.2-.7.3l-.6.3c-.2.1-.5.2-.7.4l-.6.3c-.2.1-.5.2-.7.4l-.6.3c-.2.1-.5.3-.7.4l-.6.3c-.2.1-.5.3-.7.4-.2.1-.4.2-.5.3-.3.1-.5.3-.7.4-.2.1-.3.2-.5.3-.3.2-.7.4-1 .6-.1.1-.2.1-.3.2-.3.2-.7.4-1 .6-.1.1-.2.2-.4.2-.2.2-.5.3-.7.5-.1.1-.3.2-.4.3-.2.1-.4.3-.6.4-.1.1-.3.2-.4.3-.2.1-.4.3-.6.4-.1.1-.3.2-.4.3-.2.1-.4.3-.5.4-.1.1-.3.2-.4.3-.2.1-.3.3-.5.4-.1.1-.2.2-.4.3-.2.1-.3.3-.5.4l-.3.3c-.2.1-.3.3-.4.4l-.3.3c-.2.2-.3.3-.4.5-.1.1-.1.2-.2.2-.2.2-.4.5-.6.7-.3.4-.5 1-.7 1.6v.1c.5 0 .9.4 1 .8
0 .1 6.4 15.3 12 18.1 5.1 2.5 24.4 4.5 39.2 3.2 9-1.8 12.1-3.7 19.4-11 2.3-2.3 3.5 6.1-.8 10.1-3.6 3.4-12.9 4.7-23.1 4.7-.8.4-1.6.9-2.4 1.4-.1.1-.3.2-.4.3-.6.3-1.1.7-1.6 1-.2.1-.4.3-.6.4-.8.5-1.6 1.1-2.3 1.6-.3.3-.7.5-1 .8-.4.3-.7.6-1.1.8-.5.4-1.1.9-1.6 1.3-.1 0-.1.1-.2.1-4.6 1.8-10.2 4-14.3 5.9-2.1 1-3.8 1.9-4.8 2.5-.6.4-1.1.7-1.2 1-.1.1-.1.3-.2.4.1.2.3.3.5.3.1 0 .2 0 .3-.1.1-.1 8.5-4.8 17.9-8.3-1.2 1.1-2.4 2.3-3.5 3.5 0 .2 0 .3-.2.4 0 0-2.4 2.4-5.4 6.8-.2.3-.4.6-.6.8-.1.2-.2.4-.3.5-.4.6-.7 1.2-1 1.8-.1.2-.3.5-.4.7-.3.5-.6 1.1-.8 1.6-.1.3-.2.5-.4.8-.2.5-.5 1-.7 1.5-.1.3-.2.6-.3.8-.2.5-.4 1-.5 1.4-.1.3-.2.6-.3.8-.2.5-.3.9-.4 1.4-.1.3-.2.6-.2.8-.1.5-.2.9-.3 1.4 0 .2-.1.4-.1.6v.2c-.1.5-.2.9-.2 1.3 0 .3-.1.5-.1.8-.1.4-.1.9-.1 1.3 0 .2 0 .5-.1.7V191.3c.5 1.2.5 1.5.4 1.8zm7.3-73.4c.5-.8 1.8-2 3.7-2.4 0-.1-.1-.2-.1-.3v-3c0-.7.6-1.3 1.3-1.3.7 0 1.3.6 1.3 1.3v3c0 .1 0 .2-.1.3 1.9.4 3.2 1.6 3.7 2.4.5.8.3 1.8-.5 2.3-.3.2-.6.3-.9.3-.5 0-1.1-.3-1.4-.7-.1-.1-.8-1.1-2.2-1.1-1.4 0-2.1 1.1-2.2 1.1
-.5.8-1.5 1-2.3.5-.6-.6-.8-1.7-.3-2.4zm12 18.1c0 .1-.1.1-.1.2l-.4.3c-.9.8-1.8 1.4-2.6 1.9-.9.5-1.7 1-2.5 1.3-1.6.7-3.1 1.2-4.6 1.5-.4.1-.8.1-1.2.2-2.4.3-4.7.1-6.9-.5h-.1-.1c-2.1-.7-4.2-1.8-6-3.3.2-.1.4-.1.6-.1-.2 0-.4.1-.6.1-.3-.3-.6-.5-.9-.8-1.1-1.1-2.1-2.3-3-3.8-.5-.8-.9-1.6-1.3-2.5-.4-.9-.8-1.9-1.2-3l-.1-.5c-.1-.2 0-.5.3-.5h.2c.5.1 1.1.2 1.6.4.3.1.5.1.8.2.3 1.3.6 2.7.7 2.9.2.3 2.7 1.8 3.1 1.5.2-.2.6-1.8.9-3.2l.6.1c.5.1.9.3 1.4.4-.4 1.6-.8 3.3-.7 3.5.2.3 3.1 1 3.5.8.5-.2 1.7-1.4 2.8-2.7.2.1.4.1.6.2l7.5 2.4 3.8 1.3c.7.3 1.5.5 2.2.8l1.5.6c.1-.1.3.1.2.3zm20.6-15.8c-.3.2-.6.3-.9.3-.5 0-1.1-.3-1.4-.7-.1-.1-.8-1.1-2.2-1.1-1.4 0-2.1 1.1-2.2 1.1-.5.8-1.5 1-2.3.5-.8-.5-1-1.5-.5-2.3.5-.8 1.8-2 3.7-2.4 0-.1-.1-.2-.1-.3v-3c0-.7.6-1.3 1.3-1.3.7 0 1.3.6 1.3 1.3v3c0 .1 0 .2-.1.3 1.9.4 3.2 1.6 3.7 2.4.7.7.4 1.7-.3 2.2zm-37.1 72.8c.1-.3.5-.4.8-.2.3.2.6.4 1 .5.3.1.4.5.2.8-.1.2-.3.3-.5.3-.1 0-.2 0-.3-.1-.3-.2-.7-.4-1-.5-.2-.2-.3-.5-.2-.8z"/>
+ <path fill="url(#g)" fill-rule="nonzero" d="M203.6 209.1c0-.1 0-.1 0 0-.1-.2-.2-.3-.2-.4.1.1.1.2.2.4z"/>
+ <path fill="url(#h)" fill-rule="nonzero" d="M222.3 203.8l-1.9-.6c0 .1 0 .2-.1.3-.4 1.3-1.6 2.2-2.9 2.2-.3 0-.6 0-.9-.1l-2.4-.7c-.3.1-.7.2-1 .3l10 2.9 1.3-4.5c-.4.2-.8.3-1.3.3-.2.1-.5 0-.8-.1z"/>
+ <path fill="#EDEDF0" fill-rule="nonzero" d="M227.1 224.7c0 .4.1.7.1 1 0 .3.1.5.2.6 0 .1.1.1.1.1.1.1.1.1.2.1H228.3s.1 0 .1-.1c.1 0 .1-.1.2-.1l.1-.1c.1 0 .1-.1.2-.1l.1-.1.2-.2.1-.1c.1-.1.2-.2.2-.3l.1-.1c.1-.2.3-.3.4-.5v-.1c.1-.2.2-.3.4-.5 0-.1.1-.2.1-.2.1-.1.2-.3.3-.4.1-.1.1-.2.2-.3.1-.1.1-.2.2-.3-1.4 0-2.9-.1-4.3-.1v.9c.2.2.2.5.2.9z"/>
+ <path fill="url(#i)" fill-rule="nonzero" d="M230 212.6c-.5 1.6-1.6 2.8-3.1 3.5v7.5c0 .4.1.7.1 1.1 0 .4.1.7.1 1 0 .3.1.5.2.6 0 .1.1.1.1.1.1.1.1.1.2.1H228.2s.1 0 .1-.1c.1 0 .1-.1.2-.1l.1-.1c.1 0 .1-.1.2-.1l.1-.1.2-.2.1-.1c.1-.1.2-.2.2-.3l.1-.1c.1-.2.3-.3.4-.5v-.1c.1-.2.2-.3.4-.5 0-.1.1-.2.1-.2.1-.1.2-.3.3-.4.1-.1.1-.2.2-.3.1-.1.1-.2.2-.3 0 0 0-.1.1-.1.1-.1.1-.2.2-.3.1-.2.2-.3.2-.5.1-.1.1-.2.2-.4s.2-.4.2-.5c.1-.1.1-.3.2-.4.1-.2.2-.4.2-.6.1-.1.1-.3.2-.4.1-.2.2-.5.3-.7 0-.1.1-.2.1-.4.1-.4.3-.7.4-1.1.1-.4.3-.9.4-1.4.1-.5.3-1 .4-1.5v-.1c.1-.5.2-1 .3-1.6v-.1c.1-.3.1-.6.2-1-1.3.1-3 .4-4.7.7z"/>
+ <path fill="url(#j)" fill-rule="nonzero" d="M240.1 167.1c-.1.2-.3.3-.5.3h-.2c-.3-.1-.4-.4-.3-.7.4-.9.9-2.1 1.4-3.2-5.6 9-7.5 16.2-9.5 22.5l.9.3c1.4.4 2.6 1.4 3.3 2.7.7 1.3.9 2.8.5 4.3l-4.9 17.1c1.6-.3 3.2-.6 4.7-.9v-.1-.1c.1-.6.2-1.1.2-1.7v-.1c0-.2.1-.5.1-.7 0-.1-.1-.2 0-.3.5-4.5 1.9-23.7 1.9-23.9 0-.3.3-.5.6-.5s.5.3.5.6c0 .1-.7 9.5-1.3 16.7 1.7-.1 3.5-.2 5.3-.5 5.6-.8 10.3-2.8 13.7-4.7-.5-.9-.6-2-.4-3l1.9-7.3c.4-1.4 1.4-2.4 2.6-2.8-.9-1.2-1-2.9-.3-4.3.8-1.6 2-3.1 3.3-4.3-.4.1-.8.3-1.2.4-1.1.3-2.2.6-3.5.7-1-.8-2.2-1.2-3.6-1.3-.9 0-1.8.1-2.7.4-1.4-1.3-3.3-2-5.3-1.8-1.8.1-3.4.9-4.5 2.1-.9.1-1.8.2-2.6.4-.3 1.5-.5 2.7-.5 2.9 0 .3-.1.5-.4.6h-.2c-.2 0-.5-.1-.5-.4-.1-.2-.1-.4.9-5.1.3-1.6.7-3 1.1-4.4.1-.5.3-.9.4-1.3.1-.4.3-.8.4-1.2v-.1c.1-.4.3-.7.4-1.1 0 0 0-.1.1-.1.1-.2.1-.4.2-.5-.4.7-1.3 2.6-2 4.4zm2.2 29.4c3.9-1.5 8-3.4 12-5.7.3-.1.6-.1.8.2.1.3.1.6-.2.8-4.1 2.3-8.2 4.2-12.2 5.7h-.2c-.2 0-.4-.1-.5-.4-.1-.2 0-.5.3-.6z"/>
+ <path fill="url(#k)" fill-rule="nonzero" d="M202.7 206.4c.1.2.2.5.3.8 0-.3-.1-.5-.1-.8h-.2z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M194.4 210.8c.3.6.6 1.3 1 1.9 0 .1.1.1.1.2.3.6.7 1.3 1.1 1.9 0 .1.1.1.1.2l1.2 1.8.1.1c.5.6.9 1.3 1.5 1.9.3.3.5.6.8.9.1.1.1.2.2.2l.6.6c.1.1.2.2.2.3.2.2.3.4.5.5.1.1.2.2.2.3.2.2.3.3.4.5.1.1.2.2.2.3l.5.5.2.2.2.2.4.4.1.1.5.5.2.2.3.3.2.2.3.3c.1.1.1.1.2.1.1.1.2.1.3.2l.1.1c.1.1.2.1.3.2 0 0 .1 0 .1.1.1.1.2.1.3.2h.1c.1 0 .2.1.2.1h.6c.1 0 .2-.1.2-.2 0 0 .1-.1.1-.2v-.1-.3-.1c0-.2 0-.4-.1-.6v-.2c0-.2-.1-.4-.1-.6v-.2c0-.2-.1-.4-.1-.6v-.2-.1c-.1-.3-.1-.6-.2-.9 0-.1 0-.2-.1-.3-.1-.3-.1-.6-.2-.8 0-.1 0-.1-.1-.2-.1-.4-.2-.7-.3-1.1 0-.1-.1-.2-.1-.3-.1-.3-.2-.6-.2-.9 0-.1-.1-.2-.1-.3l-.3-1.2v-.1c-.1-.4-.2-.7-.3-1.1 0-.1-.1-.2-.1-.3-.1-.4-.2-.7-.3-1.1v-.1c-.1-.4-.2-.8-.4-1.2 0-.1 0-.1-.1-.2-.1-.2-.1-.4-.2-.6-2.8-.6-5.7-1.3-8.6-2.2-.8-.2-1.5-.5-2.3-.8.2.6.5 1.1.7 1.7-.1-.2-.1-.2-.1-.1zM196.5 122c.8.5 1.8.3 2.3-.5 0 0 .8-1.1 2.2-1.1 1.4 0 2.1 1 2.2 1.1.3.5.9.7 1.4.7.3 0 .6-.1.9-.3.8-.5 1-1.5.5-2.3-.5-.8-1.8-2-3.7-2.4-.4-.1-.8-.1-1.3-.1-.4 0-.9.1-1.3.1-1.9.4-
3.2 1.6-3.7 2.4-.5.8-.3 1.9.5 2.4zm0-2s.1-.2.3-.4l.3-.3c.7-.7 2-1.7 3.9-1.7 2.9 0 4.4 2.2 4.5 2.3.3.5.2 1.2-.3 1.5-.2.1-.4.2-.6.2-.4 0-.7-.2-.9-.5 0-.1-.9-1.3-2.6-1.3-1.1 0-1.8.5-2.2.9l-.4.4c-.3.5-1 .7-1.5.3-.7-.2-.9-.9-.5-1.4zM225.4 117.2c-.4-.1-.8-.1-1.3-.1-.4 0-.9.1-1.3.1-1.9.4-3.2 1.6-3.7 2.4-.5.8-.3 1.8.5 2.3.8.5 1.8.3 2.3-.5 0 0 .8-1.1 2.2-1.1 1.4 0 2.1 1 2.2 1.1.3.5.9.7 1.4.7.3 0 .6-.1.9-.3.8-.5 1-1.5.5-2.3-.5-.6-1.8-1.9-3.7-2.3zm2.9 4.3c-.2.1-.4.2-.6.2-.4 0-.7-.2-.9-.5l-.2-.2-.2-.2c-.4-.4-1.2-.9-2.3-.9-1.7 0-2.6 1.3-2.6 1.3-.3.5-1 .7-1.5.3-.5-.3-.7-1-.3-1.5.1-.1 1.5-2.3 4.5-2.3 1.4 0 2.5.5 3.2 1.1.1.1.2.2.3.2l.3.3c.4.4.6.7.7.8.2.4.1 1.1-.4 1.4z"/>
+ <path fill="url(#l)" fill-rule="nonzero" d="M241.8 136.3c-7.4 7.4-10.4 9.3-19.4 11-14.7 1.3-34.1-.7-39.2-3.2-5.6-2.7-12-17.9-12-18.1-.1-.5-.5-.8-1-.8-.4 2.5.9 6.1 2.9 9.7.3.6.7 1.2 1.1 1.8.6.9 1.2 1.8 1.8 2.6.4.6.8 1.1 1.2 1.6.4.5.8 1 1.3 1.5.2.2.4.5.6.7.4.4.8.8 1.3 1.2.2.2.4.3.6.5.8.6 1.6 1.1 2.3 1.4 6.8 2.5 16.4 4.1 26.3 4.1 1.7 0 3.4-.1 5.1-.2h.2c.1 0 12.1-1.3 17.8-3.6.3-.1.6 0 .7.3.1.3 0 .6-.3.7-3.8 1.5-10.1 2.6-14.2 3.2-.3.2-.6.3-1 .5 10.2 0 19.5-1.3 23.1-4.7 4.3-4 3.1-12.5.8-10.2z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M250.4 158.2c-3.6 1.7-6.5 3.1-7.6 3.6 2.1-1 4.8-2.2 7.6-3.6z"/>
+ <path fill="url(#m)" fill-rule="nonzero" d="M224.6 99.7c.7 0 1.4-.1 2.1-.1v-.2c0-.3.3-.6.6-.5l3.3.1c.3-1.1.7-1.7.8-1.7.2-.2.5-.3.8-.1.2.2.3.5.1.8-.1.1-1.4 1.9-.1 4.9.6 1.5 2.9 2.8 3.8 3.2.2.1.3.3.3.5 0 0 .4 4.6 3.5 8.4 3.4 4.2 8.4 5.7 8.5 5.7.2.1.4.2.4.4 0 0 .6 3.3 1.9 4.6.7.7 2.6 2.6 7.4 1.7.3-.1.6.1.6.4.1.3-.1.6-.4.6-1 .2-1.9.3-2.7.3-3.1 0-4.7-1.2-5.8-2.2-1.3-1.3-1.9-3.9-2.1-4.8-1.1-.4-4.5-1.7-7.4-4.6.6 1 1.2 1.9 2 2.9v.1c0 3.5 2.3 6.4 5.4 7.4.7 1.5 1.3 3.2 1.6 5.3h.1c.3-.1.6.1.7.4 0 .1.6 2.4.4 5.9h1.4c.3-1.1.6-2.3.9-3.5.2.1.5.1.8.2 1.6.2 3.1-.9 3.5-2.5h.2c.8.3 1.7.6 2.6.7 4.1.4 7.7-2.1 9-5.8 2.8-.2 5.1-2.2 5.5-5 .9-1.1 1.8-2.2 2.6-3.3 3.3-.5 5.8-3.4 5.7-6.9 0-.6-.1-1.2-.3-1.8 1.6-1.3 2.6-3.3 2.5-5.5 0-1.8-.8-3.5-2-4.7 0-1.5-.1-3-.3-4.4 1.3-1 2.2-2.5 2.5-4.2 0-.2.1-.5.1-.7V91v-.1c0-.3 0-.6-.1-.9v-.2c0-.3-.1-.5-.2-.7V89l-.3-.9s0-.1-.1-.1c-.1-.2-.2-.5-.4-.7 0 0 0-.1-.1-.1-.3-.5-.7-1-1.2-1.4-.5-.4-1-.8-1.6-1.1-1-.5-2-.8-3.2-.8-2.1-3.4-4.7-6.4-7.8-8.9 0-.4-.1-.9-.2-1.3s-.2-.8-.4-1
.1v-.1c-.1-.4-.3-.7-.5-1v-.1c-.2-.3-.4-.6-.7-.9-.3-.3-.5-.6-.8-.8l-.9-.6s-.1 0-.1-.1c-.3-.2-.6-.3-1-.4-.1 0-.1 0-.2-.1-.3-.1-.7-.2-1-.3h-.2c-.4-.1-.8-.1-1.2-.1h-1c-.2 0-.5.1-.7.2-.1 0-.2 0-.3.1-.6.2-1.2.5-1.8.8-1.6-.5-3.2-.9-4.9-1.1-.2-.2-.4-.4-.6-.5l-.2-.2c-.1-.1-.3-.2-.4-.3-.1-.1-.2-.1-.3-.2-.1-.1-.3-.2-.4-.2-.1 0-.2-.1-.3-.1-.1-.1-.3-.1-.4-.2-.1 0-.2-.1-.3-.1-.2-.1-.3-.1-.5-.1-.1 0-.2-.1-.3-.1-.2 0-.4-.1-.5-.1h-1c-.3 0-.6 0-.9.1-.9.1-1.7.4-2.5.8s-1.4.9-2 1.5c-.7.1-1.4.3-2.1.4-1.4.3-2.7.7-4 1.2-.6.2-1.3.5-1.9.8-.4-.1-.9-.2-1.3-.3-.3 0-.5-.1-.8-.1-.3 0-.7 0-1 .1h-.3c-2.5.4-4.6 2.2-5.5 4.5-.1.3-.2.7-.3 1-.1.3-.1.7-.2 1-.4.3-.7.7-1 1-.7.1-1.4.4-2.1.7-.6.3-1.2.8-1.7 1.3-.3.3-.6.6-.8.9-.5.7-.8 1.4-1.1 2.2-.2.6-.2 1.2-.3 1.8v.2c0 .3 0 .7.1 1-.2.3-.3.6-.5 1-.2.5-.4.9-.6 1.4-.2.4-.4.9-.5 1.3-.2.1-.3.1-.5.2-.1.1-.3.2-.4.3-.4.3-.7.7-.9 1.2-.2.5-.4 1-.4 1.5 0 .8.3 1.6.7 2.1-.1.4-.1.9-.2 1.3s-.1.9-.2 1.3c-.1.7-.1 1.4-.1 2.2.2.2.5.3.7.5l2.3-.7c.2-.1.4 0 .6.1 0 0 1.3 1.3 3.1 1.1.3 0 .5.1.6.3.6-
.3 1.2-.8 1.6-1.5zm37.2 25.8c.2-.2.6-.3.8-.1.1.1 2.3 1.9 4.9-.2 2.1-1.8 2.1-3.7 1.9-4.7-1.6 0-2.9-.6-3.7-1.2-.5-.4-.6-1-.3-1.6.4-.5 1-.6 1.6-.3.3.2 3.2 2.1 6.1-.9 3.4-3.4 1.7-6.8 1.7-6.8-.3-.5-.1-1.2.5-1.5.5-.3 1.2-.1 1.5.5.9 1.7 1.6 5.8-2.1 9.4-1.4 1.4-2.9 2-4.2 2.2.2 1.2.1 3.5-2.3 5.6-1.2 1-2.3 1.3-3.3 1.3-1.8 0-3.1-1.1-3.1-1.1-.2 0-.2-.4 0-.6zm-26-50.3c2.4-.3 3.9.7 4.7 1.7.1-.1.3-.1.4-.2 2.1-.9 3.9-.9 5.3-.4.6-1.2 1.9-2.7 4.7-3.1 4.2-.6 5.5 3.1 5.5 3.2.1.3-.1.6-.4.7-.3.1-.6-.1-.7-.4 0-.1-1-2.9-4.3-2.4-2.3.3-3.3 1.5-3.8 2.4 1.2.6 2 1.4 2.5 2.1.3.5.2 1.2-.3 1.5-.5.3-1.2.2-1.5-.3-.2-.3-2.3-3.1-6.1-1.4-4.4 2-4 5.8-4 5.8.1.6-.4 1.2-1 1.2h-.1c-.6 0-1-.4-1.1-1-.2-1.7.4-5.1 3.9-7.3-.6-.7-1.7-1.4-3.5-1.2-3.7.5-4.2 3.4-4.2 3.5 0 .3-.3.5-.5.5h-.1c-.3-.1-.5-.3-.5-.6 0 0 .6-3.7 5.1-4.3z"/>
+ <path fill="url(#n)" fill-rule="nonzero" d="M233 105.8c.5.6 1.1 1.2 1.8 1.6.1.3.3.7.5 1.1-.1-.6-.2-1.1-.3-1.4-.4-.3-1.2-.7-2-1.3z"/>
+ <path fill="url(#o)" fill-rule="nonzero" d="M202.5 90.4c1.3 1.2 3.4.6 4.4-.9v-.1c0-.1.3-5.4-2.2-7.4 0 0-.1 0-.1.1l-.2.2s-.1.1-.1.2c-.1.1-.1.2-.2.3 0 .1-.1.1-.1.2-.1.1-.1.2-.2.4 0 .1-.1.1-.1.2-.1.2-.2.3-.3.5 0 .1-.1.1-.1.2-.1.2-.2.5-.3.7 0 .1 0 .1-.1.2-.1.2-.2.4-.2.6 0 .1-.1.2-.1.3-.1.2-.1.3-.2.5 0 .1-.1.2-.1.3 0 .2-.1.3-.1.5 0 .1 0 .2-.1.3 0 .1-.1.3-.1.4V89.7c0 .1 0 .2.1.3v.2c0 .1.1.3.2.3.1-.2.1-.2.2-.1z"/>
+ <path fill="url(#p)" fill-rule="nonzero" d="M209.1 94.2V94c-.1-.5-.3-1.4-.7-2.6-.1-.3-.2-.5-.3-.7-.6 2.1-3.7 3.3-5.8 1.5 0 .4-.1.7-.1 1.1 0 .6 0 1.1.1 1.6s.2 1 .4 1.3c.1.1.1.2.2.2.1.1.3.2.4.3.1.1.3.1.4.2 2.1.7 4.6-.6 5.4-2.7z"/>
+ <path fill="url(#q)" fill-rule="nonzero" d="M204 98c0 .3.1.5.1.8-.1-.7-.2-1.3-.3-2 .1.4.1.8.2 1.2z"/>
+ <path fill="url(#r)" fill-rule="nonzero" d="M210.6 95.5c-.4 2.7-3.6 4.7-6.5 3.5v.2c.1.4.2.8.2 1.1.4 1.6 1 2.9 1.6 3.4 2.8.5 6.9-1.5 7.1-4.5v-.5c-.2-.6-.5-1.4-1.1-2.1-.4-.4-.9-.8-1.3-1.1z"/>
+ <path fill="url(#s)" fill-rule="nonzero" d="M214.2 112c-.1 0-.1-.1 0 0-.2-.4 0-.7.3-.8.2-.1 3.9-1.4 3.9-5.2 0-2.6-2.1-4.5-3.5-5.5.2 3.4-3.6 6.1-7 6 1.5 2.5 3.4 3 3.5 3 .6.1 1 .7.9 1.3-.1.5-.6.9-1.1.9.2.2.5.3.7.3.6.3 1.5.2 2.3 0z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M240.4 163.4c-.5 1.1-1 2.3-1.4 3.2-.1.3 0 .6.3.7h.2c.2 0 .4-.1.5-.3.7-1.7 1.6-3.7 2.1-4.6.1-.1.1-.3.2-.4.2-.1.3-.2.5-.2 1-.5 4-1.9 7.6-3.6 3-1.4 6.1-3 9-4.5 0-.3.1-.6.3-.9 0 0 0-.1.1-.2-5.5 2.5-17.4 8.1-18 8.5-.3.2-.8 1.2-1.4 2.3z"/>
+ <path fill="url(#t)" fill-rule="nonzero" d="M275.8 140c-.7.2-1.3.6-2 .9v.4c.4 1.9 1.8 3.4 3.5 4.2.5-.6.9-1.1 1.3-1.7.3-.5.6-.9.8-1.3-.8-.2-1.5-.6-2-1.1-.4-.5-.7-1-.9-1.5-.2-.1-.4 0-.7.1z"/>
+ <path fill="url(#u)" fill-rule="nonzero" d="M273.3 149.1c.1 0 .1-.1.2-.1l.6-.5c.2-.1.4-.3.6-.4.1-.1.2-.2.3-.2-.3-.2-.7-.4-1-.7-1.4-1.1-2.5-2.7-3-4.4-.1.1-.2.1-.3.2-.2.1-.4.3-.6.4l-.6.5c-.2.2-.4.3-.6.5-.6.5-1.2 1-1.7 1.5-.6.5-1.1 1-1.6 1.5-.9.9-1.8 1.9-2.6 2.9s-1.4 1.8-1.7 2.2c-.2.3-.3.5-.4.7l-.1.2c-.2.3-.2.7-.1 1 .1.4.3.7.6.8.3.2.7.2 1 .1 0 0 .1 0 .3-.1.2-.1.4-.1.7-.3.6-.2 1.4-.6 2.6-1.1h.1c-1.2-2.3-.6-5.1-.6-5.3.1-.6.7-1 1.3-.8.4.1.7.4.8.8 1.8-.4 4.1 0 5.8.6z"/>
+ <path fill="url(#v)" fill-rule="nonzero" d="M281.4 141.3c.9-.2 2.7-.9 4.2-3.5-1-.8-2.6.8-3.3-.6-.6-1.1.1-1.5-.4-2.1h-.6c-1.6 0-2.9.7-3.5 1.9-.6 1.1-.3 2.5.6 3.5.6.8 1.8 1.1 3 .8z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M267.5 148.5c.1.2.1.4 0 .6 0 0-.5 2.5.5 4.1.5.8 1.3 1.2 2.4 1.4 1.3.2 2.3 0 3.1-.6 1.2-.9 1.4-2.7 1.4-2.7 0-.4.3-.7.6-.9-.3-.3-.7-.5-1.1-.8-.3-.2-.7-.4-1.2-.5-1.6-.6-3.9-1-5.7-.6z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M148 139.7c-.3.1-.4.5-.3.7 2 4.3 4 8.2 6 12 .1.2.3.3.5.3.1 0 .2 0 .3-.1.3-.1.4-.5.2-.8-2-3.7-4-7.6-6-11.9-.1-.2-.4-.4-.7-.2zM160.4 163.3c.1 0 .2 0 .3-.1.3-.2.3-.5.2-.8-.6-.9-1.2-1.9-1.8-2.8-.1-.1-.2-.2-.4-.3.6 1.2 1 2.4 1.2 3.7.2.2.4.3.5.3zM143.3 129.9h-.2v.4l.4 1c.1.2.3.3.5.3h.2c.3-.1.4-.5.3-.7l-.4-1h-.8zM283.4 171.4c1.5-1.3 3.1-2.7 4.6-4.1.2-.2.2-.6 0-.8-.2-.2-.6-.2-.8 0-1.7 1.5-3.3 3-5 4.4.3.2.6.4.9.7.2-.1.2-.2.3-.2zM185 190.5c-.2.2-.1.6.1.8.4.3.8.5 1.2.8.5.4 1.1.8 1.6 1.1.1.1.2.1.3.1.1 0 .2-.1.3-.1l.1-.1c.2-.3.1-.6-.1-.8-.7-.5-1.5-1-2.2-1.5-.2-.1-.4-.3-.6-.4-.2-.2-.5-.1-.7.1zM242.5 197.6h.2c4-1.5 8-3.5 12.2-5.7.3-.1.4-.5.2-.8-.1-.3-.5-.4-.8-.2-4.1 2.2-8.1 4.1-12 5.7-.3.1-.4.4-.3.7.1.2.3.3.5.3zM270 181.4c-.2-.2-.5-.3-.8-.1l-.9.7c-.1.1-.2.2-.2.3l1.2.3.5-.4c.4-.2.4-.6.2-.8zM169.9 175c-.2-.2-.5-.3-.8-.1-.2.2-.3.5-.1.8 3 3.6 6 7 9.2 9.8.1.1.2.1.4.1.1 0 .3-.1.4-.2.2-.2.2-.6 0-.8-.6-.5-1.2-1.1-1.7-1.7-1.2-1.2-2.4-2.4-3.6-3.7-1.3-1.2-2.6-2
.7-3.8-4.2zM164 167l-.6-.9c-.2-.3-.5-.3-.8-.2-.3.2-.3.5-.2.8l.6.9c.1.2.3.2.5.2.1 0 .2 0 .3-.1.3-.1.3-.4.2-.7zM191.8 195.5c.3.2.7.4 1 .5.1 0 .2.1.3.1.2 0 .4-.1.5-.3.1-.3 0-.6-.2-.8-.3-.2-.6-.3-1-.5-.3-.1-.6-.1-.8.2-.2.4-.1.7.2.8zM202.4 198.9c-.3-.1-.6.1-.7.4-.1.3.1.6.4.7.7.2 1.5.4 2.2.6l.3-1.1c-.7-.1-1.5-.3-2.2-.6zM169.1 184.2c-1.7-2.3-3.4-4.7-5-7.1-1.6-2.4-3.2-4.9-4.7-7.4-.3.8-.7 1.5-1.2 2.3 4.5 7.3 9.2 13.9 14 19.6l2.3-.7c-1.9-2.1-3.7-4.3-5.4-6.7zM133.2 123l2.1-1.3-2.1 1.3zM271.7 191c.1 0 .2.1.3.1.6.1 1.2.2 1.8.2.3 0 .7 0 1-.1 3.4-2.9 5.2-5 5.3-5 0 0 0-.1.1-.1l-2.4-.6c-1 1-3.1 3-6.1 5.5zM193.6 208.9c.8.3 1.5.6 2.3.8 2.9.9 5.8 1.6 8.6 2.2.8.2 1.6.3 2.5.4 1.6.3 3.2.5 4.8.6l-4.8-1.4c-1.2-.3-2.2-1.1-2.9-2.1-.1 0-.2 0-.3-.1-2.4-.5-4.7-1.1-7.2-1.9-1.4-.4-2.8-1-4.1-1.7-1-.5-1.9-1-2.9-1.6-1.2-.7-2.4-1.6-3.6-2.5-.3-.2-.6-.4-.9-.7l.6 1.9c.1.3.1.5.1.8.2.2.3.5.4.7v.1c.5.4 1.1.7 1.6 1.1 1 .6 1.9 1.2 2.9 1.7.9.9 1.9 1.3 2.9 1.7zM266.3 197.8c-.7-.4-1.3-.8-2-1.3-1.9 1.3-4 2.6-6.2 3.9-5 2.9-10.9 5.
6-17.4 7.6h-.1c-.9.3-1.9.6-2.8.8-.8.2-1.6.4-2.3.6-1.5.4-3.1.7-4.7.9l-.7 2.3c1.7-.3 3.4-.5 5-.9l2.4-.6c1-.2 1.9-.5 2.9-.8 6.3-1.8 12-4.3 17-7 2.8-1.5 5.4-3.1 7.8-4.7.3-.2.7-.5 1.1-.8z"/>
+ <path fill="#FFFEFE" fill-rule="nonzero" d="M235.2 188.8c-.7-1.3-1.9-2.3-3.3-2.7l-.9-.3-15.3-4.4c-.5-.1-1-.2-1.6-.2-2.5 0-4.7 1.7-5.4 4l-4.1 14.3-.3 1.1-1.2 4.1c-.2.6-.2 1.1-.2 1.7 0 .3 0 .5.1.8.1.5.2 1 .5 1.5.1.1.1.2.1.3 0 0 0 .1.1.1.1.2.2.4.4.5.7 1 1.7 1.7 2.9 2.1l4.8 1.4 3.8 1.1 7 2 .7.2c.5.1 1 .2 1.6.2.8 0 1.5-.2 2.2-.5 1.5-.7 2.6-1.9 3.1-3.5l.7-2.3 4.9-17.1c.3-1.5.1-3.1-.6-4.4zm-1.7 3.7l-5.6 19.4c-.4 1.5-1.8 2.4-3.2 2.4-.3 0-.6 0-.9-.1l-16.2-4.7c-1.8-.5-2.8-2.4-2.3-4.2l5.6-19.4c.4-1.5 1.8-2.4 3.2-2.4.3 0 .6 0 .9.1l16.2 4.7c1.8.5 2.8 2.4 2.3 4.2z"/>
+ <path fill="#FFFEFE" fill-rule="nonzero" d="M228.7 191.1l-12.9-3.7c-.2 0-.3-.1-.5-.1-.7 0-1.4.5-1.6 1.2l-4.7 16.2c-.3.9.3 1.8 1.2 2.1l12.9 3.7c.2 0 .3.1.5.1.7 0 1.4-.5 1.6-1.2l4.7-16.2c.2-.9-.4-1.9-1.2-2.1zm-14.4 7.2c.1-.4.4-.6.8-.6h.2l8.1 2.3c.4.1.7.6.6 1-.1.4-.4.6-.8.6h-.2l-8.1-2.3c-.5-.1-.7-.5-.6-1zm-.9 3.2c.1-.4.4-.6.8-.6h.2l3.2.9c.4.1.7.6.6 1-.1.4-.4.6-.8.6h-.2l-3.2-.9c-.5 0-.8-.5-.6-1zm9.7 6.7l-10-2.9-1.9-.5.4-1.3c.4.6 1 1 1.7 1.2l.9.2 2.4.7c.3.1.6.1.9.1 1.4 0 2.6-.9 2.9-2.2 0-.1.1-.2.1-.3l1.9.6c.3.1.6.1.9.1.4 0 .9-.1 1.3-.3l-1.5 4.6zm1.8-10.3c-.1.4-.4.6-.8.6h-.2l-8.1-2.3c-.4-.1-.7-.6-.6-1 .1-.4.4-.6.8-.6h.2l8.1 2.3c.5.1.8.5.6 1zm1-3.3c-.1.4-.4.6-.8.6h-.2l-8.1-2.3c-.4-.1-.7-.6-.6-1 .1-.4.4-.6.8-.6h.2l8.1 2.3c.4.1.7.6.6 1zM275 168.4c-.4 0-.7-.1-1.1-.1-1.7 0-3.4.3-5.1.9-.7.3-1.4.5-2.1.9-1.1.6-2.1 1.3-3.1 2.2-1.3 1.2-2.5 2.7-3.3 4.3-.7 1.4-.6 3.1.3 4.3-1.3.4-2.3 1.5-2.6 2.8l-1.9 7.3c-.3 1-.1 2.1.4 3 0 .1 0 .1.1.2.2.3.4.5.6.8.5.5 1.2.9 1.9 1.1.3.1.7.1 1 .1 1.1 0 2.1-.4 2.9-1.2
.5.5.9.9 1.5 1.3.6.5 1.3.9 2 1.3l1.2.6c1.5.7 3.1 1.1 4.7 1.3.6.1 1.1.1 1.7.1 2.5 0 5-.6 7.2-1.8 2.8-1.5 5-3.7 6.4-6.5.5-1 .6-2.1.3-3.1 0-.1-.1-.2-.1-.3-.1-.3-.3-.6-.4-.8.5-.2.9-.5 1.3-.8.6-.5 1.1-1.2 1.3-2l1.9-7.3c.3-1.1.1-2.2-.4-3.1-.5-.9-1.4-1.6-2.4-1.9h-.1c-.3-.1-.7-.1-1-.1-1.1 0-2.1.4-2.9 1.2-.5-.6-1.1-1-1.7-1.5-.3-.2-.6-.5-.9-.7-.7-.4-1.4-.8-2.1-1.1-.9-.4-1.9-.7-2.9-1-1.1-.2-1.8-.3-2.6-.4zm10.6 22.1c-1.2 2.4-3.1 4.3-5.5 5.6-2 1-4.1 1.5-6.1 1.5-4.7 0-9.2-2.5-11.5-6.9l-.5 2c-.2.9-1 1.4-1.8 1.4-.2 0-.3 0-.5-.1-1-.3-1.6-1.3-1.4-2.3l1.9-7.3c.2-.9 1-1.4 1.8-1.4.2 0 .3 0 .5.1l7.3 1.9c1 .3 1.6 1.3 1.4 2.3-.2.9-1 1.4-1.8 1.4-.2 0-.3 0-.5-.1l-3.7-1c1.1 2.8 3.5 4.9 6.4 5.6.8.2 1.5.3 2.3.3 3.4 0 6.6-1.8 8.3-4.9.4-.6 1-.9 1.6-.9.3 0 .6.1.9.2h.1c.9.5 1.2 1.6.8 2.6zm-10.6-7c.6 1 1.4 1.6 2.5 1.9l.3.1 2.4.6 1 .3c-.4.3-.7.7-1 1.1v.1c-1.1 2-3.1 3.4-5.3 3.7-.3 0-.7.1-1 .1-.6 0-1.2-.1-1.8-.2-.1 0-.2-.1-.3-.1l-.9-.3c1.2-.5 2.2-1.5 2.5-2.8.4-1.4 0-2.8-1-3.8-.5-.6-1.2-1-2-1.2l-.9-.2-1.2-.3-1.6-.4c.5-.
4.8-.8 1.1-1.4 1.3-2.2 3.7-3.6 6.3-3.6.3 0 .6 0 .9.1.3 0 .6.1.9.2.4.1.8.3 1.2.4h-.1c-1 .4-1.9 1.3-2.3 2.4 0 .1-.1.2-.1.4-.3.8-.2 1.9.4 2.9zm10.4-6l.5-2c.2-.9 1-1.4 1.8-1.4.2 0 .3 0 .5.1 1 .3 1.6 1.3 1.4 2.3l-1.9 7.3c-.2.9-1 1.4-1.8 1.4-.2 0-.3 0-.5-.1l-7.3-1.9c-1-.3-1.6-1.3-1.4-2.3.2-.9 1-1.4 1.8-1.4.2 0 .3 0 .5.1l3.7 1c-1.1-2.8-3.5-4.9-6.4-5.6-.8-.2-1.6-.3-2.4-.3-3.3 0-6.5 1.8-8.2 4.8-.3.7-1 1.1-1.7 1.1-.2 0-.3 0-.5-.1l-.4-.1h-.1c-.9-.5-1.3-1.6-.8-2.5 1.2-2.4 3.1-4.3 5.5-5.6 2-1 4.1-1.5 6.1-1.5 4.8-.2 9.3 2.3 11.6 6.7zM160.2 164.9c0-.6-.1-1.3-.2-1.9-.2-1.3-.6-2.6-1.2-3.7-1.4-2.7-3.7-4.8-6.7-6-.7-.3-1.5-.5-2.3-.6-.7-.1-1.4-.2-2.1-.2h-.4c-1 0-2 .2-3 .4 0-.1-.1-.3-.1-.4-.3-.7-.9-1.2-1.6-1.5-.3-.1-.7-.2-1-.2-.6 0-1.2.2-1.7.5s-.8.8-1 1.3l-1.2 3.2-1.1 2.9c-.4 1.1-.1 2.3.7 3.1-1.3.5-2.2 1.8-2.2 3.3 0 1.9.5 3.7 1.3 5.3.3.7.7 1.3 1.1 1.9 2.3 3.2 6 5.2 10.2 5.2h.1c3.4 0 6.5-1.4 8.8-3.8.6-.6 1.1-1.2 1.6-1.9s.8-1.5 1.2-2.3c.5-1.3.8-2.9.8-4.6zm-12.5 10.5h-.1c-3.6 0-6.8-1.8-8.6-4.6-.6-.9-1.1-1.9
-1.3-3-.2-.8-.4-1.7-.4-2.6 0-.4.1-.7.4-.9.2-.2.6-.4.9-.4.7 0 1.3.6 1.3 1.3 0 2.2 1 4.4 2.7 5.9 1.5 1.3 3.3 1.9 5.1 1.9 2.2 0 4.3-.9 5.8-2.7 2.8-3.2 2.5-8.1-.7-10.9-1.5-1.3-3.3-1.9-5.1-1.9-2.2 0-4.3.9-5.8 2.7l3.7 1.4c.3.1.5.5.4.8-.1.3-.3.4-.6.4h-.2l-5.2-2-.8-.3c-.3-.1-.5-.5-.4-.8l1.2-3.2 1.1-2.8c.1-.3.3-.4.6-.4h.2c.3.1.5.5.4.8l-1.2 3.3c1.9-1.7 4.3-2.5 6.8-2.5 1.2 0 2.4.2 3.6.6 4 1.5 6.6 5.3 6.6 9.5-.1 5.7-4.7 10.3-10.4 10.4zm-5.8-11.5l1.9.7-.2.1h-.1c-.6.3-1 .7-1.3 1.2 0-.2-.1-.5-.1-.8 0-.3 0-.8-.2-1.2zm5.6 1.6l1.7-4.6c.1-.3.3-.4.6-.4h.2c.3.1.5.5.4.8l-1.8 4.8c0 .2-.1.3-.3.4L145 168l-.1-.2-.8-.3c-.1-.3 0-.7.3-.8l3.1-1.2zm-.6-5.7h.4c0 .1-.1.2-.1.3-.1-.2-.2-.3-.3-.3zm3.9 7l1.6-4.4c.4.7.7 1.5.7 2.4.1 1.5-.4 2.9-1.3 4-1 1.2-2.6 1.9-4.2 1.9-.8 0-1.5-.2-2.2-.5.2 0 .3-.1.5-.2l3.3-1.5c.1 0 .2-.1.2-.1.7-.3 1.2-.9 1.4-1.6zM185.7 204c0-.3 0-.5-.1-.8l-.6-1.9-.3-1.1c-.1-.3-.2-.5-.4-.7 0-.3 0-.5-.1-.8l-.9-3.1c-.1-.3-.2-.5-.4-.7 0-.3 0-.5-.1-.8-.7-2.3-2.8-3.9-5.2-3.9-.5 0-1.1.1-1.6.2-.3.1-.5.2-.7.4h-
.2c-.2 0-.4 0-.6.1h-.2l-2.3.7-.6.2c-.3.1-.5.2-.7.4h-.2c-.2 0-.4 0-.6.1l-3.1.9c-.3.1-.5.2-.7.4h-.2c-.2 0-.4 0-.6.1l-3.1.9c-.3.1-.5.2-.7.4h-.2c-.2 0-.4 0-.6.1-2.9.9-4.5 3.9-3.6 6.8.1.3.2.5.4.7 0 .3 0 .5.1.8l.1.2c-.7.7-1.2 1.5-1.5 2.5-.5 1.6-.4 3.3.3 4.8.7 1.4 1.8 2.4 3.2 3-.3.5-.6 1.1-.8 1.8-.9 3.3 1.1 6.7 4.5 7.6.5.1 1 .2 1.6.2 2.8 0 5.3-1.9 6-4.7.3-1 .3-2.1 0-3.1l.6-.8c.1.1.2.1.3.2l5.7 2.1h.1c.6.2 1.1.3 1.7.3 2.3 0 4.4-1.5 5.2-3.7v-.1c.3-1-.1-2-.9-2.5 2.1-1.2 3.2-3.8 2.5-6.2v-.1c-.2-.5-.3-.7-.5-.9zm-2.2-.2l-3.1.9-.9-3.1 3.1-.9.9 3.1zm-4 5.7l-3.1-1.1 2-2.7c.1.1.2.3.2.4 0 .3 0 .5.1.8l.8 2.6zm2.6-10.3l-3.1.9-.9-3.1 3.1-.9.9 3.1zm-4.4-6.8c1.4 0 2.6.9 3.1 2.3l-3.1.9-.9-3.1c.2-.1.5-.1.9-.1zm-2.5.6l.9 3.1-3.1.9-.9-3.1 3.1-.9zm-3 6.5c.3-.1.5-.2.7-.4h.2c.2 0 .4 0 .6-.1l2.5-.7.1.3c-1.5.1-2.8.9-3.7 2l-3.7 5-1-.4c-.5-1.2-1.4-2.2-2.5-2.9l-.2-.8 2.5-.7c.3-.1.5-.2.7-.4h.2c.2 0 .4 0 .6-.1l3-.8zm-1.6-5.2l.9 3.1-3.1.9-.9-3.1 3.1-.9zm-4.6 1.4l.9 3.1-3.1.9-.9-3.1 3.1-.9zm-4.6 1.4l.9 3.1-3.1.9c-.4-1.7.5
-3.5 2.2-4zm7.1 17.9c.1.2.2.5.2.8.2.7.2 1.5.1 2.2-.5 1.8-2.1 3-3.9 3-.3 0-.7 0-1-.1-2.1-.6-3.4-2.7-2.9-4.9.5-1.8 2.1-3 3.9-3 .3 0 .7 0 1 .1l1.7-2.2-2.3-.8c-.4.6-.9 1-1.5 1.4-.6.3-1.2.4-1.8.4-1.5 0-2.9-.8-3.6-2.2-1-2-.2-4.4 1.8-5.4l-.5-1.7 3.1-.9.7 2.3c1.2.4 2.1 1.4 2.5 2.6l.1.5 3.6 1.3 4.6-6.2c.6-.8 1.6-1.2 2.5-1.2.7 0 1.4.2 2 .7L168.5 215zm13.9-2.1c-.4 1.3-1.7 2.2-3 2.2.1.1.1.3 0 .4-.1.2-.3.4-.5.4h-.2l-3.8-1.3c-.3-.1-.4-.4-.4-.7 0-.1.1-.2.2-.3l-2.1-.8 2-2.6 7.8 2.7zm-.6-3.6l-.9-3.1 3.1-.9c.5 1.7-.5 3.5-2.2 4z"/>
+ <path fill="#FFFEFE" fill-rule="nonzero" d="M166.9 216.4c-.3-.9-1.1-1.5-2-1.5-.2 0-.4 0-.6.1-1.1.3-1.7 1.5-1.4 2.6.3.9 1.1 1.5 2 1.5.2 0 .4 0 .6-.1h.2c1-.3 1.6-1.4 1.3-2.4-.1-.1-.1-.2-.1-.2zM163.9 207.1c-.3-.8-1.1-1.3-1.9-1.3-.3 0-.5 0-.8.1-1.1.4-1.6 1.6-1.2 2.7.3.8 1.1 1.3 1.9 1.3.3 0 .5 0 .8-.1.1 0 .1 0 .2-.1 1-.4 1.5-1.5 1.1-2.5l-.1-.1zM136.1 109.9c-.3.6-.5 1.2-.6 1.8 0 .1-.1.2-.1.4-.1.7-.2 1.3-.2 2l-.4.2-.6.4-.9.6-.2.1-.4.3-2 1.2-2.7 1.7-2.3 1.4c-.3.1-.5.3-.7.5-1.8 1.4-2.5 3.9-1.5 6 .8 1.8 2.6 3 4.6 3h.2c.7 0 1.3-.2 1.9-.4.3-.2.7-.3 1-.6l.4-.2 1.6-1 1.1-.7.5-.3 1.9-1.2.9-.6 2.2-1.4.6-.4c.6.3 1.3.6 2 .7h.1c.7.2 1.4.2 2.1.2 4.5 0 8.4-3.1 9.4-7.5.3-1.4.3-2.9 0-4.4-.3-1.1-1-2-2.1-2.4h-.1c0-1.1-.5-2.1-1.3-2.8-1.1-.9-2.4-1.5-3.8-1.8h-.1c-.6-.1-1.3-.2-2-.2-1.8 0-3.4.5-4.9 1.4-.8.5-1.6 1.1-2.2 1.8-.4.6-1 1.4-1.4 2.2zm2.8 2.8c.6-2.9 3.2-4.9 6-4.9.4 0 .8 0 1.3.1.9.2 1.7.6 2.4 1.2l-.2.1.1.1-4.4 2.8c-.3.2-.6.5-.7.8-.2.6-.2 1.2.2 1.7.4.6 1 .9 1.7.9.4 0 .7-.1 1-.3l4.6-2.7c.2.9.2 1.9 0 2.8
-.3 1.5-1.2 2.7-2.2 3.5-1.1.8-2.4 1.3-3.8 1.3-.4 0-.9 0-1.3-.2-1-.3-2-.8-2.8-1.6l-.7.4-2.2 1.4-2.4 1.5-2.1 1.3-4 2.5c-.1.1-.2.2-.4.2-.2.1-.4.1-.6.1h-.1c-.6 0-1.1-.3-1.4-.9-.3-.8 0-1.7.8-2l11.5-7.3c-.1-.5-.2-1-.2-1.5-.3-.3-.3-.8-.1-1.3z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M154.8 144.4l-2.2-4.7c-.1-.3-.5-.4-.7-.3-.3.1-.4.5-.3.7l2.2 4.7c.1.2.3.3.5.3.1 0 .2 0 .2-.1.3 0 .4-.4.3-.6zM161 185.3c.1.2.3.2.5.2.1 0 .2 0 .3-.1.3-.2.3-.5.1-.8l-2.5-3.5c-.2-.3-.5-.3-.8-.1-.3.2-.3.5-.1.8l2.5 3.5z"/>
+ <path fill="#E1E1E6" fill-rule="nonzero" d="M179 214.8l-3.8-1.3c-.2-.1-.3 0-.5.1-.1.1-.2.2-.2.3-.1.3.1.6.4.7l3.8 1.3h.2c.2 0 .5-.1.5-.4v-.4c-.1-.2-.2-.3-.4-.3zM179.7 181.2c.1 0 .3 0 .4-.1.2-.2.3-.5.1-.8l-2.7-3.2-1.6-1.9c-.2-.2-.5-.3-.8-.1-.2.2-.3.5-.1.8l.9 1.1 3.3 4c.2.1.4.2.5.2z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M268.1 159.5l-6 5.5c-.2.2-.2.6 0 .8.1.1.3.2.4.2.1 0 .3 0 .4-.1l6-5.5c.2-.2.2-.6 0-.8-.2-.3-.5-.3-.8-.1zM125.9 112.2c.1.2.3.4.5.4h.2c.3-.1.4-.4.3-.7l-1.7-4.7c-.1-.3-.4-.4-.7-.3-.3.1-.4.4-.3.7l1.7 4.6z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M98.9 188.6c.6-.9 1.6-1.5 2.5-1.7-1.1.2-2.2.8-2.9 1.8-.2.2-.3.5-.4.7h.2c.2-.2.3-.5.6-.8zM113 187.5c-.7-.2-1.3-.4-2-.3-1.6 0-3.3.8-4.3 2.1 0 .1.1.2.1.3 1.4-2 3.9-2.8 6.2-2.1zM95.5 213.7c.3.6.7 1.2 1.3 1.6.5.4 1.1.6 1.7.6l-.1-.1c-.6-.1-1.2-.3-1.7-.7-.6-.4-1-.9-1.2-1.4zM90.5 210.7c-2-1.5-2.9-4-2.4-6.3-.6 2.4.3 5 2.4 6.5 1.1.8 2.4 1.1 3.6 1.1.3 0 .7 0 1-.1v-.2c-1.6.4-3.2.1-4.6-1zM91.6 191.8c.4-.5.8-1 1.3-1.4-.6.4-1.2.9-1.6 1.6-1.8 2.5-1.4 5.9.8 7.9.1 0 .2-.1.3-.1-2.3-2-2.7-5.5-.8-8zM116.4 197.4c.2.1.3.2.5.4-.2-.2-.4-.4-.7-.5-.2-.2-.5-.3-.8-.4.3.1.7.3 1 .5zM109.4 218.5l-.6-3.3h-.1l.5 3.3c.1.1.2.1.2 0zM108.5 214.1c.1 0 .1 0 0 0 .1 0 .1 0 0 0zM102.4 213.5c-.1.3-.2.5-.4.7l-.3.3s0 .1.1.1l.3-.3c.1-.2.2-.5.3-.8l.1.1c.3.2.6.3.9.5-.4-.1-.7-.3-1-.6 0 .1 0 0 0 0zM111.9 213.8c0 .1.1.2.2.4.2.4.4.9.5 1.4 0-.1 0-.1.1-.2-.2-.5-.4-1-.5-1.4-.1-.1-.2-.2-.3-.2 0-.3-.2-.5-.5-.5h-.2c-.1 0-.2.1-.2.2.1 0 .1-.1.2-.1.3 0 .6.1.7.4zM110.3 225.1c.1.3-.2.6-.6.8-.5.3-1.2.5
-1.8.5.7-.1 1.4-.3 2-.5.5-.2.8-.6.7-.9l-1-5.4h.1c-.1 0-.2.1-.2.1l.8 5.4zM99.7 215.7l.1.1h.1c-.1 0-.1 0-.2-.1zM104.3 217.3c-.7-.2-1.3-.5-1.9-.9.6.4 1.2.7 1.9.9z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M114.5 211.4c.3.1.5.4.5.7-.4 1.9-1 4.2-2.5 5.8l-.1.1c-.5.6-1.2 1.1-2 1.4.9-.4 1.6-.9 2.1-1.5l.1-.1c1.4-1.6 2-3.9 2.4-5.8.1-.3-.1-.6-.5-.7h-.1c-.3 0-.5.2-.6.5v.1c.1-.3.4-.5.7-.5z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M121.5 195.5c.4-1.4.5-2.9.2-4.4-.4-2.7-1.9-5.1-4.2-6.8-1.8-1.3-3.9-2-6.1-2-1.4 0-2.7.3-4 .8-1.4-.9-3.1-1.3-4.8-1.3-2.4 0-4.7.9-6.4 2.5-3.3.1-6.5 1.8-8.4 4.5-1.9 2.7-2.5 6.2-1.6 9.3-.3.3-.6.7-.9 1.1-3.5 4.9-2.4 11.7 2.5 15.2 1.2.8 2.5 1.4 3.8 1.8.6 1 1.4 1.9 2.4 2.6 1.2.9 2.6 1.4 4 1.5.7.6 1.5 1 2.4 1.5l.7 4.2.1.5c.3 2.1 2.2 4.6 6.2 4.6.7 0 4.4-.1 6.5-2.6.5-.6.8-1.2 1-1.9.2-.8.3-1.6.2-2.4l-.3-2.1c.4-.3.8-.7 1.2-1.1l.2-.2c2.2-2.5 3.1-5.7 3.5-7.9.1-.5.1-1.1.1-1.6.8-.6 1.5-1.4 2.1-2.2 1.8-2.4 2.5-5.4 2-8.4-.4-1.9-1.2-3.7-2.4-5.2zm-1.9 12.1c-.8 1.1-1.8 2-3 2.7.4.6.6 1.4.5 2.1-.4 1.9-1.1 4.8-2.8 6.8l-.1.1c-.6.7-1.3 1.2-2.1 1.7l.7 3.6c.1.5 0 1.1-.2 1.6-.1.3-.2.5-.4.7-1.1 1.3-3.1 1.8-4.6 1.8-2.4 0-3.6-1.2-3.8-2.5l-.1-.5-1-5.5c-1.5-.6-2.7-1.3-3.7-2.2-1.3 0-2.5-.3-3.5-1.1-1-.7-1.8-1.7-2.2-2.8-1.5-.1-2.9-.6-4.1-1.5-1.8-1.3-3.1-3.2-3.5-5.4-.4-2.2.1-4.4 1.4-6.3.5-.7 1.1-1.3 1.7-1.8-1.4-2.7-1.2-6 .6-8.6 1.5-2.2 4.1-3.6 6.8-3.6h.7c1.3-1.6 3.2-2.6 5.3
-2.6 1.4 0 2.8.4 4 1.2.2.2.4.3.6.5 1.2-.8 2.7-1.3 4.2-1.3 1.7 0 3.3.5 4.6 1.4 1.7 1.2 2.9 3 3.3 5.1.3 1.6.1 3.2-.6 4.6 1.5 1.3 2.4 3 2.8 5 .4 2.5-.1 4.9-1.5 6.8z"/>
+ <path fill="url(#w)" fill-rule="nonzero" d="M108.2 214.3c.1 0 .2-.1.3-.1-.1 0-.2 0-.3.1z"/>
+ <path fill="url(#x)" fill-rule="nonzero" d="M110.3 225.1l-.9-5.4c.1 0 .2-.1.2-.1.2-.1.5-.1.7-.2.8-.3 1.5-.8 2-1.4l.1-.1c1.4-1.6 2.1-3.9 2.5-5.8.1-.3-.1-.6-.5-.7-.3-.1-.6.1-.7.4-.2 1.2-.6 2.6-1.1 3.7v-.1c0 .1 0 .1-.1.2-.2-.5-.4-1-.5-1.4-.1-.2-.1-.3-.2-.4-.1-.3-.4-.5-.7-.4-.1 0-.1.1-.2.1-.1.2-.2.4-.1.6 0 .1.1.3.2.5.2.4.5 1 .6 1.6.2.6.1.9 0 .9l-.1.1c-.4.5-1 .9-1.6 1.1-.2.1-.3.1-.5.2h-.1l-.5-3.3c-.9.3-1.8.4-2.2.4h-.4c-.3 0-.5-.3-.5-.6 0-.1.1-.2.2-.3-.7 0-1.3-.2-2-.4h.1l.5 3s-.1 0-.1-.1c-.7-.2-1.3-.5-2-.9-.1 0-.2 0-.3-.1-1.2-.7-1.9-1.8-2.2-2.7v-.1-.2c-.1-.2-.1-.4-.1-.6v-.1c0-.1-.1-.3-.2-.4-.1-.1-.3-.1-.5 0-.3.1-.3.9-.1 1.8.2.6.6 1.2 1 1.7l.1.1c.3.4.7.7 1 1 1.1.9 2.5 1.4 3.8 1.8l1.3 7.2c1.3 0 2.6.1 3.8.1.1-.1.4-.3.3-.7z"/>
+ <path fill="#EDEDF0" fill-rule="nonzero" d="M107.5 226.5h.4c.7-.1 1.4-.3 1.8-.5-1.2-.1-2.5-.1-3.8-.1v.1c.2.4.8.5 1.6.5z"/>
+ <path fill="url(#y)" fill-rule="nonzero" d="M107.5 226.5h.4c.7-.1 1.4-.3 1.8-.5-1.2-.1-2.5-.1-3.8-.1v.1c.2.4.8.5 1.6.5z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M105.2 203.6c.8-.3 1.5-.5 2.3-.8-.8.3-1.6.6-2.3.8zM102.8 204.3c-.7.2-1.5.3-2 .5.6-.2 1.3-.3 2-.5zM98.8 214s0 .1 0 0c.2.7.6 1.3.9 1.7h.1c-.5-.5-.8-1-1-1.7zM107.4 202.8c.7-.3 1.4-.6 1.9-.8-.5.2-1.2.5-1.9.8zM99.6 212.7s.1 0 0 0c.1.1.1 0 0 0z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M105.8 214.7c.1-.1.3-.2.4-.2 0 0 1 .1 2-.3.1 0 .2-.1.3-.1h.1c.4-.2.8-.5 1.2-.8l.1-.1.4-.4.5-.5c.1-.1.1-.2.2-.3.6-.9 1-2 1.1-3h.6c2 0 4-1 5.3-2.8 1.9-2.7 1.4-6.4-1-8.5-.1-.1-.3-.2-.5-.4-.3-.2-.6-.4-1-.6-.1 0-.1-.1-.2-.1.2-.2.4-.4.5-.6 1.8-2.6 1.2-6.1-1.4-7.9-.4-.3-.9-.5-1.3-.7-2.2-.7-4.8.1-6.2 2.1 0-.1-.1-.2-.1-.3-.1.1-.1.2-.2.2-.3-.8-.9-1.5-1.6-2-.8-.6-1.7-.8-2.7-.8-.3 0-.5.1-.8.1-1 .3-1.9.8-2.5 1.7-.2.3-.4.6-.5.9h-.2c0 .1-.1.1-.1.2-.6-.2-1.2-.2-1.8-.2-1.2 0-2.3.4-3.3 1-.5.4-1 .8-1.3 1.4-1.8 2.5-1.4 6 .8 8.1-.1 0-.2.1-.3.1l.1.1c-1.3.4-2.4 1.2-3.2 2.4-.2.3-.4.7-.6 1.1v.1l-.3.9c-.5 2.3.4 4.8 2.4 6.3 1.4 1 3.1 1.3 4.6 1.1v.2c0 .3 0 .6.1.9v.1c.1.2.1.4.2.6.3.6.7 1.1 1.2 1.4.5.4 1.1.6 1.7.7-.3-.4-.5-.9-.6-1.4-.7-2.4.3-3 .7-3.2.5-.2 1.1-.2 1.5.1.4.3.7.7.8 1.3 0 .5.3 1.3.9 2l.3-.3c.2-.2.3-.5.4-.7 0 0 .1 0 .1.1.3.2.6.4.9.5.1.1.3.1.4.2h.1c.5.2 1.1.3 1.8.3zm2.1-19.7c.6-.2 1.3.1 1.5.7l.8 2.4c-.8-.1-1.6.2-2.2.8l-.8-2.4c-.3-.7.1-1.3.7-1.5zM97 199.8c-.2
-.6.1-1.3.7-1.5.6-.2 1.3.1 1.5.7l.8 2.4c-.8-.1-1.6.2-2.2.8l-.8-2.4zm6.3 8.1c.1-.1.1-.2.2-.2-.1.1-.2.1-.2.2-.2 0-.4 0-.6-.1-.7-.1-1.4-.3-2.1-.6-.4-.2-.8-.3-1.1-.6-.4-.2-.8-.5-1.2-.8l-.2-.1c-.1-.1-.1-.2 0-.3 0 0 0-.1.1-.1.2-.1.5-.2.7-.3.3-.1.6-.3 1-.4l1.7-.6c1.1-.4 2.3-.8 3.4-1.2 1.2-.4 2.3-.7 3.5-1.1l1.7-.5c.3-.1.7-.2 1-.3.2-.1.5-.1.7-.2.1 0 .2 0 .2.1v.1l-.1.2c-.1.5-.3 1-.5 1.4-.2.4-.4.8-.6 1.1-.4.7-.9 1.3-1.3 1.8-.1.1-.3.2-.4.4-.8.8-1.7 1.3-2.7 1.6-1 .5-2.1.7-3.2.5z"/>
+ <path fill="url(#z)" fill-rule="nonzero" d="M203.6 209.1c.1.2.1.3.1.5.1 0 .2 0 .3.1-.1-.3-.3-.4-.4-.6z"/>
+ <path fill="url(#A)" fill-rule="nonzero" d="M227 221.9v-1.3-1.4-1.4-.7-1c-.7.3-1.5.5-2.2.5 0 2.6 0 4.6.1 6.2h2.2c-.1-.3-.1-.6-.1-.9z"/>
+ <path fill="url(#B)" fill-rule="nonzero" d="M203.3 223.1l-.2-.2-.5-.5c-.1-.1-.2-.2-.2-.3-.1-.2-.3-.3-.4-.5-.1-.1-.2-.2-.2-.3-.2-.2-.3-.4-.5-.5-.1-.1-.2-.2-.2-.3l-.6-.6c-.1-.1-.1-.2-.2-.2-.3-.3-.5-.6-.8-.9-.5-.6-1-1.2-1.5-1.9l-.1-.1-1.2-1.8c0-.1-.1-.1-.1-.2-.4-.6-.7-1.2-1.1-1.9 0-.1-.1-.1-.1-.2-.3-.6-.7-1.3-1-1.9 0-.1 0-.1-.1-.2-.3-.6-.5-1.1-.7-1.7-1-.4-2-.9-3-1.4 1.6 4.2 3.9 8.9 7.1 12.7 1.1 1.3 2 2.3 2.9 3.3.9-.1 1.9-.1 2.8-.2 0 0 0-.1-.1-.2z"/>
+ <path fill="url(#C)" fill-rule="nonzero" d="M204.7 212.6c0 .1 0 .1.1.2.1.4.2.8.4 1.2v.1c.1.4.2.7.3 1.1 0 .1.1.2.1.3.1.4.2.7.3 1.1v.1l.3 1.2c0 .1.1.2.1.3.1.3.2.6.2.9 0 .1.1.2.1.3.1.4.2.7.3 1.1 0 .1 0 .1.1.2.1.3.1.6.2.8 0 .1 0 .2.1.3.1.3.1.6.2.9V223c.7 0 1.5-.1 2.3-.1-.4-2.1-1.3-5.4-2.9-10.6-.8-.1-1.6-.3-2.5-.4.1.3.2.5.3.7z"/>
+ <path fill="url(#D)" fill-rule="nonzero" d="M214.9 199.4l8.1 2.3h.2c.4 0 .7-.2.8-.6.1-.4-.1-.9-.6-1l-8.1-2.3h-.2c-.4 0-.7.2-.8.6-.1.4.1.8.6 1z"/>
+ <path fill="url(#E)" fill-rule="nonzero" d="M267.5 198.4l-1.2-.6c-.4.3-.9.6-1.3.9.9-.1 1.7-.2 2.5-.3z"/>
+ <path fill="url(#F)" fill-rule="nonzero" d="M151.3 155.4c-1.2-.4-2.4-.6-3.6-.6-2.5 0-4.9.9-6.8 2.5l1.2-3.3c.1-.3 0-.7-.4-.8h-.2c-.3 0-.5.2-.6.4l-1.1 2.8v4.4l5.2 2h.2c.3 0 .5-.2.6-.4.1-.3 0-.7-.4-.8l-3.7-1.4c1.5-1.8 3.7-2.7 5.8-2.7 1.8 0 3.6.6 5.1 1.9 3.2 2.8 3.6 7.7.7 10.9-1.5 1.8-3.7 2.7-5.8 2.7-1.8 0-3.6-.6-5.1-1.9-1.7-1.5-2.7-3.6-2.7-5.9v2.5c0 1.1-.3 2.2-.9 3 1.9 2.8 5 4.6 8.6 4.6h.1c5.7-.1 10.3-4.7 10.2-10.4.2-4.2-2.4-8-6.4-9.5z"/>
+ <path fill="url(#G)" fill-rule="nonzero" d="M144.1 167.6l.8.3.1.2 3.3-1.5c.2-.1.3-.3.3-.4l1.8-4.8c.1-.3 0-.7-.4-.8h-.2c-.3 0-.5.2-.6.4l-1.7 4.6-3.1 1.3c-.3 0-.4.4-.3.7z"/>
+ <path fill="url(#H)" fill-rule="nonzero" d="M163 112.5c.1.5.7.5.8 0 1.2-4.8 5-8.6 9.8-9.8.5-.1.5-.7 0-.8-4.8-1.2-8.6-5-9.8-9.8-.1-.5-.7-.5-.8 0-1.2 4.8-5 8.6-9.8 9.8-.5.1-.5.7 0 .8 4.8 1.2 8.5 5 9.8 9.8z"/>
+ <path fill="url(#I)" fill-rule="nonzero" d="M234.8 212.7c-.1.5-.2 1.1-.3 1.6v.1c-.1.5-.2 1-.4 1.5-.1.5-.3.9-.4 1.4-.1.4-.3.8-.4 1.1 0 .1-.1.3-.1.4-.1.2-.2.5-.3.7-.1.1-.1.3-.2.4-.1.2-.2.4-.2.6-.1.1-.1.3-.2.4-.1.2-.2.4-.2.5-.1.1-.1.3-.2.4-.1.2-.2.3-.2.5-.1.1-.1.2-.2.3 0 0 0 .1-.1.1.8 0 1.7 0 2.5.1.8-1.7 1.5-3.5 2-4.9.6-1.7 1.1-4 1.6-6.9l-2.4.6c-.1.3-.1.6-.2 1l-.1.1z"/>
+ <path fill="url(#J)" fill-rule="nonzero" d="M191.9 204.4l-.3-.9c1.4 1.1 3.3 2 6 2.5h.1c.3 0 .5-.2.5-.5.1-.3-.1-.6-.4-.6-5.2-1-7.3-3.8-8.2-5.4-.1-.4-.3-.8-.4-1.2 0-.1-.1-.3-.1-.5l-.3-1.2c0-.2-.1-.4-.1-.5-.1-.4-.1-.8-.2-1.2v-.6-1c-.1.1-.2.1-.3.1-.1 0-.2 0-.3-.1-.5-.4-1.1-.7-1.6-1.1-.1 4.4.9 8.4 3 11.4l.3.9c1 .6 1.9 1.1 2.9 1.6-.3-.6-.4-1.2-.6-1.7z"/>
+ <path fill="url(#K)" fill-rule="nonzero" d="M178.1 85.3c-.1-.3-.5-.3-.6 0-.8 3.2-3.4 5.8-6.6 6.6-.3.1-.3.5 0 .6 3.2.8 5.8 3.4 6.6 6.6.1.3.5.3.6 0 .8-3.2 3.4-5.8 6.6-6.6.3-.1.3-.5 0-.6-3.3-.9-5.8-3.4-6.6-6.6z"/>
+ <path fill="url(#L)" fill-rule="nonzero" d="M180.4 204.7l3.1-.9-.9-3-3.1.9"/>
+ <path fill="url(#M)" fill-rule="nonzero" d="M176.8 200.9c-.9 0-1.9.4-2.5 1.2l-4.6 6.2-3.6-1.3-.1-.5c-.4-1.2-1.3-2.2-2.5-2.6l-.7-2.3-3.1.9.5 1.7c-2 1-2.8 3.4-1.8 5.4.7 1.4 2.1 2.2 3.6 2.2.6 0 1.2-.1 1.8-.4.6-.3 1.2-.8 1.5-1.4l2.3.8-1.7 2.2c-.3-.1-.7-.1-1-.1-1.8 0-3.4 1.2-3.9 3-.6 2.1.7 4.3 2.9 4.9.3.1.7.1 1 .1 1.8 0 3.4-1.2 3.9-3 .2-.7.2-1.5-.1-2.2-.1-.3-.1-.5-.2-.8l10.3-13.5c-.6-.3-1.3-.5-2-.5zm-13.9 8.8c-.1 0-.1 0-.2.1-.2.1-.5.1-.8.1-.8 0-1.6-.5-1.9-1.3-.4-1.1.1-2.3 1.2-2.7.2-.1.5-.1.8-.1.8 0 1.6.5 1.9 1.3 0 0 0 .1.1.1.4 1-.1 2.1-1.1 2.5zm2.8 9.2h-.2c-.2.1-.4.1-.6.1-.9 0-1.7-.6-2-1.5-.3-1.1.3-2.3 1.4-2.6.2-.1.4-.1.6-.1.9 0 1.7.6 2 1.5v.1c.4 1.1-.2 2.2-1.2 2.5z"/>
+ <path fill="url(#N)" fill-rule="nonzero" d="M274.7 179.9c.4-1.1 1.2-2 2.3-2.4-.4-.2-.8-.3-1.2-.4-.3-.1-.6-.1-.9-.2-.2 1-.4 1.9-.8 3h.6z"/>
+ <path fill="url(#O)" fill-rule="nonzero" d="M180.9 206.3l.9 3.1c1.7-.5 2.6-2.3 2.1-4l-3 .9z"/>
+ <path fill="url(#P)" fill-rule="nonzero" d="M284.7 187.9c-.4-.2-.7-.3-1-.3-.7 0-1.3.3-1.6.9-1.7 3.1-4.9 4.9-8.3 4.9-.8 0-1.5-.1-2.3-.3-2.9-.7-5.3-2.8-6.4-5.6l3.7 1c.2 0 .3.1.5.1.8 0 1.6-.6 1.8-1.4.3-1-.3-2-1.4-2.3l-7.3-1.9c-.2 0-.3-.1-.5-.1-.8 0-1.6.6-1.8 1.4l-1.9 7.3c-.3 1 .3 2 1.4 2.3.2 0 .3.1.5.1.8 0 1.6-.6 1.8-1.4l.5-2c2.4 4.4 6.9 6.9 11.5 6.9 2.1 0 4.2-.5 6.1-1.5 2.3-1.3 4.3-3.2 5.5-5.6.5-.9.2-2-.8-2.5z"/>
+ <path fill="url(#Q)" fill-rule="nonzero" d="M172.7 212.8l2.1.8c.1-.1.3-.1.5-.1l3.8 1.3c.2 0 .3.2.3.3 1.3 0 2.6-.9 3-2.2l-7.7-2.7-2 2.6z"/>
+ <path fill="url(#R)" fill-rule="nonzero" d="M176.1 196l-.9-3-3.1.9 1 3"/>
+ <path fill="url(#S)" fill-rule="nonzero" d="M171.5 197.4l-.9-3.1-3.1 1 1 3"/>
+ <path fill="url(#T)" fill-rule="nonzero" d="M166.9 198.8l-.9-3.1-3.1 1 1 3"/>
+ <path fill="url(#U)" fill-rule="nonzero" d="M162.3 200.2l-.9-3.1c-1.7.5-2.6 2.3-2.1 4l3-.9z"/>
+ <path fill="url(#V)" fill-rule="nonzero" d="M274.7 180c-.2 0-.4-.1-.6-.1-.4 1.3-1 2.7-1.8 4.1.9 1 1.3 2.4 1 3.8-.3 1.3-1.3 2.3-2.5 2.8l.9.3c3-2.5 5.1-4.5 6.1-5.5l-.3-.1c-1.1-.3-2-1-2.5-1.9-.6-1-.7-2.1-.4-3.1 0-.1.1-.2.1-.3z"/>
+ <path fill="url(#W)" fill-rule="nonzero" d="M274.9 191.2c2.2-.3 4.2-1.7 5.3-3.7v-.1c.3-.4.6-.8 1-1.1l-1-.3s0 .1-.1.1c0 .2-1.9 2.2-5.2 5.1z"/>
+ <path fill="url(#X)" fill-rule="nonzero" d="M187.6 158.4c-1.4-.9-3.2-.6-4 .7-.8 1.3-.3 3 1.1 3.9 1.4.9 3.2.6 4-.7.8-1.2.3-3-1.1-3.9z"/>
+ <path fill="url(#Y)" fill-rule="nonzero" d="M276.7 136.6c-.3.7-.4 1.4-.4 2.1l-.9.3c-1.2.5-2.5 1.1-3.7 1.8-.2.1-.4.3-.7.4-.4.2-.7.5-1.2.8-.2.1-.4.3-.6.4l-.6.5c-.1.1-.3.2-.4.3h-.8c-1.1.1-9.8 2-18 3.9.6-1.9 1.2-3.8 1.6-5.8 1.3 0 2.7-.1 4-.2 1 .9 2.3 1.3 3.7 1.3 2.1 0 3.9-1.1 4.9-2.7.5.1 1 .1 1.5.1 4.8 0 9.1-3 10.7-7.5 3-1 5.2-3.7 5.7-6.9.6-.9 1.2-1.8 1.8-2.8 4-1.5 6.6-5.7 6-10 0-.4-.1-.7-.2-1.1 1.5-1.9 2.1-4.4 1.8-6.8-.3-2.1-1.2-4.1-2.7-5.6-.3-2.4-.8-4.7-1.5-7 .1-.4.1-.9.1-1.3 0-3.3-1.7-6.4-4.6-8.1-2.8-4.3-6.6-8-10.8-10.8-1.3-3.8-4.8-6.4-9-6.4-1.4 0-2.8.3-4.1.9-1.2-.3-2.4-.6-3.6-.8-1.7-1.5-4-2.4-6.2-2.4-.4 0-.8 0-1.2.1-2 .2-3.8 1.1-5.3 2.5-2.4.5-4.8 1.2-7 2.1-.6-.1-1.3-.2-2-.2-4.6 0-8.5 3.4-9.3 7.8l-.1.1c-4.1 1.1-7 4.8-7 9.1v.7c-.4.8-.8 1.7-1.1 2.5-1.6 1-2.6 2.8-2.6 4.8 0 .4 0 .7.1 1.1-.6-.6-1.2-1.2-1.9-1.7-.2-1.3-.8-2.4-1.4-3.4.3-2-.6-3.9-1.8-6.3-.2-.4-.4-.9-.7-1.3-.5-1-1.4-1.6-2.4-1.6-1.5 0-2.7 1.2-3.9 3.8-.7 1.6-2.2 5.3-1.1 7.6-.5 3.6 0 6 1.5 7.1l.1.1c.2 1.6.6 3.2 1.1 4.6-11 4.2
-28.2 12.1-33.8 19.4-1.3 1.8-1.6 4.3-.6 7.6 1.9 6.5 8.8 16.5 14 18.4 7.3 2.7 17.2 4.3 27.1 4.3h2c-2.1 1.4-4.1 2.9-6 4.5-3.9 1.5-7 2.8-9.5 3.9-.5-.8-1-1.5-1.6-2.2-1.1-1.3-2.4-2.4-3.8-3.3-2.9-1.8-6.2-2.8-9.7-2.8-6.2 0-11.9 3.1-15.2 8.3-1.1 1.7-1.8 3.4-2.3 5.3l.6.9c.2.3.1.6-.1.8-.1.1-.2.1-.3.1-.2 0-.3-.1-.5-.2-.5 3.2-.1 6.5 1 9.4 1.6 2.5 3.3 4.8 5 7.1.6.6 1.3 1.1 2.1 1.6 2.9 1.8 6.2 2.8 9.7 2.8 1.2 0 2.4-.1 3.5-.3l2.4-.6c-.2 1.1-.3 2.1-.3 3.2.7.5 1.4 1 2.2 1.5v-.1-1.3c0-.2 0-.5.1-.7 0-.4.1-.9.1-1.3 0-.3.1-.5.1-.8.1-.4.2-.9.2-1.3v-.2c0-.2.1-.4.1-.6.1-.5.2-.9.3-1.4.1-.3.1-.6.2-.8.1-.5.3-.9.4-1.4.1-.3.2-.6.3-.8.2-.5.4-1 .5-1.4.1-.3.2-.6.3-.8.2-.5.4-1 .7-1.5.1-.3.2-.5.4-.8.3-.5.5-1.1.8-1.6.1-.2.2-.5.4-.7.3-.6.7-1.2 1-1.8.1-.2.2-.4.3-.5.2-.3.4-.6.6-.8 3-4.4 5.4-6.8 5.4-6.8.1-.1.2-.3.2-.4 0-.1-.1-.3-.2-.4-.2-.2-.6-.2-.8 0-.1.1-2.3 2.3-5.1 6.4-1.1.2-2.1.3-3.1.5h-.1c-.4.1-.8.1-1.1.2h-.2c-.3 0-.6.1-.9.1h-.2c-.3 0-.6.1-.9.1-.2 0-.4 0-.6.1h-.7-.2s-.8 0-1.2-.5c0-.1-.1-.1-.1-.2s-.1-.1-.1-.2v-.6c0-.
2.1-.5.3-.9.1-.1.1-.2.2-.4.2-.3.6-.6 1.2-1 .1 0 .1-.1.2-.1s.1-.1.2-.1c1.1-.6 2.6-1.4 4.4-2.2 4.1-1.9 9.7-4.1 14.3-5.9.1 0 .1-.1.2-.1.5-.4 1-.9 1.6-1.3.4-.3.7-.6 1.1-.8.3-.3.7-.5 1-.8.8-.6 1.5-1.1 2.3-1.6.2-.1.4-.3.6-.4.5-.3 1.1-.7 1.6-1 .1-.1.3-.2.4-.3.8-.5 1.6-.9 2.4-1.4.3-.2.6-.4 1-.5 4.1-.6 10.4-1.6 14.2-3.2.3-.1.4-.4.3-.7-.1-.3-.4-.4-.7-.3-5.7 2.3-17.7 3.6-17.8 3.6h-.2c-1.7.1-3.4.2-5.1.2-9.9 0-19.5-1.6-26.3-4.1-.7-.3-1.4-.7-2.3-1.4-.2-.2-.4-.3-.6-.5-.4-.4-.8-.8-1.3-1.2-.2-.2-.4-.4-.6-.7-.4-.5-.9-1-1.3-1.5s-.8-1.1-1.2-1.6c-.6-.8-1.2-1.7-1.8-2.6-.4-.6-.7-1.2-1.1-1.8-2-3.6-3.3-7.2-2.9-9.7v-.1c.1-.6.3-1.1.7-1.6.2-.2.4-.4.6-.7.1-.1.1-.2.2-.2.1-.2.3-.3.4-.5l.3-.3.4-.4.3-.3c.1-.1.3-.3.5-.4.1-.1.2-.2.4-.3.2-.1.3-.3.5-.4.1-.1.3-.2.4-.3.2-.1.3-.3.5-.4.1-.1.3-.2.4-.3.2-.1.4-.3.6-.4.1-.1.3-.2.4-.3.2-.1.4-.3.6-.4.1-.1.3-.2.4-.3.2-.2.5-.3.7-.5.1-.1.2-.2.4-.2.3-.2.7-.4 1-.6.1-.1.2-.1.3-.2.3-.2.7-.4 1-.6.2-.1.3-.2.5-.3.2-.1.5-.3.7-.4.2-.1.4-.2.5-.3.2-.1.5-.3.7-.4l.6-.3c.2-.1.5-.3.7-.4l.6-.3c.2-
.1.5-.2.7-.4l.6-.3c.2-.1.5-.2.7-.4l.6-.3c.2-.1.5-.2.7-.3.2-.1.4-.2.7-.3.2-.1.5-.2.7-.3.2-.1.5-.2.7-.3.2-.1.5-.2.7-.3.2-.1.4-.2.7-.3.3-.1.5-.2.8-.3.5-.2.9-.4 1.4-.6l.6-.3c.3-.1.5-.2.8-.3l.6-.3c.3-.1.5-.2.8-.3l.6-.3c.3-.1.5-.2.8-.3.2-.1.4-.2.6-.2.3-.1.5-.2.8-.3.2-.1.4-.2.6-.2.3-.1.5-.2.8-.3.2-.1.4-.1.5-.2.3-.1.5-.2.8-.3.2-.1.4-.1.5-.2.3-.1.5-.2.8-.3.2-.1.3-.1.5-.2s.4-.1.6-.2c-.1.2-.1.5 0 .7 1.8 5.7 5.9 6.6 6.1 6.6h.2c.5 0 1-.4 1.1-.9.1-.6-.3-1.2-.9-1.3-.1 0-2-.5-3.5-3 3.4.1 7.2-2.6 7-6 1.4 1 3.5 2.9 3.5 5.5 0 3.8-3.7 5.1-3.9 5.2-.3.1-.4.4-.4.7 0 0 0 .1.1.1.1.2.3.3.5.3h.2s4.6-1.6 4.7-6.2c0-2-1-3.6-2.1-4.8l1.4-.4c.5.4 1.7 1.2 3.2 1.2h.6c.3 0 .5-.3.5-.6v-.1c-.1-.2-.3-.4-.6-.3-1.7.2-3.1-1.1-3.1-1.1-.1-.1-.4-.2-.6-.1l-2.3.7c-.2-.2-.5-.4-.7-.5 0-.7.1-1.4.1-2.2 0-.4.1-.9.2-1.3s.1-.9.2-1.3c-.5-.6-.7-1.3-.7-2.1 0-.6.1-1.1.4-1.5.2-.5.5-.9.9-1.2.1-.1.3-.2.4-.3.1-.1.3-.2.5-.2.2-.5.3-.9.5-1.3.2-.5.4-.9.6-1.4.1-.3.3-.7.5-1 0-.3-.1-.7-.1-1v-.1-.1c0-.6.1-1.3.3-1.8.2-.8.6-1.6 1.1-2.2.2-.3.5-.7.8-.9.5-
.5 1.1-.9 1.7-1.3.6-.3 1.3-.6 2.1-.7.3-.4.7-.7 1-1 0-.3.1-.7.2-1 .1-.4.2-.7.3-1 .9-2.3 3-4 5.5-4.5h.3c.3 0 .7-.1 1-.1.3 0 .6 0 .8.1.5.1.9.1 1.3.3.6-.3 1.3-.5 1.9-.8 1.3-.5 2.6-.9 4-1.2.7-.2 1.4-.3 2.1-.4.6-.6 1.2-1.1 2-1.5.8-.4 1.6-.7 2.5-.8.3 0 .6-.1.9-.1h1c.2 0 .4.1.5.1.1 0 .2.1.3.1.2 0 .3.1.5.1.1 0 .2.1.3.1.1.1.3.1.4.2.1 0 .2.1.3.1.1.1.3.2.4.2.1.1.2.1.3.2.1.1.3.2.4.3l.2.2c.2.2.4.3.6.5 1.7.2 3.3.6 4.9 1.1.6-.3 1.2-.6 1.8-.8.1 0 .2 0 .3-.1.2-.1.5-.1.7-.2h1c.4 0 .8 0 1.2.1h.2c.4.1.7.2 1 .3.1 0 .1 0 .2.1.3.1.7.3 1 .4 0 0 .1 0 .1.1l.9.6c.3.2.6.5.8.8.3.3.5.6.7.9v.1c.2.3.4.7.5 1v.1c.1.4.3.7.4 1.1.1.4.2.8.2 1.3 3.1 2.5 5.8 5.5 7.8 8.9 1.2 0 2.2.3 3.2.8.6.3 1.1.7 1.6 1.1.5.4.9.9 1.2 1.4 0 0 0 .1.1.1.1.2.3.5.4.7 0 0 0 .1.1.1l.3.9v.1c.1.2.1.5.2.7v.2c0 .3.1.6.1.9V92.9c0 .2-.1.5-.1.7-.3 1.7-1.2 3.1-2.5 4.2.2 1.5.3 2.9.3 4.4 1.2 1.2 2 2.8 2 4.7.1 2.2-.9 4.2-2.5 5.5.2.6.3 1.2.3 1.8.1 3.4-2.4 6.3-5.7 6.9-.8 1.2-1.7 2.3-2.6 3.3-.5 2.8-2.8 4.8-5.5 5-1.2 3.7-4.9 6.2-9 5.8-.9-.1-1.8-.3-2.6-.7h-.2c-.
4 1.6-1.9 2.6-3.5 2.5-.3 0-.5-.1-.8-.2-.3 1.2-.6 2.4-.9 3.5h1-2.4c.2-3.6-.3-5.8-.4-5.9-.1-.3-.4-.5-.7-.4h-.1c-.2.1-.4.4-.3.6 0 0 .9 3.8-.1 9.4-.4 1.4-.8 2.8-1.3 4.3-.1.2-.1.4-.2.6-.3.9-.6 1.7-1 2.6 7.4-1.8 15.5-3.6 19.4-4.4l-.6.6c-.9.9-1.9 2-2.7 2.9-.8 1-1.4 1.8-1.8 2.3-.2.3-.4.5-.5.7 0 0 0 .1-.1.1-.1.1-.1.2-.1.2-.2.3-.2.6-.3.9-2.9 1.5-6 3.1-9 4.5-2.9 1.4-5.5 2.7-7.6 3.6-.2.1-.3.2-.5.2-.1.1-.1.3-.2.4-.1.2-.2.4-.2.6 0 0 0 .1-.1.1-.1.4-.3.7-.4 1.1v.1c-.1.4-.3.8-.4 1.2-.1.4-.3.9-.4 1.3-.4 1.4-.8 2.9-1.1 4.4-1 4.8-1 5-.9 5.1.1.2.3.4.5.4h.2c.3-.1.4-.3.4-.6s.2-1.4.5-2.9c.9-.2 1.8-.3 2.6-.4 1.2-1.2 2.8-2 4.5-2.1 2-.2 3.9.6 5.3 1.8.8-.3 1.7-.5 2.7-.4 1.3.1 2.6.5 3.6 1.3 1.3-.2 2.4-.4 3.5-.7.4-.1.8-.3 1.2-.4.9-.8 1.9-1.6 3.1-2.2.7-.4 1.4-.6 2.1-.9 2.1-1.9 3.3-4 3.8-5.3.1-.2.1-.3.2-.5 0-.1.1-.3.1-.3.1-.2.1-.3.1-.3v.1c.1.1.2.3.3.6.4.9 1.1 2.6 1.5 4.9.8.1 1.6.2 2.3.3-.6-4.3-2.2-7-2.3-7.1-.4-.7-1.1-1.1-1.9-1.1h-.3c-.9.1-1.6.8-1.8 1.7-.1.2-1.6 5.6-7.9 8-2-1.7-4.3-3.1-7-4.3-2.9-1.2-6.1-1.8-9.7-1.8
-.8 0-1.6 0-2.5.1.1-.2.2-.4.2-.6 2.4-1.1 9.7-4.6 16.1-7.9.5.4 1.1.7 1.7.7.2 0 .4 0 .7-.1 0 0 .1 0 .3-.1.2-.1.5-.2.8-.3.6-.2 1.5-.6 2.7-1.2.1 0 .1-.1.2-.1.1.1.1.2.2.2.8.9 2 1.5 3.4 1.7.5.1.9.1 1.3.1 1.3 0 2.5-.4 3.5-1.1 2-1.5 2.3-4.1 2.3-4.2.1-.6-.4-1.2-1-1.2-.2 0-.4 0-.6.1-.3.2-.6.5-.6.9 0 0-.2 1.8-1.4 2.7-.7.6-1.8.8-3.1.6-1.1-.2-1.9-.6-2.4-1.4-1.1-1.6-.6-4-.5-4.1v-.6c-.1-.4-.4-.7-.8-.8-.6-.1-1.2.2-1.3.8 0 .1-.7 2.9.6 5.3h-.1c-1.1.5-2 .9-2.6 1.1-.3.1-.6.2-.7.3-.2.1-.3.1-.3.1-.4.1-.7 0-1-.1-.3-.2-.6-.5-.6-.8-.1-.3-.1-.7.1-1l.1-.2c.1-.2.2-.4.4-.7.3-.4.8-1.2 1.7-2.2.8-1 1.7-2 2.6-2.9.5-.5 1-1 1.6-1.5.6-.5 1.1-1 1.7-1.5.2-.2.4-.3.6-.5l.6-.5c.2-.1.4-.3.6-.4.1-.1.2-.1.3-.2.5 1.7 1.6 3.3 3 4.4.3.2.7.5 1 .7-.1.1-.2.2-.3.2-.2.2-.4.3-.6.4l-.6.5c-.1 0-.1.1-.2.1.4.2.8.3 1.2.5l.3-.3c.2-.2.4-.3.6-.5.7-.5 1.2-1 1.7-1.5 1-1 1.9-2 2.6-3.1.5-.7.8-1.3 1.1-1.8.3 0 .6 0 .9-.1 1.3-.3 4.6-1.7 6.4-7.7.2-.5 0-1.1-.5-1.5-.4-.4-1-.4-1.5-.2-.9.5-2.5 1-4.4.9-1.7-.1-3.3.5-4.3 1.6-.4-.4-.6-.1-.8.3 0-.1 0 0 0 0zm1
2.3-31.5c0 .3.1.6.1.9-.1-.3-.1-.6-.1-.9 0-.4-.1-.7-.2-1.1.1.4.1.8.2 1.1zm-104.7 62.1c-1.2 2-.9 3.4-.5 4.3.7 1.2 1.9 1.7 2.9 1.8h.6c.5 0 1.5-.1 4.7-.5-.7 1.3-1.4 2.6-2 3.9-.2-.2-.4-.4-.7-.5-1.5-.8-3.3-.3-4.1 1.1-.8 1.4-.2 3.2 1.3 4 .5.3 1 .4 1.5.4-.5 1.6-.9 3.1-1.2 4.6-2 .8-4 1.1-6.1 1.1-3.1 0-6.3-.9-9.1-2.6-7.9-5-10.2-15.5-5.2-23.3 3.2-5.1 8.7-7.8 14.3-7.8 3.1 0 6.3.9 9.1 2.6 2.1 1.3 3.7 3.1 5 5-9.3 4-10 5.2-10.5 5.9zm17.8-77.5c0-.1 0-.2-.1-.3v-.2-.4-.3-.4-.3c0-.1.1-.3.1-.4 0-.1 0-.2.1-.3 0-.2.1-.3.1-.5 0-.1.1-.2.1-.3.1-.2.1-.3.2-.5 0-.1.1-.2.1-.3.1-.2.1-.4.2-.6 0-.1 0-.1.1-.2.1-.2.2-.5.3-.7 0-.1.1-.1.1-.2.1-.2.2-.3.3-.5 0-.1.1-.1.1-.2.1-.1.1-.2.2-.4 0-.1.1-.1.1-.2.1-.1.1-.2.2-.3 0-.1.1-.1.1-.2l.2-.2s.1 0 .1-.1c2.4 1.9 2.2 7.3 2.2 7.4v.1c-1.1 1.6-3.1 2.1-4.4.9-.1-.1-.2-.1-.2-.2-.1-.1-.1-.2-.2-.3v.1zM204 98c-.1-.4-.1-.8-.1-1.2-.1-.1-.3-.1-.4-.2-.1-.1-.3-.2-.4-.3-.1-.1-.2-.1-.2-.2-.2-.3-.3-.7-.4-1.3-.1-.5-.1-1-.1-1.6 0-.3 0-.7.1-1.1 2.1 1.8 5.2.5 5.8-1.5.1.2.2.4.3.7.4 1.2.6 2.2.7 2.6v
.2c-.8 2.2-3.3 3.4-5.3 2.7.1.7.2 1.3.3 2-.3-.2-.3-.5-.3-.8zm9.1 1.2c-.2 3-4.3 5-7.1 4.5-.7-.5-1.2-1.8-1.6-3.4-.1-.4-.2-.7-.2-1.1V99c2.9 1.2 6.1-.8 6.5-3.5.4.3.9.7 1.4 1.2.7.7 1 1.5 1.1 2.1-.1.1-.1.3-.1.4zm74.3 13.9c-.1-.7-.3-1.3-.5-1.9.2.6.4 1.2.5 1.9 0 .2 0 .5.1.7-.1-.3-.1-.5-.1-.7zm-1.1-12.7c.5.4 1 .9 1.4 1.5-.4-.6-.8-1.1-1.4-1.5zm-20.4 37.3h-.5.5zm-3.3-.4c.3.1.7.2 1 .2-.4-.1-.7-.1-1-.2-.1 0-.1 0 0 0-.1 0-.1 0 0 0zm-2 2.5c-.3.2-.7.3-1.1.4.5 0 .8-.2 1.1-.4zm-1.4.5h-.3.3zm-12.9 26.1h.1-.4.3zm31.4-29.4c.6-1.2 1.9-1.9 3.5-1.9h.6c.5.6-.2 1 .4 2.1.7 1.3 2.3-.3 3.3.6-1.5 2.6-3.3 3.3-4.2 3.5-1.2.3-2.5 0-3.1-.8-.8-1-1-2.4-.5-3.5zm-.2 4.3c.5.6 1.2.9 2 1.1-.2.4-.5.8-.8 1.3-.4.6-.9 1.2-1.3 1.7-1.7-.7-3.1-2.3-3.5-4.2v-.4c.7-.3 1.3-.7 2-.9.3-.1.5-.2.7-.3.2.7.5 1.2.9 1.7z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M219.1 84.8c0-.6.1-1.3.3-1.8-.2.5-.3 1.2-.3 1.8z"/>
+ <path fill="url(#Z)" fill-rule="nonzero" d="M219.1 84.8c0-.6.1-1.3.3-1.8-.2.5-.3 1.2-.3 1.8z"/>
+ <path fill="url(#aa)" fill-rule="nonzero" d="M219.1 84.8c0-.6.1-1.3.3-1.8-.2.5-.3 1.2-.3 1.8z"/>
+ <path fill="url(#ab)" fill-rule="nonzero" d="M178.6 177.5c-.4-.2-.8-.3-1.1-.4l2.7 3.2c.2.2.2.6-.1.8-.1.1-.2.1-.4.1s-.3-.1-.4-.2l-3.3-4c-.9.1-1.6.6-2 1.3-.2.3-.3.7-.3 1.1 1.2 1.3 2.4 2.6 3.6 3.7 1.4.3 2.7-.2 3.3-1.2.7-1.4-.2-3.4-2-4.4z"/>
+ <path fill="url(#ac)" fill-rule="nonzero" d="M267.8 172.1c-2.3 1.3-4.3 3.2-5.5 5.6-.5.9-.1 2.1.8 2.5h.1l.4.1c.2 0 .3.1.5.1.7 0 1.4-.4 1.7-1.1 1.7-3 4.9-4.8 8.2-4.8.8 0 1.6.1 2.4.3 2.9.7 5.3 2.8 6.4 5.6l-3.7-1c-.2 0-.3-.1-.5-.1-.8 0-1.6.6-1.8 1.4-.3 1 .3 2 1.4 2.3l7.3 1.9c.2 0 .3.1.5.1.8 0 1.6-.6 1.8-1.4l1.9-7.3c.3-1-.3-2-1.4-2.3-.2 0-.3-.1-.5-.1-.8 0-1.6.6-1.8 1.4l-.5 2c-2.4-4.4-6.9-6.9-11.5-6.9-2.2.2-4.3.7-6.2 1.7z"/>
+ <path fill="url(#ad)" fill-rule="nonzero" d="M180.7 194.6c-.4-1.4-1.7-2.3-3.1-2.3-.3 0-.6 0-.9.1l.9 3.1 3.1-.9z"/>
+ <path fill="url(#ae)" fill-rule="nonzero" d="M172.6 172.1c.8-1.4.2-3.2-1.3-4-1.5-.8-3.3-.3-4.1 1.1-.8 1.4-.2 3.2 1.3 4 1.5.8 3.3.3 4.1-1.1z"/>
+ <path fill="url(#af)" fill-rule="nonzero" d="M175.8 164.2c1.7 0 3.1-1.3 3.1-2.9 0-1.6-1.4-2.9-3.1-2.9-1.7 0-3.1 1.3-3.1 2.9 0 1.6 1.4 2.9 3.1 2.9z"/>
+ <path fill="url(#ag)" fill-rule="nonzero" d="M224.1 117.1c.4 0 .9.1 1.3.1 0-.1.1-.2.1-.3v-3c0-.7-.6-1.3-1.3-1.3-.7 0-1.3.6-1.3 1.3v3c0 .1 0 .2.1.3.2-.1.7-.1 1.1-.1z"/>
+ <path fill="url(#ah)" fill-rule="nonzero" d="M237.5 199.2c.6-7.2 1.2-16.6 1.3-16.7 0-.3-.2-.6-.5-.6s-.6.2-.6.5c0 .2-1.4 19.4-1.9 23.9v.3c0 .2-.1.5-.1.7v.1c-.1.6-.2 1.1-.2 1.7v.2c.8-.2 1.6-.4 2.3-.6.1-.9.3-1.8.4-2.8 5.1-.6 12.8-2.1 20-5.6 2.3-1.3 4.3-2.6 6.2-3.9-.5-.4-1-.8-1.5-1.3-.8.7-1.8 1.2-2.9 1.2-.3 0-.7 0-1-.1-1.4.9-3 1.8-4.7 2.6-6.6 3-13 4.1-17.1 4.5.1-.9.2-1.8.2-2.9 1.8-.1 3.6-.2 5.5-.5 5.9-.9 10.7-2.9 14.2-4.8-.2-.2-.4-.5-.6-.8 0 0 0-.1-.1-.2-3.4 1.9-8 3.8-13.7 4.7-1.8.2-3.5.4-5.2.4z"/>
+ <path fill="url(#ai)" fill-rule="nonzero" d="M264.9 127.4c1 0 2.1-.3 3.3-1.3 2.4-2 2.5-4.3 2.3-5.6 1.4-.2 2.8-.8 4.2-2.2 3.6-3.7 2.9-7.8 2.1-9.4-.3-.5-1-.8-1.5-.5-.5.3-.8 1-.5 1.5 0 0 1.7 3.4-1.7 6.8-2.9 2.9-5.8 1.1-6.1.9-.5-.4-1.2-.2-1.6.3-.4.5-.2 1.2.3 1.6.8.5 2.1 1.1 3.7 1.2.2.9.2 2.9-1.9 4.7-2.6 2.1-4.8.3-4.9.2-.2-.2-.6-.2-.8.1-.2.2-.2.6.1.8 0-.2 1.2.9 3 .9z"/>
+ <path fill="url(#aj)" fill-rule="nonzero" d="M249.6 126.6c1 1 2.7 2.2 5.8 2.2.8 0 1.7-.1 2.7-.3.3-.1.5-.3.4-.6-.1-.3-.3-.5-.6-.4-4.9.9-6.7-1-7.4-1.7-1.3-1.3-1.9-4.5-1.9-4.6 0-.2-.2-.4-.4-.4-.1 0-5.1-1.5-8.5-5.7-3.1-3.9-3.5-8.4-3.5-8.4 0-.2-.1-.4-.3-.5-.8-.4-3.2-1.7-3.8-3.2-1.3-3.1.1-4.9.1-4.9.2-.2.2-.6-.1-.8-.2-.2-.6-.2-.8.1 0 0-.5.6-.8 1.7l-3.3-.1c-.3 0-.6.2-.6.5v.2c.1.2.3.4.5.4l3.2.1c0 .9.1 2 .6 3.2.4.9 1.2 1.7 2 2.3.8.6 1.6 1.1 2.1 1.3 0 .3.1.8.3 1.4.4 1.8 1.3 4.7 3.5 7.3.4.5.8 1 1.3 1.4 2.9 2.9 6.4 4.2 7.4 4.6.2 1 .8 3.6 2.1 4.9z"/>
+ <path fill="url(#ak)" fill-rule="nonzero" d="M179 200.2l3.1-1-.9-3-3.1.9"/>
+ <path fill="url(#al)" fill-rule="nonzero" d="M231.2 188.3l-16.2-4.7c-.3-.1-.6-.1-.9-.1-1.5 0-2.8 1-3.2 2.4l-5.6 19.4c-.5 1.8.5 3.7 2.3 4.2l16.2 4.7c.3.1.6.1.9.1 1.5 0 2.8-1 3.2-2.4l5.6-19.4c.5-1.8-.5-3.7-2.3-4.2zm-1.4 4.9l-4.7 16.2c-.2.7-.9 1.2-1.6 1.2-.2 0-.3 0-.5-.1l-12.9-3.7c-.9-.3-1.4-1.2-1.2-2.1l4.7-16.2c.2-.7.9-1.2 1.6-1.2.2 0 .3 0 .5.1l12.9 3.7c.9.2 1.5 1.2 1.2 2.1z"/>
+ <path fill="url(#am)" fill-rule="nonzero" d="M99.3 199.1c-.2-.6-.9-1-1.5-.7-.6.2-1 .9-.7 1.5l.8 2.4c.6-.6 1.4-.9 2.2-.8l-.8-2.4z"/>
+ <path fill="url(#an)" fill-rule="nonzero" d="M224.4 196.8l-8.1-2.3h-.2c-.4 0-.7.2-.8.6-.1.4.1.9.6 1l8.1 2.3h.2c.4 0 .7-.2.8-.6.1-.4-.2-.8-.6-1z"/>
+ <path fill="url(#ao)" fill-rule="nonzero" d="M108 198.9c.6-.6 1.4-.9 2.2-.8l-.8-2.4c-.2-.6-.9-1-1.5-.7-.6.2-1 .9-.7 1.5l.8 2.4z"/>
+ <path fill="url(#ap)" fill-rule="nonzero" d="M106.2 206.7c1-.5 2-1 3.1-.7.1-.1.3-.2.4-.4.5-.5.9-1.1 1.3-1.8.2-.4.4-.7.6-1.1.2-.4.3-.9.5-1.4l.1-.2v-.1c0-.1-.1-.2-.2-.1-.2.1-.5.1-.7.2-.3.1-.7.2-1 .3l-1.7.5c-1.2.3-2.3.7-3.5 1.1-1.1.4-2.3.8-3.4 1.2l-1.7.6c-.3.1-.6.3-1 .4-.2.1-.5.2-.7.3 0 0-.1 0-.1.1-.1.1 0 .2 0 .3l.2.1c.4.3.8.6 1.2.8.4.2.8.4 1.1.6.7.3 1.4.5 2.1.6.2 0 .4 0 .5.1.1-.1.1-.2.2-.2.7-.9 1.7-1 2.7-1.2zm-5.4-1.9c.6-.1 1.3-.3 2-.5-.7.2-1.4.3-2 .5zm6.6-2c.7-.3 1.4-.6 1.9-.8-.5.2-1.2.5-1.9.8-.7.3-1.5.6-2.3.8.8-.2 1.6-.5 2.3-.8z"/>
+ <path fill="url(#aq)" fill-rule="nonzero" d="M225.3 193.6l-8.1-2.3h-.2c-.4 0-.7.2-.8.6-.1.4.1.9.6 1l8.1 2.3h.2c.4 0 .7-.2.8-.6.1-.4-.2-.9-.6-1z"/>
+ <path fill="url(#ar)" fill-rule="nonzero" d="M164 84.3c-.2 0-.2.3 0 .3 1.8.5 3.3 1.9 3.7 3.7 0 .2.3.2.3 0 .5-1.8 1.9-3.3 3.7-3.7.2 0 .2-.3 0-.3-1.6-.4-2.9-1.6-3.5-3.1h-.7c-.6 1.5-1.9 2.7-3.5 3.1z"/>
+ <path fill="url(#as)" fill-rule="nonzero" d="M213.9 202.6l3.2.9h.2c.4 0 .7-.2.8-.6.1-.4-.1-.9-.6-1l-3.2-.9h-.2c-.4 0-.7.2-.8.6-.1.4.2.9.6 1z"/>
+ <path fill="url(#at)" fill-rule="nonzero" d="M227.9 119.2l-.3-.3c-.1-.1-.2-.2-.3-.2-.7-.5-1.8-1.1-3.2-1.1-2.9 0-4.4 2.2-4.5 2.3-.3.5-.2 1.2.3 1.5.5.3 1.2.2 1.5-.3 0 0 .9-1.3 2.6-1.3 1.1 0 1.9.5 2.3.9l.2.2.2.2c.2.3.6.5.9.5.2 0 .4-.1.6-.2.5-.3.7-1 .3-1.5.1 0-.1-.3-.6-.7z"/>
+ <path fill="url(#au)" fill-rule="nonzero" d="M196.8 121.5c.5.3 1.2.2 1.5-.3 0 0 .1-.2.4-.4.4-.4 1.2-.9 2.2-.9 1.7 0 2.6 1.3 2.6 1.3.2.3.6.5.9.5.2 0 .4-.1.6-.2.5-.3.7-1 .3-1.5-.1-.1-1.5-2.3-4.5-2.3-1.9 0-3.2 1-3.9 1.7l-.3.3c-.2.2-.3.4-.3.4-.2.4 0 1.1.5 1.4z"/>
+ <path fill="url(#av)" fill-rule="nonzero" d="M200.9 117.1c.4 0 .9.1 1.3.1 0-.1.1-.2.1-.3v-3c0-.7-.6-1.3-1.3-1.3-.7 0-1.3.6-1.3 1.3v3c0 .1 0 .2.1.3.3-.1.7-.1 1.1-.1z"/>
+ <path fill="url(#aw)" fill-rule="nonzero" d="M207.7 137.3l-1.5-.6c-.7-.3-1.5-.5-2.2-.8l-3.8-1.3-7.5-2.4c-.2-.1-.4-.1-.6-.2-1.1 1.2-2.3 2.4-2.8 2.7-.4.2-3.4-.5-3.5-.8-.1-.2.3-1.9.7-3.5-.5-.1-.9-.3-1.4-.4l-.6-.1c-.3 1.4-.7 3.1-.9 3.2-.4.3-2.9-1.2-3.1-1.5-.1-.2-.5-1.6-.7-2.9-.3-.1-.5-.1-.8-.2-.5-.1-1.1-.2-1.6-.4h-.2c-.2.1-.3.3-.3.5l.1.5c.3 1.1.7 2.2 1.2 3 .4.9.9 1.7 1.3 2.5.9 1.5 1.9 2.7 3 3.8.3.3.6.5.9.8.2-.1.4-.1.6-.1-.2 0-.4.1-.6.1 1.9 1.6 3.9 2.7 6 3.3h.2c2.2.6 4.4.8 6.9.5.4 0 .8-.1 1.2-.2 1.5-.3 3-.8 4.6-1.5.8-.4 1.6-.8 2.5-1.3.8-.5 1.7-1.1 2.6-1.9l.4-.3c0-.1.1-.1.1-.2.2 0 0-.2-.2-.3z"/>
+ <path fill="url(#ax)" fill-rule="nonzero" d="M231.2 80.2c.4 0 .6-.2.6-.5 0-.1.5-3 4.2-3.5 1.8-.3 2.9.5 3.5 1.2-3.5 2.2-4.1 5.7-3.9 7.3.1.6.6 1 1.1 1h.1c.6-.1 1-.6 1-1.2 0 0-.4-3.8 4-5.8 3.8-1.7 5.8 1 6.1 1.4.3.5 1 .6 1.5.3s.6-1 .3-1.5c-.5-.7-1.3-1.5-2.5-2.1.5-.9 1.6-2.1 3.8-2.4 3.3-.5 4.2 2.3 4.3 2.4.1.3.4.5.7.4.3-.1.5-.4.4-.7 0 0-1.3-3.8-5.5-3.2-2.8.4-4.1 2-4.7 3.1-1.5-.5-3.3-.5-5.3.4-.1.1-.3.1-.4.2-.8-1-2.2-2.1-4.7-1.7-4.5.6-5.1 4.4-5.2 4.4 0 .2.3.5.6.5z"/>
+ <path fill="#EDEDF0" fill-rule="nonzero" d="M207.7 223.7v.2c0 .2.1.4.1.6v.2c0 .2.1.4.1.6v.5c0 .1 0 .2-.1.2l-.2.2H207.3h-.1-.1c-.1 0-.1 0-.2-.1h-.1c-.1 0-.2-.1-.3-.2 0 0-.1 0-.1-.1-.1-.1-.2-.1-.3-.2l-.1-.1c-.1-.1-.2-.1-.3-.2-.1 0-.1-.1-.2-.1l-.3-.3-.2-.2-.3-.3-.2-.2-.5-.5-.1-.1-.4-.4c-1 .1-1.9.1-2.8.2 3.3 3.6 5 4.9 6.6 4.9.9 0 1.8-.4 2.3-1.2.4-.6.8-1.1.2-4.3-.8 0-1.5.1-2.3.1.1.4.1.6.2.8z"/>
+ <path fill="url(#ay)" fill-rule="nonzero" d="M207.7 223.7v.2c0 .2.1.4.1.6v.2c0 .2.1.4.1.6v.5c0 .1 0 .2-.1.2l-.2.2H207.3h-.1-.1c-.1 0-.1 0-.2-.1h-.1c-.1 0-.2-.1-.3-.2 0 0-.1 0-.1-.1-.1-.1-.2-.1-.3-.2l-.1-.1c-.1-.1-.2-.1-.3-.2-.1 0-.1-.1-.2-.1l-.3-.3-.2-.2-.3-.3-.2-.2-.5-.5-.1-.1-.4-.4c-1 .1-1.9.1-2.8.2 3.3 3.6 5 4.9 6.6 4.9.9 0 1.8-.4 2.3-1.2.4-.6.8-1.1.2-4.3-.8 0-1.5.1-2.3.1.1.4.1.6.2.8z"/>
+ <path fill="#EDEDF0" fill-rule="nonzero" d="M231.2 223.1c-.1.1-.1.2-.2.3-.1.2-.2.3-.3.4 0 .1-.1.2-.1.2-.1.2-.2.4-.4.5v.1c-.1.2-.3.4-.4.5 0 .1-.1.1-.1.1-.1.1-.2.2-.2.3 0 .1-.1.1-.1.1l-.2.2-.1.1c-.1.1-.1.1-.2.1l-.1.1c-.1 0-.1.1-.2.1 0 0-.1 0-.1.1h-.2-.1-.1-.1c-.1 0-.2-.1-.2-.1l-.1-.1c-.1-.1-.1-.3-.2-.6s-.1-.6-.1-1c0-.3-.1-.7-.1-1.1v-.9h-2.2c.2 4.5.8 4.9 1.4 5.4.5.4 1.2.6 1.8.6 2.3 0 4.3-2.8 5.8-5.9-.8 0-1.6 0-2.5-.1-.3.4-.4.5-.4.6z"/>
+ <path fill="url(#az)" fill-rule="nonzero" d="M231.2 223.1c-.1.1-.1.2-.2.3-.1.2-.2.3-.3.4 0 .1-.1.2-.1.2-.1.2-.2.4-.4.5v.1c-.1.2-.3.4-.4.5 0 .1-.1.1-.1.1-.1.1-.2.2-.2.3 0 .1-.1.1-.1.1l-.2.2-.1.1c-.1.1-.1.1-.2.1l-.1.1c-.1 0-.1.1-.2.1 0 0-.1 0-.1.1h-.2-.1-.1-.1c-.1 0-.2-.1-.2-.1l-.1-.1c-.1-.1-.1-.3-.2-.6s-.1-.6-.1-1c0-.3-.1-.7-.1-1.1v-.9h-2.2c.2 4.5.8 4.9 1.4 5.4.5.4 1.2.6 1.8.6 2.3 0 4.3-2.8 5.8-5.9-.8 0-1.6 0-2.5-.1-.3.4-.4.5-.4.6z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M167.7 80.6c-.1.2-.1.4-.2.6h.7c-.1-.2-.2-.4-.2-.6 0-.2-.3-.2-.3 0z"/>
+ <path fill="url(#aA)" fill-rule="nonzero" d="M167.7 80.6c-.1.2-.1.4-.2.6h.7c-.1-.2-.2-.4-.2-.6 0-.2-.3-.2-.3 0z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M118.4 58.7c.1.2.2.3.4.3h.1c.3-.1.4-.3.4-.6v-.1l-1.9-5.3c-.1-.3-.4-.4-.6-.3-.3.1-.4.4-.3.6l1.9 5.4z"/>
+ <path fill="url(#aB)" fill-rule="nonzero" d="M118.4 58.7c.1.2.2.3.4.3h.1c.3-.1.4-.3.4-.6v-.1l-1.9-5.3c-.1-.3-.4-.4-.6-.3-.3.1-.4.4-.3.6l1.9 5.4z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M134.3 121.9c.2-.2.5-.4.9-.2v.1l2.4-1.5v-3.5l-3.4 2.1v3h.1zM137.7 164.3c-.2.2-.4.6-.4.9 0 .9.1 1.8.4 2.6v-3.5z"/>
+ <path fill="url(#aC)" fill-rule="nonzero" d="M137.7 164.3c-.2.2-.4.6-.4.9 0 .9.1 1.8.4 2.6v-3.5z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M115.5 59c.3 0 .5-.2.5-.5v-5.3c0-.3-.2-.5-.5-.5s-.5.2-.5.5v5.3c0 .3.2.5.5.5z"/>
+ <path fill="url(#aD)" fill-rule="nonzero" d="M115.5 59c.3 0 .5-.2.5-.5v-5.3c0-.3-.2-.5-.5-.5s-.5.2-.5.5v5.3c0 .3.2.5.5.5z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M112.6 59c.3 0 .5-.2.5-.5v-5.8c0-.3-.2-.5-.5-.5s-.5.2-.5.5v5.8c0 .3.2.5.5.5z"/>
+ <path fill="url(#aE)" fill-rule="nonzero" d="M112.6 59c.3 0 .5-.2.5-.5v-5.8c0-.3-.2-.5-.5-.5s-.5.2-.5.5v5.8c0 .3.2.5.5.5z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M114 59c.3 0 .5-.2.5-.5v-4.8c0-.3-.2-.5-.5-.5s-.5.2-.5.5v4.8c0 .3.3.5.5.5z"/>
+ <path fill="url(#aF)" fill-rule="nonzero" d="M114 59c.3 0 .5-.2.5-.5v-4.8c0-.3-.2-.5-.5-.5s-.5.2-.5.5v4.8c0 .3.3.5.5.5z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M129.1 125.6l4.1-2.6v-.5c0-.1-.1-.1-.1-.2 0 0 .1 0 .1.1v-2.9l-5.6 3.6c-.8.3-1.1 1.2-.8 2 .2.6.8.9 1.3.9.2 0 .4 0 .6-.1.1-.1.2-.2.4-.3z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M139 115.8l-1.3.9v3.5l2.2-1.4v-8.3c-.5.7-.9 1.5-1.1 2.3-.1.5-.1 1-.1 1.4.1.6.1 1.1.3 1.6zM139.9 165.2c0-.7-.6-1.3-1.3-1.3-.4 0-.7.1-.9.4v3.5c.3 1.1.7 2.1 1.3 3 .6-.9.9-1.9.9-3v-2.6z"/>
+ <path fill="url(#aG)" fill-rule="nonzero" d="M139.9 165.2c0-.7-.6-1.3-1.3-1.3-.4 0-.7.1-.9.4v3.5c.3 1.1.7 2.1 1.3 3 .6-.9.9-1.9.9-3v-2.6z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M138.7 159.7c-.1.3 0 .7.4.8l.8.3v-4.4l-1.2 3.3z"/>
+ <path fill="url(#aH)" fill-rule="nonzero" d="M138.7 159.7c-.1.3 0 .7.4.8l.8.3v-4.4l-1.2 3.3z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M198 217c.5.6.9 1.3 1.5 1.9-.5-.7-1-1.3-1.5-1.9z"/>
+ <path fill="url(#aI)" fill-rule="nonzero" d="M198 217c.5.6.9 1.3 1.5 1.9-.5-.7-1-1.3-1.5-1.9z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M207.8 226l-.2.2c.1-.1.2-.1.2-.2z"/>
+ <path fill="url(#aJ)" fill-rule="nonzero" d="M207.8 226l-.2.2c.1-.1.2-.1.2-.2z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M224.1 117.6c1.4 0 2.5.5 3.2 1.1-.7-.5-1.8-1.1-3.2-1.1z"/>
+ <path fill="url(#aK)" fill-rule="nonzero" d="M224.1 117.6c1.4 0 2.5.5 3.2 1.1-.7-.5-1.8-1.1-3.2-1.1z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M224.1 119.9c1.1 0 1.9.5 2.3.9-.4-.4-1.2-.9-2.3-.9z"/>
+ <path fill="url(#aL)" fill-rule="nonzero" d="M224.1 119.9c1.1 0 1.9.5 2.3.9-.4-.4-1.2-.9-2.3-.9z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M134.3 121.9v-3.1l-1.1.7v2.9s-.1 0-.1-.1c0 .1.1.1.1.2v.5l2.1-1.3v-.1c-.5-.1-.8 0-1 .3z"/>
+ <path fill="url(#aM)" fill-rule="nonzero" d="M150.7 112.6l-4.5 2.7c-.3.2-.7.3-1 .3-.6 0-1.3-.3-1.6-.9-.4-.6-.4-1.3-.1-1.8.1-.4.4-.7.8-1l4.2-2.7c-.7-.5-1.5-.9-2.3-1.1-.4-.1-.8-.1-1.3-.1-2 0-3.8 1-4.9 2.5-.5.7-.9 1.5-1.1 2.3-.1.5-.1 1-.1 1.4 0 .5.1 1 .3 1.5v.1l-1.3.8-3.4 2.1-1.1.7-5.6 3.6c-.8.3-1.1 1.2-.8 2 .2.6.8.9 1.3.9.2 0 .4 0 .6-.1.1-.1.3-.1.4-.2l4.1-2.6 2.1-1.3 2.4-1.5 2.2-1.4.7-.5c.8.8 1.7 1.3 2.8 1.6.5.1.9.2 1.4.2 1.4 0 2.7-.5 3.7-1.3s1.8-2 2.1-3.4c.2-1 .2-1.9 0-2.8z"/>
+ <path fill="#FFFEFE" fill-rule="nonzero" d="M143.5 114.7c.4.6 1 .9 1.6.9.4 0 .7-.1 1-.3l4.5-2.7c.2.9.2 1.9 0 2.8-.3 1.4-1.1 2.6-2.1 3.4 1.1-.8 1.9-2.1 2.2-3.5.2-.9.2-1.9 0-2.8l-4.6 2.7c-.3.2-.7.3-1 .3-.6 0-1.3-.3-1.7-.9-.3-.5-.4-1.2-.2-1.7-.1.5-.1 1.2.3 1.8z"/>
+ <path fill="url(#aN)" fill-rule="nonzero" d="M143.5 114.7c.4.6 1 .9 1.6.9.4 0 .7-.1 1-.3l4.5-2.7c.2.9.2 1.9 0 2.8-.3 1.4-1.1 2.6-2.1 3.4 1.1-.8 1.9-2.1 2.2-3.5.2-.9.2-1.9 0-2.8l-4.6 2.7c-.3.2-.7.3-1 .3-.6 0-1.3-.3-1.7-.9-.3-.5-.4-1.2-.2-1.7-.1.5-.1 1.2.3 1.8z"/>
+ <path fill="#FFFEFE" fill-rule="nonzero" d="M126.8 125.1c-.3-.8 0-1.7.8-2l5.6-3.6 1.1-.7 3.4-2.1 1.3-.8v-.1l-11.5 7.3c-.8.3-1.1 1.3-.8 2 .3.6.8.9 1.4.9h.1c-.7 0-1.2-.3-1.4-.9z"/>
+ <path fill="url(#aO)" fill-rule="nonzero" d="M126.8 125.1c-.3-.8 0-1.7.8-2l5.6-3.6 1.1-.7 3.4-2.1 1.3-.8v-.1l-11.5 7.3c-.8.3-1.1 1.3-.8 2 .3.6.8.9 1.4.9h.1c-.7 0-1.2-.3-1.4-.9z"/>
+ <path fill="#FFFEFE" fill-rule="nonzero" d="M139.9 110.5c1.1-1.5 2.9-2.5 4.9-2.5.4 0 .8 0 1.3.1.8.2 1.6.6 2.3 1.1l.2-.1c-.7-.6-1.5-1-2.4-1.2-.4-.1-.8-.1-1.3-.1-2.8 0-5.4 2-6 4.9-.1.5-.1 1-.1 1.6 0-.5 0-1 .1-1.4.1-1 .5-1.7 1-2.4z"/>
+ <path fill="url(#aP)" fill-rule="nonzero" d="M139.9 110.5c1.1-1.5 2.9-2.5 4.9-2.5.4 0 .8 0 1.3.1.8.2 1.6.6 2.3 1.1l.2-.1c-.7-.6-1.5-1-2.4-1.2-.4-.1-.8-.1-1.3-.1-2.8 0-5.4 2-6 4.9-.1.5-.1 1-.1 1.6 0-.5 0-1 .1-1.4.1-1 .5-1.7 1-2.4z"/>
+ <path fill="url(#aQ)" fill-rule="nonzero" d="M106.4 207.6c.1 0 .1 0 0 0h.1c1-.3 1.9-.9 2.7-1.6-1.1-.3-2 .2-3.1.7-1 .2-2 .3-2.7 1l-.2.2c1.2.2 2.3 0 3.2-.3z"/>
+ <path fill="url(#aR)" fill-rule="nonzero" d="M118.3 196.1c.7-1.4.9-3 .6-4.6-.4-2.1-1.5-3.9-3.3-5.1-1.4-1-3-1.4-4.6-1.4-1.5 0-3 .5-4.2 1.3-.2-.2-.4-.3-.6-.5-1.2-.8-2.5-1.2-4-1.2-2.1 0-4 1-5.3 2.6h-.7c-2.7 0-5.2 1.4-6.8 3.6-1.8 2.6-1.9 5.9-.6 8.6-.7.5-1.2 1.1-1.7 1.8-1.3 1.8-1.8 4.1-1.4 6.3.4 2.2 1.6 4.1 3.5 5.4 1.2.9 2.6 1.4 4.1 1.5.4 1.1 1.2 2.1 2.2 2.8 1 .7 2.2 1.1 3.5 1.1 1 .9 2.2 1.6 3.7 2.2l1 5.5h2.3l-1.3-7.2c-1.3-.4-2.7-1-3.8-1.8-.4-.3-.7-.6-1-1h-.1l-.1-.1c-.4-.4-.7-1-.9-1.6v-.1c-.3-.9-.2-1.7.1-1.8.2-.1.4-.1.5 0 .1.1.2.3.2.4v.2c0 .2.1.4.1.6V213.9c.3.9 1 2 2.2 2.7.1 0 .2.1.3.1.6.4 1.3.6 1.9.9 0 0 .1 0 .1.1l-.5-3h-.1-.1c-.1-.1-.3-.1-.4-.2-.3-.1-.6-.3-.9-.5 0 0-.1 0-.1-.1-.1.3-.2.5-.4.7l-.3.3s0-.1-.1-.1c-.6-.7-.9-1.5-.9-2-.1-.6-.3-1-.8-1.3-.4-.3-1-.3-1.5-.1-.5.2-1.4.8-.7 3.2.1.5.4 1 .6 1.4l.1.1c-.6-.1-1.2-.3-1.7-.6-.6-.4-1-1-1.3-1.6-.1-.2-.2-.4-.2-.6v-.1c-.1-.3-.1-.6-.1-.9-.3.1-.7.1-1 .1-1.2 0-2.5-.3-3.6-1.1-2.2-1.5-3-4.1-2.4-6.5l.3-.9v-.1c.2-.4.4-.7.6-1.1.8-1.2 2-2 3.2-2.4l-.
1-.1c-2.1-2.1-2.5-5.4-.8-7.9.5-.7 1-1.2 1.6-1.6 1-.7 2.2-1 3.3-1 .6 0 1.2.1 1.8.2 0-.1.1-.1.1-.2.1-.3.2-.5.4-.7.7-1 1.8-1.6 2.9-1.8.3 0 .5-.1.8-.1.9 0 1.8.2 2.7.8.7.5 1.3 1.2 1.6 2 .1-.1.1-.2.2-.2 1.1-1.4 2.7-2.1 4.3-2.1.7 0 1.3.1 2 .3.5.2.9.4 1.3.7 2.6 1.8 3.2 5.3 1.4 7.9-.2.2-.3.4-.5.6.1 0 .1.1.2.1.3.1.5.3.8.4.2.2.4.3.7.5 2.4 2.2 2.9 5.8 1 8.5-1.2 1.8-3.2 2.8-5.3 2.8h-.6c-.1 1.1-.4 2.1-1.1 3-.1.1-.1.2-.2.3-.1.2-.3.3-.5.5l-.4.4-.1.1c-.4.3-.8.6-1.2.8h-.1c-.1 0-.2.1-.3.1-1 .4-2 .3-2 .3-.2 0-.3.1-.4.2-.1.1-.2.2-.2.3 0 .3.2.6.5.6h.4c.5 0 1.3-.1 2.2-.4h.1l.6 3.3c.2-.1.4-.1.5-.2.6-.3 1.2-.7 1.6-1.1l.1-.1c.1-.1.1-.3 0-.9-.1-.6-.4-1.2-.6-1.6-.1-.2-.1-.3-.2-.5s0-.4.1-.6l.2-.2h.2c.2 0 .5.1.6.4 0 .1.1.2.2.4.2.4.4.9.5 1.4v.1c.6-1.2.9-2.5 1.1-3.7v-.1c.1-.3.3-.5.6-.5h.1c.3.1.5.4.5.7-.4 1.9-1 4.2-2.4 5.8l-.1.1c-.6.6-1.3 1.2-2.1 1.5-.2.1-.5.2-.7.2h-.1l1 5.4c.1.3-.2.7-.7.9l2.7.3c.2-.5.3-1 .2-1.6l-.7-3.6c.8-.4 1.4-1 2.1-1.7l.1-.1c1.8-2.1 2.5-4.9 2.8-6.8.1-.8 0-1.5-.5-2.1 1.2-.6 2.2-1.5 3-2.7 1.3-1.9
1.8-4.2 1.4-6.5.2-2.4-.8-4.2-2.2-5.4z"/>
+ <path fill="#EDEDF0" fill-rule="nonzero" d="M107.9 226.5h-.4c-.8 0-1.5-.2-1.5-.6v-.1h-2.3l.1.5c.2 1.2 1.3 2.5 3.8 2.5 1.5 0 3.5-.5 4.6-1.8.2-.2.3-.5.4-.7l-2.7-.3c-.5.2-1.3.4-2 .5z"/>
+ <path fill="url(#aS)" fill-rule="nonzero" d="M107.9 226.5h-.4c-.8 0-1.5-.2-1.5-.6v-.1h-2.3l.1.5c.2 1.2 1.3 2.5 3.8 2.5 1.5 0 3.5-.5 4.6-1.8.2-.2.3-.5.4-.7l-2.7-.3c-.5.2-1.3.4-2 .5z"/>
+ <path d="M-30-28h352v303H-30z"/>
+ </g>
+</svg>
diff --git a/browser/extensions/onboarding/content/img/figure_default.svg b/browser/extensions/onboarding/content/img/figure_default.svg
new file mode 100644
index 000000000000..c52e4b8500f7
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/figure_default.svg
@@ -0,0 +1 @@
+<svg width="272" height="247" viewBox="0 0 272 247" xmlns="http://www.w3.org/2000/svg"><title>default-browser</title><defs><linearGradient x1="-12.708%" y1="-28.803%" x2="102.994%" y2="115.824%" id="a"><stop stop-color="#FFCCD7" offset="40.06%"/><stop stop-color="#EDBEE2" offset="100%"/></linearGradient><linearGradient x1="-78.121%" y1="-55.724%" x2="136.609%" y2="135.651%" id="b"><stop stop-color="#FFE900" offset="28.07%"/><stop stop-color="#FFCC07" offset="32.21%"/><stop stop-color="#FF8119" offset="41.22%"/><stop stop-color="#FF0B36" offset="54.35%"/><stop stop-color="#FF0039" offset="55.5%"/><stop stop-color="#ED00B5" offset="85.24%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><path d="M-36-18h352v303H-36z"/><g fill-rule="nonzero"><g fill="#D7D7DB"><path d="M116.6 201.9H42.1c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h74.6c.6 0 1.1.5 1.1 1.1-.1.6-.6 1.1-1.2 1.1zM104 195.9H71c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h33c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zM109.7 206.7h-3.3c-.3 0-.6-.
2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.2.6-.6.6zm-12.2 0H84.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-23.5 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6H74c.3 0 .6.2.6.6 0 .4-.2.6-.6.6zm-5.5 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-12.3 0H42.8c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-23.4 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-5.6 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-12.3 0H1.5c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6z"/></g><path d="M138.8 171.9c-2.8 0-5-2.1-5-4.8V49.7c0-2.9 2.4-5.3 5.3-5.3h126.1c2.9 0 5.3 2.4 5.3 5.3v117.4c0 2.6-2.2 4.8-5 4.8H138.8z" fill="#FFF"/><path d="M265.2 45.4c2.3 0 4.2 1.9 4.2 4.2V167c0 2-1.7 3.7-3.9 3.7H138.8c-2.2 0-3.9-1.6-3.9-3.7V49.7c0-2.3 1.9-4.2 4.2-4.2h126.1v-.1zm0-2.2H139.1c-3.5 0-6.4 2.9-6.4 6.4V167c0 3.2 2.8 5.9 6.1 5.9h126.7c3.4 0 6.1-2.6 6.1-5.9V49.7c0-3.
6-2.9-6.5-6.4-6.5z" fill="#D7D7DB"/><path d="M264.8 66.4V165c0 .9-.1 1.2-.1 1.2s-.3.1-1.2.1H140.8c-.9 0-1.2-.1-1.2-.1s-.1-.3-.1-1.2V66.4h125.3zm1.1-1.1H138.3V165c0 2 .4 2.4 2.4 2.4h122.7c2 0 2.4-.4 2.4-2.4V65.3h.1z" fill="#D7D7DB"/><g fill="#D7D7DB"><circle cx="2.9" cy="3.3" r="2.8" transform="translate(143 52)"/><circle cx="3.1" cy="3.3" r="2.8" transform="translate(152 52)"/><path d="M233.8 58.5h-63.4c-1.7 0-3.1-1.4-3.1-3.1v-.3c0-1.7 1.4-3.1 3.1-3.1h63.4c1.7 0 3.1 1.4 3.1 3.1v.3c0 1.7-1.4 3.1-3.1 3.1z"/><g><circle cx="3.2" cy="3.3" r="2.8" transform="translate(246 52)"/><circle cx="3.4" cy="3.3" r="2.8" transform="translate(255 52)"/></g></g><path d="M21.8 23.4h23.9S38.2 6.7 54.1 4.5c14.2-1.9 19.8 12.6 19.8 12.6s1.7-8.4 10.1-6.8c8.3 1.6 14.5 15 14.5 15h20.8" fill="#F9F9FA"/><path d="M119.7 21.4h-5.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h5.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-15.3 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-5.5-.1c-.2 0-.4-.1-.5-.3-.2-.3-.7-1.
4-1.7-2.9-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2 1 1.5 1.6 2.6 1.7 2.9.1.3 0 .6-.2.8-.2.1-.3.1-.3.1zm-52.8-.6h-1.6c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h.8c-.1-.2-.2-.5-.3-.9-.1-.3.1-.6.4-.7.3-.1.6.1.7.4.3 1 .6 1.6.6 1.6.1.2.1.4 0 .5-.2.2-.4.3-.6.3zm-10.5 0H22.2c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm8.9-6c-.3 0-.5-.2-.6-.5 0-.4-.1-.8-.1-1.1 0-.3.2-.6.5-.6s.6.2.6.5c0 .4.1.7.1 1.1.1.3-.1.6-.5.6.1 0 0 0 0 0zM73.6 13c-.2 0-.4-.1-.5-.3-.1-.3-.3-.6-.5-1-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.2.4.4.7.5 1 .1.3 0 .6-.2.8-.1 0-.2.1-.3.1zm17.9-1.5c-.1 0-.3 0-.4-.1-2.3-2.1-4.6-3.4-6.8-3.8-.7-.1-1.4-.2-2-.2-1 0-2 .2-2.8.5-.3.1-.6 0-.7-.3-.1-.3 0-.6.3-.7 1-.4 2.1-.6 3.3-.6.7 0 1.4.1 2.2.2 2.4.5 4.9 1.8 7.3 4 .2.2.2.6 0 .8-.1.2-.3.2-.4.2zM70.6 8.3c-.2 0-.3-.1-.4-.2-.7-.9-1.5-1.6-2.3-2.3-.2-.2-.3-.6-.1-.8.2-.2.6-.3.8-.1.8.7 1.6 1.6 2.4 2.5.2.2.2.6-.1.8-.1.1-.2.1-.3.1zm-23-3.8c-.2 0-.3-.1-.4-.2-.2-.2-.2-.6.1-.8C49.1 2 51.5 1.1 54.5.6c2.1-.3 4.1-.2 6 .1.3.1.5.4.4.7-.1.3-.3.5-.7.4-1.8-.4-3.7-
.4-5.6-.1-2.8.4-5 1.3-6.6 2.6-.1.2-.2.2-.4.2z" fill="#D7D7DB"/><path d="M120.4 25.6H21.8c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h98.6c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1z" fill="#F9F9FA"/><path d="M15.2 181.9c-2.8 0-5-2.1-5-4.8V59.7c0-2.9 2.4-5.3 5.3-5.3h126.1c2.9 0 5.3 2.4 5.3 5.3v117.4c0 2.6-2.2 4.8-5 4.8H15.2z" fill="#FFF"/><path d="M141.6 55.5c2.3 0 4.2 1.9 4.2 4.2V177.1c0 2-1.7 3.7-3.9 3.7H15.2c-2.2 0-3.9-1.6-3.9-3.7V59.7c0-2.3 1.9-4.2 4.2-4.2h126.1zm0-2.2H15.5c-3.5 0-6.4 2.9-6.4 6.4V177.1c0 3.2 2.8 5.9 6.1 5.9h126.7c3.4 0 6.1-2.6 6.1-5.9V59.7c0-3.5-2.9-6.4-6.4-6.4z" fill="#D7D7DB"/><path d="M141.2 76.4V175c0 .9-.1 1.2-.1 1.2s-.3.1-1.2.1H17.2c-.9 0-1.2-.1-1.2-.1s-.1-.3-.1-1.2V76.4h125.3zm1.1-1.1H14.8V175c0 2 .4 2.4 2.4 2.4h122.7c2 0 2.4-.4 2.4-2.4V75.3z" fill="#D7D7DB"/><g fill="#D7D7DB"><circle cx="3.3" cy="3.3" r="2.8" transform="translate(19 62)"/><circle cx="3.5" cy="3.3" r="2.8" transform="translate(28 62)"/><path d="M110.2 68.6H46.9c-1.7 0-3.1-1.4-3.1-3.1v-.3c0-1.7 1.4
-3.1 3.1-3.1h63.4c1.7 0 3.1 1.4 3.1 3.1v.3c-.1 1.7-1.5 3.1-3.2 3.1z"/><g><circle cx="3.6" cy="3.3" r="2.8" transform="translate(122 62)"/><circle cx="2.8" cy="3.3" r="2.8" transform="translate(132 62)"/></g></g><path d="M210 28.8h13.3s-4.2-9.3 4.7-10.5c7.9-1.1 11 7 11 7s.9-4.7 5.6-3.8c4.6.9 8 8.3 8 8.3h11.6" fill="#F9F9FA"/><path d="M223.7 27.3h-13.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.3v.5l.5-.2c.1.2.1.4 0 .6-.2.2-.3.3-.5.3zm36.5-.2h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-20.8-3.3h-.1c-.3-.1-.5-.4-.4-.7.1-.4 1.1-4.3 5-4.3.4 0 .8 0 1.2.1 1.7.3 3.5 1.4 5.2 3.1.2.2.2.6 0 .8-.2.2-.6.2-.8 0-1.6-1.6-3.1-2.5-4.6-2.8-.4-.1-.7-.1-1-.1-3 0-3.8 2.8-3.9 3.4-.1.3-.4.5-.6.5zm-15.3-5.1c-.1 0-.3 0-.4-.1-.2-.2-.2-.6 0-.8.8-.8 1.8-1.5 3.1-1.8.3-.1.6.1.7.4.1.3-.1.6-.4.7-1.1.3-2 .8-2.6 1.5-.1.1-.3.1-.4.1zm8.3-1.6h-.2c-.3-.1-.7-.2-1-.2-.3-.1-.5-.3-.5-.6.1-.3.3-.5.6-.5l1.2.3c.3.1.5.4.4.7 0 .1-.2.3-.5.3z" fill="#D7D7DB"/><path d="M265.1 31h-54.9c-.6 0-1.1-.5-1.1-1.1 0-.6.
5-1.1 1.1-1.1h54.9c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1zM237.9 58H87.8c-5.8 0-10.6 4.8-10.6 10.6v139.9c0 5.5 4.6 9.9 10.2 9.9h150.9c5.6 0 10.2-4.5 10.2-9.9V68.6c0-5.8-4.7-10.6-10.6-10.6z" fill="#F9F9FA"/><ellipse fill="#EDEDF0" cx="164.5" cy="239.7" rx="82" ry="6.8"/><path d="M148.2 68.3c-.5.4-1.1.6-1.8.6s-1.3-.2-1.8-.6l-6.3-5.1-.2-.2H87.7c-2.8 0-5 2.2-5 5v140c0 2.4 2.1 4.4 4.6 4.4h150.9c2.6 0 4.6-1.9 4.6-4.4V68.1c0-2.8-2.2-5-5-5h-83.3c-.1 0-.1.1-.2.2l-6.1 5zm-41.4 3.1c1.9 0 3.4 1.5 3.4 3.4s-1.5 3.4-3.4 3.4-3.4-1.5-3.4-3.4 1.5-3.4 3.4-3.4zm-10.9 0c1.9 0 3.4 1.5 3.4 3.4s-1.5 3.4-3.4 3.4-3.4-1.5-3.4-3.4 1.5-3.4 3.4-3.4zm133.9 0c1.9 0 3.4 1.5 3.4 3.4s-1.5 3.4-3.4 3.4-3.4-1.5-3.4-3.4 1.6-3.4 3.4-3.4zm-10.9 0c1.9 0 3.4 1.5 3.4 3.4s-1.5 3.4-3.4 3.4-3.4-1.5-3.4-3.4 1.6-3.4 3.4-3.4zm-18.3-.4c2 0 3.7 1.6 3.7 3.7v.3c0 2-1.6 3.7-3.7 3.7h-5.8c.9 2.6.9 5.5-.2 8h44.3v118.7c0 2.4-.5 2.9-2.9 2.9H89.8c-2.4 0-2.9-.5-2.9-2.9V86.7h73.3c-1.1-2.6-1.1-5.5-.2-8h-34.9c-2 0-3.7-1.6-3.7-3.7v-.3c0-2 1.6-3.7
3.7-3.7h75.5z" fill="#FFF"/><path d="M190.6 91.5l-11.1 9c-.6.5-1.3.7-2.1.7s-1.5-.3-2.1-.7l-11.1-9c-1.3-.8-2.3-1.9-3.1-3.1-.4-.6-.7-1.1-.9-1.7H86.9v118.7c0 2.4.5 2.9 2.9 2.9H236c2.4 0 2.9-.5 2.9-2.9V86.7h-44.3c-.3.6-.6 1.2-1 1.8-.8 1.2-1.8 2.2-3 3zm10.1 24c7.4 8.8 8.2 21.5 1.8 31.1-1.9 2.9-4.3 5.3-7.2 7.3l-30.2 24.7c-.9.7-2.1 1.1-3.3 1.1-1.2 0-2.4-.4-3.3-1.2l-30.4-24.6c-3-2-5.6-4.5-7.5-7.5-6.7-10.3-5.3-24 3.4-32.7 4.9-4.9 11.4-7.6 18.3-7.6 7 0 13.5 2.7 18.4 7.6.3.3.6.4.8.4.2 0 .5-.1.9-.4 4.9-4.9 11.4-7.6 18.3-7.6 7.8.2 15 3.5 20 9.4z" fill="url(#a)"/><path d="M162.5 113.8c-.3.3-.7.4-.9.4-.2 0-.5-.1-.8-.4-4.9-4.9-11.4-7.6-18.4-7.6-6.9 0-13.4 2.7-18.3 7.6-8.7 8.6-10.1 22.4-3.4 32.7 1.9 3 4.4 5.5 7.5 7.5l30.4 24.6c.9.7 2.1 1.2 3.3 1.2 1.2 0 2.3-.4 3.3-1.1l30.2-24.7c2.9-2 5.3-4.4 7.2-7.3 6.3-9.6 5.6-22.3-1.8-31.1-5-5.9-12.2-9.3-19.9-9.3-7 0-13.5 2.7-18.4 7.5zM199 117c6.7 8 7.4 19.7 1.6 28.4-1.8 2.8-4.2 5-6.7 6.7l-30.3 24.7c-.6.4-1.2.7-1.9.7s-1.3-.2-1.9-.7l-30.5-24.7c-2.6-1.7-5-4-6.9-6.9-
6.1-9.3-4.8-22 3.1-29.9 4.6-4.6 10.7-6.9 16.8-6.9 6.1 0 12.2 2.3 16.8 7 .7.7 1.5 1 2.4 1 .9 0 1.7-.3 2.4-1 4.6-4.6 10.7-6.9 16.8-6.9 6.8 0 13.5 2.8 18.3 8.5z" fill="#FFF"/><path d="M138 115.4c-7.6 1.7-13.2 8.1-13.8 15.8-.2 2.2 1.5 4.1 3.6 4.3h.3c2.1 0 3.8-1.6 3.9-3.6.4-4.3 3.4-7.8 7.6-8.7 2.2-.5 3.5-2.6 3-4.7-.3-2.2-2.4-3.6-4.6-3.1z" fill="#F9F9FA"/><path d="M184.5 71.4c-2.6 0-5.1.9-7.1 2.6-2-1.7-4.5-2.6-7.1-2.6-2.9 0-5.7 1.1-7.7 3.2-1.2 1.2-2 2.5-2.6 4-.9 2.6-.9 5.5.2 8 .3.6.6 1.2.9 1.7.8 1.2 1.8 2.3 3.1 3.1l11.1 9c.6.5 1.3.7 2.1.7s1.5-.3 2.1-.7l11.1-9c1.2-.8 2.2-1.8 3-3 .4-.6.7-1.2 1-1.8 1.1-2.6 1.1-5.5.2-8-.4-1.2-1.1-2.3-1.9-3.3-2.1-2.5-5.2-3.9-8.4-3.9zm7.3 15.8c-.7 1-1.5 1.8-2.5 2.5l-11.2 9.1c-.2.2-.4.2-.7.2-.2 0-.5-.1-.7-.2l-11.2-9.1c-1-.6-1.9-1.5-2.6-2.5-2.2-3.4-1.8-8.1 1.1-11 1.7-1.7 3.9-2.5 6.2-2.5 2.2 0 4.5.9 6.2 2.6.2.2.6.4.9.4.3 0 .6-.1.9-.4 1.7-1.7 3.9-2.6 6.2-2.6 2.5 0 4.9 1 6.7 3.1 2.5 2.9 2.8 7.2.7 10.4z" fill="#FFF"/><path d="M168.7 76.2c-2.8.6-4.8 3-5.1 5.8-.1.8.5 1
.5 1.3 1.6h.1c.8 0 1.4-.6 1.5-1.3.1-1.6 1.3-2.9 2.8-3.2.8-.2 1.3-1 1.1-1.7-.1-.9-.9-1.4-1.7-1.2zM138.1 63l.2.2 6.3 5.1c.5.4 1.1.6 1.8.6.6 0 1.3-.2 1.8-.6l6.2-5.1c.1 0 .1-.1.2-.2.7-.5 1.3-1.1 1.7-1.8.1-.1.2-.3.2-.4 1.5-2.6 1.2-5.9-.7-8.1-1.4-1.6-3.4-2.6-5.5-2.6-1.4 0-2.8.4-4 1.2-1.2-.8-2.6-1.2-4-1.2-1.9 0-3.7.7-5.1 2.1-2.3 2.3-2.7 5.8-1.2 8.6.1.1.1.3.2.4.6.7 1.2 1.3 1.9 1.8zm.8-9.2c1-1 2.2-1.4 3.5-1.4 1.3 0 2.5.5 3.5 1.5.1.1.3.2.5.2s.4-.1.5-.2c1-1 2.2-1.4 3.5-1.4 1.4 0 2.8.6 3.8 1.8 1.4 1.7 1.5 4.1.3 5.9-.4.6-.9 1-1.4 1.4l-6.3 5.1c-.1.1-.3.1-.4.1-.1 0-.3 0-.4-.1l-6.3-5.1c-.5-.4-1-.8-1.4-1.4-1.3-2.2-1.1-4.8.6-6.4z" fill="#F9F9FA"/><path d="M139.3 58c.1 0 .1 0 0 0 .5 0 .9-.3.9-.8.1-.9.7-1.6 1.6-1.8.4-.1.7-.5.6-1-.1-.4-.5-.7-1-.6-1.6.4-2.7 1.7-2.9 3.3 0 .4.4.8.8.9z" fill="#F9F9FA"/><path d="M245.2 68.1V208c0 3.6-3.1 6.6-6.9 6.6H87.4c-3.8 0-6.9-3-6.9-6.6V68.1c0-4 3.2-7.2 7.2-7.2h48.4c.1.1.1.3.2.4.5.7 1.1 1.3 1.8 1.8H87.7c-2.8 0-5 2.2-5 5V208c0 2.4 2.1 4.4 4.6 4.4h150.9c2.6 0 4.6-1.9 4.6-
4.4V68.1c0-2.8-2.2-5-5-5h-83.3c.7-.5 1.3-1.1 1.7-1.8.1-.1.2-.3.2-.4h81.4c4.1-.1 7.4 3.2 7.4 7.2zM95.9 78.2c1.9 0 3.4-1.5 3.4-3.4s-1.5-3.4-3.4-3.4-3.4 1.5-3.4 3.4 1.5 3.4 3.4 3.4zm10.9 0c1.9 0 3.4-1.5 3.4-3.4s-1.5-3.4-3.4-3.4-3.4 1.5-3.4 3.4 1.5 3.4 3.4 3.4zm14.6-3.6v.3c0 2 1.6 3.7 3.7 3.7H160c.5-1.5 1.4-2.8 2.6-4 2.1-2.1 4.8-3.2 7.7-3.2 2.6 0 5.1.9 7.1 2.6 2-1.7 4.5-2.6 7.1-2.6 3.2 0 6.3 1.4 8.4 3.9.8 1 1.5 2.1 1.9 3.3h5.8c2 0 3.7-1.6 3.7-3.7v-.3c0-2-1.6-3.7-3.7-3.7h-75.5c-2 .1-3.7 1.7-3.7 3.7zm97.5 3.6c1.9 0 3.4-1.5 3.4-3.4s-1.5-3.4-3.4-3.4-3.4 1.5-3.4 3.4 1.6 3.4 3.4 3.4zm10.9 0c1.9 0 3.4-1.5 3.4-3.4s-1.5-3.4-3.4-3.4-3.4 1.5-3.4 3.4 1.6 3.4 3.4 3.4zm-49 30.3c6.7 0 13.4 2.8 18.2 8.5 6.7 8 7.4 19.7 1.6 28.4-1.8 2.8-4.2 5-6.7 6.7l-30.3 24.7c-.6.4-1.2.7-1.9.7s-1.3-.2-1.9-.7l-30.5-24.7c-2.6-1.7-5-4-6.9-6.9-6.1-9.3-4.8-22 3.1-29.9 4.6-4.6 10.7-6.9 16.8-6.9 6.1 0 12.2 2.3 16.8 7 .7.7 1.5 1 2.4 1 .9 0 1.7-.3 2.4-1 4.8-4.6 10.9-6.9 16.9-6.9zm-38 9.9c-.5-2.2-2.6-3.5-4.7-3-7.6 1.7-13.2 8.1-1
3.8 15.8-.2 2.2 1.5 4.1 3.6 4.3h.3c2.1 0 3.8-1.6 3.9-3.6.4-4.3 3.4-7.8 7.6-8.7 2.2-.5 3.6-2.7 3.1-4.8zm48.4-41.6c2.5 2.9 2.7 7.3.6 10.5-.7 1-1.5 1.8-2.5 2.5l-11.2 9.1c-.2.2-.4.2-.7.2-.2 0-.5-.1-.7-.2l-11.2-9.1c-1-.6-1.9-1.5-2.6-2.5-2.2-3.4-1.8-8.1 1.1-11 1.7-1.7 3.9-2.5 6.2-2.5 2.2 0 4.5.9 6.2 2.6.2.2.6.4.9.4.3 0 .6-.1.9-.4 1.7-1.7 3.9-2.6 6.2-2.6 2.5-.1 5 .9 6.8 3zm-20.7.5c-.2-.8-1-1.3-1.7-1.1-2.8.6-4.8 3-5.1 5.8-.1.8.5 1.5 1.3 1.6h.1c.8 0 1.4-.6 1.5-1.3.1-1.6 1.3-2.9 2.8-3.2.7-.2 1.2-1 1.1-1.8zM138.2 60c-1.3-1.9-1-4.6.6-6.2 1-1 2.2-1.4 3.5-1.4 1.3 0 2.5.5 3.5 1.5.1.1.3.2.5.2s.4-.1.5-.2c1-1 2.2-1.4 3.5-1.4 1.4 0 2.8.6 3.8 1.8 1.4 1.7 1.5 4.1.3 5.9-.4.6-.9 1-1.4 1.4l-6.3 5.1c-.1.1-.3.1-.4.1-.1 0-.3 0-.4-.1l-6.3-5.1c-.5-.5-1-1-1.4-1.6zm.4-2.9c0 .5.3.9.8.9h.1c.4 0 .8-.3.8-.8.1-.9.7-1.6 1.6-1.8.4-.1.7-.5.6-1-.1-.4-.5-.7-1-.6-1.6.3-2.8 1.7-2.9 3.3zM158 42.4c-2.1-3.2-1.6-7.5 1.1-10.2 1.6-1.6 3.6-2.4 5.7-2.4s4.2.8 5.7 2.4c.2.2.5.3.8.3.3 0 .6-.1.8-.3 1.6-1.6 3.7-2.4 5.7-2.4 2.3 0 4.6 1 6.2
2.9 2.3 2.7 2.5 6.7.6 9.7-.6 1-1.4 1.7-2.3 2.3L172 53.2c-.2.2-.4.2-.6.2-.2 0-.5-.1-.6-.2l-10.4-8.4c-1-.7-1.8-1.4-2.4-2.4zm.6-4.8c-.1.7.5 1.4 1.2 1.5h.1c.7 0 1.3-.5 1.3-1.2.1-1.5 1.2-2.7 2.6-3 .7-.2 1.2-.9 1-1.6-.2-.7-.9-1.2-1.6-1-2.5.5-4.4 2.6-4.6 5.3z" fill="url(#b)"/><path d="M159 46.5l10.3 8.4c.6.5 1.3.7 2 .7s1.5-.3 2-.7l10.3-8.4c1.1-.8 2.1-1.7 2.8-2.8 2.5-3.8 2.2-8.9-.7-12.4-2-2.3-4.9-3.7-7.9-3.7-2.4 0-4.7.8-6.6 2.3-1.9-1.5-4.2-2.4-6.6-2.4-2.8 0-5.3 1.1-7.3 3-3.5 3.4-4 8.9-1.4 13 1 1.3 1.9 2.2 3.1 3zm0-14.3c1.6-1.6 3.6-2.4 5.7-2.4s4.2.8 5.7 2.4c.2.2.5.3.8.3.3 0 .6-.1.8-.3 1.6-1.6 3.7-2.4 5.7-2.4 2.3 0 4.6 1 6.2 2.9 2.3 2.7 2.5 6.7.6 9.7-.6 1-1.4 1.7-2.3 2.3L172 53.2c-.2.2-.4.2-.6.2-.2 0-.5-.1-.6-.2l-10.4-8.4c-.9-.6-1.7-1.4-2.4-2.4-2.1-3.2-1.7-7.5 1-10.2z" fill="#F9F9FA"/><path d="M159.8 39.1h.1c.7 0 1.3-.5 1.3-1.2.1-1.5 1.2-2.7 2.6-3 .7-.2 1.2-.9 1-1.6-.2-.7-.9-1.2-1.6-1-2.6.6-4.5 2.8-4.7 5.4 0 .6.6 1.3 1.3 1.4z" fill="#F9F9FA"/></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/figure_library.svg b/browser/extensions/onboarding/content/img/figure_library.svg
new file mode 100644
index 000000000000..aad20181b996
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/figure_library.svg
@@ -0,0 +1,689 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="267" height="240">
+ <defs>
+ <linearGradient id="a" x1="-287.251713%" x2="363.382118%" y1="-127.999431%" y2="247.172106%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="b" x1="-8347.28%" x2="11424.26%" y1="-8337.33%" y2="11434.21%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="c" x1="-2354.3122%" x2="2468.01463%" y1="-738.5544%" y2="843.1688%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="d" x1="-11316.73%" x2="8454.81%" y1="-5346.60952%" y2="4068.40952%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="e" x1="-156.148629%" x2="205.305484%" y1="-480.49483%" y2="430.938303%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="f" x1="-11777.11%" x2="7994.43%" y1="-1542.90541%" y2="1128.92432%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="g" x1="-1966.10678%" x2="1385.00169%" y1="-2646.49545%" y2="1847.03636%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="h" x1="-1259.26087%" x2="945.558937%" y1="-1283.95691%" y2="942.373333%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="i" x1="-4828.28387%" x2="3895.46452%" y1="-2550.56897%" y2="2112.12414%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="j" x1="-1420.34388%" x2="1159.68716%" y1="-3565.4194%" y2="2819.67133%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="k" x1="-6578.28%" x2="13193.26%" y1="-6566.33%" y2="13205.21%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="l" x1="-690.589109%" x2="1266.98911%" y1="-1068.60597%" y2="1882.37015%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="m" x1="-3693.78418%" x2="6240.18862%" y1="-1360.99327%" y2="2373.67085%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="n" x1="-51.4002563%" x2="99.3496099%" y1="-59.6430664%" y2="133.087695%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="o" x1="-47.4074974%" x2="121.810771%" y1="-106.87209%" y2="132.306567%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="p" x1="-701.943676%" x2="609.202314%" y1="-537.964802%" y2="487.22249%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="q" x1="-1074.53%" x2="834.91%" y1="-358.218519%" y2="348.981481%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="r" x1="-5230.64688%" x2="3222.21875%" y1="-2856.73793%" y2="1806.91207%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="s" x1="-1536.40601%" x2="955.898444%" y1="-3896.2795%" y2="2345.49035%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="t" x1="-2573.03736%" x2="4141.82528%" y1="-7694%" y2="12077.54%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="u" x1="-105.756%" x2="253.726545%" y1="-959.543678%" y2="1313.04713%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="v" x1="-113.495628%" x2="246.641894%" y1="-1951.93556%" y2="2441.74%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="w" x1="-203.741261%" x2="362.77851%" y1="-8794.04%" y2="10977.5%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="x" x1="-8901.65455%" x2="9072.47273%" y1="-4629.9%" y2="4785.11905%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="y" x1="-135.885507%" x2="273.463147%" y1="-6854.87692%" y2="8354%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="z" x1="-237.240755%" x2="222.496119%" y1="-950.902381%" y2="659.16369%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="A" x1="-323.294457%" x2="276.418625%" y1="-16784.12%" y2="10262.94%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="B" x1="-324.50885%" x2="273.863496%" y1="-16876.15%" y2="10170.29%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="C" x1="-8757.43409%" x2="-13250.9636%" y1="-25788.3267%" y2="-38969.3533%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="D" x1="-4977.81154%" x2="-7512.62308%" y1="-21732.3667%" y2="-32716.5611%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="E" x1="-778.197863%" x2="-1200.66709%" y1="-2873.70382%" y2="-4382.98244%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="F" x1="-3162.7925%" x2="-4810.42083%" y1="-25654.4533%" y2="-38835.4867%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="G" x1="-1053.32338%" x2="1514.40909%" y1="-4984.71765%" y2="6645.6%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="H" x1="-5039.72338%" x2="-7607.45714%" y1="-23040.7706%" y2="-34671.0941%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="I" x1="143.631333%" x2="-4.86%" y1="790.352632%" y2="-381.952632%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="J" x1="-2552.41333%" x2="-3870.516%" y1="-20494.2053%" y2="-30900.2789%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="K" x1="-1250.60304%" x2="-1918.56115%" y1="-38487.33%" y2="-58258.87%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="L" x1="-37598.9%" x2="-57370.44%" y1="-17879.1857%" y2="-27294.2048%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="M" x1="-882.727251%" x2="-1363.78637%" y1="-29434.6846%" y2="-44643.5692%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="N" x1="-268.313828%" x2="273.677355%" y1="-882.118713%" y2="699.481287%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="O" x1="-420.455862%" x2="943.098621%" y1="-4784.28571%" y2="9338.24286%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="P" x1="-587.656122%" x2="1429.84796%" y1="-3859.74375%" y2="8497.475%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="Q" x1="-597.567708%" x2="1461.96771%" y1="-6217.96%" y2="13553.58%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="R" x1="-989.3%" x2="1835.20571%" y1="-6563.19091%" y2="11410.9364%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="S" x1="-1683.03158%" x2="3520.00526%" y1="-4061.93125%" y2="8295.28125%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="T" x1="-289.56383%" x2="551.778298%" y1="-736.619802%" y2="1220.95842%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="U" x1="-8102.24%" x2="11669.3%" y1="-8112.37%" y2="11659.17%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="V" x1="-527.27218%" x2="959.309774%" y1="-7671.89%" y2="12099.65%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="W" x1="-563.298261%" x2="1155.96609%" y1="-4360.425%" y2="7996.7875%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="X" x1="-595.656881%" x2="1218.24587%" y1="-7031.95%" y2="12739.59%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="Y" x1="-4261.16471%" x2="7369.15294%" y1="-5186.16429%" y2="8936.36429%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="Z" x1="-7291.52%" x2="12480.03%" y1="-7323.1%" y2="12448.44%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aa" x1="-46.8866667%" x2="106.777333%" y1="-610.354545%" y2="437.354545%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="ab" x1="-954.992%" x2="1681.21333%" y1="-6801.97273%" y2="11172.1545%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ac" x1="-53.1965517%" x2="108.827586%" y1="-138.8375%" y2="154.825%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="ad" x1="-2268.40345%" x2="4549.36897%" y1="-4153.9%" y2="8203.3125%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ae" x1="-134.196822%" x2="349.214914%" y1="-7485.96%" y2="12285.58%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="af" x1="-203.129153%" x2="467.092542%" y1="-7412.3%" y2="12359.24%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ag" x1="-8254.16%" x2="11517.38%" y1="-4829.67647%" y2="6800.64118%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ah" x1="-261.207831%" x2="281.860241%" y1="-1137.19462%" y2="943.173846%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="ai" x1="-353.298433%" x2="352.892428%" y1="-15403.61%" y2="11643.5%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="aj" x1="-355.267885%" x2="350.914099%" y1="-15487.8%" y2="11558.97%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="ak" x1="-2084.69358%" x2="-3141.99572%" y1="-5548.86479%" y2="-8333.58732%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="al" x1="-2136.94011%" x2="-3223.28791%" y1="-39758.41%" y2="-59529.95%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="am" x1="-8671.43111%" x2="-13065.1111%" y1="-39159.26%" y2="-58930.8%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="an" x1="42.05%" x2="39.02%" y1="40.85%" y2="37.83%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ao" x1="-1655.02189%" x2="-2503.58541%" y1="-18008.5045%" y2="-26995.5636%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ap" x1="26.16%" x2="23.82%" y1="17.93%" y2="15.58%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aq" x1="-7321.04%" x2="-10915.8655%" y1="-26976.66%" y2="-40157.6867%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ar" x1="-3806.45143%" x2="-5689.45619%" y1="-33702.4583%" y2="-50178.75%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="as" x1="-719.07449%" x2="1298.42959%" y1="-4375.10588%" y2="7255.21176%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="at" x1="-4193.87653%" x2="-6211.37959%" y1="-24406.3118%" y2="-36036.6294%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="au" x1="-524.679508%" x2="1095.93852%" y1="-4333.45%" y2="8023.7625%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="av" x1="-3315.91393%" x2="-4936.53115%" y1="-25616.6063%" y2="-37973.8188%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aw" x1="-1422.94082%" x2="2612.06735%" y1="-5115.85714%" y2="9006.67143%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ax" x1="-8372.54082%" x2="-12407.5531%" y1="-29439.4643%" y2="-43561.9929%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="ay" x1="-2040.6303%" x2="3950.74545%" y1="-6860.53%" y2="12911.01%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="az" x1="-12359.7364%" x2="-18351.1091%" y1="-40913.58%" y2="-60685.12%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aA" x1="-1005.75152%" x2="1989.93788%" y1="-6296.96364%" y2="11677.1727%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aB" x1="-6165.30303%" x2="-9160.98939%" y1="-37254.2727%" y2="-55228.4%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aC" x1="-2871.84%" x2="5036.776%" y1="-4515.63125%" y2="7841.58125%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aD" x1="-16493.056%" x2="-24401.672%" y1="-25798.7875%" y2="-38156%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aE" x1="-4836.46667%" x2="8344.56%" y1="-7269.91%" y2="12501.63%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aF" x1="-27538.4933%" x2="-40719.52%" y1="-41322.96%" y2="-61094.5%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aG" x1="123.979381%" x2="7.09896907%" y1="645.125%" y2="-299.65%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="aH" x1="-4143.41443%" x2="-6181.71959%" y1="-33849.65%" y2="-50325.925%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aI" x1="110.22963%" x2="13.6574074%" y1="263.406667%" y2="-84.2533333%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="aJ" x1="-7493.57037%" x2="-11154.9667%" y1="-27110.28%" y2="-40291.3067%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aK" x1="-1314.06588%" x2="-1982.02331%" y1="-40374.36%" y2="-60145.89%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aL" x1="-39504.49%" x2="-59276.05%" y1="-23215.4176%" y2="-34845.7353%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aM" x1="-935.697066%" x2="-1419.10856%" y1="-40260.71%" y2="-60032.24%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aN" x1="-239.365731%" x2="302.59479%" y1="-1057.81832%" y2="1006.59618%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="aO" x1="-195.98196%" x2="188.238494%" y1="-262.20413%" y2="218.292299%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="aP" x1="-148.239568%" x2="156.504317%" y1="-236.10625%" y2="205.1375%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="aQ" x1="-684.479137%" x2="737.933813%" y1="-1012.53646%" y2="1046.99896%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="aR" x1="-802.736152%" x2="689.739334%" y1="-1056.80385%" y2="890.777014%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="aS" x1="-1124.88665%" x2="549.535228%" y1="-1423.71471%" y2="673.128094%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="aT" x1="-465.885211%" x2="339.528169%" y1="-152.931663%" y2="157.298039%">
+ <stop stop-color="#FFE900" offset="28.07%"/>
+ <stop stop-color="#FFCC07" offset="32.21%"/>
+ <stop stop-color="#FF8119" offset="41.22%"/>
+ <stop stop-color="#FF0B36" offset="54.35%"/>
+ <stop stop-color="#FF0039" offset="55.5%"/>
+ <stop stop-color="#ED00B5" offset="85.24%"/>
+ </linearGradient>
+ <linearGradient id="aU" x1="-632.473239%" x2="759.889437%" y1="-217.098158%" y2="319.212821%">
+ <stop stop-color="#FFCCD7" offset="40.06%"/>
+ <stop stop-color="#EDBEE2" offset="100%"/>
+ </linearGradient>
+ </defs>
+ <g fill="none" fill-rule="evenodd">
+ <path d="M150.1 145.9v-.2.2zM152.6 147.1c0 .9.3 1.9.9 2.8-.6-.9-.9-1.9-.9-2.8zM149.7 154.2c0-.2-.1-.5-.3-.6.2.2.3.4.3.6 0 0-.1.7.8 1.8-.9-1-.8-1.8-.8-1.8zM229.2 188.9c.4-1.5.7-3 .8-4.4 0-.5.1-1 .1-1.5 0 .5-.1 1-.1 1.5-.1 1.4-.4 2.9-.8 4.4zM103.1 216.7h.8l-.3-.3c-.1.2-.3.3-.5.3zM235.1 153.6v.2c.4.1.8.3 1.1.6.8.7 1 1.8.7 2.7.1-.2.1-.4.1-.6.1-1.3-.7-2.5-2-2.9v-.2l-.1-.9c-1.5-.1-3-.2-4.6-.4l-.3 3.3 5.1-1.8zM245.1 143.8c6.7-3.5 11.1-12.3 10.9-20.8.3 8.5-4.2 17.3-10.9 20.8-3.5 1.8-8.8 2.6-14.2 2.7 5.4-.1 10.7-.8 14.2-2.7zM228.5 173.5l-.1 1.1c.6.3 1.3.5 1.9.8v.1c.1 0 .1.1.2.1-.1-1.3-.2-2.8-.4-4.3.1 1 .1 2 .2 2.9-.6-.2-1.2-.4-1.8-.7zM147.3 150.3l1-2.8-.1.1-.9 2.7c-.2.3 0 .6.3.7h.1c-.4-.1-.5-.4-.4-.7zM210.1 73.1c.5.1 1 .2 1.6.4-.5-.1-1-.3-1.6-.4zM155.1 180c0 .1.5 2.8 1.3 6.9h.1c-.8-4.1-1.3-6.9-1.3-7 0-.2.1-.4.2-.5-.2.1-.4.3-.3.6zM160 204.4h.2c-1.2-5.1-2.3-10.7-3.2-15.3h-.1c.8 4.6 1.9 10.2 3.1 15.3z"/>
+ <path d="M239.9 150.3c-.8.1-1.6.2-2.4.2-.1-.1-.3-.1-.4-.1-2.1-.1-4.3-.2-6.4-.4v.1c2.1.2 4.2.4 6.3.5.1 0 .3 0 .4.1.8 0 1.6-.1 2.4-.2 6.9-.9 11-3.2 15.3-8.7 1.4-1.7 3-4.6 4.1-7.8-1.2 3.2-2.7 5.9-4.1 7.7-4.3 5.4-8.4 7.7-15.2 8.6zM104 200.6c0-.1 0-.1 0 0 0-.1 0-.1 0 0zM145.8 157.9l-.2-.3v-.1l.1.1M140.7 165.2h-.1l-.6.9v.1M252 110.6c-2.8-4.7-6.4-9.1-8.6-11.7 2.2 2.6 5.8 7 8.6 11.7zM206.9 117.5c-.2-.3-.5-.5-.7-.7-.6-.5-1.4-.7-2.1-.7 1 0 2.1.5 2.8 1.4.5.8 1.5 1 2.3.5.1-.1.2-.1.3-.2-.1.1-.2.1-.3.2-.8.5-1.8.3-2.3-.5zM218.4 218.6c-.2 3.3-.2 5.7-.2 7.4h.1c-.1-1.7 0-4.1.1-7.4-6.4 1.4-13 2.3-19.7 2.4-7.5.1-14.9-.8-22.2-2.6v.1c7.2 1.8 14.6 2.7 22.1 2.6 6.7-.2 13.3-1 19.8-2.5zM209 117.5h-.1.1zM244.8 117.2c-.5.4-1.2.3-1.6-.2-.2-.3-.4-.5-.7-.7-.7.4-1.4.6-2.2.6-1 0-1.9-.3-2.6-.9-.4.3-.8.6-1.1 1-.1.2-.3.4-.6.4.2.2.5.4.7.6 2.9 2 6.8 1.3 8.8-1.6.3-.5.2-1.2-.3-1.5-.3-.2-.6-.2-1-.1.3.3.6.6.8 1 .4.5.2 1.1-.2 1.4zM241.5 113.3c.3-.3.4-.6.4-1.1v-3.5c0-.7-.4-1.3-1.1-1.5.4.3.7.8.7 1.3v3.5c0 .2-.1.5-.2.7-.5-.
1-1.1-.2-1.6-.2-.3 0-.6 0-.9.1.1.2.1.4.3.5.7 0 1.6 0 2.4.2zM200.6 117.5l.3-.3.6-.6c-.2.2-.4.4-.6.7 0 0-.1.1-.3.2zM208.1 114.6c-.1 0-.1-.1-.2-.2-1.5-1.1-3.3-1.4-5-1 1.8-.4 3.7.1 5.2 1.2zM209.5 116.7c0-.2 0-.5-.1-.7l-.3-.3.3.3c.1.2.2.5.1.7zM159.7 206.8c.7 3.1 1.5 6.2 2.6 9.2.3.9 2.2 6 4.6 10.2h.1c-2.5-4.2-4.3-9.3-4.7-10.3-1-3-1.9-6-2.6-9.1-1.2.1-2.5.1-3.8.1-4-.1-7.9-.5-11.8-1.2v.1c3.9.7 7.8 1.1 11.7 1.1 1.3 0 2.6 0 3.9-.1zM198.4 115.7c1.1-1.5 2.7-2.5 4.4-2.8-.1-.2-.1-.4-.1-.6v-3.5c0-.9.7-1.6 1.6-1.6-.9 0-1.6.7-1.6 1.6v3.5c0 .2 0 .4.1.6-1.8.2-3.4 1.3-4.4 2.8-.5.7-.3 1.5.2 2.1-.6-.6-.7-1.5-.2-2.1zM156.8 110.8c.3-.1.4-.4.3-.7l-1.2-2.9V106.9l-.3-1 .3.9v.1l-.3-1 .4 1.1v.2l1.2 2.9c0 .3-.1.6-.4.7h-.3c.2.1.3.1.3 0zM164.8 90.6l-.1 4.1M164.9 97.3l-.3-2.4c.1.8.2 1.7.3 2.5V97.3zM184.8 79.4l.2-.2 2.6-1.1h-.1l-2.4 1c-.2.1-.3.2-.3.3z"/>
+ <path d="M214.8 223.5v-.9c-1.3.2-2.6.4-3.8.6-4.1.6-8.2 1-12.4 1-6.3 0-12.6-.5-18.8-1.7 0 1.3 0 2.3-.1 3.3 4.7-.1 9.6-.2 14.7-.2 7.1 0 13.9.1 20.4.3v-2.4zM159.1 216.9c-.7-1.9-1.3-4.2-2-6.8h-1.3c-3.9-.1-7.9-.4-11.7-1.1v1.9h1c1 0 1.9 1 1.9 2.2v1.4c0 1.2-.8 2.1-1.7 2.2h.2l.4.3c.2-.2.4-.3.7-.3h.8c1.9.1 3.1.4 3.6.9 1.6 1.3 2.6 4.2 2.6 7.5 0 .5-.1 1.2-.2 1.9 3.1-.2 6.3-.4 9.8-.6-.6-1-1.1-2.1-1.6-3.2-.9-1.9-1.8-4.1-2.5-6.3zM235.4 114.9c-.2.1-.3.3-.3.4.1-.1.2-.2.3-.4.1 0 .1 0 0 0zM150.3 134.7c0-12.6 1.1-21.9 3.3-27.6l-.2-.5c-.4-1.2.3-2.4 1.5-2.8l.3-.1c2-3.6 4.4-6.9 7.3-9.9l.1-3.3c0-1.2 1-2.2 2.2-2.2l3.5.1c3.3-2.6 6.8-5 10.5-7.1l1.4-5.3c.3-1.2 1.5-1.8 2.6-1.6h-.1c-1.2-.3-2.4.4-2.7 1.6l-1.4 5.3c-3.7 2-7.2 4.4-10.5 7.1l-3.5-.1c-1.2 0-2.2 1-2.2 2.2l-.1 3.3c-2.8 3-5.3 6.3-7.3 9.9l-.3.1c-1.2.4-1.8 1.6-1.5 2.8l.2.5c-2.2 5.7-3.3 15-3.3 27.6-.6 3.6-1.3 7.2-2.2 10.6l-4.8 2.9 5-2.8c.9-3.5 1.6-7.1 2.2-10.7zM149.2 158.3c.7.7 1.6 1.5 2.8 2.1-1.2-.6-2.1-1.3-2.8-2.1zM206.5 72.8c.6 0 1.3.1 1.9.1.6 0 1.1.
1 1.7.2-.7-.1-1.3-.2-1.9-.3-.6-.1-1.2-.1-1.9-.1-5.7.2-11.4 1.3-16.7 3.4l.2.1c5.3-2 10.9-3.2 16.7-3.4zM140.8 153.8c-.5-.9-.6-1.9-.4-2.8-.3.9-.2 1.9.4 2.8l2.6 4.3-2.6-4.3zM227.3 212.8c-1.9 1.7-4.1 3-6.5 4v.1c2.3-1 4.5-2.3 6.5-4.1-.1.1-.1.1 0 0zM162.3 170.7l-.1-1.2c-2.4.6-4.8 1.4-7.2 2.3-.4-2.9-.8-5.5-1.1-7.6.3 2.1.7 4.8 1.1 7.7-.1 0-.2.1-.4.2.4 2.2 1.1 5.1 1.5 7.4-.3-2.2-.7-4.4-1-6.4 2.4-1.1 4.7-1.9 7.2-2.4zM174.5 205.9v2.9"/>
+ <path d="M152.3 147.3c-.2-3.1-.3-6.4-.4-9.8.2-1 .4-1.9.5-2.8 0-10.7.9-20.1 2.9-26v-.1c-2 5.9-2.9 15.3-2.9 26.1-.2.9-.3 1.8-.5 2.8v.2c0-.1 0-.2.1-.3 0 3.5.1 6.8.3 9.9 0 .1 0 .1 0 0zM236.4 182.5c-.4 15.2-3.8 25.4-5.2 29-.3 1.4-.7 2.7-1.1 3.8-1.6 4.5-3.5 8.5-5.2 11.1 1.7-2.6 3.7-6.6 5.3-11.2.4-1.1.7-2.4 1.1-3.8 1.4-3.6 4.8-13.7 5.2-29v-2.3s-.1 0-.1-.1v2.5zM149 153.6c.1-.6.3-1.3.6-1.9-.3.6-.6 1.2-.6 1.9h.2c-.1-.1-.2-.1-.2 0zM174.2 215.2v.2h-.1l.1-.2-.1.3c.1 2.1.1 4.1.1 6 0 1.7 0 3.2-.1 4.5h.1c.1-1.3.1-2.9.1-4.6 0-1.9-.1-3.9-.1-6h.1v-.2l-.2-5.8c0-.1 0-.2.1-.3-.1.1-.2.3-.2.4l.2 5.7zM236.5 172.8v-2.2c-.1-.7-.1-1.6-.2-2.4.1 1.5.2 3 .2 4.6z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M7.7 72.3v98.1c0 1 .1 1.2.1 1.2s.2.1 1.2.1h121.1l-.6-1.9c-.9-3.1.3-6.3 2.9-7.9V72.3H7.7zm45.8 65.5c0 1.8-1.5 3.3-3.3 3.3-1.8 0-3.3-1.5-3.3-3.3V98.4c0-1.8 1.5-3.3 3.3-3.3 1.8 0 3.3 1.5 3.3 3.3v39.4zm9.8 0c0 1.8-1.5 3.3-3.3 3.3-1.8 0-3.3-1.5-3.3-3.3V105c0-1.8 1.5-3.3 3.3-3.3 1.8 0 3.3 1.5 3.3 3.3v32.8zm9.9 0c0 1.8-1.5 3.3-3.3 3.3-1.8 0-3.3-1.5-3.3-3.3v-36.1c0-1.8 1.5-3.3 3.3-3.3 1.8 0 3.3 1.5 3.3 3.3v36.1zm20.8 3.1c-.4.1-.8.2-1.1.2-1.3 0-2.6-.8-3.1-2.2l-13.1-36.1c-.6-1.7.3-3.6 2-4.2 1.7-.6 3.6.3 4.2 2L96 136.7c.6 1.7-.3 3.5-2 4.2zM133.5 171.4c-.1 0-.1 0 0 0l.5 1.7-.5-1.7z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M127.3 173.2l1.8.1c.1-.2.3-.4.5-.5H9c-2 0-2.5-.4-2.5-2.5V71.2h127v90.2c.2-.1.4-.2.7-.2l3.6-1.1v-4.8c-1.3-2.3-1.2-5 0-7.1V55.4c0-2.3-1.9-4.2-4.2-4.2H6.5c-2.3 0-4.2 1.9-4.2 4.2v118.3c0 2 1.8 3.7 3.9 3.7h90c.3-.6.6-1.2 1.1-1.5.9-.7 2.6-.8 3.8-.8.5 0 .9.2 1.2.5l.5-.4h19.1c1.3-1.2 3-2 4.9-2h.5zm9.1-13.5l-.1-.2.1.2zm-.1-.3v.4l-.3-.9.3.5zm-9.6-101.2c1.6 0 2.9 1.3 2.9 2.9 0 1.6-1.3 2.9-2.9 2.9-1.6 0-2.9-1.3-2.9-2.9 0-1.6 1.3-2.9 2.9-2.9zm-9.2 0c1.6 0 2.9 1.3 2.9 2.9 0 1.6-1.3 2.9-2.9 2.9-1.6 0-2.9-1.3-2.9-2.9 0-1.6 1.3-2.9 2.9-2.9zM35 61c0-1.7 1.4-3.1 3.1-3.1H102c1.7 0 3.1 1.4 3.1 3.1v.3c0 1.7-1.4 3.1-3.1 3.1H38.1c-1.7 0-3.1-1.4-3.1-3.1V61zm-12.4-2.8c1.6 0 2.9 1.3 2.9 2.9 0 1.6-1.3 2.9-2.9 2.9-1.6 0-2.9-1.3-2.9-2.9 0-1.6 1.3-2.9 2.9-2.9zm-9.3 0c1.6 0 2.9 1.3 2.9 2.9 0 1.6-1.3 2.9-2.9 2.9-1.6 0-2.9-1.3-2.9-2.9 0-1.6 1.4-2.9 2.9-2.9zM136.4 173.1l-.1-.3-.2-.6-1.1-3.7c-.2-.8.2-1.6 1-1.8-.8.2-1.2 1.1-1 1.8l1.1 3.7.3.9.1.5c-.5.6-.9 1.1-1.4 1.7.5-.6 1-1
.1 1.4-1.7l-.1-.5z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M138.7 159.7c.3-.5.6-1.1.8-1.7l-1.7-2.8v4.7l.9-.2zM6.2 177.5c-2.2 0-3.9-1.6-3.9-3.7V55.4c0-2.3 1.9-4.2 4.2-4.2h127.1c2.3 0 4.2 1.9 4.2 4.2V148c.5-.9 1.3-1.7 2.2-2.3V55.4c0-3.6-2.9-6.5-6.5-6.5H6.5c-3.6 0-6.5 2.9-6.5 6.5v118.3c0 3.3 2.8 5.9 6.2 5.9h89.2c.2-.8.4-1.5.7-2.2H6.2v.1zM139 167.8l1.1-1.6v-.1l-1.1 1.7c-.2.1-.2.4 0 .5-.1-.1-.1-.3 0-.5z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M6.5 71.2v99.2c0 2 .4 2.5 2.5 2.5h120.5c.2-.2.4-.5.7-.7l-.1-.4H9c-1 0-1.2-.1-1.2-.1s-.1-.2-.1-1.2V72.3h124.7V162c.3-.2.7-.4 1.1-.6V71.2H6.5zM132.8 169.2c-.2-.7-.2-1.4 0-2.1-.3.6-.3 1.4 0 2.1l.7 2.3v-.1l-.7-2.2zM13.3 64c1.6 0 2.9-1.3 2.9-2.9 0-1.6-1.3-2.9-2.9-2.9-1.6 0-2.9 1.3-2.9 2.9 0 1.6 1.4 2.9 2.9 2.9zM22.6 64c1.6 0 2.9-1.3 2.9-2.9 0-1.6-1.3-2.9-2.9-2.9-1.6 0-2.9 1.3-2.9 2.9 0 1.6 1.3 2.9 2.9 2.9zM38.1 64.3H102c1.7 0 3.1-1.4 3.1-3.1V61c0-1.7-1.4-3.1-3.1-3.1H38.1c-1.7 0-3.1 1.4-3.1 3.1v.3c0 1.7 1.4 3 3.1 3zM117.5 64c1.6 0 2.9-1.3 2.9-2.9 0-1.6-1.3-2.9-2.9-2.9-1.6 0-2.9 1.3-2.9 2.9 0 1.6 1.3 2.9 2.9 2.9zM126.7 64c1.6 0 2.9-1.3 2.9-2.9 0-1.6-1.3-2.9-2.9-2.9-1.6 0-2.9 1.3-2.9 2.9 0 1.6 1.3 2.9 2.9 2.9z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M60 101.6c-1.8 0-3.3 1.5-3.3 3.3v32.8c0 1.8 1.5 3.3 3.3 3.3 1.8 0 3.3-1.5 3.3-3.3v-32.8c0-1.8-1.4-3.3-3.3-3.3zM69.9 98.4c-1.8 0-3.3 1.5-3.3 3.3v36.1c0 1.8 1.5 3.3 3.3 3.3 1.8 0 3.3-1.5 3.3-3.3v-36.1c0-1.9-1.5-3.3-3.3-3.3zM50.2 95.1c-1.8 0-3.3 1.5-3.3 3.3v39.4c0 1.8 1.5 3.3 3.3 3.3 1.8 0 3.3-1.5 3.3-3.3V98.4c0-1.8-1.5-3.3-3.3-3.3zM82.8 100.5c-.6-1.7-2.5-2.6-4.2-2-1.7.6-2.6 2.5-2 4.2l13.1 36.1c.5 1.3 1.7 2.2 3.1 2.2.4 0 .8-.1 1.1-.2 1.7-.6 2.6-2.5 2-4.2l-13.1-36.1zM122.5 21.4h1.1c.3 0 .6-.2.6-.6 0-.4-.2-.6-.6-.6h-1.1c-.3 0-.6.2-.6.6 0 .4.3.6.6.6zM133.7 21.4h4.5c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-4.5c-.3 0-.6.2-.6.6 0 .3.2.6.6.6zM116.9 21.1c.1.2.3.3.5.3h.6c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-.3c-.2-.4-.6-1.2-1.2-2.1-.2-.3-.5-.3-.8-.2-.3.2-.3.5-.2.8.9 1.3 1.3 2.1 1.4 2.4zM66.7 4.5c.1 0 .2 0 .3-.1 1.6-1.2 3.7-2.1 6.4-2.4 2.1-.3 4-.2 5.9.2.3.1.6-.1.7-.4.1-.3-.1-.6-.4-.7-2-.4-4.1-.5-6.3-.2-2.9.4-5.2 1.3-6.9 2.7-.2.2-.3.5-.1.8.1 0 .3.1.4.1zM41.3
20.7h13.4c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6H41.3c-.3 0-.6.2-.6.6 0 .3.3.6.6.6zM98.6 7.9c1.3-.4 2.7-.5 4.3-.2 2.3.4 4.8 1.8 7.2 4.1.1.1.2.2.4.2.1 0 .3-.1.4-.2.2-.2.2-.6 0-.8-2.6-2.5-5.2-3.9-7.7-4.4-1.8-.3-3.4-.3-4.9.2-.3.1-.4.4-.4.7.1.3.5.5.7.4zM92.1 13.1c.1.2.3.3.5.3.1 0 .2 0 .2-.1.3-.1.4-.5.3-.7-.1-.3-.3-.6-.5-1-.1-.3-.5-.4-.8-.2-.3.1-.4.5-.2.8.2.3.3.6.5.9zM89.1 8.5c.1.1.3.2.4.2.1 0 .2 0 .3-.1.2-.2.3-.5.1-.8-.7-.9-1.5-1.8-2.3-2.5-.2-.2-.6-.2-.8 0-.2.2-.2.6 0 .8.9.7 1.6 1.5 2.3 2.4zM63.4 14.6s.1 0 0 0c.4 0 .6-.3.6-.6 0-.4-.1-.7-.1-1.1 0-.3-.3-.5-.6-.5h-.1c-.2.1-.4.3-.4.6 0 .4.1.8.1 1.1 0 .1 0 .1.1.2 0 .2.2.3.4.3zM65.5 20.4c.1-.2.1-.4 0-.5 0 0-.3-.7-.6-1.7-.1-.3-.4-.5-.7-.4-.3.1-.5.4-.4.7.1.4.3.8.4 1h-.7c-.2.1-.4.3-.4.5 0 .3.2.6.6.6H65.1c.1.1.3 0 .4-.2z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M40.9 25.6h97.9c.6 0 1.1-.5 1.1-1.1 0-.6-.5-1.1-1.1-1.1H116c-2-3.7-7.1-11.7-13.4-12.9-8.4-1.6-10 6.7-10 6.7S87 2.7 73 4.6c-6.5.9-9 4.2-9.8 7.8h.1c.3 0 .6.2.6.5 0 .4.1.7.1 1.1 0 .3-.2.6-.5.6h-.1c-.2 0-.4-.1-.5-.3-.1 1.9.1 3.8.5 5.3h.7c-.1-.3-.2-.6-.4-1-.1-.3.1-.6.4-.7.3-.1.6.1.7.4.3 1 .6 1.7.6 1.7.1.2.1.4 0 .5-.1.2-.3.3-.5.3h-1.3c.4 1.5.9 2.5.9 2.7H40.7c-.6 0-1.1.5-1.1 1.1.1.5.6 1 1.3 1z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M229.2 52.9c.3-1 1.2-3.2 3.8-3.2.3 0 .7 0 1 .1 1.6.3 3.2 1.3 4.8 3 .2.2.6.2.8 0 .2-.2.2-.6 0-.8-1.8-1.9-3.6-3-5.4-3.4-.4-.1-.8-.1-1.2-.1-3.5 0-4.6 3-4.9 4-.1.3.1.6.4.7h.2c.1 0 .2 0 .3-.1.1 0 .2-.1.2-.2zM213.5 48.4c.1 0 .3-.1.4-.2.6-.7 1.5-1.1 2.6-1.4.3-.1.5-.4.4-.7-.1-.3-.4-.5-.7-.4-1.3.4-2.4.9-3.1 1.7-.2.2-.2.6 0 .8.1.2.3.2.4.2zM246.3 56.9h3.3c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-3.3c-.3 0-.6.2-.6.6 0 .3.3.6.6.6zM220.7 46.6c.4.1.7.2 1 .3h.2c.2 0 .5-.1.5-.4.1-.3-.1-.6-.4-.7-.4-.1-.8-.2-1.1-.3-.3-.1-.6.1-.7.4 0 .4.2.7.5.7zM213.5 56.8c.1-.2.1-.4 0-.5l-.1-.1c-.1-.3-.4-.4-.7-.3-.1 0-.1.1-.2.1h-12.7c-.3 0-.6.2-.6.6 0 .3.2.6.6.6H213c.2-.2.4-.3.5-.4z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M199.6 60.7h54.5c.6 0 1.1-.5 1.1-1.1 0-.6-.5-1.1-1.1-1.1h-12.9c-1.1-2.1-3.9-6.5-7.4-7.2-2.4-.5-3.8.5-4.6 1.6 0 .1-.1.2-.2.3-.6 1-.8 1.9-.8 1.9s-3.1-8-10.9-7c-5.8.8-6 5-5.4 7.8h.7s.1-.1.2-.1c.3-.1.6 0 .7.3l.1.1c.1.2.1.4 0 .5-.1.2-.3.3-.5.3h-.9c.2.9.5 1.4.5 1.5h-13.2.2c-.6 0-1.1.5-1.1 1.1-.1.6.4 1.1 1 1.1z"/>
+ <path fill="#EDEDF0" fill-rule="nonzero" d="M173.7 229.1c-.1.2-.1.4-.2.5 0 0-.1 0-.1.1.1 0 .2-.1.3-.1.3-.3.5-1.6.6-3.6h-.1c-.2 1.5-.3 2.6-.5 3.1zM173.1 232c.5 0 1-.1 1.5-.4-.4.2-.9.4-1.5.4-2.1 0-4.3-2.7-6.1-5.8h-.1c1.8 3.2 4 5.8 6.2 5.8z"/>
+ <path fill="#EDEDF0" fill-rule="nonzero" d="M231.1 226.7c-2.6 4.8-5.9 8.5-9.7 8.5-1.4 0-2.9-.5-4-1.4-1.7-1.4-2.5-2.9-2.6-7.8-6.4-.2-13.3-.3-20.4-.3-5 0-9.9.1-14.7.2-.2 5.1-1 6.6-2.7 7.9-1.1.9-2.5 1.4-4 1.4-4 0-6.8-3.6-8.7-6.8-.4-.6-.8-1.3-1.1-2-3.4.2-6.7.4-9.8.6-.3 2-1.1 4.5-2.2 5.4-1.1.9-3.1 1.1-4.5 1.1-.6 0-1-.3-1.4-.6l-.6.6H97.4c-1 0-1.9-.7-2.2-1.7l-.3-1.1v-.2c-5.9.7-9.4 1.5-9.4 2.4 0 2.1 17.6 3.7 39.4 3.7 3.5 0 6.8 0 10-.1 12.2 2.1 34.3 3.4 59.5 3.4 38.5 0 69.7-3.2 69.7-7.1 0-2.6-13.2-4.8-33-6.1z"/>
+ <path fill="#EDEDF0" fill-rule="nonzero" d="M219.5 231.3c.5.4 1.2.7 1.9.7.6 0 1.3-.2 1.9-.6-.6.4-1.2.6-1.8.6-.7 0-1.4-.3-2-.7-.6-.6-1.2-1.1-1.3-5.3h-.1c.2 4.3.8 4.8 1.4 5.3zM223.3 228.4c.5-.5 1-1.2 1.5-2-.5.8-1 1.4-1.5 2z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M102.1 188.2l-.3-.2c-.1.2-.3.3-.6.3h-.7c-1.6-.1-2.6-.3-3.1-.7l-.6-.6H83c-.6 0-1.1.5-1.1 1.1 0 .6.5 1.1 1.1 1.1h19.4c.1-.4.2-.7.5-.9h-.8v-.1zM156.8 189.1h.1c-.2-.8-.3-1.5-.4-2.2h-.1c.1.7.3 1.4.4 2.2zM27.3 194.1c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6H24c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h3.3zM19.5 193h-1.1c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h1.1c.3 0 .6-.2.6-.6 0-.3-.3-.6-.6-.6zM68.5 194.1c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-3.3c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h3.3zM49.6 194.1c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6H36.2c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h13.4zM102 194.1c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-1.1c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h1.1zM60.7 194.1c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-1.1c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h1.1zM91.4 193.6c0-.3-.2-.6-.6-.6H77.4c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h13.4c.3-.1.6-.3.6-.6z"/>
+ <path fill="#EDEDF0" fill-rule="nonzero" d="M65.7 230.4c-.3.9-.6 1.7-1.1 2.1-.8.8-2.3.9-3.4.9-.4 0-.8-.3-1-.6l-.5.5H24.5h-.1c2.2 1.6 12.1 2.7 24 2.7 13.5 0 24.4-1.5 24.4-3.4 0-.7-2.7-1.6-7.1-2.2z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M28.3 224.9h32.9c.1 0 .1 0 .2.1-.1-.4-.1-.7-.3-1H27.2v4.6h33.7c.2-.3.3-.7.4-1.1h-33c-.2 0-.4-.2-.4-.4s.2-.4.4-.4h32.9c.1 0 .2 0 .2.1v-1.1c-.1.1-.2.1-.3.1H28.3c-.2 0-.4-.2-.4-.4s.2-.5.4-.5z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M59.2 231.8l.8-.9.3.1c.3.1.5.3.6.5.1.1.2.3.3.3 1.2 0 2.1-.2 2.5-.6.6-.5 1.3-3.3 1.3-5.1 0-2.6-.7-4.6-1.4-5.2-.1-.1-.8-.3-1.9-.4-.1.4-.2.7-.7.8h-.3l-.9-.9H24.3c-.1 0-.3.1-.3.3v1.2c0 .2.1.3.3.3H62l.2.4c1.3 2.4.8 5.9-.4 7.3l-.2.2H24.3c-.1 0-.2 0-.2.1s-.1.2 0 .3l.2 1c0 .1.1.2.2.2h34.7v.1z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M59.7 233.4l.5-.5c.2.3.6.6 1 .6 1.1 0 2.6-.2 3.4-.9.4-.4.8-1.2 1.1-2.1.5-1.5.7-3.3.7-4.3 0-2.8-.8-5.4-1.9-6.5-.4-.4-1.3-.7-2.7-.8h-.6c-.3 0-.4.1-.5.3l-.3-.3h-36c-.9 0-1.7.9-1.7 2v1.2c0 1.1.7 2 1.7 2h.9v4.6h-.9c-.5 0-1 .3-1.3.8-.3.5-.4 1.1-.3 1.7l.2 1c.2.8.8 1.4 1.5 1.5h35.2v-.3zm-35.5-1.8l-.2-1v-.3c0-.1.1-.1.2-.1h37.2l.2-.2c1.3-1.4 1.7-4.9.4-7.3l-.2-.4H24.3c-.1 0-.3-.1-.3-.3v-1.2c0-.2.1-.3.3-.3h35.5l.9.9h.3c.4-.1.6-.5.7-.8 1.2.1 1.8.3 1.9.4.7.7 1.4 2.7 1.4 5.2 0 1.8-.7 4.6-1.3 5.1-.4.3-1.3.6-2.5.6-.1-.1-.2-.3-.3-.3-.2-.2-.3-.5-.6-.5l-.3-.1-.8.9H24.5l-.3-.3zm4.1-5.9h32.9c.1 0 .2-.1.3-.1v1.1c-.1-.1-.1-.1-.2-.1h-33c-.2 0-.4.2-.4.4s.2.4.4.4h33c-.1.4-.2.8-.4 1.1H27.2v-4.6h33.9c.1.3.2.7.3 1-.1 0-.1-.1-.2-.1H28.3c-.2 0-.4.2-.4.4s.2.5.4.5z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M174.2 215.4v-.2M236.7 157.9c.2-.2.3-.4.3-.6.1-.2.1-.5.1-.7 0 .2-.1.4-.1.6-.1.2-.2.4-.3.7zM161.3 204.2v.1h.1v-.1h-.1zM173.7 229.1c-.1.1-.1.2-.2.3-.4.3-1 .1-1.7-.5-.1 0-.1-.1-.2-.2-.3-.2-.5-.5-.8-.9.9 1.1 1.7 1.8 2.3 1.8h.2s.1 0 .1-.1c.1 0 .2-.1.3-.4z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M233.4 212.2c-.3 1.4-.7 2.7-1.1 3.8-.5 1.4-4.6 12.7-9 15.4-.6.4-1.3.6-1.9.6-.7 0-1.3-.2-1.9-.7-.7-.5-1.3-1-1.3-5.3 0-1.7 0-4.1.2-7.4-6.5 1.5-13.1 2.3-19.7 2.4-7.4.1-14.9-.7-22.1-2.6.2 11.4-.6 12-1.5 12.8-.1.1-.3.2-.5.3-.5.3-1 .4-1.5.4-2.2 0-4.4-2.6-6.2-5.8-2.5-4.2-4.3-9.3-4.6-10.2-1-3-1.9-6.1-2.6-9.2-1.3.1-2.6.1-3.9.1-3.9-.1-7.9-.5-11.7-1.1v3.2c3.9.7 7.8 1 11.7 1.1h1.3c.7 2.7 1.3 5 2 6.8.8 2.2 1.6 4.3 2.6 6.3.5 1.1 1 2.1 1.6 3.2.4.7.7 1.3 1.1 2 2 3.2 4.7 6.8 8.7 6.8 1.4 0 2.9-.5 4-1.4 1.6-1.3 2.4-2.9 2.7-7.9 0-1 .1-2.1.1-3.3 6.2 1.2 12.5 1.8 18.8 1.7 4.1 0 8.3-.4 12.4-1 1.2-.2 2.5-.4 3.8-.6v3.4c.1 4.9.9 6.4 2.6 7.8 1.1.9 2.5 1.4 4 1.4 3.8 0 7.1-3.7 9.7-8.5.2-.4.5-.8.7-1.3 1.4-2.8 2.6-5.6 3.6-8.5.4-1.1.8-2.4 1.2-3.9 1.5-4 4.8-14.1 5.4-29-1-1.2-2.1-2.3-3.3-3.3v1.8c-.5 15.4-3.9 25.8-5.4 29.7z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M137.8 148.1c-1.2 2.1-1.3 4.8 0 7.1v.1l1.7 2.8c-.3.6-.6 1.1-.8 1.7l-.8.3-3.6 1.1c-.2.1-.5.2-.7.2-.4.2-.8.4-1.1.6-2.5 1.7-3.8 4.9-2.9 7.9l.6 1.9.1.4c-.2.3-.4.5-.7.7-.2.2-.3.4-.5.5l-1.8-.1h-.6c-1.9 0-3.6.8-4.9 2h10.3l1.8-2.1-.5-1.7-.7-2.2c-.2-.7-.2-1.5 0-2.2.3-1.1 1.2-2.1 2.4-2.5l5.8-1.8c.8-1.4 1.6-3 2.3-4.7l-2.6-4.3c-.5-.9-.7-1.9-.4-2.8.2-.9.8-1.8 1.7-2.3l1.1-.7 4.8-2.9c.9-3.3 1.7-6.9 2.2-10.6 0-12.6 1.1-21.9 3.3-27.6l-.2-.5c-.4-1.2.3-2.4 1.5-2.8l.3-.1c2-3.6 4.4-6.9 7.3-9.9l.1-3.3c0-1.2 1-2.2 2.2-2.2l3.5.1c3.3-2.6 6.8-5 10.5-7.1l1.4-5.3c.3-1.2 1.6-1.9 2.7-1.6h.2l6.5 1.8c5.3-2.1 11-3.2 16.7-3.4.6 0 1.3 0 1.9.1.6 0 1.3.1 1.9.3h.1c.5.1 1 .2 1.6.4 3.9 1.1 8.5 3.5 13.9 7.2 6.2 4.5 12.1 9.4 17.5 14.7.7 0 1.3.3 1.8.8 3.5 3.3 6.7 7 9.7 10.8 3 3.2 6.8 8.1 8.1 13.3 2 7.8-2.2 17.9-5.9 22.5-4.7 5.9-9.2 8.5-16.7 9.5-.7.1-1.5.2-2.4.2 1.9 1.8 2.1 4.8.5 6.9 1 1.5 1.1 3.3.2 4.8-.1.1-.1.3-.2.5.2 4.9.4 10.9.4 14.4 1.1.9 2.2 1.9 3.2 3 .2-6.2 0-12.5-.4-18.7
l-.3.1c-.3 0-.5-.2-.5-.5s.2-.6.5-.6c.2 0 .4-.1.5-.2 0-.6-.1-1.2-.1-1.8 1-1.6 1.5-3.6 1.3-5.5l1-.2c.2-.3.5-.3.8-.2.9-.2 1.7-.4 2.5-.7 0-.3.2-.6.5-.6.2 0 .4.1.5.2 4.5-1.7 8.1-4.5 11.6-9 3.8-4.7 8.8-15.6 6.6-25 0-.1 0-.3-.1-.4-.1-.1-.1-.5-.2-.7-.6-1.8-1.3-3.5-2.2-5.2-.4-.7-.8-1.5-1.3-2.2-1.2-1.8-2.5-3.6-3.9-5.2-.3-.4-.6-.7-1-1.1l-.1-.2c-3-4-6.3-7.7-9.9-11.1-.7-.7-1.6-1.2-2.5-1.4-8-7.7-24.5-22.1-36.2-22.9-.7 0-1.4-.1-2.1-.1-5.8.1-11.5 1.2-16.9 3.2l-5.7-1.6c-3-.8-6 .9-6.8 3.9l-1.1 3.9c-3 1.8-6 3.7-8.7 5.9H165c-3 0-5.5 2.4-5.6 5.4v2c-2.4 2.6-4.5 5.5-6.3 8.5-2.1 1.2-3.3 3.6-2.8 5.9-2.1 6.1-3.2 15.3-3.2 27.5-.5 3-1.1 5.9-1.8 8.7l-4.8 2.9c-.1 0-.1.1-.2.1-1.2 1.2-2 2-2.5 3z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M136.3 159.7v-.3l-.2-.5.2.9M155.9 106.8l-.3-.9.3 1"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M230.3 174.3c0-1-.1-2-.2-2.9-.1-.7-.2-1.4-.2-2.1-.3-.1-.6-.1-1-.2l-.4 4.5c.6.2 1.2.4 1.8.7zM242.5 116.3c-.7-.6-1.6-.9-2.6-1-.8 0-1.6.2-2.3.7.7.6 1.7.9 2.6.9.9 0 1.7-.2 2.3-.6z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M174.5 205.9c9.6 4.4 20.4 5.7 30.8 3.8 14.7-2.9 21.6-12.6 23.9-20.8.4-1.5.7-3 .8-4.4 0-.5.1-1 .1-1.5.2-2.5.2-5 .2-7.5v-.1c-.6-.3-1.3-.6-1.9-.8l-1.1 11.7c-.1.9-.8 1.5-1.7 1.5l-22.1 3.1c-.9.9-2.9 2.3-6.5 2.5h-.8c-3.3 0-5.3-1.4-6.2-2.3l-24.9-3.6c-.9 0-1.6-.7-1.6-1.5l-1.2-15.4c-2.4.6-4.8 1.4-7.1 2.3.3 2 .6 4.2 1 6.4.1.1.2.2.2.4l.2.9c.6 3.2 2.6 14.1 4.8 23.4v.1h.1v.1h.1c.8 3.7 1.7 7.3 2.9 10.9 2 5.6 4.5 10.3 6.4 12.7.3.3.6.6.8.9.1 0 .1.1.2.2.7.6 1.3.8 1.7.5.1 0 .1-.1.2-.3.2-.5.3-1.6.4-3.2.1-1.3.1-2.8.1-4.5 0-1.9 0-3.9-.1-6v-.2h.1l-.2-5.8c0-.2.1-.3.2-.4.1-.1.2-.2.3-.2l-.1-2.9z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M152 137.6c.1 3.3.2 6.6.4 9.8l.3-.3v.1c-.1.9.3 1.9.8 2.9.8 1.4 2.1 2.7 3.2 3.7 1.8-1 3.3-1.2 4-1.2l-.3-4.3c0-.5.1-1 .5-1.3.3-.3.8-.5 1.3-.5h.3l1.4-6.1c.1-.4.4-.8.8-.8.4-.1 10.5-2.3 19.1 1.5 7.1 3.1 11.3 7.9 13.1 10.5 1.5-2.6 5.2-7.4 12.7-11 6.3-3.1 15.5-3.4 16.7-2.9.3.1.6.4.7.7.2.6 1.3 4.5 1.9 7.1h.2c.5 0 1 .1 1.3.5.2.2.4.5.4.8 5.4-.1 10.7-.9 14.2-2.7 6.7-3.5 11.1-12.3 10.9-20.7 0-1.2-.2-2.4-.4-3.6-.6-2.9-2-5.9-3.7-8.9-2.8-4.7-6.4-9.1-8.6-11.7-.3-.3-.5-.6-.8-.9 0 0-.1 0-.1.1C231 87.2 216.6 76.1 208 75.5c-.6 0-1.1-.1-1.7-.1-5.7.2-11.3 1.4-16.6 3.5l-.5-.1-3.8 1.7h-.1c-.3.1-.6 0-.7-.3-.1-.2 0-.4.1-.6 0-.1.1-.2.2-.3l2.4-1-5.1-1.4-1.7 6.2c-4.1 2.2-8 4.8-11.6 7.8l-4.3-.1-.1 4.1v.1l-.1.1.3 2.4v.3c0 .2-.2.4-.4.5h-.2c-.2 0-.4-.2-.5-.4l-.3-1.8c-2.7 2.9-5 6.1-6.8 9.6l-1.1.3.3 1V107.3l1.2 2.9c.1.3 0 .6-.3.7h-.3c-.2 0-.4-.1-.5-.4l-.7-1.7c-2 5.9-2.9 15.3-2.9 26 .1.9 0 1.8-.2 2.8zm82.7-21.8c.1-.2.2-.3.4-.4.1-.2.2-.3.3-.4.3-.2.5-.5.8-.7.8-.6 1.8-.9 2.
7-1.1-.1-.2-.2-.3-.3-.5h-.3c-.1-.2-.1-.4-.1-.6v-3.5c0-.9.7-1.6 1.6-1.6.3 0 .6.1.9.3.6.2 1.1.8 1.1 1.5v3.5c0 .4-.2.8-.4 1.1 1 .3 2 .8 2.8 1.5.3-.1.7-.1 1 .1.5.3.7 1 .3 1.5-2 2.9-5.9 3.6-8.8 1.6-.3-.2-.5-.4-.7-.6-.3.1-.7.1-1-.1-.5-.4-.6-1.1-.3-1.6zm-36.4-.2c1.1-1.5 2.7-2.5 4.5-2.8-.1-.2-.1-.4-.1-.6v-3.5c0-.9.7-1.6 1.6-1.6.9 0 1.6.7 1.6 1.6v3.5c0 .2-.1.5-.2.7 1.6.4 3 1.4 4 2.7.4.7.3 1.6-.2 2.1-.1.1-.2.2-.3.2-.8.5-1.8.3-2.3-.5-.7-.9-1.7-1.4-2.8-1.5H203.5c-.2 0-.4.1-.5.1h-.1c-.6.2-1.2.6-1.6 1.2-.5.8-1.5 1-2.3.5-.1-.1-.2-.1-.3-.2-.7-.3-.8-1.2-.4-1.9zM236.2 154.4c-.3-.3-.7-.5-1.1-.6v-.2l-5 1.9v.1h.4c.1 0 3-.3 6.2 2.3.1-.2.2-.5.3-.7.3-1 0-2-.8-2.8z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M161.7 166.1c-3.6.4-6.2-.6-7.8-1.9.3 2.1.7 4.7 1.1 7.6 2.3-.9 4.7-1.7 7.2-2.3l-.1-.8c-.2-.9-.4-1.7-.4-2.6z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M136.4 159.7l-.1-.3"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M156.4 186.9H145c-.1.3-.2.5-.4.7h.8l.3.2c.1-.2.3-.3.6-.3h.7c1.6.1 2.6.3 3.1.7.3.2.5.5.8.8h6c-.2-.7-.4-1.4-.5-2.1zM150.2 182.9c0-.3-.2-.6-.6-.6h-7.5v1.1h7.5c.3 0 .6-.2.6-.5z"/>
+ <path fill="url(#a)" fill-rule="nonzero" d="M252 110.6c1.7 3 3.1 6 3.7 8.9.2 1.2.4 2.4.4 3.6.2 8.5-4.2 17.3-10.9 20.8-3.5 1.9-8.8 2.6-14.2 2.7v.5l-.3 2.9c2.1.2 4.2.4 6.4.4.1 0 .3 0 .4.1.8 0 1.6-.1 2.4-.2 6.9-.9 11-3.2 15.3-8.7 1.4-1.7 2.9-4.5 4.1-7.7 1.5-4.1 2.4-8.8 1.3-12.8-1.2-4.7-4.7-9.3-7.7-12.5-2.9-3.8-6-7.3-9.5-10.6-.1-.1-.3-.2-.5-.2-.1 0-.3.1-.4.1.2.3.5.6.8.9 2.3 2.7 5.9 7.1 8.7 11.8z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M242.6 98c.2.3.5.6.8.9-.3-.3-.6-.6-.8-.9z"/>
+ <path fill="url(#b)" fill-rule="nonzero" d="M242.6 98c.2.3.5.6.8.9-.3-.3-.6-.6-.8-.9z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M252 110.6c1.7 3 3.1 6 3.7 8.9.2 1.2.4 2.4.4 3.6 0-1.2-.2-2.4-.4-3.6-.6-2.9-2-6-3.7-8.9z"/>
+ <path fill="url(#c)" fill-rule="nonzero" d="M252 110.6c1.7 3 3.1 6 3.7 8.9.2 1.2.4 2.4.4 3.6 0-1.2-.2-2.4-.4-3.6-.6-2.9-2-6-3.7-8.9z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M229.9 169.3c.1.7.1 1.4.2 2.1 0-.8-.1-1.5-.2-2.1z"/>
+ <path fill="url(#d)" fill-rule="nonzero" d="M229.9 169.3c.1.7.1 1.4.2 2.1 0-.8-.1-1.5-.2-2.1z"/>
+ <path fill="#EDEDF0" fill-rule="nonzero" d="M220.4 226.2c0 1.8.2 3.1.5 3.3.1.1.3.2.5.2.5 0 1.2-.5 1.9-1.3.5-.5 1-1.2 1.5-2-1.4-.1-2.9-.2-4.4-.2z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M205.3 209.7c-10.4 1.9-21.2.6-30.8-3.8 9.6 4.4 20.3 5.8 30.8 3.8 14.7-2.8 21.6-12.5 23.9-20.8-2.3 8.3-9.2 17.9-23.9 20.8z"/>
+ <path fill="url(#e)" fill-rule="nonzero" d="M205.3 209.7c-10.4 1.9-21.2.6-30.8-3.8 9.6 4.4 20.3 5.8 30.8 3.8 14.7-2.8 21.6-12.5 23.9-20.8-2.3 8.3-9.2 17.9-23.9 20.8z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M230.1 183c.2-2.5.3-5 .2-7.4 0 2.4 0 4.9-.2 7.4z"/>
+ <path fill="url(#f)" fill-rule="nonzero" d="M230.1 183c.2-2.5.3-5 .2-7.4 0 2.4 0 4.9-.2 7.4z"/>
+ <path fill="url(#g)" fill-rule="nonzero" d="M236.4 180.1v-1c-1.9-1.3-3.9-2.4-5.9-3.4 0 .7.1 1.3.1 1.8 2 .8 3.9 1.4 5.8 2.6z"/>
+ <path fill="url(#h)" fill-rule="nonzero" d="M236.5 172.8c-.1-1.6-.1-3.1-.2-4.6-1.4 1-3.6 1.6-6.4 1.1.1.7.2 1.4.2 2.1.2 1.5.3 3 .4 4.3-.1 0-.1-.1-.2-.1 0 2.5 0 5-.2 7.4 0 .5-.1 1-.1 1.5-.1 1.4-.4 2.9-.8 4.4-2.3 8.3-9.2 18-23.9 20.8-10.4 1.9-21.2.6-30.8-3.8v2.9h.1c.3 0 .6.2.6.5l.3 6.4c2.9.9 10.8 3 23.3 3 7.3-.2 14.5-1.1 21.5-2.9 2.3-.9 4.4-2.2 6.3-3.8.2-.2.6-.2.8 0 .2.2.2.6 0 .8h-.1v.1c-1.9 1.7-4.1 3-6.4 4-.2 2.9-.3 5.7-.3 7.9v1.4c0 1.8.2 3.1.5 3.3.1.1.3.2.5.2.5 0 1.2-.5 1.9-1.3.5-.5 1-1.2 1.5-2 1.7-2.6 3.6-6.5 5.2-11.1.4-1.1.8-2.4 1.1-3.8 1.4-3.6 4.8-13.8 5.2-29V180s.1 0 .1.1v-1.2c-.2-1.5-.1-4.1-.1-6.1z"/>
+ <path fill="url(#i)" fill-rule="nonzero" d="M202.7 108.7v3.5c0 .2 0 .4.1.6.4-.1.8-.1 1.2-.1.5 0 1.1.1 1.6.2.1-.2.2-.5.2-.7v-3.5c0-.9-.7-1.6-1.6-1.6-.8 0-1.5.7-1.5 1.6z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M202.8 112.8c-1.8.3-3.4 1.3-4.5 2.8-.4.7-.3 1.5.2 2.1.1.1.2.2.3.2.8.5 1.8.3 2.3-.5.4-.6 1-1 1.6-1.2h.1c.2-.1.4-.1.5-.1H203.9c.7 0 1.5.2 2.1.7.3.2.5.4.7.7.5.8 1.5 1 2.3.5.1-.1.2-.1.3-.2.6-.5.7-1.4.2-2.1-1-1.4-2.4-2.3-4-2.7-.5-.1-1.1-.2-1.6-.2-.3-.1-.7 0-1.1 0zm5.1 1.6c.1 0 .1.1.2.2s.3.2.4.4c.2.1.3.3.5.5.1.1.2.2.2.3l.3.3c.1.2.1.5.1.7v.1c0 .1-.1.2-.1.2 0 .1 0 .1-.1.2 0 .1-.1.1-.1.1l-.1.1h-.1-.1c-.1 0-.2.1-.2.1h-.1c-.4 0-.7-.1-1-.4-.8-1-2-1.7-3.3-1.7H203.8c-.2 0-.4.1-.6.1-.1 0-.3.1-.4.2-.1.1-.3.1-.4.2-.2.1-.4.2-.5.4l-.1.1-.6.6-.3.3c-.4.3-.9.3-1.2 0-.5-.3-.7-1-.3-1.5.2-.3.4-.5.6-.7l.1-.1c.2-.2.5-.5.8-.7h.1c.1-.1.3-.2.5-.3h.1c.2-.1.3-.2.5-.2h.1c.2-.1.3-.1.5-.2s.4-.1.6-.2c1.3-.4 3.1-.1 4.6.9z"/>
+ <path fill="url(#j)" fill-rule="nonzero" d="M202.9 113.4c-.2 0-.4.1-.6.2-.2.1-.4.1-.5.2h-.1c-.2.1-.3.2-.5.2h-.1c-.2.1-.3.2-.5.3h-.1c-.3.2-.5.4-.8.7l-.1.1c-.2.2-.4.5-.6.7-.3.5-.2 1.2.3 1.5.4.3.9.2 1.2 0l.3-.3c.2-.2.4-.5.6-.7l.1-.1c.2-.1.4-.3.5-.4.1-.1.2-.1.4-.2.1-.1.3-.1.4-.2.2-.1.4-.1.6-.1H204c1.3 0 2.5.6 3.3 1.7.2.3.6.4 1 .4h.1c.1 0 .2 0 .2-.1.1 0 .1 0 .2-.1h.1l.1-.1.1-.1s.1-.1.1-.2.1-.1.1-.2v-.1c0-.2 0-.5-.1-.7l-.3-.3c-.1-.1-.1-.2-.2-.3-.1-.2-.3-.3-.5-.5-.1-.1-.3-.2-.4-.4-1.2-.8-3.1-1.3-4.9-.9z"/>
+ <path fill="url(#k)" fill-rule="nonzero" d="M140 165.4v.7l.6-.9"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M137.8 166.1l-1.9.6c-.8.2-1.2 1.1-1 1.8l1.1 3.7.2.6.1.2v.1l.1.4c-.5.6-1 1.1-1.4 1.7h2.4c.2-.4.3-.9.3-1.4v-7.7h.1z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M140 168.2l-.1.2c-.2.3-.5.3-.8.2l-.2-.2c-.1-.2-.1-.4 0-.6l1.1-1.6v-.7l-2.2.7v7.7c0 .5-.1 1-.3 1.4h2.3c.1-.5.2-.9.2-1.4v-5.7z"/>
+ <path fill="url(#l)" fill-rule="nonzero" d="M154.4 170.6c-3.5 1.5-6.8 3.4-9.9 5.6.1.1.1.2.2.4l.2.7c3.1-2 6.3-3.8 9.7-5.2-.1-.6-.1-1.1-.2-1.5z"/>
+ <path fill="url(#m)" fill-rule="nonzero" d="M156.8 189.1c-.2-.8-.3-1.5-.4-2.2-.8-4.1-1.3-6.9-1.3-6.9 0-.3.1-.5.4-.6.1-.1.2-.1.2-.1.2 0 .3 0 .4.1-.4-2.2-1.1-5.2-1.5-7.4.1-.1.2-.1.4-.2-.4-2.9-.8-5.5-1.1-7.7-1.5-1.3-2.1-2.8-2-3.7v-.1c-1.2-.6-2.1-1.4-2.8-2.1-1.4-1.5-1.7-3-1.7-3.2v-.4c.1-.4.5-.8.9-.8h.3l.2-.2c.1-.6.3-1.3.6-1.9.8-1.9 2.1-3.5 2.7-4.3-.1-3.2-.2-6.5-.3-9.9 0 .1 0 .2-.1.3l-.6 3c-.1.2-.1.5-.2.7-.3 1.1-.5 2.3-.9 3.5-.1.2-.1.4-.2.6v.2l-.1.2-.1.5h-.1l-1.5 4.1c-.1.2-.3.4-.6.3h-.1-.1c-.3-.1-.4-.4-.3-.7l1-2.7-.3.2-4.7 2.9c-.7.4-.9 1.3-.5 2l2.9 4.7.1.1.1.1.2.3v.1c-1 2.3-2.1 4.5-3.3 6.7h-.1l-2.4 3.5-.1.2c-.2.3-.5.3-.8.2l-.2-.2c-.1-.2-.1-.4 0-.6l1.1-1.6v-.7l-2.2.7-1.9.6c-.8.2-1.2 1.1-1 1.8l1.1 3.7.2.6.1.2v.1l.1.4c-.5.6-1 1.1-1.4 1.7H142.6c.7 0 1.3.4 1.7.9.1.1.1.2.2.4l.2.7.1.2c.1.5 0 1.1-.3 1.5-.4.4-.9.7-1.5.7h-1v4h1c1 0 1.9.8 1.9 1.7v1.1c0 .1 0 .3-.1.4-.1.3-.2.5-.4.7h.8l.3.2c.1-.2.3-.3.6-.3h.7c1.6.1 2.6.3 3.1.7.3.2.5.5.8.8.9 1.2 1.4 3 1.4 5 0 1.5-.7 4.7-2 5.7-.9.7-2.6.8-3.8.8h-.2c.
2.3.4.6.5 1.1l.2 1.1c.1.4.1.7 0 1.1 3 .4 6 .7 9 .7 1.4 0 2.8-.1 4.1-.2-1.1-4.9-2.2-10.5-3.1-15.1z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M149.2 153.6s0-.1 0 0c.2 0 .2 0 .3.1.2.1.3.3.3.6 0 0-.1.7.8 1.8.5.6 1.3 1.2 2.5 1.9.2-.9.7-1.7 1.5-2.5s1.5-1.3 2.3-1.7c-1.2-1.1-2.4-2.4-3.2-3.7-.6-.9-.9-1.9-.9-2.8v-.1l-.3.3c-.6.7-1.9 2.4-2.7 4.3-.3.6-.5 1.3-.6 1.9-.2-.2-.1-.2 0-.1z"/>
+ <path fill="url(#n)" fill-rule="nonzero" d="M136.3 173.1l-.3-.9-1.1-3.7c-.2-.8.2-1.6 1-1.8l1.9-.6 2.2-.7.6-.2h.1l-.7 1-1.1 1.6c-.1.2-.1.4 0 .5 0 .1.1.2.2.2.3.2.6.1.8-.2l.1-.2 2.4-3.5h.1c1.2-2.2 2.4-4.4 3.3-6.7v-.1l-.2-.3-.1-.2-.1-.1-2.9-4.7c-.4-.7-.2-1.6.5-2l4.7-2.9.3-.2.1-.1-1 2.8c-.1.3.1.6.3.7h.1c.2 0 .5-.1.6-.3l1.5-4.1h.1l.1-.5.1-.2v-.2c.1-.2.1-.4.2-.6.3-1.2.6-2.3.9-3.5.1-.2.1-.5.2-.7l.6-3v-.2c.2-.9.3-1.9.5-2.8 0-10.8.9-20.2 2.9-26.1v.1l.7 1.7c.1.2.3.3.5.4h.2c.3-.1.4-.4.3-.7l-1.2-2.9v-.2l-.4-1.1 1.1-.3c1.8-3.5 4.1-6.7 6.8-9.6 0 .6.1 1.2.3 1.8.1.2.3.4.5.4h.2c.2-.1.4-.3.4-.5v-.2c-.1-.8-.2-1.7-.3-2.5l.1-.1v-.1l.1-4.1 4.3.1c3.6-3 7.5-5.6 11.6-7.8l1.7-6.2 5.1 1.4h.1l-2.6 1.1c-.1 0-.2.1-.2.2-.1.1-.2.4-.1.6.1.3.4.4.7.3h.1l3.8-1.7.5.1c5.3-2.1 10.9-3.3 16.6-3.5.6 0 1.2 0 1.7.1 8.6.6 23 11.7 34.3 22.9 0 0 .1 0 .1-.1.1-.1.3-.1.4-.1.2 0 .4.1.5.2 3.4 3.3 6.6 6.8 9.5 10.6 2.9 3.2 6.5 7.7 7.7 12.5 1 4 .2 8.7-1.3 12.8-1.2 3.2-2.8 6-4.1 7.8-4.3 5.5-8.4 7.8-15.3 8.7-.8.1-1.6.2-2.4.2-.1-.1-.3-.
1-.4-.1-2.1-.1-4.2-.2-6.3-.5l-.2 2.1c1.5.2 3 .3 4.6.4l.1.9v.2c1.3.4 2.1 1.6 2 2.9 0 .2 0 .5-.1.7l-.3.6.6.6c.3.3.6.7.9 1.1 1.6-2.1 1.5-5-.5-6.9.8 0 1.6-.1 2.4-.2 7.5-1 12.1-3.6 16.7-9.5 3.7-4.6 7.9-14.7 5.9-22.5-1.3-5.2-5.1-10.1-8.1-13.3-2.9-3.9-6.1-7.5-9.7-10.8-.5-.5-1.2-.8-1.8-.8-5.4-5.4-11.3-10.3-17.5-14.7-5.4-3.7-10-6.2-13.9-7.2-.5-.2-1.1-.3-1.6-.4h-.1c-.6-.1-1.2-.2-1.7-.2-.6 0-1.2-.1-1.9-.1-5.7.2-11.4 1.3-16.7 3.4l-.2-.1-6.5-1.8h-.1c-1.2-.3-2.3.4-2.6 1.6l-1.4 5.3c-3.7 2-7.2 4.4-10.5 7.1l-3.5-.1c-1.2 0-2.2 1-2.2 2.2l-.1 3.3c-2.8 3-5.3 6.3-7.3 9.9l-.3.1c-1.2.4-1.8 1.6-1.5 2.8l.2.5c-2.2 5.7-3.3 15-3.3 27.6-.6 3.6-1.4 7.2-2.2 10.6l-5 2.8-1.1.7c-.9.5-1.4 1.4-1.7 2.3-.2.9-.1 1.9.4 2.8l2.6 4.3c-.7 1.6-1.5 3.2-2.3 4.7l-5.8 1.8c-1.2.4-2.1 1.3-2.4 2.5-.2.7-.2 1.4 0 2.1l.7 2.2.5 1.7-1.8 2.1h2.9c.5-.6 1-1.1 1.4-1.7l-.2-.8z"/>
+ <path fill="url(#o)" fill-rule="nonzero" d="M237.3 167.2c-.2.3-.6.7-1 1 0 .9.1 1.7.2 2.4.1.5 0 1.3 0 2.2 0 2-.2 4.6 0 6.1v3.5c-.4 15.3-3.8 25.4-5.2 29-.4 1.4-.7 2.6-1.1 3.8-1.6 4.6-3.6 8.6-5.3 11.2-.5.8-1.1 1.5-1.5 2-.7.8-1.4 1.3-1.9 1.3-.2 0-.3-.1-.5-.2-.3-.3-.5-1.5-.5-3.3v-1-.3-.1c0-2.2.2-5.1.3-7.9v-.1c2.4-.9 4.6-2.3 6.5-4h.1c.2-.2.2-.6 0-.8-.2-.2-.6-.2-.8 0-1.9 1.6-4 2.9-6.3 3.8-7.1 1.8-14.3 2.7-21.5 2.9-12.5 0-20.4-2.1-23.3-3l-.3-6.4c0-.3-.3-.5-.6-.5h-.1c-.1 0-.2.1-.3.2-.1.1-.1.2-.1.3l.2 5.8v.2h-.1c0 2.1.1 4.1.1 6 0 1.7 0 3.3-.1 4.6-.1 2-.3 3.3-.6 3.6-.1.1-.2.1-.3.1h-.2c-.6 0-1.4-.6-2.3-1.8-2-2.4-4.5-7.1-6.4-12.7-1.2-3.6-2.1-7.2-2.9-10.9h-.2v-.2c-2.2-9.3-4.2-20.2-4.8-23.4l-.2-.9c0-.1-.1-.3-.2-.4-.1-.1-.3-.1-.4-.1-.1 0-.2.1-.2.1-.2.1-.2.3-.2.5 0 .1.5 2.9 1.3 7 .1.7.3 1.5.4 2.2.9 4.6 2 10.2 3.2 15.3h-.2c-1.4.1-2.7.2-4.1.2-3 0-6-.3-9-.7-.1.3-.2.6-.3.8-.4.5-.9.9-1.5.9h-1v.2c3.9.7 7.8 1.1 11.8 1.2 1.3 0 2.6 0 3.9-.1.7 3.1 1.5 6.2 2.6 9.2.3.9 2.2 6.1 4.7 10.3 1.8 3.1 4 5.7 6.2 5.7
.5 0 1-.1 1.4-.4.2-.1.3-.2.5-.3.9-.8 1.7-1.4 1.5-12.8v-.1c7.2 1.8 14.7 2.7 22.2 2.6 6.6-.1 13.3-.9 19.7-2.4-.2 3.3-.3 5.7-.2 7.5.1 4.2.7 4.7 1.3 5.2.5.4 1.2.7 1.9.7.6 0 1.2-.2 1.8-.6 4.4-2.7 8.5-14 9-15.4.4-1.1.8-2.4 1.1-3.8 1.5-3.9 4.9-14.2 5.3-29.7v-1.8-1.3c-.1-3.6-.2-9.6-.4-14.4-.4.6-.7 1.7-1.1 2.2z"/>
+ <path fill="url(#p)" fill-rule="nonzero" d="M152 160.4c.2-.2 1.1.2 1-.1-.2-.8-.2-1.6 0-2.4-1.2-.7-2-1.3-2.5-1.9-.9-1-.8-1.8-.8-1.8 0-.2-.1-.4-.2-.6-.1 0-.1-.1-.2-.1H149c-.1 0-.2.1-.2.2h-.3c-.5.1-.8.4-.9.8v.4c0 .2.3 1.7 1.7 3.2.6 1 1.5 1.7 2.7 2.3z"/>
+ <path fill="url(#q)" fill-rule="nonzero" d="M161.9 166s-.1 0-.2.1c.1.9.2 1.8.4 2.6l-.2-2.7z"/>
+ <path fill="url(#r)" fill-rule="nonzero" d="M241.3 112.7c.1-.2.2-.5.2-.7v-3.5c0-.5-.3-1-.7-1.3-.3-.2-.6-.3-.9-.3-.9 0-1.6.7-1.6 1.6v3.5c0 .2 0 .4.1.6h.3c.3 0 .6-.1.9-.1.6 0 1.2.1 1.7.2z"/>
+ <path fill="url(#s)" fill-rule="nonzero" d="M235.1 117.3c.3.2.7.2 1 .1.2-.1.4-.2.6-.4.3-.4.7-.7 1.1-1 .7-.4 1.4-.7 2.3-.7 1 0 1.9.4 2.6 1 .3.2.5.4.7.7.4.5 1.1.6 1.6.2.4-.3.6-.9.3-1.4-.2-.4-.5-.7-.8-1-.8-.8-1.8-1.3-2.8-1.5-.8-.2-1.6-.2-2.4-.1-1 .1-1.9.5-2.7 1.1-.3.2-.6.4-.8.7l-.4.4-.4.4c-.6.5-.5 1.2.1 1.5z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M102.5 224.6c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h44.2c.1 0 .2 0 .2.1-.1-.4-.2-.8-.4-1.2H101v5.2h45.2c.2-.3.4-.8.6-1.3H102.4c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h44.2c.1 0 .2 0 .3.1.1-.4.1-.8 0-1.3-.1.1-.2.2-.3.2h-44.1v.2z"/>
+ <path fill="url(#t)" fill-rule="nonzero" d="M96.8 230.3c.9-.1 1.9-.2 2.9-.3v-.3h-2.6c-.1 0-.2 0-.3.1 0 .2-.1.3 0 .5z"/>
+ <path fill="url(#u)" fill-rule="nonzero" d="M151.8 225.1c0-2.9-1-5.2-1.9-6-.2-.1-1-.4-2.6-.5-.1.4-.3.9-.9.9l-.4.1-1.2-1H97.1c-.2 0-.3.2-.3.3v1.4c0 .2.2.3.3.3h15.6l34.2-.6.6.6h.1l.2.3 1.1 1.1-.2 1.1c.3 1.4.2 3-.2 4.2l3-.3c.2-.6.3-1.3.3-1.9z"/>
+ <path fill="#EDEDF0" fill-rule="nonzero" d="M142.6 230.1h-43v-.1c-1 .1-2 .2-2.9.3l.3 1c0 .2.2.3.3.3H144l1.1-1 .5.1c.4.1.6.3.8.6l.4.4c1.6 0 2.8-.3 3.3-.7.5-.4 1.1-2.1 1.5-3.8l-3 .3c-.2.5-.4 1-.6 1.4l-.2 1-5.2.2z"/>
+ <path fill="url(#v)" fill-rule="nonzero" d="M142.6 230.1h-43v-.1c-1 .1-2 .2-2.9.3l.3 1c0 .2.2.3.3.3H144l1.1-1 .5.1c.4.1.6.3.8.6l.4.4c1.6 0 2.8-.3 3.3-.7.5-.4 1.1-2.1 1.5-3.8l-3 .3c-.2.5-.4 1-.6 1.4l-.2 1-5.2.2z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M112.7 220.7h34.9l-.7-.6"/>
+ <path fill="url(#w)" fill-rule="nonzero" d="M112.7 220.7h34.9l-.7-.6"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M147.9 221l.1.1c.4.6.7 1.3.8 2l.2-1.1-1.1-1z"/>
+ <path fill="url(#x)" fill-rule="nonzero" d="M147.9 221l.1.1c.4.6.7 1.3.8 2l.2-1.1-1.1-1z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M99.7 230.1h43l5.1-.3.2-1c-.2.3-.4.5-.6.7l-.3.3H99.7v.3z"/>
+ <path fill="url(#y)" fill-rule="nonzero" d="M99.7 230.1h43l5.1-.3.2-1c-.2.3-.4.5-.6.7l-.3.3H99.7v.3z"/>
+ <path fill="url(#z)" fill-rule="nonzero" d="M95.2 231.8c.2 1 1.1 1.7 2.2 1.7h47.3l.6-.6c.3.3.8.6 1.4.6 1.5 0 3.4-.2 4.5-1.1 1.1-.9 1.9-3.4 2.2-5.4.1-.7.2-1.4.2-1.9 0-3.2-1-6.2-2.6-7.5-.6-.4-1.8-.7-3.6-.9h-.8c-.3 0-.6.1-.7.3l-.4-.3H97c-1.2 0-2.2 1-2.2 2.2v1.4c0 1.2 1 2.2 2.2 2.2h1.2v5.2H97c-.7 0-1.3.3-1.8.9-.4.5-.5 1.1-.4 1.7v.2l.4 1.3zm1.6-1.9c.1-.1.2-.1.3-.1h50l.3-.3c.2-.2.4-.4.6-.7.3-.4.5-.9.6-1.4.4-1.3.5-2.8.2-4.2-.2-.7-.4-1.4-.8-2l-.1-.1-.2-.3H97.2c-.2 0-.3-.2-.3-.3v-1.4c0-.2.2-.3.3-.3h47.7l1.2 1 .4-.1c.6-.1.8-.5.9-.9 1.6.1 2.4.4 2.6.5.9.8 1.9 3.1 1.9 6 0 .6-.1 1.4-.2 2.1-.3 1.7-.9 3.4-1.5 3.8-.5.4-1.8.6-3.3.7l-.4-.4c-.2-.3-.4-.5-.8-.6l-.5-.1-1.1 1H97.5c-.2 0-.3-.1-.3-.3l-.3-1v-.1c-.2-.3-.1-.4-.1-.5zm50.2-4.1c.1.1.2.2.2.4s-.1.4-.3.4c-.1.5-.3.9-.6 1.3H101v-5.2h45.5c.2.4.3.8.4 1.2.1.1.2.2.2.4 0 .1-.1.2-.1.3.1.3.1.8 0 1.2z"/>
+ <path fill="url(#A)" fill-rule="nonzero" d="M147 223.8c-.1 0-.2-.1-.2-.1h-44.2c-.3 0-.5.2-.5.5s.2.5.5.5h44.2c.1 0 .3-.1.3-.2.1-.1.1-.2.1-.3 0-.2-.1-.3-.2-.4z"/>
+ <path fill="url(#B)" fill-rule="nonzero" d="M102.5 225.6c-.3 0-.5.2-.5.5s.2.5.5.5H146.9c.2-.1.3-.2.3-.4 0-.1-.1-.3-.2-.4-.1-.1-.2-.1-.3-.1h-44.2v-.1z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M103 210.8h38.8v-5.2h-38.5c-.8 1.1-1 3.5-.3 5.2z"/>
+ <path fill="url(#C)" fill-rule="nonzero" d="M134.5 203.4c-1.4-.5-2.8-.9-4.2-1.5h-.2l4.2 1.5h.2z"/>
+ <path fill="url(#D)" fill-rule="nonzero" d="M145.3 203.6c-2.5-.5-5.1-1-7.6-1.8h-.2c2.5.8 5.1 1.4 7.8 1.8z"/>
+ <path fill="url(#E)" fill-rule="nonzero" d="M103.2 213.9l.4-.1 1 1h40.6c.2 0 .3-.2.3-.3v-1.4c0-.2-.1-.3-.3-.3h-13.3l-29.1.6-.5-.6h-.1l-.2-.3-.9-1.1.1-1.1c-.4-2-.1-4.2.7-5.6l.1-1 4.4-.3h18.5c-.8-.4-1.7-.9-2.6-1.5h-17.1l-.9 1-.4-.1c-.3-.1-.5-.3-.7-.6-.1-.1-.2-.3-.3-.4-1.3 0-2.4.3-2.8.7-.7.6-1.4 3.8-1.4 5.9 0 2.9.8 5.2 1.6 6 .1.1.9.4 2.2.5 0-.5.2-.9.7-1z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M134.3 203.4c-1.4-.5-2.8-.9-4.2-1.5h-7.8c.9.6 1.8 1.1 2.6 1.5h9.4z"/>
+ <path fill="url(#F)" fill-rule="nonzero" d="M134.3 203.4c-1.4-.5-2.8-.9-4.2-1.5h-7.8c.9.6 1.8 1.1 2.6 1.5h9.4z"/>
+ <path fill="url(#G)" fill-rule="nonzero" d="M145.3 203.6c.1-.1.1-.2.1-.3l-.2-1.1c0-.2-.1-.3-.3-.3h-7.2c2.5.7 5 1.3 7.6 1.7z"/>
+ <path fill="url(#H)" fill-rule="nonzero" d="M145.3 203.6c.1-.1.1-.2.1-.3l-.2-1.1c0-.2-.1-.3-.3-.3h-7.2c2.5.7 5 1.3 7.6 1.7z"/>
+ <path fill="url(#I)" fill-rule="nonzero" d="M142.9 203.4v.3h2.2c.1 0 .1 0 .2-.1-2.6-.4-5.2-1-7.8-1.8h-7.2l4.2 1.5h8.4v.1z"/>
+ <path fill="url(#J)" fill-rule="nonzero" d="M142.9 203.4v.3h2.2c.1 0 .1 0 .2-.1-2.6-.4-5.2-1-7.8-1.8h-7.2l4.2 1.5h8.4v.1z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M131.8 212.7h-29.6l.5.7"/>
+ <path fill="url(#K)" fill-rule="nonzero" d="M131.8 212.7h-29.6l.5.7"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M101.9 212.4l-.1-.1c-.3-.6-.6-1.3-.7-2l-.1 1.1.9 1z"/>
+ <path fill="url(#L)" fill-rule="nonzero" d="M101.9 212.4l-.1-.1c-.3-.6-.6-1.3-.7-2l-.1 1.1.9 1z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M134.5 203.4h-28.1l-4.4.3-.1 1c.1-.3.3-.5.5-.7l.2-.3H143v-.3h-8.5z"/>
+ <path fill="url(#M)" fill-rule="nonzero" d="M134.5 203.4h-28.1l-4.4.3-.1 1c.1-.3.3-.5.5-.7l.2-.3H143v-.3h-8.5z"/>
+ <path fill="url(#N)" fill-rule="nonzero" d="M103 216.8h.2c.2 0 .4-.1.5-.3l.3.3H145.4c1-.1 1.7-1.1 1.7-2.2v-1.4c0-1.2-.9-2.2-1.9-2.2h-1v-5.5h1c.6 0 1.1-.3 1.5-.9.2-.3.3-.5.3-.8.1-.3.1-.7 0-1.1l-.2-1.1c-.1-.4-.3-.8-.5-1.1-.4-.1-.7-.3-1-.5l-.5.4h-40.1c-.2 0-.3 0-.5-.1-.4-.1-.7-.3-.9-.6h-.2c-1.2 0-2.9.2-3.9 1.1-1.3 1.3-2 5.5-2 7.4 0 3.2.9 6.2 2.2 7.5.5.4 1.5.7 3.1.9.1.1.3.2.5.2zm-2.8-2.5c-.8-.8-1.6-3.1-1.6-6 0-2.1.8-5.3 1.4-5.9.4-.4 1.5-.6 2.8-.7.1.1.3.3.3.4.2.3.4.5.7.6l.4.1.9-1H144.8c.1 0 .2.1.3.3l.2 1.1c0 .1 0 .2-.1.3l-.1.1s-.1.1-.2.1h-42.6l-.2.3c-.2.2-.3.4-.5.7-.8 1.4-1.1 3.6-.7 5.6.1.7.4 1.4.7 2l.1.1.2.3h43c.2 0 .3.2.3.3v1.4c0 .2-.1.3-.3.3h-40.6l-1-1-.4.1c-.5.1-.7.5-.8.9-1 0-1.8-.2-1.9-.4zm41.5-8.7v5.2H103c-.7-1.7-.5-4.1.3-5.2h38.4z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M108.9 193.8c-.2 0-.4-.2-.4-.4s.2-.4.4-.4h37.5c.1 0 .1 0 .2.1l-.3-.9h-38.6v4.1H146c.2-.3.4-.6.5-1h-37.6c-.2 0-.4-.2-.4-.4s.2-.4.4-.4h37.5c.1 0 .2 0 .3.1 0-.3.1-.7 0-1-.1.1-.2.1-.3.1h-37.5v.1z"/>
+ <path fill="url(#O)" fill-rule="nonzero" d="M104.3 198.9c0 .1.1.2.3.2h13.9c-.4-.4-.9-.8-1.3-1.1h-10.7v-.3h-2.2c-.1 0-.2 0-.2.1-.1.1-.1.1-.1.2l.3.9z"/>
+ <path fill="url(#P)" fill-rule="nonzero" d="M104.2 189.1c-.1 0-.2.1-.2.2v1.1c0 .1.1.3.3.3h9.3c0-.6.1-1.1.2-1.6h-9.6z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M113.8 189.1h-9.5-.1 9.6z"/>
+ <path fill="url(#Q)" fill-rule="nonzero" d="M113.8 189.1h-9.5-.1 9.6z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M117.2 198c.4.4.8.8 1.3 1.1h5.7c-.7-.4-1.4-.7-2-1.1h-5z"/>
+ <path fill="url(#R)" fill-rule="nonzero" d="M117.2 198c.4.4.8.8 1.3 1.1h5.7c-.7-.4-1.4-.7-2-1.1h-5z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M113.8 189.1c-.1.5-.2 1.1-.2 1.6h3.4c.1-.6.2-1.1.4-1.6h-3.6z"/>
+ <path fill="url(#S)" fill-rule="nonzero" d="M113.8 189.1c-.1.5-.2 1.1-.2 1.6h3.4c.1-.6.2-1.1.4-1.6h-3.6z"/>
+ <path fill="url(#T)" fill-rule="nonzero" d="M142.9 198h-15.8c.9.4 1.7.8 2.6 1.1h14.4l.9-.8.4.1c.3.1.5.3.7.5.1.1.2.3.3.3 1.3 0 2.4-.2 2.8-.5.7-.5 1.4-2.9 1.4-4.6 0-2.3-.8-4-1.6-4.6-.1-.1-.8-.3-2-.4h-.2c-.1.3-.3.6-.7.7h-.3l-1-.7h-13.3c-.4.5-.7.9-1.1 1.4l16.2-.3.5.5h.1l.2.2.9.8-.1.9c.4 1.6.1 3.2-.7 4.3l-.1.8-4.5.3z"/>
+ <path fill="url(#T)" fill-rule="nonzero" d="M142.9 198h-15.8c.9.4 1.7.8 2.6 1.1h14.4l.9-.8.4.1c.3.1.5.3.7.5.1.1.2.3.3.3 1.3 0 2.4-.2 2.8-.5.7-.5 1.4-2.9 1.4-4.6 0-2.3-.8-4-1.6-4.6-.1-.1-.8-.3-2-.4h-.2c-.1.3-.3.6-.7.7h-.3l-1-.7h-13.3c-.4.5-.7.9-1.1 1.4l16.2-.3.5.5h.1l.2.2.9.8-.1.9c.4 1.6.1 3.2-.7 4.3l-.1.8-4.5.3z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M146.8 189.1h.2-.2z"/>
+ <path fill="url(#U)" fill-rule="nonzero" d="M146.8 189.1h.2-.2zM146.8 189.1h.2-.2z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M144.8 189.1h-13.3 13.3z"/>
+ <path fill="url(#V)" fill-rule="nonzero" d="M144.8 189.1h-13.3 13.3zM144.8 189.1h-13.3 13.3z"/>
+ <path fill="url(#W)" fill-rule="nonzero" d="M119.8 189.1c-.3.5-.5 1-.6 1.6l10.5-.2c.3-.5.7-.9 1-1.4h-10.9z"/>
+ <path fill="url(#W)" fill-rule="nonzero" d="M119.8 189.1c-.3.5-.5 1-.6 1.6l10.5-.2c.3-.5.7-.9 1-1.4h-10.9z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M130.8 189.1h-10.9 10.9z"/>
+ <path fill="url(#X)" fill-rule="nonzero" d="M130.8 189.1h-10.9 10.9zM130.8 189.1h-10.9 10.9z"/>
+ <path fill="url(#Y)" fill-rule="nonzero" d="M129.7 190.5h.6c.4-.5.7-.9 1.1-1.4h-.7c-.3.5-.6.9-1 1.4z"/>
+ <path fill="url(#Y)" fill-rule="nonzero" d="M129.7 190.5h.6c.4-.5.7-.9 1.1-1.4h-.7c-.3.5-.6.9-1 1.4z"/>
+ <path fill="url(#Y)" fill-rule="nonzero" d="M129.7 190.5h.6c.4-.5.7-.9 1.1-1.4h-.7c-.3.5-.6.9-1 1.4z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M131.5 189.1h-.7.7z"/>
+ <path fill="url(#Z)" fill-rule="nonzero" d="M131.5 189.1h-.7.7zM131.5 189.1h-.7.7zM131.5 189.1h-.7.7z"/>
+ <path fill="url(#aa)" fill-rule="nonzero" d="M122.2 198c.6.4 1.3.8 2 1.1h5.5c-.9-.4-1.8-.7-2.6-1.1h-4.9z"/>
+ <path fill="url(#ab)" fill-rule="nonzero" d="M122.2 198c.6.4 1.3.8 2 1.1h5.5c-.9-.4-1.8-.7-2.6-1.1h-4.9z"/>
+ <path fill="url(#ac)" fill-rule="nonzero" d="M119.8 189.1h-2.5c-.2.5-.3 1-.4 1.6h2.3c.1-.6.3-1.1.6-1.6z"/>
+ <path fill="url(#ad)" fill-rule="nonzero" d="M119.8 189.1h-2.5c-.2.5-.3 1-.4 1.6h2.3c.1-.6.3-1.1.6-1.6z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M117.2 198H142.9l4.4-.2.1-.8c-.1.2-.3.4-.5.5l-.2.2h-40.2v.3h10.7z"/>
+ <path fill="url(#ae)" fill-rule="nonzero" d="M117.2 198H142.9l4.4-.2.1-.8c-.1.2-.3.4-.5.5l-.2.2h-40.2v.3h10.7z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M130.3 190.5h-.6l-10.5.2h-1.6 29.5l-.5-.5"/>
+ <path fill="url(#af)" fill-rule="nonzero" d="M130.3 190.5h-.6l-10.5.2h-1.6 29.5l-.5-.5"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M147.4 191l.1.1c.3.5.6 1 .7 1.6l.1-.9-.9-.8z"/>
+ <path fill="url(#ag)" fill-rule="nonzero" d="M147.4 191l.1.1c.3.5.6 1 .7 1.6l.1-.9-.9-.8z"/>
+ <path fill="url(#ah)" fill-rule="nonzero" d="M104.1 200.5c.2 0 .3.1.5.1h40.1l.5-.4c.2.2.6.4 1 .5h.2c1.2 0 2.9-.2 3.8-.8 1.3-1 2-4.2 2-5.7 0-2-.6-3.8-1.4-5-.2-.3-.5-.6-.8-.8-.5-.3-1.5-.6-3.1-.7h-.7c-.3 0-.5.1-.6.3l-.3-.2h-.8c-.3.4-.8.6-1.4.6h-40.2c-.2.3-.4.6-.5.9v1.3c0 1 .8 1.7 1.9 1.7h1v4.1h-1c-.6 0-1.1.2-1.5.7-.4.4-.5 1-.3 1.5l.2.9c.1.3.2.5.4.7.2 0 .5.2 1 .3-.1 0-.1 0 0 0zm0-2.7c.1-.1.1-.1.2-.1H146.7l.2-.2.5-.5c.8-1.1 1.1-2.8.7-4.3-.1-.6-.4-1.1-.7-1.6l-.1-.1-.2-.2h-42.8c-.2 0-.3-.1-.3-.3v-1.1c0-.1.1-.2.2-.2h40.6l1 .7h.3c.5-.1.7-.4.7-.7h.2c1.2.1 1.9.3 2 .4.8.6 1.6 2.4 1.6 4.6 0 1.6-.8 4.1-1.4 4.6-.4.3-1.5.5-2.8.5-.1-.1-.3-.2-.3-.3-.2-.2-.4-.4-.7-.5l-.4-.1-.9.8h-39.5c-.1 0-.2-.1-.3-.2l-.3-1s0-.1.1-.2zm42.5-3.2c.1.1.1.2.1.3 0 .2-.1.3-.3.3-.1.4-.3.7-.5 1h-38.4v-4.1h38.6l.3.9c.1.1.2.2.2.3 0 .1 0 .2-.1.3.2.4.2.7.1 1z"/>
+ <path fill="url(#ai)" fill-rule="nonzero" d="M146.6 193.1c-.1 0-.1-.1-.2-.1h-37.5c-.2 0-.4.2-.4.4s.2.4.4.4h37.5c.1 0 .2 0 .3-.1.1-.1.1-.2.1-.3 0-.1-.1-.2-.2-.3z"/>
+ <path fill="url(#aj)" fill-rule="nonzero" d="M108.9 194.6c-.2 0-.4.2-.4.4s.2.4.4.4h37.6c.2 0 .3-.2.3-.3 0-.1-.1-.2-.1-.3-.1-.1-.2-.1-.3-.1h-37.5v-.1z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M101.1 183.6h38.6v-4.1h-38.4c-.6 1-.8 2.8-.2 4.1z"/>
+ <path fill="url(#ak)" fill-rule="nonzero" d="M98.4 186.4c.1.1.9.3 2.2.4.1-.3.3-.7.8-.7h.3l1 .8h11.9c.2-.5.5-1 .8-1.4l-14.6.2-.5-.5h-.1l-.2-.2-.9-.8.1-.9c-.3-1.2-.2-2.5.2-3.5H97c-.2.7-.3 1.4-.3 2 .1 2.2.9 4 1.7 4.6z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M120.7 176.7h-17.3l-.9.8h17.9c0-.3.1-.5.3-.8z"/>
+ <path fill="url(#al)" fill-rule="nonzero" d="M120.7 176.7h-17.3l-.9.8h17.9c0-.3.1-.5.3-.8z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M102 177.4c-.3-.1-.5-.3-.7-.5-.1-.1-.2-.3-.3-.3-1.3 0-2.4.2-2.8.5l-.3.3h4.5-.4z"/>
+ <path fill="url(#am)" fill-rule="nonzero" d="M102 177.4c-.3-.1-.5-.3-.7-.5-.1-.1-.2-.3-.3-.3-1.3 0-2.4.2-2.8.5l-.3.3h4.5-.4z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M133 177.5c.2-.3.5-.5.8-.8l-.8.8z"/>
+ <path fill="url(#an)" fill-rule="nonzero" d="M133 177.5c.2-.3.5-.5.8-.8l-.8.8z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M100 178.9l.1-.8 4.4-.2h15.6c0-.1.1-.2.2-.4H97.9c-.3.5-.7 1.3-.9 2.2h2.5c.2-.3.3-.6.5-.8z"/>
+ <path fill="url(#ao)" fill-rule="nonzero" d="M100 178.9l.1-.8 4.4-.2h15.6c0-.1.1-.2.2-.4H97.9c-.3.5-.7 1.3-.9 2.2h2.5c.2-.3.3-.6.5-.8z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M133 177.5c-.2.1-.3.2-.4.4l.4-.4z"/>
+ <path fill="url(#ap)" fill-rule="nonzero" d="M133 177.5c-.2.1-.3.2-.4.4l.4-.4z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M120.2 185.3l-4.7.1c-.3.4-.6.9-.8 1.4h4.1c.3-.6.8-1.1 1.4-1.5z"/>
+ <path fill="url(#aq)" fill-rule="nonzero" d="M120.2 185.3l-4.7.1c-.3.4-.6.9-.8 1.4h4.1c.3-.6.8-1.1 1.4-1.5z"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M120.1 177.9h4c.7-.7 1.6-1.1 2.6-1.1h.3l3.3.3c.1-.1.2-.2.3-.4h-10c-.1.3-.3.5-.4.8 0 .1 0 .2-.1.4z"/>
+ <path fill="url(#ar)" fill-rule="nonzero" d="M120.1 177.9h4c.7-.7 1.6-1.1 2.6-1.1h.3l3.3.3c.1-.1.2-.2.3-.4h-10c-.1.3-.3.5-.4.8 0 .1 0 .2-.1.4z"/>
+ <path fill="url(#as)" fill-rule="nonzero" d="M143.1 186.7c.2 0 .3-.1.3-.3v-1.1c0-.1-.1-.3-.3-.3h-7.9l-1.6 1.6h9.5v.1z"/>
+ <path fill="url(#at)" fill-rule="nonzero" d="M143.1 186.7c.2 0 .3-.1.3-.3v-1.1c0-.1-.1-.3-.3-.3h-7.9l-1.6 1.6h9.5v.1z"/>
+ <path fill="url(#au)" fill-rule="nonzero" d="M122 186.7h10.7c.3-.3.6-.6.8-.9l.7-.7h-4.4l-5.8.1c-.7.6-1.4 1.1-2 1.5z"/>
+ <path fill="url(#av)" fill-rule="nonzero" d="M122 186.7h10.7c.3-.3.6-.6.8-.9l.7-.7h-4.4l-5.8.1c-.7.6-1.4 1.1-2 1.5z"/>
+ <path fill="url(#aw)" fill-rule="nonzero" d="M140.9 177.9v.3h1c.4-.3.9-.7 1.3-1l-.1-.2c0-.1-.1-.2-.3-.2h-3.6c-.2.4-.5.8-.9 1.1h2.6z"/>
+ <path fill="url(#ax)" fill-rule="nonzero" d="M140.9 177.9v.3h1c.4-.3.9-.7 1.3-1l-.1-.2c0-.1-.1-.2-.3-.2h-3.6c-.2.4-.5.8-.9 1.1h2.6z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M133.9 177.5c.9 0 1.7-.3 2.4-.8h-2.5c-.2.3-.5.5-.8.8h.9z"/>
+ <path fill="url(#ay)" fill-rule="nonzero" d="M133.9 177.5c.9 0 1.7-.3 2.4-.8h-2.5c-.2.3-.5.5-.8.8h.9z"/>
+ <path fill="url(#az)" fill-rule="nonzero" d="M133.9 177.5c.9 0 1.7-.3 2.4-.8h-2.5c-.2.3-.5.5-.8.8h.9z"/>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M133 177.5l-.4.4h5.7c.3-.3.6-.7.9-1.1h-3c-.7.5-1.5.8-2.4.8h-.8v-.1z"/>
+ <path fill="url(#aA)" fill-rule="nonzero" d="M133 177.5l-.4.4h5.7c.3-.3.6-.7.9-1.1h-3c-.7.5-1.5.8-2.4.8h-.8v-.1z"/>
+ <path fill="url(#aB)" fill-rule="nonzero" d="M133 177.5l-.4.4h5.7c.3-.3.6-.7.9-1.1h-3c-.7.5-1.5.8-2.4.8h-.8v-.1z"/>
+ <path fill="url(#aC)" fill-rule="nonzero" d="M132.7 186.7h.9c.5-.6 1.1-1.1 1.6-1.6h-.9l-.7.7-.9.9z"/>
+ <path fill="url(#aC)" fill-rule="nonzero" d="M132.7 186.7h.9c.5-.6 1.1-1.1 1.6-1.6h-.9l-.7.7-.9.9z"/>
+ <path fill="url(#aD)" fill-rule="nonzero" d="M132.7 186.7h.9c.5-.6 1.1-1.1 1.6-1.6h-.9l-.7.7-.9.9z"/>
+ <path fill="url(#aE)" fill-rule="nonzero" d="M143.1 178.1c.1 0 .2 0 .2-.1.1-.1.1-.1.1-.2l-.2-.7c-.4.3-.9.7-1.3 1h1.2z"/>
+ <path fill="url(#aE)" fill-rule="nonzero" d="M143.1 178.1c.1 0 .2 0 .2-.1.1-.1.1-.1.1-.2l-.2-.7c-.4.3-.9.7-1.3 1h1.2z"/>
+ <path fill="url(#aF)" fill-rule="nonzero" d="M143.1 178.1c.1 0 .2 0 .2-.1.1-.1.1-.1.1-.2l-.2-.7c-.4.3-.9.7-1.3 1h1.2z"/>
+ <path fill="url(#aG)" fill-rule="nonzero" d="M127 176.8h-.3c-1 0-1.9.4-2.6 1.1h8.5l.4-.4c.2-.3.5-.5.8-.8h-3c-.1.1-.2.2-.3.4l-3.5-.3z"/>
+ <path fill="url(#aH)" fill-rule="nonzero" d="M127 176.8h-.3c-1 0-1.9.4-2.6 1.1h8.5l.4-.4c.2-.3.5-.5.8-.8h-3c-.1.1-.2.2-.3.4l-3.5-.3z"/>
+ <path fill="url(#aI)" fill-rule="nonzero" d="M120.2 185.3c-.6.5-1.1 1-1.5 1.5h3.4c.6-.5 1.3-1 2-1.5h-3.9z"/>
+ <path fill="url(#aJ)" fill-rule="nonzero" d="M120.2 185.3c-.6.5-1.1 1-1.5 1.5h3.4c.6-.5 1.3-1 2-1.5h-3.9z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M115.4 185.3h4.8l3.9-.1 5.8-.1h-29.6l.6.5"/>
+ <path fill="url(#aK)" fill-rule="nonzero" d="M115.4 185.3h4.8l3.9-.1 5.8-.1h-29.6l.6.5"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M100.1 184.9l-.1-.1c-.3-.5-.6-1-.7-1.6l-.1.9.9.8z"/>
+ <path fill="url(#aL)" fill-rule="nonzero" d="M100.1 184.9l-.1-.1c-.3-.5-.6-1-.7-1.6l-.1.9.9.8z"/>
+ <path fill="#FAFAFA" fill-rule="nonzero" d="M138.4 177.9h-33.8l-4.4.2-.1.8c.1-.2.3-.4.5-.5l.2-.2H141v-.3h-2.6z"/>
+ <path fill="url(#aM)" fill-rule="nonzero" d="M138.4 177.9h-33.8l-4.4.2-.1.8c.1-.2.3-.4.5-.5l.2-.2H141v-.3h-2.6z"/>
+ <path fill="url(#aN)" fill-rule="nonzero" d="M97.4 187.5c.5.3 1.5.6 3.1.7h.7c.3 0 .5-.1.6-.3l.3.2h41c.6 0 1.1-.2 1.4-.6.2-.2.4-.5.4-.7 0-.1.1-.3.1-.4v-1.1c0-1-.8-1.7-1.9-1.7h-1v-4h1c.6 0 1.1-.2 1.5-.7.4-.4.5-1 .3-1.5l-.1-.2-.2-.7c0-.1-.1-.3-.2-.4-.3-.6-.9-.9-1.7-.9h-40l-.5.4c-.3-.2-.7-.5-1.2-.5-1.2 0-2.9.2-3.8.8-.4.3-.8.8-1.1 1.5-.3.7-.6 1.5-.7 2.2-.2.8-.3 1.5-.3 2 0 2.1.6 4 1.6 5.2.2.3.4.5.7.7zm-.4-7.8c.2-.9.5-1.8.9-2.2l.3-.3c.4-.3 1.5-.5 2.8-.5.1.1.3.2.3.3.2.2.4.4.7.5l.4.1.9-.8h39.4c.1 0 .2.1.3.2l.1.2.2.7c0 .1 0 .2-.1.2-.1.1-.1.1-.2.1H100.6l-.2.2-.5.5c-.2.3-.3.5-.5.8-.4 1-.5 2.3-.2 3.5.1.6.4 1.1.7 1.6l.1.1.2.2H143c.2 0 .3.1.3.3v1.1c0 .1-.1.3-.3.3h-40.4l-1-.8h-.3c-.5.1-.7.4-.8.7-1.3-.1-2.1-.3-2.2-.4-.8-.6-1.6-2.4-1.6-4.6.1-.6.2-1.3.3-2zm42.8-.1v4.1h-38.6c-.7-1.3-.5-3.2.3-4.1h38.3z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M190.1 151.1c-8.6-5.4-23.3-5.4-23.5-5.4-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6.1 0 7.6-.1 15.1 1.8 5.8 1.5 10 3.7 12.6 6.7h.2c-9.2-10.9-26.7-9.7-26.9-9.6-.3 0-.6-.2-.6-.5s.2-.6.5-.6c.2 0 15.7-1.1 25.6 7.7-2.1-2.3-5.5-5.2-10.1-7.3-6.7-2.9-14.7-1.9-17-1.5l-1.2 5.3 25.1 4.3c0 .3.1.3.2.3zM210.5 142.3c-5 2.4-8.1 5.4-10 7.7 8.8-8.7 22.6-8.9 22.7-8.9.3 0 .6.2.6.6 0 .3-.2.6-.6.6-.2 0-15.1.2-23.3 10 .2-.1.4-.2.6-.4 2.3-2.2 5.4-4 9.5-5.5 6.9-2.5 14.1-3.1 14.2-3.1.3 0 .6.2.6.5s-.2.6-.5.6c-.2 0-12 1-19.8 5.9l22.3-4.7c-.7-2.4-1.4-5-1.7-6.2-2.1 0-9.4.4-14.6 2.9z"/>
+ <path fill="url(#aO)" fill-rule="nonzero" d="M230.9 147v-.5c-.1-.3-.2-.6-.4-.8-.3-.4-.8-.5-1.3-.5h-.2c-.7-2.6-1.7-6.5-1.9-7.1-.1-.3-.4-.6-.7-.7-1.2-.5-10.5-.2-16.7 2.9-7.5 3.7-11.2 8.5-12.7 11-1.8-2.6-6-7.4-13.1-10.5-8.6-3.7-18.7-1.6-19.1-1.5-.4.1-.8.4-.8.8l-1.4 6.1h-.3c-.5 0-.9.2-1.3.5-.3.3-.5.8-.5 1.3l.3 4.3h.5l.4.1.5 4.9c1.6-.1 6-.5 6.5-.5.8 0 1.3.5 1.4 1.4.2 1.9-1.9 5-7.1 6.2-.3.1-.9.6-1.1.8-.1.1.2.6-.1.8l.2 2.7.1.8.1 1.2 1.2 15.4c.1.9.8 1.5 1.6 1.5l24.9 3.6c.9.9 2.9 2.3 6.2 2.3h.8c3.6-.2 5.6-1.6 6.5-2.5l22.1-3.1c.9 0 1.6-.7 1.7-1.5l1.1-11.7.1-1.1.4-4.5c-.3-.1-.7-.2-1-.3-.8-.3 1.5-.1.4-.3-3.5-.8-5.4-2.9-6.2-4.7l-10.6 1.6h-.2c-.3 0-.5-.1-.7-.3-.2-.2-.4-.5-.4-.9l.1-5.5c0-.5.4-1 .9-1.1l11.5-1.8c.3 0 .7 0 .9.3.2.2.4.5.4.9l.1 3c1.5.1 4.3.3 5.5.5l.5-4.9h.1v-.1l.3-3.3.2-2.1v-.1l.3-3zm-66.3-.2l1.2-5.3c2.4-.4 10.3-1.4 17 1.5 4.7 2 8 4.9 10.1 7.3-9.9-8.9-25.4-7.8-25.6-7.7-.3 0-.5.3-.5.6s.3.5.6.5c.2 0 17.7-1.3 26.9 9.6h-.2c-2.6-2.9-6.8-5.2-12.6-6.7-7.5-1.9-15-1.8-15.1-1.8-.3 0-.6.3-.6.
6s.3.5.6.6c.2 0 14.9-.1 23.5 5.4-.1 0-.2-.1-.3-.1l-25-4.5zm38.5 40.8s-1.4 3.6-6.7 3.1c-5.3-.5-6.4-2.8-6.4-2.8l-.3-33.2s3.3 2 7.5 1.7c4.2-.3 6.7-2.5 6.7-2.5l-.8 33.7zm1.3-37.2c7.9-4.9 19.6-5.9 19.8-5.9.3 0 .5-.3.5-.6s-.3-.5-.6-.5c-.1 0-7.2.6-14.2 3.1-4.1 1.5-7.2 3.3-9.5 5.5-.2.1-.4.2-.6.4 8.2-9.8 23.1-10 23.3-10 .3 0 .6-.3.6-.6s-.3-.6-.6-.6c-.2 0-14 .2-22.7 8.9 1.9-2.3 5.1-5.3 10-7.7 5.2-2.5 12.4-2.9 14.5-2.8.3 1.2 1 3.8 1.7 6.2l-22.2 4.6z"/>
+ <path fill="url(#aP)" fill-rule="nonzero" d="M223.7 156.1c-.2-.2-.6-.3-.9-.3l-11.5 1.8c-.5.1-.9.5-.9 1.1l-.1 5.5c0 .3.1.6.4.9.2.2.5.3.7.3h.2l10.6-1.6c-.4-.9-.5-1.8-.4-2.4.1-.8.6-1.4 1.4-1.4.1 0 .5 0 .9.1l.1-3.1c-.2-.4-.3-.7-.5-.9z"/>
+ <path fill="url(#aQ)" fill-rule="nonzero" d="M223.7 156.1c-.2-.2-.6-.3-.9-.3l-11.5 1.8c-.5.1-.9.5-.9 1.1l-.1 5.5c0 .3.1.6.4.9.2.2.5.3.7.3h.2l10.6-1.6c-.4-.9-.5-1.8-.4-2.4.1-.8.6-1.4 1.4-1.4.1 0 .5 0 .9.1l.1-3.1c-.2-.4-.3-.7-.5-.9z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M162.8 163.3c4.7-1 6.4-3.7 6.3-5 0-.4-.2-.4-.3-.4-.4 0-4.4.3-6.9.6h-.5l-.6-5.1c-.9 0-3.2.4-5.5 2.6-1.4 1.3-1.7 3.1-.9 4.6.9 2 3.7 3.8 8.4 2.7z"/>
+ <path fill="url(#aR)" fill-rule="nonzero" d="M161.7 166.1c.1 0 .2 0 .2-.1.3-.2 0-.7.1-.8.2-.2.8-.7 1.1-.8 5.2-1.1 7.3-4.3 7.1-6.2-.1-.8-.6-1.4-1.4-1.4-.5 0-4.9.4-6.5.5l-.5-4.9-.4-.1h-.5c-.8 0-2.3.2-4 1.2-.7.4-1.5 1-2.3 1.7-.8.7-1.3 1.6-1.5 2.5-.2.8-.2 1.6 0 2.4.1.3-.8-.1-1 .1v.1c-.1.9.5 2.4 2 3.7 1.4 1.5 3.9 2.5 7.6 2.1zm-6.5-9.9c2.3-2.3 4.6-2.6 5.5-2.6l.6 5.1h.5c2.6-.2 6.5-.6 6.9-.6.1 0 .2 0 .3.4.1 1.2-1.6 3.9-6.3 5-4.7 1-7.5-.7-8.5-2.5-.7-1.7-.3-3.4 1-4.8z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M231.1 156.6l-.6 5.1h-.5c-2.6-.2-6.5-.6-6.9-.6-.1 0-.2 0-.3.4-.1 1.2 1.6 3.9 6.3 5 4.7 1 7.5-.7 8.5-2.5.8-1.5.5-3.3-.9-4.6-2.5-2.4-4.7-2.7-5.6-2.8z"/>
+ <path fill="url(#aS)" fill-rule="nonzero" d="M236.7 157.9c-3.2-2.7-6.1-2.4-6.2-2.4h-.5l-.5 4.9c-1.2-.1-4-.3-5.5-.5-.5 0-.8-.1-.9-.1-.8 0-1.3.5-1.4 1.4-.1.6.1 1.5.4 2.4.8 1.9 2.7 4 6.2 4.7 1 .2-1.2 0-.4.3.4.1.7.2 1 .3.3.1.6.2 1 .2 2.8.5 5.1-.1 6.4-1.1.4-.3.8-.6 1-1 .4-.5.7-1.6.9-2.2.1-.2.2-.4.2-.5.8-1.6.7-3.3-.2-4.8-.2-.4-.5-.7-.9-1.1-.2-.1-.4-.3-.6-.5zm.8 6c-1 1.8-3.8 3.5-8.5 2.5s-6.4-3.7-6.3-5c0-.4.2-.4.3-.4.4 0 4.4.3 6.9.6h.5l.6-5.1c.9 0 3.2.4 5.5 2.6 1.5 1.5 1.8 3.2 1 4.8z"/>
+ <path fill="url(#aT)" fill-rule="nonzero" d="M189.7 154.7l.3 33.2s1.1 2.2 6.4 2.8c5.3.6 6.7-3.1 6.7-3.1l.8-33.7s-2.5 2.2-6.7 2.5c-4.2.3-7.5-1.7-7.5-1.7z"/>
+ <path fill="url(#aU)" fill-rule="nonzero" d="M189.7 154.7l.3 33.2s1.1 2.2 6.4 2.8c5.3.6 6.7-3.1 6.7-3.1l.8-33.7s-2.5 2.2-6.7 2.5c-4.2.3-7.5-1.7-7.5-1.7z"/>
+ <path d="M-31-22h352v303H-31z"/>
+ </g>
+</svg>
diff --git a/browser/extensions/onboarding/content/img/figure_performance.svg b/browser/extensions/onboarding/content/img/figure_performance.svg
new file mode 100644
index 000000000000..f7c5c219aada
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/figure_performance.svg
@@ -0,0 +1 @@
+<svg width="297" height="245" viewBox="0 0 297 245" xmlns="http://www.w3.org/2000/svg"><title>performance</title><defs><linearGradient x1="-920.838%" y1="-294.992%" x2="891.374%" y2="366.984%" id="a"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-162.81%" y1="-242.422%" x2="179.364%" y2="239.183%" id="b"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-347.431%" y1="-836.5%" x2="1777.43%" y2="3692.808%" id="c"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-494.697%" y1="-397.029%" x2="2194.58%" y2="1809.556%" id="d"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-358.927%" y1="-240.795%" x2="1727.185%" y2="1250.312%" id="e"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="1
00%"/></linearGradient><linearGradient x1="-626.22%" y1="-1767.938%" x2="1375.102%" y2="3610.616%" id="f"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-2092.13%" y1="-2092.3%" x2="2102.26%" y2="2102.09%" id="g"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-10687.27%" y1="-10695.62%" x2="6524.09%" y2="6515.75%" id="h"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-235.943%" y1="-613.083%" x2="463.706%" y2="1010.631%" id="i"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-10998.63%" y1="-10974.25%" x2="6212.73%" y2="6237.11%" id="j"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-73.995%" y1="-65.306%" x2="120.692%" y2="159.00
8%" id="k"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-21.918%" y1="-53.508%" x2="187.863%" y2="264.044%" id="l"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-489.211%" y1="-179.924%" x2="521.605%" y2="253.611%" id="m"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-7695.347%" y1="-543.989%" x2="5437.677%" y2="468.444%" id="n"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-871.152%" y1="-248.513%" x2="1179.248%" y2="414.667%" id="o"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-737.21%" y1="-1393.274%" x2="549.019%" y2="955.49%" id="p"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></li
nearGradient><linearGradient x1="-638.104%" y1="-1298.114%" x2="447.684%" y2="806.622%" id="q"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-1950.055%" y1="-1089.986%" x2="3277.839%" y2="1905.929%" id="r"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-575.859%" y1="-1406.193%" x2="985.226%" y2="2277.098%" id="s"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-1033.963%" y1="-1091.623%" x2="2289.262%" y2="2403.036%" id="t"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-2408.138%" y1="-454.703%" x2="4538.159%" y2="962.257%" id="u"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-998.9%" y1="-1143.058%" x2="1755.168%" y2="1997.85
%" id="v"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-4669.755%" y1="-4076.6%" x2="8549.086%" y2="7499.45%" id="w"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-195.59%" y1="-922.704%" x2="389.831%" y2="1341.95%" id="x"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-343.613%" y1="-263.57%" x2="487.353%" y2="406.119%" id="y"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-27.659%" y1="2.333%" x2="125.482%" y2="104.574%" id="z"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-651.262%" y1="-472.878%" x2="435.248%" y2="317.591%" id="A"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGr
adient><linearGradient x1="-548.021%" y1="-473.693%" x2="248.049%" y2="204.898%" id="B"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><path d="M-24-20h352v303H-24z"/><g fill-rule="nonzero"><path d="M13.6 181.6c-2.8 0-5.1-2.2-5.1-4.8V58.3c0-3 2.4-5.4 5.4-5.4h127.2c3 0 5.4 2.4 5.4 5.4v118.5c0 2.6-2.3 4.8-5 4.8H13.6z" fill="#FFF"/><path d="M141.1 54c2.3 0 4.2 1.9 4.2 4.2v118.5c0 2-1.8 3.7-3.9 3.7H13.6c-2.2 0-3.9-1.7-3.9-3.7V58.3c0-2.3 1.9-4.2 4.2-4.2h127.2V54zm0-2.2H13.9c-3.6 0-6.5 2.9-6.5 6.5v118.4c0 3.3 2.8 5.9 6.2 5.9h127.8c3.4 0 6.2-2.7 6.2-5.9V58.3c-.1-3.6-3-6.5-6.5-6.5z" fill="#D7D7DB"/></g><path d="M139.9 75.2v98.2c0 1-.1 1.2-.1 1.2s-.2.1-1.2.1H16.4c-1 0-1.2-.1-1.2-.1s-.1-.2-.1-1.2V75.2h124.8zM141 74H13.9v99.3c0 2 .4 2.5 2.5 2.5h122.2c2 0 2.5-.4 2.5-2.5V74h-.1z" fill-rule="nonzero" fill="#D7D7DB"/><g fill-rule="nonzero" fill="#D7D7DB"><circle cx="3.7" cy="3" r="2.9" transform="translat
e(17 61)"/><circle cx="3" cy="3" r="2.9" transform="translate(27 61)"/><path d="M109.4 67.2H45.5c-1.7 0-3.1-1.4-3.1-3.1v-.3c0-1.7 1.4-3.1 3.1-3.1h63.9c1.7 0 3.1 1.4 3.1 3.1v.3c0 1.7-1.3 3.1-3.1 3.1z"/><g><circle cx="3" cy="3" r="2.9" transform="translate(122 61)"/><circle cx="3.2" cy="3" r="2.9" transform="translate(131 61)"/></g></g><g fill-rule="nonzero"><path d="M39.9 22.9h23.8S56.3 6.3 72.1 4.1c14.1-1.9 19.7 12.6 19.7 12.6s1.7-8.4 10.1-6.8c8.3 1.6 14.4 14.9 14.4 14.9H137" fill="#F9F9FA"/><path d="M137.2 20.9h-4.5c-.3 0-.6-.3-.6-.6s.3-.6.6-.6h4.5c.3 0 .6.3.6.6s-.2.6-.6.6zm-14.5 0h-1.1c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .3-.3.6-.6.6zm-5.5 0h-.6c-.2 0-.4-.1-.5-.3-.1-.2-.6-1.1-1.3-2.3-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.6.9 1 1.7 1.2 2.1h.3c.3 0 .6.2.6.6 0 .4-.4.5-.7.5zm-53.1-.7h-1.5c-.3 0-.6-.3-.6-.6s.3-.6.6-.6h.6c-.1-.3-.2-.6-.4-1-.1-.3.1-.6.4-.7.3-.1.6.1.7.4.3 1 .6 1.7.6 1.7.1.2.1.4 0 .5 0 .2-.2.3-.4.3zm-10.4 0H40.3c-.3 0-.6-.3-.6-.6s.3-.6.6-.6h13.4c.3 0 .6.3.6.6s-.3
.6-.6.6zm8.8-6.1c-.3 0-.5-.2-.6-.5 0-.4-.1-.8-.1-1.1 0-.3.2-.6.5-.6s.6.2.6.5c0 .4.1.7.1 1.1.1.3-.1.6-.5.6zm29.1-1.2c-.2 0-.4-.1-.5-.3-.1-.3-.3-.6-.5-1-.1-.3 0-.6.2-.8.3-.1.6 0 .8.2.2.4.4.7.5 1 .1.3 0 .6-.3.7 0 .2-.1.2-.2.2zm18-1.4c-.1 0-.3-.1-.4-.2-2.4-2.3-4.8-3.7-7.2-4.1-1.6-.3-3.1-.2-4.3.2-.3.1-.6-.1-.7-.4-.1-.3.1-.6.4-.7 1.4-.5 3.1-.6 4.9-.2 2.6.5 5.2 2 7.7 4.4.2.2.2.6 0 .8-.1.2-.2.2-.4.2zM88.7 8.2c-.2 0-.3-.1-.4-.2-.7-.9-1.4-1.7-2.2-2.4-.2-.2-.2-.6 0-.8.2-.2.6-.2.8 0 .8.8 1.6 1.6 2.3 2.5.2.2.2.6-.1.8-.2.1-.3.1-.4.1zM65.8 4c-.2 0-.3-.1-.4-.2-.2-.2-.2-.6.1-.8C67.2 1.6 69.6.7 72.4.3c2.2-.3 4.3-.2 6.3.2.3.1.5.4.4.7-.1.3-.4.5-.7.4-1.9-.4-3.9-.5-5.9-.2-2.7.4-4.8 1.2-6.4 2.4-.1.1-.2.2-.3.2z" fill="#D7D7DB"/><path d="M137.9 25.1h-98c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h98c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1z" fill="#F9F9FA"/></g><path d="M261.4 80.6c.2-.3.6-1 .2-1.3-.3-.2-.6-.3-1-.3-.8 0-1.6.3-2.3.8-1.4 1-2.6 2.7-2.3 3.5 2.5-.5 4.6-1.5 5.4-2.7z"/><path d="M59.3 94.4c4.3.1 8.5-1 12
.1-3.3 3.3-2.1 7.2-3.1 11.1-3 3.9-.1 7.8 1 11.1 3 7.5 4.4 16.8 4.4 24.3 0 6.8-4 15.3-4 22.2 0 7.5 4.4 16.8 4.4 24.3 0 6.8-4 15.3-4 22.2 0 3.6 2.2 7.9 3.4 12.1 3.3.6 0 1.1-.5 1.1-1.1 0-.6-.5-1.1-1.1-1.1-3.9.1-7.8-.9-11.1-3-7.5-4.4-16.8-4.4-24.3 0-6.8 4-15.3 4-22.2 0-7.5-4.4-16.8-4.4-24.3 0-6.8 4-15.3 4-22.2 0-3.6-2.2-7.9-3.4-12.1-3.3-4.3-.1-8.5 1-12.1 3.3-3.3 2.1-7.2 3.1-11.1 3-3.9.1-7.8-.9-11.1-3-3.6-2.2-7.9-3.4-12.1-3.3-.6 0-1.1.5-1.1 1.1 0 .6.5 1.1 1.1 1.1 3.9-.1 7.8.9 11.1 3 3.6 2.3 7.8 3.4 12.1 3.3zM269.2 82.1c-.2-.2-.5-.3-.8-.1-3.1 2-6.6 3.2-10.3 3.5-1.4.2-2.8.2-4.2 0 2.2-.7 4.2-1.7 5.1-2.9 1.1-1.5.4-2.4.1-2.7-1-.9-3.1-.7-4.7.4-1.2.9-3.2 3-2.8 4.7-1.8.4-3.6.7-5.4.8-.3 0-.6.2-.6.6 0 .4.2.6.6.6 2-.1 4-.4 6-.9 1 .8 2.9 1 6 .7 7-.8 10.7-3.6 10.8-3.8.3-.3.4-.6.2-.9zm-14.1-.9c.7-.5 1.5-.8 2.3-.8.4 0 .7.1 1 .3.3.3 0 1-.2 1.3-.8 1.2-3 2.1-5.4 2.8-.3-1 .9-2.6 2.3-3.6z" fill="#D7D7DB" fill-rule="nonzero"/><path d="M154.6 87.1c-.3 0-.6-.3-.7-.6 0-.4.2-.7.6-.7 1.4-.1 2.8-.4 4-.9.3-.1.7.1.9
.4.1.3-.1.7-.4.9-1.4.4-2.8.7-4.4.9zM202.6 86.9c-.3 0-.6-.2-.7-.6-.1-.4.2-.7.5-.8 3.4-.6 5.5-1.9 7.5-3.3.3-.2.7-.1.9.2.2.3.1.7-.2.9-2.1 1.3-4.4 2.8-8 3.4.1.2 0 .2 0 .2zM148.2 86.8h-.1c-3.5-.6-5.7-2.1-7.9-3.5l-.1-.1c-.3-.2-.4-.6-.2-.9.2-.3.6-.4.9-.2l.1.1c2.2 1.4 4.2 2.7 7.4 3.3.4.1.6.4.5.8 0 .3-.3.5-.6.5zM241.1 86.7h-.1c-3.2-.7-5.4-2.1-7.5-3.4l-.5-.3c-.3-.2-.4-.6-.2-.9.2-.3.6-.4.9-.2l.4.3c2.1 1.3 4 2.6 7 3.2.4.1.6.4.5.8.1.3-.2.5-.5.5zM194.1 86.7h-.2c-.4-.1-.7-.2-1.1-.3-.4-.1-.6-.5-.4-.8.1-.4.5-.6.8-.4.3.1.6.2 1 .3.4.1.6.4.5.8 0 .2-.3.4-.6.4zM189.2 84.7c-.1 0-.2 0-.3-.1-.7-.4-1.4-.8-2-1.3-.5-.3-1.1-.7-1.6-1-.3-.2-.4-.6-.2-.9.2-.3.6-.4.9-.2.6.3 1.1.7 1.6 1 .6.4 1.3.8 2 1.2.3.2.4.6.2.9-.1.3-.4.4-.6.4zM162.6 84.3c-.2 0-.4-.1-.6-.3-.2-.3-.1-.7.2-.9l.9-.6c.3-.2.7-.1.9.2.2.3.1.7-.2.9l-.9.6c-.1 0-.2.1-.3.1zM216.1 80.6c-.3 0-.5-.2-.6-.5-.1-.4.1-.7.4-.8 1.4-.4 2.8-.7 4.3-.8.4 0 .7.2.7.6 0 .4-.2.7-.6.7-1.5.1-2.8.4-4 .8h-.2zM123.2 80.5c-.3 0-.6-.2-.6-.5-.1-.4.1-.7.5-.8 1.4-.4 2.8-.6 4.4-.7.4 0 .7
.3.7.6 0 .4-.3.7-.6.7-1.5.1-2.8.3-4.1.7h-.3zM171.2 80.1c-.3 0-.6-.2-.7-.5-.1-.4.2-.7.5-.8 1.4-.3 2.9-.4 4.5-.4 1.5 0 2.9.1 4.2.4.4.1.6.4.5.8-.1.4-.4.6-.8.5-1.2-.2-2.5-.4-4-.4-1.6 0-2.9.1-4.2.4.1 0 0 0 0 0zM132.7 80h-.1c-.3-.1-.7-.1-1-.1-.4 0-.6-.4-.6-.7 0-.4.4-.6.7-.6.4 0 .7.1 1.1.2.4.1.6.4.5.8 0 .2-.3.4-.6.4zM225.6 79.9h-.1c-.3-.1-.7-.1-1-.1-.4 0-.6-.4-.6-.7 0-.4.4-.6.7-.6.4 0 .7.1 1.1.1.4.1.6.4.6.8-.1.3-.4.5-.7.5z" fill="#D7D7DB" fill-rule="nonzero"/><g fill-rule="nonzero" fill="#D7D7DB"><path d="M12 200.6c4.3.1 8.5-1 12.1-3.3 6.8-4 15.3-4 22.2 0 7.5 4.4 16.8 4.4 24.3 0 3.3-2.1 7.2-3.1 11.1-3 .6 0 1.1-.5 1.1-1.1 0-.6-.5-1.1-1.1-1.1-4.3-.1-8.5 1-12.1 3.3-6.8 4-15.3 4-22.2 0-7.5-4.4-16.8-4.4-24.3 0-3.3 2.1-7.2 3.1-11.1 3-3.6.1-7.2-.8-10.3-2.6-.3.7-.7 1.3-1.2 1.9 3.5 2 7.5 3 11.5 2.9zM61.3 208.7c-.3 0-.6-.2-.7-.6-.1-.4.2-.7.5-.8 3.4-.6 5.5-1.9 7.5-3.3.3-.2.7-.1.9.2.2.3.1.7-.2.9-2.1 1.3-4.4 2.8-8 3.4v.2zM52.8 208.5h-.2c-.4-.1-.7-.2-1.1-.3-.4-.1-.6-.5-.4-.8.1-.4.5-.6.8-.4.3.1.6.2 1 .3.
4.1.6.4.5.8-.1.2-.3.4-.6.4zM47.8 206.5c-.1 0-.2 0-.3-.1-.7-.4-1.4-.8-2-1.3-.5-.3-1.1-.7-1.6-1-.3-.2-.4-.6-.2-.9.2-.3.6-.4.9-.2.6.3 1.1.7 1.6 1 .6.4 1.3.8 2 1.2.3.2.4.6.2.9-.1.3-.3.4-.6.4zM74.7 202.4c-.3 0-.5-.2-.6-.5-.1-.4.1-.7.4-.8 1.4-.4 2.8-.7 4.3-.8.4 0 .7.2.7.6 0 .4-.2.7-.6.7-1.5.1-2.8.4-4 .8h-.2z"/><path d="M29.8 202c-.3 0-.6-.2-.7-.5-.1-.4.2-.7.5-.8 1.4-.3 2.9-.4 4.5-.4 1.5 0 2.9.1 4.2.4.4.1.6.4.5.8-.1.4-.4.6-.8.5-1.2-.2-2.5-.4-4-.4-1.6 0-2.9.1-4.2.4.1-.1 0 0 0 0zM84.2 201.8h-.1c-.3-.1-.7-.1-1-.1-.4 0-.6-.4-.6-.7 0-.4.4-.6.7-.6.4 0 .7.1 1.1.1.4.1.6.4.6.8-.1.2-.4.5-.7.5z"/></g><path d="M112.1 196.9c-.2-.2-.5-.3-.8-.1-3.1 2-6.6 3.2-10.3 3.5-1.4.2-2.8.2-4.2 0 2.2-.7 4.2-1.7 5.1-2.9 1.1-1.5.4-2.4.1-2.7-1-.9-3.1-.7-4.7.4-1.2.9-3.2 3-2.8 4.7-1.8.4-3.6.7-5.4.8-.3 0-.6.2-.6.6 0 .3.2.6.6.6 2-.1 4-.4 6-.9 1 .8 2.9 1 6 .7 7-.8 10.7-3.6 10.8-3.8.3-.2.4-.6.2-.9zm-14.2-.9c.7-.5 1.5-.8 2.3-.8.4 0 .7.1 1 .3.3.3 0 1-.2 1.3-.8 1.2-3 2.1-5.4 2.8-.3-1 1-2.6 2.3-3.6z" fill="#D7D7DB" fill-rule="no
nzero"/><g fill-rule="nonzero" fill="#D7D7DB"><path d="M77 97.8c-14.9 0-27 12.1-27 27 0 4 .9 8 2.6 11.6.7 1.7 2.6 2.6 4.4 1.9 1.7-.7 2.6-2.6 1.9-4.4-.1-.2-.1-.3-.2-.4-1.3-2.7-2-5.7-2-8.7 0-11.2 9-20.3 20.2-20.3s20.3 9 20.3 20.2c0 3-.7 6-2 8.8-.8 1.7-.1 3.7 1.6 4.5 1.7.8 3.7.1 4.5-1.6 6.4-13.5.7-29.6-12.7-36-3.5-1.8-7.5-2.7-11.6-2.6z"/><path d="M89.8 118.3c-.8-.5-1.8-.3-2.3.5l-8.3 13.1c-3.6-1.2-7.4.8-8.5 4.3-1.2 3.6.8 7.4 4.3 8.5 2 .6 4.2.3 5.9-.8.7-.5 1.3-1.1 1.8-1.8 1.8-2.6 1.5-6.1-.7-8.4l8.3-13.1c.5-.8.3-1.8-.5-2.3z"/></g><g fill-rule="nonzero"><path d="M251.2 231.9l-13.4-1.7c-.5-.1-.9-.5-.9-1l-1.1-27.6-2.6 1.1c-.1.1-.3.1-.4.1-.2 0-.5-.1-.6-.2-.3-.2-.4-.6-.3-1l.8-3.6-3.6.6h-.2c-.3 0-.7-.2-.9-.5-.2-.3-.2-.8.1-1.1l4.2-5.6c.1-.1.2-.2.4-.3l7-3.3c.1-.1.3-.1.4-.1.2 0 .3 0 .4.1l7.8 3.9c.4.2.6.6.5 1 0 .4-.3.8-.7.9l-4.2 1.3 2 4c.2.3.1.7-.1 1-.2.3-.5.4-.8.4h-.2l-3.1-.5 10.3 30.8c.1.3 0 .7-.2 1-.2.2-.5.4-.8.4.3-.1.2-.1.2-.1z" fill="#F5F5F7"/><path d="M240.2 188.8l7.8 3.9-5.3 1.7 2.5 5-4.7-.8
10.9 32.4-13.4-1.7-1.1-29-3.9 1.7 1.1-5-5 .8 4.2-5.6 6.9-3.4zm0-2c-.3 0-.6.1-.9.2l-7 3.3c-.3.1-.5.3-.7.6l-4.2 5.6c-.5.7-.5 1.5-.1 2.2.4.6 1 1 1.7 1h.3l2.1-.3-.5 2.1c-.2.7.1 1.5.7 2 .4.3.8.5 1.3.5.3 0 .5-.1.8-.2l1.2-.5 1 26.1c0 1 .8 1.8 1.8 1.9l13.4 1.7h.2c.6 0 1.2-.3 1.5-.7.4-.5.6-1.3.3-1.9l-9.8-29.2 1.4.3h.3c.6 0 1.2-.3 1.6-.8.5-.6.5-1.4.2-2.1l-1.5-2.9 3.1-1c.8-.2 1.3-.9 1.4-1.7.1-.8-.4-1.6-1.1-1.9l-7.8-3.9c-.1-.3-.4-.4-.7-.4z" fill="#D7D7DB"/></g><g fill-rule="nonzero"><path d="M199.7 227.4c-.2 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7l-1.1-24.8-2.6 1.1c-.1.1-.3.1-.4.1-.2 0-.5-.1-.6-.2-.3-.2-.4-.6-.3-1l.8-3.6-3.6.6h-.2c-.3 0-.7-.2-.9-.5-.2-.3-.2-.8.1-1.1l4.2-5.6c.1-.1.2-.2.4-.3l7-3.3c.1-.1.3-.1.4-.1.2 0 .3 0 .4.1l7.8 3.9c.4.2.6.6.5 1 0 .4-.3.8-.7.9l-4.2 1.3 2 4c.2.3.1.7-.1 1-.2.3-.5.4-.8.4h-.2l-3.2-.6 7.4 25.8c.1.3 0 .6-.1.9-.2.2-.5.4-.8.4.2.1-10.2.6-10.2.6z" fill="#F5F5F7"/><path d="M202 188.8l7.8 3.9-5.3 1.7 2.5 5-4.7-.8 7.8 27.3-10.3.6-1.1-26.2-3.9 1.7 1.1-5-5 .8 4.2-5.6 6.9-3.4zm0-2c-.
3 0-.6.1-.9.2l-7 3.3c-.3.1-.5.3-.7.6l-4.2 5.6c-.5.7-.5 1.5-.1 2.2.4.6 1 1 1.7 1h.3l2.1-.3-.5 2.1c-.2.7.1 1.5.7 2 .4.3.8.5 1.3.5.3 0 .5-.1.8-.2l1.2-.5 1 23.3c0 .5.3 1 .7 1.4.4.3.8.5 1.3.5h.1l10.3-.6c.6 0 1.2-.3 1.5-.8.3-.5.5-1.1.3-1.7l-6.9-24.3 1.6.3h.3c.6 0 1.2-.3 1.6-.8.5-.6.5-1.4.2-2.1l-1.5-2.9 3.1-1c.8-.2 1.3-.9 1.4-1.7.1-.8-.4-1.6-1.1-1.9l-7.8-3.9c-.2-.2-.5-.3-.8-.3z" fill="#D7D7DB"/></g><path d="M201.4 210.6l1.4 17.5" stroke="#D7D7DB" stroke-linecap="round" stroke-linejoin="round"/><path d="M203.6 221.7l2 11.7" stroke="#EAEAEE" stroke-linecap="round" stroke-linejoin="round"/><path d="M240.2 207.5l5 19" stroke="#D7D7DB" stroke-linecap="round" stroke-linejoin="round"/><path d="M236.5 220.6l1.2 10.9" stroke="#EAEAEE" stroke-linecap="round" stroke-linejoin="round"/><g transform="translate(153 210)" fill-rule="nonzero"><ellipse fill="#EDEDF0" cx="72.1" cy="27" rx="71.5" ry="7.9"/><ellipse fill="#F9F9FA" cx="72.2" cy="25.5" rx="56.8" ry="6.3"/><path d="M20.7 24.2l-.2-.2S12.4 7.7 28.1
4.9c14-2.5 20.1 11.8 20.1 11.8s1.4-8.4 9.8-7.1c8.3 1.3 14.9 14.3 14.9 14.3h.2" fill="#F9F9FA"/><path d="M79.4 19.7h-1.1c-.3 0-.6-.2-.6-.5s.2-.6.5-.6h1.1c.3 0 .6.2.6.5 0 .4-.2.6-.5.6zm-5.6.2h-.6c-.2 0-.4-.1-.5-.3-.1-.2-.6-1.1-1.4-2.3-.2-.3-.1-.6.1-.8.3-.2.6-.1.8.1.6.9 1.1 1.7 1.3 2.1h.3c.3 0 .6.2.6.5s-.3.7-.6.7zm-53 1.4l-1.5.1c-.3 0-.6-.2-.6-.5s.2-.6.5-.6h.6c-.1-.3-.3-.6-.4-1-.1-.3 0-.6.3-.7.3-.1.6 0 .7.3.4 1 .7 1.7.7 1.7.1.2.1.4 0 .5 0 .1-.2.2-.3.2zm-1.9-6.1c-.3 0-.5-.2-.6-.5-.1-.4-.1-.8-.1-1.1 0-.3.2-.6.5-.6s.6.2.6.5c0 .4.1.7.1 1.1.1.3-.1.6-.5.6zM48 13c-.2 0-.4-.1-.5-.3-.1-.3-.3-.6-.5-1-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.2.4.4.7.6 1 .1.3 0 .6-.2.8-.2 0-.3.1-.4.1zm17.9-2.1c-.1 0-.3 0-.4-.1-2.5-2.2-5-3.5-7.3-3.9-1.6-.2-3.1-.1-4.3.3-.3.1-.6 0-.7-.3-.1-.3 0-.6.3-.7 1.4-.5 3.1-.7 4.9-.4 2.6.4 5.2 1.8 7.9 4.1.2.2.3.6 0 .8-.1.1-.2.2-.4.2zM44.8 8.4c-.2 0-.3-.1-.4-.2-.7-.8-1.5-1.6-2.3-2.3-.2-.2-.3-.6-.1-.8.2-.2.6-.3.8-.1.9.7 1.7 1.5 2.4 2.4.2.2.2.6-.1.8 0 .1-.2.2-.3.2zM21.8 5c-.2 0-.3-.1-.4-.2
-.2-.2-.2-.6.1-.8 1.7-1.4 4-2.4 6.8-2.9 2.2-.4 4.3-.4 6.3 0 .3.1.5.3.4.6-.1.3-.3.5-.6.4-1.9-.3-3.9-.3-5.9 0-2.7.5-4.8 1.4-6.3 2.7-.1.2-.3.2-.4.2z" fill="#D7D7DB"/><g><path d="M119.8 27l.2-.2s8.2-16.3-7.5-19.2C98.5 5 92.3 19.2 92.3 19.2S91 10.8 82.6 12c-8.3 1.2-15 14.2-15 14.2h-.2" fill="#F9F9FA"/><path d="M60.6 21.4c0-.3.3-.5.6-.5l1.1.1c.3 0 .5.3.5.6s-.3.5-.6.5l-1.1-.1c-.3 0-.5-.3-.5-.6zm5.5.3c0-.3.3-.5.6-.5h.3c.2-.4.7-1.1 1.3-2 .2-.3.5-.3.8-.1.3.2.3.5.1.8-.8 1.2-1.3 2-1.4 2.3-.1.2-.3.3-.5.3h-.6c-.3-.3-.6-.5-.6-.8zm53.2 2.1c-.1-.2-.1-.4 0-.5 0 0 .3-.6.7-1.7.1-.3.4-.4.7-.3.3.1.4.4.3.7-.1.4-.3.7-.4 1h.6c.3 0 .5.3.5.6s-.3.5-.6.5l-1.5-.1c-.1 0-.3-.1-.3-.2zm2.2-5.8c-.3-.1-.5-.3-.5-.6.1-.4.1-.7.1-1.1 0-.3.3-.5.6-.5s.5.3.5.6c0 .4-.1.8-.2 1.1.1.3-.1.5-.5.5.1 0 .1 0 0 0zm-29.2-2.6c-.3-.1-.4-.5-.2-.8.2-.3.3-.6.6-1 .2-.3.5-.3.8-.2.3.2.3.5.2.8-.2.4-.4.7-.5.9-.1.2-.3.3-.5.3-.2.1-.3.1-.4 0zm-18.1-2.3c-.2-.2-.2-.6.1-.8 2.7-2.3 5.3-3.7 7.9-4.1 1.8-.3 3.5-.1 4.9.4.3.1.4.4.3.7-.1.3-.4.4-.7.3-1.2-.5-2
.7-.6-4.3-.4-2.4.3-4.8 1.6-7.4 3.8-.1.1-.3.1-.4.1-.1.1-.3.1-.4 0zm21.2-2.3c-.2-.2-.3-.6 0-.8.8-.9 1.6-1.7 2.5-2.4.2-.2.6-.2.8.1.2.2.2.6-.1.8-.8.7-1.6 1.4-2.3 2.3-.1.1-.3.2-.4.2-.3-.1-.4-.1-.5-.2zm23-3.2c-1.5-1.3-3.6-2.2-6.3-2.7-2-.4-4-.4-5.9-.1-.3 0-.6-.2-.6-.5-.1-.3.2-.6.5-.6 2-.3 4.1-.3 6.3.1 2.9.5 5.1 1.5 6.8 3 .2.2.3.6.1.8-.1.1-.3.2-.4.2-.3-.1-.4-.1-.5-.2z" fill="#D7D7DB"/></g></g><g transform="translate(159 16)" fill-rule="nonzero"><path d="M125.2 89.7c-.8-4.6-5-4.7-14.4-4.7-7.5 0-17.8-.1-23.3-2.4-9.6-4-17.5-13.4-17.6-13.6-.6-.7-1.4-1.2-2.3-1.5l-.6 1.2c2.7 2.8 5 5.7 7 8.6 3.3 2.9 7.6 6 12.2 7.9 6.1 2.5 16.8 2.6 24.5 2.6 8.4.1 10.8.1 11.1 1.9.3 1.7-2 3.5-6.5 6.6-2.2 1.6-5.9 4.2-6.1 5.1 0 3.4-5.1 9.2-12.9 10-2.6.3-4.8.3-6.5.3-3.2.1-5.2.1-7.6 1.4-.3.2-.8.3-1.3.4-.4 1.1-.9 2.4-1.5 3.8 1.9 0 3.4-.3 4.4-.9 1.6-.9 2.8-.9 6-1 1.8 0 4-.1 6.8-.3 8.4-.8 14.8-6.8 15.8-12 1-.9 3.3-2.6 4.8-3.7 5.2-3.4 8.6-5.8 8-9.7z" fill="#F9F9FA"/><path d="M34.7 63.9h0zM37.6 63.9h-.4.4zM42.2 67.5c.8-1.1 1.
7-2.3 2.6-3.4-.9 1.2-1.8 2.3-2.6 3.4zM40.4 63.6H40c.1.1.2.1.4 0zM43.2 63.3c-.1 0-.3 0-.4.1.1-.1.3-.1.4-.1z" fill="#FFF"/><path d="M62.4 149.2c-.8-1-1.6-2-2.4-3.1-3.6 1-7.5 1.5-11.2 1.5-.8 0-1.6 0-2.4-.1.2.2.3.5.4.8v.1c0 .1.1.2.1.3v.2c.1.3.1.6 0 .9v1.2h1.5c3.2 0 6.6-.4 9.8-1.1.6.7 1.1 1.4 1.7 2.2.5-1.1 1.3-2.2 2.5-2.9z" fill="#F9F9FA"/><path d="M59.6 143.9c-.1 0-.3.1-.4.1.1 0 .3-.1.4-.1z" fill="#FFF"/><path d="M27.9 147c-.7-2.4-1.3-5.4-1.9-8.9-1.6-2.2-2.9-4.8-3.7-7.8-.9 0-1.9-.3-2.7-.8-1.9-1.1-2.9-3.2-2.7-5.4l-3.7-9.6c-.3-.8-.3-1.7 0-2.5-.8-3-1.3-7.3-.4-12.6 1.9-10.4 8.8-19.8 20.6-28.1.1-.4.3-.8.7-1.1l3.3-3c.4-.4 1-.6 1.5-.6.3 0 .6.1.9.2.2-.3.5-.7.7-1-2 .2-4 .3-5.9.3-14.8 0-23-6.5-23.3-18.3 0-2.7.3-5.5 1-8.4-2.9-2.4-4.8-5.3-5.7-8.5-.5-.9-1-1.9-1.3-2.9-2.4-7.5 1.8-15.5 9.3-17.9 1.4-.4 2.8-.7 4.3-.7 1.7 0 3.4.3 5 .9 2-.4 4-.6 6.1-.6h1.2c.6 0 1.2.1 1.8.1 3.3-2.2 6.7-3.9 10.1-4.9 3.7-1.1 7.5-1.7 11.3-1.7 7.4 0 14.8 2.3 20.9 6.4 13 2.2 22.3 11.2 22.3 21.6 0 10.2-8.8 18.9-21.5 21.4-2.1 1.6
-4.5 3-7 4.4-1.6 2.9-3.1 5.8-4.4 8.6.7.5 1.4 1.3 1.7 2.4.3.9.4 1.8.4 2.4.1 0 .1.1.2.1 0 .1 2.6 3.2 6.7 6.6-2-2.9-4.3-5.8-7-8.6l.6-1.2c1.2-2.6 2.5-5.2 4-7.9 2.1-1.2 4.1-2.4 5.9-3.7 13.9-3 23.4-12.9 23.4-24.5 0-11.8-10.2-22.1-24.4-24.7C69.6 2.3 61.8 0 54 0c-4.1 0-8.3.6-12.3 1.9-3.4 1.1-6.7 2.6-10 4.7h-2.2c-1.9 0-3.9.2-5.8.5-1.7-.5-3.5-.8-5.3-.8-1.8 0-3.5.3-5.3.8-4.5 1.4-8.2 4.5-10.3 8.7C.6 20 .2 24.7 1.6 29.2c.3 1.1.8 2.1 1.3 3.2.9 3.1 2.6 5.9 5.1 8.4-.5 2.5-.7 4.9-.6 7.2.1 5.4 1.7 9.9 4.7 13.5.4.4.7.8 1.1 1.2.8.8 1.6 1.5 2.6 2.1 3.6 2.5 8.3 4.1 13.9 4.6-11.9 8.6-19 18.5-21 29.5-1 5.4-.5 9.9.2 13.2-.2 1.2-.1 2.5.4 3.7l3.4 9c0 3.1 1.6 6 4.3 7.7.6.4 1.2.6 1.8.9.8 2.3 1.9 4.4 3.1 6.2.7 4 1.4 7.4 2.2 9.9 1.3-1.2 2.4-2.1 3.8-2.5z" fill="#F9F9FA"/><circle fill="#FFF" transform="rotate(-26.565 9.428 30.382)" cx="8.978" cy="29.932" r="1"/><path d="M7.2 22.9c-.1 1.5 0 3.1.5 4.7-.5-1.6-.7-3.2-.5-4.7zM22.6 128h.4-.6.2zM25.1 131.3c.2.6.4 1.2.7 1.8-.3-.6-.5-1.2-.7-1.8-.1 0 0 0 0 0zM22.7 119.8v-.7l
-1.4-1 1.4 1.7zM21.5 127.8c-.2-.1-.5-.2-.7-.3.2.2.5.3.7.3zM22.3 128c-.2 0-.5-.1-.7-.1.2 0 .5.1.7.1zM15.3 113v-.1.1zM15.3 113.3v-.1.1zM19.2 124.9v-.5c0 .2-.1.3 0 .5zM19.2 124.4v-.3.3zM50.5 145.3h-.1.1zM53.9 145h-.3.3zM28.5 138.9v-.1c-.1 0-.1 0 0 .1zM57 144.5c-.2 0-.3.1-.5.1.1 0 .3-.1.5-.1zM58.3 144.2c-.2 0-.3.1-.5.1.2 0 .4 0 .5-.1zM55.5 144.8c-.1 0-.3.1-.4.1.1-.1.3-.1.4-.1zM38.9 145.2c0 .1 0 .1 0 0 0 .1 0 .1 0 0zM48.8 145.4h.1-.2c.1-.1.1 0 .1 0zM41.5 144.6h-.2.2zM44 145h-.2.2zM95.7 31.4c0 1.8-.3 3.5-.9 5.1.6-1.6.9-3.3.9-5.1zM14.8 53.7c0-.1-.1-.2-.1-.3 0 .1 0 .2.1.3zM15.5 55.4c0-.1-.1-.2-.1-.3 0 .1.1.2.1.3zM16.3 56.7c-.1-.1-.1-.2-.1-.2 0 .1.1.2.1.2zM17.4 58.1c-.1-.1-.1-.2-.2-.2.1.1.2.1.2.2zM14.3 52c0-.1 0-.1-.1-.2 0 .1 0 .1.1.2zM14.4 41.2c0-.1.1-.3.1-.4 0 .1-.1.3-.1.4zM13.9 50.1v-.4.4zM13.8 45.9v-.5.5zM30.5 63.7h-.3.3zM18.5 59.2l-.1-.1s.1 0 .1.1zM28.6 63.5c-.1 0-.2 0-.4-.1.1 0 .3.1.4.1zM14.1 38l-.3-.3.3.3zM24.7 62.6c-.1 0-.2 0-.2-.1.1 0 .2 0 .2.1zM26.5 63.1c-.1 0-.2-.1-.3-.1.1 0 .2 0
.3.1zM19.9 60.3c-.1-.1-.2-.1-.3-.2.2.1.3.1.3.2zM23 61.9c-.1 0-.2-.1-.3-.1.1 0 .2.1.3.1zM8.3 29s0-.1-.1-.1c0 0 0 .1.1.1zM27.7 12.4c.4 0 .7-.1 1.1-.1-.3 0-.7 0-1.1.1zM18.1 11.9h.8-.8zM25.5 12.6h.2-.2zM30.3 12.2h-.7 1.8-1.1zM93.7 23.9c.2.4.5.9.7 1.4-.3-.5-.5-.9-.7-1.4zM89.5 18.7l.8.8c-.2-.3-.5-.6-.8-.8zM91.5 20.8c.5.5.9 1.1 1.3 1.7-.4-.6-.8-1.2-1.3-1.7zM10.6 34.1c-.1-.2-.2-.4-.3-.5.1.2.2.4.3.5zM9.3 31.6c-.1-.2-.2-.5-.2-.7.1.2.1.4.2.7zM12.9 37l-.3-.3.3.3zM17 12.1c.2 0 .5-.1.7-.1-.2 0-.5.1-.7.1zM11.9 35.9s0-.1 0 0c0-.1 0 0 0 0zM9.9 32.9l-.3-.6.3.6zM32.8 63.9h-.4.4zM11.4 14.7c.6-.5 1.2-1 1.9-1.3-.7.4-1.3.8-1.9 1.3zM15.6 12.4c.4-.1.7-.2 1.1-.3-.4.1-.8.2-1.1.3zM81.2 139.8h-1.1 1.1zM72.5 139.6c-.2 0-.4 0-.6-.1.2 0 .4 0 .6.1zM82.7 139.7c-.3 0-.6 0-1 .1.4-.1.7-.1 1-.1zM84.3 139.6c-.3 0-.6.1-1 .1.3-.1.6-.1 1-.1zM76.3 139.8h-.5.5zM74.4 139.7h-.6.6zM78.2 139.9h1.5-1.5zM92 138.5c-.3.1-.6.1-.9.2.3-.1.6-.1.9-.2zM90.6 138.8c-.3.1-.6.1-.9.1.3 0 .6-.1.9-.1zM85.9 139.4c-.3 0-.7.1-1 .1.3 0 .6 0 1-.1zM93.
4 138.2c-.3.1-.6.1-.9.2.3-.1.6-.1.9-.2zM89.2 139c-.4.1-.8.1-1.1.2.3-.1.7-.2 1.1-.2zM87.7 139.2c-.5.1-1 .1-1.4.2.5-.1 1-.1 1.4-.2zM69.2 121.2c-.3-.1-.5-.1-.8-.2l-1.3.8c.3.2.6.3.8.5l.6.3.7-1.4zM23.3 107.4v-.1.1zM23.2 105.3v-.1.1zM23.2 106.4v-.1.1zM71.5 141.8c.9 1.7 1.7 3.3 2.2 4.7-.5-1.4-1.3-3-2.2-4.7zM65.9 150c-1.8-2.3-3.6-4.6-5.1-6.4 1.5 1.8 3.2 4.1 5.1 6.4zM95 137.9l-1.2.3c.4-.2.8-.2 1.2-.3zM65 117.8c-.8.4-1.5.5-2.4.7.8.6 1 .9 1.9 1.5l1.3-.8c-.2-.2-.3-.4-.4-.6-.2-.2-.3-.4-.4-.8zM19.2 125c.1 1 .7 1.9 1.6 2.5-.9-.5-1.5-1.5-1.6-2.5zM38.9 144.1c0-.1 0-.1 0 0 0-.1 0-.1 0 0zM22.4 121.2l-2-2.5 1 2.7c.3-.2.6-.2 1-.2zM25.9 133.3c.7 1.4 1.4 2.7 2.3 3.9 0 .2.1.4.1.6 0-.2-.1-.4-.1-.6-.9-1.2-1.7-2.5-2.3-3.9zM96.3 137.5l-1.2.3c.5-.1.9-.2 1.2-.3zM105.8 134c-.2.1-.3.2-.5.3.2-.1.4-.2.5-.3zM106.2 133.7c-.1.1-.2.2-.3.2.1 0 .2-.1.3-.2zM105.2 134.4c-.1.1-.3.2-.4.2.1 0 .2-.1.4-.2zM106.6 133.5l-.2.2c0-.1.1-.2.2-.2zM104.5 134.8c-.1.1-.3.1-.4.2.1-.1.2-.2.4-.2zM106.8 133.2c0 .1-.1.1-.1.2 0-.1.1-.2.1-.2zM106
.9 132.9c0 .1 0 .1-.1.2.1-.1.1-.1.1-.2zM103.8 135.1c-.2.1-.3.1-.5.2.1 0 .3-.1.5-.2zM106.9 132.6v0zM95.8 130.5h.2-.2zM98.7 136.9c-.2.1-.5.1-.7.2.2-.1.5-.1.7-.2zM97.5 137.2c-.3.1-.5.1-.8.2.3 0 .6-.1.8-.2zM99.8 136.6c-.2.1-.5.1-.7.2.3-.1.5-.2.7-.2zM101 136.2c-.3.1-.5.2-.8.3.2-.1.5-.2.8-.3zM102.1 135.8l-.9.3.9-.3zM103 135.4c-.2.1-.4.2-.6.2.2 0 .4-.1.6-.2zM59.3 111.8h-.1.3-.2zM58.4 111.9h.2-.2zM57.6 112.2c-.1.1-.2.2-.3.2.1 0 .2-.1.3-.2zM74.2 116.6v0zM61 112.2c.1 0 .1.1.2.1-.1 0-.2 0-.2-.1zM65.4 114l.1-.1-.1.1zM61.6 112.8l.2.2c0-.1-.1-.2-.2-.2zM62.7 115.2c.7-.2 1.5-.4 2.3-.5-.8.1-1.5.3-2.3.5 0-.5-.1-1.1-.4-1.6.3.5.4 1 .4 1.6zM60.1 111.9h0zM64.3 111.8c.1-.1.1-.2.2-.3l-1.2-.3c.3.3.5.6.7.9l.3-.3z" fill="#FFF"/><path d="M79.1 113.9c-.5 0-1 0-1.5-.1-.3.9-.8 1.9-1.2 2.9 0 .4-.1.9-.3 1.3l-1.9 4.4c0 .1 0 .2-.1.3 0 .1 0 .1-.1.2.4.2.8.3 1.1.5 10.3 4.3 18.9 4.8 24.5 5.2 4.9.3 8.1.5 9.2 3.2.3.9.2 1.8-.3 2.7-2.3 3.4-17.1 7.7-30.4 7.7-1.4 0-2.8 0-4.1-.1.6 1.1 1 2.1 1.4 3 .1 0 .1 0 .2-.1.6-.1 3.7-.3 5.5
.4 7.3-.3 13.6-1.7 16.9-2.6 10.5-2.8 12.4-5.5 13-6.5 1.2-1.8 1.4-3.9.7-5.8-1.9-4.7-6.8-5-12.1-5.3-5.1-.3-12.6-.8-21.5-4.1l.7-1.7c.2-.6.4-1.1.5-1.7 0-.1 0-.1.1-.2.6-1.3 1.1-2.6 1.5-3.8-.5.2-1.1.2-1.8.2z" fill="#F9F9FA"/><path d="M56.8 110.8c.1.3.1.5.2.8 0-.3-.1-.5-.2-.8zM66.7 112c-.3.6-.6 1-.7 1.2.1-.2.4-.6.7-1.2z" fill="#FFF"/><path d="M58.4 107.7c2.3.6 4.7 1.2 7 1.8 1.7-4.3 3.2-13.6-7-26-1.7 7.8-1.7 15.9 0 24.2z" fill="url(#a)"/><path d="M81.2 111.4c2.9-1.6 5.3-1.6 8.6-1.7 1.8 0 3.8-.1 6.3-.3 6.8-.7 10.9-5.8 10.9-7.8 0-.4.1-.7.3-1.1-1.7.2-3.2.2-4.6.2-6.7 0-10.6-1.5-10.8-1.6-.3-.1-.4-.4-.3-.7.1-.3.4-.4.7-.3.1 0 6 2.4 15.9 1.2 1.2-1.2 3.1-2.7 5.8-4.6 1.8-1.3 4.4-3.1 5.3-4.2-1.5-.3-5.2-.3-8.6-.3-8-.1-18.9-.1-25.4-2.8C78.5 84.6 72.6 79.5 69 76c11 13.8 11.5 25.8 9.7 33.9 0 0-.2.7-.5 1.8 1.5.1 2.5 0 3-.3z" fill="url(#b)"/><path d="M28.3 16.1c1.8-1.9 3-3.1 3.9-3.7-.2 0-.5 0-.7-.1H29c-.4 0-.7 0-1.1.1-.7.1-1.4.1-2.1.2h-.2l-1.5.3c1.5.7 3 1.8 4.2 3.2z" fill="url(#c)"/><path d="M60.1 146.8s-4.
3 5.9-3.1 9c1.2 3.1 9.3 12.9 9.3 12.9s-1.2 8.1-.8 9.6c.4 1.5 4.2 5.8 12.7 2.5s8.8-8.3 8.9-12.3c0-1.6.3-4.2.1-7.8 0-.3 3.5-4.3 1.7-11.3-.8-3.1-2.5-4.3-2.8-4.3-1.1 0-.4 0-.7-.6-1.1-2.2-25.3 2.3-25.3 2.3z" fill="#F9F9FA"/><path d="M8.9 30.2c.1.2.1.4.2.7.1.2.1.5.2.7.1.2.2.5.3.7l.3.6c.1.2.2.5.4.7.1.2.2.4.3.5.4.6.8 1.2 1.2 1.7.2.3.5.5.7.8l.3.3c.3.3.5.5.8.7l.3.3s.1 0 .1.1c.4-1 .8-1.9 1.3-2.7-2.6-.8-4.9-2.6-6.4-5.1z" fill="url(#d)"/><path d="M16.6 30.2c-.3.5-1 .7-1.5.3-.5-.3-.7-1-.3-1.5.1-.1 1.8-2.7 5.1-2.7h.4c-.6-.2-1.1-.8-1.1-1.5l.1-3.5c0-.9.7-1.5 1.6-1.5.9 0 1.5.7 1.5 1.6l-.1 2.4c.9-1.3 1.9-2.5 2.9-3.7-.1-.2-.2-.5 0-.7 1.1-1.4 2.1-2.5 3-3.4-1.2-1.4-2.7-2.4-4.3-3.2-1.5-.7-3.1-1-4.8-1h-1.5c-.2 0-.5.1-.7.1-.1 0-.2 0-.3.1-.4.1-.7.2-1.1.3-.8.2-1.5.6-2.2 1-.7.4-1.4.8-1.9 1.3-1.5 1.3-2.6 2.9-3.4 4.7-.4 1.1-.7 2.3-.8 3.5-.1 1.5 0 3.1.5 4.7.1.5.3.9.5 1.3 0 0 0 .1.1.1l.6 1.2c1.5 2.5 3.8 4.3 6.5 5.2.7-1.3 1.4-2.2 1.4-2.3.1-.1.2-.2.3-.2.6-1.4 1.4-2.9 2.2-4.3-1.7.3-2.6 1.6-2.7 1.7z" fill="#F9F9FA"/><
path d="M20.9 19.8c-.9 0-1.6.7-1.6 1.5l-.1 3.5c0 .7.4 1.3 1.1 1.5h-.4c-3.4 0-5 2.5-5.1 2.7-.3.5-.2 1.2.3 1.5.5.3 1.2.2 1.5-.3 0 0 .9-1.3 2.6-1.6.9-1.6 1.9-3.2 3.1-4.7l.1-2.4c0-.9-.6-1.6-1.5-1.7z" fill="url(#e)"/><path d="M77.5 13.6c2.2 0 4.2.6 6 1.6-1.1-.8-2-1.3-2.6-1.6-1.9-.7-3.9-1.2-6-1.6.8.9 1.6 1.6 2.6 1.6z" fill="url(#f)"/><path fill="url(#g)" d="M19.1 113.1v-.1l-.1.1"/><path d="M68 122.3c.2.1.4.2.6.4-.2-.2-.4-.3-.6-.4z" fill="url(#h)"/><path d="M46.2 67.8c.6 0 1.3 0 2-.1 6.3-.4 13.8-2.8 13.9-2.9.2-.1.5-.1.7-.1h.3c1.3-2.7 2.6-5.2 3.8-7.5-3.4 1.7-10.3 4.6-22 6.8-.9 1.1-1.7 2.2-2.6 3.4.9.3 2.2.4 3.9.4z" fill="url(#i)"/><path d="M24.7 143.9s-4.7 5.6-3.8 8.8c.9 3.2 8.4 13.7 8.4 13.7s-1.8 8.1-1.5 9.6c.3 1.5 3.8 6.1 12.6 3.5 8.8-2.6 8.9-6.7 9.3-10.7.4-4 1-16.3.7-18.8-.3-2.5-25.7-6.1-25.7-6.1z" fill="#F9F9FA"/><path d="M69.7 127.3c.1-.2.1-.5.3-.8l-.3.6v.2z" fill="url(#j)"/><path d="M65.9 150c.8.3 2.4.4 5.3-.3 1.7-.4 2.7-.9 3.3-1.3l-.6-1.8c-.6-1.4-1.3-3.1-2.2-4.8-2.1-3.4-3.7-6.1-3.7-6.
1-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2 0 0 1.1 1.8 2.6 4.3.2 0 .4.1.6.1.2 0 .4 0 .6.1.4 0 .9.1 1.3.1h.6c.4 0 .9.1 1.4.1h6c.3 0 .6 0 1-.1h.6c.3 0 .6-.1 1-.1h.5c.4 0 .7-.1 1-.1h.4c.5-.1 1-.1 1.4-.2h.3c.4-.1.8-.1 1.1-.2.2 0 .3-.1.5-.1.3 0 .6-.1.9-.1.2 0 .4-.1.5-.1.3-.1.6-.1.9-.2.2 0 .3-.1.5-.1.3-.1.6-.1.9-.2.1 0 .3-.1.4-.1l1.2-.3h.1l1.2-.3c.1 0 .3-.1.4-.1.3-.1.5-.1.8-.2.2 0 .3-.1.4-.1.2-.1.5-.1.7-.2.1 0 .3-.1.4-.1.2-.1.5-.1.7-.2.1 0 .3-.1.4-.1.3-.1.5-.2.8-.3.1 0 .1 0 .2-.1l.9-.3c.1 0 .2-.1.2-.1.2-.1.4-.2.6-.2.1 0 .2-.1.3-.1.2-.1.3-.1.5-.2.1 0 .2-.1.3-.1.2-.1.3-.1.4-.2.1 0 .2-.1.2-.1.2-.1.3-.2.4-.2.1 0 .1-.1.2-.1.2-.1.4-.2.5-.3 0 0 .1 0 .1-.1.1-.1.2-.2.3-.2l.1-.1.2-.2.1-.1c0-.1.1-.1.1-.2 0 0 0-.1.1-.1 0-.1 0-.1.1-.2v-.1-.2c-.7-1.8-4.7-1.6-10.9-2.1h-.2c-5.6-.5-12.9-1.5-21.4-5.1-.4-.2-.8-.3-1.2-.5-.7 1.6-1.3 3.1-1.3 3.5-.1 1-1.2 2.7-2.7 3.6-.8.5-1.6.7-2.5.7-.5 0-1-.1-1.5-.3-.5-.2-.8-.8-.7-1.3-1.6-.8-2.2-2.3-2.3-3.2 0-.3.2-.6.5-.6h.1c.1-1.1.7-2.2 1.8-2.8 1-.5 2.1-.5 3-.1l.4-.9-.1-.1c-.4-.2-.7-.4
-1.1-.6l-.4-.2-.5-.3-1.7 1c-.3 1.3-1.3 3.4-3.5 3.5h-.2c-3 0-3.8-1.9-4.2-3.3-.1-.3.1-.6.4-.7h.1c0-.4 0-.8.1-1.2.5-1.8 2.5-2.9 4.3-2.3.8.2 1.4.7 1.9 1.4l.2-.1c-.3-.3-.6-.5-.8-.7-.2-.2-.4-.4-.7-.6l-.9-.7c-.9.2-1.8.3-2.6.3-.5 0-.9-.1-1.2-.2-2.3-.9-2.3-3.8-2.3-3.9 0-.3.3-.5.6-.6.2 0 .3.1.4.2.1-.9.6-1.7 1.4-2.2-.1-.3-.2-.6-.2-.9-.1-.3-.1-.5-.2-.8-.1-.4-.2-.9-.3-1.3 0-.2-.1-.4-.1-.6-.1-.6-.3-1.2-.4-1.8v-.1c-1.5-8.1-1.7-17.2 1-26.8-.9-1.2-1.5-1.9-2-2.4-2 .4-4.1.6-6.5.6h-.2c-1.3 3.8-2 7.3-2.3 10.5l2.3.1c.4 0 .8.3 1 .7.2.4 0 .9-.3 1.2l-3.1 2.9c.3 6.4 2.1 11.8 3.5 16 .4 1.2.8 2.4 1.1 3.4 2.8 9.4 2.6 17.3-.4 22.2-1.7 2.7-4.1 4.4-7.1 4.9-.4.1-.9.1-1.4.1-2.3 0-4.8-1-7-2.7-2.8-2.3-7.7-7.9-8.2-20.8C26 108.9 28 101 30.6 94c-.4-.1-.7-.3-.8-.6-.2-.3-.1-.7.1-1.1l6.2-10.2c1.1-2.1 2.2-3.9 3.1-5.3-2.9-1-4.3-2.4-5-3.3-4.3 3.1-8 6.3-10.9 9.7 0 0 0 .1-.1.2 1.2-1.4 2-2.2 2.1-2.3.3-.3.7-.3 1 0 .3.3.3.7 0 1 0 0-2.8 2.8-5.2 6.6-1.3 3.7-2.7 8.5-2.6 12.2.1 4.7 1.3 7.8 2.1 9.3.9.3 1.9.5 2.9.8-.1.8-.3 1.8-.3 2.9-.5-
.1-1-.3-1.4-.4.5.3.9.6 1.4.8.2-1.5.4-2.5.4-2.7.1-.3.3-.5.6-.5.3.1.5.3.5.6 0 .1-2 11.3.5 19.2.2.6.5 1.2.7 1.8 0 .1.1.1.1.2.7 1.4 1.4 2.7 2.3 3.9 0 .2.1.4.1.6.1.3.1.6.2 1v.1c.6 3.6 1.4 7.2 2.3 9.8.8.4 2.2.6 4.7.5 2-.1 3-.5 3.6-.8 0-1 0-2-.1-3v-.1c-4.5-1.2-6.1-2.9-6.2-3-.2-.2-.2-.6 0-.8.2-.2.6-.2.8 0 0 0 1.5 1.5 5.4 2.6v-.1l2.4.6h.2c.8.2 1.6.3 2.4.4h.2c1.6.2 3.2.3 4.7.3h1.7c1.1 0 2.1-.1 3.1-.3h.3c.4 0 .8-.1 1.1-.2.1 0 .3 0 .4-.1.3-.1.6-.1 1-.2.2 0 .3-.1.5-.1.3-.1.6-.1.9-.2.2 0 .3-.1.5-.1.3-.1.6-.1.9-.2.1 0 .3-.1.4-.1l1.2-.3c1.3 2.3 3 4.6 4.9 6.9zm8-22.2c.1-.2.3-.4.5-.5.4-.1.8.1 1.2.3 4.8 2.9 14 4.5 27.2 4.6.1 0 .6 0 .8.4.1.2.1.5-.1.8-.5.7-8.8 1.8-15.3 1.8-2 0-3.8-.1-5.2-.3-5.8-1-8-3.7-8.6-4.9-.6-.8-.7-1.6-.5-2.2zm-49.7-17.2c0 .3-.3.5-.6.5s-.5-.3-.5-.6c0-.9.1-1.8.3-2.7 0-.2-.1-.3-.1-.5v-.1c0-.3-.1-.6-.1-.9v-.1-1-.1-1.1-.1c.2-3.2 1.2-7.3 4.2-11.8l.1-.1c.3-.5.7-1 1-1.5.8-2 1.5-3.3 1.5-3.5.1-.3.5-.4.7-.3.3.1.4.5.3.7-.1.4-6.3 13.7-6.8 23.2z" fill="url(#k)"/><path d="M37.2 63.9h.4c.8 0 1.6-.
1 2.4-.2h.4l2.4-.3c.1 0 .3 0 .4-.1.5-.1 1-.2 1.5-.2 13.5-2.6 20.6-6 23.1-7.5.1-.1.2-.1.4-.2.5-.3.7-.4.7-.5.1-.1.2-.1.3-.1 1.7-1 3.4-2 4.9-3.1-4.2-.1-7.5-1.9-7.7-2-.3-.1-.4-.5-.2-.8.1-.3.5-.4.8-.2 0 0 4.6 2.4 9.5 1.7 1.1-.2 2.2-.5 3.2-.8 6.7-2.1 12-6.3 14.5-11.6.2-.5.5-1.1.7-1.6.6-1.6.9-3.3.9-5.1 0-2.2-.5-4.2-1.3-6.2-.2-.5-.4-.9-.7-1.4l-.9-1.5c-.4-.6-.8-1.1-1.3-1.7-.4-.4-.8-.9-1.2-1.3l-.8-.8c.9 1.6 1.5 3.4 1.7 5.6.9 1.4 1.6 2.9 1.8 4.6 1.4 7.8-5.3 15.4-14.8 17.1-3.2.6-6.3.4-9-.4-6.2 3.4-14.2 5.7-22.1 6.6-16.5 1.9-29.8-1.4-28.8-13.1.8-8.9 9.4-22.1 19.5-29.1-.5.3-1.1.6-1.6.9-.8.5-1.6 1-2.4 1.6 0 0-2.4 1.2-7.7 7.7-.1.1-.3.2-.4.2-.1 0-.2 0-.4-.1l-.1-.1c-1 1.2-2 2.4-2.9 3.7-1.1 1.5-2.1 3.1-3.1 4.7-.8 1.4-1.5 2.8-2.2 4.3.2 0 .3 0 .5.1.3.2.3.5.1.8 0 0-2.2 3.2-3 6.3-.1.3-.1.6-.2.8 0 .1-.1.3-.1.4-.1.7-.3 1.4-.4 2.1-.1.7-.2 1.4-.2 2v.5c0 .7-.1 1.3 0 2 0 .6.1 1.2.1 1.8v.4c.1.6.2 1.1.3 1.7 0 .1 0 .1.1.2.1.5.3.9.4 1.4 0 .1.1.2.1.3.2.5.4.9.6 1.4 0 .1.1.2.1.3.2.4.4.8.7 1.1 0 .1.1.2.1.2.3.4.6.8.9 1.
1.1.1.1.2.2.2l.9.9.1.1 1.2.9c.1.1.2.1.3.2.4.3.8.5 1.3.8h.1c.4.2.9.4 1.3.7.1 0 .2.1.3.1l1.5.6c.1 0 .2.1.2.1.5.1.9.3 1.4.4.1 0 .2.1.3.1.6.1 1.1.2 1.7.3.1 0 .2 0 .4.1.5.1 1.1.2 1.6.2h.3c.6.1 1.2.1 1.9.1h2.4c1 .6 1.8.6 2.6.6z" fill="url(#l)"/><path d="M68.1 113.9c1.7-2.1 3.7-5.6 4.9-11.1 1.6-7-3-17.6-6.6-24.5-1-1.3-2-2.5-2.8-3.4-1.7.9-4.2 1.9-7.3 2.6.4.5.9 1.1 1.5 1.8 14.4 15.6 11.4 27.5 9.3 32-.1.3-.2.5-.4.7-.3.6-.6 1-.7 1.2-.2.2-.3.4-.5.6l-.1.1c-.1.2-.3.4-.4.7 1.1-.2 2.1-.4 3.1-.7z" fill="url(#m)"/><path d="M76.4 110.7c.2-.8.3-1.3.3-1.3 1.2-5.5.8-10.8-.6-15.7 1.7 6.5 1.4 12.4.3 17z" fill="url(#n)"/><path d="M30.7 86.9c-.3-.1-.6 0-.7.3-.1.2-.7 1.5-1.5 3.5-.4.5-.7 1-1 1.5l-.1.1c-3 4.5-4 8.6-4.2 11.8V106.5c0 .3.1.6.1.9v.1c0 .2 0 .3.1.5l-.3 2.7c0 .3.2.6.5.6s.5-.2.6-.5c.4-9.5 6.7-22.8 6.7-23 .2-.4.1-.8-.2-.9z" fill="url(#o)"/><path d="M32.7 105.7c-.2 0-.4-.1-.6-.2-.4-.3-.6-.8-.4-1.3l3.6-9.5-4.5-.6c-2.6 6.9-4.5 14.9-4.2 22.8.6 12.8 5.4 18.5 8.2 20.8 2.2 1.7 4.7 2.7 7 2.7.5 0 .9 0 1.4-.1 3-.
5 5.4-2.2 7.1-4.9 3-4.9 3.2-12.8.4-22.2-.3-1-.7-2.2-1.1-3.4-1.4-4.2-3.2-9.5-3.5-16l-12.5 11.6c-.4.2-.7.3-.9.3zM36.2 82.1c.2-.3.6-.6 1-.5l7.8.4c.4 0 .8.3 1 .6.2.4.1.8-.1 1.2l-3.9 5 4.1.2c.3-3.3 1-6.8 2.3-10.5-1.1 0-2.1-.1-3.2-.2-2.5-.2-4.5-.7-6-1.2-.9 1.4-1.9 3.2-3.1 5.3l.1-.3zM82.9 134.9c1.4.2 3.2.3 5.2.3 6.5 0 14.8-1.1 15.3-1.8.2-.2.2-.5.1-.8-.2-.4-.6-.4-.8-.4-13.2-.1-22.3-1.7-27.2-4.6-.5-.3-.8-.5-1.2-.3-.2.1-.4.3-.5.5-.2.5 0 1.3.4 2.2.7 1.1 2.9 3.9 8.7 4.9zM69.5 120.6h-.4l-1.9 1.2 1.3-.8c.2.1.5.2.8.2l-.6 1.4.8-2zM65.4 118.7c.1.2.2.4.4.6h.1c-.2-.3-.4-.4-.5-.6z" fill="#F9F9FA"/><path d="M57.3 112.5c-.8.5-1.2 1.4-1.4 2.2.1.1.1.2.1.3 0 0 0 2.2 1.6 2.8 1.2.5 5.3-.7 7.5-1.5h.3l.2-.1.4 1.2c.1.4.3.6.6 1l.9 1-1.1.7-1.4.9-.6.4-.6-.4c-.1-.1-.3-.2-.4-.3l-.2.1c-.4-.6-1.1-1.1-1.9-1.4-1.8-.5-3.8.5-4.3 2.3-.1.4-.1.8-.1 1.2.3 0 .5.1.6.4.4 1.5 1.1 2.5 3.3 2.5 2-.1 2.5-2.8 2.5-2.8 0-.2.1-.3.3-.4l4.5-2.8c.1 0 .1-.1.2-.1l.2-.1.3-.2h.6l1.9-.2-.8 1.8-.9 2.1-.5 1.1-1-.5-.4.9c-.9-.4-2.1-.4-3 .1-1.1.6-1.7
1.6-1.8 2.8.2 0 .5.2.5.5 0 .1.3 1.9 2.1 2.5h.5c.3.1.5.1.8.1h.3c.3-.1.6-.2.9-.4.6-.4 1-.9 1.3-1.3.3-.5.4-1 .4-1.1 0-.1 0-.3.1-.4v-.2l.3-.6c.4-1 1-2.3 1.4-3.1l2.7-6.2c0-.1.1-.2.1-.3v-.2-.3c1.1-2 1.8-4.2 2.2-5.6 1.1-4.7 1.4-10.5-.2-17-2.2-7.6-6.7-14.2-11.3-19.4-.3.2-.7.4-1.2.6.9 1 1.8 2.2 2.8 3.4 3.6 6.8 8.2 17.5 6.6 24.5-1.2 5.4-3.2 8.9-4.9 11.1-1 .2-2 .5-3 .7-.8.2-1.6.4-2.3.5 0-.5-.1-1.1-.4-1.6-.1-.3-.3-.5-.5-.7l-.2-.2c-.2-.1-.3-.3-.5-.4-.1 0-.1-.1-.2-.1-.2-.1-.5-.2-.7-.3h-.1c-.2-.1-.4-.1-.7-.1h-.3c-.2 0-.4 0-.5.1h-.2c-.3.1-.5.2-.7.3-.5 0-.6.1-.7.2zM64.4 123.5l1.7-1-1.7 1zM18.4 39.1c-1.1 11.7 12.3 15 28.8 13.1 7.9-.9 15.9-3.2 22.1-6.6 2.8.8 5.8 1 9 .4 9.5-1.7 16.1-9.3 14.8-17.1-.3-1.7-.9-3.2-1.8-4.6.2 2.6-.3 5.5-2 8.7-.1.2-.2.3-.4.4-2 4.2-6.7 7-12 6.6-4.3-.4-7.9-2.8-9.8-6.2-2.6-3.7-1.8-7.3-1.7-7.5.1-.3.4-.5.7-.4.3.1.5.4.4.7 0 .1-.4 1.5.1 3.5 1.7 4.1 5.3 7 10.3 7.2.1-.1.2-.1.4-.1.4 0 10.5-.3 11.6-9.9.7-6.3-2.5-10-5.2-12-1.8-1-3.8-1.6-6-1.6-1 0-1.8-.7-2.6-1.5h-.2c-5.5-3.8-12.5-6.3-20.1
-6.3-3.4 0-7 .5-10.6 1.6-2.1.6-4.1 1.5-6.1 2.6-10.3 6.9-18.9 20-19.7 29zM60 42c-.1 0-.2.1-.2.1-.2 0-.4-.1-.5-.3-2.6-5.6-.5-10.6-.4-10.8.1-.3.4-.4.7-.3.3.1.4.5.3.7 0 0-2 4.7.4 9.9.1.2 0 .6-.3.7zm25.3-12.3c.3.5.2 1.2-.3 1.5-.2.1-.4.2-.6.2-.4 0-.7-.2-.9-.5 0-.1-1.1-1.6-3.2-1.6s-3.2 1.6-3.2 1.6c-.3.5-1 .7-1.5.3-.5-.3-.7-1-.3-1.5.1-.1 1.8-2.7 5.1-2.7 3.2.1 4.9 2.6 4.9 2.7zm-17.2-.9h-.2c-.2 0-.5-.1-.5-.4l-.1-.3c-.1-.3.1-.6.4-.7.3-.1.6.1.7.4l.1.3c.1.3-.1.6-.4.7zm5.6 6.2h-.1c-.1 0-2.9-.6-5.1-4.3-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2 2 3.3 4.4 3.8 4.4 3.8.3.1.5.3.4.6-.1.4-.3.5-.6.5zm8.1-12.2l-.1 3.5v.3c-.4-.1-.9-.2-1.4-.2-.6 0-1.1.1-1.6.2 0-.1-.1-.3 0-.4l.1-3.5c0-.9.7-1.5 1.6-1.5.7 0 1.4.7 1.4 1.6zM72.7 14c.1.3 0 .6-.3.7 0 0-2.4.9-3.6 3.3-.1.2-.3.3-.5.3-.1 0-.2 0-.2-.1-.3-.1-.4-.5-.2-.7 1.4-2.8 4.1-3.8 4.2-3.9.2-.1.5.1.6.4zM23.4 111.2c-1-.3-2-.6-2.9-.8-.8-1.5-2-4.7-2.1-9.3-.1-3.7 1.3-8.5 2.6-12.2 2.4-3.8 5.2-6.6 5.2-6.6.3-.3.3-.7 0-1-.3-.3-.7-.3-1 0-.1.1-1 .9-2.1 2.3.1-.1.1-.2.1-.2-4.4 5.1-7.1 10.6
-8.2 16.4-1 5.3-.2 9.7.6 12.4-.1.1-.1.2-.2.3v.1c0 .1-.1.1-.1.2v.4c0 .1 0 .2.1.3l3.9 10.1v1.3c.1 1 .7 1.9 1.6 2.5.2.1.5.2.7.3h.1c.2.1.5.1.7.1H23.3c-.4-2.2-.5-4.5-.5-6.6-.1 0-.2-.1-.2-.2l-.1-.1c-.3 0-.7.1-1 .2l-1-2.7-1-1.2c-.2-.2-.2-.6.1-.8.2-.2.6-.2.8.1l1.1 1.3 1.4 1c.1-1.2.1-2.3.2-3.3-1.6-.9-3.3-2-3.6-2.1-.3-.1-.4-.4-.3-.6v-.1c.1-.3.4-.4.7-.3.2.1 1 .5 1.9 1.1.4.1.9.3 1.4.4-.1-.9 0-1.9.2-2.7z" fill="#F9F9FA"/><path d="M64.4 121.4l.6-.4 1.4-.9 1.1-.7-.9-1c-.4-.4-.5-.6-.6-1l-.4-1.2-.2.1h-.3c-2.2.8-6.3 2-7.5 1.5-1.6-.6-1.6-2.8-1.6-2.8 0-.1-.1-.3-.1-.3-.1-.1-.2-.2-.4-.2-.3 0-.6.2-.6.6 0 .1 0 3 2.3 3.9.3.1.7.2 1.2.2.8 0 1.7-.1 2.6-.3l.9.7c.3.2.5.4.7.6.2.2.5.4.8.7.1.1.2.2.4.3l.6.2zm1.4-2.1l-1.3.8c-.9-.6-1.1-.9-1.9-1.5.9-.2 1.6-.3 2.4-.7.1.4.2.6.4.9.1.1.3.2.4.5z" fill="url(#p)"/><path d="M69.6 123.1l.9-2.1.8-1.8-1.9.2h-.6l-.3.2-.2.1c-.1 0-.1 0-.2.1l-4.5 2.8c-.1.1-.2.2-.3.4 0 0-.4 2.8-2.5 2.8-2.2 0-2.9-1-3.3-2.5-.1-.3-.3-.4-.6-.4h-.1c-.3.1-.5.4-.4.7.4 1.4 1.3 3.3 4.2 3.3h.2c2.2-.1 3.2-2.2 3.
5-3.5l1.6-1 .5.3.4.2c.4.2.7.4 1.1.6l.1.1 1 .5.6-1zm-1-.4c-.2-.1-.4-.2-.6-.4-.3-.2-.6-.3-.8-.5l1.9-1.2h.4l-.9 2.1z" fill="url(#q)"/><path d="M78.7 22.7l-.1 3.5v.4c.5-.1 1-.2 1.6-.2.5 0 .9.1 1.4.2v-.3l.1-3.5c0-.9-.7-1.6-1.5-1.6-.8-.1-1.5.6-1.5 1.5z" fill="url(#r)"/><path d="M80.2 27.1c-3.4 0-5 2.5-5.1 2.7-.3.5-.2 1.2.3 1.5.5.3 1.2.2 1.5-.3 0 0 1.1-1.6 3.2-1.6s3.2 1.6 3.2 1.6c.2.3.6.5.9.5.2 0 .4-.1.6-.2.5-.3.7-1 .3-1.5.2-.2-1.5-2.7-4.9-2.7z" fill="url(#s)"/><path d="M67.8 17.5c-.1.3 0 .6.2.7.1 0 .2.1.2.1.2 0 .4-.1.5-.3 1.2-2.4 3.6-3.3 3.6-3.3.3-.1.4-.4.3-.7-.1-.3-.4-.4-.7-.3 0 0-2.7 1-4.1 3.8z" fill="url(#t)"/><path d="M59.9 31.3c.1-.3 0-.6-.3-.7-.3-.1-.6 0-.7.3-.1.2-2.2 5.2.4 10.8.1.2.3.3.5.3.1 0 .2 0 .2-.1.3-.1.4-.5.3-.7-2.4-5.1-.4-9.8-.4-9.9z" fill="url(#u)"/><path d="M73.8 33.9s-2.4-.5-4.4-3.8c-.2-.3-.5-.3-.8-.2-.3.2-.4.5-.2.8 2.3 3.8 5 4.3 5.1 4.3h.1c.3 0 .5-.2.5-.5.2-.2 0-.5-.3-.6z" fill="url(#v)"/><path d="M68.5 28.1l-.1-.3c-.1-.3-.4-.4-.7-.4-.3.1-.4.4-.4.7l.1.3c.1.2.3.4.5.4h.2c
.3-.1.5-.4.4-.7z" fill="url(#w)"/><path d="M65 71.5s0-1.4-.4-2.6c0-.2-.1-.3-.2-.4-1.4.6-6.2 2.4-15.4 3.3-6.1.6-9.9-.8-11.5-1.6l-1.9 1.7s1.1 3.3 9.7 4.1c1.1.1 2.2.1 3.2.1 10.4 0 16.5-4.6 16.5-4.6z" fill="url(#x)"/><path d="M49 71.8c9.2-.9 14-2.7 15.4-3.3-.5-.9-1.7-1.4-1.7-1.4s-7.8 2.6-14.5 3c-.7 0-1.4.1-2.1.1-5.2 0-7.2-1.2-7.2-1.2l-1.4 1.3c1.6.7 5.4 2.1 11.5 1.5z" fill="#FFF"/><path d="M47.9 83.5c.3-.3.3-.8.1-1.2-.2-.4-.5-.6-1-.6l-7.8-.4c-.4 0-.8.2-1 .5l-.1.2-6.2 10.2c-.2.3-.2.7-.1 1.1.2.3.5.6.8.6l4.5.6-3.6 9.5c-.2.5 0 1 .4 1.3.2.1.4.2.6.2.3 0 .5-.1.8-.3l12.5-11.6 3.1-2.9c.3-.3.4-.8.3-1.2-.2-.4-.5-.7-1-.7l-2.3-.1-4.1-.2 4.1-5z" fill="url(#y)"/><path d="M77.3 148.2c-.5 1.6-2.3 2.8-5.6 3.7-3.5.9-6 .8-7.5-.3-.2-.2-.4-.3-.6-.5-1.1.7-1.6 1.7-1.3 2.4.5 1.4 3.5 2.3 9.2.9 8.2-2 9.3-4.8 9.5-5.6.1-.8-.2-1.2-.3-1.3-.5-.3-1.9-.5-3.2-.4-.1.3-.1.7-.2 1.1z" fill="#FFF"/><path d="M75.7 144.9c-.1 0-.2 0-.2.1-.4-.9-.8-1.9-1.4-3 1.3.1 2.7.1 4.1.1 13.4 0 28.1-4.3 30.4-7.7.6-.8.7-1.8.3-2.7-1.1-2.7-4.3-2.
9-9.2-3.2-5.7-.4-14.2-.9-24.5-5.2-.4-.2-.8-.3-1.1-.5 0-.1 0-.1.1-.2 0-.1.1-.2.1-.3l1.9-4.4c.2-.4.3-.9.3-1.3.5-1 .9-2 1.2-2.9.5 0 1 .1 1.5.1.7 0 1.3 0 1.8-.1s1-.2 1.3-.4c2.4-1.3 4.4-1.4 7.6-1.4 1.7 0 3.8-.1 6.5-.3 7.8-.8 12.9-6.6 12.9-10 .2-.9 3.9-3.5 6.1-5.1 4.5-3.2 6.8-4.9 6.5-6.6-.3-1.8-2.7-1.9-11.1-1.9-7.8-.1-18.4-.1-24.5-2.6-4.7-1.9-8.9-5-12.2-7.9-4-3.5-6.6-6.6-6.7-6.6 0-.1-.1-.1-.2-.1 0-.6-.2-1.5-.4-2.4-.3-1.1-1.1-1.9-1.7-2.4 1.3-2.8 2.8-5.7 4.4-8.6 2.5-1.4 4.9-2.8 7-4.4C89.2 50.6 98 41.8 98 31.6c0-10.4-9.4-19.4-22.3-21.6-6.1-4.1-13.5-6.4-20.9-6.4-3.8 0-7.6.6-11.3 1.7-3.4 1.1-6.8 2.7-10.1 4.9-.6-.1-1.2-.1-1.8-.1h-1.2c-2 0-4.1.2-6.1.6-1.6-.6-3.3-.9-5-.9-1.4 0-2.9.2-4.3.7-7.5 2.4-11.7 10.4-9.3 17.9.3 1 .7 1.9 1.3 2.9.8 3.2 2.8 6.1 5.7 8.5-.7 2.9-1 5.7-1 8.4.2 11.8 8.5 18.3 23.3 18.3 1.9 0 3.8-.1 5.9-.3-.3.3-.5.7-.7 1-.3-.1-.6-.2-.9-.2-.5 0-1.1.2-1.5.6l-3.3 3c-.3.3-.6.7-.7 1.1C22 79.9 15.1 89.3 13.2 99.8c-1 5.2-.4 9.6.4 12.6-.3.8-.3 1.7 0 2.5l3.7 9.6c-.2 2.1.8 4.2 2.7 5.4.8.5 1.7.
8 2.7.8.9 3 2.1 5.6 3.7 7.8.6 3.6 1.2 6.5 1.9 8.9-1.4.4-2.5 1.3-3.1 2.3-.4.7-.6 1.5-.5 2.3.1.4.3 1.2.9 1.9 3.4 5.5 7 11.8 7.1 12.9 0 .4-.2 1.1-.3 1.9-.5 2.4-1.1 5.5-.3 7.3.4 1.1 1.8 1.6 3.8 1.6h.5c3.2-.1 8.6-1.8 9.9-6 1.4-4.1 1.2-15.5 1.1-20.3v-1.2-.9-.1-.1c0-.1 0-.2-.1-.3v-.1c-.1-.3-.2-.6-.4-.8.8 0 1.6.1 2.4.1 3.7 0 7.5-.5 11.2-1.5.9 1.1 1.7 2.1 2.4 3.1-1.2.8-2 1.8-2.3 2.9-.2.7-.2 1.4 0 2.1 0 .1-.1.1-.1.2-.1.4 0 .8.2 1 4.2 5.2 8.7 11.3 9 12.4 0 .4-.1 1.1-.2 1.9-.3 2.5-.7 5.6.3 7.3.6 1.1 2.1 1.4 3.5 1.4.6 0 1.1-.1 1.6-.1 4-.5 8.5-2.8 9.5-6.5.7-2.6.5-8 .2-12.9.9-.5 1.8-1.3 2.2-2.4 1.6-4.2 0-7.3 0-7.4-.1-.2-.3-.3-.5-.3s-.4.1-.5.3c-.4.9-1 2.3-1.8 3.3-.2-1.9-.4-3.1-.4-3.3.2-1.6-.5-2.8-1.3-3.3l-.6-.3c-2.3-1.2-5.3-.9-6-.9zm5.7 13.8c-.3.1-.5.4-.4.7.1.3.4.5.7.4 0 0 .1 0 .3-.1.3 4.5.4 9.2-.2 11.4-.5 1.9-2.6 3.5-5.6 4.4-2.6.8-4.6.6-4.9.3-.6-1.1-.3-4.1 0-5.9.1-.6.1-1.1.2-1.5.7.2 1.3.3 1.9.3 1.7 0 2.8-.7 2.9-.8.3-.2.3-.5.2-.8-.2-.3-.5-.3-.8-.2 0 0-1.8 1.1-4.3.2-.6-1.8-3.6-6-6.8-10 .6.1 1.2.1 1.
9.1 1.5 0 3.3-.2 5.6-.8 4.9-1.2 7.7-2.7 9.3-4.2 0 .4.1.9.2 1.5-1.2.4-2.8.9-3.4 2.8-.7 2.4.8 4.1.9 4.2.1.1.3.2.4.2.1 0 .3 0 .4-.1.2-.2.2-.6 0-.8 0-.1-1.2-1.3-.6-3.1.4-1.4 1.6-1.8 2.8-2.1.2-.1.3-.1.5-.2 0 .1 0 .1.1.2.1.2.3.3.5.3.1 0 .2 0 .3-.1.6-.4 2.5-1.6 2.6-2.8 0-.3-.2-.6-.5-.6h-.1c.2-.3.3-.6.5-.9.3 1.2.4 3-.4 5.2-1.1 2-4.2 2.8-4.2 2.8zm-.8-11.2c.1.1.5.5.3 1.3-.1.8-1.2 3.6-9.5 5.6-5.7 1.4-8.7.5-9.2-.9-.2-.7.2-1.7 1.3-2.4.2.2.3.3.6.5 1.5 1 4 1.1 7.5.3 3.3-.8 5.1-2 5.6-3.7.1-.4.1-.8.1-1.1 1.4 0 2.8.1 3.3.4zM69.1 76c3.5 3.5 9.4 8.6 16.3 11.4 6.5 2.7 17.4 2.8 25.4 2.8 3.4 0 7.1 0 8.6.3-.9 1-3.5 2.9-5.3 4.2-2.7 1.9-4.7 3.3-5.8 4.6-9.9 1.2-15.8-1.2-15.9-1.2-.3-.1-.6 0-.7.3-.1.3 0 .6.3.7.2.1 4 1.6 10.8 1.6 1.4 0 3-.1 4.6-.2-.2.4-.3.7-.3 1.1 0 2.1-4.1 7.1-10.9 7.8-2.6.3-4.5.3-6.3.3-3.3.1-5.7.1-8.6 1.7-.5.3-1.5.4-2.8.3.3-1.1.5-1.8.5-1.8 1.7-8.1 1.1-20.1-9.9-33.9zM44.8 64.2c11.7-2.2 18.6-5 22-6.8-1.2 2.2-2.5 4.8-3.8 7.5h-.3c-.2 0-.5 0-.7.1-.1 0-7.6 2.5-13.9 2.9-.7 0-1.3.1-2 .1-1.7 0-3-.1-4-.
3.9-1.3 1.8-2.4 2.7-3.5zm3.7 11.9c-1 0-2.1 0-3.2-.1-8.5-.8-9.7-4.1-9.7-4.1l1.9-1.7 1.4-1.3s2.1 1.2 7.2 1.2c.6 0 1.3 0 2.1-.1 6.7-.4 14.5-3 14.5-3s1.1.5 1.7 1.4c.1.1.1.3.2.4.4 1.2.4 2.6.4 2.6s-6.1 4.7-16.5 4.7zM34.7 63.9h-2.3c-.6 0-1.3-.1-1.9-.1h-.3c-.5-.1-1.1-.1-1.6-.2-.1 0-.2 0-.4-.1-.6-.1-1.1-.2-1.7-.3-.1 0-.2-.1-.3-.1-.5-.1-1-.3-1.4-.4-.1 0-.2 0-.2-.1l-1.5-.6c-.1 0-.2-.1-.3-.1-.5-.2-.9-.4-1.3-.7h-.1c-.4-.2-.9-.5-1.3-.8-.1-.1-.2-.1-.3-.2l-1.2-.9-.1-.1-.9-.9c-.1-.1-.1-.2-.2-.2-.3-.4-.6-.7-.9-1.1-.1-.1-.1-.2-.1-.2-.2-.4-.5-.7-.7-1.1 0-.1-.1-.2-.1-.3-.2-.4-.4-.9-.6-1.4 0-.1-.1-.2-.1-.3-.2-.5-.3-.9-.4-1.4 0-.1 0-.1-.1-.2-.1-.5-.2-1.1-.3-1.7V50c-.1-.6-.1-1.2-.1-1.8v-2-.5c0-.7.1-1.3.2-2s.2-1.4.4-2.1c0-.1.1-.3.1-.4.1-.3.1-.6.2-.8.8-3.1 3-6.2 3-6.3.2-.3.1-.6-.1-.8-.1-.1-.3-.1-.5-.1-.1 0-.2.1-.3.2 0 .1-.7 1-1.4 2.3-.4.8-.9 1.7-1.3 2.7 0 0-.1 0-.1-.1l-.3-.3c-.3-.2-.5-.5-.8-.7l-.3-.3c-.2-.3-.5-.5-.7-.8-.5-.5-.9-1.1-1.2-1.7-.1-.2-.2-.4-.3-.5-.1-.2-.3-.5-.4-.7l-.3-.6c-.1-.2-.2-.5-.3-.7-.1-.2-.
2-.5-.2-.7-.1-.2-.1-.4-.2-.7-.2-.4-.5-.8-.6-1.2 0 0 0-.1-.1-.1-.2-.4-.4-.9-.5-1.3-.5-1.6-.6-3.1-.5-4.7.1-1.2.4-2.4.8-3.5.7-1.8 1.9-3.4 3.4-4.7.6-.5 1.2-1 1.9-1.3.7-.4 1.4-.7 2.2-1 .4-.1.7-.2 1.1-.3.1 0 .2 0 .3-.1.2 0 .5-.1.7-.1H19.4c1.7 0 3.3.4 4.8 1l1.5-.3h.2c.7-.1 1.4-.2 2.1-.2.4 0 .7-.1 1.1-.1h2.5c.2 0 .5 0 .7.1-.8.7-2.1 1.8-3.9 3.7-.9.9-1.8 2.1-3 3.4-.2.2-.2.5 0 .7l.1.1c.1.1.2.1.4.1s.3-.1.4-.2c5.3-6.5 7.6-7.7 7.7-7.7.8-.6 1.6-1.1 2.4-1.6.5-.3 1.1-.6 1.6-.9 2-1.1 4-2 6.1-2.6 3.6-1.1 7.2-1.6 10.6-1.6 7.6 0 14.5 2.4 20.1 6.3h.2c2.1.3 4.1.9 6 1.6.6.3 1.6.8 2.6 1.6 2.7 2 5.9 5.7 5.2 12-1.1 9.6-11.2 9.9-11.6 9.9-.1 0-.3.1-.4.1-5-.2-8.6-3.1-10.3-7.2-.5-1.9-.1-3.3-.1-3.5.1-.3-.1-.6-.4-.7-.3-.1-.6.1-.7.4 0 .2-.9 3.8 1.7 7.5 1.8 3.4 5.5 5.9 9.8 6.2 5.3.4 10-2.3 12-6.6.2-.1.3-.2.4-.4 1.7-3.3 2.2-6.2 2-8.7-.2-2.1-.8-4-1.7-5.6l.8.8c.4.4.8.9 1.2 1.3.5.5.9 1.1 1.3 1.7l.9 1.5c.2.4.5.9.7 1.4.8 1.9 1.3 4 1.3 6.2 0 1.8-.3 3.5-.9 5.1-.2.5-.4 1.1-.7 1.6-2.5 5.2-7.7 9.4-14.5 11.6-1 .3-2.1.6-3.2.8-4.9
.7-9.5-1.7-9.5-1.7-.3-.1-.6 0-.8.2-.1.3 0 .6.2.8.2.1 3.5 1.8 7.7 2-1.6 1.1-3.2 2.1-4.9 3.1-.1 0-.2 0-.3.1 0 0-.2.2-.7.5-.1.1-.2.1-.4.2-2.5 1.4-9.6 4.9-23.1 7.5-.5.1-1 .2-1.5.2-.1 0-.3 0-.4.1l-2.4.3h-.4c-.8.1-1.6.1-2.4.2h-.4c-.8 0-1.6.1-2.4.1v-.8zm9.2 106.6c-.9 2.8-4.7 3.9-5.8 4.2-2.5.6-4 .2-4.2 0-.5-1.2.1-4.2.4-6l.3-1.5c.8.3 1.5.4 2.1.4 1.4 0 2.3-.5 2.3-.6.3-.2.3-.5.2-.8-.2-.3-.5-.3-.8-.2 0 0-1.7 1-3.8-.1-.4-1.9-3.1-6.6-5.5-10.6 1.1.2 2.4.4 4 .4.6 0 1.2 0 1.9-.1 5.1-.3 8.1-1.4 9.8-2.7.2 5.6.1 14.4-.9 17.6zm.7-21.7c.1.1.3.6.1 1.2-.3.7-1.8 3.2-9.8 3.7-5.5.4-8.2-1-8.4-2.3-.1-.7.5-1.5 1.6-2 .1.2.3.4.4.6 1.2 1.2 3.6 1.8 7 1.5 3.2-.2 5.2-1 5.9-2.5.2-.3.3-.7.3-1 1.3.1 2.5.4 2.9.8zm16.2-5.3l-1.2.3c-.1 0-.3.1-.4.1-.3.1-.6.2-.9.2-.2 0-.3.1-.5.1-.3.1-.6.1-.9.2-.2 0-.3.1-.5.1-.3.1-.6.1-1 .2-.1 0-.3.1-.4.1-.4.1-.8.1-1.1.2h-.3c-1 .1-2 .2-3.1.3H49h-.1-.1c-1.5 0-3.1-.1-4.7-.3h-.2c-.8-.1-1.6-.2-2.4-.4h-.2l-2.4-.6v.1c-3.9-1.1-5.3-2.6-5.4-2.6-.2-.2-.6-.2-.8 0-.2.2-.2.6 0 .8.1.1 1.8 1.8 6.2 3v.1c0 1 .1
2 .1 3-.5.3-1.6.7-3.6.8-2.5.2-3.9-.1-4.7-.5-.9-2.6-1.7-6.2-2.3-9.8v-.1c-.1-.3-.1-.6-.2-1 0-.2-.1-.4-.1-.6-.9-1.2-1.7-2.5-2.3-3.9 0-.1-.1-.1-.1-.2-.3-.6-.5-1.2-.7-1.8-2.5-7.9-.5-19.1-.5-19.2.1-.3-.1-.6-.5-.6-.3-.1-.6.1-.6.5 0 .1-.2 1.1-.4 2.7-.5-.3-1-.6-1.4-.8-.9-.6-1.7-1-1.9-1.1-.3-.1-.6.1-.7.3v.1c-.1.3.1.5.3.6.2.1 2 1.1 3.6 2.1-.1 1-.2 2.1-.2 3.3v.7l-1.4-1.7-1.1-1.3c-.2-.2-.5-.3-.8-.1-.2.2-.3.5-.1.8l1 1.2 2 2.5.1.1.2.2c0 2.1.1 4.4.5 6.6h-.8-.1c-.2 0-.5-.1-.7-.1h-.1c-.2-.1-.5-.2-.7-.3-.9-.6-1.5-1.5-1.6-2.5v-.1-.5-.1-.3-.3l-3.9-10.1c0-.1-.1-.2-.1-.3v-.1-.2-.1c0-.1 0-.1.1-.2v-.1c.1-.1.1-.2.2-.3-.8-2.8-1.5-7.1-.6-12.4 1.1-5.8 3.8-11.3 8.2-16.4 2.9-3.4 6.5-6.6 10.9-9.7.7 1 2.1 2.3 5 3.3 1.5.5 3.5 1 6 1.2 1.1.1 2.2.1 3.2.2h.2c2.4 0 4.6-.2 6.5-.6.4.5 1.1 1.2 2 2.4-2.7 9.6-2.5 18.7-1 26.8v.1c.1.6.2 1.2.4 1.8 0 .2.1.4.1.6.1.4.2.9.3 1.3.1.3.1.5.2.8.1.3.2.6.2.9.1-.1.2-.2.3-.2.2-.1.5-.2.7-.3h.2c.2 0 .4-.1.5-.1h.2c.2 0 .5 0 .7.1h.1c.3.1.5.2.7.3.1 0 .1.1.2.1.2.1.3.2.5.4l.2.2c.2.2.4.4.5.7.3.5.4
1 .4 1.6.7-.2 1.5-.4 2.3-.5.1-.2.2-.5.4-.7 0-.1.1-.1.1-.1.1-.2.3-.4.5-.6.1-.2.4-.6.7-1.2.1-.2.2-.5.4-.7 2.1-4.5 5.1-16.4-9.3-32-.6-.8-1.1-1.4-1.5-1.8 3.1-.7 5.6-1.7 7.3-2.6.5-.2.9-.4 1.2-.6 4.6 5.2 9.2 11.8 11.3 19.4 1.4 4.9 1.8 10.2.6 15.7 0 0-.1.5-.3 1.3-.4 1.4-1.1 3.6-2.2 5.6v.5c0 .1 0 .2-.1.3l-2.7 6.2c-.4.8-1 2.1-1.4 3.1-.1.3-.2.6-.3.8 0 .2-.1.3-.1.4 0 .1-.1.6-.4 1.1-.3.4-.7.9-1.3 1.3-.3.2-.6.3-.9.4h-.3c-.3 0-.5 0-.8-.1-.2-.1-.3-.1-.5 0-1.8-.6-2.1-2.4-2.1-2.5 0-.3-.2-.4-.5-.5h-.1c-.3 0-.5.3-.5.6.1.8.7 2.4 2.3 3.2-.1.5.2 1.1.7 1.3.5.2 1 .3 1.5.3.8 0 1.7-.2 2.5-.7 1.5-.9 2.6-2.6 2.7-3.6.1-.4.6-1.9 1.3-3.5.4.2.8.3 1.2.5 8.5 3.5 15.9 4.6 21.4 5.1h.2c6.3.5 10.2.3 10.9 2.1V133.5c0 .1 0 .1-.1.2 0 0 0 .1-.1.1 0 .1-.1.1-.1.2l-.1.1-.2.2-.1.1c-.1.1-.2.2-.3.2 0 0-.1 0-.1.1-.2.1-.3.2-.5.3-.1 0-.1.1-.2.1-.1.1-.3.2-.4.2-.1 0-.2.1-.2.1-.1.1-.3.1-.4.2-.1 0-.2.1-.3.1-.2.1-.3.1-.5.2-.1 0-.2.1-.3.1-.2.1-.4.2-.6.2-.1 0-.2.1-.2.1l-.9.3c-.1 0-.1 0-.2.1-.3.1-.5.2-.8.3-.1 0-.2.1-.4.1-.2.1-.5.1-.7.2-.1 0
-.3.1-.4.1-.2.1-.5.1-.7.2-.1 0-.3.1-.4.1-.3.1-.5.1-.8.2-.1 0-.3.1-.4.1l-1.2.3h-.1l-1.2.3c-.1 0-.3.1-.4.1-.3.1-.6.1-.9.2-.2 0-.3.1-.5.1-.3.1-.6.1-.9.2-.2 0-.4.1-.5.1-.3.1-.6.1-.9.1-.2 0-.3.1-.5.1-.4.1-.8.1-1.1.2h-.3c-.5.1-1 .1-1.4.2h-.4c-.3 0-.7.1-1 .1h-.5c-.3 0-.6.1-1 .1h-.6c-.3 0-.6 0-1 .1h-6c-.5 0-.9 0-1.4-.1h-.6c-.4 0-.9-.1-1.3-.1-.2 0-.4 0-.6-.1-.2 0-.4-.1-.6-.1-1.5-2.5-2.6-4.3-2.6-4.3-.2-.3-.5-.4-.8-.2-.3.2-.4.5-.2.8 0 0 1.6 2.7 3.7 6.1.9 1.7 1.7 3.3 2.2 4.7l.6 1.8c-.6.4-1.6.9-3.3 1.3-2.8.7-4.4.6-5.3.3-1.4-2.6-3.1-4.9-4.6-6.8zm3.7-32c-.1.1-.1.2-.2.3l-.3.3c-.2-.3-.5-.6-.7-.9l1.2.3zm1-2c-2.4-.6-4.8-1.2-7-1.8-1.7-8.3-1.7-16.4 0-24.2 10.1 12.4 8.6 21.7 7 26z" fill="url(#z)"/><path d="M35 155.9c-.7 0-1.3.1-1.9.1-1.6 0-3-.2-4-.4 2.4 4 5 8.7 5.5 10.6 2.2 1.1 3.8.1 3.8.1.3-.2.6-.1.8.2.2.3.1.6-.2.8-.1 0-1 .6-2.3.6-.6 0-1.3-.1-2.1-.4-.1.4-.2.9-.3 1.5-.3 1.8-.9 4.8-.4 6 .2.2 1.8.5 4.2 0 1.1-.3 4.8-1.3 5.8-4.2 1.1-3.2 1.1-12 1-17.3-1.8 1-4.7 2-9.9 2.4z" fill="url(#A)"/><path d="M41.5 148.8
c-.8 1.5-2.7 2.3-5.9 2.5-3.4.2-5.8-.3-7-1.5-.2-.2-.3-.4-.4-.6-1.1.5-1.7 1.3-1.6 2 .2 1.4 2.9 2.7 8.4 2.3 8-.5 9.5-2.9 9.8-3.7.2-.6 0-1.1-.1-1.2-.4-.4-1.6-.7-2.8-.9-.1.5-.2.8-.4 1.1z" fill="#FFF"/><path d="M85.3 156c.8-2.2.7-4.1.4-5.2-.1.3-.3.6-.5.9h.1c.3 0 .5.3.5.6-.2 1.1-2.1 2.4-2.6 2.8-.1.1-.2.1-.3.1-.2 0-.4-.1-.5-.3 0-.1-.1-.1-.1-.2-.2.1-.3.1-.5.2-1.1.4-2.3.7-2.8 2.1-.6 1.7.6 3 .6 3.1.2.2.2.6 0 .8-.1.1-.2.1-.4.1s-.3-.1-.4-.2c-.1-.1-1.6-1.8-.9-4.2.6-1.9 2.2-2.4 3.4-2.8-.1-.5-.1-1-.2-1.5-1.6 1.5-4.4 3-9.3 4.2-2.3.6-4.1.8-5.6.8-.7 0-1.3-.1-1.9-.1 3.2 4.1 6.2 8.2 6.8 10 2.5 1 4.3-.2 4.3-.2.3-.2.6-.1.8.2.2.3.1.6-.2.8-.1 0-1.2.8-2.9.8-.6 0-1.2-.1-1.9-.3 0 .4-.1 1-.2 1.5-.2 1.8-.6 4.8 0 5.9.3.3 2.3.5 4.9-.3 3-.9 5.1-2.6 5.6-4.4.6-2.2.5-6.9.2-11.4-.2 0-.3.1-.3.1-.3.1-.6-.1-.7-.4-.1-.3.1-.6.4-.7.3-.1 3.4-.9 4.2-2.8z" fill="url(#B)"/></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/figure_private.svg b/browser/extensions/onboarding/content/img/figure_private.svg
new file mode 100644
index 000000000000..f90163e4b4d7
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/figure_private.svg
@@ -0,0 +1 @@
+<svg width="289" height="237" viewBox="0 0 289 237" xmlns="http://www.w3.org/2000/svg"><title>private-browsing</title><defs><linearGradient x1="12.376%" y1="17.359%" x2="82.943%" y2="91.352%" id="a"><stop stop-color="#E60024" offset="0%"/><stop stop-color="#ED00B5" offset="51.53%"/><stop stop-color="#8000D7" offset="100%"/></linearGradient><linearGradient x1="-3.914%" y1=".14%" x2="98.417%" y2="106.522%" id="b"><stop stop-color="#E60024" offset="0%"/><stop stop-color="#ED00B5" offset="51.53%"/><stop stop-color="#8000D7" offset="100%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><path d="M-30-29h352v303H-30z"/><g fill-rule="nonzero"><g><ellipse fill="#EDEDF0" cx="226.9" cy="229.8" rx="54.2" ry="6.7"/><g fill="#D7D7DB"><path d="M195.6 79.5h-76.5c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h76.5c.6 0 1.1.5 1.1 1.1 0 .6-.4 1.1-1.1 1.1zM148.7 73.8h-19.2c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h19.2c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zM260.7 84.5h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0
.6.2.6.6 0 .4-.3.6-.6.6zm-5.6 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-12.3 0h-13.4c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-23.4 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-5.6 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-12.3 0h-13.4c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.2.6-.6.6zm-23.4 0H177c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-5.6 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-12.2 0h-13.4c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6z"/></g><g transform="translate(171 26)"><path d="M31.5 4.5c0 .1 0 .1-.1.2l-3.7.6-2.3.4c-.1 0-.1 0-.2-.1l-.7-4.2c0-.1 0-.1.1-.2l6-.9c.1 0 .1 0 .2.1l.7 4.1z" fill="#D7D7DB"/><path d="M35 26.7L5.2 31.4c-.8.1-1.5-.4-1.7-1.2L.2 9.2c-.1-.8.4-1.5 1.2-1.7l29.8-4.7c.8-.1 1.5.4 1.7 1.2l3.3 21c.1.8-.4 1.5-1.2 1.7z" fill="#D7D7DB"/><path d="
M32.1 9.4s-.1.1 0 0l-4.8.8h-.1l-.3-1.9s0-.1.1-.1l4.7-.7h.1l.3 1.9z" fill="#F9F9FA"/><circle transform="rotate(-8.946 119.14 -7.38)" cx="2.592" cy="2.794" r="1.7" fill="#F9F9FA"/><circle transform="rotate(-8.946 52.95 -31.036)" cx="11.1" cy="10.705" r="9.3" fill="#F9F9FA"/><path d="M17.2 10.9c-3.2.5-5.4 3.5-4.9 6.7s3.5 5.4 6.7 4.9 5.4-3.5 4.9-6.7c-.5-3.3-3.5-5.4-6.7-4.9z" fill="#D7D7DB"/><circle fill="#F9F9FA" transform="rotate(-8.946 19.487 14.795)" cx="19.487" cy="14.795" r="1.1"/></g><g transform="translate(46)"><path d="M30.4 4.8c0 .1 0 .1-.1.1l-3.6.3-2.2.2c-.1 0-.1 0-.1-.1L24 1.2c0-.1 0-.1.1-.1l5.8-.5c.1 0 .1 0 .1.1l.4 4.1z" fill="#D7D7DB"/><path d="M32.3 26.2L3.5 28.7c-.8.1-1.4-.5-1.5-1.3L.2 7.1c-.1-.8.5-1.4 1.3-1.5l28.8-2.5c.8-.1 1.4.5 1.5 1.3l1.8 20.3c0 .7-.6 1.4-1.3 1.5z" fill="#D7D7DB"/><path d="M30.6 9.4c0 .1 0 .1 0 0l-4.7.5c-.1 0-.1 0-.1-.1l-.2-1.9s0-.1.1-.1l4.6-.4c.1 0 .1 0 .1.1l.2 1.9z" fill="#F9F9FA"/><circle transform="rotate(-4.97 187.782 -12.435)" cx="2.497" cy="2.6
01" r="1.7" fill="#E1E1E6"/><circle transform="rotate(-4.97 70.888 -67.624)" cx="9.799" cy="10.501" r="8.9" fill="#F9F9FA"/><path d="M16.3 9.9c-3.1.3-5.4 3-5.1 6.1.3 3.1 3 5.4 6.1 5.1 3.1-.3 5.4-3 5.1-6.1-.3-3.1-3-5.4-6.1-5.1z" fill="#D7D7DB"/><circle fill="#F9F9FA" transform="rotate(-4.97 18.195 13.8)" cx="18.195" cy="13.8" r="1"/></g><path d="M170.8 55.2h24.5s-7.7-17.2 8.6-19.4c14.5-2 20.3 13 20.3 13s1.7-8.6 10.4-7c8.5 1.6 14.8 15.3 14.8 15.3h21.4" fill="#F9F9FA"/><path d="M271.2 53.1h-8.6c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h8.6c.3 0 .6.2.6.6 0 .3-.3.6-.6.6zm-18.6 0h-1.1c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h1.1c.3 0 .6.2.6.6-.1.3-.3.6-.6.6zm-56.9-.7h-2.2c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h1.4c0-.1-.1-.2-.1-.3-.1-.3 0-.6.3-.7.3-.1.6 0 .7.3.2.6.4 1 .4 1 .1.2.1.4 0 .5-.1.3-.3.4-.5.4zm-11.1 0h-13.4c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm63.8-1.8c-.2 0-.4-.1-.5-.3-.6-1-1.2-1.9-1.9-2.7-.2-.2-.1-.6.1-.8.2-.2.6-.1.8.1.7.9 1.3 1.8 1.9 2.8.2.3.1.6-.2.8 0 .1-.1.1-.2.1zm-5
4.2-3.5c-.3 0-.5-.2-.5-.5-.1-.4-.1-.7-.2-1.1 0-.3.2-.6.5-.6s.6.2.6.5c0 .4.1.7.2 1.1 0 .2-.2.5-.6.6zm28.8-4.2c-.2 0-.4-.1-.5-.3l-.6-.9c-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.2.3.4.7.6 1 .2.3.1.6-.2.8-.1-.1-.2 0-.3 0zm17.3-1.4c-.1 0-.2 0-.3-.1-1.7-1.2-3.4-2-5.1-2.4-.7-.1-1.4-.2-2-.2-1.8 0-3.3.5-4.6 1.5-.2.2-.6.2-.8-.1-.2-.2-.2-.6.1-.8 1.5-1.2 3.3-1.8 5.3-1.8.7 0 1.5.1 2.2.2 1.8.4 3.7 1.2 5.6 2.5.2.2.3.5.1.8-.1.3-.3.4-.5.4zm-20.7-3.1c-.1 0-.3-.1-.4-.2-.8-.8-1.6-1.5-2.4-2.1-.2-.2-.3-.5-.1-.8.2-.2.5-.3.8-.1.9.7 1.8 1.4 2.6 2.3.2.2.2.6 0 .8-.2.1-.3.1-.5.1zm-23.1-1.8c-.1 0-.3 0-.4-.2-.2-.2-.2-.6 0-.8 1.8-2 4.6-3.2 8.2-3.7 1.6-.2 3.2-.2 4.7-.1.3 0 .5.3.5.6s-.3.5-.6.5c-1.4-.2-2.9-.1-4.5.1-3.3.5-5.9 1.6-7.5 3.4-.1.1-.2.2-.4.2z" fill="#D7D7DB"/><path d="M271.9 57.4H170.8c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1H272c.6 0 1.1.5 1.1 1.1-.1.6-.6 1.1-1.2 1.1z" fill="#F9F9FA"/><g><path d="M26.5 27h13.7s-4.3-9.5 4.8-10.8c8.1-1.1 11.3 7.2 11.3 7.2s1-4.8 5.8-3.9c4.7.9 8.2 8.5 8.2 8.5h11.9" fill="#F9F9FA"/><pat
h d="M40.3 25.5H26.9c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm41.5-.2h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-5.6 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-19.6-3.4c-.2 0-.4-.1-.5-.4 0 0-.1-.4-.4-.9-.1-.3 0-.6.2-.8.2-.1.4-.1.6 0 .7-1.5 2.2-3.2 4.7-3.2.4 0 .8 0 1.3.1 1.4.3 2.9 1 4.3 2.2.2.2.3.6.1.8-.2.2-.6.3-.8.1-1.3-1.1-2.5-1.7-3.8-2-.4-.1-.7-.1-1.1-.1-3.3 0-4 3.4-4 3.5 0 .2-.2.4-.4.4-.1.3-.1.3-.2.3zm-16-4.8c-.1 0-.2 0-.3-.1-.3-.2-.3-.5-.1-.8.7-1 1.7-1.7 2.9-2.1.3-.1.6 0 .7.3.1.3 0 .6-.3.7-1 .4-1.8 1-2.4 1.7-.2.3-.4.3-.5.3zm8.1-2.3h-.1c-.3-.1-.7-.1-1-.1-.3 0-.5-.3-.5-.6s.3-.5.6-.5c.4 0 .8.1 1.2.2.3.1.5.4.4.7-.1.1-.3.3-.6.3z" fill="#D7D7DB"/><path d="M83 29.3H26.7c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1H83c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1z" fill="#F9F9FA"/></g><g><path d="M6.5 172.2c-2.8 0-5-2.1-5-4.8v-118c0-2.9 2.4-5.3 5.3-5.3h126.7c2.9 0 5.3 2.4 5.3 5.3v118c0 2.6-2.3 4.8-5 4.8H6.5z" f
ill="#FFF"/><path d="M133.5 45.1c2.3 0 4.2 1.9 4.2 4.2v118c0 2-1.8 3.7-3.9 3.7H6.5c-2.2 0-3.9-1.6-3.9-3.7V49.4c0-2.3 1.9-4.2 4.2-4.2h126.7v-.1zm0-2.2H6.8c-3.6 0-6.5 2.9-6.5 6.5v118c0 3.3 2.8 5.9 6.2 5.9h127.3c3.4 0 6.2-2.6 6.2-5.9v-118c0-3.6-2.9-6.5-6.5-6.5z" fill="#D7D7DB"/><path d="M133.1 66.2v99.1c0 1-.1 1.2-.1 1.2s-.3.1-1.2.1H8.5c-1 0-1.2-.1-1.2-.1s-.1-.3-.1-1.2V66.2h125.9zm1.2-1.1H6.1v100.2c0 2.1.4 2.5 2.5 2.5h123.3c2.1 0 2.5-.4 2.5-2.5V65.1h-.1z" fill="#D7D7DB"/><g fill="#D7D7DB"><circle cx="3.6" cy="3" r="2.9" transform="translate(10 52)"/><circle cx="2.9" cy="3" r="2.9" transform="translate(20 52)"/><path d="M102 58.3H38.3c-1.7 0-3.1-1.4-3.1-3.1v-.3c0-1.7 1.4-3.1 3.1-3.1H102c1.7 0 3.1 1.4 3.1 3.1v.3c0 1.7-1.4 3.1-3.1 3.1z"/><g><circle cx="3.5" cy="3" r="2.9" transform="translate(114 52)"/><circle cx="3.7" cy="3" r="2.9" transform="translate(123 52)"/></g></g><path d="M88.2 127.5c-7.2 0-12.1-8.6-19-8.6s-12.2 8.6-19 8.6c-8.8 0-15.4-8.3-15.5-22.6-.1-8.9 2.6-11.7 14.1-11.7s14.8
4.7 20.4 4.7c5.6 0 8.9-4.7 20.4-4.7 11.5 0 14.1 2.8 14.1 11.7-.1 14.3-6.7 22.6-15.5 22.6zm-33.8-23.4c-7 .3-9.8 4.4-9.8 5.5 0 1 4.6 3.9 9.1 3.9s9.8-1.7 9.8-3.1c.1-1.7-2.5-6.6-9.1-6.3zm29.6 0c-6.6-.3-9.1 4.6-9.1 6.2 0 1.5 5.3 3.1 9.8 3.1 4.5 0 9.1-2.9 9.1-3.9 0-.9-2.8-5.1-9.8-5.4z" fill="#D7D7DB"/></g></g><path d="M215.6 218.3c.2.5.4.9.6 1.4.4.9.8 1.6 1.2 2.2-.4-.6-.7-1.4-1.2-2.2-.2-.5-.4-.9-.6-1.4z" fill="#FFF"/><g transform="translate(78 151)"><ellipse fill="#EDEDF0" cx="25.2" cy="77.6" rx="21.9" ry="4.3"/><circle fill="#D7D7DB" cx="24.7" cy="37.4" r="6.9"/><path d="M30.2 80.7c-.6 0-1-.4-1.1-1l-4.6-39.3c-4.8 15.4-10.8 34.9-11 36.3 0 .6-.5 1.1-1.1 1.1-.6 0-1.1-.5-1.1-1.2 0-1.3 8.8-29.7 12.7-41.9.2-.5.7-.8 1.2-.8s.9.5 1 1l5.3 44.5c.1.6-.4 1.2-1 1.2-.2.1-.3.1-.3.1z" fill="#D7D7DB"/><path d="M35 75.4c-.5 0-1-.3-1.1-.8L23.8 35.3c-.2-.6.2-1.2.8-1.4.6-.2 1.2.2 1.4.8L36.1 74c.2.6-.2 1.2-.8 1.4H35zM38.9 5.7c0 .1 0 .2-.1.2l-4.6.9-2.8.6c-.1 0-.2 0-.2-.1l-1-5.3c0-.1 0-.2.1-.2L37.7.3c.1 0 .2 0 .
2.1l1 5.3z" fill="#D7D7DB"/><path d="M44.4 33.2l-37 7.3c-1 .2-1.9-.4-2.1-1.4L.1 13c-.2-1 .4-1.9 1.4-2.1l37-7.3c1-.2 1.9.4 2.1 1.4l5.2 26.1c.2 1-.4 1.9-1.4 2.1z" fill="#D7D7DB"/><path d="M39.5 9.7c0 .1 0 .1-.1.1L33.5 11c-.1 0-.1 0-.2-.1l-.6-3.2c0-.1 0-.1.1-.1l5.9-1.2c.1 0 .1 0 .2.1l.6 3.2z" fill="#F9F9FA"/><circle transform="rotate(-11.21 127.568 -5.075)" cx="3.292" cy="3.304" r="2.2" fill="#F9F9FA"/><circle transform="rotate(-11.21 54.056 -27.865)" cx="13.892" cy="14.489" r="11.7" fill="#F9F9FA"/><path d="M21.4 14.3c-4 .8-6.5 4.6-5.8 8.6.8 4 4.6 6.5 8.6 5.8 4-.8 6.5-4.6 5.8-8.6-.7-4-4.6-6.6-8.6-5.8z" fill="#D7D7DB"/><path d="M21.8 16.1c-2.9.6-4.8 3.4-4.3 6.4.6 2.9 3.4 4.8 6.4 4.3 2.9-.6 4.8-3.4 4.3-6.4-.6-3-3.5-4.9-6.4-4.3zm2.9 4.4c-.7.1-1.4-.3-1.6-1-.2-.7.3-1.4 1-1.6.7-.1 1.4.3 1.6 1 .2.7-.3 1.4-1 1.6z" fill="#F9F9FA"/></g><g><path d="M281 118c.4-.9 1.4-1.3 2.3-.9.2.1.4.2.5.4-.1-.2-.3-.3-.5-.4-.2-.1-.5-.2-.7-.2-.7 0-1.3.4-1.6 1.1l-.1.1.1-.1zM265.6 124.8c0 .1 0 .1.1.2h-.1.1c0-.1-.1-
.2-.1-.2zM277.6 116.2c.1-.9.9-1.7 1.8-1.6.4 0 .6.2.8.4-.2-.2-.4-.3-.8-.4h-.1c-.9 0-1.6.7-1.7 1.6 0 0 0 .5-.1 1.2.1-.7.1-1.1.1-1.2zM179.4 147.8c-.4-.1-.7-.3-1-.6.2.3.6.5 1 .6zM184.1 82.5c2.8-1.7 11.1.7 17.1 3.9 1.5.8 3.4 1.9 5.1 3.4 3-1.1 6.5-2.1 10.9-2.9 4.4-.8 8.2-1 11.4-.8 1.2-2 2.6-3.8 3.8-5.1 4.6-5.1 11.6-10.1 14.7-9.5 3.7.7 10.7 12.6 10.2 25.1l.1.1c.5-12.6-6.5-24.6-10.3-25.3-.2 0-.4-.1-.6-.1-3.5 0-9.9 4.8-14.2 9.6-1.2 1.3-2.6 3.1-3.8 5.1h-1.7c-2.8 0-5.9.2-9.5.9-4.3.8-7.9 1.8-10.8 2.9-1.8-1.4-3.7-2.6-5.2-3.4-4.6-2.5-10.6-4.5-14.4-4.5-1.2 0-2.1.2-2.8.6-3.3 2-5.8 15.5-1.1 27.1 0-.1.1-.1.1-.2-4.7-11.6-2.3-25 1-26.9zM272.8 116.3c-.5-.9-.1-2.1.8-2.5.9-.5 1.6.7 2.1 1.3.5.5.9.7 1.3 1.4-.4-.7-.8-.8-1.3-1.4-.4-.5-1-1.4-1.7-1.4-.1 0-.3 0-.4.1-.9.4-1.3 1.6-.8 2.5l1.4 2.9.6 1.3-.6-1.3-1.4-2.9zM266.8 122.7c.7-.3 1.2-.9 1.6-1.2.7-.5 2.4-.8 3.3-.6 1 .2 2 .4 2.8.8-.9-.4-1.8-.6-2.8-.8h-.5c-.9 0-2.2.3-2.8.7-.4.2-.9.8-1.6 1.1-.3.1-.6.3-.9.5.3-.2.6-.4.9-.5zM180.6 127.8c0 .3.1.6.1.9.1.6.2 1.2.4 1.7-
.1-.6-.3-1.1-.4-1.7 0-.4 0-.7-.1-.9zM183.5 110.6c0 .1-.1.1-.1.2-.1.2-.1.3-.2.5.1-.2.2-.5.3-.7zM206.3 174.4c-1.3 3.9-2.3 7.7-2.9 11.2.6-3.6 1.6-7.6 3-11.5-.1.2-.1.2-.1.3zM166.4 141.2c-.3-.4-.3-.7-.7-1.3.4.6.4.9.7 1.3zM168.8 133.7h-.2c.3 0 .6 0 .8.1-.1-.1-.4-.1-.6-.1zM171 135.2c.2-1 .6-1.3.9-2 .3-.7.6-2 1.7-1.9.5.1.9.4 1.2.8-.3-.4-.7-.7-1.2-.8h-.2c-.9 0-1.2 1.2-1.5 1.9-.4.7-.8.9-.9 2 0 .2-.1.4-.1.7 0-.3 0-.5.1-.7zM167.8 137.6c-.1-.5-.1-1.2-.2-1.8-.2-.9-.3-1.6.6-2 .1 0 .1 0 .2-.1h-.2c-.9.3-.8 1.1-.6 2 .1.7.1 1.3.2 1.9l-.1-.1c-.3-.4-.8-.6-1.3-.6h-.2c.5-.1 1.1.1 1.5.6l.1.1zM199.5 161.1l-.2.2c-.5.4-1.2.7-1.8.7-.8 0-1.6-.4-2.2-1-.1-.1-2.7-3.3-4.4-7.2-.6-1.5-1.2-3-1.7-4.4-.4.9-.8 1.7-1.4 2.4.1.3.1.6.1.9 0 .3.5 6.4 6.5 8.9 1.8.8 3.6 1.1 5.4 1.1 3.3 0 6-1.2 7.9-2.4-2.8.5-5.5.8-7.5.8h-.7zM171.2 146.5s.1 0 0 0c.1 0 0 0 0 0zM259.3 150.6c-1.4.6-3.2 1.1-5.1 1.5 1.9-.1 3.7-.5 5.4-1.3-.2-.1-.2-.2-.3-.2zM266.1 138.4c-.1-.3-.1-.6-.2-1-.2-.1-.4-.3-.6-.5 0 1.3-.1 2.6-.1 3.9-.1 2.4-.6 4.6-1 6.2 2.9-3.9 1
.9-8.4 1.9-8.6zM172.9 149.4c.1.3.3.5.5.7-.2-.2-.4-.5-.5-.7zM185 139.2l-.6.1.6-.1zM180.7 137.2c.5.1 1.2.6 1.9.6.5.1 1.2.1 1.6.7-.4-.6-1-.6-1.6-.7-.7-.1-1.4-.5-1.9-.6-.3-.1-.6-.1-.9-.1-.9 0-1.9.2-2.4.5-.6.3-1.1.6-1.6 1 .5-.4 1.1-.7 1.6-1 .8-.5 2.5-.7 3.3-.4zM165.3 137.3c.1-.1.1-.1.2-.1-.1 0-.2 0-.2.1-.6.5-.6 1.2-.1 1.9-.5-.7-.5-1.3.1-1.9zM154.9 192c0-.2.1-.3.2-.5.3-.2 4.6-3.8 12.5-6.1.1-.2.2-.3.4-.4.3-.1.6-.1.9 0 2.2-.6 4.7-1 7.5-1.3l.3-.3c.5-.3 1.1-.2 1.4.2.3 0 .7-.1 1-.1 2.2-.1 4.3 0 6.3.1.3-.2.6-.3.9-.3.1 0 .3.1.6.3 3 .2 5.6.7 7.8 1.2.4-.4 1-.4 1.4-.1 0 0 .3.2.6.6 2.7.7 4.5 1.4 5.5 1.9v-.1c-.9-.4-2.7-1.1-5.3-1.8-.4-.4-.7-.6-.7-.7-.2-.2-.5-.3-.8-.3-.3 0-.6.1-.9.4-2.1-.5-4.7-.9-7.6-1.1-.3-.3-.5-.4-.7-.4h-.2c-.3 0-.6.1-.9.3-1.2-.1-2.5-.1-3.8-.1H179c-.3 0-.6 0-.9.1-.2-.3-.6-.5-1-.5-.2 0-.4.1-.7.2-.2.1-.3.2-.4.4-2.6.2-5.1.7-7.3 1.2-.2-.1-.4-.2-.6-.2-.2 0-.3 0-.5.1s-.4.3-.5.5c-7.8 2.3-12.1 5.9-12.4 6.1.2.3.1.5.2.7-2.4 1.7-4.1 3.7-4.5 5.9-.1.5-.1 1.1-.1 1.6 0-.5 0-1 .1-1.6.5-2.2 2.2-4.2 4
.5-5.9zM246.5 220.3c.1-1.9.2-5.6.3-9.1-.1 3.4-.2 7.2-.3 9.1 0 1 0 1.8.2 2.3-.1-.6-.2-1.4-.2-2.3zM208.9 217.4c.2.5.4.9.6 1.4.4.9.8 1.6 1.2 2.2-.4-.6-.7-1.4-1.2-2.2-.2-.4-.4-.9-.6-1.4z" fill="#FFF"/><path d="M285.4 113.6c-.4-.2-.7-.3-1.1-.4-1.3-2.1-3.4-2.4-4.3-2.5h-.5c-.6 0-1.2.1-1.8.3-.8-.6-2-1.2-3.4-1.2-.8 0-1.6.2-2.4.6-.7.3-1.2.7-1.7 1.2-1.3-5.5-4.1-10.6-8.1-14.9.3-13.8-7.2-27.9-13.9-29.2-.5-.1-1-.1-1.5-.1-6 0-13.9 7-17.6 11.1-.8.9-1.9 2.2-2.9 3.6-3.1 0-6.3.4-9.6.9-3.3.6-6.4 1.3-9.3 2.3-1.4-1-2.8-1.8-3.8-2.3-4.3-2.3-11.2-5-16.5-5-2.1 0-3.8.4-5.1 1.2-5.8 3.5-8.1 19.3-3.1 32.2-2.3 5.4-3.1 11.2-2.5 16.8-.6-.3-1.2-.5-1.9-.6-.3-.1-.6-.1-.9-.1-1.4 0-3.1.5-4.5 2.4-.8 0-1.5.1-2.2.4-.8.3-2.7 1.3-3.3 3.6-.3.2-.6.4-.9.7-2.1 1.8-3 5.1-.3 8.4v.1c.2.4.5 1.1 1.1 1.9.1.1.3.4.6.7 1 1.2 1.8 2.1 2.3 2.7l.7.7.6.6c.4 1 .9 1.8 1.5 2.6.1.1.2.3.3.4.2.3.4.5.5.8 1.4 1.9 2.9 3.2 4.5 4.2 1.1 4.9 4.5 13.3 14.6 17.6 3.6 1.5 7.3 2.3 11.1 2.3h.9c-.5 1.6-.8 3.1-1.2 4.6-.1 0-.2-.1-.3-.1-.1-.1-.1-.1-.2-.1-1-.8-2.3-1
.3-3.6-1.3-.5 0-.9.1-1.4.2-1.8-.3-3.7-.6-5.6-.8-.4-.2-.9-.4-1.3-.5-.4-.1-.7-.1-1.1-.1-.6 0-1.2.1-1.8.3-1 0-1.9-.1-2.9-.1h-2.1c-.7-.3-1.4-.4-2.1-.4-1 0-2 .3-2.8.8-1.9.2-3.7.5-5.5 1h-.6c-.8 0-1.6.2-2.4.5-.4.2-.7.4-1 .6-7.9 2.5-12.4 6.2-12.9 6.6-.4.3-.8.7-1 1.2-2.8 2.3-4.5 4.9-5.1 7.7-1.3 6.3 3.3 12.9 12.1 17.4.2.4.5.9.8 1.2 1.1 1.3 2.7 2 4.3 2 .7 0 1.3-.1 1.9-.3 2.3.7 4.7 1.3 7.1 1.6l.1.1c1 .8 2.3 1.3 3.6 1.3 1.1 0 2.2-.3 3.2-.9.8 0 1.6-.1 2.4-.1 1.9-.2 3.7-.4 5.6-.8.1 0 .2.1.3.1.8.3 1.6.5 2.4.5 1.9 0 3.7-1 4.8-2.6 1.4-.5 2.7-1 4.1-1.5.6.2 1.3.3 1.9.3.9 0 1.8-.2 2.6-.6.7 2.3 1.5 4.3 2.4 6.2 2.8 5.5 4.9 8.5 8.3 8.5 1.3 0 2.6-.5 3.6-1.5 1.6-1.7 1.8-4 1.7-6.1 0-1.1-.1-2.8-.1-4.7 1.2.2 2.4.3 3.7.4 1.9.2 3.9.2 5.7.2 4.9 0 9.6-.5 13.8-1.5 0 1.6-.1 3-.1 4-.1 2.1.1 4.4 1.7 6.1.9 1 2.2 1.5 3.6 1.5 3.4 0 5.5-3 8.3-8.5 2.5-5 3.6-10.7 4.1-14.8 3-8.3.5-23.5-2.4-31.9-.7-2.1-1.5-4.2-2.2-6.2 6.1-.3 11.7-2.5 16.6-6.6 8.3-7.1 9.1-16.1 8.8-21.1 1.2-1.3 2.3-3.1 3-5.3l.3-.9c.1-.2.1-.3.2-.5.3-.9.5-1.9.7-2.
9l.5-.9.4-.8c.3-.7.8-1.8 1.5-3.2.1-.3.3-.6.3-.8.4-.9.5-1.7.5-2.1v-.1c1.5-4.3-.3-7.2-2.8-8.3z" fill="#F9F9FA"/><path d="M183.3 144.3c.3 1.5-.5 2.9-1.9 3.5-.4.2-.8.2-1.2.2h-.5c.5.1 1.1 0 1.6-.2 1.5-.6 2.3-2.1 2-3.5-.1-.7.1-1.3.4-1.8-.3.4-.5 1.1-.4 1.8zM164.1 212.7c-.2.2-.5.3-.7.3-.3 0-.6-.1-.8-.4-.3-.3-.3-.8-.2-1.2 0 0-.1 0-.1-.1-.2.4-.1 1 .2 1.3.2.3.6.4 1 .4.1.1.4 0 .6-.3.1.1.3-.1.6-.4h-.1c-.3.3-.5.4-.5.4zM176.9 215.2c-.2.3-.5.4-.9.4-.2 0-.5-.1-.7-.3-.2-.2-.3-.4-.4-.7h-.2c0 .3.2.6.4.8.2.2.5.3.8.3.5.1.9-.1 1-.5.1 0 .3-.1.4-.4h-.1c-.1.3-.2.4-.3.4zM205.9 205.9c.1 1.1.3 2.3.6 3.6-.2-1.3-.4-2.5-.6-3.6.1 0 0 0 0 0zM190.8 213.7c-.2.4-.6.7-1 .7-.2 0-.3 0-.5-.1-.3-.2-.6-.5-.6-.8h-.1c.1.4.3.7.7.9.2.1.3.1.5.1.5 0 .9-.3 1.1-.7 0-.1.2-.4.4-1h-.2c-.1.5-.2.9-.3.9zM201.6 210c-.2.4-.6.6-1 .6-.2 0-.3 0-.5-.1-.3-.2-.5-.5-.6-.9 0 0-.1 0-.1.1.1.4.3.7.6.9.2.1.4.1.6.1.5 0 .9-.2 1.1-.7 0-.1.4-.8.8-2-.1 0-.1.1-.2.1-.4 1.2-.7 1.8-.7 1.9zM271.1 131.8h-.3c-.9-.1-1.7-.6-2.3-1.3.5.7 1.3 1.2 2.3 1.3 1.7.1 3.2-1.1
3.4-2.9.1-.8-.2-1.7-.6-2.4.5.7.7 1.6.6 2.4-.1 1.7-1.5 2.9-3.1 2.9zM197.7 158.4c.1.2.2.3.2.3.2.2.2.6 0 .8-.1.1-.2.2-.4.2-.1 0-.3-.1-.4-.2 0 0-.4-.4-.8-1 .4.6.7.9.8 1 .1.1.3.2.5.2.1 0 .3 0 .4-.1.3-.2.3-.6.1-.9.6.1 1.4.2 2.3.2 3 0 7.6-.7 12-1.9l-.1-.1c-4.6 1.2-9 1.9-11.9 1.9-1.2-.1-2.1-.2-2.7-.4zM191.5 146.3c.5 1.6 1.1 3.4 1.8 5.2-.5-1.5-.9-3-1.2-4.7-.2-.1-.4-.3-.6-.5zM181.1 143.8h-1.5c-.2.4-.2.9-.1 1.4.2.4.5.6.8.6.1 0 .2 0 .3-.1.4-.2.6-.6.5-1v-.9zM244.6 151s0 .1-.1.1c6.9-.5 13.9-2.1 15.9-3.7-.1.3-.2.5-.2.5-.1.3.1.7.4.8h.2c.3 0 .5-.2.6-.4 0-.1.6-1.6 1-3.8-.5 2.1-1 3.6-1.1 3.7-.1.2-.3.4-.5.4h-.2c-.3-.1-.4-.4-.3-.7 0 0 .1-.4.3-1 0 0 0 .1-.1.1-1.3 1.7-8.3 3.5-15.9 4zM264.4 132.1c.1.2.2.5.3.7-.1-.2-.2-.4-.3-.7-.3-.6.1-1.8 0-2.5 0-.3-.1-.6-.1-.8 0 .3 0 .5.1.8.1.8-.2 1.9 0 2.5zM212.1 159.6c.3-.7.6-1.3.9-1.9-.3.6-.6 1.2-.9 1.9zM262.1 133.6c-.1.2-.2.4-.4.6.2 1.7.3 3.4.4 4.9.1-2 0-3.9 0-5.5z" fill="#FFF"/><path d="M271.1 129.6c.5 0 .9-.4 1-.8 0-.5-.2-1-.5-1.3l-1.5.5c.1.3.1.5.2.8 0 .4.3.8.8.8z"
fill="#FFF"/><path d="M196.3 184.9c-.4-.3-1-.3-1.4.1-2.2-.5-4.8-.9-7.8-1.2-.2-.2-.4-.3-.6-.3-.3-.1-.7 0-.9.3-1.9-.1-4-.1-6.3-.1-.4 0-.7 0-1 .1-.4-.4-1-.5-1.4-.2l-.3.3c-2.7.3-5.2.7-7.5 1.3-.3-.1-.6-.2-.9 0-.2.1-.3.2-.4.4-7.8 2.3-12.2 5.9-12.5 6.1-.1.1-.2.3-.2.5 0 .1 0 .2.1.3.1.1.3.2.4.2.1 0 .3 0 .4-.1.1 0 4.2-3.5 11.7-5.7.3.8 2.2 5.7.6 13.1-1.7 7.9-5.5 11.3-5.5 11.3-.1.1-.2.2-.3.4-.2.4-.1.9.2 1.2.2.3.5.4.8.4.3 0 .5-.1.7-.3l.4-.4c1.1-1.2 4.2-4.9 5.8-12.1 1.6-7.4 0-12.6-.6-14.1 2-.5 4.3-.9 6.7-1.2v.1c0 .1 3.5 5.6 2.9 15-.6 9.3-4.1 13.8-4.2 13.8-.2.3-.3.6-.2.9 0 .3.2.5.4.7.2.2.5.3.7.3.3 0 .6-.1.9-.4 0 0 .1-.2.3-.4.9-1.3 3.9-6.1 4.4-14.7.5-7.9-1.7-13.3-2.7-15.4h.4c2.1-.1 4 0 5.9.1.1.2.2.5.5.7.1.1.1.1.2.1.9.9 4.4 5 5 11.8.8 8.8-2 15.3-2.1 15.3-.1.2-.1.4-.1.6.1.4.3.7.6.8.1.1.3.1.5.1.4 0 .8-.2 1-.7 0-.1.2-.4.4-.9.8-2.2 2.6-8 1.9-15.5-.6-5.8-3-10.1-4.8-12.2 2.4.2 4.5.6 6.3 1 .1.2.2.4.4.6 0 0 4.1 3.3 5.5 9.6 1.7 7.6-.8 12.7-.8 12.8-.1.2-.1.4-.1.6 0 .4.2.7.6.9.2.1.3.1.5.1.4 0 .8-.2 1-.6 0-.1.4
-.7.7-1.8.7-2.3 1.6-6.7.3-12.5-.9-4-2.7-6.9-4.2-8.7 2.3.7 3.7 1.3 4.1 1.5 0-.5-.1-.9-.1-1.3-1-.4-2.8-1.2-5.5-1.9-.5-.5-.8-.7-.8-.7zM240.9 161.8c-2.2 1.7-5.8 3.7-11 4.4-5.7.8-10.2-.7-12.9-2.1-4.7 6.9-9.4 17.7-9.1 27.9.4 16.8 14.5 19.1 23.7 18.7 6-.3 11.7-2.4 15.5-6.7v-.1l.1-.1c2-2.3 3.4-5.1 4.1-8.6 1.9-10.3-2.7-20.6-6.9-28.5-1.1-1.9-2.3-3.6-3.5-4.9zM183.7 110.2c-.1.1-.1.2-.2.3.1 0 .2-.1.2-.3zM185.2 84.4c.3-.2.8-.3 1.5-.3 2.7 0 8.1 1.4 13.4 4.2 1.4.8 2.7 1.6 3.8 2.4-7.2 3.2-9.7 6.7-9.8 6.9-.2.3-.1.6.1.8.1.1.2.1.3.1.2 0 .3-.1.5-.2.1-.1 5.2-7.3 22.4-10.3 17.1-3 24.8 2.9 24.9 3 .2.2.6.2.8-.1.2-.2.2-.6-.1-.8-.2-.2-4-3.1-11.9-3.9.8-1.2 1.8-2.5 3-3.8 4.8-5.3 10.5-8.8 12.4-8.8h.2c2.1.4 8.4 10.1 8.4 21.3.7.5 1.4 1 2.2 1.6.5-12.5-6.4-24.3-10.2-25.1-3.2-.6-10.2 4.4-14.7 9.5-1.2 1.3-2.6 3.1-3.8 5.1-3.2-.1-7 .1-11.4.8-4.4.8-7.9 1.8-10.9 2.9-1.8-1.4-3.7-2.6-5.1-3.4-6-3.2-14.3-5.5-17.1-3.9-3.2 2-5.7 15.3-1.1 26.8.5-.8 1-1.6 1.5-2.2-3.7-10.4-1.1-21.5.7-22.6zM193.3 151.5c.1.2.2.4.3.7 1.2 2.9 3.4 5.5
4.1 6.3.6.2 1.5.3 2.6.3 2.9 0 7.3-.6 11.9-1.9-1.4-1.8-1.6-3.8-1.6-3.8v-.1c0-.1-.1-.3-.1-.4l-.1-1.2v-.4c-1.1.3-2.2.4-3.4.2l-2.5.4c-6.1 1.1-11.9-3-12.9-9l-.2-1.3h-.2c.2 1.8.5 3.8.9 5.6.3 1.6.8 3.1 1.2 4.6z" fill="#F9F9FA"/><path d="M196.3 124.7c.7-5 5.3-8.5 10.3-7.9l4.9.7c3.3.5 6 2.7 7.2 5.6 1.1-.8 2.4-1.4 3.8-1.6 1.4-.2 2.7-.2 4 .2.3-2.3 1.5-4.6 3.5-6.1l4-3c4-3.1 9.8-2.3 12.8 1.7l3.8 5 4.7-.8c.8-.1 1.6.4 1.8 1.2.1.7-.2 1.3-.8 1.6.8.6 1.4 1.7 1.7 3.3l1 5.8c1.1 6.1-3 11.9-9 12.9l-1.7.3c-1.1.4-2.3.6-3.5.6l-.5.1h-.3s0 .1.1.1l.1.1c0 .1.1.2.1.3l.2.5s.1.2.1.3l.1.4c0 .2.1.3.1.4l.1.6V148.4c0 .9-.2 1.7-.4 2.5 7.7-.5 14.6-2.3 16-3.9 0 0 0-.1.1-.1.5-1.5 1.3-4.6 1.4-7.3v-.6c0-1.6-.1-3.2-.4-4.9-.2-1.8-.6-3.6-1-5.4l-1.8.3-.5-3 1.4-.3c-.5-1.6-1.2-3.2-2.1-4.7 0-.2 0-.4-.1-.6-2.6-14.6-19.6-23.8-38-20.6-17.4 3.1-29.9 16.2-29 30l5.1-.9.7-4.2z" fill="#F9F9FA"/><path d="M210.5 150.9v-.1-.3h-.2l-3.2.6c1.1.1 2.3 0 3.4-.2zM245 144.3c1.2 0 2.3-.2 3.5-.6l-3.5.6zM229.5 159.8s.1 0 0 0z" fill="#D9EBFF"/><path d="
M43.7 146.5h-.1c-1.7.4-3.6.8-5.4 1h-.1c-.6.1-1.2.2-1.9.2-1 .1-1.9.1-2.9.1h-.9-.1c.9-1.3 3.9-6.1 4.4-14.7.5-7.9-1.7-13.3-2.7-15.4h.4c2.1-.1 4 0 5.9.1.1.2.2.5.5.7.1.1.1.1.2.1.9.9 4.4 5 5 11.8.8 8.8-2 15.3-2.1 15.3-.2.3-.2.5-.2.8zm-26.1-2.4s3.8-3.4 5.5-11.3c1.6-7.3-.2-12.3-.6-13.1-7.5 2.3-11.6 5.7-11.7 5.7-.1.1-.2.1-.4.1s-.3-.1-.4-.2c-.1-.1-.1-.2-.1-.3-2.4 1.7-4.1 3.7-4.5 5.9-.1.5-.1 1-.1 1.6v.1c0 .2 0 .4.1.6v.3c0 .2.1.4.1.6 0 .1.1.2.1.3.1.2.1.3.2.5.1.1.1.3.2.4.1.1.1.3.2.4l.3.6c.1.1.1.2.2.3 2 3 5.8 5.8 10.4 7.9 0 0 .1 0 .1.1.2-.3.3-.4.4-.5zm37-2.1s2.6-5.2.8-12.8c-1.4-6.3-5.4-9.6-5.5-9.6-.2-.2-.3-.4-.4-.6-1.8-.4-3.9-.8-6.3-1 1.8 2.2 4.3 6.4 4.8 12.2.7 7.5-1.1 13.4-1.9 15.5h.2c2.9-.9 5.6-1.9 8-3.1 0 0 .1 0 .1-.1.1-.1.1-.3.2-.5zm-24.4 4.8s3.6-4.5 4.2-13.8c.6-9.4-2.9-14.9-2.9-15v-.1c-2.4.2-4.7.6-6.7 1.2.6 1.5 2.2 6.7.6 14.1-1.6 7.2-4.7 10.9-5.8 12.1h.1c3.2 1.2 6.7 2 10.2 2.3h.2c-.2-.2-.1-.5.1-.8zm108.6-96.3c.3.4.3 1.1 0 1.9-.4 1.1-.2 1.4-.5 2-.3.7-1.3 3-1.7 3.8-.1.2-.7 1.2-1.3 2.5 0 .9-.2
1.8-.5 2.7-.1.2-.1.4-.2.6l-.3.9c-.7 1.9-1.8 4-3.6 4.9.5 2.6 1.6 12.4-6.9 19.6-5.1 4.3-10.5 5.6-15.1 5.6-1.4 0-2.8-.1-4-.3-1.2-2.5-2.8-4.8-2.9-4.9-.2-.2-.5-.3-.8-.1-.2.2-.3.5-.1.8 0 0 2.1 2.8 3.2 5.7 0 0 0 .1.1.1.1.2.1.4.2.6l.1.1c1.4 3.4 2.6 6.9 3.7 10.1 2.9 8.6 4.9 23.1 2.2 29.4-.4 3.7-1.4 9.2-3.7 13.9-2.2 4.3-3.5 6-4.3 6h-.2l-.1-.1-.1-.1s0-.1-.1-.1c0-.1-.1-.2-.1-.3-.2-.5-.2-1.3-.2-2.3.1-1.9.2-5.6.3-9.1 2.8-1.3 4.6-2.8 4.6-2.9.2-.2.2-.6 0-.8-.2-.2-.6-.2-.8 0 0 0-1.8 1.6-4.4 2.7-4.6 1.8-10.6 3-17.9 3-1.7 0-3.5-.1-5.4-.2-3.4-.3-6.3-.8-8.7-1.5v.2c-2.1-.9-3.8-2.3-3.8-2.4-.2-.2-.6-.2-.8 0-.2.2-.2.6 0 .8.1.1 2.1 1.9 4.6 2.7.1 3.4.2 7 .3 8.9.1 1.8-.2 3-.8 3-.1 0-.2 0-.3-.1-.1 0-.2-.1-.3-.2l-.1-.1-.3-.3-.1-.1c-.1-.1-.2-.3-.3-.4l-.2-.2c-.1-.1-.2-.3-.3-.5-.1-.1-.2-.2-.2-.4-.1-.2-.2-.3-.3-.5-.1-.2-.2-.3-.3-.5-.1-.1-.2-.3-.2-.4-.4-.6-.7-1.4-1.2-2.2-.2-.5-.4-.9-.6-1.4 0-.1 0-.1-.1-.1-.2-.4-.4-.9-.5-1.3 0-.1-.1-.2-.1-.2-.2-.5-.3-.9-.5-1.4 0-.1 0-.1-.1-.2-.1-.5-.3-.9-.4-1.4 0-.1 0-.1-.1-.2-.1-.5-.
2-.9-.4-1.4v-.1c-.1-.5-.2-1-.3-1.4v-.1c-.2-1.3-.4-2.5-.6-3.5-1 .7-2.2 1.4-3.5 2.1-.1 0-.1.1-.2.1.7-2.3 1.6-6.7.3-12.5-.9-4-2.7-6.9-4.2-8.7 2.3.7 3.7 1.3 4.1 1.5.2 3 .7 7.5 1.4 11.6 0 .3.3.5.5.5h.1c.3-.1.5-.3.5-.6-1-5.8-1.5-12.1-1.6-14.3.6-3.6 1.6-7.6 3-11.5 2.2-6.1 4.2-8.1 4.2-8.1.2-.2.2-.6 0-.8-.2-.2-.6-.2-.8 0-.1.1-1.7 1.7-3.6 6.3-1.9.5-4 .9-6.3.9-2.9 0-6-.6-9.3-2-10.2-4.4-12.1-14.1-12.4-16.7-2-.4-3.6-2-4.8-3.6-.2-.2-.3-.5-.5-.7-.1-.1-.3-.3-.4-.5-.2-.3-.5-.7-.7-1.1 0-.1-.1-.1-.1-.2-.2-.4-.3-.7-.5-1.1v-.1l-2-2c-.6-.6-2.2-2.6-2.7-3.1-.1-.1-.1-.1-.1-.2-.3-.4-.3-.7-.7-1.3-.1-.1-.1-.2-.2-.3-.1-.1-.2-.2-.2-.3-.5-.7-.6-1.4.1-1.9.1-.1.1-.1.2-.1l.1-.1c.1-.1.3-.1.5-.2h.1c.5-.1 1.1.1 1.5.6l.1.1c-.1-.5-.1-1.2-.2-1.8-.2-.9-.3-1.6.6-2 .1 0 .1 0 .2-.1h.2c.3 0 .6 0 .8.1 0 0 .1 0 .1.1.1 0 .2.1.2.1.1.1.2.2.3.2l.1.1c.1.1.2.3.2.4 0 0 .2.5.4 1.1 0-.3.1-.5.1-.7.2-1 .6-1.3.9-2 .3-.7.6-2 1.7-1.9.5.1.9.4 1.2.8.3.4.4.9.3 1.4l-.5 3.2-.4 2.3c-.5.9-1.2 2.1-1.7 3.4-.1.3.1.6.3.7h.2c.2 0 .4-.1.5-.4.7-1.9 1.7-3.5
2.2-4.2.5-.4 1.1-.7 1.6-1 .8-.4 2.5-.6 3.4-.4.5.1 1.2.6 1.9.6.5.1 1.2.1 1.6.7.1.2.2.4.2.8l-.7.1c-.8.1-1.4.9-1.2 1.8 0 .1.1.2.1.3-.2.1-.4.1-.7.1l-3.2-.1c-1.4.7-1.9 2.9-1.3 4.4.1.2.2.4.3.5 0 .1.1.1.1.1.1.1.1.2.2.3l.2.2c.1.1.1.1.2.1.3.3.7.4 1 .6.1 0 .3.1.4.1.5.1 1.1 0 1.6-.2 1.4-.6 2.2-2 1.9-3.5-.1-.7 0-1.3.4-1.9h.5l2.2-.4c.2.4.3 1.1.5 1.7.1.7.8 1.7.8 2.4-.2 1.9-1.2 3.9-2.5 5 .3.5.5 1 .5 1.6 0 .3.6 7.7 7.9 10.8 2.2 1 4.3 1.3 6.3 1.3 6.5 0 11.2-4.1 12.1-5 0-.1.1-.2.1-.3.3-.7.6-1.3.9-1.9.7.6 1.7 1.2 2.9 1.5 3.5 1 5.2.8 5.9.6.7.7 2.8 2.3 5.9 2.3.5 0 1.1-.1 1.7-.2 4.1-.8 6.3-3.7 6.8-4.5 1.1-.3 5.8-2 7.8-5.6l.9.3c.3.1 3.9 2 8.5 2 3.2 0 6.9-.9 10.4-3.8 6.1-5.2 4.4-12.6 4.3-12.6-.1-.6-.1-1.1 0-1.7-.9-.4-1.9-1.2-2.7-2.1-.1-.2-.3-.4-.4-.5-.1-.2-.2-.3-.3-.5 0 0 0-.1-.1-.1-.1-.2-.2-.4-.3-.7-.3-.7.1-1.8 0-2.5 0-.3-.1-.6-.1-.8-.4 1-.8 1.9-1.3 2.9-.1-1.3-.2-2.1-.2-2.1 0-.3-.3-.5-.6-.5s-.5.3-.5.6c0 0 .2 1.6.3 3.9-.1.2-.2.4-.4.6-.2-1.8-.6-3.6-1-5.4l4.9-.9c.5-.1.9-.4 1.1-.8.2.1.3.2.4.3.1.1.2.2.3.4 0 0
0 .1.1.1.1.1.2.3.2.4v.1c.1.2.1.4.1.6.1.6.3 1.1.6 1.5.5.7 1.3 1.2 2.3 1.3 1.7.1 3.2-1.1 3.4-2.9.1-.8-.2-1.7-.6-2.4-.5-.7-1.1-1.3-1.9-1.4l-3.1 1c-.2 0-.4.1-.7.1-.4 0-.8-.1-1.1-.2-.2-.5-.6-.9-1.1-1 0-.1-.1-.1-.1-.2v.2h-.5l-5.2.9c-.5-1.6-1.2-3.2-2.1-4.7 0-.2 0-.4-.1-.6-2.6-14.6-19.6-23.8-38-20.6-17.4 3.1-29.9 16.2-29 30h-.1c-.8.1-1.4.9-1.2 1.8.1.8.9 1.3 1.7 1.3-.5.9-.7 2-.4 3.6l.3 1.5-5.9 1c-.9-1.4-1.7-2.9-2.4-4.4-.1-.3-.2-.5-.3-.8-.1-.2-.1-.4-.2-.6-.1-.4-.3-.7-.4-1.1 0-.1-.1-.3-.1-.4-.1-.5-.3-1-.4-1.5-.1-.6-.3-1.1-.4-1.7-.1-.3-.1-.6-.1-.9 0-.3-.1-.7-.1-1 0-.4-.1-.7-.1-1.1v-.9-1.1-.9c0-.6.1-1.2.1-1.8 0-.3.1-.7.1-1 .1-.3.1-.7.2-1 .1-.3.1-.6.2-1 .1-.3.1-.7.2-1 .1-.4.2-.7.3-1.1.1-.3.2-.6.3-1 .2-.6.4-1.1.6-1.7.1-.3.2-.6.4-.9.1-.3.3-.7.4-1l.3-.6c.1-.1.1-.3.2-.4 2.7-4.5 5.9-7.4 6-7.4.2-.2.3-.6 0-.8-.2-.2-.6-.3-.8 0-.1.1-2.2 2-4.5 5.1-3.7-10.5-1.1-21.6.7-22.7.3-.2.8-.3 1.5-.3 2.7 0 8.1 1.4 13.4 4.2 1.4.8 2.7 1.6 3.8 2.4-7.2 3.2-9.7 6.7-9.8 6.9-.2.3-.1.6.1.8.1.1.2.1.3.1.2 0 .3-.1.5-.2.1-.1 5.2
-7.3 22.4-10.3 17.1-3 24.8 2.9 24.9 3 .2.2.6.2.8-.1.2-.2.2-.6-.1-.8-.2-.2-4-3.1-11.9-3.9.8-1.2 1.8-2.5 3-3.8 4.8-5.3 10.5-8.8 12.4-8.8h.2c2.1.4 8.4 10.1 8.4 21.3-2.6-1.7-4.9-2.6-5-2.7-.3-.1-.6 0-.7.3-.1.3 0 .6.3.7.1 0 5.2 2.1 9.1 6l.2.2c1 1.1 1.9 2.3 2.7 3.5 0 .1.1.1.1.2.4.6.7 1.2 1.1 1.7l.1.1c.7 1.3 1.3 2.6 1.8 4 0 .1.1.2.1.3.2.6.4 1.2.6 1.9 0 .1 0 .2.1.3.2.7.3 1.4.5 2.2l.3 2.4c.2 2.4.1 4.8-.3 7.1.3-.2.6-.4.9-.5.7-.3 1.2-.9 1.6-1.2.7-.5 2.4-.8 3.3-.6 1 .2 2 .4 2.8.8 1.8 1.5 3.5 3 3.7 3.4.1.2.3.3.5.3.1 0 .2 0 .2-.1.3-.1.4-.5.2-.7-.4-.8-3.1-3-4.4-4.2L129 52l-1.5-2.9c-.5-.9-.1-2.1.8-2.5.9-.5 1.6.7 2.1 1.3.5.5.9.7 1.3 1.4.1.1.1.2.2.3l.3.6c0-.7.1-1.1.1-1.2.1-.9.9-1.7 1.8-1.6.4 0 .6.2.8.4.3.3.3.8.4 1.4 0 .1 0 .3.1.4 0 .1 0 .2.1.3.1.4.2.7.2 1.1l.1-.1c.4-.9 1.4-1.3 2.3-.9.4.2.6.3.7.5zM99.3 99.7c-1.1-2-2.2-3.6-3.4-5-2.2 1.7-5.8 3.7-11 4.4-5.7.8-10.2-.7-12.9-2.1-4.7 6.9-9.4 17.7-9.1 27.9.4 16.8 14.5 19.1 23.7 18.7 6-.3 11.7-2.4 15.5-6.7v-.1l.1-.1c2-2.3 3.4-5.1 4.1-8.6 1.8-10.2-2.8-20.5-7-28.
4zM66.6 50.5l-4.9-.7c-5-.7-9.6 2.9-10.3 7.9l-.6 4.4 20.9-3.7c.6-.9 1.3-1.6 2.2-2.3-1.3-2.9-4-5.2-7.3-5.6zm22.5-5l-4 3c-2 1.5-3.2 3.7-3.5 6.1 1.1.3 2.1.8 3 1.4l21.2-3.8-3.8-5c-3.1-3.9-8.9-4.7-12.9-1.7zM66.6 85.3l-.1-1.1v-.3-.4l.1-.3c5.3-1.7 8.6-7 7.6-12.6l-.1-.3c.1 0 .2-.1.4-.1l1 5.5c.1.8.9 1.3 1.7 1.2.8-.1 1.3-.9 1.2-1.7l-1.3-7c2.4-1.3 5.4-1.4 7.9 0 .3.2.7.2 1 .2.1 0 .2-.1.3-.1l.1.3c1 5.6 5.9 9.4 11.4 9.2l.2.3c0 .1.1.1.1.2v.1c0 .1.1.2.1.2l.1.4c0 .1.1.2.1.3l.1.5c0 .1 0 .2.1.4v2.6c-.5 2.6-2.6 4.5-5.9 5.2h-.1H92.3c-.1 0-.3.1-.4.1-.5.1-1 .4-1.5.7-.5.3-.9.7-1.2 1.1-.4.4-.7.8-1.1 1.1-.3.4-.7.7-1.1 1l-.9.5-.2.1c-.1 0-.1.1-.2.1l-.2.1h-.1l-.2.1h-.1l-.3.1-.4.1H83c-.5 0-1-.1-1.4-.2-.5-.1-.9-.3-1.4-.5-.5-.2-.9-.5-1.4-.7-.5-.2-1-.5-1.5-.6-.5-.1-1.1-.2-1.7-.1H75.3h-.1-.1-.1c-3.4.6-6.1-.5-7.5-2.8l-.1-.1-.1-.3v-.1l-.1-.1s0-.1-.1-.1l-.1-.4c0-.1 0-.1-.1-.2v-.1-.1l-.2-1c0-.2 0-.3-.1-.4zm9.5-1c.2 1 1 2.3 2.2 2.9.3.2.6.2.9.1.4-.1.8-.3 1-.8.4-.7.1-1.6-.6-2-.3-.2-.6-.7-.7-.8-.2-.8-.9-1.3-1.7-1.2-.7.3-1.3
1-1.1 1.8zm-2.4-17.5l.3-.3-.1-.4c-.1-.8.4-1.6 1.2-1.7.6-.1 1.1.1 1.4.6 3-1.4 6.4-1.4 9.4 0l-.4-2.4c-.3-1.6-.1-2.8.4-3.6l-14.2 2.5c.8.6 1.3 1.7 1.6 3.3l.4 2zm4.1-11.2c-1.8.3-3.4 1.2-4.5 2.5l9.7-1.7c-1.6-.9-3.4-1.2-5.2-.8z" fill="url(#a)" opacity=".2" transform="translate(145 67)"/><path d="M228.8 160c0-.1 0 0 0 0z" fill="#59ACFF"/><path d="M223.3 154.2c.3.2.6.2.9.1.4-.1.8-.3 1-.8.4-.7.1-1.6-.6-2-.3-.2-.6-.7-.7-.8-.2-.8-.9-1.3-1.7-1.2-.8.1-1.3.9-1.2 1.7.2 1.1 1.1 2.4 2.3 3zM220.1 131.4c-.8.1-1.3.9-1.2 1.7l.1.4c.8-.6 1.6-1.2 2.5-1.6-.3-.4-.9-.6-1.4-.5zM222.3 143.8c.8-.1 1.3-.9 1.2-1.7l-1.3-7c-.8.4-1.6 1-2.2 1.8-.1.1-.3.2-.4.3l1 5.5c.1.7.9 1.2 1.7 1.1z" fill="#F9F9FA"/><path d="M265.6 125c.1 0 .1 0 0 0v-.2.2z" fill="#59ACFF"/><path d="M113.9 62.2l1.8-.3 4.9-.9c.5-.1.9-.4 1.1-.8.2.1.3.2.4.3.1.1.2.2.3.4 0 0 0 .1.1.1.1.1.2.3.2.4v.1c.1.2.1.4.1.6.1.6.3 1.1.6 1.5.5.7 1.3 1.2 2.3 1.3h.3c1.6 0 3-1.2 3.1-2.9.1-.8-.2-1.7-.6-2.4-.5-.7-1.1-1.3-1.9-1.4l-3.1 1c-.2 0-.4.1-.7.1-.4 0-.8-.1-1.1-.2-.2-.5-
.6-.9-1.1-1h-.6l-5.2.9-1.4.3.5 2.9zm12.6-1.7c.2.3.5.8.5 1.3s-.4.8-.9.8h-.1c-.4 0-.8-.4-.8-.8 0-.3-.1-.6-.2-.8l1.5-.5zM38.7 72.4c-.8.1-1.4.9-1.2 1.8 0 .1.1.2.1.3-.2.1-.4.1-.7.1l-3.2-.1c-1.4.7-1.9 2.9-1.3 4.4.1.2.2.4.3.5 0 .1.1.1.1.1.1.1.1.2.2.3l.2.2c.1.1.1.1.2.1.3.2.7.4 1 .6.1 0 .3.1.4.1h.5c.4 0 .8-.1 1.2-.2 1.4-.6 2.2-2 1.9-3.5-.1-.7 0-1.3.4-1.8h.5l2.2-.4c.2.4.3 1.1.5 1.7.1.7.8 1.7.8 2.4-.2 1.9-1.2 3.9-2.5 5 .3.5.5 1 .5 1.6 0 .3.6 7.7 7.9 10.8 2.2 1 4.3 1.3 6.3 1.3 6.5 0 11.2-4.1 12.1-5 0-.1.1-.2.1-.3.3-.7.6-1.3.9-2 .7.6 1.7 1.2 2.9 1.5 3.5 1 5.2.8 5.9.6.7.7 2.8 2.3 5.9 2.3.5 0 1.1-.1 1.7-.2 4.1-.8 6.3-3.7 6.8-4.5 1.1-.3 5.8-2 7.8-5.6l.9.3c.3.1 3.9 2 8.5 2 3.2 0 6.9-.9 10.4-3.8 6.1-5.2 4.4-12.6 4.3-12.6-.1-.6-.1-1.1 0-1.7-.9-.4-1.9-1.2-2.7-2.1-.1-.2-.3-.4-.4-.5-.1-.2-.2-.3-.3-.5 0 0 0-.1-.1-.1-.1-.2-.2-.5-.3-.7-.3-.7.1-1.8 0-2.5 0-.3-.1-.5-.1-.8-.4 1-.8 1.9-1.3 2.9-.1-1.3-.2-2.1-.2-2.1 0-.3-.3-.5-.6-.5s-.5.3-.5.6c0 0 .2 1.6.3 3.9.1 1.6.1 3.5 0 5.5v.6c-.1 2.7-1 5.8-1.4 7.3-.2.6-.3.9-
.3 1-.1.3.1.6.3.7h.2c.2 0 .4-.1.5-.4 0-.1.6-1.7 1.1-3.7-.4 2.1-1 3.7-1 3.8-.1.3-.3.4-.6.4h-.2c-.3-.1-.5-.5-.4-.8 0 0 .1-.2.2-.5-1.9 1.7-9 3.3-15.9 3.7 0 0 0-.1.1-.1.3-.8.4-1.6.4-2.5v-.4-.8-.1-.1l-.1-.6c0-.1-.1-.3-.1-.4l-.1-.4c0-.1-.1-.2-.1-.3l-.2-.5c0-.1-.1-.2-.1-.3l-.1-.1s0-.1-.1-.1h.3l.5-.1 3.5-.6 1.7-.3c6.1-1.1 10.1-6.9 9-12.9l-1-5.8c-.3-1.7-.9-2.7-1.7-3.3.5-.3.9-.9.8-1.6-.1-.8-.9-1.4-1.8-1.2l-4.7.8L84.5 56c-.9-.6-1.9-1.1-3-1.4-1.3-.3-2.6-.4-4-.2-1.4.3-2.7.8-3.8 1.6-.9.6-1.6 1.4-2.2 2.3L50.6 62l-5.1.9h-.1c-.8.1-1.4.9-1.2 1.8.1.8.9 1.3 1.7 1.3-.5.9-.7 2-.4 3.6l.3 1.5-5.9 1-.6.1-.6.2zm-3.1 6.3c-.1 0-.2.1-.3.1-.3 0-.7-.2-.8-.6-.2-.4-.1-1 .1-1.4h1.5c0 .3 0 .6.1.8 0 .5-.2.9-.6 1.1zm84.6-4.9c.1-1.3.1-2.6.1-3.9.2.2.4.3.6.5 0 .3.1.6.2 1 0 .2 1 4.7-1.9 8.6.4-1.6.8-3.8 1-6.2zm-5.9 9.8c.1.1.2.1.3.2-1.7.8-3.5 1.3-5.4 1.3 1.9-.5 3.7-1 5.1-1.5zm-59.4 12c-1.8 0-3.6-.4-5.4-1.1-6-2.5-6.5-8.7-6.5-8.9 0-.3-.1-.6-.1-.9.5-.7 1-1.5 1.4-2.4.5 1.4 1.1 3 1.7 4.4 1.7 4 4.3 7.1 4.4 7.2.6.7 1.4 1 2.2 1 .7 0
1.3-.2 1.8-.7l.2-.2h.7c2 0 4.7-.3 7.5-.8-1.9 1.2-4.7 2.4-7.9 2.4zm22.9-40c1.8-.3 3.6 0 5.2.8l-9.7 1.7c1.1-1.3 2.7-2.2 4.5-2.5zm8.1 3.3c-.5.9-.7 2-.4 3.6l.4 2.4c-3-1.4-6.5-1.4-9.4 0-.9.4-1.7.9-2.5 1.6l-.3.3-.4-2.1c-.3-1.6-.8-2.6-1.6-3.3l14.2-2.5zM66.6 83.8v-.4l.1-.3c5.3-1.7 8.6-7 7.6-12.6l-.1-.3c.1 0 .2-.1.4-.1.2-.1.3-.2.4-.3.6-.7 1.4-1.3 2.2-1.8 2.4-1.3 5.4-1.4 7.9 0 .3.2.7.2 1 .2.1 0 .2-.1.3-.1l.1.3c1 5.6 5.9 9.4 11.4 9.2l.2.3c0 .1.1.1.1.2v.1c0 .1.1.2.1.2l.1.4c0 .1.1.2.1.3l.1.5c0 .1 0 .2.1.4v2.6c-.5 2.6-2.6 4.5-5.9 5.2h-.1H92.4c-.1 0-.3.1-.4.1-.5.1-1 .4-1.5.7-.5.3-.9.7-1.2 1.1-.4.4-.7.8-1.1 1.1-.3.4-.7.7-1.1 1l-.9.5-.2.1c-.1 0-.1.1-.2.1l-.2.1h-.1l-.2.1h-.1l-.3.1-.4.1H83.1c-.5 0-1-.1-1.4-.2-.5-.1-.9-.3-1.4-.5-.5-.2-.9-.5-1.4-.7-.5-.2-1-.5-1.5-.6-.5-.1-1.1-.2-1.7-.1H75.4h-.1-.1-.1c-3.4.6-6.1-.5-7.5-2.8l-.1-.1-.1-.3v-.1l-.1-.1s0-.1-.1-.1l-.1-.4c0-.1 0-.1-.1-.2v-.1-.1l-.2-1c0-.1 0-.2-.1-.4l-.1-1.1v-.2zm-20.4-9.6h.2l.2 1.3c1.1 6.1 6.9 10.1 12.9 9l2.5-.4 3.2-.6h.2v.8l.1 1.2c0 .1 0 .3.1.
4v.1s.2 2 1.6 3.8c0 0 0 .1.1.1-4.5 1.2-9 1.9-12 1.9-.9 0-1.7-.1-2.3-.2.2.3.2.7-.1.9-.1.1-.3.1-.4.1-.2 0-.4-.1-.5-.2 0 0-.3-.4-.8-1 .5.6.8.9.8 1 .1.1.3.2.4.2.1 0 .3-.1.4-.2.2-.2.2-.6 0-.8 0 0-.1-.1-.2-.3-.7-.8-2.9-3.4-4.1-6.3-.1-.2-.2-.4-.3-.7-.7-1.8-1.3-3.6-1.8-5.2-.8-2.4-1.2-4.3-1.2-4.3-.1-.3-.4-.5-.7-.4-.3.1-.5.4-.4.7 0 0 .3 1.1.7 2.6-1-1-2-2-2.9-3l4.3-.5zm93-26.2c-.5-.2-1-.3-1.6-.3-.6-1.8-1.8-2.3-2.9-2.3h-.3c-.8 0-1.6.3-2.3.7-.6-.7-1.5-1.7-3-1.7-.5 0-1 .1-1.4.3-2 1-2.9 3.5-1.9 5.5l.7 1.3h-.2c-.8 0-1.8.1-2.7.4 0-1.9-.1-3.9-.4-5.8-1.1-6-4-11.7-8.5-16.3.7-13.5-6.9-26.8-12.1-27.9-.3-.1-.7-.1-1.1-.1-4.9 0-12.2 6.2-15.9 10.3-.9 1-2.2 2.6-3.4 4.4h-.5c-3.1 0-6.5.3-9.9.9-3.6.6-7 1.5-10 2.6-1.7-1.2-3.3-2.2-4.5-2.8-4.4-2.4-10.9-4.7-15.5-4.7-1.7 0-3 .3-4 .9-4.5 2.7-7.1 17.8-1.8 30.3-2.7 5.9-3.5 12.2-2.5 18.3.4 2 .9 3.9 1.7 5.8h-.4c-.8 0-1.9.1-2.8.4l.2-1.5c.4-2.2-1.1-4.4-3.4-4.7h-.5c-2 0-2.9 1.7-3.3 2.6-.4-.1-.8-.2-1.2-.2-.5 0-1 .1-1.4.3-1 .4-2.1 1.2-2.1 3.1-.6.2-1.1.4-1.5.8-1.2 1.1-1.9 3-.1
5.3.2.2.2.4.3.6.1.3.3.8.8 1.3.1.1.3.4.6.7.9 1.1 1.8 2.1 2.2 2.5l.6.6 1 1c.4 1 .8 1.8 1.4 2.5.1.2.2.3.4.5.2.3.3.5.5.8 1.5 1.9 3 3.3 4.6 4 .8 4.2 3.6 12.8 13.5 17.1 3.3 1.4 6.8 2.1 10.2 2.1 1.3 0 2.7-.1 4-.3-1.2 3.7-2.1 7.1-2.6 10-.9-.3-1.9-.7-3.1-1-.3-.2-.4-.4-.5-.4-.6-.5-1.4-.8-2.2-.8-.4 0-.9.1-1.3.2-2.1-.4-4.2-.7-6.4-.9-.4-.2-.7-.4-1.1-.5-.2 0-.4-.1-.7-.1-.5 0-1 .1-1.4.3-1.1-.1-2.2-.1-3.3-.1h-2.6c-.5-.3-1.1-.4-1.6-.4-.7 0-1.3.2-1.8.5-.1 0-.1.1-.2.1-2.1.2-4.2.6-6.2 1.1-.2 0-.4-.1-.7-.1-.5 0-1 .1-1.4.3-.3.1-.6.3-.9.6-7.7 2.4-12.1 5.9-12.5 6.3-.3.3-.6.6-.7.9-2.6 2.1-4.2 4.3-4.7 6.7-1.1 5.5 3.4 11.3 11.7 15.4.1.5.4 1 .7 1.4.7.8 1.6 1.2 2.6 1.2.6 0 1.2-.2 1.8-.5 2.7.9 5.5 1.5 8.3 1.9.1.2.3.3.4.4.6.5 1.4.8 2.2.8.9 0 1.7-.3 2.4-.9 1 0 2-.1 2.9-.1 2.1-.2 4.1-.5 6.2-1 .2.2.5.3.7.5.5.2.9.3 1.4.3 1.4 0 2.6-.8 3.2-2.1 0 0 0-.1.1-.1 1.9-.6 3.8-1.3 5.6-2.1.1.1.2.1.3.2.5.3 1.1.4 1.6.4 1.3 0 2.5-.7 3.1-1.9 0-.1.3-.6.6-1.5.6 3.2 1.6 6.9 3.3 10.2 2.7 5.4 4.3 7.3 6.3 7.3.7 0 1.4-.3 2-.8.8-.9 1.2-2.2
1.1-4.5 0-1.6-.1-4.5-.2-7.4 1.9.4 3.9.7 6.2.9 1.9.1 3.7.2 5.6.2 5.9 0 11.4-.8 16.1-2.2-.1 2.8-.2 5.5-.2 7-.1 2.3.3 3.6 1.1 4.5.5.5 1.2.8 2 .8 2 0 3.6-1.8 6.3-7.3 2.4-4.8 3.4-10.4 3.9-14.3 2.9-7.6.4-22.8-2.3-30.7-1.1-3.3-2.2-6.3-3.3-9.1.6 0 1.2.1 1.8.1 6.2 0 11.8-2.1 16.6-6.1 8.2-6.9 8.4-16.1 7.9-20.3 1.3-1.2 2.4-2.9 3.3-5.2l.3-.9c.1-.2.2-.4.2-.5.3-.9.5-1.8.6-2.8l.9-1.8.2-.3c.3-.6.8-1.7 1.4-3.1.1-.3.3-.6.3-.8.3-.6.3-1.1.4-1.5 0-.2 0-.4.2-.6 1.2-2.7 0-4.4-1.5-5.1zm-.5 4.3c-.4 1.1-.2 1.4-.5 2-.3.7-1.3 3-1.7 3.8-.1.2-.7 1.2-1.3 2.5 0 .9-.2 1.8-.5 2.7-.1.2-.1.4-.2.6l-.3.9c-.7 1.9-1.8 4-3.6 4.9.5 2.6 1.6 12.4-6.9 19.6-5.1 4.3-10.5 5.6-15.1 5.6-1.4 0-2.8-.1-4-.3-1.2-2.5-2.8-4.8-2.9-4.9-.2-.2-.5-.3-.8-.1-.2.2-.3.5-.1.8 0 0 2.1 2.8 3.2 5.7 0 0 0 .1.1.1.1.2.1.4.2.6l.1.1c1.4 3.4 2.6 6.9 3.7 10.1 2.9 8.6 4.9 23.1 2.2 29.4-.4 3.7-1.4 9.2-3.7 13.9-2.2 4.3-3.5 6-4.3 6h-.2l-.1-.1-.1-.1s0-.1-.1-.1c0-.1-.1-.2-.1-.3-.2-.5-.2-1.3-.2-2.3.1-1.9.2-5.6.3-9.1 2.8-1.3 4.6-2.8 4.6-2.9.2-.2.2-.6 0-.8-.2-.2-.6-
.2-.8 0 0 0-1.8 1.6-4.4 2.7-4.6 1.8-10.6 3-17.9 3-1.7 0-3.5-.1-5.4-.2-3.4-.3-6.3-.8-8.7-1.5v.2c-2.1-.9-3.8-2.3-3.8-2.4-.2-.2-.6-.2-.8 0-.2.2-.2.6 0 .8.1.1 2.1 1.9 4.6 2.7.1 3.4.2 7 .3 8.9.1 1.8-.2 3-.8 3-.1 0-.2 0-.3-.1-.1 0-.2-.1-.3-.2l-.1-.1-.3-.3-.1-.1c-.1-.1-.2-.3-.3-.4l-.2-.2c-.1-.1-.2-.3-.3-.5-.1-.1-.2-.2-.2-.4-.1-.2-.2-.3-.3-.5-.1-.2-.2-.3-.3-.5-.1-.1-.2-.3-.2-.4-.4-.7-.8-1.4-1.2-2.2-.2-.4-.4-.9-.6-1.4 0-.1 0-.1-.1-.1-.2-.4-.4-.9-.5-1.3 0-.1-.1-.2-.1-.2-.2-.5-.3-.9-.5-1.4 0-.1 0-.1-.1-.2-.1-.5-.3-.9-.4-1.4 0-.1 0-.1-.1-.2-.1-.5-.2-.9-.4-1.4v-.1c-.1-.5-.2-1-.3-1.4v-.1c-.2-1.3-.4-2.5-.6-3.6-1 .7-2.2 1.4-3.5 2.1-.4 1.2-.7 1.9-.8 2-.2.4-.7.7-1.1.7-.2 0-.4 0-.6-.1-.4-.2-.6-.5-.6-.9-2.4 1.1-5 2.2-8 3.1-.2.6-.4 1-.4 1-.2.5-.7.7-1.1.7-.2 0-.3 0-.5-.1-.4-.2-.6-.5-.7-.9-1.7.4-3.6.8-5.4 1h-.1c-.6.1-1.2.2-1.9.2-1 .1-1.9.1-2.9.1h-.9c-.2.3-.3.4-.3.5-.2.3-.6.5-1 .5-.3 0-.6-.1-.8-.3-.3-.2-.4-.5-.4-.8-3.5-.3-7-1.1-10.2-2.3l-.5.5c-.2.2-.5.3-.8.3-.4 0-.7-.1-1-.4-.3-.4-.4-.9-.2-1.3-4.6-2.1-8.4-4
.9-10.4-7.9-.1-.1-.1-.2-.2-.3l-.3-.6c-.1-.1-.1-.3-.2-.4-.1-.1-.1-.3-.2-.4-.1-.2-.1-.3-.2-.5 0-.1-.1-.2-.1-.3-.1-.2-.1-.4-.1-.6v-.3c0-.2-.1-.4-.1-.6v-.1c0-.5 0-1.1.1-1.6.4-2.2 2.1-4.1 4.4-5.8 0-.2 0-.4.2-.6.3-.2 4.6-3.8 12.4-6.1.1-.2.3-.4.5-.5.2-.1.3-.1.5-.1s.4.1.6.2c2.2-.6 4.6-1 7.3-1.2.1-.2.2-.3.4-.4.2-.1.4-.2.7-.2.4 0 .7.2 1 .5.3 0 .6 0 .9-.1h2.3c1.3 0 2.6 0 3.8.1.2-.2.5-.3.9-.3h.2c.1 0 .4.2.7.4 2.9.2 5.4.6 7.6 1.1.2-.2.6-.4.9-.4.3 0 .5.1.8.3l.7.7c2.6.7 4.3 1.4 5.3 1.8v.1c0 .4.1.8.1 1.3.2 3 .7 7.5 1.4 11.6 0 .3.3.5.5.5h.1c.3-.1.5-.3.5-.6-1-5.8-1.5-12.1-1.6-14.3.5-3.5 1.6-7.4 2.9-11.2 0-.1.1-.2.1-.3 2.2-6.1 4.2-8.1 4.2-8.1.2-.2.2-.6 0-.8-.2-.2-.6-.2-.8 0-.1.1-1.7 1.7-3.6 6.3-1.9.5-4 .9-6.3.9-2.9 0-6-.6-9.3-2-10.2-4.4-12.1-14.1-12.4-16.7-2-.4-3.6-2-4.8-3.6-.2-.2-.3-.5-.5-.7-.1-.1-.3-.3-.4-.5-.2-.3-.5-.7-.7-1.1 0-.1-.1-.1-.1-.2-.2-.4-.3-.7-.5-1.1v-.1l-2-2c-.6-.6-2.2-2.6-2.7-3.1-.1-.1-.1-.1-.1-.2-.3-.4-.3-.7-.7-1.3-.1-.1-.1-.2-.2-.3-.1-.1-.2-.2-.2-.3-.5-.8-.6-1.4 0-2 .1-.1.1-.1.2-.1l.
1-.1c.1-.1.3-.1.5-.2H21.6c.5 0 1 .2 1.3.6l.1.1c-.1-.5-.1-1.2-.2-1.8-.2-.9-.3-1.6.6-2H24c.2 0 .4.1.7.1 0 0 .1 0 .1.1.1 0 .2.1.2.1.1.1.2.2.3.2l.1.1c.1.1.2.3.2.4 0 0 .2.5.4 1.1 0-.3.1-.5.1-.7.2-1 .6-1.3.9-2 .3-.7.6-1.9 1.5-1.9h.2c.5.1.9.4 1.2.8.3.4.4.9.3 1.4l-.5 3.2-.4 2.3c-.5.9-1.2 2.1-1.7 3.4-.1.3.1.6.3.7h.2c.2 0 .4-.1.5-.4.7-1.9 1.7-3.5 2.2-4.2.5-.3 1-.7 1.6-1 .6-.3 1.6-.5 2.4-.5.3 0 .7 0 .9.1.5.1 1.2.6 1.9.6.5.1 1.2.1 1.6.7.1.2.2.4.2.8l.6-.1c-.9-1.4-1.7-2.9-2.4-4.4-.1-.3-.2-.5-.3-.8-.1-.2-.1-.4-.2-.6-.1-.4-.3-.7-.4-1.1 0-.1-.1-.3-.1-.4-.1-.5-.3-1-.4-1.5-.1-.6-.3-1.1-.4-1.7-.1-.3-.1-.6-.1-.9 0-.3-.1-.7-.1-1 0-.4-.1-.7-.1-1.1v-.9V57v-.9c0-.6.1-1.2.1-1.8 0-.3.1-.7.1-1 .1-.3.1-.7.2-1 .1-.3.1-.6.2-1 .1-.3.1-.7.2-1 .1-.4.2-.7.3-1.1.1-.3.2-.6.3-1 .2-.6.4-1.1.6-1.7.1-.3.2-.6.4-.9.1-.3.3-.7.4-1 .1-.2.1-.3.2-.5 0-.1.1-.1.1-.2.1-.1.1-.2.2-.3 2.7-4.5 5.9-7.4 6-7.4.2-.2.3-.6 0-.8-.2-.2-.6-.3-.8 0-.1.1-2.2 2-4.5 5.1-.5.7-1 1.4-1.5 2.2 0 .1-.1.1-.1.2-4.7-11.6-2.2-25.2 1.1-27.1.7-.4 1.6-.6 2.8-.6
3.8 0 9.8 2 14.4 4.5 1.5.8 3.4 2 5.2 3.4 2.9-1.1 6.5-2.1 10.8-2.9 3.6-.6 6.7-.9 9.5-.9h1.7c1.2-2 2.6-3.8 3.8-5.1 4.3-4.8 10.7-9.6 14.2-9.6.2 0 .4 0 .6.1 3.8.8 10.8 12.8 10.3 25.3l-.1-.1c-.7-.6-1.5-1.1-2.2-1.6-2.6-1.7-4.9-2.6-5-2.7-.3-.1-.6 0-.7.3-.1.3 0 .6.3.7.1 0 5.2 2.1 9.1 6l.2.2c1 1.1 1.9 2.3 2.7 3.5 0 .1.1.1.1.2.4.6.7 1.2 1.1 1.7l.1.1c.7 1.3 1.3 2.6 1.8 4 0 .1.1.2.1.3.2.6.4 1.2.6 1.9 0 .1 0 .2.1.3.2.7.3 1.4.5 2.2l.3 2.4c.2 2.4.1 4.8-.3 7.1.3-.2.6-.4.9-.5.7-.3 1.2-.9 1.6-1.2.6-.4 1.9-.7 2.8-.7h.5c1 .2 2 .4 2.8.8 1.8 1.5 3.5 3 3.7 3.4.1.2.3.3.5.3.1 0 .2 0 .2-.1.3-.1.4-.5.2-.7-.4-.8-3.1-3-4.4-4.2l-.6-1.3-1.5-2.9c-.5-.9-.1-2.1.8-2.5.1-.1.3-.1.4-.1.7 0 1.3.9 1.7 1.4.5.5.9.7 1.3 1.4.1.1.1.2.2.3l.3.6c0-.7.1-1.1.1-1.2.1-.9.8-1.6 1.7-1.6h.1c.4 0 .6.2.8.4.3.3.3.8.4 1.4 0 .1 0 .3.1.4 0 .1 0 .2.1.3.1.4.2.7.2 1.1l.1-.1c.3-.6.9-1 1.6-1 .2 0 .5 0 .7.2.2.1.4.2.5.4.3.1.3.7-.1 1.5z" fill="url(#b)" transform="translate(145 67)"/></g></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/figure_screenshots.svg b/browser/extensions/onboarding/content/img/figure_screenshots.svg
new file mode 100644
index 000000000000..f4930d09f7af
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/figure_screenshots.svg
@@ -0,0 +1,191 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="281" height="233">
+ <defs>
+ <linearGradient id="a" x1="-26.7072552%" x2="121.200691%" y1="-8.21456664%" y2="115.364749%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="b" x1="-171.534367%" x2="377.694136%" y1="-258.916232%" y2="507.082022%">
+ <stop stop-color="#E6FCFF" offset="0%"/>
+ <stop stop-color="#B5F2FF" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="c" x1="-275.615152%" x2="393.814483%" y1="-214.880097%" y2="329.931438%">
+ <stop stop-color="#E6FCFF" offset="0%"/>
+ <stop stop-color="#B5F2FF" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="d" x1="-71.2230562%" x2="141.268437%" y1="-46.5567621%" y2="122.213199%">
+ <stop stop-color="#E6FCFF" offset="0%"/>
+ <stop stop-color="#B5F2FF" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="e" x1="-912.187374%" x2="706.872366%" y1="-223.131903%" y2="247.7375%">
+ <stop stop-color="#E6FCFF" offset="0%"/>
+ <stop stop-color="#B5F2FF" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="f" x1="-636.509606%" x2="265.115932%" y1="-364.308744%" y2="178.753736%">
+ <stop stop-color="#E6FCFF" offset="0%"/>
+ <stop stop-color="#B5F2FF" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="g" x1="-96.7324958%" x2="214.858961%" y1="-489.128132%" y2="600.29142%">
+ <stop stop-color="#E6FCFF" offset="0%"/>
+ <stop stop-color="#B5F2FF" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="h" x1="-370.226425%" x2="176.655533%" y1="-420.236682%" y2="206.08556%">
+ <stop stop-color="#E6FCFF" offset="0%"/>
+ <stop stop-color="#B5F2FF" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="i" x1="-1573.85207%" x2="2621.18334%" y1="-918.807829%" y2="1582.542%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="j" x1="-1977.10979%" x2="2217.92561%" y1="-1158.35597%" y2="1342.99386%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="k" x1="-635.169191%" x2="1018.69953%" y1="-1184.44408%" y2="1785.60576%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="l" x1="-278.76866%" x2="377.256589%" y1="-697.981967%" y2="835.635246%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="m" x1="-553.131633%" x2="647.619338%" y1="-1374.34047%" y2="1418.49315%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="n" x1="-450.59361%" x2="546.286439%" y1="-895.950857%" y2="958.91224%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="o" x1="-511.211278%" x2="295.07392%" y1="-745.273546%" y2="396.265912%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="p" x1="-871.182847%" x2="303.781403%" y1="-595.928571%" y2="241.5435%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="q" x1="-450.336951%" x2="307.764971%" y1="-505.416691%" y2="315.448433%">
+ <stop stop-color="#E6FCFF" offset="0%"/>
+ <stop stop-color="#B5F2FF" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="r" x1="-2519.79056%" x2="1944.50093%" y1="-1090.70814%" y2="890.815528%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="s" x1="-134.127826%" x2="165.330874%" y1="-297.102666%" y2="260.202663%">
+ <stop stop-color="#E6FCFF" offset="0%"/>
+ <stop stop-color="#B5F2FF" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="t" x1="-1132.52358%" x2="304.180944%" y1="-1559.01765%" y2="393.843988%">
+ <stop stop-color="#E6FCFF" offset="0%"/>
+ <stop stop-color="#B5F2FF" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="u" x1="-1884.94918%" x2="1592.74001%" y1="-342.289711%" y2="381.222953%">
+ <stop stop-color="#E6FCFF" offset="0%"/>
+ <stop stop-color="#B5F2FF" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="v" x1="-109.932792%" x2="195.629347%" y1="-425.144051%" y2="431.622036%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="w" x1="-813.648281%" x2="368.736119%" y1="-1076.38789%" y2="459.249729%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="x" x1="-1092.12785%" x2="635.82518%" y1="-4587.46665%" y2="2425.66052%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="y" x1="-415.250984%" x2="1490.35841%" y1="-442.448072%" y2="1582.67684%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="z" x1="-167.167389%" x2="492.546376%" y1="-2085.55413%" y2="4392.09342%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="A" x1="-2989.85248%" x2="1926.86535%" y1="-1363.11821%" y2="921.90878%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ <linearGradient id="B" x1="-2586.45105%" x2="2652.41027%" y1="-792.93501%" y2="883.790987%">
+ <stop stop-color="#00C8D7" offset="0%"/>
+ <stop stop-color="#008EA4" offset="100%"/>
+ </linearGradient>
+ </defs>
+ <g fill="none" fill-rule="evenodd">
+ <g fill="#D7D7DB" fill-rule="nonzero">
+ <path d="M204.3 76.7h-77c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h77c.6 0 1.1.5 1.1 1.1 0 .6-.4 1.1-1.1 1.1zM193.9 71h-13.4c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.2.6-.6.6zM176.4 81.7H163c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.2.6-.6.6zm-22.2 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-7.8 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-11.2 0h-13.4c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-22.2 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-7.8 0H104c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.2.6-.5.6zm-11.2 0H80.6c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6H94c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-22.3 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-7.8 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6z"/>
+ </g>
+ <g fill-rule="nonzero">
+ <path fill="#F9F9FA" d="M152.3 47.8h23.8s-7.4-16.6 8.3-18.8c14.1-1.9 19.6 12.5 19.6 12.5s1.7-8.3 10-6.7c8.3 1.6 14.3 14.8 14.3 14.8H249"/>
+ <path fill="#D7D7DB" d="M249.5 45.8H245c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h4.5c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm-14.5 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-5.6 0h-.6c-.2 0-.4-.1-.5-.3-.1-.2-.6-1.1-1.3-2.3-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.6.9 1 1.7 1.2 2.1h.3c.3 0 .6.2.6.6 0 .4-.4.5-.7.5zm-52.9-.7H175c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h.6c-.1-.3-.2-.6-.4-1-.1-.3.1-.6.4-.7.3-.1.6.1.7.4.3 1 .6 1.7.6 1.7.1.2.1.4 0 .5-.1.1-.3.3-.4.3zm-10.4 0h-13.4c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm8.7-6.1c-.3 0-.5-.2-.6-.5 0-.4-.1-.8-.1-1.1 0-.3.2-.6.5-.6s.6.2.6.5c0 .4.1.7.1 1.1.1.3-.1.6-.5.6.1 0 .1 0 0 0zm29.2-1.1c-.2 0-.4-.1-.5-.3-.1-.3-.3-.6-.5-1-.1-.3 0-.6.2-.8.3-.1.6 0 .8.2.2.4.4.7.5 1 .1.3 0 .6-.3.7-.1.2-.2.2-.2.2zm17.9-1.4c-.1 0-.3-.1-.4-.2-2.4-2.3-4.8-3.7-7.2-4.1-1.6-.3-3.1-.2-4.3.2-.3.1-.6-.1-.7-.4-.1-.3.1-.6.4-.7 1.4-.5 3.1-.6 4.9-.2 2.6.5 5.2 2 7.7 4.4.2.2.2.6 0 .8-.1.1-.2.2-.4.2zM201 33.2c-.2 0-.3-.1-.4-.2-.7-.9-1.4-1.7-2.2-2
.4-.2-.2-.2-.6 0-.8.2-.2.6-.2.8 0 .8.7 1.6 1.6 2.3 2.5.2.2.2.6-.1.8-.2 0-.3.1-.4.1zm-22.8-4.3c-.2 0-.3-.1-.4-.2-.2-.2-.2-.6.1-.8 1.7-1.4 4.1-2.3 6.9-2.7 2.2-.3 4.3-.2 6.3.2.3.1.5.4.4.7-.1.3-.4.5-.7.4-1.9-.4-3.9-.5-5.9-.2-2.7.4-4.8 1.2-6.4 2.4-.1.2-.2.2-.3.2z"/>
+ <path fill="#F9F9FA" d="M250.2 50.1h-97.9c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h97.9c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1z"/>
+ </g>
+ <g fill-rule="nonzero">
+ <path fill="#F9F9FA" d="M49.3 29.4h13.2s-4.1-9.2 4.6-10.4c7.8-1.1 10.9 7 10.9 7s.9-4.6 5.6-3.8c4.6.9 8 8.3 8 8.3h11.5"/>
+ <path fill="#D7D7DB" d="M62.9 27.9H49.7c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h12.8s.1-.1.2-.1c.3-.1.6 0 .7.3l.1.1c.1.2.1.4 0 .5-.2.3-.4.4-.6.4zm36.6-.1h-3.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .3-.3.6-.6.6zm-20.9-3.6h-.2c-.3-.1-.5-.4-.4-.7.3-.9 1.5-4 4.9-4 .4 0 .8 0 1.2.1 1.8.3 3.6 1.5 5.4 3.4.2.2.2.6 0 .8-.2.2-.6.2-.8 0-1.6-1.7-3.2-2.7-4.8-3-.4-.1-.7-.1-1-.1-2.6 0-3.5 2.2-3.8 3.2-.1.1-.3.3-.5.3zm-15.2-4.9c-.1 0-.3-.1-.4-.2-.2-.2-.2-.6 0-.8.8-.8 1.8-1.4 3.1-1.7.3-.1.6.1.7.4.1.3-.1.6-.4.7-1.1.3-2 .8-2.6 1.4-.1.2-.3.2-.4.2zm8.4-1.5h-.2c-.3-.1-.7-.2-1-.3-.3-.1-.5-.3-.4-.7.1-.3.4-.5.7-.4.4.1.8.2 1.1.3.3.1.5.4.4.7-.2.3-.4.4-.6.4z"/>
+ <path fill="#F9F9FA" d="M104 31.6H49.6c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1H104c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1z"/>
+ </g>
+ <g fill-rule="nonzero">
+ <path fill="#FFF" d="M19.6 169.1c-2.8 0-5-2.2-5-4.8V46c0-3 2.4-5.4 5.4-5.4h127c3 0 5.4 2.4 5.4 5.4v118.3c0 2.6-2.3 4.8-5 4.8H19.6z"/>
+ <path fill="#D7D7DB" d="M146.9 41.8c2.3 0 4.2 1.9 4.2 4.2v118.3c0 2-1.8 3.7-3.9 3.7H19.6c-2.2 0-3.9-1.6-3.9-3.7V46c0-2.3 1.9-4.2 4.2-4.2h127zm0-2.2h-127c-3.6 0-6.5 2.9-6.5 6.5v118.3c0 3.3 2.8 5.9 6.2 5.9h127.6c3.4 0 6.2-2.7 6.2-5.9V46c0-3.5-2.9-6.4-6.5-6.4z"/>
+ </g>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M145.8 62.9V161c0 1-.1 1.2-.1 1.2s-.2.1-1.2.1h-122c-1 0-1.2-.1-1.2-.1s-.1-.2-.1-1.2V62.9h124.6zm1.1-1.2H20v99.2c0 2 .4 2.5 2.5 2.5h122c2 0 2.5-.4 2.5-2.5V61.7h-.1z"/>
+ <g fill="#D7D7DB" fill-rule="nonzero">
+ <circle cx="3.8" cy="3.7" r="2.9" transform="translate(23 48)"/>
+ <circle cx="3" cy="3.7" r="2.9" transform="translate(33 48)"/>
+ <path d="M115.3 54.9H51.5c-1.7 0-3.1-1.4-3.1-3.1v-.3c0-1.7 1.4-3.1 3.1-3.1h63.8c1.7 0 3.1 1.4 3.1 3.1v.3c0 1.8-1.4 3.1-3.1 3.1z"/>
+ <g>
+ <circle cx="3.8" cy="3.7" r="2.9" transform="translate(127 48)"/>
+ <circle cx="3.1" cy="3.7" r="2.9" transform="translate(137 48)"/>
+ </g>
+ </g>
+ <g transform="translate(149 84)">
+ <ellipse cx="42.7" cy="142" fill="#EDEDF0" fill-rule="nonzero" rx="42.5" ry="6.5"/>
+ <path fill="#F9F9FA" fill-rule="nonzero" d="M121.2 99.6c-1.3-3.1-4.3-5.2-7.7-5.2-.7 0-1.4.1-2.1.3-.8 0-3.1-.3-7.2-2-1.7-.7-4.8-3.9-8.4-10.5 5.2-19.9 5.5-36.8.7-50.3-.4-1-.9-2.1-1.5-3.2l-.3-1.4 2-1.7c1.6-1.4 2.3-3.5 1.7-5.6-.3-1.2-1-2.2-2-2.9 0-.3 0-.6-.1-.9-.4-2.3-2.2-4.1-4.5-4.4-.4-.1-10.6-1.7-17.1-1.7h-.4l-1.7-2.8C70 3.1 65.5.6 60.5.6c-2.6 0-5.2.7-7.5 2.1-2.6 1.6-4.5 3.9-5.7 6.7-6 .7-12.1 2.3-18.2 4.7l-3.4-1.4c-1.7-.7-3.5-1.1-5.4-1.1-5.8 0-10.9 3.5-13.1 8.8-2.7 6.6-.1 14 5.8 17.5-1.1 5.9-1.5 12.4-1 19.6.6 9-2.2 13.5-5.1 18.2-4.4 7.1-9.4 15.1 0 33.8 0 2.2.1 4.2.2 5.8 1.3 11.8 4.6 17.7 10 17.7.9 0 1.9-.2 2.7-.6 2.2-1.1 3.3-2.6 5-9.9 9.3 3.1 21.2 5.8 30.9 6.9-1.7 7.6-1.5 9.4 0 11.4 1.2 1.5 3 2.4 5 2.4 4.1 0 8.8-4.1 14-12.1 1.3-2.1 2.8-5 4.4-8.5 1.4-2.4 5.5-9.7 10-20.9 2.8 2.9 5.6 5 8.6 6.2 5.2 2.1 9.8 3.2 13.5 3.2 2.5 0 4.2-.5 5.1-.9 4.6-1.5 6.6-6.4 4.9-10.6z"/>
+ <path d="M115.2 101.4c-.4-.9-1.5-1.4-2.4-1-.2.1-.6.1-1.2.1-1.4 0-4.6-.3-9.8-2.4-5.5-2.2-10.3-10.6-12.7-15.5-.1-.2-.1-.5-.1-.8 5.4-19.5 5.9-35.8 1.4-48.4-.3-.8-.7-1.8-1.3-2.7-.1-.1-.1-.2-.1-.3L87.7 25c-.1-.4 0-.8.4-1.1l2.6-2.2-5.8-.9c-.5-.1-.9-.4-.9-.9s.2-.9.6-1.2l3-1.6c-3.5-.5-8.9-1.1-12.7-1.1-1.1 0-2 .1-2.6.2l-.4.1c-.4.1-.9-.1-1.1-.5l-3.4-5.5C66 8 63.5 6.7 60.9 6.7c-1.4 0-2.8.4-4.1 1.2-2.2 1.4-3.5 3.7-3.6 6.3 0 .6-.5 1-1.1 1.1-7.2.4-14.7 2.2-22.2 5.4-.3.1-.6.1-.9 0l-5.4-2.2c-.9-.4-1.9-.6-2.9-.6-3.1 0-5.9 1.9-7.1 4.8-1.6 3.9.3 8.4 4.2 10l2.3.9c.5.2.8.8.6 1.3-1.8 6.2-2.4 13.6-1.8 21.9.7 11.1-2.9 16.9-6.1 22.1-4.3 6.9-7.7 12.3.9 28.6.1.2.1.4.1.5-.1 2.6 0 4.7.2 6.3.8 7.8 2.6 11.1 3.4 11.8.4-.8 1.2-3.3 2.9-11.3.1-.3.3-.6.6-.8.2-.1.3-.1.5-.1.1 0 .3 0 .4.1 10.8 4.5 29.6 8.7 41.2 9.1.3 0 .7.2.9.4.2.3.3.6.2.9-2.1 8.3-2.5 11-2.5 11.9 1.1-.3 4.2-2.7 8.3-9.1 1.2-1.9 2.5-4.5 4-7.9 0 0 0-.1.1-.1 3.3-5.6 8.7-16.6 13-29.4.1-.4.5-.7.9-.8.4 0 .9.2 1.1.5 3.7 6.2 7.8 10.4 11.7 12 5.5 2.2 9.1 2.7
11.1 2.7 1.6 0 2.4-.3 2.7-.4.6-.4 1-1.5.7-2.4z"/>
+ <path fill="url(#a)" fill-rule="nonzero" d="M114.6 98c-.8-2.1-2.9-3.4-5.1-3.4-.6 0-1.1.1-1.7.3-.7 0-3.4 0-8.7-2.2-3-1.2-6.8-6-10.3-12.8 5.4-19.8 5.7-36.5 1-49.7-.3-1-.8-2-1.4-3l-.9-3.4 3.3-2.8c.8-.7 1.1-1.7.8-2.7-.3-1-1.1-1.7-2.1-1.9l-.7-.1c.5-.6.8-1.4.6-2.2-.2-1.1-1-2-2.1-2.1-.1 0-10.3-1.6-16.7-1.6-.7 0-1.3 0-1.9.1l-2.6-4.2C64 2.9 60.4.9 56.4.9c-2.1 0-4.2.6-6 1.7-2.5 1.6-4.3 4.1-5 6.9-6.6.6-13.5 2.3-20.3 5.1l-4.4-1.8c-1.4-.6-2.8-.8-4.3-.8-4.7 0-8.8 2.8-10.6 7.1-2.4 5.8.4 12.5 6.2 14.9l.2.1c-1.4 6.1-1.9 13.2-1.4 20.9.7 9.9-2.5 15-5.6 19.9-4.3 6.9-8.7 14 .4 31.7 0 2.4 0 4.5.2 6.2.6 5.7 2.4 15.2 7.2 15.2.5 0 1-.1 1.5-.4 1.3-.6 2.1-1.5 4.2-11.1 10.3 3.8 25.5 7.2 36.4 8.1-2.6 10.4-2 11.1-1.2 12.2.7.9 1.7 1.4 2.8 1.4 4.1 0 9-6.8 11.6-10.8 1.3-2 2.7-4.8 4.2-8.3C75.5 114 80 104.9 84 94c3.4 4.5 6.9 7.6 10.6 9.1 4.9 2 9.1 3 12.5 3 2 0 3.3-.4 4.1-.7 3.2-1.4 4.5-4.6 3.4-7.4zm-4.4 3.8c-.3.1-1.1.4-2.7.4-2 0-5.6-.5-11.1-2.7-3.9-1.6-8-5.7-11.7-12-.2-.4-.6-.6-1.1-.5-.4 0-.8.3-.9.8-4.3 12.8-9.
7 23.9-13 29.4 0 0 0 .1-.1.1-1.5 3.4-2.8 6.1-4 7.9-4.1 6.4-7.1 8.8-8.3 9.1 0-.9.4-3.6 2.5-11.9.1-.3 0-.7-.2-.9-.2-.3-.5-.4-.9-.4-11.6-.4-30.4-4.6-41.2-9.1-.1-.1-.3-.1-.4-.1-.2 0-.4 0-.5.1-.3.2-.5.4-.6.8-1.7 8.1-2.5 10.6-2.9 11.3-.8-.7-2.6-4-3.4-11.8-.2-1.7-.2-3.8-.2-6.3 0-.2 0-.4-.1-.5-8.5-16.3-5.2-21.7-.9-28.6 3.2-5.1 6.8-11 6.1-22.1-.5-8.3.1-15.7 1.8-21.9.2-.5-.1-1.1-.6-1.3l-2.3-.9c-3.9-1.6-5.8-6.1-4.2-10 1.2-2.9 4-4.8 7.1-4.8 1 0 2 .2 2.9.6l5.4 2.2c.3.1.6.1.9 0 7.5-3.2 15-5 22.2-5.4.6 0 1-.5 1.1-1.1.1-2.6 1.5-4.9 3.6-6.3 1.2-.8 2.6-1.2 4.1-1.2 2.7 0 5.1 1.4 6.5 3.6l3.4 5.5c.2.4.7.6 1.1.5l.4-.1c.7-.1 1.6-.2 2.6-.2 3.8 0 9.2.6 12.7 1.1l-3 1.6c-.4.2-.7.7-.6 1.2.1.5.5.8.9.9l5.8.9-2.6 2.2c-.3.3-.5.7-.4 1.1l1.3 5.4c0 .1.1.2.1.3.6 1 1 1.9 1.3 2.7 4.5 12.7 4 29-1.4 48.4-.1.3 0 .5.1.8 2.4 4.8 7.1 13.2 12.7 15.5 5.2 2.1 8.4 2.4 9.8 2.4.6 0 1 0 1.2-.1.9-.4 2 .1 2.4 1 .6.9.2 2-.7 2.4z" transform="translate(4 2)"/>
+ <path fill="url(#b)" fill-rule="nonzero" d="M36.6 40.6c-1.1 0-2.2-.2-3.3-.7l-16.2-6.6c-4.5-1.8-6.7-7-4.8-11.5 1.8-4.5 7-6.7 11.5-4.8L40 23.6c4.5 1.8 6.7 7 4.8 11.5-1.4 3.4-4.7 5.5-8.2 5.5z"/>
+ <path fill="url(#c)" fill-rule="nonzero" d="M70.8 39.3c-2.9 0-5.8-1.5-7.5-4.2L53.1 18.6c-2.6-4.1-1.3-9.6 2.8-12.1C60 3.9 65.5 5.2 68 9.3l10.2 16.5c2.6 4.1 1.3 9.6-2.8 12.1-1.4 1-3 1.4-4.6 1.4z"/>
+ <path fill="url(#d)" fill-rule="nonzero" d="M28.6 19.4c-2.2.9-12.8 10.5-11.1 37.1 1.7 26.2-21.6 21.8-3.8 53.4 3.9 6.9 50.2 17.7 58.6 12.7 2.5-1.5 31.6-54.6 19.1-89.8-4.1-11.5-28.5-28-62.8-13.4z"/>
+ <path fill="url(#e)" fill-rule="nonzero" d="M14.3 87.5s-2.6 17.8-1.7 26.6c1 8.8 3.3 13.7 5.1 12.8 1.7-.8 6.2-26.8 6.2-26.8l-9.6-12.6z"/>
+ <path fill="url(#f)" fill-rule="nonzero" d="M80.7 103s-5.5 17.1-10.3 24.6c-4.8 7.5-9.1 10.8-10.2 9.3-1.2-1.5 6.2-26.8 6.2-26.8l14.3-7.1z"/>
+ <path fill="url(#g)" fill-rule="nonzero" d="M33.5 19c7.8-4 28.9-2.7 38.4-4.1C77 14.1 91 16.3 91 16.3l-6 3.2 8.2 1.2-4.5 3.8 1.8 7.3-1.3-.7-46.3-12.8-9.4.7z"/>
+ <path fill="url(#h)" fill-rule="nonzero" d="M111.4 105.1c-2.3 0-6-.6-11.5-2.8-10-4-16.7-20.9-17.4-22.9-.6-1.5.2-3.2 1.7-3.8 1.5-.6 3.2.2 3.8 1.7 1.7 4.5 7.7 16.9 14.1 19.5 7.1 2.9 10.2 2.3 10.2 2.3 1.5-.6 3.2.1 3.8 1.6.6 1.5-.1 3.2-1.6 3.8-.4.3-1.4.6-3.1.6z"/>
+ <path fill="#FFF" fill-rule="nonzero" d="M35.4 29.8c-8.3 5.5-3.2 72.6 2.7 79.8 9.5 11.8 31.7 9.3 34.6 3 1.1-2.3 26-48.2 14.3-79.8-3-8-22.5-22.3-51.6-3z"/>
+ <path fill="url(#i)" fill-rule="nonzero" d="M50.3 43.8c.9.2 1.4 1.1 1.2 1.9l-.8 3.5c-.2.9-1.1 1.4-1.9 1.2-.9-.2-1.4-1.1-1.2-1.9l.8-3.5c.2-.9 1.1-1.4 1.9-1.2z"/>
+ <path fill="url(#j)" fill-rule="nonzero" d="M81.4 44.8c.9.2 1.4 1.1 1.2 1.9l-.8 3.5c-.2.9-1.1 1.4-1.9 1.2-.9-.2-1.4-1.1-1.2-1.9l.8-3.5c.2-.9 1-1.4 1.9-1.2z"/>
+ <path fill="url(#k)" fill-rule="nonzero" d="M48.9 57.6c-.5 0-1-.1-1.5-.2-3.5-.8-4.7-3.9-4.7-4.1-.3-.8.1-1.6.9-1.9.8-.3 1.6.1 1.9.9 0 .1.7 1.8 2.6 2.2 1.9.5 3.3-.8 3.3-.8.6-.6 1.5-.5 2.1 0 .6.6.5 1.5 0 2.1-.2.1-2 1.8-4.6 1.8z"/>
+ <path fill="url(#l)" fill-rule="nonzero" d="M56.6 69.2c-.8 0-1.4-.6-1.5-1.3-.1-.8.5-1.5 1.3-1.6 8.9-.7 17.1-2.5 18-3.8 1-1.7 1.2-4 1.2-4.1 0-.8.7-1.4 1.4-1.4.8 0 1.4.5 1.5 1.3.1 1.3.6 3.4 1.2 4.1 1.1 1.3 2.3 1.2 2.3 1.2.8 0 1.5.6 1.6 1.4.1.8-.6 1.5-1.4 1.6-1 .1-3.2-.3-4.8-2.3-.1-.2-.3-.4-.4-.6-.1.1-.1.2-.2.3-2 3.3-14.8 4.7-20.3 5.2h.1z"/>
+ <g fill-rule="nonzero">
+ <path fill="url(#m)" d="M2.4 4.3C1.3 5 7.7 8.2 8.6 8.2c1.3 0 7.8-2.8 7.6-5C16 2.1 6.8 1.3 2.4 4.3z" transform="translate(70 52)"/>
+ <path fill="url(#n)" d="M8.6 9.7C7.5 9.7 1.5 7 .9 5c-.2-.8.1-1.5.7-2C5.8.2 13.9.3 16.3 1.4c1 .4 1.2 1.1 1.3 1.6.1.9-.2 1.7-1 2.6-1.8 2.1-6.4 4.1-8 4.1zm-3.9-5c1.3.8 3.5 1.9 4.1 2 .9-.1 4.3-1.7 5.5-2.8-2-.4-6.5-.5-9.6.8z" transform="translate(70 52)"/>
+ </g>
+ <g fill-rule="nonzero">
+ <path fill="#C8C8CC" d="M115 92.8l-7.2.1-.5-40.7c0-3.3 2.5-6.1 5.7-6.3.3 0 .5.2.5.4l1.5 46.5z"/>
+ <path fill="#E1E1E6" d="M130.1 53.3c.2-.2.5-.1.7.1 1.9 2.7 1.4 6.4-1.1 8.5l-31.3 26-4.6-5.5 36.3-29.1z"/>
+ <path fill="url(#o)" d="M.7 10c-.4 2.6.2 5.2 1.9 7.1.8 1 1.8 1.7 2.9 2.3 3.5 1.6 7.8 1 11-1.7.2-.2.5-.4.7-.6l10.1-8.4c.4-.4.7-.9.8-1.4.1-.6-.1-1.1-.5-1.5l-2.9-3.4c-.2-.2-.4-.4-.7-.6-.2-.1-.5-.2-.7-.2-.6-.1-1.1.1-1.5.5l-2.9 2.4c-.1-.2-.2-.3-.4-.5-.8-1-1.8-1.7-2.9-2.3-3.5-1.6-7.8-1-11 1.7C2.5 5.1 1.2 7.5.7 10zm6.6-3.4c1.9-1.6 4.5-2.1 6.5-1.1.6.3 1.1.7 1.5 1.1 1.4 1.6 1.3 4.1.1 6.1-.5.7-1.1 1.4-2 2.1-1.9 1.3-4.2 1.5-5.9.7-.6-.3-1.1-.7-1.5-1.1-.8-1-1.2-2.4-.9-3.8 0-1.5.9-2.9 2.2-4z" transform="translate(77 75)"/>
+ <path fill="url(#p)" d="M0 2.5l.2 13.2v.9c.1 4.1 2.3 7.8 5.7 9.4 1.2.6 2.5.9 3.8.8 5.1-.1 9.3-4.7 9.2-10.4-.1-4.1-2.3-7.8-5.7-9.4-1.2-.6-2.5-.9-3.8-.8h-.6V2.4c0-.8-.5-1.5-1.2-1.9C7.3.4 7 .3 6.7.3L2.2.4C1.6.4 1.1.6.7 1 .2 1.4 0 2 0 2.5zm11.3 8.3c1.9.9 3.2 3.1 3.3 5.6 0 3.4-2.2 6.1-5 6.2-.7 0-1.3-.1-1.9-.4-1.8-.8-3-2.7-3.2-4.9v-.1c0-1.2.1-2.1.3-2.9.7-2.2 2.5-3.9 4.7-3.9.5 0 1.2.1 1.8.4z" transform="translate(107 83)"/>
+ <path fill="#C8C8CC" d="M111.3 70.6c1.3.1 2.2 1.3 2.1 2.5-.1 1.3-1.3 2.2-2.5 2.1-1.3-.1-2.2-1.3-2.1-2.5.1-1.2 1.2-2.2 2.5-2.1z"/>
+ </g>
+ <path fill="url(#q)" fill-rule="nonzero" d="M1.4 2.1L.3 5.7c-1 3.1.7 6.4 3.8 7.4 3.1 1 6.4-.7 7.4-3.8L14.4.1l-13 2z" transform="translate(57 67)"/>
+ <path fill="url(#r)" fill-rule="nonzero" d="M63.3 74.7h-.2c-.4-.1-.6-.5-.5-.9l2.2-6.8c.1-.4.5-.6.9-.5.4.1.6.5.5.9L64 74.2c-.1.3-.4.5-.7.5z"/>
+ <path fill="url(#s)" fill-rule="nonzero" d="M58.7 98.1c-17.5 0-33-27.8-33.6-29-.8-1.4-.3-3.2 1.2-4 1.4-.8 3.2-.3 4 1.2 4.2 7.6 17.5 27 29.4 25.9 15.2-1.4 22.4-6.9 22.4-7 1.3-1 3.1-.8 4.1.5 1 1.3.8 3.1-.4 4.1-.3.3-8.5 6.7-25.6 8.2-.5.1-1 .1-1.5.1z"/>
+ <path fill="url(#t)" fill-rule="nonzero" d="M112.5 97.8s-8 3.2-8.1 5.9c-.1 2.7 8.2 6 11.8.7 3.6-5.2-2.3-7.2-3.7-6.6z"/>
+ <path fill="url(#u)" fill-rule="nonzero" d="M30.5 65.3s.7 5.9 4.4 9.2c3.7 3.3-4.8 8.1-4.4 15.4.4 7.4 0-24.6 0-24.6z"/>
+ <path fill="url(#v)" fill-rule="nonzero" d="M58.8 98.9h-1.1C44 98.5 32 81 31.5 80.2c-.2-.3-.1-.8.2-1 .3-.2.8-.1 1 .2.1.2 12.1 17.7 25 18 12.8.3 25.3-6.2 27.1-7.7.5-.4.9-2.6.2-3.7-.7-1-2.4-.3-3.6.5-.3.2-.8.1-1-.2-.2-.3-.1-.8.2-1 3.4-2.1 4.9-.9 5.6-.1 1.2 1.6.8 4.7-.4 5.7-1.2 1-13.4 8-27 8z"/>
+ <path fill="url(#w)" fill-rule="nonzero" d="M110.8 108.3c-1.3 0-2.8-.3-4.4-1.3-1.9-1-2.8-2.2-2.7-3.6.2-2.7 4.7-4.5 5.2-4.7.4-.1.8 0 1 .4.1.4 0 .8-.4 1-1.6.6-4.2 2.1-4.3 3.5-.1.9 1 1.7 1.9 2.2 2.2 1.2 4.3 1.4 6.1.6 2.1-1 3.1-2.8 3.2-3.2.1-.6.5-2.4-.5-3.5-.7-.8-2.1-1.1-4.1-.9-.4 0-.8-.3-.8-.7 0-.4.3-.8.7-.8 2.5-.2 4.3.2 5.3 1.4 1.5 1.6 1 4 .8 4.7-.2.9-1.6 3.2-4 4.3-.8.3-1.8.6-3 .6z"/>
+ <path fill="url(#x)" fill-rule="nonzero" d="M61.1 125.5c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7 3.2 0 8.1-1 8.2-1 .4-.1.8.2.9.6.1.4-.2.8-.6.9-.2-.1-5.1.9-8.5.9z"/>
+ <path fill="url(#y)" fill-rule="nonzero" d="M23 25.4h-.2c-.4-.1-.6-.5-.5-.9.2-.7 2.4-5 7.8-7.4.4-.2.8 0 1 .4.2.4 0 .8-.4 1-4.7 2-6.7 5.8-6.9 6.4-.2.3-.5.5-.8.5z"/>
+ <path fill="url(#z)" fill-rule="nonzero" d="M68.5 14.8c-8.9 0-18.2-1.2-18.3-1.2-.4-.1-.7-.4-.6-.8.1-.4.4-.7.8-.6.1 0 14.1 1.8 24.1 1 .4 0 .8.3.8.7 0 .4-.3.8-.7.8-2 0-4 .1-6.1.1z"/>
+ <path fill="url(#A)" fill-rule="nonzero" d="M88.8 89h-.2c-.4-.1-.6-.5-.5-.9l2-6c.1-.4.5-.6.9-.5.4.1.6.5.5.9l-2 6c-.1.3-.4.5-.7.5z"/>
+ <path fill="url(#B)" fill-rule="nonzero" d="M21 119.1h-.1c-.4-.1-.7-.5-.6-.9l1.7-8.6c.1-.4.5-.7.9-.6.4.1.7.5.6.9l-1.7 8.6c-.2.4-.5.6-.8.6z"/>
+ </g>
+ <path fill="#D7D7DB" fill-rule="nonzero" d="M70.8 82.4c-3.7 0-6.6 3-6.6 6.6h6.6v-6.6zm20 0h-6.6V89h6.6v-6.6zm13.3 0V89h6.6c0-3.6-3-6.6-6.6-6.6zm-23.3 0h-6.6V89h6.6v-6.6zm19.9 0h-6.6V89h6.6v-6.6zm3.4 16.6h6.6v-6.6h-6.6V99zm0 20c3.7 0 6.6-3 6.6-6.6h-6.6v6.6zm0-10h6.6v-6.6h-6.6v6.6zm-1.5-7.2c-2.1-3-6.2-3.7-9.3-1.6l-12.7 9.4-6.5-4.6c0-.3.1-.6.1-1 0-2.7-1.3-5.1-3.3-6.6v-5h-6.6v3.5c-3.8.8-6.6 4.1-6.6 8.1 0 4.6 3.7 8.3 8.3 8.3 1.8 0 3.5-.6 4.8-1.6l4.1 2.9-4.6 3.3c-1.3-.8-2.7-1.2-4.3-1.2-4.6 0-8.3 3.7-8.3 8.3 0 4.6 3.7 8.3 8.3 8.3 4.6 0 8.3-3.7 8.3-8.3 0-.6-.1-1.1-.2-1.6l28.5-20.6zm-36.7 6.4c-2.3 0-4.2-1.9-4.2-4.2 0-2.3 1.9-4.2 4.2-4.2 2.3 0 4.2 1.9 4.2 4.2-.1 2.3-1.9 4.2-4.2 4.2zm0 19.9c-2.3 0-4.2-1.9-4.2-4.2 0-2.3 1.9-4.2 4.2-4.2 2.3 0 4.2 1.9 4.2 4.2-.1 2.4-1.9 4.2-4.2 4.2zm17.9-8l10 7.6c3 2.1 7.2 1.4 9.3-1.6L89.6 116l-5.8 4.1z"/>
+ <g fill="#D7D7DB" fill-rule="nonzero">
+ <path d="M17.5 26.8l-.1-.1.1.1zM266.5 1.5v4.4c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5V3h-2.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h4.4c.8 0 1.5.7 1.5 1.5zM266.5 14.4v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17V40c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.6 1.5 1.4zm0 17.1V57c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17V74c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17V91c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17.1v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17.1v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.6 1.5 1.5zm0 17v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5
1.5zM266.5 184.8v4.4c0 .8-.7 1.5-1.5 1.5h-4.4c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h2.9v-2.9c0-.8.7-1.5 1.5-1.5s1.5.6 1.5 1.5zM253.3 189.2c0 .8-.7 1.5-1.5 1.5H243c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5H208c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.4.7 1.4 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8
c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5H94c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5H59c.8 0 1.4.7 1.4 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zM7.8 189.2c0 .8-.7 1.5-1.5 1.5H2c-.8 0-1.5-.7-1.5-1.5v-4.4c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5v2.9h2.9c.8 0 1.4.7 1.4 1.5zM3.4 14.4v8.5c0 .8-.7 1.5-1.5 1.5S.4 23.7.4 22.9v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17V40c0 .8-.7 1.5-1.5 1.5S.4 40.8.4 40v-8.5c0-.8.7-1.5 1.5-1.5s1.5.6 1.5 1.4zm0 17.1V57c0 .8-.7 1.5-1.5 1.5S.4 57.8.4 57v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17V74c0 .8-.7 1.5-1.5 1.5S.4 74.8.4 74v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17V91c0 .8-.7 1.5-1.5 1.5S.4 91.8.4 91v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17.1v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7
-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17.1v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.6 1.5 1.5zm0 17v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zM7.8 1.5c0 .8-.7 1.5-1.5 1.5H3.4v2.9c0 .8-.7 1.5-1.5 1.5S.4 6.7.4 5.9V1.5C.4.7 1.1 0 1.9 0h4.4c.9 0 1.5.7 1.5 1.5zM253.3 1.5c0 .8-.7 1.5-1.5 1.5H243c-.8 0-1.5-.7-1.5-1.5S242.2 0 243 0h8.8c.8 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5H208c-.8 0-1.5-.7-1.5-1.5S207.2 0 208 0h8.8c.8 0 1.4.7 1.4 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5h-8.8c-
.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5S137 0 137.8 0h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5S84.4 0 85.2 0H94c.9 0 1.5.7 1.5 1.5zM78 1.5c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5S66.9 0 67.7 0h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5S49.3 0 50.1 0H59c.8 0 1.4.7 1.4 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5S31.8 0 32.6 0h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5S14.3 0 15.1 0h8.8c.8 0 1.5.7 1.5 1.5z"/>
+ </g>
+ <path d="M-18-32h352v303H-18z"/>
+ </g>
+</svg>
diff --git a/browser/extensions/onboarding/content/img/figure_singlesearch.svg b/browser/extensions/onboarding/content/img/figure_singlesearch.svg
new file mode 100644
index 000000000000..9be029397ccf
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/figure_singlesearch.svg
@@ -0,0 +1 @@
+<svg width="303" height="253" viewBox="0 0 303 253" xmlns="http://www.w3.org/2000/svg"><title>search</title><defs><linearGradient x1="-18.632%" y1="-397.383%" x2="117.795%" y2="492.152%" id="a"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-312.046%" y1="-3945.649%" x2="293.266%" y2="2768.992%" id="b"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-291.258%" y1="-362.215%" x2="267.9%" y2="331.228%" id="c"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-145.39%" y1="-145.464%" x2="148.231%" y2="148.054%" id="d"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-760.952%" y1="-957.112%" x2="540.851%" y2="637.214%" id="e"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></
linearGradient></defs><g fill="none" fill-rule="evenodd"><path d="M-18-9h352v303H-18z"/><g fill-rule="nonzero"><g fill="#D7D7DB"><path d="M262.3 209.3H138.8c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h123.5c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1zM245.6 203.7h-31c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h31c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zM217.5 214.1h-13.4c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-22.3 0h-3.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-7.8 0h-1.1c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-11.1 0h-13.4c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm-22.4 0h-3.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.2.6-.6.6zm-7.8 0H145c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-11.1 0h-13.4c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6H135c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm-22.3 0h-3.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h3.3c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm-7.8 0h-1.1c-.3 0-.6-.2-.6
-.6 0-.3.2-.6.6-.6h1.1c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm-11.2 0H80.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-22.3 0H68c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.2.6-.5.6zm-7.8 0h-1.1c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h1.1c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm-11.2 0H39c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6z"/></g><path d="M6.3 148.8c-2.8 0-5.1-2.3-5.1-5.1v-27.2c0-2.8 2.3-5.1 5.1-5.1h245.8c2.8 0 5.1 2.3 5.1 5.1v27.2c0 2.8-2.3 5.1-5.1 5.1H6.3z" fill="#FFF"/><path d="M252.1 2.4c2.2 0 4 1.8 4 4v27.2c0 2.2-1.8 4-4 4H6.3c-2.2 0-4-1.8-4-4V6.4c0-2.2 1.8-4 4-4h245.8zm0-2.2H6.3C2.9.2.1 3 .1 6.4v27.2c0 3.4 2.8 6.2 6.2 6.2h245.8c3.4 0 6.2-2.8 6.2-6.2V6.4c.1-3.4-2.7-6.2-6.2-6.2z" fill="url(#a)" transform="translate(0 110)"/><path d="M157 23.5h24.1s-7.5-16.9 8.5-19c14.3-1.9 19.9 12.7 19.9 12.7s1.7-8.5 10.2-6.8c8.4 1.6 14.6 15.1 14.6 15.1h21" fill="#F9F9FA"/><path d="M255.6 21.4h-6.2c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h6.2c.3 0 .6.2.6.6 0 .
4-.3.6-.6.6zm-16.2 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-57.9-.6h-1.8c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h1c-.1-.2-.2-.4-.3-.7-.1-.3.1-.6.3-.7.3-.1.6.1.7.3.3.9.5 1.4.5 1.4.1.2.1.4 0 .5 0 .3-.2.4-.4.4zm-10.7 0h-13.4c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6-.1.3-.3.6-.6.6zm63.4-.1c-.2 0-.4-.1-.5-.3-.4-.6-.9-1.6-1.7-2.8-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.8 1.2 1.4 2.2 1.8 2.9.2.3.1.6-.2.8h-.4zM179.9 15c-.3 0-.5-.2-.6-.5-.1-.4-.1-.8-.1-1.1 0-.3.2-.6.5-.6s.6.2.6.5c0 .4.1.7.1 1.1.1.2-.1.5-.5.6.1 0 0 0 0 0zm29.1-2.5c-.2 0-.4-.1-.5-.3-.2-.3-.3-.6-.5-1-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.2.4.4.7.6 1 .1.3 0 .6-.2.8-.3.1-.3.1-.4.1zm17.7-1.4c-.1 0-.3 0-.4-.1-2.1-1.8-4.3-3-6.3-3.4-2-.4-3.8-.2-5.3.6-.3.1-.6 0-.8-.2-.1-.3 0-.6.2-.8 1.7-.9 3.8-1.1 6.1-.7 2.3.4 4.6 1.6 6.9 3.6.2.2.3.6.1.8-.2.1-.4.2-.5.2zm-20.9-3.2c-.2 0-.3-.1-.4-.2-.7-.8-1.5-1.6-2.3-2.3-.2-.2-.3-.6-.1-.8.2-.2.5-.3.8-.1.9.7 1.7 1.5 2.4 2.4.2.2.2.6-.1.8 0 .2-.2.2-.3.2zm-23-3.2c-.2 0-.3-.1-.4-.2-.2-.
2-.2-.6 0-.8 1.8-1.6 4.3-2.7 7.5-3.1 1.9-.3 3.8-.2 5.7.1.3.1.5.3.5.6-.1.3-.3.5-.6.5-1.7-.3-3.5-.3-5.3-.1-2.9.4-5.3 1.3-6.9 2.8-.2.1-.4.2-.5.2z" fill="#D7D7DB"/><path d="M256.3 25.7H157c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h99.4c.6 0 1.1.5 1.1 1.1 0 .6-.6 1.1-1.2 1.1zM4 46.5h13.4s-4.2-9.4 4.7-10.6C30 34.8 33.2 43 33.2 43s.9-4.7 5.7-3.8c4.7.9 8.1 8.4 8.1 8.4h11.7" fill="#F9F9FA"/><path d="M17.8 45H4.5c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.7.6zm41.3-.1h-.5c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h.5c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-5 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-20.4-3.4c-.2 0-.4-.2-.5-.4L33 41c-.1-.3 0-.6.2-.7.5-1.6 2-3.8 4.9-3.8.4 0 .8 0 1.3.1 1.7.3 3.3 1.3 5 2.9.2.2.2.6 0 .8-.2.2-.6.2-.8 0-1.5-1.4-3-2.3-4.4-2.6-.4-.1-.7-.1-1-.1-3.2 0-3.9 3.3-4 3.5-.1.2-.3.4-.5.4zm-15.6-4.9c-.1 0-.3 0-.4-.1-.2-.2-.3-.6-.1-.8.7-.9 1.8-1.5 3.1-1.9.3-.1.6.1.7.4.1.3-.1.6-.4.7-1.1.3-1.9.9-2.5 1.6 0 0-.2.1-.4.1zm8.3-1.9h-.1c-.3-.1-.7-.2-1-.2-.3
0-.5-.3-.5-.6s.3-.5.6-.5c.4.1.8.1 1.2.2.3.1.5.4.4.7-.1.2-.3.4-.6.4z" fill="#D7D7DB"/><path d="M59.5 48.8H4.3c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h55.3c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.2 1.1z" fill="#F9F9FA"/><g><path d="M210 92.1v-9.5c0-2-1.6-3.6-3.6-3.6H38.3c-2 0-3.6 1.6-3.6 3.6v9.5c0 2 1.6 3.6 3.6 3.6h168.1c2 0 3.6-1.6 3.6-3.6zm0-34.8v-9.5c0-2-1.6-3.6-3.6-3.6H38.3c-2 0-3.6 1.6-3.6 3.6v9.5c0 2 1.6 3.6 3.6 3.6h168.1c2 0 3.6-1.6 3.6-3.6zm0 121.3v-9.5c0-2-1.6-3.6-3.6-3.6H38.3c-2 0-3.6 1.6-3.6 3.6v9.5c0 2 1.6 3.6 3.6 3.6h168.1c2 0 3.6-1.6 3.6-3.6z" fill="#FFF"/><path d="M206 44.2c2.2 0 4 1.8 4 4v8.7c0 2.2-1.8 4-4 4H38.8c-2.2 0-4-1.8-4-4v-8.7c0-2.2 1.8-4 4-4H206zm0 34.8c2.2 0 4 1.8 4 4v8.7c0 2.2-1.8 4-4 4H38.8c-2.2 0-4-1.8-4-4V83c0-2.2 1.8-4 4-4H206zm0 86.5c2.2 0 4 1.8 4 4v8.7c0 2.2-1.8 4-4 4H38.8c-2.2 0-4-1.8-4-4v-8.7c0-2.2 1.8-4 4-4H206zm0-123.6H38.8c-3.4 0-6.2 2.8-6.2 6.2v8.7c0 3.4 2.8 6.2 6.2 6.2H206c3.4 0 6.2-2.8 6.2-6.2v-8.7c0-3.4-2.8-6.2-6.2-6.2zm0 34.8H38.8c-3.4 0-6.2 2.8-6.
2 6.2v8.7c0 3.4 2.8 6.2 6.2 6.2H206c3.4 0 6.2-2.8 6.2-6.2V83c0-3.5-2.8-6.3-6.2-6.3zm0 86.6H38.8c-3.4 0-6.2 2.8-6.2 6.2v8.7c0 3.4 2.8 6.2 6.2 6.2H206c3.4 0 6.2-2.8 6.2-6.2v-8.7c0-3.4-2.8-6.2-6.2-6.2z" fill="#D7D7DB"/></g><path d="M300.8 176.6l-.1-.1-4.7-4.3c-.2-1.2-.8-2.3-1.7-3.1l-17.4-16c-.9-.8-2-1.3-3.2-1.4l-8.3-7.6c-1-1-2.2-1.7-3.5-2.1 10.8-18 8.1-41.3-6.9-56.4-8.7-8.7-20.3-13.5-32.6-13.5s-23.9 4.8-32.6 13.5c-18 18-18 47.3 0 65.2 8.7 8.7 20.3 13.5 32.6 13.5 8.3 0 16.6-2.3 23.7-6.6.4 1.3 1.2 2.6 2.2 3.6l7.6 8.3c.1 1.2.6 2.3 1.4 3.2l16 17.4c.8.9 1.9 1.5 3.1 1.7l4.2 4.6.1.1c1.5 1.5 3.4 2.3 5.7 2.3 3.6 0 7.8-2 11.2-5.4 5.7-5.8 7.1-13 3.2-16.9z" fill="#F9F9FA"/><g><path d="M224.1 88.7c-10.7 0-20.3 5.1-26.3 13h52.6c-6.1-7.9-15.6-13-26.3-13z" fill="#F9F9FA"/><path d="M248.9 152.7c.5-1.5 1.4-3.1 3.1-4.8 1.6-1.6 3.2-2.6 4.8-3.1l-2.5-2.5c12-15.9 10.8-38.6-3.7-53.1-7.9-7.9-18.3-11.9-28.7-11.9-10.4 0-20.8 4-28.7 11.9-15.8 15.8-15.8 41.5 0 57.4 7.9 7.9 18.3 11.9 28.7 11.9 8.6 0 17.2-2.7 24.4-8
.2l2.6 2.4zm-27-1.8c-11.8 0-22.1-6.2-28-15.4.1.1.1.3.2.4-1-1.6-1.9-3.3-2.7-5.1v-.1c-.2-.4-.4-.9-.5-1.3l-.6-1.8v-.1c-.9-3-1.4-6.2-1.4-9.6 0-3.8.7-7.5 1.8-10.9.6-1.8 1.4-3.6 2.4-5.3h.2c5.7-10 16.4-16.7 28.8-16.7 12.3 0 23.1 6.7 28.7 16.7h.1c.9 1.7 1.7 3.4 2.4 5.3 1.2 3.4 1.8 7 1.8 10.9-.1 18.2-14.9 33-33.2 33z" fill="#CCEDF0"/><path d="M253.2 107h-58.7c-2.2 4.4-3.5 9.5-3.5 14.8 0 4.9 1.1 9.6 3 13.7 5.9 9.3 16.2 15.4 28 15.4 18.3 0 33.1-14.8 33.1-33.1-.1-3.8-.7-7.4-1.9-10.8zM190.8 107h-.1c-1.2 3.4-1.8 7-1.8 10.9 0 3.3.5 6.5 1.4 9.6-.9-3-1.3-6.1-1.3-9.3-.1-4 .6-7.8 1.8-11.2zM190.9 129.3l-.6-1.8.6 1.8z" fill="#FFF"/><path d="M71.3 26.7H18.7c-1.3 1.6-2.4 3.4-3.3 5.3h58.7c-.6-1.8-1.4-3.6-2.4-5.3h-.1c.4.7.8 1.5 1.2 2.2-.4-.7-.9-1.5-1.5-2.2z" fill="url(#b)" transform="translate(179 75)"/><path d="M193.3 101.7h-.2c-.9 1.7-1.7 3.4-2.4 5.3h.1c.7-1.9 1.5-3.6 2.5-5.3z" fill="#E9E9EE"/><path d="M15.5 32c.9-1.9 2-3.6 3.3-5.3 6-7.9 15.6-13 26.3-13 10.7 0 20.2 5.1 26.3 13 .5.7 1.1 1.5 1.6 2.2-.4-.8-.
7-1.5-1.2-2.2C66.1 16.7 55.4 10 43.1 10S20 16.7 14.3 26.7c-1 1.7-1.8 3.4-2.4 5.3-1.2 3.5-1.9 7.2-1.9 11.1 0 3.2.5 6.4 1.3 9.3v.1l.6 1.8c.2.5.3.9.5 1.3v.1c.7 1.8 1.6 3.5 2.7 5.1-.1-.1-.1-.3-.2-.4-1.9-4.2-3-8.8-3-13.7.1-5.3 1.4-10.3 3.6-14.7z" fill="url(#c)" opacity=".4" transform="translate(179 75)"/><path d="M119.1 103.6l-5.7-5.2c0-.2.1-.3.1-.5 0-.6-.3-1.2-.7-1.6l-17.4-16c-.4-.4-1-.6-1.5-.6-.2 0-.4 0-.7.1l-9.4-8.6c-.8-.8-1.8-1.3-3-1.5l-2.5-2.5c11.6-16.8 9.5-39.9-5-54.5C65.2 4.6 54.5.2 43 .2S20.8 4.7 12.7 12.7C-4 29.4-4 56.5 12.7 73.2c8.1 8.1 18.8 12.5 30.2 12.5 8.6 0 17.1-2.7 24.2-7.5l2.6 2.6c.2 1.2.8 2.2 1.6 3l8.6 9.4c-.2.7-.1 1.6.5 2.2l16 17.4c.4.4 1 .7 1.6.7.2 0 .3 0 .5-.1l5.2 5.7c.8.8 2 1.3 3.3 1.3 2.7 0 6.1-1.7 8.8-4.5 4.4-4.5 5.8-9.8 3.3-12.3zM14.3 71.5C-1.5 55.7-1.5 30 14.3 14.1 22.2 6.2 32.6 2.2 43 2.2c10.4 0 20.8 4 28.7 11.9 14.5 14.5 15.7 37.2 3.7 53.1l2.5 2.5c-1.6.5-3.2 1.5-4.8 3.1-1.7 1.7-2.7 3.3-3.1 4.8l-2.5-2.5c-7.2 5.5-15.8 8.2-24.4 8.2-10.5.1-20.9-3.9-28.8-11.8zm96.9
26.3L98 111.1 82 93.7l11.8-11.8 17.4 15.9z" fill="url(#d)" transform="translate(179 75)"/><path fill="#CCEDF0" d="M277 186.1l13.2-13.3-17.4-15.9-11.8 11.8"/></g><ellipse fill="#EDEDF0" cx="242.1" cy="246.7" rx="57.2" ry="5.8"/><g><path d="M21.3 33.9c-.6 0-1.3-.2-1.8-.6L7.1 23.2c-1.3-.9-2.4-2-3.2-3.2C1 15.5 1.6 9.5 5.4 5.8c2.1-2.1 5-3.3 8-3.3s5.8 1.1 7.9 3.2c2.1-2 4.9-3.2 7.9-3.2 3.3 0 6.5 1.5 8.7 4 3.2 3.8 3.5 9.4.8 13.5-.8 1.3-1.9 2.3-3.2 3.2l-12.3 10c-.6.5-1.2.7-1.9.7z" fill="url(#e)" transform="translate(201 113)"/><path d="M214.4 117c2.5 0 5 1 6.9 2.9.3.3.6.4 1 .4s.7-.1 1-.4c1.9-1.9 4.4-2.8 6.9-2.8 2.7 0 5.5 1.2 7.5 3.5 2.8 3.3 3 8.1.7 11.7-.8 1.1-1.7 2-2.7 2.7l-12.4 10.1c-.2.2-.5.3-.8.3-.3 0-.5-.1-.8-.3L209.2 135c-1.1-.7-2.1-1.6-2.8-2.8-2.5-3.8-2-9 1.3-12.2 1.7-2 4.2-3 6.7-3zm0-3.1c-3.4 0-6.7 1.3-9.1 3.8-4.3 4.3-5 11.1-1.7 16.2.9 1.4 2.2 2.7 3.6 3.7l12.4 10c.8.6 1.8 1 2.8 1 1 0 2-.3 2.7-1l12.3-10.1c1.4-1 2.6-2.1 3.5-3.5 3.1-4.7 2.8-11.1-.9-15.4-2.5-2.9-6.1-4.6-9.9-4.6-2.9 0-5.
6.9-7.9 2.7-2.2-1.9-4.9-2.8-7.8-2.8z" fill="#FFF"/><path d="M208.6 128.1h-.1c-.9-.1-1.6-.9-1.5-1.8.3-3.2 2.5-5.8 5.7-6.5.9-.2 1.8.4 1.9 1.2.2.9-.4 1.8-1.2 1.9-1.7.4-3 1.8-3.1 3.6-.2 1-.9 1.6-1.7 1.6z" fill="#F9F9FA"/></g></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/figure_sync.svg b/browser/extensions/onboarding/content/img/figure_sync.svg
new file mode 100644
index 000000000000..74562d37236d
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/figure_sync.svg
@@ -0,0 +1 @@
+<svg width="279" height="212" viewBox="0 0 279 212" xmlns="http://www.w3.org/2000/svg"><title>sync</title><defs><linearGradient x1="-424.525%" y1="-219.797%" x2="201.215%" y2="136.157%" id="a"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1416.558%" y1="-1417.275%" x2="631.855%" y2="631.14%" id="b"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1909.4%" y1="-1924.057%" x2="675.504%" y2="691.989%" id="c"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1453.558%" y1="-828.355%" x2="354.762%" y2="235.706%" id="d"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-608.073%" y1="-599.552%" x2="1804.502%" y2="1813.024%" id="e"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"
/></linearGradient><linearGradient x1="-55.527%" y1="-25.138%" x2="334.297%" y2="252.524%" id="f"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-359.418%" y1="-359.43%" x2="1512.409%" y2="1512.397%" id="g"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-393.876%" y1="-203.242%" x2="1247.254%" y2="755.651%" id="h"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-772.819%" y1="-773.412%" x2="1098.573%" y2="1098.414%" id="i"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1129.33%" y1="-1133.526%" x2="1256.735%" y2="1279.05%" id="j"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-78.929%" y1="-156.663%" x2="182.03%" y2="261.703%" id
="k"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-2.965%" y1="-86.281%" x2="110.352%" y2="213.059%" id="l"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-833.673%" y1="-459.972%" x2="807.063%" y2="498.921%" id="m"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-17.606%" y1="-93.916%" x2="104.414%" y2="177.35%" id="n"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><path d="M-37-28h352v268H-37z"/><g fill-rule="nonzero"><g><path d="M23 23.1h23.9S39.4 6.4 55.3 4.2c14.2-1.9 19.8 12.6 19.8 12.6s1.7-8.4 10.1-6.8c8.3 1.6 14.5 15 14.5 15h20.8" fill="#F9F9FA"/><path d="M121 21.1h-5.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h5.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-15.4 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4
.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.2.6-.6.6zm-5.5-.1c-.2 0-.4-.1-.5-.3-.2-.3-.7-1.4-1.7-2.9-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2 1 1.5 1.6 2.6 1.7 2.9.1.3 0 .6-.2.8-.1.1-.2.1-.3.1zm-52.7-.6h-1.6c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h.8c-.1-.2-.2-.5-.3-.9-.1-.3.1-.6.4-.7.3-.1.6.1.7.4.3 1 .6 1.6.6 1.6.1.2.1.4 0 .5-.3.2-.5.3-.6.3zm-10.6 0H23.4c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm8.9-5.9c-.3 0-.5-.2-.6-.5 0-.4-.1-.8-.1-1.1 0-.3.2-.6.5-.6s.6.2.6.5c0 .4.1.7.1 1.1.1.2-.1.5-.5.6.1-.1.1 0 0 0zm29.2-1.8c-.2 0-.4-.1-.5-.3-.1-.3-.3-.6-.5-1-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.2.4.4.7.5 1 .1.3 0 .6-.2.8-.2.1-.2.1-.3.1zm17.8-1.4c-.1 0-.3 0-.4-.1-2.3-2.1-4.6-3.4-6.8-3.8-.7-.1-1.4-.2-2-.2-1 0-2 .2-2.8.5-.3.1-.6 0-.7-.3-.1-.3 0-.6.3-.7 1-.4 2.1-.6 3.3-.6.7 0 1.4.1 2.2.2 2.4.5 4.9 1.8 7.3 4 .2.2.2.6 0 .8-.1.1-.2.2-.4.2zM71.8 8c-.2 0-.3-.1-.4-.2-.7-.9-1.5-1.6-2.3-2.3-.2-.2-.3-.6-.1-.8.2-.2.6-.3.8-.1.8.7 1.6 1.6 2.4 2.5.2.2.2.6-.1.8-.1.1-.2.1-.3.1zM48.9 4.2c-.2 0-.3-.1-.4-.2-.2-.2-.2-.6.
1-.8C50.4 1.7 52.8.8 55.8.3c2.1-.3 4.1-.2 6 .1.3.1.5.4.4.7-.1.3-.3.5-.7.4-1.8-.4-3.7-.4-5.6-.1-2.8.4-5 1.3-6.6 2.6-.2.2-.3.2-.4.2z" fill="#D7D7DB"/><path d="M121.6 25.3H23c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h98.6c.6 0 1.1.5 1.1 1.1 0 .6-.4 1.1-1.1 1.1zM222.4 31.5h13.3s-4.2-9.3 4.7-10.5c7.9-1.1 11 7 11 7s.9-4.7 5.6-3.8c4.6.9 8 8.3 8 8.3h11.6" fill="#F9F9FA"/><path d="M236.1 30h-13.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.3v.5l.5-.2c.1.2.1.4 0 .6-.2.2-.3.3-.5.3zm36.5-.2h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-20.8-3.3h-.1c-.3-.1-.5-.4-.4-.7.1-.4 1.1-4.3 5-4.3.4 0 .8 0 1.2.1 1.7.3 3.5 1.4 5.2 3.1.2.2.2.6 0 .8-.2.2-.6.2-.8 0-1.6-1.6-3.1-2.5-4.6-2.8-.4-.1-.7-.1-1-.1-3 0-3.8 2.8-3.9 3.4-.1.3-.4.5-.6.5zm-15.3-5.1c-.1 0-.3 0-.4-.1-.2-.2-.2-.6 0-.8.8-.8 1.8-1.5 3.1-1.8.3-.1.6.1.7.4.1.3-.1.6-.4.7-1.1.3-2 .8-2.6 1.5-.1.1-.3.1-.4.1zm8.3-1.6h-.2c-.3-.1-.7-.2-1-.2-.3-.1-.5-.3-.5-.6.1-.3.3-.5.6-.5l1.2.3c.3.1.5.4.4.7 0 .1-.2.3-.5.3z" fill="#D7D7DB"/><path d="M277.5
33.7h-54.9c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h54.9c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1z" fill="#F9F9FA"/><ellipse fill="#EDEDF0" cx="144.1" cy="206.4" rx="59.7" ry="5.2"/><path d="M187.8 21.6h.1c.7 0 1.3-.5 1.3-1.2.1-1.5 1.2-2.7 2.6-3 .7-.2 1.2-.9 1-1.6-.2-.7-.9-1.2-1.6-1-2.6.6-4.5 2.8-4.7 5.4 0 .7.6 1.4 1.3 1.4z" fill="#F9F9FA"/><ellipse fill="#EDEDF0" cx="248.8" cy="206.4" rx="25.7" ry="4.5"/><ellipse fill="#EDEDF0" cx="35.7" cy="206.4" rx="35" ry="4.5"/></g><path d="M173 63.2c-.1-.3-.5-.5-.9-.4-.9.4-1.8.7-2.7 1.1-.2.1-.3.3-.4.5h2.7c.3-.1.6-.3.9-.4.4-.1.6-.5.4-.8zM231.7 155.7c.1.1.3.2.5.2s.3-.1.5-.2c.2-.2.4-.5.7-.7h-1.8c-.1.2-.1.5.1.7zM149.2 63.7c.3-.2.3-.7.1-.9-.2-.3-.7-.3-.9-.1-.3.3-.7.6-1 .8-.3.2-.3.6-.1.9h1.1c.2-.2.5-.4.8-.7zM65.2 62.8c-.2.1-.3.1-.5.2.5 0 .9.1 1.3.2-.1-.4-.5-.5-.8-.4zM129.2 63.9c.1.1.3.2.4.2.2 0 .4-.1.5-.2.2-.3.2-.7-.1-.9-.3-.3-.7-.6-1-.8-.3-.2-.7-.2-.9.1-.2.3-.2.7.1.9.3.1.6.4 1 .7zM42.3 62.8c-.2-.3-.7-.3-.9-.1l-.3.3h1.4c-.1-.1-.1-.2-.2-.2z" fill="#F3
F3F7"/><path d="M196.2 171.5c0 .4-.3.7-.6.7-1 .1-2 .1-2.9.1h-.1c-3.9 0-7.9-.4-11.7-1.2-.4-.1-.6-.4-.5-.8.1-.4.4-.6.8-.5 3.7.8 7.6 1.2 11.4 1.2 1 0 2 0 2.9-.1.4-.1.7.2.7.6zm10.5-109.3c3.7 1 7.4 2.4 10.8 4.1.1 0 .2.1.3.1.2 0 .5-.1.6-.4.2-.3 0-.7-.3-.9-3.5-1.8-7.2-3.2-11.1-4.2-.4-.1-.7.1-.8.5 0 .3.2.7.5.8zm-11.3-3.1c-4.9-.2-9.9.2-14.7 1.2-.4.1-.6.4-.5.8.1.3.3.5.7.5h.1c4.7-1 9.6-1.4 14.4-1.2.4 0 .7-.3.7-.6-.1-.4-.3-.7-.7-.7zm-25.5 108.4c.3 0 .5-.1.6-.4.2-.3 0-.7-.3-.9-.6-.3-1.1-.5-1.7-.8h-2.9c1.3.7 2.7 1.4 4.1 2 0 0 .1.1.2.1zM223.3 68c-.3-.2-.7-.1-.9.2-.2.3-.1.7.2.9.8.5 1.6 1.1 2.4 1.6.1.1.3.1.4.1.2 0 .4-.1.5-.3.2-.3.1-.7-.2-.9-.8-.5-1.6-1-2.4-1.6zm-.6 94c-3.2 2.1-6.7 3.9-10.3 5.3-.3.1-.5.5-.4.9.1.3.4.4.6.4h.2c3.7-1.4 7.2-3.2 10.5-5.4.3-.2.4-.6.2-.9 0-.4-.5-.5-.8-.3zm-15.8 7c-.9.2-1.9.5-2.8.7-.4.1-.6.4-.5.8.1.3.3.5.7.5h.1c1-.2 1.9-.4 2.9-.7.4-.1.6-.5.5-.8-.1-.3-.5-.6-.9-.5zM192.6 54.7c16.8 0 32 6.8 43.1 17.9h3.7C227.7 60 211.1 52 192.6 52c-14.1 0-27.1 4.6-37.7 12.4h4.7c9.6-6.1 20.9-9.7
33-9.7zm0 121.8c-13.1 0-25.2-4.1-35.1-11.2H153c10.9 8.7 24.6 13.9 39.6 13.9 20.2 0 38.3-9.5 49.9-24.3H239c-11.1 13.2-27.8 21.6-46.4 21.6zm11.8 5.8c-5 .9-10.2 1.2-15.2.9-.3 0-.7.3-.7.6 0 .4.3.7.6.7 1.2.1 2.3.1 3.5.1 4 0 8.1-.4 12-1 .4-.1.6-.4.5-.8 0-.4-.3-.6-.7-.5zm-25.4-.4c-1.2-.3-2.5-.5-3.7-.9-.4-.1-.7.1-.8.5-.1.4.1.7.5.8 1.3.3 2.5.6 3.8.9h.1c.3 0 .6-.2.7-.5 0-.3-.2-.7-.6-.8zm37.7-3c-.4.2-.8.3-1.2.4-.3.1-.5.5-.4.9.1.3.4.4.6.4h.2c.4-.1.8-.3 1.2-.5.3-.1.5-.5.4-.9-.1-.3-.5-.5-.8-.3zm19.4-115c.1.1.3.2.4.2.2 0 .4-.1.5-.2.2-.3.2-.7-.1-.9-.3-.3-.7-.6-1-.8-.3-.2-.7-.2-.9.1-.2.3-.2.7.1.9.4.1.7.4 1 .7zm-65.7 115.7c-.4-.1-.8-.3-1.2-.4-.3-.1-.7 0-.9.4-.1.3 0 .7.4.9.4.2.8.3 1.2.4h.2c.3 0 .5-.2.6-.5.3-.3.1-.7-.3-.8zm54.4-4.4c-1.1.6-2.3 1.2-3.4 1.7-.3.2-.5.6-.3.9.1.2.4.4.6.4.1 0 .2 0 .3-.1 1.2-.6 2.3-1.1 3.5-1.8.3-.2.4-.6.3-.9-.3-.3-.7-.4-1-.2zm19.6-16.1c-3.3 3.9-7 7.4-11.1 10.5-.3.2-.4.6-.1.9.1.2.3.3.5.3.1 0 .3 0 .4-.1 4.1-3.1 7.9-6.7 11.3-10.7.2-.3.2-.7-.1-.9-.2-.3-.6-.3-.9 0zm.9-88c-.2-.3-.7-.
3-.9-.1-.3.2-.3.7-.1.9.2.2.3.4.5.6h1.7c-.4-.4-.8-.9-1.2-1.4zm-87-13.9c.1 0 .2 0 .3-.1 4.4-2.6 9.1-4.6 14-6.1.4-.1.6-.5.4-.8-.1-.4-.5-.6-.8-.4-5 1.5-9.8 3.6-14.3 6.3-.3.2-.4.6-.2.9.1.1.3.2.6.2zm45.8-8.2c5 .9 10 2.3 14.7 4.3.1 0 .2.1.3.1.3 0 .5-.2.6-.4.1-.3 0-.7-.4-.9-4.8-2-9.8-3.5-15-4.4-.4-.1-.7.2-.8.5 0 .3.3.7.6.8zm23.8 8.9c1.1.7 2.2 1.4 3.2 2.1.1.1.3.1.4.1.2 0 .4-.1.6-.3.2-.3.1-.7-.2-.9-1.1-.7-2.2-1.5-3.3-2.1-.3-.2-.7-.1-.9.2-.2.3-.1.7.2.9zM191.4 48h1.3c.4 0 .6-.3.6-.7 0-.4-.4-.7-.7-.7h-1.2c-.4 0-.7.3-.7.7 0 .4.3.7.7.7zm-45.8 118.2c3.8 3.5 8 6.7 12.5 9.3.1.1.2.1.3.1.2 0 .5-.1.6-.3.2-.3.1-.7-.2-.9-4.3-2.5-8.4-5.5-12.1-8.9h-1.2c-.1.1-.1.5.1.7zm36.8-117.5c.1 0 .1 0 0 0 1.3-.2 2.6-.3 3.9-.5.4 0 .6-.4.6-.7 0-.4-.4-.6-.7-.6-1.3.1-2.6.3-3.9.5-.4.1-.6.4-.6.8.1.3.4.5.7.5zM97.3 171h.1c1-.2 1.9-.4 2.9-.7.4-.1.6-.5.5-.8-.1-.4-.5-.6-.8-.5-.9.2-1.9.5-2.8.7-.4.1-.6.4-.5.8 0 .3.3.5.6.5zm2-109.6c-.1.4.1.7.5.8 2.3.6 4.5 1.4 6.7 2.3h3.3c-3.1-1.5-6.4-2.7-9.7-3.6-.4-.1-.7.1-.8.5zm-25.6-1.1c-.4.1-.6.4-
.5.8.1.3.3.5.7.5h.1c4.7-1 9.6-1.4 14.4-1.2.4 0 .7-.3.7-.6 0-.4-.3-.7-.6-.7-5-.3-10 .1-14.8 1.2zm-.3 110c-.1.4.2.7.5.8 3.8.8 7.8 1.2 11.7 1.2h.1c1 0 2 0 2.9-.1.4 0 .7-.3.6-.7 0-.4-.3-.7-.7-.6-1 0-1.9.1-2.9.1-3.9 0-7.7-.4-11.4-1.2-.4-.2-.7.1-.8.5zm31.7-2.2c.1.3.4.4.6.4h.2c2.3-.9 4.6-2 6.7-3.1h-2.9c-1.4.7-2.8 1.3-4.3 1.9-.3.1-.5.5-.3.8zm-42.2-.6c.3 0 .5-.1.6-.4.2-.3 0-.7-.3-.9-1.8-.8-3.6-1.7-5.3-2.7h-2.6c2.3 1.5 4.8 2.8 7.3 3.9.1 0 .2.1.3.1zM85.6 54.7c12.1 0 23.4 3.6 32.9 9.7h4.7C112.7 56.6 99.7 52 85.6 52 72.4 52 60.1 56 50 62.9h5.1c9-5.2 19.4-8.2 30.5-8.2zm0 121.8c-14.2 0-27.2-4.9-37.6-13.1h-4.2c11.2 9.8 25.8 15.7 41.8 15.7 15 0 28.7-5.2 39.6-13.9h-4.5c-9.9 7.2-22 11.3-35.1 11.3zm32.2-1.3c-1.1.6-2.3 1.2-3.4 1.7-.3.2-.5.6-.3.9.1.2.4.4.6.4.1 0 .2 0 .3-.1 1.2-.6 2.3-1.1 3.5-1.8.3-.2.4-.6.3-.9-.3-.3-.7-.4-1-.2zm3.1-117.3c1.1.7 2.2 1.4 3.2 2.1.1.1.3.1.4.1.2 0 .4-.1.6-.3.2-.3.1-.7-.2-.9-1.1-.7-2.2-1.5-3.3-2.1-.3-.2-.7-.1-.9.2-.2.3-.1.7.2.9zM97.4 182.3c-5 .9-10.2 1.2-15.2.9-.4 0-.7.3-.7.6 0
.4.3.7.6.7 1.2.1 2.3.1 3.5.1 4 0 8.1-.4 12-1 .4-.1.6-.4.5-.8 0-.4-.3-.6-.7-.5zm-34-2.7c-.4-.1-.8-.3-1.2-.4-.3-.1-.7 0-.9.4-.1.3 0 .7.4.9.4.2.8.3 1.2.4h.2c.3 0 .5-.2.6-.5.3-.3.1-.7-.3-.8zm8.7 2.3c-1.2-.3-2.5-.5-3.7-.9-.4-.1-.7.1-.8.5-.1.4.1.7.5.8 1.3.3 2.5.6 3.8.9h.1c.3 0 .6-.2.7-.5 0-.3-.3-.7-.6-.8zm54.3-12.3c-.3.2-.4.6-.1.9.1.2.3.3.5.3.1 0 .3 0 .4-.1 2.2-1.7 4.3-3.4 6.2-5.3h-2c-1.6 1.5-3.3 2.9-5 4.2zm-16.7 9.3c-.4.2-.8.3-1.2.4-.3.1-.5.5-.4.9.1.3.4.4.6.4h.2c.4-.1.8-.3 1.2-.5.3-.1.5-.5.4-.9-.1-.3-.5-.5-.8-.3zM97.1 49c5 .9 10 2.3 14.7 4.3.1 0 .2.1.3.1.3 0 .5-.2.6-.4.1-.3 0-.7-.4-.9-4.8-2-9.8-3.5-15-4.4-.4-.1-.7.2-.8.5 0 .3.3.7.6.8zm-12.7-1h1.3c.4 0 .6-.3.6-.7 0-.4-.4-.7-.7-.7h-1.2c-.4 0-.7.3-.7.7.1.4.4.7.7.7zm-33.1 9.2c.1 0 .2 0 .3-.1 4.4-2.6 9.1-4.6 14-6.1.4-.1.6-.5.4-.8-.1-.4-.5-.6-.8-.4-5 1.5-9.8 3.6-14.3 6.3-.3.2-.4.6-.2.9.1.1.3.2.6.2zm.6 117.1c-4.4-2.5-8.6-5.6-12.3-9.1-.3-.3-.7-.2-1 0-.3.3-.2.7 0 1 3.8 3.5 8 6.7 12.5 9.3.1.1.2.1.3.1.2 0 .5-.1.6-.3.3-.4.2-.8-.1-1zM75.4 48.7c.1 0
.1 0 0 0 1.3-.2 2.6-.3 3.9-.5.4 0 .6-.4.6-.7 0-.4-.4-.6-.7-.6-1.3.1-2.6.3-3.9.5-.4.1-.6.4-.6.8.1.3.4.5.7.5z" fill="#D7D7DB"/><path d="M261.6 34.4h-30.1c-1.3 0-2.3 1-2.3 2.3v56.4c0 1.3 1 2.3 2.3 2.3h30.1c1.3 0 2.3-1 2.3-2.3V36.7c0-1.2-1-2.3-2.3-2.3zm-15.5 4.9c4.2 0 7.7 3.5 7.7 7.7s-3.5 7.7-7.7 7.7-7.7-3.5-7.7-7.7 3.5-7.7 7.7-7.7zm-7.5 23.1c.1-.4.5-.8 1-.9l3.7-.7 2.1-4.1.8-.1c.5 0 .9.3 1.1.7l1.7 3.5 4.4.8.3.7c.1.4 0 .9-.3 1.3l-2.6 2.8.7 4.7-.6.5c-.4.3-.9.3-1.3.1l-3.3-1.7-4 2.1-.7-.4c-.4-.3-.6-.7-.5-1.2l.6-3.9-3.1-3.4v-.8zm8.2 17.3c0-.7.5-1.2 1.2-1.2h1.3c-.8-.9-1.9-1.4-3.2-1.4-2 0-3.8 1.4-4.3 3.3-.1.5-.6.9-1.1.9h-.3c-.6-.2-1-.8-.9-1.4.8-3 3.4-5.1 6.6-5.1 1.6 0 3.2.6 4.4 1.7V76c0-.7.5-1.2 1.2-1.2s1.2.5 1.2 1.2v3.7c0 .7-.5 1.2-1.2 1.2H248c-.7 0-1.2-.5-1.2-1.2zm-.7 8.7c-1.6 0-3.2-.6-4.4-1.7v.5c0 .7-.5 1.2-1.2 1.2s-1.2-.5-1.2-1.2v-3.7c0-.7.5-1.2 1.2-1.2h3.7c.7 0 1.2.5 1.2 1.2s-.5 1.2-1.2 1.2h-1.3c.8.9 1.9 1.4 3.2 1.4 2 0 3.8-1.4 4.3-3.3.2-.6.8-1 1.4-.9.6.2 1 .8.9 1.4-.8 3-3.5 5.1-6.6 5.1z"
fill="url(#a)" transform="translate(1 46)"/><path d="M246.1 52.4c2.9 0 5.3-2.4 5.3-5.3s-2.4-5.3-5.3-5.3-5.3 2.4-5.3 5.3 2.4 5.3 5.3 5.3zm-1.1-8.6c0-.4.3-.7.7-.7.4 0 .7.3.7.7v3.1h3.1c.4 0 .7.3.7.7 0 .4-.3.7-.7.7h-3.7c-.4 0-.7-.3-.7-.7v-3.8h-.1z" fill="url(#b)" transform="translate(1 46)"/><path fill="url(#c)" d="M243.6 68.7l2.5-1.3 2.6 1.3-.5-3 2.1-2.2-2.9-.5-1.3-2.6-1.3 2.6-2.9.5 2.1 2.2" transform="translate(1 46)"/><path d="M240.9 70.5c-.1.5.1.9.5 1.2l.7.4 4-2.1 3.3 1.7c.4.2.9.2 1.3-.1l.6-.5-.7-4.7 2.6-2.8c.3-.3.4-.8.3-1.3l-.3-.7-4.4-.8-1.7-3.5c-.2-.4-.7-.7-1.1-.7l-.8.1-2.1 4.1-3.7.7c-.5.1-.8.4-1 .9l-.2.8 3.1 3.4-.4 3.9zm3.9-7.5l1.3-2.6 1.3 2.6 2.9.5-2.1 2.2.4 3-2.5-1.3-2.5 1.3.4-3-2.1-2.2 2.9-.5z" fill="url(#d)" transform="translate(1 46)"/><path fill="url(#e)" d="M35 60.4l-1.4 2.8-3.1.6 2.2 2.4-.4 3.2 2.7-1.5 2.7 1.5-.4-3.2 2.2-2.4-3.1-.6" transform="translate(1 46)"/><path d="M10.2 103.3h50.7c1.4 0 2.5-1.1 2.5-2.5V27.6c0-1.4-1.1-2.5-2.5-2.5H10.2c-1.4 0-2.5 1.1-2.5 2.5v73.2c.1
1.4 1.2 2.5 2.5 2.5zm32.1-14.5c-.8 3.3-3.8 5.7-7.3 5.7-1.8 0-3.5-.7-4.8-1.8v.4c0 .7-.6 1.3-1.3 1.3-.7 0-1.3-.6-1.3-1.3V89c0-.7.6-1.3 1.3-1.3H33c.7 0 1.3.6 1.3 1.3 0 .7-.6 1.3-1.3 1.3h-1.3c.9.9 2.1 1.4 3.4 1.4 2.2 0 4.1-1.5 4.6-3.6.2-.7.9-1.2 1.6-1 .7.2 1.1 1 1 1.7zm.2-3.9c0 .7-.6 1.3-1.3 1.3h-4.1c-.7 0-1.3-.6-1.3-1.3 0-.7.6-1.3 1.3-1.3h1.3c-.9-.9-2.1-1.4-3.4-1.4-2.2 0-4.1 1.5-4.6 3.6-.2.6-.7 1-1.3 1h-.3c-.7-.2-1.2-.9-1-1.6.8-3.3 3.8-5.7 7.3-5.7 1.8 0 3.5.7 4.8 1.8v-.4c0-.7.6-1.3 1.3-1.3.7 0 1.3.6 1.3 1.3v4zm.5-21L40.1 67l.7 5.1-.7.6c-.4.3-1 .4-1.5.1L35 71l-4.4 2.3-.8-.5c-.4-.3-.7-.8-.6-1.4l.6-4.3-3.4-3.7.2-.9c.2-.5.6-.9 1.1-1l4-.7 2.3-4.6.9-.1c.6 0 1 .3 1.3.8l1.9 3.8 4.8.9.3.8c.3.6.2 1.2-.2 1.5zm-8-30.2c4.7 0 8.5 3.8 8.5 8.5s-3.8 8.5-8.5 8.5-8.5-3.8-8.5-8.5 3.8-8.5 8.5-8.5z" fill="url(#f)" transform="translate(1 46)"/><path d="M29.2 42.2c0 3.2 2.6 5.8 5.8 5.8 3.2 0 5.8-2.6 5.8-5.8 0-3.2-2.6-5.8-5.8-5.8-3.2 0-5.8 2.6-5.8 5.8zm4.6-3.6c0-.4.3-.7.7-.7.4 0 .7.3.7.7V42h3.4c.4 0 .7.3.7.7 0
.4-.3.7-.7.7h-4.1c-.4 0-.7-.3-.7-.7v-4.1z" fill="url(#g)" transform="translate(1 46)"/><path d="M43 61.7l-4.8-.9-1.9-3.8c-.2-.5-.7-.8-1.3-.8l-.9.1-2.3 4.6-4 .7c-.5.1-1 .5-1.1 1l-.2.9 3.4 3.7-.6 4.3c-.1.5.1 1.1.6 1.4l.8.5L35 71l3.6 1.9c.5.3 1.1.2 1.5-.1l.7-.6-.7-5.1L43 64c.4-.4.5-.9.3-1.4l-.3-.9zm-5.7 4.5l.4 3.2L35 68l-2.7 1.4.4-3.2-2.2-2.4 3.1-.6 1.4-2.8 1.4 2.8 3.1.6-2.2 2.4z" fill="url(#h)" transform="translate(1 46)"/><path d="M119.4 59.6c3.2 0 5.8-2.6 5.8-5.8 0-3.2-2.6-5.8-5.8-5.8-3.2 0-5.8 2.6-5.8 5.8-.1 3.1 2.6 5.8 5.8 5.8zm-1.2-9.5c0-.4.3-.7.7-.7.4 0 .7.3.7.7v3.4h3.4c.4 0 .7.3.7.7 0 .4-.3.7-.7.7h-4.1c-.4 0-.7-.3-.7-.7v-4.1z" fill="url(#i)" transform="translate(1 46)"/><path fill="url(#j)" d="M143.4 52.3l-1.3-2.8-1.4 2.8-3.2.6 2.3 2.4-.5 3.2 2.8-1.4 2.7 1.4-.5-3.2 2.3-2.4" transform="translate(1 46)"/><path d="M102.8 81.1h77.6c1.6 0 2.8-1.3 2.8-2.8V32c0-1.6-1.3-2.8-2.8-2.8h-77.6c-1.6 0-2.8 1.3-2.8 2.8v46.3c-.1 1.6 1.2 2.8 2.8 2.8zm44.4-24.9l.7 5.1-.7.6c-.4.3-1 .4-1.5.1l-3.6-1
.9-4.4 2.3-.8-.5c-.4-.3-.7-.8-.6-1.4l.6-4.3-3.4-3.7.2-.9c.2-.5.6-.9 1.1-1l4-.7 2.3-4.6.9-.1c.5 0 1 .3 1.3.8l1.9 3.8 4.8.9.3.8c.2.5 0 1.1-.3 1.4l-2.8 3.3zm10.3-4.3c.8-3.3 3.8-5.7 7.3-5.7 1.8 0 3.5.7 4.8 1.8v-.4c0-.7.6-1.3 1.3-1.3.7 0 1.3.6 1.3 1.3v4.1c0 .7-.6 1.3-1.3 1.3h-4.1c-.7 0-1.3-.6-1.3-1.3 0-.7.6-1.3 1.3-1.3h1.3c-.9-.9-2.1-1.4-3.4-1.4-2.2 0-4.1 1.5-4.6 3.6-.2.6-.7 1-1.3 1h-.3c-.8-.2-1.2-1-1-1.7zm-.3 3.9c0-.7.6-1.3 1.3-1.3h4.1c.7 0 1.3.6 1.3 1.3 0 .7-.6 1.3-1.3 1.3h-1.3c.9.9 2.1 1.4 3.4 1.4 2.2 0 4.1-1.5 4.6-3.6.2-.7.9-1.2 1.6-1 .7.2 1.2.9 1 1.6-.8 3.3-3.8 5.7-7.3 5.7-1.8 0-3.5-.7-4.8-1.8v.4c0 .7-.6 1.3-1.3 1.3-.7 0-1.3-.6-1.3-1.3v-4zm-37.8-10.6c4.7 0 8.5 3.8 8.5 8.5s-3.8 8.5-8.5 8.5-8.5-3.8-8.5-8.5c-.1-4.7 3.8-8.5 8.5-8.5z" fill="url(#k)" transform="translate(1 46)"/><path d="M264.7 75.3h-34.4c-2.6 0-4.6 2.1-4.6 4.6v67.7c0 2.6 2.1 4.6 4.6 4.6h34.4c2.6 0 4.6-2.1 4.6-4.6V79.9c.1-2.5-2-4.6-4.6-4.6zm-11.8 71.1c0 1.2-.9 2.1-2.1 2.1h-6.7c-1.2 0-2.1-.9-2.1-2.1v-.1c0-1.2.9-2.1 2.1-2.1
h6.7c1.2.1 2.1 1 2.1 2.2zm12-7.3c0 1.3-1 2.3-2.3 2.3h-30.1c-1.3 0-2.3-1-2.3-2.3V82.7c0-1.3 1-2.3 2.3-2.3h30.1c1.3 0 2.3 1 2.3 2.3v56.4zM9 160.8h55.2c2.7 0 4.9-2.2 4.9-4.9V70.6c0-2.7-2.2-4.9-4.9-4.9H9c-2.7 0-4.9 2.2-4.9 4.9v85.3c-.1 2.7 2.1 4.9 4.9 4.9zm19.4-5.3v-1.7c0-1 .8-1.8 1.8-1.8H43c1 0 1.8.8 1.8 1.8v1.7c0 1-.8 1.8-1.8 1.8H30.2c-1 0-1.8-.9-1.8-1.8zM8.8 73.6c0-1.4 1.1-2.5 2.5-2.5H62c1.4 0 2.5 1.1 2.5 2.5v73.2c0 1.4-1.1 2.5-2.5 2.5H11.2c-1.4 0-2.5-1.1-2.5-2.5V73.6h.1zm92.4 57.9h82.7c2.6 0 4.8-2.1 4.8-4.8V71.9c0-2.6-2.1-4.8-4.8-4.8h-82.7c-2.6 0-4.8 2.1-4.8 4.8v54.8c0 2.7 2.2 4.8 4.8 4.8zM141 71c0-.9.7-1.6 1.6-1.6.9 0 1.6.7 1.6 1.6 0 .9-.7 1.6-1.6 1.6-.9 0-1.6-.7-1.6-1.6zm-40.1 7c0-1.6 1.3-2.8 2.8-2.8h77.6c1.6 0 2.8 1.3 2.8 2.8v46.3c0 1.6-1.3 2.8-2.8 2.8h-77.6c-1.6 0-2.8-1.3-2.8-2.8V78zm94.8 84.7c1.6 0 3-1.2 3-2.6v-1.4c0-.3-.1-.7-.2-1l-9.9-21.7c-.5-1-1.5-1.7-2.8-1.7H98.7c-1.2 0-2.4.7-2.8 1.7l-9.3 21.7c-.1.3-.2.6-.2.9v1.4c0 1.5 1.3 2.6 3 2.6h106.3v.1zm-11.4-20.2l.5 1.5c.1.4-.5.9-1.2
.9h-5c-.4 0-.8-.2-.8-.4-.1-.6-.2-.9-.5-1.5-.2-.4.4-.9 1.1-.9h5c.4 0 .8.1.9.4zm-7.4-5.3h4.7c.4 0 .7.2.8.4.1.6.2.9.4 1.5.1.4-.4.8-1 .8h-4.6c-.4 0-.8-.2-.9-.4l-.5-1.5c-.2-.4.4-.8 1.1-.8zm-4.3 5.3c.1.6.2.9.3 1.5.1.4-.6.9-1.3.9h-5.1c-.5 0-.8-.2-.9-.5-.2-.6-.2-.9-.4-1.5-.1-.4.5-.9 1.3-.9h5.3c.4.1.8.3.8.5zm-7.1-5.3h5c.4 0 .8.2.8.4.1.6.2.9.3 1.5.1.4-.5.8-1.2.8h-4.9c-.4 0-.8-.2-.8-.4-.2-.6-.2-.9-.4-1.5-.1-.4.5-.8 1.2-.8zm-5.8 5.5c.1.6.1.9.2 1.6.1.4-.5.8-1.2.8h-5.3c-.5 0-.9-.2-1-.5-.1-.6-.2-.9-.3-1.6-.1-.4.5-.8 1.2-.8h5.5c.4-.1.8.1.9.5zm-6.8-5.5h5.2c.5 0 .9.2.9.5.1.6.1.9.2 1.5.1.4-.5.8-1.1.8H153c-.5 0-.9-.2-.9-.5-.1-.6-.2-.9-.3-1.5-.1-.4.5-.8 1.1-.8zm-13.4.6c.1-.3.5-.5 1.1-.5h4.7c.5 0 1 .2 1 .5.1.6.1.9.2 1.5.1.4-.4.7-1.1.7h-5.3c-.6 0-1.1-.3-1-.7.2-.6.2-.9.4-1.5zm-.4 5c.1-.3.5-.6 1.1-.6h5c.6 0 1 .2 1.1.6.1.6.2.9.3 1.6.1.4-.5.8-1.1.8H140c-.7 0-1.2-.4-1.1-.8 0-.6.1-1 .2-1.6zm-11.4-5.5h5.2c.7 0 1.2.4 1.1.8l-.5 1.5c-.1.3-.5.5-1 .5h-5.1c-.6 0-1.2-.4-1.1-.8.1-.6.2-.9.3-1.5.2-.3.6-.5 1.1-.5zm-2 5.5c.
1-.3.5-.5 1-.5h5.5c.7 0 1.3.4 1.1.8-.2.6-.3 1-.4 1.6-.1.3-.5.5-1 .5h-5.3c-.7 0-1.3-.4-1.2-.8.1-.6.2-.9.3-1.6zm-17.7.4c-.3.6-.4 1-.5 1.6-.1.3-.4.5-.8.5h-5c-.7 0-1.3-.4-1.2-.9.2-.6.3-1 .5-1.6.1-.3.5-.5.9-.5h5c.7 0 1.2.5 1.1.9zm1.2-3.5c-.1.3-.5.4-.9.4h-4.6c-.6 0-1.1-.4-.9-.8l.5-1.5c.1-.3.4-.4.8-.4h4.7c.7 0 1.2.4 1.1.8-.3.6-.5.9-.7 1.5zm10.5 5.1c-.1.3-.4.5-.9.5h-5.1c-.7 0-1.3-.4-1.2-.9.1-.6.2-1 .4-1.6.1-.3.4-.5.9-.5h5.3c.7 0 1.3.4 1.2.9-.3.6-.4 1-.6 1.6zm1.1-5.1c-.1.3-.4.4-.9.4H115c-.7 0-1.2-.4-1.1-.8.2-.6.3-.9.4-1.5.1-.3.4-.4.9-.4h5c.7 0 1.2.4 1.1.8l-.5 1.5zm3.1 14.6c.4-2.3.6-3.5 1.1-5.9 0-.3.4-.6.9-.6 13.6-.1 20.5-.2 34.1-.3.5 0 .9.2.9.6.3 2.4.5 3.6.6 6.1 0 .4-.6.8-1.2.8h-35.4c-.6.1-1.1-.3-1-.7z" fill="#FFF"/><path d="M263.7 26.6h-.2v-1.3c0-.6-.5-1.2-1.2-1.2h-6.5c-.6 0-1.2.5-1.2 1.2v1.3h-25.4c-4 0-7.3 3.3-7.3 7.3v67.7c0 4 3.3 7.3 7.3 7.3h34.4c4 0 7.3-3.3 7.3-7.3V33.9c.1-4-3.1-7.3-7.2-7.3zm4.7 75c0 2.6-2.1 4.6-4.6 4.6h-34.4c-2.6 0-4.6-2.1-4.6-4.6V33.9c0-2.6 2.1-4.6 4.6-4.6h34.4c2.6 0 4
.6 2.1 4.6 4.6v67.7zm-16.5-1.2c0 1.2-.9 2.2-2.1 2.2h-6.7c-1.2 0-2.1-.9-2.1-2.1v-.1c0-1.2.9-2.1 2.1-2.1h6.7c1.2 0 2.1.9 2.1 2.1zM54.3 117.5h8.8c4.2 0 7.6-3.4 7.6-7.6V24.6c0-3.6-2.4-6.5-5.7-7.4-.4-.1-.9-.2-1.3-.2H8C3.8 17 .4 20.4.4 24.6v85.3c0 4.2 3.4 7.6 7.6 7.6h46.3zM3 24.6c0-2.7 2.2-4.9 4.9-4.9h55.2c2.7 0 4.9 2.2 4.9 4.9v85.3c0 2.7-2.2 4.9-4.9 4.9H8c-2.7 0-4.9-2.2-4.9-4.9V24.6H3zm26.2 86.7c-1 0-1.8-.8-1.8-1.8v-1.7c0-1 .8-1.8 1.8-1.8H42c1 0 1.8.8 1.8 1.8v1.7c0 1-.8 1.8-1.8 1.8H29.2zm135.3 8.1H194.6c3.1 0 5.7-2.4 5.7-5.3v-1.4c0-.7-.2-1.4-.5-2.1l-9.9-21.7c-.5-1-1.2-1.8-2.2-2.4 1.6-1.4 2.6-3.4 2.6-5.6V26.1c0-4.1-3.4-7.5-7.5-7.5h-82.5c-4.1 0-7.5 3.4-7.5 7.5v54.8c0 2.1.9 4.1 2.3 5.4-1.2.6-2.1 1.5-2.6 2.7l-9.3 21.7c-.3.6-.4 1.3-.4 2v1.4c0 2.9 2.5 5.3 5.7 5.3h76zm-76-2.7c-1.6 0-3-1.2-3-2.6v-1.4c0-.3.1-.6.2-.9L95 90.1c.4-1 1.5-1.7 2.8-1.7h87.1c1.2 0 2.3.7 2.8 1.7l9.9 21.7c.1.3.2.6.2 1v1.4c0 1.5-1.3 2.6-3 2.6H88.5v-.1zm6.9-35.9V26c0-2.6 2.1-4.8 4.8-4.8h82.7c2.6 0 4.8 2.1 4.8 4.8v54.8c0 2.6-2
.1 4.8-4.8 4.8h-82.7c-2.6-.1-4.8-2.2-4.8-4.8zm27.5 27.5c.4-2.3.6-3.5 1.1-5.9 0-.3.4-.6.9-.6 13.6-.1 20.5-.2 34.1-.3.5 0 .9.2.9.6.3 2.4.5 3.6.6 6.1 0 .4-.6.8-1.2.8h-35.4c-.6.1-1.1-.3-1-.7zm-3.8-11.1c-.2.6-.3 1-.5 1.6-.1.3-.4.5-.9.5h-5.1c-.7 0-1.3-.4-1.2-.9.1-.6.2-1 .4-1.6.1-.3.4-.5.9-.5h5.3c.7 0 1.3.5 1.1.9zm5.3 1.2c.1-.6.2-1 .3-1.6.1-.3.5-.5 1-.5h5.5c.7 0 1.3.4 1.1.8-.2.6-.3 1-.4 1.6-.1.3-.5.5-1 .5h-5.3c-.7 0-1.2-.4-1.2-.8zm33.3-2.3c.5 0 .9.2 1 .5.1.6.1.9.2 1.6.1.4-.5.8-1.2.8h-5.3c-.5 0-.9-.2-1-.5-.1-.6-.2-.9-.3-1.6-.1-.4.5-.8 1.2-.8h5.4zm-19.9 2.3c.1-.6.2-.9.3-1.6.1-.3.5-.6 1.1-.6h5c.6 0 1 .2 1.1.6.1.6.2.9.3 1.6.1.4-.5.8-1.1.8H139c-.8-.1-1.3-.4-1.2-.8zm27.7-2.3h5.3c.5 0 .8.2.9.5.1.6.2.9.3 1.5.1.4-.6.9-1.3.9h-5.1c-.5 0-.8-.2-.9-.5-.2-.6-.2-.9-.4-1.5-.2-.5.5-.9 1.2-.9zm-45.1-3.9l-.5 1.5c-.1.3-.4.4-.9.4h-4.9c-.7 0-1.2-.4-1.1-.8.2-.6.3-.9.4-1.5.1-.3.4-.4.9-.4h5c.7 0 1.2.4 1.1.8zm6.3-.9h5.2c.7 0 1.2.4 1.1.8l-.5 1.5c-.1.3-.5.5-1 .5h-5.1c-.6 0-1.2-.4-1.1-.8.1-.6.2-.9.3-1.5.2-.3.6-.5 1.1-.
5zm24.4 2.2c-.1-.6-.2-.9-.3-1.5-.1-.4.5-.8 1.1-.8h5.2c.5 0 .9.2.9.5.1.6.1.9.2 1.5.1.4-.5.8-1.1.8H152c-.4 0-.8-.2-.9-.5zm-13-.2c.1-.6.2-.9.4-1.5.1-.3.5-.5 1.1-.5h4.7c.5 0 1 .2 1 .5.1.6.1.9.2 1.5.1.4-.4.7-1.1.7h-5.3c-.6 0-1.1-.3-1-.7zm25.6.2c-.2-.6-.2-.9-.4-1.5-.1-.4.5-.8 1.2-.8h5c.4 0 .8.2.8.4.1.6.2.9.3 1.5.1.4-.5.8-1.2.8h-4.9c-.4 0-.7-.1-.8-.4zM107 97.2c-.3.6-.4 1-.5 1.6-.1.3-.4.5-.8.5h-5c-.7 0-1.3-.4-1.2-.9.2-.6.3-1 .5-1.6.1-.3.5-.5.9-.5h5c.7 0 1.2.5 1.1.9zm1.8-5c-.2.6-.3.9-.6 1.5-.1.3-.5.4-.9.4h-4.6c-.6 0-1.1-.4-.9-.8l.5-1.5c.1-.3.4-.4.8-.4h4.7c.6 0 1.1.4 1 .8zm68.5 3.9h5c.4 0 .8.2.9.5l.5 1.5c.1.4-.5.9-1.2.9h-5c-.4 0-.8-.2-.8-.4-.1-.6-.2-.9-.5-1.5-.1-.6.4-1 1.1-1zm-2.1-2.6l-.5-1.5c-.1-.4.5-.8 1.2-.8h4.7c.4 0 .7.2.8.4.1.6.2.9.4 1.5.1.4-.4.8-1 .8h-4.6c-.5 0-.9-.2-1-.4zm-33.6-66.9c-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6.9 0 1.6.7 1.6 1.6-.1.9-.8 1.6-1.6 1.6z" fill="url(#l)" transform="translate(1 46)"/><path d="M150.4 51.6l-.3-.8-4.8-.9-1.9-3.8c-.2-.5-.7-.8-1.3-.8l-.9.1-2.3 4.6-4 .7c
-.5.1-1 .5-1.1 1l-.2.9 3.4 3.7-.6 4.3c-.1.5.2 1.1.6 1.4l.8.5 4.4-2.3 3.6 1.9c.5.3 1.1.2 1.5-.1l.7-.6-.7-5.1 2.9-3.1c.3-.5.4-1.1.2-1.6zm-6.1 3.7l.4 3.2-2.7-1.4-2.7 1.4.4-3.2-2.2-2.4 3.1-.6 1.4-2.8 1.4 2.8 3.1.6-2.2 2.4z" fill="url(#m)" transform="translate(1 46)"/><path d="M238.4 47c0 4.2 3.5 7.7 7.7 7.7s7.7-3.5 7.7-7.7-3.5-7.7-7.7-7.7-7.7 3.5-7.7 7.7zm7.7-5.3c2.9 0 5.3 2.4 5.3 5.3s-2.4 5.3-5.3 5.3-5.3-2.4-5.3-5.3 2.4-5.3 5.3-5.3zm-1.1 5.8v-3.7c0-.4.3-.7.7-.7.4 0 .7.3.7.7v3.1h3.1c.4 0 .7.3.7.7 0 .4-.3.7-.7.7h-3.7c-.5-.1-.8-.4-.8-.8zm3 33.4c-.7 0-1.2-.5-1.2-1.2s.5-1.2 1.2-1.2h1.3c-.8-.9-1.9-1.4-3.2-1.4-2 0-3.8 1.4-4.3 3.3-.1.5-.6.9-1.1.9h-.3c-.6-.2-1-.8-.9-1.4.8-3 3.4-5.1 6.6-5.1 1.6 0 3.2.6 4.4 1.7V76c0-.7.5-1.2 1.2-1.2s1.2.5 1.2 1.2v3.7c0 .7-.5 1.2-1.2 1.2H248zm-1.9 7.5c-1.6 0-3.2-.6-4.4-1.7v.5c0 .7-.5 1.2-1.2 1.2s-1.2-.5-1.2-1.2v-3.7c0-.7.5-1.2 1.2-1.2h3.7c.7 0 1.2.5 1.2 1.2s-.5 1.2-1.2 1.2h-1.3c.8.9 1.9 1.4 3.2 1.4 2 0 3.8-1.4 4.3-3.3.2-.6.8-1 1.4-.9.6.2 1 .8.9 1.4-.8 3-3.5 5.1-6.
6 5.1zM35 50.7c4.7 0 8.5-3.8 8.5-8.5s-3.8-8.5-8.5-8.5-8.5 3.8-8.5 8.5 3.8 8.5 8.5 8.5zm0-14.3c3.2 0 5.8 2.6 5.8 5.8 0 3.2-2.6 5.8-5.8 5.8-3.2 0-5.8-2.6-5.8-5.8 0-3.2 2.6-5.8 5.8-5.8zm-1.2 6.3v-4.1c0-.4.3-.7.7-.7.4 0 .7.3.7.7V42h3.4c.4 0 .7.3.7.7 0 .4-.3.7-.7.7h-4.1c-.4 0-.7-.3-.7-.7zm8.7 38.1v4.1c0 .7-.6 1.3-1.3 1.3h-4.1c-.7 0-1.3-.6-1.3-1.3 0-.7.6-1.3 1.3-1.3h1.3c-.9-.9-2.1-1.4-3.4-1.4-2.2 0-4.1 1.5-4.6 3.6-.2.6-.7 1-1.3 1h-.3c-.7-.2-1.2-.9-1-1.6.8-3.3 3.8-5.7 7.3-5.7 1.8 0 3.5.7 4.8 1.8v-.4c0-.7.6-1.3 1.3-1.3.7-.1 1.3.5 1.3 1.2zm-.2 8c-.8 3.3-3.8 5.7-7.3 5.7-1.8 0-3.5-.7-4.8-1.8v.4c0 .7-.6 1.3-1.3 1.3-.7 0-1.3-.6-1.3-1.3V89c0-.7.6-1.3 1.3-1.3H33c.7 0 1.3.6 1.3 1.3 0 .7-.6 1.3-1.3 1.3h-1.3c.9.9 2.1 1.4 3.4 1.4 2.2 0 4.1-1.5 4.6-3.6.2-.7.9-1.2 1.6-1 .7.2 1.1 1 1 1.7zm77.1-26.5c4.7 0 8.5-3.8 8.5-8.5s-3.8-8.5-8.5-8.5-8.5 3.8-8.5 8.5c-.1 4.6 3.8 8.5 8.5 8.5zm0-14.4c3.2 0 5.8 2.6 5.8 5.8 0 3.2-2.6 5.8-5.8 5.8-3.2 0-5.8-2.6-5.8-5.8-.1-3.2 2.6-5.8 5.8-5.8zm-1.2 6.3v-4.1c0-.4.3-.7.7-.7.4 0
.7.3.7.7v3.4h3.4c.4 0 .7.3.7.7 0 .4-.3.7-.7.7h-4.1c-.4 0-.7-.3-.7-.7zm39 5.7v-4.1c0-.7.6-1.3 1.3-1.3h4.1c.7 0 1.3.6 1.3 1.3 0 .7-.6 1.3-1.3 1.3h-1.3c.9.9 2.1 1.4 3.4 1.4 2.2 0 4.1-1.5 4.6-3.6.2-.7.9-1.2 1.6-1 .7.2 1.2.9 1 1.6-.8 3.3-3.8 5.7-7.3 5.7-1.8 0-3.5-.7-4.8-1.8v.4c0 .7-.6 1.3-1.3 1.3-.7.1-1.3-.5-1.3-1.2zm.3-8c.8-3.3 3.8-5.7 7.3-5.7 1.8 0 3.5.7 4.8 1.8v-.4c0-.7.6-1.3 1.3-1.3.7 0 1.3.6 1.3 1.3v4.1c0 .7-.6 1.3-1.3 1.3h-4.1c-.7 0-1.3-.6-1.3-1.3 0-.7.6-1.3 1.3-1.3h1.3c-.9-.9-2.1-1.4-3.4-1.4-2.2 0-4.1 1.5-4.6 3.6-.2.6-.7 1-1.3 1h-.3c-.8-.2-1.2-1-1-1.7z" fill="url(#n)" transform="translate(1 46)"/></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/icons_addons.svg b/browser/extensions/onboarding/content/img/icons_addons.svg
new file mode 100644
index 000000000000..6b27dea39252
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/icons_addons.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16"><title>Icons / Extension</title><g fill="none"><path d="M0 0h16v16H0z"/><path d="M22.5 16c-1 0-1 1-1.7 1-.5 0-.8-.3-.8-.7V13c0-.6-.4-1-1-1h-3.2c-.5 0-.8-.3-.8-.7 0-.8 1-.8 1-1.8 0-.9-.9-1.5-2-1.5s-2 .6-2 1.5c0 1 1 1 1 1.8 0 .4-.3.7-.7.7H9c-.6 0-1 .4-1 1v2.3c0 .4.3.7.8.7.7 0 .7-1 1.7-1 .9 0 1.5.9 1.5 2s-.6 2-1.5 2c-1 0-1-1-1.7-1-.5 0-.8.3-.8.8V23c0 .6.4 1 1 1h3.3c.4 0 .7-.3.7-.7 0-.8-1-.8-1-1.8 0-.9.9-1.5 2-1.5s2 .6 2 1.5c0 1-1 1-1 1.8 0 .4.3.7.8.7H19c.6 0 1-.4 1-1v-3.2c0-.5.3-.8.8-.8.7 0 .7 1 1.7 1 .9 0 1.5-.9 1.5-2s-.6-2-1.5-2z" fill="#3E3D40"/></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/icons_customize.svg b/browser/extensions/onboarding/content/img/icons_customize.svg
new file mode 100644
index 000000000000..ae0a9409fa5c
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/icons_customize.svg
@@ -0,0 +1 @@
+<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><title>Glyph / Customize</title><g id="Symbols" fill="none" fill-rule="evenodd"><g id="Glyph-/-Customize" fill-rule="nonzero" fill="#3E3D40"><path d="M4 10c-.886.002-1.665.59-1.91 1.44 0 .01-.015.015-.018.025-.362 1.135-.705 2.11-1.76 2.573l-.022.012-.024.012c-.162.086-.265.254-.266.438 0 .276.224.5.5.5 1.74.12 3.46-.414 4.825-1.5.006-.006.007-.013.013-.02.62-.55.832-1.428.534-2.202C5.575 10.504 4.83 9.995 4 10zM15.693.307c-.365-.363-.95-.383-1.338-.046l-8.03 7c-.206.18-.327.435-.336.707-.01.27.093.535.285.727l1.032 1.03c.184.185.433.288.693.288h.033c.272-.01.527-.13.706-.335l7-8.03c.338-.39.318-.975-.047-1.34z" id="Shape"/></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/icons_default.svg b/browser/extensions/onboarding/content/img/icons_default.svg
new file mode 100644
index 000000000000..235f7d65b685
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/icons_default.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><title>default-browser-16</title><path fill="context-fill" d="M8,6s0-4,3.5-4S15,5,15,6c0,4.5-7,9-7,9Z"/><path fill="context-fill" d="M8,6S8,2,4.5,2,1,5,1,6c0,4.5,7,9,7,9L9,9Z"/></svg>
diff --git a/browser/extensions/onboarding/content/img/icons_library.svg b/browser/extensions/onboarding/content/img/icons_library.svg
new file mode 100644
index 000000000000..064c2e619486
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/icons_library.svg
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><svg width="92px" height="92px" viewBox="0 0 92 92" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Tip / Icon / Library</title><desc>Created with Sketch.</desc><defs></defs><g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Tip-/-Icon-/-Library" fill-rule="nonzero" fill="#0C0C0D"><g id="Icon-/-Library-/-Web"><path d="M28.7405828,17.2350375 C25.5662458,17.2350375 22.9929371,19.8060508 22.9929371,22.9775563 L22.9929371,80.402744 C22.9929371,83.5742496 25.5662458,86.1452628 28.7405828,86.1452628 C31.9149199,86.1452628 34.4882285,83.5742496 34.4882285,80.402744 L34.4882285,22.9775563 C34.4882285,19.8060508 31.9149199,17.2350375 28.7405828,17.2350375 Z M45.98352,11.4925188 C42.8091829,11.4925188 40.2358743,14.063532 40.2358743,17.2350375 L40.2358743,80.402744 C40.2358743,83.5742496 42.8091829,86.1452628 45.98352,86.1452628 C49.157857,86.1452628 51.7311657,83.574249
6 51.7311657,80.402744 L51.7311657,17.2350375 C51.7311657,14.063532 49.157857,11.4925188 45.98352,11.4925188 Z M91.6140792,78.4388026 L68.6234964,15.2710961 C67.9500245,13.3049026 66.2658683,11.8556604 64.2198302,11.4816739 C62.1737921,11.1076875 60.0851643,11.8673187 58.7585671,13.4679283 C57.4319699,15.0685378 57.0744241,17.2603443 57.8236701,19.198979 L80.814253,82.3666855 C81.4877249,84.332879 83.1718811,85.7821212 85.2179192,86.1561076 C87.2639573,86.5300941 89.3525851,85.7704629 90.6791823,84.1698533 C92.0057794,82.5692438 92.3633253,80.3774372 91.6140792,78.4388026 L91.6140792,78.4388026 Z M11.4976457,5.75 C8.32330864,5.75 5.75,8.32101323 5.75,11.4925188 L5.75,80.402744 C5.75,83.5742496 8.32330864,86.1452628 11.4976457,86.1452628 C14.6719828,86.1452628 17.2452914,83.5742496 17.2452914,80.402744 L17.2452914,11.4925188 C17.2452914,8.32101323 14.6719828,5.75 11.4976457,5.75 Z" id="Shape"></path></g></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/icons_performance.svg b/browser/extensions/onboarding/content/img/icons_performance.svg
new file mode 100644
index 000000000000..ad23ba27400c
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/icons_performance.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="context-fill" d="M8 1a8.009 8.009 0 0 0-8 8 7.917 7.917 0 0 0 .78 3.43 1 1 0 1 0 1.8-.86A5.943 5.943 0 0 1 2 9a6 6 0 1 1 11.414 2.571 1 1 0 1 0 1.807.858A7.988 7.988 0 0 0 8 1z"/><path fill="context-fill" d="M11.769 7.078a.5.5 0 0 0-.69.153L8.616 11.1a2 2 0 1 0 .5 3.558 2.011 2.011 0 0 0 .54-.54 1.954 1.954 0 0 0-.2-2.479l2.463-3.871a.5.5 0 0 0-.15-.69z"/></svg>
diff --git a/browser/extensions/onboarding/content/img/icons_private.svg b/browser/extensions/onboarding/content/img/icons_private.svg
new file mode 100755
index 000000000000..7d4d2c416801
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/icons_private.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16"><title>Icons / Private Browsing</title><g fill="none"><path d="M0 0h32v32H0z"/><path d="M20.4 20c-1.7 0-2.8-2-4.4-2-1.6 0-2.8 2-4.4 2-2 0-3.5-2-3.5-5.3-.1-2 .6-2.7 3.2-2.7s3.4 1.1 4.7 1.1c1.3 0 2.1-1.1 4.7-1.1s3.3.7 3.2 2.7c0 3.3-1.5 5.3-3.5 5.3zm-7.8-5.4c-1.6 0-2.3 1-2.3 1.2 0 .3 1.1.9 2.1.9 1.1 0 2.3-.4 2.3-.7-.2-1-1.1-1.6-2.1-1.4zm6.8 0c-1-.2-1.9.4-2.1 1.4 0 .3 1.2.7 2.3.7 1 0 2.1-.6 2.1-.9 0-.2-.7-1.2-2.3-1.2z" fill="#3E3D40"/></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/icons_screenshots.svg b/browser/extensions/onboarding/content/img/icons_screenshots.svg
new file mode 100644
index 000000000000..8d219dce78b5
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/icons_screenshots.svg
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><svg width="92px" height="92px" viewBox="0 0 92 92" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Tip / Icon / Screenshots</title><desc>Created with Sketch.</desc><defs></defs><g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Tip-/-Icon-/-Screenshots" fill-rule="nonzero" fill="#0C0C0D"><g id="Icon-/-Screenshot-/-Web"><path d="M23.0526905,5.75 C16.7062659,5.75 11.5614723,10.8982866 11.5614723,17.2490201 L23.0526905,17.2490201 L23.0526905,5.75 Z M57.5263453,5.75 L46.035127,5.75 L46.035127,17.2490201 L57.5263453,17.2490201 L57.5263453,5.75 Z M80.5087818,5.75 L80.5087818,17.2490201 L92,17.2490201 C92,10.8982866 86.8552063,5.75 80.5087818,5.75 Z M40.2895179,5.75 L28.7982997,5.75 L28.7982997,17.2490201 L40.2895179,17.2490201 L40.2895179,5.75 Z M74.7631726,5.75 L63.2719544,5.75 L63.2719544,17.2490201 L74.7631726,17.2490201 L74.7631726,5.75 Z M80.5087818,34.4975502
L92,34.4975502 L92,22.9985301 L80.5087818,22.9985301 L80.5087818,34.4975502 Z M80.5087818,68.9946104 C86.8552063,68.9946104 92,63.8463237 92,57.4955903 L80.5087818,57.4955903 L80.5087818,68.9946104 Z M80.5087818,51.7460803 L92,51.7460803 L92,40.2470602 L80.5087818,40.2470602 L80.5087818,51.7460803 Z M77.9749681,39.286892 C74.3364854,34.0846734 67.1729138,32.8182928 61.9734467,36.4581331 L39.9390357,52.734996 L28.631677,44.8006721 C28.7205927,44.2448747 28.7762328,43.6842562 28.7982997,43.1218152 C28.7892628,38.6172543 26.6604054,34.3800822 23.0526905,31.6860398 L23.0526905,22.9985301 L11.5614723,22.9985301 L11.5614723,29.0355156 C5.79583786,30.1835386 1.31120668,34.7313256 0.240775953,40.5156383 C-0.829654779,46.2999509 1.73019662,52.1531434 6.70268981,55.2910372 C11.675183,58.4289309 18.0565494,58.2180974 22.811375,54.7588235 L29.9474215,59.7551477 L21.9035687,65.4011666 C16.3310302,62.0167647 9.17796578,62.8225007 4.49677041,67.3619045 C-0.184424965,71.9013083 -1.21401,79.0303725
1.99130168,84.710299 C5.19661336,90.3902255 11.8290284,93.1895755 18.1311131,91.5224455 C24.4331979,89.8553154 28.8167193,84.1418505 28.7982997,77.6188754 C28.7959008,76.6687877 28.699673,75.721263 28.5110192,74.7901165 L77.9749681,39.286892 Z M14.4342769,50.3087028 C10.4677615,50.3087028 7.25226545,47.0910236 7.25226545,43.1218152 C7.25226545,39.1526068 10.4677615,35.9349277 14.4342769,35.9349277 C18.4007922,35.9349277 21.6162883,39.1526068 21.6162883,43.1218152 C21.6162883,47.0910236 18.4007922,50.3087028 14.4342769,50.3087028 Z M14.4342769,84.805763 C10.4677615,84.805763 7.25226545,81.5880838 7.25226545,77.6188754 C7.25226545,73.649667 10.4677615,70.4319879 14.4342769,70.4319879 C18.4007922,70.4319879 21.6162883,73.649667 21.6162883,77.6188754 C21.6162883,81.5880838 18.4007922,84.805763 14.4342769,84.805763 Z M45.4605661,70.8402031 L62.7950688,84.0640762 C67.9945359,87.7039165 75.1581075,86.4375358 78.7965902,81.2353172 L55.457926,63.8200513 L45.4605661,70.8402031 Z" id="Shape"><
/path></g></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/icons_singlesearch.svg b/browser/extensions/onboarding/content/img/icons_singlesearch.svg
new file mode 100644
index 000000000000..3e06a3852288
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/icons_singlesearch.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16 "><title>Icons / Search</title><g fill="none"><path d="M0 0h32v32H0z"/><path d="M23.7 22.3l-4.8-4.8c1.8-2.5 1.4-6.1-1-8.1s-5.9-1.9-8.1.4c-2.3 2.2-2.4 5.7-.4 8.1 2 2.4 5.6 2.8 8.1 1l4.8 4.8c.4.4 1 .4 1.4 0 .4-.4.4-1 0-1.4zM14 18c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4c0 1.1-.4 2.1-1.1 2.9-.8.7-1.8 1.1-2.9 1.1z" fill="#3E3D40"/></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/icons_sync.svg b/browser/extensions/onboarding/content/img/icons_sync.svg
new file mode 100644
index 000000000000..286422275aa7
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/icons_sync.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16"><title> Icons / Sync</title><desc> Created with Sketch.</desc><g fill="none"><rect width="32" height="32"/><path d="M22 9C21.4 9 21 9.4 21 10L21 11.1C19.2 9.3 16.6 8.6 14.2 9.2 11.7 9.9 9.8 11.8 9.2 14.3 9.1 14.7 9.2 15 9.5 15.3 9.8 15.5 10.1 15.6 10.5 15.5 10.8 15.4 11.1 15.1 11.2 14.8 11.7 12.6 13.7 11 16 11 17.6 11 19 11.7 20 13L18 13C17.4 13 17 13.4 17 14 17 14.6 17.4 15 18 15L22 15C22.6 15 23 14.6 23 14L23 10C23 9.4 22.6 9 22 9ZM22 16.5C21.8 16.4 21.5 16.5 21.3 16.6 21.1 16.7 20.9 17 20.8 17.2 20.3 19.4 18.3 21 16 21 14.4 21 13 20.3 12 19L14 19C14.6 19 15 18.6 15 18 15 17.4 14.6 17 14 17L10 17C9.4 17 9 17.4 9 18L9 22C9 22.6 9.4 23 10 23 10.6 23 11 22.6 11 22L11 20.9C12.8 22.7 15.4 23.4 17.8 22.8 20.3 22.1 22.2 20.2 22.8 17.7 22.9 17.2 22.6 16.6 22 16.5Z" fill="#3E3D40"/></g></svg>
diff --git a/browser/extensions/onboarding/content/img/icons_tour-complete.svg b/browser/extensions/onboarding/content/img/icons_tour-complete.svg
new file mode 100644
index 000000000000..173e72c332df
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/icons_tour-complete.svg
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <!-- Generator: Sketch 44.1 (41455) - http://www.bohemiancoding.com/sketch -->
+ <title>Tip / Check</title>
+ <desc>Created with Sketch.</desc>
+ <defs></defs>
+ <g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
+ <g id="Tips-/-Navigation" transform="translate(-30.000000, -117.000000)" stroke-width="2">
+ <g id="Group">
+ <g id="Tip-/-Check" transform="translate(30.000000, 117.000000)">
+ <circle id="Oval-2" stroke="#FFFFFF" fill="#33F70C" fill-rule="evenodd" cx="10" cy="10" r="9"></circle>
+ <polyline id="Path-31" stroke="#165866" stroke-linecap="round" stroke-linejoin="round" points="5.5 10.5 8.5 13.5 14.5 6.5"></polyline>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/watermark.svg b/browser/extensions/onboarding/content/img/watermark.svg
new file mode 100644
index 000000000000..c9345ed2ba1d
--- /dev/null
+++ b/browser/extensions/onboarding/content/img/watermark.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><title>newtab-firefox-gry</title><path d="M31.359,14.615h0c-.044-.289-.088-.459-.088-.459s-.113.131-.3.378A10.77,10.77,0,0,0,30.6,12.5a13.846,13.846,0,0,0-.937-2.411,10.048,10.048,0,0,0-.856-1.468q-.176-.263-.359-.51c-.57-.931-1.224-1.5-1.981-2.576a7.806,7.806,0,0,1-.991-2.685A10.844,10.844,0,0,0,25,4.607c-.777-.784-1.453-1.341-1.861-1.721C21.126,1.006,21.36.031,21.36.031h0S17.6,4.228,19.229,8.6a8.4,8.4,0,0,0,2.8,3.733c1.576,1.3,3.273,2.323,4.168,4.937a8.377,8.377,0,0,0-3.144-3.317,7.573,7.573,0,0,1,.6,3,7.124,7.124,0,0,1-8.711,6.94,6.561,6.561,0,0,1-1.765-.6,7.183,7.183,0,0,1-2.115-1.955l-.01-.017.126.046a6.5,6.5,0,0,0,.9.241,5.628,5.628,0,0,0,3.583-.423c1.126-.625,1.808-1.088,2.361-.905l.01,0c.54.172.966-.352.58-.9a2.94,2.94,0,0,0-2.848-1.112c-1.127.164-2.16.965-3.637.189a3.129,3.129,0,0,1-.277-.163c-.1-.057.317.087.22.022a7.33,7.33,0,0,1-.928-.554c-.022-.018.223.07.2.052a3.581,3.581,0,0,1-.968-.979
,1.741,1.741,0,0,1-.066-1.554,1.371,1.371,0,0,1,.6-.564c.191.094.309.165.309.165s-.087-.16-.134-.244c.017-.006.032,0,.049-.011.167.072.537.26.732.375a1.016,1.016,0,0,1,.335.3s.067-.033.017-.173a.9.9,0,0,0-.346-.424l.016,0a2.94,2.94,0,0,1,.426.265,2.079,2.079,0,0,0,.17-.9,1.178,1.178,0,0,0-.069-.5c-.053-.1.03-.14.123-.035a.976.976,0,0,0-.079-.238v-.008h0s.053-.069.077-.094a1.43,1.43,0,0,1,.216-.176,9.973,9.973,0,0,1,1.465-.747c.414-.181.757-.319.827-.359a2.3,2.3,0,0,0,.293-.225,1.968,1.968,0,0,0,.66-1.14,1.6,1.6,0,0,0,.017-.178v-.05l0-.03v0l0-.012v0l0-.013h0c-.06-.225-.448-.394-2.476-.584a1.773,1.773,0,0,1-1.45-1.36l0,.009c-.029.074-.055.149-.081.225.026-.075.052-.15.081-.225l0-.016a5.138,5.138,0,0,1,1.986-2.466c.052-.042-.208.011-.156-.032a5.156,5.156,0,0,1,.53-.224c.091-.038-.39-.222-.815-.177a2.2,2.2,0,0,0-.756.178c.1-.086.4-.2.329-.2a4.865,4.865,0,0,0-1.542.583.314.314,0,0,1,.03-.14,2.4,2.4,0,0,0-.964.744,1.275,1.275,0,0,0,.01-.174,2.876,2.876,0,0,0-.473.444l-.009.007a6.285,6.285
,0,0,0-3.517-.3l-.01-.009.012,0a2.943,2.943,0,0,1-.625-.7L6.1,5.852,6.081,5.83c-.077-.114-.156-.243-.237-.387-.058-.1-.117-.217-.176-.338,0-.008-.009-.011-.013-.012-.024,0-.041.111-.061.082l0-.006a4.308,4.308,0,0,1-.283-1.687l-.016.008a1.884,1.884,0,0,0-.714.934c-.061.137-.1.212-.14.287,0,.006,0-.01,0-.035.009-.069.039-.211.032-.2s-.012.019-.019.029a1.733,1.733,0,0,0-.251.372,2.355,2.355,0,0,0-.15.382c-.006.021,0-.018,0-.064s.009-.128,0-.111l-.022.043a9.5,9.5,0,0,0-.8,3.035A3.022,3.022,0,0,0,3.2,8.7v.016a6.628,6.628,0,0,0-.817,1.1,15.606,15.606,0,0,0-1.727,4.23,10.351,10.351,0,0,1,.925-1.621,15,15,0,0,0-1.045,5.5,14.233,14.233,0,0,1,.45-1.629A13.807,13.807,0,0,0,2.234,22.76a15.037,15.037,0,0,0,5.951,6.748h0a13.016,13.016,0,0,0,3.468,1.662c.162.059.326.117.494.173-.053-.021-.1-.044-.153-.067a15.7,15.7,0,0,0,4.5.662c5.394,0,7.175-2.054,7.339-2.259h0a2.73,2.73,0,0,0,.637-.856h0q.156-.064.315-.137l.067-.03.121-.057a11.312,11.312,0,0,0,2.277-1.426,5.5,5.5,0,0,0,2.123-3.1h0a1.938,1.938,0,
0,0,.029-1.428q.083-.131.171-.28a12.706,12.706,0,0,0,1.907-6.181v-.006c0-.059,0-.118,0-.177A7.731,7.731,0,0,0,31.359,14.615Z" fill="context-fill"/></svg>
diff --git a/browser/extensions/onboarding/content/onboarding-tour-agent.js b/browser/extensions/onboarding/content/onboarding-tour-agent.js
new file mode 100644
index 000000000000..d60a41b2c9f5
--- /dev/null
+++ b/browser/extensions/onboarding/content/onboarding-tour-agent.js
@@ -0,0 +1,94 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+/* globals Mozilla */
+
+(function() {
+"use strict";
+
+let onCanSetDefaultBrowserInBackground = () => {
+ Mozilla.UITour.getConfiguration("appinfo", config => {
+ let canSetInBackGround = config.canSetDefaultBrowserInBackground;
+ let btn = document.getElementById("onboarding-tour-default-browser-button");
+ btn.setAttribute("data-cansetbg", canSetInBackGround);
+ btn.textContent = canSetInBackGround ? btn.getAttribute("data-bg") : btn.getAttribute("data-panel");
+ });
+};
+
+let onClick = evt => {
+ switch (evt.target.id) {
+ case "onboarding-tour-addons-button":
+ Mozilla.UITour.showHighlight("addons");
+ break;
+ case "onboarding-tour-customize-button":
+ Mozilla.UITour.showHighlight("customize");
+ break;
+ case "onboarding-tour-default-browser-button":
+ Mozilla.UITour.getConfiguration("appinfo", (config) => {
+ let isDefaultBrowser = config.defaultBrowser;
+ let btn = document.getElementById("onboarding-tour-default-browser-button");
+ let msg = document.getElementById("onboarding-tour-is-default-browser-msg");
+ let canSetInBackGround = btn.getAttribute("data-cansetbg") === "true";
+ if (isDefaultBrowser || canSetInBackGround) {
+ btn.classList.add("onboarding-hidden");
+ msg.classList.remove("onboarding-hidden");
+ if (canSetInBackGround) {
+ Mozilla.UITour.setConfiguration("defaultBrowser");
+ }
+ } else {
+ btn.disabled = true;
+ Mozilla.UITour.setConfiguration("defaultBrowser");
+ }
+ });
+ break;
+ case "onboarding-tour-library-button":
+ Mozilla.UITour.showHighlight("library");
+ break;
+ case "onboarding-tour-private-browsing-button":
+ Mozilla.UITour.showHighlight("privateWindow");
+ break;
+ case "onboarding-tour-singlesearch-button":
+ Mozilla.UITour.showMenu("urlbar");
+ break;
+ case "onboarding-tour-sync-button":
+ let emailInput = document.getElementById("onboarding-tour-sync-email-input");
+ if (emailInput.checkValidity()) {
+ Mozilla.UITour.showFirefoxAccounts(null, emailInput.value);
+ }
+ break;
+ case "onboarding-tour-sync-connect-device-button":
+ Mozilla.UITour.showConnectAnotherDevice();
+ break;
+ }
+ let classList = evt.target.classList;
+ // On keyboard navigation the target would be .onboarding-tour-item.
+ // On mouse clicking the target would be .onboarding-tour-item-container.
+ if (classList.contains("onboarding-tour-item") || classList.contains("onboarding-tour-item-container")) {
+ Mozilla.UITour.hideHighlight(); // Clean up UITour if a user tries to change to other tours.
+ }
+};
+
+let overlay = document.getElementById("onboarding-overlay");
+overlay.addEventListener("submit", e => e.preventDefault());
+overlay.addEventListener("click", onClick);
+overlay.addEventListener("keypress", e => {
+ let { target, key } = e;
+ let classList = target.classList;
+ if ((key == " " || key == "Enter") &&
+ // On keyboard navigation the target would be .onboarding-tour-item.
+ // On mouse clicking the target would be .onboarding-tour-item-container.
+ (classList.contains("onboarding-tour-item") || classList.contains("onboarding-tour-item-container"))) {
+ Mozilla.UITour.hideHighlight(); // Clean up UITour if a user tries to change to other tours.
+ }
+});
+let overlayObserver = new MutationObserver(mutations => {
+ if (!overlay.classList.contains("onboarding-opened")) {
+ Mozilla.UITour.hideHighlight(); // Clean up UITour if a user tries to close the dialog.
+ }
+});
+overlayObserver.observe(overlay, { attributes: true });
+document.getElementById("onboarding-overlay-button").addEventListener("Agent:Destroy", () => Mozilla.UITour.hideHighlight());
+document.addEventListener("Agent:CanSetDefaultBrowserInBackground", onCanSetDefaultBrowserInBackground);
+
+})();
diff --git a/browser/extensions/onboarding/content/onboarding.css b/browser/extensions/onboarding/content/onboarding.css
new file mode 100644
index 000000000000..8f2431477634
--- /dev/null
+++ b/browser/extensions/onboarding/content/onboarding.css
@@ -0,0 +1,589 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+#onboarding-overlay * {
+ box-sizing: border-box;
+}
+
+#onboarding-overlay {
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ /* Ensuring we can put the overlay over elements using
+ z-index on original page */
+ z-index: 20999;
+ color: #4d4d4d;
+ background: var(--newtab-overlay-color, rgb(245, 245, 247, 0.9)); /* #f7f7f5, 0.9 opacity */
+ display: none;
+}
+
+#onboarding-overlay.onboarding-opened {
+ display: block;
+}
+
+#onboarding-overlay-button {
+ padding: 10px 0 0 0;
+ position: fixed;
+ cursor: pointer;
+ top: 4px;
+ inset-inline-start: 12px;
+ border: none;
+ /* Set to none so no grey contrast background in the high-contrast mode */
+ background: none;
+ /* make sure the icon stay above the activity-stream searchbar */
+ /* We want this always under #onboarding-overlay */
+ z-index: 10;
+}
+
+/* Keyboard focus styling */
+#onboarding-overlay-button:-moz-focusring {
+ outline: solid 2px rgba(0, 0, 0, 0.1);
+ -moz-outline-radius: 5px;
+ outline-offset: 5px;
+ transition: outline-offset 150ms;
+}
+
+#onboarding-overlay-button > img {
+ width: 32px;
+ vertical-align: top;
+}
+
+#onboarding-overlay-button::after {
+ content: " ";
+ border-radius: 50%;
+ margin-top: -1px;
+ margin-inline-start: -13px;
+ border: 2px solid #f2f2f2;
+ background: #0A84FF;
+ padding: 0;
+ width: 10px;
+ height: 10px;
+ min-width: unset;
+ max-width: unset;
+ display: block;
+ box-sizing: content-box;
+ float: inline-end;
+ position: relative;
+}
+
+#onboarding-overlay-button:hover::after,
+#onboarding-overlay-button.onboarding-speech-bubble::after {
+ background: #0060df;
+ font-size: 13px;
+ text-align: center;
+ color: #fff;
+ box-sizing: content-box;
+ font-weight: 400;
+ content: attr(aria-label);
+ border: 1px solid transparent;
+ border-radius: 2px;
+ padding: 10px 16px;
+ width: auto;
+ height: auto;
+ min-width: 100px;
+ max-width: 140px;
+ white-space: pre-line;
+ margin-inline-start: 4px;
+ margin-top: -10px;
+ box-shadow: -2px 0 5px 0 rgba(74, 74, 79, 0.25);
+}
+
+#onboarding-overlay-button:dir(rtl)::after {
+ box-shadow: 2px 0 5px 0 rgba(74, 74, 79, 0.25);
+}
+
+#onboarding-overlay-button-watermark-icon {
+ -moz-context-properties: fill;
+ fill: var(--newtab-icon-tertiary-color, #d7d7db);
+}
+
+#onboarding-overlay-button-watermark-icon,
+#onboarding-overlay-button.onboarding-watermark::after,
+#onboarding-overlay-button.onboarding-watermark:not(:hover) > #onboarding-overlay-button-icon {
+ display: none;
+}
+
+#onboarding-overlay-button.onboarding-watermark:not(:hover) > #onboarding-overlay-button-watermark-icon {
+ display: block;
+}
+
+#onboarding-overlay-dialog,
+.onboarding-hidden,
+#onboarding-tour-sync-page[data-login-state=logged-in] .show-on-logged-out,
+#onboarding-tour-sync-page[data-login-state=logged-out] .show-on-logged-in {
+ display: none;
+}
+
+.onboarding-close-btn {
+ position: absolute;
+ top: 15px;
+ inset-inline-end: 15px;
+ cursor: pointer;
+ width: 16px;
+ height: 16px;
+ border: none;
+ background: none;
+ padding: 0;
+ }
+
+.onboarding-close-btn::before {
+ content: url("chrome://global/skin/icons/close.svg");
+ -moz-context-properties: fill, fill-opacity;
+ fill-opacity: 0;
+ fill: var(--newtab-icon-primary-color, currentColor);
+}
+
+.onboarding-close-btn:-moz-any(:hover, :active, :focus, :-moz-focusring)::before {
+ fill-opacity: 0.1;
+}
+
+#onboarding-overlay.onboarding-opened > #onboarding-overlay-dialog {
+ width: 960px;
+ height: 510px;
+ background: #fff;
+ border: 1px solid rgba(9, 6, 13, 0.2); /* #09060D, 0.2 opacity */
+ border-radius: 3px;
+ position: relative;
+ margin: 0 calc(50% - 480px);
+ top: calc(50% - 255px);
+ display: grid;
+ grid-template-rows: [dialog-start] 70px [page-start] 1fr [footer-start] 30px [dialog-end];
+ grid-template-columns: [dialog-start] 230px [page-start] 1fr [dialog-end];
+ box-shadow: 0 3px rgba(0, 0, 0, 0.04);
+}
+
+#onboarding-overlay.onboarding-opened > #onboarding-overlay-dialog:-moz-focusring {
+ outline: none;
+}
+
+@media (max-height: 510px) {
+ #onboarding-overlay.onboarding-opened > #onboarding-overlay-dialog {
+ top: 0;
+ }
+}
+
+#onboarding-overlay-dialog > header {
+ grid-row: dialog-start / page-start;
+ grid-column: dialog-start / tour-end;
+ margin-top: 22px;
+ margin-bottom: 0;
+ margin-inline-end: 0;
+ margin-inline-start: 36px;
+ font-size: 22px;
+ font-weight: 200;
+}
+
+#onboarding-overlay-dialog > nav {
+ grid-row: dialog-start / footer-start;
+ grid-column-start: dialog-start;
+ margin-top: 40px;
+ margin-bottom: 0;
+ margin-inline-end: 0;
+ margin-inline-start: 0;
+ padding: 0;
+}
+
+#onboarding-overlay-dialog > footer {
+ grid-column: dialog-start / tour-end;
+ font-size: 13px;
+}
+
+#onboarding-skip-tour-button {
+ margin-inline-start: 27px;
+ margin-bottom: 27px;
+}
+
+/* Onboarding tour list */
+#onboarding-tour-list {
+ margin: 40px 0 0 0;
+ padding: 0;
+ margin-inline-start: 16px;
+}
+
+#onboarding-tour-list .onboarding-tour-item-container {
+ list-style: none;
+ outline: none;
+ position: relative;
+}
+
+#onboarding-tour-list .onboarding-tour-item {
+ pointer-events: none;
+ display: list-item;
+ padding-inline-start: 49px;
+ padding-top: 14px;
+ padding-bottom: 14px;
+ margin-bottom: 9px;
+ font-size: 16px;
+ cursor: pointer;
+ max-height: 54px;
+ --onboarding-tour-item-active-color: #0A84FF;
+}
+
+#onboarding-tour-list .onboarding-tour-item:dir(rtl) {
+ background-position-x: right 17px;
+}
+
+#onboarding-tour-list .onboarding-tour-item.onboarding-complete::before {
+ content: url("img/icons_tour-complete.svg");
+ position: relative;
+ inset-inline-start: 3px;
+ top: -10px;
+ float: inline-start;
+}
+
+#onboarding-tour-list .onboarding-tour-item.onboarding-complete {
+ padding-inline-start: 29px;
+}
+
+#onboarding-tour-list .onboarding-tour-item::after {
+ content: "";
+ display: block;
+ width: 48px;
+ height: 48px;
+ position: absolute;
+ inset-inline-start: 0px;
+ top: 0px;
+ background-color: #3E3D40;
+ mask-repeat: no-repeat;
+ mask-position: left 17px top 14px;
+ mask-size: 20px;
+}
+
+#onboarding-tour-list .onboarding-tour-item:dir(rtl)::after {
+ mask-position: right 17px top 14px;
+}
+
+#onboarding-tour-list .onboarding-tour-item.onboarding-active::after,
+#onboarding-tour-list .onboarding-tour-item-container:hover .onboarding-tour-item::after {
+ background-color: var(--onboarding-tour-item-active-color);
+}
+
+#onboarding-tour-list .onboarding-tour-item.onboarding-active,
+#onboarding-tour-list .onboarding-tour-item-container:hover .onboarding-tour-item {
+ color: var(--onboarding-tour-item-active-color);
+ /* With 1px transparent outline, could see a border in the high-constrast mode */
+ outline: 1px solid transparent;
+}
+
+/* Default browser tour */
+#onboarding-tour-is-default-browser-msg {
+ font-size: 16px;
+ line-height: 21px;
+ float: inline-end;
+ margin-inline-end: 26px;
+ margin-top: -32px;
+ text-align: center;
+}
+
+/* Sync tour */
+#onboarding-tour-sync-page form {
+ text-align: center;
+}
+
+#onboarding-tour-sync-page form > h3 {
+ text-align: center;
+ margin: 0;
+ font-size: 22px;
+ font-weight: normal;
+}
+
+#onboarding-tour-sync-page form > p {
+ text-align: center;
+ margin: 3px 0 0 0;
+ font-size: 15px;
+ font-weight: normal;
+}
+
+#onboarding-tour-sync-page form > input {
+ margin-top: 10px;
+ height: 40px;
+ width: 80%;
+ padding: 7px;
+}
+
+#onboarding-tour-sync-page form > #onboarding-tour-sync-button {
+ padding: 10px 20px;
+ min-width: 40%;
+ margin: 15px 0;
+ float: none;
+}
+
+/* Onboarding tour pages */
+.onboarding-tour-page {
+ grid-row: page-start / footer-end;
+ grid-column: page-start;
+ display: grid;
+ grid-template-rows: [tour-page-start] 393px [tour-button-start] 1fr [tour-page-end];
+ grid-template-columns: [tour-page-start] 368px [tour-content-start] 1fr [tour-page-end];
+}
+
+.onboarding-tour-description {
+ grid-row: tour-page-start / tour-page-end;
+ grid-column: tour-page-start / tour-content-start;
+ font-size: 15px;
+ line-height: 22px;
+ padding-inline-start: 40px;
+ padding-inline-end: 28px;
+ max-height: 360px;
+ overflow: auto;
+}
+
+.onboarding-tour-description > h1 {
+ font-size: 36px;
+ margin-top: 16px;
+ font-weight: 300;
+ line-height: 44px;
+}
+
+.onboarding-tour-content {
+ grid-row: tour-page-start / tour-button-start;
+ grid-column: tour-content-start / tour-page-end;
+ padding: 0;
+ text-align: end;
+}
+
+.onboarding-tour-content > img {
+ width: 352px;
+ margin: 0;
+}
+
+/* These illustrations need to be stuck on the right side to the border. Thus we
+ need to flip them horizontally on RTL . */
+.onboarding-tour-content > img:dir(rtl) {
+ transform: scaleX(-1);
+}
+
+.onboarding-tour-content > iframe {
+ width: 100%;
+ height: 100%;
+ border: none;
+}
+
+.onboarding-tour-button-container {
+ /* Get higher z-index in order to ensure buttons within container are selectable */
+ z-index: 2;
+ grid-row: tour-button-start / tour-page-end;
+ grid-column: tour-content-start / tour-page-end;
+}
+
+.onboarding-tour-action-button {
+ background: #0060df;
+ /* With 1px transparent border, could see a border in the high-constrast mode */
+ border: 1px solid transparent;
+ border-radius: 2px;
+ padding: 10px 20px;
+ font-size: 14px;
+ font-weight: 600;
+ line-height: 16px;
+ color: #fff;
+ float: inline-end;
+ margin-inline-end: 26px;
+ margin-top: -32px;
+}
+
+/* Remove default dotted outline around buttons' text */
+#onboarding-overlay button::-moz-focus-inner,
+#onboarding-overlay-button::-moz-focus-inner {
+ border: 0;
+}
+
+/* Keyboard focus specific outline */
+#onboarding-overlay button:-moz-focusring,
+.onboarding-action-button:-moz-focusring,
+#onboarding-tour-list .onboarding-tour-item:focus {
+ outline: 2px solid rgba(0,149,221,0.5);
+ outline-offset: 1px;
+ -moz-outline-radius: 2px;
+}
+
+.onboarding-tour-action-button:hover:not([disabled]) {
+ background: #003eaa;
+ cursor: pointer;
+}
+
+.onboarding-tour-action-button:active:not([disabled]) {
+ background: #002275;
+}
+
+.onboarding-tour-action-button:disabled {
+ opacity: 0.5;
+}
+
+/* Tour Icons */
+#onboarding-tour-singlesearch.onboarding-tour-item::after,
+#onboarding-notification-bar[data-target-tour-id=onboarding-tour-singlesearch] #onboarding-notification-tour-title::before {
+ mask-image: url("img/icons_singlesearch.svg");
+}
+
+#onboarding-tour-private-browsing.onboarding-tour-item::after,
+#onboarding-notification-bar[data-target-tour-id=onboarding-tour-private-browsing] #onboarding-notification-tour-title::before {
+ mask-image: url("img/icons_private.svg");
+}
+
+#onboarding-tour-addons.onboarding-tour-item::after,
+#onboarding-notification-bar[data-target-tour-id=onboarding-tour-addons] #onboarding-notification-tour-title::before {
+ mask-image: url("img/icons_addons.svg");
+}
+
+#onboarding-tour-customize.onboarding-tour-item::after,
+#onboarding-notification-bar[data-target-tour-id=onboarding-tour-customize] #onboarding-notification-tour-title::before {
+ mask-image: url("img/icons_customize.svg");
+}
+
+#onboarding-tour-default-browser.onboarding-tour-item::after,
+#onboarding-notification-bar[data-target-tour-id=onboarding-tour-default-browser] #onboarding-notification-tour-title::before {
+ mask-image: url("img/icons_default.svg");
+}
+
+#onboarding-tour-sync.onboarding-tour-item::after,
+#onboarding-notification-bar[data-target-tour-id=onboarding-tour-sync] #onboarding-notification-tour-title::before {
+ mask-image: url("img/icons_sync.svg");
+}
+
+#onboarding-tour-library.onboarding-tour-item::after,
+#onboarding-notification-bar[data-target-tour-id=onboarding-tour-library] #onboarding-notification-tour-title::before {
+ mask-image: url("img/icons_library.svg");
+}
+
+#onboarding-tour-performance.onboarding-tour-item::after,
+#onboarding-notification-bar[data-target-tour-id=onboarding-tour-performance] #onboarding-notification-tour-title::before {
+ mask-image: url("img/icons_performance.svg");
+}
+
+#onboarding-tour-screenshots.onboarding-tour-item::after,
+#onboarding-notification-bar[data-target-tour-id=onboarding-tour-screenshots] #onboarding-notification-tour-title::before {
+ mask-image: url("img/icons_screenshots.svg");
+}
+
+a#onboarding-tour-screenshots-button,
+a#onboarding-tour-screenshots-button:hover,
+a#onboarding-tour-screenshots-button:visited {
+ color: #fff;
+ text-decoration: none;
+}
+
+/* Tour Notifications */
+#onboarding-notification-bar {
+ position: fixed;
+ z-index: 20998; /* We want this always under #onboarding-overlay */
+ left: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100px;
+ min-width: 640px;
+ background: var(--newtab-snippets-background-color, rgba(255, 255, 255, 0.97));
+ border-top: 1px solid var(--newtab-snippets-hairline-color, #e9e9e9);
+ box-shadow: 0 -1px 4px 0 rgba(12, 12, 13, 0.1);
+ transition: transform 0.8s;
+ transform: translateY(122px);
+}
+
+#onboarding-notification-bar.onboarding-opened {
+ transition: none;
+ transform: translateY(0px);
+}
+
+#onboarding-notification-close-btn {
+ position: absolute;
+ inset-block-start: 50%;
+ inset-inline-end: 24px;
+ transform: translateY(-50%);
+}
+
+#onboarding-notification-message-section {
+ height: 100%;
+ display: flex;
+ align-items: center;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+}
+
+#onboarding-notification-body {
+ width: 500px;
+ margin: 0 18px;
+ color: var(--newtab-text-primary-color, #0c0c0d);
+ display: inline-block;
+ max-height: 120px;
+ overflow: auto;
+ padding: 15px 0;
+ box-sizing: border-box;
+}
+
+#onboarding-notification-body * {
+ font-size: 12px;
+ font-weight: normal;
+ margin-top: 5px;
+}
+
+#onboarding-notification-tour-title {
+ margin: 0;
+ font-weight: bold;
+ color: var(--newtab-text-primary-color, #0f1126);
+ font-size: 14px;
+}
+
+#onboarding-notification-tour-title::before {
+ content: "";
+ background-color: var(--newtab-text-primary-color, #0f1126);
+ mask-repeat: no-repeat;
+ mask-size: 14px;
+ height: 16px;
+ width: 16px;
+ float: inline-start;
+ margin-top: 2px;
+ margin-inline-end: 2px;
+}
+
+#onboarding-notification-tour-icon {
+ min-width: 64px;
+ height: 64px;
+ background-size: 64px;
+ background-repeat: no-repeat;
+ background-image: url("chrome://branding/content/icon64.png");
+}
+
+.onboarding-action-button {
+ background: #fbfbfb;
+ /* With 1px border, could see a border in the high-constrast mode */
+ border: 1px solid #c1c1c1;
+ border-radius: 2px;
+ padding: 10px 20px;
+ font-size: 14px;
+ font-weight: 600;
+ line-height: 16px;
+ color: #202340;
+ min-width: 130px;
+}
+
+.onboarding-action-button:hover {
+ background-color: #ebebeb;
+ cursor: pointer;
+}
+
+.onboarding-action-button:active {
+ background-color: #dadada;
+}
+
+#onboarding-notification-bar .onboarding-action-button {
+ background-color: var(--newtab-button-secondary-color);
+ border-color: var(--newtab-border-primary-color);
+ border-radius: 4px;
+ color: var(--newtab-text-primary-color);
+}
+
+#onboarding-notification-bar .onboarding-action-button:hover,
+#onboarding-notification-bar .onboarding-action-button:active {
+ background-color: var(--newtab-button-secondary-color);
+ box-shadow: 0 0 0 5px var(--newtab-card-active-outline-color);
+ transition: box-shadow 150ms;
+}
+
+@media (min-resolution: 2dppx) {
+ #onboarding-notification-tour-icon {
+ background-image: url("chrome://branding/content/icon128.png");
+ }
+}
diff --git a/browser/extensions/onboarding/content/onboarding.js b/browser/extensions/onboarding/content/onboarding.js
new file mode 100644
index 000000000000..c67bd8876201
--- /dev/null
+++ b/browser/extensions/onboarding/content/onboarding.js
@@ -0,0 +1,37 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+/* eslint-env mozilla/frame-script */
+
+"use strict";
+
+ChromeUtils.import("resource://gre/modules/Services.jsm");
+ChromeUtils.defineModuleGetter(this, "Onboarding", "resource://onboarding/Onboarding.jsm");
+
+const ABOUT_HOME_URL = "about:home";
+const ABOUT_NEWTAB_URL = "about:newtab";
+const ABOUT_WELCOME_URL = "about:welcome";
+
+// Load onboarding module only when we enable it.
+if (Services.prefs.getBoolPref("browser.onboarding.enabled", false)) {
+ addEventListener("load", function onLoad(evt) {
+ if (!content || evt.target != content.document) {
+ return;
+ }
+
+ let window = evt.target.defaultView;
+ let location = window.location.href;
+ if (location == ABOUT_NEWTAB_URL || location == ABOUT_HOME_URL || location == ABOUT_WELCOME_URL) {
+ // We just want to run tests as quickly as possible
+ // so in the automation test, we don't do `requestIdleCallback`.
+ if (Cu.isInAutomation) {
+ new Onboarding(this, window);
+ return;
+ }
+ window.requestIdleCallback(() => {
+ new Onboarding(this, window);
+ });
+ }
+ }, true);
+}
diff --git a/browser/extensions/onboarding/data_events.md b/browser/extensions/onboarding/data_events.md
new file mode 100644
index 000000000000..3fc5ffa41b86
--- /dev/null
+++ b/browser/extensions/onboarding/data_events.md
@@ -0,0 +1,154 @@
+# Metrics we collect
+
+We adhere to [Activity Stream's data collection policy](https://github.com/mozilla/activity-stream/blob/master/docs/v2-syst…. Data about your specific browsing behavior or the sites you visit is **never transmitted to any Mozilla server**. At any time, it is easy to **turn off** this data collection by [opting out of Firefox telemetry](https://support.mozilla.org/kb/share-telemetry-data-mozilla-help….
+
+## User event pings
+
+The Onboarding system add-on sends 2 types of pings(HTTPS POST) to the backend [Onyx server](https://github.com/mozilla/onyx) :
+- a `session` ping that describes the ending of an Onboarding session (a new tab is closed or refreshed, an overlay is closed, a notification bar is closed), and
+- an `event` ping that records specific data about individual user interactions while interacting with Onboarding
+
+For reference, Onyx is a Mozilla owned service to serve tiles for the current newtab in Firefox. It also receives all the telemetry from the about:newtab and about:home page as well as Activity Stream. It's operated and monitored by the Cloud Services team.
+
+# Example Onboarding `session` Log
+
+```js
+{
+ // These fields are sent from the client
+ "addon_version": "1.0.0",
+ "category": ["onboarding-interactions"|"overlay-interactions"|"notification-interactions"],
+ "client_id": "374dc4d8-0cb2-4ac5-a3cf-c5a9bc3c602e",
+ "locale": "en-US",
+ "type": ["onboarding_session" | "overlay_session" | "notification_session"],
+ "page": ["about:newtab" | "about:home" | "about:welcome"],
+ "parent_session_id": "{45cddbeb-2bec-4f3a-bada-fb87d4b79a6c}",
+ "root_session_id": "{45cddbeb-2bec-4f3a-bada-fb87d4b79a6c}",
+ "session_begin": 1505440017018,
+ "session_end": 1505440021992,
+ "session_id": "{12dasd-213asda-213dkakj}",
+ "tour_type" ["new" | "update"],
+
+ // These fields are generated on the server
+ "date": "2016-03-07",
+ "ip": "10.192.171.13",
+ "ua": "python-requests/2.9.1",
+ "receive_at": 1457396660000
+}
+```
+
+| KEY | DESCRIPTION | |
+|-----|-------------|:-----:|
+| `addon_version` | [Required] The version of the Onboarding addon. | :one:
+| `category` | [Required] Either ["", "overlay-interactions", "notification-interactions"] to identify which kind of the interaction | :one:
+| `client_id` | [Required] An identifier generated by [ClientID](https://github.com/mozilla/gecko-dev/blob/master/toolkit/modules/… module to provide an identifier for this device. This data is automatically appended by `ping-centre` module | :one:
+| `ip` | [Auto populated by Onyx] The IP address of the client. Onyx does use (with the permission) the IP address to infer user's geo-information so that it could prepare the corresponding tiles for the country she lives in. However, Ping-centre will NOT store IP address in the database, where only authorized Mozilla employees can access the telemetry data, and all the raw logs are being strictly managed by the Ops team and will expire according to the Mozilla's data retention policy.| :two:
+| `locale` | The browser chrome's language (e.g. en-US). | :two:
+| `page` | [Required] One of ["about:newtab", "about:home", "about:welcome"]| :one:
+| `parent_session_id` | [Required] The unique identifier generated by `gUUIDGenerator` service to identify this event belongs to which parent session. Events happen upon overlay will have the `overlay session uuid` as its `parent_session_id`. Events happen upon notification will have the `notification session uuid` as its `parent_session_id`. | :one:
+| `root_session_id` | [Required] The unique identifier generated by `gUUIDGenerator` service to identify this event belongs to which root session. Every event will have the same `onboarding session uuid` as its `root_session_id` when interact in the same tab. | :one:
+| `session_begin` | [Required] Timestamp in (integer) milliseconds when onboarding/overlay/notification becoming visible. | :one:
+| `session_end` | [Required] Timestamp in (integer) milliseconds when onboarding/overlay/notification losing focus. | :one:
+| `session_id` | [Required] The unique identifier generated by `gUUIDGenerator` service to identify the specific user session. We will log different uuid when onboarding is inited/when the overlay is opened/when notification is shown. | :one:
+| `tour_type` | [Required] One of ["new", "update"] indicates the user is a `new` user or the `update` user upgrade from the older version | :one:
+| `type` | [Required] The type of event. Allowed event strings are defined in the below section | :one:
+| `ua` | [Auto populated by Onyx] The user agent string. | :two:
+| `ver` | [Auto populated by Onyx] The version of the Onyx API the ping was sent to. | :one:
+
+# Example Onboarding `event` Log
+
+```js
+{
+ "addon_version": "1.0.0",
+ "bubble_state": ["bubble" | "dot" | "hide"],
+ "category": ["logo-interactions"|"overlay-interactions"|"notification-interactions"],
+ "client_id": "374dc4d8-0cb2-4ac5-a3cf-c5a9bc3c602e",
+ "locale": "en-US",
+ "logo_state": ["logo" | "watermark"],
+ "notification_impression": [1-8],
+ "notification_state": ["show" | "hide" | "finished"],
+ "page": ["about:newtab" | "about:home" | "about:welcome"],
+ "parent_session_id": "{45cddbeb-2bec-4f3a-bada-fb87d4b79a6c}",
+ "root_session_id": "{45cddbeb-2bec-4f3a-bada-fb87d4b79a6c}",
+ "current_tour_id": ["onboarding-tour-private-browsing" | "onboarding-tour-addons"|...], // tour ids defined in 'onboardingTourset'
+ "target_tour_id": ["onboarding-tour-private-browsing" | "onboarding-tour-addons"|...], // tour ids defined in 'onboardingTourset',
+ "tour_id": ["onboarding-tour-private-browsing" | "onboarding-tour-addons"|...], // tour ids defined in 'onboardingTourset'
+ "timestamp": 1505440017019,
+ "tour_type" ["new" | "update"],
+ "type": ["notification-cta-click" | "overlay-cta-click" | "overlay-nav-click" | "overlay-skip-tour"...],
+ "width": 950,
+
+ // These fields are generated on the server
+ "ip": "10.192.171.13",
+ "ua": "python-requests/2.9.1",
+ "receive_at": 1457396660000,
+ "date": "2016-03-07",
+}
+```
+
+
+| KEY | DESCRIPTION | |
+|-----|-------------|:-----:|
+| `addon_version` | [Required] The version of the Onboarding addon. | :one:
+| `bubble_state` | [Optional] | One of ["bubble", "dot", "hide"] indicates the current visual state of the speach bubble (content dialog besides the onboarding logo). | :one:
+| `category` | [Required] Either ("overlay-interactions", "notification-interactions") to identify which kind of the interaction | :one:
+| `client_id` | [Required] An identifier generated by [ClientID](https://github.com/mozilla/gecko-dev/blob/master/toolkit/modules/… module to provide an identifier for this device. This data is automatically appended by `ping-centre` module | :one:
+| `current_tour_id` | [Optional] id of the current tour. We put "" when this field is not relevant to this event. | :one:
+| `ip` | [Auto populated by Onyx] The IP address of the client. Onyx does use (with the permission) the IP address to infer user's geo-information so that it could prepare the corresponding tiles for the country she lives in. However, Ping-centre will NOT store IP address in the database, where only authorized Mozilla employees can access the telemetry data, and all the raw logs are being strictly managed by the Ops team and will expire according to the Mozilla's data retention policy.| :two:
+| `locale` | The browser chrome's language (e.g. en-US). | :two:
+| `logo_state` | [Optional] One of ["logo", "watermark"] indicates the overlay is opened while in the default or the watermark state. | :one:
+| `notification_impression` | [Optional] An integer to record how many times the current notification tour is shown to the user. Each Notification tour can show not more than 8 times. We put `-1` when this field is not relevant to this event | :one:
+| `notification_state` | [Optional] One of ["show", "hide", "finished"] indicates the current notification bar state. | :one:
+| `page` | [Required] One of ["about:newtab", "about:home"]| :one:
+| `parent_session_id` | [Required] The unique identifier generated by `gUUIDGenerator` service to identify this event belongs to which parent session. Events happen upon overlay will have the `overlay session uuid` as its `parent_session_id`. Events happen upon notification will have the `notification session uuid` as its `parent_session_id`. | :one:
+| `root_session_id` | [Required] The unique identifier generated by `gUUIDGenerator` service to identify this event belongs to which root session. Every event will have the same `onboarding session uuid` as its `root_session_id` when interact in the same tab. | :one:
+| `target_tour_id` | [Optional] id of the target switched tour. We put "" when this field is not relevant to this event. | :one:
+| `timestamp` | [Required] Timestamp in (integer) milliseconds when the event triggered | :one:
+| `tour_type` | [Required] One of ["new", "update"] indicates the user is a `new` user or the `update` user upgrade from the older version | :one:
+| `type` | [Required] The type of event. Allowed event strings are defined in the below section | :one:
+| `ua` | [Auto populated by Onyx] The user agent string. | :two:
+| `ver` | [Auto populated by Onyx] The version of the Onyx API the ping was sent to. | :one:
+| `width` | [Required] Current browser window width rounded by 50 pixels. Collecting rounded values reduces the risk to use these values to derive a unique user identifier. | :one:
+
+**Where:**
+
+:one: Firefox data
+:two: HTTP protocol data
+
+## Event types
+
+Here are all allowed event `type` strings that defined in `OnboardingTelemetry::EVENT_WHITELIST`.
+
+### Onboarding events
+
+| EVENT | DESCRIPTION |
+|-----------|---------------------|
+| `onboarding-logo-click` | event is triggered when a user clicks the logo to open the overlay. |
+| `onboarding-register-session` | internal event triggered when loading the onboarding module, will not send out any data. |
+| `onboarding-session` | event is sent when the tab unload to track the start and end time of the onboarding session. |
+| `onboarding-session-begin` | internal event triggered when the onboarding starts, will not send out any data. |
+| `onboarding-session-end` | internal event triggered when the onboarding ends, `onboarding-session` event is the actual event that send to the server. |
+
+### Overlay events
+
+| EVENT | DESCRIPTION |
+|-----------|---------------------|
+| `overlay-close-button-click` | event is triggered when a user clicks close overlay button. |
+| `overlay-close-outside-click` | event is triggered when a user clicks outside the overlay area to end the tour. |
+| `overlay-cta-click` | event is triggered when a user clicks overlay's Call-To-Action button. |
+| `overlay-current-tour` | event is sent when a tour is shown in the overlay. |
+| `overlay-nav-click` | event is sent when a user clicks a navigation button in the overlay. |
+| `overlay-session` | event is sent when an overlay is closed to track the start and end time of the overlay session. |
+| `overlay-session-begin` | internal event triggered when open the overlay, will not send out any data. |
+| `overlay-session-end` | internal event is triggered when an overlay session ends. `overlay-session` event is the actual event that send to the server. |
+| `overlay-skip-tour` | event is sent when a user clicks `Skip Tour` button in the overlay. |
+
+### Notification events
+
+| EVENT | DESCRIPTION |
+|-----------|---------------------|
+| `notification-appear` | event is sent when a notification appears. |
+| `notification-close-button-click` | event is sent when a user clicks close notification button. |
+| `notification-cta-click` | event is sent when a user clicks the notification's Call-To-Action button. |
+| `notification-session` | event is sent when user closes the notification to track the start and end time of the notification session. |
+| `notification-session-begin` | internal event triggered when user open the notification, will not send out any data. |
+| `notification-session-end` | internal event is triggered when a notification session ends. `notification-session` event is the actual event that send to the server. |
diff --git a/browser/extensions/onboarding/jar.mn b/browser/extensions/onboarding/jar.mn
new file mode 100644
index 000000000000..1d580be9861f
--- /dev/null
+++ b/browser/extensions/onboarding/jar.mn
@@ -0,0 +1,14 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+[features/onboarding(a)mozilla.org] chrome.jar:
+ # resource://onboarding/ is referenced in about:home about:newtab and about:welcome,
+ # so make it content-accessible.
+% resource onboarding %content/ contentaccessible=yes
+ content/ (content/*)
+ # Package UITour-lib.js in here rather than under
+ # /browser/components/uitour to avoid "unreferenced files" error when
+ # Onboarding extension is not built.
+ content/lib/UITour-lib.js (/browser/components/uitour/UITour-lib.js)
+ content/modules/ (*.jsm)
diff --git a/browser/extensions/onboarding/locales/en-US/onboarding.properties b/browser/extensions/onboarding/locales/en-US/onboarding.properties
new file mode 100644
index 000000000000..cc545222a107
--- /dev/null
+++ b/browser/extensions/onboarding/locales/en-US/onboarding.properties
@@ -0,0 +1,126 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+# LOCALIZATION NOTE(onboarding.overlay-title2): This string will be used in the overlay title.
+onboarding.overlay-title2=Let’s get started
+onboarding.skip-tour-button-label=Skip Tour
+#LOCALIZATION NOTE(onboarding.button.learnMore): this string is used as a button label, displayed near the message, and shared across all the onboarding notifications.
+onboarding.button.learnMore=Learn More
+# LOCALIZATION NOTE(onboarding.overlay-icon-tooltip2): This string will be used
+# to show the tooltip alongside the notification icon in the overlay tour. %S is
+# brandShortName. The tooltip is designed to show in two lines. Please use \n to
+# do appropriate line breaking.
+onboarding.overlay-icon-tooltip2=New to %S?\nLet’s get started.
+# LOCALIZATION NOTE(onboarding.overlay-icon-tooltip-updated2): %S is
+# brandShortName. The tooltip is designed to show in two lines. Please use \n to
+# do appropriate line breaking.
+onboarding.overlay-icon-tooltip-updated2=%S is all new.\nSee what you can do!
+# LOCALIZATION NOTE(onboarding.overlay-close-button-tooltip): The overlay close button is an icon button. This tooltip would be shown when mousing hovering on the button.
+onboarding.overlay-close-button-tooltip=Close
+onboarding.notification-icon-tooltip-updated=See what’s new!
+# LOCALIZATION NOTE(onboarding.notification-close-button-tooltip): The notification close button is an icon button. This tooltip would be shown when mousing hovering on the button.
+onboarding.notification-close-button-tooltip=Dismiss
+
+# LOCALIZATION NOTE(onboarding.complete): This string is used to describe an
+# onboarding tour item that is complete.
+onboarding.complete=Complete
+
+onboarding.tour-private-browsing=Private Browsing
+onboarding.tour-private-browsing.title2=Browse by yourself.
+# LOCALIZATION NOTE(onboarding.tour-private-browsing.description3): This string will be used in the private-browsing tour description. %S is brandShortName.
+onboarding.tour-private-browsing.description3=Want to keep something to yourself? Use Private Browsing with Tracking Protection. %S will block online trackers while you browse and won’t remember your history after you’ve ended your session.
+onboarding.tour-private-browsing.button=Show Private Browsing in Menu
+onboarding.notification.onboarding-tour-private-browsing.title=Browse by yourself.
+onboarding.notification.onboarding-tour-private-browsing.message2=Want to keep something to yourself? Use Private Browsing with Tracking Protection.
+
+onboarding.tour-addons=Add-ons
+onboarding.tour-addons.title2=Get more done.
+# LOCALIZATION NOTE(onboarding.tour-addons.description2): This string will be used in the add-on tour description. %S is brandShortName
+onboarding.tour-addons.description2=Add-ons let you add features to %S, so your browser works harder for you. Compare prices, check the weather or express your personality with a custom theme.
+onboarding.tour-addons.button=Show Add-ons in Menu
+onboarding.notification.onboarding-tour-addons.title=Get more done.
+# LOCALIZATION NOTE(onboarding.notification.onboarding-tour-addons.message): This string will be used in the notification message for the add-ons tour. %S is brandShortName.
+onboarding.notification.onboarding-tour-addons.message=Add-ons are small apps you can add to %S that do lots of things — from managing to-do lists, to downloading videos, to changing the look of your browser.
+
+onboarding.tour-customize=Customize
+onboarding.tour-customize.title2=Rearrange your toolbar.
+# LOCALIZATION NOTE(onboarding.tour-customize.description2): This string will be used in the customize tour description. %S is brandShortName
+onboarding.tour-customize.description2=Put the tools you use most right at your fingertips. Drag, drop, and reorder %S’s toolbar and menu to fit your needs. Or choose a compact theme to make more room for tabbed browsing.
+onboarding.tour-customize.button=Show Customize in Menu
+onboarding.notification.onboarding-tour-customize.title=Rearrange your toolbar.
+# LOCALIZATION NOTE(onboarding.notification.onboarding-tour-customize.message): This string will be used in the notification message for Customize tour. %S is brandShortName.
+onboarding.notification.onboarding-tour-customize.message=Put the tools you use most right at your fingertips. Add more options to your toolbar. Or select a theme to make %S reflect your personality.
+
+onboarding.tour-default-browser=Default Browser
+# LOCALIZATION NOTE(onboarding.tour-default-browser.title2): This string will be used in the default browser tour title. %S is brandShortName
+onboarding.tour-default-browser.title2=Make %S your go-to browser.
+# LOCALIZATION NOTE(onboarding.tour-default-browser.description2): This string will be used in the default browser tour description. %1$S is brandShortName
+onboarding.tour-default-browser.description2=Love %1$S? Set it as your default browser. Open a link from another application, and %1$S will be there for you.
+# LOCALIZATION NOTE(onboarding.tour-default-browser.button): Label for a button to open the OS default browser settings where it's not possible to set the default browser directly. (OSX, Linux, Windows 8 and higher)
+onboarding.tour-default-browser.button=Open Default Browser Settings
+# LOCALIZATION NOTE(onboarding.tour-default-browser.win7.button): Label for a button to directly set the default browser (Windows 7). %S is brandShortName
+onboarding.tour-default-browser.win7.button=Make %S Your Default Browser
+# LOCALIZATION NOTE(onboarding.tour-default-browser.is-default.message): Label displayed when Firefox is already set as default browser. followed on a new line by "tour-default-browser.is-default.2nd-message".
+onboarding.tour-default-browser.is-default.message=You’ve got this!
+# LOCALIZATION NOTE(onboarding.tour-default-browser.is-default.2nd-message): Label displayed when Firefox is already set as default browser. %S is brandShortName
+onboarding.tour-default-browser.is-default.2nd-message=%S is already your default browser.
+# LOCALIZATION NOTE(onboarding.notification.onboarding-tour-default-browser.title): This string will be used in the notification title for the default browser tour. %S is brandShortName.
+onboarding.notification.onboarding-tour-default-browser.title=Make %S your go-to browser.
+# LOCALIZATION NOTE(onboarding.notification.onboarding-tour-default-browser.message): This string will be used in the notification message for the default browser tour. %1$S is brandShortName
+onboarding.notification.onboarding-tour-default-browser.message=It doesn’t take much to get the most from %1$S. Just set %1$S as your default browser and put control, customization, and protection on autopilot.
+
+onboarding.tour-sync2=Sync
+onboarding.tour-sync.title2=Pick up where you left off.
+onboarding.tour-sync.description2=Sync makes it easy to access bookmarks, passwords, and even open tabs on all your devices. Sync also gives you control of the types of information you want, and don’t want, to share.
+onboarding.tour-sync.logged-in.title=You’re signed in to Sync!
+# LOCALIZATION NOTE(onboarding.tour-sync.logged-in.description): %1$S is brandShortName.
+onboarding.tour-sync.logged-in.description=Sync works when you’re signed in to %1$S on more than one device. Have a mobile device? Install the %1$S app and sign in to get your bookmarks, history, and passwords on the go.
+# LOCALIZATION NOTE(onboarding.tour-sync.form.title): This string is displayed
+# as a title and followed by onboarding.tour-sync.form.description.
+onboarding.tour-sync.form.title=Create a Firefox Account
+# LOCALIZATION NOTE(onboarding.tour-sync.form.description): The description
+# continues after onboarding.tour-sync.form.title to create a complete sentence.
+# If it's not possible for your locale, you can translate this string as
+# "Continue to Firefox Sync" instead.
+onboarding.tour-sync.form.description=to continue to Firefox Sync
+onboarding.tour-sync.button=Next
+onboarding.tour-sync.connect-device.button=Connect Another Device
+onboarding.tour-sync.email-input.placeholder=Email
+onboarding.notification.onboarding-tour-sync.title=Pick up where you left off.
+onboarding.notification.onboarding-tour-sync.message=Still sending yourself links to save or read on your phone? Do it the easy way: get Sync and have the things you save here show up on all of your devices.
+
+onboarding.tour-library=Library
+onboarding.tour-library.title=Keep it together.
+# LOCALIZATION NOTE (onboarding.tour-library.description2): This string will be used in the library tour description. %1$S is brandShortName
+onboarding.tour-library.description2=Check out the new %1$S library in the redesigned toolbar. The library puts the things you’ve seen and saved to %1$S — your browsing history, bookmarks, Pocket list, and synced tabs — in one convenient place.
+onboarding.tour-library.button2=Show Library Menu
+onboarding.notification.onboarding-tour-library.title=Keep it together.
+# LOCALIZATION NOTE(onboarding.notification.onboarding-tour-library.message): This string will be used in the notification message for the library tour. %S is brandShortName
+onboarding.notification.onboarding-tour-library.message=The new %S library puts the great things you’ve discovered on the web in one convenient place.
+
+onboarding.tour-singlesearch=Address Bar
+onboarding.tour-singlesearch.title=Find it faster.
+# LOCALIZATION NOTE(onboarding.tour-singlesearch.description): %S is brandShortName
+onboarding.tour-singlesearch.description=The address bar might be the most powerful tool in the sleek new %S toolbar. Start typing, and see suggestions based on your browsing and search history. Go to a web address, search the whole web with your default search engine, or send your query directly to a single site with one-click search.
+onboarding.tour-singlesearch.button=Show Address Bar
+onboarding.notification.onboarding-tour-singlesearch.title=Find it faster.
+onboarding.notification.onboarding-tour-singlesearch.message=The unified address bar is the only tool you need to find your way around the web.
+
+onboarding.tour-performance=Performance
+onboarding.tour-performance.title=Browse with the best of ‘em.
+# LOCALIZATION NOTE(onboarding.tour-performance.description): %1$S is brandShortName.
+onboarding.tour-performance.description=It’s a whole new %1$S, built for faster page loading, smoother scrolling, and more responsive tab switching. These performance upgrades come paired with a modern, intuitive design. Start browsing and experience it for yourself: the best %1$S yet.
+onboarding.notification.onboarding-tour-performance.title=Browse with the best of ‘em.
+# LOCALIZATION NOTE(onboarding.notification.onboarding-tour-performance.message): %S is brandShortName.
+onboarding.notification.onboarding-tour-performance.message=Prepare yourself for the fastest, smoothest, most reliable %S yet.
+
+# LOCALIZATION NOTE (onboarding.tour-screenshots): "Screenshots" is the name of the Firefox Screenshots feature and should not be localized.
+onboarding.tour-screenshots=Screenshots
+onboarding.tour-screenshots.title=Take better screenshots.
+# LOCALIZATION NOTE(onboarding.tour-screenshots.description): %S is brandShortName.
+onboarding.tour-screenshots.description=Take, save and share screenshots — without leaving %S. Capture a region or an entire page as you browse. Then save to the web for easy access and sharing.
+# LOCALIZATION NOTE (onboarding.tour-screenshots.button): "Screenshots" is the name of the Firefox Screenshots feature and should not be localized.
+onboarding.tour-screenshots.button=Open Screenshots Website
+onboarding.notification.onboarding-tour-screenshots.title=Take better screenshots.
+# LOCALIZATION NOTE(onboarding.notification.onboarding-tour-screenshots.message): %S is brandShortName.
+onboarding.notification.onboarding-tour-screenshots.message=Take, save and share screenshots — without leaving %S.
diff --git a/browser/extensions/onboarding/locales/jar.mn b/browser/extensions/onboarding/locales/jar.mn
new file mode 100644
index 000000000000..0801f8512775
--- /dev/null
+++ b/browser/extensions/onboarding/locales/jar.mn
@@ -0,0 +1,8 @@
+#filter substitution
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+[features/onboarding(a)mozilla.org] @AB_CD@.jar:
+% locale onboarding @AB_CD@ %locale/@AB_CD@/
+ locale/@AB_CD@/onboarding.properties (%onboarding.properties)
diff --git a/browser/extensions/onboarding/locales/moz.build b/browser/extensions/onboarding/locales/moz.build
new file mode 100644
index 000000000000..aac3a838c4c2
--- /dev/null
+++ b/browser/extensions/onboarding/locales/moz.build
@@ -0,0 +1,7 @@
+# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
+# vim: set filetype=python:
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+JAR_MANIFESTS += ['jar.mn']
diff --git a/browser/extensions/onboarding/manifest.json b/browser/extensions/onboarding/manifest.json
new file mode 100644
index 000000000000..fcf46b444c9b
--- /dev/null
+++ b/browser/extensions/onboarding/manifest.json
@@ -0,0 +1,26 @@
+{
+ "manifest_version": 2,
+ "name": "Onboarding",
+ "version": "1.0",
+
+ "applications": {
+ "gecko": {
+ "id": "onboarding(a)mozilla.org"
+ }
+ },
+
+ "background": {
+ "scripts": ["background.js"]
+ },
+
+ "experiment_apis": {
+ "onboarding": {
+ "schema": "schema.json",
+ "parent": {
+ "scopes": ["addon_parent"],
+ "script": "api.js",
+ "events": ["startup"]
+ }
+ }
+ }
+ }
diff --git a/browser/extensions/onboarding/moz.build b/browser/extensions/onboarding/moz.build
new file mode 100644
index 000000000000..d2f73eb8fd74
--- /dev/null
+++ b/browser/extensions/onboarding/moz.build
@@ -0,0 +1,29 @@
+# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
+# vim: set filetype=python:
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+with Files("**"):
+ BUG_COMPONENT = ("Firefox", "Tours")
+
+DEFINES['MOZ_APP_VERSION'] = CONFIG['MOZ_APP_VERSION']
+DEFINES['MOZ_APP_MAXVERSION'] = CONFIG['MOZ_APP_MAXVERSION']
+
+DIRS += ['locales']
+
+FINAL_TARGET_FILES.features['onboarding(a)mozilla.org'] += [
+ 'background.js',
+ 'manifest.json',
+ 'schema.json',
+]
+
+FINAL_TARGET_PP_FILES.features['onboarding(a)mozilla.org'] += [
+ 'api.js',
+]
+
+BROWSER_CHROME_MANIFESTS += ['test/browser/browser.ini']
+
+XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini']
+
+JAR_MANIFESTS += ['jar.mn']
diff --git a/browser/extensions/onboarding/schema.json b/browser/extensions/onboarding/schema.json
new file mode 100644
index 000000000000..fe51488c7066
--- /dev/null
+++ b/browser/extensions/onboarding/schema.json
@@ -0,0 +1 @@
+[]
diff --git a/browser/extensions/onboarding/test/browser/.eslintrc.js b/browser/extensions/onboarding/test/browser/.eslintrc.js
new file mode 100644
index 000000000000..9236696e5732
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/.eslintrc.js
@@ -0,0 +1,7 @@
+"use strict";
+
+module.exports = {
+ "extends": [
+ "plugin:mozilla/browser-test"
+ ],
+};
diff --git a/browser/extensions/onboarding/test/browser/browser.ini b/browser/extensions/onboarding/test/browser/browser.ini
new file mode 100644
index 000000000000..abc2e915d551
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/browser.ini
@@ -0,0 +1,18 @@
+[DEFAULT]
+support-files =
+ head.js
+
+[browser_onboarding_accessibility.js]
+[browser_onboarding_keyboard.js]
+skip-if = debug || os == "mac" # Full keyboard navigation on OSX only works if Full Keyboard Access setting is set to All Control in System Keyboard Preferences
+[browser_onboarding_notification.js]
+[browser_onboarding_notification_2.js]
+[browser_onboarding_notification_3.js]
+[browser_onboarding_notification_4.js]
+[browser_onboarding_notification_5.js]
+[browser_onboarding_notification_click_auto_complete_tour.js]
+[browser_onboarding_select_default_tour.js]
+[browser_onboarding_skip_tour.js]
+[browser_onboarding_tours.js]
+[browser_onboarding_tourset.js]
+[browser_onboarding_uitour.js]
diff --git a/browser/extensions/onboarding/test/browser/browser_onboarding_accessibility.js b/browser/extensions/onboarding/test/browser/browser_onboarding_accessibility.js
new file mode 100644
index 000000000000..37abbd3541d4
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/browser_onboarding_accessibility.js
@@ -0,0 +1,89 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+ "use strict";
+
+add_task(async function test_onboarding_overlay_button() {
+ resetOnboardingDefaultState();
+
+ info("Wait for onboarding overlay loaded");
+ let tab = await openTab(ABOUT_HOME_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+
+ info("Test accessibility and semantics of the overlay button");
+ await ContentTask.spawn(tab.linkedBrowser, {}, function() {
+ let doc = content.document;
+ let button = doc.body.firstElementChild;
+ is(button.id, "onboarding-overlay-button",
+ "First child is an overlay button");
+ ok(button.getAttribute("aria-label"),
+ "Onboarding button has an accessible label");
+ is(button.getAttribute("aria-haspopup"), "true",
+ "Onboarding button should indicate that it triggers a popup");
+ is(button.getAttribute("aria-controls"), "onboarding-overlay-dialog",
+ "Onboarding button semantically controls an overlay dialog");
+ is(button.firstElementChild.getAttribute("role"), "presentation",
+ "Onboarding button icon should have presentation only semantics");
+ });
+
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_onboarding_notification_bar() {
+ resetOnboardingDefaultState();
+ skipMuteNotificationOnFirstSession();
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+
+ info("Test accessibility and semantics of the notification bar");
+ await ContentTask.spawn(tab.linkedBrowser, {}, function() {
+ let doc = content.document;
+ let footer = doc.getElementById("onboarding-notification-bar");
+
+ is(footer.getAttribute("aria-labelledby"), doc.getElementById("onboarding-notification-tour-title").id,
+ "Notification bar should be labelled by the notification tour title text");
+
+ is(footer.getAttribute("aria-live"), "polite",
+ "Notification bar should be a live region");
+ // Presentational elements
+ [
+ "onboarding-notification-message-section",
+ "onboarding-notification-tour-icon",
+ "onboarding-notification-body",
+ ].forEach(id =>
+ is(doc.getElementById(id).getAttribute("role"), "presentation",
+ "Element is only used for presentation"));
+ });
+
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_onboarding_overlay_dialog() {
+ resetOnboardingDefaultState();
+
+ info("Wait for onboarding overlay loaded");
+ let tab = await openTab(ABOUT_HOME_URL);
+ let browser = tab.linkedBrowser;
+ await promiseOnboardingOverlayLoaded(browser);
+
+ info("Test accessibility and semantics of the dialog overlay");
+ await assertModalDialog(browser, { visible: false });
+
+ info("Click on overlay button and check modal dialog state");
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-overlay-button",
+ {}, browser);
+ await promiseOnboardingOverlayOpened(browser);
+ await assertModalDialog(browser,
+ { visible: true, focusedId: "onboarding-overlay-dialog" });
+
+ info("Close the dialog and check modal dialog state");
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-overlay-close-btn",
+ {}, browser);
+ await promiseOnboardingOverlayClosed(browser);
+ await assertModalDialog(browser, { visible: false });
+
+ BrowserTestUtils.removeTab(tab);
+});
diff --git a/browser/extensions/onboarding/test/browser/browser_onboarding_keyboard.js b/browser/extensions/onboarding/test/browser/browser_onboarding_keyboard.js
new file mode 100644
index 000000000000..ab9d2ed6afbc
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/browser_onboarding_keyboard.js
@@ -0,0 +1,137 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+ "use strict";
+
+function assertOverlayState(browser, args) {
+ return ContentTask.spawn(browser, args, ({ tourId, focusedId, visible }) => {
+ let { document: doc, window} = content;
+ if (tourId) {
+ let items = [...doc.querySelectorAll(".onboarding-tour-item")];
+ items.forEach(item => is(item.getAttribute("aria-selected"),
+ item.id === tourId ? "true" : "false",
+ "Active item should have aria-selected set to true and inactive to false"));
+ }
+ if (focusedId) {
+ let focused = doc.getElementById(focusedId);
+ is(focused, doc.activeElement, `Focus should be set on ${focusedId}`);
+ }
+ if (visible !== undefined) {
+ let overlay = doc.getElementById("onboarding-overlay");
+ is(window.getComputedStyle(overlay).getPropertyValue("display"),
+ visible ? "block" : "none",
+ `Onboarding overlay should be ${visible ? "visible" : "invisible"}`);
+ }
+ });
+}
+
+const TOUR_LIST_TEST_DATA = [
+ { key: "VK_DOWN", expected: { tourId: TOUR_IDs[1], focusedId: TOUR_IDs[1] }},
+ { key: "VK_DOWN", expected: { tourId: TOUR_IDs[2], focusedId: TOUR_IDs[2] }},
+ { key: "VK_DOWN", expected: { tourId: TOUR_IDs[3], focusedId: TOUR_IDs[3] }},
+ { key: "VK_DOWN", expected: { tourId: TOUR_IDs[4], focusedId: TOUR_IDs[4] }},
+ { key: "VK_UP", expected: { tourId: TOUR_IDs[3], focusedId: TOUR_IDs[3] }},
+ { key: "VK_UP", expected: { tourId: TOUR_IDs[2], focusedId: TOUR_IDs[2] }},
+ { key: "VK_TAB", expected: { tourId: TOUR_IDs[2], focusedId: TOUR_IDs[3] }},
+ { key: "VK_TAB", expected: { tourId: TOUR_IDs[2], focusedId: TOUR_IDs[4] }},
+ { key: "VK_RETURN", expected: { tourId: TOUR_IDs[4], focusedId: TOUR_IDs[4] }},
+ { key: "VK_TAB", options: { shiftKey: true }, expected: { tourId: TOUR_IDs[4], focusedId: TOUR_IDs[3] }},
+ { key: "VK_TAB", options: { shiftKey: true }, expected: { tourId: TOUR_IDs[4], focusedId: TOUR_IDs[2] }},
+ // VK_SPACE does not work well with EventUtils#synthesizeKey use " " instead
+ { key: " ", expected: { tourId: TOUR_IDs[2], focusedId: TOUR_IDs[2] }},
+];
+
+const BUTTONS_TEST_DATA = [
+ { key: " ", expected: { focusedId: TOUR_IDs[0], visible: true }},
+ { key: "VK_ESCAPE", expected: { focusedId: "onboarding-overlay-button", visible: false }},
+ { key: "VK_RETURN", expected: { focusedId: TOUR_IDs[1], visible: true }},
+ { key: "VK_TAB", options: { shiftKey: true }, expected: { focusedId: TOUR_IDs[0], visible: true }},
+ { key: "VK_TAB", options: { shiftKey: true }, expected: { focusedId: "onboarding-overlay-close-btn", visible: true }},
+ { key: " ", expected: { focusedId: "onboarding-overlay-button", visible: false }},
+ { key: "VK_RETURN", expected: { focusedId: TOUR_IDs[1], visible: true }},
+ { key: "VK_TAB", options: { shiftKey: true }, expected: { focusedId: TOUR_IDs[0], visible: true }},
+ { key: "VK_TAB", options: { shiftKey: true }, expected: { focusedId: "onboarding-overlay-close-btn", visible: true }},
+ { key: "VK_TAB", expected: { focusedId: TOUR_IDs[0], visible: true }},
+ { key: "VK_TAB", options: { shiftKey: true }, expected: { focusedId: "onboarding-overlay-close-btn", visible: true }},
+ { key: "VK_RETURN", expected: { focusedId: "onboarding-overlay-button", visible: false }},
+];
+
+add_task(async function test_tour_list_keyboard_navigation() {
+ resetOnboardingDefaultState();
+
+ info("Display onboarding overlay on the home page");
+ let tab = await openTab(ABOUT_HOME_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-overlay-button",
+ {}, tab.linkedBrowser);
+ await promiseOnboardingOverlayOpened(tab.linkedBrowser);
+
+ info("Checking overall overlay tablist semantics");
+ await assertOverlaySemantics(tab.linkedBrowser);
+
+ info("Set initial focus on the currently active tab");
+ await ContentTask.spawn(tab.linkedBrowser, {}, () =>
+ content.document.querySelector(".onboarding-active").focus());
+ await assertOverlayState(tab.linkedBrowser,
+ { tourId: TOUR_IDs[0], focusedId: TOUR_IDs[0] });
+
+ for (let { key, options = {}, expected } of TOUR_LIST_TEST_DATA) {
+ info(`Pressing ${key} to select ${expected.tourId} and have focus on ${expected.focusedId}`);
+ await BrowserTestUtils.synthesizeKey(key, options, tab.linkedBrowser);
+ await assertOverlayState(tab.linkedBrowser, expected);
+ }
+
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_buttons_keyboard_navigation() {
+ resetOnboardingDefaultState();
+
+ info("Wait for onboarding overlay loaded");
+ let tab = await openTab(ABOUT_HOME_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+
+ info("Set keyboard focus on the onboarding overlay button");
+ await ContentTask.spawn(tab.linkedBrowser, {}, () =>
+ content.document.getElementById("onboarding-overlay-button").focus());
+ await assertOverlayState(tab.linkedBrowser,
+ { focusedId: "onboarding-overlay-button", visible: false });
+
+ for (let { key, options = {}, expected } of BUTTONS_TEST_DATA) {
+ info(`Pressing ${key} to have ${expected.visible ? "visible" : "invisible"} overlay and have focus on ${expected.focusedId}`);
+ await BrowserTestUtils.synthesizeKey(key, options, tab.linkedBrowser);
+ await assertOverlayState(tab.linkedBrowser, expected);
+ }
+
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_overlay_dialog_keyboard_navigation() {
+ resetOnboardingDefaultState();
+
+ info("Wait for onboarding overlay loaded");
+ let tab = await openTab(ABOUT_HOME_URL);
+ let browser = tab.linkedBrowser;
+ await promiseOnboardingOverlayLoaded(browser);
+
+ info("Test accessibility and semantics of the dialog overlay");
+ await assertModalDialog(browser, { visible: false });
+
+ info("Set keyboard focus on the onboarding overlay button");
+ await ContentTask.spawn(browser, {}, () =>
+ content.document.getElementById("onboarding-overlay-button").focus());
+ info("Open dialog with keyboard and check the dialog state");
+ await BrowserTestUtils.synthesizeKey(" ", {}, browser);
+ await promiseOnboardingOverlayOpened(browser);
+ await assertModalDialog(browser,
+ { visible: true, keyboardFocus: true, focusedId: TOUR_IDs[0] });
+
+ info("Close the dialog and check modal dialog state");
+ await BrowserTestUtils.synthesizeKey("VK_ESCAPE", {}, browser);
+ await promiseOnboardingOverlayClosed(browser);
+ await assertModalDialog(browser,
+ { visible: false, keyboardFocus: true, focusedId: "onboarding-overlay-button" });
+
+ BrowserTestUtils.removeTab(tab);
+});
diff --git a/browser/extensions/onboarding/test/browser/browser_onboarding_notification.js b/browser/extensions/onboarding/test/browser/browser_onboarding_notification.js
new file mode 100644
index 000000000000..b3e7fc788681
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/browser_onboarding_notification.js
@@ -0,0 +1,62 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+requestLongerTimeout(3);
+
+add_task(async function test_show_tour_notifications_in_order() {
+ resetOnboardingDefaultState();
+ Preferences.set("browser.onboarding.notification.max-prompt-count-per-tour", 1);
+ skipMuteNotificationOnFirstSession();
+
+ let tourIds = TOUR_IDs;
+ let tab = null;
+ let targetTourId = null;
+ let expectedPrefUpdates = null;
+ await loopTourNotificationQueueOnceInOrder();
+ await loopTourNotificationQueueOnceInOrder();
+
+ expectedPrefUpdates = Promise.all([
+ promisePrefUpdated("browser.onboarding.notification.finished", true),
+ promisePrefUpdated("browser.onboarding.state", ICON_STATE_WATERMARK),
+ ]);
+ await reloadTab(tab);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await expectedPrefUpdates;
+ await assertWatermarkIconDisplayed(tab.linkedBrowser);
+ let tourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ ok(!tourId, "Should not prompt each tour for more than 2 chances.");
+ BrowserTestUtils.removeTab(tab);
+
+ async function loopTourNotificationQueueOnceInOrder() {
+ for (let i = 0; i < tourIds.length; ++i) {
+ if (tab) {
+ await reloadTab(tab);
+ } else {
+ tab = await openTab(ABOUT_NEWTAB_URL);
+ }
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ targetTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ is(targetTourId, tourIds[i], "Should show tour notifications in order");
+ }
+ }
+});
+
+add_task(async function test_open_target_tour_from_notification() {
+ resetOnboardingDefaultState();
+ skipMuteNotificationOnFirstSession();
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ let targetTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-notification-action-btn", {}, tab.linkedBrowser);
+ await promiseOnboardingOverlayOpened(tab.linkedBrowser);
+ let { activeNavItemId, activePageId } = await getCurrentActiveTour(tab.linkedBrowser);
+
+ is(targetTourId, activeNavItemId, "Should navigate to the target tour item.");
+ is(`${targetTourId}-page`, activePageId, "Should display the target tour page.");
+ BrowserTestUtils.removeTab(tab);
+});
diff --git a/browser/extensions/onboarding/test/browser/browser_onboarding_notification_2.js b/browser/extensions/onboarding/test/browser/browser_onboarding_notification_2.js
new file mode 100644
index 000000000000..966102099f50
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/browser_onboarding_notification_2.js
@@ -0,0 +1,80 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+requestLongerTimeout(3);
+
+add_task(async function test_not_show_notification_for_completed_tour() {
+ resetOnboardingDefaultState();
+ skipMuteNotificationOnFirstSession();
+
+ let tourIds = TOUR_IDs;
+ // Make only the last tour uncompleted
+ let lastTourId = tourIds[tourIds.length - 1];
+ for (let id of tourIds) {
+ if (id != lastTourId) {
+ setTourCompletedState(id, true);
+ }
+ }
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ let targetTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ is(targetTourId, lastTourId, "Should not show notification for completed tour");
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_skip_notification_for_completed_tour() {
+ resetOnboardingDefaultState();
+ Preferences.set("browser.onboarding.notification.max-prompt-count-per-tour", 1);
+ skipMuteNotificationOnFirstSession();
+
+ let tourIds = TOUR_IDs;
+ // Make only 2nd tour completed
+ await setTourCompletedState(tourIds[1], true);
+
+ // Test show notification for the 1st tour
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ let targetTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ is(targetTourId, tourIds[0], "Should show notification for incompleted tour");
+
+ // Test skip the 2nd tour and show notification for the 3rd tour
+ await reloadTab(tab);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ targetTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ is(targetTourId, tourIds[2], "Should skip notification for the completed 2nd tour");
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_mute_notification_on_1st_session() {
+ resetOnboardingDefaultState();
+
+ // Test no notifications during the mute duration on the 1st session
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ // The tour notification would be prompted on idle, so we wait idle twice here before proceeding
+ await waitUntilWindowIdle(tab.linkedBrowser);
+ await waitUntilWindowIdle(tab.linkedBrowser);
+ await reloadTab(tab);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await waitUntilWindowIdle(tab.linkedBrowser);
+ await waitUntilWindowIdle(tab.linkedBrowser);
+ let promptCount = Preferences.get("browser.onboarding.notification.prompt-count", 0);
+ is(0, promptCount, "Should not prompt tour notification during the mute duration on the 1st session");
+
+ // Test notification prompted after the mute duration on the 1st session
+ let muteTime = Preferences.get("browser.onboarding.notification.mute-duration-on-first-session-ms");
+ let lastTime = Math.floor((Date.now() - muteTime - 1) / 1000);
+ Preferences.set("browser.onboarding.notification.last-time-of-changing-tour-sec", lastTime);
+ await reloadTab(tab);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ promptCount = Preferences.get("browser.onboarding.notification.prompt-count", 0);
+ is(1, promptCount, "Should prompt tour notification after the mute duration on the 1st session");
+ BrowserTestUtils.removeTab(tab);
+});
diff --git a/browser/extensions/onboarding/test/browser/browser_onboarding_notification_3.js b/browser/extensions/onboarding/test/browser/browser_onboarding_notification_3.js
new file mode 100644
index 000000000000..0010cd90263b
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/browser_onboarding_notification_3.js
@@ -0,0 +1,82 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+requestLongerTimeout(3);
+
+add_task(async function test_move_on_to_next_notification_when_reaching_max_prompt_count() {
+ resetOnboardingDefaultState();
+ skipMuteNotificationOnFirstSession();
+ let maxCount = Preferences.get("browser.onboarding.notification.max-prompt-count-per-tour");
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ let previousTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+
+ let currentTourId = null;
+ for (let i = maxCount - 1; i > 0; --i) {
+ await reloadTab(tab);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ currentTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ is(previousTourId, currentTourId, "Should not move on to next tour notification until reaching the max prompt count per tour");
+ }
+
+ await reloadTab(tab);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ currentTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ isnot(previousTourId, currentTourId, "Should move on to next tour notification when reaching the max prompt count per tour");
+
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_move_on_to_next_notification_when_reaching_max_life_time() {
+ resetOnboardingDefaultState();
+ skipMuteNotificationOnFirstSession();
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ let previousTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+
+ let maxTime = Preferences.get("browser.onboarding.notification.max-life-time-per-tour-ms");
+ let lastTime = Math.floor((Date.now() - maxTime - 1) / 1000);
+ Preferences.set("browser.onboarding.notification.last-time-of-changing-tour-sec", lastTime);
+ await reloadTab(tab);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ let currentTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ isnot(previousTourId, currentTourId, "Should move on to next tour notification when reaching the max life time per tour");
+
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_move_on_to_next_notification_after_interacting_with_notification() {
+ resetOnboardingDefaultState();
+ skipMuteNotificationOnFirstSession();
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ let previousTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-notification-close-btn", {}, tab.linkedBrowser);
+
+ await reloadTab(tab);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ let currentTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ isnot(previousTourId, currentTourId, "Should move on to next tour notification after clicking #onboarding-notification-close-btn");
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-notification-action-btn", {}, tab.linkedBrowser);
+ previousTourId = currentTourId;
+
+ await reloadTab(tab);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ currentTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ isnot(previousTourId, currentTourId, "Should move on to next tour notification after clicking #onboarding-notification-action-btn");
+
+ BrowserTestUtils.removeTab(tab);
+});
diff --git a/browser/extensions/onboarding/test/browser/browser_onboarding_notification_4.js b/browser/extensions/onboarding/test/browser/browser_onboarding_notification_4.js
new file mode 100644
index 000000000000..57e8ce840f2a
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/browser_onboarding_notification_4.js
@@ -0,0 +1,84 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+requestLongerTimeout(3);
+
+add_task(async function test_remove_all_tour_notifications_through_close_button() {
+ resetOnboardingDefaultState();
+ skipMuteNotificationOnFirstSession();
+
+ let tourIds = TOUR_IDs;
+ let tab = null;
+ let targetTourId = null;
+ await closeTourNotificationsOneByOne();
+
+ let expectedPrefUpdates = [
+ promisePrefUpdated("browser.onboarding.notification.finished", true),
+ promisePrefUpdated("browser.onboarding.state", ICON_STATE_WATERMARK),
+ ];
+ await reloadTab(tab);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await Promise.all(expectedPrefUpdates);
+ await assertWatermarkIconDisplayed(tab.linkedBrowser);
+
+ let tourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ ok(!tourId, "Should not prompt tour notifications any more after closing all notifcations.");
+ BrowserTestUtils.removeTab(tab);
+
+ async function closeTourNotificationsOneByOne() {
+ for (let i = 0; i < tourIds.length; ++i) {
+ if (tab) {
+ await reloadTab(tab);
+ } else {
+ tab = await openTab(ABOUT_NEWTAB_URL);
+ }
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ targetTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ is(targetTourId, tourIds[i], `Should show tour notifications of ${targetTourId}`);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-notification-close-btn", {}, tab.linkedBrowser);
+ await promiseTourNotificationClosed(tab.linkedBrowser);
+ }
+ }
+});
+
+add_task(async function test_remove_all_tour_notifications_through_action_button() {
+ resetOnboardingDefaultState();
+ skipMuteNotificationOnFirstSession();
+
+ let tourIds = TOUR_IDs;
+ let tab = null;
+ let targetTourId = null;
+ await clickTourNotificationActionButtonsOneByOne();
+
+ let expectedPrefUpdates = [
+ promisePrefUpdated("browser.onboarding.notification.finished", true),
+ promisePrefUpdated("browser.onboarding.state", ICON_STATE_WATERMARK),
+ ];
+ await reloadTab(tab);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await Promise.all(expectedPrefUpdates);
+ await assertWatermarkIconDisplayed(tab.linkedBrowser);
+
+ let tourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ ok(!tourId, "Should not prompt tour notifcations any more after taking actions on all notifcations.");
+ BrowserTestUtils.removeTab(tab);
+
+ async function clickTourNotificationActionButtonsOneByOne() {
+ for (let i = 0; i < tourIds.length; ++i) {
+ if (tab) {
+ await reloadTab(tab);
+ } else {
+ tab = await openTab(ABOUT_NEWTAB_URL);
+ }
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ targetTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ is(targetTourId, tourIds[i], `Should show tour notifications of ${targetTourId}`);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-notification-action-btn", {}, tab.linkedBrowser);
+ await promiseTourNotificationClosed(tab.linkedBrowser);
+ }
+ }
+});
diff --git a/browser/extensions/onboarding/test/browser/browser_onboarding_notification_5.js b/browser/extensions/onboarding/test/browser/browser_onboarding_notification_5.js
new file mode 100644
index 000000000000..9fd2f25dfe4f
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/browser_onboarding_notification_5.js
@@ -0,0 +1,25 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+add_task(async function test_finish_tour_notifcations_after_total_max_life_time() {
+ resetOnboardingDefaultState();
+ skipMuteNotificationOnFirstSession();
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+
+ let totalMaxTime = Preferences.get("browser.onboarding.notification.max-life-time-all-tours-ms");
+ Preferences.set("browser.onboarding.notification.last-time-of-changing-tour-sec", Math.floor((Date.now() - totalMaxTime) / 1000));
+ let expectedPrefUpdates = Promise.all([
+ promisePrefUpdated("browser.onboarding.notification.finished", true),
+ promisePrefUpdated("browser.onboarding.state", ICON_STATE_WATERMARK),
+ ]);
+ await reloadTab(tab);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await expectedPrefUpdates;
+ await assertWatermarkIconDisplayed(tab.linkedBrowser);
+ BrowserTestUtils.removeTab(tab);
+});
diff --git a/browser/extensions/onboarding/test/browser/browser_onboarding_notification_click_auto_complete_tour.js b/browser/extensions/onboarding/test/browser/browser_onboarding_notification_click_auto_complete_tour.js
new file mode 100644
index 000000000000..c505b62f7d38
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/browser_onboarding_notification_click_auto_complete_tour.js
@@ -0,0 +1,33 @@
+add_task(async function test_show_click_auto_complete_tour_in_notification() {
+ resetOnboardingDefaultState();
+ skipMuteNotificationOnFirstSession();
+ // the second tour is an click-auto-complete tour
+ await SpecialPowers.pushPrefEnv({set: [
+ ["browser.onboarding.newtour", "customize,library"],
+ ]});
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-overlay-button", {}, tab.linkedBrowser);
+ await promiseOnboardingOverlayOpened(tab.linkedBrowser);
+
+ // Trigger CTA button to mark the tour as complete
+ let expectedPrefUpdates = [
+ promisePrefUpdated(`browser.onboarding.tour.onboarding-tour-customize.completed`, true),
+ ];
+ BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-tour-customize", {}, tab.linkedBrowser);
+ BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-tour-customize-button", {}, tab.linkedBrowser);
+ await Promise.all(expectedPrefUpdates);
+
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-overlay-close-btn", {}, gBrowser.selectedBrowser);
+ let { activeNavItemId } = await getCurrentActiveTour(tab.linkedBrowser);
+ is("onboarding-tour-customize", activeNavItemId, "the active tour should be the previous shown tour");
+
+ await reloadTab(tab);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await promiseTourNotificationOpened(tab.linkedBrowser);
+ let targetTourId = await getCurrentNotificationTargetTourId(tab.linkedBrowser);
+ is("onboarding-tour-library", targetTourId, "correctly show the click-autocomplete-tour in notification");
+
+ BrowserTestUtils.removeTab(tab);
+});
diff --git a/browser/extensions/onboarding/test/browser/browser_onboarding_select_default_tour.js b/browser/extensions/onboarding/test/browser/browser_onboarding_select_default_tour.js
new file mode 100644
index 000000000000..37f345f515fa
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/browser_onboarding_select_default_tour.js
@@ -0,0 +1,80 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+const OVERLAY_ICON_ID = "#onboarding-overlay-button";
+const PRIVATE_BROWSING_TOUR_ID = "#onboarding-tour-private-browsing";
+const ADDONS_TOUR_ID = "#onboarding-tour-addons";
+const CUSTOMIZE_TOUR_ID = "#onboarding-tour-customize";
+const CLASS_ACTIVE = "onboarding-active";
+
+add_task(async function test_default_tour_open_the_right_page() {
+ resetOnboardingDefaultState();
+ await SpecialPowers.pushPrefEnv({set: [
+ ["browser.onboarding.tour-type", "new"],
+ ["browser.onboarding.tourset-version", 1],
+ ["browser.onboarding.seen-tourset-version", 1],
+ ["browser.onboarding.newtour", "private,addons,customize"],
+ ]});
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeMouseAtCenter(OVERLAY_ICON_ID, {}, tab.linkedBrowser);
+ await promiseOnboardingOverlayOpened(tab.linkedBrowser);
+
+ info("Make sure the default tour is active and open the right page");
+ let { activeNavItemId, activePageId } = await getCurrentActiveTour(tab.linkedBrowser);
+ is(`#${activeNavItemId}`, PRIVATE_BROWSING_TOUR_ID, "default tour is active");
+ is(activePageId, "onboarding-tour-private-browsing-page", "default tour page is shown");
+
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_select_first_uncomplete_tour() {
+ resetOnboardingDefaultState();
+ await SpecialPowers.pushPrefEnv({set: [
+ ["browser.onboarding.tour-type", "new"],
+ ["browser.onboarding.tourset-version", 1],
+ ["browser.onboarding.seen-tourset-version", 1],
+ ["browser.onboarding.newtour", "private,addons,customize"],
+ ]});
+ setTourCompletedState("onboarding-tour-private-browsing", true);
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeMouseAtCenter(OVERLAY_ICON_ID, {}, tab.linkedBrowser);
+ await promiseOnboardingOverlayOpened(tab.linkedBrowser);
+
+ info("Make sure the first uncomplete tour is selected");
+ let { activeNavItemId, activePageId } = await getCurrentActiveTour(tab.linkedBrowser);
+ is(`#${activeNavItemId}`, ADDONS_TOUR_ID, "default tour is active");
+ is(activePageId, "onboarding-tour-addons-page", "default tour page is shown");
+
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_select_first_tour_when_all_tours_are_complete() {
+ resetOnboardingDefaultState();
+ await SpecialPowers.pushPrefEnv({set: [
+ ["browser.onboarding.tour-type", "new"],
+ ["browser.onboarding.tourset-version", 1],
+ ["browser.onboarding.seen-tourset-version", 1],
+ ["browser.onboarding.newtour", "private,addons,customize"],
+ ]});
+ setTourCompletedState("onboarding-tour-private-browsing", true);
+ setTourCompletedState("onboarding-tour-addons", true);
+ setTourCompletedState("onboarding-tour-customize", true);
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeMouseAtCenter(OVERLAY_ICON_ID, {}, tab.linkedBrowser);
+ await promiseOnboardingOverlayOpened(tab.linkedBrowser);
+
+ info("Make sure the first tour is selected when all tours are completed");
+ let { activeNavItemId, activePageId } = await getCurrentActiveTour(tab.linkedBrowser);
+ is(`#${activeNavItemId}`, PRIVATE_BROWSING_TOUR_ID, "default tour is active");
+ is(activePageId, "onboarding-tour-private-browsing-page", "default tour page is shown");
+
+ BrowserTestUtils.removeTab(tab);
+});
diff --git a/browser/extensions/onboarding/test/browser/browser_onboarding_skip_tour.js b/browser/extensions/onboarding/test/browser/browser_onboarding_skip_tour.js
new file mode 100644
index 000000000000..58b2870ce7e6
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/browser_onboarding_skip_tour.js
@@ -0,0 +1,47 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+ "use strict";
+
+add_task(async function test_skip_onboarding_tours() {
+ resetOnboardingDefaultState();
+
+ let tourIds = TOUR_IDs;
+ let expectedPrefUpdates = [
+ promisePrefUpdated("browser.onboarding.notification.finished", true),
+ promisePrefUpdated("browser.onboarding.state", ICON_STATE_WATERMARK),
+ ];
+ tourIds.forEach((id, idx) => expectedPrefUpdates.push(promisePrefUpdated(`browser.onboarding.tour.${id}.completed`, true)));
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-overlay-button", {}, tab.linkedBrowser);
+ await promiseOnboardingOverlayOpened(tab.linkedBrowser);
+
+ let overlayClosedPromise = promiseOnboardingOverlayClosed(tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-skip-tour-button", {}, tab.linkedBrowser);
+ await overlayClosedPromise;
+ await Promise.all(expectedPrefUpdates);
+ await assertWatermarkIconDisplayed(tab.linkedBrowser);
+
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_hide_skip_button_via_perf() {
+ resetOnboardingDefaultState();
+ Preferences.set("browser.onboarding.skip-tour-button.hide", true);
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ let browser = tab.linkedBrowser;
+ await promiseOnboardingOverlayLoaded(browser);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-overlay-button", {}, browser);
+ await promiseOnboardingOverlayOpened(browser);
+
+ let hasTourButton = await ContentTask.spawn(browser, null, () => {
+ return content.document.querySelector("#onboarding-skip-tour-button") != null;
+ });
+
+ ok(!hasTourButton, "should not render the skip button");
+
+ BrowserTestUtils.removeTab(tab);
+});
diff --git a/browser/extensions/onboarding/test/browser/browser_onboarding_tours.js b/browser/extensions/onboarding/test/browser/browser_onboarding_tours.js
new file mode 100644
index 000000000000..612c06ea6e25
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/browser_onboarding_tours.js
@@ -0,0 +1,115 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+ "use strict";
+
+requestLongerTimeout(2);
+
+function assertTourCompleted(tourId, expectComplete, browser) {
+ return ContentTask.spawn(browser, { tourId, expectComplete }, function(args) {
+ let item = content.document.querySelector(`#${args.tourId}.onboarding-tour-item`);
+ let completedTextId = `onboarding-complete-${args.tourId}-text`;
+ let completedText = item.querySelector(`#${completedTextId}`);
+ if (args.expectComplete) {
+ ok(item.classList.contains("onboarding-complete"), `Should set the complete #${args.tourId} tour with the complete style`);
+ ok(completedText, "Text label should be present for a completed item");
+ is(completedText.id, completedTextId, "Text label node should have a unique id");
+ ok(completedText.getAttribute("aria-label"), "Text label node should have an aria-label attribute set");
+ is(item.getAttribute("aria-describedby"), completedTextId,
+ "Completed item should have aria-describedby attribute set to text label node's id");
+ } else {
+ ok(!item.classList.contains("onboarding-complete"), `Should not set the incomplete #${args.tourId} tour with the complete style`);
+ ok(!completedText, "Text label should not be present for an incomplete item");
+ ok(!item.hasAttribute("aria-describedby"), "Incomplete item should not have aria-describedby attribute set");
+ }
+ });
+}
+
+add_task(async function test_set_right_tour_completed_style_on_overlay() {
+ resetOnboardingDefaultState();
+
+ let tourIds = TOUR_IDs;
+ // Mark the tours of even number as completed
+ for (let i = 0; i < tourIds.length; ++i) {
+ setTourCompletedState(tourIds[i], i % 2 == 0);
+ }
+
+ let tabs = [];
+ for (let url of URLs) {
+ let tab = await openTab(url);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-overlay-button", {}, tab.linkedBrowser);
+ await promiseOnboardingOverlayOpened(tab.linkedBrowser);
+ tabs.push(tab);
+ }
+
+ for (let i = tabs.length - 1; i >= 0; --i) {
+ let tab = tabs[i];
+ await assertOverlaySemantics(tab.linkedBrowser);
+ for (let j = 0; j < tourIds.length; ++j) {
+ await assertTourCompleted(tourIds[j], j % 2 == 0, tab.linkedBrowser);
+ }
+ BrowserTestUtils.removeTab(tab);
+ }
+});
+
+add_task(async function test_click_action_button_to_set_tour_completed() {
+ resetOnboardingDefaultState();
+ const CUSTOM_TOUR_IDs = [
+ "onboarding-tour-private-browsing",
+ "onboarding-tour-addons",
+ "onboarding-tour-customize",
+ ];
+ await SpecialPowers.pushPrefEnv({set: [
+ ["browser.onboarding.newtour", "private,addons,customize"],
+ ]});
+
+ let tourIds = CUSTOM_TOUR_IDs;
+ let tabs = [];
+ for (let url of URLs) {
+ let tab = await openTab(url);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-overlay-button", {}, tab.linkedBrowser);
+ await promiseOnboardingOverlayOpened(tab.linkedBrowser);
+ tabs.push(tab);
+ }
+
+ let completedTourId = tourIds[0];
+ let expectedPrefUpdate = promisePrefUpdated(`browser.onboarding.tour.${completedTourId}.completed`, true);
+ await BrowserTestUtils.synthesizeMouseAtCenter(`#${completedTourId}-page .onboarding-tour-action-button`, {}, gBrowser.selectedBrowser);
+ await expectedPrefUpdate;
+
+ for (let i = tabs.length - 1; i >= 0; --i) {
+ let tab = tabs[i];
+ await assertOverlaySemantics(tab.linkedBrowser);
+ for (let id of tourIds) {
+ await assertTourCompleted(id, id == completedTourId, tab.linkedBrowser);
+ }
+ BrowserTestUtils.removeTab(tab);
+ }
+});
+
+add_task(async function test_set_watermark_after_all_tour_completed() {
+ resetOnboardingDefaultState();
+
+ await SpecialPowers.pushPrefEnv({set: [
+ ["browser.onboarding.tour-type", "new"],
+ ]});
+
+ let tabs = [];
+ for (let url of URLs) {
+ let tab = await openTab(url);
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-overlay-button", {}, tab.linkedBrowser);
+ await promiseOnboardingOverlayOpened(tab.linkedBrowser);
+ tabs.push(tab);
+ }
+ let expectedPrefUpdate = promisePrefUpdated("browser.onboarding.state", ICON_STATE_WATERMARK);
+ TOUR_IDs.forEach(id => Preferences.set(`browser.onboarding.tour.${id}.completed`, true));
+ await expectedPrefUpdate;
+
+ for (let tab of tabs) {
+ await assertWatermarkIconDisplayed(tab.linkedBrowser);
+ BrowserTestUtils.removeTab(tab);
+ }
+});
diff --git a/browser/extensions/onboarding/test/browser/browser_onboarding_tourset.js b/browser/extensions/onboarding/test/browser/browser_onboarding_tourset.js
new file mode 100644
index 000000000000..3bbc50b69083
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/browser_onboarding_tourset.js
@@ -0,0 +1,82 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+requestLongerTimeout(2);
+
+async function testTourIDs(browser, tourIDs) {
+ await ContentTask.spawn(browser, tourIDs, async (tourIDsContent) => {
+ let doc = content.document;
+ let doms = doc.querySelectorAll(".onboarding-tour-item");
+ Assert.equal(doms.length, tourIDsContent.length, "has exact tour numbers");
+ doms.forEach((dom, idx) => {
+ Assert.equal(tourIDsContent[idx], dom.id, "contain defined onboarding id");
+ });
+ });
+}
+
+add_task(async function test_onboarding_default_new_tourset() {
+ resetOnboardingDefaultState();
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ let browser = tab.linkedBrowser;
+ await promiseOnboardingOverlayLoaded(browser);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-overlay-button", {}, browser);
+ await promiseOnboardingOverlayOpened(browser);
+
+ await testTourIDs(browser, TOUR_IDs);
+
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_onboarding_custom_new_tourset() {
+ const CUSTOM_NEW_TOURs = [
+ "onboarding-tour-private-browsing",
+ "onboarding-tour-addons",
+ "onboarding-tour-customize",
+ ];
+
+ resetOnboardingDefaultState();
+ await SpecialPowers.pushPrefEnv({set: [
+ ["browser.onboarding.tour-type", "new"],
+ ["browser.onboarding.tourset-version", 1],
+ ["browser.onboarding.seen-tourset-version", 1],
+ ["browser.onboarding.newtour", "private,addons,customize"],
+ ]});
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ let browser = tab.linkedBrowser;
+ await promiseOnboardingOverlayLoaded(browser);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-overlay-button", {}, browser);
+ await promiseOnboardingOverlayOpened(browser);
+
+ await testTourIDs(browser, CUSTOM_NEW_TOURs);
+
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_onboarding_custom_update_tourset() {
+ const CUSTOM_UPDATE_TOURs = [
+ "onboarding-tour-customize",
+ "onboarding-tour-private-browsing",
+ "onboarding-tour-addons",
+ ];
+ resetOnboardingDefaultState();
+ await SpecialPowers.pushPrefEnv({set: [
+ ["browser.onboarding.tour-type", "update"],
+ ["browser.onboarding.tourset-version", 1],
+ ["browser.onboarding.seen-tourset-version", 1],
+ ["browser.onboarding.updatetour", "customize,private,addons"],
+ ]});
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ let browser = tab.linkedBrowser;
+ await promiseOnboardingOverlayLoaded(browser);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-overlay-button", {}, browser);
+ await promiseOnboardingOverlayOpened(browser);
+
+ await testTourIDs(browser, CUSTOM_UPDATE_TOURs);
+
+ BrowserTestUtils.removeTab(tab);
+});
diff --git a/browser/extensions/onboarding/test/browser/browser_onboarding_uitour.js b/browser/extensions/onboarding/test/browser/browser_onboarding_uitour.js
new file mode 100644
index 000000000000..716dd59651e4
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/browser_onboarding_uitour.js
@@ -0,0 +1,167 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+requestLongerTimeout(3);
+
+function promisePopupChange(popup, expectedState) {
+ return new Promise(resolve => {
+ let event = expectedState == "open" ? "popupshown" : "popuphidden";
+ popup.addEventListener(event, resolve, { once: true });
+ });
+}
+
+async function promiseOpenOnboardingOverlay(tab) {
+ await promiseOnboardingOverlayLoaded(tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-overlay-button", {}, tab.linkedBrowser);
+ return promiseOnboardingOverlayOpened(tab.linkedBrowser);
+}
+
+async function triggerUITourHighlight(tourName, tab) {
+ await promiseOpenOnboardingOverlay(tab);
+ BrowserTestUtils.synthesizeMouseAtCenter(`#onboarding-tour-${tourName}`, {}, tab.linkedBrowser);
+ BrowserTestUtils.synthesizeMouseAtCenter(`#onboarding-tour-${tourName}-button`, {}, tab.linkedBrowser);
+}
+
+add_task(async function test_clean_up_uitour_after_closing_overlay() {
+ resetOnboardingDefaultState();
+ await SpecialPowers.pushPrefEnv({set: [
+ ["browser.onboarding.newtour", "library"],
+ ]});
+
+ // Trigger UITour showHighlight
+ let highlight = document.getElementById("UITourHighlightContainer");
+ let highlightOpenPromise = promisePopupChange(highlight, "open");
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await triggerUITourHighlight("library", tab);
+ await highlightOpenPromise;
+ is(highlight.state, "open", "Should show UITour highlight");
+ is(highlight.getAttribute("targetName"), "library", "UITour should highlight library");
+
+ // Close the overlay by clicking the overlay
+ let highlightClosePromise = promisePopupChange(highlight, "closed");
+ BrowserTestUtils.synthesizeMouseAtPoint(2, 2, {}, tab.linkedBrowser);
+ await promiseOnboardingOverlayClosed(tab.linkedBrowser);
+ await highlightClosePromise;
+ is(highlight.state, "closed", "Should close UITour highlight after closing the overlay by clicking the overlay");
+
+ // Trigger UITour showHighlight again
+ highlightOpenPromise = promisePopupChange(highlight, "open");
+ await triggerUITourHighlight("library", tab);
+ await highlightOpenPromise;
+ is(highlight.state, "open", "Should show UITour highlight");
+ is(highlight.getAttribute("targetName"), "library", "UITour should highlight library");
+
+ // Close the overlay by clicking the skip-tour button
+ highlightClosePromise = promisePopupChange(highlight, "closed");
+ BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-skip-tour-btn", {}, tab.linkedBrowser);
+ await promiseOnboardingOverlayClosed(tab.linkedBrowser);
+ await highlightClosePromise;
+ is(highlight.state, "closed", "Should close UITour highlight after closing the overlay by clicking the skip-tour button");
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_clean_up_uitour_after_navigating_to_other_tour_by_keyboard() {
+ resetOnboardingDefaultState();
+ await SpecialPowers.pushPrefEnv({set: [
+ ["browser.onboarding.newtour", "singlesearch,customize"],
+ ]});
+
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await promiseOpenOnboardingOverlay(tab);
+
+ // Navigate to the Customize tour to trigger UITour showHighlight
+ let highlight = document.getElementById("UITourHighlightContainer");
+ let highlightOpenPromise = promisePopupChange(highlight, "open");
+ tab.linkedBrowser.focus(); // Make sure the key event will be fired on the focused page
+ await BrowserTestUtils.synthesizeKey("VK_TAB", {}, tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeKey("VK_TAB", {}, tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeKey("VK_RETURN", {}, tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeKey("VK_TAB", {}, tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeKey("VK_RETURN", {}, tab.linkedBrowser);
+ await highlightOpenPromise;
+ is(highlight.state, "open", "Should show UITour highlight");
+ is(highlight.getAttribute("targetName"), "customize", "UITour should highlight customize");
+
+ // Navigate to the Single-Search tour
+ let highlightClosePromise = promisePopupChange(highlight, "closed");
+ tab.linkedBrowser.focus(); // Make sure the key event will be fired on the focused page
+ await BrowserTestUtils.synthesizeKey("VK_TAB", { shiftKey: true }, tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeKey("VK_TAB", { shiftKey: true }, tab.linkedBrowser);
+ await BrowserTestUtils.synthesizeKey("VK_RETURN", {}, tab.linkedBrowser);
+ await highlightClosePromise;
+ is(highlight.state, "closed", "Should close UITour highlight after navigating to another tour by keyboard");
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_clean_up_uitour_after_navigating_to_other_tour_by_mouse() {
+ resetOnboardingDefaultState();
+ await SpecialPowers.pushPrefEnv({set: [
+ ["browser.onboarding.newtour", "singlesearch,customize"],
+ ]});
+
+ // Navigate to the Customize tour to trigger UITour showHighlight
+ let highlight = document.getElementById("UITourHighlightContainer");
+ let highlightOpenPromise = promisePopupChange(highlight, "open");
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await triggerUITourHighlight("customize", tab);
+ await highlightOpenPromise;
+ is(highlight.state, "open", "Should show UITour highlight");
+ is(highlight.getAttribute("targetName"), "customize", "UITour should highlight customize");
+
+ // Navigate to the Single-Search tour
+ let highlightClosePromise = promisePopupChange(highlight, "closed");
+ BrowserTestUtils.synthesizeMouseAtCenter("#onboarding-tour-singlesearch", {}, tab.linkedBrowser);
+ await highlightClosePromise;
+ is(highlight.state, "closed", "Should close UITour highlight after navigating to another tour by mouse");
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_clean_up_uitour_on_page_unload() {
+ resetOnboardingDefaultState();
+ await SpecialPowers.pushPrefEnv({set: [
+ ["browser.onboarding.newtour", "singlesearch,customize"],
+ ]});
+
+ // Trigger UITour showHighlight
+ let highlight = document.getElementById("UITourHighlightContainer");
+ let highlightOpenPromise = promisePopupChange(highlight, "open");
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await triggerUITourHighlight("customize", tab);
+ await highlightOpenPromise;
+ is(highlight.state, "open", "Should show UITour highlight");
+ is(highlight.getAttribute("targetName"), "customize", "UITour should highlight customize");
+
+ // Load another page to unload the current page
+ let highlightClosePromise = promisePopupChange(highlight, "closed");
+ await BrowserTestUtils.loadURI(tab.linkedBrowser, "http://example.com");
+ await highlightClosePromise;
+ is(highlight.state, "closed", "Should close UITour highlight after page unloaded");
+ BrowserTestUtils.removeTab(tab);
+});
+
+add_task(async function test_clean_up_uitour_on_window_resize() {
+ resetOnboardingDefaultState();
+ await SpecialPowers.pushPrefEnv({set: [
+ ["browser.onboarding.newtour", "singlesearch,customize"],
+ ]});
+
+ // Trigger UITour showHighlight
+ let highlight = document.getElementById("UITourHighlightContainer");
+ let highlightOpenPromise = promisePopupChange(highlight, "open");
+ let tab = await openTab(ABOUT_NEWTAB_URL);
+ await triggerUITourHighlight("customize", tab);
+ await highlightOpenPromise;
+ is(highlight.state, "open", "Should show UITour highlight");
+ is(highlight.getAttribute("targetName"), "customize", "UITour should highlight customize");
+
+ // Resize window to destroy the onboarding tour
+ const originalWidth = window.innerWidth;
+ let highlightClosePromise = promisePopupChange(highlight, "closed");
+ window.innerWidth = 300;
+ await highlightClosePromise;
+ is(highlight.state, "closed", "Should close UITour highlight after window resized");
+ window.innerWidth = originalWidth;
+ BrowserTestUtils.removeTab(tab);
+});
diff --git a/browser/extensions/onboarding/test/browser/head.js b/browser/extensions/onboarding/test/browser/head.js
new file mode 100644
index 000000000000..9a66f60df88a
--- /dev/null
+++ b/browser/extensions/onboarding/test/browser/head.js
@@ -0,0 +1,288 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+let { Preferences } = ChromeUtils.import("resource://gre/modules/Preferences.jsm", {});
+
+const ABOUT_HOME_URL = "about:home";
+const ABOUT_NEWTAB_URL = "about:newtab";
+const URLs = [ABOUT_HOME_URL, ABOUT_NEWTAB_URL];
+const TOUR_IDs = [
+ "onboarding-tour-performance",
+ "onboarding-tour-private-browsing",
+ "onboarding-tour-screenshots",
+ "onboarding-tour-addons",
+ "onboarding-tour-customize",
+ "onboarding-tour-default-browser",
+];
+const UPDATE_TOUR_IDs = [
+ "onboarding-tour-performance",
+ "onboarding-tour-library",
+ "onboarding-tour-screenshots",
+ "onboarding-tour-singlesearch",
+ "onboarding-tour-customize",
+ "onboarding-tour-sync",
+];
+const ICON_STATE_WATERMARK = "watermark";
+const ICON_STATE_DEFAULT = "default";
+
+registerCleanupFunction(resetOnboardingDefaultState);
+
+function resetOnboardingDefaultState() {
+ // All the prefs should be reset to the default states
+ // and no need to revert back so we don't use `SpecialPowers.pushPrefEnv` here.
+ Preferences.set("browser.onboarding.enabled", true);
+ Preferences.set("browser.onboarding.state", ICON_STATE_DEFAULT);
+ Preferences.set("browser.onboarding.notification.finished", false);
+ Preferences.set("browser.onboarding.notification.mute-duration-on-first-session-ms", 300000);
+ Preferences.set("browser.onboarding.notification.max-life-time-per-tour-ms", 432000000);
+ Preferences.set("browser.onboarding.notification.max-life-time-all-tours-ms", 1209600000);
+ Preferences.set("browser.onboarding.notification.max-prompt-count-per-tour", 8);
+ Preferences.reset("browser.onboarding.notification.last-time-of-changing-tour-sec");
+ Preferences.reset("browser.onboarding.notification.prompt-count");
+ Preferences.reset("browser.onboarding.notification.tour-ids-queue");
+ Preferences.reset("browser.onboarding.skip-tour-button.hide");
+ TOUR_IDs.forEach(id => Preferences.reset(`browser.onboarding.tour.${id}.completed`));
+ UPDATE_TOUR_IDs.forEach(id => Preferences.reset(`browser.onboarding.tour.${id}.completed`));
+}
+
+function setTourCompletedState(tourId, state) {
+ Preferences.set(`browser.onboarding.tour.${tourId}.completed`, state);
+}
+
+async function openTab(url) {
+ let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser);
+ let loadedPromise = BrowserTestUtils.browserLoaded(tab.linkedBrowser);
+ await BrowserTestUtils.loadURI(tab.linkedBrowser, url);
+ await loadedPromise;
+ return tab;
+}
+
+function reloadTab(tab) {
+ let reloadPromise = BrowserTestUtils.browserLoaded(tab.linkedBrowser);
+ tab.linkedBrowser.reload();
+ return reloadPromise;
+}
+
+function promiseOnboardingOverlayLoaded(browser) {
+ function isLoaded() {
+ let doc = content && content.document;
+ if (doc.querySelector("#onboarding-overlay")) {
+ ok(true, "Should load onboarding overlay");
+ return Promise.resolve();
+ }
+ return new Promise(resolve => {
+ let observer = new content.MutationObserver(mutations => {
+ mutations.forEach(mutation => {
+ let overlay = Array.from(mutation.addedNodes)
+ .find(node => node.id == "onboarding-overlay");
+ if (overlay) {
+ observer.disconnect();
+ ok(true, "Should load onboarding overlay");
+ resolve();
+ }
+ });
+ });
+ observer.observe(doc.body, { childList: true });
+ });
+ }
+ return ContentTask.spawn(browser, {}, isLoaded);
+}
+
+function promiseOnboardingOverlayOpened(browser) {
+ return BrowserTestUtils.waitForCondition(() =>
+ ContentTask.spawn(browser, {}, () =>
+ content.document.querySelector("#onboarding-overlay").classList.contains(
+ "onboarding-opened")),
+ "Should open onboarding overlay",
+ 100,
+ 30
+ );
+}
+
+function promiseOnboardingOverlayClosed(browser) {
+ return BrowserTestUtils.waitForCondition(() =>
+ ContentTask.spawn(browser, {}, () =>
+ !content.document.querySelector("#onboarding-overlay").classList.contains(
+ "onboarding-opened")),
+ "Should close onboarding overlay",
+ 100,
+ 30
+ );
+}
+
+function promisePrefUpdated(name, expectedValue) {
+ return new Promise(resolve => {
+ let onUpdate = actualValue => {
+ Preferences.ignore(name, onUpdate);
+ is(expectedValue, actualValue, `Should update the pref of ${name}`);
+ resolve();
+ };
+ Preferences.observe(name, onUpdate);
+ });
+}
+
+function promiseTourNotificationOpened(browser) {
+ function isOpened() {
+ let doc = content && content.document;
+ let notification = doc.querySelector("#onboarding-notification-bar");
+ if (notification && notification.classList.contains("onboarding-opened")) {
+ ok(true, "Should open tour notification");
+ return Promise.resolve();
+ }
+ return new Promise(resolve => {
+ let observer = new content.MutationObserver(mutations => {
+ mutations.forEach(mutation => {
+ let bar = Array.from(mutation.addedNodes)
+ .find(node => node.id == "onboarding-notification-bar");
+ if (bar && bar.classList.contains("onboarding-opened")) {
+ observer.disconnect();
+ ok(true, "Should open tour notification");
+ resolve();
+ }
+ });
+ });
+ observer.observe(doc.body, { childList: true });
+ });
+ }
+ return ContentTask.spawn(browser, {}, isOpened);
+}
+
+function promiseTourNotificationClosed(browser) {
+ let condition = () => {
+ return ContentTask.spawn(browser, {}, function() {
+ return new Promise(resolve => {
+ let bar = content.document.querySelector("#onboarding-notification-bar");
+ if (bar && !bar.classList.contains("onboarding-opened")) {
+ resolve(true);
+ return;
+ }
+ resolve(false);
+ });
+ });
+ };
+ return BrowserTestUtils.waitForCondition(
+ condition,
+ "Should close tour notification",
+ 100,
+ 30
+ );
+}
+
+function getCurrentNotificationTargetTourId(browser) {
+ return ContentTask.spawn(browser, {}, function() {
+ let bar = content.document.querySelector("#onboarding-notification-bar");
+ return bar ? bar.dataset.targetTourId : null;
+ });
+}
+
+function getCurrentActiveTour(browser) {
+ return ContentTask.spawn(browser, {}, function() {
+ let list = content.document.querySelector("#onboarding-tour-list");
+ let items = list.querySelectorAll(".onboarding-tour-item");
+ let activeNavItemId = null;
+ for (let item of items) {
+ if (item.classList.contains("onboarding-active")) {
+ if (!activeNavItemId) {
+ activeNavItemId = item.id;
+ } else {
+ ok(false, "There are more than one item marked as active.");
+ }
+ }
+ }
+ let activePageId = null;
+ let pages = content.document.querySelectorAll(".onboarding-tour-page");
+ for (let page of pages) {
+ if (page.style.display != "none") {
+ if (!activePageId) {
+ activePageId = page.id;
+ } else {
+ ok(false, "Thre are more than one tour page visible.");
+ }
+ }
+ }
+ return { activeNavItemId, activePageId };
+ });
+}
+
+function waitUntilWindowIdle(browser) {
+ return ContentTask.spawn(browser, {}, function() {
+ return new Promise(resolve => content.requestIdleCallback(resolve));
+ });
+}
+
+function skipMuteNotificationOnFirstSession() {
+ Preferences.set("browser.onboarding.notification.mute-duration-on-first-session-ms", 0);
+}
+
+function assertOverlaySemantics(browser) {
+ return ContentTask.spawn(browser, {}, function() {
+ let doc = content.document;
+
+ info("Checking dialog");
+ let dialog = doc.getElementById("onboarding-overlay-dialog");
+ is(dialog.getAttribute("role"), "dialog",
+ "Dialog should have a dialog role attribute set");
+ is(dialog.tabIndex, "-1", "Dialog should be focusable but not in tab order");
+ is(dialog.getAttribute("aria-labelledby"), "onboarding-header",
+ "Dialog should be labaled by its header");
+
+ info("Checking the tablist container");
+ is(doc.getElementById("onboarding-tour-list").getAttribute("role"), "tablist",
+ "Tour list should have a tablist role attribute set");
+
+ info("Checking each tour item that represents the tab");
+ let items = [...doc.querySelectorAll(".onboarding-tour-item")];
+ items.forEach(item => {
+ is(item.parentNode.getAttribute("role"), "presentation",
+ "Parent should have no semantic value");
+ is(item.getAttribute("aria-selected"),
+ item.classList.contains("onboarding-active") ? "true" : "false",
+ "Active item should have aria-selected set to true and inactive to false");
+ is(item.tabIndex, "0", "Item tab index must be set for keyboard accessibility");
+ is(item.getAttribute("role"), "tab", "Item should have a tab role attribute set");
+ let tourPanelId = `${item.id}-page`;
+ is(item.getAttribute("aria-controls"), tourPanelId,
+ "Item should have aria-controls attribute point to its tabpanel");
+ let panel = doc.getElementById(tourPanelId);
+ is(panel.getAttribute("role"), "tabpanel",
+ "Tour panel should have a tabpanel role attribute set");
+ is(panel.getAttribute("aria-labelledby"), item.id,
+ "Tour panel should have aria-labelledby attribute point to its tab");
+ });
+ });
+}
+
+function assertModalDialog(browser, args) {
+ return ContentTask.spawn(browser, args, ({ keyboardFocus, visible, focusedId }) => {
+ let doc = content.document;
+ let overlayButton = doc.getElementById("onboarding-overlay-button");
+ if (visible) {
+ [...doc.body.children].forEach(child =>
+ child.id !== "onboarding-overlay" &&
+ is(child.getAttribute("aria-hidden"), "true",
+ "Content should not be visible to screen reader"));
+ is(focusedId ? doc.getElementById(focusedId) : doc.body,
+ doc.activeElement, `Focus should be on ${focusedId || "body"}`);
+ is(keyboardFocus ? "true" : undefined,
+ overlayButton.dataset.keyboardFocus,
+ "Overlay button focus state is saved correctly");
+ } else {
+ [...doc.body.children].forEach(
+ child => ok(!child.hasAttribute("aria-hidden"),
+ "Content should be visible to screen reader"));
+ if (keyboardFocus) {
+ is(overlayButton, doc.activeElement,
+ "Focus should be set on overlay button");
+ }
+ ok(!overlayButton.dataset.keyboardFocus,
+ "Overlay button focus state should be cleared");
+ }
+ });
+}
+
+function assertWatermarkIconDisplayed(browser) {
+ return ContentTask.spawn(browser, {}, function() {
+ let overlayButton = content.document.getElementById("onboarding-overlay-button");
+ ok(overlayButton.classList.contains("onboarding-watermark"), "Should display the watermark onboarding icon");
+ });
+}
diff --git a/browser/extensions/onboarding/test/unit/.eslintrc.js b/browser/extensions/onboarding/test/unit/.eslintrc.js
new file mode 100644
index 000000000000..58f8bd73ee48
--- /dev/null
+++ b/browser/extensions/onboarding/test/unit/.eslintrc.js
@@ -0,0 +1,7 @@
+"use strict";
+
+module.exports = {
+ "extends": [
+ "plugin:mozilla/xpcshell-test",
+ ],
+};
diff --git a/browser/extensions/onboarding/test/unit/head.js b/browser/extensions/onboarding/test/unit/head.js
new file mode 100644
index 000000000000..715ba8589b4e
--- /dev/null
+++ b/browser/extensions/onboarding/test/unit/head.js
@@ -0,0 +1,54 @@
+/**
+ * Provides infrastructure for automated onboarding components tests.
+ */
+
+"use strict";
+
+/* global Cc, Ci, Cu */
+ChromeUtils.import("resource://gre/modules/Preferences.jsm");
+ChromeUtils.import("resource://gre/modules/Services.jsm");
+ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm");
+
+XPCOMUtils.defineLazyServiceGetter(this, "resProto",
+ "@mozilla.org/network/protocol;1?name=resource",
+ "nsISubstitutingProtocolHandler");
+
+// Load our bootstrap extension manifest so we can access our chrome/resource URIs.
+// Cargo culted from formautofill system add-on
+const EXTENSION_ID = "onboarding(a)mozilla.org";
+let extensionDir = Services.dirsvc.get("GreD", Ci.nsIFile);
+extensionDir.append("browser");
+extensionDir.append("features");
+extensionDir.append(EXTENSION_ID);
+let resourceURI;
+// If the unpacked extension doesn't exist, use the packed version.
+if (!extensionDir.exists()) {
+ extensionDir.leafName += ".xpi";
+
+ resourceURI = "jar:" + Services.io.newFileURI(extensionDir).spec + "!/chrome/content/";
+} else {
+ resourceURI = Services.io.newFileURI(extensionDir).spec + "/chrome/content/";
+}
+Components.manager.addBootstrappedManifestLocation(extensionDir);
+
+resProto.setSubstitution("onboarding", Services.io.newURI(resourceURI));
+
+const TOURSET_VERSION = 1;
+const NEXT_TOURSET_VERSION = 2;
+const PREF_TOUR_TYPE = "browser.onboarding.tour-type";
+const PREF_TOURSET_VERSION = "browser.onboarding.tourset-version";
+const PREF_SEEN_TOURSET_VERSION = "browser.onboarding.seen-tourset-version";
+
+function resetOnboardingDefaultState() {
+ // All the prefs should be reset to what prefs should looks like in a new user profile
+ Services.prefs.setIntPref(PREF_TOURSET_VERSION, TOURSET_VERSION);
+ Services.prefs.clearUserPref(PREF_SEEN_TOURSET_VERSION);
+ Services.prefs.clearUserPref(PREF_TOUR_TYPE);
+}
+
+function resetOldProfileDefaultState() {
+ // All the prefs should be reset to what prefs should looks like in a older new user profile
+ Services.prefs.setIntPref(PREF_TOURSET_VERSION, TOURSET_VERSION);
+ Services.prefs.setIntPref(PREF_SEEN_TOURSET_VERSION, 0);
+ Services.prefs.clearUserPref(PREF_TOUR_TYPE);
+}
diff --git a/browser/extensions/onboarding/test/unit/test-onboarding-tour-type.js b/browser/extensions/onboarding/test/unit/test-onboarding-tour-type.js
new file mode 100644
index 000000000000..489ae6eebce1
--- /dev/null
+++ b/browser/extensions/onboarding/test/unit/test-onboarding-tour-type.js
@@ -0,0 +1,89 @@
+/*
+ * Test for onboarding tour type check.
+ */
+
+"use strict";
+
+ChromeUtils.import("resource://onboarding/modules/OnboardingTourType.jsm");
+
+add_task(async function() {
+ info("Starting testcase: When New user open the browser first time");
+ resetOnboardingDefaultState();
+ OnboardingTourType.check();
+
+ Assert.equal(Preferences.get(PREF_TOUR_TYPE), "new", "should show the new user tour");
+ Assert.equal(Preferences.get(PREF_TOURSET_VERSION), TOURSET_VERSION,
+ "tourset version should not change");
+ Assert.equal(Preferences.get(PREF_SEEN_TOURSET_VERSION), TOURSET_VERSION,
+ "seen tourset version should be set as the tourset version");
+});
+
+add_task(async function() {
+ info("Starting testcase: When New user restart the browser");
+ resetOnboardingDefaultState();
+ Preferences.set(PREF_TOUR_TYPE, "new");
+ Preferences.set(PREF_SEEN_TOURSET_VERSION, TOURSET_VERSION);
+ OnboardingTourType.check();
+
+ Assert.equal(Preferences.get(PREF_TOUR_TYPE), "new", "should show the new user tour");
+ Assert.equal(Preferences.get(PREF_TOURSET_VERSION), TOURSET_VERSION,
+ "tourset version should not change");
+ Assert.equal(Preferences.get(PREF_SEEN_TOURSET_VERSION), TOURSET_VERSION,
+ "seen tourset version should be set as the tourset version");
+});
+
+add_task(async function() {
+ info("Starting testcase: When New User choosed to hide the overlay and restart the browser");
+ resetOnboardingDefaultState();
+ Preferences.set(PREF_TOUR_TYPE, "new");
+ Preferences.set(PREF_SEEN_TOURSET_VERSION, TOURSET_VERSION);
+ OnboardingTourType.check();
+
+ Assert.equal(Preferences.get(PREF_TOUR_TYPE), "new", "should show the new user tour");
+ Assert.equal(Preferences.get(PREF_TOURSET_VERSION), TOURSET_VERSION,
+ "tourset version should not change");
+ Assert.equal(Preferences.get(PREF_SEEN_TOURSET_VERSION), TOURSET_VERSION,
+ "seen tourset version should be set as the tourset version");
+});
+
+add_task(async function() {
+ info("Starting testcase: When New User updated to the next major version and restart the browser");
+ resetOnboardingDefaultState();
+ Preferences.set(PREF_TOURSET_VERSION, NEXT_TOURSET_VERSION);
+ Preferences.set(PREF_TOUR_TYPE, "new");
+ Preferences.set(PREF_SEEN_TOURSET_VERSION, TOURSET_VERSION);
+ OnboardingTourType.check();
+
+ Assert.equal(Preferences.get(PREF_TOUR_TYPE), "update", "should show the update user tour");
+ Assert.equal(Preferences.get(PREF_TOURSET_VERSION), NEXT_TOURSET_VERSION,
+ "tourset version should not change");
+ Assert.equal(Preferences.get(PREF_SEEN_TOURSET_VERSION), NEXT_TOURSET_VERSION,
+ "seen tourset version should be set as the tourset version");
+});
+
+add_task(async function() {
+ info("Starting testcase: When New User prefer hide the tour, then updated to the next major version and restart the browser");
+ resetOnboardingDefaultState();
+ Preferences.set(PREF_TOURSET_VERSION, NEXT_TOURSET_VERSION);
+ Preferences.set(PREF_TOUR_TYPE, "new");
+ Preferences.set(PREF_SEEN_TOURSET_VERSION, TOURSET_VERSION);
+ OnboardingTourType.check();
+
+ Assert.equal(Preferences.get(PREF_TOUR_TYPE), "update", "should show the update user tour");
+ Assert.equal(Preferences.get(PREF_TOURSET_VERSION), NEXT_TOURSET_VERSION,
+ "tourset version should not change");
+ Assert.equal(Preferences.get(PREF_SEEN_TOURSET_VERSION), NEXT_TOURSET_VERSION,
+ "seen tourset version should be set as the tourset version");
+});
+
+add_task(async function() {
+ info("Starting testcase: When User update from browser version < 56");
+ resetOldProfileDefaultState();
+ OnboardingTourType.check();
+
+ Assert.equal(Preferences.get(PREF_TOUR_TYPE), "update", "should show the update user tour");
+ Assert.equal(Preferences.get(PREF_TOURSET_VERSION), TOURSET_VERSION,
+ "tourset version should not change");
+ Assert.equal(Preferences.get(PREF_SEEN_TOURSET_VERSION), TOURSET_VERSION,
+ "seen tourset version should be set as the tourset version");
+});
diff --git a/browser/extensions/onboarding/test/unit/xpcshell.ini b/browser/extensions/onboarding/test/unit/xpcshell.ini
new file mode 100644
index 000000000000..ed484d0f200f
--- /dev/null
+++ b/browser/extensions/onboarding/test/unit/xpcshell.ini
@@ -0,0 +1,5 @@
+[DEFAULT]
+firefox-appdir = browser
+head = head.js
+
+[test-onboarding-tour-type.js]
diff --git a/browser/installer/package-manifest.in b/browser/installer/package-manifest.in
index 9e36326dee5b..f583f0fd8f0a 100644
--- a/browser/installer/package-manifest.in
+++ b/browser/installer/package-manifest.in
@@ -268,6 +268,7 @@
@RESPATH@/browser/chrome/icons/default/default64.png
@RESPATH@/browser/chrome/icons/default/default128.png
#endif
+@RESPATH@/browser/features/*
; [DevTools Startup Files]
@RESPATH@/browser/chrome/devtools-startup@JAREXT@
diff --git a/browser/locales/Makefile.in b/browser/locales/Makefile.in
index 1fdf34d9460f..d2671745854d 100644
--- a/browser/locales/Makefile.in
+++ b/browser/locales/Makefile.in
@@ -58,6 +58,7 @@ libs-%:
@$(MAKE) -C ../../toolkit/locales libs-$* XPI_ROOT_APPID='$(XPI_ROOT_APPID)'
@$(MAKE) -C ../../services/sync/locales AB_CD=$* XPI_NAME=locale-$*
@$(MAKE) -C ../../extensions/spellcheck/locales AB_CD=$* XPI_NAME=locale-$*
+ @$(MAKE) -C ../extensions/onboarding/locales AB_CD=$* XPI_NAME=locale-$*
@$(MAKE) -C ../../devtools/client/locales AB_CD=$* XPI_NAME=locale-$* XPI_ROOT_APPID='$(XPI_ROOT_APPID)'
@$(MAKE) -C ../../devtools/startup/locales AB_CD=$* XPI_NAME=locale-$* XPI_ROOT_APPID='$(XPI_ROOT_APPID)'
@$(MAKE) libs AB_CD=$* XPI_NAME=locale-$* PREF_DIR=$(PREF_DIR)
@@ -71,6 +72,7 @@ chrome-%:
@$(MAKE) -C ../../toolkit/locales chrome-$*
@$(MAKE) -C ../../services/sync/locales chrome AB_CD=$*
@$(MAKE) -C ../../extensions/spellcheck/locales chrome AB_CD=$*
+ @$(MAKE) -C ../extensions/onboarding/locales chrome AB_CD=$*
@$(MAKE) -C ../../devtools/client/locales chrome AB_CD=$*
@$(MAKE) -C ../../devtools/startup/locales chrome AB_CD=$*
@$(MAKE) chrome AB_CD=$*
diff --git a/browser/locales/filter.py b/browser/locales/filter.py
index 1fc9b14e7c87..b3ca1609a412 100755
--- a/browser/locales/filter.py
+++ b/browser/locales/filter.py
@@ -13,6 +13,7 @@ def test(mod, path, entity=None):
"browser",
"browser/extensions/formautofill",
"browser/extensions/fxmonitor",
+ "browser/extensions/onboarding",
"browser/extensions/report-site-issue",
"extensions/spellcheck",
"other-licenses/branding/firefox",
diff --git a/browser/locales/l10n.ini b/browser/locales/l10n.ini
index f4cb7caf53b0..33642110b600 100644
--- a/browser/locales/l10n.ini
+++ b/browser/locales/l10n.ini
@@ -14,6 +14,7 @@ dirs = browser
devtools/startup
browser/extensions/formautofill
browser/extensions/fxmonitor
+ browser/extensions/onboarding
browser/extensions/report-site-issue
[includes]
diff --git a/browser/locales/l10n.toml b/browser/locales/l10n.toml
index dc5b9025ac12..acdda5e7dd30 100644
--- a/browser/locales/l10n.toml
+++ b/browser/locales/l10n.toml
@@ -128,6 +128,10 @@ locales = [
reference = "browser/extensions/formautofill/locales/en-US/**"
l10n = "{l}browser/extensions/formautofill/**"
+[[paths]]
+ reference = "browser/extensions/onboarding/locales/en-US/**"
+ l10n = "{l}browser/extensions/onboarding/**"
+
[[paths]]
reference = "browser/extensions/fxmonitor/locales/en-US/**"
l10n = "{l}browser/extensions/fxmonitor/**"
diff --git a/extensions/permissions/PermissionManager.cpp b/extensions/permissions/PermissionManager.cpp
index 36665fad7de7..1450bf865a84 100644
--- a/extensions/permissions/PermissionManager.cpp
+++ b/extensions/permissions/PermissionManager.cpp
@@ -125,6 +125,9 @@ static const nsLiteralCString kPreloadPermissions[] = {
// removed. See bug 1428130.
NS_LITERAL_CSTRING("cookie"),
+ // Bug 28822: Make sure uitour permissions are preloaded in content processes.
+ NS_LITERAL_CSTRING("uitour"),
+
USER_INTERACTION_PERM};
// Certain permissions should never be persisted to disk under GeckoView; it's
diff --git a/tools/lint/codespell.yml b/tools/lint/codespell.yml
index 75cbd69599e3..de93cb4ec6e6 100644
--- a/tools/lint/codespell.yml
+++ b/tools/lint/codespell.yml
@@ -9,6 +9,7 @@ codespell:
- browser/components/touchbar/docs/
- browser/components/urlbar/docs/
- browser/extensions/formautofill/locales/en-US/
+ - browser/extensions/onboarding/locales/en-US/
- browser/extensions/report-site-issue/locales/en-US/
- browser/installer/windows/docs/
- browser/locales/en-US/
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 26961: New user onboarding.
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 701a0d6f4cf2f383085d4d318913535db0a0e2e6
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Wed Aug 8 11:34:40 2018 -0400
Bug 26961: New user onboarding.
Reuse the Firefox onboarding mechanism with minimal changes.
Localizable strings are pulled in from Torbutton (if Torbutton is
not installed, we lack about:tor and no tour will be shown).
Replace SVG images with PNGs (see bug 27002),
For defense in depth, omit include OnboardingTelemetry.jsm entirely.
Added support for the following UITour page event:
torBrowserOpenSecuritySettings
Also fix bug 27403: the onboarding bubble is not always displayed.
Arthur suggested to make the onboarding bubble visible on displays with
less than 960px width available, so we choose 200px instead.
Also fix bug 28628: Change onboarding Security panel to open new
Security Level panel.
Also fix bug 27484: Improve navigation within onboarding.
Bug 27082: enable a limited UITour
Disallow access to UITour functionality from all pages other than
about:home, about:newtab, and about:tor.
Implement a whitelist mechanism for page actions.
Bug 26962 - implement new features onboarding (part 1).
Add an "Explore" button to the "Circuit Display" panel within new user
onboarding which opens the DuckDuckGo .onion and then guides users through
a short circuit display tutorial.
Allow a few additional UITour actions while limiting as much as possible
how it can be used.
Tweak the UITour styles to match the Tor Browser branding.
All user interface strings are retrieved from Torbutton's
browserOnboarding.properties file.
Bug 27486 Avoid about:blank tabs when opening onboarding pages.
Instead of using a simple <a href>, programmatically open onboarding
web pages by using tabBrowser.addTab(). The same technique is now
used for "See My Path", "See FAQs", and "Visit an Onion".
Bug 29768: Introduce new features to users
Add an "update" tour for the Tor Browser 8.5 release that contains two
panels: Toolbar and Security (with appropriate description text and
images).
Display an attention-grabbing dot on the onboarding text bubble when
the update tour is active. The animation lasts for 14 seconds.
Bug 31768: Introduce toolbar and network settings changes in onboarding
Update the "Tor Network" onboarding page to include a note that
settings can now be accessed via the application preferences and
add an "Adjust Your Tor Network Settings" action button which opens
about:preferences#tor.
Replace the Tor Browser 8.5 "update" onboarding tour with a 9.0 one
that includes the revised "Tor Network" page and a revised "Toolbar"
page. The latter explains that Torbutton's toolbar item has been
removed ("Goodbye Onion Button") and explains how to access the
New Identity feature using the hamburger menu and new toolbar item.
Bug 34321 - Add Learn More onboarding item
---
browser/app/permissions | 10 +-
browser/app/profile/000-tor-browser.js | 6 +
browser/components/uitour/UITour-lib.js | 7 +
browser/components/uitour/UITour.jsm | 78 ++-
browser/components/uitour/UITourChild.jsm | 33 +-
browser/extensions/onboarding/api.js | 43 +-
.../extensions/onboarding/content/Onboarding.jsm | 387 +++++++++++-
.../extensions/onboarding/content/img/close.png | Bin 0 -> 798 bytes
.../onboarding/content/img/figure_addons.svg | 1 -
.../onboarding/content/img/figure_customize.svg | 561 -----------------
.../onboarding/content/img/figure_default.svg | 1 -
.../onboarding/content/img/figure_library.svg | 689 ---------------------
.../onboarding/content/img/figure_performance.svg | 1 -
.../onboarding/content/img/figure_private.svg | 1 -
.../onboarding/content/img/figure_screenshots.svg | 191 ------
.../onboarding/content/img/figure_singlesearch.svg | 1 -
.../onboarding/content/img/figure_sync.svg | 1 -
.../content/img/figure_tor-circuit-display.png | Bin 0 -> 26334 bytes
.../content/img/figure_tor-expect-differences.png | Bin 0 -> 22290 bytes
.../onboarding/content/img/figure_tor-network.png | Bin 0 -> 11982 bytes
.../content/img/figure_tor-onion-services.png | Bin 0 -> 40968 bytes
.../onboarding/content/img/figure_tor-privacy.png | Bin 0 -> 35527 bytes
.../content/img/figure_tor-security-level.png | Bin 0 -> 11263 bytes
.../onboarding/content/img/figure_tor-security.png | Bin 0 -> 24554 bytes
.../content/img/figure_tor-toolbar-layout.png | Bin 0 -> 13269 bytes
.../onboarding/content/img/figure_tor-welcome.png | Bin 0 -> 48405 bytes
.../onboarding/content/img/icons_addons.svg | 1 -
.../onboarding/content/img/icons_customize.svg | 1 -
.../onboarding/content/img/icons_default.svg | 1 -
.../onboarding/content/img/icons_library.svg | 1 -
.../onboarding/content/img/icons_no-icon.png | Bin 0 -> 673 bytes
.../onboarding/content/img/icons_performance.svg | 1 -
.../onboarding/content/img/icons_private.svg | 1 -
.../onboarding/content/img/icons_screenshots.svg | 1 -
.../onboarding/content/img/icons_singlesearch.svg | 1 -
.../onboarding/content/img/icons_sync.svg | 1 -
.../onboarding/content/img/icons_tour-complete.png | Bin 0 -> 694 bytes
.../onboarding/content/img/icons_tour-complete.svg | 4 +-
.../onboarding/content/img/watermark.svg | 1 -
.../content/onboarding-tor-circuit-display.js | 283 +++++++++
.../onboarding/content/onboarding-tour-agent.js | 13 +
.../extensions/onboarding/content/onboarding.css | 150 ++++-
.../extensions/onboarding/content/onboarding.js | 3 +-
browser/extensions/onboarding/jar.mn | 9 +-
browser/themes/shared/UITour.inc.css | 28 +-
intl/strres/nsStringBundle.cpp | 1 +
46 files changed, 935 insertions(+), 1577 deletions(-)
diff --git a/browser/app/permissions b/browser/app/permissions
index 3ff3d84bc4dc..da6b6728043d 100644
--- a/browser/app/permissions
+++ b/browser/app/permissions
@@ -7,13 +7,9 @@
# See PermissionManager.cpp for more...
# UITour
-# Bug 1557153: www.mozilla.org gets a special workaround in UITourChild.jsm
-origin uitour 1 https://www.mozilla.org
-origin uitour 1 https://monitor.firefox.com
-origin uitour 1 https://screenshots.firefox.com
-origin uitour 1 https://support.mozilla.org
-origin uitour 1 about:home
-origin uitour 1 about:newtab
+# DuckDuckGo .onion (used for circuit display onboarding).
+origin uitour 1 https://3g2upl4pq6kufc4m.onion
+origin uitour 1 about:tor
# XPInstall
origin install 1 https://addons.mozilla.org
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js
index 26578bd40093..c87bd050b8f5 100644
--- a/browser/app/profile/000-tor-browser.js
+++ b/browser/app/profile/000-tor-browser.js
@@ -355,6 +355,12 @@ pref("corroborator.enabled", false);
pref("media.rdd-opus.enabled", false);
#endif
+// Onboarding.
+pref("browser.onboarding.tourset-version", 5);
+pref("browser.onboarding.newtour", "welcome,privacy,tor-network-9.0,circuit-display,security,expect-differences,onion-services,learn-more");
+pref("browser.onboarding.updatetour", "learn-more");
+pref("browser.onboarding.skip-tour-button.hide", true);
+
// prefs to disable jump-list entries in the taskbar on Windows (see bug #12885)
#ifdef XP_WIN
// this pref changes the app's set AUMID to be dependent on the profile path, rather than
diff --git a/browser/components/uitour/UITour-lib.js b/browser/components/uitour/UITour-lib.js
index c7ca285429b5..f68b2285fd90 100644
--- a/browser/components/uitour/UITour-lib.js
+++ b/browser/components/uitour/UITour-lib.js
@@ -805,6 +805,13 @@ if (typeof Mozilla == "undefined") {
Mozilla.UITour.closeTab = function() {
_sendEvent("closeTab");
};
+
+ /**
+ * @summary Opens the Security Level Panel.
+ */
+ Mozilla.UITour.torBrowserOpenSecurityLevelPanel = function() {
+ _sendEvent("torBrowserOpenSecurityLevelPanel");
+ };
})();
// Make this library Require-able.
diff --git a/browser/components/uitour/UITour.jsm b/browser/components/uitour/UITour.jsm
index 2e0a178bf425..c3ab6d9b2b56 100644
--- a/browser/components/uitour/UITour.jsm
+++ b/browser/components/uitour/UITour.jsm
@@ -68,6 +68,28 @@ ChromeUtils.defineModuleGetter(
// See LOG_LEVELS in Console.jsm. Common examples: "All", "Info", "Warn", & "Error".
const PREF_LOG_LEVEL = "browser.uitour.loglevel";
+const TOR_BROWSER_PAGE_ACTIONS_ALLOWED = new Set([
+ "showInfo", // restricted to TOR_BROWSER_TARGETS_ALLOWED
+ "showMenu", // restricted to TOR_BROWSER_MENUS_ALLOWED
+ "hideMenu", // restricted to TOR_BROWSER_MENUS_ALLOWED
+ "showHighlight", // restricted to TOR_BROWSER_TARGETS_ALLOWED
+ "hideHighlight", // restricted to TOR_BROWSER_TARGETS_ALLOWED
+ "openPreferences",
+ "closeTab",
+ "torBrowserOpenSecurityLevelPanel",
+]);
+
+const TOR_BROWSER_TARGETS_ALLOWED = new Set([
+ "torBrowser-newIdentityButton",
+ "torBrowser-circuitDisplay",
+ "torBrowser-circuitDisplay-diagram",
+ "torBrowser-circuitDisplay-newCircuitButton",
+]);
+
+const TOR_BROWSER_MENUS_ALLOWED = new Set([
+ "controlCenter",
+]);
+
const BACKGROUND_PAGE_ACTIONS_ALLOWED = new Set([
"forceShowReaderIcon",
"getConfiguration",
@@ -111,6 +133,17 @@ var UITour = {
highlightEffects: ["random", "wobble", "zoom", "color"],
targets: new Map([
+ ["torBrowser-circuitDisplay", {
+ query: "#identity-icon",
+ }],
+ ["torBrowser-circuitDisplay-diagram",
+ torBrowserCircuitDisplayTarget("circuit-display-nodes")],
+ ["torBrowser-circuitDisplay-newCircuitButton",
+ torBrowserCircuitDisplayTarget("circuit-reload-button")],
+ ["torBrowser-newIdentityButton", {
+ query: "#new-identity-button",
+ }],
+
[
"accountStatus",
{
@@ -361,6 +394,11 @@ var UITour = {
return false;
}
+ if (!TOR_BROWSER_PAGE_ACTIONS_ALLOWED.has(action)) {
+ log.warn("Ignoring disallowed action:", action);
+ return false;
+ }
+
switch (action) {
case "registerPageID": {
break;
@@ -695,6 +733,14 @@ var UITour = {
this.showProtectionReport(window, browser);
break;
}
+
+ case "torBrowserOpenSecurityLevelPanel": {
+ let securityLevelButton =
+ window.document.getElementById("security-level-button");
+ if (securityLevelButton)
+ securityLevelButton.click();
+ break;
+ }
}
// For performance reasons, only call initForBrowser if we did something
@@ -918,10 +964,7 @@ var UITour = {
// This function is copied to UITourListener.
isSafeScheme(aURI) {
- let allowedSchemes = new Set(["https", "about"]);
- if (!Services.prefs.getBoolPref("browser.uitour.requireSecure")) {
- allowedSchemes.add("http");
- }
+ let allowedSchemes = new Set(["about", "https"]);
if (!allowedSchemes.has(aURI.scheme)) {
log.error("Unsafe scheme:", aURI.scheme);
@@ -970,7 +1013,10 @@ var UITour = {
return Promise.reject("Invalid target name specified");
}
- let targetObject = this.targets.get(aTargetName);
+ let targetObject;
+ if (TOR_BROWSER_TARGETS_ALLOWED.has(aTargetName)) {
+ targetObject = this.targets.get(aTargetName);
+ }
if (!targetObject) {
log.warn(
"getTarget: The specified target name is not in the allowed set"
@@ -1476,6 +1522,10 @@ var UITour = {
},
showMenu(aWindow, aMenuName, aOpenCallback = null, aOptions = {}) {
+ if (!TOR_BROWSER_MENUS_ALLOWED.has(aMenuName)) {
+ return;
+ }
+
log.debug("showMenu:", aMenuName);
function openMenuButton(aMenuBtn) {
if (!aMenuBtn || !aMenuBtn.hasMenu() || aMenuBtn.open) {
@@ -1579,6 +1629,10 @@ var UITour = {
},
hideMenu(aWindow, aMenuName) {
+ if (!TOR_BROWSER_MENUS_ALLOWED.has(aMenuName)) {
+ return;
+ }
+
log.debug("hideMenu:", aMenuName);
function closeMenuButton(aMenuBtn) {
if (aMenuBtn && aMenuBtn.hasMenu()) {
@@ -2122,6 +2176,20 @@ var UITour = {
},
};
+function torBrowserCircuitDisplayTarget(aElemID) {
+ return {
+ infoPanelPosition: "rightcenter topleft",
+ query(aDocument) {
+ let popup = aDocument.defaultView.gIdentityHandler._identityPopup;
+ if (popup.state != "open") {
+ return null;
+ }
+ let element = aDocument.getElementById(aElemID);
+ return UITour.isElementVisible(element) ? element : null;
+ },
+ };
+}
+
UITour.init();
/**
diff --git a/browser/components/uitour/UITourChild.jsm b/browser/components/uitour/UITourChild.jsm
index e2e763c8f4c1..02caae849de8 100644
--- a/browser/components/uitour/UITourChild.jsm
+++ b/browser/components/uitour/UITourChild.jsm
@@ -25,36 +25,9 @@ class UITourChild extends JSWindowActorChild {
});
}
- isTestingOrigin(aURI) {
- if (
- Services.prefs.getPrefType(PREF_TEST_WHITELIST) !=
- Services.prefs.PREF_STRING
- ) {
- return false;
- }
-
- // Add any testing origins (comma-seperated) to the whitelist for the session.
- for (let origin of Services.prefs
- .getCharPref(PREF_TEST_WHITELIST)
- .split(",")) {
- try {
- let testingURI = Services.io.newURI(origin);
- if (aURI.prePath == testingURI.prePath) {
- return true;
- }
- } catch (ex) {
- Cu.reportError(ex);
- }
- }
- return false;
- }
-
// This function is copied from UITour.jsm.
isSafeScheme(aURI) {
- let allowedSchemes = new Set(["https", "about"]);
- if (!Services.prefs.getBoolPref("browser.uitour.requireSecure")) {
- allowedSchemes.add("http");
- }
+ let allowedSchemes = new Set(["about", "https"]);
if (!allowedSchemes.has(aURI.scheme)) {
return false;
@@ -90,9 +63,7 @@ class UITourChild extends JSWindowActorChild {
return true;
}
- // Bug 1557153: To allow Skyline messaging, workaround for UNKNOWN_ACTION
- // overriding browser/app/permissions default
- return uri.host == "www.mozilla.org" || this.isTestingOrigin(uri);
+ return false;
}
receiveMessage(aMessage) {
diff --git a/browser/extensions/onboarding/api.js b/browser/extensions/onboarding/api.js
index c40800577976..d7dffaaaac19 100644
--- a/browser/extensions/onboarding/api.js
+++ b/browser/extensions/onboarding/api.js
@@ -8,7 +8,6 @@
ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm");
XPCOMUtils.defineLazyModuleGetters(this, {
OnboardingTourType: "resource://onboarding/modules/OnboardingTourType.jsm",
- OnboardingTelemetry: "resource://onboarding/modules/OnboardingTelemetry.jsm",
Services: "resource://gre/modules/Services.jsm",
UIState: "resource://services-sync/UIState.jsm",
});
@@ -21,7 +20,11 @@ const RESOURCE_HOST = "onboarding";
const {PREF_STRING, PREF_BOOL, PREF_INT} = Ci.nsIPrefBranch;
-const BROWSER_READY_NOTIFICATION = "browser-delayed-startup-finished";
+// In Tor Browser we initialize onboarding upon "final-ui-startup" instead
+// of waiting for "browser-delayed-startup-finished"; otherwise, on first
+// run the onboarding frame script's "onload" listener is installed too
+// late to detect that about:tor is loaded.
+const BROWSER_READY_NOTIFICATION = "final-ui-startup";
const BROWSER_SESSION_STORE_NOTIFICATION = "sessionstore-windows-restored";
const PREF_WHITELIST = [
["browser.onboarding.enabled", PREF_BOOL],
@@ -33,6 +36,19 @@ const PREF_WHITELIST = [
];
[
+ // Tor Browser tours:
+ "onboarding-tour-tor-welcome",
+ "onboarding-tour-tor-privacy",
+ "onboarding-tour-tor-network-9-0",
+ "onboarding-tour-tor-circuit-display",
+ "onboarding-tour-tor-security",
+ "onboarding-tour-tor-expect-differences",
+ "onboarding-tour-tor-onion-services",
+ "onboarding-tour-tor-toolbar-update-9-0",
+ "onboarding-tour-tor-learn-more",
+#if 0
+// Firefox tours. To reduce conflicts when rebasing against newer Firefox
+// code, we use the preprocessor to omit this code block.
"onboarding-tour-addons",
"onboarding-tour-customize",
"onboarding-tour-default-browser",
@@ -42,6 +58,7 @@ const PREF_WHITELIST = [
"onboarding-tour-screenshots",
"onboarding-tour-singlesearch",
"onboarding-tour-sync",
+#endif
].forEach(tourId => PREF_WHITELIST.push([`browser.onboarding.tour.${tourId}.completed`, PREF_BOOL]));
let waitingForBrowserReady = true;
@@ -82,6 +99,21 @@ function setPrefs(prefs) {
});
}
+function openTorTab(aURL, aFrameScript) {
+ let win = Services.wm.getMostRecentWindow('navigator:browser');
+ if (win) {
+ let tabBrowser = win.gBrowser;
+ let triggeringPrincipal = Services.scriptSecurityManager.createNullPrincipal({});
+ let tab = tabBrowser.addTab(aURL, { triggeringPrincipal });
+ tabBrowser.selectedTab = tab;
+
+ if (aFrameScript) {
+ let b = tabBrowser.getBrowserForTab(tab);
+ b.messageManager.loadFrameScript(aFrameScript, true);
+ }
+ }
+}
+
/**
* syncTourChecker listens to and maintains the login status inside, and can be
* queried at any time once initialized.
@@ -155,6 +187,11 @@ function initContentMessageListener() {
isLoggedIn: syncTourChecker.isLoggedIn(),
});
break;
+ case "tor-open-tab":
+ openTorTab(msg.data.params.url, msg.data.params.frameScriptURL);
+ break;
+#if 0
+// No telemetry in Tor Browser.
case "ping-centre":
try {
OnboardingTelemetry.process(msg.data.params.data);
@@ -162,6 +199,7 @@ function initContentMessageListener() {
Cu.reportError(e);
}
break;
+#endif
}
});
}
@@ -173,7 +211,6 @@ function onBrowserReady() {
waitingForBrowserReady = false;
OnboardingTourType.check();
- OnboardingTelemetry.init(startupData);
Services.mm.loadFrameScript("resource://onboarding/onboarding.js", true, true);
initContentMessageListener();
}
diff --git a/browser/extensions/onboarding/content/Onboarding.jsm b/browser/extensions/onboarding/content/Onboarding.jsm
index de95a66632ab..9f51fb4bd28a 100644
--- a/browser/extensions/onboarding/content/Onboarding.jsm
+++ b/browser/extensions/onboarding/content/Onboarding.jsm
@@ -11,7 +11,10 @@ var EXPORTED_SYMBOLS = ["Onboarding"];
const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
const ONBOARDING_CSS_URL = "resource://onboarding/onboarding.css";
-const BUNDLE_URI = "chrome://onboarding/locale/onboarding.properties";
+const TORBUTTON_BUNDLE_URI = "chrome://torbutton/locale/browserOnboarding.properties";
+const TORBROWSER_WELCOME_TOUR_NAME_KEY = "onboarding.tour-tor-welcome";
+const BUNDLE_URI = "chrome://torbutton/locale/onboarding.properties";
+const BROWSER_BUNDLE_URI = "chrome://browser/locale/browser.properties";
const UITOUR_JS_URI = "resource://onboarding/lib/UITour-lib.js";
const TOUR_AGENT_JS_URI = "resource://onboarding/onboarding-tour-agent.js";
const BRAND_SHORT_NAME = Services.strings
@@ -20,8 +23,8 @@ const BRAND_SHORT_NAME = Services.strings
const PROMPT_COUNT_PREF = "browser.onboarding.notification.prompt-count";
const NOTIFICATION_FINISHED_PREF = "browser.onboarding.notification.finished";
const ONBOARDING_DIALOG_ID = "onboarding-overlay-dialog";
-const ONBOARDING_MIN_WIDTH_PX = 960;
-const SPEECH_BUBBLE_MIN_WIDTH_PX = 1365;
+const ONBOARDING_MIN_WIDTH_PX = 200;
+const SPEECH_BUBBLE_MIN_WIDTH_PX = 200;
const SPEECH_BUBBLE_NEWTOUR_STRING_ID = "onboarding.overlay-icon-tooltip2";
const SPEECH_BUBBLE_UPDATETOUR_STRING_ID = "onboarding.overlay-icon-tooltip-updated2";
const ICON_STATE_WATERMARK = "watermark";
@@ -82,6 +85,194 @@ function createOnboardingTourButton(div, buttonId, l10nId, buttonElementTagName
return aside;
}
+// Tor Browser tours:
+var onboardingTourset = {
+ // Tour items for new users:
+ "welcome": {
+ id: "onboarding-tour-tor-welcome",
+ tourNameId: TORBROWSER_WELCOME_TOUR_NAME_KEY,
+ instantComplete: true,
+ getPage(win) {
+ let div = win.document.createElement("div");
+
+ createOnboardingTourDescription(div,
+ "onboarding.tour-tor-welcome.title", "onboarding.tour-tor-welcome.description");
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_tor-welcome.png");
+ createOnboardingTourButton(div,
+ "onboarding-tour-tor-welcome-button", "onboarding.tour-tor-welcome.next-button");
+
+ return div;
+ },
+ },
+ "privacy": {
+ id: "onboarding-tour-tor-privacy",
+ tourNameId: "onboarding.tour-tor-privacy",
+ instantComplete: true,
+ getPage(win) {
+ let div = win.document.createElement("div");
+
+ createOnboardingTourDescription(div,
+ "onboarding.tour-tor-privacy.title", "onboarding.tour-tor-privacy.description");
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_tor-privacy.png");
+ createOnboardingTourButton(div,
+ "onboarding-tour-tor-privacy-button", "onboarding.tour-tor-privacy.button");
+
+ return div;
+ },
+ },
+ // In Tor Browser 9.0, we replaced the Tor Network panel with an updated one.
+ "tor-network-9.0": {
+ id: "onboarding-tour-tor-network-9-0",
+ tourNameId: "onboarding.tour-tor-network",
+ getPage(win) {
+ let div = win.document.createElement("div");
+
+ let desc = createOnboardingTourDescription(div,
+ "onboarding.tour-tor-network.title", "onboarding.tour-tor-network.description");
+ let additionalDesc = win.document.createElement("p");
+ additionalDesc.className = "onboarding-tour-description-para2";
+ additionalDesc.setAttribute("data-l10n-id",
+ "onboarding.tour-tor-network.description-para2");
+ desc.appendChild(additionalDesc);
+
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_tor-network.png");
+ let btnContainer = createOnboardingTourButton(div,
+ "onboarding-tour-tor-network-action-button", "onboarding.tour-tor-network.action-button");
+ btnContainer.className = "onboarding-tour-tor-action-button-container";
+
+ // The next button (right side) is a "Done" button if we are displaying
+ // the tour to users who updated their browser; otherwise, it is a
+ // button that takes the user to the next onboarding page.
+ let nextBtnID, nextBtnL10nID;
+ if (this._tourType === "update") {
+ // Using the onion services IDs here seems like a mistake, but it
+ // provides the functionality and translated string ("Done") we need.
+ nextBtnID = "onboarding-tour-tor-onion-services-next-button";
+ nextBtnL10nID = "onboarding.tour-tor-onion-services.next-button";
+ } else {
+ nextBtnID = "onboarding-tour-tor-network-button";
+ nextBtnL10nID = "onboarding.tour-tor-network.button";
+ }
+ createOnboardingTourButton(div, nextBtnID, nextBtnL10nID);
+ return div;
+ },
+ },
+ "circuit-display": {
+ id: "onboarding-tour-tor-circuit-display",
+ tourNameId: "onboarding.tour-tor-circuit-display",
+ getPage(win) {
+ let div = win.document.createElement("div");
+
+ createOnboardingTourDescription(div,
+ "onboarding.tour-tor-circuit-display.title", "onboarding.tour-tor-circuit-display.description");
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_tor-circuit-display.png");
+ let btnContainer = createOnboardingTourButton(div,
+ "onboarding-tour-tor-circuit-display-button", "onboarding.tour-tor-circuit-display.button");
+ btnContainer.className = "onboarding-tour-tor-action-button-container";
+ createOnboardingTourButton(div,
+ "onboarding-tour-tor-circuit-display-next-button", "onboarding.tour-tor-circuit-display.next-button");
+
+ return div;
+ },
+ },
+ "security": {
+ id: "onboarding-tour-tor-security",
+ tourNameId: "onboarding.tour-tor-security",
+ getPage(win) {
+ let div = win.document.createElement("div");
+
+ let desc = createOnboardingTourDescription(div,
+ "onboarding.tour-tor-security.title", "onboarding.tour-tor-security.description");
+ let additionalDesc = win.document.createElement("p");
+ additionalDesc.className = "onboarding-tour-description-suffix";
+ additionalDesc.setAttribute("data-l10n-id",
+ "onboarding.tour-tor-security.description-suffix");
+ desc.appendChild(additionalDesc);
+
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_tor-security.png");
+ let btnContainer = createOnboardingTourButton(div,
+ "onboarding-tour-tor-security-button", "onboarding.tour-tor-security-level.button");
+ btnContainer.className = "onboarding-tour-tor-action-button-container";
+ createOnboardingTourButton(div,
+ "onboarding-tour-tor-security-next-button", "onboarding.tour-tor-security-level.next-button");
+
+ return div;
+ },
+ },
+ "expect-differences": {
+ id: "onboarding-tour-tor-expect-differences",
+ tourNameId: "onboarding.tour-tor-expect-differences",
+ getPage(win) {
+ let div = win.document.createElement("div");
+
+ createOnboardingTourDescription(div,
+ "onboarding.tour-tor-expect-differences.title", "onboarding.tour-tor-expect-differences.description");
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_tor-expect-differences.png");
+ let btnContainer = createOnboardingTourButton(div,
+ "onboarding-tour-tor-expect-differences-button", "onboarding.tour-tor-expect-differences.button");
+ btnContainer.className = "onboarding-tour-tor-action-button-container";
+ createOnboardingTourButton(div,
+ "onboarding-tour-tor-expect-differences-next-button", "onboarding.tour-tor-expect-differences.next-button");
+
+ return div;
+ },
+ },
+ "onion-services": {
+ id: "onboarding-tour-tor-onion-services",
+ tourNameId: "onboarding.tour-tor-onion-services",
+ getPage(win) {
+ let div = win.document.createElement("div");
+
+ createOnboardingTourDescription(div,
+ "onboarding.tour-tor-onion-services.title", "onboarding.tour-tor-onion-services.description");
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_tor-onion-services.png");
+ let btnContainer = createOnboardingTourButton(div,
+ "onboarding-tour-tor-onion-services-button", "onboarding.tour-tor-onion-services.button");
+ btnContainer.className = "onboarding-tour-tor-action-button-container";
+ createOnboardingTourButton(div,
+ "onboarding-tour-tor-onion-services-next-button", "onboarding.tour-tor-onion-services.next-button");
+
+ return div;
+ },
+ },
+ "learn-more": {
+ id: "onboarding-tour-tor-learn-more",
+ // Re-use "Learn More" string from Firefox langpacks
+ tourNameId: "getUserMedia.shareScreen.learnMoreLabel",
+ highlightId: "onboarding.tour-tor-update.prefix-new",
+ getPage(win) {
+ return win.document.createElement("div");
+ },
+ },
+ // Tour items for users who have updated their Tor Browser:
+ "toolbar-update-9.0": {
+ id: "onboarding-tour-tor-toolbar-update-9-0",
+ tourNameId: "onboarding.tour-tor-toolbar",
+ getPage(win) {
+ let div = win.document.createElement("div");
+
+ let desc = createOnboardingTourDescription(div,
+ "onboarding.tour-tor-toolbar-update-9.0.title", "onboarding.tour-tor-toolbar-update-9.0.description");
+ let additionalDesc = win.document.createElement("p");
+ additionalDesc.className = "onboarding-tour-description-para2";
+ additionalDesc.setAttribute("data-l10n-id",
+ "onboarding.tour-tor-toolbar-update-9.0.description-para2");
+ desc.appendChild(additionalDesc);
+
+ createOnboardingTourContent(div, "resource://onboarding/img/figure_tor-toolbar-layout.png");
+ let btnContainer = createOnboardingTourButton(div,
+ "onboarding-tour-tor-toolbar-update-9-0-button", "onboarding.tour-tor-toolbar-update-9.0.button");
+ btnContainer.className = "onboarding-tour-tor-action-button-container";
+ createOnboardingTourButton(div,
+ "onboarding-tour-tor-toolbar-next-button", "onboarding.tour-tor-toolbar-update-9.0.next-button");
+
+ return div;
+ },
+ },
+};
+#if 0
+// Firefox tours. To reduce conflicts when rebasing against newer Firefox
+// code, we use the preprocessor to omit this code block.
/**
* Add any number of tours, key is the tourId, value should follow the format below
* "tourId": { // The short tour id which could be saved in pref
@@ -415,6 +606,7 @@ var onboardingTourset = {
},
},
};
+#endif
/**
* The script won't be initialized if we turned off onboarding by
@@ -473,7 +665,10 @@ class Onboarding {
// We want to create and append elements after CSS is loaded so
// no flash of style changes and no additional reflow.
await this._loadCSS();
- this._bundle = Services.strings.createBundle(BUNDLE_URI);
+ this._bundle = new _TorOnboardingStringBundle();
+ if (!this._bundle.inited) {
+ return;
+ }
this._loadJS(UITOUR_JS_URI);
@@ -515,7 +710,11 @@ class Onboarding {
}
_resizeUI() {
- this._windowWidth = this._window.document.body.getBoundingClientRect().width;
+ // In Tor Browser we check against innerWidth instead of against the
+ // body's bounding rect because about:tor keeps its body hidden until
+ // the Tor status is known, and the bounding rect is zero while the
+ // body is hidden.
+ this._windowWidth = this._window.innerWidth;
if (this._windowWidth < ONBOARDING_MIN_WIDTH_PX) {
// Don't show the overlay UI before we get to a better, responsive design.
this.destroy();
@@ -523,11 +722,18 @@ class Onboarding {
}
this._initUI();
- if (this._isFirstSession && this._windowWidth >= SPEECH_BUBBLE_MIN_WIDTH_PX) {
+ // For Tor Browser, show the "Let's get started" speech bubble until each
+ // tour item has been completed.
+ let isTourComplete = (ICON_STATE_WATERMARK ==
+ Services.prefs.getStringPref("browser.onboarding.state",
+ ICON_STATE_DEFAULT));
+ if ((!isTourComplete || this._isFirstSession) &&
+ this._windowWidth >= SPEECH_BUBBLE_MIN_WIDTH_PX) {
this._overlayIcon.classList.add("onboarding-speech-bubble");
} else {
this._overlayIcon.classList.remove("onboarding-speech-bubble");
}
+ this.updateAttentionDot();
}
_initUI() {
@@ -542,7 +748,10 @@ class Onboarding {
this._overlayIcon = this._renderOverlayButton();
this._overlayIcon.addEventListener("click", this);
this._overlayIcon.addEventListener("keypress", this);
- body.insertBefore(this._overlayIcon, body.firstChild);
+ let buttonContainer = this._window.document.createElement("div");
+ buttonContainer.id = "onboarding-overlay-button-container";
+ buttonContainer.appendChild(this._overlayIcon);
+ body.insertBefore(buttonContainer, body.firstChild);
this._overlay = this._renderOverlay();
this._overlay.addEventListener("click", this);
@@ -556,7 +765,8 @@ class Onboarding {
this._onIconStateChange(Services.prefs.getStringPref("browser.onboarding.state", ICON_STATE_DEFAULT));
// Doing tour notification takes some effort. Let's do it on idle.
- this._window.requestIdleCallback(() => this.showNotification());
+// For now, onboarding notifications are disabled in Tor Browser.
+// this._window.requestIdleCallback(() => this.showNotification());
}
_getTourIDList() {
@@ -698,19 +908,30 @@ class Onboarding {
({ id, classList } = target.firstChild);
}
+ const kOnionURL = "https://3g2upl4pq6kufc4m.onion/"; // DuckDuckGo
+ const kLearnMore = "https://www.torproject.org/releases/tor-browser-10-0/";
+ let handledTourActionClick = false;
switch (id) {
case "onboarding-overlay-button-icon":
case "onboarding-overlay-button":
- this.telemetry({
- type: "onboarding-logo-click",
- bubble_state: this._bubbleState,
- logo_state: this._logoState,
- notification_state: this._notificationState,
- session_key: this._session_key,
- width: this._windowWidthRounded,
- });
- this.showOverlay();
- this.gotoPage(this._firstUncompleteTour.id);
+ // If this instance upgraded, then directly open the release notes
+ // when the bubble is clicked.
+ if (this._tourType === "update") {
+ this.sendMessageToChrome("tor-open-tab", {url: kLearnMore});
+ // Mark item as complete
+ this.setToursCompleted(["onboarding-tour-tor-learn-more"]);
+ } else {
+ this.telemetry({
+ type: "onboarding-logo-click",
+ bubble_state: this._bubbleState,
+ logo_state: this._logoState,
+ notification_state: this._notificationState,
+ session_key: this._session_key,
+ width: this._windowWidthRounded,
+ });
+ this.showOverlay();
+ this.gotoPage(this._firstUncompleteTour.id);
+ }
break;
case "onboarding-skip-tour-button":
this.hideNotification();
@@ -767,6 +988,36 @@ class Onboarding {
this.gotoPage(tourId);
this._removeTourFromNotificationQueue(tourId);
break;
+ case "onboarding-tour-tor-welcome-button":
+ case "onboarding-tour-tor-privacy-button":
+ case "onboarding-tour-tor-network-button":
+ case "onboarding-tour-tor-circuit-display-next-button":
+ case "onboarding-tour-tor-security-next-button":
+ case "onboarding-tour-tor-expect-differences-next-button":
+ case "onboarding-tour-tor-toolbar-next-button":
+ this.gotoNextTourItem();
+ handledTourActionClick = true;
+ break;
+ case "onboarding-tour-tor-circuit-display-button":
+ let kFrameScript = "resource://onboarding/onboarding-tor-circuit-display.js";
+ this.sendMessageToChrome("tor-open-tab",
+ {url: kOnionURL, frameScriptURL: kFrameScript});
+ break;
+ case "onboarding-tour-tor-expect-differences-button":
+ const kFAQURL = "https://support.torproject.org/#faq";
+ this.sendMessageToChrome("tor-open-tab", {url: kFAQURL});
+ break;
+ case "onboarding-tour-tor-onion-services-button":
+ this.sendMessageToChrome("tor-open-tab", {url: kOnionURL});
+ break;
+ // Open the Release Notes webpage and hide the overlay.
+ case "onboarding-tour-tor-onion-services-next-button":
+ case "onboarding-tour-tor-learn-more":
+ this.sendMessageToChrome("tor-open-tab", {url: kLearnMore});
+ this.hideOverlay();
+ // Mark item as complete
+ this.setToursCompleted(["onboarding-tour-tor-learn-more"]);
+ break;
}
if (classList.contains("onboarding-tour-item")) {
this.telemetry({
@@ -780,7 +1031,8 @@ class Onboarding {
// Keep focus (not visible) on current item for potential keyboard
// navigation.
target.focus();
- } else if (classList.contains("onboarding-tour-action-button")) {
+ } else if (!handledTourActionClick &&
+ classList.contains("onboarding-tour-action-button")) {
let activeTourId = this._activeTourId;
this.setToursCompleted([ activeTourId ]);
this.telemetry({
@@ -793,6 +1045,21 @@ class Onboarding {
}
}
+ gotoNextTourItem() {
+ let activeTourID = this._activeTourId;
+ if (activeTourID) {
+ let idx = this._tourItems.findIndex(item => (item.id === activeTourID));
+ if (idx >= 0) {
+ // If at the end of the list, close onboarding; otherwise, go to next.
+ if (++idx >= this._tourItems.length) {
+ this.hideOverlay();
+ } else {
+ this.gotoPage(this._tourItems[idx].id);
+ }
+ }
+ }
+ }
+
/**
* Wrap keyboard focus within the dialog.
* When moving forward, focus on the first element when the current focused
@@ -950,7 +1217,9 @@ class Onboarding {
this._overlayIcon.dispatchEvent(new this._window.CustomEvent("Agent:Destroy"));
this._clearPrefObserver();
+ let buttonContainer = this._overlayIcon.parentElement;
this._overlayIcon.remove();
+ buttonContainer.remove();
if (this._overlay) {
// send overlay-session telemetry
this.hideOverlay();
@@ -974,9 +1243,21 @@ class Onboarding {
this._overlayIcon.classList.add("onboarding-watermark");
break;
}
+ this.updateAttentionDot();
return true;
}
+ // Display an attention-grabbing dot on the speech bubble if the
+ // bubble is visible and we are showing the "update" tour.
+ updateAttentionDot() {
+ let buttonContainer = this._overlayIcon.parentElement;
+ if ((this._bubbleState === "bubble") && (this._tourType === "update")) {
+ buttonContainer.classList.add("onboarding-overlay-attention-dot");
+ } else {
+ buttonContainer.classList.remove("onboarding-overlay-attention-dot");
+ }
+ }
+
showOverlay() {
if (this._tourItems.length == 0) {
// Lazy loading until first toggle.
@@ -1237,6 +1518,7 @@ class Onboarding {
// After the notification mute on the 1st session,
// we don't want to show the speech bubble by default
this._overlayIcon.classList.remove("onboarding-speech-bubble");
+ this.updateAttentionDot();
let queue = this._getNotificationQueue();
let totalMaxTime = Services.prefs.getIntPref("browser.onboarding.notification.max-life-time-all-tours-ms");
@@ -1422,7 +1704,8 @@ class Onboarding {
let header = this._window.document.createElement("header");
header.id = "onboarding-header";
- header.textContent = this._bundle.GetStringFromName("onboarding.overlay-title2");
+// In Tor Browser, we do not want header text.
+// header.textContent = this._bundle.GetStringFromName("onboarding.overlay-title2");
this._dialog.appendChild(header);
let nav = this._window.document.createElement("nav");
@@ -1491,7 +1774,7 @@ class Onboarding {
watermarkImg.id = "onboarding-overlay-button-watermark-icon";
watermarkImg.setAttribute("role", "presentation");
watermarkImg.src = Services.prefs.getStringPref("browser.onboarding.watermark-icon-src",
- "resource://onboarding/img/watermark.svg");
+ "resource://onboarding/img/tor-watermark.png");
button.appendChild(watermarkImg);
return button;
}
@@ -1522,7 +1805,17 @@ class Onboarding {
let tourPanelId = `${tour.id}-page`;
tab.setAttribute("aria-controls", tourPanelId);
+ if (tour.highlightId) {
+ // Add [New] or [Updated] text after this navigation item to draw
+ // attention to it.
+ let highlight = this._window.document.createElement("span");
+ highlight.className = "onboarding-tour-description-highlight";
+ highlight.textContent = this._bundle.GetStringFromName(tour.highlightId);
+ tab.appendChild(highlight);
+ }
+
li.appendChild(tab);
+
itemsFrag.appendChild(li);
// Dynamically create tour pages
let div = tour.getPage.call(this, this._window, this._bundle);
@@ -1579,3 +1872,55 @@ class Onboarding {
doc.head.appendChild(script);
}
}
+
+// _TorOnboardingStringBundle implements the subset of the nsIStringBundle
+// that is used by the code in this file. It checks first for strings inside
+// Torbutton's browserOnboarding.properties file and secondarily in Firefox's
+// onboarding.properties file. Finally, it looks for the string within
+// browser.properties.
+class _TorOnboardingStringBundle {
+ constructor() {
+ this._mBrowserBundle = Services.strings.createBundle(BROWSER_BUNDLE_URI);
+ this._mFirefoxBundle = Services.strings.createBundle(BUNDLE_URI);
+ this._mTorButtonBundle = Services.strings.createBundle(TORBUTTON_BUNDLE_URI);
+
+ // If the Tor Browser onboarding strings which ship inside Torbutton are
+ // not available, fail initialization so that no tours are shown.
+ try {
+ let result = this._mTorButtonBundle.GetStringFromName(
+ TORBROWSER_WELCOME_TOUR_NAME_KEY);
+ this.inited = true;
+ } catch (e) {}
+ }
+
+ GetStringFromName(aName) {
+ let result;
+ try {
+ result = this._mTorButtonBundle.GetStringFromName(aName);
+ } catch (e) {
+ try {
+ result = this._mFirefoxBundle.GetStringFromName(aName);
+ } catch (e) {
+ result = this._mBrowserBundle.GetStringFromName(aName);
+ }
+ }
+ return result;
+ }
+
+ formatStringFromName(aName, aParams, aLength) {
+ let result;
+ try {
+ result = this._mTorButtonBundle.formatStringFromName(aName, aParams,
+ aLength);
+ } catch (e) {
+ try {
+ result = this._mFirefoxBundle.formatStringFromName(aName, aParams,
+ aLength);
+ } catch (e) {
+ result = this._mBrowserBundle.formatStringFromName(aName, aParams,
+ aLength);
+ }
+ }
+ return result;
+ }
+}
diff --git a/browser/extensions/onboarding/content/img/close.png b/browser/extensions/onboarding/content/img/close.png
new file mode 100644
index 000000000000..8a637de879ec
Binary files /dev/null and b/browser/extensions/onboarding/content/img/close.png differ
diff --git a/browser/extensions/onboarding/content/img/figure_addons.svg b/browser/extensions/onboarding/content/img/figure_addons.svg
deleted file mode 100644
index b5f056737f11..000000000000
--- a/browser/extensions/onboarding/content/img/figure_addons.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="295" height="199" viewBox="0 0 295 199" xmlns="http://www.w3.org/2000/svg"><title>addons</title><defs><linearGradient x1="-3335.765%" y1="-2236.632%" x2="5558.543%" y2="3780.103%" id="a"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-251.09%" y1="-799.657%" x2="413.095%" y2="1054.368%" id="b"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-573.525%" y1="-521.071%" x2="763.527%" y2="703.894%" id="c"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-2190.515%" y1="-1349.885%" x2="1528.924%" y2="974.764%" id="d"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1533.42%" y1="-541.311%" x2="2119.6%" y2="822.483%" id="e"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="1
00%"/></linearGradient><linearGradient x1="-16561.05%" y1="-16565.77%" x2="3895.86%" y2="3891.14%" id="f"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-204.8%" y1="-96.752%" x2="205.158%" y2="122.743%" id="g"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-112.715%" y1="-148.497%" x2="122.964%" y2="186.313%" id="h"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-817.408%" y1="-862.654%" x2="1335.951%" y2="1471.194%" id="i"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-923.374%" y1="-755.994%" x2="781.368%" y2="664.624%" id="j"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-57.385%" y1="-74.839%" x2="205.558%" y2="247.317%" i
d="k"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-136.437%" y1="-251.542%" x2="257.723%" y2="370.248%" id="l"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-3134.668%" y1="-1436.328%" x2="4644.893%" y2="2194.132%" id="m"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-3763.993%" y1="-1729.31%" x2="4015.564%" y2="1901.152%" id="n"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-967.977%" y1="-2316.493%" x2="1244.002%" y2="2869.881%" id="o"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-828.528%" y1="-1974.736%" x2="1398.399%" y2="3211.636%" id="p"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100
%"/></linearGradient><linearGradient x1="-341.455%" y1="-545.157%" x2="204.062%" y2="280.185%" id="q"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-6989.704%" y1="-10987.987%" x2="1723.404%" y2="2626.238%" id="r"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-346.468%" y1="-491.716%" x2="205.755%" y2="249.195%" id="s"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-163.142%" y1="-212.577%" x2="367.782%" y2="441.559%" id="t"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-431.069%" y1="-1508.892%" x2="196.676%" y2="489.527%" id="u"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-46.826%" y1="-91.711%" x2="115.212%" y2="164.256%
" id="v"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-469.407%" y1="-1536.217%" x2="369.344%" y2="1016.816%" id="w"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1395.389%" y1="-1859.067%" x2="1629.996%" y2="2107.556%" id="x"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-2132.529%" y1="-2452.139%" x2="1054.189%" y2="1199.521%" id="y"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1425.341%" y1="-2206.746%" x2="1446.3%" y2="2189.629%" id="z"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1606.851%" y1="-1906.042%" x2="1515.309%" y2="1780.906%" id="A"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offse
t="100%"/></linearGradient><linearGradient x1="-2952.119%" y1="-1785.48%" x2="1577.955%" y2="986.112%" id="B"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1774.73%" y1="-1132.379%" x2="2586.424%" y2="1691.85%" id="C"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-2922.831%" y1="-2221.905%" x2="1969.085%" y2="1525.629%" id="D"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-2790%" y1="-1744.265%" x2="1698.406%" y2="1091.887%" id="E"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-2160.459%" y1="-2153.729%" x2="1208.199%" y2="1206.393%" id="F"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-2197.557%" y1="-2601.613%" x2="936.46
2%" y2="1097.31%" id="G"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-2154.892%" y1="-3309.827%" x2="719.541%" y2="1068.777%" id="H"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-548.887%" y1="-964.209%" x2="654.188%" y2="1081.481%" id="I"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-318.202%" y1="-291.169%" x2="636.625%" y2="583.64%" id="J"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-455.827%" y1="-310.105%" x2="637.3%" y2="482.798%" id="K"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-5771.947%" y1="-7842.936%" x2="4994.847%" y2="6769.143%" id="L"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF"
offset="100%"/></linearGradient><linearGradient x1="-4086.052%" y1="-5400.884%" x2="4096.712%" y2="5365.911%" id="M"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1126.574%" y1="-1260.202%" x2="1146.414%" y2="1265.342%" id="N"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1150.53%" y1="-1333.596%" x2="1122.46%" y2="1289.085%" id="O"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-3947.183%" y1="-5480.943%" x2="3106.924%" y2="4260.443%" id="P"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-3712.853%" y1="-2757.137%" x2="2679.931%" y2="2000.284%" id="Q"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1265.89%" y1="-1395.587%"
x2="1007.1%" y2="1099.159%" id="R"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-2822.135%" y1="-2883.724%" x2="1935.286%" y2="1986.969%" id="S"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1548.018%" y1="-2218.877%" x2="1374.022%" y2="1940.124%" id="T"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1369.976%" y1="-1928.433%" x2="1334.398%" y2="1827.217%" id="U"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-2000.906%" y1="-2495.611%" x2="1322.352%" y2="1633.822%" id="V"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1470.604%" y1="-2072.202%" x2="1136.662%" y2="1558.26%" id="W"><stop stop-color="#00C8D7" offset="0%"/><st
op stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1194.36%" y1="-1336.72%" x2="901.341%" y2="996.106%" id="X"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-3044.038%" y1="-2935.975%" x2="2075.73%" y2="2014.652%" id="Y"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1070.957%" y1="-1207.499%" x2="1021.673%" y2="1139.289%" id="Z"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-668.331%" y1="-735.951%" x2="792.876%" y2="862.245%" id="aa"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-757.712%" y1="-833.503%" x2="703.496%" y2="764.693%" id="ab"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-27.011%" y1
="-65.863%" x2="141.75%" y2="151.803%" id="ac"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1321.337%" y1="-997.486%" x2="1168.46%" y2="905.137%" id="ad"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-1178.308%" y1="-888.422%" x2="1311.49%" y2="1014.201%" id="ae"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-546.976%" y1="-767.016%" x2="189.173%" y2="248.435%" id="af"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-93.493%" y1="-91.832%" x2="384.41%" y2="447.193%" id="ag"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-258.202%" y1="-134.734%" x2="952.458%" y2="591.721%" id="ah"><stop stop-color="#00C8D7" offset="0%"/><stop
stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-764.248%" y1="-327.902%" x2="2650.413%" y2="1243.88%" id="ai"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-341.63%" y1="-267.69%" x2="726.152%" y2="596.706%" id="aj"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-517.979%" y1="-536.225%" x2="166.434%" y2="167.425%" id="ak"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-792.149%" y1="-462.294%" x2="98.549%" y2="87.052%" id="al"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-964.554%" y1="-879.35%" x2="1659.876%" y2="1524.226%" id="am"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-797.538%" y1="-665.
814%" x2="581.403%" y2="509.871%" id="an"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1165.123%" y1="-1561.869%" x2="356.021%" y2="461.04%" id="ao"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-505.775%" y1="-623.411%" x2="1092.421%" y2="1325.92%" id="ap"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-365.189%" y1="-194.484%" x2="727.939%" y2="447.534%" id="aq"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-2359.875%" y1="-1563.43%" x2="1606.616%" y2="1099.129%" id="ar"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><path d="M-31-68h352v303H-31z"/><g fill-rule="nonzero"><g fill="#D7D7DB"><path d="M23
8.3 15.6c-5.5 0-8.3-1.5-11-3-2.6-1.4-5-2.7-9.9-2.7s-7.4 1.3-9.9 2.7c-2.7 1.5-5.5 3-11 3s-8.3-1.5-11-3c-2.6-1.4-5-2.7-9.9-2.7s-7.4 1.3-9.9 2.7c-2.7 1.5-5.5 3-11 3-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1 4.9 0 7.4-1.3 9.9-2.7 2.7-1.5 5.5-3 11-3s8.3 1.5 11 3c2.6 1.4 5 2.7 9.9 2.7s7.4-1.3 9.9-2.7c2.7-1.5 5.5-3 11-3s8.3 1.5 11 3c2.6 1.4 5 2.7 9.9 2.7s7.4-1.3 9.9-2.7c2.7-1.5 5.5-3 11-3 .6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1-4.9 0-7.4 1.3-9.9 2.7-2.7 1.5-5.5 3-11 3zM196.2 7.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6 1.2 0 2.2-.1 3.2-.3.3-.1.6.2.6.5.1.3-.2.6-.5.6-1 .3-2.1.4-3.3.4zm7.6-1.6c-.2 0-.4-.1-.5-.3-.1-.3 0-.6.3-.7.3-.2.7-.3 1-.5.3-.1.6 0 .7.2.1.3 0 .6-.2.7-.3.2-.7.3-1 .5-.2.1-.2.1-.3.1zm-16.3-.1c-.1 0-.2 0-.2-.1-.8-.4-1.5-.7-2.2-1.1-2.6-1.4-5.1-2.8-10.2-2.8-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6 5.4 0 8.1 1.5 10.7 2.9.7.4 1.4.7 2.1 1.1.3.1.4.5.3.7-.1.4-.3.5-.5.5zm26.6-3.8c-.3 0-.5-.2-.6-.5 0-.3.2-.6.5-.6.8-.1 1.7-.1 2.7-.1.3 0 .6.2.6.6 0 .3-.2.6-.6.6-.9-.2-1.7-.1-2.6 0 .1 0 0 0 0 0zM238.5 23.1c-.3
0-.6-.2-.6-.6 0-.3.2-.6.6-.6 1.2 0 2.2-.1 3.2-.3.3-.1.6.2.6.5.1.3-.2.6-.5.6-1 .3-2.1.4-3.3.4zm7.6-1.5c-.2 0-.4-.1-.5-.3-.1-.3 0-.6.3-.7.3-.2.7-.3 1-.5.3-.1.6 0 .7.2.1.3 0 .6-.2.7-.3.2-.7.3-1 .5-.2 0-.3.1-.3.1zm-16.3-.2c-.1 0-.2 0-.2-.1-.8-.4-1.5-.7-2.2-1.1-2.6-1.4-5.1-2.8-10.2-2.8-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6 5.4 0 8.1 1.5 10.7 2.9.7.4 1.4.7 2.1 1.1.3.1.4.5.3.7-.1.4-.3.5-.5.5zm26.6-3.8c-.3 0-.5-.2-.6-.5 0-.3.2-.6.5-.6.8-.1 1.7-.1 2.6-.1.3 0 .6.2.6.6 0 .3-.2.6-.6.6-.8-.1-1.6-.1-2.5 0z"/></g><path d="M6.2 133.5c-2.8 0-5.1-2.2-5.1-4.8V10.2c0-3 2.4-5.4 5.4-5.4h127.2c3 0 5.4 2.4 5.4 5.4v118.5c0 2.6-2.3 4.8-5 4.8H6.2z" fill="#FFF"/><path d="M133.7 6c2.3 0 4.2 1.9 4.2 4.2v118.5c0 2-1.8 3.7-3.9 3.7H6.2c-2.2 0-3.9-1.7-3.9-3.7V10.2C2.3 7.9 4.2 6 6.5 6h127.2zm0-2.2H6.6C3 3.8.1 6.7.1 10.3v118.4c0 3.3 2.8 5.9 6.2 5.9H134c3.4 0 6.2-2.7 6.2-5.9V10.2c0-3.5-2.9-6.4-6.5-6.4z" fill="#D7D7DB"/><path d="M132.6 27.1v98.2c0 1-.1 1.2-.1 1.2s-.2.1-1.2.1H9.1c-1 0-1.2-.1-1.2-.1s-.1-.2-.1-1.2V27.1h124.8zm1.
1-1.1H6.6v99.3c0 2 .4 2.5 2.5 2.5h122.2c2 0 2.5-.4 2.5-2.5V26h-.1z" fill="#D7D7DB"/><g fill="#D7D7DB"><circle cx="3.4" cy="2.9" r="2.9" transform="translate(10 13)"/><circle cx="3.7" cy="2.9" r="2.9" transform="translate(19 13)"/><path d="M102.1 19.2H38.2c-1.7 0-3.1-1.4-3.1-3.1v-.3c0-1.7 1.4-3.1 3.1-3.1h63.9c1.7 0 3.1 1.4 3.1 3.1v.3c0 1.7-1.4 3.1-3.1 3.1z"/><g><circle cx="3.6" cy="2.9" r="2.9" transform="translate(114 13)"/><circle cx="2.9" cy="2.9" r="2.9" transform="translate(124 13)"/></g></g><ellipse fill="#EDEDF0" cx="177.8" cy="191.1" rx="78.4" ry="7.4"/><g fill="#D7D7DB"><path d="M241.5 164.9c-5.5 0-8.3-1.5-11-3-2.6-1.4-5-2.7-9.9-2.7s-7.4 1.3-9.9 2.7c-2.7 1.5-5.5 3-11 3s-8.3-1.5-11-3c-2.6-1.4-5-2.7-9.9-2.7s-7.4 1.3-9.9 2.7c-2.7 1.5-5.5 3-11 3s-8.3-1.5-11-3c-2.6-1.4-5-2.7-9.9-2.7s-7.4 1.3-9.9 2.7c-2.7 1.5-5.5 3-11 3s-8.3-1.5-11-3c-2.6-1.4-5-2.7-9.9-2.7-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1 5.5 0 8.3 1.5 11 3 2.6 1.4 5 2.7 9.9 2.7s7.4-1.3 9.9-2.7c2.7-1.5 5.5-3 11-3s8.3 1.5 11
3c2.6 1.4 5 2.7 9.9 2.7s7.4-1.3 9.9-2.7c2.7-1.5 5.5-3 11-3s8.3 1.5 11 3c2.6 1.4 5 2.7 9.9 2.7s7.4-1.3 9.9-2.7c2.7-1.5 5.5-3 11-3s8.3 1.5 11 3c2.6 1.4 5 2.7 9.9 2.7.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1zM200.5 155.8c-.8 0-1.5 0-2.3-.1-.3 0-.5-.3-.5-.6s.3-.5.6-.5c.7.1 1.4.1 2.2.1h1.1c.3 0 .6.2.6.5s-.2.6-.5.6h-1.2zm-41.4 0c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6 1.2 0 2.2-.1 3.2-.3.3-.1.6.2.6.5.1.3-.2.6-.5.6-1 .3-2.1.4-3.3.4zm46.9-.7c-.2 0-.5-.2-.5-.4-.1-.3.1-.6.4-.7.4-.1.7-.2 1-.3.3-.1.6.1.7.3.1.3-.1.6-.3.7-.4.1-.7.2-1.1.3-.1.1-.2.1-.2.1zm-39.3-.9c-.2 0-.4-.1-.5-.3-.1-.3 0-.6.3-.7.3-.2.7-.3 1-.5.3-.1.6 0 .7.2.1.3 0 .6-.2.7-.3.2-.7.3-1 .5-.2.1-.3.1-.3.1zm-16.3-.1c-.1 0-.2 0-.2-.1-.8-.4-1.5-.7-2.2-1.1-2.6-1.4-5.1-2.8-10.2-2.8-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6 5.4 0 8.1 1.5 10.7 2.9.7.4 1.4.7 2.1 1.1.3.1.4.5.3.7-.1.3-.3.5-.5.5zm39.5-1.2c-.1 0-.2 0-.3-.1-2.4-1.3-4.9-2.7-10-2.7-.9 0-1.7 0-2.5.1-.3 0-.6-.2-.6-.5s.2-.6.5-.6c.8-.1 1.7-.1 2.7-.1 5.4 0 8.1 1.5 10.5 2.8.3.1.4.5.2.8-.1.1-.3.3-.5.3zm26.3-2
.2c-.2 0-.5-.2-.5-.4-.1-.3.1-.6.4-.7 1.6-.4 3.3-.6 5.3-.6.3 0 .6.2.6.6 0 .3-.2.6-.6.6-1.9 0-3.5.2-5 .6-.1-.1-.2-.1-.2-.1z"/></g><g fill="#D7D7DB"><path d="M76.9 101c-.8 0-2.2-.1-3.6-.7-1.8-.8-2.7-2.2-2.7-4.1 0-1.6.9-2.6 1.8-3.5 1-1 1.9-2 1.9-3.8 0-1.5-2.1-3.7-5.8-3.7-3.8 0-5.5 2.2-5.5 3.7 0 1.8.9 2.8 1.9 3.8.9.9 1.9 1.9 1.9 3.5 0 3.5-3.2 4.8-6.2 4.8H47.8c-2.4 0-4.3-2-4.3-4.4V84.9c0-.1-.2-3 1.5-4.8.8-.9 1.9-1.3 3.3-1.3 1.6 0 2.5 1 3.4 1.9.9 1 1.8 2 3.6 2 1.6 0 3.3-1.9 3.3-5.4 0-3.6-1.7-5.2-3.3-5.2-1.8 0-2.7 1-3.6 2-.9 1-1.7 2-3.4 2-1.4 0-2.5-.4-3.3-1.3-1.7-1.8-1.5-4.9-1.5-5v-7.4c0-.9.3-1.8.8-2.6.8-1.1 2.1-1.8 3.5-1.8h9.3s2.7-.5 2.7-2.3c0-.7-.4-1.2-1.1-1.9-1-1-2.2-2.2-2.2-4.9 0-2.3 1.1-6.2 8.2-6.2 7.6 0 8.5 4.3 8.5 6.2 0 2.7-1.3 4-2.4 5-.8.7-1.2 1.2-1.2 1.9 0 1.8 2.8 2.3 2.8 2.3h9.9c2.4 0 4.3 2 4.3 4.4v5.6s.4 3 2.1 3c.7 0 1.1-.4 1.7-1.1.8-1 2-2.4 4.7-2.4 2.4 0 6.5 1 6.5 8.1 0 7.8-4.9 8.4-6.5 8.4-2.8 0-3.9-1.4-4.7-2.5-.6-.8-1-1.2-1.7-1.2-1.8 0-2.1 3-2.2 3v13.5c0 2.4-1.9 4.4-4.3 4.4h-5c
0-.3-.1-.3-.3-.3z"/></g></g><path d="M258.9 143.4c-.2.6-.7 1.1-1.2 1.5 0 1-.2 1.9-.6 2.8.9-.3 1.8-.8 2.6-1.6.7-.8 1.1-1.6 1.5-2.3.8-2 .4-4.2-1.1-5.5-.4-.4-1-.6-1.5-.8-.7-.2-1.5-.2-2.3 0 2.2 1.4 3.6 3.4 2.6 5.9zM129.7 89.8l-.2-.1c-.2 0-.3-.1-.5-.1h-.1-.1-.1H128.1c-.1 0-.1 0-.1.1 0 0-.1 0-.2.1-.1 0-.2.1-.3.2-.3.2-.7.6-1.1 1.1l-.7.7c.1.1.2.3.1.5-.2 1.1-.5 1.9-.8 2.7.2.6.4 1.1.6 1.6.4.8.9 1.6 1.5 2.4.6.8 1.3 1.5 2.2 2.2.5.4.9.7 1.3.9h.1c.4.3.9.5 1.5.7 1 .4 2.1.7 3.2.8.3 0 .7.1 1.1.1h2.1c.6-.1 1.1-.3 1.5-.4.6-.2 1-.4 1.3-.6.3-.2.5-.3.8-.5.5-3.3.9-7 1.1-11.2-1.3-.6-2.6-1.3-3.7-2.1-1 1-2 1.6-2.9 1.6-.3 0-.5 0-.8-.1l-3-1.2c-1.2.6-2.3.9-3.2.6z"/><path d="M141.1 57.4c0 .7 0 1.4.1 2.1-.3.3-.7.6-1 .9.3-.3.6-.6 1-.9-.1-.7-.1-1.4-.1-2.1zM180.3 24.8c-2-.4-4-.6-6-.6-.7 0-1.4 0-2.1.1.7 0 1.4-.1 2.1-.1 2 .1 4 .2 6 .6zM122.9 136.4c.6-.6 1.2-1.3 1.8-2-.6.6-1.2 1.3-1.8 2-1 1-2 2-3 2.9 1-.9 2-1.9 3-2.9zM134.2 123.6c.3-.4.7-.7 1.1-1.1l-1.1 1.1c-1.3 1.4-2.6 2.8-3.9 4.3-.6.7-1.2 1.5-1.9 2.2.6-.7 1.2-1.5 1.9
-2.2 1.2-1.4 2.5-2.9 3.9-4.3zM129.1 119.1l1.8.9c.6.3 1.3.5 1.9.7-.7-.2-1.3-.5-1.9-.7l-1.8-.9zM241.7 82.7v-.3M244.7 142.3h-.4.4zM145.9 40.2c.6-.9 1.2-1.8 1.8-2.6-.7.8-1.3 1.7-1.8 2.6zM211 186.6h.2-.5.3zM137.4 186.6h.3-.5.2zM177.3 142.7c-.3-.8-.6-1.5-.9-2.2.3.7.6 1.4.9 2.2zM109.4 153.9c1 .2 2.1.3 3.2.3h1.4-1.4c-1.1 0-2.2-.1-3.2-.3zM144.3 43c.5-1 1-1.9 1.5-2.8-.5.9-1 1.9-1.5 2.8z" fill="#FFF" fill-rule="nonzero"/><path d="M142 102c-.3.2-.5.3-.8.5-.3.2-.8.4-1.3.6-.4.1-.9.3-1.5.4h-1-1.1c-.4 0-.8 0-1.1-.1-1.1-.1-2.2-.4-3.2-.8-.6-.2-1-.5-1.5-.7h-.1c-.4-.2-.8-.5-1.3-.9-.8-.7-1.6-1.5-2.2-2.2-.6-.8-1.1-1.6-1.5-2.4-.2-.5-.5-1-.6-1.6-.5.9-1 1.6-1.8 2.1h-.1c.1.2.1.3.2.5.5 1 1 1.9 1.7 2.8.7.9 1.6 1.8 2.6 2.6.6.5 1.1.8 1.6 1.1.5.3 1.1.6 1.8.9 1.2.5 2.5.9 3.8 1 .4 0 .8.1 1.3.1h2.5c.7-.2 1.3-.3 1.8-.5.7-.3 1.2-.5 1.6-.7.6-.3 1.2-.8 1.8-1.2.7-4 1.2-8.6 1.4-13.9-1.6-.6-3.1-1.3-4.4-2.3-.4.6-.8 1.2-1.3 1.6 1.1.8 2.4 1.6 3.7 2.1-.1 4-.4 7.7-1 11z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M140.8 174.9
c.5-.5 1-1 1.4-1.5-.4.5-.9 1-1.4 1.5zM198.7 183.3c1.1.6 2.1 1.1 3.1 1.5.5.2 1 .4 1.5.5-.5-.2-1-.3-1.5-.5-1-.4-2-.9-3.1-1.5zM203.8 136.1c.6.1 1.2.2 1.9.4.3.1.6.2.9.2-.3-.1-.6-.2-.9-.2-.7-.2-1.3-.3-1.9-.4zM182.4 161.8c.2.7.5 1.4.7 2.1.5 1.4 1.1 2.8 1.8 4.1-.7-1.3-1.2-2.7-1.8-4.1-.2-.7-.4-1.4-.7-2.1zM180.3 153v.1-.1zM255 146.2c-.1.6-.4 1.1-.7 1.6.1 0 .1.1.2.1.8.2 1.7.2 2.6-.1.4-.9.6-1.8.6-2.8-.7.5-1.6.9-2.7 1.2z" fill="#FFF" fill-rule="nonzero"/><path d="M249.9 67.3c-.6.7-1.1 1.3-1.6 1.9-.5.7-1.1 1.4-1.5 2.2-.5.8-.9 1.6-1.3 2.3-.3.7-.7 1.5-1 2.4-.5 1.6-.7 3.4-.7 5.4V83.2l.1 1.2v.4c0 .4.1.7.1 1 .1 2 .1 4.1 0 6.1-.3 4.7-1.3 9.1-2.9 13.1-1 2.4-2.1 4.6-3.5 6.6-1.2 1.8-2.7 3.4-4.4 4.9-.3.4-.8.8-1.2 1.2-.3.2-.5.4-.8.5-1.8 1.3-3.7 2.5-5.8 3.4-1 .4-1.9.7-2.8 1 2.1 1.6 4.8 4.3 7.8 8.7 4.8 7.1 10.4 8.7 14.7 9 .4-.9.8-1.7 1.2-2.2-4.1-.1-9.3-1.3-13.8-8-1.9-2.8-3.7-5-5.4-6.6 2.5-1.1 4.8-2.6 6.9-4.3 2.2-1.8 4.2-3.9 5.8-6.2 1.5-2.1 2.8-4.5 3.8-7 1.7-4.2 2.7-8.8 3.1-13.8.1-2.1.1-4.2 0-6.3 0-.4 0-.7-.1
-1.1v-.4l-.1-1.1V82.4v-.5-.2c0-1.7.2-3.3.6-4.7.2-.6.5-1.3.9-2.2.3-.7.7-1.4 1.1-2 .4-.7.9-1.3 1.4-2 .4-.5.8-1 1.3-1.6-.8-.6-1.5-1.2-1.9-1.9zM138.8 58.5v-1.1c0-19.5 15.9-35.4 35.4-35.4s35.4 15.9 35.4 35.4v1.1c3.8 3.5 5.9 8.3 5.9 13.5 0 7.9-4.9 14.7-12.2 17.3 0 .8.1 1.5.1 2.3 0 0 .1.1.1.2.2.3.3.6.5.9l.3.6v.1c.1.3.3.5.4.8v.1c.1.2.2.3.2.5 0 .1.1.1.1.2l.1.2v.1l.1.2.1.2.3.6c.1.1.1.2.2.4.1.1.2.3.2.4.4.6.7 1.1 1 1.5.4.5.9 1 1.3 1.4.9.8 2 1.4 3.2 1.7h.1c.5.2 1.1.2 1.8.2h.2c.4 0 .8-.1 1.3-.1h.1c1.2-.2 2.2-.7 3.1-1.3.7-.5 1.2-1 1.6-1.5.5-.6 1-1.3 1.4-2.1 1-1.9 1.7-4.1 2-6.4.2-1.5.4-2.7.4-3.8v-.1-.5-1-2.3c0-.4.1-.9.1-1.3.4-4 1.7-8 3.5-11.5 1.6-3 3.6-5.7 6.1-8.2 1.8-1.8 3.8-3.3 6.3-4.9 1.9-1.3 3.6-2.1 5.1-2.9l.2-.1-.3-1-3.2 1.1c-.3.1-.7.2-1.1.2h-.2l-1.5.9c-2.6 1.6-4.7 3.3-6.6 5.2-2.7 2.6-4.9 5.6-6.5 8.7-2 3.7-3.3 8-3.7 12.3 0 .4-.1.9-.1 1.3v.4l-.1.7v2.9c-.1 1-.2 2.2-.4 3.6-.3 2.1-1 4.1-1.8 5.7-.3.6-.7 1.2-1.1 1.7-.3.4-.7.7-1.2 1.1-.7.5-1.4.8-2.2 1-.4.1-.8.1-1 .1h-.1c-.3 0-.9-.1-1.2-.1h-.1c-.8-.2-
1.6-.6-2.3-1.2-.4-.3-.7-.7-1-1.1-.2-.3-.5-.7-.8-1.2-.1-.1-.1-.3-.2-.4 0-.1-.1-.1-.1-.2-.1-.2-.2-.5-.3-.7l-.1-.1-.1-.2s0-.1-.1-.1l-.1-.2v-.1c-.1-.2-.2-.3-.3-.5v-.1c-.1-.2-.3-.5-.4-.7 0-.1-.1-.1-.1-.2-.1-.2-.2-.4-.3-.5-.1-.2-.2-.4-.4-.7v-.1c7.3-3.3 12.1-10.5 12.1-18.8 0-5.4-2.1-10.6-5.9-14.4V58c0-20.8-16.9-37.6-37.6-37.6-20.7 0-37.6 16.9-37.6 37.6v.2c-3.2 3.2-5.1 7.3-5.7 11.8l1.9.8c.5-5.1 2.5-9.2 5.8-12.3z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M238.7 153.9h-1.6.4c.5.1.9.1 1.2 0zM223.8 148.2c-.4-.3-.9-.7-1.3-1-.7-.5-1.3-1.1-2-1.6.6.5 1.3 1.1 2 1.6.4.3.9.6 1.3 1z" fill="#FFF" fill-rule="nonzero"/><path d="M251.4 150.6c-.1.1-.2.2-.4.3-.9.7-1.9 1.4-3.2 2.2-1.3.8-3 1.7-5.2 2.3-1.1.3-2.3.6-3.7.7-.4 0-.9.1-1.4.1-.9 0-1.9-.1-2.8-.2-3.2-.5-6-1.9-7.8-3-2.2-1.3-4.1-2.8-5.8-4.1-.8-.6-1.5-1.3-2.3-1.9-.7-.6-1.4-1.1-2.1-1.7-.2-.1-.5-.3-.7-.5-.4-.3-.7-.6-1-.9-1-.8-2-1.5-2.9-2.1-.6-.4-1.2-.7-1.9-1.2-.7-.4-1.3-.7-1.9-.9-1.1-.5-2.1-.9-3.3-1.2-.9-.2-1.9-.4-2.8-.5v7c.1 1.4.1 2.8.1 4.2v1.5c.4 16.7
4.3 19.4 9.8 23.1 6.3 4.2 8.2 5.5 7.7 9-.1 3.1-2.7 5.7-5.8 5.7h-.1c-.5.1-1.5.2-3 .2-.5 0-1.1 0-1.6-.1-1.8-.1-3.6-.4-5.3-.9-1.1-.3-2.2-.6-3.2-1.1-1.3-.5-2.4-1-3.4-1.6-1.2-.7-2.3-1.4-3.4-2.2-1.1-.9-2.2-1.8-3.3-2.8-1-1-2-2.1-3-3.4-1-1.2-1.9-2.5-2.7-3.8-1.6-2.6-3-5.5-4.1-8.4-.5-1.4-1-2.9-1.4-4.4-.2-.6-.3-1.2-.5-1.8v-.2l-.1-.4c-.1-.6-.3-1.2-.4-1.9l-.4-2v-.2V153.2l-.1-.4-.2-.8c-.3-1-.5-2.1-.8-3.2-.5-2-1.1-3.8-1.7-5.2-.4-.9-.6-1.5-.9-2.1-.1-.1-.1-.2-.2-.3 0 .1-.1.2-.1.3-.3.6-.5 1.2-.9 2.1-.6 1.5-1.2 3.2-1.7 5.3-.3 1-.6 2.1-.8 3.2l-.2.8-.1.4v.5l-.4 2c-.1.7-.3 1.3-.4 1.9l-.1.4-.1.5c-.1.6-.3 1.2-.5 1.7-.4 1.5-.9 3-1.4 4.4-1.1 3-2.5 5.8-4.1 8.4-.8 1.3-1.7 2.6-2.7 3.8-1.1 1.3-2 2.4-3 3.4s-2.2 2-3.3 2.8c-1.1.8-2.2 1.5-3.4 2.2-1 .6-2.1 1.1-3.4 1.6-1 .4-2.1.8-3.2 1.1-1.7.5-3.5.8-5.3.9h-1.6c-1.5 0-2.5-.1-3-.2h-.1c-3.2 0-5.8-2.7-5.8-5.9 0-3 2.3-5.6 5.3-5.9l.2-.1c.4-.2 1-.4 1.7-.8.8-.4 1.6-1 2.4-1.6.4-.4.9-.7 1.3-1.1.4-.3.8-.8 1.3-1.3.4-.5.8-1 1.2-1.6.4-.6.7-1.2 1.1-1.8.3-.6.6-1.3.9-2.1.3-.7.5-1.5.8-
2.3.2-.7.4-1.6.6-2.6.2-.8.3-1.7.4-2.7.1-.9.2-1.9.3-3 0-.4 0-.8.1-1.2v-.3V151.3v-.1-1.9c0-1.5 0-2.9.1-4.3l.3-3.9c-.9.5-1.8 1.2-3 2-.8.5-1.6 1.1-2.4 1.7-2.4 1.6-5 3.5-7.9 5.2-2.2 1.4-4.3 2.4-6.2 3.3-2.4 1.1-4.7 1.9-7 2.5-1.1.3-2.3.5-3.7.6-1 .1-1.9.1-2.8.1h-.9c-1.8-.1-3.5-.3-5.3-.8.4.8.7 1.6.9 2.4 1.5.3 3 .5 4.6.6h1c.9 0 1.9 0 3-.2h.1c1.5-.2 2.8-.4 4-.7 2.4-.6 4.9-1.4 7.4-2.6 2-.9 4.1-2 6.4-3.4 2.9-1.8 5.6-3.6 8-5.3.5-.4 1-.7 1.5-1.1-.1 1.3-.1 2.5-.1 3.9v5.2c0 .4 0 .8-.1 1.2v.1c-.1 1-.2 2-.3 2.8-.1 1-.3 1.8-.4 2.5-.2.9-.4 1.7-.6 2.4-.2.8-.5 1.5-.7 2.2-.3.7-.6 1.3-.9 1.9l-.9 1.5c-.4.5-.7 1-1 1.4-.4.5-.8.9-1.1 1.2-.4.3-.8.7-1.2 1-.8.6-1.6 1.1-2.1 1.4-.6.3-1.1.6-1.5.7-3.9.6-6.9 4-6.9 8 0 4.4 3.5 8 7.9 8.1.5.1 1.7.2 3.3.2.6 0 1.1 0 1.7-.1 2-.1 3.9-.4 5.7-.9 1.2-.3 2.3-.7 3.4-1.1 1.3-.5 2.5-1.1 3.6-1.7 1.3-.7 2.5-1.5 3.6-2.3 1.2-.9 2.4-1.9 3.5-3 1.1-1 2.1-2.2 3.2-3.6 1-1.3 2-2.6 2.8-4 1.7-2.8 3.2-5.7 4.3-8.8.5-1.5 1-3 1.5-4.6.2-.6.3-1.2.5-1.8l.1-.4v-.1l.1-.4c.1-.6.3-1.3.4-2l.4-2v-.2-.2l.1-.
5.2-.8c.2-1 .5-2.1.8-3.1l.6-2.1c.2.7.4 1.3.6 2.1.3 1 .5 2.1.8 3.1l.2.8.1.4v.4l.4 2c.1.7.3 1.3.4 2l.1.4v.1l.1.4c.1.6.3 1.2.5 1.9.4 1.6.9 3.1 1.5 4.6 1.1 3.1 2.6 6 4.3 8.8.9 1.4 1.8 2.8 2.8 4 1.1 1.4 2.2 2.6 3.2 3.6 1.1 1.1 2.3 2.1 3.5 3 1.2.9 2.4 1.6 3.7 2.4 1.1.6 2.3 1.2 3.6 1.7 1.1.4 2.3.8 3.4 1.1 1.8.5 3.8.8 5.7.9.6 0 1.2.1 1.7.1 1.6 0 2.7-.1 3.3-.2 4.2-.1 7.7-3.5 7.9-7.7.6-4.8-2.3-6.8-8.7-11.1-5.1-3.4-8.5-5.7-8.9-21.2v-1.5c0-1.4 0-2.9-.1-4.3v-3.9-.4c1.1.3 2 .6 2.9 1h.1c.5.2 1 .5 1.6.8.7.4 1.3.7 1.8 1.1 1.2.8 2.5 1.7 4 3 .8.6 1.6 1.3 2.4 2 .7.6 1.5 1.3 2.3 1.9 1.8 1.4 3.7 2.9 6.1 4.3 2 1.2 5 2.7 8.6 3.3 1.1.2 2.1.3 3.2.3.5 0 1.1 0 1.6-.1 1.5-.1 2.8-.4 4.1-.8 2.4-.7 4.3-1.7 5.7-2.5 1.4-.9 2.5-1.7 3.4-2.4l.1-.1c.5-.4.9-.7 1.2-1-.1 0-.3 0-.4-.1-.2-.2-1-.5-1.6-1z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M258.3 51.2c-.2-.3-.5-.5-.8-.7l.3.9c.1-.1.3-.1.5-.2z" fill="#FFF" fill-rule="nonzero"/><path d="M100.3 137.6c.1-.1.1-.1.2-.1.3-.1.6.1.7.4 0 .1.1.3.1.4.7.2 1.4.4 2.3.7 2.3.8 5.5 1.
8 8.4 1.8 1 0 1.9-.1 2.6-.4 1-.6 2.1-1.4 3.2-2.3 1.1-.9 2.2-2 3.5-3.4 1.8-1.9 3.5-3.9 5.4-6.1.6-.8 1.3-1.5 1.9-2.3 1.3-1.5 2.4-2.7 3.4-3.8-.7-.2-1.3-.5-1.9-.7-2.7-1.1-5.1-2.6-7.3-4.4-1.1-.9-2.1-1.8-2.9-2.7-.8-.8-1.6-1.8-2.4-2.9-1.4-1.9-2.4-3.9-3.2-5.9-.3-.7-.5-1.4-.7-2-.5-.4-.9-1-1-1.7v-.3-.1-.2-.8-1.2c0-.2 0-.4.1-.6-.1-.9-.2-1.8-.2-2.7v-.8V94.7v-.2c-1-1.1-1.4-2.3-1.6-3.3-.1.4-.2.8-.2 1.2l-.1.8c0 .4-.1.9-.1 1.3v1.7c0 1.6.2 3.1.4 4.6.3 2 .9 3.9 1.6 5.8.9 2.2 2 4.3 3.5 6.4.9 1.2 1.7 2.2 2.6 3.2.9 1 2 2 3.1 2.9 2.1 1.7 4.3 3.1 6.8 4.2-.4.4-.8.9-1.2 1.4-.7.8-1.3 1.5-2 2.3-1.8 2.1-3.5 4.2-5.3 6-1.2 1.3-2.3 2.3-3.3 3.2-.9.8-1.8 1.4-2.6 1.9-.5.1-1.1.2-1.8.2-2.5 0-5.4-.9-7.6-1.7-1.5-.5-2.6-.9-3.7-1-.4-.1-.7-.1-1.1-.1-.3 0-.6 0-.8.1l.1.6c.3.5.8.9 1.1 1.4z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M146.2 166.2c-.1.4-.2.7-.4 1.1.2-.3.3-.7.4-1.1z" fill="#FFF" fill-rule="nonzero"/><path d="M37.1 92.1c.1 0 .2-.1.3-.1-.6-.9-1.2-1.8-1.7-2.7-.2.1-.4.2-.6.2.1.2.2.5.2.7.3.8.7 1.6 1.1 2.5.2-.3.4-.5
.7-.6z" fill="url(#a)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M65.2 105.7s2.7-.5 6.3-2.1c.1-.3.1-.5.2-.8-3.1 1.1-6.7 1.7-10.9 1.7h-1.1c-8.8-.2-15.1-4.7-18.7-8.2.2 1 .1 1.8-.1 2.5.7.7 1.5 1.5 2.3 2.1 1.5 1.2 3.1 2.3 4.9 3.2l1.8.9c.6.3 1.3.5 1.9.7.7.2 1.3.4 2 .6l1 .2c.1 0 .2 0 .3.1l-.1.1c3.6.6 6.8.7 9.2.6 0-.1-.1-.2-.1-.2.1-.7.5-1.3 1.1-1.4z" fill="url(#b)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M38.9 124.2c2.9-2.4 6.1-6.1 10-10.6 1.6-1.8 3.4-3.9 5.3-6.1l-1.1 1.1c-1.3 1.4-2.6 2.8-3.9 4.3-.6.7-1.2 1.5-1.9 2.2-.6.7-1.2 1.4-1.8 2.2l-1.8 2.1c-.6.7-1.2 1.4-1.8 2-1 1-2 2-3 2.8z" fill="url(#c)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M65.2 151.2c-.1.4-.2.7-.4 1.1-.3.8-.7 1.5-1 2.3-.4.7-.8 1.4-1.2 2-.4.6-.9 1.2-1.3 1.8-.5.5-.9 1.1-1.4 1.5-.1.1-.1.1-.2.1 2.5-1.8 4.4-4.6 5.5-8.8z" fill="url(#d)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M70.5 73.8c-.1 0-.1 0 0 0-.2 0-.8.1-1.8.1-.7 0-1.5 0-2.3-.1-.2 5.8-.7 10.7-1.5 15 .6
-.7 1-1.3 1.4-1.9 1.9-3.4 3.4-9.4 4.2-13.1z" fill="url(#e)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M171.4 131.5s.1 0 0 0c.1 0 .1 0 0 0 .1 0 .1 0 0 0z" fill="url(#f)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M162.9 131.2c-7.1 3-14.2-.7-19.1-5.2-4.9-4.5-16.4-17.9-16.4-17.9l9.3-.7s.5.1 1.5.6c-.3-.3-.7-.5-1-.8h-1.3c-2.6 0-4.7-.4-4.8-.4-.3-.1-.5-.3-.5-.6.1-.3.3-.5.6-.5 0 0 4 .7 7.7.2.4-.1.7-.1 1.1-.2 1.2-.3 2.4-.7 3.5-1.2 1-.4 1.9-.9 2.9-1.4-.4-1 .4-2.7 2.1-3.9 1.5-1.1 3.1-1.5 4-1 .9-.9 1.6-1.9 2.3-2.9 1-1.5 1.9-3 2.6-4.6.2-.5.5-1 .7-1.6.6-1.4 1-2.8 1.4-4.3-.3.1-.5.1-.8.1-1.2-.3-1.6-2.3-1.1-4.4.6-2.1 2-3.6 3.1-3.3v-.4c.1-2 .1-3.9 0-5.8 0-.5-.1-.9-.1-1.4 0-.4-.1-.8-.1-1.2v-.8-.2-.7c0-1.6.1-3.2.4-4.6.1-.5.2-1 .4-1.4.3-.9.7-1.8 1.1-2.7.4-.9.9-1.7 1.4-2.6l1.5-2.1c-.4 0-.7-.2-.9-.4-.8-.9-.2-2.8 1.4-4.3.4-.4.9-.7 1.3-1l-.6-1.7c-1.8 1.2-3.6 2.7-4.8 4.8-3.6 6.1-4.4 8.7-4.4 13.9v1.3c0 6.1.1 17.4-4.2 23.9-5.6 8.4-14 12.5-25.6 12.5H126c2.9.5 6 .7 9.4.2.6-.1 1.2
.3 1.3.9.1.6-.3 1.2-.9 1.3-1.5.2-3 .4-4.5.4-5.3 0-9.9-1.4-13.2-2.9.7 4 1.1 8.1 1.2 12.3.3 0 .5.2.5.5 0 0 .2 2.3.2 6.2.4 0 .8 0 1.2.1.4 0 .9.1 1.4.2.6.1 1.2.2 1.9.4.3.1.6.2.9.2.6.2 1.2.4 1.9.6.3.1.6.3 1 .4.7.3 1.3.6 2 1s1.4.8 2.1 1.3c.3.2.5.4.8.6.8-.8 2.7-.5 4.4.7 1.8 1.3 2.7 3.2 2 4.1.6.5 1.3 1.1 2 1.6.4.3.8.7 1.3 1 .4.3.9.7 1.3 1l1.8 1.2c0-.1 0-.3.1-.4.4-1.1 2.5-1.3 4.5-.5 2.1.8 3.4 2.4 2.9 3.5-.1.2-.2.4-.4.5.3.1.7.2 1 .2.6.1 1.1.1 1.7.2h2c1.2-.1 2.2-.3 3.2-.6.2-.1.4-.1.6-.2l-.3-.3c-.6-1 .5-2.8 2.4-3.9 1.4-.8 3.1-1.1 4.3-.8l-.6-1.2c-1-.4-1.8-1-2.4-1.6-.7.1-1.4.4-2.1.7z" fill="url(#g)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M134.8 169.1c-3.6 0-10.7-2.3-15.5-4.8-7.7-4.1-13.4-16.9-14.8-26.9-1.7-12.1-5.1-22.4-8.1-25.1-1.3-1.1-2.5-1.7-3.5-1.9-2.6.9-4.7 2.6-6.1 5.1-2 3.5-2.8 10.4-3.7 17.7-1 8.3-2.1 16.9-4.9 21.5-5.7 9.4-11.9 13.8-20.6 14.8-1.1.1-2.1.2-2.9.2-2.8 0-4.2-.6-4.9-1.1.4 1.6 1.8 2.8 3.5 2.8h4.5c1.4-.1 3-.3 4.8-.8.5-.1.9-.3 1.4-.4.5-.2 1-.3 1.5-.5s1-.4 1.5-.7c
.5-.2 1-.5 1.6-.8 1.1-.6 2.1-1.3 3.2-2 .2-.2.5-.4.7-.6-.1 0-.1-.1-.2-.1-.9-.8-.3-2.8 1.3-4.4 1.6-1.6 3.5-2.2 4.4-1.3 0 0 .1.1.1.2.8-1 1.5-2 2.2-3.1.4-.6.8-1.3 1.1-1.9.7-1.3 1.4-2.7 2-4 .3-.7.6-1.4.8-2.1.4-1.1.8-2.2 1.1-3.3h-.7c-1.1-.4-1.4-2.4-.7-4.5.7-1.9 2-3.2 3.1-3.1l.1-.2.1-.4.2-.9c.3-1.1.5-2.2.8-3.2.3-1 .6-2 .9-2.9.3-.9.6-1.8.9-2.6.3-.8.6-1.5.9-2.2.2-.3.3-.6.5-.9.1-.3.3-.6.4-.9.5-.8.9-1.5 1.3-2.2.4.6.8 1.4 1.3 2.2.1.3.3.6.4.9.1.3.3.6.5.9.3.7.6 1.4.9 2.2.6 1.6 1.2 3.4 1.8 5.5.3 1 .6 2.1.8 3.2l.2.9.1.4.1.2V138.3l.4 2c.1.8.3 1.5.5 2.2l.6 2.1.6 2.1c.2.7.5 1.4.7 2.1.5 1.4 1.1 2.8 1.8 4.1.7 1.3 1.4 2.7 2.2 3.9.8 1.3 1.6 2.5 2.5 3.6.9 1.1 1.8 2.2 2.9 3.2.5.5 1 .9 1.5 1.4.5.4 1 .9 1.6 1.2.5.4 1.1.8 1.6 1.1.5.3 1.1.7 1.6 1 1.1.6 2.1 1.1 3.1 1.5.5.2 1 .4 1.5.5.5.2 1 .3 1.4.4 1.9.5 3.5.7 4.8.8h4.6c1.7 0 3.1-1.1 3.5-2.7h-.1c-.4.2-1 .3-1.7.3z" fill="url(#h)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M62.2 64.1c0 1.5-.3 3.3-1.1 5.3-.1.2-.2.5-.3.7 1.6 1.2 3.5 2.1 5.6 2.6 1.9.3
3.7.1 3.9.1-.7-1-1.4-2-2.1-3.1-2.4-1.4-4.5-3.3-6-5.6z" fill="url(#i)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M129.4 88.3c-1.2-.4-2.3-1.1-3.3-1.9-.6-.5-1.1-1.1-1.6-1.7-.2-.3-.5-.6-.7-.9l-.6-.9c-.2-.3-.4-.6-.5-.9-.1-.2-.2-.3-.2-.5-.1-.2-.1-.3-.2-.5-.1-.1-.2-.3-.2-.4-.1-.1-.1-.3-.2-.4-.1-.3-.3-.6-.4-.8-.1-.3-.3-.5-.4-.8-.1-.2-.2-.5-.4-.7-.1-.2-.2-.4-.3-.5-.1-1.1-.2-2.3-.2-3.5-1.2.2-2.3.3-2.8.3.1 2.1.3 4.3.9 5.8.7 1.7 3.6 7.6 11.1 8.3z" fill="url(#j)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M64.6 42.9c-.1-1.1-.2-2.1-.2-3.2C64.4 23.8 77.3 11 93.1 11c15.9 0 28.7 12.9 28.7 28.7v1.5c4.1 3.1 6.7 7.9 6.7 13.4 0 6.4-3.6 12-8.8 14.8-.7 1.2-1.5 2.4-2.3 3.5.6 0 1.7-.1 3-.3.7-.2 1.4-.4 2.1-.7.8-.4 1.6-.8 2.3-1.3 4.4-2.9 7.4-7.9 7.4-13.5 0-2.5-.6-4.9-1.6-7-1-2.1-2.5-4-4.3-5.5 0-.7.1-1.4.1-2.1 0-2.8-.3-5.4-1-8-.1-.2-.1-.4-.2-.6-1.5-5.7-4.5-10.8-8.6-14.8-1-1-2.1-2-3.2-2.8-1.1-.9-2.3-1.7-3.6-2.4-2.5-1.4-5.2-2.6-8-3.3-.2-.1-.4-.1-.6-.2-.6-.2-1.3-.3-1.9-.4-2-.4-4-
.6-6-.6-.7 0-1.4 0-2.1.1-2.1.1-4.2.5-6.2 1-6.9 1.8-12.9 5.7-17.3 11-.3.4-.7.8-1 1.3-.6.9-1.2 1.7-1.8 2.6-.6.9-1.1 1.9-1.5 2.8-.7 1.5-1.3 3-1.8 4.5-.3 1-.6 2.1-.8 3.2-.4 2.2-.7 4.4-.7 6.7 0 .7 0 1.4.1 2.1-.3.3-.7.6-1 .9-.6.6-1.2 1.3-1.7 2-.3.4-.5.7-.7 1.1-.6 1-1.1 2.1-1.5 3.2-.5 1.4-.8 2.9-.9 4.4l1.8.7c.9.4 1.4 1.4 1.6 2.8l3 1.2c-.7-1.8-1.1-3.8-1.1-5.9-.2-4.9 1.8-9.1 4.9-12.2z" fill="url(#k)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M70.7 106.4c-.2.1-.5.2-.7.3.2.1.3.2.4.4.1.3-.1.6-.4.7-.2 0-2.9.7-7.2.7-1 0-2.1 0-3.3-.1l1.9.7c.1 0 .2.1.3.2.2.4 1.1 2.5-4.2 7.8l-1.3 1.3c-5.2 5.2-13 13.1-21.1 13.8-.7.1-1.4.1-2 .1-5.2 0-10.7-1.5-14.3-2.7l.6 5.5c.3.1.5.2.8.3v-.1c.6-1 2.7-1 4.6.2 1.6.9 2.5 2.3 2.5 3.3.4.1.7.2 1.1.2 1 .2 2.1.3 3.2.3H33.4c.5 0 1-.1 1.5-.1h.2c-.1-.1-.2-.2-.2-.3-.4-1.1.9-2.7 2.9-3.5 2.1-.8 4.1-.6 4.5.5.2.5 0 1.1-.4 1.7l3-1.2c1.5-.7 2.9-1.4 4.2-2.2-.2-.1-.3-.2-.4-.4-.7-1 .2-2.8 2-4.1 1.8-1.3 3.8-1.6 4.5-.6.2.3.3.7.2 1.2 1.2-.8 2.3-1.6 3.4-2.3.8-.6 1.6-1.1 2.3-1
.6 1.5-1 2.9-2 4.2-2.7.6-.4 1.2-.7 1.8-1 .8-4.4 1-7.1 1-7.2 0-.3.3-.5.5-.5.1-.3.1-.6.2-.9.4-2.2 1.1-4.8 1.9-7.7z" fill="url(#l)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M153.8 118c.1 0 .2-.1.3-.1.9-.4 1.9-1.2 2.7-1.9-.9.5-1.8 1-2.8 1.4-.1.2-.1.4-.2.6z" fill="#FAFAFA" fill-rule="nonzero"/><path d="M131.2 182.5c.3.3 1.9 1.5 7.2.9 8.3-1 14.3-5.3 19.8-14.3 2.7-4.4 3.7-12.9 4.8-21.1.9-7.4 1.8-14.4 3.8-18.2 1.1-2 2.6-3.5 4.2-4.5-.5.2-.8.3-.8.3l-1.1.7 4-22.6c-.5-.6-1-1.2-1.4-1.8-2.8-4.2.3-9.3 4.1-13.4v-.3h.2c3.5-3.7 7.5-6.4 7.8-6.6l.2-.1 14.6 1.2-.1.6s-.2 2-.2 4.4h.2c.9-1.1 1.6-2.3 2.3-3.5 5.3-2.8 8.8-8.4 8.8-14.8 0-5.5-2.7-10.4-6.7-13.4v-1.5c0-15.9-12.9-28.7-28.7-28.7-15.9 0-28.7 12.9-28.7 28.7 0 1.1.1 2.2.2 3.2-3.1 3.1-5.1 7.3-5.1 12 0 2.1.4 4 1.1 5.9 1 .4 1.6 1.6 1.6 3.2 1.5 2.3 3.5 4.2 6 5.6.6 1.1 1.3 2.1 2.1 3.1.1 0 .3 0 .4.1.3-1.4.4-2.3.5-2.3l.1-.3.3-.1c.5-.2 13.4-5.6 18.2-1.2 2 1.8 2.3 5 .9 9.4-2.5 8-5.5 14.5-10 19 .1 0 .2.1.3.2.5.4.5 1.1.1 1.6-.1.2-3.7 4.2-6.9 5.
8-.7.4-1.4.7-2.1 1-.9 3.3-1.6 6.1-2 8.3-1.8 10-1.9 13.6-2.1 21 0 1.7-.1 3.7-.2 6-.4 12-3.6 18.7-9.9 21.2-.5.2-1.1.4-1.6.6-.6.2-1.1.4-1.6.6-.3.1-.5.2-.7.3-.4.2-.6.3-.5.3h-.2c-1.9.9-3.1 1.9-3.2 3.5zm63.3-112.3c0 .8-.6 1.4-1.4 1.4-.8 0-1.4-.6-1.4-1.4V67c0-.8.6-1.4 1.4-1.4.8 0 1.4.6 1.4 1.4v3.2zm-6.2-15c.1-.1 1.6-2.5 4.8-2.5 3.1 0 4.7 2.4 4.8 2.5.3.5.2 1.2-.3 1.5-.2.1-.4.2-.6.2-.4 0-.7-.2-.9-.5 0-.1-1-1.5-2.9-1.5s-2.9 1.4-2.9 1.5c-.3.5-1 .7-1.5.3-.7-.3-.8-1-.5-1.5zm-29 15c0 .8-.6 1.4-1.4 1.4-.8 0-1.4-.6-1.4-1.4V67c0-.8.6-1.4 1.4-1.4.8 0 1.4.6 1.4 1.4v3.2zm3-7c-.2.1-.4.2-.6.2-.4 0-.7-.2-.9-.5 0-.1-1-1.5-2.9-1.5s-2.9 1.4-2.9 1.5c-.3.5-1 .7-1.5.3-.5-.3-.7-1-.3-1.5.1-.1 1.6-2.5 4.8-2.5 3.2 0 4.7 2.4 4.8 2.5.2.5 0 1.2-.5 1.5z" fill="#FAFAFA" fill-rule="nonzero"/><path d="M138.7 177.3c6.3-2.5 9.5-9.2 9.9-21.2.1-2.3.1-4.2.2-6 .2-7.3.3-11 2.1-21 .4-2.2 1.1-5 2-8.3-.5.2-.9.4-1.3.5-.8 2.9-1.4 5.6-1.8 7.6-.1.3-.1.6-.2.9h.1c.3 0 .5.3.5.6 0 0-.2 3.5-1.3 8.9-.1.6-.2 1.1-.3 1.7-.2 1.4-.3 2.7-.4 4.1 0
.7-.1 1.4-.1 2.1v7.2c0 .5 0 1.1-.1 1.6-.1 1-.2 2.1-.3 3.1-.1.5-.1 1-.2 1.5s-.2 1-.3 1.4c-.2.9-.4 1.9-.7 2.7-.2.5-.3 1-.5 1.4-1.1 4.1-3 7-5.5 8.8-.4.4-.9.8-1.3 1.1-1 .7-1.9 1.3-2.7 1.8l-1.2.6c.5-.2 1.1-.4 1.6-.6.8-.1 1.3-.3 1.8-.5z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M76.9 50.6c-.8 0-1.4.6-1.4 1.4v3.2c0 .8.6 1.4 1.4 1.4.8 0 1.4-.6 1.4-1.4V52c0-.8-.6-1.4-1.4-1.4z" fill="url(#m)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M112.1 50.6c-.8 0-1.4.6-1.4 1.4v3.2c0 .8.6 1.4 1.4 1.4.8 0 1.4-.6 1.4-1.4V52c0-.8-.7-1.4-1.4-1.4z" fill="url(#n)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M107.6 41.7c.5.3 1.2.2 1.5-.3 0 0 1-1.5 2.9-1.5s2.8 1.4 2.9 1.5c.2.3.6.5.9.5.2 0 .4-.1.6-.2.5-.3.7-1 .3-1.5-.1-.1-1.6-2.5-4.8-2.5-3.1 0-4.7 2.4-4.8 2.5-.1.5 0 1.2.5 1.5z" fill="url(#o)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M76.9 44.2c-3.1 0-4.7 2.4-4.8 2.5-.3.5-.2 1.2.3 1.5.5.3 1.2.2 1.5-.3 0 0 1-1.5 2.9-1.5s2.8 1.4 2.9 1.5c.2.3.6.5.9.5.2 0 .4-.1.6-.2
.5-.3.7-1 .3-1.5.1-.1-1.5-2.5-4.6-2.5z" fill="url(#p)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M140.7 118.4c15.7.3 23.7-6.5 29.7-25.4 1.3-4 1.1-6.7-.6-8.2-3.9-3.6-14.8.6-16.7 1.3-.3 1.9-2.2 11.5-4.9 16.3-2.3 4.1-7.5 7.6-13.9 6.2-6.5-1.5-12.3-5.7-14.1-10.1 0 0 0 .1-.1.1-.2.6-.4 1.1-.6 1.7-.2.6-.5 1.1-.7 1.5-.3.5-.5.9-.8 1.2-.2.3-.4.5-.5.6 1 1.7 2.2 3.5 3.7 5.3 3.1 3.4 9.6 9.3 19.5 9.5z" fill="#FAFAFA" fill-rule="nonzero"/><path d="M120.3 98.4c1.9 4.4 7.6 8.7 14.1 10.1 6.4 1.4 11.6-2.1 13.9-6.2 2.7-4.8 4.5-14.4 4.9-16.3 1.9-.8 12.8-4.9 16.7-1.3 1.6 1.5 1.8 4.3.6 8.2-6 18.9-14 25.8-29.7 25.4-9.9-.2-16.4-6.1-19.4-9.5-1.5-1.7-2.7-3.5-3.7-5.3l-.1.1-.2.2-.1.1c-.2.1-.4.3-.6.4.5.9 1.1 1.8 1.7 2.7 1.1-.1 2.5 1.1 3.2 3 .2.4.3.9.4 1.3 3.6 3.5 9.8 8 18.7 8.2h1.1c4.2 0 7.8-.6 10.9-1.7-.1.3-.2.5-.2.8.4-.2.9-.4 1.3-.6.1-.2.1-.4.2-.6 1-.4 1.9-.9 2.8-1.4 1.9-1.6 3.4-3.4 3.5-3.4.3-.4.8-.5 1.3-.3 4.5-4.5 7.4-11 10-19 1.4-4.4 1.1-7.6-.9-9.4-4.8-4.4-17.7 1-18.2 1.2l-.3.1-.1.3s-.2.9-.5
2.3c.1.1.2.2.2.4 0 .3-.2.5-.4.6-.8 3.7-2.3 9.7-4.1 13-.3.6-.8 1.3-1.4 1.9 0 .2-.1.4-.1.6-.8.8-1.7 1.4-2.8 2-.3.2-.6.3-.9.5-.3.1-.6.3-1 .4-.3.1-.7.2-1 .3-.4.1-.7.2-1.1.3h.2H136.1c-.5 0-1.1 0-1.6-.1-1.1-.1-2.3-.4-3.4-.8-.4-.1-.7-.3-1.1-.4-.4-.2-.7-.3-1-.5-.3-.2-.7-.4-1-.6-.3-.2-.6-.4-1-.6-.3-.2-.6-.4-.9-.7-1.2-.9-2.2-2-3-3-.6-.8-1.1-1.6-1.5-2.4-.1-.3-.3-.5-.4-.8-.1-.3-.2-.5-.3-.8h-.2c0 .1-.1.1-.1.2-.1.7-.2.9-.3 1.1z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M174 104.9l-3.4 19.5c.5-.2 1.2-.3 2-.3 1.5 0 3.4.5 5.5 2.3 3.8 3.4 7 15.4 8.5 25.8 1.6 11.5 7.8 22.7 14.2 26.1 6.5 3.4 14.5 5.4 16.3 4.5.1 0 .1-.1.2-.1.3-1.7-.2-2.2-6.5-6.4-5.7-3.9-10.7-7.2-11.1-25.4-.1-3.3-.1-6.6-.1-9.8 0-8.9 0-17.1-1.5-24.9-.4-.2-.8-.4-1.1-.6-9.5-1.9-18.1-5.9-23-10.7z" fill="#FAFAFA" fill-rule="nonzero"/><path d="M198 116.2c1.5 7.8 1.5 15.9 1.5 24.9 0 3.2 0 6.4.1 9.8.4 18.2 5.3 21.5 11.1 25.4 6.3 4.2 6.8 4.7 6.5 6.4 0 0-.1.1-.2.1-1.7.9-9.7-1.1-16.3-4.5-6.5-3.4-12.6-14.6-14.2-26.1-1.5-10.4-4.7-22.4-8.5-25.8-2-
1.8-4-2.3-5.5-2.3-.8 0-1.5.1-2 .3l3.4-19.5c4.9 4.9 13.5 8.9 22.9 10.8-1.8-.9-2.9-1.7-3-1.8 0 0 0-.1-.1-.1-9.5-2.5-17.7-7.1-21.2-12.4-4.6-6.9 10-17.4 11.7-18.6l13.1 1.1c-.1 1.9-.5 8 .8 11.3.9 2.4 4.9 10.1 15.3 9.2 9.7-.8 12.1-9.5 13.2-17.9.1-1.2.3-2.2.4-3.2.8-6.3 1-8.4 3.6-14.2l.3-.6c-.4.7-.9 1.4-1.3 2.2-1.6 3.1-2.8 6.8-3.2 10.7-.1.5-.1 1-.1 1.6v3.5c-.1 1.4-.3 2.7-.5 4.1-.4 2.6-1.2 5.1-2.3 7.1-.5 1-1.1 1.9-1.7 2.6-.6.7-1.3 1.3-1.9 1.8-.7.5-1.3.8-2 1.1-.7.3-1.4.5-2.1.6-.6.1-1.2.2-1.8.2h-.4c-.7 0-1.5-.1-2.2-.3-.3-.1-.5-.2-.8-.3-7.4-.7-10.4-6.5-11.2-8.5-.6-1.5-.8-3.7-.9-5.8h-.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h.3c0-2.4.2-4.4.2-4.4l.1-.6-14.6-1.2-.2.1c-.3.2-4.3 2.9-7.8 6.6h-.2v.3c-3.8 4-6.9 9.1-4.1 13.4.4.6.9 1.2 1.4 1.8l-4 22.6 1.1-.7s.3-.2.8-.3c-1.6 1-3.1 2.4-4.2 4.5-2.1 3.7-2.9 10.7-3.8 18.2-1 8.2-2 16.6-4.8 21.1-5.5 9.1-11.4 13.3-19.8 14.3-5.2.6-6.8-.5-7.2-.9.1-1.7 1.3-2.7 2.9-3.5-1.9.1-3.5 1.7-3.5 3.7 0 .3 0 .6.1.9.7.5 2.1 1.1 4.9 1.1.8 0 1.8-.1 2.9-.2 8.7-1 14.9-5.5 20.6-14.8 2.8-4
.7 3.9-13.2 4.9-21.5.9-7.3 1.7-14.2 3.7-17.7 1.4-2.5 3.4-4.2 6.1-5.1 1 .2 2.2.8 3.5 1.9 3 2.7 6.4 13 8.1 25.1 1.4 10 7.1 22.9 14.8 26.9 4.8 2.5 11.9 4.8 15.5 4.8.7 0 1.3-.1 1.8-.3h.1c.1-.3.2-.7.2-1 .1-.5.1-1 0-1.4-.3-1.1-1.6-2.1-4.6-4.2-.6-.4-1.3-.9-2.1-1.4-2.5-1.7-4.7-3.3-6.5-5.7-1.1-1.5-2-3.3-2.7-5.7-.4-1.2-.7-2.5-.9-4-.4-2.6-.7-5.7-.8-9.5v-1.5c0-1.3 0-2.7-.1-4.1v-9.4c-.1-3.8-.2-6.1-.2-6.1 0-.3.2-.6.5-.6h.1c-.2-4.2-.5-8.3-1.2-12.3-.7-.5-1.1-.7-1.5-.9z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M227 83.3c-.1 1-.2 2-.4 3.2-1.1 8.4-3.4 17.1-13.2 17.9-10.4.9-14.3-6.8-15.3-9.2-1.3-3.3-1-9.4-.8-11.3l-13.1-1.1c-1.7 1.2-16.3 11.6-11.7 18.6 3.5 5.3 11.7 9.9 21.2 12.4-.4-.4-.5-1-.2-1.5.4-.5 1.1-.6 1.6-.3 0 0 2.6 1.8 6.6 3.3 1.5.2 3 .3 4.5.4 12.5.6 21.4-3.3 27.1-11.9 4.1-6.2 4.1-17.7 4.1-23.3v-1.3c0-5.5.9-8.2 4.6-14.5 1.4-2.3 3.4-4 5.4-5.3l-1.3-3.9c-.3.2-.6.3-1 .5-1.1.6-2.4 1.3-3.8 2.2l-.1.1c-2.3 1.6-4.6 3.5-6.5 5.4-.8.8-1.5 1.6-2.2 2.6-.5.7-1 1.3-1.5 2.1l-.3.6c-2.7 5.8-3 8-3.7 14.3z" fil
l="#FAFAFA" fill-rule="nonzero"/><path d="M241.9 64.8c-3.7 6.3-4.6 9-4.6 14.5v1.3c0 5.5.1 17-4.1 23.3-5.8 8.6-14.6 12.5-27.1 11.9-1.5-.1-3-.2-4.5-.4 1.6.6 3.5 1.2 5.5 1.5h1.5c11.6 0 20-4.1 25.6-12.5 4.3-6.5 4.3-17.8 4.2-23.9v-1.3c0-5.2.8-7.8 4.4-13.9 1.2-2 3-3.6 4.8-4.8l-.4-1.1c-1.9 1.4-3.9 3.1-5.3 5.4zM235.3 63c-.3.2-.5.5-.8.8 1.9-1.9 4.2-3.7 6.5-5.4-1.7 1.2-3.7 2.7-5.7 4.6z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M127.4 108s11.6 13.5 16.4 17.9c4.9 4.5 12 8.2 19.1 5.2.7-.3 1.4-.6 2-.8-.5-.5-.9-1.1-1.1-1.8-.1-.4-.2-.9-.2-1.3h-.4c-.2 0-.4 0-.6-.1-.2 0-.3 0-.5-.1-.2 0-.4-.1-.6-.1-.2 0-.3-.1-.5-.1s-.4-.1-.6-.1c-.2 0-.4-.1-.5-.1-.2-.1-.4-.1-.7-.2-.2-.1-.4-.1-.6-.2-.2-.1-.4-.2-.7-.2-.2-.1-.4-.1-.6-.2-.2-.1-.4-.2-.7-.3l-.6-.3c-.2-.1-.5-.2-.7-.4l-.6-.3c-.2-.1-.5-.3-.7-.4-.2-.1-.4-.2-.6-.4-.2-.2-.5-.3-.7-.5-.2-.1-.4-.3-.6-.4-.2-.2-.5-.4-.7-.6-.2-.2-.4-.3-.5-.5l-.7-.7-.5-.5c-.3-.3-.5-.6-.8-.9-.1-.2-.3-.3-.4-.5-.4-.5-.8-1-1.2-1.6-.4-.5-.7-1-1-1.5-.1-.1-.2-.2-.2-.3-.3-.5-.7-.9-1-1.3v-.1c
-.3-.4-.6-.8-.9-1.1-.1-.1-.1-.2-.2-.2-.3-.3-.6-.7-.9-1l-.1-.1-.8-.8-.2-.2c-.3-.3-.5-.5-.8-.7-.1 0-.1-.1-.2-.1-.2-.2-.4-.3-.6-.5-.1-.1-.2-.1-.2-.2-.2-.2-.4-.3-.6-.4-.1-.1-.2-.1-.3-.2-.1-.1-.2-.1-.3-.2-.1-.1-.2-.1-.3-.2-.3-.2-.5-.3-.7-.4-.9-.5-1.5-.6-1.5-.6l-9.1.6z" fill="url(#q)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M116 146c7.7-.7 15.4-8.4 20.4-13.5l1.3-1.3c3.9-3.9 4.1-5.8 4-6.3l-5.4-2c-2.1 2.3-3.9 4.5-5.6 6.4-6.1 7-10.5 12.1-15.1 13.6-4.4 1.4-9.5-.3-13-1.4-.5-.2-1-.3-1.5-.5-.1.3-.2.7-.4 1-.3.5-.6.9-1 1.3 4 1.4 10.7 3.2 16.3 2.7z" fill="#FAFAFA" fill-rule="nonzero"/><path d="M116.1 147.1c8.1-.7 16-8.6 21.1-13.8l1.3-1.3c5.3-5.3 4.4-7.4 4.2-7.8-.1-.1-.2-.2-.3-.2l-1.9-.7c-1.6-.1-3.4-.3-5.2-.7-1.9 2.2-3.7 4.2-5.3 6.1-3.9 4.5-7.1 8.2-10 10.6-.2.2-.5.4-.7.6-1.2 1-2.5 1.9-3.7 2.6-1.1.4-2.3.5-3.5.5-4 0-8.1-1.7-10.6-2.4 0 .2-.1.4-.1.5.5.1.9.3 1.5.5 3.4 1.1 8.6 2.9 13 1.4 4.6-1.5 9-6.6 15.1-13.6 1.7-1.9 3.6-4.1 5.6-6.4l5.4 2c0 .5-.2 2.4-4 6.3l-1.3 1.3c-5.1 5.1-12.7 12.8-
20.4 13.5-5.6.5-12.3-1.4-16.2-2.6l-.2.2.1 1c3.5 1.2 9.1 2.7 14.3 2.7.4-.2 1.1-.2 1.8-.3z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M171.5 131.5c.1.2.3.4.5.6.4.3.8.5 1.3.7.3-.5.6-1 .7-1.6-.8.2-1.6.3-2.5.3z" fill="url(#r)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M149.4 116.1c-3-4.4-5.7-7.1-7.8-8.7.9-.2 1.8-.6 2.8-1 2.1-.9 4.1-2 5.8-3.4-1.5.9-3.1.9-3.7.1-.1-.1-.1-.2-.1-.3-.9.5-1.9 1-2.9 1.4-1.1.5-2.3.9-3.5 1.2-.3.1-.7.1-1.1.2-3.7.5-7.7-.1-7.7-.2-.3-.1-.6.2-.6.5-.1.3.2.6.5.6.1 0 2.2.4 4.8.4h1.3c.3.3.7.5 1 .8.2.1.5.2.7.4.1.1.2.1.3.2.1.1.2.1.3.2.1.1.2.1.3.2.2.1.4.3.6.4.1.1.2.1.2.2.2.1.4.3.6.5.1 0 .1.1.2.1.2.2.5.5.8.7l.2.2c.3.2.5.5.8.8l.1.1c.3.3.6.6.9 1 .1.1.1.2.2.2.3.4.6.7.9 1.1v.1c.3.4.7.8 1 1.3.1.1.2.2.2.3.3.5.7 1 1 1.5.4.6.8 1.1 1.2 1.6.1.2.3.3.4.5.3.3.5.7.8.9l.5.5c.2.3.5.5.7.7.2.2.4.3.5.5.2.2.5.4.7.6.2.2.4.3.6.4.2.2.5.4.7.5.2.1.4.3.6.4.2.2.5.3.7.4l.6.3c.2.1.5.2.7.4l.6.3c.2.1.4.2.7.3.2.1.4.2.6.2.2.1.4.2.7.2.2.1.4.1.6.2.2.1.4.1.7.2.2 0 .4.1.5.1.2.1.4.1.6.1.2 0 .4.
1.5.1.2 0 .4.1.6.1.2 0 .3.1.5.1s.4 0 .6.1h.4c0 .4 0 .9.2 1.3.2.7.6 1.3 1.1 1.8.6.6 1.4 1.1 2.4 1.6.6.2 1.2.5 1.9.6h.1c.2 0 .5-.2.5-.4.1-.3-.1-.6-.4-.7-.1 0-.2-.1-.3-.1-2.4-.7-3.8-1.8-4.2-3.2-.7-2.5 1.8-5.4 1.9-5.4.1-.1.2-.3.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.6-.2-.8 0 0 0-.3.3-.6.7-.4.5-.9 1.3-1.2 2.2-4.5.3-10.1-1.3-14.9-8.4z" fill="url(#s)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M31.3 79.8v1.6c0 .9.1 1.8.2 2.7 0-.3.1-.6.2-1 .1-.3.1-.6.2-.9.1-.3.2-.7.3-1 .1-.2.1-.4.2-.6.7.5 1.6.9 2.8 1.3 1.3.4 2.7.7 4.1.7H39.9c.1.3.2.5.3.8.1.3.3.5.4.8.4.8.9 1.6 1.5 2.4.8 1.1 1.8 2.1 3 3 .3.2.6.5.9.7.3.2.6.4 1 .6.3.2.7.4 1 .6.3.2.7.3 1 .5.4.2.7.3 1.1.4 1.1.4 2.2.6 3.4.8.5.1 1.1.1 1.6.1h3.1-.2c.4-.1.7-.2 1.1-.3.4-.1.7-.2 1-.3.3-.1.7-.3 1-.4.3-.1.6-.3.9-.5 1-.6 2-1.3 2.8-2 0-.2.1-.4.1-.6.8-4.3 1.3-9.2 1.5-15 .8.1 1.6.1 2.3.1.9 0 1.6-.1 1.7-.1h.1c.3-.1.4-.3.4-.6 0-.2-.1-.3-.2-.4-.1-.1-.3-.1-.4-.1-.1 0-2 .2-3.9-.1-2-.5-3.9-1.4-5.6-2.6.1-.2.2-.5.3-.7.8-1.9 1.1-3.8 1.1-5.3-.1-1.6-.6-2.8-1.6-3
.2l-3-1.2c.1.4.1.8.1 1.2l2.5 1c1.1.5 1.4 3.5-.1 7.1-1.5 3.6-3.7 5.6-4.9 5.1l-2.5-1c-.3.3-.6.6-.9.8l3 1.2c.2.1.5.1.8.1.9 0 1.9-.6 2.9-1.6.4-.5.9-1 1.3-1.6 1.4.9 2.8 1.7 4.4 2.3-.2 5.3-.7 9.9-1.4 13.9-.5.5-1.1.9-1.8 1.2-.4.2-.9.5-1.6.7-.5.2-1.1.3-1.8.5h-.8H55.1c-.5 0-.9 0-1.3-.1-1.3-.1-2.6-.5-3.8-1l-1.8-.9c-.5-.3-1-.7-1.6-1.1-1-.8-1.9-1.7-2.6-2.6-.7-.9-1.2-1.8-1.7-2.8-.1-.2-.1-.3-.2-.5h.1c.8-.5 1.3-1.2 1.8-2.1.4-.7.7-1.6.8-2.7 0-.2 0-.3-.1-.5-.1-.1-.2-.2-.3-.2-.3-.1-.6.2-.6.5 0 .1-.1.3-.1.4-.4 1.8-1 3-2 3.6-1.3.8-3.1.8-6.1-.1-5.7-1.7-4.6-6-4.5-6.2.1-.2 0-.5-.2-.6-.1 0-.1-.1-.2-.1-.3-.1-.6.1-.7.4 0 0-.2.9-.1 2.1.1 1 .5 2.2 1.6 3.3-.2 0-.2.1-.2.1z" fill="url(#t)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M157.7 138.9c-.4 0-.8.1-1.2.1h-.8c-.5 0-1.1-.1-1.7-.2-.3-.1-.7-.1-1-.2-.8.6-2.4.7-4.1 0-1.8-.7-3.1-2.1-3-3.1l-1.8-1.2c-.5-.3-.9-.7-1.3-1-.4-.3-.9-.7-1.3-1-.7-.5-1.3-1.1-2-1.6-.6.8-2.2.7-3.8-.2.7.5 1.4 1.1 2.1 1.7.7.6 1.5 1.2 2.3 1.9 1.7 1.4 3.6 2.8 5.8 4.1 1.8 1.1 4.6 2
.5 7.8 3 1 .1 1.9.2 2.8.2.5 0 .9 0 1.4-.1 1.3-.1 2.5-.3 3.7-.7 2.2-.6 3.8-1.5 5.2-2.3 1.3-.8 2.3-1.6 3.2-2.2.1-.1.3-.2.4-.3-.3-.2-.6-.4-.8-.6-.2-.2-.4-.4-.6-.5-.2 1-1.6 2.3-3.1 3.2-1.7 1-3.5 1.2-4.3.4-.2.1-.4.1-.6.2-1 .1-2.1.3-3.3.4z" fill="url(#u)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M31.5 141.4h.9c.9 0 1.8 0 2.8-.1 1.4-.2 2.6-.4 3.7-.6 2.3-.5 4.6-1.4 7-2.5 1.9-.9 4-2 6.2-3.3 2.9-1.7 5.5-3.6 7.9-5.2.8-.6 1.6-1.1 2.4-1.7 1.1-.8 2.1-1.4 3-2-.2 1.3-.3 2.6-.3 3.9-.1 1.4-.1 2.8-.1 4.3V139.6c0 .4 0 .8-.1 1.2-.1 1.1-.2 2.1-.3 3-.1 1-.3 1.9-.4 2.7-.2 1-.4 1.8-.6 2.6-.2.8-.5 1.6-.8 2.3-.3.8-.7 1.5-.9 2.1-.3.6-.7 1.2-1.1 1.8-.4.6-.8 1.1-1.2 1.6-.5.6-.9 1-1.3 1.3-.4.4-.9.8-1.3 1.1-.8.6-1.6 1.1-2.4 1.6-.7.4-1.3.7-1.7.8l-.2.1c-3 .3-5.3 2.8-5.3 5.9 0 3.2 2.6 5.9 5.8 5.9h.1c.5.1 1.5.2 3 .2h1.6c1.8-.1 3.6-.4 5.3-.9 1.1-.3 2.1-.6 3.2-1.1 1.2-.5 2.4-1 3.4-1.6 1.2-.7 2.3-1.4 3.4-2.2 1.1-.9 2.3-1.8 3.3-2.8 1-1 2-2.1 3-3.4 1-1.2 1.9-2.5 2.7-3.8 1.6-2.6 3-5.5 4.1-8.4.5-1.4 1-2.9 1
.4-4.4.2-.6.3-1.2.5-1.7l.1-.5.1-.4c.1-.6.3-1.2.4-1.9l.4-2v-.2V138.2l.1-.4.2-.8c.2-1 .5-2.1.8-3.2.5-2 1.1-3.8 1.7-5.3.3-.8.6-1.5.9-2.1 0-.1.1-.2.1-.3.1.1.1.2.2.3.2.5.5 1.2.9 2.1.6 1.5 1.2 3.2 1.7 5.2.3 1 .6 2.1.8 3.2l.2.8.1.4v.5l.4 2c.1.7.3 1.3.4 1.9l.1.4.1.5c.1.6.3 1.2.5 1.8.4 1.5.9 3 1.4 4.4 1.1 2.9 2.5 5.8 4.1 8.4.8 1.3 1.7 2.6 2.7 3.8 1 1.3 2 2.4 3 3.4s2.2 2 3.3 2.8c1.1.8 2.2 1.5 3.4 2.2 1 .6 2.1 1.1 3.4 1.6 1 .4 2.1.8 3.2 1.1 1.7.5 3.5.8 5.3.9.5 0 1.1.1 1.6.1 1.5 0 2.5-.1 3-.2h.1c3.1 0 5.7-2.6 5.8-5.7.5-3.5-1.5-4.8-7.7-9-5.5-3.7-9.5-6.4-9.8-23.1v-1.5c0-1.4 0-2.8-.1-4.2v-4-3c.9.1 1.9.3 2.8.5 1.2.3 2.3.7 3.3 1.2.6.3 1.2.6 1.9.9.7.4 1.3.8 1.9 1.2.9.6 1.8 1.3 2.9 2.1-1.1-1.2-1.5-2.5-1-3.2l.1-.1c-.3-.2-.5-.4-.8-.6-.7-.5-1.4-.9-2.1-1.3-.7-.4-1.3-.7-2-1-.3-.2-.6-.3-1-.4-.6-.3-1.3-.5-1.9-.6-.3-.1-.6-.2-.9-.2-.7-.2-1.3-.3-1.9-.4-.5-.1-.9-.1-1.4-.2-.4 0-.8-.1-1.2-.1-.1-3.9-.2-6.2-.2-6.2 0-.3-.2-.5-.5-.5h-.1c-.3 0-.5.3-.5.6 0 0 .2 2.3.2 6.1v9.4c.1 1.4.1 2.8.1 4.1v1.5c.1 3.8.4 6.9.8 9.5.2 1
.5.6 2.8.9 4 .7 2.4 1.6 4.2 2.7 5.7 1.7 2.4 3.9 4 6.5 5.7.8.5 1.5 1 2.1 1.4 3.1 2.1 4.3 3.1 4.6 4.2.1.4.1.9 0 1.4 0 .4-.1.7-.2 1-.4 1.5-1.8 2.7-3.5 2.7h-.1H132h-.5H128.1c-1.4-.1-3-.3-4.8-.8-.5-.1-.9-.3-1.4-.4-.5-.2-1-.3-1.5-.5-1-.4-2.1-.9-3.1-1.5-.5-.3-1.1-.6-1.6-1-.5-.3-1.1-.7-1.6-1.1-.5-.4-1-.8-1.6-1.2-.5-.4-1-.9-1.5-1.4-1-1-1.9-2-2.9-3.2-.9-1.1-1.8-2.3-2.5-3.6-.8-1.3-1.5-2.6-2.2-3.9-.7-1.3-1.2-2.7-1.8-4.1-.3-.7-.5-1.4-.7-2.1l-.6-2.1-.6-2.1c-.2-.7-.3-1.4-.5-2.2l-.4-2v-.2-.1l-.1-.2-.1-.4-.2-.9c-.3-1.1-.5-2.2-.8-3.2-.6-2.1-1.2-3.9-1.8-5.5-.3-.8-.6-1.5-.9-2.2-.2-.3-.3-.6-.5-.9-.1-.3-.3-.6-.4-.9-.5-.8-.9-1.5-1.3-2.2-.4.6-.8 1.4-1.3 2.2-.1.3-.3.6-.4.9-.1.3-.3.6-.5.9-.3.7-.6 1.4-.9 2.2-.3.8-.6 1.6-.9 2.6-.3.9-.6 1.9-.9 2.9-.3 1-.6 2.1-.8 3.2l-.2.9-.1.4-.1.2h.3c1.1.4 1.4 2.4.7 4.5-.6 1.7-1.7 2.9-2.7 3.1-.3 1.1-.7 2.2-1.1 3.3-.3.7-.5 1.4-.8 2.1-.6 1.4-1.2 2.7-2 4-.4.7-.7 1.3-1.1 1.9-.7 1.1-1.4 2.1-2.2 3.1.7.9.1 2.7-1.4 4.2s-3.3 2.1-4.2 1.5c-.2.2-.5.4-.7.6-1.1.8-2.1 1.5-3.2 2-.5.3-1.1.6-1.
6.8-.5.2-1 .5-1.5.7-.5.2-1 .4-1.5.5-.5.2-1 .3-1.4.4-1.9.5-3.5.7-4.8.8H54.1h-1-.2c-1.7 0-3.1-1.2-3.5-2.8-.1-.3-.1-.6-.1-.9 0-2 1.5-3.6 3.5-3.7h.2c-.1 0 .1-.1.5-.3.2-.1.4-.2.7-.3.3-.2.7-.4 1.2-.6.8-.4 1.7-1 2.7-1.8.4-.3.9-.7 1.3-1.1.1-.1.1-.1.2-.1.5-.5 1-1 1.4-1.5.5-.5.9-1.1 1.3-1.8.4-.6.8-1.3 1.2-2 .4-.7.7-1.5 1-2.3.1-.3.2-.7.4-1.1.2-.5.3-.9.5-1.4.3-.9.5-1.8.7-2.7.1-.5.2-.9.3-1.4.1-.5.1-1 .2-1.5.1-1 .2-2 .3-3.1 0-.5.1-1 .1-1.6V136.2v.1-1.8-2.1c0-.7 0-1.4.1-2.1.1-1.3.2-2.7.4-4.1.1-.6.2-1.1.3-1.7 1.1-5.4 1.3-8.9 1.3-8.9 0-.3-.2-.6-.5-.6h-.1c-.3 0-.5.2-.5.5 0 0-.2 2.8-1 7.2-.6.3-1.1.6-1.8 1-1.3.8-2.7 1.7-4.2 2.7-.8.5-1.5 1-2.3 1.6-1.1.7-2.2 1.5-3.4 2.3-.2.9-1 2.1-2.2 2.9-1.5 1.1-3.2 1.5-4.1 1-1.4.8-2.8 1.5-4.2 2.2-1 .4-2 .9-3 1.2-.5.7-1.4 1.4-2.5 1.8-1.8.7-3.6.6-4.3-.2h-.2c-.5 0-1 .1-1.5.1h-1.8c-1.1 0-2.2-.2-3.2-.3-.4-.1-.7-.2-1.1-.2 0 .2 0 .4-.2.6-.2.4-.7.6-1.4.7-1.3-2.1-3.3-3.8-5.6-4.7-.3-.1-.5-.2-.8-.3l-.6-5.5-.1-1 .2-.2c.4-.4.7-.8 1-1.3.2-.3.3-.6.4-1 .1-.2.1-.4.1-.5 2.5.8 6.6 2.4 10
.6 2.4 1.2 0 2.4-.2 3.5-.5 1.2-.7 2.5-1.6 3.7-2.6.2-.2.5-.4.7-.6 1-.9 2-1.8 3-2.9.6-.6 1.2-1.3 1.8-2l1.8-2.1c.6-.7 1.2-1.4 1.8-2.2.6-.7 1.2-1.5 1.9-2.2 1.3-1.5 2.5-2.9 3.9-4.3.3-.4.7-.7 1.1-1.1 1.9.4 3.6.6 5.2.7 1.2.1 2.3.1 3.3.1 4.3 0 7-.7 7.2-.7.3-.1.5-.4.4-.7-.1-.2-.2-.3-.4-.4h-.3s-2 .5-5.3.6c-2.4.1-5.6 0-9.2-.6l.1-.1c-.1 0-.2 0-.3-.1l-1-.2c-.7-.2-1.3-.4-2-.6-.7-.2-1.3-.5-1.9-.7l-1.8-.9c-1.8-.9-3.4-2-4.9-3.2-.8-.7-1.6-1.4-2.3-2.1-.2.4-.4.6-.7.8-1.1.5-2.7-.8-3.5-2.9-.6-1.6-.7-3.1-.1-4-.4-.8-.8-1.7-1.1-2.5-.1-.2-.2-.5-.2-.7-.1 0-.2.1-.3.1-.8.1-1.7-.1-2.3-.6.2.7.4 1.4.7 2 .8 2 1.9 4 3.2 5.9.8 1.1 1.6 2.1 2.4 2.9.8.9 1.8 1.8 2.9 2.7 2.2 1.8 4.6 3.3 7.3 4.4.6.3 1.2.5 1.9.7-1 1.1-2.1 2.3-3.4 3.8-.7.8-1.3 1.5-1.9 2.3-1.8 2.2-3.6 4.2-5.4 6.1-1.3 1.4-2.4 2.5-3.5 3.4-1.1.9-2.1 1.7-3.2 2.3-.8.2-1.7.4-2.6.4-2.9 0-6-1.1-8.4-1.8-.9-.3-1.7-.6-2.3-.7 0-.1 0-.3-.1-.4-.1-.3-.4-.4-.7-.4-.1 0-.1.1-.2.1-.2.1-.2.4-.2.6.4 1.2.3 2.3-.3 3.4-1 1.7-3.2 2.9-4.9 3.3-2.5.6-4.4.3-5.6-.7-1.5-1.2-1.4-3.3-1.4-3.3
0-.3-.2-.5-.4-.5h-.2c-.3 0-.6.2-.6.5 0 .1-.1 2.6 1.8 4.2.6.5 1.4.9 2.3 1.1l.5 4.8c-1.3.7-2.5 1.7-3.4 2.8-1.9 2.4-2.8 5.4-2.5 8.4.5 4.6 3.6 8.4 8 9.8.2.1.3.1.5.1h.2c.4 0 .8-.3 1.1-.6.3-.3.4-.8.4-1.2v-.2l-.8-7.7c0-.2.1-.3.1-.3 0-.1.1-.1.3-.2l2-.2.8-.1.8-.1c.3 0 .5.2.5.4l.8 7.9c.1.8.8 1.5 1.6 1.5h.2c.2 0 .4-.1.6-.2.4-.2.9-.5 1.3-.9.8-.6 1.4-1.2 2-1.9 1.9-2.4 2.8-5.4 2.5-8.4L27 143c-.2-.9-.5-1.7-.9-2.4 1.8.5 3.6.8 5.4.8zm-5.2 3.6c.3 2.9-.6 5.6-2.3 7.6-.5.6-1.1 1.2-1.8 1.7l-.8-7.7c0-.4-.2-.8-.5-1-.3-.2-.6-.4-1-.4h-.2l-3.6.4-2 .2c-.4 0-.8.3-1 .6-.3.3-.4.7-.3 1.1l.8 7.7c-3.2-1.5-5.5-4.6-5.9-8.3-.3-2.9.6-5.6 2.3-7.6 1-1.2 2.3-2.2 3.7-2.9l-.6-5.3c.4-.1.7-.1 1.1-.2 1.1-.2 2.4-.8 3.5-1.5l.7 6.5c4.2 1 7.5 4.5 7.9 9.1z" fill="url(#v)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M114.1 97.1c-.5-.4-1.2-.2-1.6.3-.3.5-.2 1.1.2 1.5 0 0 0 .1.1.1.1.1 1.2.9 3 1.8.3.2.7.4 1.1.6l1.2.6c3.3 1.4 7.9 2.9 13.2 2.9 1.5 0 2.9-.1 4.5-.4.6-.1 1-.7.9-1.3-.1-.6-.7-1-1.3-.9-3.3.5-6.5.3-9.4-.2-2-.4-3.9
-.9-5.5-1.5-3.8-1.7-6.3-3.5-6.4-3.5z" fill="url(#w)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M24.8 135.4c-1.9-1.1-4-1.2-4.6-.2v.1c2.4.9 4.3 2.6 5.6 4.7.6-.1 1.1-.3 1.4-.7.1-.2.1-.4.2-.6-.1-1.1-1.1-2.4-2.6-3.3z" fill="url(#x)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M148.5 99.1c-1.6 1.2-2.5 2.9-2.1 3.9 0 .1.1.2.1.3.6.8 2.2.7 3.7-.1.3-.2.5-.3.8-.5.5-.4.9-.8 1.2-1.2.9-1.1 1.2-2.3.7-3-.1-.2-.3-.3-.5-.4-.8-.5-2.4-.1-3.9 1z" fill="url(#y)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M42.4 135.7c-.4-1.1-2.5-1.3-4.5-.5-2.1.8-3.4 2.4-2.9 3.5.1.1.1.2.2.3.7.8 2.5.9 4.3.2 1.1-.5 2-1.1 2.5-1.8.4-.6.6-1.2.4-1.7z" fill="url(#z)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M55.3 128.9c-.7-1-2.7-.7-4.5.6-1.8 1.3-2.7 3.2-2 4.1.1.2.3.3.4.4.9.5 2.6.1 4.1-1 1.2-.9 2-2 2.2-2.9.1-.5 0-.9-.2-1.2z" fill="url(#A)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M157.7 80.4c-.6 2.1-.1 4.1 1.1 4.4.3.1.5 0 .8-.1 1-.3 1.9-1.6 2.4-3.3.
6-2.1.1-4.1-1.1-4.4-1.2-.2-2.6 1.3-3.2 3.4z" fill="url(#B)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M41 96.3c-.1-.4-.2-.9-.4-1.3-.8-1.9-2.1-3.1-3.2-3-.1 0-.2 0-.3.1-.3.1-.5.3-.6.6-.5.9-.5 2.4.1 4 .8 2.1 2.4 3.4 3.5 2.9.3-.1.6-.4.7-.8.4-.7.4-1.6.2-2.5z" fill="url(#C)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M164.5 52.7c.2.2.6.4.9.4.9.1 2.1-.4 3.2-1.4v-.1l-1.4-4.3c-.4.3-.9.6-1.3 1-1.6 1.5-2.2 3.5-1.4 4.4z" fill="url(#D)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M84 141c-.7 2.1-.4 4.1.7 4.5.2.1.4.1.7 0 1-.2 2.1-1.4 2.7-3.1.7-2.1.4-4.1-.7-4.5h-.3c-1.1-.1-2.4 1.2-3.1 3.1z" fill="url(#E)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M73.7 161.2c-1.6 1.6-2.1 3.5-1.3 4.4 0 0 .1.1.2.1.9.6 2.7 0 4.2-1.5s2.1-3.3 1.4-4.2c0-.1-.1-.1-.1-.2-.9-.8-2.9-.2-4.4 1.4z" fill="url(#F)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M139.6 130.5c.8-1-.1-2.9-1.9-4.2-1.7-1.2-3.6-1.5-4.4-.7l-.1.1c-.6.8-.1 2.1 1 3.2.3.3.6.6 1 .9.
2.2.5.3.7.5 1.4.9 3 1 3.7.2z" fill="url(#G)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M149 138.6c1.7.7 3.3.6 4.1 0 .2-.1.4-.3.4-.5.4-1.1-.9-2.7-2.9-3.5-2.1-.8-4.1-.6-4.5.5 0 .1-.1.3-.1.4-.1 1 1.1 2.3 3 3.1z" fill="url(#H)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M72 105.8c.7-.3 1.4-.6 2.1-1 3.2-1.6 6.7-5.7 6.9-5.8.4-.5.4-1.2-.1-1.6-.1-.1-.2-.1-.3-.2-.4-.2-.9-.1-1.3.3 0 0-1.6 1.8-3.5 3.4-.9.8-1.9 1.5-2.7 1.9-.1 0-.2.1-.3.1-.5.2-.9.4-1.3.6-3.6 1.6-6.2 2.1-6.3 2.1-.6.1-1 .7-.9 1.3 0 .1.1.2.1.2 3.3-.1 5.3-.6 5.3-.6h.3c.2-.1.5-.2.7-.3.4 0 .8-.2 1.3-.4z" fill="url(#I)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M11.6 117.5c-4.2-1-7.4-4.5-7.8-9.1-.3-2.9.6-5.6 2.3-7.6.5-.6 1.1-1.2 1.8-1.7l.8 7.7c.1.8.8 1.4 1.5 1.4h.2l2-.2 3.6-.4c.4 0 .8-.3 1-.6.3-.3.4-.7.3-1.1l-.8-7.7c3.2 1.5 5.5 4.6 5.9 8.3.3 2.9-.6 5.6-2.3 7.6-1 1.2-2.3 2.2-3.7 2.9l.4 3.7c.4.2.8.3 1.2.6l-.1-.6-.3-3.1c1.3-.7 2.5-1.7 3.4-2.8 1.9-2.4 2.8-5.4 2.5-8.4-.4-4-2.8-7.5-6.5-9.2l-1
.5-.6c-.2-.1-.3-.1-.5-.1h-.2c-.4 0-.8.3-1.1.6-.3.3-.4.8-.4 1.2l.8 7.9c0 .2-.1.3-.1.3 0 .1-.1.1-.3.2l-1.6.2-2 .2c-.3 0-.5-.2-.5-.4L9 99v-.2c-.1-.8-.8-1.5-1.6-1.5h-.2c-.2 0-.4.1-.6.2-1.3.7-2.4 1.7-3.3 2.8-1.9 2.4-2.8 5.4-2.5 8.4.5 4.7 3.7 8.5 8.1 9.9l.3 2.8c.8-.5 1.8-.8 2.9-1l-.5-2.9z" fill="url(#J)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M18.3 135.9l-.7-6.5c-1.1.8-2.4 1.3-3.5 1.5-.4.1-.7.1-1.1.2l.6 5.3c-1.5.7-2.7 1.7-3.7 2.9-1.7 2.1-2.6 4.8-2.3 7.6.4 3.8 2.7 6.8 5.9 8.3l-.8-7.7c0-.4.1-.8.3-1.1.3-.3.6-.5 1-.6l2-.2 3.6-.4h.2c.4 0 .8.1 1 .4.3.2.5.6.5 1l.8 7.7c.7-.5 1.3-1.1 1.8-1.7 1.7-2.1 2.6-4.8 2.3-7.6-.3-4.6-3.6-8.1-7.9-9.1z" fill="url(#K)" fill-rule="nonzero" transform="translate(81 15)"/><path fill="url(#L)" fill-rule="nonzero" d="M171.1 22.7l-.3-.8-1.6 1.4" transform="translate(81 15)"/><path fill="url(#M)" fill-rule="nonzero" d="M158.9 18.3l.3 1.1 2.2-1.9" transform="translate(81 15)"/><path d="M168.9 16.1l-.3-.9-2 .7-6.4 5.4c-.1.1-.2.1-.3.2l.6 1.8 8.1-6.9c.1-
.2.2-.3.3-.3z" fill="url(#N)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M161.1 25.2l.2.7 2.7-.9 5.8-4.9c.1-.1.2-.1.3-.2l-.6-1.8-8.1 6.9c-.1.1-.2.1-.3.2z" fill="url(#O)" fill-rule="nonzero" transform="translate(81 15)"/><path fill="url(#P)" fill-rule="nonzero" d="M165 37.1l.4 1.2 2.5-2.1" transform="translate(81 15)"/><path d="M170.3 41.7l-2.7 2.3c-.1.1-.2.1-.3.2l.6 1.8 2.6-2.2c-.2-.8-.2-1.5-.2-2.1z" fill="url(#Q)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M175.1 35l-.4-1.1-1.6.5-6.7 5.7c-.1.1-.2.1-.3.2l.6 1.8 8.1-6.9c.1-.1.2-.1.3-.2z" fill="url(#R)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M171.5 45.5l-2.6 2.2c-.1.1-.2.1-.3.2l.6 1.8 3.7-3.1c-.6-.3-1-.7-1.4-1.1z" fill="url(#S)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M164 25l5.2-1.7 1.6-1.4.3-.3c.4-.4.5-1 .1-1.5-.3-.3-.7-.4-1.1-.3-.1 0-.2.1-.3.2l-5.8 5z" fill="url(#T)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M166.6 15.8l-5.2 1.7-2.2 1.9-.3.3c-.4
.4-.5 1-.1 1.5l.3.3c.2.1.5.1.8.1.1 0 .2-.1.3-.2l6.4-5.6z" fill="url(#U)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M175 47.4c-.8-.2-1.6-.5-2.2-.9l-3.7 3.1-.3.3c-.4.4-.5 1-.1 1.5l.3.3c.3.1.6.1.8 0 .1 0 .2-.1.3-.2l4.9-4.1z" fill="url(#V)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M173.2 34.5l-5.2 1.7-2.5 2.1-.3.3c-.4.4-.5 1-.1 1.5l.3.3c.2.1.5.1.8.1.1 0 .2-.1.3-.2l6.7-5.8z" fill="url(#W)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M170.3 41.7c.1-1.1.6-2 .6-2 .1-.3.5-.4.7-.2.1 0 .1.1.2.1 1.1-1.3 2.8-2.3 4.5-3 .2-.4.2-.9-.1-1.2-.3-.3-.7-.4-1.1-.3-.1 0-.2.1-.3.2l-8.1 6.9-.3.3c-.4.4-.5 1-.1 1.5l.3.3c.2.1.5.1.8.1.1 0 .2-.1.3-.2l2.6-2.5z" fill="url(#X)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M171.5 45.5c-.3-.4-.6-.7-.8-1.2-.1-.2-.2-.4-.2-.7l-2.6 2.2-.3.3c-.4.4-.5 1-.1 1.5l.3.3c.2.1.5.1.8.1.1 0 .2-.1.3-.2l2.6-2.3z" fill="url(#Y)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M161.1 25.2c.1 0 .2-.1.3-.2l8.1-6.9.
3-.3c.4-.4.5-1 .1-1.5-.3-.3-.7-.4-1.1-.3-.1 0-.2.1-.3.2l-8.1 6.9-.3.3c-.4.4-.5 1-.1 1.5l.3.3c.3 0 .5.1.8 0z" fill="url(#Z)" fill-rule="nonzero" transform="translate(81 15)"/><path fill="url(#aa)" fill-rule="nonzero" d="M165.6 4.8l-11 3.6 3 9.2 11-3.7" transform="translate(81 15)"/><path fill="url(#ab)" fill-rule="nonzero" d="M174.8 32.7l-3-9.1-11 3.6 3 9.2" transform="translate(81 15)"/><path d="M160.8 38.5l3.2-1.1.3 1-.2.1c-1.5.7-3.2 1.6-5.1 2.9-2.4 1.6-4.4 3.1-6.3 4.9-2.5 2.5-4.6 5.2-6.1 8.2-1.8 3.5-3 7.4-3.5 11.5 0 .4-.1.8-.1 1.3v3.9c-.1 1.1-.2 2.3-.4 3.8-.4 2.3-1.1 4.5-2 6.4-.4.8-.9 1.5-1.4 2.1-.4.5-.9 1-1.6 1.5-.9.7-1.9 1.1-3.1 1.3h-.1c-.5.1-.9.1-1.3.1h-.2c-.6 0-1.3-.1-1.8-.2h-.1c-1.2-.3-2.3-.9-3.2-1.7-.5-.4-.9-.9-1.3-1.4-.3-.4-.6-.9-1-1.5-.1-.1-.1-.3-.2-.4-.1-.1-.1-.2-.2-.4l-.3-.6-.1-.2-.1-.2v-.1l-.1-.2c0-.1-.1-.1-.1-.2-.1-.2-.2-.3-.2-.5v-.1c-.1-.3-.3-.5-.4-.8v-.1l-.3-.6c-.2-.3-.3-.6-.5-.9 0-.1-.1-.1-.1-.2-.1-.7-.1-1.5-.1-2.3 7.3-2.6 12.2-9.4 12.2-17.3 0-5.2-2.1-10-5.9-13.5v-1
.1c0-19.5-15.9-35.4-35.4-35.4S58.3 22.4 58.3 41.9V43c-3.3 3.1-5.4 7.2-5.8 11.6l2.2.9c.1-1.5.4-3 .9-4.4.4-1.1.9-2.2 1.5-3.2.2-.4.5-.7.7-1.1.5-.7 1.1-1.4 1.7-2 .3-.3.6-.6 1-.9 0-.7-.1-1.4-.1-2.1 0-2.3.2-4.5.7-6.7.2-1.1.5-2.1.8-3.2.5-1.6 1.1-3.1 1.8-4.5.5-1 1-1.9 1.5-2.8.6-.9 1.2-1.8 1.8-2.6.3-.4.6-.8 1-1.3 4.4-5.3 10.4-9.3 17.3-11 2-.5 4-.8 6.2-1 .7 0 1.4-.1 2.1-.1 2.1 0 4.1.2 6 .6.7.1 1.3.3 1.9.4.2.1.4.1.6.2 2.8.8 5.5 1.9 8 3.3 1.2.7 2.4 1.5 3.6 2.4 1.1.9 2.2 1.8 3.2 2.8 4 4 7 9.1 8.6 14.8.1.2.1.4.2.6.6 2.6 1 5.2 1 8 0 .7 0 1.4-.1 2.1 1.8 1.5 3.3 3.3 4.3 5.5 1 2.1 1.6 4.5 1.6 7 0 5.7-2.9 10.7-7.4 13.5-.7.5-1.5.9-2.3 1.3-.7.3-1.4.5-2.1.7-1.3.2-2.4.3-3 .3h-.5c-.3 0-.6.3-.6.6s.2.6.6.6h.3c.5 0 1.5-.1 2.8-.3.1 1.2.1 2.4.2 3.5.1.2.2.3.3.5.1.2.2.5.4.7.1.2.3.5.4.8.1.3.3.5.4.8.1.1.1.3.2.4.1.1.2.3.2.4.1.1.1.3.2.5s.2.3.2.5c.1.3.3.6.5.9l.6.9c.2.3.4.6.7.9.5.6 1 1.2 1.6 1.7 1 .8 2.1 1.5 3.3 1.9.3.1.5.2.8.3.7.2 1.5.3 2.2.3h.4c.6 0 1.2-.1 1.8-.2.7-.1 1.4-.3 2.1-.6.7-.3 1.3-.7 2-1.1.6-.5 1.3-1.1 1.9-
1.8.6-.7 1.2-1.6 1.7-2.6 1-2 1.8-4.4 2.3-7.1.2-1.3.4-2.7.5-4.1V68.8 67c0-.5.1-1.1.1-1.6.4-3.9 1.6-7.6 3.2-10.7.4-.8.8-1.5 1.3-2.2l1.5-2.1c.7-.9 1.5-1.8 2.2-2.6l.8-.8c2-1.9 4-3.4 5.8-4.6l.1-.1c1.4-.9 2.7-1.6 3.8-2.2.3-.2.7-.3 1-.5l1.3 3.9.4 1.1.6 1.7 1.4 4.3v.1c-1.1.9-2.3 1.4-3.2 1.4l-1.5 2.1c-.5.8-1 1.7-1.4 2.6-.4.9-.8 1.8-1.1 2.7-.1.5-.3.9-.4 1.4-.3 1.5-.5 3-.4 4.6v1.7c0 .4.1.8.1 1.2 0 .5.1.9.1 1.4.1 1.9.1 3.8 0 5.8v.4c1.1.3 1.6 2.3 1.1 4.4-.4 1.7-1.4 3-2.4 3.3-.4 1.4-.8 2.8-1.4 4.3-.2.5-.4 1-.7 1.6-.7 1.6-1.6 3.1-2.6 4.6-.7 1-1.5 2-2.3 2.9.2.1.4.2.5.4.5.7.2 1.9-.7 3 1.7-1.5 3.1-3.2 4.4-4.9 1.4-2 2.6-4.2 3.5-6.6 1.6-4 2.6-8.4 2.9-13.1.1-2 .1-4.1 0-6.1 0-.3 0-.7-.1-1v-.4l-.1-1.2V66.3v0-.1-.4-.3c0-2 .2-3.8.7-5.4.3-.9.7-1.8 1-2.4.4-.8.8-1.5 1.3-2.3.5-.7 1-1.5 1.5-2.2.5-.6 1-1.2 1.6-1.9.4.7 1 1.3 1.8 1.7.5.2 1.1.4 1.7.4.4 0 .8-.1 1.2-.2l4.4-1.4c1-.3 1.8-1 2.3-2 .5-.9.6-2 .2-3l-.2-.7c-.4.1-.7.2-1.1.2l.3.8c.5 1.5-.3 3.1-1.8 3.6l-4.4 1.4c-.3.1-.6.1-.9.1-1 0-2-.6-2.5-1.5-.3.1-.6.1-.8 0-.1-
.1-.2-.1-.3-.3-.4-.4-.3-1.1.1-1.5l.3-.3-.6-1.8c-.3.1-.5.1-.8-.1-.1-.1-.2-.1-.3-.3-.4-.4-.3-1.1.1-1.5l.3-.3-.6-1.8c-.3.1-.5.1-.8-.1-.1-.1-.2-.1-.3-.3-.4-.4-.3-1.1.1-1.5l.3-.3-.6-1.8c-.3.1-.5.1-.8-.1-.1-.1-.2-.1-.3-.3-.4-.4-.3-1.1.1-1.5l.3-.3-.4-1.2 2.9-1 5.2-1.7 1.6-.5.4 1.1c.4-.1.8 0 1.1.3.3.4.3.9.1 1.2.2-.1.3-.1.5-.2l-.3-.9-.6-2 3.2-1.1c.9-.3 1.6-.9 2-1.7.4-.8.5-1.7.2-2.6l-1.6-4.8c-.6-1.8-2.5-2.7-4.3-2.2l-3.2 1.1-2.5-7.5 3.2-1.1c.9-.3 1.6-.9 2-1.7.1-.2.2-.4.2-.6.1-.2.1-.4.1-.6 0-.4 0-.9-.2-1.3l-1.6-4.8c-.3-.9-.9-1.6-1.7-2-.8-.4-1.7-.5-2.6-.2l-18.3 6c-1.8.6-2.7 2.5-2.2 4.3l1.6 4.8c.3.9.9 1.6 1.7 2 .5.2 1 .4 1.5.4.4 0 .7-.1 1.1-.2l3.2-1.1 2.5 7.5-3.2 1.1c-.9.3-1.6.9-2 1.7-.4.8-.5 1.7-.2 2.6l1.6 4.8c.3.9.9 1.6 1.7 2 .4.2.9.3 1.4.3h.2c.3 1.9.6 1.8 1 1.7zm14.9-16.2c1.2-.4 2.5.3 2.9 1.5l1.6 4.8c.2.6.1 1.2-.1 1.7-.3.5-.7.9-1.3 1.1l-2.8.9-3-9.2 2.7-.8zm-6.2-18.8c.6-.2 1.2-.1 1.7.1.5.3.9.7 1.1 1.3l1.6 4.8c.2.6.1 1.2-.1 1.7-.3.5-.7.9-1.3 1.1l-2.8.9-3-9.2 2.8-.7zm-11.7 14.6l-3.4 1.1c-1.5.5-3.
1-.3-3.6-1.8l-1.6-4.8c-.5-1.5.3-3.1 1.8-3.6l3.4-1.1.2.5 11-3.6 3 9.2-11 3.6.2.5zm2.2 6.8c-.4-.4-.3-1.1.1-1.5l.3-.3-.6-1.8c-.3.1-.5.1-.8-.1-.1-.1-.2-.1-.3-.3-.4-.4-.3-1.1.1-1.5l.3-.3-.3-1 2.5-.8 5.2-1.7 2-.7.3.9c.4-.1.8 0 1.1.3.4.4.3 1.1-.1 1.5l-.3.3.6 1.8c.4-.1.8 0 1.1.3.4.4.3 1.1-.1 1.5l-.3.3.2.8-1.9.6L164 25l-2.7.9-.2-.7c-.3.1-.5.1-.8-.1-.1 0-.2-.1-.3-.2zm-3 11.3l-1.6-4.8c-.5-1.5.3-3.1 1.8-3.6l3.4-1.1.2.5 11-3.6 3 9.2-11 3.6.2.5-3.4 1.1c-1.5.5-3.1-.3-3.6-1.8z" fill="url(#ac)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M164 36.9l-.2-.5-3-9.2-.2-.5-3.4 1.1c-1.5.5-2.3 2.1-1.8 3.6l1.6 4.8c.5 1.5 2.1 2.3 3.6 1.8l3.4-1.1z" fill="url(#ad)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M154.4 7.9L151 9c-1.5.5-2.3 2.1-1.8 3.6l1.6 4.8c.5 1.5 2.1 2.3 3.6 1.8l3.4-1.1-.2-.5-3-9.2-.2-.5z" fill="url(#ae)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M253.5 27.7c.6-.2 1-.6 1.3-1.1.3-.5.3-1.2.1-1.7l-1.6-4.8c-.2-.6-.6-1-1.1-1.3-.5-.3-1.2-.3-1.7-.1l-2.8.9 3
9.2 2.8-1.1zM259.7 46.5c.6-.2 1-.6 1.3-1.1.3-.5.3-1.2.1-1.7l-1.6-4.8c-.4-1.2-1.7-1.8-2.9-1.5l-2.8.9 3 9.2 2.9-1z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M190.7 121.8c0-.2-.1-.4-.2-.6-.1-.3-.3-.5-.5-.7l-3.2-2.6c-.1-.1-.2-.1-.3-.2-.1-.1-.3-.1-.4-.2-.2-.1-.4-.1-.7-.1h-.2c-.4.1-.8.3-1.1.7l-2.2 2.7-.4-.4c-.9-.7-1.9-1.2-3-1.5-3-.8-6.3.2-8.7 2.5 1.8-.1 3.8.3 5.5 1.3.8-.2 1.5-.2 2.3 0 .6.1 1.1.4 1.5.8 1.5 1.2 1.9 3.4 1.1 5.5-.3.7-.8 1.4-1.5 2.3-.8.7-1.7 1.3-2.6 1.6-.9.3-1.8.3-2.6.1-.1 0-.1-.1-.2-.1-.5-.2-.9-.4-1.3-.7-.2-.2-.4-.3-.5-.5-.8 0-1.6 0-2.3-.1.1 0 .2.1.3.1.3.1.5.4.4.7-.1.2-.3.4-.5.4h-.1c-.7-.2-1.3-.4-1.9-.6l.6 1.2c-1.1-.3-2.9 0-4.3.8-1.9 1.1-3 2.9-2.4 3.9l.3.3c.8.7 2.6.6 4.3-.4 1.5-.9 2.9-2.2 3.1-3.2.2.2.4.4.6.5.3.2.5.4.8.6.7.4 1.4.7 2.2.9.1 0 .3 0 .4.1 3.3.7 6.9-.6 9.2-3.5.2-.2.3-.4.5-.7l3-3.7 4.6-5.6c.3-.6.5-1.1.4-1.6z" fill="url(#af)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M126.4 68.5l-.1-.1c-.2-.3-.5-.6-.8-.7-.2-.1-.3-.1-.5-.1h-.2l-.1-.1c-7.8-4.7-17.8
-11.7-21.3-17.9-.2-.5-.4-.9-.6-1.2-.5-.8-1.1-1.3-1.8-1.6-1.9-.8-4.5.3-7.3 3-2.9 2.8-5.5 7-7.5 11.8-3.9 9.7-3.8 19.3.3 20.9 1.2.5 2.7.3 4.3-.7l.1-.1c6.9-1.7 18.4.3 26.8 2.2h.2l.1.2c.2.2.4.4.6.5.4.2.8.1 1.3-.1l.2-.1h.2c.2.1.4.1.6.2 1.8-1.1 3.8-3.7 5.1-7 1.4-3.5 1.8-6.8 1.1-8.8-.2-.1-.4-.3-.7-.4v.1zm-23.7-6.6s0 .1 0 0c-.1.6-.3 1.2-.4 1.7 0 .1 0 .2-.1.3-.1.5-.3 1-.5 1.5 0 .1-.1.2-.1.3-.2.6-.4 1.2-.7 1.8-.2.6-.5 1.1-.7 1.7 0 .1-.1.2-.1.3-.3.5-.5 1-.8 1.5-2.9 5.3-6.6 8.7-9.6 8.7-.5 0-.9-.1-1.4-.3-1.9-.8-3-3.1-3-6.4-.1-3.2.7-7.1 2.3-11 1.6-3.9 3.7-7.2 6-9.5 2.4-2.4 4.8-3.3 6.7-2.5 2.8 1.2 3.7 6 2.4 11.9z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M39.9 69.8c-.2-.1-.4-.1-.6-.2h-.2l-.2.1c-.5.2-1 .2-1.3.1-.2-.1-.4-.3-.6-.5l-.1-.2h-.2c-8.4-1.9-19.9-3.8-26.8-2.2l-.1.1c-1.6.9-3.1 1.1-4.3.7-4.1-1.7-4.2-11.2-.3-20.9 2-4.8 4.6-9 7.5-11.8 2.7-2.6 5.4-3.7 7.3-3 .7.3 1.3.8 1.8 1.6.2.3.4.7.6 1.2 3.5 6.2 13.5 13.1 21.3 17.9l.1.1h.2c.2 0 .4 0 .5.1.3.1.5.3.8.7l.1.1.1.1c.2.1.5.3.7.4-.3-.9-.7-1.5-1.4-1.8
l1.9.8c-.2-.1-.3-.2-.5-.3-.3-.5-.7-.8-1.2-1-.2-.1-.5-.2-.8-.2-6.3-3.8-17.2-11.2-20.8-17.3-.2-.5-.4-.9-.7-1.3-.6-1-1.4-1.6-2.3-2-2.4-1-5.4.2-8.5 3.2-3 2.9-5.7 7.2-7.8 12.2C-.2 57.1.2 66.9 5 68.9c1.5.6 3.3.4 5.2-.7 6.6-1.6 17.8.3 26 2.1.3.3.6.5.9.7.5.2 1.1.2 1.7.1l-1.5-.6c.9 0 1.7-.2 2.6-.7z" fill="url(#ag)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M133.7 88l2.5 1c1.1.5 3.4-1.5 4.9-5.1 1.5-3.6 1.2-6.6.1-7.1l-2.5-1c0 1.9-.5 4.2-1.4 6.5-1 2.4-2.3 4.4-3.6 5.7z" fill="#F9F9FA" fill-rule="nonzero"/><path d="M19.3 35c-1.9-.8-4.2.1-6.7 2.5-2.3 2.3-4.5 5.6-6 9.5-1.6 3.9-2.4 7.8-2.3 11 .1 3.4 1.2 5.7 3 6.4.4.2.9.3 1.4.3 3 0 6.8-3.4 9.6-8.7.3-.5.5-1 .8-1.5.1-.1.1-.2.1-.3.3-.5.5-1.1.7-1.7.2-.6.5-1.2.7-1.8 0-.1.1-.2.1-.3.2-.5.3-1 .5-1.5 0-.1 0-.2.1-.3.2-.6.3-1.1.4-1.7v-.1c1.3-5.8.4-10.6-2.4-11.8zm1.6 10.3c-.4 2.2-1 4.5-1.9 6.8-.9 2.3-2.1 4.4-3.3 6.2h-.1c-.9-.4-1.1-3.3.5-7.4.7-1.8 1.7-3.4 2.7-4.5.7-.8 1.4-1.2 1.9-1.2l.2.1c-.1-.1 0-.1 0 0z" fill="url(#ah)" fill-rule="nonzero" tran
sform="translate(81 15)"/><path d="M18.7 46.4c-1 1.1-2 2.7-2.7 4.5-1.6 4-1.4 7-.5 7.4h.1c1.3-1.8 2.4-4 3.3-6.2.9-2.3 1.6-4.6 1.9-6.8H20.5c-.4-.1-1.1.3-1.8 1.1z" fill="url(#ai)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M43.6 77.3c0-.1.1-.3.1-.4.1-.3.3-.5.6-.5.1 0 .2.1.3.2.2-.3.5-.5.7-.7.4-.5.8-.8 1.1-1.1.1-.1.3-.2.3-.2.1-.1.1-.1.2-.1s0 0 .1-.1H47.9c.2.1.3.1.5.1l.2.1c.9.4 2 0 3.2-.9.3-.2.6-.5.9-.8 1.3-1.3 2.6-3.3 3.5-5.7 1-2.4 1.4-4.7 1.4-6.5 0-.4 0-.9-.1-1.2-.2-1.4-.7-2.5-1.6-2.8l-1.8-.7-2.2-.9-1.9-.8-.8-.3-2.8-1.1-1.9-.8c.7.3 1.1.9 1.4 1.8.6 2 .3 5.4-1.1 8.8-1.3 3.3-3.3 5.9-5.1 7-.9.6-1.8.7-2.5.4l1.5.6h.1c-.1.2-.3.3-.4.5-.1.1-.2.2-.2.3 2.5 1.1 4.9 3.4 5.4 5.8z" fill="url(#aj)" fill-rule="nonzero" transform="translate(81 15)"/><g fill-rule="nonzero"><path d="M283.2 146.6l-6.8.9-5.3-38.5c-.4-3.1 1.6-6 4.7-6.7.2-.1.5.1.5.4l6.9 43.9z" fill="#C8C8CC"/><path d="M292.8 107.4c.2-.2.5-.2.6 0 2.1 2.3 2.1 5.9-.1 8.2L266.8 144l-5-4.7 31-31.9z" fill="#E1E1E6"/><path d="M.9 10.6
c-.1 2.6.8 4.9 2.6 6.5.9.8 1.9 1.4 3 1.8 3.5 1.2 7.5 0 10.2-2.9l.6-.6 8.6-9.2c.4-.4.6-.9.5-1.4 0-.5-.2-1-.6-1.4L22.7.5c-.2-.2-.5-.4-.7-.4-.2-.1-.5-.1-.7-.1-.5 0-1 .2-1.4.6l-2.5 2.6-.4-.4c-.9-.8-1.9-1.4-3-1.8C10.5-.2 6.5 1 3.8 3.9 2 5.7 1 8.1.9 10.6zm5.8-4c1.6-1.7 4.1-2.5 6-1.8.6.2 1.1.5 1.5.9 1.5 1.4 1.7 3.7.8 5.8-.4.7-.9 1.5-1.7 2.3-1.6 1.4-3.8 2-5.5 1.4-.6-.2-1.1-.5-1.5-.9-.9-.9-1.4-2.1-1.3-3.5 0-1.5.6-3 1.7-4.2z" transform="translate(246 133)" fill="url(#ak)"/><path d="M.7 3.7l1.7 12.5c0 .3 0 .6.1.9C3 21 5.6 24.2 9 25.3c1.2.4 2.4.5 3.7.3 4.9-.7 8.2-5.6 7.5-11-.5-3.9-3.1-7.1-6.5-8.2-1.2-.4-2.4-.5-3.7-.3-.2 0-.4.1-.6.1l-.5-3.6c-.1-.8-.7-1.4-1.4-1.6-.3-.1-.6-.1-.9-.1l-4.2.6c-.5.1-1 .4-1.3.8-.3.3-.5.8-.4 1.4zm11.7 6.5c2 .6 3.4 2.6 3.7 4.9.4 3.2-1.4 6.1-4 6.4-.6.1-1.3 0-1.9-.2-1.8-.6-3.1-2.2-3.6-4.3v-.1c-.1-1.1-.2-2-.1-2.8.4-2.2 2-4 4-4.2.6 0 1.3.1 1.9.3z" transform="translate(274 137)" fill="url(#al)"/><path d="M277.1 126c1.2 0 2.3.9 2.3 2.2 0 1.2-.9 2.3-2.2 2.3-1.3 0-2.3-.9-2.3-2.2
0-1.2.9-2.2 2.2-2.3z" fill="#C8C8CC"/></g><path d="M36.2 88.9s.1 0 0 0l.2-.2.1-.1c.1-.2.3-.4.5-.6.2-.3.5-.7.8-1.2.3-.5.5-1 .7-1.5.2-.5.4-1.1.6-1.7 0 0 0-.1.1-.1.1-.2.2-.5.3-.7 0-.1.1-.1.1-.2h-.4c-1.4 0-2.8-.4-4.1-.7-1.1-.3-2-.8-2.8-1.3-.1.2-.1.4-.2.6-.1.4-.2.7-.3 1-.1.3-.2.6-.2.9-.1.3-.1.7-.2 1 0 .2-.1.4-.1.6v2.6c.1.7.5 1.3 1 1.7.6.5 1.4.8 2.3.6.1 0 .2-.1.3-.1.2-.1.4-.1.6-.2.4-.1.6-.3.7-.4z" fill="url(#am)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M176.3 36.6c-1.7.6-3.4 1.7-4.5 3 .2.2.2.4.1.6 0 0-1 2-.2 3.7.5 1.2 1.8 2 3.8 2.5.3.1.5.4.4.7-.1.3-.3.4-.5.4h-.1c-.1 0-.1 0-.2-.1l-4.8 4.1c-.1.1-.2.1-.3.2.5.9 1.5 1.5 2.5 1.5.3 0 .6 0 .9-.1l4.4-1.4c1.5-.5 2.3-2.1 1.8-3.6l-.3-.8c.4-.1.7-.1 1.1-.2.7-.2 1.4-.5 2-.9 3.7-2.4 3.3-8.5-2-10.3-.6-.2-1.8-.1-3.1.3-.2 0-.3.1-.5.2s-.3.1-.5.2z" fill="url(#an)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M166.8 122.9s-2.6 2.9-1.9 5.4c.4 1.4 1.8 2.5 4.2 3.2.7.1 1.5.1 2.3.1h.1c.9 0 1.7-.1 2.5-.3 1-.2 2-.6 2.7-1.2.5-.4.9-.9 1
.2-1.5 1-2.6-.4-4.6-2.6-5.8-1.6-.9-3.7-1.4-5.5-1.3-.7 0-1.4.2-2 .4-.3.1-.6.3-1 .6.1.1.1.3 0 .4z" fill="url(#ao)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M35.5 80.8c2.9.9 4.8.9 6.1.1 1-.6 1.7-1.8 2-3.6-.5-2.4-2.8-4.7-5.3-5.7-.8-.3-1.6-.6-2.3-.6-1.5-.1-4.1 1-5.2 3 .2.1.3.4.2.6-.1.2-1.2 4.5 4.5 6.2z" fill="url(#ap)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M6.9 125.8s-.1 2.1 1.4 3.3c1.2 1 3.1 1.2 5.6.7 1.7-.4 3.9-1.5 4.9-3.3.6-1 .7-2.2.3-3.4-.1-.2 0-.4.2-.6-.3-.5-.8-.9-1.3-1.2l-1.2-.6-.4-3.7c1.5-.7 2.7-1.7 3.7-2.9 1.7-2.1 2.6-4.8 2.3-7.6-.4-3.8-2.7-6.8-5.9-8.3l.8 7.7c0 .4-.1.8-.3 1.1-.3.3-.6.5-1 .6l-3.6.4-2 .2h-.2c-.8 0-1.5-.6-1.5-1.4l-.8-7.7c-.7.5-1.3 1.1-1.8 1.7-1.7 2.1-2.6 4.8-2.3 7.6.5 4.5 3.7 8 7.8 9.1l.3 2.9c-1.1.2-2.1.5-2.9 1-.2.1-.3.2-.5.3-.8.6-1.7 2-2 3.5.3.2.4.4.4.6z" fill="url(#aq)" fill-rule="nonzero" transform="translate(81 15)"/><path d="M170.9 39.7c0 .1-.4.9-.6 2-.1.6-.1 1.3.1 2 .1.2.1.4.2.7.2.4.5.8.8 1.2.4.4.8.7 1.3 1 .6.4 1.3.6 2.2.
9.1 0 .1 0 .2.1h.1c.3 0 .5-.2.5-.4.1-.3-.1-.6-.4-.7-1.9-.5-3.2-1.3-3.8-2.5-.8-1.7.2-3.7.2-3.7.1-.2.1-.5-.1-.6 0 0-.1-.1-.2-.1 0-.3-.3-.2-.5.1z" fill="url(#ar)" fill-rule="nonzero" transform="translate(81 15)"/></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/figure_customize.svg b/browser/extensions/onboarding/content/img/figure_customize.svg
deleted file mode 100644
index 0c0cb30df5dc..000000000000
--- a/browser/extensions/onboarding/content/img/figure_customize.svg
+++ /dev/null
@@ -1,561 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="295" height="238">
- <defs>
- <linearGradient id="a" x1="-678.179817%" x2="218.03211%" y1="-1879.5122%" y2="503.09878%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="b" x1="-2438.15968%" x2="713.035484%" y1="-2346.83281%" y2="705.8875%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="c" x1="-1876.47349%" x2="477.431325%" y1="-2215.7169%" y2="536.030986%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="d" x1="-300.502319%" x2="326.878731%" y1="-277.869139%" y2="301.876261%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="e" x1="-556.386842%" x2="471.897895%" y1="-1050.94952%" y2="809.757143%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="f" x1="-2301.11875%" x2="1769.175%" y1="-4460.38%" y2="3354.584%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="g" x1="-14090.38%" x2="5447.03%" y1="-14085.94%" y2="5451.47%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="h" x1="-1245.88053%" x2="483.093805%" y1="-2962.82857%" y2="1024.39796%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="i" x1="-4762.32308%" x2="1072.27051%" y1="-2525.31233%" y2="591.799315%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="j" x1="-419.785061%" x2="175.867683%" y1="-263.047589%" y2="146.541719%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="k" x1="-13945.16%" x2="5592.25%" y1="-13931.16%" y2="5606.26%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="l" x1="-93.8791876%" x2="171.036409%" y1="-368.29%" y2="383.149231%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="m" x1="-105.119971%" x2="175.589943%" y1="-106.702736%" y2="160.566895%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="n" x1="-4526.45652%" x2="3968.06957%" y1="-3864.98889%" y2="3371.08889%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="o" x1="-1590.58053%" x2="2387.43252%" y1="-835.835705%" y2="1325.72397%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="p" x1="-1174.27536%" x2="1657.23333%" y1="-1275.87873%" y2="1781.26242%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="q" x1="-8557.56%" x2="10979.85%" y1="-4234.38%" y2="5534.325%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="r" x1="-949.737079%" x2="1245.47865%" y1="-1023.81277%" y2="1336.75514%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="s" x1="-850.555238%" x2="1010.15048%" y1="-759.279881%" y2="912.10717%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="t" x1="-2526.775%" x2="962.048214%" y1="-2513.94763%" y2="949.261152%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="u" x1="-953.117868%" x2="406.88755%" y1="-1083.71008%" y2="471.112383%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="v" x1="-1736.94827%" x2="671.463404%" y1="-2238.58822%" y2="855.656147%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="w" x1="-9592.54%" x2="9944.87%" y1="-9613.77%" y2="9923.64%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="x" x1="-546.9251%" x2="669.232184%" y1="-637.97868%" y2="716.339388%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="y" x1="-2626.25%" x2="2515.17368%" y1="-10166.57%" y2="9370.85%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="z" x1="-26076.58%" x2="9092.02%" y1="-26064.58%" y2="9104.02%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="A" x1="-11996.8348%" x2="3293.86087%" y1="-4084.84179%" y2="1164.20299%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="B" x1="-1988.44219%" x2="759.104687%" y1="-1576.81875%" y2="621.219375%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="C" x1="-4889.30185%" x2="1623.40185%" y1="-2351.25495%" y2="817.087387%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="D" x1="-2655.5559%" x2="951.48%" y1="-6714.61282%" y2="2302.97692%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="E" x1="-11418.996%" x2="2648.448%" y1="-28603.67%" y2="6564.93%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="F" x1="-1067.54883%" x2="792.163033%" y1="-899.682353%" y2="691.657014%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="G" x1="-3245.82558%" x2="2272.05861%" y1="-2753.32267%" y2="1935.824%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="H" x1="-835.133806%" x2="827.684161%" y1="-835.133806%" y2="827.684161%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="I" x1="-4541.82131%" x2="1223.52295%" y1="-2322.54576%" y2="657.84322%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="J" x1="-2057.47051%" x2="889.742903%" y1="-1738.77914%" y2="791.335971%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="K" x1="-1278.62667%" x2="1189.34526%" y1="-1278.9986%" y2="1188.97333%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="L" x1="-6112.0075%" x2="2680.1425%" y1="-6270.03333%" y2="2747.55641%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="M" x1="-1115.93023%" x2="572.391158%" y1="-1175.6355%" y2="582.7945%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="N" x1="-9656.07586%" x2="2471.02759%" y1="-9322.84667%" y2="2400.02%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="O" x1="-7887.73698%" x2="3321.17237%" y1="-6188.2325%" y2="2603.9175%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="P" x1="-984.783738%" x2="288.77261%" y1="-1902.68288%" y2="506.125342%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="Q" x1="-2522.67732%" x2="1102.95155%" y1="-5039.01837%" y2="2138.24694%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="R" x1="-5921.7225%" x2="2870.4275%" y1="-6075.45385%" y2="2942.1359%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="S" x1="-5881.53%" x2="2910.62%" y1="-5881.26%" y2="2910.89%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="T" x1="-5841.3375%" x2="2950.8125%" y1="-5841.4525%" y2="2950.6975%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="U" x1="-7423.23691%" x2="3785.67244%" y1="-5801.6425%" y2="2990.5075%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="V" x1="-4020.34%" x2="1003.74571%" y1="-2527.16182%" y2="669.983636%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="W" x1="-4517.96032%" x2="1064.35714%" y1="-5480.38654%" y2="1282.80577%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="X" x1="-3834.66828%" x2="2163.11753%" y1="-3992.49299%" y2="2248.99581%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="Y" x1="-132.800878%" x2="141.123835%" y1="-126.933901%" y2="145.268963%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="Z" x1="-8624.4%" x2="10913.01%" y1="-4751.06111%" y2="6103.05556%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="aa" x1="-20576.83%" x2="14591.77%" y1="-11391.2944%" y2="8146.81667%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="ab" x1="-3210.85073%" x2="1716.38147%" y1="-3721.57455%" y2="1963.19067%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="ac" x1="-964.539164%" x2="305.324758%" y1="-1877.16986%" y2="531.638356%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="ad" x1="-5971.9075%" x2="2820.24%" y1="-7463.6%" y2="3526.5875%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="ae" x1="-3626.20024%" x2="2128.73795%" y1="-3780.54791%" y2="2217.23789%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="af" x1="-3545.17742%" x2="2127.17742%" y1="-3793.28448%" y2="2270.26724%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="ag" x1="-8571.16538%" x2="4955.21923%" y1="-4812.20217%" y2="2833.14565%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="ah" x1="-921.592388%" x2="295.314187%" y1="-948.070803%" y2="335.454745%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="ai" x1="-1521.4596%" x2="706.721231%" y1="-1247.46875%" y2="591.922626%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aj" x1="-678.258824%" x2="423.307164%" y1="-682.475952%" y2="429.068947%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="ak" x1="-6036.96%" x2="2755.19%" y1="-6038.3275%" y2="2753.82%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="al" x1="-876.033667%" x2="359.821607%" y1="-805.490909%" y2="336.346753%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="am" x1="-6523.57663%" x2="4813.74946%" y1="-5038.58141%" y2="3749.13318%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="an" x1="-2645.94937%" x2="963.166315%" y1="-6683.46667%" y2="2334.12564%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="ao" x1="-6631.98345%" x2="4705.34265%" y1="-5121.96932%" y2="3665.74527%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="ap" x1="-1435.66843%" x2="1068.42563%" y1="-2846.04456%" y2="2010.54343%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aq" x1="-2633.78646%" x2="975.329221%" y1="-6654.88205%" y2="2362.70769%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="ar" x1="-2206.3925%" x2="2189.6825%" y1="-2444.83034%" y2="2406.01103%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="as" x1="-5385.00363%" x2="1874.66412%" y1="-10484.884%" y2="3582.556%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="at" x1="-2391.91311%" x2="1397.1783%" y1="-5593.4125%" y2="3198.7375%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="au" x1="-2264.71662%" x2="1521.15732%" y1="-5306.3925%" y2="3485.7575%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="av" x1="-8124.26538%" x2="5402.11923%" y1="-4560.45%" y2="3084.89783%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aw" x1="-651.882139%" x2="479.56521%" y1="-1403.71323%" y2="934.962067%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="ax" x1="-782.651586%" x2="579.099454%" y1="-1688.18577%" y2="1133.37245%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="ay" x1="-2808.00445%" x2="930.963547%" y1="-4874.39455%" y2="1519.89636%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="az" x1="-3080.27111%" x2="827.351111%" y1="-4651.45333%" y2="1209.98%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aA" x1="-17842.03%" x2="17326.57%" y1="-17824.13%" y2="17344.47%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aB" x1="-4927.80617%" x2="7466.4141%" y1="-2177.67416%" y2="3371.61183%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aC" x1="-20583.89%" x2="14584.71%" y1="-5842.07714%" y2="4206.09429%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aD" x1="-13953.96%" x2="21214.64%" y1="-2172.57143%" y2="3409.74603%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aE" x1="-13796.3%" x2="21372.3%" y1="-1986.00882%" y2="3185.84412%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aF" x1="-13888.17%" x2="21280.43%" y1="-2353.96379%" y2="3709.58793%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aG" x1="-9372.00909%" x2="6613.71818%" y1="-2958.36812%" y2="2138.53043%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aH" x1="-16384.5222%" x2="12067.4729%" y1="-4573.9%" y2="3418.96364%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aI" x1="-17462.5%" x2="5983.23333%" y1="-13777.5842%" y2="4732.21053%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aJ" x1="-7480.69%" x2="7500.95%" y1="-7483.33%" y2="7498.32%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aK" x1="-7021.27187%" x2="3968.91562%" y1="-20520.9909%" y2="11450.4636%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aL" x1="-9826.0913%" x2="5464.60435%" y1="-22671.15%" y2="12497.45%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aM" x1="-2964.13075%" x2="2873.3758%" y1="-3993.57709%" y2="3854.15587%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aN" x1="-2330.22879%" x2="2205.28384%" y1="-2914.60952%" y2="2667.70794%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aO" x1="-1407.98283%" x2="1424.97017%" y1="-1728.51863%" y2="1719.38333%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aP" x1="-1807.9102%" x2="1780.72245%" y1="-2740.56%" y2="2669.99385%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aQ" x1="-1472.82%" x2="1783.415%" y1="-4365.0426%" y2="5068.41814%">
- <stop stop-color="#FFFBCC" offset="0%"/>
- <stop stop-color="#FFC9D5" offset="100%"/>
- </linearGradient>
- <linearGradient id="aR" x1="-511.087979%" x2="436.292949%" y1="-431.133333%" y2="359.905%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- <linearGradient id="aS" x1="-2336.83483%" x2="1396.15506%" y1="-7055.5%" y2="4019.03333%">
- <stop stop-color="#FFE900" offset="18.75%"/>
- <stop stop-color="#FF0039" offset="100%"/>
- </linearGradient>
- </defs>
- <g fill="none" fill-rule="evenodd">
- <path d="M149.5 168.5c-.1 0-.1.1-.2.1l-3.3 1.5c-.2.1-.3.1-.5.2.7.3 1.4.5 2.2.5 1.6 0 3.1-.7 4.2-1.9 1-1.1 1.4-2.5 1.3-4-.1-.9-.3-1.7-.7-2.4l-1.6 4.4c-.3.6-.8 1.2-1.4 1.6zM178.7 206.1c-.1-.1-.2-.3-.2-.4l-2 2.7 3.1 1.1-.8-2.6c-.1-.2-.1-.5-.1-.8zM240.6 207.9h0zM168.5 200.6h-.2c-.2.2-.5.3-.7.4l-2.5.7.2.8c1.1.7 2 1.7 2.5 2.9l1 .4 3.7-5c.9-1.2 2.2-1.9 3.7-2l-.1-.3-2.5.7c-.2.1-.4.1-.6.1h-.2c-.2.2-.5.3-.7.4l-3.1.9c-.1-.1-.3 0-.5 0zM146.9 159.8c.1.1.2.1.3.2 0-.1.1-.2.1-.3-.1 0-.2 0-.4.1zM143.3 112.9c.2-.3.4-.6.7-.8l4.4-2.8-.1-.1-4.2 2.7c-.3.2-.6.6-.8 1zM142.2 166c.3-.5.7-1 1.3-1.2h.1l.2-.1-1.9-.7c.2.4.2.8.2 1.3 0 .2.1.4.1.7zM200.9 117.6c-1.9 0-3.2 1-3.9 1.7.7-.7 2-1.7 3.9-1.7zM206.8 158.8c-.1 0-.1.1-.2.1.1 0 .1 0 .2-.1zM174.5 190.8c.2-.1.4-.1.6-.1h.2c.2-.2.5-.3.7-.4.5-.2 1-.2 1.6-.2 2.4 0 4.5 1.5 5.2 3.9.1.3.1.5.1.8.2.2.3.5.4.7l.9 3.1c.1.3.1.5.1.8.2.2.3.5.4.7l.3 1.1c.3.2.6.4.9.7-1.7-3.9-2.3-8.6-1.6-13.7-1.1.2-2.3.3-3.5.3-3.4 0-6.8-1-9.7-2.8-.7-.5-1.4-1-2.1-1.6 1.7 2.3 3.5 4.6 5.3 6.7h.2z
M143.4 119.9c-1.1-.3-2-.8-2.8-1.6l-.7.5v.1l.7-.4c.8.7 1.7 1.2 2.8 1.4.4.2.9.2 1.3.2 1.4 0 2.7-.5 3.8-1.3-1.1.8-2.4 1.3-3.7 1.3-.5 0-.9-.1-1.4-.2zM198.7 120.8c.4-.4 1.2-.9 2.2-.9-1 0-1.8.5-2.2.9zM213.3 214.1c-1 0-2 0-3-.1 1.2 4.1 1.9 6.8 2.2 8.8 3.2-.1 6.5-.2 9.9-.2-.1-1.7-.1-3.8-.1-6.6l-7-2c-.6.1-1.3.1-2 .1zM275.4 138.9l.9-.3c-.1-.7.1-1.4.4-2.1-1.5 2-3.5 3.6-5.8 4.5.1 0 .1.1.2.1.2-.2.5-.3.7-.4 1.1-.7 2.4-1.3 3.6-1.8zM139.9 151.5c.5-.3 1.1-.5 1.7-.5.3 0 .7.1 1 .2.7.3 1.3.8 1.6 1.5.1.1.1.3.1.4 1-.3 2-.4 3-.4-2.2-4.2-4.8-9.7-7.4-15.2v14z"/>
- <path fill="#EDEDF0" fill-rule="nonzero" d="M227.5 226.4c.1.1.1.1.2.1 0 0-.1 0-.2-.1z"/>
- <path fill="#EDEDF0" fill-rule="nonzero" d="M228.2 231c-1.2 0-2.4-.4-3.4-1.2-1.3-1.1-2.1-2-2.4-7.2-3.4 0-6.7.1-9.9.2.6 3.3.2 4.4-.7 5.6-1 1.4-2.6 2.2-4.3 2.2-2.9 0-5.3-2.1-9.6-7-15.1 1.3-25.3 3.8-25.3 6.6 0 4.3 23.1 7.7 51.6 7.7s51.6-3.4 51.6-7.7c0-3.6-16.7-6.7-39.3-7.5-2.3 5.7-5.1 8.3-8.3 8.3z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M158.9 75.5h13.4c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-13.4c-.3 0-.6.2-.6.6.1.4.3.6.6.6zM155.4 85.7c0-.3-.2-.6-.6-.6h-13.4c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h13.4c.3-.1.6-.3.6-.6z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M134.3 114.7l.6-.4.4-.2c0-.7.1-1.3.2-2 0-.1.1-.2.1-.4-.4-.9-.8-2-1.2-3v6h-.1zM131.8 102.3c-.1-.3 0-.6.3-.7.3-.1.6 0 .7.3l.3.9V67h-13c.7 2.2 1.8 5.2 3.1 8.8.1.3 0 .6-.3.7h-.2c-.2 0-.4-.1-.5-.4-1.3-3.8-2.4-7-3.2-9.2h-3.4c1.1 3.8 3.1 10.1 5.8 18.2l-.1-.5c1.6 4.4 8.9 24.1 11.5 31l.4-.3v-9.5c-.6-1.4-1.1-2.7-1.4-3.5zM121.2 91.2c-3.9-10.9-6.6-19.6-7.9-24.2H7.1v98.7c0 .6 0 .9.1 1 .1 0 .4.1 1 .1h124c.6 0 .9 0 1-.1 0-.1.1-.4.1-1v-38.4l-1.6 1-.4.2c-.3.2-.6.4-1 .6-.6.3-1.2.4-1.9.4h-.2c-2 0-3.8-1.2-4.6-3-1-2.2-.3-4.7 1.5-6 .2-.2.5-.3.7-.5l2.3-1.4 2.7-1.7c-2.5-6.4-7-18.6-9.6-25.7zm-25.6 27.1h-7.1c-.5 2.1-1.4 4-2.6 5.8l5.1 5.1c1.2 1.6 1.2 3.6.1 5.1-.8 1.1-2 1.7-3.4 1.7-.9 0-1.8-.3-2.5-.8L80 130c-1.8 1.1-3.8 1.8-5.8 2.3v7.1c0 2.3-1.9 4.2-4.2 4.2-2.3 0-4.2-1.9-4.2-4.2V132c-2-.4-4-1.2-5.8-2.3l-4.7 5.1c-.2.3-.5.6-.8.8-.7.6-1.6.8-2.5.8-1.3 0-2.6-.6-3.4-1.7-1.4-1.9-1-4.5.8-5.9l5-4.7c-1.1-1.8-1.8-3.7-2.3-5.8H45c-2.3 0-4.2-1.9-4.2-4.2 0-2.3 1.9-4.2 4.2-4.2h7.1c
.4-2.1 1.2-4 2.3-5.8l-5.1-4.7c-.9-.9-1.3-2-1.3-3.2 0-1.2.5-2.3 1.3-3.1.8-.8 2-1.3 3.1-1.3 1.2 0 2.3.5 3.1 1.3l4.7 5.1c1.8-1.1 3.7-1.8 5.8-2.3v-7.1c0-2.3 1.9-4.2 4.2-4.2 2.3 0 4.2 1.9 4.2 4.2v7.1c2.1.4 4 1.2 5.8 2.3l5.1-5.1c.8-.6 1.7-.9 2.6-.9.9 0 1.8.3 2.5.8.9.7 1.5 1.7 1.6 2.8.2 1.1-.1 2.2-.8 3.1l-5.1 5.1c1.1 1.8 1.8 3.8 2.3 5.8h7.1c2.3 0 4.2 1.9 4.2 4.2.2 2.4-1.7 4.3-4.1 4.3zm28.9-11.5c.3-.1.6.1.7.3l1.7 4.7c.1.3-.1.6-.3.7h-.2c-.2 0-.4-.1-.5-.4l-1.7-4.7c-.1-.2.1-.5.3-.6z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M70.3 103.8c-5.6 0-10.2 4.6-10.2 10.2s4.6 10.2 10.2 10.2 10.2-4.6 10.2-10.2c.1-5.6-4.5-10.2-10.2-10.2zM137.7 124.4l-.9.6.9 2.1v-2.7zM135.3 121.7s0 .1 0 0l2.4-1.5v-.1l-2.4 1.6z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M134.8 126.3l-.5.3v39.1c0 1.9-.3 2.2-2.2 2.2H8.1c-1.9 0-2.2-.3-2.2-2.2V65.8h107c-.2-.8-.4-1.4-.4-1.8-.1-.6.3-1.2.9-1.3.6-.1 1.2.3 1.3.9.1.4.3 1.2.6 2.2h3.4l-.8-2.4c-.1-.3.1-.6.4-.7.3-.1.6.1.7.4 0 0 .3 1 .9 2.7h14.5v39.7c.6 1.5 1.3 3.1 1.8 4.4.4-.9.9-1.6 1.6-2.3V49.7c0-2.3-1.9-4.2-4.2-4.2H6.8c-2.3 0-4.2 1.9-4.2 4.2v118c0 2 1.8 3.7 3.9 3.7h127.3c1 0 1.9-.4 2.6-.9-.8-1.6-1.2-3.4-1.3-5.3 0-1.5.9-2.7 2.2-3.3-.8-.8-1.1-2-.7-3.1l1.1-2.9v-23.4c-1-2.1-2-4.3-2.9-6.2zm-18.1-73.5c.3-.1.5 0 .6.3l1.9 5.3v.1c.1.3-.1.5-.4.6h-.1c-.2 0-.4-.1-.4-.3l-1.9-5.3c-.1-.4.1-.6.3-.7zm-1.7.4c0-.3.2-.5.5-.5s.5.2.5.5v5.3c0 .3-.2.5-.5.5s-.5-.2-.5-.5v-5.3zm-1.5.5c0-.3.2-.5.5-.5s.5.2.5.5v4.8c0 .3-.2.5-.5.5s-.5-.2-.5-.5v-4.8zm-1.4-1c0-.3.2-.5.5-.5s.5.2.5.5v5.8c0 .3-.2.5-.5.5s-.5-.2-.5-.5v-5.8zm-77.7 2.7c0-1.7 1.4-3.1 3.1-3.1h63.6c1.7 0 3.1 1.4 3.1 3.1v.3c0 1.7-1.4 3.1-3.1 3.1H37.5c-1.7 0-3.1-1.4-3.1-3.1v-.3zM22 52.7c1.6 0 2.9 1.3 2.9 2.9 0 1.6-1.3 2.9-2.9 2.9-1.6 0-2.9-1.3
-2.9-2.9.1-1.6 1.3-2.9 2.9-2.9zm-9.2 0c1.6 0 2.9 1.3 2.9 2.9 0 1.6-1.3 2.9-2.9 2.9-1.6 0-2.9-1.3-2.9-2.9.1-1.6 1.3-2.9 2.9-2.9z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M129.1 125.6c-.1.1-.2.2-.4.2-.2.1-.4.1-.6.1.2 0 .4 0 .6-.1.2 0 .3-.1.4-.2l4.1-2.5v-.1l-4.1 2.6z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M137.7 120.2v.1l2.2-1.5M139 115.8c-.2-.5-.2-1-.3-1.5 0 .5.1 1 .3 1.5z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M133.8 171.4H6.5c-2.2 0-3.9-1.6-3.9-3.7v-118c0-2.3 1.9-4.2 4.2-4.2h126.6c2.3 0 4.2 1.9 4.2 4.2V107.6c.6-.7 1.4-1.3 2.2-1.8V81.2h27.6c.1-.2.2-.4.2-.6 0-.2.3-.2.3 0 .1.2.1.4.2.6h14.5c.6 0 1.1-.5 1.1-1.1 0-.6-.5-1.1-1.1-1.1h-42.8V49.7c0-3.6-2.9-6.5-6.5-6.5H6.8c-3.6 0-6.5 2.9-6.5 6.5v118c0 3.3 2.8 5.9 6.1 5.9h127.3c1.4 0 2.7-.5 3.7-1.2-.4-.6-.8-1.3-1.1-1.9-.7.5-1.6.9-2.5.9z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M137.7 127.1l-.9-2.1-1.9 1.2c.9 2 1.9 4.1 2.9 6.3V156l1.2-3.2c.2-.5.6-1 1-1.3v-14.1c2.6 5.5 5.2 11 7.4 15.2h.4c.7 0 1.4.1 2.1.2-3.1-6.1-6.1-12.1-8.7-17.9-.2-.5-.7-1.5-1.2-2.7V123l-2.2 1.4v2.7h-.1z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M134.3 65.8h-14.5c-.6-1.7-.9-2.7-.9-2.7-.1-.3-.4-.4-.7-.4-.3.1-.4.4-.4.7l.8 2.4h-3.4c-.3-1-.5-1.8-.6-2.2-.1-.6-.7-1-1.3-.9-.6.1-1 .7-.9 1.3.1.4.2 1 .4 1.8H6v99.8c0 1.9.3 2.2 2.2 2.2h124c1.9 0 2.2-.3 2.2-2.2v-39.1l-1.1.7v38.4c0 .6 0 .9-.1 1-.1 0-.4.1-1 .1H8.2c-.6 0-.9 0-1-.1 0-.1-.1-.4-.1-1V67h106.2c1.3 4.6 4 13.3 7.9 24.2h.1c2.5 7.2 7.1 19.3 9.6 25.7l2-1.2c-2.7-6.9-9.9-26.7-11.5-31l.1.5c-2.8-8.1-4.7-14.4-5.8-18.2h3.4c.8 2.2 1.8 5.4 3.2 9.2.1.2.3.4.5.4h.2c.3-.1.4-.4.3-.7-1.3-3.6-2.3-6.6-3.1-8.8h13v35.8l-.3-.9c-.1-.3-.4-.4-.7-.3-.3.1-.4.4-.3.7.3.8.8 2.1 1.4 3.5v9.5l.2-.1.9-.6v-6c.4 1.1.8 2.1 1.2 3l.6-1.8c-.5-1.3-1.2-2.9-1.8-4.4V65.8h-.1zM12.8 58.4c1.6 0 2.9-1.3 2.9-2.9 0-1.6-1.3-2.9-2.9-2.9-1.6 0-2.9 1.3-2.9 2.9.1 1.7 1.3 2.9 2.9 2.9zM22 58.4c1.6 0 2.9-1.3 2.9-2.9 0-1.6-1.3-2.9-2.9-2.9-1.6 0-2.9 1.3-2.9 2.9.1 1.7 1.3 2.9 2.9 2.9zM37.5 58.8h63.6c1.7 0 3.1-1.4 3.1-3.1v-.3c0-1.7-1.4-3.1-3.1-3.1H37.5c-1.7 0-3.1 1.4-3.1 3.1v.3c0 1.7 1.4 3.1 3
.1 3.1z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M95.6 109.8h-7.1c-.4-2.1-1.2-4-2.3-5.8l5.1-5.1c.7-.9 1-2 .8-3.1-.2-1.1-.7-2.1-1.6-2.8-.7-.6-1.6-.8-2.5-.8-.9 0-1.8.3-2.6.9l-5.1 5.1c-1.8-1.1-3.7-1.8-5.8-2.3v-7.1c0-2.3-1.9-4.2-4.2-4.2-2.3 0-4.2 1.9-4.2 4.2v7.1c-2.1.4-4 1.2-5.8 2.3l-4.7-5.1c-.8-.8-2-1.3-3.1-1.3-1.2 0-2.3.5-3.1 1.3-.8.8-1.3 2-1.3 3.1 0 1.2.5 2.3 1.3 3.2l5.1 4.7c-1.1 1.8-1.8 3.7-2.3 5.8H45c-2.3 0-4.2 1.9-4.2 4.2 0 2.3 1.9 4.2 4.2 4.2h7.1c.4 2.1 1.2 4 2.3 5.8l-5 4.7c-1.9 1.4-2.2 4.1-.8 5.9.8 1.1 2 1.7 3.4 1.7.9 0 1.8-.3 2.5-.8.3-.2.6-.5.8-.8l4.7-5.1c1.8 1.1 3.7 1.8 5.8 2.3v7.4c0 2.3 1.9 4.2 4.2 4.2 2.3 0 4.2-1.9 4.2-4.2v-7.1c2.1-.4 4-1.2 5.8-2.3l5.1 5.1c.7.6 1.6.8 2.5.8 1.3 0 2.6-.6 3.4-1.7 1.1-1.5 1.1-3.6-.1-5.1l-5.1-5.1c1.2-1.8 2.1-3.7 2.6-5.8h7.1c2.3 0 4.2-1.9 4.2-4.2.2-2.3-1.7-4.2-4.1-4.2zm-25.3 14.5c-5.6 0-10.2-4.6-10.2-10.2s4.6-10.2 10.2-10.2 10.2 4.6 10.2 10.2c.1 5.6-4.5 10.2-10.2 10.2zM115.3 21.3h1.1c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-1.1c-.3 0-.6.2-.6.6 0 .4.3.6.6.
6zM126.4 21.3h4.5c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-4.5c-.3 0-.6.2-.6.6.1.4.3.6.6.6zM34.1 20.6h13.4c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6H34.1c-.3 0-.6.2-.6.6.1.4.3.6.6.6zM82 8.5c.1.1.3.2.4.2.1 0 .2 0 .3-.1.2-.2.3-.5.1-.8-.7-.9-1.5-1.8-2.3-2.5-.2-.2-.6-.2-.8 0-.2.2-.2.6 0 .8.8.7 1.6 1.5 2.3 2.4zM109.7 21c.1.2.3.3.5.3h.6c.3 0 .6-.2.6-.6 0-.4-.2-.6-.6-.6h-.3c-.2-.4-.6-1.2-1.2-2.1-.2-.3-.5-.3-.8-.2-.3.2-.3.5-.2.8.9 1.3 1.3 2.2 1.4 2.4zM59.6 4.4c.1 0 .2 0 .3-.1 1.6-1.2 3.7-2.1 6.4-2.4 2.1-.3 4-.2 5.9.2.3.1.6-.1.7-.4.1-.3-.1-.6-.4-.7-2-.4-4.1-.5-6.3-.2-2.9.4-5.2 1.3-6.9 2.7-.2.2-.3.5-.1.8 0 0 .2.1.4.1zM91.5 7.8c1.3-.4 2.7-.5 4.3-.2 2.3.4 4.8 1.8 7.2 4.1.1.1.2.2.4.2.1 0 .3-.1.4-.2.2-.2.2-.6 0-.8-2.6-2.5-5.2-3.9-7.7-4.4-1.8-.3-3.4-.3-4.9.2-.3.1-.4.4-.4.7.1.4.4.5.7.4zM84.9 13c.1.2.3.3.5.3.1 0 .2 0 .2-.1.3-.1.4-.5.3-.7-.1-.3-.3-.6-.5-1-.1-.3-.5-.4-.8-.2-.3.1-.4.5-.2.8.2.3.3.7.5.9zM56.2 14.5c.1 0 .1 0 0 0 .4 0 .6-.3.6-.6 0-.4-.1-.7-.1-1.1 0-.3-.3-.5-.6-.5H56c-.2.1-.4.3-.4.6 0 .4.1.8.1 1.1 0 .1 0 .
1.1.2 0 .2.2.3.4.3zM58.3 20.4c.1-.2.1-.4 0-.5 0 0-.3-.7-.6-1.7-.1-.3-.4-.5-.7-.4-.3.1-.5.4-.4.7.1.4.3.7.4 1h-.7c-.2.1-.4.3-.4.5 0 .3.2.6.6.6H57.9c.2 0 .3-.1.4-.2z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M33.7 25.5h97.9c.6 0 1.1-.5 1.1-1.1 0-.6-.5-1.1-1.1-1.1h-22.8c-2-3.7-7.1-11.7-13.4-12.9-8.4-1.6-10 6.7-10 6.7S79.8 2.6 65.8 4.5c-6.5.9-9 4.2-9.8 7.8h.1c.3 0 .6.2.6.5 0 .4.1.7.1 1.1 0 .3-.2.6-.5.6h-.1c-.2 0-.4-.1-.5-.3-.1 1.9.1 3.8.5 5.3H57c-.1-.3-.2-.6-.4-1-.1-.3.1-.6.4-.7.3-.1.6.1.7.4.3 1 .6 1.7.6 1.7.1.2.1.4 0 .5-.1.2-.3.3-.5.3h-1.3c.4 1.5.9 2.5.9 2.7H33.7c-.6 0-1.1.5-1.1 1.1 0 .5.5 1 1.1 1z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M205.5 42.3c.1 0 .3-.1.4-.2.6-.7 1.5-1.1 2.6-1.4.3-.1.5-.4.4-.7-.1-.3-.4-.5-.7-.4-1.3.4-2.4.9-3.1 1.7-.2.2-.2.6 0 .8.1.2.3.2.4.2zM212.7 40.5c.4.1.7.2 1 .3h.2c.2 0 .5-.1.5-.4.1-.3-.1-.6-.4-.7-.4-.1-.8-.2-1.1-.3-.3-.1-.6.1-.7.4 0 .4.2.7.5.7zM238.3 50.7h3.3c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-3.3c-.3 0-.6.2-.6.6 0 .4.3.6.6.6zM221.2 46.7c.3-1 1.2-3.2 3.8-3.2.3 0 .7 0 1 .1 1.6.3 3.2 1.3 4.8 3 .2.2.6.2.8 0 .2-.2.2-.6 0-.8-1.8-1.9-3.6-3-5.4-3.4-.4-.1-.8-.1-1.2-.1-3.5 0-4.6 3-4.9 4-.1.3.1.6.4.7h.2c.1 0 .2 0 .3-.1.1.1.2 0 .2-.2zM205.5 50.6c.1-.2.1-.4 0-.5l-.1-.1c-.1-.3-.4-.4-.7-.3-.1 0-.1.1-.2.1h-12.7c-.3 0-.6.2-.6.6 0 .3.2.6.6.6H205c.2-.1.4-.2.5-.4z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M191.7 54.6h54.4c.6 0 1.1-.5 1.1-1.1 0-.6-.5-1.1-1.1-1.1h-12.9c-1.1-2.1-3.9-6.5-7.4-7.2-2.4-.5-3.8.5-4.6 1.6 0 .1-.1.2-.2.3-.6 1-.8 1.9-.8 1.9s-3.1-8-10.9-7c-5.7.8-6 5-5.4 7.8h.7s.1-.1.2-.1c.3-.1.6 0 .7.3l.1.1c.1.2.1.4 0 .5-.1.2-.3.3-.5.3h-.9c.2.9.5 1.4.5 1.5h-13.2.2c-.6 0-1.1.5-1.1 1.1-.1.6.4 1.1 1.1 1.1z"/>
- <path fill="#EDEDF0" fill-rule="nonzero" d="M107.4 231.1c-4 0-5.8-2.5-6.2-4.6l-.1-.5c-7 .5-12.1 2.1-12.1 4 0 2.3 7.3 4.1 16.3 4.1s16.3-1.8 16.3-4.1c0-1.4-2.7-2.6-6.7-3.3-.2.7-.6 1.3-1 1.9-2 2.4-5.7 2.5-6.5 2.5z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M227.3 225.7c-.1-.3-.1-.6-.1-1 0 .4 0 .7.1 1zM228 226.5h-.1.1zM226.9 216v0zM199.5 218.8c.3.3.5.6.8.9-.3-.3-.6-.6-.8-.9z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M237.7 208.7c1-.3 1.9-.5 2.8-.8h.1c6.5-2 12.4-4.7 17.4-7.6-7.2 3.5-15 5-20 5.6 0 1-.1 1.9-.3 2.8z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M241.9 163c.1-.2.2-.4.2-.6 0 .2-.1.4-.2.6zM234.1 70.2c-.3 0-.5-.1-.8-.1-.3 0-.7 0-1 .1.3 0 .7-.1 1-.1.2 0 .5 0 .8.1zM232 70.2c-2.5.4-4.6 2.2-5.5 4.5.9-2.3 3-4 5.5-4.5zM219.1 84.9c0-.1 0-.1 0 0 0-.1 0-.1 0 0zM221.2 79.8c.5-.5 1.1-.9 1.7-1.3-.6.3-1.2.8-1.7 1.3zM226 76.7c-.4.3-.7.7-1 1-.7.1-1.4.4-2.1.7.6-.3 1.3-.6 2.1-.7.3-.3.7-.6 1-1zM207.3 226.3s0-.1 0 0h-.1c0-.1.1 0 .1 0zM263.6 172.3c-.4.1-.8.3-1.2.4.4-.1.8-.2 1.2-.4zM248.7 65.6h.8c-.3.1-.5 0-.8 0zM237.3 69.6c1.3-.5 2.6-.9 4-1.2-1.4.4-2.7.8-4 1.2zM189.2 186.5v0zM252.5 139.1h-1c.3.1.6.1 1 0zM272.6 164c-.5 1.3-1.7 3.4-3.8 5.3 2.2-2 3.3-4.1 3.8-5.3zM262.6 67.9h-.6.6zM219.1 84.9c0 .3 0 .7.1 1-.2.3-.3.6-.5 1 .2-.3.3-.7.5-1 0-.3-.1-.6-.1-1zM202.8 96.1c.1.1.1.2.2.2.1.1.3.2.4.3-.1-.1-.3-.2-.4-.3-.1 0-.2-.1-.2-.2zM202.5 90.4c-.1-.1-.2-.1-.2-.2-.1-.1-.1-.2-.2-.3 0 .1.1.3.2.3l.2.2zM259.2 140.3h-.3.3zM277.1 177.5c-.1 0-.1 0 0 0-.1 0-.1 0 0 0-.1.1-.1 0 0 0zM274.7 180c0-.1 0-.1 0 0-.2 0-.4-.1-.6-.1.2 0
.4 0 .6.1z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M235.8 218c-.5 1.4-1.1 3.2-2 4.9-1.5 3.1-3.5 5.9-5.8 5.9-.7 0-1.3-.2-1.8-.6-.6-.5-1.2-.9-1.4-5.4-.1-1.5-.1-3.5-.1-6.2-.5 0-1-.1-1.6-.2l-.7-.2c0 2.8 0 4.9.1 6.6.2 5.1 1 6.1 2.4 7.2 1 .8 2.1 1.2 3.4 1.2 3.2 0 6-2.7 8.4-8.1.6-1.3 1.2-2.8 1.7-4.4.7-2 1.3-4.8 1.9-8.2-.9.3-1.9.5-2.9.8-.5 2.6-1.1 4.9-1.6 6.7zM265 198.7c-2.4 1.6-5 3.1-7.8 4.7 1.6-.7 3.1-1.4 4.6-2.3h.2c3.7 0 7.1-.5 10.2-1.4-1.7-.2-3.3-.6-4.7-1.3-.8.1-1.6.2-2.5.3z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M284.9 173c.8-.7 1.8-1.2 2.9-1.2.4 0 .7 0 1 .1h.1c-.7-.6-1.5-1.1-2.4-1.2-.3-.1-.6-.1-.8-.1-.8 0-1.6.2-2.3.6l-.2.2c.6.6 1.2 1.1 1.7 1.6zM287.7 188c.3-.6.6-1.1.9-1.7-.4.3-.8.6-1.3.8.1.4.3.6.4.9z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M266.3 154.9c-1.2.6-2.1.9-2.7 1.2-.3.1-.6.2-.8.3-.2.1-.3.1-.3.1-.2.1-.4.1-.7.1-.6 0-1.2-.3-1.7-.7-6.4 3.3-13.7 6.8-16.1 7.9-.1.2-.2.4-.2.6.8-.1 1.7-.1 2.5-.1 3.5 0 6.8.6 9.7 1.8 2.7 1.1 5 2.5 7 4.3 6.4-2.4 7.9-7.8 7.9-8 .2-.9.9-1.5 1.8-1.7h.3c.8 0 1.5.4 1.9 1.1.1.2 1.7 2.9 2.3 7.1 1 .2 2 .6 2.9 1-.5-5.5-2.5-9.1-2.9-9.7-.9-1.4-2.4-2.3-4-2.3-.2 0-.5 0-.7.1-1.9.3-3.4 1.7-3.9 3.5 0 .1-1 3.6-5.1 5.7-1.9-1.4-4-2.7-6.4-3.7-1.3-.6-2.8-1-4.2-1.3 5.1-2.5 10.1-5 13.8-7.1-.1-.1-.1-.2-.2-.2 0-.1-.1-.1-.2 0z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M265.3 137.7h.5-.5zM246.3 166.4h-.3H246.3z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M284.3 126.3l1.2-1.8c4.6-2.2 7.4-7.2 6.8-12.3v-.2c1.4-2.3 2-5 1.7-7.7-.3-2.4-1.3-4.6-2.8-6.4-.3-2.1-.7-4.1-1.3-6.1v-1c0-4-2-7.7-5.3-9.9-2.8-4.1-6.5-7.8-10.6-10.6-1.8-4.4-6.2-7.3-11-7.3-1.4 0-2.9.3-4.3.8-.8-.2-1.6-.4-2.4-.5-2.1-1.6-4.7-2.5-7.3-2.5-.5 0-1 0-1.5.1-2.2.3-4.4 1.2-6.1 2.6-2.1.4-4.2 1.1-6.2 1.9-.6-.1-1.1-.1-1.7-.1-5.2 0-9.9 3.5-11.4 8.4-4.4 1.8-7.4 6.2-7.4 11.1v.2c-.2.5-.4 1-.6 1.4-.4.4-.8.7-1.2 1.2-.1-2.2-1.1-4.2-2.2-6.3-.2-.4-.4-.8-.6-1.3-.9-1.8-2.7-3-4.6-3-3.8 0-5.5 3.8-6.2 5.3-1 2.1-2.3 5.9-1.3 9-.4 3.7.2 6.5 1.8 8.2.1.6.2 1.3.4 1.8-8.4 3.3-26.4 11.2-32.7 19.4-1.9 2.4-2.2 5.7-1 9.8 2.6 8.9 10.6 18.2 15.5 20.1 6.2 2.3 14.3 3.8 22.5 4.3-4.1 1.6-7.4 2.9-10 4.1.6.7 1.1 1.4 1.6 2.2 2.6-1.1 5.7-2.3 9.5-3.9 1.9-1.6 3.9-3.1 6-4.5h-2c-9.9 0-19.7-1.6-27.1-4.3-5.2-1.9-12.1-11.9-14-18.4-.9-3.3-.7-5.8.6-7.6 5.6-7.3 22.8-15.2 33.8-19.4-.6-1.4-.9-3-1.1-4.6l-.1-.1c-1.4-1.1-1.9-3.5-1.5-7.1-1.1-2.3.3-6 1.1-7.6 1.2-2.6 2.4-3.8 3.9-3.8 1 0 1
.9.6 2.4 1.6.2.5.5.9.7 1.3 1.2 2.3 2.2 4.3 1.8 6.3.7 1 1.3 2.1 1.4 3.4.7.6 1.3 1.1 1.9 1.7-.1-.3-.1-.7-.1-1.1 0-2 1-3.8 2.6-4.8.3-.8.7-1.7 1.1-2.5v-.7c0-4.3 2.9-8 7-9.1l.1-.1c.8-4.4 4.7-7.8 9.3-7.8.7 0 1.3.1 2 .2 2.3-1 4.6-1.7 7-2.1 1.5-1.4 3.3-2.2 5.3-2.5.4 0 .8-.1 1.2-.1 2.3 0 4.5.9 6.2 2.4 1.2.2 2.4.5 3.6.8 1.3-.6 2.7-.9 4.1-.9 4.1 0 7.7 2.6 9 6.4 4.3 2.8 8 6.5 10.8 10.8 2.8 1.7 4.6 4.8 4.6 8.1 0 .4 0 .8-.1 1.3.7 2.3 1.2 4.6 1.5 7 1.5 1.5 2.5 3.4 2.7 5.6.3 2.5-.4 4.9-1.8 6.8.1.4.2.7.2 1.1.5 4.3-2 8.5-6 10-.6 1-1.2 1.9-1.8 2.8-.5 3.2-2.7 5.8-5.7 6.9-1.6 4.5-5.8 7.5-10.7 7.5-.5 0-1 0-1.5-.1-1 1.6-2.8 2.7-4.9 2.7-1.4 0-2.7-.5-3.7-1.3-1.3.2-2.7.2-4 .2-.4 1.9-1 3.9-1.6 5.8 8.1-1.9 16.9-3.8 18-3.9h.8c.1-.1.3-.2.4-.3l.6-.5c.2-.2.4-.3.6-.4.4-.3.8-.6 1.2-.8-.1 0-.1-.1-.2-.1 2.3-1 4.3-2.5 5.8-4.5.2-.4.4-.7.7-.9.3-.5.5-.9.8-1.4 2.8-2 5.1-4.9 5.8-8.4z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M287.7 101.9c-.4-.6-.9-1.1-1.4-1.5.6.4 1 .9 1.4 1.5zM286.9 111.2c.2.6.4 1.2.5 1.9 0 .2 0 .5.1.7 0-.2 0-.5-.1-.7-.1-.7-.3-1.3-.5-1.9zM289 106c0-.3 0-.6-.1-.9 0-.4-.1-.7-.2-1.1.1.3.2.7.2 1.1.1.3.1.6.1.9zM263.6 137.5c-.3-.1-.7-.1-1-.2h-.1.1c.3.1.6.1 1 .2zM259.6 140.2c.4-.1.7-.2 1.1-.4-.4.2-.7.4-1.1.4zM188.5 192.2v0zM218.2 88.3c-.2.4-.4.9-.5 1.3-.2.1-.3.1-.5.2.1-.1.3-.2.5-.2.1-.4.3-.9.5-1.3zM186 170.6c0-.1-.1-.1-.1-.2 0 .1 0 .2.1.2zM215.8 97.7c0-.4.1-.9.2-1.3-.1.4-.1.8-.2 1.3z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M207.5 230.7c1.7 0 3.3-.8 4.3-2.2.9-1.2 1.3-2.3.7-5.6-.3-2-1.1-4.8-2.2-8.8 1 0 2 .1 3 .1h2.1l-3.8-1.1-4.8-.6c1.6 5.2 2.4 8.5 2.9 10.6.6 3.2.3 3.7-.2 4.3-.5.8-1.4 1.2-2.3 1.2-1.7 0-3.4-1.3-6.6-4.9-.8-.9-1.8-2-2.9-3.3-3.3-3.8-5.6-8.6-7.1-12.7-1-.5-2-1.1-2.9-1.7 1.6 4.8 4.3 11 8.4 15.8.6.8 1.3 1.5 1.8 2.1 4.4 4.8 6.7 6.8 9.6 6.8zM185.9 201.9c1.2.9 2.4 1.7 3.6 2.5l-.3-.9c-2.1-3-3.1-7-3-11.4-.4-.3-.8-.5-1.2-.8-.2-.2-.3-.5-.1-.8.2-.2.5-.3.8-.1.2.1.4.3.6.4.1-1 .2-2.1.3-3.2-.8.3-1.6.5-2.4.6-.5 5.1 0 9.8 1.7 13.7z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M206.8 158.8c.5-.4 1-.9 1.6-1.3-.6.4-1.1.9-1.6 1.3z"/>
- <path fill="url(#a)" fill-rule="nonzero" d="M237.4 200.4c-.1 1-.2 2-.2 2.9 4.1-.4 10.5-1.6 17.1-4.5 1.7-.8 3.3-1.6 4.7-2.6-.7-.2-1.4-.6-1.9-1.1-3.5 1.9-8.3 4-14.2 4.8-1.9.2-3.7.4-5.5.5z"/>
- <path fill="url(#b)" fill-rule="nonzero" d="M268.8 169.3c1.6-.6 3.4-.9 5.1-.9.4 0 .7 0 1.1.1-.4-2.3-1.1-4-1.5-4.9-.1-.3-.3-.5-.3-.6v-.1s0 .1-.1.3c0 .1-.1.2-.1.3-.1.1-.1.3-.2.5-.7 1.2-1.8 3.3-4 5.3z"/>
- <path fill="url(#c)" fill-rule="nonzero" d="M274.9 176.9c-.3 0-.6-.1-.9-.1-2.6 0-5 1.4-6.3 3.6-.3.5-.7 1-1.1 1.4l1.6.4c0-.1.1-.2.2-.3l.9-.7c.2-.2.6-.1.8.1.2.2.1.6-.1.8l-.5.4.9.2c.8.2 1.5.6 2 1.2.7-1.4 1.3-2.8 1.8-4.1.2-1 .5-1.9.7-2.9z"/>
- <path fill="url(#d)" fill-rule="nonzero" d="M189.9 156.3c-2.8-1.8-6-2.6-9.1-2.6-5.6 0-11.1 2.8-14.3 7.8-5 7.9-2.7 18.3 5.2 23.3 2.8 1.8 6 2.6 9.1 2.6 2.1 0 4.2-.4 6.1-1.1.3-1.5.7-3.1 1.2-4.6-.5 0-1-.1-1.5-.4-1.5-.8-2.1-2.6-1.3-4s2.6-1.9 4.1-1.1c.3.2.5.3.7.5.6-1.3 1.3-2.6 2-3.9-3.2.4-4.2.5-4.7.5h-.6c-1-.1-2.3-.6-2.9-1.8-.5-.8-.7-2.3.5-4.3.5-.7 1.1-1.9 10.6-5.9-1.4-1.9-3-3.7-5.1-5zm-14.1 2.1c1.7 0 3.1 1.3 3.1 2.9 0 1.6-1.4 2.9-3.1 2.9-1.7 0-3.1-1.3-3.1-2.9 0-1.6 1.4-2.9 3.1-2.9zm-8.7 10.8c.8-1.4 2.6-1.9 4.1-1.1 1.5.8 2.1 2.6 1.3 4s-2.6 1.9-4.1 1.1c-1.4-.8-2.1-2.6-1.3-4zm13.4 12.7c-.6 1-1.9 1.5-3.3 1.2l1.7 1.7c.2.2.2.6 0 .8-.1.1-.3.2-.4.2-.1 0-.3 0-.4-.1-3.1-2.9-6.2-6.2-9.2-9.8-.2-.2-.2-.6.1-.8.2-.2.6-.2.8.1 1.2 1.5 2.5 2.9 3.7 4.3 0-.4.1-.8.3-1.1.4-.7 1.1-1.2 2-1.3l-.9-1.1c-.2-.2-.2-.6.1-.8.2-.2.6-.2.8.1l1.6 1.9c.4.1.8.2 1.1.4 1.9.9 2.8 2.9 2 4.3zm8.2-19.6c-.8 1.3-2.6 1.5-4 .7-1.4-.9-1.9-2.6-1.1-3.9.8-1.3 2.6-1.5 4-.7 1.4.9 1.9 2.7 1.1 3.9z"/>
- <path fill="url(#e)" fill-rule="nonzero" d="M204.7 160.7c-9.4 3.5-17.8 8.2-17.9 8.3-.1.1-.2.1-.3.1-.2 0-.4-.1-.5-.3-.2.3-.3.6-.3.9v.6c0 .1 0 .2.1.2 0 .1.1.1.1.2.4.5 1.2.5 1.2.5H188c.2 0 .4 0 .6-.1.3 0 .6-.1.9-.1h.2c.3 0 .6-.1.9-.1h.2c.4 0 .7-.1 1.1-.2h.1c.9-.1 2-.3 3.1-.5 2.9-4 5-6.2 5.1-6.4.2-.2.6-.2.8 0 .1.1.2.2.2.4 1.1-1.2 2.2-2.3 3.5-3.5z"/>
- <path fill="url(#f)" fill-rule="nonzero" d="M187.9 167.1c-.1 0-.1.1-.2.1s-.1.1-.2.1c1.1-.6 2.7-1.4 4.8-2.5-1.8.9-3.4 1.7-4.4 2.3z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M213.3 204.7c-.7-.2-1.3-.7-1.7-1.2l-.4 1.3 1.9.5c.3-.1.7-.2 1-.3l-.8-.3z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M188.7 193.1c0 .1-.1.1-.1.1v1.6c0 .4.1.8.2 1.2 0 .2.1.4.1.5l.3 1.2c0 .2.1.3.1.5.1.4.3.8.4 1.2v.1c.8 1.6 2.9 4.5 8.2 5.4.3.1.5.3.4.6-.1.3-.3.5-.5.5h-.1c-2.7-.5-4.6-1.5-6-2.5l.3.9c.2.5.3 1 .5 1.5 1.4.7 2.7 1.2 4.1 1.7 2.4.8 4.8 1.4 7.2 1.9 0-.1-.1-.3-.1-.4 0-.1-.1-.3-.1-.4-.2-.5-.4-1-.5-1.5-.1-.3-.2-.6-.3-.8h.2c0-.6 0-1.1.2-1.7l1.2-4.1c-.7-.2-1.5-.4-2.2-.6-.3-.1-.5-.4-.4-.7.1-.3.4-.5.7-.4.7.2 1.5.4 2.2.6l4.1-14.3c.7-2.4 2.9-4 5.4-4 .5 0 1 .1 1.6.2l15.3 4.4c2-6.2 3.9-13.4 9.5-22.5.5-1.1 1.1-2.1 1.4-2.4.6-.4 12.5-5.9 18-8.5l.1-.1c.1-.2.3-.4.5-.7.3-.5.9-1.3 1.8-2.3.8-1 1.8-2 2.7-2.9l.6-.6c-3.9.8-12 2.6-19.4 4.4.4-.9.7-1.7 1-2.6.1-.2.1-.4.2-.6.5-1.4.9-2.9 1.3-4.3 1-5.6.1-9.3.1-9.4-.1-.3.1-.5.3-.6-.3-2.1-.8-3.8-1.6-5.3-3.1-1-5.4-3.9-5.4-7.4v-.1c-.8-1-1.4-2-2-2.9-.4-.4-.9-.9-1.3-1.4-2.1-2.7-3.1-5.6-3.5-7.3-.2-.4-.3-.7-.5-1.1-.7-.4-1.3-1-1.8-1.6-.8-.6-1.6-1.4-2-2.3-.5-1.3-.7-2.3-.6-3.2l-3.2-.1c-.2 0-.4-.2-.5-.4-.7 0-1.4 0-2.1.1-.4.6-1 1.2-1.7 1.5v
.1c0 .3-.2.6-.5.6h-.6c-1.5 0-2.7-.8-3.2-1.2l-1.4.4c1.1 1.2 2.1 2.8 2.1 4.8 0 4.6-4.6 6.2-4.7 6.2h-.2c-.2 0-.4-.1-.5-.3-.8.2-1.6.3-2.5.1-.2 0-.5-.2-.7-.3h-.2c-.2 0-4.3-.9-6.1-6.6-.1-.3 0-.5 0-.7-.2.1-.4.1-.6.2-.2.1-.3.1-.5.2-.3.1-.5.2-.8.3-.2.1-.4.1-.5.2-.3.1-.5.2-.8.3-.2.1-.4.1-.5.2-.3.1-.5.2-.8.3-.2.1-.4.2-.6.2-.3.1-.5.2-.8.3-.2.1-.4.2-.6.2-.3.1-.5.2-.8.3l-.6.3c-.3.1-.5.2-.8.3l-.6.3c-.3.1-.5.2-.8.3l-.6.3c-.5.2-.9.4-1.4.6-.3.1-.5.2-.8.3-.2.1-.4.2-.7.3-.2.1-.5.2-.7.3-.2.1-.5.2-.7.3-.2.1-.5.2-.7.3-.2.1-.4.2-.7.3-.2.1-.5.2-.7.3l-.6.3c-.2.1-.5.2-.7.4l-.6.3c-.2.1-.5.2-.7.4l-.6.3c-.2.1-.5.3-.7.4l-.6.3c-.2.1-.5.3-.7.4-.2.1-.4.2-.5.3-.3.1-.5.3-.7.4-.2.1-.3.2-.5.3-.3.2-.7.4-1 .6-.1.1-.2.1-.3.2-.3.2-.7.4-1 .6-.1.1-.2.2-.4.2-.2.2-.5.3-.7.5-.1.1-.3.2-.4.3-.2.1-.4.3-.6.4-.1.1-.3.2-.4.3-.2.1-.4.3-.6.4-.1.1-.3.2-.4.3-.2.1-.4.3-.5.4-.1.1-.3.2-.4.3-.2.1-.3.3-.5.4-.1.1-.2.2-.4.3-.2.1-.3.3-.5.4l-.3.3c-.2.1-.3.3-.4.4l-.3.3c-.2.2-.3.3-.4.5-.1.1-.1.2-.2.2-.2.2-.4.5-.6.7-.3.4-.5 1-.7 1.6v.1c.5 0 .9.4 1 .8
0 .1 6.4 15.3 12 18.1 5.1 2.5 24.4 4.5 39.2 3.2 9-1.8 12.1-3.7 19.4-11 2.3-2.3 3.5 6.1-.8 10.1-3.6 3.4-12.9 4.7-23.1 4.7-.8.4-1.6.9-2.4 1.4-.1.1-.3.2-.4.3-.6.3-1.1.7-1.6 1-.2.1-.4.3-.6.4-.8.5-1.6 1.1-2.3 1.6-.3.3-.7.5-1 .8-.4.3-.7.6-1.1.8-.5.4-1.1.9-1.6 1.3-.1 0-.1.1-.2.1-4.6 1.8-10.2 4-14.3 5.9-2.1 1-3.8 1.9-4.8 2.5-.6.4-1.1.7-1.2 1-.1.1-.1.3-.2.4.1.2.3.3.5.3.1 0 .2 0 .3-.1.1-.1 8.5-4.8 17.9-8.3-1.2 1.1-2.4 2.3-3.5 3.5 0 .2 0 .3-.2.4 0 0-2.4 2.4-5.4 6.8-.2.3-.4.6-.6.8-.1.2-.2.4-.3.5-.4.6-.7 1.2-1 1.8-.1.2-.3.5-.4.7-.3.5-.6 1.1-.8 1.6-.1.3-.2.5-.4.8-.2.5-.5 1-.7 1.5-.1.3-.2.6-.3.8-.2.5-.4 1-.5 1.4-.1.3-.2.6-.3.8-.2.5-.3.9-.4 1.4-.1.3-.2.6-.2.8-.1.5-.2.9-.3 1.4 0 .2-.1.4-.1.6v.2c-.1.5-.2.9-.2 1.3 0 .3-.1.5-.1.8-.1.4-.1.9-.1 1.3 0 .2 0 .5-.1.7V191.3c.5 1.2.5 1.5.4 1.8zm7.3-73.4c.5-.8 1.8-2 3.7-2.4 0-.1-.1-.2-.1-.3v-3c0-.7.6-1.3 1.3-1.3.7 0 1.3.6 1.3 1.3v3c0 .1 0 .2-.1.3 1.9.4 3.2 1.6 3.7 2.4.5.8.3 1.8-.5 2.3-.3.2-.6.3-.9.3-.5 0-1.1-.3-1.4-.7-.1-.1-.8-1.1-2.2-1.1-1.4 0-2.1 1.1-2.2 1.1
-.5.8-1.5 1-2.3.5-.6-.6-.8-1.7-.3-2.4zm12 18.1c0 .1-.1.1-.1.2l-.4.3c-.9.8-1.8 1.4-2.6 1.9-.9.5-1.7 1-2.5 1.3-1.6.7-3.1 1.2-4.6 1.5-.4.1-.8.1-1.2.2-2.4.3-4.7.1-6.9-.5h-.1-.1c-2.1-.7-4.2-1.8-6-3.3.2-.1.4-.1.6-.1-.2 0-.4.1-.6.1-.3-.3-.6-.5-.9-.8-1.1-1.1-2.1-2.3-3-3.8-.5-.8-.9-1.6-1.3-2.5-.4-.9-.8-1.9-1.2-3l-.1-.5c-.1-.2 0-.5.3-.5h.2c.5.1 1.1.2 1.6.4.3.1.5.1.8.2.3 1.3.6 2.7.7 2.9.2.3 2.7 1.8 3.1 1.5.2-.2.6-1.8.9-3.2l.6.1c.5.1.9.3 1.4.4-.4 1.6-.8 3.3-.7 3.5.2.3 3.1 1 3.5.8.5-.2 1.7-1.4 2.8-2.7.2.1.4.1.6.2l7.5 2.4 3.8 1.3c.7.3 1.5.5 2.2.8l1.5.6c.1-.1.3.1.2.3zm20.6-15.8c-.3.2-.6.3-.9.3-.5 0-1.1-.3-1.4-.7-.1-.1-.8-1.1-2.2-1.1-1.4 0-2.1 1.1-2.2 1.1-.5.8-1.5 1-2.3.5-.8-.5-1-1.5-.5-2.3.5-.8 1.8-2 3.7-2.4 0-.1-.1-.2-.1-.3v-3c0-.7.6-1.3 1.3-1.3.7 0 1.3.6 1.3 1.3v3c0 .1 0 .2-.1.3 1.9.4 3.2 1.6 3.7 2.4.7.7.4 1.7-.3 2.2zm-37.1 72.8c.1-.3.5-.4.8-.2.3.2.6.4 1 .5.3.1.4.5.2.8-.1.2-.3.3-.5.3-.1 0-.2 0-.3-.1-.3-.2-.7-.4-1-.5-.2-.2-.3-.5-.2-.8z"/>
- <path fill="url(#g)" fill-rule="nonzero" d="M203.6 209.1c0-.1 0-.1 0 0-.1-.2-.2-.3-.2-.4.1.1.1.2.2.4z"/>
- <path fill="url(#h)" fill-rule="nonzero" d="M222.3 203.8l-1.9-.6c0 .1 0 .2-.1.3-.4 1.3-1.6 2.2-2.9 2.2-.3 0-.6 0-.9-.1l-2.4-.7c-.3.1-.7.2-1 .3l10 2.9 1.3-4.5c-.4.2-.8.3-1.3.3-.2.1-.5 0-.8-.1z"/>
- <path fill="#EDEDF0" fill-rule="nonzero" d="M227.1 224.7c0 .4.1.7.1 1 0 .3.1.5.2.6 0 .1.1.1.1.1.1.1.1.1.2.1H228.3s.1 0 .1-.1c.1 0 .1-.1.2-.1l.1-.1c.1 0 .1-.1.2-.1l.1-.1.2-.2.1-.1c.1-.1.2-.2.2-.3l.1-.1c.1-.2.3-.3.4-.5v-.1c.1-.2.2-.3.4-.5 0-.1.1-.2.1-.2.1-.1.2-.3.3-.4.1-.1.1-.2.2-.3.1-.1.1-.2.2-.3-1.4 0-2.9-.1-4.3-.1v.9c.2.2.2.5.2.9z"/>
- <path fill="url(#i)" fill-rule="nonzero" d="M230 212.6c-.5 1.6-1.6 2.8-3.1 3.5v7.5c0 .4.1.7.1 1.1 0 .4.1.7.1 1 0 .3.1.5.2.6 0 .1.1.1.1.1.1.1.1.1.2.1H228.2s.1 0 .1-.1c.1 0 .1-.1.2-.1l.1-.1c.1 0 .1-.1.2-.1l.1-.1.2-.2.1-.1c.1-.1.2-.2.2-.3l.1-.1c.1-.2.3-.3.4-.5v-.1c.1-.2.2-.3.4-.5 0-.1.1-.2.1-.2.1-.1.2-.3.3-.4.1-.1.1-.2.2-.3.1-.1.1-.2.2-.3 0 0 0-.1.1-.1.1-.1.1-.2.2-.3.1-.2.2-.3.2-.5.1-.1.1-.2.2-.4s.2-.4.2-.5c.1-.1.1-.3.2-.4.1-.2.2-.4.2-.6.1-.1.1-.3.2-.4.1-.2.2-.5.3-.7 0-.1.1-.2.1-.4.1-.4.3-.7.4-1.1.1-.4.3-.9.4-1.4.1-.5.3-1 .4-1.5v-.1c.1-.5.2-1 .3-1.6v-.1c.1-.3.1-.6.2-1-1.3.1-3 .4-4.7.7z"/>
- <path fill="url(#j)" fill-rule="nonzero" d="M240.1 167.1c-.1.2-.3.3-.5.3h-.2c-.3-.1-.4-.4-.3-.7.4-.9.9-2.1 1.4-3.2-5.6 9-7.5 16.2-9.5 22.5l.9.3c1.4.4 2.6 1.4 3.3 2.7.7 1.3.9 2.8.5 4.3l-4.9 17.1c1.6-.3 3.2-.6 4.7-.9v-.1-.1c.1-.6.2-1.1.2-1.7v-.1c0-.2.1-.5.1-.7 0-.1-.1-.2 0-.3.5-4.5 1.9-23.7 1.9-23.9 0-.3.3-.5.6-.5s.5.3.5.6c0 .1-.7 9.5-1.3 16.7 1.7-.1 3.5-.2 5.3-.5 5.6-.8 10.3-2.8 13.7-4.7-.5-.9-.6-2-.4-3l1.9-7.3c.4-1.4 1.4-2.4 2.6-2.8-.9-1.2-1-2.9-.3-4.3.8-1.6 2-3.1 3.3-4.3-.4.1-.8.3-1.2.4-1.1.3-2.2.6-3.5.7-1-.8-2.2-1.2-3.6-1.3-.9 0-1.8.1-2.7.4-1.4-1.3-3.3-2-5.3-1.8-1.8.1-3.4.9-4.5 2.1-.9.1-1.8.2-2.6.4-.3 1.5-.5 2.7-.5 2.9 0 .3-.1.5-.4.6h-.2c-.2 0-.5-.1-.5-.4-.1-.2-.1-.4.9-5.1.3-1.6.7-3 1.1-4.4.1-.5.3-.9.4-1.3.1-.4.3-.8.4-1.2v-.1c.1-.4.3-.7.4-1.1 0 0 0-.1.1-.1.1-.2.1-.4.2-.5-.4.7-1.3 2.6-2 4.4zm2.2 29.4c3.9-1.5 8-3.4 12-5.7.3-.1.6-.1.8.2.1.3.1.6-.2.8-4.1 2.3-8.2 4.2-12.2 5.7h-.2c-.2 0-.4-.1-.5-.4-.1-.2 0-.5.3-.6z"/>
- <path fill="url(#k)" fill-rule="nonzero" d="M202.7 206.4c.1.2.2.5.3.8 0-.3-.1-.5-.1-.8h-.2z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M194.4 210.8c.3.6.6 1.3 1 1.9 0 .1.1.1.1.2.3.6.7 1.3 1.1 1.9 0 .1.1.1.1.2l1.2 1.8.1.1c.5.6.9 1.3 1.5 1.9.3.3.5.6.8.9.1.1.1.2.2.2l.6.6c.1.1.2.2.2.3.2.2.3.4.5.5.1.1.2.2.2.3.2.2.3.3.4.5.1.1.2.2.2.3l.5.5.2.2.2.2.4.4.1.1.5.5.2.2.3.3.2.2.3.3c.1.1.1.1.2.1.1.1.2.1.3.2l.1.1c.1.1.2.1.3.2 0 0 .1 0 .1.1.1.1.2.1.3.2h.1c.1 0 .2.1.2.1h.6c.1 0 .2-.1.2-.2 0 0 .1-.1.1-.2v-.1-.3-.1c0-.2 0-.4-.1-.6v-.2c0-.2-.1-.4-.1-.6v-.2c0-.2-.1-.4-.1-.6v-.2-.1c-.1-.3-.1-.6-.2-.9 0-.1 0-.2-.1-.3-.1-.3-.1-.6-.2-.8 0-.1 0-.1-.1-.2-.1-.4-.2-.7-.3-1.1 0-.1-.1-.2-.1-.3-.1-.3-.2-.6-.2-.9 0-.1-.1-.2-.1-.3l-.3-1.2v-.1c-.1-.4-.2-.7-.3-1.1 0-.1-.1-.2-.1-.3-.1-.4-.2-.7-.3-1.1v-.1c-.1-.4-.2-.8-.4-1.2 0-.1 0-.1-.1-.2-.1-.2-.1-.4-.2-.6-2.8-.6-5.7-1.3-8.6-2.2-.8-.2-1.5-.5-2.3-.8.2.6.5 1.1.7 1.7-.1-.2-.1-.2-.1-.1zM196.5 122c.8.5 1.8.3 2.3-.5 0 0 .8-1.1 2.2-1.1 1.4 0 2.1 1 2.2 1.1.3.5.9.7 1.4.7.3 0 .6-.1.9-.3.8-.5 1-1.5.5-2.3-.5-.8-1.8-2-3.7-2.4-.4-.1-.8-.1-1.3-.1-.4 0-.9.1-1.3.1-1.9.4-
3.2 1.6-3.7 2.4-.5.8-.3 1.9.5 2.4zm0-2s.1-.2.3-.4l.3-.3c.7-.7 2-1.7 3.9-1.7 2.9 0 4.4 2.2 4.5 2.3.3.5.2 1.2-.3 1.5-.2.1-.4.2-.6.2-.4 0-.7-.2-.9-.5 0-.1-.9-1.3-2.6-1.3-1.1 0-1.8.5-2.2.9l-.4.4c-.3.5-1 .7-1.5.3-.7-.2-.9-.9-.5-1.4zM225.4 117.2c-.4-.1-.8-.1-1.3-.1-.4 0-.9.1-1.3.1-1.9.4-3.2 1.6-3.7 2.4-.5.8-.3 1.8.5 2.3.8.5 1.8.3 2.3-.5 0 0 .8-1.1 2.2-1.1 1.4 0 2.1 1 2.2 1.1.3.5.9.7 1.4.7.3 0 .6-.1.9-.3.8-.5 1-1.5.5-2.3-.5-.6-1.8-1.9-3.7-2.3zm2.9 4.3c-.2.1-.4.2-.6.2-.4 0-.7-.2-.9-.5l-.2-.2-.2-.2c-.4-.4-1.2-.9-2.3-.9-1.7 0-2.6 1.3-2.6 1.3-.3.5-1 .7-1.5.3-.5-.3-.7-1-.3-1.5.1-.1 1.5-2.3 4.5-2.3 1.4 0 2.5.5 3.2 1.1.1.1.2.2.3.2l.3.3c.4.4.6.7.7.8.2.4.1 1.1-.4 1.4z"/>
- <path fill="url(#l)" fill-rule="nonzero" d="M241.8 136.3c-7.4 7.4-10.4 9.3-19.4 11-14.7 1.3-34.1-.7-39.2-3.2-5.6-2.7-12-17.9-12-18.1-.1-.5-.5-.8-1-.8-.4 2.5.9 6.1 2.9 9.7.3.6.7 1.2 1.1 1.8.6.9 1.2 1.8 1.8 2.6.4.6.8 1.1 1.2 1.6.4.5.8 1 1.3 1.5.2.2.4.5.6.7.4.4.8.8 1.3 1.2.2.2.4.3.6.5.8.6 1.6 1.1 2.3 1.4 6.8 2.5 16.4 4.1 26.3 4.1 1.7 0 3.4-.1 5.1-.2h.2c.1 0 12.1-1.3 17.8-3.6.3-.1.6 0 .7.3.1.3 0 .6-.3.7-3.8 1.5-10.1 2.6-14.2 3.2-.3.2-.6.3-1 .5 10.2 0 19.5-1.3 23.1-4.7 4.3-4 3.1-12.5.8-10.2z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M250.4 158.2c-3.6 1.7-6.5 3.1-7.6 3.6 2.1-1 4.8-2.2 7.6-3.6z"/>
- <path fill="url(#m)" fill-rule="nonzero" d="M224.6 99.7c.7 0 1.4-.1 2.1-.1v-.2c0-.3.3-.6.6-.5l3.3.1c.3-1.1.7-1.7.8-1.7.2-.2.5-.3.8-.1.2.2.3.5.1.8-.1.1-1.4 1.9-.1 4.9.6 1.5 2.9 2.8 3.8 3.2.2.1.3.3.3.5 0 0 .4 4.6 3.5 8.4 3.4 4.2 8.4 5.7 8.5 5.7.2.1.4.2.4.4 0 0 .6 3.3 1.9 4.6.7.7 2.6 2.6 7.4 1.7.3-.1.6.1.6.4.1.3-.1.6-.4.6-1 .2-1.9.3-2.7.3-3.1 0-4.7-1.2-5.8-2.2-1.3-1.3-1.9-3.9-2.1-4.8-1.1-.4-4.5-1.7-7.4-4.6.6 1 1.2 1.9 2 2.9v.1c0 3.5 2.3 6.4 5.4 7.4.7 1.5 1.3 3.2 1.6 5.3h.1c.3-.1.6.1.7.4 0 .1.6 2.4.4 5.9h1.4c.3-1.1.6-2.3.9-3.5.2.1.5.1.8.2 1.6.2 3.1-.9 3.5-2.5h.2c.8.3 1.7.6 2.6.7 4.1.4 7.7-2.1 9-5.8 2.8-.2 5.1-2.2 5.5-5 .9-1.1 1.8-2.2 2.6-3.3 3.3-.5 5.8-3.4 5.7-6.9 0-.6-.1-1.2-.3-1.8 1.6-1.3 2.6-3.3 2.5-5.5 0-1.8-.8-3.5-2-4.7 0-1.5-.1-3-.3-4.4 1.3-1 2.2-2.5 2.5-4.2 0-.2.1-.5.1-.7V91v-.1c0-.3 0-.6-.1-.9v-.2c0-.3-.1-.5-.2-.7V89l-.3-.9s0-.1-.1-.1c-.1-.2-.2-.5-.4-.7 0 0 0-.1-.1-.1-.3-.5-.7-1-1.2-1.4-.5-.4-1-.8-1.6-1.1-1-.5-2-.8-3.2-.8-2.1-3.4-4.7-6.4-7.8-8.9 0-.4-.1-.9-.2-1.3s-.2-.8-.4-1
.1v-.1c-.1-.4-.3-.7-.5-1v-.1c-.2-.3-.4-.6-.7-.9-.3-.3-.5-.6-.8-.8l-.9-.6s-.1 0-.1-.1c-.3-.2-.6-.3-1-.4-.1 0-.1 0-.2-.1-.3-.1-.7-.2-1-.3h-.2c-.4-.1-.8-.1-1.2-.1h-1c-.2 0-.5.1-.7.2-.1 0-.2 0-.3.1-.6.2-1.2.5-1.8.8-1.6-.5-3.2-.9-4.9-1.1-.2-.2-.4-.4-.6-.5l-.2-.2c-.1-.1-.3-.2-.4-.3-.1-.1-.2-.1-.3-.2-.1-.1-.3-.2-.4-.2-.1 0-.2-.1-.3-.1-.1-.1-.3-.1-.4-.2-.1 0-.2-.1-.3-.1-.2-.1-.3-.1-.5-.1-.1 0-.2-.1-.3-.1-.2 0-.4-.1-.5-.1h-1c-.3 0-.6 0-.9.1-.9.1-1.7.4-2.5.8s-1.4.9-2 1.5c-.7.1-1.4.3-2.1.4-1.4.3-2.7.7-4 1.2-.6.2-1.3.5-1.9.8-.4-.1-.9-.2-1.3-.3-.3 0-.5-.1-.8-.1-.3 0-.7 0-1 .1h-.3c-2.5.4-4.6 2.2-5.5 4.5-.1.3-.2.7-.3 1-.1.3-.1.7-.2 1-.4.3-.7.7-1 1-.7.1-1.4.4-2.1.7-.6.3-1.2.8-1.7 1.3-.3.3-.6.6-.8.9-.5.7-.8 1.4-1.1 2.2-.2.6-.2 1.2-.3 1.8v.2c0 .3 0 .7.1 1-.2.3-.3.6-.5 1-.2.5-.4.9-.6 1.4-.2.4-.4.9-.5 1.3-.2.1-.3.1-.5.2-.1.1-.3.2-.4.3-.4.3-.7.7-.9 1.2-.2.5-.4 1-.4 1.5 0 .8.3 1.6.7 2.1-.1.4-.1.9-.2 1.3s-.1.9-.2 1.3c-.1.7-.1 1.4-.1 2.2.2.2.5.3.7.5l2.3-.7c.2-.1.4 0 .6.1 0 0 1.3 1.3 3.1 1.1.3 0 .5.1.6.3.6-
.3 1.2-.8 1.6-1.5zm37.2 25.8c.2-.2.6-.3.8-.1.1.1 2.3 1.9 4.9-.2 2.1-1.8 2.1-3.7 1.9-4.7-1.6 0-2.9-.6-3.7-1.2-.5-.4-.6-1-.3-1.6.4-.5 1-.6 1.6-.3.3.2 3.2 2.1 6.1-.9 3.4-3.4 1.7-6.8 1.7-6.8-.3-.5-.1-1.2.5-1.5.5-.3 1.2-.1 1.5.5.9 1.7 1.6 5.8-2.1 9.4-1.4 1.4-2.9 2-4.2 2.2.2 1.2.1 3.5-2.3 5.6-1.2 1-2.3 1.3-3.3 1.3-1.8 0-3.1-1.1-3.1-1.1-.2 0-.2-.4 0-.6zm-26-50.3c2.4-.3 3.9.7 4.7 1.7.1-.1.3-.1.4-.2 2.1-.9 3.9-.9 5.3-.4.6-1.2 1.9-2.7 4.7-3.1 4.2-.6 5.5 3.1 5.5 3.2.1.3-.1.6-.4.7-.3.1-.6-.1-.7-.4 0-.1-1-2.9-4.3-2.4-2.3.3-3.3 1.5-3.8 2.4 1.2.6 2 1.4 2.5 2.1.3.5.2 1.2-.3 1.5-.5.3-1.2.2-1.5-.3-.2-.3-2.3-3.1-6.1-1.4-4.4 2-4 5.8-4 5.8.1.6-.4 1.2-1 1.2h-.1c-.6 0-1-.4-1.1-1-.2-1.7.4-5.1 3.9-7.3-.6-.7-1.7-1.4-3.5-1.2-3.7.5-4.2 3.4-4.2 3.5 0 .3-.3.5-.5.5h-.1c-.3-.1-.5-.3-.5-.6 0 0 .6-3.7 5.1-4.3z"/>
- <path fill="url(#n)" fill-rule="nonzero" d="M233 105.8c.5.6 1.1 1.2 1.8 1.6.1.3.3.7.5 1.1-.1-.6-.2-1.1-.3-1.4-.4-.3-1.2-.7-2-1.3z"/>
- <path fill="url(#o)" fill-rule="nonzero" d="M202.5 90.4c1.3 1.2 3.4.6 4.4-.9v-.1c0-.1.3-5.4-2.2-7.4 0 0-.1 0-.1.1l-.2.2s-.1.1-.1.2c-.1.1-.1.2-.2.3 0 .1-.1.1-.1.2-.1.1-.1.2-.2.4 0 .1-.1.1-.1.2-.1.2-.2.3-.3.5 0 .1-.1.1-.1.2-.1.2-.2.5-.3.7 0 .1 0 .1-.1.2-.1.2-.2.4-.2.6 0 .1-.1.2-.1.3-.1.2-.1.3-.2.5 0 .1-.1.2-.1.3 0 .2-.1.3-.1.5 0 .1 0 .2-.1.3 0 .1-.1.3-.1.4V89.7c0 .1 0 .2.1.3v.2c0 .1.1.3.2.3.1-.2.1-.2.2-.1z"/>
- <path fill="url(#p)" fill-rule="nonzero" d="M209.1 94.2V94c-.1-.5-.3-1.4-.7-2.6-.1-.3-.2-.5-.3-.7-.6 2.1-3.7 3.3-5.8 1.5 0 .4-.1.7-.1 1.1 0 .6 0 1.1.1 1.6s.2 1 .4 1.3c.1.1.1.2.2.2.1.1.3.2.4.3.1.1.3.1.4.2 2.1.7 4.6-.6 5.4-2.7z"/>
- <path fill="url(#q)" fill-rule="nonzero" d="M204 98c0 .3.1.5.1.8-.1-.7-.2-1.3-.3-2 .1.4.1.8.2 1.2z"/>
- <path fill="url(#r)" fill-rule="nonzero" d="M210.6 95.5c-.4 2.7-3.6 4.7-6.5 3.5v.2c.1.4.2.8.2 1.1.4 1.6 1 2.9 1.6 3.4 2.8.5 6.9-1.5 7.1-4.5v-.5c-.2-.6-.5-1.4-1.1-2.1-.4-.4-.9-.8-1.3-1.1z"/>
- <path fill="url(#s)" fill-rule="nonzero" d="M214.2 112c-.1 0-.1-.1 0 0-.2-.4 0-.7.3-.8.2-.1 3.9-1.4 3.9-5.2 0-2.6-2.1-4.5-3.5-5.5.2 3.4-3.6 6.1-7 6 1.5 2.5 3.4 3 3.5 3 .6.1 1 .7.9 1.3-.1.5-.6.9-1.1.9.2.2.5.3.7.3.6.3 1.5.2 2.3 0z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M240.4 163.4c-.5 1.1-1 2.3-1.4 3.2-.1.3 0 .6.3.7h.2c.2 0 .4-.1.5-.3.7-1.7 1.6-3.7 2.1-4.6.1-.1.1-.3.2-.4.2-.1.3-.2.5-.2 1-.5 4-1.9 7.6-3.6 3-1.4 6.1-3 9-4.5 0-.3.1-.6.3-.9 0 0 0-.1.1-.2-5.5 2.5-17.4 8.1-18 8.5-.3.2-.8 1.2-1.4 2.3z"/>
- <path fill="url(#t)" fill-rule="nonzero" d="M275.8 140c-.7.2-1.3.6-2 .9v.4c.4 1.9 1.8 3.4 3.5 4.2.5-.6.9-1.1 1.3-1.7.3-.5.6-.9.8-1.3-.8-.2-1.5-.6-2-1.1-.4-.5-.7-1-.9-1.5-.2-.1-.4 0-.7.1z"/>
- <path fill="url(#u)" fill-rule="nonzero" d="M273.3 149.1c.1 0 .1-.1.2-.1l.6-.5c.2-.1.4-.3.6-.4.1-.1.2-.2.3-.2-.3-.2-.7-.4-1-.7-1.4-1.1-2.5-2.7-3-4.4-.1.1-.2.1-.3.2-.2.1-.4.3-.6.4l-.6.5c-.2.2-.4.3-.6.5-.6.5-1.2 1-1.7 1.5-.6.5-1.1 1-1.6 1.5-.9.9-1.8 1.9-2.6 2.9s-1.4 1.8-1.7 2.2c-.2.3-.3.5-.4.7l-.1.2c-.2.3-.2.7-.1 1 .1.4.3.7.6.8.3.2.7.2 1 .1 0 0 .1 0 .3-.1.2-.1.4-.1.7-.3.6-.2 1.4-.6 2.6-1.1h.1c-1.2-2.3-.6-5.1-.6-5.3.1-.6.7-1 1.3-.8.4.1.7.4.8.8 1.8-.4 4.1 0 5.8.6z"/>
- <path fill="url(#v)" fill-rule="nonzero" d="M281.4 141.3c.9-.2 2.7-.9 4.2-3.5-1-.8-2.6.8-3.3-.6-.6-1.1.1-1.5-.4-2.1h-.6c-1.6 0-2.9.7-3.5 1.9-.6 1.1-.3 2.5.6 3.5.6.8 1.8 1.1 3 .8z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M267.5 148.5c.1.2.1.4 0 .6 0 0-.5 2.5.5 4.1.5.8 1.3 1.2 2.4 1.4 1.3.2 2.3 0 3.1-.6 1.2-.9 1.4-2.7 1.4-2.7 0-.4.3-.7.6-.9-.3-.3-.7-.5-1.1-.8-.3-.2-.7-.4-1.2-.5-1.6-.6-3.9-1-5.7-.6z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M148 139.7c-.3.1-.4.5-.3.7 2 4.3 4 8.2 6 12 .1.2.3.3.5.3.1 0 .2 0 .3-.1.3-.1.4-.5.2-.8-2-3.7-4-7.6-6-11.9-.1-.2-.4-.4-.7-.2zM160.4 163.3c.1 0 .2 0 .3-.1.3-.2.3-.5.2-.8-.6-.9-1.2-1.9-1.8-2.8-.1-.1-.2-.2-.4-.3.6 1.2 1 2.4 1.2 3.7.2.2.4.3.5.3zM143.3 129.9h-.2v.4l.4 1c.1.2.3.3.5.3h.2c.3-.1.4-.5.3-.7l-.4-1h-.8zM283.4 171.4c1.5-1.3 3.1-2.7 4.6-4.1.2-.2.2-.6 0-.8-.2-.2-.6-.2-.8 0-1.7 1.5-3.3 3-5 4.4.3.2.6.4.9.7.2-.1.2-.2.3-.2zM185 190.5c-.2.2-.1.6.1.8.4.3.8.5 1.2.8.5.4 1.1.8 1.6 1.1.1.1.2.1.3.1.1 0 .2-.1.3-.1l.1-.1c.2-.3.1-.6-.1-.8-.7-.5-1.5-1-2.2-1.5-.2-.1-.4-.3-.6-.4-.2-.2-.5-.1-.7.1zM242.5 197.6h.2c4-1.5 8-3.5 12.2-5.7.3-.1.4-.5.2-.8-.1-.3-.5-.4-.8-.2-4.1 2.2-8.1 4.1-12 5.7-.3.1-.4.4-.3.7.1.2.3.3.5.3zM270 181.4c-.2-.2-.5-.3-.8-.1l-.9.7c-.1.1-.2.2-.2.3l1.2.3.5-.4c.4-.2.4-.6.2-.8zM169.9 175c-.2-.2-.5-.3-.8-.1-.2.2-.3.5-.1.8 3 3.6 6 7 9.2 9.8.1.1.2.1.4.1.1 0 .3-.1.4-.2.2-.2.2-.6 0-.8-.6-.5-1.2-1.1-1.7-1.7-1.2-1.2-2.4-2.4-3.6-3.7-1.3-1.2-2.6-2
.7-3.8-4.2zM164 167l-.6-.9c-.2-.3-.5-.3-.8-.2-.3.2-.3.5-.2.8l.6.9c.1.2.3.2.5.2.1 0 .2 0 .3-.1.3-.1.3-.4.2-.7zM191.8 195.5c.3.2.7.4 1 .5.1 0 .2.1.3.1.2 0 .4-.1.5-.3.1-.3 0-.6-.2-.8-.3-.2-.6-.3-1-.5-.3-.1-.6-.1-.8.2-.2.4-.1.7.2.8zM202.4 198.9c-.3-.1-.6.1-.7.4-.1.3.1.6.4.7.7.2 1.5.4 2.2.6l.3-1.1c-.7-.1-1.5-.3-2.2-.6zM169.1 184.2c-1.7-2.3-3.4-4.7-5-7.1-1.6-2.4-3.2-4.9-4.7-7.4-.3.8-.7 1.5-1.2 2.3 4.5 7.3 9.2 13.9 14 19.6l2.3-.7c-1.9-2.1-3.7-4.3-5.4-6.7zM133.2 123l2.1-1.3-2.1 1.3zM271.7 191c.1 0 .2.1.3.1.6.1 1.2.2 1.8.2.3 0 .7 0 1-.1 3.4-2.9 5.2-5 5.3-5 0 0 0-.1.1-.1l-2.4-.6c-1 1-3.1 3-6.1 5.5zM193.6 208.9c.8.3 1.5.6 2.3.8 2.9.9 5.8 1.6 8.6 2.2.8.2 1.6.3 2.5.4 1.6.3 3.2.5 4.8.6l-4.8-1.4c-1.2-.3-2.2-1.1-2.9-2.1-.1 0-.2 0-.3-.1-2.4-.5-4.7-1.1-7.2-1.9-1.4-.4-2.8-1-4.1-1.7-1-.5-1.9-1-2.9-1.6-1.2-.7-2.4-1.6-3.6-2.5-.3-.2-.6-.4-.9-.7l.6 1.9c.1.3.1.5.1.8.2.2.3.5.4.7v.1c.5.4 1.1.7 1.6 1.1 1 .6 1.9 1.2 2.9 1.7.9.9 1.9 1.3 2.9 1.7zM266.3 197.8c-.7-.4-1.3-.8-2-1.3-1.9 1.3-4 2.6-6.2 3.9-5 2.9-10.9 5.
6-17.4 7.6h-.1c-.9.3-1.9.6-2.8.8-.8.2-1.6.4-2.3.6-1.5.4-3.1.7-4.7.9l-.7 2.3c1.7-.3 3.4-.5 5-.9l2.4-.6c1-.2 1.9-.5 2.9-.8 6.3-1.8 12-4.3 17-7 2.8-1.5 5.4-3.1 7.8-4.7.3-.2.7-.5 1.1-.8z"/>
- <path fill="#FFFEFE" fill-rule="nonzero" d="M235.2 188.8c-.7-1.3-1.9-2.3-3.3-2.7l-.9-.3-15.3-4.4c-.5-.1-1-.2-1.6-.2-2.5 0-4.7 1.7-5.4 4l-4.1 14.3-.3 1.1-1.2 4.1c-.2.6-.2 1.1-.2 1.7 0 .3 0 .5.1.8.1.5.2 1 .5 1.5.1.1.1.2.1.3 0 0 0 .1.1.1.1.2.2.4.4.5.7 1 1.7 1.7 2.9 2.1l4.8 1.4 3.8 1.1 7 2 .7.2c.5.1 1 .2 1.6.2.8 0 1.5-.2 2.2-.5 1.5-.7 2.6-1.9 3.1-3.5l.7-2.3 4.9-17.1c.3-1.5.1-3.1-.6-4.4zm-1.7 3.7l-5.6 19.4c-.4 1.5-1.8 2.4-3.2 2.4-.3 0-.6 0-.9-.1l-16.2-4.7c-1.8-.5-2.8-2.4-2.3-4.2l5.6-19.4c.4-1.5 1.8-2.4 3.2-2.4.3 0 .6 0 .9.1l16.2 4.7c1.8.5 2.8 2.4 2.3 4.2z"/>
- <path fill="#FFFEFE" fill-rule="nonzero" d="M228.7 191.1l-12.9-3.7c-.2 0-.3-.1-.5-.1-.7 0-1.4.5-1.6 1.2l-4.7 16.2c-.3.9.3 1.8 1.2 2.1l12.9 3.7c.2 0 .3.1.5.1.7 0 1.4-.5 1.6-1.2l4.7-16.2c.2-.9-.4-1.9-1.2-2.1zm-14.4 7.2c.1-.4.4-.6.8-.6h.2l8.1 2.3c.4.1.7.6.6 1-.1.4-.4.6-.8.6h-.2l-8.1-2.3c-.5-.1-.7-.5-.6-1zm-.9 3.2c.1-.4.4-.6.8-.6h.2l3.2.9c.4.1.7.6.6 1-.1.4-.4.6-.8.6h-.2l-3.2-.9c-.5 0-.8-.5-.6-1zm9.7 6.7l-10-2.9-1.9-.5.4-1.3c.4.6 1 1 1.7 1.2l.9.2 2.4.7c.3.1.6.1.9.1 1.4 0 2.6-.9 2.9-2.2 0-.1.1-.2.1-.3l1.9.6c.3.1.6.1.9.1.4 0 .9-.1 1.3-.3l-1.5 4.6zm1.8-10.3c-.1.4-.4.6-.8.6h-.2l-8.1-2.3c-.4-.1-.7-.6-.6-1 .1-.4.4-.6.8-.6h.2l8.1 2.3c.5.1.8.5.6 1zm1-3.3c-.1.4-.4.6-.8.6h-.2l-8.1-2.3c-.4-.1-.7-.6-.6-1 .1-.4.4-.6.8-.6h.2l8.1 2.3c.4.1.7.6.6 1zM275 168.4c-.4 0-.7-.1-1.1-.1-1.7 0-3.4.3-5.1.9-.7.3-1.4.5-2.1.9-1.1.6-2.1 1.3-3.1 2.2-1.3 1.2-2.5 2.7-3.3 4.3-.7 1.4-.6 3.1.3 4.3-1.3.4-2.3 1.5-2.6 2.8l-1.9 7.3c-.3 1-.1 2.1.4 3 0 .1 0 .1.1.2.2.3.4.5.6.8.5.5 1.2.9 1.9 1.1.3.1.7.1 1 .1 1.1 0 2.1-.4 2.9-1.2
.5.5.9.9 1.5 1.3.6.5 1.3.9 2 1.3l1.2.6c1.5.7 3.1 1.1 4.7 1.3.6.1 1.1.1 1.7.1 2.5 0 5-.6 7.2-1.8 2.8-1.5 5-3.7 6.4-6.5.5-1 .6-2.1.3-3.1 0-.1-.1-.2-.1-.3-.1-.3-.3-.6-.4-.8.5-.2.9-.5 1.3-.8.6-.5 1.1-1.2 1.3-2l1.9-7.3c.3-1.1.1-2.2-.4-3.1-.5-.9-1.4-1.6-2.4-1.9h-.1c-.3-.1-.7-.1-1-.1-1.1 0-2.1.4-2.9 1.2-.5-.6-1.1-1-1.7-1.5-.3-.2-.6-.5-.9-.7-.7-.4-1.4-.8-2.1-1.1-.9-.4-1.9-.7-2.9-1-1.1-.2-1.8-.3-2.6-.4zm10.6 22.1c-1.2 2.4-3.1 4.3-5.5 5.6-2 1-4.1 1.5-6.1 1.5-4.7 0-9.2-2.5-11.5-6.9l-.5 2c-.2.9-1 1.4-1.8 1.4-.2 0-.3 0-.5-.1-1-.3-1.6-1.3-1.4-2.3l1.9-7.3c.2-.9 1-1.4 1.8-1.4.2 0 .3 0 .5.1l7.3 1.9c1 .3 1.6 1.3 1.4 2.3-.2.9-1 1.4-1.8 1.4-.2 0-.3 0-.5-.1l-3.7-1c1.1 2.8 3.5 4.9 6.4 5.6.8.2 1.5.3 2.3.3 3.4 0 6.6-1.8 8.3-4.9.4-.6 1-.9 1.6-.9.3 0 .6.1.9.2h.1c.9.5 1.2 1.6.8 2.6zm-10.6-7c.6 1 1.4 1.6 2.5 1.9l.3.1 2.4.6 1 .3c-.4.3-.7.7-1 1.1v.1c-1.1 2-3.1 3.4-5.3 3.7-.3 0-.7.1-1 .1-.6 0-1.2-.1-1.8-.2-.1 0-.2-.1-.3-.1l-.9-.3c1.2-.5 2.2-1.5 2.5-2.8.4-1.4 0-2.8-1-3.8-.5-.6-1.2-1-2-1.2l-.9-.2-1.2-.3-1.6-.4c.5-.
4.8-.8 1.1-1.4 1.3-2.2 3.7-3.6 6.3-3.6.3 0 .6 0 .9.1.3 0 .6.1.9.2.4.1.8.3 1.2.4h-.1c-1 .4-1.9 1.3-2.3 2.4 0 .1-.1.2-.1.4-.3.8-.2 1.9.4 2.9zm10.4-6l.5-2c.2-.9 1-1.4 1.8-1.4.2 0 .3 0 .5.1 1 .3 1.6 1.3 1.4 2.3l-1.9 7.3c-.2.9-1 1.4-1.8 1.4-.2 0-.3 0-.5-.1l-7.3-1.9c-1-.3-1.6-1.3-1.4-2.3.2-.9 1-1.4 1.8-1.4.2 0 .3 0 .5.1l3.7 1c-1.1-2.8-3.5-4.9-6.4-5.6-.8-.2-1.6-.3-2.4-.3-3.3 0-6.5 1.8-8.2 4.8-.3.7-1 1.1-1.7 1.1-.2 0-.3 0-.5-.1l-.4-.1h-.1c-.9-.5-1.3-1.6-.8-2.5 1.2-2.4 3.1-4.3 5.5-5.6 2-1 4.1-1.5 6.1-1.5 4.8-.2 9.3 2.3 11.6 6.7zM160.2 164.9c0-.6-.1-1.3-.2-1.9-.2-1.3-.6-2.6-1.2-3.7-1.4-2.7-3.7-4.8-6.7-6-.7-.3-1.5-.5-2.3-.6-.7-.1-1.4-.2-2.1-.2h-.4c-1 0-2 .2-3 .4 0-.1-.1-.3-.1-.4-.3-.7-.9-1.2-1.6-1.5-.3-.1-.7-.2-1-.2-.6 0-1.2.2-1.7.5s-.8.8-1 1.3l-1.2 3.2-1.1 2.9c-.4 1.1-.1 2.3.7 3.1-1.3.5-2.2 1.8-2.2 3.3 0 1.9.5 3.7 1.3 5.3.3.7.7 1.3 1.1 1.9 2.3 3.2 6 5.2 10.2 5.2h.1c3.4 0 6.5-1.4 8.8-3.8.6-.6 1.1-1.2 1.6-1.9s.8-1.5 1.2-2.3c.5-1.3.8-2.9.8-4.6zm-12.5 10.5h-.1c-3.6 0-6.8-1.8-8.6-4.6-.6-.9-1.1-1.9
-1.3-3-.2-.8-.4-1.7-.4-2.6 0-.4.1-.7.4-.9.2-.2.6-.4.9-.4.7 0 1.3.6 1.3 1.3 0 2.2 1 4.4 2.7 5.9 1.5 1.3 3.3 1.9 5.1 1.9 2.2 0 4.3-.9 5.8-2.7 2.8-3.2 2.5-8.1-.7-10.9-1.5-1.3-3.3-1.9-5.1-1.9-2.2 0-4.3.9-5.8 2.7l3.7 1.4c.3.1.5.5.4.8-.1.3-.3.4-.6.4h-.2l-5.2-2-.8-.3c-.3-.1-.5-.5-.4-.8l1.2-3.2 1.1-2.8c.1-.3.3-.4.6-.4h.2c.3.1.5.5.4.8l-1.2 3.3c1.9-1.7 4.3-2.5 6.8-2.5 1.2 0 2.4.2 3.6.6 4 1.5 6.6 5.3 6.6 9.5-.1 5.7-4.7 10.3-10.4 10.4zm-5.8-11.5l1.9.7-.2.1h-.1c-.6.3-1 .7-1.3 1.2 0-.2-.1-.5-.1-.8 0-.3 0-.8-.2-1.2zm5.6 1.6l1.7-4.6c.1-.3.3-.4.6-.4h.2c.3.1.5.5.4.8l-1.8 4.8c0 .2-.1.3-.3.4L145 168l-.1-.2-.8-.3c-.1-.3 0-.7.3-.8l3.1-1.2zm-.6-5.7h.4c0 .1-.1.2-.1.3-.1-.2-.2-.3-.3-.3zm3.9 7l1.6-4.4c.4.7.7 1.5.7 2.4.1 1.5-.4 2.9-1.3 4-1 1.2-2.6 1.9-4.2 1.9-.8 0-1.5-.2-2.2-.5.2 0 .3-.1.5-.2l3.3-1.5c.1 0 .2-.1.2-.1.7-.3 1.2-.9 1.4-1.6zM185.7 204c0-.3 0-.5-.1-.8l-.6-1.9-.3-1.1c-.1-.3-.2-.5-.4-.7 0-.3 0-.5-.1-.8l-.9-3.1c-.1-.3-.2-.5-.4-.7 0-.3 0-.5-.1-.8-.7-2.3-2.8-3.9-5.2-3.9-.5 0-1.1.1-1.6.2-.3.1-.5.2-.7.4h-
.2c-.2 0-.4 0-.6.1h-.2l-2.3.7-.6.2c-.3.1-.5.2-.7.4h-.2c-.2 0-.4 0-.6.1l-3.1.9c-.3.1-.5.2-.7.4h-.2c-.2 0-.4 0-.6.1l-3.1.9c-.3.1-.5.2-.7.4h-.2c-.2 0-.4 0-.6.1-2.9.9-4.5 3.9-3.6 6.8.1.3.2.5.4.7 0 .3 0 .5.1.8l.1.2c-.7.7-1.2 1.5-1.5 2.5-.5 1.6-.4 3.3.3 4.8.7 1.4 1.8 2.4 3.2 3-.3.5-.6 1.1-.8 1.8-.9 3.3 1.1 6.7 4.5 7.6.5.1 1 .2 1.6.2 2.8 0 5.3-1.9 6-4.7.3-1 .3-2.1 0-3.1l.6-.8c.1.1.2.1.3.2l5.7 2.1h.1c.6.2 1.1.3 1.7.3 2.3 0 4.4-1.5 5.2-3.7v-.1c.3-1-.1-2-.9-2.5 2.1-1.2 3.2-3.8 2.5-6.2v-.1c-.2-.5-.3-.7-.5-.9zm-2.2-.2l-3.1.9-.9-3.1 3.1-.9.9 3.1zm-4 5.7l-3.1-1.1 2-2.7c.1.1.2.3.2.4 0 .3 0 .5.1.8l.8 2.6zm2.6-10.3l-3.1.9-.9-3.1 3.1-.9.9 3.1zm-4.4-6.8c1.4 0 2.6.9 3.1 2.3l-3.1.9-.9-3.1c.2-.1.5-.1.9-.1zm-2.5.6l.9 3.1-3.1.9-.9-3.1 3.1-.9zm-3 6.5c.3-.1.5-.2.7-.4h.2c.2 0 .4 0 .6-.1l2.5-.7.1.3c-1.5.1-2.8.9-3.7 2l-3.7 5-1-.4c-.5-1.2-1.4-2.2-2.5-2.9l-.2-.8 2.5-.7c.3-.1.5-.2.7-.4h.2c.2 0 .4 0 .6-.1l3-.8zm-1.6-5.2l.9 3.1-3.1.9-.9-3.1 3.1-.9zm-4.6 1.4l.9 3.1-3.1.9-.9-3.1 3.1-.9zm-4.6 1.4l.9 3.1-3.1.9c-.4-1.7.5
-3.5 2.2-4zm7.1 17.9c.1.2.2.5.2.8.2.7.2 1.5.1 2.2-.5 1.8-2.1 3-3.9 3-.3 0-.7 0-1-.1-2.1-.6-3.4-2.7-2.9-4.9.5-1.8 2.1-3 3.9-3 .3 0 .7 0 1 .1l1.7-2.2-2.3-.8c-.4.6-.9 1-1.5 1.4-.6.3-1.2.4-1.8.4-1.5 0-2.9-.8-3.6-2.2-1-2-.2-4.4 1.8-5.4l-.5-1.7 3.1-.9.7 2.3c1.2.4 2.1 1.4 2.5 2.6l.1.5 3.6 1.3 4.6-6.2c.6-.8 1.6-1.2 2.5-1.2.7 0 1.4.2 2 .7L168.5 215zm13.9-2.1c-.4 1.3-1.7 2.2-3 2.2.1.1.1.3 0 .4-.1.2-.3.4-.5.4h-.2l-3.8-1.3c-.3-.1-.4-.4-.4-.7 0-.1.1-.2.2-.3l-2.1-.8 2-2.6 7.8 2.7zm-.6-3.6l-.9-3.1 3.1-.9c.5 1.7-.5 3.5-2.2 4z"/>
- <path fill="#FFFEFE" fill-rule="nonzero" d="M166.9 216.4c-.3-.9-1.1-1.5-2-1.5-.2 0-.4 0-.6.1-1.1.3-1.7 1.5-1.4 2.6.3.9 1.1 1.5 2 1.5.2 0 .4 0 .6-.1h.2c1-.3 1.6-1.4 1.3-2.4-.1-.1-.1-.2-.1-.2zM163.9 207.1c-.3-.8-1.1-1.3-1.9-1.3-.3 0-.5 0-.8.1-1.1.4-1.6 1.6-1.2 2.7.3.8 1.1 1.3 1.9 1.3.3 0 .5 0 .8-.1.1 0 .1 0 .2-.1 1-.4 1.5-1.5 1.1-2.5l-.1-.1zM136.1 109.9c-.3.6-.5 1.2-.6 1.8 0 .1-.1.2-.1.4-.1.7-.2 1.3-.2 2l-.4.2-.6.4-.9.6-.2.1-.4.3-2 1.2-2.7 1.7-2.3 1.4c-.3.1-.5.3-.7.5-1.8 1.4-2.5 3.9-1.5 6 .8 1.8 2.6 3 4.6 3h.2c.7 0 1.3-.2 1.9-.4.3-.2.7-.3 1-.6l.4-.2 1.6-1 1.1-.7.5-.3 1.9-1.2.9-.6 2.2-1.4.6-.4c.6.3 1.3.6 2 .7h.1c.7.2 1.4.2 2.1.2 4.5 0 8.4-3.1 9.4-7.5.3-1.4.3-2.9 0-4.4-.3-1.1-1-2-2.1-2.4h-.1c0-1.1-.5-2.1-1.3-2.8-1.1-.9-2.4-1.5-3.8-1.8h-.1c-.6-.1-1.3-.2-2-.2-1.8 0-3.4.5-4.9 1.4-.8.5-1.6 1.1-2.2 1.8-.4.6-1 1.4-1.4 2.2zm2.8 2.8c.6-2.9 3.2-4.9 6-4.9.4 0 .8 0 1.3.1.9.2 1.7.6 2.4 1.2l-.2.1.1.1-4.4 2.8c-.3.2-.6.5-.7.8-.2.6-.2 1.2.2 1.7.4.6 1 .9 1.7.9.4 0 .7-.1 1-.3l4.6-2.7c.2.9.2 1.9 0 2.8
-.3 1.5-1.2 2.7-2.2 3.5-1.1.8-2.4 1.3-3.8 1.3-.4 0-.9 0-1.3-.2-1-.3-2-.8-2.8-1.6l-.7.4-2.2 1.4-2.4 1.5-2.1 1.3-4 2.5c-.1.1-.2.2-.4.2-.2.1-.4.1-.6.1h-.1c-.6 0-1.1-.3-1.4-.9-.3-.8 0-1.7.8-2l11.5-7.3c-.1-.5-.2-1-.2-1.5-.3-.3-.3-.8-.1-1.3z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M154.8 144.4l-2.2-4.7c-.1-.3-.5-.4-.7-.3-.3.1-.4.5-.3.7l2.2 4.7c.1.2.3.3.5.3.1 0 .2 0 .2-.1.3 0 .4-.4.3-.6zM161 185.3c.1.2.3.2.5.2.1 0 .2 0 .3-.1.3-.2.3-.5.1-.8l-2.5-3.5c-.2-.3-.5-.3-.8-.1-.3.2-.3.5-.1.8l2.5 3.5z"/>
- <path fill="#E1E1E6" fill-rule="nonzero" d="M179 214.8l-3.8-1.3c-.2-.1-.3 0-.5.1-.1.1-.2.2-.2.3-.1.3.1.6.4.7l3.8 1.3h.2c.2 0 .5-.1.5-.4v-.4c-.1-.2-.2-.3-.4-.3zM179.7 181.2c.1 0 .3 0 .4-.1.2-.2.3-.5.1-.8l-2.7-3.2-1.6-1.9c-.2-.2-.5-.3-.8-.1-.2.2-.3.5-.1.8l.9 1.1 3.3 4c.2.1.4.2.5.2z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M268.1 159.5l-6 5.5c-.2.2-.2.6 0 .8.1.1.3.2.4.2.1 0 .3 0 .4-.1l6-5.5c.2-.2.2-.6 0-.8-.2-.3-.5-.3-.8-.1zM125.9 112.2c.1.2.3.4.5.4h.2c.3-.1.4-.4.3-.7l-1.7-4.7c-.1-.3-.4-.4-.7-.3-.3.1-.4.4-.3.7l1.7 4.6z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M98.9 188.6c.6-.9 1.6-1.5 2.5-1.7-1.1.2-2.2.8-2.9 1.8-.2.2-.3.5-.4.7h.2c.2-.2.3-.5.6-.8zM113 187.5c-.7-.2-1.3-.4-2-.3-1.6 0-3.3.8-4.3 2.1 0 .1.1.2.1.3 1.4-2 3.9-2.8 6.2-2.1zM95.5 213.7c.3.6.7 1.2 1.3 1.6.5.4 1.1.6 1.7.6l-.1-.1c-.6-.1-1.2-.3-1.7-.7-.6-.4-1-.9-1.2-1.4zM90.5 210.7c-2-1.5-2.9-4-2.4-6.3-.6 2.4.3 5 2.4 6.5 1.1.8 2.4 1.1 3.6 1.1.3 0 .7 0 1-.1v-.2c-1.6.4-3.2.1-4.6-1zM91.6 191.8c.4-.5.8-1 1.3-1.4-.6.4-1.2.9-1.6 1.6-1.8 2.5-1.4 5.9.8 7.9.1 0 .2-.1.3-.1-2.3-2-2.7-5.5-.8-8zM116.4 197.4c.2.1.3.2.5.4-.2-.2-.4-.4-.7-.5-.2-.2-.5-.3-.8-.4.3.1.7.3 1 .5zM109.4 218.5l-.6-3.3h-.1l.5 3.3c.1.1.2.1.2 0zM108.5 214.1c.1 0 .1 0 0 0 .1 0 .1 0 0 0zM102.4 213.5c-.1.3-.2.5-.4.7l-.3.3s0 .1.1.1l.3-.3c.1-.2.2-.5.3-.8l.1.1c.3.2.6.3.9.5-.4-.1-.7-.3-1-.6 0 .1 0 0 0 0zM111.9 213.8c0 .1.1.2.2.4.2.4.4.9.5 1.4 0-.1 0-.1.1-.2-.2-.5-.4-1-.5-1.4-.1-.1-.2-.2-.3-.2 0-.3-.2-.5-.5-.5h-.2c-.1 0-.2.1-.2.2.1 0 .1-.1.2-.1.3 0 .6.1.7.4zM110.3 225.1c.1.3-.2.6-.6.8-.5.3-1.2.5
-1.8.5.7-.1 1.4-.3 2-.5.5-.2.8-.6.7-.9l-1-5.4h.1c-.1 0-.2.1-.2.1l.8 5.4zM99.7 215.7l.1.1h.1c-.1 0-.1 0-.2-.1zM104.3 217.3c-.7-.2-1.3-.5-1.9-.9.6.4 1.2.7 1.9.9z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M114.5 211.4c.3.1.5.4.5.7-.4 1.9-1 4.2-2.5 5.8l-.1.1c-.5.6-1.2 1.1-2 1.4.9-.4 1.6-.9 2.1-1.5l.1-.1c1.4-1.6 2-3.9 2.4-5.8.1-.3-.1-.6-.5-.7h-.1c-.3 0-.5.2-.6.5v.1c.1-.3.4-.5.7-.5z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M121.5 195.5c.4-1.4.5-2.9.2-4.4-.4-2.7-1.9-5.1-4.2-6.8-1.8-1.3-3.9-2-6.1-2-1.4 0-2.7.3-4 .8-1.4-.9-3.1-1.3-4.8-1.3-2.4 0-4.7.9-6.4 2.5-3.3.1-6.5 1.8-8.4 4.5-1.9 2.7-2.5 6.2-1.6 9.3-.3.3-.6.7-.9 1.1-3.5 4.9-2.4 11.7 2.5 15.2 1.2.8 2.5 1.4 3.8 1.8.6 1 1.4 1.9 2.4 2.6 1.2.9 2.6 1.4 4 1.5.7.6 1.5 1 2.4 1.5l.7 4.2.1.5c.3 2.1 2.2 4.6 6.2 4.6.7 0 4.4-.1 6.5-2.6.5-.6.8-1.2 1-1.9.2-.8.3-1.6.2-2.4l-.3-2.1c.4-.3.8-.7 1.2-1.1l.2-.2c2.2-2.5 3.1-5.7 3.5-7.9.1-.5.1-1.1.1-1.6.8-.6 1.5-1.4 2.1-2.2 1.8-2.4 2.5-5.4 2-8.4-.4-1.9-1.2-3.7-2.4-5.2zm-1.9 12.1c-.8 1.1-1.8 2-3 2.7.4.6.6 1.4.5 2.1-.4 1.9-1.1 4.8-2.8 6.8l-.1.1c-.6.7-1.3 1.2-2.1 1.7l.7 3.6c.1.5 0 1.1-.2 1.6-.1.3-.2.5-.4.7-1.1 1.3-3.1 1.8-4.6 1.8-2.4 0-3.6-1.2-3.8-2.5l-.1-.5-1-5.5c-1.5-.6-2.7-1.3-3.7-2.2-1.3 0-2.5-.3-3.5-1.1-1-.7-1.8-1.7-2.2-2.8-1.5-.1-2.9-.6-4.1-1.5-1.8-1.3-3.1-3.2-3.5-5.4-.4-2.2.1-4.4 1.4-6.3.5-.7 1.1-1.3 1.7-1.8-1.4-2.7-1.2-6 .6-8.6 1.5-2.2 4.1-3.6 6.8-3.6h.7c1.3-1.6 3.2-2.6 5.3
-2.6 1.4 0 2.8.4 4 1.2.2.2.4.3.6.5 1.2-.8 2.7-1.3 4.2-1.3 1.7 0 3.3.5 4.6 1.4 1.7 1.2 2.9 3 3.3 5.1.3 1.6.1 3.2-.6 4.6 1.5 1.3 2.4 3 2.8 5 .4 2.5-.1 4.9-1.5 6.8z"/>
- <path fill="url(#w)" fill-rule="nonzero" d="M108.2 214.3c.1 0 .2-.1.3-.1-.1 0-.2 0-.3.1z"/>
- <path fill="url(#x)" fill-rule="nonzero" d="M110.3 225.1l-.9-5.4c.1 0 .2-.1.2-.1.2-.1.5-.1.7-.2.8-.3 1.5-.8 2-1.4l.1-.1c1.4-1.6 2.1-3.9 2.5-5.8.1-.3-.1-.6-.5-.7-.3-.1-.6.1-.7.4-.2 1.2-.6 2.6-1.1 3.7v-.1c0 .1 0 .1-.1.2-.2-.5-.4-1-.5-1.4-.1-.2-.1-.3-.2-.4-.1-.3-.4-.5-.7-.4-.1 0-.1.1-.2.1-.1.2-.2.4-.1.6 0 .1.1.3.2.5.2.4.5 1 .6 1.6.2.6.1.9 0 .9l-.1.1c-.4.5-1 .9-1.6 1.1-.2.1-.3.1-.5.2h-.1l-.5-3.3c-.9.3-1.8.4-2.2.4h-.4c-.3 0-.5-.3-.5-.6 0-.1.1-.2.2-.3-.7 0-1.3-.2-2-.4h.1l.5 3s-.1 0-.1-.1c-.7-.2-1.3-.5-2-.9-.1 0-.2 0-.3-.1-1.2-.7-1.9-1.8-2.2-2.7v-.1-.2c-.1-.2-.1-.4-.1-.6v-.1c0-.1-.1-.3-.2-.4-.1-.1-.3-.1-.5 0-.3.1-.3.9-.1 1.8.2.6.6 1.2 1 1.7l.1.1c.3.4.7.7 1 1 1.1.9 2.5 1.4 3.8 1.8l1.3 7.2c1.3 0 2.6.1 3.8.1.1-.1.4-.3.3-.7z"/>
- <path fill="#EDEDF0" fill-rule="nonzero" d="M107.5 226.5h.4c.7-.1 1.4-.3 1.8-.5-1.2-.1-2.5-.1-3.8-.1v.1c.2.4.8.5 1.6.5z"/>
- <path fill="url(#y)" fill-rule="nonzero" d="M107.5 226.5h.4c.7-.1 1.4-.3 1.8-.5-1.2-.1-2.5-.1-3.8-.1v.1c.2.4.8.5 1.6.5z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M105.2 203.6c.8-.3 1.5-.5 2.3-.8-.8.3-1.6.6-2.3.8zM102.8 204.3c-.7.2-1.5.3-2 .5.6-.2 1.3-.3 2-.5zM98.8 214s0 .1 0 0c.2.7.6 1.3.9 1.7h.1c-.5-.5-.8-1-1-1.7zM107.4 202.8c.7-.3 1.4-.6 1.9-.8-.5.2-1.2.5-1.9.8zM99.6 212.7s.1 0 0 0c.1.1.1 0 0 0z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M105.8 214.7c.1-.1.3-.2.4-.2 0 0 1 .1 2-.3.1 0 .2-.1.3-.1h.1c.4-.2.8-.5 1.2-.8l.1-.1.4-.4.5-.5c.1-.1.1-.2.2-.3.6-.9 1-2 1.1-3h.6c2 0 4-1 5.3-2.8 1.9-2.7 1.4-6.4-1-8.5-.1-.1-.3-.2-.5-.4-.3-.2-.6-.4-1-.6-.1 0-.1-.1-.2-.1.2-.2.4-.4.5-.6 1.8-2.6 1.2-6.1-1.4-7.9-.4-.3-.9-.5-1.3-.7-2.2-.7-4.8.1-6.2 2.1 0-.1-.1-.2-.1-.3-.1.1-.1.2-.2.2-.3-.8-.9-1.5-1.6-2-.8-.6-1.7-.8-2.7-.8-.3 0-.5.1-.8.1-1 .3-1.9.8-2.5 1.7-.2.3-.4.6-.5.9h-.2c0 .1-.1.1-.1.2-.6-.2-1.2-.2-1.8-.2-1.2 0-2.3.4-3.3 1-.5.4-1 .8-1.3 1.4-1.8 2.5-1.4 6 .8 8.1-.1 0-.2.1-.3.1l.1.1c-1.3.4-2.4 1.2-3.2 2.4-.2.3-.4.7-.6 1.1v.1l-.3.9c-.5 2.3.4 4.8 2.4 6.3 1.4 1 3.1 1.3 4.6 1.1v.2c0 .3 0 .6.1.9v.1c.1.2.1.4.2.6.3.6.7 1.1 1.2 1.4.5.4 1.1.6 1.7.7-.3-.4-.5-.9-.6-1.4-.7-2.4.3-3 .7-3.2.5-.2 1.1-.2 1.5.1.4.3.7.7.8 1.3 0 .5.3 1.3.9 2l.3-.3c.2-.2.3-.5.4-.7 0 0 .1 0 .1.1.3.2.6.4.9.5.1.1.3.1.4.2h.1c.5.2 1.1.3 1.8.3zm2.1-19.7c.6-.2 1.3.1 1.5.7l.8 2.4c-.8-.1-1.6.2-2.2.8l-.8-2.4c-.3-.7.1-1.3.7-1.5zM97 199.8c-.2
-.6.1-1.3.7-1.5.6-.2 1.3.1 1.5.7l.8 2.4c-.8-.1-1.6.2-2.2.8l-.8-2.4zm6.3 8.1c.1-.1.1-.2.2-.2-.1.1-.2.1-.2.2-.2 0-.4 0-.6-.1-.7-.1-1.4-.3-2.1-.6-.4-.2-.8-.3-1.1-.6-.4-.2-.8-.5-1.2-.8l-.2-.1c-.1-.1-.1-.2 0-.3 0 0 0-.1.1-.1.2-.1.5-.2.7-.3.3-.1.6-.3 1-.4l1.7-.6c1.1-.4 2.3-.8 3.4-1.2 1.2-.4 2.3-.7 3.5-1.1l1.7-.5c.3-.1.7-.2 1-.3.2-.1.5-.1.7-.2.1 0 .2 0 .2.1v.1l-.1.2c-.1.5-.3 1-.5 1.4-.2.4-.4.8-.6 1.1-.4.7-.9 1.3-1.3 1.8-.1.1-.3.2-.4.4-.8.8-1.7 1.3-2.7 1.6-1 .5-2.1.7-3.2.5z"/>
- <path fill="url(#z)" fill-rule="nonzero" d="M203.6 209.1c.1.2.1.3.1.5.1 0 .2 0 .3.1-.1-.3-.3-.4-.4-.6z"/>
- <path fill="url(#A)" fill-rule="nonzero" d="M227 221.9v-1.3-1.4-1.4-.7-1c-.7.3-1.5.5-2.2.5 0 2.6 0 4.6.1 6.2h2.2c-.1-.3-.1-.6-.1-.9z"/>
- <path fill="url(#B)" fill-rule="nonzero" d="M203.3 223.1l-.2-.2-.5-.5c-.1-.1-.2-.2-.2-.3-.1-.2-.3-.3-.4-.5-.1-.1-.2-.2-.2-.3-.2-.2-.3-.4-.5-.5-.1-.1-.2-.2-.2-.3l-.6-.6c-.1-.1-.1-.2-.2-.2-.3-.3-.5-.6-.8-.9-.5-.6-1-1.2-1.5-1.9l-.1-.1-1.2-1.8c0-.1-.1-.1-.1-.2-.4-.6-.7-1.2-1.1-1.9 0-.1-.1-.1-.1-.2-.3-.6-.7-1.3-1-1.9 0-.1 0-.1-.1-.2-.3-.6-.5-1.1-.7-1.7-1-.4-2-.9-3-1.4 1.6 4.2 3.9 8.9 7.1 12.7 1.1 1.3 2 2.3 2.9 3.3.9-.1 1.9-.1 2.8-.2 0 0 0-.1-.1-.2z"/>
- <path fill="url(#C)" fill-rule="nonzero" d="M204.7 212.6c0 .1 0 .1.1.2.1.4.2.8.4 1.2v.1c.1.4.2.7.3 1.1 0 .1.1.2.1.3.1.4.2.7.3 1.1v.1l.3 1.2c0 .1.1.2.1.3.1.3.2.6.2.9 0 .1.1.2.1.3.1.4.2.7.3 1.1 0 .1 0 .1.1.2.1.3.1.6.2.8 0 .1 0 .2.1.3.1.3.1.6.2.9V223c.7 0 1.5-.1 2.3-.1-.4-2.1-1.3-5.4-2.9-10.6-.8-.1-1.6-.3-2.5-.4.1.3.2.5.3.7z"/>
- <path fill="url(#D)" fill-rule="nonzero" d="M214.9 199.4l8.1 2.3h.2c.4 0 .7-.2.8-.6.1-.4-.1-.9-.6-1l-8.1-2.3h-.2c-.4 0-.7.2-.8.6-.1.4.1.8.6 1z"/>
- <path fill="url(#E)" fill-rule="nonzero" d="M267.5 198.4l-1.2-.6c-.4.3-.9.6-1.3.9.9-.1 1.7-.2 2.5-.3z"/>
- <path fill="url(#F)" fill-rule="nonzero" d="M151.3 155.4c-1.2-.4-2.4-.6-3.6-.6-2.5 0-4.9.9-6.8 2.5l1.2-3.3c.1-.3 0-.7-.4-.8h-.2c-.3 0-.5.2-.6.4l-1.1 2.8v4.4l5.2 2h.2c.3 0 .5-.2.6-.4.1-.3 0-.7-.4-.8l-3.7-1.4c1.5-1.8 3.7-2.7 5.8-2.7 1.8 0 3.6.6 5.1 1.9 3.2 2.8 3.6 7.7.7 10.9-1.5 1.8-3.7 2.7-5.8 2.7-1.8 0-3.6-.6-5.1-1.9-1.7-1.5-2.7-3.6-2.7-5.9v2.5c0 1.1-.3 2.2-.9 3 1.9 2.8 5 4.6 8.6 4.6h.1c5.7-.1 10.3-4.7 10.2-10.4.2-4.2-2.4-8-6.4-9.5z"/>
- <path fill="url(#G)" fill-rule="nonzero" d="M144.1 167.6l.8.3.1.2 3.3-1.5c.2-.1.3-.3.3-.4l1.8-4.8c.1-.3 0-.7-.4-.8h-.2c-.3 0-.5.2-.6.4l-1.7 4.6-3.1 1.3c-.3 0-.4.4-.3.7z"/>
- <path fill="url(#H)" fill-rule="nonzero" d="M163 112.5c.1.5.7.5.8 0 1.2-4.8 5-8.6 9.8-9.8.5-.1.5-.7 0-.8-4.8-1.2-8.6-5-9.8-9.8-.1-.5-.7-.5-.8 0-1.2 4.8-5 8.6-9.8 9.8-.5.1-.5.7 0 .8 4.8 1.2 8.5 5 9.8 9.8z"/>
- <path fill="url(#I)" fill-rule="nonzero" d="M234.8 212.7c-.1.5-.2 1.1-.3 1.6v.1c-.1.5-.2 1-.4 1.5-.1.5-.3.9-.4 1.4-.1.4-.3.8-.4 1.1 0 .1-.1.3-.1.4-.1.2-.2.5-.3.7-.1.1-.1.3-.2.4-.1.2-.2.4-.2.6-.1.1-.1.3-.2.4-.1.2-.2.4-.2.5-.1.1-.1.3-.2.4-.1.2-.2.3-.2.5-.1.1-.1.2-.2.3 0 0 0 .1-.1.1.8 0 1.7 0 2.5.1.8-1.7 1.5-3.5 2-4.9.6-1.7 1.1-4 1.6-6.9l-2.4.6c-.1.3-.1.6-.2 1l-.1.1z"/>
- <path fill="url(#J)" fill-rule="nonzero" d="M191.9 204.4l-.3-.9c1.4 1.1 3.3 2 6 2.5h.1c.3 0 .5-.2.5-.5.1-.3-.1-.6-.4-.6-5.2-1-7.3-3.8-8.2-5.4-.1-.4-.3-.8-.4-1.2 0-.1-.1-.3-.1-.5l-.3-1.2c0-.2-.1-.4-.1-.5-.1-.4-.1-.8-.2-1.2v-.6-1c-.1.1-.2.1-.3.1-.1 0-.2 0-.3-.1-.5-.4-1.1-.7-1.6-1.1-.1 4.4.9 8.4 3 11.4l.3.9c1 .6 1.9 1.1 2.9 1.6-.3-.6-.4-1.2-.6-1.7z"/>
- <path fill="url(#K)" fill-rule="nonzero" d="M178.1 85.3c-.1-.3-.5-.3-.6 0-.8 3.2-3.4 5.8-6.6 6.6-.3.1-.3.5 0 .6 3.2.8 5.8 3.4 6.6 6.6.1.3.5.3.6 0 .8-3.2 3.4-5.8 6.6-6.6.3-.1.3-.5 0-.6-3.3-.9-5.8-3.4-6.6-6.6z"/>
- <path fill="url(#L)" fill-rule="nonzero" d="M180.4 204.7l3.1-.9-.9-3-3.1.9"/>
- <path fill="url(#M)" fill-rule="nonzero" d="M176.8 200.9c-.9 0-1.9.4-2.5 1.2l-4.6 6.2-3.6-1.3-.1-.5c-.4-1.2-1.3-2.2-2.5-2.6l-.7-2.3-3.1.9.5 1.7c-2 1-2.8 3.4-1.8 5.4.7 1.4 2.1 2.2 3.6 2.2.6 0 1.2-.1 1.8-.4.6-.3 1.2-.8 1.5-1.4l2.3.8-1.7 2.2c-.3-.1-.7-.1-1-.1-1.8 0-3.4 1.2-3.9 3-.6 2.1.7 4.3 2.9 4.9.3.1.7.1 1 .1 1.8 0 3.4-1.2 3.9-3 .2-.7.2-1.5-.1-2.2-.1-.3-.1-.5-.2-.8l10.3-13.5c-.6-.3-1.3-.5-2-.5zm-13.9 8.8c-.1 0-.1 0-.2.1-.2.1-.5.1-.8.1-.8 0-1.6-.5-1.9-1.3-.4-1.1.1-2.3 1.2-2.7.2-.1.5-.1.8-.1.8 0 1.6.5 1.9 1.3 0 0 0 .1.1.1.4 1-.1 2.1-1.1 2.5zm2.8 9.2h-.2c-.2.1-.4.1-.6.1-.9 0-1.7-.6-2-1.5-.3-1.1.3-2.3 1.4-2.6.2-.1.4-.1.6-.1.9 0 1.7.6 2 1.5v.1c.4 1.1-.2 2.2-1.2 2.5z"/>
- <path fill="url(#N)" fill-rule="nonzero" d="M274.7 179.9c.4-1.1 1.2-2 2.3-2.4-.4-.2-.8-.3-1.2-.4-.3-.1-.6-.1-.9-.2-.2 1-.4 1.9-.8 3h.6z"/>
- <path fill="url(#O)" fill-rule="nonzero" d="M180.9 206.3l.9 3.1c1.7-.5 2.6-2.3 2.1-4l-3 .9z"/>
- <path fill="url(#P)" fill-rule="nonzero" d="M284.7 187.9c-.4-.2-.7-.3-1-.3-.7 0-1.3.3-1.6.9-1.7 3.1-4.9 4.9-8.3 4.9-.8 0-1.5-.1-2.3-.3-2.9-.7-5.3-2.8-6.4-5.6l3.7 1c.2 0 .3.1.5.1.8 0 1.6-.6 1.8-1.4.3-1-.3-2-1.4-2.3l-7.3-1.9c-.2 0-.3-.1-.5-.1-.8 0-1.6.6-1.8 1.4l-1.9 7.3c-.3 1 .3 2 1.4 2.3.2 0 .3.1.5.1.8 0 1.6-.6 1.8-1.4l.5-2c2.4 4.4 6.9 6.9 11.5 6.9 2.1 0 4.2-.5 6.1-1.5 2.3-1.3 4.3-3.2 5.5-5.6.5-.9.2-2-.8-2.5z"/>
- <path fill="url(#Q)" fill-rule="nonzero" d="M172.7 212.8l2.1.8c.1-.1.3-.1.5-.1l3.8 1.3c.2 0 .3.2.3.3 1.3 0 2.6-.9 3-2.2l-7.7-2.7-2 2.6z"/>
- <path fill="url(#R)" fill-rule="nonzero" d="M176.1 196l-.9-3-3.1.9 1 3"/>
- <path fill="url(#S)" fill-rule="nonzero" d="M171.5 197.4l-.9-3.1-3.1 1 1 3"/>
- <path fill="url(#T)" fill-rule="nonzero" d="M166.9 198.8l-.9-3.1-3.1 1 1 3"/>
- <path fill="url(#U)" fill-rule="nonzero" d="M162.3 200.2l-.9-3.1c-1.7.5-2.6 2.3-2.1 4l3-.9z"/>
- <path fill="url(#V)" fill-rule="nonzero" d="M274.7 180c-.2 0-.4-.1-.6-.1-.4 1.3-1 2.7-1.8 4.1.9 1 1.3 2.4 1 3.8-.3 1.3-1.3 2.3-2.5 2.8l.9.3c3-2.5 5.1-4.5 6.1-5.5l-.3-.1c-1.1-.3-2-1-2.5-1.9-.6-1-.7-2.1-.4-3.1 0-.1.1-.2.1-.3z"/>
- <path fill="url(#W)" fill-rule="nonzero" d="M274.9 191.2c2.2-.3 4.2-1.7 5.3-3.7v-.1c.3-.4.6-.8 1-1.1l-1-.3s0 .1-.1.1c0 .2-1.9 2.2-5.2 5.1z"/>
- <path fill="url(#X)" fill-rule="nonzero" d="M187.6 158.4c-1.4-.9-3.2-.6-4 .7-.8 1.3-.3 3 1.1 3.9 1.4.9 3.2.6 4-.7.8-1.2.3-3-1.1-3.9z"/>
- <path fill="url(#Y)" fill-rule="nonzero" d="M276.7 136.6c-.3.7-.4 1.4-.4 2.1l-.9.3c-1.2.5-2.5 1.1-3.7 1.8-.2.1-.4.3-.7.4-.4.2-.7.5-1.2.8-.2.1-.4.3-.6.4l-.6.5c-.1.1-.3.2-.4.3h-.8c-1.1.1-9.8 2-18 3.9.6-1.9 1.2-3.8 1.6-5.8 1.3 0 2.7-.1 4-.2 1 .9 2.3 1.3 3.7 1.3 2.1 0 3.9-1.1 4.9-2.7.5.1 1 .1 1.5.1 4.8 0 9.1-3 10.7-7.5 3-1 5.2-3.7 5.7-6.9.6-.9 1.2-1.8 1.8-2.8 4-1.5 6.6-5.7 6-10 0-.4-.1-.7-.2-1.1 1.5-1.9 2.1-4.4 1.8-6.8-.3-2.1-1.2-4.1-2.7-5.6-.3-2.4-.8-4.7-1.5-7 .1-.4.1-.9.1-1.3 0-3.3-1.7-6.4-4.6-8.1-2.8-4.3-6.6-8-10.8-10.8-1.3-3.8-4.8-6.4-9-6.4-1.4 0-2.8.3-4.1.9-1.2-.3-2.4-.6-3.6-.8-1.7-1.5-4-2.4-6.2-2.4-.4 0-.8 0-1.2.1-2 .2-3.8 1.1-5.3 2.5-2.4.5-4.8 1.2-7 2.1-.6-.1-1.3-.2-2-.2-4.6 0-8.5 3.4-9.3 7.8l-.1.1c-4.1 1.1-7 4.8-7 9.1v.7c-.4.8-.8 1.7-1.1 2.5-1.6 1-2.6 2.8-2.6 4.8 0 .4 0 .7.1 1.1-.6-.6-1.2-1.2-1.9-1.7-.2-1.3-.8-2.4-1.4-3.4.3-2-.6-3.9-1.8-6.3-.2-.4-.4-.9-.7-1.3-.5-1-1.4-1.6-2.4-1.6-1.5 0-2.7 1.2-3.9 3.8-.7 1.6-2.2 5.3-1.1 7.6-.5 3.6 0 6 1.5 7.1l.1.1c.2 1.6.6 3.2 1.1 4.6-11 4.2
-28.2 12.1-33.8 19.4-1.3 1.8-1.6 4.3-.6 7.6 1.9 6.5 8.8 16.5 14 18.4 7.3 2.7 17.2 4.3 27.1 4.3h2c-2.1 1.4-4.1 2.9-6 4.5-3.9 1.5-7 2.8-9.5 3.9-.5-.8-1-1.5-1.6-2.2-1.1-1.3-2.4-2.4-3.8-3.3-2.9-1.8-6.2-2.8-9.7-2.8-6.2 0-11.9 3.1-15.2 8.3-1.1 1.7-1.8 3.4-2.3 5.3l.6.9c.2.3.1.6-.1.8-.1.1-.2.1-.3.1-.2 0-.3-.1-.5-.2-.5 3.2-.1 6.5 1 9.4 1.6 2.5 3.3 4.8 5 7.1.6.6 1.3 1.1 2.1 1.6 2.9 1.8 6.2 2.8 9.7 2.8 1.2 0 2.4-.1 3.5-.3l2.4-.6c-.2 1.1-.3 2.1-.3 3.2.7.5 1.4 1 2.2 1.5v-.1-1.3c0-.2 0-.5.1-.7 0-.4.1-.9.1-1.3 0-.3.1-.5.1-.8.1-.4.2-.9.2-1.3v-.2c0-.2.1-.4.1-.6.1-.5.2-.9.3-1.4.1-.3.1-.6.2-.8.1-.5.3-.9.4-1.4.1-.3.2-.6.3-.8.2-.5.4-1 .5-1.4.1-.3.2-.6.3-.8.2-.5.4-1 .7-1.5.1-.3.2-.5.4-.8.3-.5.5-1.1.8-1.6.1-.2.2-.5.4-.7.3-.6.7-1.2 1-1.8.1-.2.2-.4.3-.5.2-.3.4-.6.6-.8 3-4.4 5.4-6.8 5.4-6.8.1-.1.2-.3.2-.4 0-.1-.1-.3-.2-.4-.2-.2-.6-.2-.8 0-.1.1-2.3 2.3-5.1 6.4-1.1.2-2.1.3-3.1.5h-.1c-.4.1-.8.1-1.1.2h-.2c-.3 0-.6.1-.9.1h-.2c-.3 0-.6.1-.9.1-.2 0-.4 0-.6.1h-.7-.2s-.8 0-1.2-.5c0-.1-.1-.1-.1-.2s-.1-.1-.1-.2v-.6c0-.
2.1-.5.3-.9.1-.1.1-.2.2-.4.2-.3.6-.6 1.2-1 .1 0 .1-.1.2-.1s.1-.1.2-.1c1.1-.6 2.6-1.4 4.4-2.2 4.1-1.9 9.7-4.1 14.3-5.9.1 0 .1-.1.2-.1.5-.4 1-.9 1.6-1.3.4-.3.7-.6 1.1-.8.3-.3.7-.5 1-.8.8-.6 1.5-1.1 2.3-1.6.2-.1.4-.3.6-.4.5-.3 1.1-.7 1.6-1 .1-.1.3-.2.4-.3.8-.5 1.6-.9 2.4-1.4.3-.2.6-.4 1-.5 4.1-.6 10.4-1.6 14.2-3.2.3-.1.4-.4.3-.7-.1-.3-.4-.4-.7-.3-5.7 2.3-17.7 3.6-17.8 3.6h-.2c-1.7.1-3.4.2-5.1.2-9.9 0-19.5-1.6-26.3-4.1-.7-.3-1.4-.7-2.3-1.4-.2-.2-.4-.3-.6-.5-.4-.4-.8-.8-1.3-1.2-.2-.2-.4-.4-.6-.7-.4-.5-.9-1-1.3-1.5s-.8-1.1-1.2-1.6c-.6-.8-1.2-1.7-1.8-2.6-.4-.6-.7-1.2-1.1-1.8-2-3.6-3.3-7.2-2.9-9.7v-.1c.1-.6.3-1.1.7-1.6.2-.2.4-.4.6-.7.1-.1.1-.2.2-.2.1-.2.3-.3.4-.5l.3-.3.4-.4.3-.3c.1-.1.3-.3.5-.4.1-.1.2-.2.4-.3.2-.1.3-.3.5-.4.1-.1.3-.2.4-.3.2-.1.3-.3.5-.4.1-.1.3-.2.4-.3.2-.1.4-.3.6-.4.1-.1.3-.2.4-.3.2-.1.4-.3.6-.4.1-.1.3-.2.4-.3.2-.2.5-.3.7-.5.1-.1.2-.2.4-.2.3-.2.7-.4 1-.6.1-.1.2-.1.3-.2.3-.2.7-.4 1-.6.2-.1.3-.2.5-.3.2-.1.5-.3.7-.4.2-.1.4-.2.5-.3.2-.1.5-.3.7-.4l.6-.3c.2-.1.5-.3.7-.4l.6-.3c.2-
.1.5-.2.7-.4l.6-.3c.2-.1.5-.2.7-.4l.6-.3c.2-.1.5-.2.7-.3.2-.1.4-.2.7-.3.2-.1.5-.2.7-.3.2-.1.5-.2.7-.3.2-.1.5-.2.7-.3.2-.1.4-.2.7-.3.3-.1.5-.2.8-.3.5-.2.9-.4 1.4-.6l.6-.3c.3-.1.5-.2.8-.3l.6-.3c.3-.1.5-.2.8-.3l.6-.3c.3-.1.5-.2.8-.3.2-.1.4-.2.6-.2.3-.1.5-.2.8-.3.2-.1.4-.2.6-.2.3-.1.5-.2.8-.3.2-.1.4-.1.5-.2.3-.1.5-.2.8-.3.2-.1.4-.1.5-.2.3-.1.5-.2.8-.3.2-.1.3-.1.5-.2s.4-.1.6-.2c-.1.2-.1.5 0 .7 1.8 5.7 5.9 6.6 6.1 6.6h.2c.5 0 1-.4 1.1-.9.1-.6-.3-1.2-.9-1.3-.1 0-2-.5-3.5-3 3.4.1 7.2-2.6 7-6 1.4 1 3.5 2.9 3.5 5.5 0 3.8-3.7 5.1-3.9 5.2-.3.1-.4.4-.4.7 0 0 0 .1.1.1.1.2.3.3.5.3h.2s4.6-1.6 4.7-6.2c0-2-1-3.6-2.1-4.8l1.4-.4c.5.4 1.7 1.2 3.2 1.2h.6c.3 0 .5-.3.5-.6v-.1c-.1-.2-.3-.4-.6-.3-1.7.2-3.1-1.1-3.1-1.1-.1-.1-.4-.2-.6-.1l-2.3.7c-.2-.2-.5-.4-.7-.5 0-.7.1-1.4.1-2.2 0-.4.1-.9.2-1.3s.1-.9.2-1.3c-.5-.6-.7-1.3-.7-2.1 0-.6.1-1.1.4-1.5.2-.5.5-.9.9-1.2.1-.1.3-.2.4-.3.1-.1.3-.2.5-.2.2-.5.3-.9.5-1.3.2-.5.4-.9.6-1.4.1-.3.3-.7.5-1 0-.3-.1-.7-.1-1v-.1-.1c0-.6.1-1.3.3-1.8.2-.8.6-1.6 1.1-2.2.2-.3.5-.7.8-.9.5-
.5 1.1-.9 1.7-1.3.6-.3 1.3-.6 2.1-.7.3-.4.7-.7 1-1 0-.3.1-.7.2-1 .1-.4.2-.7.3-1 .9-2.3 3-4 5.5-4.5h.3c.3 0 .7-.1 1-.1.3 0 .6 0 .8.1.5.1.9.1 1.3.3.6-.3 1.3-.5 1.9-.8 1.3-.5 2.6-.9 4-1.2.7-.2 1.4-.3 2.1-.4.6-.6 1.2-1.1 2-1.5.8-.4 1.6-.7 2.5-.8.3 0 .6-.1.9-.1h1c.2 0 .4.1.5.1.1 0 .2.1.3.1.2 0 .3.1.5.1.1 0 .2.1.3.1.1.1.3.1.4.2.1 0 .2.1.3.1.1.1.3.2.4.2.1.1.2.1.3.2.1.1.3.2.4.3l.2.2c.2.2.4.3.6.5 1.7.2 3.3.6 4.9 1.1.6-.3 1.2-.6 1.8-.8.1 0 .2 0 .3-.1.2-.1.5-.1.7-.2h1c.4 0 .8 0 1.2.1h.2c.4.1.7.2 1 .3.1 0 .1 0 .2.1.3.1.7.3 1 .4 0 0 .1 0 .1.1l.9.6c.3.2.6.5.8.8.3.3.5.6.7.9v.1c.2.3.4.7.5 1v.1c.1.4.3.7.4 1.1.1.4.2.8.2 1.3 3.1 2.5 5.8 5.5 7.8 8.9 1.2 0 2.2.3 3.2.8.6.3 1.1.7 1.6 1.1.5.4.9.9 1.2 1.4 0 0 0 .1.1.1.1.2.3.5.4.7 0 0 0 .1.1.1l.3.9v.1c.1.2.1.5.2.7v.2c0 .3.1.6.1.9V92.9c0 .2-.1.5-.1.7-.3 1.7-1.2 3.1-2.5 4.2.2 1.5.3 2.9.3 4.4 1.2 1.2 2 2.8 2 4.7.1 2.2-.9 4.2-2.5 5.5.2.6.3 1.2.3 1.8.1 3.4-2.4 6.3-5.7 6.9-.8 1.2-1.7 2.3-2.6 3.3-.5 2.8-2.8 4.8-5.5 5-1.2 3.7-4.9 6.2-9 5.8-.9-.1-1.8-.3-2.6-.7h-.2c-.
4 1.6-1.9 2.6-3.5 2.5-.3 0-.5-.1-.8-.2-.3 1.2-.6 2.4-.9 3.5h1-2.4c.2-3.6-.3-5.8-.4-5.9-.1-.3-.4-.5-.7-.4h-.1c-.2.1-.4.4-.3.6 0 0 .9 3.8-.1 9.4-.4 1.4-.8 2.8-1.3 4.3-.1.2-.1.4-.2.6-.3.9-.6 1.7-1 2.6 7.4-1.8 15.5-3.6 19.4-4.4l-.6.6c-.9.9-1.9 2-2.7 2.9-.8 1-1.4 1.8-1.8 2.3-.2.3-.4.5-.5.7 0 0 0 .1-.1.1-.1.1-.1.2-.1.2-.2.3-.2.6-.3.9-2.9 1.5-6 3.1-9 4.5-2.9 1.4-5.5 2.7-7.6 3.6-.2.1-.3.2-.5.2-.1.1-.1.3-.2.4-.1.2-.2.4-.2.6 0 0 0 .1-.1.1-.1.4-.3.7-.4 1.1v.1c-.1.4-.3.8-.4 1.2-.1.4-.3.9-.4 1.3-.4 1.4-.8 2.9-1.1 4.4-1 4.8-1 5-.9 5.1.1.2.3.4.5.4h.2c.3-.1.4-.3.4-.6s.2-1.4.5-2.9c.9-.2 1.8-.3 2.6-.4 1.2-1.2 2.8-2 4.5-2.1 2-.2 3.9.6 5.3 1.8.8-.3 1.7-.5 2.7-.4 1.3.1 2.6.5 3.6 1.3 1.3-.2 2.4-.4 3.5-.7.4-.1.8-.3 1.2-.4.9-.8 1.9-1.6 3.1-2.2.7-.4 1.4-.6 2.1-.9 2.1-1.9 3.3-4 3.8-5.3.1-.2.1-.3.2-.5 0-.1.1-.3.1-.3.1-.2.1-.3.1-.3v.1c.1.1.2.3.3.6.4.9 1.1 2.6 1.5 4.9.8.1 1.6.2 2.3.3-.6-4.3-2.2-7-2.3-7.1-.4-.7-1.1-1.1-1.9-1.1h-.3c-.9.1-1.6.8-1.8 1.7-.1.2-1.6 5.6-7.9 8-2-1.7-4.3-3.1-7-4.3-2.9-1.2-6.1-1.8-9.7-1.8
-.8 0-1.6 0-2.5.1.1-.2.2-.4.2-.6 2.4-1.1 9.7-4.6 16.1-7.9.5.4 1.1.7 1.7.7.2 0 .4 0 .7-.1 0 0 .1 0 .3-.1.2-.1.5-.2.8-.3.6-.2 1.5-.6 2.7-1.2.1 0 .1-.1.2-.1.1.1.1.2.2.2.8.9 2 1.5 3.4 1.7.5.1.9.1 1.3.1 1.3 0 2.5-.4 3.5-1.1 2-1.5 2.3-4.1 2.3-4.2.1-.6-.4-1.2-1-1.2-.2 0-.4 0-.6.1-.3.2-.6.5-.6.9 0 0-.2 1.8-1.4 2.7-.7.6-1.8.8-3.1.6-1.1-.2-1.9-.6-2.4-1.4-1.1-1.6-.6-4-.5-4.1v-.6c-.1-.4-.4-.7-.8-.8-.6-.1-1.2.2-1.3.8 0 .1-.7 2.9.6 5.3h-.1c-1.1.5-2 .9-2.6 1.1-.3.1-.6.2-.7.3-.2.1-.3.1-.3.1-.4.1-.7 0-1-.1-.3-.2-.6-.5-.6-.8-.1-.3-.1-.7.1-1l.1-.2c.1-.2.2-.4.4-.7.3-.4.8-1.2 1.7-2.2.8-1 1.7-2 2.6-2.9.5-.5 1-1 1.6-1.5.6-.5 1.1-1 1.7-1.5.2-.2.4-.3.6-.5l.6-.5c.2-.1.4-.3.6-.4.1-.1.2-.1.3-.2.5 1.7 1.6 3.3 3 4.4.3.2.7.5 1 .7-.1.1-.2.2-.3.2-.2.2-.4.3-.6.4l-.6.5c-.1 0-.1.1-.2.1.4.2.8.3 1.2.5l.3-.3c.2-.2.4-.3.6-.5.7-.5 1.2-1 1.7-1.5 1-1 1.9-2 2.6-3.1.5-.7.8-1.3 1.1-1.8.3 0 .6 0 .9-.1 1.3-.3 4.6-1.7 6.4-7.7.2-.5 0-1.1-.5-1.5-.4-.4-1-.4-1.5-.2-.9.5-2.5 1-4.4.9-1.7-.1-3.3.5-4.3 1.6-.4-.4-.6-.1-.8.3 0-.1 0 0 0 0zm1
2.3-31.5c0 .3.1.6.1.9-.1-.3-.1-.6-.1-.9 0-.4-.1-.7-.2-1.1.1.4.1.8.2 1.1zm-104.7 62.1c-1.2 2-.9 3.4-.5 4.3.7 1.2 1.9 1.7 2.9 1.8h.6c.5 0 1.5-.1 4.7-.5-.7 1.3-1.4 2.6-2 3.9-.2-.2-.4-.4-.7-.5-1.5-.8-3.3-.3-4.1 1.1-.8 1.4-.2 3.2 1.3 4 .5.3 1 .4 1.5.4-.5 1.6-.9 3.1-1.2 4.6-2 .8-4 1.1-6.1 1.1-3.1 0-6.3-.9-9.1-2.6-7.9-5-10.2-15.5-5.2-23.3 3.2-5.1 8.7-7.8 14.3-7.8 3.1 0 6.3.9 9.1 2.6 2.1 1.3 3.7 3.1 5 5-9.3 4-10 5.2-10.5 5.9zm17.8-77.5c0-.1 0-.2-.1-.3v-.2-.4-.3-.4-.3c0-.1.1-.3.1-.4 0-.1 0-.2.1-.3 0-.2.1-.3.1-.5 0-.1.1-.2.1-.3.1-.2.1-.3.2-.5 0-.1.1-.2.1-.3.1-.2.1-.4.2-.6 0-.1 0-.1.1-.2.1-.2.2-.5.3-.7 0-.1.1-.1.1-.2.1-.2.2-.3.3-.5 0-.1.1-.1.1-.2.1-.1.1-.2.2-.4 0-.1.1-.1.1-.2.1-.1.1-.2.2-.3 0-.1.1-.1.1-.2l.2-.2s.1 0 .1-.1c2.4 1.9 2.2 7.3 2.2 7.4v.1c-1.1 1.6-3.1 2.1-4.4.9-.1-.1-.2-.1-.2-.2-.1-.1-.1-.2-.2-.3v.1zM204 98c-.1-.4-.1-.8-.1-1.2-.1-.1-.3-.1-.4-.2-.1-.1-.3-.2-.4-.3-.1-.1-.2-.1-.2-.2-.2-.3-.3-.7-.4-1.3-.1-.5-.1-1-.1-1.6 0-.3 0-.7.1-1.1 2.1 1.8 5.2.5 5.8-1.5.1.2.2.4.3.7.4 1.2.6 2.2.7 2.6v
.2c-.8 2.2-3.3 3.4-5.3 2.7.1.7.2 1.3.3 2-.3-.2-.3-.5-.3-.8zm9.1 1.2c-.2 3-4.3 5-7.1 4.5-.7-.5-1.2-1.8-1.6-3.4-.1-.4-.2-.7-.2-1.1V99c2.9 1.2 6.1-.8 6.5-3.5.4.3.9.7 1.4 1.2.7.7 1 1.5 1.1 2.1-.1.1-.1.3-.1.4zm74.3 13.9c-.1-.7-.3-1.3-.5-1.9.2.6.4 1.2.5 1.9 0 .2 0 .5.1.7-.1-.3-.1-.5-.1-.7zm-1.1-12.7c.5.4 1 .9 1.4 1.5-.4-.6-.8-1.1-1.4-1.5zm-20.4 37.3h-.5.5zm-3.3-.4c.3.1.7.2 1 .2-.4-.1-.7-.1-1-.2-.1 0-.1 0 0 0-.1 0-.1 0 0 0zm-2 2.5c-.3.2-.7.3-1.1.4.5 0 .8-.2 1.1-.4zm-1.4.5h-.3.3zm-12.9 26.1h.1-.4.3zm31.4-29.4c.6-1.2 1.9-1.9 3.5-1.9h.6c.5.6-.2 1 .4 2.1.7 1.3 2.3-.3 3.3.6-1.5 2.6-3.3 3.3-4.2 3.5-1.2.3-2.5 0-3.1-.8-.8-1-1-2.4-.5-3.5zm-.2 4.3c.5.6 1.2.9 2 1.1-.2.4-.5.8-.8 1.3-.4.6-.9 1.2-1.3 1.7-1.7-.7-3.1-2.3-3.5-4.2v-.4c.7-.3 1.3-.7 2-.9.3-.1.5-.2.7-.3.2.7.5 1.2.9 1.7z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M219.1 84.8c0-.6.1-1.3.3-1.8-.2.5-.3 1.2-.3 1.8z"/>
- <path fill="url(#Z)" fill-rule="nonzero" d="M219.1 84.8c0-.6.1-1.3.3-1.8-.2.5-.3 1.2-.3 1.8z"/>
- <path fill="url(#aa)" fill-rule="nonzero" d="M219.1 84.8c0-.6.1-1.3.3-1.8-.2.5-.3 1.2-.3 1.8z"/>
- <path fill="url(#ab)" fill-rule="nonzero" d="M178.6 177.5c-.4-.2-.8-.3-1.1-.4l2.7 3.2c.2.2.2.6-.1.8-.1.1-.2.1-.4.1s-.3-.1-.4-.2l-3.3-4c-.9.1-1.6.6-2 1.3-.2.3-.3.7-.3 1.1 1.2 1.3 2.4 2.6 3.6 3.7 1.4.3 2.7-.2 3.3-1.2.7-1.4-.2-3.4-2-4.4z"/>
- <path fill="url(#ac)" fill-rule="nonzero" d="M267.8 172.1c-2.3 1.3-4.3 3.2-5.5 5.6-.5.9-.1 2.1.8 2.5h.1l.4.1c.2 0 .3.1.5.1.7 0 1.4-.4 1.7-1.1 1.7-3 4.9-4.8 8.2-4.8.8 0 1.6.1 2.4.3 2.9.7 5.3 2.8 6.4 5.6l-3.7-1c-.2 0-.3-.1-.5-.1-.8 0-1.6.6-1.8 1.4-.3 1 .3 2 1.4 2.3l7.3 1.9c.2 0 .3.1.5.1.8 0 1.6-.6 1.8-1.4l1.9-7.3c.3-1-.3-2-1.4-2.3-.2 0-.3-.1-.5-.1-.8 0-1.6.6-1.8 1.4l-.5 2c-2.4-4.4-6.9-6.9-11.5-6.9-2.2.2-4.3.7-6.2 1.7z"/>
- <path fill="url(#ad)" fill-rule="nonzero" d="M180.7 194.6c-.4-1.4-1.7-2.3-3.1-2.3-.3 0-.6 0-.9.1l.9 3.1 3.1-.9z"/>
- <path fill="url(#ae)" fill-rule="nonzero" d="M172.6 172.1c.8-1.4.2-3.2-1.3-4-1.5-.8-3.3-.3-4.1 1.1-.8 1.4-.2 3.2 1.3 4 1.5.8 3.3.3 4.1-1.1z"/>
- <path fill="url(#af)" fill-rule="nonzero" d="M175.8 164.2c1.7 0 3.1-1.3 3.1-2.9 0-1.6-1.4-2.9-3.1-2.9-1.7 0-3.1 1.3-3.1 2.9 0 1.6 1.4 2.9 3.1 2.9z"/>
- <path fill="url(#ag)" fill-rule="nonzero" d="M224.1 117.1c.4 0 .9.1 1.3.1 0-.1.1-.2.1-.3v-3c0-.7-.6-1.3-1.3-1.3-.7 0-1.3.6-1.3 1.3v3c0 .1 0 .2.1.3.2-.1.7-.1 1.1-.1z"/>
- <path fill="url(#ah)" fill-rule="nonzero" d="M237.5 199.2c.6-7.2 1.2-16.6 1.3-16.7 0-.3-.2-.6-.5-.6s-.6.2-.6.5c0 .2-1.4 19.4-1.9 23.9v.3c0 .2-.1.5-.1.7v.1c-.1.6-.2 1.1-.2 1.7v.2c.8-.2 1.6-.4 2.3-.6.1-.9.3-1.8.4-2.8 5.1-.6 12.8-2.1 20-5.6 2.3-1.3 4.3-2.6 6.2-3.9-.5-.4-1-.8-1.5-1.3-.8.7-1.8 1.2-2.9 1.2-.3 0-.7 0-1-.1-1.4.9-3 1.8-4.7 2.6-6.6 3-13 4.1-17.1 4.5.1-.9.2-1.8.2-2.9 1.8-.1 3.6-.2 5.5-.5 5.9-.9 10.7-2.9 14.2-4.8-.2-.2-.4-.5-.6-.8 0 0 0-.1-.1-.2-3.4 1.9-8 3.8-13.7 4.7-1.8.2-3.5.4-5.2.4z"/>
- <path fill="url(#ai)" fill-rule="nonzero" d="M264.9 127.4c1 0 2.1-.3 3.3-1.3 2.4-2 2.5-4.3 2.3-5.6 1.4-.2 2.8-.8 4.2-2.2 3.6-3.7 2.9-7.8 2.1-9.4-.3-.5-1-.8-1.5-.5-.5.3-.8 1-.5 1.5 0 0 1.7 3.4-1.7 6.8-2.9 2.9-5.8 1.1-6.1.9-.5-.4-1.2-.2-1.6.3-.4.5-.2 1.2.3 1.6.8.5 2.1 1.1 3.7 1.2.2.9.2 2.9-1.9 4.7-2.6 2.1-4.8.3-4.9.2-.2-.2-.6-.2-.8.1-.2.2-.2.6.1.8 0-.2 1.2.9 3 .9z"/>
- <path fill="url(#aj)" fill-rule="nonzero" d="M249.6 126.6c1 1 2.7 2.2 5.8 2.2.8 0 1.7-.1 2.7-.3.3-.1.5-.3.4-.6-.1-.3-.3-.5-.6-.4-4.9.9-6.7-1-7.4-1.7-1.3-1.3-1.9-4.5-1.9-4.6 0-.2-.2-.4-.4-.4-.1 0-5.1-1.5-8.5-5.7-3.1-3.9-3.5-8.4-3.5-8.4 0-.2-.1-.4-.3-.5-.8-.4-3.2-1.7-3.8-3.2-1.3-3.1.1-4.9.1-4.9.2-.2.2-.6-.1-.8-.2-.2-.6-.2-.8.1 0 0-.5.6-.8 1.7l-3.3-.1c-.3 0-.6.2-.6.5v.2c.1.2.3.4.5.4l3.2.1c0 .9.1 2 .6 3.2.4.9 1.2 1.7 2 2.3.8.6 1.6 1.1 2.1 1.3 0 .3.1.8.3 1.4.4 1.8 1.3 4.7 3.5 7.3.4.5.8 1 1.3 1.4 2.9 2.9 6.4 4.2 7.4 4.6.2 1 .8 3.6 2.1 4.9z"/>
- <path fill="url(#ak)" fill-rule="nonzero" d="M179 200.2l3.1-1-.9-3-3.1.9"/>
- <path fill="url(#al)" fill-rule="nonzero" d="M231.2 188.3l-16.2-4.7c-.3-.1-.6-.1-.9-.1-1.5 0-2.8 1-3.2 2.4l-5.6 19.4c-.5 1.8.5 3.7 2.3 4.2l16.2 4.7c.3.1.6.1.9.1 1.5 0 2.8-1 3.2-2.4l5.6-19.4c.5-1.8-.5-3.7-2.3-4.2zm-1.4 4.9l-4.7 16.2c-.2.7-.9 1.2-1.6 1.2-.2 0-.3 0-.5-.1l-12.9-3.7c-.9-.3-1.4-1.2-1.2-2.1l4.7-16.2c.2-.7.9-1.2 1.6-1.2.2 0 .3 0 .5.1l12.9 3.7c.9.2 1.5 1.2 1.2 2.1z"/>
- <path fill="url(#am)" fill-rule="nonzero" d="M99.3 199.1c-.2-.6-.9-1-1.5-.7-.6.2-1 .9-.7 1.5l.8 2.4c.6-.6 1.4-.9 2.2-.8l-.8-2.4z"/>
- <path fill="url(#an)" fill-rule="nonzero" d="M224.4 196.8l-8.1-2.3h-.2c-.4 0-.7.2-.8.6-.1.4.1.9.6 1l8.1 2.3h.2c.4 0 .7-.2.8-.6.1-.4-.2-.8-.6-1z"/>
- <path fill="url(#ao)" fill-rule="nonzero" d="M108 198.9c.6-.6 1.4-.9 2.2-.8l-.8-2.4c-.2-.6-.9-1-1.5-.7-.6.2-1 .9-.7 1.5l.8 2.4z"/>
- <path fill="url(#ap)" fill-rule="nonzero" d="M106.2 206.7c1-.5 2-1 3.1-.7.1-.1.3-.2.4-.4.5-.5.9-1.1 1.3-1.8.2-.4.4-.7.6-1.1.2-.4.3-.9.5-1.4l.1-.2v-.1c0-.1-.1-.2-.2-.1-.2.1-.5.1-.7.2-.3.1-.7.2-1 .3l-1.7.5c-1.2.3-2.3.7-3.5 1.1-1.1.4-2.3.8-3.4 1.2l-1.7.6c-.3.1-.6.3-1 .4-.2.1-.5.2-.7.3 0 0-.1 0-.1.1-.1.1 0 .2 0 .3l.2.1c.4.3.8.6 1.2.8.4.2.8.4 1.1.6.7.3 1.4.5 2.1.6.2 0 .4 0 .5.1.1-.1.1-.2.2-.2.7-.9 1.7-1 2.7-1.2zm-5.4-1.9c.6-.1 1.3-.3 2-.5-.7.2-1.4.3-2 .5zm6.6-2c.7-.3 1.4-.6 1.9-.8-.5.2-1.2.5-1.9.8-.7.3-1.5.6-2.3.8.8-.2 1.6-.5 2.3-.8z"/>
- <path fill="url(#aq)" fill-rule="nonzero" d="M225.3 193.6l-8.1-2.3h-.2c-.4 0-.7.2-.8.6-.1.4.1.9.6 1l8.1 2.3h.2c.4 0 .7-.2.8-.6.1-.4-.2-.9-.6-1z"/>
- <path fill="url(#ar)" fill-rule="nonzero" d="M164 84.3c-.2 0-.2.3 0 .3 1.8.5 3.3 1.9 3.7 3.7 0 .2.3.2.3 0 .5-1.8 1.9-3.3 3.7-3.7.2 0 .2-.3 0-.3-1.6-.4-2.9-1.6-3.5-3.1h-.7c-.6 1.5-1.9 2.7-3.5 3.1z"/>
- <path fill="url(#as)" fill-rule="nonzero" d="M213.9 202.6l3.2.9h.2c.4 0 .7-.2.8-.6.1-.4-.1-.9-.6-1l-3.2-.9h-.2c-.4 0-.7.2-.8.6-.1.4.2.9.6 1z"/>
- <path fill="url(#at)" fill-rule="nonzero" d="M227.9 119.2l-.3-.3c-.1-.1-.2-.2-.3-.2-.7-.5-1.8-1.1-3.2-1.1-2.9 0-4.4 2.2-4.5 2.3-.3.5-.2 1.2.3 1.5.5.3 1.2.2 1.5-.3 0 0 .9-1.3 2.6-1.3 1.1 0 1.9.5 2.3.9l.2.2.2.2c.2.3.6.5.9.5.2 0 .4-.1.6-.2.5-.3.7-1 .3-1.5.1 0-.1-.3-.6-.7z"/>
- <path fill="url(#au)" fill-rule="nonzero" d="M196.8 121.5c.5.3 1.2.2 1.5-.3 0 0 .1-.2.4-.4.4-.4 1.2-.9 2.2-.9 1.7 0 2.6 1.3 2.6 1.3.2.3.6.5.9.5.2 0 .4-.1.6-.2.5-.3.7-1 .3-1.5-.1-.1-1.5-2.3-4.5-2.3-1.9 0-3.2 1-3.9 1.7l-.3.3c-.2.2-.3.4-.3.4-.2.4 0 1.1.5 1.4z"/>
- <path fill="url(#av)" fill-rule="nonzero" d="M200.9 117.1c.4 0 .9.1 1.3.1 0-.1.1-.2.1-.3v-3c0-.7-.6-1.3-1.3-1.3-.7 0-1.3.6-1.3 1.3v3c0 .1 0 .2.1.3.3-.1.7-.1 1.1-.1z"/>
- <path fill="url(#aw)" fill-rule="nonzero" d="M207.7 137.3l-1.5-.6c-.7-.3-1.5-.5-2.2-.8l-3.8-1.3-7.5-2.4c-.2-.1-.4-.1-.6-.2-1.1 1.2-2.3 2.4-2.8 2.7-.4.2-3.4-.5-3.5-.8-.1-.2.3-1.9.7-3.5-.5-.1-.9-.3-1.4-.4l-.6-.1c-.3 1.4-.7 3.1-.9 3.2-.4.3-2.9-1.2-3.1-1.5-.1-.2-.5-1.6-.7-2.9-.3-.1-.5-.1-.8-.2-.5-.1-1.1-.2-1.6-.4h-.2c-.2.1-.3.3-.3.5l.1.5c.3 1.1.7 2.2 1.2 3 .4.9.9 1.7 1.3 2.5.9 1.5 1.9 2.7 3 3.8.3.3.6.5.9.8.2-.1.4-.1.6-.1-.2 0-.4.1-.6.1 1.9 1.6 3.9 2.7 6 3.3h.2c2.2.6 4.4.8 6.9.5.4 0 .8-.1 1.2-.2 1.5-.3 3-.8 4.6-1.5.8-.4 1.6-.8 2.5-1.3.8-.5 1.7-1.1 2.6-1.9l.4-.3c0-.1.1-.1.1-.2.2 0 0-.2-.2-.3z"/>
- <path fill="url(#ax)" fill-rule="nonzero" d="M231.2 80.2c.4 0 .6-.2.6-.5 0-.1.5-3 4.2-3.5 1.8-.3 2.9.5 3.5 1.2-3.5 2.2-4.1 5.7-3.9 7.3.1.6.6 1 1.1 1h.1c.6-.1 1-.6 1-1.2 0 0-.4-3.8 4-5.8 3.8-1.7 5.8 1 6.1 1.4.3.5 1 .6 1.5.3s.6-1 .3-1.5c-.5-.7-1.3-1.5-2.5-2.1.5-.9 1.6-2.1 3.8-2.4 3.3-.5 4.2 2.3 4.3 2.4.1.3.4.5.7.4.3-.1.5-.4.4-.7 0 0-1.3-3.8-5.5-3.2-2.8.4-4.1 2-4.7 3.1-1.5-.5-3.3-.5-5.3.4-.1.1-.3.1-.4.2-.8-1-2.2-2.1-4.7-1.7-4.5.6-5.1 4.4-5.2 4.4 0 .2.3.5.6.5z"/>
- <path fill="#EDEDF0" fill-rule="nonzero" d="M207.7 223.7v.2c0 .2.1.4.1.6v.2c0 .2.1.4.1.6v.5c0 .1 0 .2-.1.2l-.2.2H207.3h-.1-.1c-.1 0-.1 0-.2-.1h-.1c-.1 0-.2-.1-.3-.2 0 0-.1 0-.1-.1-.1-.1-.2-.1-.3-.2l-.1-.1c-.1-.1-.2-.1-.3-.2-.1 0-.1-.1-.2-.1l-.3-.3-.2-.2-.3-.3-.2-.2-.5-.5-.1-.1-.4-.4c-1 .1-1.9.1-2.8.2 3.3 3.6 5 4.9 6.6 4.9.9 0 1.8-.4 2.3-1.2.4-.6.8-1.1.2-4.3-.8 0-1.5.1-2.3.1.1.4.1.6.2.8z"/>
- <path fill="url(#ay)" fill-rule="nonzero" d="M207.7 223.7v.2c0 .2.1.4.1.6v.2c0 .2.1.4.1.6v.5c0 .1 0 .2-.1.2l-.2.2H207.3h-.1-.1c-.1 0-.1 0-.2-.1h-.1c-.1 0-.2-.1-.3-.2 0 0-.1 0-.1-.1-.1-.1-.2-.1-.3-.2l-.1-.1c-.1-.1-.2-.1-.3-.2-.1 0-.1-.1-.2-.1l-.3-.3-.2-.2-.3-.3-.2-.2-.5-.5-.1-.1-.4-.4c-1 .1-1.9.1-2.8.2 3.3 3.6 5 4.9 6.6 4.9.9 0 1.8-.4 2.3-1.2.4-.6.8-1.1.2-4.3-.8 0-1.5.1-2.3.1.1.4.1.6.2.8z"/>
- <path fill="#EDEDF0" fill-rule="nonzero" d="M231.2 223.1c-.1.1-.1.2-.2.3-.1.2-.2.3-.3.4 0 .1-.1.2-.1.2-.1.2-.2.4-.4.5v.1c-.1.2-.3.4-.4.5 0 .1-.1.1-.1.1-.1.1-.2.2-.2.3 0 .1-.1.1-.1.1l-.2.2-.1.1c-.1.1-.1.1-.2.1l-.1.1c-.1 0-.1.1-.2.1 0 0-.1 0-.1.1h-.2-.1-.1-.1c-.1 0-.2-.1-.2-.1l-.1-.1c-.1-.1-.1-.3-.2-.6s-.1-.6-.1-1c0-.3-.1-.7-.1-1.1v-.9h-2.2c.2 4.5.8 4.9 1.4 5.4.5.4 1.2.6 1.8.6 2.3 0 4.3-2.8 5.8-5.9-.8 0-1.6 0-2.5-.1-.3.4-.4.5-.4.6z"/>
- <path fill="url(#az)" fill-rule="nonzero" d="M231.2 223.1c-.1.1-.1.2-.2.3-.1.2-.2.3-.3.4 0 .1-.1.2-.1.2-.1.2-.2.4-.4.5v.1c-.1.2-.3.4-.4.5 0 .1-.1.1-.1.1-.1.1-.2.2-.2.3 0 .1-.1.1-.1.1l-.2.2-.1.1c-.1.1-.1.1-.2.1l-.1.1c-.1 0-.1.1-.2.1 0 0-.1 0-.1.1h-.2-.1-.1-.1c-.1 0-.2-.1-.2-.1l-.1-.1c-.1-.1-.1-.3-.2-.6s-.1-.6-.1-1c0-.3-.1-.7-.1-1.1v-.9h-2.2c.2 4.5.8 4.9 1.4 5.4.5.4 1.2.6 1.8.6 2.3 0 4.3-2.8 5.8-5.9-.8 0-1.6 0-2.5-.1-.3.4-.4.5-.4.6z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M167.7 80.6c-.1.2-.1.4-.2.6h.7c-.1-.2-.2-.4-.2-.6 0-.2-.3-.2-.3 0z"/>
- <path fill="url(#aA)" fill-rule="nonzero" d="M167.7 80.6c-.1.2-.1.4-.2.6h.7c-.1-.2-.2-.4-.2-.6 0-.2-.3-.2-.3 0z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M118.4 58.7c.1.2.2.3.4.3h.1c.3-.1.4-.3.4-.6v-.1l-1.9-5.3c-.1-.3-.4-.4-.6-.3-.3.1-.4.4-.3.6l1.9 5.4z"/>
- <path fill="url(#aB)" fill-rule="nonzero" d="M118.4 58.7c.1.2.2.3.4.3h.1c.3-.1.4-.3.4-.6v-.1l-1.9-5.3c-.1-.3-.4-.4-.6-.3-.3.1-.4.4-.3.6l1.9 5.4z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M134.3 121.9c.2-.2.5-.4.9-.2v.1l2.4-1.5v-3.5l-3.4 2.1v3h.1zM137.7 164.3c-.2.2-.4.6-.4.9 0 .9.1 1.8.4 2.6v-3.5z"/>
- <path fill="url(#aC)" fill-rule="nonzero" d="M137.7 164.3c-.2.2-.4.6-.4.9 0 .9.1 1.8.4 2.6v-3.5z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M115.5 59c.3 0 .5-.2.5-.5v-5.3c0-.3-.2-.5-.5-.5s-.5.2-.5.5v5.3c0 .3.2.5.5.5z"/>
- <path fill="url(#aD)" fill-rule="nonzero" d="M115.5 59c.3 0 .5-.2.5-.5v-5.3c0-.3-.2-.5-.5-.5s-.5.2-.5.5v5.3c0 .3.2.5.5.5z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M112.6 59c.3 0 .5-.2.5-.5v-5.8c0-.3-.2-.5-.5-.5s-.5.2-.5.5v5.8c0 .3.2.5.5.5z"/>
- <path fill="url(#aE)" fill-rule="nonzero" d="M112.6 59c.3 0 .5-.2.5-.5v-5.8c0-.3-.2-.5-.5-.5s-.5.2-.5.5v5.8c0 .3.2.5.5.5z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M114 59c.3 0 .5-.2.5-.5v-4.8c0-.3-.2-.5-.5-.5s-.5.2-.5.5v4.8c0 .3.3.5.5.5z"/>
- <path fill="url(#aF)" fill-rule="nonzero" d="M114 59c.3 0 .5-.2.5-.5v-4.8c0-.3-.2-.5-.5-.5s-.5.2-.5.5v4.8c0 .3.3.5.5.5z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M129.1 125.6l4.1-2.6v-.5c0-.1-.1-.1-.1-.2 0 0 .1 0 .1.1v-2.9l-5.6 3.6c-.8.3-1.1 1.2-.8 2 .2.6.8.9 1.3.9.2 0 .4 0 .6-.1.1-.1.2-.2.4-.3z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M139 115.8l-1.3.9v3.5l2.2-1.4v-8.3c-.5.7-.9 1.5-1.1 2.3-.1.5-.1 1-.1 1.4.1.6.1 1.1.3 1.6zM139.9 165.2c0-.7-.6-1.3-1.3-1.3-.4 0-.7.1-.9.4v3.5c.3 1.1.7 2.1 1.3 3 .6-.9.9-1.9.9-3v-2.6z"/>
- <path fill="url(#aG)" fill-rule="nonzero" d="M139.9 165.2c0-.7-.6-1.3-1.3-1.3-.4 0-.7.1-.9.4v3.5c.3 1.1.7 2.1 1.3 3 .6-.9.9-1.9.9-3v-2.6z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M138.7 159.7c-.1.3 0 .7.4.8l.8.3v-4.4l-1.2 3.3z"/>
- <path fill="url(#aH)" fill-rule="nonzero" d="M138.7 159.7c-.1.3 0 .7.4.8l.8.3v-4.4l-1.2 3.3z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M198 217c.5.6.9 1.3 1.5 1.9-.5-.7-1-1.3-1.5-1.9z"/>
- <path fill="url(#aI)" fill-rule="nonzero" d="M198 217c.5.6.9 1.3 1.5 1.9-.5-.7-1-1.3-1.5-1.9z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M207.8 226l-.2.2c.1-.1.2-.1.2-.2z"/>
- <path fill="url(#aJ)" fill-rule="nonzero" d="M207.8 226l-.2.2c.1-.1.2-.1.2-.2z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M224.1 117.6c1.4 0 2.5.5 3.2 1.1-.7-.5-1.8-1.1-3.2-1.1z"/>
- <path fill="url(#aK)" fill-rule="nonzero" d="M224.1 117.6c1.4 0 2.5.5 3.2 1.1-.7-.5-1.8-1.1-3.2-1.1z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M224.1 119.9c1.1 0 1.9.5 2.3.9-.4-.4-1.2-.9-2.3-.9z"/>
- <path fill="url(#aL)" fill-rule="nonzero" d="M224.1 119.9c1.1 0 1.9.5 2.3.9-.4-.4-1.2-.9-2.3-.9z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M134.3 121.9v-3.1l-1.1.7v2.9s-.1 0-.1-.1c0 .1.1.1.1.2v.5l2.1-1.3v-.1c-.5-.1-.8 0-1 .3z"/>
- <path fill="url(#aM)" fill-rule="nonzero" d="M150.7 112.6l-4.5 2.7c-.3.2-.7.3-1 .3-.6 0-1.3-.3-1.6-.9-.4-.6-.4-1.3-.1-1.8.1-.4.4-.7.8-1l4.2-2.7c-.7-.5-1.5-.9-2.3-1.1-.4-.1-.8-.1-1.3-.1-2 0-3.8 1-4.9 2.5-.5.7-.9 1.5-1.1 2.3-.1.5-.1 1-.1 1.4 0 .5.1 1 .3 1.5v.1l-1.3.8-3.4 2.1-1.1.7-5.6 3.6c-.8.3-1.1 1.2-.8 2 .2.6.8.9 1.3.9.2 0 .4 0 .6-.1.1-.1.3-.1.4-.2l4.1-2.6 2.1-1.3 2.4-1.5 2.2-1.4.7-.5c.8.8 1.7 1.3 2.8 1.6.5.1.9.2 1.4.2 1.4 0 2.7-.5 3.7-1.3s1.8-2 2.1-3.4c.2-1 .2-1.9 0-2.8z"/>
- <path fill="#FFFEFE" fill-rule="nonzero" d="M143.5 114.7c.4.6 1 .9 1.6.9.4 0 .7-.1 1-.3l4.5-2.7c.2.9.2 1.9 0 2.8-.3 1.4-1.1 2.6-2.1 3.4 1.1-.8 1.9-2.1 2.2-3.5.2-.9.2-1.9 0-2.8l-4.6 2.7c-.3.2-.7.3-1 .3-.6 0-1.3-.3-1.7-.9-.3-.5-.4-1.2-.2-1.7-.1.5-.1 1.2.3 1.8z"/>
- <path fill="url(#aN)" fill-rule="nonzero" d="M143.5 114.7c.4.6 1 .9 1.6.9.4 0 .7-.1 1-.3l4.5-2.7c.2.9.2 1.9 0 2.8-.3 1.4-1.1 2.6-2.1 3.4 1.1-.8 1.9-2.1 2.2-3.5.2-.9.2-1.9 0-2.8l-4.6 2.7c-.3.2-.7.3-1 .3-.6 0-1.3-.3-1.7-.9-.3-.5-.4-1.2-.2-1.7-.1.5-.1 1.2.3 1.8z"/>
- <path fill="#FFFEFE" fill-rule="nonzero" d="M126.8 125.1c-.3-.8 0-1.7.8-2l5.6-3.6 1.1-.7 3.4-2.1 1.3-.8v-.1l-11.5 7.3c-.8.3-1.1 1.3-.8 2 .3.6.8.9 1.4.9h.1c-.7 0-1.2-.3-1.4-.9z"/>
- <path fill="url(#aO)" fill-rule="nonzero" d="M126.8 125.1c-.3-.8 0-1.7.8-2l5.6-3.6 1.1-.7 3.4-2.1 1.3-.8v-.1l-11.5 7.3c-.8.3-1.1 1.3-.8 2 .3.6.8.9 1.4.9h.1c-.7 0-1.2-.3-1.4-.9z"/>
- <path fill="#FFFEFE" fill-rule="nonzero" d="M139.9 110.5c1.1-1.5 2.9-2.5 4.9-2.5.4 0 .8 0 1.3.1.8.2 1.6.6 2.3 1.1l.2-.1c-.7-.6-1.5-1-2.4-1.2-.4-.1-.8-.1-1.3-.1-2.8 0-5.4 2-6 4.9-.1.5-.1 1-.1 1.6 0-.5 0-1 .1-1.4.1-1 .5-1.7 1-2.4z"/>
- <path fill="url(#aP)" fill-rule="nonzero" d="M139.9 110.5c1.1-1.5 2.9-2.5 4.9-2.5.4 0 .8 0 1.3.1.8.2 1.6.6 2.3 1.1l.2-.1c-.7-.6-1.5-1-2.4-1.2-.4-.1-.8-.1-1.3-.1-2.8 0-5.4 2-6 4.9-.1.5-.1 1-.1 1.6 0-.5 0-1 .1-1.4.1-1 .5-1.7 1-2.4z"/>
- <path fill="url(#aQ)" fill-rule="nonzero" d="M106.4 207.6c.1 0 .1 0 0 0h.1c1-.3 1.9-.9 2.7-1.6-1.1-.3-2 .2-3.1.7-1 .2-2 .3-2.7 1l-.2.2c1.2.2 2.3 0 3.2-.3z"/>
- <path fill="url(#aR)" fill-rule="nonzero" d="M118.3 196.1c.7-1.4.9-3 .6-4.6-.4-2.1-1.5-3.9-3.3-5.1-1.4-1-3-1.4-4.6-1.4-1.5 0-3 .5-4.2 1.3-.2-.2-.4-.3-.6-.5-1.2-.8-2.5-1.2-4-1.2-2.1 0-4 1-5.3 2.6h-.7c-2.7 0-5.2 1.4-6.8 3.6-1.8 2.6-1.9 5.9-.6 8.6-.7.5-1.2 1.1-1.7 1.8-1.3 1.8-1.8 4.1-1.4 6.3.4 2.2 1.6 4.1 3.5 5.4 1.2.9 2.6 1.4 4.1 1.5.4 1.1 1.2 2.1 2.2 2.8 1 .7 2.2 1.1 3.5 1.1 1 .9 2.2 1.6 3.7 2.2l1 5.5h2.3l-1.3-7.2c-1.3-.4-2.7-1-3.8-1.8-.4-.3-.7-.6-1-1h-.1l-.1-.1c-.4-.4-.7-1-.9-1.6v-.1c-.3-.9-.2-1.7.1-1.8.2-.1.4-.1.5 0 .1.1.2.3.2.4v.2c0 .2.1.4.1.6V213.9c.3.9 1 2 2.2 2.7.1 0 .2.1.3.1.6.4 1.3.6 1.9.9 0 0 .1 0 .1.1l-.5-3h-.1-.1c-.1-.1-.3-.1-.4-.2-.3-.1-.6-.3-.9-.5 0 0-.1 0-.1-.1-.1.3-.2.5-.4.7l-.3.3s0-.1-.1-.1c-.6-.7-.9-1.5-.9-2-.1-.6-.3-1-.8-1.3-.4-.3-1-.3-1.5-.1-.5.2-1.4.8-.7 3.2.1.5.4 1 .6 1.4l.1.1c-.6-.1-1.2-.3-1.7-.6-.6-.4-1-1-1.3-1.6-.1-.2-.2-.4-.2-.6v-.1c-.1-.3-.1-.6-.1-.9-.3.1-.7.1-1 .1-1.2 0-2.5-.3-3.6-1.1-2.2-1.5-3-4.1-2.4-6.5l.3-.9v-.1c.2-.4.4-.7.6-1.1.8-1.2 2-2 3.2-2.4l-.
1-.1c-2.1-2.1-2.5-5.4-.8-7.9.5-.7 1-1.2 1.6-1.6 1-.7 2.2-1 3.3-1 .6 0 1.2.1 1.8.2 0-.1.1-.1.1-.2.1-.3.2-.5.4-.7.7-1 1.8-1.6 2.9-1.8.3 0 .5-.1.8-.1.9 0 1.8.2 2.7.8.7.5 1.3 1.2 1.6 2 .1-.1.1-.2.2-.2 1.1-1.4 2.7-2.1 4.3-2.1.7 0 1.3.1 2 .3.5.2.9.4 1.3.7 2.6 1.8 3.2 5.3 1.4 7.9-.2.2-.3.4-.5.6.1 0 .1.1.2.1.3.1.5.3.8.4.2.2.4.3.7.5 2.4 2.2 2.9 5.8 1 8.5-1.2 1.8-3.2 2.8-5.3 2.8h-.6c-.1 1.1-.4 2.1-1.1 3-.1.1-.1.2-.2.3-.1.2-.3.3-.5.5l-.4.4-.1.1c-.4.3-.8.6-1.2.8h-.1c-.1 0-.2.1-.3.1-1 .4-2 .3-2 .3-.2 0-.3.1-.4.2-.1.1-.2.2-.2.3 0 .3.2.6.5.6h.4c.5 0 1.3-.1 2.2-.4h.1l.6 3.3c.2-.1.4-.1.5-.2.6-.3 1.2-.7 1.6-1.1l.1-.1c.1-.1.1-.3 0-.9-.1-.6-.4-1.2-.6-1.6-.1-.2-.1-.3-.2-.5s0-.4.1-.6l.2-.2h.2c.2 0 .5.1.6.4 0 .1.1.2.2.4.2.4.4.9.5 1.4v.1c.6-1.2.9-2.5 1.1-3.7v-.1c.1-.3.3-.5.6-.5h.1c.3.1.5.4.5.7-.4 1.9-1 4.2-2.4 5.8l-.1.1c-.6.6-1.3 1.2-2.1 1.5-.2.1-.5.2-.7.2h-.1l1 5.4c.1.3-.2.7-.7.9l2.7.3c.2-.5.3-1 .2-1.6l-.7-3.6c.8-.4 1.4-1 2.1-1.7l.1-.1c1.8-2.1 2.5-4.9 2.8-6.8.1-.8 0-1.5-.5-2.1 1.2-.6 2.2-1.5 3-2.7 1.3-1.9
1.8-4.2 1.4-6.5.2-2.4-.8-4.2-2.2-5.4z"/>
- <path fill="#EDEDF0" fill-rule="nonzero" d="M107.9 226.5h-.4c-.8 0-1.5-.2-1.5-.6v-.1h-2.3l.1.5c.2 1.2 1.3 2.5 3.8 2.5 1.5 0 3.5-.5 4.6-1.8.2-.2.3-.5.4-.7l-2.7-.3c-.5.2-1.3.4-2 .5z"/>
- <path fill="url(#aS)" fill-rule="nonzero" d="M107.9 226.5h-.4c-.8 0-1.5-.2-1.5-.6v-.1h-2.3l.1.5c.2 1.2 1.3 2.5 3.8 2.5 1.5 0 3.5-.5 4.6-1.8.2-.2.3-.5.4-.7l-2.7-.3c-.5.2-1.3.4-2 .5z"/>
- <path d="M-30-28h352v303H-30z"/>
- </g>
-</svg>
diff --git a/browser/extensions/onboarding/content/img/figure_default.svg b/browser/extensions/onboarding/content/img/figure_default.svg
deleted file mode 100644
index c52e4b8500f7..000000000000
--- a/browser/extensions/onboarding/content/img/figure_default.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="272" height="247" viewBox="0 0 272 247" xmlns="http://www.w3.org/2000/svg"><title>default-browser</title><defs><linearGradient x1="-12.708%" y1="-28.803%" x2="102.994%" y2="115.824%" id="a"><stop stop-color="#FFCCD7" offset="40.06%"/><stop stop-color="#EDBEE2" offset="100%"/></linearGradient><linearGradient x1="-78.121%" y1="-55.724%" x2="136.609%" y2="135.651%" id="b"><stop stop-color="#FFE900" offset="28.07%"/><stop stop-color="#FFCC07" offset="32.21%"/><stop stop-color="#FF8119" offset="41.22%"/><stop stop-color="#FF0B36" offset="54.35%"/><stop stop-color="#FF0039" offset="55.5%"/><stop stop-color="#ED00B5" offset="85.24%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><path d="M-36-18h352v303H-36z"/><g fill-rule="nonzero"><g fill="#D7D7DB"><path d="M116.6 201.9H42.1c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h74.6c.6 0 1.1.5 1.1 1.1-.1.6-.6 1.1-1.2 1.1zM104 195.9H71c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h33c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zM109.7 206.7h-3.3c-.3 0-.6-.
2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.2.6-.6.6zm-12.2 0H84.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-23.5 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6H74c.3 0 .6.2.6.6 0 .4-.2.6-.6.6zm-5.5 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-12.3 0H42.8c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-23.4 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-5.6 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-12.3 0H1.5c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6z"/></g><path d="M138.8 171.9c-2.8 0-5-2.1-5-4.8V49.7c0-2.9 2.4-5.3 5.3-5.3h126.1c2.9 0 5.3 2.4 5.3 5.3v117.4c0 2.6-2.2 4.8-5 4.8H138.8z" fill="#FFF"/><path d="M265.2 45.4c2.3 0 4.2 1.9 4.2 4.2V167c0 2-1.7 3.7-3.9 3.7H138.8c-2.2 0-3.9-1.6-3.9-3.7V49.7c0-2.3 1.9-4.2 4.2-4.2h126.1v-.1zm0-2.2H139.1c-3.5 0-6.4 2.9-6.4 6.4V167c0 3.2 2.8 5.9 6.1 5.9h126.7c3.4 0 6.1-2.6 6.1-5.9V49.7c0-3.
6-2.9-6.5-6.4-6.5z" fill="#D7D7DB"/><path d="M264.8 66.4V165c0 .9-.1 1.2-.1 1.2s-.3.1-1.2.1H140.8c-.9 0-1.2-.1-1.2-.1s-.1-.3-.1-1.2V66.4h125.3zm1.1-1.1H138.3V165c0 2 .4 2.4 2.4 2.4h122.7c2 0 2.4-.4 2.4-2.4V65.3h.1z" fill="#D7D7DB"/><g fill="#D7D7DB"><circle cx="2.9" cy="3.3" r="2.8" transform="translate(143 52)"/><circle cx="3.1" cy="3.3" r="2.8" transform="translate(152 52)"/><path d="M233.8 58.5h-63.4c-1.7 0-3.1-1.4-3.1-3.1v-.3c0-1.7 1.4-3.1 3.1-3.1h63.4c1.7 0 3.1 1.4 3.1 3.1v.3c0 1.7-1.4 3.1-3.1 3.1z"/><g><circle cx="3.2" cy="3.3" r="2.8" transform="translate(246 52)"/><circle cx="3.4" cy="3.3" r="2.8" transform="translate(255 52)"/></g></g><path d="M21.8 23.4h23.9S38.2 6.7 54.1 4.5c14.2-1.9 19.8 12.6 19.8 12.6s1.7-8.4 10.1-6.8c8.3 1.6 14.5 15 14.5 15h20.8" fill="#F9F9FA"/><path d="M119.7 21.4h-5.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h5.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-15.3 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-5.5-.1c-.2 0-.4-.1-.5-.3-.2-.3-.7-1.
4-1.7-2.9-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2 1 1.5 1.6 2.6 1.7 2.9.1.3 0 .6-.2.8-.2.1-.3.1-.3.1zm-52.8-.6h-1.6c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h.8c-.1-.2-.2-.5-.3-.9-.1-.3.1-.6.4-.7.3-.1.6.1.7.4.3 1 .6 1.6.6 1.6.1.2.1.4 0 .5-.2.2-.4.3-.6.3zm-10.5 0H22.2c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm8.9-6c-.3 0-.5-.2-.6-.5 0-.4-.1-.8-.1-1.1 0-.3.2-.6.5-.6s.6.2.6.5c0 .4.1.7.1 1.1.1.3-.1.6-.5.6.1 0 0 0 0 0zM73.6 13c-.2 0-.4-.1-.5-.3-.1-.3-.3-.6-.5-1-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.2.4.4.7.5 1 .1.3 0 .6-.2.8-.1 0-.2.1-.3.1zm17.9-1.5c-.1 0-.3 0-.4-.1-2.3-2.1-4.6-3.4-6.8-3.8-.7-.1-1.4-.2-2-.2-1 0-2 .2-2.8.5-.3.1-.6 0-.7-.3-.1-.3 0-.6.3-.7 1-.4 2.1-.6 3.3-.6.7 0 1.4.1 2.2.2 2.4.5 4.9 1.8 7.3 4 .2.2.2.6 0 .8-.1.2-.3.2-.4.2zM70.6 8.3c-.2 0-.3-.1-.4-.2-.7-.9-1.5-1.6-2.3-2.3-.2-.2-.3-.6-.1-.8.2-.2.6-.3.8-.1.8.7 1.6 1.6 2.4 2.5.2.2.2.6-.1.8-.1.1-.2.1-.3.1zm-23-3.8c-.2 0-.3-.1-.4-.2-.2-.2-.2-.6.1-.8C49.1 2 51.5 1.1 54.5.6c2.1-.3 4.1-.2 6 .1.3.1.5.4.4.7-.1.3-.3.5-.7.4-1.8-.4-3.7-
.4-5.6-.1-2.8.4-5 1.3-6.6 2.6-.1.2-.2.2-.4.2z" fill="#D7D7DB"/><path d="M120.4 25.6H21.8c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h98.6c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1z" fill="#F9F9FA"/><path d="M15.2 181.9c-2.8 0-5-2.1-5-4.8V59.7c0-2.9 2.4-5.3 5.3-5.3h126.1c2.9 0 5.3 2.4 5.3 5.3v117.4c0 2.6-2.2 4.8-5 4.8H15.2z" fill="#FFF"/><path d="M141.6 55.5c2.3 0 4.2 1.9 4.2 4.2V177.1c0 2-1.7 3.7-3.9 3.7H15.2c-2.2 0-3.9-1.6-3.9-3.7V59.7c0-2.3 1.9-4.2 4.2-4.2h126.1zm0-2.2H15.5c-3.5 0-6.4 2.9-6.4 6.4V177.1c0 3.2 2.8 5.9 6.1 5.9h126.7c3.4 0 6.1-2.6 6.1-5.9V59.7c0-3.5-2.9-6.4-6.4-6.4z" fill="#D7D7DB"/><path d="M141.2 76.4V175c0 .9-.1 1.2-.1 1.2s-.3.1-1.2.1H17.2c-.9 0-1.2-.1-1.2-.1s-.1-.3-.1-1.2V76.4h125.3zm1.1-1.1H14.8V175c0 2 .4 2.4 2.4 2.4h122.7c2 0 2.4-.4 2.4-2.4V75.3z" fill="#D7D7DB"/><g fill="#D7D7DB"><circle cx="3.3" cy="3.3" r="2.8" transform="translate(19 62)"/><circle cx="3.5" cy="3.3" r="2.8" transform="translate(28 62)"/><path d="M110.2 68.6H46.9c-1.7 0-3.1-1.4-3.1-3.1v-.3c0-1.7 1.4
-3.1 3.1-3.1h63.4c1.7 0 3.1 1.4 3.1 3.1v.3c-.1 1.7-1.5 3.1-3.2 3.1z"/><g><circle cx="3.6" cy="3.3" r="2.8" transform="translate(122 62)"/><circle cx="2.8" cy="3.3" r="2.8" transform="translate(132 62)"/></g></g><path d="M210 28.8h13.3s-4.2-9.3 4.7-10.5c7.9-1.1 11 7 11 7s.9-4.7 5.6-3.8c4.6.9 8 8.3 8 8.3h11.6" fill="#F9F9FA"/><path d="M223.7 27.3h-13.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.3v.5l.5-.2c.1.2.1.4 0 .6-.2.2-.3.3-.5.3zm36.5-.2h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-20.8-3.3h-.1c-.3-.1-.5-.4-.4-.7.1-.4 1.1-4.3 5-4.3.4 0 .8 0 1.2.1 1.7.3 3.5 1.4 5.2 3.1.2.2.2.6 0 .8-.2.2-.6.2-.8 0-1.6-1.6-3.1-2.5-4.6-2.8-.4-.1-.7-.1-1-.1-3 0-3.8 2.8-3.9 3.4-.1.3-.4.5-.6.5zm-15.3-5.1c-.1 0-.3 0-.4-.1-.2-.2-.2-.6 0-.8.8-.8 1.8-1.5 3.1-1.8.3-.1.6.1.7.4.1.3-.1.6-.4.7-1.1.3-2 .8-2.6 1.5-.1.1-.3.1-.4.1zm8.3-1.6h-.2c-.3-.1-.7-.2-1-.2-.3-.1-.5-.3-.5-.6.1-.3.3-.5.6-.5l1.2.3c.3.1.5.4.4.7 0 .1-.2.3-.5.3z" fill="#D7D7DB"/><path d="M265.1 31h-54.9c-.6 0-1.1-.5-1.1-1.1 0-.6.
5-1.1 1.1-1.1h54.9c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1zM237.9 58H87.8c-5.8 0-10.6 4.8-10.6 10.6v139.9c0 5.5 4.6 9.9 10.2 9.9h150.9c5.6 0 10.2-4.5 10.2-9.9V68.6c0-5.8-4.7-10.6-10.6-10.6z" fill="#F9F9FA"/><ellipse fill="#EDEDF0" cx="164.5" cy="239.7" rx="82" ry="6.8"/><path d="M148.2 68.3c-.5.4-1.1.6-1.8.6s-1.3-.2-1.8-.6l-6.3-5.1-.2-.2H87.7c-2.8 0-5 2.2-5 5v140c0 2.4 2.1 4.4 4.6 4.4h150.9c2.6 0 4.6-1.9 4.6-4.4V68.1c0-2.8-2.2-5-5-5h-83.3c-.1 0-.1.1-.2.2l-6.1 5zm-41.4 3.1c1.9 0 3.4 1.5 3.4 3.4s-1.5 3.4-3.4 3.4-3.4-1.5-3.4-3.4 1.5-3.4 3.4-3.4zm-10.9 0c1.9 0 3.4 1.5 3.4 3.4s-1.5 3.4-3.4 3.4-3.4-1.5-3.4-3.4 1.5-3.4 3.4-3.4zm133.9 0c1.9 0 3.4 1.5 3.4 3.4s-1.5 3.4-3.4 3.4-3.4-1.5-3.4-3.4 1.6-3.4 3.4-3.4zm-10.9 0c1.9 0 3.4 1.5 3.4 3.4s-1.5 3.4-3.4 3.4-3.4-1.5-3.4-3.4 1.6-3.4 3.4-3.4zm-18.3-.4c2 0 3.7 1.6 3.7 3.7v.3c0 2-1.6 3.7-3.7 3.7h-5.8c.9 2.6.9 5.5-.2 8h44.3v118.7c0 2.4-.5 2.9-2.9 2.9H89.8c-2.4 0-2.9-.5-2.9-2.9V86.7h73.3c-1.1-2.6-1.1-5.5-.2-8h-34.9c-2 0-3.7-1.6-3.7-3.7v-.3c0-2 1.6-3.7
3.7-3.7h75.5z" fill="#FFF"/><path d="M190.6 91.5l-11.1 9c-.6.5-1.3.7-2.1.7s-1.5-.3-2.1-.7l-11.1-9c-1.3-.8-2.3-1.9-3.1-3.1-.4-.6-.7-1.1-.9-1.7H86.9v118.7c0 2.4.5 2.9 2.9 2.9H236c2.4 0 2.9-.5 2.9-2.9V86.7h-44.3c-.3.6-.6 1.2-1 1.8-.8 1.2-1.8 2.2-3 3zm10.1 24c7.4 8.8 8.2 21.5 1.8 31.1-1.9 2.9-4.3 5.3-7.2 7.3l-30.2 24.7c-.9.7-2.1 1.1-3.3 1.1-1.2 0-2.4-.4-3.3-1.2l-30.4-24.6c-3-2-5.6-4.5-7.5-7.5-6.7-10.3-5.3-24 3.4-32.7 4.9-4.9 11.4-7.6 18.3-7.6 7 0 13.5 2.7 18.4 7.6.3.3.6.4.8.4.2 0 .5-.1.9-.4 4.9-4.9 11.4-7.6 18.3-7.6 7.8.2 15 3.5 20 9.4z" fill="url(#a)"/><path d="M162.5 113.8c-.3.3-.7.4-.9.4-.2 0-.5-.1-.8-.4-4.9-4.9-11.4-7.6-18.4-7.6-6.9 0-13.4 2.7-18.3 7.6-8.7 8.6-10.1 22.4-3.4 32.7 1.9 3 4.4 5.5 7.5 7.5l30.4 24.6c.9.7 2.1 1.2 3.3 1.2 1.2 0 2.3-.4 3.3-1.1l30.2-24.7c2.9-2 5.3-4.4 7.2-7.3 6.3-9.6 5.6-22.3-1.8-31.1-5-5.9-12.2-9.3-19.9-9.3-7 0-13.5 2.7-18.4 7.5zM199 117c6.7 8 7.4 19.7 1.6 28.4-1.8 2.8-4.2 5-6.7 6.7l-30.3 24.7c-.6.4-1.2.7-1.9.7s-1.3-.2-1.9-.7l-30.5-24.7c-2.6-1.7-5-4-6.9-6.9-
6.1-9.3-4.8-22 3.1-29.9 4.6-4.6 10.7-6.9 16.8-6.9 6.1 0 12.2 2.3 16.8 7 .7.7 1.5 1 2.4 1 .9 0 1.7-.3 2.4-1 4.6-4.6 10.7-6.9 16.8-6.9 6.8 0 13.5 2.8 18.3 8.5z" fill="#FFF"/><path d="M138 115.4c-7.6 1.7-13.2 8.1-13.8 15.8-.2 2.2 1.5 4.1 3.6 4.3h.3c2.1 0 3.8-1.6 3.9-3.6.4-4.3 3.4-7.8 7.6-8.7 2.2-.5 3.5-2.6 3-4.7-.3-2.2-2.4-3.6-4.6-3.1z" fill="#F9F9FA"/><path d="M184.5 71.4c-2.6 0-5.1.9-7.1 2.6-2-1.7-4.5-2.6-7.1-2.6-2.9 0-5.7 1.1-7.7 3.2-1.2 1.2-2 2.5-2.6 4-.9 2.6-.9 5.5.2 8 .3.6.6 1.2.9 1.7.8 1.2 1.8 2.3 3.1 3.1l11.1 9c.6.5 1.3.7 2.1.7s1.5-.3 2.1-.7l11.1-9c1.2-.8 2.2-1.8 3-3 .4-.6.7-1.2 1-1.8 1.1-2.6 1.1-5.5.2-8-.4-1.2-1.1-2.3-1.9-3.3-2.1-2.5-5.2-3.9-8.4-3.9zm7.3 15.8c-.7 1-1.5 1.8-2.5 2.5l-11.2 9.1c-.2.2-.4.2-.7.2-.2 0-.5-.1-.7-.2l-11.2-9.1c-1-.6-1.9-1.5-2.6-2.5-2.2-3.4-1.8-8.1 1.1-11 1.7-1.7 3.9-2.5 6.2-2.5 2.2 0 4.5.9 6.2 2.6.2.2.6.4.9.4.3 0 .6-.1.9-.4 1.7-1.7 3.9-2.6 6.2-2.6 2.5 0 4.9 1 6.7 3.1 2.5 2.9 2.8 7.2.7 10.4z" fill="#FFF"/><path d="M168.7 76.2c-2.8.6-4.8 3-5.1 5.8-.1.8.5 1
.5 1.3 1.6h.1c.8 0 1.4-.6 1.5-1.3.1-1.6 1.3-2.9 2.8-3.2.8-.2 1.3-1 1.1-1.7-.1-.9-.9-1.4-1.7-1.2zM138.1 63l.2.2 6.3 5.1c.5.4 1.1.6 1.8.6.6 0 1.3-.2 1.8-.6l6.2-5.1c.1 0 .1-.1.2-.2.7-.5 1.3-1.1 1.7-1.8.1-.1.2-.3.2-.4 1.5-2.6 1.2-5.9-.7-8.1-1.4-1.6-3.4-2.6-5.5-2.6-1.4 0-2.8.4-4 1.2-1.2-.8-2.6-1.2-4-1.2-1.9 0-3.7.7-5.1 2.1-2.3 2.3-2.7 5.8-1.2 8.6.1.1.1.3.2.4.6.7 1.2 1.3 1.9 1.8zm.8-9.2c1-1 2.2-1.4 3.5-1.4 1.3 0 2.5.5 3.5 1.5.1.1.3.2.5.2s.4-.1.5-.2c1-1 2.2-1.4 3.5-1.4 1.4 0 2.8.6 3.8 1.8 1.4 1.7 1.5 4.1.3 5.9-.4.6-.9 1-1.4 1.4l-6.3 5.1c-.1.1-.3.1-.4.1-.1 0-.3 0-.4-.1l-6.3-5.1c-.5-.4-1-.8-1.4-1.4-1.3-2.2-1.1-4.8.6-6.4z" fill="#F9F9FA"/><path d="M139.3 58c.1 0 .1 0 0 0 .5 0 .9-.3.9-.8.1-.9.7-1.6 1.6-1.8.4-.1.7-.5.6-1-.1-.4-.5-.7-1-.6-1.6.4-2.7 1.7-2.9 3.3 0 .4.4.8.8.9z" fill="#F9F9FA"/><path d="M245.2 68.1V208c0 3.6-3.1 6.6-6.9 6.6H87.4c-3.8 0-6.9-3-6.9-6.6V68.1c0-4 3.2-7.2 7.2-7.2h48.4c.1.1.1.3.2.4.5.7 1.1 1.3 1.8 1.8H87.7c-2.8 0-5 2.2-5 5V208c0 2.4 2.1 4.4 4.6 4.4h150.9c2.6 0 4.6-1.9 4.6-
4.4V68.1c0-2.8-2.2-5-5-5h-83.3c.7-.5 1.3-1.1 1.7-1.8.1-.1.2-.3.2-.4h81.4c4.1-.1 7.4 3.2 7.4 7.2zM95.9 78.2c1.9 0 3.4-1.5 3.4-3.4s-1.5-3.4-3.4-3.4-3.4 1.5-3.4 3.4 1.5 3.4 3.4 3.4zm10.9 0c1.9 0 3.4-1.5 3.4-3.4s-1.5-3.4-3.4-3.4-3.4 1.5-3.4 3.4 1.5 3.4 3.4 3.4zm14.6-3.6v.3c0 2 1.6 3.7 3.7 3.7H160c.5-1.5 1.4-2.8 2.6-4 2.1-2.1 4.8-3.2 7.7-3.2 2.6 0 5.1.9 7.1 2.6 2-1.7 4.5-2.6 7.1-2.6 3.2 0 6.3 1.4 8.4 3.9.8 1 1.5 2.1 1.9 3.3h5.8c2 0 3.7-1.6 3.7-3.7v-.3c0-2-1.6-3.7-3.7-3.7h-75.5c-2 .1-3.7 1.7-3.7 3.7zm97.5 3.6c1.9 0 3.4-1.5 3.4-3.4s-1.5-3.4-3.4-3.4-3.4 1.5-3.4 3.4 1.6 3.4 3.4 3.4zm10.9 0c1.9 0 3.4-1.5 3.4-3.4s-1.5-3.4-3.4-3.4-3.4 1.5-3.4 3.4 1.6 3.4 3.4 3.4zm-49 30.3c6.7 0 13.4 2.8 18.2 8.5 6.7 8 7.4 19.7 1.6 28.4-1.8 2.8-4.2 5-6.7 6.7l-30.3 24.7c-.6.4-1.2.7-1.9.7s-1.3-.2-1.9-.7l-30.5-24.7c-2.6-1.7-5-4-6.9-6.9-6.1-9.3-4.8-22 3.1-29.9 4.6-4.6 10.7-6.9 16.8-6.9 6.1 0 12.2 2.3 16.8 7 .7.7 1.5 1 2.4 1 .9 0 1.7-.3 2.4-1 4.8-4.6 10.9-6.9 16.9-6.9zm-38 9.9c-.5-2.2-2.6-3.5-4.7-3-7.6 1.7-13.2 8.1-1
3.8 15.8-.2 2.2 1.5 4.1 3.6 4.3h.3c2.1 0 3.8-1.6 3.9-3.6.4-4.3 3.4-7.8 7.6-8.7 2.2-.5 3.6-2.7 3.1-4.8zm48.4-41.6c2.5 2.9 2.7 7.3.6 10.5-.7 1-1.5 1.8-2.5 2.5l-11.2 9.1c-.2.2-.4.2-.7.2-.2 0-.5-.1-.7-.2l-11.2-9.1c-1-.6-1.9-1.5-2.6-2.5-2.2-3.4-1.8-8.1 1.1-11 1.7-1.7 3.9-2.5 6.2-2.5 2.2 0 4.5.9 6.2 2.6.2.2.6.4.9.4.3 0 .6-.1.9-.4 1.7-1.7 3.9-2.6 6.2-2.6 2.5-.1 5 .9 6.8 3zm-20.7.5c-.2-.8-1-1.3-1.7-1.1-2.8.6-4.8 3-5.1 5.8-.1.8.5 1.5 1.3 1.6h.1c.8 0 1.4-.6 1.5-1.3.1-1.6 1.3-2.9 2.8-3.2.7-.2 1.2-1 1.1-1.8zM138.2 60c-1.3-1.9-1-4.6.6-6.2 1-1 2.2-1.4 3.5-1.4 1.3 0 2.5.5 3.5 1.5.1.1.3.2.5.2s.4-.1.5-.2c1-1 2.2-1.4 3.5-1.4 1.4 0 2.8.6 3.8 1.8 1.4 1.7 1.5 4.1.3 5.9-.4.6-.9 1-1.4 1.4l-6.3 5.1c-.1.1-.3.1-.4.1-.1 0-.3 0-.4-.1l-6.3-5.1c-.5-.5-1-1-1.4-1.6zm.4-2.9c0 .5.3.9.8.9h.1c.4 0 .8-.3.8-.8.1-.9.7-1.6 1.6-1.8.4-.1.7-.5.6-1-.1-.4-.5-.7-1-.6-1.6.3-2.8 1.7-2.9 3.3zM158 42.4c-2.1-3.2-1.6-7.5 1.1-10.2 1.6-1.6 3.6-2.4 5.7-2.4s4.2.8 5.7 2.4c.2.2.5.3.8.3.3 0 .6-.1.8-.3 1.6-1.6 3.7-2.4 5.7-2.4 2.3 0 4.6 1 6.2
2.9 2.3 2.7 2.5 6.7.6 9.7-.6 1-1.4 1.7-2.3 2.3L172 53.2c-.2.2-.4.2-.6.2-.2 0-.5-.1-.6-.2l-10.4-8.4c-1-.7-1.8-1.4-2.4-2.4zm.6-4.8c-.1.7.5 1.4 1.2 1.5h.1c.7 0 1.3-.5 1.3-1.2.1-1.5 1.2-2.7 2.6-3 .7-.2 1.2-.9 1-1.6-.2-.7-.9-1.2-1.6-1-2.5.5-4.4 2.6-4.6 5.3z" fill="url(#b)"/><path d="M159 46.5l10.3 8.4c.6.5 1.3.7 2 .7s1.5-.3 2-.7l10.3-8.4c1.1-.8 2.1-1.7 2.8-2.8 2.5-3.8 2.2-8.9-.7-12.4-2-2.3-4.9-3.7-7.9-3.7-2.4 0-4.7.8-6.6 2.3-1.9-1.5-4.2-2.4-6.6-2.4-2.8 0-5.3 1.1-7.3 3-3.5 3.4-4 8.9-1.4 13 1 1.3 1.9 2.2 3.1 3zm0-14.3c1.6-1.6 3.6-2.4 5.7-2.4s4.2.8 5.7 2.4c.2.2.5.3.8.3.3 0 .6-.1.8-.3 1.6-1.6 3.7-2.4 5.7-2.4 2.3 0 4.6 1 6.2 2.9 2.3 2.7 2.5 6.7.6 9.7-.6 1-1.4 1.7-2.3 2.3L172 53.2c-.2.2-.4.2-.6.2-.2 0-.5-.1-.6-.2l-10.4-8.4c-.9-.6-1.7-1.4-2.4-2.4-2.1-3.2-1.7-7.5 1-10.2z" fill="#F9F9FA"/><path d="M159.8 39.1h.1c.7 0 1.3-.5 1.3-1.2.1-1.5 1.2-2.7 2.6-3 .7-.2 1.2-.9 1-1.6-.2-.7-.9-1.2-1.6-1-2.6.6-4.5 2.8-4.7 5.4 0 .6.6 1.3 1.3 1.4z" fill="#F9F9FA"/></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/figure_library.svg b/browser/extensions/onboarding/content/img/figure_library.svg
deleted file mode 100644
index aad20181b996..000000000000
--- a/browser/extensions/onboarding/content/img/figure_library.svg
+++ /dev/null
@@ -1,689 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="267" height="240">
- <defs>
- <linearGradient id="a" x1="-287.251713%" x2="363.382118%" y1="-127.999431%" y2="247.172106%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="b" x1="-8347.28%" x2="11424.26%" y1="-8337.33%" y2="11434.21%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="c" x1="-2354.3122%" x2="2468.01463%" y1="-738.5544%" y2="843.1688%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="d" x1="-11316.73%" x2="8454.81%" y1="-5346.60952%" y2="4068.40952%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="e" x1="-156.148629%" x2="205.305484%" y1="-480.49483%" y2="430.938303%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="f" x1="-11777.11%" x2="7994.43%" y1="-1542.90541%" y2="1128.92432%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="g" x1="-1966.10678%" x2="1385.00169%" y1="-2646.49545%" y2="1847.03636%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="h" x1="-1259.26087%" x2="945.558937%" y1="-1283.95691%" y2="942.373333%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="i" x1="-4828.28387%" x2="3895.46452%" y1="-2550.56897%" y2="2112.12414%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="j" x1="-1420.34388%" x2="1159.68716%" y1="-3565.4194%" y2="2819.67133%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="k" x1="-6578.28%" x2="13193.26%" y1="-6566.33%" y2="13205.21%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="l" x1="-690.589109%" x2="1266.98911%" y1="-1068.60597%" y2="1882.37015%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="m" x1="-3693.78418%" x2="6240.18862%" y1="-1360.99327%" y2="2373.67085%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="n" x1="-51.4002563%" x2="99.3496099%" y1="-59.6430664%" y2="133.087695%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="o" x1="-47.4074974%" x2="121.810771%" y1="-106.87209%" y2="132.306567%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="p" x1="-701.943676%" x2="609.202314%" y1="-537.964802%" y2="487.22249%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="q" x1="-1074.53%" x2="834.91%" y1="-358.218519%" y2="348.981481%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="r" x1="-5230.64688%" x2="3222.21875%" y1="-2856.73793%" y2="1806.91207%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="s" x1="-1536.40601%" x2="955.898444%" y1="-3896.2795%" y2="2345.49035%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="t" x1="-2573.03736%" x2="4141.82528%" y1="-7694%" y2="12077.54%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="u" x1="-105.756%" x2="253.726545%" y1="-959.543678%" y2="1313.04713%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="v" x1="-113.495628%" x2="246.641894%" y1="-1951.93556%" y2="2441.74%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="w" x1="-203.741261%" x2="362.77851%" y1="-8794.04%" y2="10977.5%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="x" x1="-8901.65455%" x2="9072.47273%" y1="-4629.9%" y2="4785.11905%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="y" x1="-135.885507%" x2="273.463147%" y1="-6854.87692%" y2="8354%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="z" x1="-237.240755%" x2="222.496119%" y1="-950.902381%" y2="659.16369%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="A" x1="-323.294457%" x2="276.418625%" y1="-16784.12%" y2="10262.94%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="B" x1="-324.50885%" x2="273.863496%" y1="-16876.15%" y2="10170.29%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="C" x1="-8757.43409%" x2="-13250.9636%" y1="-25788.3267%" y2="-38969.3533%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="D" x1="-4977.81154%" x2="-7512.62308%" y1="-21732.3667%" y2="-32716.5611%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="E" x1="-778.197863%" x2="-1200.66709%" y1="-2873.70382%" y2="-4382.98244%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="F" x1="-3162.7925%" x2="-4810.42083%" y1="-25654.4533%" y2="-38835.4867%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="G" x1="-1053.32338%" x2="1514.40909%" y1="-4984.71765%" y2="6645.6%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="H" x1="-5039.72338%" x2="-7607.45714%" y1="-23040.7706%" y2="-34671.0941%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="I" x1="143.631333%" x2="-4.86%" y1="790.352632%" y2="-381.952632%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="J" x1="-2552.41333%" x2="-3870.516%" y1="-20494.2053%" y2="-30900.2789%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="K" x1="-1250.60304%" x2="-1918.56115%" y1="-38487.33%" y2="-58258.87%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="L" x1="-37598.9%" x2="-57370.44%" y1="-17879.1857%" y2="-27294.2048%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="M" x1="-882.727251%" x2="-1363.78637%" y1="-29434.6846%" y2="-44643.5692%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="N" x1="-268.313828%" x2="273.677355%" y1="-882.118713%" y2="699.481287%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="O" x1="-420.455862%" x2="943.098621%" y1="-4784.28571%" y2="9338.24286%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="P" x1="-587.656122%" x2="1429.84796%" y1="-3859.74375%" y2="8497.475%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="Q" x1="-597.567708%" x2="1461.96771%" y1="-6217.96%" y2="13553.58%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="R" x1="-989.3%" x2="1835.20571%" y1="-6563.19091%" y2="11410.9364%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="S" x1="-1683.03158%" x2="3520.00526%" y1="-4061.93125%" y2="8295.28125%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="T" x1="-289.56383%" x2="551.778298%" y1="-736.619802%" y2="1220.95842%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="U" x1="-8102.24%" x2="11669.3%" y1="-8112.37%" y2="11659.17%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="V" x1="-527.27218%" x2="959.309774%" y1="-7671.89%" y2="12099.65%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="W" x1="-563.298261%" x2="1155.96609%" y1="-4360.425%" y2="7996.7875%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="X" x1="-595.656881%" x2="1218.24587%" y1="-7031.95%" y2="12739.59%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="Y" x1="-4261.16471%" x2="7369.15294%" y1="-5186.16429%" y2="8936.36429%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="Z" x1="-7291.52%" x2="12480.03%" y1="-7323.1%" y2="12448.44%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aa" x1="-46.8866667%" x2="106.777333%" y1="-610.354545%" y2="437.354545%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="ab" x1="-954.992%" x2="1681.21333%" y1="-6801.97273%" y2="11172.1545%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="ac" x1="-53.1965517%" x2="108.827586%" y1="-138.8375%" y2="154.825%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="ad" x1="-2268.40345%" x2="4549.36897%" y1="-4153.9%" y2="8203.3125%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="ae" x1="-134.196822%" x2="349.214914%" y1="-7485.96%" y2="12285.58%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="af" x1="-203.129153%" x2="467.092542%" y1="-7412.3%" y2="12359.24%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="ag" x1="-8254.16%" x2="11517.38%" y1="-4829.67647%" y2="6800.64118%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="ah" x1="-261.207831%" x2="281.860241%" y1="-1137.19462%" y2="943.173846%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="ai" x1="-353.298433%" x2="352.892428%" y1="-15403.61%" y2="11643.5%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="aj" x1="-355.267885%" x2="350.914099%" y1="-15487.8%" y2="11558.97%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="ak" x1="-2084.69358%" x2="-3141.99572%" y1="-5548.86479%" y2="-8333.58732%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="al" x1="-2136.94011%" x2="-3223.28791%" y1="-39758.41%" y2="-59529.95%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="am" x1="-8671.43111%" x2="-13065.1111%" y1="-39159.26%" y2="-58930.8%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="an" x1="42.05%" x2="39.02%" y1="40.85%" y2="37.83%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="ao" x1="-1655.02189%" x2="-2503.58541%" y1="-18008.5045%" y2="-26995.5636%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="ap" x1="26.16%" x2="23.82%" y1="17.93%" y2="15.58%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aq" x1="-7321.04%" x2="-10915.8655%" y1="-26976.66%" y2="-40157.6867%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="ar" x1="-3806.45143%" x2="-5689.45619%" y1="-33702.4583%" y2="-50178.75%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="as" x1="-719.07449%" x2="1298.42959%" y1="-4375.10588%" y2="7255.21176%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="at" x1="-4193.87653%" x2="-6211.37959%" y1="-24406.3118%" y2="-36036.6294%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="au" x1="-524.679508%" x2="1095.93852%" y1="-4333.45%" y2="8023.7625%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="av" x1="-3315.91393%" x2="-4936.53115%" y1="-25616.6063%" y2="-37973.8188%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aw" x1="-1422.94082%" x2="2612.06735%" y1="-5115.85714%" y2="9006.67143%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="ax" x1="-8372.54082%" x2="-12407.5531%" y1="-29439.4643%" y2="-43561.9929%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="ay" x1="-2040.6303%" x2="3950.74545%" y1="-6860.53%" y2="12911.01%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="az" x1="-12359.7364%" x2="-18351.1091%" y1="-40913.58%" y2="-60685.12%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aA" x1="-1005.75152%" x2="1989.93788%" y1="-6296.96364%" y2="11677.1727%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aB" x1="-6165.30303%" x2="-9160.98939%" y1="-37254.2727%" y2="-55228.4%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aC" x1="-2871.84%" x2="5036.776%" y1="-4515.63125%" y2="7841.58125%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aD" x1="-16493.056%" x2="-24401.672%" y1="-25798.7875%" y2="-38156%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aE" x1="-4836.46667%" x2="8344.56%" y1="-7269.91%" y2="12501.63%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aF" x1="-27538.4933%" x2="-40719.52%" y1="-41322.96%" y2="-61094.5%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aG" x1="123.979381%" x2="7.09896907%" y1="645.125%" y2="-299.65%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="aH" x1="-4143.41443%" x2="-6181.71959%" y1="-33849.65%" y2="-50325.925%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aI" x1="110.22963%" x2="13.6574074%" y1="263.406667%" y2="-84.2533333%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="aJ" x1="-7493.57037%" x2="-11154.9667%" y1="-27110.28%" y2="-40291.3067%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aK" x1="-1314.06588%" x2="-1982.02331%" y1="-40374.36%" y2="-60145.89%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aL" x1="-39504.49%" x2="-59276.05%" y1="-23215.4176%" y2="-34845.7353%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aM" x1="-935.697066%" x2="-1419.10856%" y1="-40260.71%" y2="-60032.24%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aN" x1="-239.365731%" x2="302.59479%" y1="-1057.81832%" y2="1006.59618%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="aO" x1="-195.98196%" x2="188.238494%" y1="-262.20413%" y2="218.292299%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="aP" x1="-148.239568%" x2="156.504317%" y1="-236.10625%" y2="205.1375%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="aQ" x1="-684.479137%" x2="737.933813%" y1="-1012.53646%" y2="1046.99896%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- <linearGradient id="aR" x1="-802.736152%" x2="689.739334%" y1="-1056.80385%" y2="890.777014%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="aS" x1="-1124.88665%" x2="549.535228%" y1="-1423.71471%" y2="673.128094%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="aT" x1="-465.885211%" x2="339.528169%" y1="-152.931663%" y2="157.298039%">
- <stop stop-color="#FFE900" offset="28.07%"/>
- <stop stop-color="#FFCC07" offset="32.21%"/>
- <stop stop-color="#FF8119" offset="41.22%"/>
- <stop stop-color="#FF0B36" offset="54.35%"/>
- <stop stop-color="#FF0039" offset="55.5%"/>
- <stop stop-color="#ED00B5" offset="85.24%"/>
- </linearGradient>
- <linearGradient id="aU" x1="-632.473239%" x2="759.889437%" y1="-217.098158%" y2="319.212821%">
- <stop stop-color="#FFCCD7" offset="40.06%"/>
- <stop stop-color="#EDBEE2" offset="100%"/>
- </linearGradient>
- </defs>
- <g fill="none" fill-rule="evenodd">
- <path d="M150.1 145.9v-.2.2zM152.6 147.1c0 .9.3 1.9.9 2.8-.6-.9-.9-1.9-.9-2.8zM149.7 154.2c0-.2-.1-.5-.3-.6.2.2.3.4.3.6 0 0-.1.7.8 1.8-.9-1-.8-1.8-.8-1.8zM229.2 188.9c.4-1.5.7-3 .8-4.4 0-.5.1-1 .1-1.5 0 .5-.1 1-.1 1.5-.1 1.4-.4 2.9-.8 4.4zM103.1 216.7h.8l-.3-.3c-.1.2-.3.3-.5.3zM235.1 153.6v.2c.4.1.8.3 1.1.6.8.7 1 1.8.7 2.7.1-.2.1-.4.1-.6.1-1.3-.7-2.5-2-2.9v-.2l-.1-.9c-1.5-.1-3-.2-4.6-.4l-.3 3.3 5.1-1.8zM245.1 143.8c6.7-3.5 11.1-12.3 10.9-20.8.3 8.5-4.2 17.3-10.9 20.8-3.5 1.8-8.8 2.6-14.2 2.7 5.4-.1 10.7-.8 14.2-2.7zM228.5 173.5l-.1 1.1c.6.3 1.3.5 1.9.8v.1c.1 0 .1.1.2.1-.1-1.3-.2-2.8-.4-4.3.1 1 .1 2 .2 2.9-.6-.2-1.2-.4-1.8-.7zM147.3 150.3l1-2.8-.1.1-.9 2.7c-.2.3 0 .6.3.7h.1c-.4-.1-.5-.4-.4-.7zM210.1 73.1c.5.1 1 .2 1.6.4-.5-.1-1-.3-1.6-.4zM155.1 180c0 .1.5 2.8 1.3 6.9h.1c-.8-4.1-1.3-6.9-1.3-7 0-.2.1-.4.2-.5-.2.1-.4.3-.3.6zM160 204.4h.2c-1.2-5.1-2.3-10.7-3.2-15.3h-.1c.8 4.6 1.9 10.2 3.1 15.3z"/>
- <path d="M239.9 150.3c-.8.1-1.6.2-2.4.2-.1-.1-.3-.1-.4-.1-2.1-.1-4.3-.2-6.4-.4v.1c2.1.2 4.2.4 6.3.5.1 0 .3 0 .4.1.8 0 1.6-.1 2.4-.2 6.9-.9 11-3.2 15.3-8.7 1.4-1.7 3-4.6 4.1-7.8-1.2 3.2-2.7 5.9-4.1 7.7-4.3 5.4-8.4 7.7-15.2 8.6zM104 200.6c0-.1 0-.1 0 0 0-.1 0-.1 0 0zM145.8 157.9l-.2-.3v-.1l.1.1M140.7 165.2h-.1l-.6.9v.1M252 110.6c-2.8-4.7-6.4-9.1-8.6-11.7 2.2 2.6 5.8 7 8.6 11.7zM206.9 117.5c-.2-.3-.5-.5-.7-.7-.6-.5-1.4-.7-2.1-.7 1 0 2.1.5 2.8 1.4.5.8 1.5 1 2.3.5.1-.1.2-.1.3-.2-.1.1-.2.1-.3.2-.8.5-1.8.3-2.3-.5zM218.4 218.6c-.2 3.3-.2 5.7-.2 7.4h.1c-.1-1.7 0-4.1.1-7.4-6.4 1.4-13 2.3-19.7 2.4-7.5.1-14.9-.8-22.2-2.6v.1c7.2 1.8 14.6 2.7 22.1 2.6 6.7-.2 13.3-1 19.8-2.5zM209 117.5h-.1.1zM244.8 117.2c-.5.4-1.2.3-1.6-.2-.2-.3-.4-.5-.7-.7-.7.4-1.4.6-2.2.6-1 0-1.9-.3-2.6-.9-.4.3-.8.6-1.1 1-.1.2-.3.4-.6.4.2.2.5.4.7.6 2.9 2 6.8 1.3 8.8-1.6.3-.5.2-1.2-.3-1.5-.3-.2-.6-.2-1-.1.3.3.6.6.8 1 .4.5.2 1.1-.2 1.4zM241.5 113.3c.3-.3.4-.6.4-1.1v-3.5c0-.7-.4-1.3-1.1-1.5.4.3.7.8.7 1.3v3.5c0 .2-.1.5-.2.7-.5-.
1-1.1-.2-1.6-.2-.3 0-.6 0-.9.1.1.2.1.4.3.5.7 0 1.6 0 2.4.2zM200.6 117.5l.3-.3.6-.6c-.2.2-.4.4-.6.7 0 0-.1.1-.3.2zM208.1 114.6c-.1 0-.1-.1-.2-.2-1.5-1.1-3.3-1.4-5-1 1.8-.4 3.7.1 5.2 1.2zM209.5 116.7c0-.2 0-.5-.1-.7l-.3-.3.3.3c.1.2.2.5.1.7zM159.7 206.8c.7 3.1 1.5 6.2 2.6 9.2.3.9 2.2 6 4.6 10.2h.1c-2.5-4.2-4.3-9.3-4.7-10.3-1-3-1.9-6-2.6-9.1-1.2.1-2.5.1-3.8.1-4-.1-7.9-.5-11.8-1.2v.1c3.9.7 7.8 1.1 11.7 1.1 1.3 0 2.6 0 3.9-.1zM198.4 115.7c1.1-1.5 2.7-2.5 4.4-2.8-.1-.2-.1-.4-.1-.6v-3.5c0-.9.7-1.6 1.6-1.6-.9 0-1.6.7-1.6 1.6v3.5c0 .2 0 .4.1.6-1.8.2-3.4 1.3-4.4 2.8-.5.7-.3 1.5.2 2.1-.6-.6-.7-1.5-.2-2.1zM156.8 110.8c.3-.1.4-.4.3-.7l-1.2-2.9V106.9l-.3-1 .3.9v.1l-.3-1 .4 1.1v.2l1.2 2.9c0 .3-.1.6-.4.7h-.3c.2.1.3.1.3 0zM164.8 90.6l-.1 4.1M164.9 97.3l-.3-2.4c.1.8.2 1.7.3 2.5V97.3zM184.8 79.4l.2-.2 2.6-1.1h-.1l-2.4 1c-.2.1-.3.2-.3.3z"/>
- <path d="M214.8 223.5v-.9c-1.3.2-2.6.4-3.8.6-4.1.6-8.2 1-12.4 1-6.3 0-12.6-.5-18.8-1.7 0 1.3 0 2.3-.1 3.3 4.7-.1 9.6-.2 14.7-.2 7.1 0 13.9.1 20.4.3v-2.4zM159.1 216.9c-.7-1.9-1.3-4.2-2-6.8h-1.3c-3.9-.1-7.9-.4-11.7-1.1v1.9h1c1 0 1.9 1 1.9 2.2v1.4c0 1.2-.8 2.1-1.7 2.2h.2l.4.3c.2-.2.4-.3.7-.3h.8c1.9.1 3.1.4 3.6.9 1.6 1.3 2.6 4.2 2.6 7.5 0 .5-.1 1.2-.2 1.9 3.1-.2 6.3-.4 9.8-.6-.6-1-1.1-2.1-1.6-3.2-.9-1.9-1.8-4.1-2.5-6.3zM235.4 114.9c-.2.1-.3.3-.3.4.1-.1.2-.2.3-.4.1 0 .1 0 0 0zM150.3 134.7c0-12.6 1.1-21.9 3.3-27.6l-.2-.5c-.4-1.2.3-2.4 1.5-2.8l.3-.1c2-3.6 4.4-6.9 7.3-9.9l.1-3.3c0-1.2 1-2.2 2.2-2.2l3.5.1c3.3-2.6 6.8-5 10.5-7.1l1.4-5.3c.3-1.2 1.5-1.8 2.6-1.6h-.1c-1.2-.3-2.4.4-2.7 1.6l-1.4 5.3c-3.7 2-7.2 4.4-10.5 7.1l-3.5-.1c-1.2 0-2.2 1-2.2 2.2l-.1 3.3c-2.8 3-5.3 6.3-7.3 9.9l-.3.1c-1.2.4-1.8 1.6-1.5 2.8l.2.5c-2.2 5.7-3.3 15-3.3 27.6-.6 3.6-1.3 7.2-2.2 10.6l-4.8 2.9 5-2.8c.9-3.5 1.6-7.1 2.2-10.7zM149.2 158.3c.7.7 1.6 1.5 2.8 2.1-1.2-.6-2.1-1.3-2.8-2.1zM206.5 72.8c.6 0 1.3.1 1.9.1.6 0 1.1.
1 1.7.2-.7-.1-1.3-.2-1.9-.3-.6-.1-1.2-.1-1.9-.1-5.7.2-11.4 1.3-16.7 3.4l.2.1c5.3-2 10.9-3.2 16.7-3.4zM140.8 153.8c-.5-.9-.6-1.9-.4-2.8-.3.9-.2 1.9.4 2.8l2.6 4.3-2.6-4.3zM227.3 212.8c-1.9 1.7-4.1 3-6.5 4v.1c2.3-1 4.5-2.3 6.5-4.1-.1.1-.1.1 0 0zM162.3 170.7l-.1-1.2c-2.4.6-4.8 1.4-7.2 2.3-.4-2.9-.8-5.5-1.1-7.6.3 2.1.7 4.8 1.1 7.7-.1 0-.2.1-.4.2.4 2.2 1.1 5.1 1.5 7.4-.3-2.2-.7-4.4-1-6.4 2.4-1.1 4.7-1.9 7.2-2.4zM174.5 205.9v2.9"/>
- <path d="M152.3 147.3c-.2-3.1-.3-6.4-.4-9.8.2-1 .4-1.9.5-2.8 0-10.7.9-20.1 2.9-26v-.1c-2 5.9-2.9 15.3-2.9 26.1-.2.9-.3 1.8-.5 2.8v.2c0-.1 0-.2.1-.3 0 3.5.1 6.8.3 9.9 0 .1 0 .1 0 0zM236.4 182.5c-.4 15.2-3.8 25.4-5.2 29-.3 1.4-.7 2.7-1.1 3.8-1.6 4.5-3.5 8.5-5.2 11.1 1.7-2.6 3.7-6.6 5.3-11.2.4-1.1.7-2.4 1.1-3.8 1.4-3.6 4.8-13.7 5.2-29v-2.3s-.1 0-.1-.1v2.5zM149 153.6c.1-.6.3-1.3.6-1.9-.3.6-.6 1.2-.6 1.9h.2c-.1-.1-.2-.1-.2 0zM174.2 215.2v.2h-.1l.1-.2-.1.3c.1 2.1.1 4.1.1 6 0 1.7 0 3.2-.1 4.5h.1c.1-1.3.1-2.9.1-4.6 0-1.9-.1-3.9-.1-6h.1v-.2l-.2-5.8c0-.1 0-.2.1-.3-.1.1-.2.3-.2.4l.2 5.7zM236.5 172.8v-2.2c-.1-.7-.1-1.6-.2-2.4.1 1.5.2 3 .2 4.6z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M7.7 72.3v98.1c0 1 .1 1.2.1 1.2s.2.1 1.2.1h121.1l-.6-1.9c-.9-3.1.3-6.3 2.9-7.9V72.3H7.7zm45.8 65.5c0 1.8-1.5 3.3-3.3 3.3-1.8 0-3.3-1.5-3.3-3.3V98.4c0-1.8 1.5-3.3 3.3-3.3 1.8 0 3.3 1.5 3.3 3.3v39.4zm9.8 0c0 1.8-1.5 3.3-3.3 3.3-1.8 0-3.3-1.5-3.3-3.3V105c0-1.8 1.5-3.3 3.3-3.3 1.8 0 3.3 1.5 3.3 3.3v32.8zm9.9 0c0 1.8-1.5 3.3-3.3 3.3-1.8 0-3.3-1.5-3.3-3.3v-36.1c0-1.8 1.5-3.3 3.3-3.3 1.8 0 3.3 1.5 3.3 3.3v36.1zm20.8 3.1c-.4.1-.8.2-1.1.2-1.3 0-2.6-.8-3.1-2.2l-13.1-36.1c-.6-1.7.3-3.6 2-4.2 1.7-.6 3.6.3 4.2 2L96 136.7c.6 1.7-.3 3.5-2 4.2zM133.5 171.4c-.1 0-.1 0 0 0l.5 1.7-.5-1.7z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M127.3 173.2l1.8.1c.1-.2.3-.4.5-.5H9c-2 0-2.5-.4-2.5-2.5V71.2h127v90.2c.2-.1.4-.2.7-.2l3.6-1.1v-4.8c-1.3-2.3-1.2-5 0-7.1V55.4c0-2.3-1.9-4.2-4.2-4.2H6.5c-2.3 0-4.2 1.9-4.2 4.2v118.3c0 2 1.8 3.7 3.9 3.7h90c.3-.6.6-1.2 1.1-1.5.9-.7 2.6-.8 3.8-.8.5 0 .9.2 1.2.5l.5-.4h19.1c1.3-1.2 3-2 4.9-2h.5zm9.1-13.5l-.1-.2.1.2zm-.1-.3v.4l-.3-.9.3.5zm-9.6-101.2c1.6 0 2.9 1.3 2.9 2.9 0 1.6-1.3 2.9-2.9 2.9-1.6 0-2.9-1.3-2.9-2.9 0-1.6 1.3-2.9 2.9-2.9zm-9.2 0c1.6 0 2.9 1.3 2.9 2.9 0 1.6-1.3 2.9-2.9 2.9-1.6 0-2.9-1.3-2.9-2.9 0-1.6 1.3-2.9 2.9-2.9zM35 61c0-1.7 1.4-3.1 3.1-3.1H102c1.7 0 3.1 1.4 3.1 3.1v.3c0 1.7-1.4 3.1-3.1 3.1H38.1c-1.7 0-3.1-1.4-3.1-3.1V61zm-12.4-2.8c1.6 0 2.9 1.3 2.9 2.9 0 1.6-1.3 2.9-2.9 2.9-1.6 0-2.9-1.3-2.9-2.9 0-1.6 1.3-2.9 2.9-2.9zm-9.3 0c1.6 0 2.9 1.3 2.9 2.9 0 1.6-1.3 2.9-2.9 2.9-1.6 0-2.9-1.3-2.9-2.9 0-1.6 1.4-2.9 2.9-2.9zM136.4 173.1l-.1-.3-.2-.6-1.1-3.7c-.2-.8.2-1.6 1-1.8-.8.2-1.2 1.1-1 1.8l1.1 3.7.3.9.1.5c-.5.6-.9 1.1-1.4 1.7.5-.6 1-1
.1 1.4-1.7l-.1-.5z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M138.7 159.7c.3-.5.6-1.1.8-1.7l-1.7-2.8v4.7l.9-.2zM6.2 177.5c-2.2 0-3.9-1.6-3.9-3.7V55.4c0-2.3 1.9-4.2 4.2-4.2h127.1c2.3 0 4.2 1.9 4.2 4.2V148c.5-.9 1.3-1.7 2.2-2.3V55.4c0-3.6-2.9-6.5-6.5-6.5H6.5c-3.6 0-6.5 2.9-6.5 6.5v118.3c0 3.3 2.8 5.9 6.2 5.9h89.2c.2-.8.4-1.5.7-2.2H6.2v.1zM139 167.8l1.1-1.6v-.1l-1.1 1.7c-.2.1-.2.4 0 .5-.1-.1-.1-.3 0-.5z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M6.5 71.2v99.2c0 2 .4 2.5 2.5 2.5h120.5c.2-.2.4-.5.7-.7l-.1-.4H9c-1 0-1.2-.1-1.2-.1s-.1-.2-.1-1.2V72.3h124.7V162c.3-.2.7-.4 1.1-.6V71.2H6.5zM132.8 169.2c-.2-.7-.2-1.4 0-2.1-.3.6-.3 1.4 0 2.1l.7 2.3v-.1l-.7-2.2zM13.3 64c1.6 0 2.9-1.3 2.9-2.9 0-1.6-1.3-2.9-2.9-2.9-1.6 0-2.9 1.3-2.9 2.9 0 1.6 1.4 2.9 2.9 2.9zM22.6 64c1.6 0 2.9-1.3 2.9-2.9 0-1.6-1.3-2.9-2.9-2.9-1.6 0-2.9 1.3-2.9 2.9 0 1.6 1.3 2.9 2.9 2.9zM38.1 64.3H102c1.7 0 3.1-1.4 3.1-3.1V61c0-1.7-1.4-3.1-3.1-3.1H38.1c-1.7 0-3.1 1.4-3.1 3.1v.3c0 1.7 1.4 3 3.1 3zM117.5 64c1.6 0 2.9-1.3 2.9-2.9 0-1.6-1.3-2.9-2.9-2.9-1.6 0-2.9 1.3-2.9 2.9 0 1.6 1.3 2.9 2.9 2.9zM126.7 64c1.6 0 2.9-1.3 2.9-2.9 0-1.6-1.3-2.9-2.9-2.9-1.6 0-2.9 1.3-2.9 2.9 0 1.6 1.3 2.9 2.9 2.9z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M60 101.6c-1.8 0-3.3 1.5-3.3 3.3v32.8c0 1.8 1.5 3.3 3.3 3.3 1.8 0 3.3-1.5 3.3-3.3v-32.8c0-1.8-1.4-3.3-3.3-3.3zM69.9 98.4c-1.8 0-3.3 1.5-3.3 3.3v36.1c0 1.8 1.5 3.3 3.3 3.3 1.8 0 3.3-1.5 3.3-3.3v-36.1c0-1.9-1.5-3.3-3.3-3.3zM50.2 95.1c-1.8 0-3.3 1.5-3.3 3.3v39.4c0 1.8 1.5 3.3 3.3 3.3 1.8 0 3.3-1.5 3.3-3.3V98.4c0-1.8-1.5-3.3-3.3-3.3zM82.8 100.5c-.6-1.7-2.5-2.6-4.2-2-1.7.6-2.6 2.5-2 4.2l13.1 36.1c.5 1.3 1.7 2.2 3.1 2.2.4 0 .8-.1 1.1-.2 1.7-.6 2.6-2.5 2-4.2l-13.1-36.1zM122.5 21.4h1.1c.3 0 .6-.2.6-.6 0-.4-.2-.6-.6-.6h-1.1c-.3 0-.6.2-.6.6 0 .4.3.6.6.6zM133.7 21.4h4.5c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-4.5c-.3 0-.6.2-.6.6 0 .3.2.6.6.6zM116.9 21.1c.1.2.3.3.5.3h.6c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-.3c-.2-.4-.6-1.2-1.2-2.1-.2-.3-.5-.3-.8-.2-.3.2-.3.5-.2.8.9 1.3 1.3 2.1 1.4 2.4zM66.7 4.5c.1 0 .2 0 .3-.1 1.6-1.2 3.7-2.1 6.4-2.4 2.1-.3 4-.2 5.9.2.3.1.6-.1.7-.4.1-.3-.1-.6-.4-.7-2-.4-4.1-.5-6.3-.2-2.9.4-5.2 1.3-6.9 2.7-.2.2-.3.5-.1.8.1 0 .3.1.4.1zM41.3
20.7h13.4c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6H41.3c-.3 0-.6.2-.6.6 0 .3.3.6.6.6zM98.6 7.9c1.3-.4 2.7-.5 4.3-.2 2.3.4 4.8 1.8 7.2 4.1.1.1.2.2.4.2.1 0 .3-.1.4-.2.2-.2.2-.6 0-.8-2.6-2.5-5.2-3.9-7.7-4.4-1.8-.3-3.4-.3-4.9.2-.3.1-.4.4-.4.7.1.3.5.5.7.4zM92.1 13.1c.1.2.3.3.5.3.1 0 .2 0 .2-.1.3-.1.4-.5.3-.7-.1-.3-.3-.6-.5-1-.1-.3-.5-.4-.8-.2-.3.1-.4.5-.2.8.2.3.3.6.5.9zM89.1 8.5c.1.1.3.2.4.2.1 0 .2 0 .3-.1.2-.2.3-.5.1-.8-.7-.9-1.5-1.8-2.3-2.5-.2-.2-.6-.2-.8 0-.2.2-.2.6 0 .8.9.7 1.6 1.5 2.3 2.4zM63.4 14.6s.1 0 0 0c.4 0 .6-.3.6-.6 0-.4-.1-.7-.1-1.1 0-.3-.3-.5-.6-.5h-.1c-.2.1-.4.3-.4.6 0 .4.1.8.1 1.1 0 .1 0 .1.1.2 0 .2.2.3.4.3zM65.5 20.4c.1-.2.1-.4 0-.5 0 0-.3-.7-.6-1.7-.1-.3-.4-.5-.7-.4-.3.1-.5.4-.4.7.1.4.3.8.4 1h-.7c-.2.1-.4.3-.4.5 0 .3.2.6.6.6H65.1c.1.1.3 0 .4-.2z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M40.9 25.6h97.9c.6 0 1.1-.5 1.1-1.1 0-.6-.5-1.1-1.1-1.1H116c-2-3.7-7.1-11.7-13.4-12.9-8.4-1.6-10 6.7-10 6.7S87 2.7 73 4.6c-6.5.9-9 4.2-9.8 7.8h.1c.3 0 .6.2.6.5 0 .4.1.7.1 1.1 0 .3-.2.6-.5.6h-.1c-.2 0-.4-.1-.5-.3-.1 1.9.1 3.8.5 5.3h.7c-.1-.3-.2-.6-.4-1-.1-.3.1-.6.4-.7.3-.1.6.1.7.4.3 1 .6 1.7.6 1.7.1.2.1.4 0 .5-.1.2-.3.3-.5.3h-1.3c.4 1.5.9 2.5.9 2.7H40.7c-.6 0-1.1.5-1.1 1.1.1.5.6 1 1.3 1z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M229.2 52.9c.3-1 1.2-3.2 3.8-3.2.3 0 .7 0 1 .1 1.6.3 3.2 1.3 4.8 3 .2.2.6.2.8 0 .2-.2.2-.6 0-.8-1.8-1.9-3.6-3-5.4-3.4-.4-.1-.8-.1-1.2-.1-3.5 0-4.6 3-4.9 4-.1.3.1.6.4.7h.2c.1 0 .2 0 .3-.1.1 0 .2-.1.2-.2zM213.5 48.4c.1 0 .3-.1.4-.2.6-.7 1.5-1.1 2.6-1.4.3-.1.5-.4.4-.7-.1-.3-.4-.5-.7-.4-1.3.4-2.4.9-3.1 1.7-.2.2-.2.6 0 .8.1.2.3.2.4.2zM246.3 56.9h3.3c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-3.3c-.3 0-.6.2-.6.6 0 .3.3.6.6.6zM220.7 46.6c.4.1.7.2 1 .3h.2c.2 0 .5-.1.5-.4.1-.3-.1-.6-.4-.7-.4-.1-.8-.2-1.1-.3-.3-.1-.6.1-.7.4 0 .4.2.7.5.7zM213.5 56.8c.1-.2.1-.4 0-.5l-.1-.1c-.1-.3-.4-.4-.7-.3-.1 0-.1.1-.2.1h-12.7c-.3 0-.6.2-.6.6 0 .3.2.6.6.6H213c.2-.2.4-.3.5-.4z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M199.6 60.7h54.5c.6 0 1.1-.5 1.1-1.1 0-.6-.5-1.1-1.1-1.1h-12.9c-1.1-2.1-3.9-6.5-7.4-7.2-2.4-.5-3.8.5-4.6 1.6 0 .1-.1.2-.2.3-.6 1-.8 1.9-.8 1.9s-3.1-8-10.9-7c-5.8.8-6 5-5.4 7.8h.7s.1-.1.2-.1c.3-.1.6 0 .7.3l.1.1c.1.2.1.4 0 .5-.1.2-.3.3-.5.3h-.9c.2.9.5 1.4.5 1.5h-13.2.2c-.6 0-1.1.5-1.1 1.1-.1.6.4 1.1 1 1.1z"/>
- <path fill="#EDEDF0" fill-rule="nonzero" d="M173.7 229.1c-.1.2-.1.4-.2.5 0 0-.1 0-.1.1.1 0 .2-.1.3-.1.3-.3.5-1.6.6-3.6h-.1c-.2 1.5-.3 2.6-.5 3.1zM173.1 232c.5 0 1-.1 1.5-.4-.4.2-.9.4-1.5.4-2.1 0-4.3-2.7-6.1-5.8h-.1c1.8 3.2 4 5.8 6.2 5.8z"/>
- <path fill="#EDEDF0" fill-rule="nonzero" d="M231.1 226.7c-2.6 4.8-5.9 8.5-9.7 8.5-1.4 0-2.9-.5-4-1.4-1.7-1.4-2.5-2.9-2.6-7.8-6.4-.2-13.3-.3-20.4-.3-5 0-9.9.1-14.7.2-.2 5.1-1 6.6-2.7 7.9-1.1.9-2.5 1.4-4 1.4-4 0-6.8-3.6-8.7-6.8-.4-.6-.8-1.3-1.1-2-3.4.2-6.7.4-9.8.6-.3 2-1.1 4.5-2.2 5.4-1.1.9-3.1 1.1-4.5 1.1-.6 0-1-.3-1.4-.6l-.6.6H97.4c-1 0-1.9-.7-2.2-1.7l-.3-1.1v-.2c-5.9.7-9.4 1.5-9.4 2.4 0 2.1 17.6 3.7 39.4 3.7 3.5 0 6.8 0 10-.1 12.2 2.1 34.3 3.4 59.5 3.4 38.5 0 69.7-3.2 69.7-7.1 0-2.6-13.2-4.8-33-6.1z"/>
- <path fill="#EDEDF0" fill-rule="nonzero" d="M219.5 231.3c.5.4 1.2.7 1.9.7.6 0 1.3-.2 1.9-.6-.6.4-1.2.6-1.8.6-.7 0-1.4-.3-2-.7-.6-.6-1.2-1.1-1.3-5.3h-.1c.2 4.3.8 4.8 1.4 5.3zM223.3 228.4c.5-.5 1-1.2 1.5-2-.5.8-1 1.4-1.5 2z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M102.1 188.2l-.3-.2c-.1.2-.3.3-.6.3h-.7c-1.6-.1-2.6-.3-3.1-.7l-.6-.6H83c-.6 0-1.1.5-1.1 1.1 0 .6.5 1.1 1.1 1.1h19.4c.1-.4.2-.7.5-.9h-.8v-.1zM156.8 189.1h.1c-.2-.8-.3-1.5-.4-2.2h-.1c.1.7.3 1.4.4 2.2zM27.3 194.1c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6H24c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h3.3zM19.5 193h-1.1c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h1.1c.3 0 .6-.2.6-.6 0-.3-.3-.6-.6-.6zM68.5 194.1c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-3.3c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h3.3zM49.6 194.1c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6H36.2c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h13.4zM102 194.1c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-1.1c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h1.1zM60.7 194.1c.3 0 .6-.2.6-.6 0-.3-.2-.6-.6-.6h-1.1c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h1.1zM91.4 193.6c0-.3-.2-.6-.6-.6H77.4c-.3 0-.6.2-.6.6 0 .3.2.6.6.6h13.4c.3-.1.6-.3.6-.6z"/>
- <path fill="#EDEDF0" fill-rule="nonzero" d="M65.7 230.4c-.3.9-.6 1.7-1.1 2.1-.8.8-2.3.9-3.4.9-.4 0-.8-.3-1-.6l-.5.5H24.5h-.1c2.2 1.6 12.1 2.7 24 2.7 13.5 0 24.4-1.5 24.4-3.4 0-.7-2.7-1.6-7.1-2.2z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M28.3 224.9h32.9c.1 0 .1 0 .2.1-.1-.4-.1-.7-.3-1H27.2v4.6h33.7c.2-.3.3-.7.4-1.1h-33c-.2 0-.4-.2-.4-.4s.2-.4.4-.4h32.9c.1 0 .2 0 .2.1v-1.1c-.1.1-.2.1-.3.1H28.3c-.2 0-.4-.2-.4-.4s.2-.5.4-.5z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M59.2 231.8l.8-.9.3.1c.3.1.5.3.6.5.1.1.2.3.3.3 1.2 0 2.1-.2 2.5-.6.6-.5 1.3-3.3 1.3-5.1 0-2.6-.7-4.6-1.4-5.2-.1-.1-.8-.3-1.9-.4-.1.4-.2.7-.7.8h-.3l-.9-.9H24.3c-.1 0-.3.1-.3.3v1.2c0 .2.1.3.3.3H62l.2.4c1.3 2.4.8 5.9-.4 7.3l-.2.2H24.3c-.1 0-.2 0-.2.1s-.1.2 0 .3l.2 1c0 .1.1.2.2.2h34.7v.1z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M59.7 233.4l.5-.5c.2.3.6.6 1 .6 1.1 0 2.6-.2 3.4-.9.4-.4.8-1.2 1.1-2.1.5-1.5.7-3.3.7-4.3 0-2.8-.8-5.4-1.9-6.5-.4-.4-1.3-.7-2.7-.8h-.6c-.3 0-.4.1-.5.3l-.3-.3h-36c-.9 0-1.7.9-1.7 2v1.2c0 1.1.7 2 1.7 2h.9v4.6h-.9c-.5 0-1 .3-1.3.8-.3.5-.4 1.1-.3 1.7l.2 1c.2.8.8 1.4 1.5 1.5h35.2v-.3zm-35.5-1.8l-.2-1v-.3c0-.1.1-.1.2-.1h37.2l.2-.2c1.3-1.4 1.7-4.9.4-7.3l-.2-.4H24.3c-.1 0-.3-.1-.3-.3v-1.2c0-.2.1-.3.3-.3h35.5l.9.9h.3c.4-.1.6-.5.7-.8 1.2.1 1.8.3 1.9.4.7.7 1.4 2.7 1.4 5.2 0 1.8-.7 4.6-1.3 5.1-.4.3-1.3.6-2.5.6-.1-.1-.2-.3-.3-.3-.2-.2-.3-.5-.6-.5l-.3-.1-.8.9H24.5l-.3-.3zm4.1-5.9h32.9c.1 0 .2-.1.3-.1v1.1c-.1-.1-.1-.1-.2-.1h-33c-.2 0-.4.2-.4.4s.2.4.4.4h33c-.1.4-.2.8-.4 1.1H27.2v-4.6h33.9c.1.3.2.7.3 1-.1 0-.1-.1-.2-.1H28.3c-.2 0-.4.2-.4.4s.2.5.4.5z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M174.2 215.4v-.2M236.7 157.9c.2-.2.3-.4.3-.6.1-.2.1-.5.1-.7 0 .2-.1.4-.1.6-.1.2-.2.4-.3.7zM161.3 204.2v.1h.1v-.1h-.1zM173.7 229.1c-.1.1-.1.2-.2.3-.4.3-1 .1-1.7-.5-.1 0-.1-.1-.2-.2-.3-.2-.5-.5-.8-.9.9 1.1 1.7 1.8 2.3 1.8h.2s.1 0 .1-.1c.1 0 .2-.1.3-.4z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M233.4 212.2c-.3 1.4-.7 2.7-1.1 3.8-.5 1.4-4.6 12.7-9 15.4-.6.4-1.3.6-1.9.6-.7 0-1.3-.2-1.9-.7-.7-.5-1.3-1-1.3-5.3 0-1.7 0-4.1.2-7.4-6.5 1.5-13.1 2.3-19.7 2.4-7.4.1-14.9-.7-22.1-2.6.2 11.4-.6 12-1.5 12.8-.1.1-.3.2-.5.3-.5.3-1 .4-1.5.4-2.2 0-4.4-2.6-6.2-5.8-2.5-4.2-4.3-9.3-4.6-10.2-1-3-1.9-6.1-2.6-9.2-1.3.1-2.6.1-3.9.1-3.9-.1-7.9-.5-11.7-1.1v3.2c3.9.7 7.8 1 11.7 1.1h1.3c.7 2.7 1.3 5 2 6.8.8 2.2 1.6 4.3 2.6 6.3.5 1.1 1 2.1 1.6 3.2.4.7.7 1.3 1.1 2 2 3.2 4.7 6.8 8.7 6.8 1.4 0 2.9-.5 4-1.4 1.6-1.3 2.4-2.9 2.7-7.9 0-1 .1-2.1.1-3.3 6.2 1.2 12.5 1.8 18.8 1.7 4.1 0 8.3-.4 12.4-1 1.2-.2 2.5-.4 3.8-.6v3.4c.1 4.9.9 6.4 2.6 7.8 1.1.9 2.5 1.4 4 1.4 3.8 0 7.1-3.7 9.7-8.5.2-.4.5-.8.7-1.3 1.4-2.8 2.6-5.6 3.6-8.5.4-1.1.8-2.4 1.2-3.9 1.5-4 4.8-14.1 5.4-29-1-1.2-2.1-2.3-3.3-3.3v1.8c-.5 15.4-3.9 25.8-5.4 29.7z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M137.8 148.1c-1.2 2.1-1.3 4.8 0 7.1v.1l1.7 2.8c-.3.6-.6 1.1-.8 1.7l-.8.3-3.6 1.1c-.2.1-.5.2-.7.2-.4.2-.8.4-1.1.6-2.5 1.7-3.8 4.9-2.9 7.9l.6 1.9.1.4c-.2.3-.4.5-.7.7-.2.2-.3.4-.5.5l-1.8-.1h-.6c-1.9 0-3.6.8-4.9 2h10.3l1.8-2.1-.5-1.7-.7-2.2c-.2-.7-.2-1.5 0-2.2.3-1.1 1.2-2.1 2.4-2.5l5.8-1.8c.8-1.4 1.6-3 2.3-4.7l-2.6-4.3c-.5-.9-.7-1.9-.4-2.8.2-.9.8-1.8 1.7-2.3l1.1-.7 4.8-2.9c.9-3.3 1.7-6.9 2.2-10.6 0-12.6 1.1-21.9 3.3-27.6l-.2-.5c-.4-1.2.3-2.4 1.5-2.8l.3-.1c2-3.6 4.4-6.9 7.3-9.9l.1-3.3c0-1.2 1-2.2 2.2-2.2l3.5.1c3.3-2.6 6.8-5 10.5-7.1l1.4-5.3c.3-1.2 1.6-1.9 2.7-1.6h.2l6.5 1.8c5.3-2.1 11-3.2 16.7-3.4.6 0 1.3 0 1.9.1.6 0 1.3.1 1.9.3h.1c.5.1 1 .2 1.6.4 3.9 1.1 8.5 3.5 13.9 7.2 6.2 4.5 12.1 9.4 17.5 14.7.7 0 1.3.3 1.8.8 3.5 3.3 6.7 7 9.7 10.8 3 3.2 6.8 8.1 8.1 13.3 2 7.8-2.2 17.9-5.9 22.5-4.7 5.9-9.2 8.5-16.7 9.5-.7.1-1.5.2-2.4.2 1.9 1.8 2.1 4.8.5 6.9 1 1.5 1.1 3.3.2 4.8-.1.1-.1.3-.2.5.2 4.9.4 10.9.4 14.4 1.1.9 2.2 1.9 3.2 3 .2-6.2 0-12.5-.4-18.7
l-.3.1c-.3 0-.5-.2-.5-.5s.2-.6.5-.6c.2 0 .4-.1.5-.2 0-.6-.1-1.2-.1-1.8 1-1.6 1.5-3.6 1.3-5.5l1-.2c.2-.3.5-.3.8-.2.9-.2 1.7-.4 2.5-.7 0-.3.2-.6.5-.6.2 0 .4.1.5.2 4.5-1.7 8.1-4.5 11.6-9 3.8-4.7 8.8-15.6 6.6-25 0-.1 0-.3-.1-.4-.1-.1-.1-.5-.2-.7-.6-1.8-1.3-3.5-2.2-5.2-.4-.7-.8-1.5-1.3-2.2-1.2-1.8-2.5-3.6-3.9-5.2-.3-.4-.6-.7-1-1.1l-.1-.2c-3-4-6.3-7.7-9.9-11.1-.7-.7-1.6-1.2-2.5-1.4-8-7.7-24.5-22.1-36.2-22.9-.7 0-1.4-.1-2.1-.1-5.8.1-11.5 1.2-16.9 3.2l-5.7-1.6c-3-.8-6 .9-6.8 3.9l-1.1 3.9c-3 1.8-6 3.7-8.7 5.9H165c-3 0-5.5 2.4-5.6 5.4v2c-2.4 2.6-4.5 5.5-6.3 8.5-2.1 1.2-3.3 3.6-2.8 5.9-2.1 6.1-3.2 15.3-3.2 27.5-.5 3-1.1 5.9-1.8 8.7l-4.8 2.9c-.1 0-.1.1-.2.1-1.2 1.2-2 2-2.5 3z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M136.3 159.7v-.3l-.2-.5.2.9M155.9 106.8l-.3-.9.3 1"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M230.3 174.3c0-1-.1-2-.2-2.9-.1-.7-.2-1.4-.2-2.1-.3-.1-.6-.1-1-.2l-.4 4.5c.6.2 1.2.4 1.8.7zM242.5 116.3c-.7-.6-1.6-.9-2.6-1-.8 0-1.6.2-2.3.7.7.6 1.7.9 2.6.9.9 0 1.7-.2 2.3-.6z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M174.5 205.9c9.6 4.4 20.4 5.7 30.8 3.8 14.7-2.9 21.6-12.6 23.9-20.8.4-1.5.7-3 .8-4.4 0-.5.1-1 .1-1.5.2-2.5.2-5 .2-7.5v-.1c-.6-.3-1.3-.6-1.9-.8l-1.1 11.7c-.1.9-.8 1.5-1.7 1.5l-22.1 3.1c-.9.9-2.9 2.3-6.5 2.5h-.8c-3.3 0-5.3-1.4-6.2-2.3l-24.9-3.6c-.9 0-1.6-.7-1.6-1.5l-1.2-15.4c-2.4.6-4.8 1.4-7.1 2.3.3 2 .6 4.2 1 6.4.1.1.2.2.2.4l.2.9c.6 3.2 2.6 14.1 4.8 23.4v.1h.1v.1h.1c.8 3.7 1.7 7.3 2.9 10.9 2 5.6 4.5 10.3 6.4 12.7.3.3.6.6.8.9.1 0 .1.1.2.2.7.6 1.3.8 1.7.5.1 0 .1-.1.2-.3.2-.5.3-1.6.4-3.2.1-1.3.1-2.8.1-4.5 0-1.9 0-3.9-.1-6v-.2h.1l-.2-5.8c0-.2.1-.3.2-.4.1-.1.2-.2.3-.2l-.1-2.9z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M152 137.6c.1 3.3.2 6.6.4 9.8l.3-.3v.1c-.1.9.3 1.9.8 2.9.8 1.4 2.1 2.7 3.2 3.7 1.8-1 3.3-1.2 4-1.2l-.3-4.3c0-.5.1-1 .5-1.3.3-.3.8-.5 1.3-.5h.3l1.4-6.1c.1-.4.4-.8.8-.8.4-.1 10.5-2.3 19.1 1.5 7.1 3.1 11.3 7.9 13.1 10.5 1.5-2.6 5.2-7.4 12.7-11 6.3-3.1 15.5-3.4 16.7-2.9.3.1.6.4.7.7.2.6 1.3 4.5 1.9 7.1h.2c.5 0 1 .1 1.3.5.2.2.4.5.4.8 5.4-.1 10.7-.9 14.2-2.7 6.7-3.5 11.1-12.3 10.9-20.7 0-1.2-.2-2.4-.4-3.6-.6-2.9-2-5.9-3.7-8.9-2.8-4.7-6.4-9.1-8.6-11.7-.3-.3-.5-.6-.8-.9 0 0-.1 0-.1.1C231 87.2 216.6 76.1 208 75.5c-.6 0-1.1-.1-1.7-.1-5.7.2-11.3 1.4-16.6 3.5l-.5-.1-3.8 1.7h-.1c-.3.1-.6 0-.7-.3-.1-.2 0-.4.1-.6 0-.1.1-.2.2-.3l2.4-1-5.1-1.4-1.7 6.2c-4.1 2.2-8 4.8-11.6 7.8l-4.3-.1-.1 4.1v.1l-.1.1.3 2.4v.3c0 .2-.2.4-.4.5h-.2c-.2 0-.4-.2-.5-.4l-.3-1.8c-2.7 2.9-5 6.1-6.8 9.6l-1.1.3.3 1V107.3l1.2 2.9c.1.3 0 .6-.3.7h-.3c-.2 0-.4-.1-.5-.4l-.7-1.7c-2 5.9-2.9 15.3-2.9 26 .1.9 0 1.8-.2 2.8zm82.7-21.8c.1-.2.2-.3.4-.4.1-.2.2-.3.3-.4.3-.2.5-.5.8-.7.8-.6 1.8-.9 2.
7-1.1-.1-.2-.2-.3-.3-.5h-.3c-.1-.2-.1-.4-.1-.6v-3.5c0-.9.7-1.6 1.6-1.6.3 0 .6.1.9.3.6.2 1.1.8 1.1 1.5v3.5c0 .4-.2.8-.4 1.1 1 .3 2 .8 2.8 1.5.3-.1.7-.1 1 .1.5.3.7 1 .3 1.5-2 2.9-5.9 3.6-8.8 1.6-.3-.2-.5-.4-.7-.6-.3.1-.7.1-1-.1-.5-.4-.6-1.1-.3-1.6zm-36.4-.2c1.1-1.5 2.7-2.5 4.5-2.8-.1-.2-.1-.4-.1-.6v-3.5c0-.9.7-1.6 1.6-1.6.9 0 1.6.7 1.6 1.6v3.5c0 .2-.1.5-.2.7 1.6.4 3 1.4 4 2.7.4.7.3 1.6-.2 2.1-.1.1-.2.2-.3.2-.8.5-1.8.3-2.3-.5-.7-.9-1.7-1.4-2.8-1.5H203.5c-.2 0-.4.1-.5.1h-.1c-.6.2-1.2.6-1.6 1.2-.5.8-1.5 1-2.3.5-.1-.1-.2-.1-.3-.2-.7-.3-.8-1.2-.4-1.9zM236.2 154.4c-.3-.3-.7-.5-1.1-.6v-.2l-5 1.9v.1h.4c.1 0 3-.3 6.2 2.3.1-.2.2-.5.3-.7.3-1 0-2-.8-2.8z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M161.7 166.1c-3.6.4-6.2-.6-7.8-1.9.3 2.1.7 4.7 1.1 7.6 2.3-.9 4.7-1.7 7.2-2.3l-.1-.8c-.2-.9-.4-1.7-.4-2.6z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M136.4 159.7l-.1-.3"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M156.4 186.9H145c-.1.3-.2.5-.4.7h.8l.3.2c.1-.2.3-.3.6-.3h.7c1.6.1 2.6.3 3.1.7.3.2.5.5.8.8h6c-.2-.7-.4-1.4-.5-2.1zM150.2 182.9c0-.3-.2-.6-.6-.6h-7.5v1.1h7.5c.3 0 .6-.2.6-.5z"/>
- <path fill="url(#a)" fill-rule="nonzero" d="M252 110.6c1.7 3 3.1 6 3.7 8.9.2 1.2.4 2.4.4 3.6.2 8.5-4.2 17.3-10.9 20.8-3.5 1.9-8.8 2.6-14.2 2.7v.5l-.3 2.9c2.1.2 4.2.4 6.4.4.1 0 .3 0 .4.1.8 0 1.6-.1 2.4-.2 6.9-.9 11-3.2 15.3-8.7 1.4-1.7 2.9-4.5 4.1-7.7 1.5-4.1 2.4-8.8 1.3-12.8-1.2-4.7-4.7-9.3-7.7-12.5-2.9-3.8-6-7.3-9.5-10.6-.1-.1-.3-.2-.5-.2-.1 0-.3.1-.4.1.2.3.5.6.8.9 2.3 2.7 5.9 7.1 8.7 11.8z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M242.6 98c.2.3.5.6.8.9-.3-.3-.6-.6-.8-.9z"/>
- <path fill="url(#b)" fill-rule="nonzero" d="M242.6 98c.2.3.5.6.8.9-.3-.3-.6-.6-.8-.9z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M252 110.6c1.7 3 3.1 6 3.7 8.9.2 1.2.4 2.4.4 3.6 0-1.2-.2-2.4-.4-3.6-.6-2.9-2-6-3.7-8.9z"/>
- <path fill="url(#c)" fill-rule="nonzero" d="M252 110.6c1.7 3 3.1 6 3.7 8.9.2 1.2.4 2.4.4 3.6 0-1.2-.2-2.4-.4-3.6-.6-2.9-2-6-3.7-8.9z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M229.9 169.3c.1.7.1 1.4.2 2.1 0-.8-.1-1.5-.2-2.1z"/>
- <path fill="url(#d)" fill-rule="nonzero" d="M229.9 169.3c.1.7.1 1.4.2 2.1 0-.8-.1-1.5-.2-2.1z"/>
- <path fill="#EDEDF0" fill-rule="nonzero" d="M220.4 226.2c0 1.8.2 3.1.5 3.3.1.1.3.2.5.2.5 0 1.2-.5 1.9-1.3.5-.5 1-1.2 1.5-2-1.4-.1-2.9-.2-4.4-.2z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M205.3 209.7c-10.4 1.9-21.2.6-30.8-3.8 9.6 4.4 20.3 5.8 30.8 3.8 14.7-2.8 21.6-12.5 23.9-20.8-2.3 8.3-9.2 17.9-23.9 20.8z"/>
- <path fill="url(#e)" fill-rule="nonzero" d="M205.3 209.7c-10.4 1.9-21.2.6-30.8-3.8 9.6 4.4 20.3 5.8 30.8 3.8 14.7-2.8 21.6-12.5 23.9-20.8-2.3 8.3-9.2 17.9-23.9 20.8z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M230.1 183c.2-2.5.3-5 .2-7.4 0 2.4 0 4.9-.2 7.4z"/>
- <path fill="url(#f)" fill-rule="nonzero" d="M230.1 183c.2-2.5.3-5 .2-7.4 0 2.4 0 4.9-.2 7.4z"/>
- <path fill="url(#g)" fill-rule="nonzero" d="M236.4 180.1v-1c-1.9-1.3-3.9-2.4-5.9-3.4 0 .7.1 1.3.1 1.8 2 .8 3.9 1.4 5.8 2.6z"/>
- <path fill="url(#h)" fill-rule="nonzero" d="M236.5 172.8c-.1-1.6-.1-3.1-.2-4.6-1.4 1-3.6 1.6-6.4 1.1.1.7.2 1.4.2 2.1.2 1.5.3 3 .4 4.3-.1 0-.1-.1-.2-.1 0 2.5 0 5-.2 7.4 0 .5-.1 1-.1 1.5-.1 1.4-.4 2.9-.8 4.4-2.3 8.3-9.2 18-23.9 20.8-10.4 1.9-21.2.6-30.8-3.8v2.9h.1c.3 0 .6.2.6.5l.3 6.4c2.9.9 10.8 3 23.3 3 7.3-.2 14.5-1.1 21.5-2.9 2.3-.9 4.4-2.2 6.3-3.8.2-.2.6-.2.8 0 .2.2.2.6 0 .8h-.1v.1c-1.9 1.7-4.1 3-6.4 4-.2 2.9-.3 5.7-.3 7.9v1.4c0 1.8.2 3.1.5 3.3.1.1.3.2.5.2.5 0 1.2-.5 1.9-1.3.5-.5 1-1.2 1.5-2 1.7-2.6 3.6-6.5 5.2-11.1.4-1.1.8-2.4 1.1-3.8 1.4-3.6 4.8-13.8 5.2-29V180s.1 0 .1.1v-1.2c-.2-1.5-.1-4.1-.1-6.1z"/>
- <path fill="url(#i)" fill-rule="nonzero" d="M202.7 108.7v3.5c0 .2 0 .4.1.6.4-.1.8-.1 1.2-.1.5 0 1.1.1 1.6.2.1-.2.2-.5.2-.7v-3.5c0-.9-.7-1.6-1.6-1.6-.8 0-1.5.7-1.5 1.6z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M202.8 112.8c-1.8.3-3.4 1.3-4.5 2.8-.4.7-.3 1.5.2 2.1.1.1.2.2.3.2.8.5 1.8.3 2.3-.5.4-.6 1-1 1.6-1.2h.1c.2-.1.4-.1.5-.1H203.9c.7 0 1.5.2 2.1.7.3.2.5.4.7.7.5.8 1.5 1 2.3.5.1-.1.2-.1.3-.2.6-.5.7-1.4.2-2.1-1-1.4-2.4-2.3-4-2.7-.5-.1-1.1-.2-1.6-.2-.3-.1-.7 0-1.1 0zm5.1 1.6c.1 0 .1.1.2.2s.3.2.4.4c.2.1.3.3.5.5.1.1.2.2.2.3l.3.3c.1.2.1.5.1.7v.1c0 .1-.1.2-.1.2 0 .1 0 .1-.1.2 0 .1-.1.1-.1.1l-.1.1h-.1-.1c-.1 0-.2.1-.2.1h-.1c-.4 0-.7-.1-1-.4-.8-1-2-1.7-3.3-1.7H203.8c-.2 0-.4.1-.6.1-.1 0-.3.1-.4.2-.1.1-.3.1-.4.2-.2.1-.4.2-.5.4l-.1.1-.6.6-.3.3c-.4.3-.9.3-1.2 0-.5-.3-.7-1-.3-1.5.2-.3.4-.5.6-.7l.1-.1c.2-.2.5-.5.8-.7h.1c.1-.1.3-.2.5-.3h.1c.2-.1.3-.2.5-.2h.1c.2-.1.3-.1.5-.2s.4-.1.6-.2c1.3-.4 3.1-.1 4.6.9z"/>
- <path fill="url(#j)" fill-rule="nonzero" d="M202.9 113.4c-.2 0-.4.1-.6.2-.2.1-.4.1-.5.2h-.1c-.2.1-.3.2-.5.2h-.1c-.2.1-.3.2-.5.3h-.1c-.3.2-.5.4-.8.7l-.1.1c-.2.2-.4.5-.6.7-.3.5-.2 1.2.3 1.5.4.3.9.2 1.2 0l.3-.3c.2-.2.4-.5.6-.7l.1-.1c.2-.1.4-.3.5-.4.1-.1.2-.1.4-.2.1-.1.3-.1.4-.2.2-.1.4-.1.6-.1H204c1.3 0 2.5.6 3.3 1.7.2.3.6.4 1 .4h.1c.1 0 .2 0 .2-.1.1 0 .1 0 .2-.1h.1l.1-.1.1-.1s.1-.1.1-.2.1-.1.1-.2v-.1c0-.2 0-.5-.1-.7l-.3-.3c-.1-.1-.1-.2-.2-.3-.1-.2-.3-.3-.5-.5-.1-.1-.3-.2-.4-.4-1.2-.8-3.1-1.3-4.9-.9z"/>
- <path fill="url(#k)" fill-rule="nonzero" d="M140 165.4v.7l.6-.9"/>
- <path fill="#FFF" fill-rule="nonzero" d="M137.8 166.1l-1.9.6c-.8.2-1.2 1.1-1 1.8l1.1 3.7.2.6.1.2v.1l.1.4c-.5.6-1 1.1-1.4 1.7h2.4c.2-.4.3-.9.3-1.4v-7.7h.1z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M140 168.2l-.1.2c-.2.3-.5.3-.8.2l-.2-.2c-.1-.2-.1-.4 0-.6l1.1-1.6v-.7l-2.2.7v7.7c0 .5-.1 1-.3 1.4h2.3c.1-.5.2-.9.2-1.4v-5.7z"/>
- <path fill="url(#l)" fill-rule="nonzero" d="M154.4 170.6c-3.5 1.5-6.8 3.4-9.9 5.6.1.1.1.2.2.4l.2.7c3.1-2 6.3-3.8 9.7-5.2-.1-.6-.1-1.1-.2-1.5z"/>
- <path fill="url(#m)" fill-rule="nonzero" d="M156.8 189.1c-.2-.8-.3-1.5-.4-2.2-.8-4.1-1.3-6.9-1.3-6.9 0-.3.1-.5.4-.6.1-.1.2-.1.2-.1.2 0 .3 0 .4.1-.4-2.2-1.1-5.2-1.5-7.4.1-.1.2-.1.4-.2-.4-2.9-.8-5.5-1.1-7.7-1.5-1.3-2.1-2.8-2-3.7v-.1c-1.2-.6-2.1-1.4-2.8-2.1-1.4-1.5-1.7-3-1.7-3.2v-.4c.1-.4.5-.8.9-.8h.3l.2-.2c.1-.6.3-1.3.6-1.9.8-1.9 2.1-3.5 2.7-4.3-.1-3.2-.2-6.5-.3-9.9 0 .1 0 .2-.1.3l-.6 3c-.1.2-.1.5-.2.7-.3 1.1-.5 2.3-.9 3.5-.1.2-.1.4-.2.6v.2l-.1.2-.1.5h-.1l-1.5 4.1c-.1.2-.3.4-.6.3h-.1-.1c-.3-.1-.4-.4-.3-.7l1-2.7-.3.2-4.7 2.9c-.7.4-.9 1.3-.5 2l2.9 4.7.1.1.1.1.2.3v.1c-1 2.3-2.1 4.5-3.3 6.7h-.1l-2.4 3.5-.1.2c-.2.3-.5.3-.8.2l-.2-.2c-.1-.2-.1-.4 0-.6l1.1-1.6v-.7l-2.2.7-1.9.6c-.8.2-1.2 1.1-1 1.8l1.1 3.7.2.6.1.2v.1l.1.4c-.5.6-1 1.1-1.4 1.7H142.6c.7 0 1.3.4 1.7.9.1.1.1.2.2.4l.2.7.1.2c.1.5 0 1.1-.3 1.5-.4.4-.9.7-1.5.7h-1v4h1c1 0 1.9.8 1.9 1.7v1.1c0 .1 0 .3-.1.4-.1.3-.2.5-.4.7h.8l.3.2c.1-.2.3-.3.6-.3h.7c1.6.1 2.6.3 3.1.7.3.2.5.5.8.8.9 1.2 1.4 3 1.4 5 0 1.5-.7 4.7-2 5.7-.9.7-2.6.8-3.8.8h-.2c.
2.3.4.6.5 1.1l.2 1.1c.1.4.1.7 0 1.1 3 .4 6 .7 9 .7 1.4 0 2.8-.1 4.1-.2-1.1-4.9-2.2-10.5-3.1-15.1z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M149.2 153.6s0-.1 0 0c.2 0 .2 0 .3.1.2.1.3.3.3.6 0 0-.1.7.8 1.8.5.6 1.3 1.2 2.5 1.9.2-.9.7-1.7 1.5-2.5s1.5-1.3 2.3-1.7c-1.2-1.1-2.4-2.4-3.2-3.7-.6-.9-.9-1.9-.9-2.8v-.1l-.3.3c-.6.7-1.9 2.4-2.7 4.3-.3.6-.5 1.3-.6 1.9-.2-.2-.1-.2 0-.1z"/>
- <path fill="url(#n)" fill-rule="nonzero" d="M136.3 173.1l-.3-.9-1.1-3.7c-.2-.8.2-1.6 1-1.8l1.9-.6 2.2-.7.6-.2h.1l-.7 1-1.1 1.6c-.1.2-.1.4 0 .5 0 .1.1.2.2.2.3.2.6.1.8-.2l.1-.2 2.4-3.5h.1c1.2-2.2 2.4-4.4 3.3-6.7v-.1l-.2-.3-.1-.2-.1-.1-2.9-4.7c-.4-.7-.2-1.6.5-2l4.7-2.9.3-.2.1-.1-1 2.8c-.1.3.1.6.3.7h.1c.2 0 .5-.1.6-.3l1.5-4.1h.1l.1-.5.1-.2v-.2c.1-.2.1-.4.2-.6.3-1.2.6-2.3.9-3.5.1-.2.1-.5.2-.7l.6-3v-.2c.2-.9.3-1.9.5-2.8 0-10.8.9-20.2 2.9-26.1v.1l.7 1.7c.1.2.3.3.5.4h.2c.3-.1.4-.4.3-.7l-1.2-2.9v-.2l-.4-1.1 1.1-.3c1.8-3.5 4.1-6.7 6.8-9.6 0 .6.1 1.2.3 1.8.1.2.3.4.5.4h.2c.2-.1.4-.3.4-.5v-.2c-.1-.8-.2-1.7-.3-2.5l.1-.1v-.1l.1-4.1 4.3.1c3.6-3 7.5-5.6 11.6-7.8l1.7-6.2 5.1 1.4h.1l-2.6 1.1c-.1 0-.2.1-.2.2-.1.1-.2.4-.1.6.1.3.4.4.7.3h.1l3.8-1.7.5.1c5.3-2.1 10.9-3.3 16.6-3.5.6 0 1.2 0 1.7.1 8.6.6 23 11.7 34.3 22.9 0 0 .1 0 .1-.1.1-.1.3-.1.4-.1.2 0 .4.1.5.2 3.4 3.3 6.6 6.8 9.5 10.6 2.9 3.2 6.5 7.7 7.7 12.5 1 4 .2 8.7-1.3 12.8-1.2 3.2-2.8 6-4.1 7.8-4.3 5.5-8.4 7.8-15.3 8.7-.8.1-1.6.2-2.4.2-.1-.1-.3-.
1-.4-.1-2.1-.1-4.2-.2-6.3-.5l-.2 2.1c1.5.2 3 .3 4.6.4l.1.9v.2c1.3.4 2.1 1.6 2 2.9 0 .2 0 .5-.1.7l-.3.6.6.6c.3.3.6.7.9 1.1 1.6-2.1 1.5-5-.5-6.9.8 0 1.6-.1 2.4-.2 7.5-1 12.1-3.6 16.7-9.5 3.7-4.6 7.9-14.7 5.9-22.5-1.3-5.2-5.1-10.1-8.1-13.3-2.9-3.9-6.1-7.5-9.7-10.8-.5-.5-1.2-.8-1.8-.8-5.4-5.4-11.3-10.3-17.5-14.7-5.4-3.7-10-6.2-13.9-7.2-.5-.2-1.1-.3-1.6-.4h-.1c-.6-.1-1.2-.2-1.7-.2-.6 0-1.2-.1-1.9-.1-5.7.2-11.4 1.3-16.7 3.4l-.2-.1-6.5-1.8h-.1c-1.2-.3-2.3.4-2.6 1.6l-1.4 5.3c-3.7 2-7.2 4.4-10.5 7.1l-3.5-.1c-1.2 0-2.2 1-2.2 2.2l-.1 3.3c-2.8 3-5.3 6.3-7.3 9.9l-.3.1c-1.2.4-1.8 1.6-1.5 2.8l.2.5c-2.2 5.7-3.3 15-3.3 27.6-.6 3.6-1.4 7.2-2.2 10.6l-5 2.8-1.1.7c-.9.5-1.4 1.4-1.7 2.3-.2.9-.1 1.9.4 2.8l2.6 4.3c-.7 1.6-1.5 3.2-2.3 4.7l-5.8 1.8c-1.2.4-2.1 1.3-2.4 2.5-.2.7-.2 1.4 0 2.1l.7 2.2.5 1.7-1.8 2.1h2.9c.5-.6 1-1.1 1.4-1.7l-.2-.8z"/>
- <path fill="url(#o)" fill-rule="nonzero" d="M237.3 167.2c-.2.3-.6.7-1 1 0 .9.1 1.7.2 2.4.1.5 0 1.3 0 2.2 0 2-.2 4.6 0 6.1v3.5c-.4 15.3-3.8 25.4-5.2 29-.4 1.4-.7 2.6-1.1 3.8-1.6 4.6-3.6 8.6-5.3 11.2-.5.8-1.1 1.5-1.5 2-.7.8-1.4 1.3-1.9 1.3-.2 0-.3-.1-.5-.2-.3-.3-.5-1.5-.5-3.3v-1-.3-.1c0-2.2.2-5.1.3-7.9v-.1c2.4-.9 4.6-2.3 6.5-4h.1c.2-.2.2-.6 0-.8-.2-.2-.6-.2-.8 0-1.9 1.6-4 2.9-6.3 3.8-7.1 1.8-14.3 2.7-21.5 2.9-12.5 0-20.4-2.1-23.3-3l-.3-6.4c0-.3-.3-.5-.6-.5h-.1c-.1 0-.2.1-.3.2-.1.1-.1.2-.1.3l.2 5.8v.2h-.1c0 2.1.1 4.1.1 6 0 1.7 0 3.3-.1 4.6-.1 2-.3 3.3-.6 3.6-.1.1-.2.1-.3.1h-.2c-.6 0-1.4-.6-2.3-1.8-2-2.4-4.5-7.1-6.4-12.7-1.2-3.6-2.1-7.2-2.9-10.9h-.2v-.2c-2.2-9.3-4.2-20.2-4.8-23.4l-.2-.9c0-.1-.1-.3-.2-.4-.1-.1-.3-.1-.4-.1-.1 0-.2.1-.2.1-.2.1-.2.3-.2.5 0 .1.5 2.9 1.3 7 .1.7.3 1.5.4 2.2.9 4.6 2 10.2 3.2 15.3h-.2c-1.4.1-2.7.2-4.1.2-3 0-6-.3-9-.7-.1.3-.2.6-.3.8-.4.5-.9.9-1.5.9h-1v.2c3.9.7 7.8 1.1 11.8 1.2 1.3 0 2.6 0 3.9-.1.7 3.1 1.5 6.2 2.6 9.2.3.9 2.2 6.1 4.7 10.3 1.8 3.1 4 5.7 6.2 5.7
.5 0 1-.1 1.4-.4.2-.1.3-.2.5-.3.9-.8 1.7-1.4 1.5-12.8v-.1c7.2 1.8 14.7 2.7 22.2 2.6 6.6-.1 13.3-.9 19.7-2.4-.2 3.3-.3 5.7-.2 7.5.1 4.2.7 4.7 1.3 5.2.5.4 1.2.7 1.9.7.6 0 1.2-.2 1.8-.6 4.4-2.7 8.5-14 9-15.4.4-1.1.8-2.4 1.1-3.8 1.5-3.9 4.9-14.2 5.3-29.7v-1.8-1.3c-.1-3.6-.2-9.6-.4-14.4-.4.6-.7 1.7-1.1 2.2z"/>
- <path fill="url(#p)" fill-rule="nonzero" d="M152 160.4c.2-.2 1.1.2 1-.1-.2-.8-.2-1.6 0-2.4-1.2-.7-2-1.3-2.5-1.9-.9-1-.8-1.8-.8-1.8 0-.2-.1-.4-.2-.6-.1 0-.1-.1-.2-.1H149c-.1 0-.2.1-.2.2h-.3c-.5.1-.8.4-.9.8v.4c0 .2.3 1.7 1.7 3.2.6 1 1.5 1.7 2.7 2.3z"/>
- <path fill="url(#q)" fill-rule="nonzero" d="M161.9 166s-.1 0-.2.1c.1.9.2 1.8.4 2.6l-.2-2.7z"/>
- <path fill="url(#r)" fill-rule="nonzero" d="M241.3 112.7c.1-.2.2-.5.2-.7v-3.5c0-.5-.3-1-.7-1.3-.3-.2-.6-.3-.9-.3-.9 0-1.6.7-1.6 1.6v3.5c0 .2 0 .4.1.6h.3c.3 0 .6-.1.9-.1.6 0 1.2.1 1.7.2z"/>
- <path fill="url(#s)" fill-rule="nonzero" d="M235.1 117.3c.3.2.7.2 1 .1.2-.1.4-.2.6-.4.3-.4.7-.7 1.1-1 .7-.4 1.4-.7 2.3-.7 1 0 1.9.4 2.6 1 .3.2.5.4.7.7.4.5 1.1.6 1.6.2.4-.3.6-.9.3-1.4-.2-.4-.5-.7-.8-1-.8-.8-1.8-1.3-2.8-1.5-.8-.2-1.6-.2-2.4-.1-1 .1-1.9.5-2.7 1.1-.3.2-.6.4-.8.7l-.4.4-.4.4c-.6.5-.5 1.2.1 1.5z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M102.5 224.6c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h44.2c.1 0 .2 0 .2.1-.1-.4-.2-.8-.4-1.2H101v5.2h45.2c.2-.3.4-.8.6-1.3H102.4c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h44.2c.1 0 .2 0 .3.1.1-.4.1-.8 0-1.3-.1.1-.2.2-.3.2h-44.1v.2z"/>
- <path fill="url(#t)" fill-rule="nonzero" d="M96.8 230.3c.9-.1 1.9-.2 2.9-.3v-.3h-2.6c-.1 0-.2 0-.3.1 0 .2-.1.3 0 .5z"/>
- <path fill="url(#u)" fill-rule="nonzero" d="M151.8 225.1c0-2.9-1-5.2-1.9-6-.2-.1-1-.4-2.6-.5-.1.4-.3.9-.9.9l-.4.1-1.2-1H97.1c-.2 0-.3.2-.3.3v1.4c0 .2.2.3.3.3h15.6l34.2-.6.6.6h.1l.2.3 1.1 1.1-.2 1.1c.3 1.4.2 3-.2 4.2l3-.3c.2-.6.3-1.3.3-1.9z"/>
- <path fill="#EDEDF0" fill-rule="nonzero" d="M142.6 230.1h-43v-.1c-1 .1-2 .2-2.9.3l.3 1c0 .2.2.3.3.3H144l1.1-1 .5.1c.4.1.6.3.8.6l.4.4c1.6 0 2.8-.3 3.3-.7.5-.4 1.1-2.1 1.5-3.8l-3 .3c-.2.5-.4 1-.6 1.4l-.2 1-5.2.2z"/>
- <path fill="url(#v)" fill-rule="nonzero" d="M142.6 230.1h-43v-.1c-1 .1-2 .2-2.9.3l.3 1c0 .2.2.3.3.3H144l1.1-1 .5.1c.4.1.6.3.8.6l.4.4c1.6 0 2.8-.3 3.3-.7.5-.4 1.1-2.1 1.5-3.8l-3 .3c-.2.5-.4 1-.6 1.4l-.2 1-5.2.2z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M112.7 220.7h34.9l-.7-.6"/>
- <path fill="url(#w)" fill-rule="nonzero" d="M112.7 220.7h34.9l-.7-.6"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M147.9 221l.1.1c.4.6.7 1.3.8 2l.2-1.1-1.1-1z"/>
- <path fill="url(#x)" fill-rule="nonzero" d="M147.9 221l.1.1c.4.6.7 1.3.8 2l.2-1.1-1.1-1z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M99.7 230.1h43l5.1-.3.2-1c-.2.3-.4.5-.6.7l-.3.3H99.7v.3z"/>
- <path fill="url(#y)" fill-rule="nonzero" d="M99.7 230.1h43l5.1-.3.2-1c-.2.3-.4.5-.6.7l-.3.3H99.7v.3z"/>
- <path fill="url(#z)" fill-rule="nonzero" d="M95.2 231.8c.2 1 1.1 1.7 2.2 1.7h47.3l.6-.6c.3.3.8.6 1.4.6 1.5 0 3.4-.2 4.5-1.1 1.1-.9 1.9-3.4 2.2-5.4.1-.7.2-1.4.2-1.9 0-3.2-1-6.2-2.6-7.5-.6-.4-1.8-.7-3.6-.9h-.8c-.3 0-.6.1-.7.3l-.4-.3H97c-1.2 0-2.2 1-2.2 2.2v1.4c0 1.2 1 2.2 2.2 2.2h1.2v5.2H97c-.7 0-1.3.3-1.8.9-.4.5-.5 1.1-.4 1.7v.2l.4 1.3zm1.6-1.9c.1-.1.2-.1.3-.1h50l.3-.3c.2-.2.4-.4.6-.7.3-.4.5-.9.6-1.4.4-1.3.5-2.8.2-4.2-.2-.7-.4-1.4-.8-2l-.1-.1-.2-.3H97.2c-.2 0-.3-.2-.3-.3v-1.4c0-.2.2-.3.3-.3h47.7l1.2 1 .4-.1c.6-.1.8-.5.9-.9 1.6.1 2.4.4 2.6.5.9.8 1.9 3.1 1.9 6 0 .6-.1 1.4-.2 2.1-.3 1.7-.9 3.4-1.5 3.8-.5.4-1.8.6-3.3.7l-.4-.4c-.2-.3-.4-.5-.8-.6l-.5-.1-1.1 1H97.5c-.2 0-.3-.1-.3-.3l-.3-1v-.1c-.2-.3-.1-.4-.1-.5zm50.2-4.1c.1.1.2.2.2.4s-.1.4-.3.4c-.1.5-.3.9-.6 1.3H101v-5.2h45.5c.2.4.3.8.4 1.2.1.1.2.2.2.4 0 .1-.1.2-.1.3.1.3.1.8 0 1.2z"/>
- <path fill="url(#A)" fill-rule="nonzero" d="M147 223.8c-.1 0-.2-.1-.2-.1h-44.2c-.3 0-.5.2-.5.5s.2.5.5.5h44.2c.1 0 .3-.1.3-.2.1-.1.1-.2.1-.3 0-.2-.1-.3-.2-.4z"/>
- <path fill="url(#B)" fill-rule="nonzero" d="M102.5 225.6c-.3 0-.5.2-.5.5s.2.5.5.5H146.9c.2-.1.3-.2.3-.4 0-.1-.1-.3-.2-.4-.1-.1-.2-.1-.3-.1h-44.2v-.1z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M103 210.8h38.8v-5.2h-38.5c-.8 1.1-1 3.5-.3 5.2z"/>
- <path fill="url(#C)" fill-rule="nonzero" d="M134.5 203.4c-1.4-.5-2.8-.9-4.2-1.5h-.2l4.2 1.5h.2z"/>
- <path fill="url(#D)" fill-rule="nonzero" d="M145.3 203.6c-2.5-.5-5.1-1-7.6-1.8h-.2c2.5.8 5.1 1.4 7.8 1.8z"/>
- <path fill="url(#E)" fill-rule="nonzero" d="M103.2 213.9l.4-.1 1 1h40.6c.2 0 .3-.2.3-.3v-1.4c0-.2-.1-.3-.3-.3h-13.3l-29.1.6-.5-.6h-.1l-.2-.3-.9-1.1.1-1.1c-.4-2-.1-4.2.7-5.6l.1-1 4.4-.3h18.5c-.8-.4-1.7-.9-2.6-1.5h-17.1l-.9 1-.4-.1c-.3-.1-.5-.3-.7-.6-.1-.1-.2-.3-.3-.4-1.3 0-2.4.3-2.8.7-.7.6-1.4 3.8-1.4 5.9 0 2.9.8 5.2 1.6 6 .1.1.9.4 2.2.5 0-.5.2-.9.7-1z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M134.3 203.4c-1.4-.5-2.8-.9-4.2-1.5h-7.8c.9.6 1.8 1.1 2.6 1.5h9.4z"/>
- <path fill="url(#F)" fill-rule="nonzero" d="M134.3 203.4c-1.4-.5-2.8-.9-4.2-1.5h-7.8c.9.6 1.8 1.1 2.6 1.5h9.4z"/>
- <path fill="url(#G)" fill-rule="nonzero" d="M145.3 203.6c.1-.1.1-.2.1-.3l-.2-1.1c0-.2-.1-.3-.3-.3h-7.2c2.5.7 5 1.3 7.6 1.7z"/>
- <path fill="url(#H)" fill-rule="nonzero" d="M145.3 203.6c.1-.1.1-.2.1-.3l-.2-1.1c0-.2-.1-.3-.3-.3h-7.2c2.5.7 5 1.3 7.6 1.7z"/>
- <path fill="url(#I)" fill-rule="nonzero" d="M142.9 203.4v.3h2.2c.1 0 .1 0 .2-.1-2.6-.4-5.2-1-7.8-1.8h-7.2l4.2 1.5h8.4v.1z"/>
- <path fill="url(#J)" fill-rule="nonzero" d="M142.9 203.4v.3h2.2c.1 0 .1 0 .2-.1-2.6-.4-5.2-1-7.8-1.8h-7.2l4.2 1.5h8.4v.1z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M131.8 212.7h-29.6l.5.7"/>
- <path fill="url(#K)" fill-rule="nonzero" d="M131.8 212.7h-29.6l.5.7"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M101.9 212.4l-.1-.1c-.3-.6-.6-1.3-.7-2l-.1 1.1.9 1z"/>
- <path fill="url(#L)" fill-rule="nonzero" d="M101.9 212.4l-.1-.1c-.3-.6-.6-1.3-.7-2l-.1 1.1.9 1z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M134.5 203.4h-28.1l-4.4.3-.1 1c.1-.3.3-.5.5-.7l.2-.3H143v-.3h-8.5z"/>
- <path fill="url(#M)" fill-rule="nonzero" d="M134.5 203.4h-28.1l-4.4.3-.1 1c.1-.3.3-.5.5-.7l.2-.3H143v-.3h-8.5z"/>
- <path fill="url(#N)" fill-rule="nonzero" d="M103 216.8h.2c.2 0 .4-.1.5-.3l.3.3H145.4c1-.1 1.7-1.1 1.7-2.2v-1.4c0-1.2-.9-2.2-1.9-2.2h-1v-5.5h1c.6 0 1.1-.3 1.5-.9.2-.3.3-.5.3-.8.1-.3.1-.7 0-1.1l-.2-1.1c-.1-.4-.3-.8-.5-1.1-.4-.1-.7-.3-1-.5l-.5.4h-40.1c-.2 0-.3 0-.5-.1-.4-.1-.7-.3-.9-.6h-.2c-1.2 0-2.9.2-3.9 1.1-1.3 1.3-2 5.5-2 7.4 0 3.2.9 6.2 2.2 7.5.5.4 1.5.7 3.1.9.1.1.3.2.5.2zm-2.8-2.5c-.8-.8-1.6-3.1-1.6-6 0-2.1.8-5.3 1.4-5.9.4-.4 1.5-.6 2.8-.7.1.1.3.3.3.4.2.3.4.5.7.6l.4.1.9-1H144.8c.1 0 .2.1.3.3l.2 1.1c0 .1 0 .2-.1.3l-.1.1s-.1.1-.2.1h-42.6l-.2.3c-.2.2-.3.4-.5.7-.8 1.4-1.1 3.6-.7 5.6.1.7.4 1.4.7 2l.1.1.2.3h43c.2 0 .3.2.3.3v1.4c0 .2-.1.3-.3.3h-40.6l-1-1-.4.1c-.5.1-.7.5-.8.9-1 0-1.8-.2-1.9-.4zm41.5-8.7v5.2H103c-.7-1.7-.5-4.1.3-5.2h38.4z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M108.9 193.8c-.2 0-.4-.2-.4-.4s.2-.4.4-.4h37.5c.1 0 .1 0 .2.1l-.3-.9h-38.6v4.1H146c.2-.3.4-.6.5-1h-37.6c-.2 0-.4-.2-.4-.4s.2-.4.4-.4h37.5c.1 0 .2 0 .3.1 0-.3.1-.7 0-1-.1.1-.2.1-.3.1h-37.5v.1z"/>
- <path fill="url(#O)" fill-rule="nonzero" d="M104.3 198.9c0 .1.1.2.3.2h13.9c-.4-.4-.9-.8-1.3-1.1h-10.7v-.3h-2.2c-.1 0-.2 0-.2.1-.1.1-.1.1-.1.2l.3.9z"/>
- <path fill="url(#P)" fill-rule="nonzero" d="M104.2 189.1c-.1 0-.2.1-.2.2v1.1c0 .1.1.3.3.3h9.3c0-.6.1-1.1.2-1.6h-9.6z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M113.8 189.1h-9.5-.1 9.6z"/>
- <path fill="url(#Q)" fill-rule="nonzero" d="M113.8 189.1h-9.5-.1 9.6z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M117.2 198c.4.4.8.8 1.3 1.1h5.7c-.7-.4-1.4-.7-2-1.1h-5z"/>
- <path fill="url(#R)" fill-rule="nonzero" d="M117.2 198c.4.4.8.8 1.3 1.1h5.7c-.7-.4-1.4-.7-2-1.1h-5z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M113.8 189.1c-.1.5-.2 1.1-.2 1.6h3.4c.1-.6.2-1.1.4-1.6h-3.6z"/>
- <path fill="url(#S)" fill-rule="nonzero" d="M113.8 189.1c-.1.5-.2 1.1-.2 1.6h3.4c.1-.6.2-1.1.4-1.6h-3.6z"/>
- <path fill="url(#T)" fill-rule="nonzero" d="M142.9 198h-15.8c.9.4 1.7.8 2.6 1.1h14.4l.9-.8.4.1c.3.1.5.3.7.5.1.1.2.3.3.3 1.3 0 2.4-.2 2.8-.5.7-.5 1.4-2.9 1.4-4.6 0-2.3-.8-4-1.6-4.6-.1-.1-.8-.3-2-.4h-.2c-.1.3-.3.6-.7.7h-.3l-1-.7h-13.3c-.4.5-.7.9-1.1 1.4l16.2-.3.5.5h.1l.2.2.9.8-.1.9c.4 1.6.1 3.2-.7 4.3l-.1.8-4.5.3z"/>
- <path fill="url(#T)" fill-rule="nonzero" d="M142.9 198h-15.8c.9.4 1.7.8 2.6 1.1h14.4l.9-.8.4.1c.3.1.5.3.7.5.1.1.2.3.3.3 1.3 0 2.4-.2 2.8-.5.7-.5 1.4-2.9 1.4-4.6 0-2.3-.8-4-1.6-4.6-.1-.1-.8-.3-2-.4h-.2c-.1.3-.3.6-.7.7h-.3l-1-.7h-13.3c-.4.5-.7.9-1.1 1.4l16.2-.3.5.5h.1l.2.2.9.8-.1.9c.4 1.6.1 3.2-.7 4.3l-.1.8-4.5.3z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M146.8 189.1h.2-.2z"/>
- <path fill="url(#U)" fill-rule="nonzero" d="M146.8 189.1h.2-.2zM146.8 189.1h.2-.2z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M144.8 189.1h-13.3 13.3z"/>
- <path fill="url(#V)" fill-rule="nonzero" d="M144.8 189.1h-13.3 13.3zM144.8 189.1h-13.3 13.3z"/>
- <path fill="url(#W)" fill-rule="nonzero" d="M119.8 189.1c-.3.5-.5 1-.6 1.6l10.5-.2c.3-.5.7-.9 1-1.4h-10.9z"/>
- <path fill="url(#W)" fill-rule="nonzero" d="M119.8 189.1c-.3.5-.5 1-.6 1.6l10.5-.2c.3-.5.7-.9 1-1.4h-10.9z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M130.8 189.1h-10.9 10.9z"/>
- <path fill="url(#X)" fill-rule="nonzero" d="M130.8 189.1h-10.9 10.9zM130.8 189.1h-10.9 10.9z"/>
- <path fill="url(#Y)" fill-rule="nonzero" d="M129.7 190.5h.6c.4-.5.7-.9 1.1-1.4h-.7c-.3.5-.6.9-1 1.4z"/>
- <path fill="url(#Y)" fill-rule="nonzero" d="M129.7 190.5h.6c.4-.5.7-.9 1.1-1.4h-.7c-.3.5-.6.9-1 1.4z"/>
- <path fill="url(#Y)" fill-rule="nonzero" d="M129.7 190.5h.6c.4-.5.7-.9 1.1-1.4h-.7c-.3.5-.6.9-1 1.4z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M131.5 189.1h-.7.7z"/>
- <path fill="url(#Z)" fill-rule="nonzero" d="M131.5 189.1h-.7.7zM131.5 189.1h-.7.7zM131.5 189.1h-.7.7z"/>
- <path fill="url(#aa)" fill-rule="nonzero" d="M122.2 198c.6.4 1.3.8 2 1.1h5.5c-.9-.4-1.8-.7-2.6-1.1h-4.9z"/>
- <path fill="url(#ab)" fill-rule="nonzero" d="M122.2 198c.6.4 1.3.8 2 1.1h5.5c-.9-.4-1.8-.7-2.6-1.1h-4.9z"/>
- <path fill="url(#ac)" fill-rule="nonzero" d="M119.8 189.1h-2.5c-.2.5-.3 1-.4 1.6h2.3c.1-.6.3-1.1.6-1.6z"/>
- <path fill="url(#ad)" fill-rule="nonzero" d="M119.8 189.1h-2.5c-.2.5-.3 1-.4 1.6h2.3c.1-.6.3-1.1.6-1.6z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M117.2 198H142.9l4.4-.2.1-.8c-.1.2-.3.4-.5.5l-.2.2h-40.2v.3h10.7z"/>
- <path fill="url(#ae)" fill-rule="nonzero" d="M117.2 198H142.9l4.4-.2.1-.8c-.1.2-.3.4-.5.5l-.2.2h-40.2v.3h10.7z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M130.3 190.5h-.6l-10.5.2h-1.6 29.5l-.5-.5"/>
- <path fill="url(#af)" fill-rule="nonzero" d="M130.3 190.5h-.6l-10.5.2h-1.6 29.5l-.5-.5"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M147.4 191l.1.1c.3.5.6 1 .7 1.6l.1-.9-.9-.8z"/>
- <path fill="url(#ag)" fill-rule="nonzero" d="M147.4 191l.1.1c.3.5.6 1 .7 1.6l.1-.9-.9-.8z"/>
- <path fill="url(#ah)" fill-rule="nonzero" d="M104.1 200.5c.2 0 .3.1.5.1h40.1l.5-.4c.2.2.6.4 1 .5h.2c1.2 0 2.9-.2 3.8-.8 1.3-1 2-4.2 2-5.7 0-2-.6-3.8-1.4-5-.2-.3-.5-.6-.8-.8-.5-.3-1.5-.6-3.1-.7h-.7c-.3 0-.5.1-.6.3l-.3-.2h-.8c-.3.4-.8.6-1.4.6h-40.2c-.2.3-.4.6-.5.9v1.3c0 1 .8 1.7 1.9 1.7h1v4.1h-1c-.6 0-1.1.2-1.5.7-.4.4-.5 1-.3 1.5l.2.9c.1.3.2.5.4.7.2 0 .5.2 1 .3-.1 0-.1 0 0 0zm0-2.7c.1-.1.1-.1.2-.1H146.7l.2-.2.5-.5c.8-1.1 1.1-2.8.7-4.3-.1-.6-.4-1.1-.7-1.6l-.1-.1-.2-.2h-42.8c-.2 0-.3-.1-.3-.3v-1.1c0-.1.1-.2.2-.2h40.6l1 .7h.3c.5-.1.7-.4.7-.7h.2c1.2.1 1.9.3 2 .4.8.6 1.6 2.4 1.6 4.6 0 1.6-.8 4.1-1.4 4.6-.4.3-1.5.5-2.8.5-.1-.1-.3-.2-.3-.3-.2-.2-.4-.4-.7-.5l-.4-.1-.9.8h-39.5c-.1 0-.2-.1-.3-.2l-.3-1s0-.1.1-.2zm42.5-3.2c.1.1.1.2.1.3 0 .2-.1.3-.3.3-.1.4-.3.7-.5 1h-38.4v-4.1h38.6l.3.9c.1.1.2.2.2.3 0 .1 0 .2-.1.3.2.4.2.7.1 1z"/>
- <path fill="url(#ai)" fill-rule="nonzero" d="M146.6 193.1c-.1 0-.1-.1-.2-.1h-37.5c-.2 0-.4.2-.4.4s.2.4.4.4h37.5c.1 0 .2 0 .3-.1.1-.1.1-.2.1-.3 0-.1-.1-.2-.2-.3z"/>
- <path fill="url(#aj)" fill-rule="nonzero" d="M108.9 194.6c-.2 0-.4.2-.4.4s.2.4.4.4h37.6c.2 0 .3-.2.3-.3 0-.1-.1-.2-.1-.3-.1-.1-.2-.1-.3-.1h-37.5v-.1z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M101.1 183.6h38.6v-4.1h-38.4c-.6 1-.8 2.8-.2 4.1z"/>
- <path fill="url(#ak)" fill-rule="nonzero" d="M98.4 186.4c.1.1.9.3 2.2.4.1-.3.3-.7.8-.7h.3l1 .8h11.9c.2-.5.5-1 .8-1.4l-14.6.2-.5-.5h-.1l-.2-.2-.9-.8.1-.9c-.3-1.2-.2-2.5.2-3.5H97c-.2.7-.3 1.4-.3 2 .1 2.2.9 4 1.7 4.6z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M120.7 176.7h-17.3l-.9.8h17.9c0-.3.1-.5.3-.8z"/>
- <path fill="url(#al)" fill-rule="nonzero" d="M120.7 176.7h-17.3l-.9.8h17.9c0-.3.1-.5.3-.8z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M102 177.4c-.3-.1-.5-.3-.7-.5-.1-.1-.2-.3-.3-.3-1.3 0-2.4.2-2.8.5l-.3.3h4.5-.4z"/>
- <path fill="url(#am)" fill-rule="nonzero" d="M102 177.4c-.3-.1-.5-.3-.7-.5-.1-.1-.2-.3-.3-.3-1.3 0-2.4.2-2.8.5l-.3.3h4.5-.4z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M133 177.5c.2-.3.5-.5.8-.8l-.8.8z"/>
- <path fill="url(#an)" fill-rule="nonzero" d="M133 177.5c.2-.3.5-.5.8-.8l-.8.8z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M100 178.9l.1-.8 4.4-.2h15.6c0-.1.1-.2.2-.4H97.9c-.3.5-.7 1.3-.9 2.2h2.5c.2-.3.3-.6.5-.8z"/>
- <path fill="url(#ao)" fill-rule="nonzero" d="M100 178.9l.1-.8 4.4-.2h15.6c0-.1.1-.2.2-.4H97.9c-.3.5-.7 1.3-.9 2.2h2.5c.2-.3.3-.6.5-.8z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M133 177.5c-.2.1-.3.2-.4.4l.4-.4z"/>
- <path fill="url(#ap)" fill-rule="nonzero" d="M133 177.5c-.2.1-.3.2-.4.4l.4-.4z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M120.2 185.3l-4.7.1c-.3.4-.6.9-.8 1.4h4.1c.3-.6.8-1.1 1.4-1.5z"/>
- <path fill="url(#aq)" fill-rule="nonzero" d="M120.2 185.3l-4.7.1c-.3.4-.6.9-.8 1.4h4.1c.3-.6.8-1.1 1.4-1.5z"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M120.1 177.9h4c.7-.7 1.6-1.1 2.6-1.1h.3l3.3.3c.1-.1.2-.2.3-.4h-10c-.1.3-.3.5-.4.8 0 .1 0 .2-.1.4z"/>
- <path fill="url(#ar)" fill-rule="nonzero" d="M120.1 177.9h4c.7-.7 1.6-1.1 2.6-1.1h.3l3.3.3c.1-.1.2-.2.3-.4h-10c-.1.3-.3.5-.4.8 0 .1 0 .2-.1.4z"/>
- <path fill="url(#as)" fill-rule="nonzero" d="M143.1 186.7c.2 0 .3-.1.3-.3v-1.1c0-.1-.1-.3-.3-.3h-7.9l-1.6 1.6h9.5v.1z"/>
- <path fill="url(#at)" fill-rule="nonzero" d="M143.1 186.7c.2 0 .3-.1.3-.3v-1.1c0-.1-.1-.3-.3-.3h-7.9l-1.6 1.6h9.5v.1z"/>
- <path fill="url(#au)" fill-rule="nonzero" d="M122 186.7h10.7c.3-.3.6-.6.8-.9l.7-.7h-4.4l-5.8.1c-.7.6-1.4 1.1-2 1.5z"/>
- <path fill="url(#av)" fill-rule="nonzero" d="M122 186.7h10.7c.3-.3.6-.6.8-.9l.7-.7h-4.4l-5.8.1c-.7.6-1.4 1.1-2 1.5z"/>
- <path fill="url(#aw)" fill-rule="nonzero" d="M140.9 177.9v.3h1c.4-.3.9-.7 1.3-1l-.1-.2c0-.1-.1-.2-.3-.2h-3.6c-.2.4-.5.8-.9 1.1h2.6z"/>
- <path fill="url(#ax)" fill-rule="nonzero" d="M140.9 177.9v.3h1c.4-.3.9-.7 1.3-1l-.1-.2c0-.1-.1-.2-.3-.2h-3.6c-.2.4-.5.8-.9 1.1h2.6z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M133.9 177.5c.9 0 1.7-.3 2.4-.8h-2.5c-.2.3-.5.5-.8.8h.9z"/>
- <path fill="url(#ay)" fill-rule="nonzero" d="M133.9 177.5c.9 0 1.7-.3 2.4-.8h-2.5c-.2.3-.5.5-.8.8h.9z"/>
- <path fill="url(#az)" fill-rule="nonzero" d="M133.9 177.5c.9 0 1.7-.3 2.4-.8h-2.5c-.2.3-.5.5-.8.8h.9z"/>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M133 177.5l-.4.4h5.7c.3-.3.6-.7.9-1.1h-3c-.7.5-1.5.8-2.4.8h-.8v-.1z"/>
- <path fill="url(#aA)" fill-rule="nonzero" d="M133 177.5l-.4.4h5.7c.3-.3.6-.7.9-1.1h-3c-.7.5-1.5.8-2.4.8h-.8v-.1z"/>
- <path fill="url(#aB)" fill-rule="nonzero" d="M133 177.5l-.4.4h5.7c.3-.3.6-.7.9-1.1h-3c-.7.5-1.5.8-2.4.8h-.8v-.1z"/>
- <path fill="url(#aC)" fill-rule="nonzero" d="M132.7 186.7h.9c.5-.6 1.1-1.1 1.6-1.6h-.9l-.7.7-.9.9z"/>
- <path fill="url(#aC)" fill-rule="nonzero" d="M132.7 186.7h.9c.5-.6 1.1-1.1 1.6-1.6h-.9l-.7.7-.9.9z"/>
- <path fill="url(#aD)" fill-rule="nonzero" d="M132.7 186.7h.9c.5-.6 1.1-1.1 1.6-1.6h-.9l-.7.7-.9.9z"/>
- <path fill="url(#aE)" fill-rule="nonzero" d="M143.1 178.1c.1 0 .2 0 .2-.1.1-.1.1-.1.1-.2l-.2-.7c-.4.3-.9.7-1.3 1h1.2z"/>
- <path fill="url(#aE)" fill-rule="nonzero" d="M143.1 178.1c.1 0 .2 0 .2-.1.1-.1.1-.1.1-.2l-.2-.7c-.4.3-.9.7-1.3 1h1.2z"/>
- <path fill="url(#aF)" fill-rule="nonzero" d="M143.1 178.1c.1 0 .2 0 .2-.1.1-.1.1-.1.1-.2l-.2-.7c-.4.3-.9.7-1.3 1h1.2z"/>
- <path fill="url(#aG)" fill-rule="nonzero" d="M127 176.8h-.3c-1 0-1.9.4-2.6 1.1h8.5l.4-.4c.2-.3.5-.5.8-.8h-3c-.1.1-.2.2-.3.4l-3.5-.3z"/>
- <path fill="url(#aH)" fill-rule="nonzero" d="M127 176.8h-.3c-1 0-1.9.4-2.6 1.1h8.5l.4-.4c.2-.3.5-.5.8-.8h-3c-.1.1-.2.2-.3.4l-3.5-.3z"/>
- <path fill="url(#aI)" fill-rule="nonzero" d="M120.2 185.3c-.6.5-1.1 1-1.5 1.5h3.4c.6-.5 1.3-1 2-1.5h-3.9z"/>
- <path fill="url(#aJ)" fill-rule="nonzero" d="M120.2 185.3c-.6.5-1.1 1-1.5 1.5h3.4c.6-.5 1.3-1 2-1.5h-3.9z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M115.4 185.3h4.8l3.9-.1 5.8-.1h-29.6l.6.5"/>
- <path fill="url(#aK)" fill-rule="nonzero" d="M115.4 185.3h4.8l3.9-.1 5.8-.1h-29.6l.6.5"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M100.1 184.9l-.1-.1c-.3-.5-.6-1-.7-1.6l-.1.9.9.8z"/>
- <path fill="url(#aL)" fill-rule="nonzero" d="M100.1 184.9l-.1-.1c-.3-.5-.6-1-.7-1.6l-.1.9.9.8z"/>
- <path fill="#FAFAFA" fill-rule="nonzero" d="M138.4 177.9h-33.8l-4.4.2-.1.8c.1-.2.3-.4.5-.5l.2-.2H141v-.3h-2.6z"/>
- <path fill="url(#aM)" fill-rule="nonzero" d="M138.4 177.9h-33.8l-4.4.2-.1.8c.1-.2.3-.4.5-.5l.2-.2H141v-.3h-2.6z"/>
- <path fill="url(#aN)" fill-rule="nonzero" d="M97.4 187.5c.5.3 1.5.6 3.1.7h.7c.3 0 .5-.1.6-.3l.3.2h41c.6 0 1.1-.2 1.4-.6.2-.2.4-.5.4-.7 0-.1.1-.3.1-.4v-1.1c0-1-.8-1.7-1.9-1.7h-1v-4h1c.6 0 1.1-.2 1.5-.7.4-.4.5-1 .3-1.5l-.1-.2-.2-.7c0-.1-.1-.3-.2-.4-.3-.6-.9-.9-1.7-.9h-40l-.5.4c-.3-.2-.7-.5-1.2-.5-1.2 0-2.9.2-3.8.8-.4.3-.8.8-1.1 1.5-.3.7-.6 1.5-.7 2.2-.2.8-.3 1.5-.3 2 0 2.1.6 4 1.6 5.2.2.3.4.5.7.7zm-.4-7.8c.2-.9.5-1.8.9-2.2l.3-.3c.4-.3 1.5-.5 2.8-.5.1.1.3.2.3.3.2.2.4.4.7.5l.4.1.9-.8h39.4c.1 0 .2.1.3.2l.1.2.2.7c0 .1 0 .2-.1.2-.1.1-.1.1-.2.1H100.6l-.2.2-.5.5c-.2.3-.3.5-.5.8-.4 1-.5 2.3-.2 3.5.1.6.4 1.1.7 1.6l.1.1.2.2H143c.2 0 .3.1.3.3v1.1c0 .1-.1.3-.3.3h-40.4l-1-.8h-.3c-.5.1-.7.4-.8.7-1.3-.1-2.1-.3-2.2-.4-.8-.6-1.6-2.4-1.6-4.6.1-.6.2-1.3.3-2zm42.8-.1v4.1h-38.6c-.7-1.3-.5-3.2.3-4.1h38.3z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M190.1 151.1c-8.6-5.4-23.3-5.4-23.5-5.4-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6.1 0 7.6-.1 15.1 1.8 5.8 1.5 10 3.7 12.6 6.7h.2c-9.2-10.9-26.7-9.7-26.9-9.6-.3 0-.6-.2-.6-.5s.2-.6.5-.6c.2 0 15.7-1.1 25.6 7.7-2.1-2.3-5.5-5.2-10.1-7.3-6.7-2.9-14.7-1.9-17-1.5l-1.2 5.3 25.1 4.3c0 .3.1.3.2.3zM210.5 142.3c-5 2.4-8.1 5.4-10 7.7 8.8-8.7 22.6-8.9 22.7-8.9.3 0 .6.2.6.6 0 .3-.2.6-.6.6-.2 0-15.1.2-23.3 10 .2-.1.4-.2.6-.4 2.3-2.2 5.4-4 9.5-5.5 6.9-2.5 14.1-3.1 14.2-3.1.3 0 .6.2.6.5s-.2.6-.5.6c-.2 0-12 1-19.8 5.9l22.3-4.7c-.7-2.4-1.4-5-1.7-6.2-2.1 0-9.4.4-14.6 2.9z"/>
- <path fill="url(#aO)" fill-rule="nonzero" d="M230.9 147v-.5c-.1-.3-.2-.6-.4-.8-.3-.4-.8-.5-1.3-.5h-.2c-.7-2.6-1.7-6.5-1.9-7.1-.1-.3-.4-.6-.7-.7-1.2-.5-10.5-.2-16.7 2.9-7.5 3.7-11.2 8.5-12.7 11-1.8-2.6-6-7.4-13.1-10.5-8.6-3.7-18.7-1.6-19.1-1.5-.4.1-.8.4-.8.8l-1.4 6.1h-.3c-.5 0-.9.2-1.3.5-.3.3-.5.8-.5 1.3l.3 4.3h.5l.4.1.5 4.9c1.6-.1 6-.5 6.5-.5.8 0 1.3.5 1.4 1.4.2 1.9-1.9 5-7.1 6.2-.3.1-.9.6-1.1.8-.1.1.2.6-.1.8l.2 2.7.1.8.1 1.2 1.2 15.4c.1.9.8 1.5 1.6 1.5l24.9 3.6c.9.9 2.9 2.3 6.2 2.3h.8c3.6-.2 5.6-1.6 6.5-2.5l22.1-3.1c.9 0 1.6-.7 1.7-1.5l1.1-11.7.1-1.1.4-4.5c-.3-.1-.7-.2-1-.3-.8-.3 1.5-.1.4-.3-3.5-.8-5.4-2.9-6.2-4.7l-10.6 1.6h-.2c-.3 0-.5-.1-.7-.3-.2-.2-.4-.5-.4-.9l.1-5.5c0-.5.4-1 .9-1.1l11.5-1.8c.3 0 .7 0 .9.3.2.2.4.5.4.9l.1 3c1.5.1 4.3.3 5.5.5l.5-4.9h.1v-.1l.3-3.3.2-2.1v-.1l.3-3zm-66.3-.2l1.2-5.3c2.4-.4 10.3-1.4 17 1.5 4.7 2 8 4.9 10.1 7.3-9.9-8.9-25.4-7.8-25.6-7.7-.3 0-.5.3-.5.6s.3.5.6.5c.2 0 17.7-1.3 26.9 9.6h-.2c-2.6-2.9-6.8-5.2-12.6-6.7-7.5-1.9-15-1.8-15.1-1.8-.3 0-.6.3-.6.
6s.3.5.6.6c.2 0 14.9-.1 23.5 5.4-.1 0-.2-.1-.3-.1l-25-4.5zm38.5 40.8s-1.4 3.6-6.7 3.1c-5.3-.5-6.4-2.8-6.4-2.8l-.3-33.2s3.3 2 7.5 1.7c4.2-.3 6.7-2.5 6.7-2.5l-.8 33.7zm1.3-37.2c7.9-4.9 19.6-5.9 19.8-5.9.3 0 .5-.3.5-.6s-.3-.5-.6-.5c-.1 0-7.2.6-14.2 3.1-4.1 1.5-7.2 3.3-9.5 5.5-.2.1-.4.2-.6.4 8.2-9.8 23.1-10 23.3-10 .3 0 .6-.3.6-.6s-.3-.6-.6-.6c-.2 0-14 .2-22.7 8.9 1.9-2.3 5.1-5.3 10-7.7 5.2-2.5 12.4-2.9 14.5-2.8.3 1.2 1 3.8 1.7 6.2l-22.2 4.6z"/>
- <path fill="url(#aP)" fill-rule="nonzero" d="M223.7 156.1c-.2-.2-.6-.3-.9-.3l-11.5 1.8c-.5.1-.9.5-.9 1.1l-.1 5.5c0 .3.1.6.4.9.2.2.5.3.7.3h.2l10.6-1.6c-.4-.9-.5-1.8-.4-2.4.1-.8.6-1.4 1.4-1.4.1 0 .5 0 .9.1l.1-3.1c-.2-.4-.3-.7-.5-.9z"/>
- <path fill="url(#aQ)" fill-rule="nonzero" d="M223.7 156.1c-.2-.2-.6-.3-.9-.3l-11.5 1.8c-.5.1-.9.5-.9 1.1l-.1 5.5c0 .3.1.6.4.9.2.2.5.3.7.3h.2l10.6-1.6c-.4-.9-.5-1.8-.4-2.4.1-.8.6-1.4 1.4-1.4.1 0 .5 0 .9.1l.1-3.1c-.2-.4-.3-.7-.5-.9z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M162.8 163.3c4.7-1 6.4-3.7 6.3-5 0-.4-.2-.4-.3-.4-.4 0-4.4.3-6.9.6h-.5l-.6-5.1c-.9 0-3.2.4-5.5 2.6-1.4 1.3-1.7 3.1-.9 4.6.9 2 3.7 3.8 8.4 2.7z"/>
- <path fill="url(#aR)" fill-rule="nonzero" d="M161.7 166.1c.1 0 .2 0 .2-.1.3-.2 0-.7.1-.8.2-.2.8-.7 1.1-.8 5.2-1.1 7.3-4.3 7.1-6.2-.1-.8-.6-1.4-1.4-1.4-.5 0-4.9.4-6.5.5l-.5-4.9-.4-.1h-.5c-.8 0-2.3.2-4 1.2-.7.4-1.5 1-2.3 1.7-.8.7-1.3 1.6-1.5 2.5-.2.8-.2 1.6 0 2.4.1.3-.8-.1-1 .1v.1c-.1.9.5 2.4 2 3.7 1.4 1.5 3.9 2.5 7.6 2.1zm-6.5-9.9c2.3-2.3 4.6-2.6 5.5-2.6l.6 5.1h.5c2.6-.2 6.5-.6 6.9-.6.1 0 .2 0 .3.4.1 1.2-1.6 3.9-6.3 5-4.7 1-7.5-.7-8.5-2.5-.7-1.7-.3-3.4 1-4.8z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M231.1 156.6l-.6 5.1h-.5c-2.6-.2-6.5-.6-6.9-.6-.1 0-.2 0-.3.4-.1 1.2 1.6 3.9 6.3 5 4.7 1 7.5-.7 8.5-2.5.8-1.5.5-3.3-.9-4.6-2.5-2.4-4.7-2.7-5.6-2.8z"/>
- <path fill="url(#aS)" fill-rule="nonzero" d="M236.7 157.9c-3.2-2.7-6.1-2.4-6.2-2.4h-.5l-.5 4.9c-1.2-.1-4-.3-5.5-.5-.5 0-.8-.1-.9-.1-.8 0-1.3.5-1.4 1.4-.1.6.1 1.5.4 2.4.8 1.9 2.7 4 6.2 4.7 1 .2-1.2 0-.4.3.4.1.7.2 1 .3.3.1.6.2 1 .2 2.8.5 5.1-.1 6.4-1.1.4-.3.8-.6 1-1 .4-.5.7-1.6.9-2.2.1-.2.2-.4.2-.5.8-1.6.7-3.3-.2-4.8-.2-.4-.5-.7-.9-1.1-.2-.1-.4-.3-.6-.5zm.8 6c-1 1.8-3.8 3.5-8.5 2.5s-6.4-3.7-6.3-5c0-.4.2-.4.3-.4.4 0 4.4.3 6.9.6h.5l.6-5.1c.9 0 3.2.4 5.5 2.6 1.5 1.5 1.8 3.2 1 4.8z"/>
- <path fill="url(#aT)" fill-rule="nonzero" d="M189.7 154.7l.3 33.2s1.1 2.2 6.4 2.8c5.3.6 6.7-3.1 6.7-3.1l.8-33.7s-2.5 2.2-6.7 2.5c-4.2.3-7.5-1.7-7.5-1.7z"/>
- <path fill="url(#aU)" fill-rule="nonzero" d="M189.7 154.7l.3 33.2s1.1 2.2 6.4 2.8c5.3.6 6.7-3.1 6.7-3.1l.8-33.7s-2.5 2.2-6.7 2.5c-4.2.3-7.5-1.7-7.5-1.7z"/>
- <path d="M-31-22h352v303H-31z"/>
- </g>
-</svg>
diff --git a/browser/extensions/onboarding/content/img/figure_performance.svg b/browser/extensions/onboarding/content/img/figure_performance.svg
deleted file mode 100644
index f7c5c219aada..000000000000
--- a/browser/extensions/onboarding/content/img/figure_performance.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="297" height="245" viewBox="0 0 297 245" xmlns="http://www.w3.org/2000/svg"><title>performance</title><defs><linearGradient x1="-920.838%" y1="-294.992%" x2="891.374%" y2="366.984%" id="a"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-162.81%" y1="-242.422%" x2="179.364%" y2="239.183%" id="b"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-347.431%" y1="-836.5%" x2="1777.43%" y2="3692.808%" id="c"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-494.697%" y1="-397.029%" x2="2194.58%" y2="1809.556%" id="d"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-358.927%" y1="-240.795%" x2="1727.185%" y2="1250.312%" id="e"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="1
00%"/></linearGradient><linearGradient x1="-626.22%" y1="-1767.938%" x2="1375.102%" y2="3610.616%" id="f"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-2092.13%" y1="-2092.3%" x2="2102.26%" y2="2102.09%" id="g"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-10687.27%" y1="-10695.62%" x2="6524.09%" y2="6515.75%" id="h"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-235.943%" y1="-613.083%" x2="463.706%" y2="1010.631%" id="i"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-10998.63%" y1="-10974.25%" x2="6212.73%" y2="6237.11%" id="j"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-73.995%" y1="-65.306%" x2="120.692%" y2="159.00
8%" id="k"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-21.918%" y1="-53.508%" x2="187.863%" y2="264.044%" id="l"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-489.211%" y1="-179.924%" x2="521.605%" y2="253.611%" id="m"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-7695.347%" y1="-543.989%" x2="5437.677%" y2="468.444%" id="n"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-871.152%" y1="-248.513%" x2="1179.248%" y2="414.667%" id="o"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-737.21%" y1="-1393.274%" x2="549.019%" y2="955.49%" id="p"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></li
nearGradient><linearGradient x1="-638.104%" y1="-1298.114%" x2="447.684%" y2="806.622%" id="q"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-1950.055%" y1="-1089.986%" x2="3277.839%" y2="1905.929%" id="r"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-575.859%" y1="-1406.193%" x2="985.226%" y2="2277.098%" id="s"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-1033.963%" y1="-1091.623%" x2="2289.262%" y2="2403.036%" id="t"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-2408.138%" y1="-454.703%" x2="4538.159%" y2="962.257%" id="u"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-998.9%" y1="-1143.058%" x2="1755.168%" y2="1997.85
%" id="v"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-4669.755%" y1="-4076.6%" x2="8549.086%" y2="7499.45%" id="w"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-195.59%" y1="-922.704%" x2="389.831%" y2="1341.95%" id="x"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient><linearGradient x1="-343.613%" y1="-263.57%" x2="487.353%" y2="406.119%" id="y"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-27.659%" y1="2.333%" x2="125.482%" y2="104.574%" id="z"><stop stop-color="#D7B600" offset="0%"/><stop stop-color="#05A700" offset="100%"/></linearGradient><linearGradient x1="-651.262%" y1="-472.878%" x2="435.248%" y2="317.591%" id="A"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGr
adient><linearGradient x1="-548.021%" y1="-473.693%" x2="248.049%" y2="204.898%" id="B"><stop stop-color="#FFFBCC" offset="0%"/><stop stop-color="#CEF7C6" offset="100%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><path d="M-24-20h352v303H-24z"/><g fill-rule="nonzero"><path d="M13.6 181.6c-2.8 0-5.1-2.2-5.1-4.8V58.3c0-3 2.4-5.4 5.4-5.4h127.2c3 0 5.4 2.4 5.4 5.4v118.5c0 2.6-2.3 4.8-5 4.8H13.6z" fill="#FFF"/><path d="M141.1 54c2.3 0 4.2 1.9 4.2 4.2v118.5c0 2-1.8 3.7-3.9 3.7H13.6c-2.2 0-3.9-1.7-3.9-3.7V58.3c0-2.3 1.9-4.2 4.2-4.2h127.2V54zm0-2.2H13.9c-3.6 0-6.5 2.9-6.5 6.5v118.4c0 3.3 2.8 5.9 6.2 5.9h127.8c3.4 0 6.2-2.7 6.2-5.9V58.3c-.1-3.6-3-6.5-6.5-6.5z" fill="#D7D7DB"/></g><path d="M139.9 75.2v98.2c0 1-.1 1.2-.1 1.2s-.2.1-1.2.1H16.4c-1 0-1.2-.1-1.2-.1s-.1-.2-.1-1.2V75.2h124.8zM141 74H13.9v99.3c0 2 .4 2.5 2.5 2.5h122.2c2 0 2.5-.4 2.5-2.5V74h-.1z" fill-rule="nonzero" fill="#D7D7DB"/><g fill-rule="nonzero" fill="#D7D7DB"><circle cx="3.7" cy="3" r="2.9" transform="translat
e(17 61)"/><circle cx="3" cy="3" r="2.9" transform="translate(27 61)"/><path d="M109.4 67.2H45.5c-1.7 0-3.1-1.4-3.1-3.1v-.3c0-1.7 1.4-3.1 3.1-3.1h63.9c1.7 0 3.1 1.4 3.1 3.1v.3c0 1.7-1.3 3.1-3.1 3.1z"/><g><circle cx="3" cy="3" r="2.9" transform="translate(122 61)"/><circle cx="3.2" cy="3" r="2.9" transform="translate(131 61)"/></g></g><g fill-rule="nonzero"><path d="M39.9 22.9h23.8S56.3 6.3 72.1 4.1c14.1-1.9 19.7 12.6 19.7 12.6s1.7-8.4 10.1-6.8c8.3 1.6 14.4 14.9 14.4 14.9H137" fill="#F9F9FA"/><path d="M137.2 20.9h-4.5c-.3 0-.6-.3-.6-.6s.3-.6.6-.6h4.5c.3 0 .6.3.6.6s-.2.6-.6.6zm-14.5 0h-1.1c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .3-.3.6-.6.6zm-5.5 0h-.6c-.2 0-.4-.1-.5-.3-.1-.2-.6-1.1-1.3-2.3-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.6.9 1 1.7 1.2 2.1h.3c.3 0 .6.2.6.6 0 .4-.4.5-.7.5zm-53.1-.7h-1.5c-.3 0-.6-.3-.6-.6s.3-.6.6-.6h.6c-.1-.3-.2-.6-.4-1-.1-.3.1-.6.4-.7.3-.1.6.1.7.4.3 1 .6 1.7.6 1.7.1.2.1.4 0 .5 0 .2-.2.3-.4.3zm-10.4 0H40.3c-.3 0-.6-.3-.6-.6s.3-.6.6-.6h13.4c.3 0 .6.3.6.6s-.3
.6-.6.6zm8.8-6.1c-.3 0-.5-.2-.6-.5 0-.4-.1-.8-.1-1.1 0-.3.2-.6.5-.6s.6.2.6.5c0 .4.1.7.1 1.1.1.3-.1.6-.5.6zm29.1-1.2c-.2 0-.4-.1-.5-.3-.1-.3-.3-.6-.5-1-.1-.3 0-.6.2-.8.3-.1.6 0 .8.2.2.4.4.7.5 1 .1.3 0 .6-.3.7 0 .2-.1.2-.2.2zm18-1.4c-.1 0-.3-.1-.4-.2-2.4-2.3-4.8-3.7-7.2-4.1-1.6-.3-3.1-.2-4.3.2-.3.1-.6-.1-.7-.4-.1-.3.1-.6.4-.7 1.4-.5 3.1-.6 4.9-.2 2.6.5 5.2 2 7.7 4.4.2.2.2.6 0 .8-.1.2-.2.2-.4.2zM88.7 8.2c-.2 0-.3-.1-.4-.2-.7-.9-1.4-1.7-2.2-2.4-.2-.2-.2-.6 0-.8.2-.2.6-.2.8 0 .8.8 1.6 1.6 2.3 2.5.2.2.2.6-.1.8-.2.1-.3.1-.4.1zM65.8 4c-.2 0-.3-.1-.4-.2-.2-.2-.2-.6.1-.8C67.2 1.6 69.6.7 72.4.3c2.2-.3 4.3-.2 6.3.2.3.1.5.4.4.7-.1.3-.4.5-.7.4-1.9-.4-3.9-.5-5.9-.2-2.7.4-4.8 1.2-6.4 2.4-.1.1-.2.2-.3.2z" fill="#D7D7DB"/><path d="M137.9 25.1h-98c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h98c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1z" fill="#F9F9FA"/></g><path d="M261.4 80.6c.2-.3.6-1 .2-1.3-.3-.2-.6-.3-1-.3-.8 0-1.6.3-2.3.8-1.4 1-2.6 2.7-2.3 3.5 2.5-.5 4.6-1.5 5.4-2.7z"/><path d="M59.3 94.4c4.3.1 8.5-1 12
.1-3.3 3.3-2.1 7.2-3.1 11.1-3 3.9-.1 7.8 1 11.1 3 7.5 4.4 16.8 4.4 24.3 0 6.8-4 15.3-4 22.2 0 7.5 4.4 16.8 4.4 24.3 0 6.8-4 15.3-4 22.2 0 3.6 2.2 7.9 3.4 12.1 3.3.6 0 1.1-.5 1.1-1.1 0-.6-.5-1.1-1.1-1.1-3.9.1-7.8-.9-11.1-3-7.5-4.4-16.8-4.4-24.3 0-6.8 4-15.3 4-22.2 0-7.5-4.4-16.8-4.4-24.3 0-6.8 4-15.3 4-22.2 0-3.6-2.2-7.9-3.4-12.1-3.3-4.3-.1-8.5 1-12.1 3.3-3.3 2.1-7.2 3.1-11.1 3-3.9.1-7.8-.9-11.1-3-3.6-2.2-7.9-3.4-12.1-3.3-.6 0-1.1.5-1.1 1.1 0 .6.5 1.1 1.1 1.1 3.9-.1 7.8.9 11.1 3 3.6 2.3 7.8 3.4 12.1 3.3zM269.2 82.1c-.2-.2-.5-.3-.8-.1-3.1 2-6.6 3.2-10.3 3.5-1.4.2-2.8.2-4.2 0 2.2-.7 4.2-1.7 5.1-2.9 1.1-1.5.4-2.4.1-2.7-1-.9-3.1-.7-4.7.4-1.2.9-3.2 3-2.8 4.7-1.8.4-3.6.7-5.4.8-.3 0-.6.2-.6.6 0 .4.2.6.6.6 2-.1 4-.4 6-.9 1 .8 2.9 1 6 .7 7-.8 10.7-3.6 10.8-3.8.3-.3.4-.6.2-.9zm-14.1-.9c.7-.5 1.5-.8 2.3-.8.4 0 .7.1 1 .3.3.3 0 1-.2 1.3-.8 1.2-3 2.1-5.4 2.8-.3-1 .9-2.6 2.3-3.6z" fill="#D7D7DB" fill-rule="nonzero"/><path d="M154.6 87.1c-.3 0-.6-.3-.7-.6 0-.4.2-.7.6-.7 1.4-.1 2.8-.4 4-.9.3-.1.7.1.9
.4.1.3-.1.7-.4.9-1.4.4-2.8.7-4.4.9zM202.6 86.9c-.3 0-.6-.2-.7-.6-.1-.4.2-.7.5-.8 3.4-.6 5.5-1.9 7.5-3.3.3-.2.7-.1.9.2.2.3.1.7-.2.9-2.1 1.3-4.4 2.8-8 3.4.1.2 0 .2 0 .2zM148.2 86.8h-.1c-3.5-.6-5.7-2.1-7.9-3.5l-.1-.1c-.3-.2-.4-.6-.2-.9.2-.3.6-.4.9-.2l.1.1c2.2 1.4 4.2 2.7 7.4 3.3.4.1.6.4.5.8 0 .3-.3.5-.6.5zM241.1 86.7h-.1c-3.2-.7-5.4-2.1-7.5-3.4l-.5-.3c-.3-.2-.4-.6-.2-.9.2-.3.6-.4.9-.2l.4.3c2.1 1.3 4 2.6 7 3.2.4.1.6.4.5.8.1.3-.2.5-.5.5zM194.1 86.7h-.2c-.4-.1-.7-.2-1.1-.3-.4-.1-.6-.5-.4-.8.1-.4.5-.6.8-.4.3.1.6.2 1 .3.4.1.6.4.5.8 0 .2-.3.4-.6.4zM189.2 84.7c-.1 0-.2 0-.3-.1-.7-.4-1.4-.8-2-1.3-.5-.3-1.1-.7-1.6-1-.3-.2-.4-.6-.2-.9.2-.3.6-.4.9-.2.6.3 1.1.7 1.6 1 .6.4 1.3.8 2 1.2.3.2.4.6.2.9-.1.3-.4.4-.6.4zM162.6 84.3c-.2 0-.4-.1-.6-.3-.2-.3-.1-.7.2-.9l.9-.6c.3-.2.7-.1.9.2.2.3.1.7-.2.9l-.9.6c-.1 0-.2.1-.3.1zM216.1 80.6c-.3 0-.5-.2-.6-.5-.1-.4.1-.7.4-.8 1.4-.4 2.8-.7 4.3-.8.4 0 .7.2.7.6 0 .4-.2.7-.6.7-1.5.1-2.8.4-4 .8h-.2zM123.2 80.5c-.3 0-.6-.2-.6-.5-.1-.4.1-.7.5-.8 1.4-.4 2.8-.6 4.4-.7.4 0 .7
.3.7.6 0 .4-.3.7-.6.7-1.5.1-2.8.3-4.1.7h-.3zM171.2 80.1c-.3 0-.6-.2-.7-.5-.1-.4.2-.7.5-.8 1.4-.3 2.9-.4 4.5-.4 1.5 0 2.9.1 4.2.4.4.1.6.4.5.8-.1.4-.4.6-.8.5-1.2-.2-2.5-.4-4-.4-1.6 0-2.9.1-4.2.4.1 0 0 0 0 0zM132.7 80h-.1c-.3-.1-.7-.1-1-.1-.4 0-.6-.4-.6-.7 0-.4.4-.6.7-.6.4 0 .7.1 1.1.2.4.1.6.4.5.8 0 .2-.3.4-.6.4zM225.6 79.9h-.1c-.3-.1-.7-.1-1-.1-.4 0-.6-.4-.6-.7 0-.4.4-.6.7-.6.4 0 .7.1 1.1.1.4.1.6.4.6.8-.1.3-.4.5-.7.5z" fill="#D7D7DB" fill-rule="nonzero"/><g fill-rule="nonzero" fill="#D7D7DB"><path d="M12 200.6c4.3.1 8.5-1 12.1-3.3 6.8-4 15.3-4 22.2 0 7.5 4.4 16.8 4.4 24.3 0 3.3-2.1 7.2-3.1 11.1-3 .6 0 1.1-.5 1.1-1.1 0-.6-.5-1.1-1.1-1.1-4.3-.1-8.5 1-12.1 3.3-6.8 4-15.3 4-22.2 0-7.5-4.4-16.8-4.4-24.3 0-3.3 2.1-7.2 3.1-11.1 3-3.6.1-7.2-.8-10.3-2.6-.3.7-.7 1.3-1.2 1.9 3.5 2 7.5 3 11.5 2.9zM61.3 208.7c-.3 0-.6-.2-.7-.6-.1-.4.2-.7.5-.8 3.4-.6 5.5-1.9 7.5-3.3.3-.2.7-.1.9.2.2.3.1.7-.2.9-2.1 1.3-4.4 2.8-8 3.4v.2zM52.8 208.5h-.2c-.4-.1-.7-.2-1.1-.3-.4-.1-.6-.5-.4-.8.1-.4.5-.6.8-.4.3.1.6.2 1 .3.
4.1.6.4.5.8-.1.2-.3.4-.6.4zM47.8 206.5c-.1 0-.2 0-.3-.1-.7-.4-1.4-.8-2-1.3-.5-.3-1.1-.7-1.6-1-.3-.2-.4-.6-.2-.9.2-.3.6-.4.9-.2.6.3 1.1.7 1.6 1 .6.4 1.3.8 2 1.2.3.2.4.6.2.9-.1.3-.3.4-.6.4zM74.7 202.4c-.3 0-.5-.2-.6-.5-.1-.4.1-.7.4-.8 1.4-.4 2.8-.7 4.3-.8.4 0 .7.2.7.6 0 .4-.2.7-.6.7-1.5.1-2.8.4-4 .8h-.2z"/><path d="M29.8 202c-.3 0-.6-.2-.7-.5-.1-.4.2-.7.5-.8 1.4-.3 2.9-.4 4.5-.4 1.5 0 2.9.1 4.2.4.4.1.6.4.5.8-.1.4-.4.6-.8.5-1.2-.2-2.5-.4-4-.4-1.6 0-2.9.1-4.2.4.1-.1 0 0 0 0zM84.2 201.8h-.1c-.3-.1-.7-.1-1-.1-.4 0-.6-.4-.6-.7 0-.4.4-.6.7-.6.4 0 .7.1 1.1.1.4.1.6.4.6.8-.1.2-.4.5-.7.5z"/></g><path d="M112.1 196.9c-.2-.2-.5-.3-.8-.1-3.1 2-6.6 3.2-10.3 3.5-1.4.2-2.8.2-4.2 0 2.2-.7 4.2-1.7 5.1-2.9 1.1-1.5.4-2.4.1-2.7-1-.9-3.1-.7-4.7.4-1.2.9-3.2 3-2.8 4.7-1.8.4-3.6.7-5.4.8-.3 0-.6.2-.6.6 0 .3.2.6.6.6 2-.1 4-.4 6-.9 1 .8 2.9 1 6 .7 7-.8 10.7-3.6 10.8-3.8.3-.2.4-.6.2-.9zm-14.2-.9c.7-.5 1.5-.8 2.3-.8.4 0 .7.1 1 .3.3.3 0 1-.2 1.3-.8 1.2-3 2.1-5.4 2.8-.3-1 1-2.6 2.3-3.6z" fill="#D7D7DB" fill-rule="no
nzero"/><g fill-rule="nonzero" fill="#D7D7DB"><path d="M77 97.8c-14.9 0-27 12.1-27 27 0 4 .9 8 2.6 11.6.7 1.7 2.6 2.6 4.4 1.9 1.7-.7 2.6-2.6 1.9-4.4-.1-.2-.1-.3-.2-.4-1.3-2.7-2-5.7-2-8.7 0-11.2 9-20.3 20.2-20.3s20.3 9 20.3 20.2c0 3-.7 6-2 8.8-.8 1.7-.1 3.7 1.6 4.5 1.7.8 3.7.1 4.5-1.6 6.4-13.5.7-29.6-12.7-36-3.5-1.8-7.5-2.7-11.6-2.6z"/><path d="M89.8 118.3c-.8-.5-1.8-.3-2.3.5l-8.3 13.1c-3.6-1.2-7.4.8-8.5 4.3-1.2 3.6.8 7.4 4.3 8.5 2 .6 4.2.3 5.9-.8.7-.5 1.3-1.1 1.8-1.8 1.8-2.6 1.5-6.1-.7-8.4l8.3-13.1c.5-.8.3-1.8-.5-2.3z"/></g><g fill-rule="nonzero"><path d="M251.2 231.9l-13.4-1.7c-.5-.1-.9-.5-.9-1l-1.1-27.6-2.6 1.1c-.1.1-.3.1-.4.1-.2 0-.5-.1-.6-.2-.3-.2-.4-.6-.3-1l.8-3.6-3.6.6h-.2c-.3 0-.7-.2-.9-.5-.2-.3-.2-.8.1-1.1l4.2-5.6c.1-.1.2-.2.4-.3l7-3.3c.1-.1.3-.1.4-.1.2 0 .3 0 .4.1l7.8 3.9c.4.2.6.6.5 1 0 .4-.3.8-.7.9l-4.2 1.3 2 4c.2.3.1.7-.1 1-.2.3-.5.4-.8.4h-.2l-3.1-.5 10.3 30.8c.1.3 0 .7-.2 1-.2.2-.5.4-.8.4.3-.1.2-.1.2-.1z" fill="#F5F5F7"/><path d="M240.2 188.8l7.8 3.9-5.3 1.7 2.5 5-4.7-.8
10.9 32.4-13.4-1.7-1.1-29-3.9 1.7 1.1-5-5 .8 4.2-5.6 6.9-3.4zm0-2c-.3 0-.6.1-.9.2l-7 3.3c-.3.1-.5.3-.7.6l-4.2 5.6c-.5.7-.5 1.5-.1 2.2.4.6 1 1 1.7 1h.3l2.1-.3-.5 2.1c-.2.7.1 1.5.7 2 .4.3.8.5 1.3.5.3 0 .5-.1.8-.2l1.2-.5 1 26.1c0 1 .8 1.8 1.8 1.9l13.4 1.7h.2c.6 0 1.2-.3 1.5-.7.4-.5.6-1.3.3-1.9l-9.8-29.2 1.4.3h.3c.6 0 1.2-.3 1.6-.8.5-.6.5-1.4.2-2.1l-1.5-2.9 3.1-1c.8-.2 1.3-.9 1.4-1.7.1-.8-.4-1.6-1.1-1.9l-7.8-3.9c-.1-.3-.4-.4-.7-.4z" fill="#D7D7DB"/></g><g fill-rule="nonzero"><path d="M199.7 227.4c-.2 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7l-1.1-24.8-2.6 1.1c-.1.1-.3.1-.4.1-.2 0-.5-.1-.6-.2-.3-.2-.4-.6-.3-1l.8-3.6-3.6.6h-.2c-.3 0-.7-.2-.9-.5-.2-.3-.2-.8.1-1.1l4.2-5.6c.1-.1.2-.2.4-.3l7-3.3c.1-.1.3-.1.4-.1.2 0 .3 0 .4.1l7.8 3.9c.4.2.6.6.5 1 0 .4-.3.8-.7.9l-4.2 1.3 2 4c.2.3.1.7-.1 1-.2.3-.5.4-.8.4h-.2l-3.2-.6 7.4 25.8c.1.3 0 .6-.1.9-.2.2-.5.4-.8.4.2.1-10.2.6-10.2.6z" fill="#F5F5F7"/><path d="M202 188.8l7.8 3.9-5.3 1.7 2.5 5-4.7-.8 7.8 27.3-10.3.6-1.1-26.2-3.9 1.7 1.1-5-5 .8 4.2-5.6 6.9-3.4zm0-2c-.
3 0-.6.1-.9.2l-7 3.3c-.3.1-.5.3-.7.6l-4.2 5.6c-.5.7-.5 1.5-.1 2.2.4.6 1 1 1.7 1h.3l2.1-.3-.5 2.1c-.2.7.1 1.5.7 2 .4.3.8.5 1.3.5.3 0 .5-.1.8-.2l1.2-.5 1 23.3c0 .5.3 1 .7 1.4.4.3.8.5 1.3.5h.1l10.3-.6c.6 0 1.2-.3 1.5-.8.3-.5.5-1.1.3-1.7l-6.9-24.3 1.6.3h.3c.6 0 1.2-.3 1.6-.8.5-.6.5-1.4.2-2.1l-1.5-2.9 3.1-1c.8-.2 1.3-.9 1.4-1.7.1-.8-.4-1.6-1.1-1.9l-7.8-3.9c-.2-.2-.5-.3-.8-.3z" fill="#D7D7DB"/></g><path d="M201.4 210.6l1.4 17.5" stroke="#D7D7DB" stroke-linecap="round" stroke-linejoin="round"/><path d="M203.6 221.7l2 11.7" stroke="#EAEAEE" stroke-linecap="round" stroke-linejoin="round"/><path d="M240.2 207.5l5 19" stroke="#D7D7DB" stroke-linecap="round" stroke-linejoin="round"/><path d="M236.5 220.6l1.2 10.9" stroke="#EAEAEE" stroke-linecap="round" stroke-linejoin="round"/><g transform="translate(153 210)" fill-rule="nonzero"><ellipse fill="#EDEDF0" cx="72.1" cy="27" rx="71.5" ry="7.9"/><ellipse fill="#F9F9FA" cx="72.2" cy="25.5" rx="56.8" ry="6.3"/><path d="M20.7 24.2l-.2-.2S12.4 7.7 28.1
4.9c14-2.5 20.1 11.8 20.1 11.8s1.4-8.4 9.8-7.1c8.3 1.3 14.9 14.3 14.9 14.3h.2" fill="#F9F9FA"/><path d="M79.4 19.7h-1.1c-.3 0-.6-.2-.6-.5s.2-.6.5-.6h1.1c.3 0 .6.2.6.5 0 .4-.2.6-.5.6zm-5.6.2h-.6c-.2 0-.4-.1-.5-.3-.1-.2-.6-1.1-1.4-2.3-.2-.3-.1-.6.1-.8.3-.2.6-.1.8.1.6.9 1.1 1.7 1.3 2.1h.3c.3 0 .6.2.6.5s-.3.7-.6.7zm-53 1.4l-1.5.1c-.3 0-.6-.2-.6-.5s.2-.6.5-.6h.6c-.1-.3-.3-.6-.4-1-.1-.3 0-.6.3-.7.3-.1.6 0 .7.3.4 1 .7 1.7.7 1.7.1.2.1.4 0 .5 0 .1-.2.2-.3.2zm-1.9-6.1c-.3 0-.5-.2-.6-.5-.1-.4-.1-.8-.1-1.1 0-.3.2-.6.5-.6s.6.2.6.5c0 .4.1.7.1 1.1.1.3-.1.6-.5.6zM48 13c-.2 0-.4-.1-.5-.3-.1-.3-.3-.6-.5-1-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.2.4.4.7.6 1 .1.3 0 .6-.2.8-.2 0-.3.1-.4.1zm17.9-2.1c-.1 0-.3 0-.4-.1-2.5-2.2-5-3.5-7.3-3.9-1.6-.2-3.1-.1-4.3.3-.3.1-.6 0-.7-.3-.1-.3 0-.6.3-.7 1.4-.5 3.1-.7 4.9-.4 2.6.4 5.2 1.8 7.9 4.1.2.2.3.6 0 .8-.1.1-.2.2-.4.2zM44.8 8.4c-.2 0-.3-.1-.4-.2-.7-.8-1.5-1.6-2.3-2.3-.2-.2-.3-.6-.1-.8.2-.2.6-.3.8-.1.9.7 1.7 1.5 2.4 2.4.2.2.2.6-.1.8 0 .1-.2.2-.3.2zM21.8 5c-.2 0-.3-.1-.4-.2
-.2-.2-.2-.6.1-.8 1.7-1.4 4-2.4 6.8-2.9 2.2-.4 4.3-.4 6.3 0 .3.1.5.3.4.6-.1.3-.3.5-.6.4-1.9-.3-3.9-.3-5.9 0-2.7.5-4.8 1.4-6.3 2.7-.1.2-.3.2-.4.2z" fill="#D7D7DB"/><g><path d="M119.8 27l.2-.2s8.2-16.3-7.5-19.2C98.5 5 92.3 19.2 92.3 19.2S91 10.8 82.6 12c-8.3 1.2-15 14.2-15 14.2h-.2" fill="#F9F9FA"/><path d="M60.6 21.4c0-.3.3-.5.6-.5l1.1.1c.3 0 .5.3.5.6s-.3.5-.6.5l-1.1-.1c-.3 0-.5-.3-.5-.6zm5.5.3c0-.3.3-.5.6-.5h.3c.2-.4.7-1.1 1.3-2 .2-.3.5-.3.8-.1.3.2.3.5.1.8-.8 1.2-1.3 2-1.4 2.3-.1.2-.3.3-.5.3h-.6c-.3-.3-.6-.5-.6-.8zm53.2 2.1c-.1-.2-.1-.4 0-.5 0 0 .3-.6.7-1.7.1-.3.4-.4.7-.3.3.1.4.4.3.7-.1.4-.3.7-.4 1h.6c.3 0 .5.3.5.6s-.3.5-.6.5l-1.5-.1c-.1 0-.3-.1-.3-.2zm2.2-5.8c-.3-.1-.5-.3-.5-.6.1-.4.1-.7.1-1.1 0-.3.3-.5.6-.5s.5.3.5.6c0 .4-.1.8-.2 1.1.1.3-.1.5-.5.5.1 0 .1 0 0 0zm-29.2-2.6c-.3-.1-.4-.5-.2-.8.2-.3.3-.6.6-1 .2-.3.5-.3.8-.2.3.2.3.5.2.8-.2.4-.4.7-.5.9-.1.2-.3.3-.5.3-.2.1-.3.1-.4 0zm-18.1-2.3c-.2-.2-.2-.6.1-.8 2.7-2.3 5.3-3.7 7.9-4.1 1.8-.3 3.5-.1 4.9.4.3.1.4.4.3.7-.1.3-.4.4-.7.3-1.2-.5-2
.7-.6-4.3-.4-2.4.3-4.8 1.6-7.4 3.8-.1.1-.3.1-.4.1-.1.1-.3.1-.4 0zm21.2-2.3c-.2-.2-.3-.6 0-.8.8-.9 1.6-1.7 2.5-2.4.2-.2.6-.2.8.1.2.2.2.6-.1.8-.8.7-1.6 1.4-2.3 2.3-.1.1-.3.2-.4.2-.3-.1-.4-.1-.5-.2zm23-3.2c-1.5-1.3-3.6-2.2-6.3-2.7-2-.4-4-.4-5.9-.1-.3 0-.6-.2-.6-.5-.1-.3.2-.6.5-.6 2-.3 4.1-.3 6.3.1 2.9.5 5.1 1.5 6.8 3 .2.2.3.6.1.8-.1.1-.3.2-.4.2-.3-.1-.4-.1-.5-.2z" fill="#D7D7DB"/></g></g><g transform="translate(159 16)" fill-rule="nonzero"><path d="M125.2 89.7c-.8-4.6-5-4.7-14.4-4.7-7.5 0-17.8-.1-23.3-2.4-9.6-4-17.5-13.4-17.6-13.6-.6-.7-1.4-1.2-2.3-1.5l-.6 1.2c2.7 2.8 5 5.7 7 8.6 3.3 2.9 7.6 6 12.2 7.9 6.1 2.5 16.8 2.6 24.5 2.6 8.4.1 10.8.1 11.1 1.9.3 1.7-2 3.5-6.5 6.6-2.2 1.6-5.9 4.2-6.1 5.1 0 3.4-5.1 9.2-12.9 10-2.6.3-4.8.3-6.5.3-3.2.1-5.2.1-7.6 1.4-.3.2-.8.3-1.3.4-.4 1.1-.9 2.4-1.5 3.8 1.9 0 3.4-.3 4.4-.9 1.6-.9 2.8-.9 6-1 1.8 0 4-.1 6.8-.3 8.4-.8 14.8-6.8 15.8-12 1-.9 3.3-2.6 4.8-3.7 5.2-3.4 8.6-5.8 8-9.7z" fill="#F9F9FA"/><path d="M34.7 63.9h0zM37.6 63.9h-.4.4zM42.2 67.5c.8-1.1 1.
7-2.3 2.6-3.4-.9 1.2-1.8 2.3-2.6 3.4zM40.4 63.6H40c.1.1.2.1.4 0zM43.2 63.3c-.1 0-.3 0-.4.1.1-.1.3-.1.4-.1z" fill="#FFF"/><path d="M62.4 149.2c-.8-1-1.6-2-2.4-3.1-3.6 1-7.5 1.5-11.2 1.5-.8 0-1.6 0-2.4-.1.2.2.3.5.4.8v.1c0 .1.1.2.1.3v.2c.1.3.1.6 0 .9v1.2h1.5c3.2 0 6.6-.4 9.8-1.1.6.7 1.1 1.4 1.7 2.2.5-1.1 1.3-2.2 2.5-2.9z" fill="#F9F9FA"/><path d="M59.6 143.9c-.1 0-.3.1-.4.1.1 0 .3-.1.4-.1z" fill="#FFF"/><path d="M27.9 147c-.7-2.4-1.3-5.4-1.9-8.9-1.6-2.2-2.9-4.8-3.7-7.8-.9 0-1.9-.3-2.7-.8-1.9-1.1-2.9-3.2-2.7-5.4l-3.7-9.6c-.3-.8-.3-1.7 0-2.5-.8-3-1.3-7.3-.4-12.6 1.9-10.4 8.8-19.8 20.6-28.1.1-.4.3-.8.7-1.1l3.3-3c.4-.4 1-.6 1.5-.6.3 0 .6.1.9.2.2-.3.5-.7.7-1-2 .2-4 .3-5.9.3-14.8 0-23-6.5-23.3-18.3 0-2.7.3-5.5 1-8.4-2.9-2.4-4.8-5.3-5.7-8.5-.5-.9-1-1.9-1.3-2.9-2.4-7.5 1.8-15.5 9.3-17.9 1.4-.4 2.8-.7 4.3-.7 1.7 0 3.4.3 5 .9 2-.4 4-.6 6.1-.6h1.2c.6 0 1.2.1 1.8.1 3.3-2.2 6.7-3.9 10.1-4.9 3.7-1.1 7.5-1.7 11.3-1.7 7.4 0 14.8 2.3 20.9 6.4 13 2.2 22.3 11.2 22.3 21.6 0 10.2-8.8 18.9-21.5 21.4-2.1 1.6
-4.5 3-7 4.4-1.6 2.9-3.1 5.8-4.4 8.6.7.5 1.4 1.3 1.7 2.4.3.9.4 1.8.4 2.4.1 0 .1.1.2.1 0 .1 2.6 3.2 6.7 6.6-2-2.9-4.3-5.8-7-8.6l.6-1.2c1.2-2.6 2.5-5.2 4-7.9 2.1-1.2 4.1-2.4 5.9-3.7 13.9-3 23.4-12.9 23.4-24.5 0-11.8-10.2-22.1-24.4-24.7C69.6 2.3 61.8 0 54 0c-4.1 0-8.3.6-12.3 1.9-3.4 1.1-6.7 2.6-10 4.7h-2.2c-1.9 0-3.9.2-5.8.5-1.7-.5-3.5-.8-5.3-.8-1.8 0-3.5.3-5.3.8-4.5 1.4-8.2 4.5-10.3 8.7C.6 20 .2 24.7 1.6 29.2c.3 1.1.8 2.1 1.3 3.2.9 3.1 2.6 5.9 5.1 8.4-.5 2.5-.7 4.9-.6 7.2.1 5.4 1.7 9.9 4.7 13.5.4.4.7.8 1.1 1.2.8.8 1.6 1.5 2.6 2.1 3.6 2.5 8.3 4.1 13.9 4.6-11.9 8.6-19 18.5-21 29.5-1 5.4-.5 9.9.2 13.2-.2 1.2-.1 2.5.4 3.7l3.4 9c0 3.1 1.6 6 4.3 7.7.6.4 1.2.6 1.8.9.8 2.3 1.9 4.4 3.1 6.2.7 4 1.4 7.4 2.2 9.9 1.3-1.2 2.4-2.1 3.8-2.5z" fill="#F9F9FA"/><circle fill="#FFF" transform="rotate(-26.565 9.428 30.382)" cx="8.978" cy="29.932" r="1"/><path d="M7.2 22.9c-.1 1.5 0 3.1.5 4.7-.5-1.6-.7-3.2-.5-4.7zM22.6 128h.4-.6.2zM25.1 131.3c.2.6.4 1.2.7 1.8-.3-.6-.5-1.2-.7-1.8-.1 0 0 0 0 0zM22.7 119.8v-.7l
-1.4-1 1.4 1.7zM21.5 127.8c-.2-.1-.5-.2-.7-.3.2.2.5.3.7.3zM22.3 128c-.2 0-.5-.1-.7-.1.2 0 .5.1.7.1zM15.3 113v-.1.1zM15.3 113.3v-.1.1zM19.2 124.9v-.5c0 .2-.1.3 0 .5zM19.2 124.4v-.3.3zM50.5 145.3h-.1.1zM53.9 145h-.3.3zM28.5 138.9v-.1c-.1 0-.1 0 0 .1zM57 144.5c-.2 0-.3.1-.5.1.1 0 .3-.1.5-.1zM58.3 144.2c-.2 0-.3.1-.5.1.2 0 .4 0 .5-.1zM55.5 144.8c-.1 0-.3.1-.4.1.1-.1.3-.1.4-.1zM38.9 145.2c0 .1 0 .1 0 0 0 .1 0 .1 0 0zM48.8 145.4h.1-.2c.1-.1.1 0 .1 0zM41.5 144.6h-.2.2zM44 145h-.2.2zM95.7 31.4c0 1.8-.3 3.5-.9 5.1.6-1.6.9-3.3.9-5.1zM14.8 53.7c0-.1-.1-.2-.1-.3 0 .1 0 .2.1.3zM15.5 55.4c0-.1-.1-.2-.1-.3 0 .1.1.2.1.3zM16.3 56.7c-.1-.1-.1-.2-.1-.2 0 .1.1.2.1.2zM17.4 58.1c-.1-.1-.1-.2-.2-.2.1.1.2.1.2.2zM14.3 52c0-.1 0-.1-.1-.2 0 .1 0 .1.1.2zM14.4 41.2c0-.1.1-.3.1-.4 0 .1-.1.3-.1.4zM13.9 50.1v-.4.4zM13.8 45.9v-.5.5zM30.5 63.7h-.3.3zM18.5 59.2l-.1-.1s.1 0 .1.1zM28.6 63.5c-.1 0-.2 0-.4-.1.1 0 .3.1.4.1zM14.1 38l-.3-.3.3.3zM24.7 62.6c-.1 0-.2 0-.2-.1.1 0 .2 0 .2.1zM26.5 63.1c-.1 0-.2-.1-.3-.1.1 0 .2 0
.3.1zM19.9 60.3c-.1-.1-.2-.1-.3-.2.2.1.3.1.3.2zM23 61.9c-.1 0-.2-.1-.3-.1.1 0 .2.1.3.1zM8.3 29s0-.1-.1-.1c0 0 0 .1.1.1zM27.7 12.4c.4 0 .7-.1 1.1-.1-.3 0-.7 0-1.1.1zM18.1 11.9h.8-.8zM25.5 12.6h.2-.2zM30.3 12.2h-.7 1.8-1.1zM93.7 23.9c.2.4.5.9.7 1.4-.3-.5-.5-.9-.7-1.4zM89.5 18.7l.8.8c-.2-.3-.5-.6-.8-.8zM91.5 20.8c.5.5.9 1.1 1.3 1.7-.4-.6-.8-1.2-1.3-1.7zM10.6 34.1c-.1-.2-.2-.4-.3-.5.1.2.2.4.3.5zM9.3 31.6c-.1-.2-.2-.5-.2-.7.1.2.1.4.2.7zM12.9 37l-.3-.3.3.3zM17 12.1c.2 0 .5-.1.7-.1-.2 0-.5.1-.7.1zM11.9 35.9s0-.1 0 0c0-.1 0 0 0 0zM9.9 32.9l-.3-.6.3.6zM32.8 63.9h-.4.4zM11.4 14.7c.6-.5 1.2-1 1.9-1.3-.7.4-1.3.8-1.9 1.3zM15.6 12.4c.4-.1.7-.2 1.1-.3-.4.1-.8.2-1.1.3zM81.2 139.8h-1.1 1.1zM72.5 139.6c-.2 0-.4 0-.6-.1.2 0 .4 0 .6.1zM82.7 139.7c-.3 0-.6 0-1 .1.4-.1.7-.1 1-.1zM84.3 139.6c-.3 0-.6.1-1 .1.3-.1.6-.1 1-.1zM76.3 139.8h-.5.5zM74.4 139.7h-.6.6zM78.2 139.9h1.5-1.5zM92 138.5c-.3.1-.6.1-.9.2.3-.1.6-.1.9-.2zM90.6 138.8c-.3.1-.6.1-.9.1.3 0 .6-.1.9-.1zM85.9 139.4c-.3 0-.7.1-1 .1.3 0 .6 0 1-.1zM93.
4 138.2c-.3.1-.6.1-.9.2.3-.1.6-.1.9-.2zM89.2 139c-.4.1-.8.1-1.1.2.3-.1.7-.2 1.1-.2zM87.7 139.2c-.5.1-1 .1-1.4.2.5-.1 1-.1 1.4-.2zM69.2 121.2c-.3-.1-.5-.1-.8-.2l-1.3.8c.3.2.6.3.8.5l.6.3.7-1.4zM23.3 107.4v-.1.1zM23.2 105.3v-.1.1zM23.2 106.4v-.1.1zM71.5 141.8c.9 1.7 1.7 3.3 2.2 4.7-.5-1.4-1.3-3-2.2-4.7zM65.9 150c-1.8-2.3-3.6-4.6-5.1-6.4 1.5 1.8 3.2 4.1 5.1 6.4zM95 137.9l-1.2.3c.4-.2.8-.2 1.2-.3zM65 117.8c-.8.4-1.5.5-2.4.7.8.6 1 .9 1.9 1.5l1.3-.8c-.2-.2-.3-.4-.4-.6-.2-.2-.3-.4-.4-.8zM19.2 125c.1 1 .7 1.9 1.6 2.5-.9-.5-1.5-1.5-1.6-2.5zM38.9 144.1c0-.1 0-.1 0 0 0-.1 0-.1 0 0zM22.4 121.2l-2-2.5 1 2.7c.3-.2.6-.2 1-.2zM25.9 133.3c.7 1.4 1.4 2.7 2.3 3.9 0 .2.1.4.1.6 0-.2-.1-.4-.1-.6-.9-1.2-1.7-2.5-2.3-3.9zM96.3 137.5l-1.2.3c.5-.1.9-.2 1.2-.3zM105.8 134c-.2.1-.3.2-.5.3.2-.1.4-.2.5-.3zM106.2 133.7c-.1.1-.2.2-.3.2.1 0 .2-.1.3-.2zM105.2 134.4c-.1.1-.3.2-.4.2.1 0 .2-.1.4-.2zM106.6 133.5l-.2.2c0-.1.1-.2.2-.2zM104.5 134.8c-.1.1-.3.1-.4.2.1-.1.2-.2.4-.2zM106.8 133.2c0 .1-.1.1-.1.2 0-.1.1-.2.1-.2zM106
.9 132.9c0 .1 0 .1-.1.2.1-.1.1-.1.1-.2zM103.8 135.1c-.2.1-.3.1-.5.2.1 0 .3-.1.5-.2zM106.9 132.6v0zM95.8 130.5h.2-.2zM98.7 136.9c-.2.1-.5.1-.7.2.2-.1.5-.1.7-.2zM97.5 137.2c-.3.1-.5.1-.8.2.3 0 .6-.1.8-.2zM99.8 136.6c-.2.1-.5.1-.7.2.3-.1.5-.2.7-.2zM101 136.2c-.3.1-.5.2-.8.3.2-.1.5-.2.8-.3zM102.1 135.8l-.9.3.9-.3zM103 135.4c-.2.1-.4.2-.6.2.2 0 .4-.1.6-.2zM59.3 111.8h-.1.3-.2zM58.4 111.9h.2-.2zM57.6 112.2c-.1.1-.2.2-.3.2.1 0 .2-.1.3-.2zM74.2 116.6v0zM61 112.2c.1 0 .1.1.2.1-.1 0-.2 0-.2-.1zM65.4 114l.1-.1-.1.1zM61.6 112.8l.2.2c0-.1-.1-.2-.2-.2zM62.7 115.2c.7-.2 1.5-.4 2.3-.5-.8.1-1.5.3-2.3.5 0-.5-.1-1.1-.4-1.6.3.5.4 1 .4 1.6zM60.1 111.9h0zM64.3 111.8c.1-.1.1-.2.2-.3l-1.2-.3c.3.3.5.6.7.9l.3-.3z" fill="#FFF"/><path d="M79.1 113.9c-.5 0-1 0-1.5-.1-.3.9-.8 1.9-1.2 2.9 0 .4-.1.9-.3 1.3l-1.9 4.4c0 .1 0 .2-.1.3 0 .1 0 .1-.1.2.4.2.8.3 1.1.5 10.3 4.3 18.9 4.8 24.5 5.2 4.9.3 8.1.5 9.2 3.2.3.9.2 1.8-.3 2.7-2.3 3.4-17.1 7.7-30.4 7.7-1.4 0-2.8 0-4.1-.1.6 1.1 1 2.1 1.4 3 .1 0 .1 0 .2-.1.6-.1 3.7-.3 5.5
.4 7.3-.3 13.6-1.7 16.9-2.6 10.5-2.8 12.4-5.5 13-6.5 1.2-1.8 1.4-3.9.7-5.8-1.9-4.7-6.8-5-12.1-5.3-5.1-.3-12.6-.8-21.5-4.1l.7-1.7c.2-.6.4-1.1.5-1.7 0-.1 0-.1.1-.2.6-1.3 1.1-2.6 1.5-3.8-.5.2-1.1.2-1.8.2z" fill="#F9F9FA"/><path d="M56.8 110.8c.1.3.1.5.2.8 0-.3-.1-.5-.2-.8zM66.7 112c-.3.6-.6 1-.7 1.2.1-.2.4-.6.7-1.2z" fill="#FFF"/><path d="M58.4 107.7c2.3.6 4.7 1.2 7 1.8 1.7-4.3 3.2-13.6-7-26-1.7 7.8-1.7 15.9 0 24.2z" fill="url(#a)"/><path d="M81.2 111.4c2.9-1.6 5.3-1.6 8.6-1.7 1.8 0 3.8-.1 6.3-.3 6.8-.7 10.9-5.8 10.9-7.8 0-.4.1-.7.3-1.1-1.7.2-3.2.2-4.6.2-6.7 0-10.6-1.5-10.8-1.6-.3-.1-.4-.4-.3-.7.1-.3.4-.4.7-.3.1 0 6 2.4 15.9 1.2 1.2-1.2 3.1-2.7 5.8-4.6 1.8-1.3 4.4-3.1 5.3-4.2-1.5-.3-5.2-.3-8.6-.3-8-.1-18.9-.1-25.4-2.8C78.5 84.6 72.6 79.5 69 76c11 13.8 11.5 25.8 9.7 33.9 0 0-.2.7-.5 1.8 1.5.1 2.5 0 3-.3z" fill="url(#b)"/><path d="M28.3 16.1c1.8-1.9 3-3.1 3.9-3.7-.2 0-.5 0-.7-.1H29c-.4 0-.7 0-1.1.1-.7.1-1.4.1-2.1.2h-.2l-1.5.3c1.5.7 3 1.8 4.2 3.2z" fill="url(#c)"/><path d="M60.1 146.8s-4.
3 5.9-3.1 9c1.2 3.1 9.3 12.9 9.3 12.9s-1.2 8.1-.8 9.6c.4 1.5 4.2 5.8 12.7 2.5s8.8-8.3 8.9-12.3c0-1.6.3-4.2.1-7.8 0-.3 3.5-4.3 1.7-11.3-.8-3.1-2.5-4.3-2.8-4.3-1.1 0-.4 0-.7-.6-1.1-2.2-25.3 2.3-25.3 2.3z" fill="#F9F9FA"/><path d="M8.9 30.2c.1.2.1.4.2.7.1.2.1.5.2.7.1.2.2.5.3.7l.3.6c.1.2.2.5.4.7.1.2.2.4.3.5.4.6.8 1.2 1.2 1.7.2.3.5.5.7.8l.3.3c.3.3.5.5.8.7l.3.3s.1 0 .1.1c.4-1 .8-1.9 1.3-2.7-2.6-.8-4.9-2.6-6.4-5.1z" fill="url(#d)"/><path d="M16.6 30.2c-.3.5-1 .7-1.5.3-.5-.3-.7-1-.3-1.5.1-.1 1.8-2.7 5.1-2.7h.4c-.6-.2-1.1-.8-1.1-1.5l.1-3.5c0-.9.7-1.5 1.6-1.5.9 0 1.5.7 1.5 1.6l-.1 2.4c.9-1.3 1.9-2.5 2.9-3.7-.1-.2-.2-.5 0-.7 1.1-1.4 2.1-2.5 3-3.4-1.2-1.4-2.7-2.4-4.3-3.2-1.5-.7-3.1-1-4.8-1h-1.5c-.2 0-.5.1-.7.1-.1 0-.2 0-.3.1-.4.1-.7.2-1.1.3-.8.2-1.5.6-2.2 1-.7.4-1.4.8-1.9 1.3-1.5 1.3-2.6 2.9-3.4 4.7-.4 1.1-.7 2.3-.8 3.5-.1 1.5 0 3.1.5 4.7.1.5.3.9.5 1.3 0 0 0 .1.1.1l.6 1.2c1.5 2.5 3.8 4.3 6.5 5.2.7-1.3 1.4-2.2 1.4-2.3.1-.1.2-.2.3-.2.6-1.4 1.4-2.9 2.2-4.3-1.7.3-2.6 1.6-2.7 1.7z" fill="#F9F9FA"/><
path d="M20.9 19.8c-.9 0-1.6.7-1.6 1.5l-.1 3.5c0 .7.4 1.3 1.1 1.5h-.4c-3.4 0-5 2.5-5.1 2.7-.3.5-.2 1.2.3 1.5.5.3 1.2.2 1.5-.3 0 0 .9-1.3 2.6-1.6.9-1.6 1.9-3.2 3.1-4.7l.1-2.4c0-.9-.6-1.6-1.5-1.7z" fill="url(#e)"/><path d="M77.5 13.6c2.2 0 4.2.6 6 1.6-1.1-.8-2-1.3-2.6-1.6-1.9-.7-3.9-1.2-6-1.6.8.9 1.6 1.6 2.6 1.6z" fill="url(#f)"/><path fill="url(#g)" d="M19.1 113.1v-.1l-.1.1"/><path d="M68 122.3c.2.1.4.2.6.4-.2-.2-.4-.3-.6-.4z" fill="url(#h)"/><path d="M46.2 67.8c.6 0 1.3 0 2-.1 6.3-.4 13.8-2.8 13.9-2.9.2-.1.5-.1.7-.1h.3c1.3-2.7 2.6-5.2 3.8-7.5-3.4 1.7-10.3 4.6-22 6.8-.9 1.1-1.7 2.2-2.6 3.4.9.3 2.2.4 3.9.4z" fill="url(#i)"/><path d="M24.7 143.9s-4.7 5.6-3.8 8.8c.9 3.2 8.4 13.7 8.4 13.7s-1.8 8.1-1.5 9.6c.3 1.5 3.8 6.1 12.6 3.5 8.8-2.6 8.9-6.7 9.3-10.7.4-4 1-16.3.7-18.8-.3-2.5-25.7-6.1-25.7-6.1z" fill="#F9F9FA"/><path d="M69.7 127.3c.1-.2.1-.5.3-.8l-.3.6v.2z" fill="url(#j)"/><path d="M65.9 150c.8.3 2.4.4 5.3-.3 1.7-.4 2.7-.9 3.3-1.3l-.6-1.8c-.6-1.4-1.3-3.1-2.2-4.8-2.1-3.4-3.7-6.1-3.7-6.
1-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2 0 0 1.1 1.8 2.6 4.3.2 0 .4.1.6.1.2 0 .4 0 .6.1.4 0 .9.1 1.3.1h.6c.4 0 .9.1 1.4.1h6c.3 0 .6 0 1-.1h.6c.3 0 .6-.1 1-.1h.5c.4 0 .7-.1 1-.1h.4c.5-.1 1-.1 1.4-.2h.3c.4-.1.8-.1 1.1-.2.2 0 .3-.1.5-.1.3 0 .6-.1.9-.1.2 0 .4-.1.5-.1.3-.1.6-.1.9-.2.2 0 .3-.1.5-.1.3-.1.6-.1.9-.2.1 0 .3-.1.4-.1l1.2-.3h.1l1.2-.3c.1 0 .3-.1.4-.1.3-.1.5-.1.8-.2.2 0 .3-.1.4-.1.2-.1.5-.1.7-.2.1 0 .3-.1.4-.1.2-.1.5-.1.7-.2.1 0 .3-.1.4-.1.3-.1.5-.2.8-.3.1 0 .1 0 .2-.1l.9-.3c.1 0 .2-.1.2-.1.2-.1.4-.2.6-.2.1 0 .2-.1.3-.1.2-.1.3-.1.5-.2.1 0 .2-.1.3-.1.2-.1.3-.1.4-.2.1 0 .2-.1.2-.1.2-.1.3-.2.4-.2.1 0 .1-.1.2-.1.2-.1.4-.2.5-.3 0 0 .1 0 .1-.1.1-.1.2-.2.3-.2l.1-.1.2-.2.1-.1c0-.1.1-.1.1-.2 0 0 0-.1.1-.1 0-.1 0-.1.1-.2v-.1-.2c-.7-1.8-4.7-1.6-10.9-2.1h-.2c-5.6-.5-12.9-1.5-21.4-5.1-.4-.2-.8-.3-1.2-.5-.7 1.6-1.3 3.1-1.3 3.5-.1 1-1.2 2.7-2.7 3.6-.8.5-1.6.7-2.5.7-.5 0-1-.1-1.5-.3-.5-.2-.8-.8-.7-1.3-1.6-.8-2.2-2.3-2.3-3.2 0-.3.2-.6.5-.6h.1c.1-1.1.7-2.2 1.8-2.8 1-.5 2.1-.5 3-.1l.4-.9-.1-.1c-.4-.2-.7-.4
-1.1-.6l-.4-.2-.5-.3-1.7 1c-.3 1.3-1.3 3.4-3.5 3.5h-.2c-3 0-3.8-1.9-4.2-3.3-.1-.3.1-.6.4-.7h.1c0-.4 0-.8.1-1.2.5-1.8 2.5-2.9 4.3-2.3.8.2 1.4.7 1.9 1.4l.2-.1c-.3-.3-.6-.5-.8-.7-.2-.2-.4-.4-.7-.6l-.9-.7c-.9.2-1.8.3-2.6.3-.5 0-.9-.1-1.2-.2-2.3-.9-2.3-3.8-2.3-3.9 0-.3.3-.5.6-.6.2 0 .3.1.4.2.1-.9.6-1.7 1.4-2.2-.1-.3-.2-.6-.2-.9-.1-.3-.1-.5-.2-.8-.1-.4-.2-.9-.3-1.3 0-.2-.1-.4-.1-.6-.1-.6-.3-1.2-.4-1.8v-.1c-1.5-8.1-1.7-17.2 1-26.8-.9-1.2-1.5-1.9-2-2.4-2 .4-4.1.6-6.5.6h-.2c-1.3 3.8-2 7.3-2.3 10.5l2.3.1c.4 0 .8.3 1 .7.2.4 0 .9-.3 1.2l-3.1 2.9c.3 6.4 2.1 11.8 3.5 16 .4 1.2.8 2.4 1.1 3.4 2.8 9.4 2.6 17.3-.4 22.2-1.7 2.7-4.1 4.4-7.1 4.9-.4.1-.9.1-1.4.1-2.3 0-4.8-1-7-2.7-2.8-2.3-7.7-7.9-8.2-20.8C26 108.9 28 101 30.6 94c-.4-.1-.7-.3-.8-.6-.2-.3-.1-.7.1-1.1l6.2-10.2c1.1-2.1 2.2-3.9 3.1-5.3-2.9-1-4.3-2.4-5-3.3-4.3 3.1-8 6.3-10.9 9.7 0 0 0 .1-.1.2 1.2-1.4 2-2.2 2.1-2.3.3-.3.7-.3 1 0 .3.3.3.7 0 1 0 0-2.8 2.8-5.2 6.6-1.3 3.7-2.7 8.5-2.6 12.2.1 4.7 1.3 7.8 2.1 9.3.9.3 1.9.5 2.9.8-.1.8-.3 1.8-.3 2.9-.5-
.1-1-.3-1.4-.4.5.3.9.6 1.4.8.2-1.5.4-2.5.4-2.7.1-.3.3-.5.6-.5.3.1.5.3.5.6 0 .1-2 11.3.5 19.2.2.6.5 1.2.7 1.8 0 .1.1.1.1.2.7 1.4 1.4 2.7 2.3 3.9 0 .2.1.4.1.6.1.3.1.6.2 1v.1c.6 3.6 1.4 7.2 2.3 9.8.8.4 2.2.6 4.7.5 2-.1 3-.5 3.6-.8 0-1 0-2-.1-3v-.1c-4.5-1.2-6.1-2.9-6.2-3-.2-.2-.2-.6 0-.8.2-.2.6-.2.8 0 0 0 1.5 1.5 5.4 2.6v-.1l2.4.6h.2c.8.2 1.6.3 2.4.4h.2c1.6.2 3.2.3 4.7.3h1.7c1.1 0 2.1-.1 3.1-.3h.3c.4 0 .8-.1 1.1-.2.1 0 .3 0 .4-.1.3-.1.6-.1 1-.2.2 0 .3-.1.5-.1.3-.1.6-.1.9-.2.2 0 .3-.1.5-.1.3-.1.6-.1.9-.2.1 0 .3-.1.4-.1l1.2-.3c1.3 2.3 3 4.6 4.9 6.9zm8-22.2c.1-.2.3-.4.5-.5.4-.1.8.1 1.2.3 4.8 2.9 14 4.5 27.2 4.6.1 0 .6 0 .8.4.1.2.1.5-.1.8-.5.7-8.8 1.8-15.3 1.8-2 0-3.8-.1-5.2-.3-5.8-1-8-3.7-8.6-4.9-.6-.8-.7-1.6-.5-2.2zm-49.7-17.2c0 .3-.3.5-.6.5s-.5-.3-.5-.6c0-.9.1-1.8.3-2.7 0-.2-.1-.3-.1-.5v-.1c0-.3-.1-.6-.1-.9v-.1-1-.1-1.1-.1c.2-3.2 1.2-7.3 4.2-11.8l.1-.1c.3-.5.7-1 1-1.5.8-2 1.5-3.3 1.5-3.5.1-.3.5-.4.7-.3.3.1.4.5.3.7-.1.4-6.3 13.7-6.8 23.2z" fill="url(#k)"/><path d="M37.2 63.9h.4c.8 0 1.6-.
1 2.4-.2h.4l2.4-.3c.1 0 .3 0 .4-.1.5-.1 1-.2 1.5-.2 13.5-2.6 20.6-6 23.1-7.5.1-.1.2-.1.4-.2.5-.3.7-.4.7-.5.1-.1.2-.1.3-.1 1.7-1 3.4-2 4.9-3.1-4.2-.1-7.5-1.9-7.7-2-.3-.1-.4-.5-.2-.8.1-.3.5-.4.8-.2 0 0 4.6 2.4 9.5 1.7 1.1-.2 2.2-.5 3.2-.8 6.7-2.1 12-6.3 14.5-11.6.2-.5.5-1.1.7-1.6.6-1.6.9-3.3.9-5.1 0-2.2-.5-4.2-1.3-6.2-.2-.5-.4-.9-.7-1.4l-.9-1.5c-.4-.6-.8-1.1-1.3-1.7-.4-.4-.8-.9-1.2-1.3l-.8-.8c.9 1.6 1.5 3.4 1.7 5.6.9 1.4 1.6 2.9 1.8 4.6 1.4 7.8-5.3 15.4-14.8 17.1-3.2.6-6.3.4-9-.4-6.2 3.4-14.2 5.7-22.1 6.6-16.5 1.9-29.8-1.4-28.8-13.1.8-8.9 9.4-22.1 19.5-29.1-.5.3-1.1.6-1.6.9-.8.5-1.6 1-2.4 1.6 0 0-2.4 1.2-7.7 7.7-.1.1-.3.2-.4.2-.1 0-.2 0-.4-.1l-.1-.1c-1 1.2-2 2.4-2.9 3.7-1.1 1.5-2.1 3.1-3.1 4.7-.8 1.4-1.5 2.8-2.2 4.3.2 0 .3 0 .5.1.3.2.3.5.1.8 0 0-2.2 3.2-3 6.3-.1.3-.1.6-.2.8 0 .1-.1.3-.1.4-.1.7-.3 1.4-.4 2.1-.1.7-.2 1.4-.2 2v.5c0 .7-.1 1.3 0 2 0 .6.1 1.2.1 1.8v.4c.1.6.2 1.1.3 1.7 0 .1 0 .1.1.2.1.5.3.9.4 1.4 0 .1.1.2.1.3.2.5.4.9.6 1.4 0 .1.1.2.1.3.2.4.4.8.7 1.1 0 .1.1.2.1.2.3.4.6.8.9 1.
1.1.1.1.2.2.2l.9.9.1.1 1.2.9c.1.1.2.1.3.2.4.3.8.5 1.3.8h.1c.4.2.9.4 1.3.7.1 0 .2.1.3.1l1.5.6c.1 0 .2.1.2.1.5.1.9.3 1.4.4.1 0 .2.1.3.1.6.1 1.1.2 1.7.3.1 0 .2 0 .4.1.5.1 1.1.2 1.6.2h.3c.6.1 1.2.1 1.9.1h2.4c1 .6 1.8.6 2.6.6z" fill="url(#l)"/><path d="M68.1 113.9c1.7-2.1 3.7-5.6 4.9-11.1 1.6-7-3-17.6-6.6-24.5-1-1.3-2-2.5-2.8-3.4-1.7.9-4.2 1.9-7.3 2.6.4.5.9 1.1 1.5 1.8 14.4 15.6 11.4 27.5 9.3 32-.1.3-.2.5-.4.7-.3.6-.6 1-.7 1.2-.2.2-.3.4-.5.6l-.1.1c-.1.2-.3.4-.4.7 1.1-.2 2.1-.4 3.1-.7z" fill="url(#m)"/><path d="M76.4 110.7c.2-.8.3-1.3.3-1.3 1.2-5.5.8-10.8-.6-15.7 1.7 6.5 1.4 12.4.3 17z" fill="url(#n)"/><path d="M30.7 86.9c-.3-.1-.6 0-.7.3-.1.2-.7 1.5-1.5 3.5-.4.5-.7 1-1 1.5l-.1.1c-3 4.5-4 8.6-4.2 11.8V106.5c0 .3.1.6.1.9v.1c0 .2 0 .3.1.5l-.3 2.7c0 .3.2.6.5.6s.5-.2.6-.5c.4-9.5 6.7-22.8 6.7-23 .2-.4.1-.8-.2-.9z" fill="url(#o)"/><path d="M32.7 105.7c-.2 0-.4-.1-.6-.2-.4-.3-.6-.8-.4-1.3l3.6-9.5-4.5-.6c-2.6 6.9-4.5 14.9-4.2 22.8.6 12.8 5.4 18.5 8.2 20.8 2.2 1.7 4.7 2.7 7 2.7.5 0 .9 0 1.4-.1 3-.
5 5.4-2.2 7.1-4.9 3-4.9 3.2-12.8.4-22.2-.3-1-.7-2.2-1.1-3.4-1.4-4.2-3.2-9.5-3.5-16l-12.5 11.6c-.4.2-.7.3-.9.3zM36.2 82.1c.2-.3.6-.6 1-.5l7.8.4c.4 0 .8.3 1 .6.2.4.1.8-.1 1.2l-3.9 5 4.1.2c.3-3.3 1-6.8 2.3-10.5-1.1 0-2.1-.1-3.2-.2-2.5-.2-4.5-.7-6-1.2-.9 1.4-1.9 3.2-3.1 5.3l.1-.3zM82.9 134.9c1.4.2 3.2.3 5.2.3 6.5 0 14.8-1.1 15.3-1.8.2-.2.2-.5.1-.8-.2-.4-.6-.4-.8-.4-13.2-.1-22.3-1.7-27.2-4.6-.5-.3-.8-.5-1.2-.3-.2.1-.4.3-.5.5-.2.5 0 1.3.4 2.2.7 1.1 2.9 3.9 8.7 4.9zM69.5 120.6h-.4l-1.9 1.2 1.3-.8c.2.1.5.2.8.2l-.6 1.4.8-2zM65.4 118.7c.1.2.2.4.4.6h.1c-.2-.3-.4-.4-.5-.6z" fill="#F9F9FA"/><path d="M57.3 112.5c-.8.5-1.2 1.4-1.4 2.2.1.1.1.2.1.3 0 0 0 2.2 1.6 2.8 1.2.5 5.3-.7 7.5-1.5h.3l.2-.1.4 1.2c.1.4.3.6.6 1l.9 1-1.1.7-1.4.9-.6.4-.6-.4c-.1-.1-.3-.2-.4-.3l-.2.1c-.4-.6-1.1-1.1-1.9-1.4-1.8-.5-3.8.5-4.3 2.3-.1.4-.1.8-.1 1.2.3 0 .5.1.6.4.4 1.5 1.1 2.5 3.3 2.5 2-.1 2.5-2.8 2.5-2.8 0-.2.1-.3.3-.4l4.5-2.8c.1 0 .1-.1.2-.1l.2-.1.3-.2h.6l1.9-.2-.8 1.8-.9 2.1-.5 1.1-1-.5-.4.9c-.9-.4-2.1-.4-3 .1-1.1.6-1.7
1.6-1.8 2.8.2 0 .5.2.5.5 0 .1.3 1.9 2.1 2.5h.5c.3.1.5.1.8.1h.3c.3-.1.6-.2.9-.4.6-.4 1-.9 1.3-1.3.3-.5.4-1 .4-1.1 0-.1 0-.3.1-.4v-.2l.3-.6c.4-1 1-2.3 1.4-3.1l2.7-6.2c0-.1.1-.2.1-.3v-.2-.3c1.1-2 1.8-4.2 2.2-5.6 1.1-4.7 1.4-10.5-.2-17-2.2-7.6-6.7-14.2-11.3-19.4-.3.2-.7.4-1.2.6.9 1 1.8 2.2 2.8 3.4 3.6 6.8 8.2 17.5 6.6 24.5-1.2 5.4-3.2 8.9-4.9 11.1-1 .2-2 .5-3 .7-.8.2-1.6.4-2.3.5 0-.5-.1-1.1-.4-1.6-.1-.3-.3-.5-.5-.7l-.2-.2c-.2-.1-.3-.3-.5-.4-.1 0-.1-.1-.2-.1-.2-.1-.5-.2-.7-.3h-.1c-.2-.1-.4-.1-.7-.1h-.3c-.2 0-.4 0-.5.1h-.2c-.3.1-.5.2-.7.3-.5 0-.6.1-.7.2zM64.4 123.5l1.7-1-1.7 1zM18.4 39.1c-1.1 11.7 12.3 15 28.8 13.1 7.9-.9 15.9-3.2 22.1-6.6 2.8.8 5.8 1 9 .4 9.5-1.7 16.1-9.3 14.8-17.1-.3-1.7-.9-3.2-1.8-4.6.2 2.6-.3 5.5-2 8.7-.1.2-.2.3-.4.4-2 4.2-6.7 7-12 6.6-4.3-.4-7.9-2.8-9.8-6.2-2.6-3.7-1.8-7.3-1.7-7.5.1-.3.4-.5.7-.4.3.1.5.4.4.7 0 .1-.4 1.5.1 3.5 1.7 4.1 5.3 7 10.3 7.2.1-.1.2-.1.4-.1.4 0 10.5-.3 11.6-9.9.7-6.3-2.5-10-5.2-12-1.8-1-3.8-1.6-6-1.6-1 0-1.8-.7-2.6-1.5h-.2c-5.5-3.8-12.5-6.3-20.1
-6.3-3.4 0-7 .5-10.6 1.6-2.1.6-4.1 1.5-6.1 2.6-10.3 6.9-18.9 20-19.7 29zM60 42c-.1 0-.2.1-.2.1-.2 0-.4-.1-.5-.3-2.6-5.6-.5-10.6-.4-10.8.1-.3.4-.4.7-.3.3.1.4.5.3.7 0 0-2 4.7.4 9.9.1.2 0 .6-.3.7zm25.3-12.3c.3.5.2 1.2-.3 1.5-.2.1-.4.2-.6.2-.4 0-.7-.2-.9-.5 0-.1-1.1-1.6-3.2-1.6s-3.2 1.6-3.2 1.6c-.3.5-1 .7-1.5.3-.5-.3-.7-1-.3-1.5.1-.1 1.8-2.7 5.1-2.7 3.2.1 4.9 2.6 4.9 2.7zm-17.2-.9h-.2c-.2 0-.5-.1-.5-.4l-.1-.3c-.1-.3.1-.6.4-.7.3-.1.6.1.7.4l.1.3c.1.3-.1.6-.4.7zm5.6 6.2h-.1c-.1 0-2.9-.6-5.1-4.3-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2 2 3.3 4.4 3.8 4.4 3.8.3.1.5.3.4.6-.1.4-.3.5-.6.5zm8.1-12.2l-.1 3.5v.3c-.4-.1-.9-.2-1.4-.2-.6 0-1.1.1-1.6.2 0-.1-.1-.3 0-.4l.1-3.5c0-.9.7-1.5 1.6-1.5.7 0 1.4.7 1.4 1.6zM72.7 14c.1.3 0 .6-.3.7 0 0-2.4.9-3.6 3.3-.1.2-.3.3-.5.3-.1 0-.2 0-.2-.1-.3-.1-.4-.5-.2-.7 1.4-2.8 4.1-3.8 4.2-3.9.2-.1.5.1.6.4zM23.4 111.2c-1-.3-2-.6-2.9-.8-.8-1.5-2-4.7-2.1-9.3-.1-3.7 1.3-8.5 2.6-12.2 2.4-3.8 5.2-6.6 5.2-6.6.3-.3.3-.7 0-1-.3-.3-.7-.3-1 0-.1.1-1 .9-2.1 2.3.1-.1.1-.2.1-.2-4.4 5.1-7.1 10.6
-8.2 16.4-1 5.3-.2 9.7.6 12.4-.1.1-.1.2-.2.3v.1c0 .1-.1.1-.1.2v.4c0 .1 0 .2.1.3l3.9 10.1v1.3c.1 1 .7 1.9 1.6 2.5.2.1.5.2.7.3h.1c.2.1.5.1.7.1H23.3c-.4-2.2-.5-4.5-.5-6.6-.1 0-.2-.1-.2-.2l-.1-.1c-.3 0-.7.1-1 .2l-1-2.7-1-1.2c-.2-.2-.2-.6.1-.8.2-.2.6-.2.8.1l1.1 1.3 1.4 1c.1-1.2.1-2.3.2-3.3-1.6-.9-3.3-2-3.6-2.1-.3-.1-.4-.4-.3-.6v-.1c.1-.3.4-.4.7-.3.2.1 1 .5 1.9 1.1.4.1.9.3 1.4.4-.1-.9 0-1.9.2-2.7z" fill="#F9F9FA"/><path d="M64.4 121.4l.6-.4 1.4-.9 1.1-.7-.9-1c-.4-.4-.5-.6-.6-1l-.4-1.2-.2.1h-.3c-2.2.8-6.3 2-7.5 1.5-1.6-.6-1.6-2.8-1.6-2.8 0-.1-.1-.3-.1-.3-.1-.1-.2-.2-.4-.2-.3 0-.6.2-.6.6 0 .1 0 3 2.3 3.9.3.1.7.2 1.2.2.8 0 1.7-.1 2.6-.3l.9.7c.3.2.5.4.7.6.2.2.5.4.8.7.1.1.2.2.4.3l.6.2zm1.4-2.1l-1.3.8c-.9-.6-1.1-.9-1.9-1.5.9-.2 1.6-.3 2.4-.7.1.4.2.6.4.9.1.1.3.2.4.5z" fill="url(#p)"/><path d="M69.6 123.1l.9-2.1.8-1.8-1.9.2h-.6l-.3.2-.2.1c-.1 0-.1 0-.2.1l-4.5 2.8c-.1.1-.2.2-.3.4 0 0-.4 2.8-2.5 2.8-2.2 0-2.9-1-3.3-2.5-.1-.3-.3-.4-.6-.4h-.1c-.3.1-.5.4-.4.7.4 1.4 1.3 3.3 4.2 3.3h.2c2.2-.1 3.2-2.2 3.
5-3.5l1.6-1 .5.3.4.2c.4.2.7.4 1.1.6l.1.1 1 .5.6-1zm-1-.4c-.2-.1-.4-.2-.6-.4-.3-.2-.6-.3-.8-.5l1.9-1.2h.4l-.9 2.1z" fill="url(#q)"/><path d="M78.7 22.7l-.1 3.5v.4c.5-.1 1-.2 1.6-.2.5 0 .9.1 1.4.2v-.3l.1-3.5c0-.9-.7-1.6-1.5-1.6-.8-.1-1.5.6-1.5 1.5z" fill="url(#r)"/><path d="M80.2 27.1c-3.4 0-5 2.5-5.1 2.7-.3.5-.2 1.2.3 1.5.5.3 1.2.2 1.5-.3 0 0 1.1-1.6 3.2-1.6s3.2 1.6 3.2 1.6c.2.3.6.5.9.5.2 0 .4-.1.6-.2.5-.3.7-1 .3-1.5.2-.2-1.5-2.7-4.9-2.7z" fill="url(#s)"/><path d="M67.8 17.5c-.1.3 0 .6.2.7.1 0 .2.1.2.1.2 0 .4-.1.5-.3 1.2-2.4 3.6-3.3 3.6-3.3.3-.1.4-.4.3-.7-.1-.3-.4-.4-.7-.3 0 0-2.7 1-4.1 3.8z" fill="url(#t)"/><path d="M59.9 31.3c.1-.3 0-.6-.3-.7-.3-.1-.6 0-.7.3-.1.2-2.2 5.2.4 10.8.1.2.3.3.5.3.1 0 .2 0 .2-.1.3-.1.4-.5.3-.7-2.4-5.1-.4-9.8-.4-9.9z" fill="url(#u)"/><path d="M73.8 33.9s-2.4-.5-4.4-3.8c-.2-.3-.5-.3-.8-.2-.3.2-.4.5-.2.8 2.3 3.8 5 4.3 5.1 4.3h.1c.3 0 .5-.2.5-.5.2-.2 0-.5-.3-.6z" fill="url(#v)"/><path d="M68.5 28.1l-.1-.3c-.1-.3-.4-.4-.7-.4-.3.1-.4.4-.4.7l.1.3c.1.2.3.4.5.4h.2c
.3-.1.5-.4.4-.7z" fill="url(#w)"/><path d="M65 71.5s0-1.4-.4-2.6c0-.2-.1-.3-.2-.4-1.4.6-6.2 2.4-15.4 3.3-6.1.6-9.9-.8-11.5-1.6l-1.9 1.7s1.1 3.3 9.7 4.1c1.1.1 2.2.1 3.2.1 10.4 0 16.5-4.6 16.5-4.6z" fill="url(#x)"/><path d="M49 71.8c9.2-.9 14-2.7 15.4-3.3-.5-.9-1.7-1.4-1.7-1.4s-7.8 2.6-14.5 3c-.7 0-1.4.1-2.1.1-5.2 0-7.2-1.2-7.2-1.2l-1.4 1.3c1.6.7 5.4 2.1 11.5 1.5z" fill="#FFF"/><path d="M47.9 83.5c.3-.3.3-.8.1-1.2-.2-.4-.5-.6-1-.6l-7.8-.4c-.4 0-.8.2-1 .5l-.1.2-6.2 10.2c-.2.3-.2.7-.1 1.1.2.3.5.6.8.6l4.5.6-3.6 9.5c-.2.5 0 1 .4 1.3.2.1.4.2.6.2.3 0 .5-.1.8-.3l12.5-11.6 3.1-2.9c.3-.3.4-.8.3-1.2-.2-.4-.5-.7-1-.7l-2.3-.1-4.1-.2 4.1-5z" fill="url(#y)"/><path d="M77.3 148.2c-.5 1.6-2.3 2.8-5.6 3.7-3.5.9-6 .8-7.5-.3-.2-.2-.4-.3-.6-.5-1.1.7-1.6 1.7-1.3 2.4.5 1.4 3.5 2.3 9.2.9 8.2-2 9.3-4.8 9.5-5.6.1-.8-.2-1.2-.3-1.3-.5-.3-1.9-.5-3.2-.4-.1.3-.1.7-.2 1.1z" fill="#FFF"/><path d="M75.7 144.9c-.1 0-.2 0-.2.1-.4-.9-.8-1.9-1.4-3 1.3.1 2.7.1 4.1.1 13.4 0 28.1-4.3 30.4-7.7.6-.8.7-1.8.3-2.7-1.1-2.7-4.3-2.
9-9.2-3.2-5.7-.4-14.2-.9-24.5-5.2-.4-.2-.8-.3-1.1-.5 0-.1 0-.1.1-.2 0-.1.1-.2.1-.3l1.9-4.4c.2-.4.3-.9.3-1.3.5-1 .9-2 1.2-2.9.5 0 1 .1 1.5.1.7 0 1.3 0 1.8-.1s1-.2 1.3-.4c2.4-1.3 4.4-1.4 7.6-1.4 1.7 0 3.8-.1 6.5-.3 7.8-.8 12.9-6.6 12.9-10 .2-.9 3.9-3.5 6.1-5.1 4.5-3.2 6.8-4.9 6.5-6.6-.3-1.8-2.7-1.9-11.1-1.9-7.8-.1-18.4-.1-24.5-2.6-4.7-1.9-8.9-5-12.2-7.9-4-3.5-6.6-6.6-6.7-6.6 0-.1-.1-.1-.2-.1 0-.6-.2-1.5-.4-2.4-.3-1.1-1.1-1.9-1.7-2.4 1.3-2.8 2.8-5.7 4.4-8.6 2.5-1.4 4.9-2.8 7-4.4C89.2 50.6 98 41.8 98 31.6c0-10.4-9.4-19.4-22.3-21.6-6.1-4.1-13.5-6.4-20.9-6.4-3.8 0-7.6.6-11.3 1.7-3.4 1.1-6.8 2.7-10.1 4.9-.6-.1-1.2-.1-1.8-.1h-1.2c-2 0-4.1.2-6.1.6-1.6-.6-3.3-.9-5-.9-1.4 0-2.9.2-4.3.7-7.5 2.4-11.7 10.4-9.3 17.9.3 1 .7 1.9 1.3 2.9.8 3.2 2.8 6.1 5.7 8.5-.7 2.9-1 5.7-1 8.4.2 11.8 8.5 18.3 23.3 18.3 1.9 0 3.8-.1 5.9-.3-.3.3-.5.7-.7 1-.3-.1-.6-.2-.9-.2-.5 0-1.1.2-1.5.6l-3.3 3c-.3.3-.6.7-.7 1.1C22 79.9 15.1 89.3 13.2 99.8c-1 5.2-.4 9.6.4 12.6-.3.8-.3 1.7 0 2.5l3.7 9.6c-.2 2.1.8 4.2 2.7 5.4.8.5 1.7.
8 2.7.8.9 3 2.1 5.6 3.7 7.8.6 3.6 1.2 6.5 1.9 8.9-1.4.4-2.5 1.3-3.1 2.3-.4.7-.6 1.5-.5 2.3.1.4.3 1.2.9 1.9 3.4 5.5 7 11.8 7.1 12.9 0 .4-.2 1.1-.3 1.9-.5 2.4-1.1 5.5-.3 7.3.4 1.1 1.8 1.6 3.8 1.6h.5c3.2-.1 8.6-1.8 9.9-6 1.4-4.1 1.2-15.5 1.1-20.3v-1.2-.9-.1-.1c0-.1 0-.2-.1-.3v-.1c-.1-.3-.2-.6-.4-.8.8 0 1.6.1 2.4.1 3.7 0 7.5-.5 11.2-1.5.9 1.1 1.7 2.1 2.4 3.1-1.2.8-2 1.8-2.3 2.9-.2.7-.2 1.4 0 2.1 0 .1-.1.1-.1.2-.1.4 0 .8.2 1 4.2 5.2 8.7 11.3 9 12.4 0 .4-.1 1.1-.2 1.9-.3 2.5-.7 5.6.3 7.3.6 1.1 2.1 1.4 3.5 1.4.6 0 1.1-.1 1.6-.1 4-.5 8.5-2.8 9.5-6.5.7-2.6.5-8 .2-12.9.9-.5 1.8-1.3 2.2-2.4 1.6-4.2 0-7.3 0-7.4-.1-.2-.3-.3-.5-.3s-.4.1-.5.3c-.4.9-1 2.3-1.8 3.3-.2-1.9-.4-3.1-.4-3.3.2-1.6-.5-2.8-1.3-3.3l-.6-.3c-2.3-1.2-5.3-.9-6-.9zm5.7 13.8c-.3.1-.5.4-.4.7.1.3.4.5.7.4 0 0 .1 0 .3-.1.3 4.5.4 9.2-.2 11.4-.5 1.9-2.6 3.5-5.6 4.4-2.6.8-4.6.6-4.9.3-.6-1.1-.3-4.1 0-5.9.1-.6.1-1.1.2-1.5.7.2 1.3.3 1.9.3 1.7 0 2.8-.7 2.9-.8.3-.2.3-.5.2-.8-.2-.3-.5-.3-.8-.2 0 0-1.8 1.1-4.3.2-.6-1.8-3.6-6-6.8-10 .6.1 1.2.1 1.
9.1 1.5 0 3.3-.2 5.6-.8 4.9-1.2 7.7-2.7 9.3-4.2 0 .4.1.9.2 1.5-1.2.4-2.8.9-3.4 2.8-.7 2.4.8 4.1.9 4.2.1.1.3.2.4.2.1 0 .3 0 .4-.1.2-.2.2-.6 0-.8 0-.1-1.2-1.3-.6-3.1.4-1.4 1.6-1.8 2.8-2.1.2-.1.3-.1.5-.2 0 .1 0 .1.1.2.1.2.3.3.5.3.1 0 .2 0 .3-.1.6-.4 2.5-1.6 2.6-2.8 0-.3-.2-.6-.5-.6h-.1c.2-.3.3-.6.5-.9.3 1.2.4 3-.4 5.2-1.1 2-4.2 2.8-4.2 2.8zm-.8-11.2c.1.1.5.5.3 1.3-.1.8-1.2 3.6-9.5 5.6-5.7 1.4-8.7.5-9.2-.9-.2-.7.2-1.7 1.3-2.4.2.2.3.3.6.5 1.5 1 4 1.1 7.5.3 3.3-.8 5.1-2 5.6-3.7.1-.4.1-.8.1-1.1 1.4 0 2.8.1 3.3.4zM69.1 76c3.5 3.5 9.4 8.6 16.3 11.4 6.5 2.7 17.4 2.8 25.4 2.8 3.4 0 7.1 0 8.6.3-.9 1-3.5 2.9-5.3 4.2-2.7 1.9-4.7 3.3-5.8 4.6-9.9 1.2-15.8-1.2-15.9-1.2-.3-.1-.6 0-.7.3-.1.3 0 .6.3.7.2.1 4 1.6 10.8 1.6 1.4 0 3-.1 4.6-.2-.2.4-.3.7-.3 1.1 0 2.1-4.1 7.1-10.9 7.8-2.6.3-4.5.3-6.3.3-3.3.1-5.7.1-8.6 1.7-.5.3-1.5.4-2.8.3.3-1.1.5-1.8.5-1.8 1.7-8.1 1.1-20.1-9.9-33.9zM44.8 64.2c11.7-2.2 18.6-5 22-6.8-1.2 2.2-2.5 4.8-3.8 7.5h-.3c-.2 0-.5 0-.7.1-.1 0-7.6 2.5-13.9 2.9-.7 0-1.3.1-2 .1-1.7 0-3-.1-4-.
3.9-1.3 1.8-2.4 2.7-3.5zm3.7 11.9c-1 0-2.1 0-3.2-.1-8.5-.8-9.7-4.1-9.7-4.1l1.9-1.7 1.4-1.3s2.1 1.2 7.2 1.2c.6 0 1.3 0 2.1-.1 6.7-.4 14.5-3 14.5-3s1.1.5 1.7 1.4c.1.1.1.3.2.4.4 1.2.4 2.6.4 2.6s-6.1 4.7-16.5 4.7zM34.7 63.9h-2.3c-.6 0-1.3-.1-1.9-.1h-.3c-.5-.1-1.1-.1-1.6-.2-.1 0-.2 0-.4-.1-.6-.1-1.1-.2-1.7-.3-.1 0-.2-.1-.3-.1-.5-.1-1-.3-1.4-.4-.1 0-.2 0-.2-.1l-1.5-.6c-.1 0-.2-.1-.3-.1-.5-.2-.9-.4-1.3-.7h-.1c-.4-.2-.9-.5-1.3-.8-.1-.1-.2-.1-.3-.2l-1.2-.9-.1-.1-.9-.9c-.1-.1-.1-.2-.2-.2-.3-.4-.6-.7-.9-1.1-.1-.1-.1-.2-.1-.2-.2-.4-.5-.7-.7-1.1 0-.1-.1-.2-.1-.3-.2-.4-.4-.9-.6-1.4 0-.1-.1-.2-.1-.3-.2-.5-.3-.9-.4-1.4 0-.1 0-.1-.1-.2-.1-.5-.2-1.1-.3-1.7V50c-.1-.6-.1-1.2-.1-1.8v-2-.5c0-.7.1-1.3.2-2s.2-1.4.4-2.1c0-.1.1-.3.1-.4.1-.3.1-.6.2-.8.8-3.1 3-6.2 3-6.3.2-.3.1-.6-.1-.8-.1-.1-.3-.1-.5-.1-.1 0-.2.1-.3.2 0 .1-.7 1-1.4 2.3-.4.8-.9 1.7-1.3 2.7 0 0-.1 0-.1-.1l-.3-.3c-.3-.2-.5-.5-.8-.7l-.3-.3c-.2-.3-.5-.5-.7-.8-.5-.5-.9-1.1-1.2-1.7-.1-.2-.2-.4-.3-.5-.1-.2-.3-.5-.4-.7l-.3-.6c-.1-.2-.2-.5-.3-.7-.1-.2-.
2-.5-.2-.7-.1-.2-.1-.4-.2-.7-.2-.4-.5-.8-.6-1.2 0 0 0-.1-.1-.1-.2-.4-.4-.9-.5-1.3-.5-1.6-.6-3.1-.5-4.7.1-1.2.4-2.4.8-3.5.7-1.8 1.9-3.4 3.4-4.7.6-.5 1.2-1 1.9-1.3.7-.4 1.4-.7 2.2-1 .4-.1.7-.2 1.1-.3.1 0 .2 0 .3-.1.2 0 .5-.1.7-.1H19.4c1.7 0 3.3.4 4.8 1l1.5-.3h.2c.7-.1 1.4-.2 2.1-.2.4 0 .7-.1 1.1-.1h2.5c.2 0 .5 0 .7.1-.8.7-2.1 1.8-3.9 3.7-.9.9-1.8 2.1-3 3.4-.2.2-.2.5 0 .7l.1.1c.1.1.2.1.4.1s.3-.1.4-.2c5.3-6.5 7.6-7.7 7.7-7.7.8-.6 1.6-1.1 2.4-1.6.5-.3 1.1-.6 1.6-.9 2-1.1 4-2 6.1-2.6 3.6-1.1 7.2-1.6 10.6-1.6 7.6 0 14.5 2.4 20.1 6.3h.2c2.1.3 4.1.9 6 1.6.6.3 1.6.8 2.6 1.6 2.7 2 5.9 5.7 5.2 12-1.1 9.6-11.2 9.9-11.6 9.9-.1 0-.3.1-.4.1-5-.2-8.6-3.1-10.3-7.2-.5-1.9-.1-3.3-.1-3.5.1-.3-.1-.6-.4-.7-.3-.1-.6.1-.7.4 0 .2-.9 3.8 1.7 7.5 1.8 3.4 5.5 5.9 9.8 6.2 5.3.4 10-2.3 12-6.6.2-.1.3-.2.4-.4 1.7-3.3 2.2-6.2 2-8.7-.2-2.1-.8-4-1.7-5.6l.8.8c.4.4.8.9 1.2 1.3.5.5.9 1.1 1.3 1.7l.9 1.5c.2.4.5.9.7 1.4.8 1.9 1.3 4 1.3 6.2 0 1.8-.3 3.5-.9 5.1-.2.5-.4 1.1-.7 1.6-2.5 5.2-7.7 9.4-14.5 11.6-1 .3-2.1.6-3.2.8-4.9
.7-9.5-1.7-9.5-1.7-.3-.1-.6 0-.8.2-.1.3 0 .6.2.8.2.1 3.5 1.8 7.7 2-1.6 1.1-3.2 2.1-4.9 3.1-.1 0-.2 0-.3.1 0 0-.2.2-.7.5-.1.1-.2.1-.4.2-2.5 1.4-9.6 4.9-23.1 7.5-.5.1-1 .2-1.5.2-.1 0-.3 0-.4.1l-2.4.3h-.4c-.8.1-1.6.1-2.4.2h-.4c-.8 0-1.6.1-2.4.1v-.8zm9.2 106.6c-.9 2.8-4.7 3.9-5.8 4.2-2.5.6-4 .2-4.2 0-.5-1.2.1-4.2.4-6l.3-1.5c.8.3 1.5.4 2.1.4 1.4 0 2.3-.5 2.3-.6.3-.2.3-.5.2-.8-.2-.3-.5-.3-.8-.2 0 0-1.7 1-3.8-.1-.4-1.9-3.1-6.6-5.5-10.6 1.1.2 2.4.4 4 .4.6 0 1.2 0 1.9-.1 5.1-.3 8.1-1.4 9.8-2.7.2 5.6.1 14.4-.9 17.6zm.7-21.7c.1.1.3.6.1 1.2-.3.7-1.8 3.2-9.8 3.7-5.5.4-8.2-1-8.4-2.3-.1-.7.5-1.5 1.6-2 .1.2.3.4.4.6 1.2 1.2 3.6 1.8 7 1.5 3.2-.2 5.2-1 5.9-2.5.2-.3.3-.7.3-1 1.3.1 2.5.4 2.9.8zm16.2-5.3l-1.2.3c-.1 0-.3.1-.4.1-.3.1-.6.2-.9.2-.2 0-.3.1-.5.1-.3.1-.6.1-.9.2-.2 0-.3.1-.5.1-.3.1-.6.1-1 .2-.1 0-.3.1-.4.1-.4.1-.8.1-1.1.2h-.3c-1 .1-2 .2-3.1.3H49h-.1-.1c-1.5 0-3.1-.1-4.7-.3h-.2c-.8-.1-1.6-.2-2.4-.4h-.2l-2.4-.6v.1c-3.9-1.1-5.3-2.6-5.4-2.6-.2-.2-.6-.2-.8 0-.2.2-.2.6 0 .8.1.1 1.8 1.8 6.2 3v.1c0 1 .1
2 .1 3-.5.3-1.6.7-3.6.8-2.5.2-3.9-.1-4.7-.5-.9-2.6-1.7-6.2-2.3-9.8v-.1c-.1-.3-.1-.6-.2-1 0-.2-.1-.4-.1-.6-.9-1.2-1.7-2.5-2.3-3.9 0-.1-.1-.1-.1-.2-.3-.6-.5-1.2-.7-1.8-2.5-7.9-.5-19.1-.5-19.2.1-.3-.1-.6-.5-.6-.3-.1-.6.1-.6.5 0 .1-.2 1.1-.4 2.7-.5-.3-1-.6-1.4-.8-.9-.6-1.7-1-1.9-1.1-.3-.1-.6.1-.7.3v.1c-.1.3.1.5.3.6.2.1 2 1.1 3.6 2.1-.1 1-.2 2.1-.2 3.3v.7l-1.4-1.7-1.1-1.3c-.2-.2-.5-.3-.8-.1-.2.2-.3.5-.1.8l1 1.2 2 2.5.1.1.2.2c0 2.1.1 4.4.5 6.6h-.8-.1c-.2 0-.5-.1-.7-.1h-.1c-.2-.1-.5-.2-.7-.3-.9-.6-1.5-1.5-1.6-2.5v-.1-.5-.1-.3-.3l-3.9-10.1c0-.1-.1-.2-.1-.3v-.1-.2-.1c0-.1 0-.1.1-.2v-.1c.1-.1.1-.2.2-.3-.8-2.8-1.5-7.1-.6-12.4 1.1-5.8 3.8-11.3 8.2-16.4 2.9-3.4 6.5-6.6 10.9-9.7.7 1 2.1 2.3 5 3.3 1.5.5 3.5 1 6 1.2 1.1.1 2.2.1 3.2.2h.2c2.4 0 4.6-.2 6.5-.6.4.5 1.1 1.2 2 2.4-2.7 9.6-2.5 18.7-1 26.8v.1c.1.6.2 1.2.4 1.8 0 .2.1.4.1.6.1.4.2.9.3 1.3.1.3.1.5.2.8.1.3.2.6.2.9.1-.1.2-.2.3-.2.2-.1.5-.2.7-.3h.2c.2 0 .4-.1.5-.1h.2c.2 0 .5 0 .7.1h.1c.3.1.5.2.7.3.1 0 .1.1.2.1.2.1.3.2.5.4l.2.2c.2.2.4.4.5.7.3.5.4
1 .4 1.6.7-.2 1.5-.4 2.3-.5.1-.2.2-.5.4-.7 0-.1.1-.1.1-.1.1-.2.3-.4.5-.6.1-.2.4-.6.7-1.2.1-.2.2-.5.4-.7 2.1-4.5 5.1-16.4-9.3-32-.6-.8-1.1-1.4-1.5-1.8 3.1-.7 5.6-1.7 7.3-2.6.5-.2.9-.4 1.2-.6 4.6 5.2 9.2 11.8 11.3 19.4 1.4 4.9 1.8 10.2.6 15.7 0 0-.1.5-.3 1.3-.4 1.4-1.1 3.6-2.2 5.6v.5c0 .1 0 .2-.1.3l-2.7 6.2c-.4.8-1 2.1-1.4 3.1-.1.3-.2.6-.3.8 0 .2-.1.3-.1.4 0 .1-.1.6-.4 1.1-.3.4-.7.9-1.3 1.3-.3.2-.6.3-.9.4h-.3c-.3 0-.5 0-.8-.1-.2-.1-.3-.1-.5 0-1.8-.6-2.1-2.4-2.1-2.5 0-.3-.2-.4-.5-.5h-.1c-.3 0-.5.3-.5.6.1.8.7 2.4 2.3 3.2-.1.5.2 1.1.7 1.3.5.2 1 .3 1.5.3.8 0 1.7-.2 2.5-.7 1.5-.9 2.6-2.6 2.7-3.6.1-.4.6-1.9 1.3-3.5.4.2.8.3 1.2.5 8.5 3.5 15.9 4.6 21.4 5.1h.2c6.3.5 10.2.3 10.9 2.1V133.5c0 .1 0 .1-.1.2 0 0 0 .1-.1.1 0 .1-.1.1-.1.2l-.1.1-.2.2-.1.1c-.1.1-.2.2-.3.2 0 0-.1 0-.1.1-.2.1-.3.2-.5.3-.1 0-.1.1-.2.1-.1.1-.3.2-.4.2-.1 0-.2.1-.2.1-.1.1-.3.1-.4.2-.1 0-.2.1-.3.1-.2.1-.3.1-.5.2-.1 0-.2.1-.3.1-.2.1-.4.2-.6.2-.1 0-.2.1-.2.1l-.9.3c-.1 0-.1 0-.2.1-.3.1-.5.2-.8.3-.1 0-.2.1-.4.1-.2.1-.5.1-.7.2-.1 0
-.3.1-.4.1-.2.1-.5.1-.7.2-.1 0-.3.1-.4.1-.3.1-.5.1-.8.2-.1 0-.3.1-.4.1l-1.2.3h-.1l-1.2.3c-.1 0-.3.1-.4.1-.3.1-.6.1-.9.2-.2 0-.3.1-.5.1-.3.1-.6.1-.9.2-.2 0-.4.1-.5.1-.3.1-.6.1-.9.1-.2 0-.3.1-.5.1-.4.1-.8.1-1.1.2h-.3c-.5.1-1 .1-1.4.2h-.4c-.3 0-.7.1-1 .1h-.5c-.3 0-.6.1-1 .1h-.6c-.3 0-.6 0-1 .1h-6c-.5 0-.9 0-1.4-.1h-.6c-.4 0-.9-.1-1.3-.1-.2 0-.4 0-.6-.1-.2 0-.4-.1-.6-.1-1.5-2.5-2.6-4.3-2.6-4.3-.2-.3-.5-.4-.8-.2-.3.2-.4.5-.2.8 0 0 1.6 2.7 3.7 6.1.9 1.7 1.7 3.3 2.2 4.7l.6 1.8c-.6.4-1.6.9-3.3 1.3-2.8.7-4.4.6-5.3.3-1.4-2.6-3.1-4.9-4.6-6.8zm3.7-32c-.1.1-.1.2-.2.3l-.3.3c-.2-.3-.5-.6-.7-.9l1.2.3zm1-2c-2.4-.6-4.8-1.2-7-1.8-1.7-8.3-1.7-16.4 0-24.2 10.1 12.4 8.6 21.7 7 26z" fill="url(#z)"/><path d="M35 155.9c-.7 0-1.3.1-1.9.1-1.6 0-3-.2-4-.4 2.4 4 5 8.7 5.5 10.6 2.2 1.1 3.8.1 3.8.1.3-.2.6-.1.8.2.2.3.1.6-.2.8-.1 0-1 .6-2.3.6-.6 0-1.3-.1-2.1-.4-.1.4-.2.9-.3 1.5-.3 1.8-.9 4.8-.4 6 .2.2 1.8.5 4.2 0 1.1-.3 4.8-1.3 5.8-4.2 1.1-3.2 1.1-12 1-17.3-1.8 1-4.7 2-9.9 2.4z" fill="url(#A)"/><path d="M41.5 148.8
c-.8 1.5-2.7 2.3-5.9 2.5-3.4.2-5.8-.3-7-1.5-.2-.2-.3-.4-.4-.6-1.1.5-1.7 1.3-1.6 2 .2 1.4 2.9 2.7 8.4 2.3 8-.5 9.5-2.9 9.8-3.7.2-.6 0-1.1-.1-1.2-.4-.4-1.6-.7-2.8-.9-.1.5-.2.8-.4 1.1z" fill="#FFF"/><path d="M85.3 156c.8-2.2.7-4.1.4-5.2-.1.3-.3.6-.5.9h.1c.3 0 .5.3.5.6-.2 1.1-2.1 2.4-2.6 2.8-.1.1-.2.1-.3.1-.2 0-.4-.1-.5-.3 0-.1-.1-.1-.1-.2-.2.1-.3.1-.5.2-1.1.4-2.3.7-2.8 2.1-.6 1.7.6 3 .6 3.1.2.2.2.6 0 .8-.1.1-.2.1-.4.1s-.3-.1-.4-.2c-.1-.1-1.6-1.8-.9-4.2.6-1.9 2.2-2.4 3.4-2.8-.1-.5-.1-1-.2-1.5-1.6 1.5-4.4 3-9.3 4.2-2.3.6-4.1.8-5.6.8-.7 0-1.3-.1-1.9-.1 3.2 4.1 6.2 8.2 6.8 10 2.5 1 4.3-.2 4.3-.2.3-.2.6-.1.8.2.2.3.1.6-.2.8-.1 0-1.2.8-2.9.8-.6 0-1.2-.1-1.9-.3 0 .4-.1 1-.2 1.5-.2 1.8-.6 4.8 0 5.9.3.3 2.3.5 4.9-.3 3-.9 5.1-2.6 5.6-4.4.6-2.2.5-6.9.2-11.4-.2 0-.3.1-.3.1-.3.1-.6-.1-.7-.4-.1-.3.1-.6.4-.7.3-.1 3.4-.9 4.2-2.8z" fill="url(#B)"/></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/figure_private.svg b/browser/extensions/onboarding/content/img/figure_private.svg
deleted file mode 100644
index f90163e4b4d7..000000000000
--- a/browser/extensions/onboarding/content/img/figure_private.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="289" height="237" viewBox="0 0 289 237" xmlns="http://www.w3.org/2000/svg"><title>private-browsing</title><defs><linearGradient x1="12.376%" y1="17.359%" x2="82.943%" y2="91.352%" id="a"><stop stop-color="#E60024" offset="0%"/><stop stop-color="#ED00B5" offset="51.53%"/><stop stop-color="#8000D7" offset="100%"/></linearGradient><linearGradient x1="-3.914%" y1=".14%" x2="98.417%" y2="106.522%" id="b"><stop stop-color="#E60024" offset="0%"/><stop stop-color="#ED00B5" offset="51.53%"/><stop stop-color="#8000D7" offset="100%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><path d="M-30-29h352v303H-30z"/><g fill-rule="nonzero"><g><ellipse fill="#EDEDF0" cx="226.9" cy="229.8" rx="54.2" ry="6.7"/><g fill="#D7D7DB"><path d="M195.6 79.5h-76.5c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h76.5c.6 0 1.1.5 1.1 1.1 0 .6-.4 1.1-1.1 1.1zM148.7 73.8h-19.2c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h19.2c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zM260.7 84.5h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0
.6.2.6.6 0 .4-.3.6-.6.6zm-5.6 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-12.3 0h-13.4c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-23.4 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-5.6 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-12.3 0h-13.4c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.2.6-.6.6zm-23.4 0H177c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-5.6 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-12.2 0h-13.4c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6z"/></g><g transform="translate(171 26)"><path d="M31.5 4.5c0 .1 0 .1-.1.2l-3.7.6-2.3.4c-.1 0-.1 0-.2-.1l-.7-4.2c0-.1 0-.1.1-.2l6-.9c.1 0 .1 0 .2.1l.7 4.1z" fill="#D7D7DB"/><path d="M35 26.7L5.2 31.4c-.8.1-1.5-.4-1.7-1.2L.2 9.2c-.1-.8.4-1.5 1.2-1.7l29.8-4.7c.8-.1 1.5.4 1.7 1.2l3.3 21c.1.8-.4 1.5-1.2 1.7z" fill="#D7D7DB"/><path d="
M32.1 9.4s-.1.1 0 0l-4.8.8h-.1l-.3-1.9s0-.1.1-.1l4.7-.7h.1l.3 1.9z" fill="#F9F9FA"/><circle transform="rotate(-8.946 119.14 -7.38)" cx="2.592" cy="2.794" r="1.7" fill="#F9F9FA"/><circle transform="rotate(-8.946 52.95 -31.036)" cx="11.1" cy="10.705" r="9.3" fill="#F9F9FA"/><path d="M17.2 10.9c-3.2.5-5.4 3.5-4.9 6.7s3.5 5.4 6.7 4.9 5.4-3.5 4.9-6.7c-.5-3.3-3.5-5.4-6.7-4.9z" fill="#D7D7DB"/><circle fill="#F9F9FA" transform="rotate(-8.946 19.487 14.795)" cx="19.487" cy="14.795" r="1.1"/></g><g transform="translate(46)"><path d="M30.4 4.8c0 .1 0 .1-.1.1l-3.6.3-2.2.2c-.1 0-.1 0-.1-.1L24 1.2c0-.1 0-.1.1-.1l5.8-.5c.1 0 .1 0 .1.1l.4 4.1z" fill="#D7D7DB"/><path d="M32.3 26.2L3.5 28.7c-.8.1-1.4-.5-1.5-1.3L.2 7.1c-.1-.8.5-1.4 1.3-1.5l28.8-2.5c.8-.1 1.4.5 1.5 1.3l1.8 20.3c0 .7-.6 1.4-1.3 1.5z" fill="#D7D7DB"/><path d="M30.6 9.4c0 .1 0 .1 0 0l-4.7.5c-.1 0-.1 0-.1-.1l-.2-1.9s0-.1.1-.1l4.6-.4c.1 0 .1 0 .1.1l.2 1.9z" fill="#F9F9FA"/><circle transform="rotate(-4.97 187.782 -12.435)" cx="2.497" cy="2.6
01" r="1.7" fill="#E1E1E6"/><circle transform="rotate(-4.97 70.888 -67.624)" cx="9.799" cy="10.501" r="8.9" fill="#F9F9FA"/><path d="M16.3 9.9c-3.1.3-5.4 3-5.1 6.1.3 3.1 3 5.4 6.1 5.1 3.1-.3 5.4-3 5.1-6.1-.3-3.1-3-5.4-6.1-5.1z" fill="#D7D7DB"/><circle fill="#F9F9FA" transform="rotate(-4.97 18.195 13.8)" cx="18.195" cy="13.8" r="1"/></g><path d="M170.8 55.2h24.5s-7.7-17.2 8.6-19.4c14.5-2 20.3 13 20.3 13s1.7-8.6 10.4-7c8.5 1.6 14.8 15.3 14.8 15.3h21.4" fill="#F9F9FA"/><path d="M271.2 53.1h-8.6c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h8.6c.3 0 .6.2.6.6 0 .3-.3.6-.6.6zm-18.6 0h-1.1c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h1.1c.3 0 .6.2.6.6-.1.3-.3.6-.6.6zm-56.9-.7h-2.2c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h1.4c0-.1-.1-.2-.1-.3-.1-.3 0-.6.3-.7.3-.1.6 0 .7.3.2.6.4 1 .4 1 .1.2.1.4 0 .5-.1.3-.3.4-.5.4zm-11.1 0h-13.4c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm63.8-1.8c-.2 0-.4-.1-.5-.3-.6-1-1.2-1.9-1.9-2.7-.2-.2-.1-.6.1-.8.2-.2.6-.1.8.1.7.9 1.3 1.8 1.9 2.8.2.3.1.6-.2.8 0 .1-.1.1-.2.1zm-5
4.2-3.5c-.3 0-.5-.2-.5-.5-.1-.4-.1-.7-.2-1.1 0-.3.2-.6.5-.6s.6.2.6.5c0 .4.1.7.2 1.1 0 .2-.2.5-.6.6zm28.8-4.2c-.2 0-.4-.1-.5-.3l-.6-.9c-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.2.3.4.7.6 1 .2.3.1.6-.2.8-.1-.1-.2 0-.3 0zm17.3-1.4c-.1 0-.2 0-.3-.1-1.7-1.2-3.4-2-5.1-2.4-.7-.1-1.4-.2-2-.2-1.8 0-3.3.5-4.6 1.5-.2.2-.6.2-.8-.1-.2-.2-.2-.6.1-.8 1.5-1.2 3.3-1.8 5.3-1.8.7 0 1.5.1 2.2.2 1.8.4 3.7 1.2 5.6 2.5.2.2.3.5.1.8-.1.3-.3.4-.5.4zm-20.7-3.1c-.1 0-.3-.1-.4-.2-.8-.8-1.6-1.5-2.4-2.1-.2-.2-.3-.5-.1-.8.2-.2.5-.3.8-.1.9.7 1.8 1.4 2.6 2.3.2.2.2.6 0 .8-.2.1-.3.1-.5.1zm-23.1-1.8c-.1 0-.3 0-.4-.2-.2-.2-.2-.6 0-.8 1.8-2 4.6-3.2 8.2-3.7 1.6-.2 3.2-.2 4.7-.1.3 0 .5.3.5.6s-.3.5-.6.5c-1.4-.2-2.9-.1-4.5.1-3.3.5-5.9 1.6-7.5 3.4-.1.1-.2.2-.4.2z" fill="#D7D7DB"/><path d="M271.9 57.4H170.8c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1H272c.6 0 1.1.5 1.1 1.1-.1.6-.6 1.1-1.2 1.1z" fill="#F9F9FA"/><g><path d="M26.5 27h13.7s-4.3-9.5 4.8-10.8c8.1-1.1 11.3 7.2 11.3 7.2s1-4.8 5.8-3.9c4.7.9 8.2 8.5 8.2 8.5h11.9" fill="#F9F9FA"/><pat
h d="M40.3 25.5H26.9c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm41.5-.2h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-5.6 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-19.6-3.4c-.2 0-.4-.1-.5-.4 0 0-.1-.4-.4-.9-.1-.3 0-.6.2-.8.2-.1.4-.1.6 0 .7-1.5 2.2-3.2 4.7-3.2.4 0 .8 0 1.3.1 1.4.3 2.9 1 4.3 2.2.2.2.3.6.1.8-.2.2-.6.3-.8.1-1.3-1.1-2.5-1.7-3.8-2-.4-.1-.7-.1-1.1-.1-3.3 0-4 3.4-4 3.5 0 .2-.2.4-.4.4-.1.3-.1.3-.2.3zm-16-4.8c-.1 0-.2 0-.3-.1-.3-.2-.3-.5-.1-.8.7-1 1.7-1.7 2.9-2.1.3-.1.6 0 .7.3.1.3 0 .6-.3.7-1 .4-1.8 1-2.4 1.7-.2.3-.4.3-.5.3zm8.1-2.3h-.1c-.3-.1-.7-.1-1-.1-.3 0-.5-.3-.5-.6s.3-.5.6-.5c.4 0 .8.1 1.2.2.3.1.5.4.4.7-.1.1-.3.3-.6.3z" fill="#D7D7DB"/><path d="M83 29.3H26.7c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1H83c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1z" fill="#F9F9FA"/></g><g><path d="M6.5 172.2c-2.8 0-5-2.1-5-4.8v-118c0-2.9 2.4-5.3 5.3-5.3h126.7c2.9 0 5.3 2.4 5.3 5.3v118c0 2.6-2.3 4.8-5 4.8H6.5z" f
ill="#FFF"/><path d="M133.5 45.1c2.3 0 4.2 1.9 4.2 4.2v118c0 2-1.8 3.7-3.9 3.7H6.5c-2.2 0-3.9-1.6-3.9-3.7V49.4c0-2.3 1.9-4.2 4.2-4.2h126.7v-.1zm0-2.2H6.8c-3.6 0-6.5 2.9-6.5 6.5v118c0 3.3 2.8 5.9 6.2 5.9h127.3c3.4 0 6.2-2.6 6.2-5.9v-118c0-3.6-2.9-6.5-6.5-6.5z" fill="#D7D7DB"/><path d="M133.1 66.2v99.1c0 1-.1 1.2-.1 1.2s-.3.1-1.2.1H8.5c-1 0-1.2-.1-1.2-.1s-.1-.3-.1-1.2V66.2h125.9zm1.2-1.1H6.1v100.2c0 2.1.4 2.5 2.5 2.5h123.3c2.1 0 2.5-.4 2.5-2.5V65.1h-.1z" fill="#D7D7DB"/><g fill="#D7D7DB"><circle cx="3.6" cy="3" r="2.9" transform="translate(10 52)"/><circle cx="2.9" cy="3" r="2.9" transform="translate(20 52)"/><path d="M102 58.3H38.3c-1.7 0-3.1-1.4-3.1-3.1v-.3c0-1.7 1.4-3.1 3.1-3.1H102c1.7 0 3.1 1.4 3.1 3.1v.3c0 1.7-1.4 3.1-3.1 3.1z"/><g><circle cx="3.5" cy="3" r="2.9" transform="translate(114 52)"/><circle cx="3.7" cy="3" r="2.9" transform="translate(123 52)"/></g></g><path d="M88.2 127.5c-7.2 0-12.1-8.6-19-8.6s-12.2 8.6-19 8.6c-8.8 0-15.4-8.3-15.5-22.6-.1-8.9 2.6-11.7 14.1-11.7s14.8
4.7 20.4 4.7c5.6 0 8.9-4.7 20.4-4.7 11.5 0 14.1 2.8 14.1 11.7-.1 14.3-6.7 22.6-15.5 22.6zm-33.8-23.4c-7 .3-9.8 4.4-9.8 5.5 0 1 4.6 3.9 9.1 3.9s9.8-1.7 9.8-3.1c.1-1.7-2.5-6.6-9.1-6.3zm29.6 0c-6.6-.3-9.1 4.6-9.1 6.2 0 1.5 5.3 3.1 9.8 3.1 4.5 0 9.1-2.9 9.1-3.9 0-.9-2.8-5.1-9.8-5.4z" fill="#D7D7DB"/></g></g><path d="M215.6 218.3c.2.5.4.9.6 1.4.4.9.8 1.6 1.2 2.2-.4-.6-.7-1.4-1.2-2.2-.2-.5-.4-.9-.6-1.4z" fill="#FFF"/><g transform="translate(78 151)"><ellipse fill="#EDEDF0" cx="25.2" cy="77.6" rx="21.9" ry="4.3"/><circle fill="#D7D7DB" cx="24.7" cy="37.4" r="6.9"/><path d="M30.2 80.7c-.6 0-1-.4-1.1-1l-4.6-39.3c-4.8 15.4-10.8 34.9-11 36.3 0 .6-.5 1.1-1.1 1.1-.6 0-1.1-.5-1.1-1.2 0-1.3 8.8-29.7 12.7-41.9.2-.5.7-.8 1.2-.8s.9.5 1 1l5.3 44.5c.1.6-.4 1.2-1 1.2-.2.1-.3.1-.3.1z" fill="#D7D7DB"/><path d="M35 75.4c-.5 0-1-.3-1.1-.8L23.8 35.3c-.2-.6.2-1.2.8-1.4.6-.2 1.2.2 1.4.8L36.1 74c.2.6-.2 1.2-.8 1.4H35zM38.9 5.7c0 .1 0 .2-.1.2l-4.6.9-2.8.6c-.1 0-.2 0-.2-.1l-1-5.3c0-.1 0-.2.1-.2L37.7.3c.1 0 .2 0 .
2.1l1 5.3z" fill="#D7D7DB"/><path d="M44.4 33.2l-37 7.3c-1 .2-1.9-.4-2.1-1.4L.1 13c-.2-1 .4-1.9 1.4-2.1l37-7.3c1-.2 1.9.4 2.1 1.4l5.2 26.1c.2 1-.4 1.9-1.4 2.1z" fill="#D7D7DB"/><path d="M39.5 9.7c0 .1 0 .1-.1.1L33.5 11c-.1 0-.1 0-.2-.1l-.6-3.2c0-.1 0-.1.1-.1l5.9-1.2c.1 0 .1 0 .2.1l.6 3.2z" fill="#F9F9FA"/><circle transform="rotate(-11.21 127.568 -5.075)" cx="3.292" cy="3.304" r="2.2" fill="#F9F9FA"/><circle transform="rotate(-11.21 54.056 -27.865)" cx="13.892" cy="14.489" r="11.7" fill="#F9F9FA"/><path d="M21.4 14.3c-4 .8-6.5 4.6-5.8 8.6.8 4 4.6 6.5 8.6 5.8 4-.8 6.5-4.6 5.8-8.6-.7-4-4.6-6.6-8.6-5.8z" fill="#D7D7DB"/><path d="M21.8 16.1c-2.9.6-4.8 3.4-4.3 6.4.6 2.9 3.4 4.8 6.4 4.3 2.9-.6 4.8-3.4 4.3-6.4-.6-3-3.5-4.9-6.4-4.3zm2.9 4.4c-.7.1-1.4-.3-1.6-1-.2-.7.3-1.4 1-1.6.7-.1 1.4.3 1.6 1 .2.7-.3 1.4-1 1.6z" fill="#F9F9FA"/></g><g><path d="M281 118c.4-.9 1.4-1.3 2.3-.9.2.1.4.2.5.4-.1-.2-.3-.3-.5-.4-.2-.1-.5-.2-.7-.2-.7 0-1.3.4-1.6 1.1l-.1.1.1-.1zM265.6 124.8c0 .1 0 .1.1.2h-.1.1c0-.1-.1-
.2-.1-.2zM277.6 116.2c.1-.9.9-1.7 1.8-1.6.4 0 .6.2.8.4-.2-.2-.4-.3-.8-.4h-.1c-.9 0-1.6.7-1.7 1.6 0 0 0 .5-.1 1.2.1-.7.1-1.1.1-1.2zM179.4 147.8c-.4-.1-.7-.3-1-.6.2.3.6.5 1 .6zM184.1 82.5c2.8-1.7 11.1.7 17.1 3.9 1.5.8 3.4 1.9 5.1 3.4 3-1.1 6.5-2.1 10.9-2.9 4.4-.8 8.2-1 11.4-.8 1.2-2 2.6-3.8 3.8-5.1 4.6-5.1 11.6-10.1 14.7-9.5 3.7.7 10.7 12.6 10.2 25.1l.1.1c.5-12.6-6.5-24.6-10.3-25.3-.2 0-.4-.1-.6-.1-3.5 0-9.9 4.8-14.2 9.6-1.2 1.3-2.6 3.1-3.8 5.1h-1.7c-2.8 0-5.9.2-9.5.9-4.3.8-7.9 1.8-10.8 2.9-1.8-1.4-3.7-2.6-5.2-3.4-4.6-2.5-10.6-4.5-14.4-4.5-1.2 0-2.1.2-2.8.6-3.3 2-5.8 15.5-1.1 27.1 0-.1.1-.1.1-.2-4.7-11.6-2.3-25 1-26.9zM272.8 116.3c-.5-.9-.1-2.1.8-2.5.9-.5 1.6.7 2.1 1.3.5.5.9.7 1.3 1.4-.4-.7-.8-.8-1.3-1.4-.4-.5-1-1.4-1.7-1.4-.1 0-.3 0-.4.1-.9.4-1.3 1.6-.8 2.5l1.4 2.9.6 1.3-.6-1.3-1.4-2.9zM266.8 122.7c.7-.3 1.2-.9 1.6-1.2.7-.5 2.4-.8 3.3-.6 1 .2 2 .4 2.8.8-.9-.4-1.8-.6-2.8-.8h-.5c-.9 0-2.2.3-2.8.7-.4.2-.9.8-1.6 1.1-.3.1-.6.3-.9.5.3-.2.6-.4.9-.5zM180.6 127.8c0 .3.1.6.1.9.1.6.2 1.2.4 1.7-
.1-.6-.3-1.1-.4-1.7 0-.4 0-.7-.1-.9zM183.5 110.6c0 .1-.1.1-.1.2-.1.2-.1.3-.2.5.1-.2.2-.5.3-.7zM206.3 174.4c-1.3 3.9-2.3 7.7-2.9 11.2.6-3.6 1.6-7.6 3-11.5-.1.2-.1.2-.1.3zM166.4 141.2c-.3-.4-.3-.7-.7-1.3.4.6.4.9.7 1.3zM168.8 133.7h-.2c.3 0 .6 0 .8.1-.1-.1-.4-.1-.6-.1zM171 135.2c.2-1 .6-1.3.9-2 .3-.7.6-2 1.7-1.9.5.1.9.4 1.2.8-.3-.4-.7-.7-1.2-.8h-.2c-.9 0-1.2 1.2-1.5 1.9-.4.7-.8.9-.9 2 0 .2-.1.4-.1.7 0-.3 0-.5.1-.7zM167.8 137.6c-.1-.5-.1-1.2-.2-1.8-.2-.9-.3-1.6.6-2 .1 0 .1 0 .2-.1h-.2c-.9.3-.8 1.1-.6 2 .1.7.1 1.3.2 1.9l-.1-.1c-.3-.4-.8-.6-1.3-.6h-.2c.5-.1 1.1.1 1.5.6l.1.1zM199.5 161.1l-.2.2c-.5.4-1.2.7-1.8.7-.8 0-1.6-.4-2.2-1-.1-.1-2.7-3.3-4.4-7.2-.6-1.5-1.2-3-1.7-4.4-.4.9-.8 1.7-1.4 2.4.1.3.1.6.1.9 0 .3.5 6.4 6.5 8.9 1.8.8 3.6 1.1 5.4 1.1 3.3 0 6-1.2 7.9-2.4-2.8.5-5.5.8-7.5.8h-.7zM171.2 146.5s.1 0 0 0c.1 0 0 0 0 0zM259.3 150.6c-1.4.6-3.2 1.1-5.1 1.5 1.9-.1 3.7-.5 5.4-1.3-.2-.1-.2-.2-.3-.2zM266.1 138.4c-.1-.3-.1-.6-.2-1-.2-.1-.4-.3-.6-.5 0 1.3-.1 2.6-.1 3.9-.1 2.4-.6 4.6-1 6.2 2.9-3.9 1
.9-8.4 1.9-8.6zM172.9 149.4c.1.3.3.5.5.7-.2-.2-.4-.5-.5-.7zM185 139.2l-.6.1.6-.1zM180.7 137.2c.5.1 1.2.6 1.9.6.5.1 1.2.1 1.6.7-.4-.6-1-.6-1.6-.7-.7-.1-1.4-.5-1.9-.6-.3-.1-.6-.1-.9-.1-.9 0-1.9.2-2.4.5-.6.3-1.1.6-1.6 1 .5-.4 1.1-.7 1.6-1 .8-.5 2.5-.7 3.3-.4zM165.3 137.3c.1-.1.1-.1.2-.1-.1 0-.2 0-.2.1-.6.5-.6 1.2-.1 1.9-.5-.7-.5-1.3.1-1.9zM154.9 192c0-.2.1-.3.2-.5.3-.2 4.6-3.8 12.5-6.1.1-.2.2-.3.4-.4.3-.1.6-.1.9 0 2.2-.6 4.7-1 7.5-1.3l.3-.3c.5-.3 1.1-.2 1.4.2.3 0 .7-.1 1-.1 2.2-.1 4.3 0 6.3.1.3-.2.6-.3.9-.3.1 0 .3.1.6.3 3 .2 5.6.7 7.8 1.2.4-.4 1-.4 1.4-.1 0 0 .3.2.6.6 2.7.7 4.5 1.4 5.5 1.9v-.1c-.9-.4-2.7-1.1-5.3-1.8-.4-.4-.7-.6-.7-.7-.2-.2-.5-.3-.8-.3-.3 0-.6.1-.9.4-2.1-.5-4.7-.9-7.6-1.1-.3-.3-.5-.4-.7-.4h-.2c-.3 0-.6.1-.9.3-1.2-.1-2.5-.1-3.8-.1H179c-.3 0-.6 0-.9.1-.2-.3-.6-.5-1-.5-.2 0-.4.1-.7.2-.2.1-.3.2-.4.4-2.6.2-5.1.7-7.3 1.2-.2-.1-.4-.2-.6-.2-.2 0-.3 0-.5.1s-.4.3-.5.5c-7.8 2.3-12.1 5.9-12.4 6.1.2.3.1.5.2.7-2.4 1.7-4.1 3.7-4.5 5.9-.1.5-.1 1.1-.1 1.6 0-.5 0-1 .1-1.6.5-2.2 2.2-4.2 4
.5-5.9zM246.5 220.3c.1-1.9.2-5.6.3-9.1-.1 3.4-.2 7.2-.3 9.1 0 1 0 1.8.2 2.3-.1-.6-.2-1.4-.2-2.3zM208.9 217.4c.2.5.4.9.6 1.4.4.9.8 1.6 1.2 2.2-.4-.6-.7-1.4-1.2-2.2-.2-.4-.4-.9-.6-1.4z" fill="#FFF"/><path d="M285.4 113.6c-.4-.2-.7-.3-1.1-.4-1.3-2.1-3.4-2.4-4.3-2.5h-.5c-.6 0-1.2.1-1.8.3-.8-.6-2-1.2-3.4-1.2-.8 0-1.6.2-2.4.6-.7.3-1.2.7-1.7 1.2-1.3-5.5-4.1-10.6-8.1-14.9.3-13.8-7.2-27.9-13.9-29.2-.5-.1-1-.1-1.5-.1-6 0-13.9 7-17.6 11.1-.8.9-1.9 2.2-2.9 3.6-3.1 0-6.3.4-9.6.9-3.3.6-6.4 1.3-9.3 2.3-1.4-1-2.8-1.8-3.8-2.3-4.3-2.3-11.2-5-16.5-5-2.1 0-3.8.4-5.1 1.2-5.8 3.5-8.1 19.3-3.1 32.2-2.3 5.4-3.1 11.2-2.5 16.8-.6-.3-1.2-.5-1.9-.6-.3-.1-.6-.1-.9-.1-1.4 0-3.1.5-4.5 2.4-.8 0-1.5.1-2.2.4-.8.3-2.7 1.3-3.3 3.6-.3.2-.6.4-.9.7-2.1 1.8-3 5.1-.3 8.4v.1c.2.4.5 1.1 1.1 1.9.1.1.3.4.6.7 1 1.2 1.8 2.1 2.3 2.7l.7.7.6.6c.4 1 .9 1.8 1.5 2.6.1.1.2.3.3.4.2.3.4.5.5.8 1.4 1.9 2.9 3.2 4.5 4.2 1.1 4.9 4.5 13.3 14.6 17.6 3.6 1.5 7.3 2.3 11.1 2.3h.9c-.5 1.6-.8 3.1-1.2 4.6-.1 0-.2-.1-.3-.1-.1-.1-.1-.1-.2-.1-1-.8-2.3-1
.3-3.6-1.3-.5 0-.9.1-1.4.2-1.8-.3-3.7-.6-5.6-.8-.4-.2-.9-.4-1.3-.5-.4-.1-.7-.1-1.1-.1-.6 0-1.2.1-1.8.3-1 0-1.9-.1-2.9-.1h-2.1c-.7-.3-1.4-.4-2.1-.4-1 0-2 .3-2.8.8-1.9.2-3.7.5-5.5 1h-.6c-.8 0-1.6.2-2.4.5-.4.2-.7.4-1 .6-7.9 2.5-12.4 6.2-12.9 6.6-.4.3-.8.7-1 1.2-2.8 2.3-4.5 4.9-5.1 7.7-1.3 6.3 3.3 12.9 12.1 17.4.2.4.5.9.8 1.2 1.1 1.3 2.7 2 4.3 2 .7 0 1.3-.1 1.9-.3 2.3.7 4.7 1.3 7.1 1.6l.1.1c1 .8 2.3 1.3 3.6 1.3 1.1 0 2.2-.3 3.2-.9.8 0 1.6-.1 2.4-.1 1.9-.2 3.7-.4 5.6-.8.1 0 .2.1.3.1.8.3 1.6.5 2.4.5 1.9 0 3.7-1 4.8-2.6 1.4-.5 2.7-1 4.1-1.5.6.2 1.3.3 1.9.3.9 0 1.8-.2 2.6-.6.7 2.3 1.5 4.3 2.4 6.2 2.8 5.5 4.9 8.5 8.3 8.5 1.3 0 2.6-.5 3.6-1.5 1.6-1.7 1.8-4 1.7-6.1 0-1.1-.1-2.8-.1-4.7 1.2.2 2.4.3 3.7.4 1.9.2 3.9.2 5.7.2 4.9 0 9.6-.5 13.8-1.5 0 1.6-.1 3-.1 4-.1 2.1.1 4.4 1.7 6.1.9 1 2.2 1.5 3.6 1.5 3.4 0 5.5-3 8.3-8.5 2.5-5 3.6-10.7 4.1-14.8 3-8.3.5-23.5-2.4-31.9-.7-2.1-1.5-4.2-2.2-6.2 6.1-.3 11.7-2.5 16.6-6.6 8.3-7.1 9.1-16.1 8.8-21.1 1.2-1.3 2.3-3.1 3-5.3l.3-.9c.1-.2.1-.3.2-.5.3-.9.5-1.9.7-2.
9l.5-.9.4-.8c.3-.7.8-1.8 1.5-3.2.1-.3.3-.6.3-.8.4-.9.5-1.7.5-2.1v-.1c1.5-4.3-.3-7.2-2.8-8.3z" fill="#F9F9FA"/><path d="M183.3 144.3c.3 1.5-.5 2.9-1.9 3.5-.4.2-.8.2-1.2.2h-.5c.5.1 1.1 0 1.6-.2 1.5-.6 2.3-2.1 2-3.5-.1-.7.1-1.3.4-1.8-.3.4-.5 1.1-.4 1.8zM164.1 212.7c-.2.2-.5.3-.7.3-.3 0-.6-.1-.8-.4-.3-.3-.3-.8-.2-1.2 0 0-.1 0-.1-.1-.2.4-.1 1 .2 1.3.2.3.6.4 1 .4.1.1.4 0 .6-.3.1.1.3-.1.6-.4h-.1c-.3.3-.5.4-.5.4zM176.9 215.2c-.2.3-.5.4-.9.4-.2 0-.5-.1-.7-.3-.2-.2-.3-.4-.4-.7h-.2c0 .3.2.6.4.8.2.2.5.3.8.3.5.1.9-.1 1-.5.1 0 .3-.1.4-.4h-.1c-.1.3-.2.4-.3.4zM205.9 205.9c.1 1.1.3 2.3.6 3.6-.2-1.3-.4-2.5-.6-3.6.1 0 0 0 0 0zM190.8 213.7c-.2.4-.6.7-1 .7-.2 0-.3 0-.5-.1-.3-.2-.6-.5-.6-.8h-.1c.1.4.3.7.7.9.2.1.3.1.5.1.5 0 .9-.3 1.1-.7 0-.1.2-.4.4-1h-.2c-.1.5-.2.9-.3.9zM201.6 210c-.2.4-.6.6-1 .6-.2 0-.3 0-.5-.1-.3-.2-.5-.5-.6-.9 0 0-.1 0-.1.1.1.4.3.7.6.9.2.1.4.1.6.1.5 0 .9-.2 1.1-.7 0-.1.4-.8.8-2-.1 0-.1.1-.2.1-.4 1.2-.7 1.8-.7 1.9zM271.1 131.8h-.3c-.9-.1-1.7-.6-2.3-1.3.5.7 1.3 1.2 2.3 1.3 1.7.1 3.2-1.1
3.4-2.9.1-.8-.2-1.7-.6-2.4.5.7.7 1.6.6 2.4-.1 1.7-1.5 2.9-3.1 2.9zM197.7 158.4c.1.2.2.3.2.3.2.2.2.6 0 .8-.1.1-.2.2-.4.2-.1 0-.3-.1-.4-.2 0 0-.4-.4-.8-1 .4.6.7.9.8 1 .1.1.3.2.5.2.1 0 .3 0 .4-.1.3-.2.3-.6.1-.9.6.1 1.4.2 2.3.2 3 0 7.6-.7 12-1.9l-.1-.1c-4.6 1.2-9 1.9-11.9 1.9-1.2-.1-2.1-.2-2.7-.4zM191.5 146.3c.5 1.6 1.1 3.4 1.8 5.2-.5-1.5-.9-3-1.2-4.7-.2-.1-.4-.3-.6-.5zM181.1 143.8h-1.5c-.2.4-.2.9-.1 1.4.2.4.5.6.8.6.1 0 .2 0 .3-.1.4-.2.6-.6.5-1v-.9zM244.6 151s0 .1-.1.1c6.9-.5 13.9-2.1 15.9-3.7-.1.3-.2.5-.2.5-.1.3.1.7.4.8h.2c.3 0 .5-.2.6-.4 0-.1.6-1.6 1-3.8-.5 2.1-1 3.6-1.1 3.7-.1.2-.3.4-.5.4h-.2c-.3-.1-.4-.4-.3-.7 0 0 .1-.4.3-1 0 0 0 .1-.1.1-1.3 1.7-8.3 3.5-15.9 4zM264.4 132.1c.1.2.2.5.3.7-.1-.2-.2-.4-.3-.7-.3-.6.1-1.8 0-2.5 0-.3-.1-.6-.1-.8 0 .3 0 .5.1.8.1.8-.2 1.9 0 2.5zM212.1 159.6c.3-.7.6-1.3.9-1.9-.3.6-.6 1.2-.9 1.9zM262.1 133.6c-.1.2-.2.4-.4.6.2 1.7.3 3.4.4 4.9.1-2 0-3.9 0-5.5z" fill="#FFF"/><path d="M271.1 129.6c.5 0 .9-.4 1-.8 0-.5-.2-1-.5-1.3l-1.5.5c.1.3.1.5.2.8 0 .4.3.8.8.8z"
fill="#FFF"/><path d="M196.3 184.9c-.4-.3-1-.3-1.4.1-2.2-.5-4.8-.9-7.8-1.2-.2-.2-.4-.3-.6-.3-.3-.1-.7 0-.9.3-1.9-.1-4-.1-6.3-.1-.4 0-.7 0-1 .1-.4-.4-1-.5-1.4-.2l-.3.3c-2.7.3-5.2.7-7.5 1.3-.3-.1-.6-.2-.9 0-.2.1-.3.2-.4.4-7.8 2.3-12.2 5.9-12.5 6.1-.1.1-.2.3-.2.5 0 .1 0 .2.1.3.1.1.3.2.4.2.1 0 .3 0 .4-.1.1 0 4.2-3.5 11.7-5.7.3.8 2.2 5.7.6 13.1-1.7 7.9-5.5 11.3-5.5 11.3-.1.1-.2.2-.3.4-.2.4-.1.9.2 1.2.2.3.5.4.8.4.3 0 .5-.1.7-.3l.4-.4c1.1-1.2 4.2-4.9 5.8-12.1 1.6-7.4 0-12.6-.6-14.1 2-.5 4.3-.9 6.7-1.2v.1c0 .1 3.5 5.6 2.9 15-.6 9.3-4.1 13.8-4.2 13.8-.2.3-.3.6-.2.9 0 .3.2.5.4.7.2.2.5.3.7.3.3 0 .6-.1.9-.4 0 0 .1-.2.3-.4.9-1.3 3.9-6.1 4.4-14.7.5-7.9-1.7-13.3-2.7-15.4h.4c2.1-.1 4 0 5.9.1.1.2.2.5.5.7.1.1.1.1.2.1.9.9 4.4 5 5 11.8.8 8.8-2 15.3-2.1 15.3-.1.2-.1.4-.1.6.1.4.3.7.6.8.1.1.3.1.5.1.4 0 .8-.2 1-.7 0-.1.2-.4.4-.9.8-2.2 2.6-8 1.9-15.5-.6-5.8-3-10.1-4.8-12.2 2.4.2 4.5.6 6.3 1 .1.2.2.4.4.6 0 0 4.1 3.3 5.5 9.6 1.7 7.6-.8 12.7-.8 12.8-.1.2-.1.4-.1.6 0 .4.2.7.6.9.2.1.3.1.5.1.4 0 .8-.2 1-.6 0-.1.4
-.7.7-1.8.7-2.3 1.6-6.7.3-12.5-.9-4-2.7-6.9-4.2-8.7 2.3.7 3.7 1.3 4.1 1.5 0-.5-.1-.9-.1-1.3-1-.4-2.8-1.2-5.5-1.9-.5-.5-.8-.7-.8-.7zM240.9 161.8c-2.2 1.7-5.8 3.7-11 4.4-5.7.8-10.2-.7-12.9-2.1-4.7 6.9-9.4 17.7-9.1 27.9.4 16.8 14.5 19.1 23.7 18.7 6-.3 11.7-2.4 15.5-6.7v-.1l.1-.1c2-2.3 3.4-5.1 4.1-8.6 1.9-10.3-2.7-20.6-6.9-28.5-1.1-1.9-2.3-3.6-3.5-4.9zM183.7 110.2c-.1.1-.1.2-.2.3.1 0 .2-.1.2-.3zM185.2 84.4c.3-.2.8-.3 1.5-.3 2.7 0 8.1 1.4 13.4 4.2 1.4.8 2.7 1.6 3.8 2.4-7.2 3.2-9.7 6.7-9.8 6.9-.2.3-.1.6.1.8.1.1.2.1.3.1.2 0 .3-.1.5-.2.1-.1 5.2-7.3 22.4-10.3 17.1-3 24.8 2.9 24.9 3 .2.2.6.2.8-.1.2-.2.2-.6-.1-.8-.2-.2-4-3.1-11.9-3.9.8-1.2 1.8-2.5 3-3.8 4.8-5.3 10.5-8.8 12.4-8.8h.2c2.1.4 8.4 10.1 8.4 21.3.7.5 1.4 1 2.2 1.6.5-12.5-6.4-24.3-10.2-25.1-3.2-.6-10.2 4.4-14.7 9.5-1.2 1.3-2.6 3.1-3.8 5.1-3.2-.1-7 .1-11.4.8-4.4.8-7.9 1.8-10.9 2.9-1.8-1.4-3.7-2.6-5.1-3.4-6-3.2-14.3-5.5-17.1-3.9-3.2 2-5.7 15.3-1.1 26.8.5-.8 1-1.6 1.5-2.2-3.7-10.4-1.1-21.5.7-22.6zM193.3 151.5c.1.2.2.4.3.7 1.2 2.9 3.4 5.5
4.1 6.3.6.2 1.5.3 2.6.3 2.9 0 7.3-.6 11.9-1.9-1.4-1.8-1.6-3.8-1.6-3.8v-.1c0-.1-.1-.3-.1-.4l-.1-1.2v-.4c-1.1.3-2.2.4-3.4.2l-2.5.4c-6.1 1.1-11.9-3-12.9-9l-.2-1.3h-.2c.2 1.8.5 3.8.9 5.6.3 1.6.8 3.1 1.2 4.6z" fill="#F9F9FA"/><path d="M196.3 124.7c.7-5 5.3-8.5 10.3-7.9l4.9.7c3.3.5 6 2.7 7.2 5.6 1.1-.8 2.4-1.4 3.8-1.6 1.4-.2 2.7-.2 4 .2.3-2.3 1.5-4.6 3.5-6.1l4-3c4-3.1 9.8-2.3 12.8 1.7l3.8 5 4.7-.8c.8-.1 1.6.4 1.8 1.2.1.7-.2 1.3-.8 1.6.8.6 1.4 1.7 1.7 3.3l1 5.8c1.1 6.1-3 11.9-9 12.9l-1.7.3c-1.1.4-2.3.6-3.5.6l-.5.1h-.3s0 .1.1.1l.1.1c0 .1.1.2.1.3l.2.5s.1.2.1.3l.1.4c0 .2.1.3.1.4l.1.6V148.4c0 .9-.2 1.7-.4 2.5 7.7-.5 14.6-2.3 16-3.9 0 0 0-.1.1-.1.5-1.5 1.3-4.6 1.4-7.3v-.6c0-1.6-.1-3.2-.4-4.9-.2-1.8-.6-3.6-1-5.4l-1.8.3-.5-3 1.4-.3c-.5-1.6-1.2-3.2-2.1-4.7 0-.2 0-.4-.1-.6-2.6-14.6-19.6-23.8-38-20.6-17.4 3.1-29.9 16.2-29 30l5.1-.9.7-4.2z" fill="#F9F9FA"/><path d="M210.5 150.9v-.1-.3h-.2l-3.2.6c1.1.1 2.3 0 3.4-.2zM245 144.3c1.2 0 2.3-.2 3.5-.6l-3.5.6zM229.5 159.8s.1 0 0 0z" fill="#D9EBFF"/><path d="
M43.7 146.5h-.1c-1.7.4-3.6.8-5.4 1h-.1c-.6.1-1.2.2-1.9.2-1 .1-1.9.1-2.9.1h-.9-.1c.9-1.3 3.9-6.1 4.4-14.7.5-7.9-1.7-13.3-2.7-15.4h.4c2.1-.1 4 0 5.9.1.1.2.2.5.5.7.1.1.1.1.2.1.9.9 4.4 5 5 11.8.8 8.8-2 15.3-2.1 15.3-.2.3-.2.5-.2.8zm-26.1-2.4s3.8-3.4 5.5-11.3c1.6-7.3-.2-12.3-.6-13.1-7.5 2.3-11.6 5.7-11.7 5.7-.1.1-.2.1-.4.1s-.3-.1-.4-.2c-.1-.1-.1-.2-.1-.3-2.4 1.7-4.1 3.7-4.5 5.9-.1.5-.1 1-.1 1.6v.1c0 .2 0 .4.1.6v.3c0 .2.1.4.1.6 0 .1.1.2.1.3.1.2.1.3.2.5.1.1.1.3.2.4.1.1.1.3.2.4l.3.6c.1.1.1.2.2.3 2 3 5.8 5.8 10.4 7.9 0 0 .1 0 .1.1.2-.3.3-.4.4-.5zm37-2.1s2.6-5.2.8-12.8c-1.4-6.3-5.4-9.6-5.5-9.6-.2-.2-.3-.4-.4-.6-1.8-.4-3.9-.8-6.3-1 1.8 2.2 4.3 6.4 4.8 12.2.7 7.5-1.1 13.4-1.9 15.5h.2c2.9-.9 5.6-1.9 8-3.1 0 0 .1 0 .1-.1.1-.1.1-.3.2-.5zm-24.4 4.8s3.6-4.5 4.2-13.8c.6-9.4-2.9-14.9-2.9-15v-.1c-2.4.2-4.7.6-6.7 1.2.6 1.5 2.2 6.7.6 14.1-1.6 7.2-4.7 10.9-5.8 12.1h.1c3.2 1.2 6.7 2 10.2 2.3h.2c-.2-.2-.1-.5.1-.8zm108.6-96.3c.3.4.3 1.1 0 1.9-.4 1.1-.2 1.4-.5 2-.3.7-1.3 3-1.7 3.8-.1.2-.7 1.2-1.3 2.5 0 .9-.2
1.8-.5 2.7-.1.2-.1.4-.2.6l-.3.9c-.7 1.9-1.8 4-3.6 4.9.5 2.6 1.6 12.4-6.9 19.6-5.1 4.3-10.5 5.6-15.1 5.6-1.4 0-2.8-.1-4-.3-1.2-2.5-2.8-4.8-2.9-4.9-.2-.2-.5-.3-.8-.1-.2.2-.3.5-.1.8 0 0 2.1 2.8 3.2 5.7 0 0 0 .1.1.1.1.2.1.4.2.6l.1.1c1.4 3.4 2.6 6.9 3.7 10.1 2.9 8.6 4.9 23.1 2.2 29.4-.4 3.7-1.4 9.2-3.7 13.9-2.2 4.3-3.5 6-4.3 6h-.2l-.1-.1-.1-.1s0-.1-.1-.1c0-.1-.1-.2-.1-.3-.2-.5-.2-1.3-.2-2.3.1-1.9.2-5.6.3-9.1 2.8-1.3 4.6-2.8 4.6-2.9.2-.2.2-.6 0-.8-.2-.2-.6-.2-.8 0 0 0-1.8 1.6-4.4 2.7-4.6 1.8-10.6 3-17.9 3-1.7 0-3.5-.1-5.4-.2-3.4-.3-6.3-.8-8.7-1.5v.2c-2.1-.9-3.8-2.3-3.8-2.4-.2-.2-.6-.2-.8 0-.2.2-.2.6 0 .8.1.1 2.1 1.9 4.6 2.7.1 3.4.2 7 .3 8.9.1 1.8-.2 3-.8 3-.1 0-.2 0-.3-.1-.1 0-.2-.1-.3-.2l-.1-.1-.3-.3-.1-.1c-.1-.1-.2-.3-.3-.4l-.2-.2c-.1-.1-.2-.3-.3-.5-.1-.1-.2-.2-.2-.4-.1-.2-.2-.3-.3-.5-.1-.2-.2-.3-.3-.5-.1-.1-.2-.3-.2-.4-.4-.6-.7-1.4-1.2-2.2-.2-.5-.4-.9-.6-1.4 0-.1 0-.1-.1-.1-.2-.4-.4-.9-.5-1.3 0-.1-.1-.2-.1-.2-.2-.5-.3-.9-.5-1.4 0-.1 0-.1-.1-.2-.1-.5-.3-.9-.4-1.4 0-.1 0-.1-.1-.2-.1-.5-.
2-.9-.4-1.4v-.1c-.1-.5-.2-1-.3-1.4v-.1c-.2-1.3-.4-2.5-.6-3.5-1 .7-2.2 1.4-3.5 2.1-.1 0-.1.1-.2.1.7-2.3 1.6-6.7.3-12.5-.9-4-2.7-6.9-4.2-8.7 2.3.7 3.7 1.3 4.1 1.5.2 3 .7 7.5 1.4 11.6 0 .3.3.5.5.5h.1c.3-.1.5-.3.5-.6-1-5.8-1.5-12.1-1.6-14.3.6-3.6 1.6-7.6 3-11.5 2.2-6.1 4.2-8.1 4.2-8.1.2-.2.2-.6 0-.8-.2-.2-.6-.2-.8 0-.1.1-1.7 1.7-3.6 6.3-1.9.5-4 .9-6.3.9-2.9 0-6-.6-9.3-2-10.2-4.4-12.1-14.1-12.4-16.7-2-.4-3.6-2-4.8-3.6-.2-.2-.3-.5-.5-.7-.1-.1-.3-.3-.4-.5-.2-.3-.5-.7-.7-1.1 0-.1-.1-.1-.1-.2-.2-.4-.3-.7-.5-1.1v-.1l-2-2c-.6-.6-2.2-2.6-2.7-3.1-.1-.1-.1-.1-.1-.2-.3-.4-.3-.7-.7-1.3-.1-.1-.1-.2-.2-.3-.1-.1-.2-.2-.2-.3-.5-.7-.6-1.4.1-1.9.1-.1.1-.1.2-.1l.1-.1c.1-.1.3-.1.5-.2h.1c.5-.1 1.1.1 1.5.6l.1.1c-.1-.5-.1-1.2-.2-1.8-.2-.9-.3-1.6.6-2 .1 0 .1 0 .2-.1h.2c.3 0 .6 0 .8.1 0 0 .1 0 .1.1.1 0 .2.1.2.1.1.1.2.2.3.2l.1.1c.1.1.2.3.2.4 0 0 .2.5.4 1.1 0-.3.1-.5.1-.7.2-1 .6-1.3.9-2 .3-.7.6-2 1.7-1.9.5.1.9.4 1.2.8.3.4.4.9.3 1.4l-.5 3.2-.4 2.3c-.5.9-1.2 2.1-1.7 3.4-.1.3.1.6.3.7h.2c.2 0 .4-.1.5-.4.7-1.9 1.7-3.5
2.2-4.2.5-.4 1.1-.7 1.6-1 .8-.4 2.5-.6 3.4-.4.5.1 1.2.6 1.9.6.5.1 1.2.1 1.6.7.1.2.2.4.2.8l-.7.1c-.8.1-1.4.9-1.2 1.8 0 .1.1.2.1.3-.2.1-.4.1-.7.1l-3.2-.1c-1.4.7-1.9 2.9-1.3 4.4.1.2.2.4.3.5 0 .1.1.1.1.1.1.1.1.2.2.3l.2.2c.1.1.1.1.2.1.3.3.7.4 1 .6.1 0 .3.1.4.1.5.1 1.1 0 1.6-.2 1.4-.6 2.2-2 1.9-3.5-.1-.7 0-1.3.4-1.9h.5l2.2-.4c.2.4.3 1.1.5 1.7.1.7.8 1.7.8 2.4-.2 1.9-1.2 3.9-2.5 5 .3.5.5 1 .5 1.6 0 .3.6 7.7 7.9 10.8 2.2 1 4.3 1.3 6.3 1.3 6.5 0 11.2-4.1 12.1-5 0-.1.1-.2.1-.3.3-.7.6-1.3.9-1.9.7.6 1.7 1.2 2.9 1.5 3.5 1 5.2.8 5.9.6.7.7 2.8 2.3 5.9 2.3.5 0 1.1-.1 1.7-.2 4.1-.8 6.3-3.7 6.8-4.5 1.1-.3 5.8-2 7.8-5.6l.9.3c.3.1 3.9 2 8.5 2 3.2 0 6.9-.9 10.4-3.8 6.1-5.2 4.4-12.6 4.3-12.6-.1-.6-.1-1.1 0-1.7-.9-.4-1.9-1.2-2.7-2.1-.1-.2-.3-.4-.4-.5-.1-.2-.2-.3-.3-.5 0 0 0-.1-.1-.1-.1-.2-.2-.4-.3-.7-.3-.7.1-1.8 0-2.5 0-.3-.1-.6-.1-.8-.4 1-.8 1.9-1.3 2.9-.1-1.3-.2-2.1-.2-2.1 0-.3-.3-.5-.6-.5s-.5.3-.5.6c0 0 .2 1.6.3 3.9-.1.2-.2.4-.4.6-.2-1.8-.6-3.6-1-5.4l4.9-.9c.5-.1.9-.4 1.1-.8.2.1.3.2.4.3.1.1.2.2.3.4 0 0
0 .1.1.1.1.1.2.3.2.4v.1c.1.2.1.4.1.6.1.6.3 1.1.6 1.5.5.7 1.3 1.2 2.3 1.3 1.7.1 3.2-1.1 3.4-2.9.1-.8-.2-1.7-.6-2.4-.5-.7-1.1-1.3-1.9-1.4l-3.1 1c-.2 0-.4.1-.7.1-.4 0-.8-.1-1.1-.2-.2-.5-.6-.9-1.1-1 0-.1-.1-.1-.1-.2v.2h-.5l-5.2.9c-.5-1.6-1.2-3.2-2.1-4.7 0-.2 0-.4-.1-.6-2.6-14.6-19.6-23.8-38-20.6-17.4 3.1-29.9 16.2-29 30h-.1c-.8.1-1.4.9-1.2 1.8.1.8.9 1.3 1.7 1.3-.5.9-.7 2-.4 3.6l.3 1.5-5.9 1c-.9-1.4-1.7-2.9-2.4-4.4-.1-.3-.2-.5-.3-.8-.1-.2-.1-.4-.2-.6-.1-.4-.3-.7-.4-1.1 0-.1-.1-.3-.1-.4-.1-.5-.3-1-.4-1.5-.1-.6-.3-1.1-.4-1.7-.1-.3-.1-.6-.1-.9 0-.3-.1-.7-.1-1 0-.4-.1-.7-.1-1.1v-.9-1.1-.9c0-.6.1-1.2.1-1.8 0-.3.1-.7.1-1 .1-.3.1-.7.2-1 .1-.3.1-.6.2-1 .1-.3.1-.7.2-1 .1-.4.2-.7.3-1.1.1-.3.2-.6.3-1 .2-.6.4-1.1.6-1.7.1-.3.2-.6.4-.9.1-.3.3-.7.4-1l.3-.6c.1-.1.1-.3.2-.4 2.7-4.5 5.9-7.4 6-7.4.2-.2.3-.6 0-.8-.2-.2-.6-.3-.8 0-.1.1-2.2 2-4.5 5.1-3.7-10.5-1.1-21.6.7-22.7.3-.2.8-.3 1.5-.3 2.7 0 8.1 1.4 13.4 4.2 1.4.8 2.7 1.6 3.8 2.4-7.2 3.2-9.7 6.7-9.8 6.9-.2.3-.1.6.1.8.1.1.2.1.3.1.2 0 .3-.1.5-.2.1-.1 5.2
-7.3 22.4-10.3 17.1-3 24.8 2.9 24.9 3 .2.2.6.2.8-.1.2-.2.2-.6-.1-.8-.2-.2-4-3.1-11.9-3.9.8-1.2 1.8-2.5 3-3.8 4.8-5.3 10.5-8.8 12.4-8.8h.2c2.1.4 8.4 10.1 8.4 21.3-2.6-1.7-4.9-2.6-5-2.7-.3-.1-.6 0-.7.3-.1.3 0 .6.3.7.1 0 5.2 2.1 9.1 6l.2.2c1 1.1 1.9 2.3 2.7 3.5 0 .1.1.1.1.2.4.6.7 1.2 1.1 1.7l.1.1c.7 1.3 1.3 2.6 1.8 4 0 .1.1.2.1.3.2.6.4 1.2.6 1.9 0 .1 0 .2.1.3.2.7.3 1.4.5 2.2l.3 2.4c.2 2.4.1 4.8-.3 7.1.3-.2.6-.4.9-.5.7-.3 1.2-.9 1.6-1.2.7-.5 2.4-.8 3.3-.6 1 .2 2 .4 2.8.8 1.8 1.5 3.5 3 3.7 3.4.1.2.3.3.5.3.1 0 .2 0 .2-.1.3-.1.4-.5.2-.7-.4-.8-3.1-3-4.4-4.2L129 52l-1.5-2.9c-.5-.9-.1-2.1.8-2.5.9-.5 1.6.7 2.1 1.3.5.5.9.7 1.3 1.4.1.1.1.2.2.3l.3.6c0-.7.1-1.1.1-1.2.1-.9.9-1.7 1.8-1.6.4 0 .6.2.8.4.3.3.3.8.4 1.4 0 .1 0 .3.1.4 0 .1 0 .2.1.3.1.4.2.7.2 1.1l.1-.1c.4-.9 1.4-1.3 2.3-.9.4.2.6.3.7.5zM99.3 99.7c-1.1-2-2.2-3.6-3.4-5-2.2 1.7-5.8 3.7-11 4.4-5.7.8-10.2-.7-12.9-2.1-4.7 6.9-9.4 17.7-9.1 27.9.4 16.8 14.5 19.1 23.7 18.7 6-.3 11.7-2.4 15.5-6.7v-.1l.1-.1c2-2.3 3.4-5.1 4.1-8.6 1.8-10.2-2.8-20.5-7-28.
4zM66.6 50.5l-4.9-.7c-5-.7-9.6 2.9-10.3 7.9l-.6 4.4 20.9-3.7c.6-.9 1.3-1.6 2.2-2.3-1.3-2.9-4-5.2-7.3-5.6zm22.5-5l-4 3c-2 1.5-3.2 3.7-3.5 6.1 1.1.3 2.1.8 3 1.4l21.2-3.8-3.8-5c-3.1-3.9-8.9-4.7-12.9-1.7zM66.6 85.3l-.1-1.1v-.3-.4l.1-.3c5.3-1.7 8.6-7 7.6-12.6l-.1-.3c.1 0 .2-.1.4-.1l1 5.5c.1.8.9 1.3 1.7 1.2.8-.1 1.3-.9 1.2-1.7l-1.3-7c2.4-1.3 5.4-1.4 7.9 0 .3.2.7.2 1 .2.1 0 .2-.1.3-.1l.1.3c1 5.6 5.9 9.4 11.4 9.2l.2.3c0 .1.1.1.1.2v.1c0 .1.1.2.1.2l.1.4c0 .1.1.2.1.3l.1.5c0 .1 0 .2.1.4v2.6c-.5 2.6-2.6 4.5-5.9 5.2h-.1H92.3c-.1 0-.3.1-.4.1-.5.1-1 .4-1.5.7-.5.3-.9.7-1.2 1.1-.4.4-.7.8-1.1 1.1-.3.4-.7.7-1.1 1l-.9.5-.2.1c-.1 0-.1.1-.2.1l-.2.1h-.1l-.2.1h-.1l-.3.1-.4.1H83c-.5 0-1-.1-1.4-.2-.5-.1-.9-.3-1.4-.5-.5-.2-.9-.5-1.4-.7-.5-.2-1-.5-1.5-.6-.5-.1-1.1-.2-1.7-.1H75.3h-.1-.1-.1c-3.4.6-6.1-.5-7.5-2.8l-.1-.1-.1-.3v-.1l-.1-.1s0-.1-.1-.1l-.1-.4c0-.1 0-.1-.1-.2v-.1-.1l-.2-1c0-.2 0-.3-.1-.4zm9.5-1c.2 1 1 2.3 2.2 2.9.3.2.6.2.9.1.4-.1.8-.3 1-.8.4-.7.1-1.6-.6-2-.3-.2-.6-.7-.7-.8-.2-.8-.9-1.3-1.7-1.2-.7.3-1.3
1-1.1 1.8zm-2.4-17.5l.3-.3-.1-.4c-.1-.8.4-1.6 1.2-1.7.6-.1 1.1.1 1.4.6 3-1.4 6.4-1.4 9.4 0l-.4-2.4c-.3-1.6-.1-2.8.4-3.6l-14.2 2.5c.8.6 1.3 1.7 1.6 3.3l.4 2zm4.1-11.2c-1.8.3-3.4 1.2-4.5 2.5l9.7-1.7c-1.6-.9-3.4-1.2-5.2-.8z" fill="url(#a)" opacity=".2" transform="translate(145 67)"/><path d="M228.8 160c0-.1 0 0 0 0z" fill="#59ACFF"/><path d="M223.3 154.2c.3.2.6.2.9.1.4-.1.8-.3 1-.8.4-.7.1-1.6-.6-2-.3-.2-.6-.7-.7-.8-.2-.8-.9-1.3-1.7-1.2-.8.1-1.3.9-1.2 1.7.2 1.1 1.1 2.4 2.3 3zM220.1 131.4c-.8.1-1.3.9-1.2 1.7l.1.4c.8-.6 1.6-1.2 2.5-1.6-.3-.4-.9-.6-1.4-.5zM222.3 143.8c.8-.1 1.3-.9 1.2-1.7l-1.3-7c-.8.4-1.6 1-2.2 1.8-.1.1-.3.2-.4.3l1 5.5c.1.7.9 1.2 1.7 1.1z" fill="#F9F9FA"/><path d="M265.6 125c.1 0 .1 0 0 0v-.2.2z" fill="#59ACFF"/><path d="M113.9 62.2l1.8-.3 4.9-.9c.5-.1.9-.4 1.1-.8.2.1.3.2.4.3.1.1.2.2.3.4 0 0 0 .1.1.1.1.1.2.3.2.4v.1c.1.2.1.4.1.6.1.6.3 1.1.6 1.5.5.7 1.3 1.2 2.3 1.3h.3c1.6 0 3-1.2 3.1-2.9.1-.8-.2-1.7-.6-2.4-.5-.7-1.1-1.3-1.9-1.4l-3.1 1c-.2 0-.4.1-.7.1-.4 0-.8-.1-1.1-.2-.2-.5-
.6-.9-1.1-1h-.6l-5.2.9-1.4.3.5 2.9zm12.6-1.7c.2.3.5.8.5 1.3s-.4.8-.9.8h-.1c-.4 0-.8-.4-.8-.8 0-.3-.1-.6-.2-.8l1.5-.5zM38.7 72.4c-.8.1-1.4.9-1.2 1.8 0 .1.1.2.1.3-.2.1-.4.1-.7.1l-3.2-.1c-1.4.7-1.9 2.9-1.3 4.4.1.2.2.4.3.5 0 .1.1.1.1.1.1.1.1.2.2.3l.2.2c.1.1.1.1.2.1.3.2.7.4 1 .6.1 0 .3.1.4.1h.5c.4 0 .8-.1 1.2-.2 1.4-.6 2.2-2 1.9-3.5-.1-.7 0-1.3.4-1.8h.5l2.2-.4c.2.4.3 1.1.5 1.7.1.7.8 1.7.8 2.4-.2 1.9-1.2 3.9-2.5 5 .3.5.5 1 .5 1.6 0 .3.6 7.7 7.9 10.8 2.2 1 4.3 1.3 6.3 1.3 6.5 0 11.2-4.1 12.1-5 0-.1.1-.2.1-.3.3-.7.6-1.3.9-2 .7.6 1.7 1.2 2.9 1.5 3.5 1 5.2.8 5.9.6.7.7 2.8 2.3 5.9 2.3.5 0 1.1-.1 1.7-.2 4.1-.8 6.3-3.7 6.8-4.5 1.1-.3 5.8-2 7.8-5.6l.9.3c.3.1 3.9 2 8.5 2 3.2 0 6.9-.9 10.4-3.8 6.1-5.2 4.4-12.6 4.3-12.6-.1-.6-.1-1.1 0-1.7-.9-.4-1.9-1.2-2.7-2.1-.1-.2-.3-.4-.4-.5-.1-.2-.2-.3-.3-.5 0 0 0-.1-.1-.1-.1-.2-.2-.5-.3-.7-.3-.7.1-1.8 0-2.5 0-.3-.1-.5-.1-.8-.4 1-.8 1.9-1.3 2.9-.1-1.3-.2-2.1-.2-2.1 0-.3-.3-.5-.6-.5s-.5.3-.5.6c0 0 .2 1.6.3 3.9.1 1.6.1 3.5 0 5.5v.6c-.1 2.7-1 5.8-1.4 7.3-.2.6-.3.9-
.3 1-.1.3.1.6.3.7h.2c.2 0 .4-.1.5-.4 0-.1.6-1.7 1.1-3.7-.4 2.1-1 3.7-1 3.8-.1.3-.3.4-.6.4h-.2c-.3-.1-.5-.5-.4-.8 0 0 .1-.2.2-.5-1.9 1.7-9 3.3-15.9 3.7 0 0 0-.1.1-.1.3-.8.4-1.6.4-2.5v-.4-.8-.1-.1l-.1-.6c0-.1-.1-.3-.1-.4l-.1-.4c0-.1-.1-.2-.1-.3l-.2-.5c0-.1-.1-.2-.1-.3l-.1-.1s0-.1-.1-.1h.3l.5-.1 3.5-.6 1.7-.3c6.1-1.1 10.1-6.9 9-12.9l-1-5.8c-.3-1.7-.9-2.7-1.7-3.3.5-.3.9-.9.8-1.6-.1-.8-.9-1.4-1.8-1.2l-4.7.8L84.5 56c-.9-.6-1.9-1.1-3-1.4-1.3-.3-2.6-.4-4-.2-1.4.3-2.7.8-3.8 1.6-.9.6-1.6 1.4-2.2 2.3L50.6 62l-5.1.9h-.1c-.8.1-1.4.9-1.2 1.8.1.8.9 1.3 1.7 1.3-.5.9-.7 2-.4 3.6l.3 1.5-5.9 1-.6.1-.6.2zm-3.1 6.3c-.1 0-.2.1-.3.1-.3 0-.7-.2-.8-.6-.2-.4-.1-1 .1-1.4h1.5c0 .3 0 .6.1.8 0 .5-.2.9-.6 1.1zm84.6-4.9c.1-1.3.1-2.6.1-3.9.2.2.4.3.6.5 0 .3.1.6.2 1 0 .2 1 4.7-1.9 8.6.4-1.6.8-3.8 1-6.2zm-5.9 9.8c.1.1.2.1.3.2-1.7.8-3.5 1.3-5.4 1.3 1.9-.5 3.7-1 5.1-1.5zm-59.4 12c-1.8 0-3.6-.4-5.4-1.1-6-2.5-6.5-8.7-6.5-8.9 0-.3-.1-.6-.1-.9.5-.7 1-1.5 1.4-2.4.5 1.4 1.1 3 1.7 4.4 1.7 4 4.3 7.1 4.4 7.2.6.7 1.4 1 2.2 1 .7 0
1.3-.2 1.8-.7l.2-.2h.7c2 0 4.7-.3 7.5-.8-1.9 1.2-4.7 2.4-7.9 2.4zm22.9-40c1.8-.3 3.6 0 5.2.8l-9.7 1.7c1.1-1.3 2.7-2.2 4.5-2.5zm8.1 3.3c-.5.9-.7 2-.4 3.6l.4 2.4c-3-1.4-6.5-1.4-9.4 0-.9.4-1.7.9-2.5 1.6l-.3.3-.4-2.1c-.3-1.6-.8-2.6-1.6-3.3l14.2-2.5zM66.6 83.8v-.4l.1-.3c5.3-1.7 8.6-7 7.6-12.6l-.1-.3c.1 0 .2-.1.4-.1.2-.1.3-.2.4-.3.6-.7 1.4-1.3 2.2-1.8 2.4-1.3 5.4-1.4 7.9 0 .3.2.7.2 1 .2.1 0 .2-.1.3-.1l.1.3c1 5.6 5.9 9.4 11.4 9.2l.2.3c0 .1.1.1.1.2v.1c0 .1.1.2.1.2l.1.4c0 .1.1.2.1.3l.1.5c0 .1 0 .2.1.4v2.6c-.5 2.6-2.6 4.5-5.9 5.2h-.1H92.4c-.1 0-.3.1-.4.1-.5.1-1 .4-1.5.7-.5.3-.9.7-1.2 1.1-.4.4-.7.8-1.1 1.1-.3.4-.7.7-1.1 1l-.9.5-.2.1c-.1 0-.1.1-.2.1l-.2.1h-.1l-.2.1h-.1l-.3.1-.4.1H83.1c-.5 0-1-.1-1.4-.2-.5-.1-.9-.3-1.4-.5-.5-.2-.9-.5-1.4-.7-.5-.2-1-.5-1.5-.6-.5-.1-1.1-.2-1.7-.1H75.4h-.1-.1-.1c-3.4.6-6.1-.5-7.5-2.8l-.1-.1-.1-.3v-.1l-.1-.1s0-.1-.1-.1l-.1-.4c0-.1 0-.1-.1-.2v-.1-.1l-.2-1c0-.1 0-.2-.1-.4l-.1-1.1v-.2zm-20.4-9.6h.2l.2 1.3c1.1 6.1 6.9 10.1 12.9 9l2.5-.4 3.2-.6h.2v.8l.1 1.2c0 .1 0 .3.1.
4v.1s.2 2 1.6 3.8c0 0 0 .1.1.1-4.5 1.2-9 1.9-12 1.9-.9 0-1.7-.1-2.3-.2.2.3.2.7-.1.9-.1.1-.3.1-.4.1-.2 0-.4-.1-.5-.2 0 0-.3-.4-.8-1 .5.6.8.9.8 1 .1.1.3.2.4.2.1 0 .3-.1.4-.2.2-.2.2-.6 0-.8 0 0-.1-.1-.2-.3-.7-.8-2.9-3.4-4.1-6.3-.1-.2-.2-.4-.3-.7-.7-1.8-1.3-3.6-1.8-5.2-.8-2.4-1.2-4.3-1.2-4.3-.1-.3-.4-.5-.7-.4-.3.1-.5.4-.4.7 0 0 .3 1.1.7 2.6-1-1-2-2-2.9-3l4.3-.5zm93-26.2c-.5-.2-1-.3-1.6-.3-.6-1.8-1.8-2.3-2.9-2.3h-.3c-.8 0-1.6.3-2.3.7-.6-.7-1.5-1.7-3-1.7-.5 0-1 .1-1.4.3-2 1-2.9 3.5-1.9 5.5l.7 1.3h-.2c-.8 0-1.8.1-2.7.4 0-1.9-.1-3.9-.4-5.8-1.1-6-4-11.7-8.5-16.3.7-13.5-6.9-26.8-12.1-27.9-.3-.1-.7-.1-1.1-.1-4.9 0-12.2 6.2-15.9 10.3-.9 1-2.2 2.6-3.4 4.4h-.5c-3.1 0-6.5.3-9.9.9-3.6.6-7 1.5-10 2.6-1.7-1.2-3.3-2.2-4.5-2.8-4.4-2.4-10.9-4.7-15.5-4.7-1.7 0-3 .3-4 .9-4.5 2.7-7.1 17.8-1.8 30.3-2.7 5.9-3.5 12.2-2.5 18.3.4 2 .9 3.9 1.7 5.8h-.4c-.8 0-1.9.1-2.8.4l.2-1.5c.4-2.2-1.1-4.4-3.4-4.7h-.5c-2 0-2.9 1.7-3.3 2.6-.4-.1-.8-.2-1.2-.2-.5 0-1 .1-1.4.3-1 .4-2.1 1.2-2.1 3.1-.6.2-1.1.4-1.5.8-1.2 1.1-1.9 3-.1
5.3.2.2.2.4.3.6.1.3.3.8.8 1.3.1.1.3.4.6.7.9 1.1 1.8 2.1 2.2 2.5l.6.6 1 1c.4 1 .8 1.8 1.4 2.5.1.2.2.3.4.5.2.3.3.5.5.8 1.5 1.9 3 3.3 4.6 4 .8 4.2 3.6 12.8 13.5 17.1 3.3 1.4 6.8 2.1 10.2 2.1 1.3 0 2.7-.1 4-.3-1.2 3.7-2.1 7.1-2.6 10-.9-.3-1.9-.7-3.1-1-.3-.2-.4-.4-.5-.4-.6-.5-1.4-.8-2.2-.8-.4 0-.9.1-1.3.2-2.1-.4-4.2-.7-6.4-.9-.4-.2-.7-.4-1.1-.5-.2 0-.4-.1-.7-.1-.5 0-1 .1-1.4.3-1.1-.1-2.2-.1-3.3-.1h-2.6c-.5-.3-1.1-.4-1.6-.4-.7 0-1.3.2-1.8.5-.1 0-.1.1-.2.1-2.1.2-4.2.6-6.2 1.1-.2 0-.4-.1-.7-.1-.5 0-1 .1-1.4.3-.3.1-.6.3-.9.6-7.7 2.4-12.1 5.9-12.5 6.3-.3.3-.6.6-.7.9-2.6 2.1-4.2 4.3-4.7 6.7-1.1 5.5 3.4 11.3 11.7 15.4.1.5.4 1 .7 1.4.7.8 1.6 1.2 2.6 1.2.6 0 1.2-.2 1.8-.5 2.7.9 5.5 1.5 8.3 1.9.1.2.3.3.4.4.6.5 1.4.8 2.2.8.9 0 1.7-.3 2.4-.9 1 0 2-.1 2.9-.1 2.1-.2 4.1-.5 6.2-1 .2.2.5.3.7.5.5.2.9.3 1.4.3 1.4 0 2.6-.8 3.2-2.1 0 0 0-.1.1-.1 1.9-.6 3.8-1.3 5.6-2.1.1.1.2.1.3.2.5.3 1.1.4 1.6.4 1.3 0 2.5-.7 3.1-1.9 0-.1.3-.6.6-1.5.6 3.2 1.6 6.9 3.3 10.2 2.7 5.4 4.3 7.3 6.3 7.3.7 0 1.4-.3 2-.8.8-.9 1.2-2.2
1.1-4.5 0-1.6-.1-4.5-.2-7.4 1.9.4 3.9.7 6.2.9 1.9.1 3.7.2 5.6.2 5.9 0 11.4-.8 16.1-2.2-.1 2.8-.2 5.5-.2 7-.1 2.3.3 3.6 1.1 4.5.5.5 1.2.8 2 .8 2 0 3.6-1.8 6.3-7.3 2.4-4.8 3.4-10.4 3.9-14.3 2.9-7.6.4-22.8-2.3-30.7-1.1-3.3-2.2-6.3-3.3-9.1.6 0 1.2.1 1.8.1 6.2 0 11.8-2.1 16.6-6.1 8.2-6.9 8.4-16.1 7.9-20.3 1.3-1.2 2.4-2.9 3.3-5.2l.3-.9c.1-.2.2-.4.2-.5.3-.9.5-1.8.6-2.8l.9-1.8.2-.3c.3-.6.8-1.7 1.4-3.1.1-.3.3-.6.3-.8.3-.6.3-1.1.4-1.5 0-.2 0-.4.2-.6 1.2-2.7 0-4.4-1.5-5.1zm-.5 4.3c-.4 1.1-.2 1.4-.5 2-.3.7-1.3 3-1.7 3.8-.1.2-.7 1.2-1.3 2.5 0 .9-.2 1.8-.5 2.7-.1.2-.1.4-.2.6l-.3.9c-.7 1.9-1.8 4-3.6 4.9.5 2.6 1.6 12.4-6.9 19.6-5.1 4.3-10.5 5.6-15.1 5.6-1.4 0-2.8-.1-4-.3-1.2-2.5-2.8-4.8-2.9-4.9-.2-.2-.5-.3-.8-.1-.2.2-.3.5-.1.8 0 0 2.1 2.8 3.2 5.7 0 0 0 .1.1.1.1.2.1.4.2.6l.1.1c1.4 3.4 2.6 6.9 3.7 10.1 2.9 8.6 4.9 23.1 2.2 29.4-.4 3.7-1.4 9.2-3.7 13.9-2.2 4.3-3.5 6-4.3 6h-.2l-.1-.1-.1-.1s0-.1-.1-.1c0-.1-.1-.2-.1-.3-.2-.5-.2-1.3-.2-2.3.1-1.9.2-5.6.3-9.1 2.8-1.3 4.6-2.8 4.6-2.9.2-.2.2-.6 0-.8-.2-.2-.6-
.2-.8 0 0 0-1.8 1.6-4.4 2.7-4.6 1.8-10.6 3-17.9 3-1.7 0-3.5-.1-5.4-.2-3.4-.3-6.3-.8-8.7-1.5v.2c-2.1-.9-3.8-2.3-3.8-2.4-.2-.2-.6-.2-.8 0-.2.2-.2.6 0 .8.1.1 2.1 1.9 4.6 2.7.1 3.4.2 7 .3 8.9.1 1.8-.2 3-.8 3-.1 0-.2 0-.3-.1-.1 0-.2-.1-.3-.2l-.1-.1-.3-.3-.1-.1c-.1-.1-.2-.3-.3-.4l-.2-.2c-.1-.1-.2-.3-.3-.5-.1-.1-.2-.2-.2-.4-.1-.2-.2-.3-.3-.5-.1-.2-.2-.3-.3-.5-.1-.1-.2-.3-.2-.4-.4-.7-.8-1.4-1.2-2.2-.2-.4-.4-.9-.6-1.4 0-.1 0-.1-.1-.1-.2-.4-.4-.9-.5-1.3 0-.1-.1-.2-.1-.2-.2-.5-.3-.9-.5-1.4 0-.1 0-.1-.1-.2-.1-.5-.3-.9-.4-1.4 0-.1 0-.1-.1-.2-.1-.5-.2-.9-.4-1.4v-.1c-.1-.5-.2-1-.3-1.4v-.1c-.2-1.3-.4-2.5-.6-3.6-1 .7-2.2 1.4-3.5 2.1-.4 1.2-.7 1.9-.8 2-.2.4-.7.7-1.1.7-.2 0-.4 0-.6-.1-.4-.2-.6-.5-.6-.9-2.4 1.1-5 2.2-8 3.1-.2.6-.4 1-.4 1-.2.5-.7.7-1.1.7-.2 0-.3 0-.5-.1-.4-.2-.6-.5-.7-.9-1.7.4-3.6.8-5.4 1h-.1c-.6.1-1.2.2-1.9.2-1 .1-1.9.1-2.9.1h-.9c-.2.3-.3.4-.3.5-.2.3-.6.5-1 .5-.3 0-.6-.1-.8-.3-.3-.2-.4-.5-.4-.8-3.5-.3-7-1.1-10.2-2.3l-.5.5c-.2.2-.5.3-.8.3-.4 0-.7-.1-1-.4-.3-.4-.4-.9-.2-1.3-4.6-2.1-8.4-4
.9-10.4-7.9-.1-.1-.1-.2-.2-.3l-.3-.6c-.1-.1-.1-.3-.2-.4-.1-.1-.1-.3-.2-.4-.1-.2-.1-.3-.2-.5 0-.1-.1-.2-.1-.3-.1-.2-.1-.4-.1-.6v-.3c0-.2-.1-.4-.1-.6v-.1c0-.5 0-1.1.1-1.6.4-2.2 2.1-4.1 4.4-5.8 0-.2 0-.4.2-.6.3-.2 4.6-3.8 12.4-6.1.1-.2.3-.4.5-.5.2-.1.3-.1.5-.1s.4.1.6.2c2.2-.6 4.6-1 7.3-1.2.1-.2.2-.3.4-.4.2-.1.4-.2.7-.2.4 0 .7.2 1 .5.3 0 .6 0 .9-.1h2.3c1.3 0 2.6 0 3.8.1.2-.2.5-.3.9-.3h.2c.1 0 .4.2.7.4 2.9.2 5.4.6 7.6 1.1.2-.2.6-.4.9-.4.3 0 .5.1.8.3l.7.7c2.6.7 4.3 1.4 5.3 1.8v.1c0 .4.1.8.1 1.3.2 3 .7 7.5 1.4 11.6 0 .3.3.5.5.5h.1c.3-.1.5-.3.5-.6-1-5.8-1.5-12.1-1.6-14.3.5-3.5 1.6-7.4 2.9-11.2 0-.1.1-.2.1-.3 2.2-6.1 4.2-8.1 4.2-8.1.2-.2.2-.6 0-.8-.2-.2-.6-.2-.8 0-.1.1-1.7 1.7-3.6 6.3-1.9.5-4 .9-6.3.9-2.9 0-6-.6-9.3-2-10.2-4.4-12.1-14.1-12.4-16.7-2-.4-3.6-2-4.8-3.6-.2-.2-.3-.5-.5-.7-.1-.1-.3-.3-.4-.5-.2-.3-.5-.7-.7-1.1 0-.1-.1-.1-.1-.2-.2-.4-.3-.7-.5-1.1v-.1l-2-2c-.6-.6-2.2-2.6-2.7-3.1-.1-.1-.1-.1-.1-.2-.3-.4-.3-.7-.7-1.3-.1-.1-.1-.2-.2-.3-.1-.1-.2-.2-.2-.3-.5-.8-.6-1.4 0-2 .1-.1.1-.1.2-.1l.
1-.1c.1-.1.3-.1.5-.2H21.6c.5 0 1 .2 1.3.6l.1.1c-.1-.5-.1-1.2-.2-1.8-.2-.9-.3-1.6.6-2H24c.2 0 .4.1.7.1 0 0 .1 0 .1.1.1 0 .2.1.2.1.1.1.2.2.3.2l.1.1c.1.1.2.3.2.4 0 0 .2.5.4 1.1 0-.3.1-.5.1-.7.2-1 .6-1.3.9-2 .3-.7.6-1.9 1.5-1.9h.2c.5.1.9.4 1.2.8.3.4.4.9.3 1.4l-.5 3.2-.4 2.3c-.5.9-1.2 2.1-1.7 3.4-.1.3.1.6.3.7h.2c.2 0 .4-.1.5-.4.7-1.9 1.7-3.5 2.2-4.2.5-.3 1-.7 1.6-1 .6-.3 1.6-.5 2.4-.5.3 0 .7 0 .9.1.5.1 1.2.6 1.9.6.5.1 1.2.1 1.6.7.1.2.2.4.2.8l.6-.1c-.9-1.4-1.7-2.9-2.4-4.4-.1-.3-.2-.5-.3-.8-.1-.2-.1-.4-.2-.6-.1-.4-.3-.7-.4-1.1 0-.1-.1-.3-.1-.4-.1-.5-.3-1-.4-1.5-.1-.6-.3-1.1-.4-1.7-.1-.3-.1-.6-.1-.9 0-.3-.1-.7-.1-1 0-.4-.1-.7-.1-1.1v-.9V57v-.9c0-.6.1-1.2.1-1.8 0-.3.1-.7.1-1 .1-.3.1-.7.2-1 .1-.3.1-.6.2-1 .1-.3.1-.7.2-1 .1-.4.2-.7.3-1.1.1-.3.2-.6.3-1 .2-.6.4-1.1.6-1.7.1-.3.2-.6.4-.9.1-.3.3-.7.4-1 .1-.2.1-.3.2-.5 0-.1.1-.1.1-.2.1-.1.1-.2.2-.3 2.7-4.5 5.9-7.4 6-7.4.2-.2.3-.6 0-.8-.2-.2-.6-.3-.8 0-.1.1-2.2 2-4.5 5.1-.5.7-1 1.4-1.5 2.2 0 .1-.1.1-.1.2-4.7-11.6-2.2-25.2 1.1-27.1.7-.4 1.6-.6 2.8-.6
3.8 0 9.8 2 14.4 4.5 1.5.8 3.4 2 5.2 3.4 2.9-1.1 6.5-2.1 10.8-2.9 3.6-.6 6.7-.9 9.5-.9h1.7c1.2-2 2.6-3.8 3.8-5.1 4.3-4.8 10.7-9.6 14.2-9.6.2 0 .4 0 .6.1 3.8.8 10.8 12.8 10.3 25.3l-.1-.1c-.7-.6-1.5-1.1-2.2-1.6-2.6-1.7-4.9-2.6-5-2.7-.3-.1-.6 0-.7.3-.1.3 0 .6.3.7.1 0 5.2 2.1 9.1 6l.2.2c1 1.1 1.9 2.3 2.7 3.5 0 .1.1.1.1.2.4.6.7 1.2 1.1 1.7l.1.1c.7 1.3 1.3 2.6 1.8 4 0 .1.1.2.1.3.2.6.4 1.2.6 1.9 0 .1 0 .2.1.3.2.7.3 1.4.5 2.2l.3 2.4c.2 2.4.1 4.8-.3 7.1.3-.2.6-.4.9-.5.7-.3 1.2-.9 1.6-1.2.6-.4 1.9-.7 2.8-.7h.5c1 .2 2 .4 2.8.8 1.8 1.5 3.5 3 3.7 3.4.1.2.3.3.5.3.1 0 .2 0 .2-.1.3-.1.4-.5.2-.7-.4-.8-3.1-3-4.4-4.2l-.6-1.3-1.5-2.9c-.5-.9-.1-2.1.8-2.5.1-.1.3-.1.4-.1.7 0 1.3.9 1.7 1.4.5.5.9.7 1.3 1.4.1.1.1.2.2.3l.3.6c0-.7.1-1.1.1-1.2.1-.9.8-1.6 1.7-1.6h.1c.4 0 .6.2.8.4.3.3.3.8.4 1.4 0 .1 0 .3.1.4 0 .1 0 .2.1.3.1.4.2.7.2 1.1l.1-.1c.3-.6.9-1 1.6-1 .2 0 .5 0 .7.2.2.1.4.2.5.4.3.1.3.7-.1 1.5z" fill="url(#b)" transform="translate(145 67)"/></g></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/figure_screenshots.svg b/browser/extensions/onboarding/content/img/figure_screenshots.svg
deleted file mode 100644
index f4930d09f7af..000000000000
--- a/browser/extensions/onboarding/content/img/figure_screenshots.svg
+++ /dev/null
@@ -1,191 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="281" height="233">
- <defs>
- <linearGradient id="a" x1="-26.7072552%" x2="121.200691%" y1="-8.21456664%" y2="115.364749%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="b" x1="-171.534367%" x2="377.694136%" y1="-258.916232%" y2="507.082022%">
- <stop stop-color="#E6FCFF" offset="0%"/>
- <stop stop-color="#B5F2FF" offset="100%"/>
- </linearGradient>
- <linearGradient id="c" x1="-275.615152%" x2="393.814483%" y1="-214.880097%" y2="329.931438%">
- <stop stop-color="#E6FCFF" offset="0%"/>
- <stop stop-color="#B5F2FF" offset="100%"/>
- </linearGradient>
- <linearGradient id="d" x1="-71.2230562%" x2="141.268437%" y1="-46.5567621%" y2="122.213199%">
- <stop stop-color="#E6FCFF" offset="0%"/>
- <stop stop-color="#B5F2FF" offset="100%"/>
- </linearGradient>
- <linearGradient id="e" x1="-912.187374%" x2="706.872366%" y1="-223.131903%" y2="247.7375%">
- <stop stop-color="#E6FCFF" offset="0%"/>
- <stop stop-color="#B5F2FF" offset="100%"/>
- </linearGradient>
- <linearGradient id="f" x1="-636.509606%" x2="265.115932%" y1="-364.308744%" y2="178.753736%">
- <stop stop-color="#E6FCFF" offset="0%"/>
- <stop stop-color="#B5F2FF" offset="100%"/>
- </linearGradient>
- <linearGradient id="g" x1="-96.7324958%" x2="214.858961%" y1="-489.128132%" y2="600.29142%">
- <stop stop-color="#E6FCFF" offset="0%"/>
- <stop stop-color="#B5F2FF" offset="100%"/>
- </linearGradient>
- <linearGradient id="h" x1="-370.226425%" x2="176.655533%" y1="-420.236682%" y2="206.08556%">
- <stop stop-color="#E6FCFF" offset="0%"/>
- <stop stop-color="#B5F2FF" offset="100%"/>
- </linearGradient>
- <linearGradient id="i" x1="-1573.85207%" x2="2621.18334%" y1="-918.807829%" y2="1582.542%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="j" x1="-1977.10979%" x2="2217.92561%" y1="-1158.35597%" y2="1342.99386%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="k" x1="-635.169191%" x2="1018.69953%" y1="-1184.44408%" y2="1785.60576%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="l" x1="-278.76866%" x2="377.256589%" y1="-697.981967%" y2="835.635246%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="m" x1="-553.131633%" x2="647.619338%" y1="-1374.34047%" y2="1418.49315%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="n" x1="-450.59361%" x2="546.286439%" y1="-895.950857%" y2="958.91224%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="o" x1="-511.211278%" x2="295.07392%" y1="-745.273546%" y2="396.265912%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="p" x1="-871.182847%" x2="303.781403%" y1="-595.928571%" y2="241.5435%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="q" x1="-450.336951%" x2="307.764971%" y1="-505.416691%" y2="315.448433%">
- <stop stop-color="#E6FCFF" offset="0%"/>
- <stop stop-color="#B5F2FF" offset="100%"/>
- </linearGradient>
- <linearGradient id="r" x1="-2519.79056%" x2="1944.50093%" y1="-1090.70814%" y2="890.815528%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="s" x1="-134.127826%" x2="165.330874%" y1="-297.102666%" y2="260.202663%">
- <stop stop-color="#E6FCFF" offset="0%"/>
- <stop stop-color="#B5F2FF" offset="100%"/>
- </linearGradient>
- <linearGradient id="t" x1="-1132.52358%" x2="304.180944%" y1="-1559.01765%" y2="393.843988%">
- <stop stop-color="#E6FCFF" offset="0%"/>
- <stop stop-color="#B5F2FF" offset="100%"/>
- </linearGradient>
- <linearGradient id="u" x1="-1884.94918%" x2="1592.74001%" y1="-342.289711%" y2="381.222953%">
- <stop stop-color="#E6FCFF" offset="0%"/>
- <stop stop-color="#B5F2FF" offset="100%"/>
- </linearGradient>
- <linearGradient id="v" x1="-109.932792%" x2="195.629347%" y1="-425.144051%" y2="431.622036%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="w" x1="-813.648281%" x2="368.736119%" y1="-1076.38789%" y2="459.249729%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="x" x1="-1092.12785%" x2="635.82518%" y1="-4587.46665%" y2="2425.66052%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="y" x1="-415.250984%" x2="1490.35841%" y1="-442.448072%" y2="1582.67684%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="z" x1="-167.167389%" x2="492.546376%" y1="-2085.55413%" y2="4392.09342%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="A" x1="-2989.85248%" x2="1926.86535%" y1="-1363.11821%" y2="921.90878%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- <linearGradient id="B" x1="-2586.45105%" x2="2652.41027%" y1="-792.93501%" y2="883.790987%">
- <stop stop-color="#00C8D7" offset="0%"/>
- <stop stop-color="#008EA4" offset="100%"/>
- </linearGradient>
- </defs>
- <g fill="none" fill-rule="evenodd">
- <g fill="#D7D7DB" fill-rule="nonzero">
- <path d="M204.3 76.7h-77c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h77c.6 0 1.1.5 1.1 1.1 0 .6-.4 1.1-1.1 1.1zM193.9 71h-13.4c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.2.6-.6.6zM176.4 81.7H163c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.2.6-.6.6zm-22.2 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-7.8 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-11.2 0h-13.4c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-22.2 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-7.8 0H104c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.2.6-.5.6zm-11.2 0H80.6c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6H94c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-22.3 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-7.8 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6z"/>
- </g>
- <g fill-rule="nonzero">
- <path fill="#F9F9FA" d="M152.3 47.8h23.8s-7.4-16.6 8.3-18.8c14.1-1.9 19.6 12.5 19.6 12.5s1.7-8.3 10-6.7c8.3 1.6 14.3 14.8 14.3 14.8H249"/>
- <path fill="#D7D7DB" d="M249.5 45.8H245c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h4.5c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm-14.5 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-5.6 0h-.6c-.2 0-.4-.1-.5-.3-.1-.2-.6-1.1-1.3-2.3-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.6.9 1 1.7 1.2 2.1h.3c.3 0 .6.2.6.6 0 .4-.4.5-.7.5zm-52.9-.7H175c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h.6c-.1-.3-.2-.6-.4-1-.1-.3.1-.6.4-.7.3-.1.6.1.7.4.3 1 .6 1.7.6 1.7.1.2.1.4 0 .5-.1.1-.3.3-.4.3zm-10.4 0h-13.4c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm8.7-6.1c-.3 0-.5-.2-.6-.5 0-.4-.1-.8-.1-1.1 0-.3.2-.6.5-.6s.6.2.6.5c0 .4.1.7.1 1.1.1.3-.1.6-.5.6.1 0 .1 0 0 0zm29.2-1.1c-.2 0-.4-.1-.5-.3-.1-.3-.3-.6-.5-1-.1-.3 0-.6.2-.8.3-.1.6 0 .8.2.2.4.4.7.5 1 .1.3 0 .6-.3.7-.1.2-.2.2-.2.2zm17.9-1.4c-.1 0-.3-.1-.4-.2-2.4-2.3-4.8-3.7-7.2-4.1-1.6-.3-3.1-.2-4.3.2-.3.1-.6-.1-.7-.4-.1-.3.1-.6.4-.7 1.4-.5 3.1-.6 4.9-.2 2.6.5 5.2 2 7.7 4.4.2.2.2.6 0 .8-.1.1-.2.2-.4.2zM201 33.2c-.2 0-.3-.1-.4-.2-.7-.9-1.4-1.7-2.2-2
.4-.2-.2-.2-.6 0-.8.2-.2.6-.2.8 0 .8.7 1.6 1.6 2.3 2.5.2.2.2.6-.1.8-.2 0-.3.1-.4.1zm-22.8-4.3c-.2 0-.3-.1-.4-.2-.2-.2-.2-.6.1-.8 1.7-1.4 4.1-2.3 6.9-2.7 2.2-.3 4.3-.2 6.3.2.3.1.5.4.4.7-.1.3-.4.5-.7.4-1.9-.4-3.9-.5-5.9-.2-2.7.4-4.8 1.2-6.4 2.4-.1.2-.2.2-.3.2z"/>
- <path fill="#F9F9FA" d="M250.2 50.1h-97.9c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h97.9c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1z"/>
- </g>
- <g fill-rule="nonzero">
- <path fill="#F9F9FA" d="M49.3 29.4h13.2s-4.1-9.2 4.6-10.4c7.8-1.1 10.9 7 10.9 7s.9-4.6 5.6-3.8c4.6.9 8 8.3 8 8.3h11.5"/>
- <path fill="#D7D7DB" d="M62.9 27.9H49.7c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h12.8s.1-.1.2-.1c.3-.1.6 0 .7.3l.1.1c.1.2.1.4 0 .5-.2.3-.4.4-.6.4zm36.6-.1h-3.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .3-.3.6-.6.6zm-20.9-3.6h-.2c-.3-.1-.5-.4-.4-.7.3-.9 1.5-4 4.9-4 .4 0 .8 0 1.2.1 1.8.3 3.6 1.5 5.4 3.4.2.2.2.6 0 .8-.2.2-.6.2-.8 0-1.6-1.7-3.2-2.7-4.8-3-.4-.1-.7-.1-1-.1-2.6 0-3.5 2.2-3.8 3.2-.1.1-.3.3-.5.3zm-15.2-4.9c-.1 0-.3-.1-.4-.2-.2-.2-.2-.6 0-.8.8-.8 1.8-1.4 3.1-1.7.3-.1.6.1.7.4.1.3-.1.6-.4.7-1.1.3-2 .8-2.6 1.4-.1.2-.3.2-.4.2zm8.4-1.5h-.2c-.3-.1-.7-.2-1-.3-.3-.1-.5-.3-.4-.7.1-.3.4-.5.7-.4.4.1.8.2 1.1.3.3.1.5.4.4.7-.2.3-.4.4-.6.4z"/>
- <path fill="#F9F9FA" d="M104 31.6H49.6c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1H104c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1z"/>
- </g>
- <g fill-rule="nonzero">
- <path fill="#FFF" d="M19.6 169.1c-2.8 0-5-2.2-5-4.8V46c0-3 2.4-5.4 5.4-5.4h127c3 0 5.4 2.4 5.4 5.4v118.3c0 2.6-2.3 4.8-5 4.8H19.6z"/>
- <path fill="#D7D7DB" d="M146.9 41.8c2.3 0 4.2 1.9 4.2 4.2v118.3c0 2-1.8 3.7-3.9 3.7H19.6c-2.2 0-3.9-1.6-3.9-3.7V46c0-2.3 1.9-4.2 4.2-4.2h127zm0-2.2h-127c-3.6 0-6.5 2.9-6.5 6.5v118.3c0 3.3 2.8 5.9 6.2 5.9h127.6c3.4 0 6.2-2.7 6.2-5.9V46c0-3.5-2.9-6.4-6.5-6.4z"/>
- </g>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M145.8 62.9V161c0 1-.1 1.2-.1 1.2s-.2.1-1.2.1h-122c-1 0-1.2-.1-1.2-.1s-.1-.2-.1-1.2V62.9h124.6zm1.1-1.2H20v99.2c0 2 .4 2.5 2.5 2.5h122c2 0 2.5-.4 2.5-2.5V61.7h-.1z"/>
- <g fill="#D7D7DB" fill-rule="nonzero">
- <circle cx="3.8" cy="3.7" r="2.9" transform="translate(23 48)"/>
- <circle cx="3" cy="3.7" r="2.9" transform="translate(33 48)"/>
- <path d="M115.3 54.9H51.5c-1.7 0-3.1-1.4-3.1-3.1v-.3c0-1.7 1.4-3.1 3.1-3.1h63.8c1.7 0 3.1 1.4 3.1 3.1v.3c0 1.8-1.4 3.1-3.1 3.1z"/>
- <g>
- <circle cx="3.8" cy="3.7" r="2.9" transform="translate(127 48)"/>
- <circle cx="3.1" cy="3.7" r="2.9" transform="translate(137 48)"/>
- </g>
- </g>
- <g transform="translate(149 84)">
- <ellipse cx="42.7" cy="142" fill="#EDEDF0" fill-rule="nonzero" rx="42.5" ry="6.5"/>
- <path fill="#F9F9FA" fill-rule="nonzero" d="M121.2 99.6c-1.3-3.1-4.3-5.2-7.7-5.2-.7 0-1.4.1-2.1.3-.8 0-3.1-.3-7.2-2-1.7-.7-4.8-3.9-8.4-10.5 5.2-19.9 5.5-36.8.7-50.3-.4-1-.9-2.1-1.5-3.2l-.3-1.4 2-1.7c1.6-1.4 2.3-3.5 1.7-5.6-.3-1.2-1-2.2-2-2.9 0-.3 0-.6-.1-.9-.4-2.3-2.2-4.1-4.5-4.4-.4-.1-10.6-1.7-17.1-1.7h-.4l-1.7-2.8C70 3.1 65.5.6 60.5.6c-2.6 0-5.2.7-7.5 2.1-2.6 1.6-4.5 3.9-5.7 6.7-6 .7-12.1 2.3-18.2 4.7l-3.4-1.4c-1.7-.7-3.5-1.1-5.4-1.1-5.8 0-10.9 3.5-13.1 8.8-2.7 6.6-.1 14 5.8 17.5-1.1 5.9-1.5 12.4-1 19.6.6 9-2.2 13.5-5.1 18.2-4.4 7.1-9.4 15.1 0 33.8 0 2.2.1 4.2.2 5.8 1.3 11.8 4.6 17.7 10 17.7.9 0 1.9-.2 2.7-.6 2.2-1.1 3.3-2.6 5-9.9 9.3 3.1 21.2 5.8 30.9 6.9-1.7 7.6-1.5 9.4 0 11.4 1.2 1.5 3 2.4 5 2.4 4.1 0 8.8-4.1 14-12.1 1.3-2.1 2.8-5 4.4-8.5 1.4-2.4 5.5-9.7 10-20.9 2.8 2.9 5.6 5 8.6 6.2 5.2 2.1 9.8 3.2 13.5 3.2 2.5 0 4.2-.5 5.1-.9 4.6-1.5 6.6-6.4 4.9-10.6z"/>
- <path d="M115.2 101.4c-.4-.9-1.5-1.4-2.4-1-.2.1-.6.1-1.2.1-1.4 0-4.6-.3-9.8-2.4-5.5-2.2-10.3-10.6-12.7-15.5-.1-.2-.1-.5-.1-.8 5.4-19.5 5.9-35.8 1.4-48.4-.3-.8-.7-1.8-1.3-2.7-.1-.1-.1-.2-.1-.3L87.7 25c-.1-.4 0-.8.4-1.1l2.6-2.2-5.8-.9c-.5-.1-.9-.4-.9-.9s.2-.9.6-1.2l3-1.6c-3.5-.5-8.9-1.1-12.7-1.1-1.1 0-2 .1-2.6.2l-.4.1c-.4.1-.9-.1-1.1-.5l-3.4-5.5C66 8 63.5 6.7 60.9 6.7c-1.4 0-2.8.4-4.1 1.2-2.2 1.4-3.5 3.7-3.6 6.3 0 .6-.5 1-1.1 1.1-7.2.4-14.7 2.2-22.2 5.4-.3.1-.6.1-.9 0l-5.4-2.2c-.9-.4-1.9-.6-2.9-.6-3.1 0-5.9 1.9-7.1 4.8-1.6 3.9.3 8.4 4.2 10l2.3.9c.5.2.8.8.6 1.3-1.8 6.2-2.4 13.6-1.8 21.9.7 11.1-2.9 16.9-6.1 22.1-4.3 6.9-7.7 12.3.9 28.6.1.2.1.4.1.5-.1 2.6 0 4.7.2 6.3.8 7.8 2.6 11.1 3.4 11.8.4-.8 1.2-3.3 2.9-11.3.1-.3.3-.6.6-.8.2-.1.3-.1.5-.1.1 0 .3 0 .4.1 10.8 4.5 29.6 8.7 41.2 9.1.3 0 .7.2.9.4.2.3.3.6.2.9-2.1 8.3-2.5 11-2.5 11.9 1.1-.3 4.2-2.7 8.3-9.1 1.2-1.9 2.5-4.5 4-7.9 0 0 0-.1.1-.1 3.3-5.6 8.7-16.6 13-29.4.1-.4.5-.7.9-.8.4 0 .9.2 1.1.5 3.7 6.2 7.8 10.4 11.7 12 5.5 2.2 9.1 2.7
11.1 2.7 1.6 0 2.4-.3 2.7-.4.6-.4 1-1.5.7-2.4z"/>
- <path fill="url(#a)" fill-rule="nonzero" d="M114.6 98c-.8-2.1-2.9-3.4-5.1-3.4-.6 0-1.1.1-1.7.3-.7 0-3.4 0-8.7-2.2-3-1.2-6.8-6-10.3-12.8 5.4-19.8 5.7-36.5 1-49.7-.3-1-.8-2-1.4-3l-.9-3.4 3.3-2.8c.8-.7 1.1-1.7.8-2.7-.3-1-1.1-1.7-2.1-1.9l-.7-.1c.5-.6.8-1.4.6-2.2-.2-1.1-1-2-2.1-2.1-.1 0-10.3-1.6-16.7-1.6-.7 0-1.3 0-1.9.1l-2.6-4.2C64 2.9 60.4.9 56.4.9c-2.1 0-4.2.6-6 1.7-2.5 1.6-4.3 4.1-5 6.9-6.6.6-13.5 2.3-20.3 5.1l-4.4-1.8c-1.4-.6-2.8-.8-4.3-.8-4.7 0-8.8 2.8-10.6 7.1-2.4 5.8.4 12.5 6.2 14.9l.2.1c-1.4 6.1-1.9 13.2-1.4 20.9.7 9.9-2.5 15-5.6 19.9-4.3 6.9-8.7 14 .4 31.7 0 2.4 0 4.5.2 6.2.6 5.7 2.4 15.2 7.2 15.2.5 0 1-.1 1.5-.4 1.3-.6 2.1-1.5 4.2-11.1 10.3 3.8 25.5 7.2 36.4 8.1-2.6 10.4-2 11.1-1.2 12.2.7.9 1.7 1.4 2.8 1.4 4.1 0 9-6.8 11.6-10.8 1.3-2 2.7-4.8 4.2-8.3C75.5 114 80 104.9 84 94c3.4 4.5 6.9 7.6 10.6 9.1 4.9 2 9.1 3 12.5 3 2 0 3.3-.4 4.1-.7 3.2-1.4 4.5-4.6 3.4-7.4zm-4.4 3.8c-.3.1-1.1.4-2.7.4-2 0-5.6-.5-11.1-2.7-3.9-1.6-8-5.7-11.7-12-.2-.4-.6-.6-1.1-.5-.4 0-.8.3-.9.8-4.3 12.8-9.
7 23.9-13 29.4 0 0 0 .1-.1.1-1.5 3.4-2.8 6.1-4 7.9-4.1 6.4-7.1 8.8-8.3 9.1 0-.9.4-3.6 2.5-11.9.1-.3 0-.7-.2-.9-.2-.3-.5-.4-.9-.4-11.6-.4-30.4-4.6-41.2-9.1-.1-.1-.3-.1-.4-.1-.2 0-.4 0-.5.1-.3.2-.5.4-.6.8-1.7 8.1-2.5 10.6-2.9 11.3-.8-.7-2.6-4-3.4-11.8-.2-1.7-.2-3.8-.2-6.3 0-.2 0-.4-.1-.5-8.5-16.3-5.2-21.7-.9-28.6 3.2-5.1 6.8-11 6.1-22.1-.5-8.3.1-15.7 1.8-21.9.2-.5-.1-1.1-.6-1.3l-2.3-.9c-3.9-1.6-5.8-6.1-4.2-10 1.2-2.9 4-4.8 7.1-4.8 1 0 2 .2 2.9.6l5.4 2.2c.3.1.6.1.9 0 7.5-3.2 15-5 22.2-5.4.6 0 1-.5 1.1-1.1.1-2.6 1.5-4.9 3.6-6.3 1.2-.8 2.6-1.2 4.1-1.2 2.7 0 5.1 1.4 6.5 3.6l3.4 5.5c.2.4.7.6 1.1.5l.4-.1c.7-.1 1.6-.2 2.6-.2 3.8 0 9.2.6 12.7 1.1l-3 1.6c-.4.2-.7.7-.6 1.2.1.5.5.8.9.9l5.8.9-2.6 2.2c-.3.3-.5.7-.4 1.1l1.3 5.4c0 .1.1.2.1.3.6 1 1 1.9 1.3 2.7 4.5 12.7 4 29-1.4 48.4-.1.3 0 .5.1.8 2.4 4.8 7.1 13.2 12.7 15.5 5.2 2.1 8.4 2.4 9.8 2.4.6 0 1 0 1.2-.1.9-.4 2 .1 2.4 1 .6.9.2 2-.7 2.4z" transform="translate(4 2)"/>
- <path fill="url(#b)" fill-rule="nonzero" d="M36.6 40.6c-1.1 0-2.2-.2-3.3-.7l-16.2-6.6c-4.5-1.8-6.7-7-4.8-11.5 1.8-4.5 7-6.7 11.5-4.8L40 23.6c4.5 1.8 6.7 7 4.8 11.5-1.4 3.4-4.7 5.5-8.2 5.5z"/>
- <path fill="url(#c)" fill-rule="nonzero" d="M70.8 39.3c-2.9 0-5.8-1.5-7.5-4.2L53.1 18.6c-2.6-4.1-1.3-9.6 2.8-12.1C60 3.9 65.5 5.2 68 9.3l10.2 16.5c2.6 4.1 1.3 9.6-2.8 12.1-1.4 1-3 1.4-4.6 1.4z"/>
- <path fill="url(#d)" fill-rule="nonzero" d="M28.6 19.4c-2.2.9-12.8 10.5-11.1 37.1 1.7 26.2-21.6 21.8-3.8 53.4 3.9 6.9 50.2 17.7 58.6 12.7 2.5-1.5 31.6-54.6 19.1-89.8-4.1-11.5-28.5-28-62.8-13.4z"/>
- <path fill="url(#e)" fill-rule="nonzero" d="M14.3 87.5s-2.6 17.8-1.7 26.6c1 8.8 3.3 13.7 5.1 12.8 1.7-.8 6.2-26.8 6.2-26.8l-9.6-12.6z"/>
- <path fill="url(#f)" fill-rule="nonzero" d="M80.7 103s-5.5 17.1-10.3 24.6c-4.8 7.5-9.1 10.8-10.2 9.3-1.2-1.5 6.2-26.8 6.2-26.8l14.3-7.1z"/>
- <path fill="url(#g)" fill-rule="nonzero" d="M33.5 19c7.8-4 28.9-2.7 38.4-4.1C77 14.1 91 16.3 91 16.3l-6 3.2 8.2 1.2-4.5 3.8 1.8 7.3-1.3-.7-46.3-12.8-9.4.7z"/>
- <path fill="url(#h)" fill-rule="nonzero" d="M111.4 105.1c-2.3 0-6-.6-11.5-2.8-10-4-16.7-20.9-17.4-22.9-.6-1.5.2-3.2 1.7-3.8 1.5-.6 3.2.2 3.8 1.7 1.7 4.5 7.7 16.9 14.1 19.5 7.1 2.9 10.2 2.3 10.2 2.3 1.5-.6 3.2.1 3.8 1.6.6 1.5-.1 3.2-1.6 3.8-.4.3-1.4.6-3.1.6z"/>
- <path fill="#FFF" fill-rule="nonzero" d="M35.4 29.8c-8.3 5.5-3.2 72.6 2.7 79.8 9.5 11.8 31.7 9.3 34.6 3 1.1-2.3 26-48.2 14.3-79.8-3-8-22.5-22.3-51.6-3z"/>
- <path fill="url(#i)" fill-rule="nonzero" d="M50.3 43.8c.9.2 1.4 1.1 1.2 1.9l-.8 3.5c-.2.9-1.1 1.4-1.9 1.2-.9-.2-1.4-1.1-1.2-1.9l.8-3.5c.2-.9 1.1-1.4 1.9-1.2z"/>
- <path fill="url(#j)" fill-rule="nonzero" d="M81.4 44.8c.9.2 1.4 1.1 1.2 1.9l-.8 3.5c-.2.9-1.1 1.4-1.9 1.2-.9-.2-1.4-1.1-1.2-1.9l.8-3.5c.2-.9 1-1.4 1.9-1.2z"/>
- <path fill="url(#k)" fill-rule="nonzero" d="M48.9 57.6c-.5 0-1-.1-1.5-.2-3.5-.8-4.7-3.9-4.7-4.1-.3-.8.1-1.6.9-1.9.8-.3 1.6.1 1.9.9 0 .1.7 1.8 2.6 2.2 1.9.5 3.3-.8 3.3-.8.6-.6 1.5-.5 2.1 0 .6.6.5 1.5 0 2.1-.2.1-2 1.8-4.6 1.8z"/>
- <path fill="url(#l)" fill-rule="nonzero" d="M56.6 69.2c-.8 0-1.4-.6-1.5-1.3-.1-.8.5-1.5 1.3-1.6 8.9-.7 17.1-2.5 18-3.8 1-1.7 1.2-4 1.2-4.1 0-.8.7-1.4 1.4-1.4.8 0 1.4.5 1.5 1.3.1 1.3.6 3.4 1.2 4.1 1.1 1.3 2.3 1.2 2.3 1.2.8 0 1.5.6 1.6 1.4.1.8-.6 1.5-1.4 1.6-1 .1-3.2-.3-4.8-2.3-.1-.2-.3-.4-.4-.6-.1.1-.1.2-.2.3-2 3.3-14.8 4.7-20.3 5.2h.1z"/>
- <g fill-rule="nonzero">
- <path fill="url(#m)" d="M2.4 4.3C1.3 5 7.7 8.2 8.6 8.2c1.3 0 7.8-2.8 7.6-5C16 2.1 6.8 1.3 2.4 4.3z" transform="translate(70 52)"/>
- <path fill="url(#n)" d="M8.6 9.7C7.5 9.7 1.5 7 .9 5c-.2-.8.1-1.5.7-2C5.8.2 13.9.3 16.3 1.4c1 .4 1.2 1.1 1.3 1.6.1.9-.2 1.7-1 2.6-1.8 2.1-6.4 4.1-8 4.1zm-3.9-5c1.3.8 3.5 1.9 4.1 2 .9-.1 4.3-1.7 5.5-2.8-2-.4-6.5-.5-9.6.8z" transform="translate(70 52)"/>
- </g>
- <g fill-rule="nonzero">
- <path fill="#C8C8CC" d="M115 92.8l-7.2.1-.5-40.7c0-3.3 2.5-6.1 5.7-6.3.3 0 .5.2.5.4l1.5 46.5z"/>
- <path fill="#E1E1E6" d="M130.1 53.3c.2-.2.5-.1.7.1 1.9 2.7 1.4 6.4-1.1 8.5l-31.3 26-4.6-5.5 36.3-29.1z"/>
- <path fill="url(#o)" d="M.7 10c-.4 2.6.2 5.2 1.9 7.1.8 1 1.8 1.7 2.9 2.3 3.5 1.6 7.8 1 11-1.7.2-.2.5-.4.7-.6l10.1-8.4c.4-.4.7-.9.8-1.4.1-.6-.1-1.1-.5-1.5l-2.9-3.4c-.2-.2-.4-.4-.7-.6-.2-.1-.5-.2-.7-.2-.6-.1-1.1.1-1.5.5l-2.9 2.4c-.1-.2-.2-.3-.4-.5-.8-1-1.8-1.7-2.9-2.3-3.5-1.6-7.8-1-11 1.7C2.5 5.1 1.2 7.5.7 10zm6.6-3.4c1.9-1.6 4.5-2.1 6.5-1.1.6.3 1.1.7 1.5 1.1 1.4 1.6 1.3 4.1.1 6.1-.5.7-1.1 1.4-2 2.1-1.9 1.3-4.2 1.5-5.9.7-.6-.3-1.1-.7-1.5-1.1-.8-1-1.2-2.4-.9-3.8 0-1.5.9-2.9 2.2-4z" transform="translate(77 75)"/>
- <path fill="url(#p)" d="M0 2.5l.2 13.2v.9c.1 4.1 2.3 7.8 5.7 9.4 1.2.6 2.5.9 3.8.8 5.1-.1 9.3-4.7 9.2-10.4-.1-4.1-2.3-7.8-5.7-9.4-1.2-.6-2.5-.9-3.8-.8h-.6V2.4c0-.8-.5-1.5-1.2-1.9C7.3.4 7 .3 6.7.3L2.2.4C1.6.4 1.1.6.7 1 .2 1.4 0 2 0 2.5zm11.3 8.3c1.9.9 3.2 3.1 3.3 5.6 0 3.4-2.2 6.1-5 6.2-.7 0-1.3-.1-1.9-.4-1.8-.8-3-2.7-3.2-4.9v-.1c0-1.2.1-2.1.3-2.9.7-2.2 2.5-3.9 4.7-3.9.5 0 1.2.1 1.8.4z" transform="translate(107 83)"/>
- <path fill="#C8C8CC" d="M111.3 70.6c1.3.1 2.2 1.3 2.1 2.5-.1 1.3-1.3 2.2-2.5 2.1-1.3-.1-2.2-1.3-2.1-2.5.1-1.2 1.2-2.2 2.5-2.1z"/>
- </g>
- <path fill="url(#q)" fill-rule="nonzero" d="M1.4 2.1L.3 5.7c-1 3.1.7 6.4 3.8 7.4 3.1 1 6.4-.7 7.4-3.8L14.4.1l-13 2z" transform="translate(57 67)"/>
- <path fill="url(#r)" fill-rule="nonzero" d="M63.3 74.7h-.2c-.4-.1-.6-.5-.5-.9l2.2-6.8c.1-.4.5-.6.9-.5.4.1.6.5.5.9L64 74.2c-.1.3-.4.5-.7.5z"/>
- <path fill="url(#s)" fill-rule="nonzero" d="M58.7 98.1c-17.5 0-33-27.8-33.6-29-.8-1.4-.3-3.2 1.2-4 1.4-.8 3.2-.3 4 1.2 4.2 7.6 17.5 27 29.4 25.9 15.2-1.4 22.4-6.9 22.4-7 1.3-1 3.1-.8 4.1.5 1 1.3.8 3.1-.4 4.1-.3.3-8.5 6.7-25.6 8.2-.5.1-1 .1-1.5.1z"/>
- <path fill="url(#t)" fill-rule="nonzero" d="M112.5 97.8s-8 3.2-8.1 5.9c-.1 2.7 8.2 6 11.8.7 3.6-5.2-2.3-7.2-3.7-6.6z"/>
- <path fill="url(#u)" fill-rule="nonzero" d="M30.5 65.3s.7 5.9 4.4 9.2c3.7 3.3-4.8 8.1-4.4 15.4.4 7.4 0-24.6 0-24.6z"/>
- <path fill="url(#v)" fill-rule="nonzero" d="M58.8 98.9h-1.1C44 98.5 32 81 31.5 80.2c-.2-.3-.1-.8.2-1 .3-.2.8-.1 1 .2.1.2 12.1 17.7 25 18 12.8.3 25.3-6.2 27.1-7.7.5-.4.9-2.6.2-3.7-.7-1-2.4-.3-3.6.5-.3.2-.8.1-1-.2-.2-.3-.1-.8.2-1 3.4-2.1 4.9-.9 5.6-.1 1.2 1.6.8 4.7-.4 5.7-1.2 1-13.4 8-27 8z"/>
- <path fill="url(#w)" fill-rule="nonzero" d="M110.8 108.3c-1.3 0-2.8-.3-4.4-1.3-1.9-1-2.8-2.2-2.7-3.6.2-2.7 4.7-4.5 5.2-4.7.4-.1.8 0 1 .4.1.4 0 .8-.4 1-1.6.6-4.2 2.1-4.3 3.5-.1.9 1 1.7 1.9 2.2 2.2 1.2 4.3 1.4 6.1.6 2.1-1 3.1-2.8 3.2-3.2.1-.6.5-2.4-.5-3.5-.7-.8-2.1-1.1-4.1-.9-.4 0-.8-.3-.8-.7 0-.4.3-.8.7-.8 2.5-.2 4.3.2 5.3 1.4 1.5 1.6 1 4 .8 4.7-.2.9-1.6 3.2-4 4.3-.8.3-1.8.6-3 .6z"/>
- <path fill="url(#x)" fill-rule="nonzero" d="M61.1 125.5c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7 3.2 0 8.1-1 8.2-1 .4-.1.8.2.9.6.1.4-.2.8-.6.9-.2-.1-5.1.9-8.5.9z"/>
- <path fill="url(#y)" fill-rule="nonzero" d="M23 25.4h-.2c-.4-.1-.6-.5-.5-.9.2-.7 2.4-5 7.8-7.4.4-.2.8 0 1 .4.2.4 0 .8-.4 1-4.7 2-6.7 5.8-6.9 6.4-.2.3-.5.5-.8.5z"/>
- <path fill="url(#z)" fill-rule="nonzero" d="M68.5 14.8c-8.9 0-18.2-1.2-18.3-1.2-.4-.1-.7-.4-.6-.8.1-.4.4-.7.8-.6.1 0 14.1 1.8 24.1 1 .4 0 .8.3.8.7 0 .4-.3.8-.7.8-2 0-4 .1-6.1.1z"/>
- <path fill="url(#A)" fill-rule="nonzero" d="M88.8 89h-.2c-.4-.1-.6-.5-.5-.9l2-6c.1-.4.5-.6.9-.5.4.1.6.5.5.9l-2 6c-.1.3-.4.5-.7.5z"/>
- <path fill="url(#B)" fill-rule="nonzero" d="M21 119.1h-.1c-.4-.1-.7-.5-.6-.9l1.7-8.6c.1-.4.5-.7.9-.6.4.1.7.5.6.9l-1.7 8.6c-.2.4-.5.6-.8.6z"/>
- </g>
- <path fill="#D7D7DB" fill-rule="nonzero" d="M70.8 82.4c-3.7 0-6.6 3-6.6 6.6h6.6v-6.6zm20 0h-6.6V89h6.6v-6.6zm13.3 0V89h6.6c0-3.6-3-6.6-6.6-6.6zm-23.3 0h-6.6V89h6.6v-6.6zm19.9 0h-6.6V89h6.6v-6.6zm3.4 16.6h6.6v-6.6h-6.6V99zm0 20c3.7 0 6.6-3 6.6-6.6h-6.6v6.6zm0-10h6.6v-6.6h-6.6v6.6zm-1.5-7.2c-2.1-3-6.2-3.7-9.3-1.6l-12.7 9.4-6.5-4.6c0-.3.1-.6.1-1 0-2.7-1.3-5.1-3.3-6.6v-5h-6.6v3.5c-3.8.8-6.6 4.1-6.6 8.1 0 4.6 3.7 8.3 8.3 8.3 1.8 0 3.5-.6 4.8-1.6l4.1 2.9-4.6 3.3c-1.3-.8-2.7-1.2-4.3-1.2-4.6 0-8.3 3.7-8.3 8.3 0 4.6 3.7 8.3 8.3 8.3 4.6 0 8.3-3.7 8.3-8.3 0-.6-.1-1.1-.2-1.6l28.5-20.6zm-36.7 6.4c-2.3 0-4.2-1.9-4.2-4.2 0-2.3 1.9-4.2 4.2-4.2 2.3 0 4.2 1.9 4.2 4.2-.1 2.3-1.9 4.2-4.2 4.2zm0 19.9c-2.3 0-4.2-1.9-4.2-4.2 0-2.3 1.9-4.2 4.2-4.2 2.3 0 4.2 1.9 4.2 4.2-.1 2.4-1.9 4.2-4.2 4.2zm17.9-8l10 7.6c3 2.1 7.2 1.4 9.3-1.6L89.6 116l-5.8 4.1z"/>
- <g fill="#D7D7DB" fill-rule="nonzero">
- <path d="M17.5 26.8l-.1-.1.1.1zM266.5 1.5v4.4c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5V3h-2.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h4.4c.8 0 1.5.7 1.5 1.5zM266.5 14.4v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17V40c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.6 1.5 1.4zm0 17.1V57c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17V74c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17V91c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17.1v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17.1v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.6 1.5 1.5zm0 17v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5
1.5zM266.5 184.8v4.4c0 .8-.7 1.5-1.5 1.5h-4.4c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h2.9v-2.9c0-.8.7-1.5 1.5-1.5s1.5.6 1.5 1.5zM253.3 189.2c0 .8-.7 1.5-1.5 1.5H243c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5H208c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.4.7 1.4 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8
c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5H94c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5H59c.8 0 1.4.7 1.4 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zM7.8 189.2c0 .8-.7 1.5-1.5 1.5H2c-.8 0-1.5-.7-1.5-1.5v-4.4c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5v2.9h2.9c.8 0 1.4.7 1.4 1.5zM3.4 14.4v8.5c0 .8-.7 1.5-1.5 1.5S.4 23.7.4 22.9v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17V40c0 .8-.7 1.5-1.5 1.5S.4 40.8.4 40v-8.5c0-.8.7-1.5 1.5-1.5s1.5.6 1.5 1.4zm0 17.1V57c0 .8-.7 1.5-1.5 1.5S.4 57.8.4 57v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17V74c0 .8-.7 1.5-1.5 1.5S.4 74.8.4 74v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17V91c0 .8-.7 1.5-1.5 1.5S.4 91.8.4 91v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17.1v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7
-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17.1v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.6 1.5 1.5zm0 17v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zm0 17v8.5c0 .8-.7 1.5-1.5 1.5s-1.5-.7-1.5-1.5v-8.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5zM7.8 1.5c0 .8-.7 1.5-1.5 1.5H3.4v2.9c0 .8-.7 1.5-1.5 1.5S.4 6.7.4 5.9V1.5C.4.7 1.1 0 1.9 0h4.4c.9 0 1.5.7 1.5 1.5zM253.3 1.5c0 .8-.7 1.5-1.5 1.5H243c-.8 0-1.5-.7-1.5-1.5S242.2 0 243 0h8.8c.8 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5H208c-.8 0-1.5-.7-1.5-1.5S207.2 0 208 0h8.8c.8 0 1.4.7 1.4 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5h-8.8c-
.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5S137 0 137.8 0h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5S84.4 0 85.2 0H94c.9 0 1.5.7 1.5 1.5zM78 1.5c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5S66.9 0 67.7 0h8.8c.8 0 1.5.7 1.5 1.5zm-17.6 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5S49.3 0 50.1 0H59c.8 0 1.4.7 1.4 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5S31.8 0 32.6 0h8.8c.9 0 1.5.7 1.5 1.5zm-17.5 0c0 .8-.7 1.5-1.5 1.5h-8.8c-.8 0-1.5-.7-1.5-1.5S14.3 0 15.1 0h8.8c.8 0 1.5.7 1.5 1.5z"/>
- </g>
- <path d="M-18-32h352v303H-18z"/>
- </g>
-</svg>
diff --git a/browser/extensions/onboarding/content/img/figure_singlesearch.svg b/browser/extensions/onboarding/content/img/figure_singlesearch.svg
deleted file mode 100644
index 9be029397ccf..000000000000
--- a/browser/extensions/onboarding/content/img/figure_singlesearch.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="303" height="253" viewBox="0 0 303 253" xmlns="http://www.w3.org/2000/svg"><title>search</title><defs><linearGradient x1="-18.632%" y1="-397.383%" x2="117.795%" y2="492.152%" id="a"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-312.046%" y1="-3945.649%" x2="293.266%" y2="2768.992%" id="b"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-291.258%" y1="-362.215%" x2="267.9%" y2="331.228%" id="c"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-145.39%" y1="-145.464%" x2="148.231%" y2="148.054%" id="d"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-760.952%" y1="-957.112%" x2="540.851%" y2="637.214%" id="e"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></
linearGradient></defs><g fill="none" fill-rule="evenodd"><path d="M-18-9h352v303H-18z"/><g fill-rule="nonzero"><g fill="#D7D7DB"><path d="M262.3 209.3H138.8c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h123.5c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1zM245.6 203.7h-31c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h31c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zM217.5 214.1h-13.4c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-22.3 0h-3.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-7.8 0h-1.1c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-11.1 0h-13.4c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm-22.4 0h-3.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.2.6-.6.6zm-7.8 0H145c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-11.1 0h-13.4c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6H135c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm-22.3 0h-3.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h3.3c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm-7.8 0h-1.1c-.3 0-.6-.2-.6
-.6 0-.3.2-.6.6-.6h1.1c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm-11.2 0H80.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-22.3 0H68c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.2.6-.5.6zm-7.8 0h-1.1c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h1.1c.3 0 .6.2.6.6-.1.4-.3.6-.6.6zm-11.2 0H39c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6z"/></g><path d="M6.3 148.8c-2.8 0-5.1-2.3-5.1-5.1v-27.2c0-2.8 2.3-5.1 5.1-5.1h245.8c2.8 0 5.1 2.3 5.1 5.1v27.2c0 2.8-2.3 5.1-5.1 5.1H6.3z" fill="#FFF"/><path d="M252.1 2.4c2.2 0 4 1.8 4 4v27.2c0 2.2-1.8 4-4 4H6.3c-2.2 0-4-1.8-4-4V6.4c0-2.2 1.8-4 4-4h245.8zm0-2.2H6.3C2.9.2.1 3 .1 6.4v27.2c0 3.4 2.8 6.2 6.2 6.2h245.8c3.4 0 6.2-2.8 6.2-6.2V6.4c.1-3.4-2.7-6.2-6.2-6.2z" fill="url(#a)" transform="translate(0 110)"/><path d="M157 23.5h24.1s-7.5-16.9 8.5-19c14.3-1.9 19.9 12.7 19.9 12.7s1.7-8.5 10.2-6.8c8.4 1.6 14.6 15.1 14.6 15.1h21" fill="#F9F9FA"/><path d="M255.6 21.4h-6.2c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h6.2c.3 0 .6.2.6.6 0 .
4-.3.6-.6.6zm-16.2 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-57.9-.6h-1.8c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h1c-.1-.2-.2-.4-.3-.7-.1-.3.1-.6.3-.7.3-.1.6.1.7.3.3.9.5 1.4.5 1.4.1.2.1.4 0 .5 0 .3-.2.4-.4.4zm-10.7 0h-13.4c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.4c.3 0 .6.2.6.6-.1.3-.3.6-.6.6zm63.4-.1c-.2 0-.4-.1-.5-.3-.4-.6-.9-1.6-1.7-2.8-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.8 1.2 1.4 2.2 1.8 2.9.2.3.1.6-.2.8h-.4zM179.9 15c-.3 0-.5-.2-.6-.5-.1-.4-.1-.8-.1-1.1 0-.3.2-.6.5-.6s.6.2.6.5c0 .4.1.7.1 1.1.1.2-.1.5-.5.6.1 0 0 0 0 0zm29.1-2.5c-.2 0-.4-.1-.5-.3-.2-.3-.3-.6-.5-1-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.2.4.4.7.6 1 .1.3 0 .6-.2.8-.3.1-.3.1-.4.1zm17.7-1.4c-.1 0-.3 0-.4-.1-2.1-1.8-4.3-3-6.3-3.4-2-.4-3.8-.2-5.3.6-.3.1-.6 0-.8-.2-.1-.3 0-.6.2-.8 1.7-.9 3.8-1.1 6.1-.7 2.3.4 4.6 1.6 6.9 3.6.2.2.3.6.1.8-.2.1-.4.2-.5.2zm-20.9-3.2c-.2 0-.3-.1-.4-.2-.7-.8-1.5-1.6-2.3-2.3-.2-.2-.3-.6-.1-.8.2-.2.5-.3.8-.1.9.7 1.7 1.5 2.4 2.4.2.2.2.6-.1.8 0 .2-.2.2-.3.2zm-23-3.2c-.2 0-.3-.1-.4-.2-.2-.
2-.2-.6 0-.8 1.8-1.6 4.3-2.7 7.5-3.1 1.9-.3 3.8-.2 5.7.1.3.1.5.3.5.6-.1.3-.3.5-.6.5-1.7-.3-3.5-.3-5.3-.1-2.9.4-5.3 1.3-6.9 2.8-.2.1-.4.2-.5.2z" fill="#D7D7DB"/><path d="M256.3 25.7H157c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h99.4c.6 0 1.1.5 1.1 1.1 0 .6-.6 1.1-1.2 1.1zM4 46.5h13.4s-4.2-9.4 4.7-10.6C30 34.8 33.2 43 33.2 43s.9-4.7 5.7-3.8c4.7.9 8.1 8.4 8.1 8.4h11.7" fill="#F9F9FA"/><path d="M17.8 45H4.5c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.7.6zm41.3-.1h-.5c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h.5c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-5 0h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-20.4-3.4c-.2 0-.4-.2-.5-.4L33 41c-.1-.3 0-.6.2-.7.5-1.6 2-3.8 4.9-3.8.4 0 .8 0 1.3.1 1.7.3 3.3 1.3 5 2.9.2.2.2.6 0 .8-.2.2-.6.2-.8 0-1.5-1.4-3-2.3-4.4-2.6-.4-.1-.7-.1-1-.1-3.2 0-3.9 3.3-4 3.5-.1.2-.3.4-.5.4zm-15.6-4.9c-.1 0-.3 0-.4-.1-.2-.2-.3-.6-.1-.8.7-.9 1.8-1.5 3.1-1.9.3-.1.6.1.7.4.1.3-.1.6-.4.7-1.1.3-1.9.9-2.5 1.6 0 0-.2.1-.4.1zm8.3-1.9h-.1c-.3-.1-.7-.2-1-.2-.3
0-.5-.3-.5-.6s.3-.5.6-.5c.4.1.8.1 1.2.2.3.1.5.4.4.7-.1.2-.3.4-.6.4z" fill="#D7D7DB"/><path d="M59.5 48.8H4.3c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h55.3c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.2 1.1z" fill="#F9F9FA"/><g><path d="M210 92.1v-9.5c0-2-1.6-3.6-3.6-3.6H38.3c-2 0-3.6 1.6-3.6 3.6v9.5c0 2 1.6 3.6 3.6 3.6h168.1c2 0 3.6-1.6 3.6-3.6zm0-34.8v-9.5c0-2-1.6-3.6-3.6-3.6H38.3c-2 0-3.6 1.6-3.6 3.6v9.5c0 2 1.6 3.6 3.6 3.6h168.1c2 0 3.6-1.6 3.6-3.6zm0 121.3v-9.5c0-2-1.6-3.6-3.6-3.6H38.3c-2 0-3.6 1.6-3.6 3.6v9.5c0 2 1.6 3.6 3.6 3.6h168.1c2 0 3.6-1.6 3.6-3.6z" fill="#FFF"/><path d="M206 44.2c2.2 0 4 1.8 4 4v8.7c0 2.2-1.8 4-4 4H38.8c-2.2 0-4-1.8-4-4v-8.7c0-2.2 1.8-4 4-4H206zm0 34.8c2.2 0 4 1.8 4 4v8.7c0 2.2-1.8 4-4 4H38.8c-2.2 0-4-1.8-4-4V83c0-2.2 1.8-4 4-4H206zm0 86.5c2.2 0 4 1.8 4 4v8.7c0 2.2-1.8 4-4 4H38.8c-2.2 0-4-1.8-4-4v-8.7c0-2.2 1.8-4 4-4H206zm0-123.6H38.8c-3.4 0-6.2 2.8-6.2 6.2v8.7c0 3.4 2.8 6.2 6.2 6.2H206c3.4 0 6.2-2.8 6.2-6.2v-8.7c0-3.4-2.8-6.2-6.2-6.2zm0 34.8H38.8c-3.4 0-6.2 2.8-6.
2 6.2v8.7c0 3.4 2.8 6.2 6.2 6.2H206c3.4 0 6.2-2.8 6.2-6.2V83c0-3.5-2.8-6.3-6.2-6.3zm0 86.6H38.8c-3.4 0-6.2 2.8-6.2 6.2v8.7c0 3.4 2.8 6.2 6.2 6.2H206c3.4 0 6.2-2.8 6.2-6.2v-8.7c0-3.4-2.8-6.2-6.2-6.2z" fill="#D7D7DB"/></g><path d="M300.8 176.6l-.1-.1-4.7-4.3c-.2-1.2-.8-2.3-1.7-3.1l-17.4-16c-.9-.8-2-1.3-3.2-1.4l-8.3-7.6c-1-1-2.2-1.7-3.5-2.1 10.8-18 8.1-41.3-6.9-56.4-8.7-8.7-20.3-13.5-32.6-13.5s-23.9 4.8-32.6 13.5c-18 18-18 47.3 0 65.2 8.7 8.7 20.3 13.5 32.6 13.5 8.3 0 16.6-2.3 23.7-6.6.4 1.3 1.2 2.6 2.2 3.6l7.6 8.3c.1 1.2.6 2.3 1.4 3.2l16 17.4c.8.9 1.9 1.5 3.1 1.7l4.2 4.6.1.1c1.5 1.5 3.4 2.3 5.7 2.3 3.6 0 7.8-2 11.2-5.4 5.7-5.8 7.1-13 3.2-16.9z" fill="#F9F9FA"/><g><path d="M224.1 88.7c-10.7 0-20.3 5.1-26.3 13h52.6c-6.1-7.9-15.6-13-26.3-13z" fill="#F9F9FA"/><path d="M248.9 152.7c.5-1.5 1.4-3.1 3.1-4.8 1.6-1.6 3.2-2.6 4.8-3.1l-2.5-2.5c12-15.9 10.8-38.6-3.7-53.1-7.9-7.9-18.3-11.9-28.7-11.9-10.4 0-20.8 4-28.7 11.9-15.8 15.8-15.8 41.5 0 57.4 7.9 7.9 18.3 11.9 28.7 11.9 8.6 0 17.2-2.7 24.4-8
.2l2.6 2.4zm-27-1.8c-11.8 0-22.1-6.2-28-15.4.1.1.1.3.2.4-1-1.6-1.9-3.3-2.7-5.1v-.1c-.2-.4-.4-.9-.5-1.3l-.6-1.8v-.1c-.9-3-1.4-6.2-1.4-9.6 0-3.8.7-7.5 1.8-10.9.6-1.8 1.4-3.6 2.4-5.3h.2c5.7-10 16.4-16.7 28.8-16.7 12.3 0 23.1 6.7 28.7 16.7h.1c.9 1.7 1.7 3.4 2.4 5.3 1.2 3.4 1.8 7 1.8 10.9-.1 18.2-14.9 33-33.2 33z" fill="#CCEDF0"/><path d="M253.2 107h-58.7c-2.2 4.4-3.5 9.5-3.5 14.8 0 4.9 1.1 9.6 3 13.7 5.9 9.3 16.2 15.4 28 15.4 18.3 0 33.1-14.8 33.1-33.1-.1-3.8-.7-7.4-1.9-10.8zM190.8 107h-.1c-1.2 3.4-1.8 7-1.8 10.9 0 3.3.5 6.5 1.4 9.6-.9-3-1.3-6.1-1.3-9.3-.1-4 .6-7.8 1.8-11.2zM190.9 129.3l-.6-1.8.6 1.8z" fill="#FFF"/><path d="M71.3 26.7H18.7c-1.3 1.6-2.4 3.4-3.3 5.3h58.7c-.6-1.8-1.4-3.6-2.4-5.3h-.1c.4.7.8 1.5 1.2 2.2-.4-.7-.9-1.5-1.5-2.2z" fill="url(#b)" transform="translate(179 75)"/><path d="M193.3 101.7h-.2c-.9 1.7-1.7 3.4-2.4 5.3h.1c.7-1.9 1.5-3.6 2.5-5.3z" fill="#E9E9EE"/><path d="M15.5 32c.9-1.9 2-3.6 3.3-5.3 6-7.9 15.6-13 26.3-13 10.7 0 20.2 5.1 26.3 13 .5.7 1.1 1.5 1.6 2.2-.4-.8-.
7-1.5-1.2-2.2C66.1 16.7 55.4 10 43.1 10S20 16.7 14.3 26.7c-1 1.7-1.8 3.4-2.4 5.3-1.2 3.5-1.9 7.2-1.9 11.1 0 3.2.5 6.4 1.3 9.3v.1l.6 1.8c.2.5.3.9.5 1.3v.1c.7 1.8 1.6 3.5 2.7 5.1-.1-.1-.1-.3-.2-.4-1.9-4.2-3-8.8-3-13.7.1-5.3 1.4-10.3 3.6-14.7z" fill="url(#c)" opacity=".4" transform="translate(179 75)"/><path d="M119.1 103.6l-5.7-5.2c0-.2.1-.3.1-.5 0-.6-.3-1.2-.7-1.6l-17.4-16c-.4-.4-1-.6-1.5-.6-.2 0-.4 0-.7.1l-9.4-8.6c-.8-.8-1.8-1.3-3-1.5l-2.5-2.5c11.6-16.8 9.5-39.9-5-54.5C65.2 4.6 54.5.2 43 .2S20.8 4.7 12.7 12.7C-4 29.4-4 56.5 12.7 73.2c8.1 8.1 18.8 12.5 30.2 12.5 8.6 0 17.1-2.7 24.2-7.5l2.6 2.6c.2 1.2.8 2.2 1.6 3l8.6 9.4c-.2.7-.1 1.6.5 2.2l16 17.4c.4.4 1 .7 1.6.7.2 0 .3 0 .5-.1l5.2 5.7c.8.8 2 1.3 3.3 1.3 2.7 0 6.1-1.7 8.8-4.5 4.4-4.5 5.8-9.8 3.3-12.3zM14.3 71.5C-1.5 55.7-1.5 30 14.3 14.1 22.2 6.2 32.6 2.2 43 2.2c10.4 0 20.8 4 28.7 11.9 14.5 14.5 15.7 37.2 3.7 53.1l2.5 2.5c-1.6.5-3.2 1.5-4.8 3.1-1.7 1.7-2.7 3.3-3.1 4.8l-2.5-2.5c-7.2 5.5-15.8 8.2-24.4 8.2-10.5.1-20.9-3.9-28.8-11.8zm96.9
26.3L98 111.1 82 93.7l11.8-11.8 17.4 15.9z" fill="url(#d)" transform="translate(179 75)"/><path fill="#CCEDF0" d="M277 186.1l13.2-13.3-17.4-15.9-11.8 11.8"/></g><ellipse fill="#EDEDF0" cx="242.1" cy="246.7" rx="57.2" ry="5.8"/><g><path d="M21.3 33.9c-.6 0-1.3-.2-1.8-.6L7.1 23.2c-1.3-.9-2.4-2-3.2-3.2C1 15.5 1.6 9.5 5.4 5.8c2.1-2.1 5-3.3 8-3.3s5.8 1.1 7.9 3.2c2.1-2 4.9-3.2 7.9-3.2 3.3 0 6.5 1.5 8.7 4 3.2 3.8 3.5 9.4.8 13.5-.8 1.3-1.9 2.3-3.2 3.2l-12.3 10c-.6.5-1.2.7-1.9.7z" fill="url(#e)" transform="translate(201 113)"/><path d="M214.4 117c2.5 0 5 1 6.9 2.9.3.3.6.4 1 .4s.7-.1 1-.4c1.9-1.9 4.4-2.8 6.9-2.8 2.7 0 5.5 1.2 7.5 3.5 2.8 3.3 3 8.1.7 11.7-.8 1.1-1.7 2-2.7 2.7l-12.4 10.1c-.2.2-.5.3-.8.3-.3 0-.5-.1-.8-.3L209.2 135c-1.1-.7-2.1-1.6-2.8-2.8-2.5-3.8-2-9 1.3-12.2 1.7-2 4.2-3 6.7-3zm0-3.1c-3.4 0-6.7 1.3-9.1 3.8-4.3 4.3-5 11.1-1.7 16.2.9 1.4 2.2 2.7 3.6 3.7l12.4 10c.8.6 1.8 1 2.8 1 1 0 2-.3 2.7-1l12.3-10.1c1.4-1 2.6-2.1 3.5-3.5 3.1-4.7 2.8-11.1-.9-15.4-2.5-2.9-6.1-4.6-9.9-4.6-2.9 0-5.
6.9-7.9 2.7-2.2-1.9-4.9-2.8-7.8-2.8z" fill="#FFF"/><path d="M208.6 128.1h-.1c-.9-.1-1.6-.9-1.5-1.8.3-3.2 2.5-5.8 5.7-6.5.9-.2 1.8.4 1.9 1.2.2.9-.4 1.8-1.2 1.9-1.7.4-3 1.8-3.1 3.6-.2 1-.9 1.6-1.7 1.6z" fill="#F9F9FA"/></g></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/figure_sync.svg b/browser/extensions/onboarding/content/img/figure_sync.svg
deleted file mode 100644
index 74562d37236d..000000000000
--- a/browser/extensions/onboarding/content/img/figure_sync.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="279" height="212" viewBox="0 0 279 212" xmlns="http://www.w3.org/2000/svg"><title>sync</title><defs><linearGradient x1="-424.525%" y1="-219.797%" x2="201.215%" y2="136.157%" id="a"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1416.558%" y1="-1417.275%" x2="631.855%" y2="631.14%" id="b"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1909.4%" y1="-1924.057%" x2="675.504%" y2="691.989%" id="c"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1453.558%" y1="-828.355%" x2="354.762%" y2="235.706%" id="d"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-608.073%" y1="-599.552%" x2="1804.502%" y2="1813.024%" id="e"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"
/></linearGradient><linearGradient x1="-55.527%" y1="-25.138%" x2="334.297%" y2="252.524%" id="f"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-359.418%" y1="-359.43%" x2="1512.409%" y2="1512.397%" id="g"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-393.876%" y1="-203.242%" x2="1247.254%" y2="755.651%" id="h"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-772.819%" y1="-773.412%" x2="1098.573%" y2="1098.414%" id="i"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-1129.33%" y1="-1133.526%" x2="1256.735%" y2="1279.05%" id="j"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-78.929%" y1="-156.663%" x2="182.03%" y2="261.703%" id
="k"><stop stop-color="#CCFBFF" offset="0%"/><stop stop-color="#C9E4FF" offset="100%"/></linearGradient><linearGradient x1="-2.965%" y1="-86.281%" x2="110.352%" y2="213.059%" id="l"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-833.673%" y1="-459.972%" x2="807.063%" y2="498.921%" id="m"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient><linearGradient x1="-17.606%" y1="-93.916%" x2="104.414%" y2="177.35%" id="n"><stop stop-color="#00C8D7" offset="0%"/><stop stop-color="#0A84FF" offset="100%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><path d="M-37-28h352v268H-37z"/><g fill-rule="nonzero"><g><path d="M23 23.1h23.9S39.4 6.4 55.3 4.2c14.2-1.9 19.8 12.6 19.8 12.6s1.7-8.4 10.1-6.8c8.3 1.6 14.5 15 14.5 15h20.8" fill="#F9F9FA"/><path d="M121 21.1h-5.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h5.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-15.4 0h-1.1c-.3 0-.6-.2-.6-.6 0-.4
.2-.6.6-.6h1.1c.3 0 .6.2.6.6 0 .4-.2.6-.6.6zm-5.5-.1c-.2 0-.4-.1-.5-.3-.2-.3-.7-1.4-1.7-2.9-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2 1 1.5 1.6 2.6 1.7 2.9.1.3 0 .6-.2.8-.1.1-.2.1-.3.1zm-52.7-.6h-1.6c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h.8c-.1-.2-.2-.5-.3-.9-.1-.3.1-.6.4-.7.3-.1.6.1.7.4.3 1 .6 1.6.6 1.6.1.2.1.4 0 .5-.3.2-.5.3-.6.3zm-10.6 0H23.4c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h13.4c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm8.9-5.9c-.3 0-.5-.2-.6-.5 0-.4-.1-.8-.1-1.1 0-.3.2-.6.5-.6s.6.2.6.5c0 .4.1.7.1 1.1.1.2-.1.5-.5.6.1-.1.1 0 0 0zm29.2-1.8c-.2 0-.4-.1-.5-.3-.1-.3-.3-.6-.5-1-.2-.3-.1-.6.2-.8.3-.2.6-.1.8.2.2.4.4.7.5 1 .1.3 0 .6-.2.8-.2.1-.2.1-.3.1zm17.8-1.4c-.1 0-.3 0-.4-.1-2.3-2.1-4.6-3.4-6.8-3.8-.7-.1-1.4-.2-2-.2-1 0-2 .2-2.8.5-.3.1-.6 0-.7-.3-.1-.3 0-.6.3-.7 1-.4 2.1-.6 3.3-.6.7 0 1.4.1 2.2.2 2.4.5 4.9 1.8 7.3 4 .2.2.2.6 0 .8-.1.1-.2.2-.4.2zM71.8 8c-.2 0-.3-.1-.4-.2-.7-.9-1.5-1.6-2.3-2.3-.2-.2-.3-.6-.1-.8.2-.2.6-.3.8-.1.8.7 1.6 1.6 2.4 2.5.2.2.2.6-.1.8-.1.1-.2.1-.3.1zM48.9 4.2c-.2 0-.3-.1-.4-.2-.2-.2-.2-.6.
1-.8C50.4 1.7 52.8.8 55.8.3c2.1-.3 4.1-.2 6 .1.3.1.5.4.4.7-.1.3-.3.5-.7.4-1.8-.4-3.7-.4-5.6-.1-2.8.4-5 1.3-6.6 2.6-.2.2-.3.2-.4.2z" fill="#D7D7DB"/><path d="M121.6 25.3H23c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h98.6c.6 0 1.1.5 1.1 1.1 0 .6-.4 1.1-1.1 1.1zM222.4 31.5h13.3s-4.2-9.3 4.7-10.5c7.9-1.1 11 7 11 7s.9-4.7 5.6-3.8c4.6.9 8 8.3 8 8.3h11.6" fill="#F9F9FA"/><path d="M236.1 30h-13.3c-.3 0-.6-.2-.6-.6 0-.3.2-.6.6-.6h13.3v.5l.5-.2c.1.2.1.4 0 .6-.2.2-.3.3-.5.3zm36.5-.2h-3.3c-.3 0-.6-.2-.6-.6 0-.4.2-.6.6-.6h3.3c.3 0 .6.2.6.6 0 .4-.3.6-.6.6zm-20.8-3.3h-.1c-.3-.1-.5-.4-.4-.7.1-.4 1.1-4.3 5-4.3.4 0 .8 0 1.2.1 1.7.3 3.5 1.4 5.2 3.1.2.2.2.6 0 .8-.2.2-.6.2-.8 0-1.6-1.6-3.1-2.5-4.6-2.8-.4-.1-.7-.1-1-.1-3 0-3.8 2.8-3.9 3.4-.1.3-.4.5-.6.5zm-15.3-5.1c-.1 0-.3 0-.4-.1-.2-.2-.2-.6 0-.8.8-.8 1.8-1.5 3.1-1.8.3-.1.6.1.7.4.1.3-.1.6-.4.7-1.1.3-2 .8-2.6 1.5-.1.1-.3.1-.4.1zm8.3-1.6h-.2c-.3-.1-.7-.2-1-.2-.3-.1-.5-.3-.5-.6.1-.3.3-.5.6-.5l1.2.3c.3.1.5.4.4.7 0 .1-.2.3-.5.3z" fill="#D7D7DB"/><path d="M277.5
33.7h-54.9c-.6 0-1.1-.5-1.1-1.1 0-.6.5-1.1 1.1-1.1h54.9c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1z" fill="#F9F9FA"/><ellipse fill="#EDEDF0" cx="144.1" cy="206.4" rx="59.7" ry="5.2"/><path d="M187.8 21.6h.1c.7 0 1.3-.5 1.3-1.2.1-1.5 1.2-2.7 2.6-3 .7-.2 1.2-.9 1-1.6-.2-.7-.9-1.2-1.6-1-2.6.6-4.5 2.8-4.7 5.4 0 .7.6 1.4 1.3 1.4z" fill="#F9F9FA"/><ellipse fill="#EDEDF0" cx="248.8" cy="206.4" rx="25.7" ry="4.5"/><ellipse fill="#EDEDF0" cx="35.7" cy="206.4" rx="35" ry="4.5"/></g><path d="M173 63.2c-.1-.3-.5-.5-.9-.4-.9.4-1.8.7-2.7 1.1-.2.1-.3.3-.4.5h2.7c.3-.1.6-.3.9-.4.4-.1.6-.5.4-.8zM231.7 155.7c.1.1.3.2.5.2s.3-.1.5-.2c.2-.2.4-.5.7-.7h-1.8c-.1.2-.1.5.1.7zM149.2 63.7c.3-.2.3-.7.1-.9-.2-.3-.7-.3-.9-.1-.3.3-.7.6-1 .8-.3.2-.3.6-.1.9h1.1c.2-.2.5-.4.8-.7zM65.2 62.8c-.2.1-.3.1-.5.2.5 0 .9.1 1.3.2-.1-.4-.5-.5-.8-.4zM129.2 63.9c.1.1.3.2.4.2.2 0 .4-.1.5-.2.2-.3.2-.7-.1-.9-.3-.3-.7-.6-1-.8-.3-.2-.7-.2-.9.1-.2.3-.2.7.1.9.3.1.6.4 1 .7zM42.3 62.8c-.2-.3-.7-.3-.9-.1l-.3.3h1.4c-.1-.1-.1-.2-.2-.2z" fill="#F3
F3F7"/><path d="M196.2 171.5c0 .4-.3.7-.6.7-1 .1-2 .1-2.9.1h-.1c-3.9 0-7.9-.4-11.7-1.2-.4-.1-.6-.4-.5-.8.1-.4.4-.6.8-.5 3.7.8 7.6 1.2 11.4 1.2 1 0 2 0 2.9-.1.4-.1.7.2.7.6zm10.5-109.3c3.7 1 7.4 2.4 10.8 4.1.1 0 .2.1.3.1.2 0 .5-.1.6-.4.2-.3 0-.7-.3-.9-3.5-1.8-7.2-3.2-11.1-4.2-.4-.1-.7.1-.8.5 0 .3.2.7.5.8zm-11.3-3.1c-4.9-.2-9.9.2-14.7 1.2-.4.1-.6.4-.5.8.1.3.3.5.7.5h.1c4.7-1 9.6-1.4 14.4-1.2.4 0 .7-.3.7-.6-.1-.4-.3-.7-.7-.7zm-25.5 108.4c.3 0 .5-.1.6-.4.2-.3 0-.7-.3-.9-.6-.3-1.1-.5-1.7-.8h-2.9c1.3.7 2.7 1.4 4.1 2 0 0 .1.1.2.1zM223.3 68c-.3-.2-.7-.1-.9.2-.2.3-.1.7.2.9.8.5 1.6 1.1 2.4 1.6.1.1.3.1.4.1.2 0 .4-.1.5-.3.2-.3.1-.7-.2-.9-.8-.5-1.6-1-2.4-1.6zm-.6 94c-3.2 2.1-6.7 3.9-10.3 5.3-.3.1-.5.5-.4.9.1.3.4.4.6.4h.2c3.7-1.4 7.2-3.2 10.5-5.4.3-.2.4-.6.2-.9 0-.4-.5-.5-.8-.3zm-15.8 7c-.9.2-1.9.5-2.8.7-.4.1-.6.4-.5.8.1.3.3.5.7.5h.1c1-.2 1.9-.4 2.9-.7.4-.1.6-.5.5-.8-.1-.3-.5-.6-.9-.5zM192.6 54.7c16.8 0 32 6.8 43.1 17.9h3.7C227.7 60 211.1 52 192.6 52c-14.1 0-27.1 4.6-37.7 12.4h4.7c9.6-6.1 20.9-9.7
33-9.7zm0 121.8c-13.1 0-25.2-4.1-35.1-11.2H153c10.9 8.7 24.6 13.9 39.6 13.9 20.2 0 38.3-9.5 49.9-24.3H239c-11.1 13.2-27.8 21.6-46.4 21.6zm11.8 5.8c-5 .9-10.2 1.2-15.2.9-.3 0-.7.3-.7.6 0 .4.3.7.6.7 1.2.1 2.3.1 3.5.1 4 0 8.1-.4 12-1 .4-.1.6-.4.5-.8 0-.4-.3-.6-.7-.5zm-25.4-.4c-1.2-.3-2.5-.5-3.7-.9-.4-.1-.7.1-.8.5-.1.4.1.7.5.8 1.3.3 2.5.6 3.8.9h.1c.3 0 .6-.2.7-.5 0-.3-.2-.7-.6-.8zm37.7-3c-.4.2-.8.3-1.2.4-.3.1-.5.5-.4.9.1.3.4.4.6.4h.2c.4-.1.8-.3 1.2-.5.3-.1.5-.5.4-.9-.1-.3-.5-.5-.8-.3zm19.4-115c.1.1.3.2.4.2.2 0 .4-.1.5-.2.2-.3.2-.7-.1-.9-.3-.3-.7-.6-1-.8-.3-.2-.7-.2-.9.1-.2.3-.2.7.1.9.4.1.7.4 1 .7zm-65.7 115.7c-.4-.1-.8-.3-1.2-.4-.3-.1-.7 0-.9.4-.1.3 0 .7.4.9.4.2.8.3 1.2.4h.2c.3 0 .5-.2.6-.5.3-.3.1-.7-.3-.8zm54.4-4.4c-1.1.6-2.3 1.2-3.4 1.7-.3.2-.5.6-.3.9.1.2.4.4.6.4.1 0 .2 0 .3-.1 1.2-.6 2.3-1.1 3.5-1.8.3-.2.4-.6.3-.9-.3-.3-.7-.4-1-.2zm19.6-16.1c-3.3 3.9-7 7.4-11.1 10.5-.3.2-.4.6-.1.9.1.2.3.3.5.3.1 0 .3 0 .4-.1 4.1-3.1 7.9-6.7 11.3-10.7.2-.3.2-.7-.1-.9-.2-.3-.6-.3-.9 0zm.9-88c-.2-.3-.7-.
3-.9-.1-.3.2-.3.7-.1.9.2.2.3.4.5.6h1.7c-.4-.4-.8-.9-1.2-1.4zm-87-13.9c.1 0 .2 0 .3-.1 4.4-2.6 9.1-4.6 14-6.1.4-.1.6-.5.4-.8-.1-.4-.5-.6-.8-.4-5 1.5-9.8 3.6-14.3 6.3-.3.2-.4.6-.2.9.1.1.3.2.6.2zm45.8-8.2c5 .9 10 2.3 14.7 4.3.1 0 .2.1.3.1.3 0 .5-.2.6-.4.1-.3 0-.7-.4-.9-4.8-2-9.8-3.5-15-4.4-.4-.1-.7.2-.8.5 0 .3.3.7.6.8zm23.8 8.9c1.1.7 2.2 1.4 3.2 2.1.1.1.3.1.4.1.2 0 .4-.1.6-.3.2-.3.1-.7-.2-.9-1.1-.7-2.2-1.5-3.3-2.1-.3-.2-.7-.1-.9.2-.2.3-.1.7.2.9zM191.4 48h1.3c.4 0 .6-.3.6-.7 0-.4-.4-.7-.7-.7h-1.2c-.4 0-.7.3-.7.7 0 .4.3.7.7.7zm-45.8 118.2c3.8 3.5 8 6.7 12.5 9.3.1.1.2.1.3.1.2 0 .5-.1.6-.3.2-.3.1-.7-.2-.9-4.3-2.5-8.4-5.5-12.1-8.9h-1.2c-.1.1-.1.5.1.7zm36.8-117.5c.1 0 .1 0 0 0 1.3-.2 2.6-.3 3.9-.5.4 0 .6-.4.6-.7 0-.4-.4-.6-.7-.6-1.3.1-2.6.3-3.9.5-.4.1-.6.4-.6.8.1.3.4.5.7.5zM97.3 171h.1c1-.2 1.9-.4 2.9-.7.4-.1.6-.5.5-.8-.1-.4-.5-.6-.8-.5-.9.2-1.9.5-2.8.7-.4.1-.6.4-.5.8 0 .3.3.5.6.5zm2-109.6c-.1.4.1.7.5.8 2.3.6 4.5 1.4 6.7 2.3h3.3c-3.1-1.5-6.4-2.7-9.7-3.6-.4-.1-.7.1-.8.5zm-25.6-1.1c-.4.1-.6.4-
.5.8.1.3.3.5.7.5h.1c4.7-1 9.6-1.4 14.4-1.2.4 0 .7-.3.7-.6 0-.4-.3-.7-.6-.7-5-.3-10 .1-14.8 1.2zm-.3 110c-.1.4.2.7.5.8 3.8.8 7.8 1.2 11.7 1.2h.1c1 0 2 0 2.9-.1.4 0 .7-.3.6-.7 0-.4-.3-.7-.7-.6-1 0-1.9.1-2.9.1-3.9 0-7.7-.4-11.4-1.2-.4-.2-.7.1-.8.5zm31.7-2.2c.1.3.4.4.6.4h.2c2.3-.9 4.6-2 6.7-3.1h-2.9c-1.4.7-2.8 1.3-4.3 1.9-.3.1-.5.5-.3.8zm-42.2-.6c.3 0 .5-.1.6-.4.2-.3 0-.7-.3-.9-1.8-.8-3.6-1.7-5.3-2.7h-2.6c2.3 1.5 4.8 2.8 7.3 3.9.1 0 .2.1.3.1zM85.6 54.7c12.1 0 23.4 3.6 32.9 9.7h4.7C112.7 56.6 99.7 52 85.6 52 72.4 52 60.1 56 50 62.9h5.1c9-5.2 19.4-8.2 30.5-8.2zm0 121.8c-14.2 0-27.2-4.9-37.6-13.1h-4.2c11.2 9.8 25.8 15.7 41.8 15.7 15 0 28.7-5.2 39.6-13.9h-4.5c-9.9 7.2-22 11.3-35.1 11.3zm32.2-1.3c-1.1.6-2.3 1.2-3.4 1.7-.3.2-.5.6-.3.9.1.2.4.4.6.4.1 0 .2 0 .3-.1 1.2-.6 2.3-1.1 3.5-1.8.3-.2.4-.6.3-.9-.3-.3-.7-.4-1-.2zm3.1-117.3c1.1.7 2.2 1.4 3.2 2.1.1.1.3.1.4.1.2 0 .4-.1.6-.3.2-.3.1-.7-.2-.9-1.1-.7-2.2-1.5-3.3-2.1-.3-.2-.7-.1-.9.2-.2.3-.1.7.2.9zM97.4 182.3c-5 .9-10.2 1.2-15.2.9-.4 0-.7.3-.7.6 0
.4.3.7.6.7 1.2.1 2.3.1 3.5.1 4 0 8.1-.4 12-1 .4-.1.6-.4.5-.8 0-.4-.3-.6-.7-.5zm-34-2.7c-.4-.1-.8-.3-1.2-.4-.3-.1-.7 0-.9.4-.1.3 0 .7.4.9.4.2.8.3 1.2.4h.2c.3 0 .5-.2.6-.5.3-.3.1-.7-.3-.8zm8.7 2.3c-1.2-.3-2.5-.5-3.7-.9-.4-.1-.7.1-.8.5-.1.4.1.7.5.8 1.3.3 2.5.6 3.8.9h.1c.3 0 .6-.2.7-.5 0-.3-.3-.7-.6-.8zm54.3-12.3c-.3.2-.4.6-.1.9.1.2.3.3.5.3.1 0 .3 0 .4-.1 2.2-1.7 4.3-3.4 6.2-5.3h-2c-1.6 1.5-3.3 2.9-5 4.2zm-16.7 9.3c-.4.2-.8.3-1.2.4-.3.1-.5.5-.4.9.1.3.4.4.6.4h.2c.4-.1.8-.3 1.2-.5.3-.1.5-.5.4-.9-.1-.3-.5-.5-.8-.3zM97.1 49c5 .9 10 2.3 14.7 4.3.1 0 .2.1.3.1.3 0 .5-.2.6-.4.1-.3 0-.7-.4-.9-4.8-2-9.8-3.5-15-4.4-.4-.1-.7.2-.8.5 0 .3.3.7.6.8zm-12.7-1h1.3c.4 0 .6-.3.6-.7 0-.4-.4-.7-.7-.7h-1.2c-.4 0-.7.3-.7.7.1.4.4.7.7.7zm-33.1 9.2c.1 0 .2 0 .3-.1 4.4-2.6 9.1-4.6 14-6.1.4-.1.6-.5.4-.8-.1-.4-.5-.6-.8-.4-5 1.5-9.8 3.6-14.3 6.3-.3.2-.4.6-.2.9.1.1.3.2.6.2zm.6 117.1c-4.4-2.5-8.6-5.6-12.3-9.1-.3-.3-.7-.2-1 0-.3.3-.2.7 0 1 3.8 3.5 8 6.7 12.5 9.3.1.1.2.1.3.1.2 0 .5-.1.6-.3.3-.4.2-.8-.1-1zM75.4 48.7c.1 0
.1 0 0 0 1.3-.2 2.6-.3 3.9-.5.4 0 .6-.4.6-.7 0-.4-.4-.6-.7-.6-1.3.1-2.6.3-3.9.5-.4.1-.6.4-.6.8.1.3.4.5.7.5z" fill="#D7D7DB"/><path d="M261.6 34.4h-30.1c-1.3 0-2.3 1-2.3 2.3v56.4c0 1.3 1 2.3 2.3 2.3h30.1c1.3 0 2.3-1 2.3-2.3V36.7c0-1.2-1-2.3-2.3-2.3zm-15.5 4.9c4.2 0 7.7 3.5 7.7 7.7s-3.5 7.7-7.7 7.7-7.7-3.5-7.7-7.7 3.5-7.7 7.7-7.7zm-7.5 23.1c.1-.4.5-.8 1-.9l3.7-.7 2.1-4.1.8-.1c.5 0 .9.3 1.1.7l1.7 3.5 4.4.8.3.7c.1.4 0 .9-.3 1.3l-2.6 2.8.7 4.7-.6.5c-.4.3-.9.3-1.3.1l-3.3-1.7-4 2.1-.7-.4c-.4-.3-.6-.7-.5-1.2l.6-3.9-3.1-3.4v-.8zm8.2 17.3c0-.7.5-1.2 1.2-1.2h1.3c-.8-.9-1.9-1.4-3.2-1.4-2 0-3.8 1.4-4.3 3.3-.1.5-.6.9-1.1.9h-.3c-.6-.2-1-.8-.9-1.4.8-3 3.4-5.1 6.6-5.1 1.6 0 3.2.6 4.4 1.7V76c0-.7.5-1.2 1.2-1.2s1.2.5 1.2 1.2v3.7c0 .7-.5 1.2-1.2 1.2H248c-.7 0-1.2-.5-1.2-1.2zm-.7 8.7c-1.6 0-3.2-.6-4.4-1.7v.5c0 .7-.5 1.2-1.2 1.2s-1.2-.5-1.2-1.2v-3.7c0-.7.5-1.2 1.2-1.2h3.7c.7 0 1.2.5 1.2 1.2s-.5 1.2-1.2 1.2h-1.3c.8.9 1.9 1.4 3.2 1.4 2 0 3.8-1.4 4.3-3.3.2-.6.8-1 1.4-.9.6.2 1 .8.9 1.4-.8 3-3.5 5.1-6.6 5.1z"
fill="url(#a)" transform="translate(1 46)"/><path d="M246.1 52.4c2.9 0 5.3-2.4 5.3-5.3s-2.4-5.3-5.3-5.3-5.3 2.4-5.3 5.3 2.4 5.3 5.3 5.3zm-1.1-8.6c0-.4.3-.7.7-.7.4 0 .7.3.7.7v3.1h3.1c.4 0 .7.3.7.7 0 .4-.3.7-.7.7h-3.7c-.4 0-.7-.3-.7-.7v-3.8h-.1z" fill="url(#b)" transform="translate(1 46)"/><path fill="url(#c)" d="M243.6 68.7l2.5-1.3 2.6 1.3-.5-3 2.1-2.2-2.9-.5-1.3-2.6-1.3 2.6-2.9.5 2.1 2.2" transform="translate(1 46)"/><path d="M240.9 70.5c-.1.5.1.9.5 1.2l.7.4 4-2.1 3.3 1.7c.4.2.9.2 1.3-.1l.6-.5-.7-4.7 2.6-2.8c.3-.3.4-.8.3-1.3l-.3-.7-4.4-.8-1.7-3.5c-.2-.4-.7-.7-1.1-.7l-.8.1-2.1 4.1-3.7.7c-.5.1-.8.4-1 .9l-.2.8 3.1 3.4-.4 3.9zm3.9-7.5l1.3-2.6 1.3 2.6 2.9.5-2.1 2.2.4 3-2.5-1.3-2.5 1.3.4-3-2.1-2.2 2.9-.5z" fill="url(#d)" transform="translate(1 46)"/><path fill="url(#e)" d="M35 60.4l-1.4 2.8-3.1.6 2.2 2.4-.4 3.2 2.7-1.5 2.7 1.5-.4-3.2 2.2-2.4-3.1-.6" transform="translate(1 46)"/><path d="M10.2 103.3h50.7c1.4 0 2.5-1.1 2.5-2.5V27.6c0-1.4-1.1-2.5-2.5-2.5H10.2c-1.4 0-2.5 1.1-2.5 2.5v73.2c.1
1.4 1.2 2.5 2.5 2.5zm32.1-14.5c-.8 3.3-3.8 5.7-7.3 5.7-1.8 0-3.5-.7-4.8-1.8v.4c0 .7-.6 1.3-1.3 1.3-.7 0-1.3-.6-1.3-1.3V89c0-.7.6-1.3 1.3-1.3H33c.7 0 1.3.6 1.3 1.3 0 .7-.6 1.3-1.3 1.3h-1.3c.9.9 2.1 1.4 3.4 1.4 2.2 0 4.1-1.5 4.6-3.6.2-.7.9-1.2 1.6-1 .7.2 1.1 1 1 1.7zm.2-3.9c0 .7-.6 1.3-1.3 1.3h-4.1c-.7 0-1.3-.6-1.3-1.3 0-.7.6-1.3 1.3-1.3h1.3c-.9-.9-2.1-1.4-3.4-1.4-2.2 0-4.1 1.5-4.6 3.6-.2.6-.7 1-1.3 1h-.3c-.7-.2-1.2-.9-1-1.6.8-3.3 3.8-5.7 7.3-5.7 1.8 0 3.5.7 4.8 1.8v-.4c0-.7.6-1.3 1.3-1.3.7 0 1.3.6 1.3 1.3v4zm.5-21L40.1 67l.7 5.1-.7.6c-.4.3-1 .4-1.5.1L35 71l-4.4 2.3-.8-.5c-.4-.3-.7-.8-.6-1.4l.6-4.3-3.4-3.7.2-.9c.2-.5.6-.9 1.1-1l4-.7 2.3-4.6.9-.1c.6 0 1 .3 1.3.8l1.9 3.8 4.8.9.3.8c.3.6.2 1.2-.2 1.5zm-8-30.2c4.7 0 8.5 3.8 8.5 8.5s-3.8 8.5-8.5 8.5-8.5-3.8-8.5-8.5 3.8-8.5 8.5-8.5z" fill="url(#f)" transform="translate(1 46)"/><path d="M29.2 42.2c0 3.2 2.6 5.8 5.8 5.8 3.2 0 5.8-2.6 5.8-5.8 0-3.2-2.6-5.8-5.8-5.8-3.2 0-5.8 2.6-5.8 5.8zm4.6-3.6c0-.4.3-.7.7-.7.4 0 .7.3.7.7V42h3.4c.4 0 .7.3.7.7 0
.4-.3.7-.7.7h-4.1c-.4 0-.7-.3-.7-.7v-4.1z" fill="url(#g)" transform="translate(1 46)"/><path d="M43 61.7l-4.8-.9-1.9-3.8c-.2-.5-.7-.8-1.3-.8l-.9.1-2.3 4.6-4 .7c-.5.1-1 .5-1.1 1l-.2.9 3.4 3.7-.6 4.3c-.1.5.1 1.1.6 1.4l.8.5L35 71l3.6 1.9c.5.3 1.1.2 1.5-.1l.7-.6-.7-5.1L43 64c.4-.4.5-.9.3-1.4l-.3-.9zm-5.7 4.5l.4 3.2L35 68l-2.7 1.4.4-3.2-2.2-2.4 3.1-.6 1.4-2.8 1.4 2.8 3.1.6-2.2 2.4z" fill="url(#h)" transform="translate(1 46)"/><path d="M119.4 59.6c3.2 0 5.8-2.6 5.8-5.8 0-3.2-2.6-5.8-5.8-5.8-3.2 0-5.8 2.6-5.8 5.8-.1 3.1 2.6 5.8 5.8 5.8zm-1.2-9.5c0-.4.3-.7.7-.7.4 0 .7.3.7.7v3.4h3.4c.4 0 .7.3.7.7 0 .4-.3.7-.7.7h-4.1c-.4 0-.7-.3-.7-.7v-4.1z" fill="url(#i)" transform="translate(1 46)"/><path fill="url(#j)" d="M143.4 52.3l-1.3-2.8-1.4 2.8-3.2.6 2.3 2.4-.5 3.2 2.8-1.4 2.7 1.4-.5-3.2 2.3-2.4" transform="translate(1 46)"/><path d="M102.8 81.1h77.6c1.6 0 2.8-1.3 2.8-2.8V32c0-1.6-1.3-2.8-2.8-2.8h-77.6c-1.6 0-2.8 1.3-2.8 2.8v46.3c-.1 1.6 1.2 2.8 2.8 2.8zm44.4-24.9l.7 5.1-.7.6c-.4.3-1 .4-1.5.1l-3.6-1
.9-4.4 2.3-.8-.5c-.4-.3-.7-.8-.6-1.4l.6-4.3-3.4-3.7.2-.9c.2-.5.6-.9 1.1-1l4-.7 2.3-4.6.9-.1c.5 0 1 .3 1.3.8l1.9 3.8 4.8.9.3.8c.2.5 0 1.1-.3 1.4l-2.8 3.3zm10.3-4.3c.8-3.3 3.8-5.7 7.3-5.7 1.8 0 3.5.7 4.8 1.8v-.4c0-.7.6-1.3 1.3-1.3.7 0 1.3.6 1.3 1.3v4.1c0 .7-.6 1.3-1.3 1.3h-4.1c-.7 0-1.3-.6-1.3-1.3 0-.7.6-1.3 1.3-1.3h1.3c-.9-.9-2.1-1.4-3.4-1.4-2.2 0-4.1 1.5-4.6 3.6-.2.6-.7 1-1.3 1h-.3c-.8-.2-1.2-1-1-1.7zm-.3 3.9c0-.7.6-1.3 1.3-1.3h4.1c.7 0 1.3.6 1.3 1.3 0 .7-.6 1.3-1.3 1.3h-1.3c.9.9 2.1 1.4 3.4 1.4 2.2 0 4.1-1.5 4.6-3.6.2-.7.9-1.2 1.6-1 .7.2 1.2.9 1 1.6-.8 3.3-3.8 5.7-7.3 5.7-1.8 0-3.5-.7-4.8-1.8v.4c0 .7-.6 1.3-1.3 1.3-.7 0-1.3-.6-1.3-1.3v-4zm-37.8-10.6c4.7 0 8.5 3.8 8.5 8.5s-3.8 8.5-8.5 8.5-8.5-3.8-8.5-8.5c-.1-4.7 3.8-8.5 8.5-8.5z" fill="url(#k)" transform="translate(1 46)"/><path d="M264.7 75.3h-34.4c-2.6 0-4.6 2.1-4.6 4.6v67.7c0 2.6 2.1 4.6 4.6 4.6h34.4c2.6 0 4.6-2.1 4.6-4.6V79.9c.1-2.5-2-4.6-4.6-4.6zm-11.8 71.1c0 1.2-.9 2.1-2.1 2.1h-6.7c-1.2 0-2.1-.9-2.1-2.1v-.1c0-1.2.9-2.1 2.1-2.1
h6.7c1.2.1 2.1 1 2.1 2.2zm12-7.3c0 1.3-1 2.3-2.3 2.3h-30.1c-1.3 0-2.3-1-2.3-2.3V82.7c0-1.3 1-2.3 2.3-2.3h30.1c1.3 0 2.3 1 2.3 2.3v56.4zM9 160.8h55.2c2.7 0 4.9-2.2 4.9-4.9V70.6c0-2.7-2.2-4.9-4.9-4.9H9c-2.7 0-4.9 2.2-4.9 4.9v85.3c-.1 2.7 2.1 4.9 4.9 4.9zm19.4-5.3v-1.7c0-1 .8-1.8 1.8-1.8H43c1 0 1.8.8 1.8 1.8v1.7c0 1-.8 1.8-1.8 1.8H30.2c-1 0-1.8-.9-1.8-1.8zM8.8 73.6c0-1.4 1.1-2.5 2.5-2.5H62c1.4 0 2.5 1.1 2.5 2.5v73.2c0 1.4-1.1 2.5-2.5 2.5H11.2c-1.4 0-2.5-1.1-2.5-2.5V73.6h.1zm92.4 57.9h82.7c2.6 0 4.8-2.1 4.8-4.8V71.9c0-2.6-2.1-4.8-4.8-4.8h-82.7c-2.6 0-4.8 2.1-4.8 4.8v54.8c0 2.7 2.2 4.8 4.8 4.8zM141 71c0-.9.7-1.6 1.6-1.6.9 0 1.6.7 1.6 1.6 0 .9-.7 1.6-1.6 1.6-.9 0-1.6-.7-1.6-1.6zm-40.1 7c0-1.6 1.3-2.8 2.8-2.8h77.6c1.6 0 2.8 1.3 2.8 2.8v46.3c0 1.6-1.3 2.8-2.8 2.8h-77.6c-1.6 0-2.8-1.3-2.8-2.8V78zm94.8 84.7c1.6 0 3-1.2 3-2.6v-1.4c0-.3-.1-.7-.2-1l-9.9-21.7c-.5-1-1.5-1.7-2.8-1.7H98.7c-1.2 0-2.4.7-2.8 1.7l-9.3 21.7c-.1.3-.2.6-.2.9v1.4c0 1.5 1.3 2.6 3 2.6h106.3v.1zm-11.4-20.2l.5 1.5c.1.4-.5.9-1.2
.9h-5c-.4 0-.8-.2-.8-.4-.1-.6-.2-.9-.5-1.5-.2-.4.4-.9 1.1-.9h5c.4 0 .8.1.9.4zm-7.4-5.3h4.7c.4 0 .7.2.8.4.1.6.2.9.4 1.5.1.4-.4.8-1 .8h-4.6c-.4 0-.8-.2-.9-.4l-.5-1.5c-.2-.4.4-.8 1.1-.8zm-4.3 5.3c.1.6.2.9.3 1.5.1.4-.6.9-1.3.9h-5.1c-.5 0-.8-.2-.9-.5-.2-.6-.2-.9-.4-1.5-.1-.4.5-.9 1.3-.9h5.3c.4.1.8.3.8.5zm-7.1-5.3h5c.4 0 .8.2.8.4.1.6.2.9.3 1.5.1.4-.5.8-1.2.8h-4.9c-.4 0-.8-.2-.8-.4-.2-.6-.2-.9-.4-1.5-.1-.4.5-.8 1.2-.8zm-5.8 5.5c.1.6.1.9.2 1.6.1.4-.5.8-1.2.8h-5.3c-.5 0-.9-.2-1-.5-.1-.6-.2-.9-.3-1.6-.1-.4.5-.8 1.2-.8h5.5c.4-.1.8.1.9.5zm-6.8-5.5h5.2c.5 0 .9.2.9.5.1.6.1.9.2 1.5.1.4-.5.8-1.1.8H153c-.5 0-.9-.2-.9-.5-.1-.6-.2-.9-.3-1.5-.1-.4.5-.8 1.1-.8zm-13.4.6c.1-.3.5-.5 1.1-.5h4.7c.5 0 1 .2 1 .5.1.6.1.9.2 1.5.1.4-.4.7-1.1.7h-5.3c-.6 0-1.1-.3-1-.7.2-.6.2-.9.4-1.5zm-.4 5c.1-.3.5-.6 1.1-.6h5c.6 0 1 .2 1.1.6.1.6.2.9.3 1.6.1.4-.5.8-1.1.8H140c-.7 0-1.2-.4-1.1-.8 0-.6.1-1 .2-1.6zm-11.4-5.5h5.2c.7 0 1.2.4 1.1.8l-.5 1.5c-.1.3-.5.5-1 .5h-5.1c-.6 0-1.2-.4-1.1-.8.1-.6.2-.9.3-1.5.2-.3.6-.5 1.1-.5zm-2 5.5c.
1-.3.5-.5 1-.5h5.5c.7 0 1.3.4 1.1.8-.2.6-.3 1-.4 1.6-.1.3-.5.5-1 .5h-5.3c-.7 0-1.3-.4-1.2-.8.1-.6.2-.9.3-1.6zm-17.7.4c-.3.6-.4 1-.5 1.6-.1.3-.4.5-.8.5h-5c-.7 0-1.3-.4-1.2-.9.2-.6.3-1 .5-1.6.1-.3.5-.5.9-.5h5c.7 0 1.2.5 1.1.9zm1.2-3.5c-.1.3-.5.4-.9.4h-4.6c-.6 0-1.1-.4-.9-.8l.5-1.5c.1-.3.4-.4.8-.4h4.7c.7 0 1.2.4 1.1.8-.3.6-.5.9-.7 1.5zm10.5 5.1c-.1.3-.4.5-.9.5h-5.1c-.7 0-1.3-.4-1.2-.9.1-.6.2-1 .4-1.6.1-.3.4-.5.9-.5h5.3c.7 0 1.3.4 1.2.9-.3.6-.4 1-.6 1.6zm1.1-5.1c-.1.3-.4.4-.9.4H115c-.7 0-1.2-.4-1.1-.8.2-.6.3-.9.4-1.5.1-.3.4-.4.9-.4h5c.7 0 1.2.4 1.1.8l-.5 1.5zm3.1 14.6c.4-2.3.6-3.5 1.1-5.9 0-.3.4-.6.9-.6 13.6-.1 20.5-.2 34.1-.3.5 0 .9.2.9.6.3 2.4.5 3.6.6 6.1 0 .4-.6.8-1.2.8h-35.4c-.6.1-1.1-.3-1-.7z" fill="#FFF"/><path d="M263.7 26.6h-.2v-1.3c0-.6-.5-1.2-1.2-1.2h-6.5c-.6 0-1.2.5-1.2 1.2v1.3h-25.4c-4 0-7.3 3.3-7.3 7.3v67.7c0 4 3.3 7.3 7.3 7.3h34.4c4 0 7.3-3.3 7.3-7.3V33.9c.1-4-3.1-7.3-7.2-7.3zm4.7 75c0 2.6-2.1 4.6-4.6 4.6h-34.4c-2.6 0-4.6-2.1-4.6-4.6V33.9c0-2.6 2.1-4.6 4.6-4.6h34.4c2.6 0 4
.6 2.1 4.6 4.6v67.7zm-16.5-1.2c0 1.2-.9 2.2-2.1 2.2h-6.7c-1.2 0-2.1-.9-2.1-2.1v-.1c0-1.2.9-2.1 2.1-2.1h6.7c1.2 0 2.1.9 2.1 2.1zM54.3 117.5h8.8c4.2 0 7.6-3.4 7.6-7.6V24.6c0-3.6-2.4-6.5-5.7-7.4-.4-.1-.9-.2-1.3-.2H8C3.8 17 .4 20.4.4 24.6v85.3c0 4.2 3.4 7.6 7.6 7.6h46.3zM3 24.6c0-2.7 2.2-4.9 4.9-4.9h55.2c2.7 0 4.9 2.2 4.9 4.9v85.3c0 2.7-2.2 4.9-4.9 4.9H8c-2.7 0-4.9-2.2-4.9-4.9V24.6H3zm26.2 86.7c-1 0-1.8-.8-1.8-1.8v-1.7c0-1 .8-1.8 1.8-1.8H42c1 0 1.8.8 1.8 1.8v1.7c0 1-.8 1.8-1.8 1.8H29.2zm135.3 8.1H194.6c3.1 0 5.7-2.4 5.7-5.3v-1.4c0-.7-.2-1.4-.5-2.1l-9.9-21.7c-.5-1-1.2-1.8-2.2-2.4 1.6-1.4 2.6-3.4 2.6-5.6V26.1c0-4.1-3.4-7.5-7.5-7.5h-82.5c-4.1 0-7.5 3.4-7.5 7.5v54.8c0 2.1.9 4.1 2.3 5.4-1.2.6-2.1 1.5-2.6 2.7l-9.3 21.7c-.3.6-.4 1.3-.4 2v1.4c0 2.9 2.5 5.3 5.7 5.3h76zm-76-2.7c-1.6 0-3-1.2-3-2.6v-1.4c0-.3.1-.6.2-.9L95 90.1c.4-1 1.5-1.7 2.8-1.7h87.1c1.2 0 2.3.7 2.8 1.7l9.9 21.7c.1.3.2.6.2 1v1.4c0 1.5-1.3 2.6-3 2.6H88.5v-.1zm6.9-35.9V26c0-2.6 2.1-4.8 4.8-4.8h82.7c2.6 0 4.8 2.1 4.8 4.8v54.8c0 2.6-2
.1 4.8-4.8 4.8h-82.7c-2.6-.1-4.8-2.2-4.8-4.8zm27.5 27.5c.4-2.3.6-3.5 1.1-5.9 0-.3.4-.6.9-.6 13.6-.1 20.5-.2 34.1-.3.5 0 .9.2.9.6.3 2.4.5 3.6.6 6.1 0 .4-.6.8-1.2.8h-35.4c-.6.1-1.1-.3-1-.7zm-3.8-11.1c-.2.6-.3 1-.5 1.6-.1.3-.4.5-.9.5h-5.1c-.7 0-1.3-.4-1.2-.9.1-.6.2-1 .4-1.6.1-.3.4-.5.9-.5h5.3c.7 0 1.3.5 1.1.9zm5.3 1.2c.1-.6.2-1 .3-1.6.1-.3.5-.5 1-.5h5.5c.7 0 1.3.4 1.1.8-.2.6-.3 1-.4 1.6-.1.3-.5.5-1 .5h-5.3c-.7 0-1.2-.4-1.2-.8zm33.3-2.3c.5 0 .9.2 1 .5.1.6.1.9.2 1.6.1.4-.5.8-1.2.8h-5.3c-.5 0-.9-.2-1-.5-.1-.6-.2-.9-.3-1.6-.1-.4.5-.8 1.2-.8h5.4zm-19.9 2.3c.1-.6.2-.9.3-1.6.1-.3.5-.6 1.1-.6h5c.6 0 1 .2 1.1.6.1.6.2.9.3 1.6.1.4-.5.8-1.1.8H139c-.8-.1-1.3-.4-1.2-.8zm27.7-2.3h5.3c.5 0 .8.2.9.5.1.6.2.9.3 1.5.1.4-.6.9-1.3.9h-5.1c-.5 0-.8-.2-.9-.5-.2-.6-.2-.9-.4-1.5-.2-.5.5-.9 1.2-.9zm-45.1-3.9l-.5 1.5c-.1.3-.4.4-.9.4h-4.9c-.7 0-1.2-.4-1.1-.8.2-.6.3-.9.4-1.5.1-.3.4-.4.9-.4h5c.7 0 1.2.4 1.1.8zm6.3-.9h5.2c.7 0 1.2.4 1.1.8l-.5 1.5c-.1.3-.5.5-1 .5h-5.1c-.6 0-1.2-.4-1.1-.8.1-.6.2-.9.3-1.5.2-.3.6-.5 1.1-.
5zm24.4 2.2c-.1-.6-.2-.9-.3-1.5-.1-.4.5-.8 1.1-.8h5.2c.5 0 .9.2.9.5.1.6.1.9.2 1.5.1.4-.5.8-1.1.8H152c-.4 0-.8-.2-.9-.5zm-13-.2c.1-.6.2-.9.4-1.5.1-.3.5-.5 1.1-.5h4.7c.5 0 1 .2 1 .5.1.6.1.9.2 1.5.1.4-.4.7-1.1.7h-5.3c-.6 0-1.1-.3-1-.7zm25.6.2c-.2-.6-.2-.9-.4-1.5-.1-.4.5-.8 1.2-.8h5c.4 0 .8.2.8.4.1.6.2.9.3 1.5.1.4-.5.8-1.2.8h-4.9c-.4 0-.7-.1-.8-.4zM107 97.2c-.3.6-.4 1-.5 1.6-.1.3-.4.5-.8.5h-5c-.7 0-1.3-.4-1.2-.9.2-.6.3-1 .5-1.6.1-.3.5-.5.9-.5h5c.7 0 1.2.5 1.1.9zm1.8-5c-.2.6-.3.9-.6 1.5-.1.3-.5.4-.9.4h-4.6c-.6 0-1.1-.4-.9-.8l.5-1.5c.1-.3.4-.4.8-.4h4.7c.6 0 1.1.4 1 .8zm68.5 3.9h5c.4 0 .8.2.9.5l.5 1.5c.1.4-.5.9-1.2.9h-5c-.4 0-.8-.2-.8-.4-.1-.6-.2-.9-.5-1.5-.1-.6.4-1 1.1-1zm-2.1-2.6l-.5-1.5c-.1-.4.5-.8 1.2-.8h4.7c.4 0 .7.2.8.4.1.6.2.9.4 1.5.1.4-.4.8-1 .8h-4.6c-.5 0-.9-.2-1-.4zm-33.6-66.9c-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6.9 0 1.6.7 1.6 1.6-.1.9-.8 1.6-1.6 1.6z" fill="url(#l)" transform="translate(1 46)"/><path d="M150.4 51.6l-.3-.8-4.8-.9-1.9-3.8c-.2-.5-.7-.8-1.3-.8l-.9.1-2.3 4.6-4 .7c
-.5.1-1 .5-1.1 1l-.2.9 3.4 3.7-.6 4.3c-.1.5.2 1.1.6 1.4l.8.5 4.4-2.3 3.6 1.9c.5.3 1.1.2 1.5-.1l.7-.6-.7-5.1 2.9-3.1c.3-.5.4-1.1.2-1.6zm-6.1 3.7l.4 3.2-2.7-1.4-2.7 1.4.4-3.2-2.2-2.4 3.1-.6 1.4-2.8 1.4 2.8 3.1.6-2.2 2.4z" fill="url(#m)" transform="translate(1 46)"/><path d="M238.4 47c0 4.2 3.5 7.7 7.7 7.7s7.7-3.5 7.7-7.7-3.5-7.7-7.7-7.7-7.7 3.5-7.7 7.7zm7.7-5.3c2.9 0 5.3 2.4 5.3 5.3s-2.4 5.3-5.3 5.3-5.3-2.4-5.3-5.3 2.4-5.3 5.3-5.3zm-1.1 5.8v-3.7c0-.4.3-.7.7-.7.4 0 .7.3.7.7v3.1h3.1c.4 0 .7.3.7.7 0 .4-.3.7-.7.7h-3.7c-.5-.1-.8-.4-.8-.8zm3 33.4c-.7 0-1.2-.5-1.2-1.2s.5-1.2 1.2-1.2h1.3c-.8-.9-1.9-1.4-3.2-1.4-2 0-3.8 1.4-4.3 3.3-.1.5-.6.9-1.1.9h-.3c-.6-.2-1-.8-.9-1.4.8-3 3.4-5.1 6.6-5.1 1.6 0 3.2.6 4.4 1.7V76c0-.7.5-1.2 1.2-1.2s1.2.5 1.2 1.2v3.7c0 .7-.5 1.2-1.2 1.2H248zm-1.9 7.5c-1.6 0-3.2-.6-4.4-1.7v.5c0 .7-.5 1.2-1.2 1.2s-1.2-.5-1.2-1.2v-3.7c0-.7.5-1.2 1.2-1.2h3.7c.7 0 1.2.5 1.2 1.2s-.5 1.2-1.2 1.2h-1.3c.8.9 1.9 1.4 3.2 1.4 2 0 3.8-1.4 4.3-3.3.2-.6.8-1 1.4-.9.6.2 1 .8.9 1.4-.8 3-3.5 5.1-6.
6 5.1zM35 50.7c4.7 0 8.5-3.8 8.5-8.5s-3.8-8.5-8.5-8.5-8.5 3.8-8.5 8.5 3.8 8.5 8.5 8.5zm0-14.3c3.2 0 5.8 2.6 5.8 5.8 0 3.2-2.6 5.8-5.8 5.8-3.2 0-5.8-2.6-5.8-5.8 0-3.2 2.6-5.8 5.8-5.8zm-1.2 6.3v-4.1c0-.4.3-.7.7-.7.4 0 .7.3.7.7V42h3.4c.4 0 .7.3.7.7 0 .4-.3.7-.7.7h-4.1c-.4 0-.7-.3-.7-.7zm8.7 38.1v4.1c0 .7-.6 1.3-1.3 1.3h-4.1c-.7 0-1.3-.6-1.3-1.3 0-.7.6-1.3 1.3-1.3h1.3c-.9-.9-2.1-1.4-3.4-1.4-2.2 0-4.1 1.5-4.6 3.6-.2.6-.7 1-1.3 1h-.3c-.7-.2-1.2-.9-1-1.6.8-3.3 3.8-5.7 7.3-5.7 1.8 0 3.5.7 4.8 1.8v-.4c0-.7.6-1.3 1.3-1.3.7-.1 1.3.5 1.3 1.2zm-.2 8c-.8 3.3-3.8 5.7-7.3 5.7-1.8 0-3.5-.7-4.8-1.8v.4c0 .7-.6 1.3-1.3 1.3-.7 0-1.3-.6-1.3-1.3V89c0-.7.6-1.3 1.3-1.3H33c.7 0 1.3.6 1.3 1.3 0 .7-.6 1.3-1.3 1.3h-1.3c.9.9 2.1 1.4 3.4 1.4 2.2 0 4.1-1.5 4.6-3.6.2-.7.9-1.2 1.6-1 .7.2 1.1 1 1 1.7zm77.1-26.5c4.7 0 8.5-3.8 8.5-8.5s-3.8-8.5-8.5-8.5-8.5 3.8-8.5 8.5c-.1 4.6 3.8 8.5 8.5 8.5zm0-14.4c3.2 0 5.8 2.6 5.8 5.8 0 3.2-2.6 5.8-5.8 5.8-3.2 0-5.8-2.6-5.8-5.8-.1-3.2 2.6-5.8 5.8-5.8zm-1.2 6.3v-4.1c0-.4.3-.7.7-.7.4 0
.7.3.7.7v3.4h3.4c.4 0 .7.3.7.7 0 .4-.3.7-.7.7h-4.1c-.4 0-.7-.3-.7-.7zm39 5.7v-4.1c0-.7.6-1.3 1.3-1.3h4.1c.7 0 1.3.6 1.3 1.3 0 .7-.6 1.3-1.3 1.3h-1.3c.9.9 2.1 1.4 3.4 1.4 2.2 0 4.1-1.5 4.6-3.6.2-.7.9-1.2 1.6-1 .7.2 1.2.9 1 1.6-.8 3.3-3.8 5.7-7.3 5.7-1.8 0-3.5-.7-4.8-1.8v.4c0 .7-.6 1.3-1.3 1.3-.7.1-1.3-.5-1.3-1.2zm.3-8c.8-3.3 3.8-5.7 7.3-5.7 1.8 0 3.5.7 4.8 1.8v-.4c0-.7.6-1.3 1.3-1.3.7 0 1.3.6 1.3 1.3v4.1c0 .7-.6 1.3-1.3 1.3h-4.1c-.7 0-1.3-.6-1.3-1.3 0-.7.6-1.3 1.3-1.3h1.3c-.9-.9-2.1-1.4-3.4-1.4-2.2 0-4.1 1.5-4.6 3.6-.2.6-.7 1-1.3 1h-.3c-.8-.2-1.2-1-1-1.7z" fill="url(#n)" transform="translate(1 46)"/></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/figure_tor-circuit-display.png b/browser/extensions/onboarding/content/img/figure_tor-circuit-display.png
new file mode 100644
index 000000000000..ea6ecb7f82a3
Binary files /dev/null and b/browser/extensions/onboarding/content/img/figure_tor-circuit-display.png differ
diff --git a/browser/extensions/onboarding/content/img/figure_tor-expect-differences.png b/browser/extensions/onboarding/content/img/figure_tor-expect-differences.png
new file mode 100644
index 000000000000..36970bd711a8
Binary files /dev/null and b/browser/extensions/onboarding/content/img/figure_tor-expect-differences.png differ
diff --git a/browser/extensions/onboarding/content/img/figure_tor-network.png b/browser/extensions/onboarding/content/img/figure_tor-network.png
new file mode 100644
index 000000000000..87829397ab2a
Binary files /dev/null and b/browser/extensions/onboarding/content/img/figure_tor-network.png differ
diff --git a/browser/extensions/onboarding/content/img/figure_tor-onion-services.png b/browser/extensions/onboarding/content/img/figure_tor-onion-services.png
new file mode 100644
index 000000000000..018345e4b3a0
Binary files /dev/null and b/browser/extensions/onboarding/content/img/figure_tor-onion-services.png differ
diff --git a/browser/extensions/onboarding/content/img/figure_tor-privacy.png b/browser/extensions/onboarding/content/img/figure_tor-privacy.png
new file mode 100644
index 000000000000..38201ca5c878
Binary files /dev/null and b/browser/extensions/onboarding/content/img/figure_tor-privacy.png differ
diff --git a/browser/extensions/onboarding/content/img/figure_tor-security-level.png b/browser/extensions/onboarding/content/img/figure_tor-security-level.png
new file mode 100644
index 000000000000..9a5c221c8d8e
Binary files /dev/null and b/browser/extensions/onboarding/content/img/figure_tor-security-level.png differ
diff --git a/browser/extensions/onboarding/content/img/figure_tor-security.png b/browser/extensions/onboarding/content/img/figure_tor-security.png
new file mode 100644
index 000000000000..6eb7e5a9995c
Binary files /dev/null and b/browser/extensions/onboarding/content/img/figure_tor-security.png differ
diff --git a/browser/extensions/onboarding/content/img/figure_tor-toolbar-layout.png b/browser/extensions/onboarding/content/img/figure_tor-toolbar-layout.png
new file mode 100644
index 000000000000..6d8651e58c17
Binary files /dev/null and b/browser/extensions/onboarding/content/img/figure_tor-toolbar-layout.png differ
diff --git a/browser/extensions/onboarding/content/img/figure_tor-welcome.png b/browser/extensions/onboarding/content/img/figure_tor-welcome.png
new file mode 100644
index 000000000000..1bf27c5b9311
Binary files /dev/null and b/browser/extensions/onboarding/content/img/figure_tor-welcome.png differ
diff --git a/browser/extensions/onboarding/content/img/icons_addons.svg b/browser/extensions/onboarding/content/img/icons_addons.svg
deleted file mode 100644
index 6b27dea39252..000000000000
--- a/browser/extensions/onboarding/content/img/icons_addons.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16"><title>Icons / Extension</title><g fill="none"><path d="M0 0h16v16H0z"/><path d="M22.5 16c-1 0-1 1-1.7 1-.5 0-.8-.3-.8-.7V13c0-.6-.4-1-1-1h-3.2c-.5 0-.8-.3-.8-.7 0-.8 1-.8 1-1.8 0-.9-.9-1.5-2-1.5s-2 .6-2 1.5c0 1 1 1 1 1.8 0 .4-.3.7-.7.7H9c-.6 0-1 .4-1 1v2.3c0 .4.3.7.8.7.7 0 .7-1 1.7-1 .9 0 1.5.9 1.5 2s-.6 2-1.5 2c-1 0-1-1-1.7-1-.5 0-.8.3-.8.8V23c0 .6.4 1 1 1h3.3c.4 0 .7-.3.7-.7 0-.8-1-.8-1-1.8 0-.9.9-1.5 2-1.5s2 .6 2 1.5c0 1-1 1-1 1.8 0 .4.3.7.8.7H19c.6 0 1-.4 1-1v-3.2c0-.5.3-.8.8-.8.7 0 .7 1 1.7 1 .9 0 1.5-.9 1.5-2s-.6-2-1.5-2z" fill="#3E3D40"/></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/icons_customize.svg b/browser/extensions/onboarding/content/img/icons_customize.svg
deleted file mode 100644
index ae0a9409fa5c..000000000000
--- a/browser/extensions/onboarding/content/img/icons_customize.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><title>Glyph / Customize</title><g id="Symbols" fill="none" fill-rule="evenodd"><g id="Glyph-/-Customize" fill-rule="nonzero" fill="#3E3D40"><path d="M4 10c-.886.002-1.665.59-1.91 1.44 0 .01-.015.015-.018.025-.362 1.135-.705 2.11-1.76 2.573l-.022.012-.024.012c-.162.086-.265.254-.266.438 0 .276.224.5.5.5 1.74.12 3.46-.414 4.825-1.5.006-.006.007-.013.013-.02.62-.55.832-1.428.534-2.202C5.575 10.504 4.83 9.995 4 10zM15.693.307c-.365-.363-.95-.383-1.338-.046l-8.03 7c-.206.18-.327.435-.336.707-.01.27.093.535.285.727l1.032 1.03c.184.185.433.288.693.288h.033c.272-.01.527-.13.706-.335l7-8.03c.338-.39.318-.975-.047-1.34z" id="Shape"/></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/icons_default.svg b/browser/extensions/onboarding/content/img/icons_default.svg
deleted file mode 100644
index 235f7d65b685..000000000000
--- a/browser/extensions/onboarding/content/img/icons_default.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><title>default-browser-16</title><path fill="context-fill" d="M8,6s0-4,3.5-4S15,5,15,6c0,4.5-7,9-7,9Z"/><path fill="context-fill" d="M8,6S8,2,4.5,2,1,5,1,6c0,4.5,7,9,7,9L9,9Z"/></svg>
diff --git a/browser/extensions/onboarding/content/img/icons_library.svg b/browser/extensions/onboarding/content/img/icons_library.svg
deleted file mode 100644
index 064c2e619486..000000000000
--- a/browser/extensions/onboarding/content/img/icons_library.svg
+++ /dev/null
@@ -1 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?><svg width="92px" height="92px" viewBox="0 0 92 92" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Tip / Icon / Library</title><desc>Created with Sketch.</desc><defs></defs><g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Tip-/-Icon-/-Library" fill-rule="nonzero" fill="#0C0C0D"><g id="Icon-/-Library-/-Web"><path d="M28.7405828,17.2350375 C25.5662458,17.2350375 22.9929371,19.8060508 22.9929371,22.9775563 L22.9929371,80.402744 C22.9929371,83.5742496 25.5662458,86.1452628 28.7405828,86.1452628 C31.9149199,86.1452628 34.4882285,83.5742496 34.4882285,80.402744 L34.4882285,22.9775563 C34.4882285,19.8060508 31.9149199,17.2350375 28.7405828,17.2350375 Z M45.98352,11.4925188 C42.8091829,11.4925188 40.2358743,14.063532 40.2358743,17.2350375 L40.2358743,80.402744 C40.2358743,83.5742496 42.8091829,86.1452628 45.98352,86.1452628 C49.157857,86.1452628 51.7311657,83.574249
6 51.7311657,80.402744 L51.7311657,17.2350375 C51.7311657,14.063532 49.157857,11.4925188 45.98352,11.4925188 Z M91.6140792,78.4388026 L68.6234964,15.2710961 C67.9500245,13.3049026 66.2658683,11.8556604 64.2198302,11.4816739 C62.1737921,11.1076875 60.0851643,11.8673187 58.7585671,13.4679283 C57.4319699,15.0685378 57.0744241,17.2603443 57.8236701,19.198979 L80.814253,82.3666855 C81.4877249,84.332879 83.1718811,85.7821212 85.2179192,86.1561076 C87.2639573,86.5300941 89.3525851,85.7704629 90.6791823,84.1698533 C92.0057794,82.5692438 92.3633253,80.3774372 91.6140792,78.4388026 L91.6140792,78.4388026 Z M11.4976457,5.75 C8.32330864,5.75 5.75,8.32101323 5.75,11.4925188 L5.75,80.402744 C5.75,83.5742496 8.32330864,86.1452628 11.4976457,86.1452628 C14.6719828,86.1452628 17.2452914,83.5742496 17.2452914,80.402744 L17.2452914,11.4925188 C17.2452914,8.32101323 14.6719828,5.75 11.4976457,5.75 Z" id="Shape"></path></g></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/icons_no-icon.png b/browser/extensions/onboarding/content/img/icons_no-icon.png
new file mode 100644
index 000000000000..21aae225793b
Binary files /dev/null and b/browser/extensions/onboarding/content/img/icons_no-icon.png differ
diff --git a/browser/extensions/onboarding/content/img/icons_performance.svg b/browser/extensions/onboarding/content/img/icons_performance.svg
deleted file mode 100644
index ad23ba27400c..000000000000
--- a/browser/extensions/onboarding/content/img/icons_performance.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="context-fill" d="M8 1a8.009 8.009 0 0 0-8 8 7.917 7.917 0 0 0 .78 3.43 1 1 0 1 0 1.8-.86A5.943 5.943 0 0 1 2 9a6 6 0 1 1 11.414 2.571 1 1 0 1 0 1.807.858A7.988 7.988 0 0 0 8 1z"/><path fill="context-fill" d="M11.769 7.078a.5.5 0 0 0-.69.153L8.616 11.1a2 2 0 1 0 .5 3.558 2.011 2.011 0 0 0 .54-.54 1.954 1.954 0 0 0-.2-2.479l2.463-3.871a.5.5 0 0 0-.15-.69z"/></svg>
diff --git a/browser/extensions/onboarding/content/img/icons_private.svg b/browser/extensions/onboarding/content/img/icons_private.svg
deleted file mode 100755
index 7d4d2c416801..000000000000
--- a/browser/extensions/onboarding/content/img/icons_private.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16"><title>Icons / Private Browsing</title><g fill="none"><path d="M0 0h32v32H0z"/><path d="M20.4 20c-1.7 0-2.8-2-4.4-2-1.6 0-2.8 2-4.4 2-2 0-3.5-2-3.5-5.3-.1-2 .6-2.7 3.2-2.7s3.4 1.1 4.7 1.1c1.3 0 2.1-1.1 4.7-1.1s3.3.7 3.2 2.7c0 3.3-1.5 5.3-3.5 5.3zm-7.8-5.4c-1.6 0-2.3 1-2.3 1.2 0 .3 1.1.9 2.1.9 1.1 0 2.3-.4 2.3-.7-.2-1-1.1-1.6-2.1-1.4zm6.8 0c-1-.2-1.9.4-2.1 1.4 0 .3 1.2.7 2.3.7 1 0 2.1-.6 2.1-.9 0-.2-.7-1.2-2.3-1.2z" fill="#3E3D40"/></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/icons_screenshots.svg b/browser/extensions/onboarding/content/img/icons_screenshots.svg
deleted file mode 100644
index 8d219dce78b5..000000000000
--- a/browser/extensions/onboarding/content/img/icons_screenshots.svg
+++ /dev/null
@@ -1 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?><svg width="92px" height="92px" viewBox="0 0 92 92" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Tip / Icon / Screenshots</title><desc>Created with Sketch.</desc><defs></defs><g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="Tip-/-Icon-/-Screenshots" fill-rule="nonzero" fill="#0C0C0D"><g id="Icon-/-Screenshot-/-Web"><path d="M23.0526905,5.75 C16.7062659,5.75 11.5614723,10.8982866 11.5614723,17.2490201 L23.0526905,17.2490201 L23.0526905,5.75 Z M57.5263453,5.75 L46.035127,5.75 L46.035127,17.2490201 L57.5263453,17.2490201 L57.5263453,5.75 Z M80.5087818,5.75 L80.5087818,17.2490201 L92,17.2490201 C92,10.8982866 86.8552063,5.75 80.5087818,5.75 Z M40.2895179,5.75 L28.7982997,5.75 L28.7982997,17.2490201 L40.2895179,17.2490201 L40.2895179,5.75 Z M74.7631726,5.75 L63.2719544,5.75 L63.2719544,17.2490201 L74.7631726,17.2490201 L74.7631726,5.75 Z M80.5087818,34.4975502
L92,34.4975502 L92,22.9985301 L80.5087818,22.9985301 L80.5087818,34.4975502 Z M80.5087818,68.9946104 C86.8552063,68.9946104 92,63.8463237 92,57.4955903 L80.5087818,57.4955903 L80.5087818,68.9946104 Z M80.5087818,51.7460803 L92,51.7460803 L92,40.2470602 L80.5087818,40.2470602 L80.5087818,51.7460803 Z M77.9749681,39.286892 C74.3364854,34.0846734 67.1729138,32.8182928 61.9734467,36.4581331 L39.9390357,52.734996 L28.631677,44.8006721 C28.7205927,44.2448747 28.7762328,43.6842562 28.7982997,43.1218152 C28.7892628,38.6172543 26.6604054,34.3800822 23.0526905,31.6860398 L23.0526905,22.9985301 L11.5614723,22.9985301 L11.5614723,29.0355156 C5.79583786,30.1835386 1.31120668,34.7313256 0.240775953,40.5156383 C-0.829654779,46.2999509 1.73019662,52.1531434 6.70268981,55.2910372 C11.675183,58.4289309 18.0565494,58.2180974 22.811375,54.7588235 L29.9474215,59.7551477 L21.9035687,65.4011666 C16.3310302,62.0167647 9.17796578,62.8225007 4.49677041,67.3619045 C-0.184424965,71.9013083 -1.21401,79.0303725
1.99130168,84.710299 C5.19661336,90.3902255 11.8290284,93.1895755 18.1311131,91.5224455 C24.4331979,89.8553154 28.8167193,84.1418505 28.7982997,77.6188754 C28.7959008,76.6687877 28.699673,75.721263 28.5110192,74.7901165 L77.9749681,39.286892 Z M14.4342769,50.3087028 C10.4677615,50.3087028 7.25226545,47.0910236 7.25226545,43.1218152 C7.25226545,39.1526068 10.4677615,35.9349277 14.4342769,35.9349277 C18.4007922,35.9349277 21.6162883,39.1526068 21.6162883,43.1218152 C21.6162883,47.0910236 18.4007922,50.3087028 14.4342769,50.3087028 Z M14.4342769,84.805763 C10.4677615,84.805763 7.25226545,81.5880838 7.25226545,77.6188754 C7.25226545,73.649667 10.4677615,70.4319879 14.4342769,70.4319879 C18.4007922,70.4319879 21.6162883,73.649667 21.6162883,77.6188754 C21.6162883,81.5880838 18.4007922,84.805763 14.4342769,84.805763 Z M45.4605661,70.8402031 L62.7950688,84.0640762 C67.9945359,87.7039165 75.1581075,86.4375358 78.7965902,81.2353172 L55.457926,63.8200513 L45.4605661,70.8402031 Z" id="Shape"><
/path></g></g></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/icons_singlesearch.svg b/browser/extensions/onboarding/content/img/icons_singlesearch.svg
deleted file mode 100644
index 3e06a3852288..000000000000
--- a/browser/extensions/onboarding/content/img/icons_singlesearch.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16 "><title>Icons / Search</title><g fill="none"><path d="M0 0h32v32H0z"/><path d="M23.7 22.3l-4.8-4.8c1.8-2.5 1.4-6.1-1-8.1s-5.9-1.9-8.1.4c-2.3 2.2-2.4 5.7-.4 8.1 2 2.4 5.6 2.8 8.1 1l4.8 4.8c.4.4 1 .4 1.4 0 .4-.4.4-1 0-1.4zM14 18c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4c0 1.1-.4 2.1-1.1 2.9-.8.7-1.8 1.1-2.9 1.1z" fill="#3E3D40"/></g></svg>
\ No newline at end of file
diff --git a/browser/extensions/onboarding/content/img/icons_sync.svg b/browser/extensions/onboarding/content/img/icons_sync.svg
deleted file mode 100644
index 286422275aa7..000000000000
--- a/browser/extensions/onboarding/content/img/icons_sync.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16"><title> Icons / Sync</title><desc> Created with Sketch.</desc><g fill="none"><rect width="32" height="32"/><path d="M22 9C21.4 9 21 9.4 21 10L21 11.1C19.2 9.3 16.6 8.6 14.2 9.2 11.7 9.9 9.8 11.8 9.2 14.3 9.1 14.7 9.2 15 9.5 15.3 9.8 15.5 10.1 15.6 10.5 15.5 10.8 15.4 11.1 15.1 11.2 14.8 11.7 12.6 13.7 11 16 11 17.6 11 19 11.7 20 13L18 13C17.4 13 17 13.4 17 14 17 14.6 17.4 15 18 15L22 15C22.6 15 23 14.6 23 14L23 10C23 9.4 22.6 9 22 9ZM22 16.5C21.8 16.4 21.5 16.5 21.3 16.6 21.1 16.7 20.9 17 20.8 17.2 20.3 19.4 18.3 21 16 21 14.4 21 13 20.3 12 19L14 19C14.6 19 15 18.6 15 18 15 17.4 14.6 17 14 17L10 17C9.4 17 9 17.4 9 18L9 22C9 22.6 9.4 23 10 23 10.6 23 11 22.6 11 22L11 20.9C12.8 22.7 15.4 23.4 17.8 22.8 20.3 22.1 22.2 20.2 22.8 17.7 22.9 17.2 22.6 16.6 22 16.5Z" fill="#3E3D40"/></g></svg>
diff --git a/browser/extensions/onboarding/content/img/icons_tour-complete.png b/browser/extensions/onboarding/content/img/icons_tour-complete.png
new file mode 100644
index 000000000000..8802bf083ed3
Binary files /dev/null and b/browser/extensions/onboarding/content/img/icons_tour-complete.png differ
diff --git a/browser/extensions/onboarding/content/img/icons_tour-complete.svg b/browser/extensions/onboarding/content/img/icons_tour-complete.svg
index 173e72c332df..761c31cbf9d0 100644
--- a/browser/extensions/onboarding/content/img/icons_tour-complete.svg
+++ b/browser/extensions/onboarding/content/img/icons_tour-complete.svg
@@ -8,10 +8,10 @@
<g id="Tips-/-Navigation" transform="translate(-30.000000, -117.000000)" stroke-width="2">
<g id="Group">
<g id="Tip-/-Check" transform="translate(30.000000, 117.000000)">
- <circle id="Oval-2" stroke="#FFFFFF" fill="#33F70C" fill-rule="evenodd" cx="10" cy="10" r="9"></circle>
+ <circle id="Oval-2" stroke="#FFFFFF" fill="#00DDB3" fill-rule="evenodd" cx="10" cy="10" r="9"></circle>
<polyline id="Path-31" stroke="#165866" stroke-linecap="round" stroke-linejoin="round" points="5.5 10.5 8.5 13.5 14.5 6.5"></polyline>
</g>
</g>
</g>
</g>
-</svg>
\ No newline at end of file
+</svg>
diff --git a/browser/extensions/onboarding/content/img/watermark.svg b/browser/extensions/onboarding/content/img/watermark.svg
deleted file mode 100644
index c9345ed2ba1d..000000000000
--- a/browser/extensions/onboarding/content/img/watermark.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><title>newtab-firefox-gry</title><path d="M31.359,14.615h0c-.044-.289-.088-.459-.088-.459s-.113.131-.3.378A10.77,10.77,0,0,0,30.6,12.5a13.846,13.846,0,0,0-.937-2.411,10.048,10.048,0,0,0-.856-1.468q-.176-.263-.359-.51c-.57-.931-1.224-1.5-1.981-2.576a7.806,7.806,0,0,1-.991-2.685A10.844,10.844,0,0,0,25,4.607c-.777-.784-1.453-1.341-1.861-1.721C21.126,1.006,21.36.031,21.36.031h0S17.6,4.228,19.229,8.6a8.4,8.4,0,0,0,2.8,3.733c1.576,1.3,3.273,2.323,4.168,4.937a8.377,8.377,0,0,0-3.144-3.317,7.573,7.573,0,0,1,.6,3,7.124,7.124,0,0,1-8.711,6.94,6.561,6.561,0,0,1-1.765-.6,7.183,7.183,0,0,1-2.115-1.955l-.01-.017.126.046a6.5,6.5,0,0,0,.9.241,5.628,5.628,0,0,0,3.583-.423c1.126-.625,1.808-1.088,2.361-.905l.01,0c.54.172.966-.352.58-.9a2.94,2.94,0,0,0-2.848-1.112c-1.127.164-2.16.965-3.637.189a3.129,3.129,0,0,1-.277-.163c-.1-.057.317.087.22.022a7.33,7.33,0,0,1-.928-.554c-.022-.018.223.07.2.052a3.581,3.581,0,0,1-.968-.979
,1.741,1.741,0,0,1-.066-1.554,1.371,1.371,0,0,1,.6-.564c.191.094.309.165.309.165s-.087-.16-.134-.244c.017-.006.032,0,.049-.011.167.072.537.26.732.375a1.016,1.016,0,0,1,.335.3s.067-.033.017-.173a.9.9,0,0,0-.346-.424l.016,0a2.94,2.94,0,0,1,.426.265,2.079,2.079,0,0,0,.17-.9,1.178,1.178,0,0,0-.069-.5c-.053-.1.03-.14.123-.035a.976.976,0,0,0-.079-.238v-.008h0s.053-.069.077-.094a1.43,1.43,0,0,1,.216-.176,9.973,9.973,0,0,1,1.465-.747c.414-.181.757-.319.827-.359a2.3,2.3,0,0,0,.293-.225,1.968,1.968,0,0,0,.66-1.14,1.6,1.6,0,0,0,.017-.178v-.05l0-.03v0l0-.012v0l0-.013h0c-.06-.225-.448-.394-2.476-.584a1.773,1.773,0,0,1-1.45-1.36l0,.009c-.029.074-.055.149-.081.225.026-.075.052-.15.081-.225l0-.016a5.138,5.138,0,0,1,1.986-2.466c.052-.042-.208.011-.156-.032a5.156,5.156,0,0,1,.53-.224c.091-.038-.39-.222-.815-.177a2.2,2.2,0,0,0-.756.178c.1-.086.4-.2.329-.2a4.865,4.865,0,0,0-1.542.583.314.314,0,0,1,.03-.14,2.4,2.4,0,0,0-.964.744,1.275,1.275,0,0,0,.01-.174,2.876,2.876,0,0,0-.473.444l-.009.007a6.285,6.285
,0,0,0-3.517-.3l-.01-.009.012,0a2.943,2.943,0,0,1-.625-.7L6.1,5.852,6.081,5.83c-.077-.114-.156-.243-.237-.387-.058-.1-.117-.217-.176-.338,0-.008-.009-.011-.013-.012-.024,0-.041.111-.061.082l0-.006a4.308,4.308,0,0,1-.283-1.687l-.016.008a1.884,1.884,0,0,0-.714.934c-.061.137-.1.212-.14.287,0,.006,0-.01,0-.035.009-.069.039-.211.032-.2s-.012.019-.019.029a1.733,1.733,0,0,0-.251.372,2.355,2.355,0,0,0-.15.382c-.006.021,0-.018,0-.064s.009-.128,0-.111l-.022.043a9.5,9.5,0,0,0-.8,3.035A3.022,3.022,0,0,0,3.2,8.7v.016a6.628,6.628,0,0,0-.817,1.1,15.606,15.606,0,0,0-1.727,4.23,10.351,10.351,0,0,1,.925-1.621,15,15,0,0,0-1.045,5.5,14.233,14.233,0,0,1,.45-1.629A13.807,13.807,0,0,0,2.234,22.76a15.037,15.037,0,0,0,5.951,6.748h0a13.016,13.016,0,0,0,3.468,1.662c.162.059.326.117.494.173-.053-.021-.1-.044-.153-.067a15.7,15.7,0,0,0,4.5.662c5.394,0,7.175-2.054,7.339-2.259h0a2.73,2.73,0,0,0,.637-.856h0q.156-.064.315-.137l.067-.03.121-.057a11.312,11.312,0,0,0,2.277-1.426,5.5,5.5,0,0,0,2.123-3.1h0a1.938,1.938,0,
0,0,.029-1.428q.083-.131.171-.28a12.706,12.706,0,0,0,1.907-6.181v-.006c0-.059,0-.118,0-.177A7.731,7.731,0,0,0,31.359,14.615Z" fill="context-fill"/></svg>
diff --git a/browser/extensions/onboarding/content/onboarding-tor-circuit-display.js b/browser/extensions/onboarding/content/onboarding-tor-circuit-display.js
new file mode 100644
index 000000000000..de4b23c84c2a
--- /dev/null
+++ b/browser/extensions/onboarding/content/onboarding-tor-circuit-display.js
@@ -0,0 +1,283 @@
+// Copyright (c) 2018, The Tor Project, Inc.
+// vim: set sw=2 sts=2 ts=8 et syntax=javascript:
+
+let gStringBundle;
+
+let domLoadedListener = (aEvent) => {
+ let doc = aEvent.originalTarget;
+ if (doc.nodeName == "#document") {
+ removeEventListener("DOMContentLoaded", domLoadedListener);
+ beginCircuitDisplayOnboarding();
+ }
+};
+
+addEventListener("DOMContentLoaded", domLoadedListener, false);
+
+function beginCircuitDisplayOnboarding() {
+ // 1 of 3: Show the introductory "How do circuits work?" info panel.
+ let target = "torBrowser-circuitDisplay";
+ let title = getStringFromName("intro.title");
+ let msg = getStringFromName("intro.msg");
+ let button1Label = getStringFromName("one-of-three");
+ let button2Label = getStringFromName("next");
+ let buttons = [];
+ buttons.push({label: button1Label, style: "text"});
+ buttons.push({label: button2Label, style: "primary", callback: function() {
+ showCircuitDiagram(); }});
+ let options = {closeButtonCallback: function() { cleanUp(); }};
+ Mozilla.UITour.showInfo(target, title, msg, undefined, buttons, options);
+}
+
+function showCircuitDiagram() {
+ // 2 of 3: Open the control center and show the circuit diagram info panel.
+ Mozilla.UITour.showMenu("controlCenter", function() {
+ let target = "torBrowser-circuitDisplay-diagram";
+ let title = getStringFromName("diagram.title");
+ let msg = getStringFromName("diagram.msg");
+ let button1Label = getStringFromName("two-of-three");
+ let button2Label = getStringFromName("next");
+ let buttons = [];
+ buttons.push({label: button1Label, style: "text"});
+ buttons.push({label: button2Label, style: "primary", callback: function() {
+ showNewCircuitButton(); }});
+ let options = {closeButtonCallback: function() { cleanUp(); }};
+ Mozilla.UITour.showInfo(target, title, msg, undefined, buttons, options);
+ });
+}
+
+function showNewCircuitButton() {
+ // 3 of 3: Show the New Circuit button info panel.
+ let target = "torBrowser-circuitDisplay-newCircuitButton";
+ let title = getStringFromName("new-circuit.title");
+ let msg = getStringFromName("new-circuit.msg");
+ let button1Label = getStringFromName("three-of-three");
+ let button2Label = getStringFromName("done");
+ let buttons = [];
+ buttons.push({label: button1Label, style: "text"});
+ buttons.push({label: button2Label, style: "primary", callback: function() {
+ cleanUp(); }});
+ let options = {closeButtonCallback: function() { cleanUp(); }};
+ Mozilla.UITour.showInfo(target, title, msg, undefined, buttons, options);
+}
+
+function cleanUp() {
+ Mozilla.UITour.hideMenu("controlCenter");
+ Mozilla.UITour.closeTab();
+}
+
+function getStringFromName(aName) {
+ const TORBUTTON_BUNDLE_URI = "chrome://torbutton/locale/browserOnboarding.properties";
+ const PREFIX = "onboarding.tor-circuit-display.";
+
+ if (!gStringBundle) {
+ gStringBundle = Services.strings.createBundle(TORBUTTON_BUNDLE_URI)
+ }
+
+ let result;
+ try {
+ result = gStringBundle.GetStringFromName(PREFIX + aName);
+ } catch (e) {
+ result = aName;
+ }
+ return result;
+}
+
+
+// The remainder of the code in this file was adapted from
+// browser/components/uitour/UITour-lib.js (unfortunately, we cannot use that
+// code here because it directly accesses 'document' and it assumes that the
+// content window is the global JavaScript object),
+
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+// create namespace
+if (typeof Mozilla == "undefined") {
+ var Mozilla = {};
+}
+
+(function($) {
+ "use strict";
+
+ // create namespace
+ if (typeof Mozilla.UITour == "undefined") {
+ /**
+ * Library that exposes an event-based Web API for communicating with the
+ * desktop browser chrome. It can be used for tasks such as opening menu
+ * panels and highlighting the position of buttons in the toolbar.
+ *
+ * <p>For security/privacy reasons `Mozilla.UITour` will only work on a list of allowed
+ * secure origins. The list of allowed origins can be found in
+ * {@link https://dxr.mozilla.org/mozilla-central/source/browser/app/permissions|
+ * browser/app/permissions}.</p>
+ *
+ * @since 29
+ * @namespace
+ */
+ Mozilla.UITour = {};
+ }
+
+ function _sendEvent(action, data) {
+ var event = new content.CustomEvent("mozUITour", {
+ bubbles: true,
+ detail: {
+ action,
+ data: data || {}
+ }
+ });
+
+ content.document.dispatchEvent(event);
+ }
+
+ function _generateCallbackID() {
+ return Math.random().toString(36).replace(/[^a-z]+/g, "");
+ }
+
+ function _waitForCallback(callback) {
+ var id = _generateCallbackID();
+
+ function listener(event) {
+ if (typeof event.detail != "object")
+ return;
+ if (event.detail.callbackID != id)
+ return;
+
+ content.document.removeEventListener("mozUITourResponse", listener);
+ callback(event.detail.data);
+ }
+ content.document.addEventListener("mozUITourResponse", listener);
+
+ return id;
+ }
+
+ /**
+ * Show an arrow panel with optional images and buttons anchored at a specific UI target.
+ *
+ * @see Mozilla.UITour.hideInfo
+ *
+ * @param {Mozilla.UITour.Target} target - Identifier of the UI widget to anchor the panel at.
+ * @param {String} title - Title text to be shown as the heading of the panel.
+ * @param {String} text - Body text of the panel.
+ * @param {String} [icon=null] - URL of a 48x48px (96px @ 2dppx) image (which will be resolved
+ * relative to the tab's URI) to display in the panel.
+ * @param {Object[]} [buttons=[]] - Array of objects describing buttons.
+ * @param {String} buttons[].label - Button label
+ * @param {String} buttons[].icon - Button icon URL
+ * @param {String} buttons[].style - Button style ("primary" or "link")
+ * @param {Function} buttons[].callback - Called when the button is clicked
+ * @param {Object} [options={}] - Advanced options
+ * @param {Function} options.closeButtonCallback - Called when the panel's close button is clicked.
+ *
+ * @example
+ * var buttons = [
+ * {
+ * label: 'Cancel',
+ * style: 'link',
+ * callback: cancelBtnCallback
+ * },
+ * {
+ * label: 'Confirm',
+ * style: 'primary',
+ * callback: confirmBtnCallback
+ * }
+ * ];
+ *
+ * var icon = '//mozorg.cdn.mozilla.net/media/img/firefox/australis/logo.png';
+ *
+ * var options = {
+ * closeButtonCallback: closeBtnCallback
+ * };
+ *
+ * Mozilla.UITour.showInfo('appMenu', 'my title', 'my text', icon, buttons, options);
+ */
+ Mozilla.UITour.showInfo = function(target, title, text, icon, buttons, options) {
+ var buttonData = [];
+ if (Array.isArray(buttons)) {
+ for (var i = 0; i < buttons.length; i++) {
+ buttonData.push({
+ label: buttons[i].label,
+ icon: buttons[i].icon,
+ style: buttons[i].style,
+ callbackID: _waitForCallback(buttons[i].callback)
+ });
+ }
+ }
+
+ var closeButtonCallbackID, targetCallbackID;
+ if (options && options.closeButtonCallback)
+ closeButtonCallbackID = _waitForCallback(options.closeButtonCallback);
+ if (options && options.targetCallback)
+ targetCallbackID = _waitForCallback(options.targetCallback);
+
+ _sendEvent("showInfo", {
+ target,
+ title,
+ text,
+ icon,
+ buttons: buttonData,
+ closeButtonCallbackID,
+ targetCallbackID
+ });
+ };
+
+ /**
+ * Hide any visible info panels.
+ * @see Mozilla.UITour.showInfo
+ */
+ Mozilla.UITour.hideInfo = function() {
+ _sendEvent("hideInfo");
+ };
+
+ /**
+ * Open the named application menu.
+ *
+ * @see Mozilla.UITour.hideMenu
+ *
+ * @param {Mozilla.UITour.MenuName} name - Menu name
+ * @param {Function} [callback] - Callback to be called with no arguments when
+ * the menu opens.
+ *
+ * @example
+ * Mozilla.UITour.showMenu('appMenu', function() {
+ * console.log('menu was opened');
+ * });
+ */
+ Mozilla.UITour.showMenu = function(name, callback) {
+ var showCallbackID;
+ if (callback)
+ showCallbackID = _waitForCallback(callback);
+
+ _sendEvent("showMenu", {
+ name,
+ showCallbackID,
+ });
+ };
+
+ /**
+ * Close the named application menu.
+ *
+ * @see Mozilla.UITour.showMenu
+ *
+ * @param {Mozilla.UITour.MenuName} name - Menu name
+ */
+ Mozilla.UITour.hideMenu = function(name) {
+ _sendEvent("hideMenu", {
+ name
+ });
+ };
+
+ /**
+ * @summary Closes the tab where this code is running. As usual, if the tab is in the
+ * foreground, the tab that was displayed before is selected.
+ *
+ * @description The last tab in the current window will never be closed, in which case
+ * this call will have no effect. The calling code is expected to take an
+ * action after a small timeout in order to handle this case, for example by
+ * displaying a goodbye message or a button to restart the tour.
+ * @since 46
+ */
+ Mozilla.UITour.closeTab = function() {
+ _sendEvent("closeTab");
+ };
+})();
diff --git a/browser/extensions/onboarding/content/onboarding-tour-agent.js b/browser/extensions/onboarding/content/onboarding-tour-agent.js
index d60a41b2c9f5..7cdb10063f28 100644
--- a/browser/extensions/onboarding/content/onboarding-tour-agent.js
+++ b/browser/extensions/onboarding/content/onboarding-tour-agent.js
@@ -18,6 +18,18 @@ let onCanSetDefaultBrowserInBackground = () => {
let onClick = evt => {
switch (evt.target.id) {
+ case "onboarding-tour-tor-security-button":
+ Mozilla.UITour.torBrowserOpenSecurityLevelPanel();
+ break;
+ case "onboarding-tour-tor-toolbar-update-9-0-button":
+ Mozilla.UITour.showHighlight("torBrowser-newIdentityButton", "zoom");
+ break;
+ case "onboarding-tour-tor-network-action-button":
+ Mozilla.UITour.openPreferences("tor");
+ break;
+#if 0
+// Firefox onboarding actions. To reduce conflicts when rebasing against
+// newer Firefox code, we use the preprocessor to omit this code block.
case "onboarding-tour-addons-button":
Mozilla.UITour.showHighlight("addons");
break;
@@ -60,6 +72,7 @@ let onClick = evt => {
case "onboarding-tour-sync-connect-device-button":
Mozilla.UITour.showConnectAnotherDevice();
break;
+#endif
}
let classList = evt.target.classList;
// On keyboard navigation the target would be .onboarding-tour-item.
diff --git a/browser/extensions/onboarding/content/onboarding.css b/browser/extensions/onboarding/content/onboarding.css
index 8f2431477634..431b73bd148e 100644
--- a/browser/extensions/onboarding/content/onboarding.css
+++ b/browser/extensions/onboarding/content/onboarding.css
@@ -14,8 +14,8 @@
/* Ensuring we can put the overlay over elements using
z-index on original page */
z-index: 20999;
- color: #4d4d4d;
- background: var(--newtab-overlay-color, rgb(245, 245, 247, 0.9)); /* #f7f7f5, 0.9 opacity */
+ color: #4a4a4a;
+ background: rgba(0,0,0,0);
display: none;
}
@@ -23,12 +23,45 @@
display: block;
}
-#onboarding-overlay-button {
- padding: 10px 0 0 0;
+#onboarding-overlay-button-container {
+ padding: 16px 0 0 0;
position: fixed;
- cursor: pointer;
top: 4px;
inset-inline-start: 12px;
+}
+
+/*
+ * Define an animated attention-grabbing dot which is shown on the
+ * speech bubble when we are displaying the "updated" tour.
+*/
+#onboarding-overlay-button-container.onboarding-overlay-attention-dot::after {
+ display: inline-block;
+ position: relative;
+ content: " ";
+ width: 20px;
+ height: 20px;
+ top: -8px;
+ inset-inline-start: -16px;
+ background-color: #00E2B1;
+ border-radius: 50%;
+ animation: pulsate 2.0s ease-out;
+ animation-iteration-count: 7;
+}
+
+@keyframes pulsate {
+ 0% {
+ opacity: 1.0;
+ }
+ 50% {
+ opacity: 0.5;
+ }
+ 100% {
+ opacity: 1.0;
+ }
+}
+
+#onboarding-overlay-button {
+ cursor: pointer;
border: none;
/* Set to none so no grey contrast background in the high-contrast mode */
background: none;
@@ -56,7 +89,7 @@
margin-top: -1px;
margin-inline-start: -13px;
border: 2px solid #f2f2f2;
- background: #0A84FF;
+ background: #420c5d;
padding: 0;
width: 10px;
height: 10px;
@@ -70,7 +103,7 @@
#onboarding-overlay-button:hover::after,
#onboarding-overlay-button.onboarding-speech-bubble::after {
- background: #0060df;
+ background: rgba(255,255,255,0.2);
font-size: 13px;
text-align: center;
color: #fff;
@@ -78,7 +111,7 @@
font-weight: 400;
content: attr(aria-label);
border: 1px solid transparent;
- border-radius: 2px;
+ border-radius: 12px;
padding: 10px 16px;
width: auto;
height: auto;
@@ -124,24 +157,17 @@
width: 16px;
height: 16px;
border: none;
- background: none;
+ background: url("img/close.png") center no-repeat;
padding: 0;
}
-.onboarding-close-btn::before {
- content: url("chrome://global/skin/icons/close.svg");
- -moz-context-properties: fill, fill-opacity;
- fill-opacity: 0;
- fill: var(--newtab-icon-primary-color, currentColor);
-}
-
-.onboarding-close-btn:-moz-any(:hover, :active, :focus, :-moz-focusring)::before {
- fill-opacity: 0.1;
+.onboarding-close-btn:-moz-any(:hover, :active, :focus, :-moz-focusring) {
+ background-color: rgba(0, 0, 0, 0.1);
}
#onboarding-overlay.onboarding-opened > #onboarding-overlay-dialog {
width: 960px;
- height: 510px;
+ height: 540px;
background: #fff;
border: 1px solid rgba(9, 6, 13, 0.2); /* #09060D, 0.2 opacity */
border-radius: 3px;
@@ -218,7 +244,7 @@
font-size: 16px;
cursor: pointer;
max-height: 54px;
- --onboarding-tour-item-active-color: #0A84FF;
+ --onboarding-tour-item-active-color: #420c5d;
}
#onboarding-tour-list .onboarding-tour-item:dir(rtl) {
@@ -226,7 +252,7 @@
}
#onboarding-tour-list .onboarding-tour-item.onboarding-complete::before {
- content: url("img/icons_tour-complete.svg");
+ content: url("img/icons_tour-complete.png");
position: relative;
inset-inline-start: 3px;
top: -10px;
@@ -262,6 +288,7 @@
#onboarding-tour-list .onboarding-tour-item.onboarding-active,
#onboarding-tour-list .onboarding-tour-item-container:hover .onboarding-tour-item {
+ font-weight: bold;
color: var(--onboarding-tour-item-active-color);
/* With 1px transparent outline, could see a border in the high-constrast mode */
outline: 1px solid transparent;
@@ -319,6 +346,18 @@
grid-template-columns: [tour-page-start] 368px [tour-content-start] 1fr [tour-page-end];
}
+.onboarding-tour-description-highlight {
+ display: inline-block;
+ margin-inline-start: 8px;
+ padding: 6px 8px;
+ vertical-align: middle;
+ background-color: #F1F1F3;
+ border-radius: 4px;
+ font-size: 10px;
+ font-weight: 600;
+ text-transform: uppercase;
+}
+
.onboarding-tour-description {
grid-row: tour-page-start / tour-page-end;
grid-column: tour-page-start / tour-content-start;
@@ -326,15 +365,26 @@
line-height: 22px;
padding-inline-start: 40px;
padding-inline-end: 28px;
- max-height: 360px;
+ max-height: 370px;
overflow: auto;
}
.onboarding-tour-description > h1 {
- font-size: 36px;
- margin-top: 16px;
+ font-size: 30px;
+ margin: 16px 0px 10px 0px;
font-weight: 300;
- line-height: 44px;
+ line-height: 36px;
+ color: #420c5d;
+}
+
+.onboarding-tour-description-para2 {
+ margin-top: 16px;
+}
+
+.onboarding-tour-description-suffix {
+ margin-top: 6px;
+ font-size: 13px;
+ line-height: 16px;
}
.onboarding-tour-content {
@@ -345,8 +395,8 @@
}
.onboarding-tour-content > img {
- width: 352px;
- margin: 0;
+ width: 300px;
+ margin: 20px;
}
/* These illustrations need to be stuck on the right side to the border. Thus we
@@ -369,7 +419,7 @@
}
.onboarding-tour-action-button {
- background: #0060df;
+ background: #4d0c5d;
/* With 1px transparent border, could see a border in the high-constrast mode */
border: 1px solid transparent;
border-radius: 2px;
@@ -399,18 +449,43 @@
}
.onboarding-tour-action-button:hover:not([disabled]) {
- background: #003eaa;
+ background: #410a4e;
cursor: pointer;
}
.onboarding-tour-action-button:active:not([disabled]) {
- background: #002275;
+ background: #34083f;
}
.onboarding-tour-action-button:disabled {
opacity: 0.5;
}
+/* Tor action buttons appear in the description column rather than the content one. */
+.onboarding-tour-tor-action-button-container {
+ /* Get higher z-index in order to ensure buttons within container are selectable */
+ z-index: 2;
+ grid-row: tour-button-start / tour-page-end;
+ grid-column: tour-page-start / tour-content-start;
+}
+
+.onboarding-tour-tor-action-button-container > .onboarding-tour-action-button {
+ margin-inline-start: 40px; /* match .onboarding-tour-description */
+ float: inline-start;
+ background: #e6e6e6;
+ color: #303030;
+}
+
+.onboarding-tour-tor-action-button-container > .onboarding-tour-action-button:hover:not([disabled]) {
+ background: #d6d6d6;
+ cursor: pointer;
+}
+
+.onboarding-tour-tor-action-button-container > .onboarding-tour-action-button:active:not([disabled]) {
+ background: #c6c6c6;
+}
+
+
/* Tour Icons */
#onboarding-tour-singlesearch.onboarding-tour-item::after,
#onboarding-notification-bar[data-target-tour-id=onboarding-tour-singlesearch] #onboarding-notification-tour-title::before {
@@ -457,6 +532,15 @@
mask-image: url("img/icons_screenshots.svg");
}
+a#onboarding-tour-tor-expect-differences-button,
+a#onboarding-tour-tor-expect-differences-button:hover,
+a#onboarding-tour-tor-expect-differences-button:visited,
+a#onboarding-tour-tor-onion-services-button,
+a#onboarding-tour-tor-onion-services-button:hover,
+a#onboarding-tour-tor-onion-services-button:visited,
+a#onboarding-tour-tor-learn-more-button,
+a#onboarding-tour-tor-learn-more-button:hover,
+a#onboarding-tour-tor-learn-more-button:visited,
a#onboarding-tour-screenshots-button,
a#onboarding-tour-screenshots-button:hover,
a#onboarding-tour-screenshots-button:visited {
@@ -464,6 +548,12 @@ a#onboarding-tour-screenshots-button:visited {
text-decoration: none;
}
+/* The Tor Browswer tour items do not have icons, so we use a transparent PNG. */
+.onboarding-tour-item::after,
+#onboarding-notification-bar[data-target-tour-id] #onboarding-notification-tour-title::before {
+ mask-image: url("img/icons_no-icon.png");
+}
+
/* Tour Notifications */
#onboarding-notification-bar {
position: fixed;
diff --git a/browser/extensions/onboarding/content/onboarding.js b/browser/extensions/onboarding/content/onboarding.js
index c67bd8876201..a447fb31b6ac 100644
--- a/browser/extensions/onboarding/content/onboarding.js
+++ b/browser/extensions/onboarding/content/onboarding.js
@@ -12,6 +12,7 @@ ChromeUtils.defineModuleGetter(this, "Onboarding", "resource://onboarding/Onboar
const ABOUT_HOME_URL = "about:home";
const ABOUT_NEWTAB_URL = "about:newtab";
const ABOUT_WELCOME_URL = "about:welcome";
+const ABOUT_TOR_URL = "about:tor";
// Load onboarding module only when we enable it.
if (Services.prefs.getBoolPref("browser.onboarding.enabled", false)) {
@@ -22,7 +23,7 @@ if (Services.prefs.getBoolPref("browser.onboarding.enabled", false)) {
let window = evt.target.defaultView;
let location = window.location.href;
- if (location == ABOUT_NEWTAB_URL || location == ABOUT_HOME_URL || location == ABOUT_WELCOME_URL) {
+ if (location == ABOUT_TOR_URL) {
// We just want to run tests as quickly as possible
// so in the automation test, we don't do `requestIdleCallback`.
if (Cu.isInAutomation) {
diff --git a/browser/extensions/onboarding/jar.mn b/browser/extensions/onboarding/jar.mn
index 1d580be9861f..af83e1d06e6c 100644
--- a/browser/extensions/onboarding/jar.mn
+++ b/browser/extensions/onboarding/jar.mn
@@ -6,9 +6,14 @@
# resource://onboarding/ is referenced in about:home about:newtab and about:welcome,
# so make it content-accessible.
% resource onboarding %content/ contentaccessible=yes
- content/ (content/*)
+ content/ (content/*.css)
+ content/img/ (content/img/*)
+* content/onboarding-tour-agent.js (content/onboarding-tour-agent.js)
+ content/onboarding.js (content/onboarding.js)
+* content/Onboarding.jsm (content/Onboarding.jsm)
+ content/onboarding-tor-circuit-display.js (content/onboarding-tor-circuit-display.js)
# Package UITour-lib.js in here rather than under
# /browser/components/uitour to avoid "unreferenced files" error when
# Onboarding extension is not built.
content/lib/UITour-lib.js (/browser/components/uitour/UITour-lib.js)
- content/modules/ (*.jsm)
+ content/modules/OnboardingTourType.jsm (OnboardingTourType.jsm)
diff --git a/browser/themes/shared/UITour.inc.css b/browser/themes/shared/UITour.inc.css
index 2e08215d6239..6470ba816672 100644
--- a/browser/themes/shared/UITour.inc.css
+++ b/browser/themes/shared/UITour.inc.css
@@ -49,14 +49,16 @@
}
#UITourTooltipTitle {
- font-size: 1.45rem;
+ color: #420C5D;
+ font-size: 16px;
font-weight: bold;
margin: 0;
}
#UITourTooltipDescription {
margin-inline: 0;
- font-size: 1.15rem;
+ color: #4A4A4A;
+ font-size: 13px;
line-height: 1.8rem;
margin-bottom: 0; /* Override global.css */
}
@@ -78,7 +80,6 @@
#UITourTooltipButtons {
-moz-box-pack: end;
background-color: var(--arrowpanel-dimmed);
- border-top: 1px solid var(--panel-separator-color);
margin: 10px -16px -16px;
padding: 16px;
}
@@ -112,38 +113,29 @@
#UITourTooltipButtons > button:not(.button-link) {
-moz-appearance: none;
background-color: rgb(251,251,251);
- border-radius: 3px;
- border: 1px solid;
- border-color: rgb(192,192,192);
+ border-radius: 2px;
color: rgb(71,71,71);
- padding: 4px 30px;
+ padding: 6px 30px;
transition-property: background-color, border-color;
transition-duration: 150ms;
}
-#UITourTooltipButtons > button:not(.button-link):not(:active):hover {
- background-color: hsla(210,4%,10%,.15);
- border-color: hsla(210,4%,10%,.15);
- box-shadow: 0 1px 0 0 hsla(210,4%,10%,.05) inset;
-}
-
#UITourTooltipButtons > label,
#UITourTooltipButtons > button.button-link:not(:hover) {
-moz-appearance: none;
background: transparent;
border: none;
box-shadow: none;
- color: var(--panel-disabled-color);
+ color: #4A4A4A;
padding-inline: 10px;
}
-/* The primary button gets the same color as the customize button. */
#UITourTooltipButtons > button.button-primary {
- background-color: rgb(116,191,67);
+ background-color: #420C5D;
color: white;
- padding-inline: 30px;
+ padding-inline: 28px;
}
#UITourTooltipButtons > button.button-primary:not(:active):hover {
- background-color: rgb(105,173,61);
+ background-color: #410A4E;
}
diff --git a/intl/strres/nsStringBundle.cpp b/intl/strres/nsStringBundle.cpp
index 7116cb6c3209..0fff98149510 100644
--- a/intl/strres/nsStringBundle.cpp
+++ b/intl/strres/nsStringBundle.cpp
@@ -76,6 +76,7 @@ static const char kContentBundles[][52] = {
"chrome://global/locale/svg/svg.properties",
"chrome://global/locale/xul.properties",
"chrome://necko/locale/necko.properties",
+ "chrome://torbutton/locale/onboarding.properties",
};
static bool IsContentBundle(const nsCString& aUrl) {
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 2176: Rebrand Firefox to TorBrowser
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 1d73f90a0d71915e3e5b78cb6aedb2f7c5a0a246
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Tue Sep 10 16:21:47 2013 -0700
Bug 2176: Rebrand Firefox to TorBrowser
See also Bugs #5194, #7187, #8115, #8219.
This patch does some basic renaming of Firefox to TorBrowser. The rest of the
branding is done by images and icons.
Also fix bug 27905.
Bug 25702: Update Tor Browser icon to follow design guidelines
- Updated all of the branding in /browser/branding/official with new 'stable'
icon series.
- Updated /extensions/onboarding/content/img/tor-watermark.png with new icon and
add the source svg in the same directory
- Copied /browser/branding/official over /browser/branding/nightly and the new
/browser/branding/alpha directories. Replaced content with 'nightly' and
'alpha' icon series.
Updated VisualElements_70.png and VisualElements_150.png with updated icons in
each branding directory (fixes #22654)
- Updated firefox.VisualElementsManfiest.xml with updated colors in each
branding directory
- Updated content/identity-icons-brand.svg with Tor Browser icon (fixes #28111)
- Added firefox.svg to each branding directory from which all the other icons
are derived (apart from document.icns and document.ico)
- Added default256.png and default512.png icons
- Updated aboutTBUpdate.css to point to branding-aware icon128.png and removed
original icon
- Use the Tor Browser icon within devtools/client/themes/images/.
Bug 30631: Blurry Tor Browser icon on macOS app switcher
It would seem the png2icns tool does not generate correct icns files and
so on macOS the larger icons were missing resulting in blurry icons in
the OS chrome. Regenerated the padded icons in a macOS VM using
iconutil.
Bug 28196: preparations for using torbutton tor-browser-brand.ftl
A small change to Fluent FileSource class is required so that we
can register a new source without its supported locales being
counted as available locales for the browser.
Bug 31803: Replaced about:debugging logo with flat version
---
browser/branding/alpha/VisualElements_150.png | Bin 0 -> 8412 bytes
browser/branding/alpha/VisualElements_70.png | Bin 0 -> 3496 bytes
browser/branding/alpha/background.png | Bin 0 -> 33362 bytes
browser/branding/alpha/bgstub.jpg | Bin 0 -> 12506 bytes
browser/branding/alpha/bgstub_2x.jpg | Bin 0 -> 49771 bytes
browser/branding/alpha/branding.nsi | 64 +++++++++++++++++++++
browser/branding/alpha/configure.sh | 5 ++
browser/branding/alpha/content/about-logo.png | Bin 0 -> 21173 bytes
browser/branding/alpha/content/about-logo(a)2x.png | Bin 0 -> 51309 bytes
browser/branding/alpha/content/about-wordmark.svg | 36 ++++++++++++
browser/branding/alpha/content/about.png | Bin 0 -> 18520 bytes
browser/branding/alpha/content/aboutDialog.css | 49 ++++++++++++++++
browser/branding/alpha/content/aboutlogins.svg | 59 +++++++++++++++++++
.../branding/alpha/content/firefox-wordmark.svg | 1 +
.../branding/alpha/content/horizontal-lockup.svg | 5 ++
.../alpha/content/identity-icons-brand.svg | 25 ++++++++
browser/branding/alpha/content/jar.mn | 22 +++++++
browser/branding/alpha/content/moz.build | 7 +++
browser/branding/alpha/default128.png | Bin 0 -> 9397 bytes
browser/branding/alpha/default16.png | Bin 0 -> 811 bytes
browser/branding/alpha/default22.png | Bin 0 -> 1240 bytes
browser/branding/alpha/default24.png | Bin 0 -> 1368 bytes
browser/branding/alpha/default256.png | Bin 0 -> 20481 bytes
browser/branding/alpha/default32.png | Bin 0 -> 1956 bytes
browser/branding/alpha/default48.png | Bin 0 -> 3067 bytes
browser/branding/alpha/default512.png | Bin 0 -> 44907 bytes
browser/branding/alpha/default64.png | Bin 0 -> 4318 bytes
browser/branding/alpha/disk.icns | Bin 0 -> 1548786 bytes
browser/branding/alpha/document.icns | Bin 0 -> 564054 bytes
browser/branding/alpha/document.ico | Bin 0 -> 119671 bytes
browser/branding/alpha/dsstore | Bin 0 -> 14340 bytes
.../alpha/firefox.VisualElementsManifest.xml | 12 ++++
browser/branding/alpha/firefox.icns | Bin 0 -> 291096 bytes
browser/branding/alpha/firefox.ico | Bin 0 -> 119941 bytes
browser/branding/alpha/firefox.svg | 25 ++++++++
browser/branding/alpha/firefox64.ico | Bin 0 -> 119941 bytes
browser/branding/alpha/locales/en-US/brand.dtd | 11 ++++
browser/branding/alpha/locales/en-US/brand.ftl | 22 +++++++
.../branding/alpha/locales/en-US/brand.properties | 14 +++++
browser/branding/alpha/locales/jar.mn | 12 ++++
browser/branding/alpha/locales/moz.build | 7 +++
browser/branding/alpha/moz.build | 13 +++++
browser/branding/alpha/newtab.ico | Bin 0 -> 6518 bytes
browser/branding/alpha/newwindow.ico | Bin 0 -> 6518 bytes
browser/branding/alpha/pbmode.ico | Bin 0 -> 6518 bytes
browser/branding/alpha/pref/firefox-branding.js | 34 +++++++++++
browser/branding/alpha/stubinstaller/bgstub.jpg | Bin 0 -> 53597 bytes
.../alpha/stubinstaller/installing_page.css | 61 ++++++++++++++++++++
.../alpha/stubinstaller/profile_cleanup_page.css | 42 ++++++++++++++
browser/branding/alpha/wizHeader.bmp | Bin 0 -> 34254 bytes
browser/branding/alpha/wizHeaderRTL.bmp | Bin 0 -> 34254 bytes
browser/branding/alpha/wizWatermark.bmp | Bin 0 -> 206038 bytes
browser/branding/branding-common.mozbuild | 2 +
browser/branding/nightly/VisualElements_150.png | Bin 25470 -> 11666 bytes
browser/branding/nightly/VisualElements_70.png | Bin 9590 -> 4273 bytes
browser/branding/nightly/configure.sh | 3 +-
.../nightly/content/identity-icons-brand.svg | 32 ++++++++++-
browser/branding/nightly/content/jar.mn | 2 +
browser/branding/nightly/default128.png | Bin 12392 -> 13686 bytes
browser/branding/nightly/default16.png | Bin 756 -> 891 bytes
browser/branding/nightly/default22.png | Bin 1146 -> 1377 bytes
browser/branding/nightly/default24.png | Bin 1281 -> 1509 bytes
browser/branding/nightly/default256.png | Bin 30546 -> 33587 bytes
browser/branding/nightly/default32.png | Bin 1910 -> 2254 bytes
browser/branding/nightly/default48.png | Bin 3606 -> 3789 bytes
browser/branding/nightly/default512.png | Bin 0 -> 87830 bytes
browser/branding/nightly/default64.png | Bin 4826 -> 5426 bytes
browser/branding/nightly/document.icns | Bin 517716 -> 689723 bytes
browser/branding/nightly/document.ico | Bin 47042 -> 124422 bytes
.../nightly/firefox.VisualElementsManifest.xml | 2 +-
browser/branding/nightly/firefox.icns | Bin 1014680 -> 642308 bytes
browser/branding/nightly/firefox.ico | Bin 66730 -> 131711 bytes
browser/branding/nightly/firefox.svg | 29 ++++++++++
browser/branding/nightly/firefox64.ico | Bin 38630 -> 131711 bytes
browser/branding/nightly/locales/en-US/brand.dtd | 8 +--
browser/branding/nightly/locales/en-US/brand.ftl | 2 +-
.../nightly/locales/en-US/brand.properties | 10 ++--
browser/branding/nightly/locales/jar.mn | 7 +--
browser/branding/nightly/locales/moz.build | 2 -
browser/branding/nightly/wizHeader.bmp | Bin 25820 -> 34254 bytes
browser/branding/nightly/wizHeaderRTL.bmp | Bin 25820 -> 34254 bytes
browser/branding/nightly/wizWatermark.bmp | Bin 154544 -> 206038 bytes
browser/branding/official/VisualElements_150.png | Bin 23037 -> 7949 bytes
browser/branding/official/VisualElements_70.png | Bin 8763 -> 3374 bytes
browser/branding/official/configure.sh | 2 +-
.../official/content/identity-icons-brand.svg | 34 ++++++++++-
browser/branding/official/content/jar.mn | 2 +
browser/branding/official/default128.png | Bin 13513 -> 9007 bytes
browser/branding/official/default16.png | Bin 722 -> 839 bytes
browser/branding/official/default22.png | Bin 1134 -> 1250 bytes
browser/branding/official/default24.png | Bin 1312 -> 1405 bytes
browser/branding/official/default256.png | Bin 32441 -> 19136 bytes
browser/branding/official/default32.png | Bin 1948 -> 1965 bytes
browser/branding/official/default48.png | Bin 3448 -> 3074 bytes
browser/branding/official/default512.png | Bin 0 -> 40438 bytes
browser/branding/official/default64.png | Bin 5459 -> 4196 bytes
browser/branding/official/disk.icns | Bin 1525764 -> 172073 bytes
browser/branding/official/document.icns | Bin 501145 -> 509227 bytes
browser/branding/official/document.ico | Bin 45478 -> 119916 bytes
.../official/firefox.VisualElementsManifest.xml | 2 +-
browser/branding/official/firefox.icns | Bin 1021785 -> 259709 bytes
browser/branding/official/firefox.ico | Bin 68328 -> 118595 bytes
browser/branding/official/firefox.svg | 31 ++++++++++
browser/branding/official/firefox64.ico | Bin 38630 -> 118595 bytes
browser/branding/official/locales/en-US/brand.dtd | 8 +--
.../official/locales/en-US/brand.properties | 10 ++--
browser/branding/official/wizHeader.bmp | Bin 25820 -> 34254 bytes
browser/branding/official/wizHeaderRTL.bmp | Bin 25820 -> 34254 bytes
browser/branding/official/wizWatermark.bmp | Bin 154544 -> 206038 bytes
.../newtab/data/content/activity-stream.bundle.js | 2 +-
.../onboarding/content/img/tor-watermark.png | Bin 0 -> 3064 bytes
.../shared/identity-block/identity-block.inc.css | 10 ++++
config/version.mk | 2 +-
.../images/aboutdebugging-firefox-aurora.svg | 35 +++++++++--
.../themes/images/aboutdebugging-firefox-beta.svg | 35 +++++++++--
.../themes/images/aboutdebugging-firefox-logo.svg | 11 ++--
.../images/aboutdebugging-firefox-nightly.svg | 35 +++++++++--
.../images/aboutdebugging-firefox-release.svg | 35 +++++++++--
intl/l10n/L10nRegistry.jsm | 19 +++++-
119 files changed, 836 insertions(+), 62 deletions(-)
diff --git a/browser/branding/alpha/VisualElements_150.png b/browser/branding/alpha/VisualElements_150.png
new file mode 100644
index 000000000000..fbf4af94d813
Binary files /dev/null and b/browser/branding/alpha/VisualElements_150.png differ
diff --git a/browser/branding/alpha/VisualElements_70.png b/browser/branding/alpha/VisualElements_70.png
new file mode 100644
index 000000000000..1add6b0e77ff
Binary files /dev/null and b/browser/branding/alpha/VisualElements_70.png differ
diff --git a/browser/branding/alpha/background.png b/browser/branding/alpha/background.png
new file mode 100644
index 000000000000..0a7e3088f4f0
Binary files /dev/null and b/browser/branding/alpha/background.png differ
diff --git a/browser/branding/alpha/bgstub.jpg b/browser/branding/alpha/bgstub.jpg
new file mode 100644
index 000000000000..3b78c9498c93
Binary files /dev/null and b/browser/branding/alpha/bgstub.jpg differ
diff --git a/browser/branding/alpha/bgstub_2x.jpg b/browser/branding/alpha/bgstub_2x.jpg
new file mode 100644
index 000000000000..c724d1803c26
Binary files /dev/null and b/browser/branding/alpha/bgstub_2x.jpg differ
diff --git a/browser/branding/alpha/branding.nsi b/browser/branding/alpha/branding.nsi
new file mode 100644
index 000000000000..b37853b77643
--- /dev/null
+++ b/browser/branding/alpha/branding.nsi
@@ -0,0 +1,64 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+# NSIS branding defines for nightly builds.
+# The official release build branding.nsi is located in other-license/branding/firefox/
+# The unofficial build branding.nsi is located in browser/branding/unofficial/
+
+# BrandFullNameInternal is used for some registry and file system values
+# instead of BrandFullName and typically should not be modified.
+!define BrandFullNameInternal "Nightly"
+!define BrandFullName "Firefox Nightly"
+!define CompanyName "mozilla.org"
+!define URLInfoAbout "https://www.mozilla.org"
+!define HelpLink "https://support.mozilla.org"
+
+!define URLStubDownloadX86 "https://download.mozilla.org/?os=win&lang=${AB_CD}&product=firefox-nightly-…"
+!define URLStubDownloadAMD64 "https://download.mozilla.org/?os=win64&lang=${AB_CD}&product=firefox-nightl…"
+!define URLStubDownloadAArch64 "https://download.mozilla.org/?os=win64-aarch64&lang=${AB_CD}&product=firefo…"
+!define URLManualDownload "https://www.mozilla.org/${AB_CD}/firefox/installer-help/?channel=nightly&in…"
+!define URLSystemRequirements "https://www.mozilla.org/firefox/system-requirements/"
+!define Channel "nightly"
+
+# The installer's certificate name and issuer expected by the stub installer
+!define CertNameDownload "Mozilla Corporation"
+!define CertIssuerDownload "DigiCert SHA2 Assured ID Code Signing CA"
+
+# Dialog units are used so the UI displays correctly with the system's DPI
+# settings.
+!define PROFILE_CLEANUP_LABEL_TOP "35u"
+!define PROFILE_CLEANUP_LABEL_LEFT "0"
+!define PROFILE_CLEANUP_LABEL_WIDTH "100%"
+!define PROFILE_CLEANUP_LABEL_HEIGHT "80u"
+!define PROFILE_CLEANUP_LABEL_ALIGN "center"
+!define PROFILE_CLEANUP_CHECKBOX_LEFT "center"
+!define PROFILE_CLEANUP_CHECKBOX_WIDTH "100%"
+!define PROFILE_CLEANUP_BUTTON_LEFT "center"
+!define INSTALL_BLURB_TOP "137u"
+!define INSTALL_BLURB_WIDTH "60u"
+!define INSTALL_FOOTER_TOP "-48u"
+!define INSTALL_FOOTER_WIDTH "250u"
+!define INSTALL_INSTALLING_TOP "70u"
+!define INSTALL_INSTALLING_LEFT "0"
+!define INSTALL_INSTALLING_WIDTH "100%"
+!define INSTALL_PROGRESS_BAR_TOP "112u"
+!define INSTALL_PROGRESS_BAR_LEFT "20%"
+!define INSTALL_PROGRESS_BAR_WIDTH "60%"
+!define INSTALL_PROGRESS_BAR_HEIGHT "12u"
+
+!define PROFILE_CLEANUP_CHECKBOX_TOP_MARGIN "20u"
+!define PROFILE_CLEANUP_BUTTON_TOP_MARGIN "20u"
+!define PROFILE_CLEANUP_BUTTON_X_PADDING "40u"
+!define PROFILE_CLEANUP_BUTTON_Y_PADDING "4u"
+
+# Font settings that can be customized for each channel
+!define INSTALL_HEADER_FONT_SIZE 28
+!define INSTALL_HEADER_FONT_WEIGHT 400
+!define INSTALL_INSTALLING_FONT_SIZE 28
+!define INSTALL_INSTALLING_FONT_WEIGHT 400
+
+# UI Colors that can be customized for each channel
+!define COMMON_TEXT_COLOR 0xFFFFFF
+!define COMMON_BACKGROUND_COLOR 0x000000
+!define INSTALL_INSTALLING_TEXT_COLOR 0xFFFFFF
diff --git a/browser/branding/alpha/configure.sh b/browser/branding/alpha/configure.sh
new file mode 100644
index 000000000000..243091484f75
--- /dev/null
+++ b/browser/branding/alpha/configure.sh
@@ -0,0 +1,5 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+MOZ_APP_DISPLAYNAME="Tor Browser"
diff --git a/browser/branding/alpha/content/about-logo.png b/browser/branding/alpha/content/about-logo.png
new file mode 100644
index 000000000000..7d705be61dfd
Binary files /dev/null and b/browser/branding/alpha/content/about-logo.png differ
diff --git a/browser/branding/alpha/content/about-logo(a)2x.png b/browser/branding/alpha/content/about-logo(a)2x.png
new file mode 100644
index 000000000000..193c856f3e8c
Binary files /dev/null and b/browser/branding/alpha/content/about-logo(a)2x.png differ
diff --git a/browser/branding/alpha/content/about-wordmark.svg b/browser/branding/alpha/content/about-wordmark.svg
new file mode 100644
index 000000000000..6f71130b417d
--- /dev/null
+++ b/browser/branding/alpha/content/about-wordmark.svg
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+<svg xmlns="http://www.w3.org/2000/svg" width="270px" height="48px" viewBox="0 0 270 48">
+ <path fill="#fff" d="M75.5,11.8V7.9c0-2.2,1.2-3.5,3.1-3.5c1,0,1.8,0.3,3,0.9l1.8-3.5c-1.7-1-3.5-1.4-5.7-1.4
+ C73.2,0.3,70,2.8,70,8c0,2.3,0.2,3.7,0.2,3.7h-2.5v3.8H70V37h5.4V15.6h5.1l1.4-3.8H75.5z M92.3,11.2c-6.7,0-11,5.2-11,13.3
+ c0,8.1,4.3,13.2,11.1,13.2c6.8,0,11.2-5,11.2-13.2C103.6,16.5,99.5,11.2,92.3,11.2z M92.5,33.6c-3.3,0-5.1-2.1-5.1-9.5
+ c0-6.1,1.5-8.8,5-8.8c3.2,0,5.2,2.1,5.2,9.3C97.6,30.9,95.8,33.6,92.5,33.6z M43.7,11.1c-2.5,0-4.4,1.3-6.4,4c0-1.4-0.3-2.8-0.9-4
+ l-5,1.3c0.6,1.6,0.9,3.6,0.9,6.8V37h5.5V19.9c0.5-2,2.4-3.7,4.7-3.7c0.6,0,1,0.1,1.6,0.4l1.7-5.1C45,11.2,44.5,11.1,43.7,11.1z
+ M0,37h5.7V21.2h9.6v-4.6H5.7V7.2h11.8l0.7-4.7H0V37z M21.4,37h5.5V11.2l-5.5,1V37z M24.2,0.7c-2,0-3.6,1.6-3.6,3.7
+ c0,2,1.5,3.6,3.5,3.6c2,0,3.7-1.6,3.7-3.6C27.8,2.3,26.2,0.7,24.2,0.7z M125.2,11.8h-6.4c-0.7,1.1-3.3,6.1-4,7.7
+ c-1.2-2.3-3.4-6.3-4.6-8.2l-5.9,1.2l7.3,10.8L102.2,37h6.9c0.9-1.4,4.5-7.5,5.5-9.4c0.5,0.9,4.6,8,5.5,9.4h6.9l-9.2-13.8L125.2,11.8
+ z M62.7,13.8c-2.1-1.9-4.4-2.6-6.9-2.6c-3.2,0-5.7,1-7.7,3.4C45.9,17.1,45,20,45,24.5c0,8.1,4.5,13.2,11.6,13.2
+ c3.4,0,6.4-1.1,9.1-3.3L63.4,31c-1.9,1.6-3.9,2.5-6.3,2.5c-4.9,0-6.2-3.7-6.2-7.2v-0.4H66v-1.2C66,18.9,64.9,15.8,62.7,13.8z
+ M51,21.8c0-4.1,1.7-6.5,4.8-6.5c2.8,0,4.5,2.4,4.5,6.5H51z M198.5,14.3l-2.4-2.4c-1.2,0.8-2.2,1.1-3.5,1.1c-3,0-3.8-1.4-7.6-1.4
+ c-5.4,0-9.2,3.4-9.2,8.4c0,3.3,2.2,6.1,5.6,7.2c-3.4,1-4.5,2.2-4.5,4.3c0,2.2,1.8,3.6,4.7,3.6h3.8c2.5,0,3.9,0.2,4.9,0.9
+ c0.9,0.6,1.4,1.6,1.4,3c0,3.1-2.2,4.4-6,4.4c-2,0-3.8-0.5-5.1-1.2c-0.9-0.6-1.5-1.6-1.5-2.9c0-0.8,0.3-1.7,0.7-2.2l-4.1,0.4
+ c-0.3,1-0.5,1.7-0.5,2.6c0,3.5,3,6.4,10.8,6.4c6.1,0,9.9-2.5,9.9-7.9c0-2.1-0.8-3.9-2.7-5.3c-1.5-1.1-3.1-1.4-6-1.4h-4
+ c-1.3,0-2-0.5-2-1.2c0-0.8,1.1-1.7,4.5-2.9c1.8,0,3.4-0.3,4.7-1.1c2.3-1.4,3.7-4.1,3.7-6.8c0-1.6-0.5-3-1.5-4.3
+ c0.4,0.2,1.1,0.3,1.7,0.3C195.8,15.8,196.9,15.4,198.5,14.3z M185,24.8c-3.1,0-4.8-1.7-4.8-4.8c0-3.5,1.6-5.1,4.7-5.1
+ c3.3,0,4.6,1.5,4.6,4.9C189.5,23.1,188,24.8,185,24.8z M168.6,1.3c-1.7,0-3,1.4-3,3.1c0,1.7,1.4,3,3,3c1.7,0,3.1-1.3,3.1-3
+ C171.6,2.7,170.3,1.3,168.6,1.3z M245.7,34.5c-1.1,0-1.4-0.6-1.4-2.5V6.5c0-3.8-0.6-5.9-0.6-5.9l-3.9,0.8c0,0,0.6,1.9,0.6,5.1v26.4
+ c0,1.8,0.4,2.8,1.2,3.5c0.7,0.7,1.7,1,2.9,1c1,0,1.5-0.1,2.5-0.5l-0.8-2.5C246.2,34.4,245.8,34.5,245.7,34.5z M212.7,11.6
+ c-3.2,0-6.1,1.8-8.3,3.9c0,0,0.2-1.8,0.2-3.4V6.3c0-3.8-0.7-5.9-0.7-5.9L200,1.1c0,0,0.7,1.9,0.7,5.1V37h3.9V19.3
+ c2.1-2.7,4.9-4.2,7.2-4.2c1.3,0,2.3,0.4,2.9,1c0.7,0.7,0.9,1.8,0.9,3.7V37h3.8V19.1c0-1.8-0.1-2.6-0.4-3.6
+ C218.4,13.2,215.7,11.6,212.7,11.6z M265.4,12.1l-4.9,16.4c-0.6,2-1.6,5.2-1.6,5.2s-0.7-3.9-1.5-6.2l-5.1-16.2l-3.9,1.3l5.4,15.6
+ c0.8,2.5,2.2,7.4,2.5,9l1.6-0.3c-1.3,5.1-2.5,6.7-5.7,7.6l1.2,2.7c4.4-1,6.4-4.3,8-9.3l8.6-25.8H265.4z M234.9,15l1.2-2.9h-6.2
+ c0-3.3,0.5-7.2,0.5-7.2l-4.1,0.9c0,0-0.4,3.9-0.4,6.3h-3.2V15h3.2v17.1c0,2.5,0.7,4.1,2.4,5c0.9,0.4,1.9,0.7,3.3,0.7
+ c1.8,0,3.1-0.4,4.4-1l-0.6-2.5c-0.7,0.3-1.3,0.5-2.4,0.5c-2.4,0-3.2-0.9-3.2-3.7V15H234.9z M166.5,37h4.1V11.5l-4.1,0.6V37z
+ M156.8,21.3c0,5,0.4,10.5,0.4,10.5s-1.4-3.8-3.2-7.2L142.7,2.7h-4.8V37h4.2l-0.2-19.9c0-4.5-0.4-9.3-0.4-9.3s1.7,4.1,3.9,8.2l11,21
+ h4.3V2.7h-4L156.8,21.3z M128.3,12.9c-0.3-0.1-0.7-0.1-1-0.1v2.3h0.3v-1c0.3,0,0.7,1,0.7,1s0.2,0,0.4,0c-0.2-0.3-0.3-0.7-0.6-1
+ C128.8,14.1,128.9,13.1,128.3,12.9z M127.6,13.8v-0.7c0,0,0.7,0,0.7,0.3C128.3,13.9,127.8,13.9,127.6,13.8z M128,12
+ c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S129.1,12,128,12z M128,15.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5
+ S128.8,15.5,128,15.5z"/>
+</svg>
diff --git a/browser/branding/alpha/content/about.png b/browser/branding/alpha/content/about.png
new file mode 100644
index 000000000000..3b93625ddd70
Binary files /dev/null and b/browser/branding/alpha/content/about.png differ
diff --git a/browser/branding/alpha/content/aboutDialog.css b/browser/branding/alpha/content/aboutDialog.css
new file mode 100644
index 000000000000..293b5f493f3f
--- /dev/null
+++ b/browser/branding/alpha/content/aboutDialog.css
@@ -0,0 +1,49 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#aboutDialogContainer {
+ background-color: #20123a;
+ color: #fff;
+}
+
+#clientBox {
+ padding: 10px 0 15px;
+}
+
+#leftBox {
+ background-image: url("chrome://branding/content/about-logo.png");
+ background-repeat: no-repeat;
+ background-size: 192px auto;
+ background-position: center 20%;
+ /* min-width and min-height create room for the logo */
+ min-width: 210px;
+ min-height: 210px;
+ margin-top: 20px;
+ margin-inline-start: 30px;
+}
+
+@media (min-resolution: 2dppx) {
+ #leftBox {
+ background-image: url("chrome://branding/content/about-logo@2x.png");
+ }
+}
+
+.text-link {
+ color: #fff !important;
+ text-decoration: underline;
+}
+
+.text-link:-moz-focusring {
+ border-color: #fff;
+}
+
+#rightBox {
+ margin-inline: 30px;
+ padding-top: 64px;
+}
+
+#bottomBox {
+ background-color: hsla(235, 43%, 10%, .5);
+ padding: 15px 10px 15px;
+}
diff --git a/browser/branding/alpha/content/aboutlogins.svg b/browser/branding/alpha/content/aboutlogins.svg
new file mode 100644
index 000000000000..f4b6a3fc41b7
--- /dev/null
+++ b/browser/branding/alpha/content/aboutlogins.svg
@@ -0,0 +1,59 @@
+<svg xmlns="http://www.w3.org/2000/svg" height="80" width="460" viewBox="0 0 460 80">
+ <defs>
+ <linearGradient id="a" x1="57.63" y1="9.47" x2="21.37" y2="72.26" gradientUnits="userSpaceOnUse">
+ <stop offset="0" stop-color="#ff980e"/>
+ <stop offset=".11" stop-color="#ff851b"/>
+ <stop offset=".57" stop-color="#ff3750"/>
+ <stop offset=".8" stop-color="#f92261"/>
+ <stop offset="1" stop-color="#f5156c"/>
+ </linearGradient>
+ <linearGradient id="b" x1="57.31" y1="-.8" x2="27.68" y2="69.03" gradientUnits="userSpaceOnUse">
+ <stop offset="0" stop-color="#fff261" stop-opacity=".8"/>
+ <stop offset=".06" stop-color="#fff261" stop-opacity=".68"/>
+ <stop offset=".19" stop-color="#fff261" stop-opacity=".48"/>
+ <stop offset=".31" stop-color="#fff261" stop-opacity=".31"/>
+ <stop offset=".42" stop-color="#fff261" stop-opacity=".17"/>
+ <stop offset=".53" stop-color="#fff261" stop-opacity=".08"/>
+ <stop offset=".63" stop-color="#fff261" stop-opacity=".02"/>
+ <stop offset=".72" stop-color="#fff261" stop-opacity="0"/>
+ </linearGradient>
+ <linearGradient id="c" x1="71.71" y1="75.85" x2="71.71" y2="28.29" gradientUnits="userSpaceOnUse">
+ <stop offset="0" stop-color="#0090ed"/>
+ <stop offset=".5" stop-color="#9059ff"/>
+ <stop offset=".81" stop-color="#b833e1"/>
+ </linearGradient>
+ <linearGradient id="d" x1="17.89" y1="78.48" x2="48.5" y2="26.39" gradientUnits="userSpaceOnUse">
+ <stop offset=".02" stop-color="#0090ed"/>
+ <stop offset=".49" stop-color="#9059ff"/>
+ <stop offset="1" stop-color="#b833e1"/>
+ </linearGradient>
+ <linearGradient id="e" x1="21.87" y1="58.41" x2="4.02" y2="40.56" gradientUnits="userSpaceOnUse">
+ <stop offset=".14" stop-color="#592acb" stop-opacity="0"/>
+ <stop offset=".33" stop-color="#542bc8" stop-opacity=".03"/>
+ <stop offset=".53" stop-color="#462fbf" stop-opacity=".11"/>
+ <stop offset=".74" stop-color="#2f35b1" stop-opacity=".25"/>
+ <stop offset=".95" stop-color="#0f3d9c" stop-opacity=".44"/>
+ <stop offset="1" stop-color="#054096" stop-opacity=".5"/>
+ </linearGradient>
+ <linearGradient id="f" x1="75.86" y1="38.71" x2="66.87" y2="54.27" gradientUnits="userSpaceOnUse">
+ <stop offset="0" stop-color="#722291" stop-opacity=".5"/>
+ <stop offset=".5" stop-color="#b833e1" stop-opacity="0"/>
+ </linearGradient>
+ <linearGradient id="g" x1="56.84" y1="60.96" x2="46.4" y2="72.73" gradientUnits="userSpaceOnUse">
+ <stop offset="0" stop-color="#054096" stop-opacity=".5"/>
+ <stop offset=".03" stop-color="#0f3d9c" stop-opacity=".44"/>
+ <stop offset=".17" stop-color="#2f35b1" stop-opacity=".25"/>
+ <stop offset=".3" stop-color="#462fbf" stop-opacity=".11"/>
+ <stop offset=".43" stop-color="#542bc8" stop-opacity=".03"/>
+ <stop offset=".56" stop-color="#592acb" stop-opacity="0"/>
+ </linearGradient>
+ </defs>
+ <path d="M76.46 30.15A312.48 312.48 0 0 0 49.84 3.53a15.47 15.47 0 0 0-19.69 0A312.48 312.48 0 0 0 3.53 30.16a15.47 15.47 0 0 0 0 19.69 312.48 312.48 0 0 0 26.63 26.62A14.87 14.87 0 0 0 40 80a14.93 14.93 0 0 0 9.88-3.56c4.9-4.42 9.37-8.69 13.68-13.07a4.45 4.45 0 0 0-.34-6.11L50 44.93a15.18 15.18 0 0 0 5.08-12 15.4 15.4 0 0 0-14.4-14.64 15.2 15.2 0 0 0-11.36 4.16 15.28 15.28 0 0 0 .3 22.48l-4.78 4.33A3.86 3.86 0 0 0 30 55l5.29-4.8.14-.13a7.24 7.24 0 0 0 2.11-5.43A7.34 7.34 0 0 0 35 39.35a7.58 7.58 0 1 1 9.77 0 7.39 7.39 0 0 0-2.62 5.32 7.25 7.25 0 0 0 2.11 5.4l.09.09 11.1 10.4c-3.4 3.37-6.94 6.71-10.71 10.13a7.89 7.89 0 0 1-9.46 0 307.34 307.34 0 0 1-26-26 7.91 7.91 0 0 1 0-9.46 304.52 304.52 0 0 1 26-26 7.89 7.89 0 0 1 9.45 0 304.52 304.52 0 0 1 26 26 7.89 7.89 0 0 1 0 9.45c-1.33 1.5-2.66 3-4 4.37a3.85 3.85 0 1 0 5.67 5.22c1.32-1.43 2.68-2.93 4-4.47a15.47 15.47 0 0 0 .06-19.65z" fill="url(#a)"/>
+ <path d="M76.46 30.15A312.48 312.48 0 0 0 49.84 3.53a15.47 15.47 0 0 0-19.69 0A312.48 312.48 0 0 0 3.53 30.16a15.47 15.47 0 0 0 0 19.69 312.48 312.48 0 0 0 26.63 26.62A14.87 14.87 0 0 0 40 80a14.93 14.93 0 0 0 9.88-3.56c4.9-4.42 9.37-8.69 13.68-13.07a4.45 4.45 0 0 0-.34-6.11L50 44.93a15.18 15.18 0 0 0 5.08-12 15.4 15.4 0 0 0-14.4-14.64 15.2 15.2 0 0 0-11.36 4.16 15.28 15.28 0 0 0 .3 22.48l-4.78 4.33A3.86 3.86 0 0 0 30 55l5.29-4.8.14-.13a7.24 7.24 0 0 0 2.11-5.43A7.34 7.34 0 0 0 35 39.35a7.58 7.58 0 1 1 9.77 0 7.39 7.39 0 0 0-2.62 5.32 7.25 7.25 0 0 0 2.11 5.4l.09.09 11.1 10.4c-3.4 3.37-6.94 6.71-10.71 10.13a7.89 7.89 0 0 1-9.46 0 307.34 307.34 0 0 1-26-26 7.91 7.91 0 0 1 0-9.46 304.52 304.52 0 0 1 26-26 7.89 7.89 0 0 1 9.45 0 304.52 304.52 0 0 1 26 26 7.89 7.89 0 0 1 0 9.45c-1.33 1.5-2.66 3-4 4.37a3.85 3.85 0 1 0 5.67 5.22c1.32-1.43 2.68-2.93 4-4.47a15.47 15.47 0 0 0 .06-19.65z" fill="url(#b)"/>
+ <path d="M70.69 35.27a7.89 7.89 0 0 1 0 9.45c-1.33 1.5-2.66 3-4 4.37a3.85 3.85 0 1 0 5.67 5.22c1.32-1.43 2.68-2.93 4-4.47 4.82-5.33-5.67-14.57-5.67-14.57z" fill="url(#c)"/>
+ <path d="M55.45 60.56c-3.4 3.37-6.94 6.71-10.71 10.13a7.89 7.89 0 0 1-9.46 0 307.34 307.34 0 0 1-26-26 7.91 7.91 0 0 1 0-9.46l-1.75 2a12.89 12.89 0 0 0 .21 17.27 309.82 309.82 0 0 0 22.42 21.97A14.87 14.87 0 0 0 40 80a14.93 14.93 0 0 0 9.88-3.56c2.79-2.52 5.89-5.43 8.67-8.11a3.37 3.37 0 0 0 0-4.86z" fill="url(#d)"/>
+ <path d="M7.78 54.53c2.92 3.17 5.83 6.2 8.81 9.16l1.19-1.94c1-1.59 2-3.15 3.07-4.71-3.85-3.91-7.66-7.95-11.54-12.3a7.91 7.91 0 0 1 0-9.46l-1.75 2a12.89 12.89 0 0 0 .18 17.22z" fill="url(#e)" opacity=".9"/>
+ <path d="M70.69 35.27a7.89 7.89 0 0 1 0 9.45c-1.33 1.5-2.66 3-4 4.37a3.85 3.85 0 1 0 5.67 5.22c1.32-1.43 2.68-2.93 4-4.47 4.82-5.33-5.67-14.57-5.67-14.57z" fill="url(#f)"/>
+ <path d="M58.51 63.47l-3.06-2.91c-3.4 3.37-6.94 6.71-10.72 10.13a7.71 7.71 0 0 1-6.07 1.48v7.77c.44 0 .88.06 1.33.06a14.93 14.93 0 0 0 9.88-3.56c2.79-2.52 5.89-5.43 8.67-8.11a3.36 3.36 0 0 0-.03-4.86z" fill="url(#g)" opacity=".9"/>
+ <path d="M97 56.15h6.25v-13h14.44v-5.8h-14.48v-7.41h14.44v-5.89H97zm28.35-34.38a3.79 3.79 0 0 0-3.87 3.95 3.9 3.9 0 0 0 7.79 0 3.77 3.77 0 0 0-3.96-3.95zm-3.08 34.38h6.21V32.41h-6.21zm17-20.09v-3.65h-6v23.74h6V43.62c0-4 2-5.58 5.15-5.58a5.59 5.59 0 0 1 3.17.83l2.2-6a8.78 8.78 0 0 0-4-.92c-3 .05-5.38 1.29-6.52 4.11zm23.42-4.14a12.27 12.27 0 0 0-12.46 12.41c0 6.9 4.93 12.31 12.59 12.31a12.5 12.5 0 0 0 11-5.5l-5-2.9a6.5 6.5 0 0 1-5.9 3.17 6.61 6.61 0 0 1-6.83-5H175V44.1a11.84 11.84 0 0 0-12.31-12.18zm-6.43 9.72a6.61 6.61 0 0 1 6.43-4.57 6 6 0 0 1 6.25 4.57zm24.39-10.07v.84h-3.92v5.45h3.92v18.29h6V37.86h5.72v-5.45h-5.72v-1.15c0-3.6.49-4.22 4.71-4.22h1V21.5h-1.58c-7.71 0-10.13 2.38-10.13 10.07zm25.71.35A12.36 12.36 0 1 0 219 44.28a12.31 12.31 0 0 0-12.64-12.36zm0 19a6.64 6.64 0 1 1 6.52-6.64 6.53 6.53 0 0 1-6.48 6.6zM244 32.41h-7.13l-5 7-5-7h-7.22L228.06 44l-8.89 12.18h7.31l5.33-7.43 5.45 7.43h7.36L235.55 44zm18.89-8.36h-3.7v32.1h20.25v-3.56h-16.55zm31 7.87a12.36 12.36 0 1 0 12.37 12.3
6 12.2 12.2 0 0 0-12.38-12.36zm0 21.29a8.61 8.61 0 0 1-8.67-8.93 8.7 8.7 0 1 1 17.39 0 8.65 8.65 0 0 1-8.73 8.93zm28.35 0a8.88 8.88 0 0 1-8.89-9 8.77 8.77 0 0 1 8.76-9 8.4 8.4 0 0 1 8 5.28l3.3-1.45a12 12 0 0 0-11.23-7.22 12.36 12.36 0 1 0 .05 24.72 11.88 11.88 0 0 0 11.31-7.48l-3.34-1.41a8.5 8.5 0 0 1-7.97 5.6zm37.06-20.8h-4.53l-12.59 13.41V21.5h-3.57v34.65h3.57V50l5.06-5.36 8.27 11.56h4.36l-10-13.8zm30.16 18.69l-7.09-18.69H379l-7.26 18.82-6-18.82H362l7.79 23.74h3.52l7.31-18.82 7.31 18.82h3.25l8.24-23.74h-3.75zm16-28.85a2.86 2.86 0 1 0 2.86 2.86 2.79 2.79 0 0 0-2.88-2.86zm-1.81 33.9h3.66V32.41h-3.66zm19-13.72c-3.7-.74-6.56-1.23-6.56-3.69 0-2.2 1.5-3.78 5.15-3.78a7.65 7.65 0 0 1 6.51 3.16l3-2a11.52 11.52 0 0 0-9.51-4.22c-5.64 0-8.85 3.21-8.85 6.9 0 4.75 4.36 5.85 8.45 6.64 3.48.71 6.74 1.24 6.74 3.87 0 2.38-1.94 4.14-5.64 4.14a8.79 8.79 0 0 1-7.66-3.87l-3.12 2.11c2.11 3 5.5 5 10.7 5 6.2 0 9.37-3.65 9.37-7.39-.04-4.93-4.53-6.07-8.62-6.87zM459.76 44a11.72 11.72 0 0 0-12.1-12.1 12.2 12.
2 0 0 0-12.42 12.45c0 7 4.93 12.27 12.55 12.27a12.21 12.21 0 0 0 11-6l-3.08-1.8a8.5 8.5 0 0 1-8 4.57c-5 0-8.5-3.21-9-7.74h21zm-20.91-1.54a8.84 8.84 0 0 1 8.81-7.35 8 8 0 0 1 8.41 7.35z" fill="#20123a"/>
+</svg>
diff --git a/browser/branding/alpha/content/firefox-wordmark.svg b/browser/branding/alpha/content/firefox-wordmark.svg
new file mode 100644
index 000000000000..65270a3cd9a9
--- /dev/null
+++ b/browser/branding/alpha/content/firefox-wordmark.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="172" height="42"><path fill="context-fill #20123a" d="M.19 2.82h25.72v7H7.57v9.43h18.34v6.9H7.57v15.14H.19zM34.65.13a4.14 4.14 0 0 1 4.27 4.33 4.12 4.12 0 0 1-4.32 4.32 4.09 4.09 0 0 1-4.27-4.22A4.27 4.27 0 0 1 34.65.13zM31 12.83h7.27v28.46H31zm28.35 7.91a5.89 5.89 0 0 0-3.53-1.27c-3 0-4.64 1.9-4.64 6.06v15.76H44V12.83h6.9v4.11a6.79 6.79 0 0 1 6.8-4.37A8.69 8.69 0 0 1 62.53 14zm3 6.48c0-8.17 6.06-15 14.65-15s14.59 6.06 14.59 14.49v3H69.48c.79 3.58 3.58 6 7.85 6a7.62 7.62 0 0 0 7.06-4.21l6.06 3.63c-3 4.43-7.27 6.75-13.33 6.75-9.22-.01-14.75-6.18-14.75-14.66zM69.59 24h15c-.79-3.63-3.74-5.63-7.59-5.63A7.31 7.31 0 0 0 69.59 24zM93.4 12.83h5.11v-1.42c0-7.75 3.27-11 10.44-11h2.53v6.31h-2.06c-3.37 0-4.11 1.16-4.11 4.69v1.42h6.17v6.54h-6v21.92h-7V19.37H93.4zm19.45 14.23a14.56 14.56 0 0 1 14.85-14.81 14.81 14.81 0 1 1 0 29.62c-8.85 0-14.85-6.49-14.85-14.81zm22.65 0a7.8 7.8 0 1 0-15.59 0 7.8 7.8 0 1 0 15.59 0zm16.86-.32l-10.27-13.91h8.53l6.06 8.7
5 6.22-8.75h8.38l-10.43 13.86 11 14.6h-8.49L156.53 32l-6.59 9.28h-8.48z"/></svg>
\ No newline at end of file
diff --git a/browser/branding/alpha/content/horizontal-lockup.svg b/browser/branding/alpha/content/horizontal-lockup.svg
new file mode 100644
index 000000000000..ca00c08f449b
--- /dev/null
+++ b/browser/branding/alpha/content/horizontal-lockup.svg
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1646.4 381.8"><style>.st0{fill:#363959}</style><path class="st0" d="M996 168.9h-21.8L951 209.4l-23.1-40.5h-22.7l34.2 52.2-38.6 58.3h21.8l27.5-46.8 27.1 46.8h23.3l-38.4-59.2 33.9-51.3zM530 279.5h19.3V168.9H530v110.6zm63-87.3l-1.9-23.3h-16.5v110.5H594v-57c0-17.2 12.6-36.3 26.4-36.3 3.3 0 6.5.4 9.7 1.3l3.6-18.9c-3.6-.8-7.2-1.3-10.9-1.3-13.4 0-23.7 8.4-29.6 24.9l-.2.1zm-156.3 87.2h19.9v-63.6h47.2v-15.7h-47.2v-49.3h54.5l2.3-15.9h-76.8l.1 144.5zm102.8-151.6c-8 0-13.4 5.7-13.4 13.2 0 7.3 5.5 13 13.4 13 8.2 0 13.6-5.7 13.6-13 .1-7.5-5.4-13.2-13.6-13.2zm312.7 39.5c-31.5 0-49.5 22.8-49.5 57 0 35 17.8 57.7 49.3 57.7 31.3 0 49.3-23.7 49.3-57.9 0-35.1-17.6-56.9-49.1-56.8zm-.2 99.1c-18.5 0-28.5-13.4-28.5-42.2 0-28.9 10.3-41.5 28.7-41.5 18.2 0 28.3 12.6 28.3 41.3 0 29-10.1 42.4-28.5 42.4zm-78.2-105.2c0-10.7 4.2-18.6 16.4-18.6 6.7 0 13.2 1.5 19.3 4.2l6.1-14c-8.8-3.8-15.9-5.7-26.4-5.7-22.5 0-34.6 14.1-34.6 32.6v9.2h-19.7v14.8h19.7v95.
7h19.3v-95.7h24.8l2.1-14.9H774l-.2-7.6zm-92 6c-28.5 0-45.9 23.7-45.9 58.1 0 35 18 56.6 48.9 56.6 15.3 0 27.7-5.2 38.6-13.8l-8.4-11.5c-9.7 6.7-17.8 9.6-28.7 9.6-15.9 0-27.9-9.9-29.8-35.4H727c.2-2.5.4-6.1.4-9.9-.1-33.7-15.8-53.7-45.6-53.7zm26.5 49.3h-51.9c1.5-24.5 11.1-33.9 25.8-33.9 17.4 0 26 11.1 26 32.7l.1 1.2z"/><g id="Layer_1-2_1_"><g id="Layer_2-2_1_"><g id="Firefox"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-15667.935" y1="9459.303" x2="-15565.798" y2="9459.303" gradientTransform="matrix(.76 .03 .05 -1.12 11733.87 11198.95)"><stop offset="0" stop-color="#0083ff"/><stop offset=".1" stop-color="#0092f8"/><stop offset=".31" stop-color="#00abeb"/><stop offset=".52" stop-color="#00bee1"/><stop offset=".75" stop-color="#00c8dc"/><stop offset="1" stop-color="#00ccda"/></linearGradient><path d="M298.8 35.5c-9.3 10.8-13.6 35.2-4.2 59.9s23.9 19.3 32.9 44.5c11.9 33.2 6.4 77.8 6.4 77.8s14.3 41.4 24.2-2.6c22-82.5-59.3-159.2-59.3-179.6z" fill="url(#SVGID_1_)"/><radialG
radient id="_Path__2_" cx="-7705.698" cy="9049.584" r="306.995" gradientTransform="matrix(1.23 0 0 -1.22 9720.16 11130.11)" gradientUnits="userSpaceOnUse"><stop offset=".02" stop-color="#005fe7"/><stop offset=".18" stop-color="#0042b4"/><stop offset=".32" stop-color="#002989"/><stop offset=".4" stop-color="#002079"/><stop offset=".47" stop-color="#131d78"/><stop offset=".66" stop-color="#3b1676"/><stop offset=".75" stop-color="#4a1475"/></radialGradient><path id="_Path__1_" d="M185 377.5c95.2 0 172.2-77.5 172.2-173s-77.1-173-172.1-173S13 108.8 13 204.4c-.2 95.7 77 173.1 172 173.1z" fill="url(#_Path__2_)"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="208.796" y1="783.075" x2="134.518" y2="1026.051" gradientTransform="matrix(1 0 0 -1 1 1066)"><stop offset="0" stop-color="#000f43" stop-opacity=".4"/><stop offset=".48" stop-color="#001962" stop-opacity=".17"/><stop offset="1" stop-color="#002079" stop-opacity="0"/></linearGradient><path d="M314.5 311.8c-3.7 2.6-7.6 5
-11.7 7.1 5.4-7.9 10.3-16 14.9-24.4 3.7-4.1 7-8 9.8-12.3 1.3-2.1 2.8-4.7 4.4-7.7 9.7-17.4 20.3-45.6 20.6-74.6v-2.2c.1-7.3-.7-14.5-2.2-21.6.1.6.1 1.1.2 1.7-.1-.4-.2-.9-.2-1.3.1.8.3 1.6.4 2.3 2 16.8.6 33.1-6.5 45.2-.1.2-.2.3-.3.5 3.7-18.3 4.9-38.6.8-58.8 0 0-1.6-9.8-13.7-39.7-7-17.2-19.3-31.3-30.3-41.6-9.6-11.9-18.3-19.8-23.1-24.9-10-10.5-14.2-18.5-15.9-23.6-1.5-.7-20.6-19.3-22.1-20-8.3 12.9-34.6 53.4-22.1 91.2 5.7 17.1 20 34.9 34.9 44.9.7.8 8.9 9.7 12.8 29.9 4.1 20.9 1.9 37.2-6.4 61.3-9.8 21.1-34.9 42.1-58.5 44.2-50.3 4.6-68.7-25.3-68.7-25.3 18 7.2 37.9 5.7 49.9-1.8 12.2-7.5 19.6-13.1 25.5-10.9 5.9 2.2 10.6-4.2 6.4-10.8-6.7-10.2-18.8-15.5-30.8-13.4-12.2 2-23.4 11.6-39.3 2.3-1-.6-2-1.3-3-2-1.1-.7 3.4 1.1 2.4.3-3.1-1.7-8.6-5.4-10-6.7-.2-.2 2.4.8 2.2.6-14.9-12.3-13.1-20.6-12.6-25.8.4-4.2 3.1-9.5 7.7-11.7 2.2 1.2 3.6 2.1 3.6 2.1s-.9-1.9-1.5-2.9c.2-.1.3-.1.5-.1 1.8.9 5.8 3.1 7.9 4.5 2.7 1.9 3.6 3.7 3.6 3.7s.7-.4.2-2.1c-.2-.7-1-2.9-3.7-5.1h.2c1.6.9 3.2 2 4.6 3.2.8-2.8 2.1-5.7 1.8-10.9-.2-3
.7-.1-4.6-.7-6-.6-1.2.3-1.7 1.3-.4-.2-1-.5-2-.9-2.9v-.1c1.3-4.4 26.5-15.7 28.3-17 3-2.1 5.5-4.9 7.4-8.1 1.4-2.2 2.5-5.4 2.7-10.1.1-3.4-1.5-5.7-27-8.4-7-.7-11.1-5.7-13.4-10.4-.4-1-.9-1.9-1.3-2.8-.4-1.1-.7-2.2-1-3.3 4.2-12 11.2-22.1 21.5-29.8.6-.5-2.2.1-1.7-.4.7-.6 4.9-2.3 5.7-2.7 1-.5-4.2-2.7-8.8-2.1-4.7.5-5.7 1.1-8.2 2.1 1-1 4.3-2.4 3.6-2.4-5 .8-11.3 3.7-16.7 7 0-.6.1-1.2.3-1.7-2.5 1.1-8.6 5.4-10.4 9 .1-.7.1-1.4.1-2.1-1.9 1.6-3.6 3.4-5.1 5.4l-.1.1c-14.5-5.8-27.2-6.2-38-3.6-2.4-2.4-3.5-.6-8.9-12.4-.4-.7.3.7 0 0-.9-2.3.5 3.1 0 0-9 7.1-20.9 15.2-26.6 20.9-.1.2 6.7-1.9 0 0-2.3.7-2.2 2-2.5 14.5-.1.9 0 2-.1 2.9-4.6 5.8-7.7 10.7-8.8 13.3-5.9 10.2-12.4 26-18.7 51 2.8-6.8 6.1-13.3 10-19.5-5.2 13.3-10.3 34.2-11.3 66.3 1.3-6.6 2.9-13.2 4.9-19.7-1.2 26.7 3.4 53.3 13.5 78 3.6 8.9 9.6 22.3 19.8 37 32 33.7 77.2 54.7 127.2 54.7 52.1 0 99-22.8 131.2-59.1z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="209.796" y1="783.075" x2="135.518" y2="1026.051" gradient
Transform="matrix(1 0 0 -1 0 1066)"><stop offset="0" stop-color="#000f43" stop-opacity=".4"/><stop offset=".48" stop-color="#001962" stop-opacity=".17"/><stop offset="1" stop-color="#002079" stop-opacity="0"/></linearGradient><path d="M314.5 311.8c-3.7 2.6-7.6 5-11.7 7.1 5.4-7.9 10.3-16 14.9-24.4 3.7-4.1 7-8 9.8-12.3 1.3-2.1 2.8-4.7 4.4-7.7 9.7-17.4 20.3-45.6 20.6-74.6v-2.2c.1-7.3-.7-14.5-2.2-21.6.1.6.1 1.1.2 1.7-.1-.4-.2-.9-.2-1.3.1.8.3 1.6.4 2.3 2 16.8.6 33.1-6.5 45.2-.1.2-.2.3-.3.5 3.7-18.3 4.9-38.6.8-58.8 0 0-1.6-9.8-13.7-39.7-7-17.2-19.3-31.3-30.3-41.6-9.6-11.9-18.3-19.8-23.1-24.9-10-10.5-14.2-18.5-15.9-23.6-1.5-.7-20.6-19.3-22.1-20-8.3 12.9-34.6 53.4-22.1 91.2 5.7 17.1 20 34.9 34.9 44.9.7.8 8.9 9.7 12.8 29.9 4.1 20.9 1.9 37.2-6.4 61.3-9.8 21.1-34.9 42.1-58.5 44.2-50.3 4.6-68.7-25.3-68.7-25.3 18 7.2 37.9 5.7 49.9-1.8 12.2-7.5 19.6-13.1 25.5-10.9 5.9 2.2 10.6-4.2 6.4-10.8-6.7-10.2-18.8-15.5-30.8-13.4-12.2 2-23.4 11.6-39.3 2.3-1-.6-2-1.3-3-2-1.1-.7 3.4 1.1 2.4.3-3.1-1.7-8.6-5.4-1
0-6.7-.2-.2 2.4.8 2.2.6-14.9-12.3-13.1-20.6-12.6-25.8.4-4.2 3.1-9.5 7.7-11.7 2.2 1.2 3.6 2.1 3.6 2.1s-.9-1.9-1.5-2.9c.2-.1.3-.1.5-.1 1.8.9 5.8 3.1 7.9 4.5 2.7 1.9 3.6 3.7 3.6 3.7s.7-.4.2-2.1c-.2-.7-1-2.9-3.7-5.1h.2c1.6.9 3.2 2 4.6 3.2.8-2.8 2.1-5.7 1.8-10.9-.2-3.7-.1-4.6-.7-6-.6-1.2.3-1.7 1.3-.4-.2-1-.5-2-.9-2.9v-.1c1.3-4.4 26.5-15.7 28.3-17 3-2.1 5.5-4.9 7.4-8.1 1.4-2.2 2.5-5.4 2.7-10.1.1-3.4-1.5-5.7-27-8.4-7-.7-11.1-5.7-13.4-10.4-.4-1-.9-1.9-1.3-2.8-.4-1.1-.7-2.2-1-3.3 4.2-12 11.2-22.1 21.5-29.8.6-.5-2.2.1-1.7-.4.7-.6 4.9-2.3 5.7-2.7 1-.5-4.2-2.7-8.8-2.1-4.7.5-5.7 1.1-8.2 2.1 1-1 4.3-2.4 3.6-2.4-5 .8-11.3 3.7-16.7 7 0-.6.1-1.2.3-1.7-2.5 1.1-8.6 5.4-10.4 9 .1-.7.1-1.4.1-2.1-1.9 1.6-3.6 3.4-5.1 5.4l-.1.1c-14.5-5.8-27.2-6.2-38-3.6-2.4-2.4-3.5-.6-8.9-12.4-.4-.7.3.7 0 0-.9-2.3.5 3.1 0 0-9 7.1-20.9 15.2-26.6 20.9-.1.2 6.7-1.9 0 0-2.3.7-2.2 2-2.5 14.5-.1.9 0 2-.1 2.9-4.6 5.8-7.7 10.7-8.8 13.3-5.9 10.2-12.4 26-18.7 51 2.8-6.8 6.1-13.3 10-19.5-5.2 13.3-10.3 34.2-11.3 66.3 1.3-6.6 2.9-13.2
4.9-19.7-1.2 26.7 3.4 53.3 13.5 78 3.6 8.9 9.6 22.3 19.8 37 32 33.7 77.2 54.7 127.2 54.7 52.1 0 99-22.8 131.2-59.1z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-8672.42" y1="7683.359" x2="-8717.133" y2="7686.809" gradientTransform="matrix(1.22 .12 .12 -1.22 10013.36 10723.12)"><stop offset="0" stop-color="#812cc9"/><stop offset="1" stop-color="#005fe7"/></linearGradient><path d="M275.9 336.3c63.2-7.3 91.2-72.4 55.2-73.7-32.4-1.1-85.1 77.1-55.2 73.7z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-8704.525" y1="7740.822" x2="-8662.642" y2="7784.325" gradientTransform="matrix(1.22 .12 .12 -1.22 10013.36 10723.12)"><stop offset=".05" stop-color="#005fe7"/><stop offset=".18" stop-color="#065de6"/><stop offset=".35" stop-color="#1856e1"/><stop offset=".56" stop-color="#354adb"/><stop offset=".78" stop-color="#5d3ad1"/><stop offset=".95" stop-color="#812cc9"/></linearGradient><path d="M335.7 249.3c43.5-
25.3 32.1-80 32.1-80s-16.8 19.5-28.2 50.6c-11.2 30.8-30.1 44.7-3.9 29.4z" fill="url(#SVGID_5_)"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="-8783.499" y1="7643.23" x2="-8693.914" y2="7643.02" gradientTransform="matrix(1.22 .12 .12 -1.22 10013.36 10723.12)"><stop offset="0" stop-color="#002079"/><stop offset=".99" stop-color="#a238ff"/></linearGradient><path d="M197.7 368.6c60.6 19.3 112.7-28.4 80.6-44.4-29.2-14.3-109.4 35.3-80.6 44.4z" fill="url(#SVGID_6_)"/><radialGradient id="SVGID_7_" cx="249.892" cy="916.931" r="308.051" fx="304.575" fy="866.824" gradientTransform="matrix(1 0 0 -1 0 1066)" gradientUnits="userSpaceOnUse"><stop offset=".2" stop-color="#00fdff"/><stop offset=".26" stop-color="#0af1ff"/><stop offset=".37" stop-color="#23d2ff"/><stop offset=".52" stop-color="#4da0ff"/><stop offset=".69" stop-color="#855bff"/><stop offset=".77" stop-color="#a238ff"/><stop offset=".81" stop-color="#a738fd"/><stop offset=".86" stop-color="#b539f9"/><stop offset=".9
" stop-color="#cd39f1"/><stop offset=".96" stop-color="#ee3ae6"/><stop offset=".98" stop-color="#ff3be0"/></radialGradient><path d="M247.7 8.3l.2-.2c0 .1-.1.1-.2.2zm92.5 264.2c1.5-2.1 3.5-8.7 5.2-11.7 10.7-17.3 10.8-31 10.8-31.4 6.5-32.3 5.9-45.5 1.9-69.8-3.2-19.6-17.2-47.8-29.3-61.3-12.5-14-3.7-9.4-15.8-19.6-10.6-11.8-20.9-23.4-26.5-28.1C246 16.8 247 9.6 247.7 8.4c-.1.1-.3.4-.6.6-.5-1.9-.8-3.5-.8-3.5s-22.1 22.1-26.8 59c-3 24.1 6 49.2 19 65.2 6.8 8.3 14.5 15.9 22.9 22.5 9.9 14.2 15.3 31.6 15.3 50.4 0 47-38.2 85.2-85.2 85.2-6.4 0-12.8-.7-19.1-2.1-22.2-4.2-35-15.4-41.4-23.1-3.7-4.4-5.2-7.5-5.2-7.5 19.9 7.1 41.9 5.6 55.3-1.8 13.5-7.5 21.6-13 28.3-10.8 6.5 2.2 11.7-4.1 7.1-10.7-4.6-6.5-16.5-15.9-34.1-13.3-13.5 2-25.9 11.5-43.5 2.3-1.1-.6-2.2-1.2-3.3-1.9-1.2-.7 3.8 1 2.6.3-3.4-1.7-9.5-5.3-11.1-6.6-.3-.2 2.7.8 2.4.6-16.5-12.2-14.5-20.4-14-25.6.4-4.1 3.4-9.4 8.5-11.6 2.4 1.2 4 2.1 4 2.1s-1-1.9-1.6-2.9c.2-.1.4-.1.6-.1 2 .9 6.4 3.1 8.8 4.5 3 1.9 4 3.6 4 3.6s.8-.4.2-2.1c-.2-.7-1.1-2.9-4.1-5.1
h.2c1.8.9 3.5 2 5.1 3.2.8-2.8 2.4-5.6 2-10.8-.2-3.6-.1-4.6-.8-6-.6-1.2.4-1.7 1.5-.4-.2-1-.5-1.9-.9-2.8v-.1c1.4-4.3 29.3-15.6 31.3-16.9 3.3-2.1 6.1-4.8 8.2-8 1.6-2.2 2.7-5.3 3-10 .1-2.1-.6-3.8-8-5.4-4.4-1-11.3-1.9-21.9-2.9-7.7-.7-12.3-5.7-14.8-10.3-.5-1-1-1.9-1.4-2.8-.5-1-.8-2.1-1.1-3.2 4.6-12.1 12.9-22.4 23.8-29.5.6-.5-2.5.1-1.9-.4.7-.6 5.5-2.3 6.4-2.7 1.1-.5-4.7-2.7-9.8-2.1-5.2.5-6.3 1.1-9 2.1 1.2-1 4.8-2.4 3.9-2.4-5.6.8-12.5 3.7-18.5 7 0-.6.1-1.1.4-1.7-2.8 1.1-9.6 5.3-11.5 8.9.1-.7.1-1.4.1-2.1-2.1 1.6-4 3.3-5.7 5.3l-.1.1c-16-5.8-30.1-6.2-42.1-3.6-2.6-2.4-6.8-5.9-12.8-17.6-.4-.7-.6 1.5-.9.8-2.3-5.4-3.7-14.1-3.5-20.2 0 0-4.8 2.2-8.7 11.3-.7 1.6-1.2 2.5-1.7 3.4-.2.3.5-3 .4-2.8-.7 1.2-2.5 2.8-3.2 4.9-.5 1.6-1.3 2.4-1.8 4.4l-.1.2c0-.6.1-2.4 0-2-1.9 3.7-3.5 7.6-4.8 11.5-2.1 7-4.6 16.5-5 28.9-.1.9 0 2-.1 2.8-5 5.8-8.5 10.6-9.8 13.2-6.5 10.1-13.7 25.8-20.7 50.6 3.1-6.8 6.8-13.3 11.1-19.4-6 13-11.6 33.7-12.7 65.6 1.4-6.6 3.2-13.1 5.4-19.5-1 21.3 1.5 47.6 14.9 77.4 8 17.5 26.4 53 71.2 80.7
0 0 15.3 11.4 41.5 19.9 1.9.7 3.9 1.4 5.9 2.1-.6-.3-1.2-.5-1.8-.8 17.5 5.2 35.6 7.9 53.9 7.9 68 .1 88-27.2 88-27.2l-.2.1c1-.9 1.9-1.8 2.8-2.8-10.7 10.1-35.2 10.8-44.3 10.1 15.6-4.6 25.9-8.5 45.8-16.1 2.3-.9 4.7-1.9 7.2-3l.8-.4c.5-.2 1-.4 1.5-.7 9.7-4.6 18.9-10.3 27.3-17.1 20.1-16 24.4-31.6 26.7-41.9-.3 1-1.3 3.3-2 4.8-5.2 11.1-16.6 17.8-29.1 23.7 5.9-7.8 11.4-15.9 16.4-24.2 4-4.1 5.2-10.4 8.3-14.6z" fill="url(#SVGID_7_)"/><linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="-7655.339" y1="9137.516" x2="-7683.31" y2="8823.109" gradientTransform="matrix(1.23 0 0 -1.22 9720.16 11130.11)"><stop offset="0" stop-color="#00ec00"/><stop offset=".1" stop-color="#00e244"/><stop offset=".22" stop-color="#00d694"/><stop offset=".31" stop-color="#00cfc7"/><stop offset=".35" stop-color="#00ccda"/><stop offset=".42" stop-color="#0bc2dd" stop-opacity=".92"/><stop offset=".57" stop-color="#29a7e4" stop-opacity=".72"/><stop offset=".77" stop-color="#597df0" stop-opacity=".4"/><stop offset
="1" stop-color="#9448ff" stop-opacity="0"/></linearGradient><path d="M315.8 310.8c8.2-9 15.5-19.3 21.1-31 14.3-30.1 36.5-80.2 19-132.4-13.8-41.3-32.7-63.9-56.7-86-39-35.8-49.9-51.8-49.9-61.4 0 0-45 50.2-25.5 102.6s59.5 50.4 86 105.1c31.1 64.3-25.2 134.5-71.8 154.1 2.9-.6 103.6-23.4 108.9-81-.2 1-2.4 17-31.1 30z" fill="url(#SVGID_8_)"/><linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="-8889.5" y1="7812.05" x2="-8836.55" y2="7812.05" gradientTransform="matrix(1.22 .12 .12 -1.22 10013.36 10723.12)"><stop offset="0" stop-color="#005fe7"/><stop offset=".46" stop-color="#0071f3" stop-opacity=".51"/><stop offset=".83" stop-color="#007efc" stop-opacity=".14"/><stop offset="1" stop-color="#0083ff" stop-opacity="0"/></linearGradient><path d="M185.3 123.9c.2-3.4-1.6-5.7-29.8-8.3-11.6-1.1-16-11.8-17.4-16.3-4.1 10.7-5.8 21.9-4.9 35.5.6 8.9 6.6 18.4 9.5 24.1 0 0 .6-.8.9-1.1 5.4-5.6 27.9-14.1 30-15.3 2.4-1.6 11.3-8.1 11.7-18.6z" fill="url(#SVGID_9_)"/><radialGradient id="SVGID_10_"
cx="-8884.848" cy="7827.773" r="64.396" gradientTransform="matrix(1.22 .12 .12 -1.22 10013.36 10723.12)" gradientUnits="userSpaceOnUse"><stop offset=".63" stop-color="#ffe302" stop-opacity="0"/><stop offset=".67" stop-color="#ffe302" stop-opacity=".05"/><stop offset=".75" stop-color="#ffe302" stop-opacity=".19"/><stop offset=".86" stop-color="#ffe302" stop-opacity=".4"/><stop offset=".99" stop-color="#ffe302" stop-opacity=".7"/></radialGradient><path d="M185.3 123.9c.2-3.4-1.6-5.7-29.8-8.3-11.6-1.1-16-11.8-17.4-16.3-4.1 10.7-5.8 21.9-4.9 35.5.6 8.9 6.6 18.4 9.5 24.1 0 0 .6-.8.9-1.1 5.4-5.6 27.9-14.1 30-15.3 2.4-1.6 11.3-8.1 11.7-18.6z" opacity=".5" fill="url(#SVGID_10_)"/><linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="85.362" y1="2192.822" x2="39.644" y2="2290.535" gradientTransform="matrix(.99 .1 .1 -.99 -239.75 2284.79)"><stop offset=".19" stop-color="#4a1475" stop-opacity=".5"/><stop offset=".62" stop-color="#2277ac" stop-opacity=".23"/><stop offset=".94" stop
-color="#00ccda" stop-opacity="0"/></linearGradient><path d="M61.4 60.7c-.4-.7-.6 1.5-.9.8-2.3-5.4-3.7-14-3.4-20.2 0 0-4.8 2.2-8.7 11.3-.7 1.6-1.2 2.5-1.7 3.4-.2.3.5-3 .4-2.8-.7 1.2-2.5 2.8-3.2 4.8-.6 1.6-1.3 2.5-1.8 4.6-.2.6.2-2.5 0-2.1-9.2 17.8-10.9 44.7-10 43.5 19.6-20.9 42-25.9 42-25.9-2.4-1.7-7.6-6.8-12.7-17.4z" fill="url(#SVGID_11_)"/><linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="-209.367" y1="527.653" x2="-172.852" y2="486.18" gradientTransform="matrix(.99 .1 .1 -.99 239.39 724.37)"><stop offset=".01" stop-color="#002079" stop-opacity=".5"/><stop offset="1" stop-color="#0083ff" stop-opacity="0"/></linearGradient><path d="M135.7 279.4c-27.1-11.6-57.8-27.8-56.6-64.8 1.6-48.7 45.5-39.1 45.5-39.1-1.7.4-6.1 3.6-7.7 6.9-1.7 4.2-4.7 13.7 4.5 23.6 14.4 15.6-29.6 37 38.3 77.4 1.6 1-16-.5-24-4z" fill="url(#SVGID_12_)"/><linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="-139.213" y1="457.058" x2="-139.193" y2="477.788" gradientTransform="matrix(.99 .1
.1 -.99 239.39 724.37)"><stop offset="0" stop-color="#4a1475" stop-opacity=".9"/><stop offset=".18" stop-color="#6720a2" stop-opacity=".6"/><stop offset=".38" stop-color="#812acb" stop-opacity=".34"/><stop offset=".57" stop-color="#9332e8" stop-opacity=".15"/><stop offset=".76" stop-color="#9e36f9" stop-opacity=".04"/><stop offset=".93" stop-color="#a238ff" stop-opacity="0"/></linearGradient><path d="M126.1 255.1c19.2 6.7 41.5 5.5 54.9-1.9 9-5 20.4-13 27.5-11-6.1-2.4-10.8-3.6-16.3-3.8-1 0-2.1 0-3.1-.1-2 0-4.1.1-6.1.3-3.5.3-7.3 2.5-10.8 2.1-.2 0 3.4-1.5 3.1-1.4-1.8.4-3.8.5-6 .7-1.3.2-2.5.3-3.8.4-40 3.4-73.7-21.7-73.7-21.7-2.9 9.8 12.9 29 34.3 36.4z" opacity=".5" fill="url(#SVGID_13_)"/><linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="240.706" y1="1051.958" x2="359.301" y2="786.765" gradientTransform="matrix(1 0 0 -1 0 1066)"><stop offset="0" stop-color="#00ec00" stop-opacity="0"/><stop offset=".28" stop-color="#00dc6d" stop-opacity=".5"/><stop offset=".5" stop-color=
"#00d1bb" stop-opacity=".86"/><stop offset=".6" stop-color="#00ccda"/><stop offset=".68" stop-color="#04c9db"/><stop offset=".75" stop-color="#0fc1df"/><stop offset=".83" stop-color="#23b2e6"/><stop offset=".9" stop-color="#3e9ef0"/><stop offset=".98" stop-color="#6184fc"/><stop offset=".99" stop-color="#6680fe"/></linearGradient><path d="M315.7 311.1c40.4-39.7 60.9-87.9 52.2-142 0 0 3.5 27.7-9.6 56.1 6.3-27.7 7-62.1-9.7-97.8-22.3-47.6-59-72.6-73-83.1-21.2-15.8-30-31.9-30.2-35.3-6.3 13-25.5 57.5-2.1 95.8 22 35.9 56.6 46.6 80.8 79.5 44.7 60.8-8.4 126.8-8.4 126.8z" fill="url(#SVGID_14_)"/><linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="264.16" y1="899.455" x2="207.985" y2="748.621" gradientTransform="matrix(1 0 0 -1 0 1066)"><stop offset="0" stop-color="#0083ff"/><stop offset=".04" stop-color="#0083ff" stop-opacity=".92"/><stop offset=".14" stop-color="#0083ff" stop-opacity=".71"/><stop offset=".26" stop-color="#0083ff" stop-opacity=".52"/><stop offset=".37" stop-col
or="#0083ff" stop-opacity=".36"/><stop offset=".49" stop-color="#0083ff" stop-opacity=".23"/><stop offset=".61" stop-color="#0083ff" stop-opacity=".13"/><stop offset=".73" stop-color="#0083ff" stop-opacity=".06"/><stop offset=".86" stop-color="#0083ff" stop-opacity=".01"/><stop offset="1" stop-color="#0083ff" stop-opacity="0"/></linearGradient><path d="M309.9 207.8c-14.1-29.2-31.7-41.9-48.4-55.7 1.9 2.7 2.4 3.7 3.5 5.4 14.7 15.6 36.3 53.8 20.6 101.7-29.6 90.2-147.9 47.7-160.3 35.8 5 52.2 92.3 77.1 149.2 43.3 32.4-30.6 58.6-82.7 35.4-130.5z" fill="url(#SVGID_15_)"/></g></g></g><path class="st0" d="M1132.9 279.4l-58.5-122.3c1 11.9 2.7 29.5 2.7 56.2v66h-18.6v-144h25.9l59.1 122.5c-.4-3.3-2.7-26.3-2.7-43.9v-78.6h18.6v144h-26.5v.1zM1213 141c0 7.3-5.4 13-13.6 13-7.9 0-13.4-5.6-13.4-13 0-7.5 5.4-13.2 13.4-13.2 8.1 0 13.6 5.7 13.6 13.2zm-23 28.3h19.2v110.1H1190zm105.3 8.4c13 5.9 19.4 15 19.4 27.8 0 21.7-15.7 37.4-42 37.4-5 0-9.4-.6-14-2.1-3.1 2.3-5.4 6.3-5.4 10.2 0 5 3.1 9 14.4 9h17.6c22.6 0
37.6 13 37.6 30.5 0 21.3-17.6 33.4-51.6 33.4-35.9 0-47.2-11.1-47.2-33.4h17.3c0 12.5 5.6 18.4 29.9 18.4 23.8 0 32.2-6.1 32.2-17.1 0-10.5-8.4-15.7-22.2-15.7H1264c-19.6 0-28.4-9.8-28.4-20.9 0-7.1 4.2-14.2 12.1-19.4-12.7-6.7-18.6-16.3-18.6-30.5 0-22.6 18.2-38.5 42.4-38.5 27.4.6 37.4-4 50.4-9.8l5.6 17.3c-9.2 2.9-19.6 3.4-32.2 3.4zm-46.6 27.5c0 14.6 8.2 24.9 23.2 24.9s23.2-9.2 23.2-25.1c0-16.1-7.9-24.5-23.6-24.5-14.8.1-22.8 10.3-22.8 24.7zm172.2-4.8v79h-19.2v-76.3c0-16.5-7.1-21.3-17.6-21.3-11.9 0-20.5 7.7-27.8 19.2v78.4h-19.2V125.2l19.2-2.1v61.4c7.9-10.9 18.8-17.8 32.6-17.8 20.1.1 32 13 32 33.7zm59.4 81.5c-18.6 0-29.7-10.9-29.7-31.3v-66.5h-19.2v-14.8h19.2v-24.9l19.2-2.3v27.2h26.1l-2.1 14.8h-24v65.6c0 11.1 3.6 16.3 13.2 16.3 4.8 0 9.2-1.5 14.6-4.8l7.3 13.2c-7.3 5-15.2 7.5-24.6 7.5zm59.3-15.8c2.7 0 5-.4 7.1-1.3l5 13.4c-5.2 2.5-10.7 3.8-16.3 3.8-14 0-21.9-8.4-21.9-24.2V125l19.2-2.3v134.6c0 5.8 1.9 8.8 6.9 8.8zm18.9 57.9l-2.1-15c22.4-3.8 28.6-12.3 34.9-29.5h-6.5l-37-110.1h20.5l29.5 96.1 28.8
-96.1h19.9l-36.8 110.8c-7.8 23.3-20.7 40.4-51.2 43.8z"/></svg>
\ No newline at end of file
diff --git a/browser/branding/alpha/content/identity-icons-brand.svg b/browser/branding/alpha/content/identity-icons-brand.svg
new file mode 100644
index 000000000000..9bfa43842e2d
--- /dev/null
+++ b/browser/branding/alpha/content/identity-icons-brand.svg
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="512px" height="512px" viewBox="-17 -17 546 546" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs>
+ <linearGradient x1="50%" y1="3.27248873%" x2="50%" y2="97.1599968%" id="linearGradient-1">
+ <stop stop-color="#00FEFF" offset="0%"></stop>
+ <stop stop-color="#0BE67D" offset="100%"></stop>
+ </linearGradient>
+ <path d="M25,25 C152.50841,25 255.874399,127.979815 255.874399,255.011855 C255.874399,382.043895 152.50841,485.02371 25,485.02371 L25,25 Z" id="path-2"></path>
+ <filter x="-20.8%" y="-8.7%" width="134.7%" height="117.4%" filterUnits="objectBoundingBox" id="filter-3">
+ <feOffset dx="-8" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
+ <feGaussianBlur stdDeviation="12" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
+ <feColorMatrix values="0 0 0 0 0.0872579578 0 0 0 0 0.00490370801 0 0 0 0 0.234933036 0 0 0 0.5 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
+ </filter>
+ </defs>
+ <g id="Alpha" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
+ <g>
+ <circle id="background" fill-opacity="0.9" fill="#030004" fill-rule="nonzero" cx="256" cy="256" r="246"></circle>
+ <path d="M256.525143,465.439707 L256.525143,434.406609 C354.826191,434.122748 434.420802,354.364917 434.420802,255.992903 C434.420802,157.627987 354.826191,77.8701558 256.525143,77.5862948 L256.525143,46.5531962 C371.964296,46.8441537 465.446804,140.489882 465.446804,255.992903 C465.446804,371.503022 371.964296,465.155846 256.525143,465.439707 Z M256.525143,356.820314 C311.970283,356.529356 356.8487,311.516106 356.8487,255.992903 C356.8487,200.476798 311.970283,155.463547 256.525143,155.17259 L256.525143,124.146588 C329.115485,124.430449 387.881799,183.338693 387.881799,255.992903 C387.881799,328.654211 329.115485,387.562455 256.525143,387.846316 L256.525143,356.820314 Z M256.525143,201.718689 C286.266674,202.00255 310.3026,226.180407 310.3026,255.992903 C310.3026,285.812497 286.266674,309.990353 256.525143,310.274214 L256.525143,201.718689 Z M0,255.992903 C0,397.384044 114.60886,512 256,512 C397.384044,512 512,397.384044 512,255.992903 C512,114.60886 397.384044,2.842170
94e-14 256,2.84217094e-14 C114.60886,2.84217094e-14 0,114.60886 0,255.992903 Z" id="center" fill="url(#linearGradient-1)"></path>
+ <g id="half" transform="translate(140.437200, 255.011855) scale(-1, 1) translate(-140.437200, -255.011855) ">
+ <use fill="black" fill-opacity="1" filter="url(#filter-3)" xlink:href="#path-2"></use>
+ <use fill="url(#linearGradient-1)" fill-rule="evenodd" xlink:href="#path-2"></use>
+ </g>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/browser/branding/alpha/content/jar.mn b/browser/branding/alpha/content/jar.mn
new file mode 100644
index 000000000000..de166fe3636f
--- /dev/null
+++ b/browser/branding/alpha/content/jar.mn
@@ -0,0 +1,22 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+browser.jar:
+% content branding %content/branding/ contentaccessible=yes
+ content/branding/about.png
+ content/branding/about-logo.png
+ content/branding/about-logo(a)2x.png
+ content/branding/about-wordmark.svg
+ content/branding/firefox-wordmark.svg
+ content/branding/aboutlogins.svg
+ content/branding/icon16.png (../default16.png)
+ content/branding/icon32.png (../default32.png)
+ content/branding/icon48.png (../default48.png)
+ content/branding/icon64.png (../default64.png)
+ content/branding/icon128.png (../default128.png)
+ content/branding/icon256.png (../default256.png)
+ content/branding/icon512.png (../default512.png)
+ content/branding/identity-icons-brand.svg
+ content/branding/aboutDialog.css
+ content/branding/horizontal-lockup.svg
diff --git a/browser/branding/alpha/content/moz.build b/browser/branding/alpha/content/moz.build
new file mode 100644
index 000000000000..eb4454d28f88
--- /dev/null
+++ b/browser/branding/alpha/content/moz.build
@@ -0,0 +1,7 @@
+# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
+# vim: set filetype=python:
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+JAR_MANIFESTS += ['jar.mn']
\ No newline at end of file
diff --git a/browser/branding/alpha/default128.png b/browser/branding/alpha/default128.png
new file mode 100644
index 000000000000..fbc27b91d118
Binary files /dev/null and b/browser/branding/alpha/default128.png differ
diff --git a/browser/branding/alpha/default16.png b/browser/branding/alpha/default16.png
new file mode 100644
index 000000000000..3a4e1b679b27
Binary files /dev/null and b/browser/branding/alpha/default16.png differ
diff --git a/browser/branding/alpha/default22.png b/browser/branding/alpha/default22.png
new file mode 100644
index 000000000000..4feb2dbd400c
Binary files /dev/null and b/browser/branding/alpha/default22.png differ
diff --git a/browser/branding/alpha/default24.png b/browser/branding/alpha/default24.png
new file mode 100644
index 000000000000..4387f97e3d62
Binary files /dev/null and b/browser/branding/alpha/default24.png differ
diff --git a/browser/branding/alpha/default256.png b/browser/branding/alpha/default256.png
new file mode 100644
index 000000000000..844f1a0323ee
Binary files /dev/null and b/browser/branding/alpha/default256.png differ
diff --git a/browser/branding/alpha/default32.png b/browser/branding/alpha/default32.png
new file mode 100644
index 000000000000..679f5f9db43f
Binary files /dev/null and b/browser/branding/alpha/default32.png differ
diff --git a/browser/branding/alpha/default48.png b/browser/branding/alpha/default48.png
new file mode 100644
index 000000000000..85f0253d88ca
Binary files /dev/null and b/browser/branding/alpha/default48.png differ
diff --git a/browser/branding/alpha/default512.png b/browser/branding/alpha/default512.png
new file mode 100644
index 000000000000..b12f58b88bb4
Binary files /dev/null and b/browser/branding/alpha/default512.png differ
diff --git a/browser/branding/alpha/default64.png b/browser/branding/alpha/default64.png
new file mode 100644
index 000000000000..c48f1c5bf4ee
Binary files /dev/null and b/browser/branding/alpha/default64.png differ
diff --git a/browser/branding/alpha/disk.icns b/browser/branding/alpha/disk.icns
new file mode 100644
index 000000000000..866d93a43bc8
Binary files /dev/null and b/browser/branding/alpha/disk.icns differ
diff --git a/browser/branding/alpha/document.icns b/browser/branding/alpha/document.icns
new file mode 100644
index 000000000000..7fbfffe2228e
Binary files /dev/null and b/browser/branding/alpha/document.icns differ
diff --git a/browser/branding/alpha/document.ico b/browser/branding/alpha/document.ico
new file mode 100644
index 000000000000..45aa08bb1658
Binary files /dev/null and b/browser/branding/alpha/document.ico differ
diff --git a/browser/branding/alpha/dsstore b/browser/branding/alpha/dsstore
new file mode 100644
index 000000000000..6b82c923a662
Binary files /dev/null and b/browser/branding/alpha/dsstore differ
diff --git a/browser/branding/alpha/firefox.VisualElementsManifest.xml b/browser/branding/alpha/firefox.VisualElementsManifest.xml
new file mode 100644
index 000000000000..a71938708aff
--- /dev/null
+++ b/browser/branding/alpha/firefox.VisualElementsManifest.xml
@@ -0,0 +1,12 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ - You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<Application xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
+ <VisualElements
+ ShowNameOnSquare150x150Logo='on'
+ Square150x150Logo='browser\VisualElements\VisualElements_150.png'
+ Square70x70Logo='browser\VisualElements\VisualElements_70.png'
+ ForegroundText='light'
+ BackgroundColor='#1c191d'/>
+</Application>
diff --git a/browser/branding/alpha/firefox.icns b/browser/branding/alpha/firefox.icns
new file mode 100644
index 000000000000..baad294f8497
Binary files /dev/null and b/browser/branding/alpha/firefox.icns differ
diff --git a/browser/branding/alpha/firefox.ico b/browser/branding/alpha/firefox.ico
new file mode 100644
index 000000000000..e25514996d37
Binary files /dev/null and b/browser/branding/alpha/firefox.ico differ
diff --git a/browser/branding/alpha/firefox.svg b/browser/branding/alpha/firefox.svg
new file mode 100644
index 000000000000..250c7adea0d6
--- /dev/null
+++ b/browser/branding/alpha/firefox.svg
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs>
+ <linearGradient x1="50%" y1="3.27248873%" x2="50%" y2="97.1599968%" id="linearGradient-1">
+ <stop stop-color="#00FEFF" offset="0%"></stop>
+ <stop stop-color="#0BE67D" offset="100%"></stop>
+ </linearGradient>
+ <path d="M25,25 C152.50841,25 255.874399,127.979815 255.874399,255.011855 C255.874399,382.043895 152.50841,485.02371 25,485.02371 L25,25 Z" id="path-2"></path>
+ <filter x="-20.8%" y="-8.7%" width="134.7%" height="117.4%" filterUnits="objectBoundingBox" id="filter-3">
+ <feOffset dx="-8" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
+ <feGaussianBlur stdDeviation="12" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
+ <feColorMatrix values="0 0 0 0 0.0872579578 0 0 0 0 0.00490370801 0 0 0 0 0.234933036 0 0 0 0.5 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
+ </filter>
+ </defs>
+ <g id="Alpha" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
+ <g>
+ <circle id="background" fill-opacity="0.9" fill="#030004" fill-rule="nonzero" cx="256" cy="256" r="246"></circle>
+ <path d="M256.525143,465.439707 L256.525143,434.406609 C354.826191,434.122748 434.420802,354.364917 434.420802,255.992903 C434.420802,157.627987 354.826191,77.8701558 256.525143,77.5862948 L256.525143,46.5531962 C371.964296,46.8441537 465.446804,140.489882 465.446804,255.992903 C465.446804,371.503022 371.964296,465.155846 256.525143,465.439707 Z M256.525143,356.820314 C311.970283,356.529356 356.8487,311.516106 356.8487,255.992903 C356.8487,200.476798 311.970283,155.463547 256.525143,155.17259 L256.525143,124.146588 C329.115485,124.430449 387.881799,183.338693 387.881799,255.992903 C387.881799,328.654211 329.115485,387.562455 256.525143,387.846316 L256.525143,356.820314 Z M256.525143,201.718689 C286.266674,202.00255 310.3026,226.180407 310.3026,255.992903 C310.3026,285.812497 286.266674,309.990353 256.525143,310.274214 L256.525143,201.718689 Z M0,255.992903 C0,397.384044 114.60886,512 256,512 C397.384044,512 512,397.384044 512,255.992903 C512,114.60886 397.384044,2.842170
94e-14 256,2.84217094e-14 C114.60886,2.84217094e-14 0,114.60886 0,255.992903 Z" id="center" fill="url(#linearGradient-1)"></path>
+ <g id="half" transform="translate(140.437200, 255.011855) scale(-1, 1) translate(-140.437200, -255.011855) ">
+ <use fill="black" fill-opacity="1" filter="url(#filter-3)" xlink:href="#path-2"></use>
+ <use fill="url(#linearGradient-1)" fill-rule="evenodd" xlink:href="#path-2"></use>
+ </g>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/browser/branding/alpha/firefox64.ico b/browser/branding/alpha/firefox64.ico
new file mode 100644
index 000000000000..e25514996d37
Binary files /dev/null and b/browser/branding/alpha/firefox64.ico differ
diff --git a/browser/branding/alpha/locales/en-US/brand.dtd b/browser/branding/alpha/locales/en-US/brand.dtd
new file mode 100644
index 000000000000..0b15c9978e01
--- /dev/null
+++ b/browser/branding/alpha/locales/en-US/brand.dtd
@@ -0,0 +1,11 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShorterName "Tor Browser">
+<!ENTITY brandShortName "Tor Browser">
+<!ENTITY brandFullName "Tor Browser">
+<!-- LOCALIZATION NOTE (brandProductName):
+ This brand name can be used in messages where the product name needs to
+ remain unchanged across different versions (Nightly, Beta, etc.). -->
+<!ENTITY brandProductName "Tor Browser">
diff --git a/browser/branding/alpha/locales/en-US/brand.ftl b/browser/branding/alpha/locales/en-US/brand.ftl
new file mode 100644
index 000000000000..22d5f837b093
--- /dev/null
+++ b/browser/branding/alpha/locales/en-US/brand.ftl
@@ -0,0 +1,22 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+## Firefox Brand
+##
+## Firefox must be treated as a brand, and kept in English.
+## It cannot be:
+## - Declined to adapt to grammatical case.
+## - Transliterated.
+## - Translated.
+##
+## Reference: https://www.mozilla.org/styleguide/communications/translation/
+
+-brand-shorter-name = Nightly
+-brand-short-name = Nightly
+-brand-full-name = Firefox Nightly
+# This brand name can be used in messages where the product name needs to
+# remain unchanged across different versions (Nightly, Beta, etc.).
+-brand-product-name = Firefox
+-vendor-short-name = Mozilla
+trademarkInfo = Firefox and the Firefox logos are trademarks of the Mozilla Foundation.
diff --git a/browser/branding/alpha/locales/en-US/brand.properties b/browser/branding/alpha/locales/en-US/brand.properties
new file mode 100644
index 000000000000..e96b063b9034
--- /dev/null
+++ b/browser/branding/alpha/locales/en-US/brand.properties
@@ -0,0 +1,14 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShorterName=Tor Browser
+brandShortName=Tor Browser
+brandFullName=Tor Browser
+# LOCALIZATION NOTE(brandProductName):
+# This brand name can be used in messages where the product name needs to
+# remain unchanged across different versions (Nightly, Beta, etc.).
+brandProductName=Tor Browser
+vendorShortName=Tor Project
+
+syncBrandShortName=Sync
diff --git a/browser/branding/alpha/locales/jar.mn b/browser/branding/alpha/locales/jar.mn
new file mode 100644
index 000000000000..d13c2110148f
--- /dev/null
+++ b/browser/branding/alpha/locales/jar.mn
@@ -0,0 +1,12 @@
+#filter substitution
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+[localization] @AB_CD@.jar:
+ branding (%*.ftl)
+
+@AB_CD@.jar:
+% locale branding @AB_CD@ %locale/branding/
+ locale/branding/brand.dtd (%brand.dtd)
+ locale/branding/brand.properties (%brand.properties)
diff --git a/browser/branding/alpha/locales/moz.build b/browser/branding/alpha/locales/moz.build
new file mode 100644
index 000000000000..eb4454d28f88
--- /dev/null
+++ b/browser/branding/alpha/locales/moz.build
@@ -0,0 +1,7 @@
+# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
+# vim: set filetype=python:
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+JAR_MANIFESTS += ['jar.mn']
\ No newline at end of file
diff --git a/browser/branding/alpha/moz.build b/browser/branding/alpha/moz.build
new file mode 100644
index 000000000000..9045cee11bb8
--- /dev/null
+++ b/browser/branding/alpha/moz.build
@@ -0,0 +1,13 @@
+# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
+# vim: set filetype=python:
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+DIRS += ['content', 'locales']
+
+DIST_SUBDIR = 'browser'
+export('DIST_SUBDIR')
+
+include('../branding-common.mozbuild')
+FirefoxBranding()
diff --git a/browser/branding/alpha/newtab.ico b/browser/branding/alpha/newtab.ico
new file mode 100644
index 000000000000..a9b37c08c6e1
Binary files /dev/null and b/browser/branding/alpha/newtab.ico differ
diff --git a/browser/branding/alpha/newwindow.ico b/browser/branding/alpha/newwindow.ico
new file mode 100644
index 000000000000..55372077102c
Binary files /dev/null and b/browser/branding/alpha/newwindow.ico differ
diff --git a/browser/branding/alpha/pbmode.ico b/browser/branding/alpha/pbmode.ico
new file mode 100644
index 000000000000..47677c13fba6
Binary files /dev/null and b/browser/branding/alpha/pbmode.ico differ
diff --git a/browser/branding/alpha/pref/firefox-branding.js b/browser/branding/alpha/pref/firefox-branding.js
new file mode 100644
index 000000000000..792134ab45d7
--- /dev/null
+++ b/browser/branding/alpha/pref/firefox-branding.js
@@ -0,0 +1,34 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+// This file contains branding-specific prefs.
+
+pref("startup.homepage_override_url", "https://www.mozilla.org/projects/firefox/%VERSION%/whatsnew/?oldversion=%OL…");
+pref("startup.homepage_welcome_url", "https://www.mozilla.org/projects/firefox/%VERSION%/firstrun/");
+pref("startup.homepage_welcome_url.additional", "");
+// The time interval between checks for a new version (in seconds)
+pref("app.update.interval", 7200); // 2 hours
+// Give the user x seconds to react before showing the big UI. default=12 hours
+pref("app.update.promptWaitTime", 43200);
+// URL user can browse to manually if for some reason all update installation
+// attempts fail.
+pref("app.update.url.manual", "https://www.mozilla.org/%LOCALE%/firefox/nightly/");
+// A default value for the "More information about this update" link
+// supplied in the "An update is available" page of the update wizard.
+pref("app.update.url.details", "https://www.mozilla.org/%LOCALE%/firefox/nightly/notes/");
+
+pref("app.releaseNotesURL", "https://www.mozilla.org/%LOCALE%/firefox/%VERSION%/releasenotes/?utm_source…");
+
+// The number of days a binary is permitted to be old
+// without checking for an update. This assumes that
+// app.update.checkInstallTime is true.
+pref("app.update.checkInstallTime.days", 2);
+
+// Give the user x seconds to reboot before showing a badge on the hamburger
+// button. default=immediately
+pref("app.update.badgeWaitTime", 0);
+
+// Number of usages of the web console.
+// If this is less than 5, then pasting code into the web console is disabled
+pref("devtools.selfxss.count", 5);
diff --git a/browser/branding/alpha/stubinstaller/bgstub.jpg b/browser/branding/alpha/stubinstaller/bgstub.jpg
new file mode 100644
index 000000000000..891036a4fe35
Binary files /dev/null and b/browser/branding/alpha/stubinstaller/bgstub.jpg differ
diff --git a/browser/branding/alpha/stubinstaller/installing_page.css b/browser/branding/alpha/stubinstaller/installing_page.css
new file mode 100644
index 000000000000..8044838c79f5
--- /dev/null
+++ b/browser/branding/alpha/stubinstaller/installing_page.css
@@ -0,0 +1,61 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+body {
+ color: white;
+}
+
+#label,
+#progress_background,
+#blurb {
+ text-align: center;
+ margin: 20px 30px;
+}
+
+#label {
+ font-size: 40px;
+ margin-top: 100px;
+ margin-bottom: 20px;
+}
+
+#progress_background {
+ margin: 0 auto;
+ width: 60%;
+ height: 24px;
+ background-color: white;
+}
+
+body.high-contrast #progress_background {
+ outline: solid;
+}
+
+#progress_bar {
+ margin: 0;
+ width: 0%;
+ height: 100%;
+ background-color: #00AAFF;
+}
+
+/* In high contrast mode, fill the entire progress bar with its border. */
+body.high-contrast #progress_bar {
+ /* This border should be the height of progress_background. */
+ border-top: 24px solid;
+ box-sizing: border-box;
+}
+
+/* This layout doesn't want the header or content text. */
+#header, #content {
+ display: none;
+}
+
+#blurb {
+ font-size: 20px;
+}
+
+/* The footer goes in the bottom right corner. */
+#footer {
+ position: fixed;
+ right: 50px;
+ bottom: 59px;
+}
diff --git a/browser/branding/alpha/stubinstaller/profile_cleanup_page.css b/browser/branding/alpha/stubinstaller/profile_cleanup_page.css
new file mode 100644
index 000000000000..2d9c3ad1891e
--- /dev/null
+++ b/browser/branding/alpha/stubinstaller/profile_cleanup_page.css
@@ -0,0 +1,42 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+body {
+ color: white;
+}
+
+#header,
+#refreshCheckboxContainer,
+#refreshButtonContainer {
+ text-align: center;
+ margin-left: 40px;
+ margin-right: 40px;
+ margin-bottom: 30px;
+}
+
+#header {
+ font-size: 35px;
+ font-weight: normal;
+ margin-top: 45px;
+}
+
+#refreshCheckbox {
+ vertical-align: middle;
+}
+
+#checkboxLabel {
+ font-size: 13px;
+}
+
+#refreshButton {
+ padding: 8px 40px;
+ font-size: 15px;
+}
+
+/* The footer goes in the bottom right corner. */
+#footer {
+ position: fixed;
+ right: 50px;
+ bottom: 59px;
+}
diff --git a/browser/branding/alpha/wizHeader.bmp b/browser/branding/alpha/wizHeader.bmp
new file mode 100644
index 000000000000..a754d2db1e11
Binary files /dev/null and b/browser/branding/alpha/wizHeader.bmp differ
diff --git a/browser/branding/alpha/wizHeaderRTL.bmp b/browser/branding/alpha/wizHeaderRTL.bmp
new file mode 100644
index 000000000000..c944205be23f
Binary files /dev/null and b/browser/branding/alpha/wizHeaderRTL.bmp differ
diff --git a/browser/branding/alpha/wizWatermark.bmp b/browser/branding/alpha/wizWatermark.bmp
new file mode 100644
index 000000000000..9e523b5fa196
Binary files /dev/null and b/browser/branding/alpha/wizWatermark.bmp differ
diff --git a/browser/branding/branding-common.mozbuild b/browser/branding/branding-common.mozbuild
index 908553b8b95c..95cebf735920 100644
--- a/browser/branding/branding-common.mozbuild
+++ b/browser/branding/branding-common.mozbuild
@@ -27,7 +27,9 @@ def FirefoxBranding():
FINAL_TARGET_FILES.chrome.icons.default += [
'default128.png',
'default16.png',
+ 'default256.png',
'default32.png',
'default48.png',
+ 'default512.png',
'default64.png',
]
diff --git a/browser/branding/nightly/VisualElements_150.png b/browser/branding/nightly/VisualElements_150.png
index fa2191146174..a29d863d1766 100644
Binary files a/browser/branding/nightly/VisualElements_150.png and b/browser/branding/nightly/VisualElements_150.png differ
diff --git a/browser/branding/nightly/VisualElements_70.png b/browser/branding/nightly/VisualElements_70.png
index cefb95b1c3d2..ccd90b8cf748 100644
Binary files a/browser/branding/nightly/VisualElements_70.png and b/browser/branding/nightly/VisualElements_70.png differ
diff --git a/browser/branding/nightly/configure.sh b/browser/branding/nightly/configure.sh
index 7c7f2cf8c820..243091484f75 100644
--- a/browser/branding/nightly/configure.sh
+++ b/browser/branding/nightly/configure.sh
@@ -2,5 +2,4 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-MOZ_APP_DISPLAYNAME="Firefox Nightly"
-MOZ_MACBUNDLE_ID=nightly
+MOZ_APP_DISPLAYNAME="Tor Browser"
diff --git a/browser/branding/nightly/content/identity-icons-brand.svg b/browser/branding/nightly/content/identity-icons-brand.svg
index fc8b1a356768..fc1d9c997aeb 100644
--- a/browser/branding/nightly/content/identity-icons-brand.svg
+++ b/browser/branding/nightly/content/identity-icons-brand.svg
@@ -1,3 +1,29 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
- <path fill="context-fill" fill-opacity="context-fill-opacity" d="M15.424 5.366A4.384 4.384 0 0 0 13.817 3.4a7.893 7.893 0 0 1 .811 2.353v.017c-.9-2.185-2.441-3.066-3.7-4.984l-.189-.3c-.035-.059-.063-.112-.088-.161a1.341 1.341 0 0 1-.119-.306.022.022 0 0 0-.013-.019.026.026 0 0 0-.019 0h-.006a5.629 5.629 0 0 0-2.755 4.308c.094-.006.187-.014.282-.014a4.069 4.069 0 0 1 3.51 1.983A2.838 2.838 0 0 0 9.6 5.824a3.2 3.2 0 0 1-1.885 6.013 3.651 3.651 0 0 1-1.042-.2c-.078-.028-.157-.059-.235-.093-.046-.02-.091-.04-.135-.062A3.282 3.282 0 0 1 4.415 8.95s.369-1.334 2.647-1.334a1.91 1.91 0 0 0 .964-.857 12.756 12.756 0 0 1-1.941-1.118c-.29-.277-.428-.411-.551-.511-.066-.054-.128-.1-.207-.152a3.481 3.481 0 0 1-.022-1.894 5.915 5.915 0 0 0-1.929 1.442A4.108 4.108 0 0 1 3.1 2.584a1.561 1.561 0 0 0-.267.138 5.767 5.767 0 0 0-.783.649 6.9 6.9 0 0 0-.748.868 6.446 6.446 0 0 0-1.08 2.348c0 .009-.076.325-.131.715l-.025.182c-.019.117-.033.245-.048.444v.023c-.005.076-.011.16-.016.258v.04A7.884 7.884 0 0
0 8.011 16a7.941 7.941 0 0 0 7.9-6.44l.036-.3a7.724 7.724 0 0 0-.523-3.894z" />
-</svg>
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="512px" height="512px" viewBox="-17 -17 546 546" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs>
+ <linearGradient x1="25.1281738%" y1="5.44281006%" x2="54.3792725%" y2="100%" id="linearGradient-1">
+ <stop stop-color="#00E1E8" offset="0%"></stop>
+ <stop stop-color="#3500FF" offset="100%"></stop>
+ </linearGradient>
+ <linearGradient x1="25.1281738%" y1="5.44281006%" x2="54.3792725%" y2="100%" id="linearGradient-2">
+ <stop stop-color="#00E1E8" offset="0%"></stop>
+ <stop stop-color="#3500FF" offset="100%"></stop>
+ </linearGradient>
+ <path d="M25,25 C152.50841,25 255.874399,127.979815 255.874399,255.011855 C255.874399,382.043895 152.50841,485.02371 25,485.02371 L25,25 Z" id="path-3"></path>
+ <filter x="-20.8%" y="-8.7%" width="134.7%" height="117.4%" filterUnits="objectBoundingBox" id="filter-4">
+ <feOffset dx="-8" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
+ <feGaussianBlur stdDeviation="12" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
+ <feColorMatrix values="0 0 0 0 0.0872579578 0 0 0 0 0.00490370801 0 0 0 0 0.234933036 0 0 0 0.5 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
+ </filter>
+ </defs>
+ <g id="Nightly" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
+ <g>
+ <circle id="background" fill-opacity="0.9" fill="#030004" fill-rule="nonzero" cx="256" cy="256" r="246"></circle>
+ <path d="M256.525143,465.439707 L256.525143,434.406609 C354.826191,434.122748 434.420802,354.364917 434.420802,255.992903 C434.420802,157.627987 354.826191,77.8701558 256.525143,77.5862948 L256.525143,46.5531962 C371.964296,46.8441537 465.446804,140.489882 465.446804,255.992903 C465.446804,371.503022 371.964296,465.155846 256.525143,465.439707 Z M256.525143,356.820314 C311.970283,356.529356 356.8487,311.516106 356.8487,255.992903 C356.8487,200.476798 311.970283,155.463547 256.525143,155.17259 L256.525143,124.146588 C329.115485,124.430449 387.881799,183.338693 387.881799,255.992903 C387.881799,328.654211 329.115485,387.562455 256.525143,387.846316 L256.525143,356.820314 Z M256.525143,201.718689 C286.266674,202.00255 310.3026,226.180407 310.3026,255.992903 C310.3026,285.812497 286.266674,309.990353 256.525143,310.274214 L256.525143,201.718689 Z M0,255.992903 C0,397.384044 114.60886,512 256,512 C397.384044,512 512,397.384044 512,255.992903 C512,114.60886 397.384044,2.842170
94e-14 256,2.84217094e-14 C114.60886,2.84217094e-14 0,114.60886 0,255.992903 Z" id="center" fill="url(#linearGradient-1)"></path>
+ <g id="half" transform="translate(140.437200, 255.011855) scale(-1, 1) translate(-140.437200, -255.011855) ">
+ <use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-3"></use>
+ <use fill="url(#linearGradient-2)" fill-rule="evenodd" xlink:href="#path-3"></use>
+ </g>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/browser/branding/nightly/content/jar.mn b/browser/branding/nightly/content/jar.mn
index 68b2bfd8e571..de166fe3636f 100644
--- a/browser/branding/nightly/content/jar.mn
+++ b/browser/branding/nightly/content/jar.mn
@@ -15,6 +15,8 @@ browser.jar:
content/branding/icon48.png (../default48.png)
content/branding/icon64.png (../default64.png)
content/branding/icon128.png (../default128.png)
+ content/branding/icon256.png (../default256.png)
+ content/branding/icon512.png (../default512.png)
content/branding/identity-icons-brand.svg
content/branding/aboutDialog.css
content/branding/horizontal-lockup.svg
diff --git a/browser/branding/nightly/default128.png b/browser/branding/nightly/default128.png
index 8fe085c56ffc..12998ed018a7 100644
Binary files a/browser/branding/nightly/default128.png and b/browser/branding/nightly/default128.png differ
diff --git a/browser/branding/nightly/default16.png b/browser/branding/nightly/default16.png
index e01114ba2bb5..737ade977a6b 100644
Binary files a/browser/branding/nightly/default16.png and b/browser/branding/nightly/default16.png differ
diff --git a/browser/branding/nightly/default22.png b/browser/branding/nightly/default22.png
index 0527dfd563cb..02c87a9e2db6 100644
Binary files a/browser/branding/nightly/default22.png and b/browser/branding/nightly/default22.png differ
diff --git a/browser/branding/nightly/default24.png b/browser/branding/nightly/default24.png
index 019d020fde05..34cfedb2d908 100644
Binary files a/browser/branding/nightly/default24.png and b/browser/branding/nightly/default24.png differ
diff --git a/browser/branding/nightly/default256.png b/browser/branding/nightly/default256.png
index d0d8bd01cc1a..f619aecbc6e3 100644
Binary files a/browser/branding/nightly/default256.png and b/browser/branding/nightly/default256.png differ
diff --git a/browser/branding/nightly/default32.png b/browser/branding/nightly/default32.png
index c0986eae9367..499bc8ff7fc9 100644
Binary files a/browser/branding/nightly/default32.png and b/browser/branding/nightly/default32.png differ
diff --git a/browser/branding/nightly/default48.png b/browser/branding/nightly/default48.png
index 1980ffb35c80..fc99e3829d5f 100644
Binary files a/browser/branding/nightly/default48.png and b/browser/branding/nightly/default48.png differ
diff --git a/browser/branding/nightly/default512.png b/browser/branding/nightly/default512.png
new file mode 100644
index 000000000000..4ff5f7fa3495
Binary files /dev/null and b/browser/branding/nightly/default512.png differ
diff --git a/browser/branding/nightly/default64.png b/browser/branding/nightly/default64.png
index 551c98d44431..5a84a5384942 100644
Binary files a/browser/branding/nightly/default64.png and b/browser/branding/nightly/default64.png differ
diff --git a/browser/branding/nightly/document.icns b/browser/branding/nightly/document.icns
index 8cb0f7f9dc32..4acf7a5d1a4b 100644
Binary files a/browser/branding/nightly/document.icns and b/browser/branding/nightly/document.icns differ
diff --git a/browser/branding/nightly/document.ico b/browser/branding/nightly/document.ico
index e5d0d840a7b4..ecb8e3dc6c73 100644
Binary files a/browser/branding/nightly/document.ico and b/browser/branding/nightly/document.ico differ
diff --git a/browser/branding/nightly/firefox.VisualElementsManifest.xml b/browser/branding/nightly/firefox.VisualElementsManifest.xml
index 85e09dd7a910..a71938708aff 100644
--- a/browser/branding/nightly/firefox.VisualElementsManifest.xml
+++ b/browser/branding/nightly/firefox.VisualElementsManifest.xml
@@ -8,5 +8,5 @@
Square150x150Logo='browser\VisualElements\VisualElements_150.png'
Square70x70Logo='browser\VisualElements\VisualElements_70.png'
ForegroundText='light'
- BackgroundColor='#20123a'/>
+ BackgroundColor='#1c191d'/>
</Application>
diff --git a/browser/branding/nightly/firefox.icns b/browser/branding/nightly/firefox.icns
index 643ddd4f5812..4b0adc0f5af7 100644
Binary files a/browser/branding/nightly/firefox.icns and b/browser/branding/nightly/firefox.icns differ
diff --git a/browser/branding/nightly/firefox.ico b/browser/branding/nightly/firefox.ico
index 240b64298f76..eb28c93ab25f 100644
Binary files a/browser/branding/nightly/firefox.ico and b/browser/branding/nightly/firefox.ico differ
diff --git a/browser/branding/nightly/firefox.svg b/browser/branding/nightly/firefox.svg
new file mode 100644
index 000000000000..c11b568b8553
--- /dev/null
+++ b/browser/branding/nightly/firefox.svg
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs>
+ <linearGradient x1="25.1281738%" y1="5.44281006%" x2="54.3792725%" y2="100%" id="linearGradient-1">
+ <stop stop-color="#00E1E8" offset="0%"></stop>
+ <stop stop-color="#3500FF" offset="100%"></stop>
+ </linearGradient>
+ <linearGradient x1="25.1281738%" y1="5.44281006%" x2="54.3792725%" y2="100%" id="linearGradient-2">
+ <stop stop-color="#00E1E8" offset="0%"></stop>
+ <stop stop-color="#3500FF" offset="100%"></stop>
+ </linearGradient>
+ <path d="M25,25 C152.50841,25 255.874399,127.979815 255.874399,255.011855 C255.874399,382.043895 152.50841,485.02371 25,485.02371 L25,25 Z" id="path-3"></path>
+ <filter x="-20.8%" y="-8.7%" width="134.7%" height="117.4%" filterUnits="objectBoundingBox" id="filter-4">
+ <feOffset dx="-8" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
+ <feGaussianBlur stdDeviation="12" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
+ <feColorMatrix values="0 0 0 0 0.0872579578 0 0 0 0 0.00490370801 0 0 0 0 0.234933036 0 0 0 0.5 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
+ </filter>
+ </defs>
+ <g id="Nightly" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
+ <g>
+ <circle id="background" fill-opacity="0.9" fill="#030004" fill-rule="nonzero" cx="256" cy="256" r="246"></circle>
+ <path d="M256.525143,465.439707 L256.525143,434.406609 C354.826191,434.122748 434.420802,354.364917 434.420802,255.992903 C434.420802,157.627987 354.826191,77.8701558 256.525143,77.5862948 L256.525143,46.5531962 C371.964296,46.8441537 465.446804,140.489882 465.446804,255.992903 C465.446804,371.503022 371.964296,465.155846 256.525143,465.439707 Z M256.525143,356.820314 C311.970283,356.529356 356.8487,311.516106 356.8487,255.992903 C356.8487,200.476798 311.970283,155.463547 256.525143,155.17259 L256.525143,124.146588 C329.115485,124.430449 387.881799,183.338693 387.881799,255.992903 C387.881799,328.654211 329.115485,387.562455 256.525143,387.846316 L256.525143,356.820314 Z M256.525143,201.718689 C286.266674,202.00255 310.3026,226.180407 310.3026,255.992903 C310.3026,285.812497 286.266674,309.990353 256.525143,310.274214 L256.525143,201.718689 Z M0,255.992903 C0,397.384044 114.60886,512 256,512 C397.384044,512 512,397.384044 512,255.992903 C512,114.60886 397.384044,2.842170
94e-14 256,2.84217094e-14 C114.60886,2.84217094e-14 0,114.60886 0,255.992903 Z" id="center" fill="url(#linearGradient-1)"></path>
+ <g id="half" transform="translate(140.437200, 255.011855) scale(-1, 1) translate(-140.437200, -255.011855) ">
+ <use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-3"></use>
+ <use fill="url(#linearGradient-2)" fill-rule="evenodd" xlink:href="#path-3"></use>
+ </g>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/browser/branding/nightly/firefox64.ico b/browser/branding/nightly/firefox64.ico
index 1f50606af6a1..eb28c93ab25f 100644
Binary files a/browser/branding/nightly/firefox64.ico and b/browser/branding/nightly/firefox64.ico differ
diff --git a/browser/branding/nightly/locales/en-US/brand.dtd b/browser/branding/nightly/locales/en-US/brand.dtd
index c56df31338b9..0b15c9978e01 100644
--- a/browser/branding/nightly/locales/en-US/brand.dtd
+++ b/browser/branding/nightly/locales/en-US/brand.dtd
@@ -2,10 +2,10 @@
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<!ENTITY brandShorterName "Nightly">
-<!ENTITY brandShortName "Nightly">
-<!ENTITY brandFullName "Firefox Nightly">
+<!ENTITY brandShorterName "Tor Browser">
+<!ENTITY brandShortName "Tor Browser">
+<!ENTITY brandFullName "Tor Browser">
<!-- LOCALIZATION NOTE (brandProductName):
This brand name can be used in messages where the product name needs to
remain unchanged across different versions (Nightly, Beta, etc.). -->
-<!ENTITY brandProductName "Firefox">
+<!ENTITY brandProductName "Tor Browser">
diff --git a/browser/branding/nightly/locales/en-US/brand.ftl b/browser/branding/nightly/locales/en-US/brand.ftl
index 5610fc32f559..22d5f837b093 100644
--- a/browser/branding/nightly/locales/en-US/brand.ftl
+++ b/browser/branding/nightly/locales/en-US/brand.ftl
@@ -19,4 +19,4 @@
# remain unchanged across different versions (Nightly, Beta, etc.).
-brand-product-name = Firefox
-vendor-short-name = Mozilla
-trademarkInfo = { " " }
+trademarkInfo = Firefox and the Firefox logos are trademarks of the Mozilla Foundation.
diff --git a/browser/branding/nightly/locales/en-US/brand.properties b/browser/branding/nightly/locales/en-US/brand.properties
index d93d128b7514..e96b063b9034 100644
--- a/browser/branding/nightly/locales/en-US/brand.properties
+++ b/browser/branding/nightly/locales/en-US/brand.properties
@@ -2,13 +2,13 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-brandShorterName=Nightly
-brandShortName=Nightly
-brandFullName=Firefox Nightly
+brandShorterName=Tor Browser
+brandShortName=Tor Browser
+brandFullName=Tor Browser
# LOCALIZATION NOTE(brandProductName):
# This brand name can be used in messages where the product name needs to
# remain unchanged across different versions (Nightly, Beta, etc.).
-brandProductName=Firefox
-vendorShortName=Mozilla
+brandProductName=Tor Browser
+vendorShortName=Tor Project
syncBrandShortName=Sync
diff --git a/browser/branding/nightly/locales/jar.mn b/browser/branding/nightly/locales/jar.mn
index c04a7a1cf0f0..d13c2110148f 100644
--- a/browser/branding/nightly/locales/jar.mn
+++ b/browser/branding/nightly/locales/jar.mn
@@ -4,10 +4,9 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
[localization] @AB_CD@.jar:
- branding (en-US/**/*.ftl)
+ branding (%*.ftl)
@AB_CD@.jar:
% locale branding @AB_CD@ %locale/branding/
-# Nightly branding only exists in en-US
- locale/branding/brand.dtd (en-US/brand.dtd)
- locale/branding/brand.properties (en-US/brand.properties)
+ locale/branding/brand.dtd (%brand.dtd)
+ locale/branding/brand.properties (%brand.properties)
diff --git a/browser/branding/nightly/locales/moz.build b/browser/branding/nightly/locales/moz.build
index 8bad13124d5a..eb4454d28f88 100644
--- a/browser/branding/nightly/locales/moz.build
+++ b/browser/branding/nightly/locales/moz.build
@@ -4,6 +4,4 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-DEFINES['MOZ_DISTRIBUTION_ID_UNQUOTED'] = CONFIG['MOZ_DISTRIBUTION_ID']
-
JAR_MANIFESTS += ['jar.mn']
\ No newline at end of file
diff --git a/browser/branding/nightly/wizHeader.bmp b/browser/branding/nightly/wizHeader.bmp
index 89eaf901254c..a754d2db1e11 100644
Binary files a/browser/branding/nightly/wizHeader.bmp and b/browser/branding/nightly/wizHeader.bmp differ
diff --git a/browser/branding/nightly/wizHeaderRTL.bmp b/browser/branding/nightly/wizHeaderRTL.bmp
index 451d87c70ef0..c944205be23f 100644
Binary files a/browser/branding/nightly/wizHeaderRTL.bmp and b/browser/branding/nightly/wizHeaderRTL.bmp differ
diff --git a/browser/branding/nightly/wizWatermark.bmp b/browser/branding/nightly/wizWatermark.bmp
index f9d6a870e952..9e523b5fa196 100644
Binary files a/browser/branding/nightly/wizWatermark.bmp and b/browser/branding/nightly/wizWatermark.bmp differ
diff --git a/browser/branding/official/VisualElements_150.png b/browser/branding/official/VisualElements_150.png
index f764a48966ca..acc02c97d827 100644
Binary files a/browser/branding/official/VisualElements_150.png and b/browser/branding/official/VisualElements_150.png differ
diff --git a/browser/branding/official/VisualElements_70.png b/browser/branding/official/VisualElements_70.png
index 197a645b4236..890a227e251a 100644
Binary files a/browser/branding/official/VisualElements_70.png and b/browser/branding/official/VisualElements_70.png differ
diff --git a/browser/branding/official/configure.sh b/browser/branding/official/configure.sh
index 92ef14e03f40..243091484f75 100644
--- a/browser/branding/official/configure.sh
+++ b/browser/branding/official/configure.sh
@@ -2,4 +2,4 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-MOZ_APP_DISPLAYNAME=Firefox
+MOZ_APP_DISPLAYNAME="Tor Browser"
diff --git a/browser/branding/official/content/identity-icons-brand.svg b/browser/branding/official/content/identity-icons-brand.svg
index fc8b1a356768..62472ad1826e 100644
--- a/browser/branding/official/content/identity-icons-brand.svg
+++ b/browser/branding/official/content/identity-icons-brand.svg
@@ -1,3 +1,31 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16">
- <path fill="context-fill" fill-opacity="context-fill-opacity" d="M15.424 5.366A4.384 4.384 0 0 0 13.817 3.4a7.893 7.893 0 0 1 .811 2.353v.017c-.9-2.185-2.441-3.066-3.7-4.984l-.189-.3c-.035-.059-.063-.112-.088-.161a1.341 1.341 0 0 1-.119-.306.022.022 0 0 0-.013-.019.026.026 0 0 0-.019 0h-.006a5.629 5.629 0 0 0-2.755 4.308c.094-.006.187-.014.282-.014a4.069 4.069 0 0 1 3.51 1.983A2.838 2.838 0 0 0 9.6 5.824a3.2 3.2 0 0 1-1.885 6.013 3.651 3.651 0 0 1-1.042-.2c-.078-.028-.157-.059-.235-.093-.046-.02-.091-.04-.135-.062A3.282 3.282 0 0 1 4.415 8.95s.369-1.334 2.647-1.334a1.91 1.91 0 0 0 .964-.857 12.756 12.756 0 0 1-1.941-1.118c-.29-.277-.428-.411-.551-.511-.066-.054-.128-.1-.207-.152a3.481 3.481 0 0 1-.022-1.894 5.915 5.915 0 0 0-1.929 1.442A4.108 4.108 0 0 1 3.1 2.584a1.561 1.561 0 0 0-.267.138 5.767 5.767 0 0 0-.783.649 6.9 6.9 0 0 0-.748.868 6.446 6.446 0 0 0-1.08 2.348c0 .009-.076.325-.131.715l-.025.182c-.019.117-.033.245-.048.444v.023c-.005.076-.011.16-.016.258v.04A7.884 7.884 0 0
0 8.011 16a7.941 7.941 0 0 0 7.9-6.44l.036-.3a7.724 7.724 0 0 0-.523-3.894z" />
-</svg>
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="512px" height="512px" viewBox="-17 -17 546 546" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs>
+ <linearGradient x1="50%" y1="100%" x2="50%" y2="0%" id="linearGradient-1">
+ <stop stop-color="#420C5D" offset="0%"></stop>
+ <stop stop-color="#951AD1" offset="100%"></stop>
+ </linearGradient>
+ <path d="M25,29 C152.577777,29 256,131.974508 256,259 C256,386.025492 152.577777,489 25,489 L25,29 Z" id="path-2"></path>
+ <filter x="-18.2%" y="-7.4%" width="129.4%" height="114.8%" filterUnits="objectBoundingBox" id="filter-3">
+ <feOffset dx="-8" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
+ <feGaussianBlur stdDeviation="10" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
+ <feColorMatrix values="0 0 0 0 0.250980392 0 0 0 0 0.250980392 0 0 0 0 0.250980392 0 0 0 0.2 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
+ </filter>
+ </defs>
+ <g id="Assets" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
+ <g id="icon_512x512">
+ <g id="Group">
+ <g id="tb_icon/Stable">
+ <g id="Stable">
+ <circle id="background" fill="#F2E4FF" fill-rule="nonzero" cx="256" cy="256" r="246"></circle>
+ <path d="M256.525143,465.439707 L256.525143,434.406609 C354.826191,434.122748 434.420802,354.364917 434.420802,255.992903 C434.420802,157.627987 354.826191,77.8701558 256.525143,77.5862948 L256.525143,46.5531962 C371.964296,46.8441537 465.446804,140.489882 465.446804,255.992903 C465.446804,371.503022 371.964296,465.155846 256.525143,465.439707 Z M256.525143,356.820314 C311.970283,356.529356 356.8487,311.516106 356.8487,255.992903 C356.8487,200.476798 311.970283,155.463547 256.525143,155.17259 L256.525143,124.146588 C329.115485,124.430449 387.881799,183.338693 387.881799,255.992903 C387.881799,328.654211 329.115485,387.562455 256.525143,387.846316 L256.525143,356.820314 Z M256.525143,201.718689 C286.266674,202.00255 310.3026,226.180407 310.3026,255.992903 C310.3026,285.812497 286.266674,309.990353 256.525143,310.274214 L256.525143,201.718689 Z M0,255.992903 C0,397.384044 114.60886,512 256,512 C397.384044,512 512,397.384044 512,255.992903 C512,114.60886 397.384
044,0 256,0 C114.60886,0 0,114.60886 0,255.992903 Z" id="center" fill="url(#linearGradient-1)"></path>
+ <g id="half" transform="translate(140.500000, 259.000000) scale(-1, 1) translate(-140.500000, -259.000000) ">
+ <use fill="black" fill-opacity="1" filter="url(#filter-3)" xlink:href="#path-2"></use>
+ <use fill="url(#linearGradient-1)" fill-rule="evenodd" xlink:href="#path-2"></use>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/browser/branding/official/content/jar.mn b/browser/branding/official/content/jar.mn
index 68b2bfd8e571..de166fe3636f 100644
--- a/browser/branding/official/content/jar.mn
+++ b/browser/branding/official/content/jar.mn
@@ -15,6 +15,8 @@ browser.jar:
content/branding/icon48.png (../default48.png)
content/branding/icon64.png (../default64.png)
content/branding/icon128.png (../default128.png)
+ content/branding/icon256.png (../default256.png)
+ content/branding/icon512.png (../default512.png)
content/branding/identity-icons-brand.svg
content/branding/aboutDialog.css
content/branding/horizontal-lockup.svg
diff --git a/browser/branding/official/default128.png b/browser/branding/official/default128.png
index b92d78ca6d09..18f3572d0d79 100644
Binary files a/browser/branding/official/default128.png and b/browser/branding/official/default128.png differ
diff --git a/browser/branding/official/default16.png b/browser/branding/official/default16.png
index fe860e46b1e7..904b84e49871 100644
Binary files a/browser/branding/official/default16.png and b/browser/branding/official/default16.png differ
diff --git a/browser/branding/official/default22.png b/browser/branding/official/default22.png
index 3aff987a8476..41cc3543d39f 100644
Binary files a/browser/branding/official/default22.png and b/browser/branding/official/default22.png differ
diff --git a/browser/branding/official/default24.png b/browser/branding/official/default24.png
index cfce6e7d64fd..195cae90d3ed 100644
Binary files a/browser/branding/official/default24.png and b/browser/branding/official/default24.png differ
diff --git a/browser/branding/official/default256.png b/browser/branding/official/default256.png
index ddc9d4db1f14..809dbad4ab16 100644
Binary files a/browser/branding/official/default256.png and b/browser/branding/official/default256.png differ
diff --git a/browser/branding/official/default32.png b/browser/branding/official/default32.png
index 67042dbb2b4a..e8e68eb4492c 100644
Binary files a/browser/branding/official/default32.png and b/browser/branding/official/default32.png differ
diff --git a/browser/branding/official/default48.png b/browser/branding/official/default48.png
index 765ea42459d3..e839211d260b 100644
Binary files a/browser/branding/official/default48.png and b/browser/branding/official/default48.png differ
diff --git a/browser/branding/official/default512.png b/browser/branding/official/default512.png
new file mode 100644
index 000000000000..23942859673d
Binary files /dev/null and b/browser/branding/official/default512.png differ
diff --git a/browser/branding/official/default64.png b/browser/branding/official/default64.png
index 39e77389022c..147a229fab8b 100644
Binary files a/browser/branding/official/default64.png and b/browser/branding/official/default64.png differ
diff --git a/browser/branding/official/disk.icns b/browser/branding/official/disk.icns
index 4353ef0965f3..3e2c44f187ce 100644
Binary files a/browser/branding/official/disk.icns and b/browser/branding/official/disk.icns differ
diff --git a/browser/branding/official/document.icns b/browser/branding/official/document.icns
index 50d9701405a5..27a776a12557 100644
Binary files a/browser/branding/official/document.icns and b/browser/branding/official/document.icns differ
diff --git a/browser/branding/official/document.ico b/browser/branding/official/document.ico
index fcec7dc15646..3e5d99012f89 100644
Binary files a/browser/branding/official/document.ico and b/browser/branding/official/document.ico differ
diff --git a/browser/branding/official/firefox.VisualElementsManifest.xml b/browser/branding/official/firefox.VisualElementsManifest.xml
index 85e09dd7a910..3b2f265df644 100644
--- a/browser/branding/official/firefox.VisualElementsManifest.xml
+++ b/browser/branding/official/firefox.VisualElementsManifest.xml
@@ -8,5 +8,5 @@
Square150x150Logo='browser\VisualElements\VisualElements_150.png'
Square70x70Logo='browser\VisualElements\VisualElements_70.png'
ForegroundText='light'
- BackgroundColor='#20123a'/>
+ BackgroundColor='#420c5e'/>
</Application>
diff --git a/browser/branding/official/firefox.icns b/browser/branding/official/firefox.icns
index 3cc884734c9d..b9874461e519 100644
Binary files a/browser/branding/official/firefox.icns and b/browser/branding/official/firefox.icns differ
diff --git a/browser/branding/official/firefox.ico b/browser/branding/official/firefox.ico
index d8ba663ba76e..db0a9af865b6 100644
Binary files a/browser/branding/official/firefox.ico and b/browser/branding/official/firefox.ico differ
diff --git a/browser/branding/official/firefox.svg b/browser/branding/official/firefox.svg
new file mode 100644
index 000000000000..9240dc6e84ca
--- /dev/null
+++ b/browser/branding/official/firefox.svg
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs>
+ <linearGradient x1="50%" y1="100%" x2="50%" y2="0%" id="linearGradient-1">
+ <stop stop-color="#420C5D" offset="0%"></stop>
+ <stop stop-color="#951AD1" offset="100%"></stop>
+ </linearGradient>
+ <path d="M25,29 C152.577777,29 256,131.974508 256,259 C256,386.025492 152.577777,489 25,489 L25,29 Z" id="path-2"></path>
+ <filter x="-18.2%" y="-7.4%" width="129.4%" height="114.8%" filterUnits="objectBoundingBox" id="filter-3">
+ <feOffset dx="-8" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
+ <feGaussianBlur stdDeviation="10" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
+ <feColorMatrix values="0 0 0 0 0.250980392 0 0 0 0 0.250980392 0 0 0 0 0.250980392 0 0 0 0.2 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
+ </filter>
+ </defs>
+ <g id="Assets" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
+ <g id="icon_512x512">
+ <g id="Group">
+ <g id="tb_icon/Stable">
+ <g id="Stable">
+ <circle id="background" fill="#F2E4FF" fill-rule="nonzero" cx="256" cy="256" r="246"></circle>
+ <path d="M256.525143,465.439707 L256.525143,434.406609 C354.826191,434.122748 434.420802,354.364917 434.420802,255.992903 C434.420802,157.627987 354.826191,77.8701558 256.525143,77.5862948 L256.525143,46.5531962 C371.964296,46.8441537 465.446804,140.489882 465.446804,255.992903 C465.446804,371.503022 371.964296,465.155846 256.525143,465.439707 Z M256.525143,356.820314 C311.970283,356.529356 356.8487,311.516106 356.8487,255.992903 C356.8487,200.476798 311.970283,155.463547 256.525143,155.17259 L256.525143,124.146588 C329.115485,124.430449 387.881799,183.338693 387.881799,255.992903 C387.881799,328.654211 329.115485,387.562455 256.525143,387.846316 L256.525143,356.820314 Z M256.525143,201.718689 C286.266674,202.00255 310.3026,226.180407 310.3026,255.992903 C310.3026,285.812497 286.266674,309.990353 256.525143,310.274214 L256.525143,201.718689 Z M0,255.992903 C0,397.384044 114.60886,512 256,512 C397.384044,512 512,397.384044 512,255.992903 C512,114.60886 397.384
044,0 256,0 C114.60886,0 0,114.60886 0,255.992903 Z" id="center" fill="url(#linearGradient-1)"></path>
+ <g id="half" transform="translate(140.500000, 259.000000) scale(-1, 1) translate(-140.500000, -259.000000) ">
+ <use fill="black" fill-opacity="1" filter="url(#filter-3)" xlink:href="#path-2"></use>
+ <use fill="url(#linearGradient-1)" fill-rule="evenodd" xlink:href="#path-2"></use>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/browser/branding/official/firefox64.ico b/browser/branding/official/firefox64.ico
index c3a32449d27a..db0a9af865b6 100644
Binary files a/browser/branding/official/firefox64.ico and b/browser/branding/official/firefox64.ico differ
diff --git a/browser/branding/official/locales/en-US/brand.dtd b/browser/branding/official/locales/en-US/brand.dtd
index d094ad0f8d01..0b15c9978e01 100644
--- a/browser/branding/official/locales/en-US/brand.dtd
+++ b/browser/branding/official/locales/en-US/brand.dtd
@@ -2,10 +2,10 @@
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<!ENTITY brandShorterName "Firefox">
-<!ENTITY brandShortName "Firefox">
-<!ENTITY brandFullName "Mozilla Firefox">
+<!ENTITY brandShorterName "Tor Browser">
+<!ENTITY brandShortName "Tor Browser">
+<!ENTITY brandFullName "Tor Browser">
<!-- LOCALIZATION NOTE (brandProductName):
This brand name can be used in messages where the product name needs to
remain unchanged across different versions (Nightly, Beta, etc.). -->
-<!ENTITY brandProductName "Firefox">
+<!ENTITY brandProductName "Tor Browser">
diff --git a/browser/branding/official/locales/en-US/brand.properties b/browser/branding/official/locales/en-US/brand.properties
index 568f227d4cee..e96b063b9034 100644
--- a/browser/branding/official/locales/en-US/brand.properties
+++ b/browser/branding/official/locales/en-US/brand.properties
@@ -2,13 +2,13 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-brandShorterName=Firefox
-brandShortName=Firefox
-brandFullName=Mozilla Firefox
+brandShorterName=Tor Browser
+brandShortName=Tor Browser
+brandFullName=Tor Browser
# LOCALIZATION NOTE(brandProductName):
# This brand name can be used in messages where the product name needs to
# remain unchanged across different versions (Nightly, Beta, etc.).
-brandProductName=Firefox
-vendorShortName=Mozilla
+brandProductName=Tor Browser
+vendorShortName=Tor Project
syncBrandShortName=Sync
diff --git a/browser/branding/official/wizHeader.bmp b/browser/branding/official/wizHeader.bmp
index 420824226dfe..a754d2db1e11 100644
Binary files a/browser/branding/official/wizHeader.bmp and b/browser/branding/official/wizHeader.bmp differ
diff --git a/browser/branding/official/wizHeaderRTL.bmp b/browser/branding/official/wizHeaderRTL.bmp
index 7f74929910bd..c944205be23f 100644
Binary files a/browser/branding/official/wizHeaderRTL.bmp and b/browser/branding/official/wizHeaderRTL.bmp differ
diff --git a/browser/branding/official/wizWatermark.bmp b/browser/branding/official/wizWatermark.bmp
index b3b3c91d327c..9e523b5fa196 100644
Binary files a/browser/branding/official/wizWatermark.bmp and b/browser/branding/official/wizWatermark.bmp differ
diff --git a/browser/components/newtab/data/content/activity-stream.bundle.js b/browser/components/newtab/data/content/activity-stream.bundle.js
index c8fb360a6724..a49d80f05cf7 100644
--- a/browser/components/newtab/data/content/activity-stream.bundle.js
+++ b/browser/components/newtab/data/content/activity-stream.bundle.js
@@ -16597,4 +16597,4 @@ class OnboardingMessage_OnboardingCard extends external_React_default.a.PureComp
}
/***/ })
-/******/ ]);
\ No newline at end of file
+/******/ ]);
diff --git a/browser/extensions/onboarding/content/img/tor-watermark.png b/browser/extensions/onboarding/content/img/tor-watermark.png
new file mode 100644
index 000000000000..4c7885e0235b
Binary files /dev/null and b/browser/extensions/onboarding/content/img/tor-watermark.png differ
diff --git a/browser/themes/shared/identity-block/identity-block.inc.css b/browser/themes/shared/identity-block/identity-block.inc.css
index e358a3e23f82..27a990e08bc8 100644
--- a/browser/themes/shared/identity-block/identity-block.inc.css
+++ b/browser/themes/shared/identity-block/identity-block.inc.css
@@ -61,6 +61,16 @@
-moz-outline-radius: var(--toolbarbutton-border-radius);
}
+%ifdef MOZ_OFFICIAL_BRANDING
+#identity-box[pageproxystate="valid"].chromeUI > #identity-icon-label {
+ color: #420C5D;
+}
+
+toolbar[brighttext] #identity-box[pageproxystate="valid"].chromeUI > #identity-icon-label {
+ color: #CC80FF;
+}
+%endif
+
#identity-box[pageproxystate="valid"].chromeUI > #identity-icon-label,
.urlbar-label {
opacity: .6;
diff --git a/config/version.mk b/config/version.mk
index 883eafed48d3..20569b72d0fe 100644
--- a/config/version.mk
+++ b/config/version.mk
@@ -15,7 +15,7 @@ ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
ifndef RESFILE
RCFILE=./module.rc
RESFILE=./module.res
-_RC_STRING = -QUIET 1 -DEPTH $(DEPTH) -TOPSRCDIR $(MOZILLA_DIR) -OBJDIR . -SRCDIR $(srcdir) -DISPNAME "$(MOZ_APP_DISPLAYNAME)" -APPVERSION $(MOZ_APP_VERSION)
+_RC_STRING = -QUIET 1 -DEPTH $(DEPTH) -TOPSRCDIR $(MOZILLA_DIR) -OBJDIR . -SRCDIR $(srcdir) -DISPNAME "$(MOZ_APP_DISPLAYNAME)" -APPVERSION "$(MOZ_APP_VERSION)"
ifdef MOZILLA_OFFICIAL
_RC_STRING += -OFFICIAL 1
endif
diff --git a/devtools/client/themes/images/aboutdebugging-firefox-aurora.svg b/devtools/client/themes/images/aboutdebugging-firefox-aurora.svg
index d4c0cdace9fe..9240dc6e84ca 100644
--- a/devtools/client/themes/images/aboutdebugging-firefox-aurora.svg
+++ b/devtools/client/themes/images/aboutdebugging-firefox-aurora.svg
@@ -1,4 +1,31 @@
-<!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><defs><linearGradient x1="42%" y1="-10%" x2="61%" y2="114%" id="f"><stop stop-color="#AAF2FF" offset="0%"/><stop stop-color="#0DF" offset="29%"/><stop stop-color="#0090ED" offset="61%"/><stop stop-color="#0250BB" offset="89%"/></linearGradient><linearGradient x1="38%" y1="0%" x2="63%" y2="124%" id="g"><stop stop-color="#AAF2FF" offset="0%"/><stop stop-color="#0DF" offset="29%"/><stop stop-color="#0090ED" offset="74%"/><stop stop-color="#0250BB" offset="100%"/></linearGradient><linearGradient x1="86%" y1="15%" x2="20%" y2="84%" id="k"><stop stop-color="#80EBFF" stop-opacity=".5" offset="24%"/><stop stop-color="#0DF" stop-opacity="0" offset="70%"/></linearGradient><linearGradient x1="61%" y1="-10%" x2="20%" y2="149%" id="l"><stop stop-color="#BFF3FF" stop-opacity=".9" offset="0%"/><stop stop-color="#80EBFF" stop-opacity=".5" offset="100%"/></linearGradient><linearGradient x1="51%" y1="-2%" x2="48%" y2="139%" id="m"><stop st
op-color="#BFF3FF" offset="0%"/><stop stop-color="#0DF" stop-opacity="0" offset="100%"/></linearGradient><linearGradient x1="52%" y1="-4%" x2="47%" y2="143%" id="n"><stop stop-color="#BFF3FF" offset="0%"/><stop stop-color="#AAF2FF" stop-opacity=".5" offset="100%"/></linearGradient><linearGradient x1="53%" y1="-2%" x2="47%" y2="142%" id="o"><stop stop-color="#BFF3FF" offset="0%"/><stop stop-color="#0DF" stop-opacity="0" offset="100%"/></linearGradient><linearGradient x1="49%" y1="-2%" x2="57%" y2="123%" id="p"><stop stop-color="#BFF3FF" stop-opacity=".8" offset="0%"/><stop stop-color="#80EBFF" stop-opacity=".2" offset="100%"/></linearGradient><linearGradient x1="117%" y1="-23%" x2="24%" y2="128%" id="q"><stop stop-color="#BFF3FF" stop-opacity=".8" offset="0%"/><stop stop-color="#80EBFF" stop-opacity=".2" offset="100%"/></linearGradient><linearGradient x1="52%" y1="-1%" x2="47%" y2="137%" id="r"><stop stop-color="#0DF" stop-opacity=".4" offset="0%"/><stop stop-color="#0DF" stop-opacit
y="0" offset="100%"/></linearGradient><linearGradient x1="50%" y1="-12%" x2="50%" y2="99%" id="s"><stop stop-color="#BFF3FF" offset="0%"/><stop stop-color="#0DF" stop-opacity="0" offset="100%"/></linearGradient><linearGradient x1="53%" y1="-3%" x2="47%" y2="142%" id="t"><stop stop-color="#BFF3FF" stop-opacity=".8" offset="0%"/><stop stop-color="#0DF" stop-opacity="0" offset="100%"/></linearGradient><radialGradient cx="55%" cy="25%" r="60%" id="a"><stop stop-color="#0DF" stop-opacity=".4" offset="10%"/><stop stop-color="#7542E5" stop-opacity=".25" offset="90%"/></radialGradient><radialGradient cx="49.238%" cy="52.7%" fx="49%" fy="52.7%" r="51%" id="b"><stop stop-color="#7542E5" stop-opacity="0" offset="91%"/><stop stop-color="#0DF" stop-opacity=".4" offset="100%"/></radialGradient><radialGradient cx="86%" cy="-13%" fx="86%" fy="-13%" r="128%" gradientTransform="matrix(.81263 0 0 1 .16 0)" id="c"><stop stop-color="#80EBFF" offset="0%"/><stop stop-color="#0DF" offset="26%"/><stop stop-
color="#0090ED" offset="53%"/><stop stop-color="#0060DF" offset="86%"/></radialGradient><radialGradient cx="47.729%" cy="40%" fx="48%" fy="40%" r="128%" gradientTransform="matrix(.81263 0 0 1 .09 0)" id="d"><stop stop-color="#321C64" stop-opacity=".8" offset="30%"/><stop stop-color="#212F83" stop-opacity=".5" offset="37%"/><stop stop-color="#0A47AC" stop-opacity=".14" offset="48%"/><stop stop-color="#0250BB" stop-opacity="0" offset="53%"/></radialGradient><radialGradient cx="90%" cy="-50%" r="210%" gradientTransform="matrix(.83857 0 0 1 .128 0)" id="e"><stop stop-color="#80EBFF" offset="0%"/><stop stop-color="#00B3F4" offset="47%"/><stop stop-color="#0060DF" offset="84%"/><stop stop-color="#592ACB" offset="100%"/></radialGradient><radialGradient cx="208%" cy="-104%" fx="208%" fy="-104%" r="300%" gradientTransform="matrix(1 0 0 .99746 0 -.003)" id="h"><stop stop-color="#0DF" offset="0%"/><stop stop-color="#0090ED" offset="82%"/></radialGradient><radialGradient cx="155%" cy="-45%" fx=
"155%" fy="-45%" r="313%" gradientTransform="matrix(.8937 0 0 1 .165 0)" id="i"><stop stop-color="#80EBFF" offset="29%"/><stop stop-color="#00B3F4" offset="100%"/></radialGradient><radialGradient cx="15%" cy="-43%" fx="15%" fy="-43%" r="230%" gradientTransform="matrix(.9814 0 0 1 .003 0)" id="j"><stop stop-color="#AAF2FF" offset="18%"/><stop stop-color="#0DF" offset="43%"/><stop stop-color="#0060DF" offset="69%"/></radialGradient></defs><path fill="#09204d" d="M146.622 289.098l15.141 41.978 22.752 30.697 53.417 10.188 25.555 2.174 43.626-10.899 18.794-18.015-179.285-56.123z"/><path fill="#09204d" d="M372.686 227.178l-5.348-17.744-15.292-28.856-17.493-18.437-18.57-13.258-16.124-6.329-19.347-6.882-31.855-2.027-20.087 3.625-16.39 5.038-29.082 17.02-18.176 20.277-16.76 27.22-6.593 23.164-1.232 35.146 6.285 23.963 13.863 27.282 9.778 13.177 13.52 12.395 16.886 11.423 20.822 9.056 34.846 4.09 18.195.507 26.929-7.585 24.07-13.21 15.486-13.211 12.008-14.326 16.977-33.232 3.748-22.733-1.064-
35.553z"/><path fill="#0e56d7" d="M249.24 149.615l-14.266 14.154 23.271 9.433 17.311-21.467-26.316-2.12z"/><path fill="#1053d1" d="M258.245 173.202l45.053-1.367-27.742-20.1-17.311 21.467z"/><path fill="#0b4fbf" d="M299.951 151.584l-24.395.151 27.742 20.1 25.654-1.675-29.001-18.576z"/><path fill="#0b48b0" d="M328.952 170.16l-14.584-20.11 20.185 12.091-5.601 8.019z"/><path fill="#0c45a7" d="M348.265 182.475l-19.313-12.315 5.601-8.019 13.712 20.334z"/><path fill="#0f46af" d="M328.952 170.16l-3.231 13.777 17.664 7.06-14.433-20.837z"/><path fill="#0c47ad" d="M328.952 170.16l19.313 12.315-4.88 8.522-14.433-20.837z"/><path fill="#0e4fc3" d="M303.298 171.835l25.654-1.675-3.231 13.777-22.423-12.102z"/><path fill="#174dca" d="M303.298 171.835l-20.269 18.347 26.087 12.775-5.818-31.122z"/><path fill="#1650d4" d="M258.245 173.202l45.053-1.367-20.269 18.347-24.784-16.98z"/><path fill="#1246b2" d="M325.721 183.937l12.268 23.791 5.396-16.731-17.664-7.06z"/><path fill="#133ea1" d="M337.989 207.728l5
.396-16.731 12.853 30.569-18.249-13.838z"/><path fill="#103d98" d="M343.385 190.997l19.589 14.346-6.736 16.223-12.853-30.569z"/><path fill="#0b3785" d="M348.265 182.475l3.781-1.897 10.928 24.765-14.709-22.868z"/><path fill="#0b3685" d="M362.974 205.343l4.364 4.091-15.292-28.856 10.928 24.765z"/><path d="M362.974 205.342l-14.709-22.867-4.88 8.525zm-28.421-43.2l13.712 20.334 3.781-1.9z" fill="#0c3b91"/><path fill="#0b3279" d="M371.703 241.042l-4.365-31.608 5.348 17.744-1.054 13.864h.071z"/><path fill="#0f388d" d="M362.974 205.343l8.729 35.699-4.365-31.608-4.364-4.091z"/><path fill="#0d3481" d="M356.238 221.566l15.465 19.476-8.729-35.699-6.736 16.223z"/><path fill="#0b2e71" d="M371.632 241.042l1.054-13.864 1.064 35.553-2.047-21.689h-.071z"/><path fill="#0e2f77" d="M369.111 269.139l4.639-6.408-2.047-21.689-2.592 28.097z"/><path fill="#0e2969" d="M370.002 285.464l-3.709 1.787 7.457-24.52-3.748 22.733z"/><path fill="#0c2a69" d="M366.293 287.251l7.457-24.52-4.639 6.408-2.818 18.112z"/><pat
h fill="#123180" d="M369.111 269.139l2.592-28.097-7.945 9.372 5.353 18.725z"/><path fill="#112b70" d="M366.293 287.251l2.818-18.112-15.324 25.753 12.506-7.641z"/><path fill="#12378c" d="M356.238 221.566l15.465 19.476-7.945 9.372-7.52-28.848z"/><path fill="#122e7b" d="M369.111 269.139l-5.353-18.725-8.079 23.064 13.432-4.339z"/><path fill="#11296c" d="M353.025 318.696l13.268-31.445-12.413 22.923-.855 8.522z"/><path fill="#142a72" d="M353.88 310.174l12.413-22.923-12.506 7.641.093 15.282z"/><path d="M366.293 287.251L353.025 318.7 370 285.464zm-25.276 45.771l12.008-14.322.855-8.522zm-15.486 13.211l15.486-13.211-16.366 7.527z" fill="#112768"/><path fill="#1c226a" d="M235.149 355.435l-15.646 3.827.477-10.919 15.169 7.092z"/><path fill="#182b7a" d="M148.162 206.825l4.313-1.598-10.906 24.762 6.593-23.164z"/><path fill="#1f308d" d="M141.569 229.989l8.257-1.536 2.649-23.226-10.906 24.762z"/><path fill="#1e2b7f" d="M142.062 259.728l-.493-29.739 8.257-1.536-7.764 31.275z"/><path d="M325.721 183.
937l-16.605 19.02 28.873 4.771zm-144.9-19.509l21.2-14.5-18.916 9.4z" fill="#1346b5"/><path fill="#1244ac" d="M183.098 159.328l29.082-17.02-10.166 7.619-18.916 9.401"/><path fill="#0e4ab6" d="M202.014 149.927l26.556-12.657-16.39 5.038-10.166 7.619z"/><path d="M303.3 171.835l5.818 31.122 16.605-19.02zm-85.11-23.382l24.738-9.893-14.356-1.29z" fill="#0e4bba"/><path fill="#0a4ebc" d="M248.657 133.645l-20.087 3.625 14.356 1.29 5.731-4.915z"/><path fill="#0c54cc" d="M267.655 138.314l-24.729.246 5.731-4.915"/><path d="M314.368 150.05l-14.417 1.534 29 18.576zm-46.713-11.736l32.2 4.24-19.347-6.882z" fill="#0b4bb4"/><path fill="#0c3889" d="M314.368 150.05l-14.509-7.496 16.124 6.329-1.615 1.167z"/><path d="M146.622 289.1l9.52 7.834-14.079-37.2zm131.394 73.985l8.369-19.7-30.5 8.194zm8.369-19.7l25.5 7.075 1.547-19.716z" fill="#202575"/><path fill="#1b2773" d="M324.651 340.549l-11.222-9.81 27.114-18.018-15.892 27.828z"/><path fill="#15276d" d="M340.544 312.721l-15.893 27.828 16.366-7.527 12.863-22
.848-13.336 2.547z"/><path d="M315.983 148.883l-1.615 1.167 20.185 12.091zm-16.032 2.7l14.417-1.534-14.509-7.5z" fill="#0c409d"/><path d="M248.657 133.645l19 4.669 12.857-2.642zm51.2 8.909l-32.2-4.24 32.3 13.27z" fill="#0b4cb7"/><path fill="#0b55ce" d="M267.655 138.314l7.901 13.421 24.395-.151-32.296-13.27z"/><path fill="#0a52c5" d="M267.655 138.314l7.901 13.421-26.316-2.119 18.415-11.302z"/><path fill="#0951c4" d="M242.926 138.56l6.314 11.056 18.415-11.302-24.729.246z"/><path fill="#0b50c4" d="M218.188 148.453l24.738-9.893 6.314 11.056-31.052-1.163z"/><path d="M202.014 149.927l16.174-1.474 10.382-11.183zm16.174-1.474l16.786 15.316 14.266-14.154z" fill="#0f4dbf"/><path fill="#1546b6" d="M218.188 148.453l-27.326 25.622 11.152-24.148 16.174-1.474z"/><path fill="#1549bd" d="M190.862 174.075l17.437 2.9 9.889-28.522-27.326 25.622z"/><path fill="#144bc3" d="M208.299 176.975l9.889-28.522 16.787 15.316-26.676 13.206z"/><path fill="#173794" d="M164.922 179.605l1.062 10.307 14.834-25.484-15.8
96 15.177z"/><path fill="#192f84" d="M152.475 205.227l12.447-25.622 1.062 10.307-13.509 15.315z"/><path fill="#1a389b" d="M165.984 189.912l14.834-25.484 10.044 9.647-24.878 15.837z"/><path fill="#1d3089" d="M165.086 212.006l.898-22.094-13.509 15.315 12.611 6.779z"/><path fill="#1e389f" d="M165.086 212.006l.898-22.094 17.53 14.231-18.428 7.863z"/><path fill="#1c40af" d="M183.514 204.143l7.348-30.068-24.878 15.837 17.53 14.231z"/><path fill="#1e41b7" d="M183.514 204.143l7.348-30.068 17.437 2.9-24.785 27.168z"/><path fill="#192c7d" d="M149.826 228.453l2.649-23.226 12.611 6.779-15.26 16.447z"/><path d="M278.016 363.083l23.445-3.64 10.42-8.989zm-137.679-97.948l1.726-5.407-.494-29.739zm9.489-36.682l-7.763 31.275 14.079 37.2-6.871-43.1z" fill="#162467"/><path fill="#1a236a" d="M156.141 296.933l11.615 1.628-8.133-18.986-3.482 17.358z"/><path d="M324.651 340.549l-12.77 9.905-10.42 8.989 24.07-13.21zm-68.314 25.972l18.195.507 26.929-7.585-23.445 3.64zm-89.358-48l12.207 2.348-11.43-22.3z" fill
="#132668"/><path d="M219.98 348.343l-20.668-15.908-8.59 8.259 28.778 18.568zM146.622 289.1l13.863 27.282-4.343-19.448zm-6.285-23.963l6.285 23.963-4.559-29.37zm115.547 86.438l-35.9-3.23 15.169 7.093-15.653 3.824-18.834-5.887 20.822 9.056 34.846 4.09 21.679-3.438zm-88.128-53.012l-11.614-1.629 10.837 21.585zm-18.485-44.733l6.871 43.1 3.481-17.358zm29.915 67.035l-12.207-2.348-6.494-2.137 9.778 13.177 13.52 12.395 16.886 11.423-9.947-12.681z" fill="#1b2268"/><path fill="#212a81" d="M149.826 228.453l16.39 25.352-1.13-41.799-15.26 16.447z"/><path fill="#21267a" d="M149.271 253.829l10.352 25.746 6.593-25.77-16.945.024z"/><path fill="#262781" d="M159.623 279.575l6.593-25.77 8.194 20.362-14.787 5.408z"/><path fill="#272379" d="M167.756 298.561l31.424 19.472-24.77-43.866-6.654 24.394z"/><path d="M160.485 316.38l6.494 2.137-10.837-21.585zm69.413 11.2l-9.918 20.759 35.9 3.23zm-62.142-29.023l11.43 22.3 11.536 19.829 8.59-8.259-.132-14.4z" fill="#1e226d"/><path d="M313.428 330.738l-1.547 19.716 1
2.77-9.905zm-54.935-2.829l-2.609 23.664 30.5-8.194-1.086-26.6z" fill="#222475"/><path d="M149.271 253.83l16.944-.025-16.389-25.352zM285.3 316.777l1.086 26.6 27.043-12.641z" fill="#23277d"/><path fill="#1e2776" d="M285.299 316.777l17.405-15.76 10.725 29.722-28.13-13.962z"/><path fill="#222b86" d="M313.429 330.739l13.156-39.844-23.881 10.122 10.725 29.722z"/><path fill="#192974" d="M340.543 312.721l-27.114 18.018 13.156-39.844 13.958 21.826z"/><path fill="#172a75" d="M353.787 294.892l-27.202-3.998 13.959 21.827 13.336-2.547-.093-15.282z"/><path fill="#172d7d" d="M355.679 273.478l-29.094 17.416 27.202 3.998 15.324-25.753-13.432 4.339z"/><path d="M152.475 205.227l12.447-25.622-16.76 27.22zm192.352 31.713l10.852 36.538 8.079-23.064z" fill="#18338a"/><path fill="#153791" d="M363.758 250.414l-7.52-28.848-11.411 15.373 18.931 13.475z"/><path fill="#1b318b" d="M326.585 290.895l29.094-17.417-28.198-12.552-.896 29.969z"/><path fill="#242d8d" d="M326.585 290.895l-26.367-26.642 2.486 36.764 23.8
81-10.122z"/><path fill="#2a2b8f" d="M285.299 316.777l-20.243-17.923 37.648 2.163-17.405 15.76z"/><path d="M167.756 298.561l6.654-24.393-14.787 5.406zm97.3.293l-6.563 29.055 26.807-11.132z" fill="#27267f"/><path fill="#2d2381" d="M223.15 304.797l-19.487-9.905-4.483 23.141 30.718 9.551 28.595.325-35.343-23.112z"/><path fill="#2f2485" d="M258.492 327.909l6.564-29.055-41.906 5.943 35.342 23.112z"/><path fill="#233196" d="M166.216 253.805l8.406-26.833-9.536-14.966 1.13 41.799z"/><path fill="#293cb7" d="M183.514 204.143l36.893-10.754-19.487 39.809-17.406-29.055z"/><path fill="#25339c" d="M326.585 290.895l-26.367-26.642 27.263-3.327-.896 29.969z"/><path fill="#19348f" d="M355.679 273.478l-10.852-36.539-17.346 23.987 28.198 12.552z"/><path fill="#2a309a" d="M302.704 301.017l-30.153-29.154 27.667-7.61 2.486 36.764z"/><path fill="#302b96" d="M265.056 298.854l37.648 2.163-30.153-29.154-7.495 26.991z"/><path fill="#3630a7" d="M265.056 298.854l-20.622-16.791 28.117-10.2-7.495 26.991z"/><path d=
"M180.818 164.428l2.28-5.1-18.176 20.277zm157.171 43.3l6.838 29.212 11.411-15.374z" fill="#173da2"/><path fill="#2a36a8" d="M183.514 204.143l17.406 29.055-26.298-6.226 8.892-22.829z"/><path fill="#312e9f" d="M174.622 226.972l26.298 6.226-17.784 28.011-8.514-34.237z"/><path fill="#184dcd" d="M220.407 193.389l14.568-29.62-26.676 13.206 12.108 16.414z"/><path fill="#272986" d="M166.216 253.805l16.92 7.404-8.726 12.958-8.194-20.362z"/><path fill="#2c2584" d="M183.136 261.209l-8.726 12.959 24.77 43.865 4.483-23.141-20.527-33.683z"/><path fill="#32268b" d="M203.663 294.892l2.744-40.752-23.271 7.069 20.527 33.683z"/><path fill="#372999" d="M203.663 294.892l40.771-12.829-38.027-27.923-2.744 40.752z"/><path fill="#392da5" d="M244.434 282.063l-3.973-31.508-34.054 3.585 38.027 27.923z"/><path fill="#3338bc" d="M240.461 250.555l28.757-10.754 3.333 32.062-32.09-21.308z"/><path fill="#362896" d="M223.15 304.797l41.906-5.943-20.622-16.791-21.284 22.734z"/><path fill="#35268f" d="M223.15 304.797l-1
9.487-9.905 40.771-12.829-21.284 22.734z"/><path fill="#2648d3" d="M220.407 193.389l24.973 2.642-10.405-32.262-14.568 29.62z"/><path fill="#1057dc" d="M258.245 173.202l-23.27-9.433 10.405 32.262 12.865-22.829z"/><path fill="#1653da" d="M258.245 173.202l24.784 16.98-37.649 5.849 12.865-22.829z"/><path fill="#2b46d5" d="M245.38 196.031l36.93 19.583-13.092 24.187-23.838-43.77z"/><path fill="#244ad7" d="M282.31 215.614l.719-25.432-37.649 5.849 36.93 19.583z"/><path fill="#2547cf" d="M282.31 215.614l.719-25.432 26.087 12.775-26.806 12.657z"/><path fill="#333cc5" d="M245.38 196.031l23.838 43.77-41.811-20.942 17.973-22.828z"/><path fill="#3833b6" d="M240.461 250.555l28.757-10.754-41.811-20.942 13.054 31.696z"/><path fill="#2a41c6" d="M269.218 239.801l36.876-6.735-23.784-17.452-13.092 24.187z"/><path fill="#2045c1" d="M309.116 202.957l-3.022 30.109-23.784-17.452 26.806-12.657z"/><path fill="#1b43b7" d="M309.116 202.957l17.406 23.638-20.428 6.471 3.022-30.109z"/><path fill="#1742af" d="M337.
989 207.728l-28.873-4.771 17.406 23.638 11.467-18.867z"/><path d="M190.862 174.075l11.152-24.148-21.2 14.5zm147.127 33.653L326.522 226.6l18.305 10.345z" fill="#1740a9"/><path fill="#1b3ca4" d="M327.481 260.926l17.346-23.987-18.305-10.344.959 34.331z"/><path fill="#1f3dad" d="M327.481 260.926l-.959-34.331-20.428 6.471 21.387 27.86z"/><path d="M183.515 204.143l36.892-10.754-12.107-16.414zm85.7 35.658l31 24.452 5.876-31.187z" fill="#2543c3"/><path fill="#2e37b2" d="M272.551 271.863l27.667-7.61-31-24.452 3.333 32.062z"/><path fill="#2d40c7" d="M220.407 193.389l7 25.47 17.973-22.828-24.973-2.642z"/><path fill="#3537b8" d="M220.407 193.389l-19.487 39.809 26.487-14.339-7-25.47z"/><path fill="#3931b0" d="M227.407 218.859l-21 35.281 34.054-3.585-13.054-31.696z"/><path d="M240.461 250.555l3.973 31.508 28.117-10.2zm-34.054 3.585l21-35.28-26.487 14.34z" fill="#3735b8"/><path fill="#342892" d="M183.136 261.209l17.784-28.011 5.487 20.942-23.271 7.069z"/><path d="M200.669 353.375l18.834 5.887-28.7
81-18.568zm-1.357-20.94l20.668 15.908 9.918-20.759-30.718-9.551zm56.572 19.138l2.609-23.664-28.595-.325zm30.5-8.194l-8.369 19.7 33.865-12.629z" fill="#232372"/><path fill="#2a2f96" d="M166.216 253.805l8.406-26.833 8.514 34.237-16.92-7.404z"/><path d="M174.622 226.972l8.893-22.829-18.429 7.863zm131.472 6.094l-5.876 31.187 27.263-3.327z" fill="#2636a5"/><path d="M374.274 262.764v-.055l-1.064-35.547v-.04c0-.013 0-.025-.006-.037s-.006-.032-.01-.047v-.011l-5.345-17.738v-.011l-.011-.029c0-.013-.01-.026-.016-.038l-.007-.016-15.293-28.856-.009-.014-.019-.03-.017-.025-.011-.015-.016-.018-.011-.014-17.503-18.443-.008-.007-.012-.012c-.01-.01-.022-.018-.033-.027l-.023-.02-18.565-13.253h-.009l-.017-.012a.36.36 0 00-.039-.02.3.3 0 00-.04-.02h-.008l-16.113-6.324h-.025l-19.343-6.88h-.018l-.037-.01-.034-.007h-.054l-31.855-2.027h-.055a.455.455 0 00-.052 0h-.02l-20.087 3.625h-.043l-.036.01-16.372 5.033-.036.014c-.014.006-.029.012-.042.019l-.021.01h-.007l-29.082 17.021h-.006l-.024.016-.023.015-.019.017
-.018.014-.02.022-.016.014-.007.008-18.169 20.268-.007.01-.013.015-.012.017-.016.023-.008.01-.006.01-16.772 27.198-.008.016-.016.028-.014.033c0 .013-.01.025-.014.038l-.006.016-6.593 23.165v.076a.26.26 0 00-.005.039v.01l-1.232 35.146v.087a.3.3 0 00.008.043v.036l6.281 23.948v.01l.006.018a.521.521 0 00.02.05c0 .008.006.017.01.025l13.86 27.274.009.013a.492.492 0 00.028.045l.007.013 9.772 13.169.012.015c.009.011.02.02.029.03a.25.25 0 00.022.024l13.52 12.4c.011.01.022.017.034.026l.027.022 16.885 11.422.012.006.04.024.022.01h.007l20.822 9.056.021.007a.353.353 0 00.046.015l.024.007.037.007h.021l34.846 4.091h.047l18.195.506h.019a.569.569 0 00.1-.01l.022-.007h.015l26.929-7.585.016-.006.023-.006.021-.01.015-.007.032-.014.011-.006 24.056-13.2h.007l.01-.006a.348.348 0 00.039-.028l.032-.022 15.486-13.21.016-.017.02-.018.02-.022h.006l12.006-14.323.005-.007a.531.531 0 00.042-.063l.015-.022v-.006l17.012-33.221c0-.007.006-.016.01-.024l.017-.039v-.019a.3.3 0 00.011-.043c0-.009.006-.018.008-.028l3.747-
22.727v-.039zM184.111 341.54l-3.5-3.212 7.877 6.171zm51.108 13.348l-12.307-5.754 29.13 2.62zm4.488-104.781l-32.312 3.4 19.926-33.476zm-11.278-30.148l39.477 19.772-27.152 10.154zM240 251.131l3.756 29.784-35.947-26.4zm3.285 30.742L204.24 294.16l2.627-39.03zm-2.161-30.245l30.265 20.1-26.518 9.62zm.482-.941l27.156-10.155 3.147 30.275zm41.723-34.975l25.171-11.883-2.838 28.271zm21.471 17.056l-34.6 6.32 12.286-22.688zm-35.583 5.932l-22.539-41.385L281.6 215.83zm-1.263-.118l-39.735-19.9 17.081-21.699zM206.6 252.791l-5.063-19.328 24.445-13.233zm-3.35 40.409l-19.312-31.688 21.892-6.65zm39.432-10.038l-19.646 20.985-17.987-9.142zm29.089-10.46l-7.007 25.234-19.279-15.7zm-1.9-31.718l29.206 23.037-26.067 7.169zm.586-.877l34.978-6.389-5.573 29.582zm36.241-7.785l2.802-27.952 16.159 21.946zm19.317-5.018l.894 32.012-19.941-25.976zm-43.154-12.532l.671-23.76 24.368 11.937zm-1.053-.021l-34.786-18.446 35.463-5.509zm-54.17 2.962l-6.519-23.722 23.259 2.46zm-.849.882l-24.674 13.357 18.153-37.084zm-21.02 35.18
8l-21.429 6.509 16.377-25.792zm-3.881 39.205l-26.755-18.954 7.981-11.852zm2.16 2.687l17.98 9.139-22.117 12.216zm40.435-12.9l19.309 15.725-39.239 5.564zm28.339-9.924l28.5 27.556-35.584-2.045zm.756-.731l26.158-7.195 2.35 34.759zm32.816-37.805l20.109 26.2-25.634 3.129zm20.68-6.81l16.983 9.6-16.094 22.253zm.179-1.106l10.517-17.3 6.272 26.791zm-.773-.753l-16.174-21.965 26.83 4.433zm-42.523-35.6l19-17.195 5.454 29.168zm-37.587 5.3l12.052-21.386 23.217 15.907zm-25.159-2.4l13.662-27.779 9.758 30.256zM200.873 232.1l-16.558-27.64 35.1-10.23zm-17.522 27.79l-8.009-32.208 24.739 5.857zm-8.823 13.161l-7.344-18.251 15.164 6.635zm28.554 22.073l-4.147 21.4-22.911-40.574zm19.749 10.449l6.283 21.217-28.6-8.892zm41.544-6.092l-6.229 27.573-33.54-21.933zm37.046 1.988l-16.125 14.6-18.757-16.607zm-.582-35.841l24.827 25.086-22.487 9.531zm.507-.983l25.59-3.124-.841 28.131zm43.281-26.531l10.222 34.42-26.563-11.824zm-5.793-29.086l16.672 12.642-10.425 14.045zm-28.7-6.435l15.475-17.727 11.434 22.173zm-.7-.8l-5.4
16-28.972 20.874 11.266zm-26.45-12.279l-23.114-15.836 42.017-1.275zm-37.472 5.211l-9.691-30.046 21.673 8.785zm-25.2-2.344l-11.222-15.213 24.724-12.24zm-.779.715l-34.373 10.02 23.095-25.316zm-19.708 39.3l-24.5-5.8 8.283-21.265zm-17.462 27.9l-15.508-6.786 7.7-24.594zm-8.647 13.562l-13.34 4.878 5.947-23.247zm23.993 42.645l-29.346-18.185 6.214-22.78zm29.881 10.911l-27.761 4.4-.12-13.071zm-3.533-21.4l32.643 21.349-26.4-.3zm41.312-6.184l18.949 16.777-25.088 10.426zm37.1 2.1l10.014 27.752-26.259-13.032zm.893-.628l22.354-9.475-12.316 37.3zm24.615-39.581l26.558 11.822-27.4 16.4zm17.784-23.472l17.364 12.359-7.411 21.156zm-.2-1.43l10.437-14.061 6.878 26.384zm-6.964-29.288l4.846-15.025 11.542 27.452zm-.728-1.173l-11.043-21.415 15.9 6.355zm-32.714-34.118l23.122-1.51-2.911 12.418zm-45.783.4l16.28-20.189 26.09 18.9zm-.962-.484l-8.382-21.953 24.5 1.973zm-1.087.1l-21.413-8.68 13.126-13.023zm-48.106 3.674l9.207-26.556 15.628 14.26zm-24.7 26.331l6.742-27.593 16 2.662zm-10.006 23.548l-8.646-13.568 16.7
07-7.128zm-.462 1.234l-7.39 23.589-.993-36.745zm-8.509 27.283l-6.027 23.556-9.462-23.533zm-15.73-1.026l.5-23.126 14.936 23.1zm23.825 21.706l-5.99 21.956-7.32-17.089zm24.036 42.707l-18.187 2.576L169.087 300zm.988.921l.118 12.883-18-10.35zm30.333 9.621l-9.207 19.271-19.185-14.764zm1.073.195l24.328 22.457-33.612-3.023zm1.193-.33l26.648.3-2.431 22.053zm53.542-10.568l1.017 24.914-26.117-14.489zm1.058.091l26.356 13.081-25.34 11.845zm40.876-25.533l13.084 20.459-25.416 16.889zm.911-.528l25.192 3.7-12.261 16.518zm.469-.993l26.946-16.13-1.753 19.832zm35.589-38.438l4.758 16.645-11.94 3.857zm-6.331-28.306l13.647 17.186-7.011 8.27zm-12.77-31.3l17.724 12.98-6.091 14.675zm-18.269-8.925l2.857-12.184 12.765 18.428zm-22.6-12.337l-3.076-18.616 26.658 17.076zm-1.17-.621l-25.4-18.412 22.342-.138zm-51.684-21.438l16.587-10.179 7.116 12.089zm-15.927 13.822L219.6 149.031l28.41 1.069zm-27.013 13.342L192 173.731l24.995-23.436zM183.2 203.211l-16.318-13.247 23.158-14.743zm-.693.791l-16.861 7.198.822-20.214zm-16
.868 47.942l-15.149-23.433 14.1-15.2zm-6.563 27.681L156.2 293.96l-5.674-35.6zm.73 1.714l7.1 16.572-10.138-1.421zm18.42 38.807l-10.7-2.059.681-17.5zm20.217 12.395l-7.6 7.31L180.63 322.3zm.907.586l18.258 14.053-25.846-6.757zm59.579-4.375L285 343.209l-28.5 7.657zm53.9 2.845l-1.427 18.18-23.502-6.524zm26.153-17.21l-14.469 25.343-10.221-8.93zm14.288-17.917l.08 13.271-11.58 2.211zm2.9-22.6l11.774-3.8-13.433 22.574zm8.168-23.331l6.685-7.885-2.181 23.639zm-7.5-29.057l6-14.454 7.777 31.805zm-12.763-30.632l4.216-7.362L361 203.245zm-.732-.838l-12.472-18 16.689 10.641zm-41.849-38.064l12.626-1.348 12.773 17.613zm-25.638-.74l-6.956-11.814 28.43 11.681zm-26.428-2.324l-5.6-9.808 21.937-.218zm-1.114.172l-27.631-1.035 22.013-8.8zm-55.843 22.789l9.894-21.422 14.349-1.309zm-1.778 1.339l-9.044-8.687 19.088-13.059zm-.678.807l-22.487 14.316 13.409-23.036zm-25.421 37.155l-11.286-6.068 12.09-13.706zm-.356 1l-13.707 14.774 2.38-20.862zm-15.488 41.43l-5.795 4.742 6.241-25.143zm.145 1.239l5.916 37.113-12.123-3
2.028zm18.317 44.2l-.679 17.44-9.472-18.863zm11.639 22.32l9.621 16.538-19.8-18.5zm40.585 27.409l-.419 9.58-25.251-16.292zm1.036.409l13.1 6.127-13.516 3.306zm34.9 3.048l.407 13.437-19.045-9.965zm30.1-8.035l-7.725 18.189-20.43-10.625zm1.21-.157l23.492 6.518-31.2 11.637zm27.182-12.185l9.954 8.7-11.318 8.785zm27.01-18.633L352.355 311l-25.148 26.135zm13.513-5.071l-.079-12.935 10.585-6.468zm.93-14.783l12.849-21.592-2.356 15.185zm16.385-46.629l1.5 15.876-3.395 4.69zm-7.8-39.771l2.936 2.753 2.937 21.265zm-14.882-24.255l2.763-1.386 7.987 18.1zm-19.32-12.67l4.849-6.942 11.869 17.6zm-.753-.759L316.3 151.821l17.5 10.479zM300.472 151l-.078-7.579 12.177 6.291zm-1.055-.205l-27.832-11.435 27.752 3.654zm-55.054-12.775l4.431-3.8 14.693 3.612zm-24.2 9.076l8.616-9.281 11.914 1.071zm-2.226.851l-13.047 1.19 21.422-10.211zm-35.88 14.994l1.443-3.228 11.974-5.951zM166.34 188.25l-.87-8.444 13.03-12.434zm-.905 1.487l-10.8 12.244 9.951-20.485zm-16.09 38.27l-6.9 1.283 9.107-20.678zm-.229 1.111l-6.6 26.572-.419-
25.267zm5.832 66.152l-7.839-6.451-3.754-24.183zm10.991 22.352l-5.007-1.649-3.349-14.994zm21.4 20.632l-16.633-9.054-2.67-8.975zm3.034 2.848l7.2 9.181-22.015-17.245zm2.694 1.73l22.9 14.774-14.985-4.684zm42.013 13.16l17.8 9.311-30.938-6.1zm21.356-3.54l19.923 10.361-19.515 3.095zm52.882-.483l-8.088 6.977-18.2 2.826zm14.949-10.458l.673 4.353-10.454 3.236zm27.127-28l-10.754 19.1-13.682 6.293zm3-3.184l7.2-13.3-7.7 18.243zm15.219-40.987l2.719-3.755-4.371 14.37zm2.615-28.34v-.032l-.039-.279.271-3.56.276 9.219zm-.723-5.242l-2.72-19.7 3.368 11.179zm-8.092-30.726l-4.965-11.251 6.948 13.109zm-14.97-23.232l-9.915-14.7 12.649 13.332zm-33.121-31.789l.663-.479 7.622 5.442zm-1-.574l-5.154-2.663 5.727 2.248zM270.816 138.2l9.658-1.985 14.533 5.17zm-3.151-.425l-13.151-3.232 22.051 1.4zm-24.913.241l-10.258-.922 14.352-2.59zm-36.2 9.164l5.869-4.4 9.461-2.908zm-4.817 2.3l-5.091 2.53 7.827-4.58zm-21.356 14.64l-6.039 5.766 6.905-7.7zm-28.285 40.688l-2.685 1 10.431-16.942zm-3.5 2.416l2.9-1.073-7.327 16.636zm-
7.215 43.167l.154 9.26-.533 1.683zm.5 11.626l2.642 17.019-3.642-13.886zm13.782 35.206l3.393 15.19-10.823-21.313zm10.886 21.707l2.355 7.919-7.002-9.449zm52.607 40.775l.983 1.567-10.288-4.472zm2.643 2.234l-1.208-1.926 22.392 4.412zm54.851 1.892L274.3 366.5l-12.292-.342zm1.631-.258l14.653-2.275-16.831 4.74zm33.857-12.65l8.593-2.658-15.153 8.317zm13.765-5.7l-.675-4.361 12.557-5.775zm27.2-32.6l-.588 5.86-8.258 9.852zm13.6-24.986l2.122-1.022-9.712 19.012zm2.826-2.527l-2.382 1.147 4.788-15.743z" fill="url(#a)"/><path d="M374.274 262.764v-.055l-1.064-35.547v-.04c0-.013 0-.025-.006-.037s-.006-.032-.01-.047v-.011l-5.345-17.738v-.011l-.011-.029c0-.013-.01-.026-.016-.038l-.007-.016-15.293-28.856-.009-.014-.019-.03-.017-.025-.011-.015-.016-.018-.011-.014-17.503-18.443-.008-.007-.012-.012c-.01-.01-.022-.018-.033-.027l-.023-.02-18.565-13.253h-.009l-.017-.012a.36.36 0 00-.039-.02.3.3 0 00-.04-.02h-.008l-16.113-6.324h-.025l-19.343-6.88h-.018l-.037-.01-.034-.007h-.054l-31.855-2.027h-.055a.455.455 0 0
0-.052 0h-.02l-20.087 3.625h-.043l-.036.01-16.372 5.033-.036.014c-.014.006-.029.012-.042.019l-.021.01h-.007l-29.082 17.021h-.006l-.024.016-.023.015-.019.017-.018.014-.02.022-.016.014-.007.008-18.169 20.268-.007.01-.013.015-.012.017-.016.023-.008.01-.006.01-16.772 27.198-.008.016-.016.028-.014.033c0 .013-.01.025-.014.038l-.006.016-6.593 23.165v.076a.26.26 0 00-.005.039v.01l-1.232 35.146v.087a.3.3 0 00.008.043v.036l6.281 23.948v.01l.006.018a.521.521 0 00.02.05c0 .008.006.017.01.025l13.86 27.274.009.013a.492.492 0 00.028.045l.007.013 9.772 13.169.012.015c.009.011.02.02.029.03a.25.25 0 00.022.024l13.52 12.4c.011.01.022.017.034.026l.027.022 16.885 11.422.012.006.04.024.022.01h.007l20.822 9.056.021.007a.353.353 0 00.046.015l.024.007.037.007h.021l34.846 4.091h.047l18.195.506h.019a.569.569 0 00.1-.01l.022-.007h.015l26.929-7.585.016-.006.023-.006.021-.01.015-.007.032-.014.011-.006 24.056-13.2h.007l.01-.006a.348.348 0 00.039-.028l.032-.022 15.486-13.21.016-.017.02-.018.02-.022h.006l12.006-14.
323.005-.007a.531.531 0 00.042-.063l.015-.022v-.006l17.012-33.221c0-.007.006-.016.01-.024l.017-.039v-.019a.3.3 0 00.011-.043c0-.009.006-.018.008-.028l3.747-22.727v-.039zM184.111 341.54l-3.5-3.212 7.877 6.171zm51.108 13.348l-12.307-5.754 29.13 2.62zm4.488-104.781l-32.312 3.4 19.926-33.476zm-11.278-30.148l39.477 19.772-27.152 10.154zM240 251.131l3.756 29.784-35.947-26.4zm3.285 30.742L204.24 294.16l2.627-39.03zm-2.161-30.245l30.265 20.1-26.518 9.62zm.482-.941l27.156-10.155 3.147 30.275zm41.723-34.975l25.171-11.883-2.838 28.271zm21.471 17.056l-34.6 6.32 12.286-22.688zm-35.583 5.932l-22.539-41.385L281.6 215.83zm-1.263-.118l-39.735-19.9 17.081-21.699zM206.6 252.791l-5.063-19.328 24.445-13.233zm-3.35 40.409l-19.312-31.688 21.892-6.65zm39.432-10.038l-19.646 20.985-17.987-9.142zm29.089-10.46l-7.007 25.234-19.279-15.7zm-1.9-31.718l29.206 23.037-26.067 7.169zm.586-.877l34.978-6.389-5.573 29.582zm36.241-7.785l2.802-27.952 16.159 21.946zm19.317-5.018l.894 32.012-19.941-25.976zm-43.154-12.532l.67
1-23.76 24.368 11.937zm-1.053-.021l-34.786-18.446 35.463-5.509zm-54.17 2.962l-6.519-23.722 23.259 2.46zm-.849.882l-24.674 13.357 18.153-37.084zm-21.02 35.188l-21.429 6.509 16.377-25.792zm-3.881 39.205l-26.755-18.954 7.981-11.852zm2.16 2.687l17.98 9.139-22.117 12.216zm40.435-12.9l19.309 15.725-39.239 5.564zm28.339-9.924l28.5 27.556-35.584-2.045zm.756-.731l26.158-7.195 2.35 34.759zm32.816-37.805l20.109 26.2-25.634 3.129zm20.68-6.81l16.983 9.6-16.094 22.253zm.179-1.106l10.517-17.3 6.272 26.791zm-.773-.753l-16.174-21.965 26.83 4.433zm-42.523-35.6l19-17.195 5.454 29.168zm-37.587 5.3l12.052-21.386 23.217 15.907zm-25.159-2.4l13.662-27.779 9.758 30.256zM200.873 232.1l-16.558-27.64 35.1-10.23zm-17.522 27.79l-8.009-32.208 24.739 5.857zm-8.823 13.161l-7.344-18.251 15.164 6.635zm28.554 22.073l-4.147 21.4-22.911-40.574zm19.749 10.449l6.283 21.217-28.6-8.892zm41.544-6.092l-6.229 27.573-33.54-21.933zm37.046 1.988l-16.125 14.6-18.757-16.607zm-.582-35.841l24.827 25.086-22.487 9.531zm.507-.983l25.59-
3.124-.841 28.131zm43.281-26.531l10.222 34.42-26.563-11.824zm-5.793-29.086l16.672 12.642-10.425 14.045zm-28.7-6.435l15.475-17.727 11.434 22.173zm-.7-.8l-5.416-28.972 20.874 11.266zm-26.45-12.279l-23.114-15.836 42.017-1.275zm-37.472 5.211l-9.691-30.046 21.673 8.785zm-25.2-2.344l-11.222-15.213 24.724-12.24zm-.779.715l-34.373 10.02 23.095-25.316zm-19.708 39.3l-24.5-5.8 8.283-21.265zm-17.462 27.9l-15.508-6.786 7.7-24.594zm-8.647 13.562l-13.34 4.878 5.947-23.247zm23.993 42.645l-29.346-18.185 6.214-22.78zm29.881 10.911l-27.761 4.4-.12-13.071zm-3.533-21.4l32.643 21.349-26.4-.3zm41.312-6.184l18.949 16.777-25.088 10.426zm37.1 2.1l10.014 27.752-26.259-13.032zm.893-.628l22.354-9.475-12.316 37.3zm24.615-39.581l26.558 11.822-27.4 16.4zm17.784-23.472l17.364 12.359-7.411 21.156zm-.2-1.43l10.437-14.061 6.878 26.384zm-6.964-29.288l4.846-15.025 11.542 27.452zm-.728-1.173l-11.043-21.415 15.9 6.355zm-32.714-34.118l23.122-1.51-2.911 12.418zm-45.783.4l16.28-20.189 26.09 18.9zm-.962-.484l-8.382-21.953 24.
5 1.973zm-1.087.1l-21.413-8.68 13.126-13.023zm-48.106 3.674l9.207-26.556 15.628 14.26zm-24.7 26.331l6.742-27.593 16 2.662zm-10.006 23.548l-8.646-13.568 16.707-7.128zm-.462 1.234l-7.39 23.589-.993-36.745zm-8.509 27.283l-6.027 23.556-9.462-23.533zm-15.73-1.026l.5-23.126 14.936 23.1zm23.825 21.706l-5.99 21.956-7.32-17.089zm24.036 42.707l-18.187 2.576L169.087 300zm.988.921l.118 12.883-18-10.35zm30.333 9.621l-9.207 19.271-19.185-14.764zm1.073.195l24.328 22.457-33.612-3.023zm1.193-.33l26.648.3-2.431 22.053zm53.542-10.568l1.017 24.914-26.117-14.489zm1.058.091l26.356 13.081-25.34 11.845zm40.876-25.533l13.084 20.459-25.416 16.889zm.911-.528l25.192 3.7-12.261 16.518zm.469-.993l26.946-16.13-1.753 19.832zm35.589-38.438l4.758 16.645-11.94 3.857zm-6.331-28.306l13.647 17.186-7.011 8.27zm-12.77-31.3l17.724 12.98-6.091 14.675zm-18.269-8.925l2.857-12.184 12.765 18.428zm-22.6-12.337l-3.076-18.616 26.658 17.076zm-1.17-.621l-25.4-18.412 22.342-.138zm-51.684-21.438l16.587-10.179 7.116 12.089zm-15.927 13.
822L219.6 149.031l28.41 1.069zm-27.013 13.342L192 173.731l24.995-23.436zM183.2 203.211l-16.318-13.247 23.158-14.743zm-.693.791l-16.861 7.198.822-20.214zm-16.868 47.942l-15.149-23.433 14.1-15.2zm-6.563 27.681L156.2 293.96l-5.674-35.6zm.73 1.714l7.1 16.572-10.138-1.421zm18.42 38.807l-10.7-2.059.681-17.5zm20.217 12.395l-7.6 7.31L180.63 322.3zm.907.586l18.258 14.053-25.846-6.757zm59.579-4.375L285 343.209l-28.5 7.657zm53.9 2.845l-1.427 18.18-23.502-6.524zm26.153-17.21l-14.469 25.343-10.221-8.93zm14.288-17.917l.08 13.271-11.58 2.211zm2.9-22.6l11.774-3.8-13.433 22.574zm8.168-23.331l6.685-7.885-2.181 23.639zm-7.5-29.057l6-14.454 7.777 31.805zm-12.763-30.632l4.216-7.362L361 203.245zm-.732-.838l-12.472-18 16.689 10.641zm-41.849-38.064l12.626-1.348 12.773 17.613zm-25.638-.74l-6.956-11.814 28.43 11.681zm-26.428-2.324l-5.6-9.808 21.937-.218zm-1.114.172l-27.631-1.035 22.013-8.8zm-55.843 22.789l9.894-21.422 14.349-1.309zm-1.778 1.339l-9.044-8.687 19.088-13.059zm-.678.807l-22.487 14.316 13.409-23.0
36zm-25.421 37.155l-11.286-6.068 12.09-13.706zm-.356 1l-13.707 14.774 2.38-20.862zm-15.488 41.43l-5.795 4.742 6.241-25.143zm.145 1.239l5.916 37.113-12.123-32.028zm18.317 44.2l-.679 17.44-9.472-18.863zm11.639 22.32l9.621 16.538-19.8-18.5zm40.585 27.409l-.419 9.58-25.251-16.292zm1.036.409l13.1 6.127-13.516 3.306zm34.9 3.048l.407 13.437-19.045-9.965zm30.1-8.035l-7.725 18.189-20.43-10.625zm1.21-.157l23.492 6.518-31.2 11.637zm27.182-12.185l9.954 8.7-11.318 8.785zm27.01-18.633L352.355 311l-25.148 26.135zm13.513-5.071l-.079-12.935 10.585-6.468zm.93-14.783l12.849-21.592-2.356 15.185zm16.385-46.629l1.5 15.876-3.395 4.69zm-7.8-39.771l2.936 2.753 2.937 21.265zm-14.882-24.255l2.763-1.386 7.987 18.1zm-19.32-12.67l4.849-6.942 11.869 17.6zm-.753-.759L316.3 151.821l17.5 10.479zM300.472 151l-.078-7.579 12.177 6.291zm-1.055-.205l-27.832-11.435 27.752 3.654zm-55.054-12.775l4.431-3.8 14.693 3.612zm-24.2 9.076l8.616-9.281 11.914 1.071zm-2.226.851l-13.047 1.19 21.422-10.211zm-35.88 14.994l1.443-3.228 11.
974-5.951zM166.34 188.25l-.87-8.444 13.03-12.434zm-.905 1.487l-10.8 12.244 9.951-20.485zm-16.09 38.27l-6.9 1.283 9.107-20.678zm-.229 1.111l-6.6 26.572-.419-25.267zm5.832 66.152l-7.839-6.451-3.754-24.183zm10.991 22.352l-5.007-1.649-3.349-14.994zm21.4 20.632l-16.633-9.054-2.67-8.975zm3.034 2.848l7.2 9.181-22.015-17.245zm2.694 1.73l22.9 14.774-14.985-4.684zm42.013 13.16l17.8 9.311-30.938-6.1zm21.356-3.54l19.923 10.361-19.515 3.095zm52.882-.483l-8.088 6.977-18.2 2.826zm14.949-10.458l.673 4.353-10.454 3.236zm27.127-28l-10.754 19.1-13.682 6.293zm3-3.184l7.2-13.3-7.7 18.243zm15.219-40.987l2.719-3.755-4.371 14.37zm2.615-28.34v-.032l-.039-.279.271-3.56.276 9.219zm-.723-5.242l-2.72-19.7 3.368 11.179zm-8.092-30.726l-4.965-11.251 6.948 13.109zm-14.97-23.232l-9.915-14.7 12.649 13.332zm-33.121-31.789l.663-.479 7.622 5.442zm-1-.574l-5.154-2.663 5.727 2.248zM270.816 138.2l9.658-1.985 14.533 5.17zm-3.151-.425l-13.151-3.232 22.051 1.4zm-24.913.241l-10.258-.922 14.352-2.59zm-36.2 9.164l5.869-4.4 9.461
-2.908zm-4.817 2.3l-5.091 2.53 7.827-4.58zm-21.356 14.64l-6.039 5.766 6.905-7.7zm-28.285 40.688l-2.685 1 10.431-16.942zm-3.5 2.416l2.9-1.073-7.327 16.636zm-7.215 43.167l.154 9.26-.533 1.683zm.5 11.626l2.642 17.019-3.642-13.886zm13.782 35.206l3.393 15.19-10.823-21.313zm10.886 21.707l2.355 7.919-7.002-9.449zm52.607 40.775l.983 1.567-10.288-4.472zm2.643 2.234l-1.208-1.926 22.392 4.412zm54.851 1.892L274.3 366.5l-12.292-.342zm1.631-.258l14.653-2.275-16.831 4.74zm33.857-12.65l8.593-2.658-15.153 8.317zm13.765-5.7l-.675-4.361 12.557-5.775zm27.2-32.6l-.588 5.86-8.258 9.852zm13.6-24.986l2.122-1.022-9.712 19.012zm2.826-2.527l-2.382 1.147 4.788-15.743z" fill="url(#b)"/><path d="M478.979 166.36c-10.457-25.124-31.636-52.248-48.267-60.82 13.536 26.5 21.369 53.092 24.363 72.934 0-.057.011.049.036.226.012.086.027.174.04.26 22.7 61.468 10.334 123.975-7.487 162.171-27.572 59.1-94.325 119.668-198.808 116.713-112.89-3.192-212.335-86.853-230.9-196.43-3.382-17.279 0-26.053 1.7-40.083-2.074 10.816-2.863 13
.94-3.9 33.157 0 .41-.025.816-.025 1.227C15.732 388.421 123.453 496 256.335 496a240.565 240.565 0 00237.156-199.626c.408-3.076.734-6.168 1.094-9.27 4.783-41.21-.531-84.524-15.606-120.744z" fill="url(#c)"/><path d="M478.979 166.36c-10.457-25.124-31.636-52.248-48.267-60.82 13.536 26.5 21.369 53.092 24.363 72.934 0-.057.011.049.036.226.012.086.027.174.04.26 22.7 61.468 10.334 123.975-7.487 162.171-27.572 59.1-94.325 119.668-198.808 116.713-112.89-3.192-212.335-86.853-230.9-196.43-3.382-17.279 0-26.053 1.7-40.083-2.074 10.816-2.863 13.94-3.9 33.157 0 .41-.025.816-.025 1.227C15.732 388.421 123.453 496 256.335 496a240.565 240.565 0 00237.156-199.626c.408-3.076.734-6.168 1.094-9.27 4.783-41.21-.531-84.524-15.606-120.744z" fill="url(#d)"/><path d="M17.957 261.414c18.564 109.577 118.009 193.238 230.9 196.43 104.483 2.955 171.236-57.618 198.808-116.713 17.821-38.2 30.188-100.7 7.487-162.171l-.008-.026-.032-.234c-.025-.177-.041-.283-.036-.226 0 .04.015.136.047.4 8.533 55.66-19.813 109.581-64.1
26 146.04-.079.189-.133.313-.133.313-86.345 70.222-168.97 42.368-185.7 30.966a137.192 137.192 0 01-3.5-1.743c-50.34-24.029-71.137-69.837-66.678-109.122-42.506 0-57-35.808-57-35.808s38.163-27.179 88.461-3.541c46.583 21.893 90.332 3.543 90.337 3.541-.09-1.952-41.965-18.589-58.291-34.655-8.723-8.585-12.865-12.723-16.533-15.828a71.492 71.492 0 00-6.232-4.7 281.912 281.912 0 00-4.987-3.3c-17.548-11.392-52.448-10.764-53.6-10.735h-.112c-9.538-12.066-8.865-51.871-8.321-60.182-.115-.516-7.116 3.63-8.033 4.254A175.239 175.239 0 0077.156 104.5a210.379 210.379 0 00-22.469 26.912c0 .012-.007.025-.011.037 0-.012.007-.025.011-.038a202.707 202.707 0 00-32.284 72.8c-.116.527-8.661 37.847-4.446 57.203z" fill="url(#e)"/><path d="M341.214 166.593a130.73 130.73 0 0122.336 29.112c1.325.994 2.561 1.985 3.612 2.952 54.545 50.2 25.967 121.2 23.834 126.257 44.313-36.459 72.659-90.38 64.126-146.04-27.207-67.731-73.339-95.043-111.015-154.509-1.905-3.007-3.809-6.022-5.667-9.2a73.154 73.154 0 01-2.649-4.971A43.7
4 43.74 0 01332.2.688a.627.627 0 00-.546-.645.822.822 0 00-.452 0c-.034.012-.084.051-.12.065-.053.021-.12.069-.176.1-9.306 4.428-64.484 91.692 10.308 166.385z" fill="url(#f)"/><path d="M248.657 133.645l31.855 2.027 19.347 6.882 16.124 6.329 18.57 13.258 17.493 18.437 6.077 11.467c.816.5 2.5 1.586 3.932 2.558.525.368 1 .735 1.5 1.1a130.73 130.73 0 00-22.336-29.112C266.422 91.9 321.6 4.636 330.908.2c.027-.036.083-.117.1-.136-60.44 35.356-80.944 100.759-82.828 133.482l-.009.183z" fill="url(#g)"/><path d="M170.74 151.043a243.329 243.329 0 014.987 3.3 111.208 111.208 0 01-.675-58.731c-24.716 11.241-43.941 29.01-57.916 44.7 1.156-.033 36.056-.661 53.604 10.731z" fill="url(#h)"/><path d="M148.32 277.45s11.11-41.34 79.53-41.34c7.4 0 28.54-20.61 28.93-26.59 0 0-43.75 18.35-90.33-3.54-50.3-23.64-88.45 3.54-88.45 3.54s14.5 35.81 57 35.81c-4.45 39.28 16.34 85.09 66.68 109.12 1.13.54 2.19 1.12 3.34 1.64-29.4-15.17-53.66-43.83-56.7-78.64z" fill="url(#i)"/><path d="M367.162 198.657c-1.051-.967-2.2
87-1.958-3.612-2.952-.49-.367-.97-.734-1.5-1.1-12.847-9.014-35.851-17.917-58.014-14.067 86.541 43.213 63.308 192.023-56.611 186.4a106.974 106.974 0 01-31.307-6.03 133.003 133.003 0 01-7.067-2.886c-1.358-.619-2.714-1.243-4.055-1.936.048.034.114.071.163.1 16.729 11.4 99.354 39.256 185.7-30.966 0 0 .054-.124.133-.313 2.137-5.048 30.715-76.05-23.83-126.25z" fill="url(#j)"/><path d="M478.959 166.35c-10.457-25.124-31.637-52.248-48.268-60.82 13.536 26.5 21.37 53.092 24.364 72.934 0 .04.015.136.047.4-27.202-67.731-73.34-95.043-111.015-154.509-1.9-3.008-3.809-6.022-5.668-9.2a73.11 73.11 0 01-2.648-4.971 43.755 43.755 0 01-3.589-9.5.626.626 0 00-.547-.644.818.818 0 00-.451 0c-.034.012-.084.051-.12.065-.053.021-.12.069-.176.1.026-.036.083-.117.1-.136-60.44 35.356-80.933 100.952-82.817 133.675l.488-.088 31.855 2.027 17.928 6.377 17.543 6.834 18.57 13.258 17.472 18.427s6.014 11.287 6.1 11.477c-13.944-8.293-34.208-14.975-54.1-11.519 86.541 43.213 63.308 192.023-56.611 186.4A106.936 106.936 0 0121
6.1 360.9a131.807 131.807 0 01-7.067-2.885c-1.358-.619-2.714-1.244-4.055-1.936.048.034.114.071.163.105a137.192 137.192 0 01-3.5-1.743c1.125.537 2.183 1.123 3.338 1.638-29.384-15.167-53.646-43.832-56.677-78.641 0 0 11.106-41.334 79.524-41.334 7.4 0 28.542-20.614 28.935-26.593-.09-1.952-41.966-18.589-58.291-34.655-8.723-8.585-12.865-12.723-16.533-15.828a71.492 71.492 0 00-6.232-4.7 111.208 111.208 0 01-.675-58.731c-24.716 11.241-43.941 29.01-57.917 44.7h-.111c-9.538-12.066-8.865-51.871-8.322-60.182-.114-.516-7.115 3.63-8.033 4.254a175.3 175.3 0 00-23.513 20.12A210.463 210.463 0 0054.666 131.4a.259.259 0 01-.011.037.272.272 0 00.011-.038 202.724 202.724 0 00-32.284 72.8c-.115.521-.212 1.061-.325 1.586-.452 2.116-2.488 12.852-2.772 15.156-.022.176.021-.177 0 0a279.127 279.127 0 00-3.548 33.529c0 .41-.026.816-.026 1.227 0 132.705 107.722 240.285 240.6 240.285a240.568 240.568 0 00237.16-199.618c.408-3.076.734-6.168 1.094-9.27 4.782-41.21-.531-84.524-15.606-120.744zm-23.868 12.34c.012.086.
027.174.04.26l-.009-.026c-.011-.083-.022-.157-.031-.234z" fill="url(#k)"/><path d="M256.78 209.522s-1.02.427-2.9 1.071c-4.7 7.943-21.409 23.1-27.8 23.075-68.418-.3-79.7 40.587-79.7 40.587a87.34 87.34 0 0013.4 39.263 88.025 88.025 0 01-11.456-36.069s11.106-41.334 79.525-41.334c7.4 0 28.541-20.614 28.935-26.593z" fill="url(#l)"/><path d="M455.152 178.958l-.009-.024c-.012-.082-.021-.157-.033-.233a2.116 2.116 0 00-.033-.227 5.804 5.804 0 00.045.4 239.04 239.04 0 00-5.168-11.9c-.612-1.314-1.269-2.543-1.9-3.826-1.2-2.465-2.4-4.935-3.657-7.293-.775-1.456-1.59-2.837-2.383-4.254-1.163-2.076-2.316-4.165-3.515-6.166-.879-1.463-1.787-2.864-2.68-4.29-1.169-1.862-2.334-3.73-3.533-5.534-.948-1.429-1.92-2.813-2.886-4.208-1.193-1.723-2.386-3.448-3.6-5.128-1.008-1.387-2.032-2.743-3.052-4.1a349.149 349.149 0 00-3.673-4.825q-1.589-2.034-3.2-4.033a486.632 486.632 0 00-3.751-4.619q-1.644-1.989-3.307-3.963c-.6-.714-1.2-1.447-1.8-2.159.26.309.511.63.769.942-20.846-24.591-43.47-47.254-63.674-79.15-1.908-3.0
06-3.812-6.021-5.668-9.2a72.064 72.064 0 01-2.649-4.971 49.1 49.1 0 01-3.31-8.434c-.042-.155-.118-.391-.145-.509-.082-.318-.133-.56-.133-.56a.63.63 0 00-.548-.645.847.847 0 00-.451 0c-.034.012-.085.052-.122.067s-.118.067-.175.094a7.406 7.406 0 00-1.46 1.072 17.267 17.267 0 00-.348.311A25.044 25.044 0 00327.2 3.6c-.024.027-.043.042-.067.069.006-.006.012-.006.018-.012-14.415 16.944-51.226 90.584 8.1 156.635-55.543-65.345-20.542-135.964-5.33-154.464a53.657 53.657 0 002.964 7.268 74.305 74.305 0 002.649 4.971c1.856 3.182 3.761 6.2 5.668 9.2 37.675 59.466 83.806 86.779 111.013 154.51a9.121 9.121 0 01-.045-.4 1.707 1.707 0 01.033.227c.012.076.021.152.033.233l.01.025c22.7 61.47 10.333 123.975-7.488 162.171a199.358 199.358 0 01-38.217 54.8 199.8 199.8 0 0041.124-57.7c17.821-38.199 30.186-100.704 7.487-162.175z" fill="url(#m)"/><path d="M330.908.2c.027-.036.083-.117.1-.136-54.445 31.849-76.48 88.075-81.693 122.836 5.988-32.116 26.574-81.173 72.71-112.144 3.797-5.996 7.143-9.723 8.883-10.556z
" fill="url(#n)"/><path d="M390.863 325.227s.054-.124.133-.313c2.133-5.055 30.711-76.057-23.834-126.257-1.051-.967-2.287-1.958-3.612-2.952-.49-.367-.97-.734-1.5-1.1-12.415-8.711-34.316-17.316-55.776-14.41l-.052.006q-1.093.15-2.186.337c85.565 42.726 63.813 188.673-52.595 186.529.316.015.633.04.948.053 118.009 4.618 141.259-140.089 59.271-185.457 17.768-.174 34.954 6.314 45.567 13.158.539.347 1.034.694 1.537 1.042 1.363.941 2.637 1.883 3.725 2.809 56.473 48.028 30.696 120.09 28.763 125.228a72.283 72.283 0 01-.12.318" fill="url(#o)"/><path d="M167.09 208.38c39.38 17.06 75.93 6.22 87 2.14-10.2 3.52-47.89 14.14-87.64-4.54-45.22-21.25-80.62-1.44-87.32 2.78l-.32.2-.26.17-.2.13-.13.08-.09.06.12.26.14.31v.06l.21.45c.34.72.86 1.75 1.58 3 5.34 9.45 21.43 31.63 54.89 31.63-4.32 38.11 15.12 82.35 62.24 106.9-45-26-64-73-58.7-110.49-34.76-.92-50.31-21.76-54.75-30.59 12.64-6.7 44.73-19.23 83.23-2.55z" fill="url(#p)"/><path d="M175.69 154.205q-.568-.333-1.176-.684.628.42 1.213.818c-.013-.045-.027-.
089-.037-.134zm-.247-.882a111.35 111.35 0 01-.391-57.715c-23.43 10.656-41.917 27.176-55.684 42.233 13.11-12.77 30.093-26.473 50.778-35.862-1.28 9.821-2.383 29.926 5.297 51.344z" fill="url(#q)"/><path d="M23.758 286.6c-.067-.229-.126-.459-.191-.689a220.739 220.739 0 01-5.61-24.5c-1.836-8.43-1.25-20.266 0-30.987-.929 5.565-1.511 11.221-2.2 24.061 0 .41-.025.816-.025 1.227C15.732 360.731 83.2 450 177.2 482.683 95.716 451.478 35.35 376.8 23.758 286.6z" fill="url(#r)"/><path d="M21.832 262.383c-4.214-19.356 4.331-56.676 4.446-57.2a202.7 202.7 0 0132.284-72.8l-.011.038c0-.012.007-.025.011-.037a210.463 210.463 0 0122.47-26.912 175.229 175.229 0 0123.513-20.12 29.207 29.207 0 011.015-.634c-.083 18.28.954 49.124 9.423 59.237h.111c1.16-.06 36.177-1.605 54.092 9.322a273.279 273.279 0 015.092 3.164 71.848 71.848 0 016.378 4.532c3.764 3.008 8.03 7.036 17.012 15.389 13 12.091 41.356 24.121 53.6 29.852-11.929-6.009-40.077-18.848-52.774-31.343-8.723-8.585-12.865-12.723-16.533-15.828a71.492 71.492 0
00-6.232-4.7 281.912 281.912 0 00-4.987-3.3c-17.548-11.392-52.448-10.765-53.6-10.735h-.112c-8.718-11.028-8.905-45.214-8.458-57.362.018-.468.036-.9.054-1.3l.021-.429a119.792 119.792 0 01.018-.356c.015-.262.029-.515.044-.734-.007-.031-.042-.043-.095-.042-.018 0-.048.009-.071.012a1.022 1.022 0 00-.151.034c-.039.011-.087.03-.132.046a4.265 4.265 0 00-.39.157l-.234.106a16.595 16.595 0 00-.495.24l-.3.151-.245.128-.359.188-.2.109c-2.121 1.141-4.813 2.754-5.358 3.125A175.239 175.239 0 0077.156 104.5a210.379 210.379 0 00-22.469 26.912c0 .012-.007.025-.011.037 0-.012.007-.025.011-.038a202.707 202.707 0 00-32.284 72.8c-.116.521-8.661 37.841-4.446 57.2 15.8 93.251 90.176 167.72 181.563 189.812-89.608-23.234-162.113-96.911-177.688-188.84z" fill="url(#s)"/><path d="M478.979 166.36c-9.226-22.167-26.8-45.883-42.231-57.048l-.425-.3q-.717-.508-1.428-.982-.27-.18-.54-.356-.675-.435-1.341-.834c-.172-.1-.345-.212-.517-.312a42.518 42.518 0 00-1.786-.986c.65 1.272 1.275 2.544 1.9 3.816a394.886 394.886 0 0
11.148 2.373c11.668 24.415 18.557 48.448 21.317 66.745 0 .04.015.136.047.4 8.533 55.66-19.813 109.581-64.126 146.04-.079.189-.133.313-.133.313-55.08 44.8-108.642 49.678-144.555 44.383 35.786 6.684 92.233 3.866 150.369-43.414l.133-.313c44.312-36.459 72.659-90.381 64.126-146.04a12.553 12.553 0 01-.047-.4c-2.451-16.242-8.159-37.005-17.57-58.54a159 159 0 0126.316 37.486c17.047 34.76 24.739 77.04 22.235 117.816-.188 3.07-.343 6.128-.58 9.174-13.068 112.5-106.967 202.843-225.783 209.5a245.659 245.659 0 01-47.5-1.93A242.635 242.635 0 00256.335 496c119 0 217.812-86.287 237.156-199.626.408-3.076.734-6.168 1.094-9.27 4.783-41.21-.531-84.524-15.606-120.744zm-23.828 12.6l-.008-.026-.032-.234c.012.086.027.174.04.26z" fill="url(#t)"/></svg>
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs>
+ <linearGradient x1="50%" y1="100%" x2="50%" y2="0%" id="linearGradient-1">
+ <stop stop-color="#420C5D" offset="0%"></stop>
+ <stop stop-color="#951AD1" offset="100%"></stop>
+ </linearGradient>
+ <path d="M25,29 C152.577777,29 256,131.974508 256,259 C256,386.025492 152.577777,489 25,489 L25,29 Z" id="path-2"></path>
+ <filter x="-18.2%" y="-7.4%" width="129.4%" height="114.8%" filterUnits="objectBoundingBox" id="filter-3">
+ <feOffset dx="-8" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
+ <feGaussianBlur stdDeviation="10" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
+ <feColorMatrix values="0 0 0 0 0.250980392 0 0 0 0 0.250980392 0 0 0 0 0.250980392 0 0 0 0.2 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
+ </filter>
+ </defs>
+ <g id="Assets" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
+ <g id="icon_512x512">
+ <g id="Group">
+ <g id="tb_icon/Stable">
+ <g id="Stable">
+ <circle id="background" fill="#F2E4FF" fill-rule="nonzero" cx="256" cy="256" r="246"></circle>
+ <path d="M256.525143,465.439707 L256.525143,434.406609 C354.826191,434.122748 434.420802,354.364917 434.420802,255.992903 C434.420802,157.627987 354.826191,77.8701558 256.525143,77.5862948 L256.525143,46.5531962 C371.964296,46.8441537 465.446804,140.489882 465.446804,255.992903 C465.446804,371.503022 371.964296,465.155846 256.525143,465.439707 Z M256.525143,356.820314 C311.970283,356.529356 356.8487,311.516106 356.8487,255.992903 C356.8487,200.476798 311.970283,155.463547 256.525143,155.17259 L256.525143,124.146588 C329.115485,124.430449 387.881799,183.338693 387.881799,255.992903 C387.881799,328.654211 329.115485,387.562455 256.525143,387.846316 L256.525143,356.820314 Z M256.525143,201.718689 C286.266674,202.00255 310.3026,226.180407 310.3026,255.992903 C310.3026,285.812497 286.266674,309.990353 256.525143,310.274214 L256.525143,201.718689 Z M0,255.992903 C0,397.384044 114.60886,512 256,512 C397.384044,512 512,397.384044 512,255.992903 C512,114.60886 397.384
044,0 256,0 C114.60886,0 0,114.60886 0,255.992903 Z" id="center" fill="url(#linearGradient-1)"></path>
+ <g id="half" transform="translate(140.500000, 259.000000) scale(-1, 1) translate(-140.500000, -259.000000) ">
+ <use fill="black" fill-opacity="1" filter="url(#filter-3)" xlink:href="#path-2"></use>
+ <use fill="url(#linearGradient-1)" fill-rule="evenodd" xlink:href="#path-2"></use>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/devtools/client/themes/images/aboutdebugging-firefox-beta.svg b/devtools/client/themes/images/aboutdebugging-firefox-beta.svg
index 8ece78c5c1cd..9240dc6e84ca 100644
--- a/devtools/client/themes/images/aboutdebugging-firefox-beta.svg
+++ b/devtools/client/themes/images/aboutdebugging-firefox-beta.svg
@@ -1,4 +1,31 @@
-<!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"><defs><radialGradient id="c" cx="87.4%" cy="-12.9%" r="128%" gradientTransform="matrix(.8 0 0 1 .178 .129)"><stop offset=".13" stop-color="#ffbd4f"/><stop offset=".28" stop-color="#ff980e"/><stop offset=".47" stop-color="#ff3750"/><stop offset=".78" stop-color="#eb0878"/><stop offset=".86" stop-color="#e50080"/></radialGradient><radialGradient id="d" cx="49%" cy="40%" r="128%" gradientTransform="matrix(.82 0 0 1 .088 0)"><stop offset=".3" stop-color="#960e18"/><stop offset=".35" stop-color="#b11927" stop-opacity=".74"/><stop offset=".43" stop-color="#db293d" stop-opacity=".34"/><stop offset=".5" stop-color="#f5334b" stop-opacity=".09"/><stop offset=".53" stop-color="#ff3750" stop-opacity="0"/></radialGradient><radialGradient id="e" cx="48%" cy="-12%" r="140%"><stop offset=".13" stop-color="#fff44f"/><stop offset=".53" stop-color="#ff980e"/></radialGradient><radialGradient id="f" cx="22.76%" cy="110.11%" r="100%"><stop
offset=".35" stop-color="#3a8ee6"/><stop offset=".67" stop-color="#9059ff"/><stop offset="1" stop-color="#c139e6"/></radialGradient><radialGradient id="g" cx="52%" cy="33%" r="59%" gradientTransform="scale(.9 1)"><stop offset=".21" stop-color="#9059ff" stop-opacity="0"/><stop offset=".97" stop-color="#6e008b" stop-opacity=".6"/></radialGradient><radialGradient id="h" cx="210%" cy="-100%" r="290%"><stop offset=".1" stop-color="#ffe226"/><stop offset=".79" stop-color="#ff7139"/></radialGradient><radialGradient id="i" cx="84%" cy="-41%" r="180%"><stop offset=".11" stop-color="#fff44f"/><stop offset=".46" stop-color="#ff980e"/><stop offset=".72" stop-color="#ff3647"/><stop offset=".9" stop-color="#e31587"/></radialGradient><radialGradient id="j" cx="16.1%" cy="-18.6%" r="348.8%" gradientTransform="matrix(.10453 .46743 -.99452 .04913 -.046 -.255)"><stop offset="0" stop-color="#fff44f"/><stop offset=".3" stop-color="#ff980e"/><stop offset=".57" stop-color="#ff3647"/><stop offset=".74" sto
p-color="#e31587"/></radialGradient><radialGradient id="k" cx="18.9%" cy="-42.5%" r="238.4%"><stop offset=".14" stop-color="#fff44f"/><stop offset=".48" stop-color="#ff980e"/><stop offset=".66" stop-color="#ff3647"/><stop offset=".9" stop-color="#e31587"/></radialGradient><radialGradient id="l" cx="159.3%" cy="-44.72%" r="313.1%"><stop offset=".09" stop-color="#fff44f"/><stop offset=".63" stop-color="#ff980e"/></radialGradient><linearGradient id="b" x1="87.25%" y1="15.5%" x2="9.4%" y2="93.1%"><stop offset=".05" stop-color="#fff44f"/><stop offset=".37" stop-color="#ff980e"/><stop offset=".53" stop-color="#ff3647"/><stop offset=".7" stop-color="#e31587"/></linearGradient><linearGradient id="m" x1="80%" y1="14%" x2="18%" y2="84%"><stop offset=".17" stop-color="#fff44f" stop-opacity=".8"/><stop offset=".6" stop-color="#fff44f" stop-opacity="0"/></linearGradient><linearGradient id="a" x1="446.053" y1="434.456" x2="385.267" y2="376.907" gradientUnits="userSpaceOnUse"><stop offset="0" stop
-color="#054096" stop-opacity=".5"/><stop offset=".054" stop-color="#0f3d9c" stop-opacity=".441"/><stop offset=".261" stop-color="#2f35b1" stop-opacity=".249"/><stop offset=".466" stop-color="#462fbf" stop-opacity=".111"/><stop offset=".669" stop-color="#542bc8" stop-opacity=".028"/><stop offset=".864" stop-color="#592acb" stop-opacity="0"/></linearGradient><linearGradient id="n" x1="280.371" y1="377.927" x2="499.809" y2="470.777" gradientUnits="userSpaceOnUse"><stop offset=".001" stop-color="#54ffbd"/><stop offset="1" stop-color="#0df"/></linearGradient><filter id="o" x="-1" y="-1" width="300%" height="300%"><feOffset result="offOut" in="SourceGraphic" dx="-4" dy="-4"/><feColorMatrix result="matrixOut" in="offOut" values=".01 0 0 0 0 0 0 0 0 0 0 .2 0 0 0 0 0 0 .2 0"/><feGaussianBlur result="blurOut" in="matrixOut" stdDeviation="8"/><feBlend in="SourceGraphic" in2="blurOut"/></filter></defs><path d="M450.683 326.634h-175.61a9.366 9.366 0 00-9.366 9.366v28.1a74.926 74.926 0 0074.927
74.926h97.171A56.2 56.2 0 00494 382.829v-24.585c0-14.044-14.049-31.61-43.317-31.61z" fill="#008787"/><path d="M450.683 326.634h-175.61a9.366 9.366 0 00-9.366 9.366v28.1a74.926 74.926 0 0074.927 74.926h97.171A56.2 56.2 0 00494 382.829v-24.585c0-14.044-14.049-31.61-43.317-31.61z" fill="url(#a)" opacity=".9"/><path d="M478.711 166.353c-10.445-25.124-31.6-52.248-48.212-60.821 13.52 26.505 21.345 53.093 24.335 72.936 0 .039.015.136.047.4C427.706 111.135 381.627 83.823 344 24.355c-1.9-3.007-3.805-6.022-5.661-9.2a73.716 73.716 0 01-2.646-4.972A43.7 43.7 0 01332.1.677a.626.626 0 00-.546-.644.818.818 0 00-.451 0c-.034.012-.084.051-.12.065-.053.021-.12.069-.176.1.027-.036.083-.117.1-.136-60.37 35.356-80.85 100.761-82.732 133.484a120.249 120.249 0 00-66.142 25.488 71.355 71.355 0 00-6.225-4.7 111.338 111.338 0 01-.674-58.732c-24.688 11.241-43.89 29.01-57.85 44.7h-.111c-9.527-12.067-8.855-51.873-8.312-60.184-.114-.515-7.107 3.63-8.023 4.255a175.073 175.073 0 00-23.486 20.12 210.478 210.478 0 00
-22.442 26.913c0 .012-.007.026-.011.038 0-.013.007-.026.011-.038a202.838 202.838 0 00-32.247 72.805c-.115.521-.212 1.061-.324 1.586-.452 2.116-2.08 12.7-2.365 15-.022.177-.032.347-.053.524a229.066 229.066 0 00-3.9 33.157c0 .41-.025.816-.025 1.227C16 388.418 123.6 496 256.324 496c118.865 0 217.56-86.288 236.882-199.63.407-3.076.733-6.168 1.092-9.271 4.777-41.21-.53-84.525-15.587-120.746zM201.716 354.447c1.124.537 2.18 1.124 3.334 1.639.048.033.114.07.163.1a126.191 126.191 0 01-3.497-1.739zm55.053-144.93zm198.131-30.59l-.032-.233c.012.085.027.174.04.259z" fill="url(#b)"/><path d="M478.711 166.353c-10.445-25.124-31.6-52.248-48.212-60.821 13.52 26.505 21.345 53.093 24.335 72.936 0-.058.011.048.036.226.012.085.027.174.04.259 22.675 61.47 10.322 123.978-7.479 162.175-27.539 59.1-94.215 119.67-198.576 116.716C136.1 454.651 36.766 370.988 18.223 261.41c-3.379-17.28 0-26.054 1.7-40.084-2.071 10.816-2.86 13.94-3.9 33.157 0 .41-.025.816-.025 1.227C16 388.418 123.6 496 256.324 496c118.865 0 217
.56-86.288 236.882-199.63.407-3.076.733-6.168 1.092-9.271 4.777-41.21-.53-84.525-15.587-120.746z" fill="url(#c)"/><path d="M478.711 166.353c-10.445-25.124-31.6-52.248-48.212-60.821 13.52 26.505 21.345 53.093 24.335 72.936 0-.058.011.048.036.226.012.085.027.174.04.259 22.675 61.47 10.322 123.978-7.479 162.175-27.539 59.1-94.215 119.67-198.576 116.716C136.1 454.651 36.766 370.988 18.223 261.41c-3.379-17.28 0-26.054 1.7-40.084-2.071 10.816-2.86 13.94-3.9 33.157 0 .41-.025.816-.025 1.227C16 388.418 123.6 496 256.324 496c118.865 0 217.56-86.288 236.882-199.63.407-3.076.733-6.168 1.092-9.271 4.777-41.21-.53-84.525-15.587-120.746z" fill="url(#d)"/><path d="M361.922 194.6c.524.368 1 .734 1.493 1.1a130.706 130.706 0 00-22.31-29.112C266.4 91.892 321.516 4.626 330.811.194c.027-.036.083-.117.1-.136-60.37 35.356-80.85 100.761-82.732 133.484 2.8-.194 5.592-.429 8.442-.429 45.051 0 84.289 24.77 105.301 61.487z" fill="url(#e)"/><path d="M256.772 209.514c-.393 5.978-21.514 26.593-28.9 26.593-68.339
0-79.432 41.335-79.432 41.335 3.027 34.81 27.261 63.475 56.611 78.643 1.339.692 2.694 1.317 4.05 1.935a132.768 132.768 0 007.059 2.886 106.743 106.743 0 0031.271 6.031c119.78 5.618 142.986-143.194 56.545-186.408 22.137-3.85 45.115 5.053 57.947 14.067-21.012-36.714-60.25-61.484-105.3-61.484-2.85 0-5.641.235-8.442.429a120.249 120.249 0 00-66.142 25.488c3.664 3.1 7.8 7.244 16.514 15.828 16.302 16.067 58.13 32.705 58.219 34.657z" fill="url(#f)"/><path d="M256.772 209.514c-.393 5.978-21.514 26.593-28.9 26.593-68.339 0-79.432 41.335-79.432 41.335 3.027 34.81 27.261 63.475 56.611 78.643 1.339.692 2.694 1.317 4.05 1.935a132.768 132.768 0 007.059 2.886 106.743 106.743 0 0031.271 6.031c119.78 5.618 142.986-143.194 56.545-186.408 22.137-3.85 45.115 5.053 57.947 14.067-21.012-36.714-60.25-61.484-105.3-61.484-2.85 0-5.641.235-8.442.429a120.249 120.249 0 00-66.142 25.488c3.664 3.1 7.8 7.244 16.514 15.828 16.302 16.067 58.13 32.705 58.219 34.657z" fill="url(#g)"/><path d="M170.829 151.036a244.042
244.042 0 014.981 3.3 111.338 111.338 0 01-.674-58.732c-24.688 11.241-43.89 29.01-57.85 44.7 1.155-.033 36.014-.66 53.543 10.732z" fill="url(#h)"/><path d="M18.223 261.41C36.766 370.988 136.1 454.651 248.855 457.844c104.361 2.954 171.037-57.62 198.576-116.716 17.8-38.2 30.154-100.7 7.479-162.175l-.008-.026-.032-.233c-.025-.178-.04-.284-.036-.226 0 .039.015.136.047.4 8.524 55.661-19.79 109.584-64.051 146.044l-.133.313c-86.245 70.223-168.774 42.368-185.484 30.966a144.108 144.108 0 01-3.5-1.743c-50.282-24.029-71.054-69.838-66.6-109.124-42.457 0-56.934-35.809-56.934-35.809s38.119-27.179 88.358-3.541c46.53 21.893 90.228 3.543 90.233 3.541-.089-1.952-41.917-18.59-58.223-34.656-8.713-8.584-12.85-12.723-16.514-15.828a71.355 71.355 0 00-6.225-4.7 282.929 282.929 0 00-4.981-3.3c-17.528-11.392-52.388-10.765-53.543-10.735h-.111c-9.527-12.067-8.855-51.873-8.312-60.184-.114-.515-7.107 3.63-8.023 4.255a175.073 175.073 0 00-23.486 20.12 210.478 210.478 0 00-22.442 26.919c0 .012-.007.026-.011.038 0-
.013.007-.026.011-.038a202.838 202.838 0 00-32.247 72.805c-.115.521-8.65 37.842-4.44 57.199z" fill="url(#i)"/><path d="M341.105 166.587a130.706 130.706 0 0122.31 29.112c1.323.994 2.559 1.985 3.608 2.952 54.482 50.2 25.936 121.2 23.807 126.26 44.261-36.46 72.575-90.383 64.051-146.044C427.706 111.135 381.627 83.823 344 24.355c-1.9-3.007-3.805-6.022-5.661-9.2a73.716 73.716 0 01-2.646-4.972A43.7 43.7 0 01332.1.677a.626.626 0 00-.546-.644.818.818 0 00-.451 0c-.034.012-.084.051-.12.065-.053.021-.12.069-.176.1-9.291 4.428-64.407 91.694 10.298 166.389z" fill="url(#j)"/><path d="M367.023 198.651c-1.049-.967-2.285-1.958-3.608-2.952-.489-.368-.969-.734-1.493-1.1-12.832-9.014-35.81-17.917-57.947-14.067 86.441 43.214 63.235 192.026-56.545 186.408a106.743 106.743 0 01-31.271-6.031 134.51 134.51 0 01-7.059-2.886c-1.356-.618-2.711-1.243-4.05-1.935.048.033.114.07.163.1 16.71 11.4 99.239 39.257 185.484-30.966l.133-.313c2.129-5.054 30.675-76.057-23.807-126.258z" fill="url(#k)"/><path d="M148.439 277.4
43s11.093-41.335 79.432-41.335c7.388 0 28.509-20.615 28.9-26.593s-43.7 18.352-90.233-3.541c-50.239-23.638-88.358 3.541-88.358 3.541s14.477 35.809 56.934 35.809c-4.453 39.286 16.319 85.1 66.6 109.124 1.124.537 2.18 1.124 3.334 1.639-29.348-15.169-53.582-43.834-56.609-78.644z" fill="url(#l)"/><path d="M478.711 166.353c-10.445-25.124-31.6-52.248-48.212-60.821 13.52 26.505 21.345 53.093 24.335 72.936 0 .039.015.136.047.4C427.706 111.135 381.627 83.823 344 24.355c-1.9-3.007-3.805-6.022-5.661-9.2a73.716 73.716 0 01-2.646-4.972A43.7 43.7 0 01332.1.677a.626.626 0 00-.546-.644.818.818 0 00-.451 0c-.034.012-.084.051-.12.065-.053.021-.12.069-.176.1.027-.036.083-.117.1-.136-60.37 35.356-80.85 100.761-82.732 133.484 2.8-.194 5.592-.429 8.442-.429 45.053 0 84.291 24.77 105.3 61.484-12.832-9.014-35.81-17.917-57.947-14.067 86.441 43.214 63.235 192.026-56.545 186.408a106.743 106.743 0 01-31.271-6.031 134.51 134.51 0 01-7.059-2.886c-1.356-.618-2.711-1.243-4.05-1.935.048.033.114.07.163.1a144.108 144.1
08 0 01-3.5-1.743c1.124.537 2.18 1.124 3.334 1.639-29.35-15.168-53.584-43.833-56.611-78.643 0 0 11.093-41.335 79.432-41.335 7.388 0 28.509-20.615 28.9-26.593-.089-1.952-41.917-18.59-58.223-34.656-8.713-8.584-12.85-12.723-16.514-15.828a71.355 71.355 0 00-6.225-4.7 111.338 111.338 0 01-.674-58.732c-24.688 11.241-43.89 29.01-57.85 44.7h-.111c-9.527-12.067-8.855-51.873-8.312-60.184-.114-.515-7.107 3.63-8.023 4.255a175.073 175.073 0 00-23.486 20.12 210.478 210.478 0 00-22.435 26.916c0 .012-.007.026-.011.038 0-.013.007-.026.011-.038a202.838 202.838 0 00-32.247 72.805c-.115.521-.212 1.061-.324 1.586-.452 2.116-2.486 12.853-2.77 15.156-.022.177.021-.176 0 0a279.565 279.565 0 00-3.544 33.53c0 .41-.025.816-.025 1.227C16 388.418 123.6 496 256.324 496c118.865 0 217.56-86.288 236.882-199.63.407-3.076.733-6.168 1.092-9.271 4.777-41.21-.53-84.525-15.587-120.746zm-23.841 12.341c.012.085.027.174.04.259l-.008-.026-.032-.233z" fill="url(#m)"/><path d="M484.634 367.61H323.189A69.189 69.189 0 00254 436.
8v33.835a9.366 9.366 0 009.366 9.365h161.445A69.189 69.189 0 00494 410.811v-52.567a9.366 9.366 0 01-9.366 9.366z" fill="url(#n)" filter="url(#o)"/><path d="M326.241 423.168a10.264 10.264 0 005.349-9.424c0-8.342-5.795-12.991-16.11-12.991h-19.232v46.486h19.359c10.315 0 16.684-4.584 16.684-13.755 0-4.839-2.166-8.341-6.05-10.316zM305.1 408.713h10.57c4.713 0 6.941 1.975 6.941 5.223 0 3.183-2.038 5.539-6.813 5.539H305.1zm10.635 30.439H305.1v-11.59h10.253c5.667 0 7.833 2.1 7.833 5.731s-2.548 5.859-7.452 5.859zm25.15 8.087h31.265v-8.532h-22.287v-10.572h22.287v-8.469h-22.287v-10.444h22.287v-8.469h-31.266zm73.548-46.486h-34.58v8.278h12.928v38.208h8.851v-38.208h12.8zm24.069 0h-8.852l-17.576 46.486h9.234l3.056-8.469h19.422l3.058 8.469h9.233zm-11.144 29.866l6.75-18.467 6.686 18.467z" fill="#20123a"/></svg>
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs>
+ <linearGradient x1="50%" y1="100%" x2="50%" y2="0%" id="linearGradient-1">
+ <stop stop-color="#420C5D" offset="0%"></stop>
+ <stop stop-color="#951AD1" offset="100%"></stop>
+ </linearGradient>
+ <path d="M25,29 C152.577777,29 256,131.974508 256,259 C256,386.025492 152.577777,489 25,489 L25,29 Z" id="path-2"></path>
+ <filter x="-18.2%" y="-7.4%" width="129.4%" height="114.8%" filterUnits="objectBoundingBox" id="filter-3">
+ <feOffset dx="-8" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
+ <feGaussianBlur stdDeviation="10" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
+ <feColorMatrix values="0 0 0 0 0.250980392 0 0 0 0 0.250980392 0 0 0 0 0.250980392 0 0 0 0.2 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
+ </filter>
+ </defs>
+ <g id="Assets" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
+ <g id="icon_512x512">
+ <g id="Group">
+ <g id="tb_icon/Stable">
+ <g id="Stable">
+ <circle id="background" fill="#F2E4FF" fill-rule="nonzero" cx="256" cy="256" r="246"></circle>
+ <path d="M256.525143,465.439707 L256.525143,434.406609 C354.826191,434.122748 434.420802,354.364917 434.420802,255.992903 C434.420802,157.627987 354.826191,77.8701558 256.525143,77.5862948 L256.525143,46.5531962 C371.964296,46.8441537 465.446804,140.489882 465.446804,255.992903 C465.446804,371.503022 371.964296,465.155846 256.525143,465.439707 Z M256.525143,356.820314 C311.970283,356.529356 356.8487,311.516106 356.8487,255.992903 C356.8487,200.476798 311.970283,155.463547 256.525143,155.17259 L256.525143,124.146588 C329.115485,124.430449 387.881799,183.338693 387.881799,255.992903 C387.881799,328.654211 329.115485,387.562455 256.525143,387.846316 L256.525143,356.820314 Z M256.525143,201.718689 C286.266674,202.00255 310.3026,226.180407 310.3026,255.992903 C310.3026,285.812497 286.266674,309.990353 256.525143,310.274214 L256.525143,201.718689 Z M0,255.992903 C0,397.384044 114.60886,512 256,512 C397.384044,512 512,397.384044 512,255.992903 C512,114.60886 397.384
044,0 256,0 C114.60886,0 0,114.60886 0,255.992903 Z" id="center" fill="url(#linearGradient-1)"></path>
+ <g id="half" transform="translate(140.500000, 259.000000) scale(-1, 1) translate(-140.500000, -259.000000) ">
+ <use fill="black" fill-opacity="1" filter="url(#filter-3)" xlink:href="#path-2"></use>
+ <use fill="url(#linearGradient-1)" fill-rule="evenodd" xlink:href="#path-2"></use>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/devtools/client/themes/images/aboutdebugging-firefox-logo.svg b/devtools/client/themes/images/aboutdebugging-firefox-logo.svg
index fe4d116b1660..d7895f1107c5 100644
--- a/devtools/client/themes/images/aboutdebugging-firefox-logo.svg
+++ b/devtools/client/themes/images/aboutdebugging-firefox-logo.svg
@@ -1,6 +1,5 @@
-<!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
- <path fill="context-fill #20123a" d="M190.368 150.591c0.157 0.009 0.079 0.003 0 0zm-57.874-28.933c0.158 0.008 0.079 0.003 0 0zm346.228 44.674c-10.445-25.123-31.6-52.248-48.211-60.82 13.52 26.5 21.345 53.093 24.335 72.935 0 0.04 0.015 0.136 0.047 0.4-27.175-67.732-73.254-95.047-110.886-154.512-1.9-3.008-3.805-6.022-5.661-9.2a73.237 73.237 0 0 1-2.646-4.972 43.757 43.757 0 0 1-3.585-9.5 0.625 0.625 0 0 0-0.546-0.644 0.8 0.8 0 0 0-0.451 0c-0.033 0.011-0.084 0.051-0.119 0.065-0.053 0.02-0.12 0.069-0.176 0.095 0.026-0.036 0.083-0.117 0.1-0.135-53.437 31.3-75.587 86.093-81.282 120.97a128.057 128.057 0 0 0-47.624 12.153 6.144 6.144 0 0 0-3.041 7.63 6.034 6.034 0 0 0 8.192 3.525 116.175 116.175 0 0 1 41.481-10.826c0.468-0.033 0.937-0.062 1.405-0.1a117.624 117.624 0 0 1 5.932-0.211 120.831 120.831 0 0 1 34.491 4.777c0.654 0.192 1.295 0.414 1.946 0.616a120.15 120.15 0 0 1 5.539 1.842 121.852 121.852 0 0 1 3.992 1.564c1.074 0.434 2.148 0.868 3.206 1.331a118.453 118.453 0 0 1 4.9 2.307c0.743
0.368 1.485 0.735 2.217 1.117a120.535 120.535 0 0 1 4.675 2.587 107.785 107.785 0 0 1 2.952 1.776 123.018 123.018 0 0 1 42.028 43.477c-12.833-9.015-35.81-17.918-57.947-14.068 86.441 43.214 63.234 192.027-56.545 186.408a106.7 106.7 0 0 1-31.271-6.031 132.461 132.461 0 0 1-7.059-2.886c-1.356-0.618-2.711-1.243-4.051-1.935-29.349-15.168-53.583-43.833-56.611-78.643 0 0 11.093-41.335 79.433-41.335 7.388 0 28.508-20.614 28.9-26.593-0.09-1.953-41.917-18.59-58.223-34.656-8.714-8.585-12.851-12.723-16.514-15.829a71.7 71.7 0 0 0-6.225-4.7 111.335 111.335 0 0 1-0.675-58.733c-24.687 11.242-43.89 29.011-57.849 44.7h-0.111c-9.528-12.067-8.855-51.873-8.312-60.184-0.114-0.516-7.107 3.63-8.024 4.254a175.21 175.21 0 0 0-23.486 20.12 210.5 210.5 0 0 0-22.443 26.913c0 0.012-0.007 0.025-0.011 0.037 0-0.012 0.007-0.025 0.011-0.038a202.837 202.837 0 0 0-32.244 72.81c-0.058 0.265-2.29 10.054-3.92 22.147a265.794 265.794 0 0 0-0.769 5.651c-0.558 3.636-0.992 7.6-1.42 13.767-0.019 0.239-0.031 0.474-0.048 0.712a5
91.152 591.152 0 0 0-0.481 7.995c0 0.411-0.025 0.816-0.025 1.227 0 132.709 107.6 240.29 240.324 240.29 118.865 0 217.559-86.288 236.882-199.63 0.407-3.075 0.732-6.168 1.092-9.27 4.777-41.21-0.53-84.525-15.588-120.747zm-164.068 72.1z" />
-</svg>
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
+ <g fill="context-fill" fill-opacity="context-fill-opacity" fill-rule="nonzero">
+ <path d="M12.0246161,21.8174863 L12.0246161,20.3628098 C16.6324777,20.3495038 20.3634751,16.6108555 20.3634751,11.9996673 C20.3634751,7.38881189 16.6324777,3.65016355 12.0246161,3.63685757 L12.0246161,2.18218107 C17.4358264,2.1958197 21.8178189,6.58546322 21.8178189,11.9996673 C21.8178189,17.4142042 17.4358264,21.8041803 12.0246161,21.8174863 L12.0246161,21.8174863 Z M12.0246161,16.7259522 C14.623607,16.7123136 16.7272828,14.6023175 16.7272828,11.9996673 C16.7272828,9.39734991 14.623607,7.28735377 12.0246161,7.27371516 L12.0246161,5.81937131 C15.4272884,5.8326773 18.1819593,8.59400123 18.1819593,11.9996673 C18.1819593,15.4056661 15.4272884,18.1669901 12.0246161,18.1802961 L12.0246161,16.7259522 Z M12.0246161,9.45556355 C13.4187503,9.46886953 14.5454344,10.6022066 14.5454344,11.9996673 C14.5454344,13.3974608 13.4187503,14.5307978 12.0246161,14.5441038 L12.0246161,9.45556355 Z M0,11.9996673 C0,18.6273771 5.37229031,24 12,24 C18.6273771,24 24,18.6273771 24,11.9996673 C24,5.37229031
18.6273771,0 12,0 C5.37229031,0 0,5.37229031 0,11.9996673 Z"/>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/devtools/client/themes/images/aboutdebugging-firefox-nightly.svg b/devtools/client/themes/images/aboutdebugging-firefox-nightly.svg
index dbc7b084d6c0..9240dc6e84ca 100644
--- a/devtools/client/themes/images/aboutdebugging-firefox-nightly.svg
+++ b/devtools/client/themes/images/aboutdebugging-firefox-nightly.svg
@@ -1,4 +1,31 @@
-<!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><defs><radialGradient id="b" cx="-9227.187" cy="-9815.121" r="80.797" gradientTransform="matrix(6.201 0 0 6.2 57644.994 60908.8)" gradientUnits="userSpaceOnUse"><stop offset=".108" stop-color="#3fe1b0"/><stop offset=".122" stop-color="#3bdcb3"/><stop offset=".254" stop-color="#1bb3d3"/><stop offset=".358" stop-color="#0799e6"/><stop offset=".42" stop-color="#0090ed"/><stop offset=".487" stop-color="#2482f1"/><stop offset=".64" stop-color="#7165fb"/><stop offset=".71" stop-color="#9059ff"/><stop offset=".795" stop-color="#7d49ed"/><stop offset=".86" stop-color="#7542e5"/></radialGradient><radialGradient id="c" cx="-9256.711" cy="-9782.089" r="80.797" gradientTransform="matrix(6.201 0 0 6.2 57644.994 60908.8)" gradientUnits="userSpaceOnUse"><stop offset=".3" stop-color="#45278d"/><stop offset=".341" stop-color="#562896" stop-opacity=".787"/><stop offset=".43" stop-color="#782aa9" stop-opacity=".364"/><stop offset=".495" sto
p-color="#8d2bb5" stop-opacity=".1"/><stop offset=".53" stop-color="#952bb9" stop-opacity="0"/></radialGradient><radialGradient id="d" cx="-9246.97" cy="-9833.457" r="58.534" gradientTransform="matrix(6.201 0 0 6.2 57644.994 60908.8)" gradientUnits="userSpaceOnUse"><stop offset=".132" stop-color="#3fe1b0"/><stop offset=".289" stop-color="#28d0c8"/><stop offset=".526" stop-color="#00b3f4"/></radialGradient><radialGradient id="e" cx="-9265.648" cy="-9760.984" r="38.471" gradientTransform="matrix(6.201 0 0 6.2 57644.994 60908.8)" gradientUnits="userSpaceOnUse"><stop offset=".287" stop-color="#0060df"/><stop offset=".417" stop-color="#2357e1"/><stop offset=".604" stop-color="#4f4ce3"/><stop offset=".748" stop-color="#6b45e4"/><stop offset=".833" stop-color="#7542e5"/></radialGradient><radialGradient id="f" cx="-9255.62" cy="-9791.546" r="20.397" gradientTransform="matrix(6.027 -1.458 1.708 7.059 72758.651 55821.181)" gradientUnits="userSpaceOnUse"><stop offset=".206" stop-color="#45278d
" stop-opacity="0"/><stop offset=".251" stop-color="#44268a" stop-opacity=".055"/><stop offset=".725" stop-color="#371f6f" stop-opacity=".591"/><stop offset=".956" stop-color="#321c64" stop-opacity=".8"/></radialGradient><radialGradient id="g" cx="-9257.731" cy="-9818.427" r="27.676" gradientTransform="matrix(6.201 0 0 6.2 57644.994 60908.8)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#0df"/><stop offset=".235" stop-color="#00d6fd"/><stop offset=".572" stop-color="#00c3f8"/><stop offset=".792" stop-color="#00b3f4"/></radialGradient><radialGradient id="h" cx="-9235.977" cy="-9835.981" r="118.081" gradientTransform="matrix(6.201 0 0 6.2 57644.994 60908.8)" gradientUnits="userSpaceOnUse"><stop offset=".126" stop-color="#3fe1b0"/><stop offset=".429" stop-color="#0df"/><stop offset=".479" stop-color="#1ec1ff"/><stop offset=".624" stop-color="#7077ff"/><stop offset=".69" stop-color="#9059ff"/><stop offset=".904" stop-color="#b833e1"/></radialGradient><radialGradient id="i
" cx="-9247.165" cy="-9822.859" r="86.499" gradientTransform="matrix(.649 6.166 -4.046 .426 -33440.427 61207.861)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#54ffbd"/><stop offset=".095" stop-color="#4cf3b8"/><stop offset=".197" stop-color="#3fe1b0"/><stop offset=".257" stop-color="#33d8bd"/><stop offset=".369" stop-color="#12c0e1"/><stop offset=".423" stop-color="#00b3f4"/><stop offset=".737" stop-color="#0060df"/></radialGradient><radialGradient id="j" cx="-9258.383" cy="-9808.176" r="73.72" gradientTransform="matrix(6.201 0 0 6.2 57644.994 60908.8)" gradientUnits="userSpaceOnUse"><stop offset=".137" stop-color="#3fe1b0"/><stop offset=".435" stop-color="#0df"/><stop offset=".484" stop-color="#1ec1ff"/><stop offset=".622" stop-color="#7077ff"/><stop offset=".685" stop-color="#9059ff"/></radialGradient><radialGradient id="k" cx="-9238.923" cy="-9803.861" r="80.686" gradientTransform="matrix(6.201 0 0 6.2 57644.994 60908.8)" gradientUnits="userSpaceOnUse"><stop offs
et=".094" stop-color="#54ffbd"/><stop offset=".242" stop-color="#41f7cc"/><stop offset=".543" stop-color="#0fe3f3"/><stop offset=".626" stop-color="#0df"/></radialGradient><linearGradient id="a" x1="471.8" y1="127.352" x2="55.983" y2="389.284" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#3fe1b0"/><stop offset=".406" stop-color="#00b3f4"/><stop offset=".421" stop-color="#03b0f4"/><stop offset=".818" stop-color="#5561e9"/><stop offset="1" stop-color="#7542e5"/></linearGradient><linearGradient id="l" x1="442.084" y1="74.772" x2="102.645" y2="414.21" gradientUnits="userSpaceOnUse"><stop offset=".167" stop-color="#54ffbd" stop-opacity=".8"/><stop offset=".236" stop-color="#43f8ca" stop-opacity=".639"/><stop offset=".361" stop-color="#27ede1" stop-opacity=".368"/><stop offset=".466" stop-color="#12e4f1" stop-opacity=".169"/><stop offset=".545" stop-color="#05dffb" stop-opacity=".046"/><stop offset=".589" stop-color="#0df" stop-opacity="0"/></linearGradient></defs><path d="
M478.711 166.353c-10.445-25.124-31.6-52.248-48.212-60.821 13.52 26.505 21.345 53.093 24.335 72.936 0 .039.015.136.047.4C427.706 111.135 381.627 83.823 344 24.355c-1.9-3.007-3.805-6.022-5.661-9.2a73.716 73.716 0 01-2.646-4.972A43.7 43.7 0 01332.1.677a.626.626 0 00-.546-.644.818.818 0 00-.451 0c-.034.012-.084.051-.12.065-.053.021-.12.069-.176.1.027-.036.083-.117.1-.136-60.37 35.356-80.85 100.761-82.732 133.484a120.249 120.249 0 00-66.142 25.488 71.355 71.355 0 00-6.225-4.7 111.338 111.338 0 01-.674-58.732c-24.688 11.241-43.89 29.01-57.85 44.7h-.111c-9.527-12.067-8.855-51.873-8.312-60.184-.114-.515-7.107 3.63-8.023 4.255a175.073 175.073 0 00-23.486 20.12 210.478 210.478 0 00-22.442 26.913c0 .012-.007.026-.011.038 0-.013.007-.026.011-.038a202.838 202.838 0 00-32.247 72.805c-.115.521-.212 1.061-.324 1.586-.452 2.116-2.08 12.7-2.365 15-.022.177-.032.347-.053.524a229.066 229.066 0 00-3.9 33.157c0 .41-.025.816-.025 1.227C16 388.418 123.6 496 256.324 496c118.865 0 217.56-86.288 236.882-199.6
3.407-3.076.733-6.168 1.092-9.271 4.777-41.21-.53-84.525-15.587-120.746zM201.716 354.447c1.124.537 2.18 1.124 3.334 1.639.048.033.114.07.163.1a126.191 126.191 0 01-3.497-1.739zm55.053-144.93zm198.131-30.59l-.032-.233c.012.085.027.174.04.259z" fill="url(#a)"/><path d="M478.711 166.353c-10.445-25.124-31.6-52.248-48.212-60.821 13.52 26.505 21.345 53.093 24.335 72.936 0-.058.011.048.036.226.012.085.027.174.04.259 22.675 61.47 10.322 123.978-7.479 162.175-27.539 59.1-94.215 119.67-198.576 116.716C136.1 454.651 36.766 370.988 18.223 261.41c-3.379-17.28 0-26.054 1.7-40.084-2.071 10.816-2.86 13.94-3.9 33.157 0 .41-.025.816-.025 1.227C16 388.418 123.6 496 256.324 496c118.865 0 217.56-86.288 236.882-199.63.407-3.076.733-6.168 1.092-9.271 4.777-41.21-.53-84.525-15.587-120.746z" fill="url(#b)"/><path d="M478.711 166.353c-10.445-25.124-31.6-52.248-48.212-60.821 13.52 26.505 21.345 53.093 24.335 72.936 0-.058.011.048.036.226.012.085.027.174.04.259 22.675 61.47 10.322 123.978-7.479 162.175-27.539
59.1-94.215 119.67-198.576 116.716C136.1 454.651 36.766 370.988 18.223 261.41c-3.379-17.28 0-26.054 1.7-40.084-2.071 10.816-2.86 13.94-3.9 33.157 0 .41-.025.816-.025 1.227C16 388.418 123.6 496 256.324 496c118.865 0 217.56-86.288 236.882-199.63.407-3.076.733-6.168 1.092-9.271 4.777-41.21-.53-84.525-15.587-120.746z" fill="url(#c)"/><path d="M361.922 194.6c.524.368 1 .734 1.493 1.1a130.706 130.706 0 00-22.31-29.112C266.4 91.892 321.516 4.626 330.811.194c.027-.036.083-.117.1-.136-60.37 35.356-80.85 100.761-82.732 133.484 2.8-.194 5.592-.429 8.442-.429 45.051 0 84.289 24.77 105.301 61.487z" fill="url(#d)"/><path d="M256.772 209.514c-.393 5.978-21.514 26.593-28.9 26.593-68.339 0-79.432 41.335-79.432 41.335 3.027 34.81 27.261 63.475 56.611 78.643 1.339.692 2.694 1.317 4.05 1.935a132.768 132.768 0 007.059 2.886 106.743 106.743 0 0031.271 6.031c119.78 5.618 142.986-143.194 56.545-186.408 22.137-3.85 45.115 5.053 57.947 14.067-21.012-36.714-60.25-61.484-105.3-61.484-2.85 0-5.641.235-8.442.429
a120.249 120.249 0 00-66.142 25.488c3.664 3.1 7.8 7.244 16.514 15.828 16.302 16.067 58.13 32.705 58.219 34.657z" fill="url(#e)"/><path d="M256.772 209.514c-.393 5.978-21.514 26.593-28.9 26.593-68.339 0-79.432 41.335-79.432 41.335 3.027 34.81 27.261 63.475 56.611 78.643 1.339.692 2.694 1.317 4.05 1.935a132.768 132.768 0 007.059 2.886 106.743 106.743 0 0031.271 6.031c119.78 5.618 142.986-143.194 56.545-186.408 22.137-3.85 45.115 5.053 57.947 14.067-21.012-36.714-60.25-61.484-105.3-61.484-2.85 0-5.641.235-8.442.429a120.249 120.249 0 00-66.142 25.488c3.664 3.1 7.8 7.244 16.514 15.828 16.302 16.067 58.13 32.705 58.219 34.657z" fill="url(#f)"/><path d="M170.829 151.036a244.042 244.042 0 014.981 3.3 111.338 111.338 0 01-.674-58.732c-24.688 11.241-43.89 29.01-57.85 44.7 1.155-.033 36.014-.66 53.543 10.732z" fill="url(#g)"/><path d="M18.223 261.41C36.766 370.988 136.1 454.651 248.855 457.844c104.361 2.954 171.037-57.62 198.576-116.716 17.8-38.2 30.154-100.7 7.479-162.175l-.008-.026-.032-.233
c-.025-.178-.04-.284-.036-.226 0 .039.015.136.047.4 8.524 55.661-19.79 109.584-64.051 146.044l-.133.313c-86.245 70.223-168.774 42.368-185.484 30.966a144.108 144.108 0 01-3.5-1.743c-50.282-24.029-71.054-69.838-66.6-109.124-42.457 0-56.934-35.809-56.934-35.809s38.119-27.179 88.358-3.541c46.53 21.893 90.228 3.543 90.233 3.541-.089-1.952-41.917-18.59-58.223-34.656-8.713-8.584-12.85-12.723-16.514-15.828a71.355 71.355 0 00-6.225-4.7 282.929 282.929 0 00-4.981-3.3c-17.528-11.392-52.388-10.765-53.543-10.735h-.111c-9.527-12.067-8.855-51.873-8.312-60.184-.114-.515-7.107 3.63-8.023 4.255a175.073 175.073 0 00-23.486 20.12 210.478 210.478 0 00-22.442 26.919c0 .012-.007.026-.011.038 0-.013.007-.026.011-.038a202.838 202.838 0 00-32.247 72.805c-.115.521-8.65 37.842-4.44 57.199z" fill="url(#h)"/><path d="M341.105 166.587a130.706 130.706 0 0122.31 29.112c1.323.994 2.559 1.985 3.608 2.952 54.482 50.2 25.936 121.2 23.807 126.26 44.261-36.46 72.575-90.383 64.051-146.044C427.706 111.135 381.627 83.823 34
4 24.355c-1.9-3.007-3.805-6.022-5.661-9.2a73.716 73.716 0 01-2.646-4.972A43.7 43.7 0 01332.1.677a.626.626 0 00-.546-.644.818.818 0 00-.451 0c-.034.012-.084.051-.12.065-.053.021-.12.069-.176.1-9.291 4.428-64.407 91.694 10.298 166.389z" fill="url(#i)"/><path d="M367.023 198.651c-1.049-.967-2.285-1.958-3.608-2.952-.489-.368-.969-.734-1.493-1.1-12.832-9.014-35.81-17.917-57.947-14.067 86.441 43.214 63.235 192.026-56.545 186.408a106.743 106.743 0 01-31.271-6.031 134.51 134.51 0 01-7.059-2.886c-1.356-.618-2.711-1.243-4.05-1.935.048.033.114.07.163.1 16.71 11.4 99.239 39.257 185.484-30.966l.133-.313c2.129-5.054 30.675-76.057-23.807-126.258z" fill="url(#j)"/><path d="M148.439 277.443s11.093-41.335 79.432-41.335c7.388 0 28.509-20.615 28.9-26.593s-43.7 18.352-90.233-3.541c-50.239-23.638-88.358 3.541-88.358 3.541s14.477 35.809 56.934 35.809c-4.453 39.286 16.319 85.1 66.6 109.124 1.124.537 2.18 1.124 3.334 1.639-29.348-15.169-53.582-43.834-56.609-78.644z" fill="url(#k)"/><path d="M478.711 166.353
c-10.445-25.124-31.6-52.248-48.212-60.821 13.52 26.505 21.345 53.093 24.335 72.936 0 .039.015.136.047.4C427.706 111.135 381.627 83.823 344 24.355c-1.9-3.007-3.805-6.022-5.661-9.2a73.716 73.716 0 01-2.646-4.972A43.7 43.7 0 01332.1.677a.626.626 0 00-.546-.644.818.818 0 00-.451 0c-.034.012-.084.051-.12.065-.053.021-.12.069-.176.1.027-.036.083-.117.1-.136-60.37 35.356-80.85 100.761-82.732 133.484 2.8-.194 5.592-.429 8.442-.429 45.053 0 84.291 24.77 105.3 61.484-12.832-9.014-35.81-17.917-57.947-14.067 86.441 43.214 63.235 192.026-56.545 186.408a106.743 106.743 0 01-31.271-6.031 134.51 134.51 0 01-7.059-2.886c-1.356-.618-2.711-1.243-4.05-1.935.048.033.114.07.163.1a144.108 144.108 0 01-3.5-1.743c1.124.537 2.18 1.124 3.334 1.639-29.35-15.168-53.584-43.833-56.611-78.643 0 0 11.093-41.335 79.432-41.335 7.388 0 28.509-20.615 28.9-26.593-.089-1.952-41.917-18.59-58.223-34.656-8.713-8.584-12.85-12.723-16.514-15.828a71.355 71.355 0 00-6.225-4.7 111.338 111.338 0 01-.674-58.732c-24.688 11.241-43.89
29.01-57.85 44.7h-.111c-9.527-12.067-8.855-51.873-8.312-60.184-.114-.515-7.107 3.63-8.023 4.255a175.073 175.073 0 00-23.486 20.12 210.478 210.478 0 00-22.435 26.916c0 .012-.007.026-.011.038 0-.013.007-.026.011-.038a202.838 202.838 0 00-32.247 72.805c-.115.521-.212 1.061-.324 1.586-.452 2.116-2.486 12.853-2.77 15.156-.022.177.021-.176 0 0a279.565 279.565 0 00-3.544 33.53c0 .41-.025.816-.025 1.227C16 388.418 123.6 496 256.324 496c118.865 0 217.56-86.288 236.882-199.63.407-3.076.733-6.168 1.092-9.271 4.777-41.21-.53-84.525-15.587-120.746zm-23.841 12.341c.012.085.027.174.04.259l-.008-.026-.032-.233z" fill="url(#l)"/></svg>
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs>
+ <linearGradient x1="50%" y1="100%" x2="50%" y2="0%" id="linearGradient-1">
+ <stop stop-color="#420C5D" offset="0%"></stop>
+ <stop stop-color="#951AD1" offset="100%"></stop>
+ </linearGradient>
+ <path d="M25,29 C152.577777,29 256,131.974508 256,259 C256,386.025492 152.577777,489 25,489 L25,29 Z" id="path-2"></path>
+ <filter x="-18.2%" y="-7.4%" width="129.4%" height="114.8%" filterUnits="objectBoundingBox" id="filter-3">
+ <feOffset dx="-8" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
+ <feGaussianBlur stdDeviation="10" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
+ <feColorMatrix values="0 0 0 0 0.250980392 0 0 0 0 0.250980392 0 0 0 0 0.250980392 0 0 0 0.2 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
+ </filter>
+ </defs>
+ <g id="Assets" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
+ <g id="icon_512x512">
+ <g id="Group">
+ <g id="tb_icon/Stable">
+ <g id="Stable">
+ <circle id="background" fill="#F2E4FF" fill-rule="nonzero" cx="256" cy="256" r="246"></circle>
+ <path d="M256.525143,465.439707 L256.525143,434.406609 C354.826191,434.122748 434.420802,354.364917 434.420802,255.992903 C434.420802,157.627987 354.826191,77.8701558 256.525143,77.5862948 L256.525143,46.5531962 C371.964296,46.8441537 465.446804,140.489882 465.446804,255.992903 C465.446804,371.503022 371.964296,465.155846 256.525143,465.439707 Z M256.525143,356.820314 C311.970283,356.529356 356.8487,311.516106 356.8487,255.992903 C356.8487,200.476798 311.970283,155.463547 256.525143,155.17259 L256.525143,124.146588 C329.115485,124.430449 387.881799,183.338693 387.881799,255.992903 C387.881799,328.654211 329.115485,387.562455 256.525143,387.846316 L256.525143,356.820314 Z M256.525143,201.718689 C286.266674,202.00255 310.3026,226.180407 310.3026,255.992903 C310.3026,285.812497 286.266674,309.990353 256.525143,310.274214 L256.525143,201.718689 Z M0,255.992903 C0,397.384044 114.60886,512 256,512 C397.384044,512 512,397.384044 512,255.992903 C512,114.60886 397.384
044,0 256,0 C114.60886,0 0,114.60886 0,255.992903 Z" id="center" fill="url(#linearGradient-1)"></path>
+ <g id="half" transform="translate(140.500000, 259.000000) scale(-1, 1) translate(-140.500000, -259.000000) ">
+ <use fill="black" fill-opacity="1" filter="url(#filter-3)" xlink:href="#path-2"></use>
+ <use fill="url(#linearGradient-1)" fill-rule="evenodd" xlink:href="#path-2"></use>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/devtools/client/themes/images/aboutdebugging-firefox-release.svg b/devtools/client/themes/images/aboutdebugging-firefox-release.svg
index 4c195cf17c85..9240dc6e84ca 100644
--- a/devtools/client/themes/images/aboutdebugging-firefox-release.svg
+++ b/devtools/client/themes/images/aboutdebugging-firefox-release.svg
@@ -1,4 +1,31 @@
-<!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><defs><radialGradient id="b" cx="87.4%" cy="-12.9%" r="128%" gradientTransform="matrix(.8 0 0 1 .178 .129)"><stop offset=".13" stop-color="#ffbd4f"/><stop offset=".28" stop-color="#ff980e"/><stop offset=".47" stop-color="#ff3750"/><stop offset=".78" stop-color="#eb0878"/><stop offset=".86" stop-color="#e50080"/></radialGradient><radialGradient id="c" cx="49%" cy="40%" r="128%" gradientTransform="matrix(.82 0 0 1 .088 0)"><stop offset=".3" stop-color="#960e18"/><stop offset=".35" stop-color="#b11927" stop-opacity=".74"/><stop offset=".43" stop-color="#db293d" stop-opacity=".34"/><stop offset=".5" stop-color="#f5334b" stop-opacity=".09"/><stop offset=".53" stop-color="#ff3750" stop-opacity="0"/></radialGradient><radialGradient id="d" cx="48%" cy="-12%" r="140%"><stop offset=".13" stop-color="#fff44f"/><stop offset=".53" stop-color="#ff980e"/></radialGradient><radialGradient id="e" cx="22.76%" cy="110.11%" r="100%"><stop off
set=".35" stop-color="#3a8ee6"/><stop offset=".67" stop-color="#9059ff"/><stop offset="1" stop-color="#c139e6"/></radialGradient><radialGradient id="f" cx="52%" cy="33%" r="59%" gradientTransform="scale(.9 1)"><stop offset=".21" stop-color="#9059ff" stop-opacity="0"/><stop offset=".97" stop-color="#6e008b" stop-opacity=".6"/></radialGradient><radialGradient id="g" cx="210%" cy="-100%" r="290%"><stop offset=".1" stop-color="#ffe226"/><stop offset=".79" stop-color="#ff7139"/></radialGradient><radialGradient id="h" cx="84%" cy="-41%" r="180%"><stop offset=".11" stop-color="#fff44f"/><stop offset=".46" stop-color="#ff980e"/><stop offset=".72" stop-color="#ff3647"/><stop offset=".9" stop-color="#e31587"/></radialGradient><radialGradient id="i" cx="16.1%" cy="-18.6%" r="348.8%" gradientTransform="matrix(.10453 .46743 -.99452 .04913 -.046 -.255)"><stop offset="0" stop-color="#fff44f"/><stop offset=".3" stop-color="#ff980e"/><stop offset=".57" stop-color="#ff3647"/><stop offset=".74" stop-c
olor="#e31587"/></radialGradient><radialGradient id="j" cx="18.9%" cy="-42.5%" r="238.4%"><stop offset=".14" stop-color="#fff44f"/><stop offset=".48" stop-color="#ff980e"/><stop offset=".66" stop-color="#ff3647"/><stop offset=".9" stop-color="#e31587"/></radialGradient><radialGradient id="k" cx="159.3%" cy="-44.72%" r="313.1%"><stop offset=".09" stop-color="#fff44f"/><stop offset=".63" stop-color="#ff980e"/></radialGradient><linearGradient id="a" x1="87.25%" y1="15.5%" x2="9.4%" y2="93.1%"><stop offset=".05" stop-color="#fff44f"/><stop offset=".37" stop-color="#ff980e"/><stop offset=".53" stop-color="#ff3647"/><stop offset=".7" stop-color="#e31587"/></linearGradient><linearGradient id="l" x1="80%" y1="14%" x2="18%" y2="84%"><stop offset=".17" stop-color="#fff44f" stop-opacity=".8"/><stop offset=".6" stop-color="#fff44f" stop-opacity="0"/></linearGradient></defs><path d="M478.711 166.353c-10.445-25.124-31.6-52.248-48.212-60.821 13.52 26.505 21.345 53.093 24.335 72.936 0 .039.015.136.
047.4C427.706 111.135 381.627 83.823 344 24.355c-1.9-3.007-3.805-6.022-5.661-9.2a73.716 73.716 0 01-2.646-4.972A43.7 43.7 0 01332.1.677a.626.626 0 00-.546-.644.818.818 0 00-.451 0c-.034.012-.084.051-.12.065-.053.021-.12.069-.176.1.027-.036.083-.117.1-.136-60.37 35.356-80.85 100.761-82.732 133.484a120.249 120.249 0 00-66.142 25.488 71.355 71.355 0 00-6.225-4.7 111.338 111.338 0 01-.674-58.732c-24.688 11.241-43.89 29.01-57.85 44.7h-.111c-9.527-12.067-8.855-51.873-8.312-60.184-.114-.515-7.107 3.63-8.023 4.255a175.073 175.073 0 00-23.486 20.12 210.478 210.478 0 00-22.442 26.913c0 .012-.007.026-.011.038 0-.013.007-.026.011-.038a202.838 202.838 0 00-32.247 72.805c-.115.521-.212 1.061-.324 1.586-.452 2.116-2.08 12.7-2.365 15-.022.177-.032.347-.053.524a229.066 229.066 0 00-3.9 33.157c0 .41-.025.816-.025 1.227C16 388.418 123.6 496 256.324 496c118.865 0 217.56-86.288 236.882-199.63.407-3.076.733-6.168 1.092-9.271 4.777-41.21-.53-84.525-15.587-120.746zM201.716 354.447c1.124.537 2.18 1.124 3.33
4 1.639.048.033.114.07.163.1a126.191 126.191 0 01-3.497-1.739zm55.053-144.93zm198.131-30.59l-.032-.233c.012.085.027.174.04.259z" fill="url(#a)"/><path d="M478.711 166.353c-10.445-25.124-31.6-52.248-48.212-60.821 13.52 26.505 21.345 53.093 24.335 72.936 0-.058.011.048.036.226.012.085.027.174.04.259 22.675 61.47 10.322 123.978-7.479 162.175-27.539 59.1-94.215 119.67-198.576 116.716C136.1 454.651 36.766 370.988 18.223 261.41c-3.379-17.28 0-26.054 1.7-40.084-2.071 10.816-2.86 13.94-3.9 33.157 0 .41-.025.816-.025 1.227C16 388.418 123.6 496 256.324 496c118.865 0 217.56-86.288 236.882-199.63.407-3.076.733-6.168 1.092-9.271 4.777-41.21-.53-84.525-15.587-120.746z" fill="url(#b)"/><path d="M478.711 166.353c-10.445-25.124-31.6-52.248-48.212-60.821 13.52 26.505 21.345 53.093 24.335 72.936 0-.058.011.048.036.226.012.085.027.174.04.259 22.675 61.47 10.322 123.978-7.479 162.175-27.539 59.1-94.215 119.67-198.576 116.716C136.1 454.651 36.766 370.988 18.223 261.41c-3.379-17.28 0-26.054 1.7-40.084-2.0
71 10.816-2.86 13.94-3.9 33.157 0 .41-.025.816-.025 1.227C16 388.418 123.6 496 256.324 496c118.865 0 217.56-86.288 236.882-199.63.407-3.076.733-6.168 1.092-9.271 4.777-41.21-.53-84.525-15.587-120.746z" fill="url(#c)"/><path d="M361.922 194.6c.524.368 1 .734 1.493 1.1a130.706 130.706 0 00-22.31-29.112C266.4 91.892 321.516 4.626 330.811.194c.027-.036.083-.117.1-.136-60.37 35.356-80.85 100.761-82.732 133.484 2.8-.194 5.592-.429 8.442-.429 45.051 0 84.289 24.77 105.301 61.487z" fill="url(#d)"/><path d="M256.772 209.514c-.393 5.978-21.514 26.593-28.9 26.593-68.339 0-79.432 41.335-79.432 41.335 3.027 34.81 27.261 63.475 56.611 78.643 1.339.692 2.694 1.317 4.05 1.935a132.768 132.768 0 007.059 2.886 106.743 106.743 0 0031.271 6.031c119.78 5.618 142.986-143.194 56.545-186.408 22.137-3.85 45.115 5.053 57.947 14.067-21.012-36.714-60.25-61.484-105.3-61.484-2.85 0-5.641.235-8.442.429a120.249 120.249 0 00-66.142 25.488c3.664 3.1 7.8 7.244 16.514 15.828 16.302 16.067 58.13 32.705 58.219 34.657z" f
ill="url(#e)"/><path d="M256.772 209.514c-.393 5.978-21.514 26.593-28.9 26.593-68.339 0-79.432 41.335-79.432 41.335 3.027 34.81 27.261 63.475 56.611 78.643 1.339.692 2.694 1.317 4.05 1.935a132.768 132.768 0 007.059 2.886 106.743 106.743 0 0031.271 6.031c119.78 5.618 142.986-143.194 56.545-186.408 22.137-3.85 45.115 5.053 57.947 14.067-21.012-36.714-60.25-61.484-105.3-61.484-2.85 0-5.641.235-8.442.429a120.249 120.249 0 00-66.142 25.488c3.664 3.1 7.8 7.244 16.514 15.828 16.302 16.067 58.13 32.705 58.219 34.657z" fill="url(#f)"/><path d="M170.829 151.036a244.042 244.042 0 014.981 3.3 111.338 111.338 0 01-.674-58.732c-24.688 11.241-43.89 29.01-57.85 44.7 1.155-.033 36.014-.66 53.543 10.732z" fill="url(#g)"/><path d="M18.223 261.41C36.766 370.988 136.1 454.651 248.855 457.844c104.361 2.954 171.037-57.62 198.576-116.716 17.8-38.2 30.154-100.7 7.479-162.175l-.008-.026-.032-.233c-.025-.178-.04-.284-.036-.226 0 .039.015.136.047.4 8.524 55.661-19.79 109.584-64.051 146.044l-.133.313c-86.245 70
.223-168.774 42.368-185.484 30.966a144.108 144.108 0 01-3.5-1.743c-50.282-24.029-71.054-69.838-66.6-109.124-42.457 0-56.934-35.809-56.934-35.809s38.119-27.179 88.358-3.541c46.53 21.893 90.228 3.543 90.233 3.541-.089-1.952-41.917-18.59-58.223-34.656-8.713-8.584-12.85-12.723-16.514-15.828a71.355 71.355 0 00-6.225-4.7 282.929 282.929 0 00-4.981-3.3c-17.528-11.392-52.388-10.765-53.543-10.735h-.111c-9.527-12.067-8.855-51.873-8.312-60.184-.114-.515-7.107 3.63-8.023 4.255a175.073 175.073 0 00-23.486 20.12 210.478 210.478 0 00-22.442 26.919c0 .012-.007.026-.011.038 0-.013.007-.026.011-.038a202.838 202.838 0 00-32.247 72.805c-.115.521-8.65 37.842-4.44 57.199z" fill="url(#h)"/><path d="M341.105 166.587a130.706 130.706 0 0122.31 29.112c1.323.994 2.559 1.985 3.608 2.952 54.482 50.2 25.936 121.2 23.807 126.26 44.261-36.46 72.575-90.383 64.051-146.044C427.706 111.135 381.627 83.823 344 24.355c-1.9-3.007-3.805-6.022-5.661-9.2a73.716 73.716 0 01-2.646-4.972A43.7 43.7 0 01332.1.677a.626.626 0 00-.54
6-.644.818.818 0 00-.451 0c-.034.012-.084.051-.12.065-.053.021-.12.069-.176.1-9.291 4.428-64.407 91.694 10.298 166.389z" fill="url(#i)"/><path d="M367.023 198.651c-1.049-.967-2.285-1.958-3.608-2.952-.489-.368-.969-.734-1.493-1.1-12.832-9.014-35.81-17.917-57.947-14.067 86.441 43.214 63.235 192.026-56.545 186.408a106.743 106.743 0 01-31.271-6.031 134.51 134.51 0 01-7.059-2.886c-1.356-.618-2.711-1.243-4.05-1.935.048.033.114.07.163.1 16.71 11.4 99.239 39.257 185.484-30.966l.133-.313c2.129-5.054 30.675-76.057-23.807-126.258z" fill="url(#j)"/><path d="M148.439 277.443s11.093-41.335 79.432-41.335c7.388 0 28.509-20.615 28.9-26.593s-43.7 18.352-90.233-3.541c-50.239-23.638-88.358 3.541-88.358 3.541s14.477 35.809 56.934 35.809c-4.453 39.286 16.319 85.1 66.6 109.124 1.124.537 2.18 1.124 3.334 1.639-29.348-15.169-53.582-43.834-56.609-78.644z" fill="url(#k)"/><path d="M478.711 166.353c-10.445-25.124-31.6-52.248-48.212-60.821 13.52 26.505 21.345 53.093 24.335 72.936 0 .039.015.136.047.4C427.706 11
1.135 381.627 83.823 344 24.355c-1.9-3.007-3.805-6.022-5.661-9.2a73.716 73.716 0 01-2.646-4.972A43.7 43.7 0 01332.1.677a.626.626 0 00-.546-.644.818.818 0 00-.451 0c-.034.012-.084.051-.12.065-.053.021-.12.069-.176.1.027-.036.083-.117.1-.136-60.37 35.356-80.85 100.761-82.732 133.484 2.8-.194 5.592-.429 8.442-.429 45.053 0 84.291 24.77 105.3 61.484-12.832-9.014-35.81-17.917-57.947-14.067 86.441 43.214 63.235 192.026-56.545 186.408a106.743 106.743 0 01-31.271-6.031 134.51 134.51 0 01-7.059-2.886c-1.356-.618-2.711-1.243-4.05-1.935.048.033.114.07.163.1a144.108 144.108 0 01-3.5-1.743c1.124.537 2.18 1.124 3.334 1.639-29.35-15.168-53.584-43.833-56.611-78.643 0 0 11.093-41.335 79.432-41.335 7.388 0 28.509-20.615 28.9-26.593-.089-1.952-41.917-18.59-58.223-34.656-8.713-8.584-12.85-12.723-16.514-15.828a71.355 71.355 0 00-6.225-4.7 111.338 111.338 0 01-.674-58.732c-24.688 11.241-43.89 29.01-57.85 44.7h-.111c-9.527-12.067-8.855-51.873-8.312-60.184-.114-.515-7.107 3.63-8.023 4.255a175.073 175.073 0
00-23.486 20.12 210.478 210.478 0 00-22.435 26.916c0 .012-.007.026-.011.038 0-.013.007-.026.011-.038a202.838 202.838 0 00-32.247 72.805c-.115.521-.212 1.061-.324 1.586-.452 2.116-2.486 12.853-2.77 15.156-.022.177.021-.176 0 0a279.565 279.565 0 00-3.544 33.53c0 .41-.025.816-.025 1.227C16 388.418 123.6 496 256.324 496c118.865 0 217.56-86.288 236.882-199.63.407-3.076.733-6.168 1.092-9.271 4.777-41.21-.53-84.525-15.587-120.746zm-23.841 12.341c.012.085.027.174.04.259l-.008-.026-.032-.233z" fill="url(#l)"/></svg>
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="512px" height="512px" viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs>
+ <linearGradient x1="50%" y1="100%" x2="50%" y2="0%" id="linearGradient-1">
+ <stop stop-color="#420C5D" offset="0%"></stop>
+ <stop stop-color="#951AD1" offset="100%"></stop>
+ </linearGradient>
+ <path d="M25,29 C152.577777,29 256,131.974508 256,259 C256,386.025492 152.577777,489 25,489 L25,29 Z" id="path-2"></path>
+ <filter x="-18.2%" y="-7.4%" width="129.4%" height="114.8%" filterUnits="objectBoundingBox" id="filter-3">
+ <feOffset dx="-8" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
+ <feGaussianBlur stdDeviation="10" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
+ <feColorMatrix values="0 0 0 0 0.250980392 0 0 0 0 0.250980392 0 0 0 0 0.250980392 0 0 0 0.2 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
+ </filter>
+ </defs>
+ <g id="Assets" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
+ <g id="icon_512x512">
+ <g id="Group">
+ <g id="tb_icon/Stable">
+ <g id="Stable">
+ <circle id="background" fill="#F2E4FF" fill-rule="nonzero" cx="256" cy="256" r="246"></circle>
+ <path d="M256.525143,465.439707 L256.525143,434.406609 C354.826191,434.122748 434.420802,354.364917 434.420802,255.992903 C434.420802,157.627987 354.826191,77.8701558 256.525143,77.5862948 L256.525143,46.5531962 C371.964296,46.8441537 465.446804,140.489882 465.446804,255.992903 C465.446804,371.503022 371.964296,465.155846 256.525143,465.439707 Z M256.525143,356.820314 C311.970283,356.529356 356.8487,311.516106 356.8487,255.992903 C356.8487,200.476798 311.970283,155.463547 256.525143,155.17259 L256.525143,124.146588 C329.115485,124.430449 387.881799,183.338693 387.881799,255.992903 C387.881799,328.654211 329.115485,387.562455 256.525143,387.846316 L256.525143,356.820314 Z M256.525143,201.718689 C286.266674,202.00255 310.3026,226.180407 310.3026,255.992903 C310.3026,285.812497 286.266674,309.990353 256.525143,310.274214 L256.525143,201.718689 Z M0,255.992903 C0,397.384044 114.60886,512 256,512 C397.384044,512 512,397.384044 512,255.992903 C512,114.60886 397.384
044,0 256,0 C114.60886,0 0,114.60886 0,255.992903 Z" id="center" fill="url(#linearGradient-1)"></path>
+ <g id="half" transform="translate(140.500000, 259.000000) scale(-1, 1) translate(-140.500000, -259.000000) ">
+ <use fill="black" fill-opacity="1" filter="url(#filter-3)" xlink:href="#path-2"></use>
+ <use fill="url(#linearGradient-1)" fill-rule="evenodd" xlink:href="#path-2"></use>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/intl/l10n/L10nRegistry.jsm b/intl/l10n/L10nRegistry.jsm
index fc0cd5f4ee23..684502ad9002 100644
--- a/intl/l10n/L10nRegistry.jsm
+++ b/intl/l10n/L10nRegistry.jsm
@@ -139,6 +139,12 @@ class L10nRegistryService {
async* generateBundles(requestedLangs, resourceIds) {
const resourceIdsDedup = Array.from(new Set(resourceIds));
const sourcesOrder = Array.from(this.sources.keys()).reverse();
+ // Always prioritize torbutton sources (keep in sync with generateBundlesSync)
+ const idxTB = sourcesOrder.indexOf("torbutton");
+ if (idxTB > 0) {
+ sourcesOrder.splice(idxTB, 1);
+ sourcesOrder.unshift("torbutton");
+ }
const pseudoStrategy = Services.prefs.getStringPref("intl.l10n.pseudo", "");
for (const locale of requestedLangs) {
for await (const dataSets of generateResourceSetsForLocale(locale, sourcesOrder, resourceIdsDedup)) {
@@ -172,6 +178,12 @@ class L10nRegistryService {
* generateBundlesSync(requestedLangs, resourceIds) {
const resourceIdsDedup = Array.from(new Set(resourceIds));
const sourcesOrder = Array.from(this.sources.keys()).reverse();
+ // Always prioritize torbutton sources (keep in sync with generateBundles)
+ const idxTB = sourcesOrder.indexOf("torbutton");
+ if (idxTB > 0) {
+ sourcesOrder.splice(idxTB, 1);
+ sourcesOrder.unshift("torbutton");
+ }
const pseudoStrategy = Services.prefs.getStringPref("intl.l10n.pseudo", "");
for (const locale of requestedLangs) {
for (const dataSets of generateResourceSetsForLocaleSync(locale, sourcesOrder, resourceIdsDedup)) {
@@ -293,7 +305,9 @@ class L10nRegistryService {
for (const source of this.sources.values()) {
for (const locale of source.locales) {
- locales.add(locale);
+ if (!source.skipForAvailableLocales) {
+ locales.add(locale);
+ }
}
}
return Array.from(locales);
@@ -495,10 +509,11 @@ class FileSource {
*
* @returns {FileSource}
*/
- constructor(name, locales, prePath) {
+ constructor(name, locales, prePath, skipForAvailableLocales = false) {
this.name = name;
this.locales = locales;
this.prePath = prePath;
+ this.skipForAvailableLocales = skipForAvailableLocales;
this.indexed = false;
// The cache object stores information about the resources available
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 4234: Use the Firefox Update Process for Tor Browser.
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit ffb33c63c0a729688d29d38bbdfe697de99d8d3d
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Fri Jan 13 11:40:24 2017 -0500
Bug 4234: Use the Firefox Update Process for Tor Browser.
The following files are never updated:
TorBrowser/Data/Browser/profiles.ini
TorBrowser/Data/Browser/profile.default/bookmarks.html
TorBrowser/Data/Tor/torrc
Mac OS: Store update metadata under TorBrowser/UpdateInfo.
Removed the %OS_VERSION% component from the update URL (13047) and
added support for minSupportedOSVersion, an attribute of the
<update> element that may be used to trigger Firefox's
"unsupported platform" behavior.
Hide the "What's new" links (set app.releaseNotesURL value to about:blank).
Windows: disable "runas" code path in updater (15201).
Windows: avoid writing to the registry (16236).
Also includes fixes for tickets 13047, 13301, 13356, 13594, 15406,
16014, 16909, 24476, and 25909.
Also fix Bug 26049: reduce the delay before the update prompt is displayed.
Instead of Firefox's 2 days, we use 1 hour (after which time the update
doorhanger will be displayed).
Also fix bug 27221: purge the startup cache if the Tor Browser
version changed (even if the Firefox version and build ID did
not change), e.g., after a minor Tor Browser update.
Also fix 32616: Disable GetSecureOutputDirectoryPath() functionality.
Bug 26048: potentially confusing "restart to update" message
Within the update doorhanger, remove the misleading message that mentions
that windows will be restored after an update is applied, and replace the
"Restart and Restore" button label with an existing
"Restart to update Tor Browser" string.
Bug 28885: notify users that update is downloading
Add a "Downloading Tor Browser update" item which appears in the
hamburger (app) menu while the update service is downloading a MAR
file. Before this change, the browser did not indicate to the user
that an update was in progress, which is especially confusing in
Tor Browser because downloads often take some time. If the user
clicks on the new menu item, the about dialog is opened to allow
the user to see download progress.
As part of this fix, the update service was changed to always show
update-related messages in the hamburger menu, even if the update
was started in the foreground via the about dialog or via the
"Check for Tor Browser Update" toolbar menu item. This change is
consistent with the Tor Browser goal of making sure users are
informed about the update process.
Removed #28885 parts of this patch which have been uplifted to Firefox.
Use a localized string from Torbutton for the app menu's
"Downloading update" message. This is a temporary fix that can
be removed once Tor Browser is based on Firefox 79 or newer (at
which point the localized string will be included in the Firefox
language packs).
---
browser/app/Makefile.in | 2 +
browser/app/profile/000-tor-browser.js | 16 +-
browser/app/profile/firefox.js | 10 +-
.../base/content/aboutDialog-appUpdater-legacy.js | 2 +-
browser/base/content/aboutDialog-appUpdater.js | 2 +-
browser/base/content/aboutDialog.js | 12 +-
browser/components/BrowserContentHandler.jsm | 39 ++-
.../customizableui/content/panelUI.inc.xhtml | 8 +-
.../components/customizableui/content/panelUI.js | 22 ++
browser/confvars.sh | 35 +--
browser/installer/package-manifest.in | 2 +
build/application.ini.in | 2 +-
build/moz.configure/init.configure | 3 +-
config/createprecomplete.py | 17 +-
.../client/aboutdebugging/src/actions/runtimes.js | 5 +
toolkit/modules/UpdateUtils.jsm | 34 +--
toolkit/mozapps/extensions/AddonManager.jsm | 24 ++
toolkit/mozapps/extensions/test/browser/head.js | 1 +
.../extensions/test/xpcshell/head_addons.js | 1 +
toolkit/mozapps/update/UpdateService.jsm | 127 +++++++-
toolkit/mozapps/update/UpdateServiceStub.jsm | 4 +
toolkit/mozapps/update/common/updatehelper.cpp | 8 +
toolkit/mozapps/update/moz.build | 5 +-
toolkit/mozapps/update/updater/launchchild_osx.mm | 2 +
toolkit/mozapps/update/updater/moz.build | 2 +-
toolkit/mozapps/update/updater/updater.cpp | 339 ++++++++++++++++++---
toolkit/xre/MacLaunchHelper.h | 2 +
toolkit/xre/MacLaunchHelper.mm | 2 +
toolkit/xre/nsAppRunner.cpp | 22 +-
toolkit/xre/nsUpdateDriver.cpp | 109 ++++++-
toolkit/xre/nsXREDirProvider.cpp | 42 ++-
tools/update-packaging/common.sh | 76 +++--
tools/update-packaging/make_full_update.sh | 26 ++
tools/update-packaging/make_incremental_update.sh | 74 ++++-
34 files changed, 912 insertions(+), 165 deletions(-)
diff --git a/browser/app/Makefile.in b/browser/app/Makefile.in
index 6770319f1866..7263b8e1dde7 100644
--- a/browser/app/Makefile.in
+++ b/browser/app/Makefile.in
@@ -98,10 +98,12 @@ tools repackage:: $(DIST)/bin/$(MOZ_APP_NAME)
rsync -aL $(DIST)/bin/$(MOZ_APP_NAME) '$(dist_dest)/Contents/MacOS'
cp -RL $(topsrcdir)/$(MOZ_BRANDING_DIRECTORY)/firefox.icns '$(dist_dest)/Contents/Resources/firefox.icns'
cp -RL $(topsrcdir)/$(MOZ_BRANDING_DIRECTORY)/document.icns '$(dist_dest)/Contents/Resources/document.icns'
+ifndef TOR_BROWSER_UPDATE
$(MKDIR) -p '$(dist_dest)/Contents/Library/LaunchServices'
ifdef MOZ_UPDATER
mv -f '$(dist_dest)/Contents/MacOS/updater.app/Contents/MacOS/org.mozilla.updater' '$(dist_dest)/Contents/Library/LaunchServices'
ln -s ../../../../Library/LaunchServices/org.mozilla.updater '$(dist_dest)/Contents/MacOS/updater.app/Contents/MacOS/org.mozilla.updater'
+endif
endif
printf APPLTORB > '$(dist_dest)/Contents/PkgInfo'
endif
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js
index 0c423069a2c8..ce2009599cf2 100644
--- a/browser/app/profile/000-tor-browser.js
+++ b/browser/app/profile/000-tor-browser.js
@@ -7,7 +7,6 @@
// Disable initial homepage notifications
pref("browser.search.update", false);
pref("browser.rights.3.shown", true);
-pref("browser.startup.homepage_override.mstone", "ignore");
pref("startup.homepage_welcome_url", "");
pref("startup.homepage_welcome_url.additional", "");
@@ -20,9 +19,17 @@ pref("startup.homepage_override_url", "https://blog.torproject.org/category/tags
// Try to nag a bit more about updates: Pop up a restart dialog an hour after the initial dialog
pref("app.update.promptWaitTime", 3600);
-
-#ifdef XP_WIN
-// For now, disable staged updates on Windows (see #18292).
+pref("app.update.notifyDuringDownload", true);
+pref("app.update.url.manual", "https://www.torproject.org/download/languages/");
+pref("app.update.url.details", "https://www.torproject.org/download/");
+pref("app.update.badgeWaitTime", 0);
+pref("app.releaseNotesURL", "about:blank");
+
+#ifndef XP_MACOSX
+// Disable staged updates on platforms other than macOS.
+// Staged updates do not work on Windows due to #18292.
+// Also, on Windows and Linux any changes that are made to the browser profile
+// or Tor data after an update is staged will be lost.
pref("app.update.staging.enabled", false);
#endif
@@ -82,6 +89,7 @@ pref("datareporting.policy.dataSubmissionEnabled", false);
// Make sure Unified Telemetry is really disabled, see: #18738.
pref("toolkit.telemetry.unified", false);
pref("toolkit.telemetry.enabled", false);
+pref("toolkit.telemetry.updatePing.enabled", false); // Make sure updater telemetry is disabled; see #25909.
#ifdef XP_WIN
// Defense-in-depth: ensure that the Windows default browser agent will
// not ping Mozilla if it is somehow present (we omit it at build time).
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
index 810be1361771..2529f0b130d3 100644
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -136,14 +136,8 @@ pref("app.update.elevation.promptMaxAttempts", 2);
pref("app.update.notifyDuringDownload", false);
// If set to true, the Update Service will automatically download updates if the
-// user can apply updates. This pref is no longer used on Windows, except as the
-// default value to migrate to the new location that this data is now stored
-// (which is in a file in the update directory). Because of this, this pref
-// should no longer be used directly. Instead, getAppUpdateAutoEnabled and
-// getAppUpdateAutoEnabled from UpdateUtils.jsm should be used.
-#ifndef XP_WIN
- pref("app.update.auto", true);
-#endif
+// user can apply updates.
+pref("app.update.auto", true);
// If set to true, the Update Service will apply updates in the background
// when it finishes downloading them.
diff --git a/browser/base/content/aboutDialog-appUpdater-legacy.js b/browser/base/content/aboutDialog-appUpdater-legacy.js
index 0629e8eaf41a..9f96e2263295 100644
--- a/browser/base/content/aboutDialog-appUpdater-legacy.js
+++ b/browser/base/content/aboutDialog-appUpdater-legacy.js
@@ -192,7 +192,7 @@ appUpdater.prototype = {
if (aChildID == "downloadAndInstall") {
let updateVersion = gAppUpdater.update.displayVersion;
// Include the build ID if this is an "a#" (nightly or aurora) build
- if (/a\d+$/.test(updateVersion)) {
+ if (!AppConstants.TOR_BROWSER_UPDATE && /a\d+$/.test(updateVersion)) {
let buildID = gAppUpdater.update.buildID;
let year = buildID.slice(0, 4);
let month = buildID.slice(4, 6);
diff --git a/browser/base/content/aboutDialog-appUpdater.js b/browser/base/content/aboutDialog-appUpdater.js
index 79828e5a279f..71de80626b89 100644
--- a/browser/base/content/aboutDialog-appUpdater.js
+++ b/browser/base/content/aboutDialog-appUpdater.js
@@ -147,7 +147,7 @@ appUpdater.prototype = {
if (aChildID == "downloadAndInstall") {
let updateVersion = gAppUpdater.update.displayVersion;
// Include the build ID if this is an "a#" (nightly or aurora) build
- if (/a\d+$/.test(updateVersion)) {
+ if (!AppConstants.TOR_BROWSER_UPDATE && /a\d+$/.test(updateVersion)) {
let buildID = gAppUpdater.update.buildID;
let year = buildID.slice(0, 4);
let month = buildID.slice(4, 6);
diff --git a/browser/base/content/aboutDialog.js b/browser/base/content/aboutDialog.js
index 19f0d6f16c6c..13dfe0e37ca2 100644
--- a/browser/base/content/aboutDialog.js
+++ b/browser/base/content/aboutDialog.js
@@ -50,15 +50,13 @@ async function init(aEvent) {
bits: Services.appinfo.is64Bit ? 64 : 32,
};
+ // Adjust version text to show the Tor Browser version
+ versionAttributes.version = AppConstants.TOR_BROWSER_VERSION +
+ " (based on Mozilla Firefox " +
+ AppConstants.MOZ_APP_VERSION_DISPLAY + ")";
+
let version = Services.appinfo.version;
if (/a\d+$/.test(version)) {
- versionId = "aboutDialog-version-nightly";
- let buildID = Services.appinfo.appBuildID;
- let year = buildID.slice(0, 4);
- let month = buildID.slice(4, 6);
- let day = buildID.slice(6, 8);
- versionAttributes.isodate = `${year}-${month}-${day}`;
-
document.getElementById("experimental").hidden = false;
document.getElementById("communityDesc").hidden = true;
}
diff --git a/browser/components/BrowserContentHandler.jsm b/browser/components/BrowserContentHandler.jsm
index 8d5c4e970cd9..9f5b6ab0218c 100644
--- a/browser/components/BrowserContentHandler.jsm
+++ b/browser/components/BrowserContentHandler.jsm
@@ -46,6 +46,8 @@ XPCOMUtils.defineLazyGlobalGetters(this, [URL]);
const NEWINSTALL_PAGE = "about:newinstall";
+const kTBSavedVersionPref = "browser.startup.homepage_override.torbrowser.version";
+
// One-time startup homepage override configurations
const ONCE_DOMAINS = ["mozilla.org", "firefox.com"];
const ONCE_PREF = "browser.startup.homepage_override.once";
@@ -105,7 +107,8 @@ const OVERRIDE_ALTERNATE_PROFILE = 4;
* Returns:
* OVERRIDE_NEW_PROFILE if this is the first run with a new profile.
* OVERRIDE_NEW_MSTONE if this is the first run with a build with a different
- * Gecko milestone (i.e. right after an upgrade).
+ * Gecko milestone or Tor Browser version (i.e. right
+ * after an upgrade).
* OVERRIDE_NEW_BUILD_ID if this is the first run with a new build ID of the
* same Gecko milestone (i.e. after a nightly upgrade).
* OVERRIDE_NONE otherwise.
@@ -128,6 +131,11 @@ function needHomepageOverride(prefb) {
var mstone = Services.appinfo.platformVersion;
+ var savedTBVersion = null;
+ try {
+ savedTBVersion = prefb.getCharPref(kTBSavedVersionPref);
+ } catch (e) {}
+
var savedBuildID = prefb.getCharPref(
"browser.startup.homepage_override.buildID",
""
@@ -146,7 +154,22 @@ function needHomepageOverride(prefb) {
prefb.setCharPref("browser.startup.homepage_override.mstone", mstone);
prefb.setCharPref("browser.startup.homepage_override.buildID", buildID);
- return savedmstone ? OVERRIDE_NEW_MSTONE : OVERRIDE_NEW_PROFILE;
+ prefb.setCharPref(kTBSavedVersionPref, AppConstants.TOR_BROWSER_VERSION);
+
+ // After an upgrade from an older release of Tor Browser (<= 5.5a1), the
+ // savedmstone will be undefined because those releases included the
+ // value "ignore" for the browser.startup.homepage_override.mstone pref.
+ // To correctly detect an upgrade vs. a new profile, we check for the
+ // presence of the "app.update.postupdate" pref.
+ let updated = prefb.prefHasUserValue("app.update.postupdate");
+ return (savedmstone || updated) ? OVERRIDE_NEW_MSTONE
+ : OVERRIDE_NEW_PROFILE;
+ }
+
+ if (AppConstants.TOR_BROWSER_VERSION != savedTBVersion) {
+ prefb.setCharPref("browser.startup.homepage_override.buildID", buildID);
+ prefb.setCharPref(kTBSavedVersionPref, AppConstants.TOR_BROWSER_VERSION);
+ return OVERRIDE_NEW_MSTONE;
}
if (buildID != savedBuildID) {
@@ -645,6 +668,13 @@ nsBrowserContentHandler.prototype = {
"browser.startup.homepage_override.buildID",
"unknown"
);
+
+ // We do the same for the Tor Browser version.
+ let old_tbversion = null;
+ try {
+ old_tbversion = prefb.getCharPref(kTBSavedVersionPref);
+ } catch (e) {}
+
override = needHomepageOverride(prefb);
if (override != OVERRIDE_NONE) {
switch (override) {
@@ -677,9 +707,10 @@ nsBrowserContentHandler.prototype = {
"startup.homepage_override_url"
);
let update = UpdateManager.activeUpdate;
+ let old_version = old_tbversion ? old_tbversion: old_mstone;
if (
update &&
- Services.vc.compare(update.appVersion, old_mstone) > 0
+ Services.vc.compare(update.appVersion, old_version) > 0
) {
overridePage = getPostUpdateOverridePage(update, overridePage);
// Send the update ping to signal that the update was successful.
@@ -687,6 +718,8 @@ nsBrowserContentHandler.prototype = {
}
overridePage = overridePage.replace("%OLD_VERSION%", old_mstone);
+ overridePage = overridePage.replace("%OLD_TOR_BROWSER_VERSION%",
+ old_tbversion);
break;
case OVERRIDE_NEW_BUILD_ID:
if (UpdateManager.activeUpdate) {
diff --git a/browser/components/customizableui/content/panelUI.inc.xhtml b/browser/components/customizableui/content/panelUI.inc.xhtml
index bdb8a7c227cf..719eee14e681 100644
--- a/browser/components/customizableui/content/panelUI.inc.xhtml
+++ b/browser/components/customizableui/content/panelUI.inc.xhtml
@@ -143,14 +143,15 @@
<popupnotification id="appMenu-update-restart-notification"
popupid="update-restart"
data-lazy-l10n-id="appmenu-update-restart"
- data-l10n-attrs="buttonlabel, buttonaccesskey, secondarybuttonlabel, secondarybuttonaccesskey"
+ data-l10n-attrs="buttonaccesskey, secondarybuttonlabel, secondarybuttonaccesskey"
+ buttonlabel="&updateRestart.panelUI.label2;"
closebuttonhidden="true"
dropmarkerhidden="true"
checkboxhidden="true"
buttonhighlight="true"
hidden="true">
<popupnotificationcontent id="update-restart-notification-content" orient="vertical">
- <description id="update-restart-description" data-lazy-l10n-id="appmenu-update-restart-message"></description>
+ <description id="update-restart-description"> </description>
</popupnotificationcontent>
</popupnotification>
@@ -223,8 +224,7 @@
<vbox class="panel-subview-body">
<vbox id="appMenu-addon-banners"/>
<toolbarbutton id="appMenu-update-banner" class="panel-banner-item"
- data-l10n-id="appmenuitem-update-banner"
- data-l10n-attrs="label-update-downloading"
+ label-update-downloading="Downloading update"
label-update-available="&updateAvailable.panelUI.label;"
label-update-manual="&updateManual.panelUI.label;"
label-update-unsupported="&updateUnsupported.panelUI.label;"
diff --git a/browser/components/customizableui/content/panelUI.js b/browser/components/customizableui/content/panelUI.js
index a81be30f3ec7..1f1d39aa23ec 100644
--- a/browser/components/customizableui/content/panelUI.js
+++ b/browser/components/customizableui/content/panelUI.js
@@ -59,6 +59,7 @@ const PanelUI = {
init() {
this._initElements();
+ this._initUpdaterStrings();
this.menuButton.addEventListener("mousedown", this);
this.menuButton.addEventListener("keypress", this);
@@ -147,6 +148,27 @@ const PanelUI = {
}
},
+ _initUpdaterStrings() {
+ // If Torbutton is installed and enabled, replace the "Downloading update"
+ // string with one from torbutton.properties (to facilitate localization).
+ // This function can be removed when Tor Browser is based on Firefox 79
+ // or newer (where the localized string is included in the Firefox
+ // language packs).
+ try {
+ let brands = Services.strings.createBundle(
+ "chrome://branding/locale/brand.properties");
+ let stringArgs = [brands.GetStringFromName("brandShortName")];
+ let torbuttonBundle = Services.strings.createBundle(
+ "chrome://torbutton/locale/torbutton.properties");
+ let label = torbuttonBundle.formatStringFromName(
+ "updateDownloadingPanelUILabel", stringArgs, 1);
+ let elem = document.getElementById("appMenu-update-banner");
+ if (elem) {
+ elem.setAttribute("label-update-downloading", label);
+ }
+ } catch (e) {}
+ },
+
_eventListenersAdded: false,
_ensureEventListenersAdded() {
if (this._eventListenersAdded) {
diff --git a/browser/confvars.sh b/browser/confvars.sh
index 31f28736606d..f994783f9c65 100755
--- a/browser/confvars.sh
+++ b/browser/confvars.sh
@@ -7,26 +7,6 @@ MOZ_APP_BASENAME=Firefox
MOZ_APP_VENDOR=Mozilla
MOZ_UPDATER=1
-if test "$OS_ARCH" = "WINNT"; then
- if ! test "$HAVE_64BIT_BUILD"; then
- if test "$MOZ_UPDATE_CHANNEL" = "nightly" -o \
- "$MOZ_UPDATE_CHANNEL" = "nightly-try" -o \
- "$MOZ_UPDATE_CHANNEL" = "aurora" -o \
- "$MOZ_UPDATE_CHANNEL" = "beta" -o \
- "$MOZ_UPDATE_CHANNEL" = "release"; then
- if ! test "$MOZ_DEBUG"; then
- if ! test "$USE_STUB_INSTALLER"; then
- # Expect USE_STUB_INSTALLER from taskcluster for downstream task consistency
- echo "ERROR: STUB installer expected to be enabled but"
- echo "ERROR: USE_STUB_INSTALLER is not specified in the environment"
- exit 1
- fi
- MOZ_STUB_INSTALLER=1
- fi
- fi
- fi
-fi
-
BROWSER_CHROME_URL=chrome://browser/content/browser.xhtml
# MOZ_APP_DISPLAYNAME will be set by branding/configure.sh
@@ -39,6 +19,21 @@ MOZ_BRANDING_DIRECTORY=browser/branding/unofficial
MOZ_OFFICIAL_BRANDING_DIRECTORY=browser/branding/official
MOZ_APP_ID={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
+# ACCEPTED_MAR_CHANNEL_IDS should usually be the same as the value MAR_CHANNEL_ID.
+# If more than one ID is needed, then you should use a comma separated list
+# of values.
+# The MAR_CHANNEL_ID must not contain the following 3 characters: ",\t "
+if test "$MOZ_UPDATE_CHANNEL" = "alpha"; then
+ ACCEPTED_MAR_CHANNEL_IDS=torbrowser-torproject-alpha
+ MAR_CHANNEL_ID=torbrowser-torproject-alpha
+elif test "$MOZ_UPDATE_CHANNEL" = "nightly"; then
+ ACCEPTED_MAR_CHANNEL_IDS=torbrowser-torproject-nightly
+ MAR_CHANNEL_ID=torbrowser-torproject-nightly
+else
+ ACCEPTED_MAR_CHANNEL_IDS=torbrowser-torproject-release
+ MAR_CHANNEL_ID=torbrowser-torproject-release
+fi
+
MOZ_PROFILE_MIGRATOR=1
# Include the DevTools client, not just the server (which is the default)
diff --git a/browser/installer/package-manifest.in b/browser/installer/package-manifest.in
index 3722bf2ee22b..792acb870afa 100644
--- a/browser/installer/package-manifest.in
+++ b/browser/installer/package-manifest.in
@@ -36,8 +36,10 @@
; Mac bundle stuff
@APPNAME@/Contents/Info.plist
#ifdef MOZ_UPDATER
+#ifndef TOR_BROWSER_UPDATE
@APPNAME@/Contents/Library/LaunchServices
#endif
+#endif
@APPNAME@/Contents/PkgInfo
@RESPATH@/firefox.icns
@RESPATH@/document.icns
diff --git a/build/application.ini.in b/build/application.ini.in
index a6141de0be15..96faf3775588 100644
--- a/build/application.ini.in
+++ b/build/application.ini.in
@@ -52,5 +52,5 @@ ServerURL=https://crash-reports.mozilla.com/submit?id=@MOZ_APP_ID@&version=…
#if MOZ_UPDATER
[AppUpdate]
-URL=https://@MOZ_APPUPDATE_HOST@/update/6/%PRODUCT%/%VERSION%/%BUILD_ID%/%BUILD_TARGET%/%LOCALE%/%CHANNEL%/%OS_VERSION%/%SYSTEM_CAPABILITIES%/%DISTRIBUTION%/%DISTRIBUTION_VERSION%/update.xml
+URL=https://aus1.torproject.org/torbrowser/update_3/%CHANNEL%/%BUILD_TARGET%/%VERSION%/%LOCALE%
#endif
diff --git a/build/moz.configure/init.configure b/build/moz.configure/init.configure
index 5e0741852c8e..465c9380055c 100644
--- a/build/moz.configure/init.configure
+++ b/build/moz.configure/init.configure
@@ -1147,7 +1147,6 @@ def version_path(path):
# set RELEASE_OR_BETA and NIGHTLY_BUILD variables depending on the cycle we're in
# The logic works like this:
# - if we have "a1" in GRE_MILESTONE, we're building Nightly (define NIGHTLY_BUILD)
-# - otherwise, if we have "a" in GRE_MILESTONE, we're building Nightly or Aurora
# - otherwise, we're building Release/Beta (define RELEASE_OR_BETA)
@depends(check_build_environment, build_project, version_path, '--help')
@imports(_from='__builtin__', _import='open')
@@ -1194,7 +1193,7 @@ def milestone(build_env, build_project, version_path, _):
if 'a1' in milestone:
is_nightly = True
- elif 'a' not in milestone:
+ else:
is_release_or_beta = True
major_version = milestone.split('.')[0]
diff --git a/config/createprecomplete.py b/config/createprecomplete.py
index fadd796aa21f..73793c8e8b19 100644
--- a/config/createprecomplete.py
+++ b/config/createprecomplete.py
@@ -5,6 +5,7 @@
# update instructions which is used to remove files and directories that are no
# longer present in a complete update. The current working directory is used for
# the location to enumerate and to create the precomplete file.
+# For symlinks, remove instructions are always generated.
from __future__ import absolute_import
from __future__ import unicode_literals
@@ -13,9 +14,17 @@ import os
import io
+# TODO When TOR_BROWSER_DATA_OUTSIDE_APP_DIR is used on all platforms,
+# we should remove all lines in this file that contain:
+# TorBrowser/Data
+
def get_build_entries(root_path):
""" Iterates through the root_path, creating a list for each file and
directory. Excludes any file paths ending with channel-prefs.js.
+ To support Tor Browser updates, excludes:
+ TorBrowser/Data/Browser/profiles.ini
+ TorBrowser/Data/Browser/profile.default/bookmarks.html
+ TorBrowser/Data/Tor/torrc
"""
rel_file_path_set = set()
rel_dir_path_set = set()
@@ -26,6 +35,9 @@ def get_build_entries(root_path):
rel_path_file = rel_path_file.replace("\\", "/")
if not (rel_path_file.endswith("channel-prefs.js") or
rel_path_file.endswith("update-settings.ini") or
+ rel_path_file == "TorBrowser/Data/Browser/profiles.ini" or
+ rel_path_file == "TorBrowser/Data/Browser/profile.default/bookmarks.html" or
+ rel_path_file == "TorBrowser/Data/Tor/torrc" or
rel_path_file.find("distribution/") != -1):
rel_file_path_set.add(rel_path_file)
@@ -34,7 +46,10 @@ def get_build_entries(root_path):
rel_path_dir = os.path.join(parent_dir_rel_path, dir_name)
rel_path_dir = rel_path_dir.replace("\\", "/")+"/"
if rel_path_dir.find("distribution/") == -1:
- rel_dir_path_set.add(rel_path_dir)
+ if (os.path.islink(rel_path_dir[:-1])):
+ rel_file_path_set.add(rel_path_dir[:-1])
+ else:
+ rel_dir_path_set.add(rel_path_dir)
rel_file_path_list = list(rel_file_path_set)
rel_file_path_list.sort(reverse=True)
diff --git a/devtools/client/aboutdebugging/src/actions/runtimes.js b/devtools/client/aboutdebugging/src/actions/runtimes.js
index b96f93e244b7..4c1e87a0818a 100644
--- a/devtools/client/aboutdebugging/src/actions/runtimes.js
+++ b/devtools/client/aboutdebugging/src/actions/runtimes.js
@@ -70,6 +70,11 @@ async function getRuntimeIcon(runtime, channel) {
}
}
+ // Use the release build skin for devtools within Tor Browser alpha releases.
+ if (channel === "alpha") {
+ return "chrome://devtools/skin/images/aboutdebugging-firefox-release.svg";
+ }
+
return channel === "release" || channel === "beta" || channel === "aurora"
? `chrome://devtools/skin/images/aboutdebugging-firefox-${channel}.svg`
: "chrome://devtools/skin/images/aboutdebugging-firefox-nightly.svg";
diff --git a/toolkit/modules/UpdateUtils.jsm b/toolkit/modules/UpdateUtils.jsm
index d2b695b47442..883928472732 100644
--- a/toolkit/modules/UpdateUtils.jsm
+++ b/toolkit/modules/UpdateUtils.jsm
@@ -103,7 +103,7 @@ var UpdateUtils = {
case "PRODUCT":
return Services.appinfo.name;
case "VERSION":
- return Services.appinfo.version;
+ return AppConstants.TOR_BROWSER_VERSION;
case "BUILD_ID":
return Services.appinfo.appBuildID;
case "BUILD_TARGET":
@@ -167,25 +167,17 @@ var UpdateUtils = {
* downloads and installs updates. This corresponds to whether or not the user
* has selected "Automatically install updates" in about:preferences.
*
- * On Windows, this setting is shared across all profiles for the installation
+ * On Windows (except in Tor Browser), this setting is shared across all profiles
+ * for the installation
* and is read asynchronously from the file. On other operating systems, this
* setting is stored in a pref and is thus a per-profile setting.
*
* @return A Promise that resolves with a boolean.
*/
getAppUpdateAutoEnabled() {
- if (Services.policies) {
- if (!Services.policies.isAllowed("app-auto-updates-off")) {
- // We aren't allowed to turn off auto-update - it is forced on.
- return Promise.resolve(true);
- }
- if (!Services.policies.isAllowed("app-auto-updates-on")) {
- // We aren't allowed to turn on auto-update - it is forced off.
- return Promise.resolve(false);
- }
- }
- if (AppConstants.platform != "win") {
- // On platforms other than Windows the setting is stored in a preference.
+ if (AppConstants.TOR_BROWSER_UPDATE || (AppConstants.platform != "win")) {
+ // On platforms other than Windows and always in Tor Browser the setting
+ // is stored in a preference.
let prefValue = Services.prefs.getBoolPref(
PREF_APP_UPDATE_AUTO,
DEFAULT_APP_UPDATE_AUTO
@@ -256,7 +248,8 @@ var UpdateUtils = {
* updates" and "Check for updates but let you choose to install them" options
* in about:preferences.
*
- * On Windows, this setting is shared across all profiles for the installation
+ * On Windows (except in Tor Browser), this setting is shared across all profiles
+ * for the installation
* and is written asynchronously to the file. On other operating systems, this
* setting is stored in a pref and is thus a per-profile setting.
*
@@ -276,14 +269,9 @@ var UpdateUtils = {
* this operation simply sets a pref.
*/
setAppUpdateAutoEnabled(enabledValue) {
- if (this.appUpdateAutoSettingIsLocked()) {
- return Promise.reject(
- "setAppUpdateAutoEnabled: Unable to change value of setting because " +
- "it is locked by policy"
- );
- }
- if (AppConstants.platform != "win") {
- // Only in Windows do we store the update config in the update directory
+ if (AppConstants.TOR_BROWSER_UPDATE || (AppConstants.platform != "win")) {
+ // Only in Windows (but never for Tor Browser) do we store the update config
+ // in the update directory
let prefValue = !!enabledValue;
Services.prefs.setBoolPref(PREF_APP_UPDATE_AUTO, prefValue);
// Rather than call maybeUpdateAutoConfigChanged, a pref observer has
diff --git a/toolkit/mozapps/extensions/AddonManager.jsm b/toolkit/mozapps/extensions/AddonManager.jsm
index 0dca5d712523..4e5ca4b10308 100644
--- a/toolkit/mozapps/extensions/AddonManager.jsm
+++ b/toolkit/mozapps/extensions/AddonManager.jsm
@@ -23,6 +23,7 @@ const { AppConstants } = ChromeUtils.import(
const MOZ_COMPATIBILITY_NIGHTLY = ![
"aurora",
+ "alpha",
"beta",
"release",
"esr",
@@ -37,6 +38,7 @@ const PREF_EM_AUTOUPDATE_DEFAULT = "extensions.update.autoUpdateDefault";
const PREF_EM_STRICT_COMPATIBILITY = "extensions.strictCompatibility";
const PREF_EM_CHECK_UPDATE_SECURITY = "extensions.checkUpdateSecurity";
const PREF_SYS_ADDON_UPDATE_ENABLED = "extensions.systemAddon.update.enabled";
+const PREF_EM_LAST_TORBROWSER_VERSION = "extensions.lastTorBrowserVersion";
const PREF_MIN_WEBEXT_PLATFORM_VERSION =
"extensions.webExtensionsMinPlatformVersion";
@@ -682,6 +684,28 @@ var AddonManagerInternal = {
);
}
+ // To ensure that extension and plugin code gets a chance to run
+ // after each browser update, set appChanged = true when the
+ // Tor Browser version has changed even if the Mozilla app
+ // version has not changed.
+ let tbChanged = undefined;
+ try {
+ tbChanged = AppConstants.TOR_BROWSER_VERSION !=
+ Services.prefs.getCharPref(PREF_EM_LAST_TORBROWSER_VERSION);
+ }
+ catch (e) { }
+ if (tbChanged !== false) {
+ // Because PREF_EM_LAST_TORBROWSER_VERSION was not present in older
+ // versions of Tor Browser, an app change is indicated when tbChanged
+ // is undefined or true.
+ if (appChanged === false) {
+ appChanged = true;
+ }
+
+ Services.prefs.setCharPref(PREF_EM_LAST_TORBROWSER_VERSION,
+ AppConstants.TOR_BROWSER_VERSION);
+ }
+
if (!MOZ_COMPATIBILITY_NIGHTLY) {
PREF_EM_CHECK_COMPATIBILITY =
PREF_EM_CHECK_COMPATIBILITY_BASE +
diff --git a/toolkit/mozapps/extensions/test/browser/head.js b/toolkit/mozapps/extensions/test/browser/head.js
index fddea608fcad..745fdaca6735 100644
--- a/toolkit/mozapps/extensions/test/browser/head.js
+++ b/toolkit/mozapps/extensions/test/browser/head.js
@@ -43,6 +43,7 @@ var PREF_CHECK_COMPATIBILITY;
var channel = Services.prefs.getCharPref("app.update.channel", "default");
if (
channel != "aurora" &&
+ channel != "alpha" &&
channel != "beta" &&
channel != "release" &&
channel != "esr"
diff --git a/toolkit/mozapps/extensions/test/xpcshell/head_addons.js b/toolkit/mozapps/extensions/test/xpcshell/head_addons.js
index ee5d06f16d49..adb43b70c301 100644
--- a/toolkit/mozapps/extensions/test/xpcshell/head_addons.js
+++ b/toolkit/mozapps/extensions/test/xpcshell/head_addons.js
@@ -379,6 +379,7 @@ function isNightlyChannel() {
return (
channel != "aurora" &&
+ channel != "alpha" &&
channel != "beta" &&
channel != "release" &&
channel != "esr"
diff --git a/toolkit/mozapps/update/UpdateService.jsm b/toolkit/mozapps/update/UpdateService.jsm
index ead961ab5252..2c565cecadd7 100644
--- a/toolkit/mozapps/update/UpdateService.jsm
+++ b/toolkit/mozapps/update/UpdateService.jsm
@@ -32,11 +32,15 @@ XPCOMUtils.defineLazyGlobalGetters(this, ["DOMParser", "XMLHttpRequest"]);
XPCOMUtils.defineLazyModuleGetters(this, {
AsyncShutdown: "resource://gre/modules/AsyncShutdown.jsm",
CertUtils: "resource://gre/modules/CertUtils.jsm",
+#ifdef XP_WIN
ctypes: "resource://gre/modules/ctypes.jsm",
+#endif
DeferredTask: "resource://gre/modules/DeferredTask.jsm",
OS: "resource://gre/modules/osfile.jsm",
UpdateUtils: "resource://gre/modules/UpdateUtils.jsm",
+#if !defined(TOR_BROWSER_UPDATE)
WindowsRegistry: "resource://gre/modules/WindowsRegistry.jsm",
+#endif
});
const UPDATESERVICE_CID = Components.ID(
@@ -296,6 +300,7 @@ function testWriteAccess(updateTestFile, createDirectory) {
updateTestFile.remove(false);
}
+#ifdef XP_WIN
/**
* Windows only function that closes a Win32 handle.
*
@@ -388,6 +393,7 @@ function getPerInstallationMutexName(aGlobal = true) {
(aGlobal ? "Global\\" : "") + "MozillaUpdateMutex-" + hasher.finish(true)
);
}
+#endif
/**
* Whether or not the current instance has the update mutex. The update mutex
@@ -398,6 +404,7 @@ function getPerInstallationMutexName(aGlobal = true) {
* @return true if this instance holds the update mutex
*/
function hasUpdateMutex() {
+#ifdef XP_WIN
if (AppConstants.platform != "win") {
return true;
}
@@ -405,6 +412,9 @@ function hasUpdateMutex() {
gUpdateMutexHandle = createMutex(getPerInstallationMutexName(true), false);
}
return !!gUpdateMutexHandle;
+#else
+ return true;
+#endif
}
/**
@@ -435,6 +445,11 @@ function areDirectoryEntriesWriteable(aDir) {
* @return true if elevation is required, false otherwise
*/
function getElevationRequired() {
+#if defined(TOR_BROWSER_UPDATE)
+ // To avoid potential security holes associated with running the updater
+ // process with elevated privileges, Tor Browser does not support elevation.
+ return false;
+#else
if (AppConstants.platform != "macosx") {
return false;
}
@@ -469,6 +484,7 @@ function getElevationRequired() {
"not required"
);
return false;
+#endif
}
/**
@@ -501,6 +517,7 @@ function getCanApplyUpdates() {
return false;
}
+#if !defined(TOR_BROWSER_UPDATE)
if (AppConstants.platform == "macosx") {
LOG(
"getCanApplyUpdates - bypass the write since elevation can be used " +
@@ -516,6 +533,7 @@ function getCanApplyUpdates() {
);
return true;
}
+#endif
try {
if (AppConstants.platform == "win") {
@@ -1203,6 +1221,9 @@ function handleUpdateFailure(update, errorCode) {
cancelations++;
Services.prefs.setIntPref(PREF_APP_UPDATE_CANCELATIONS, cancelations);
if (AppConstants.platform == "macosx") {
+#if defined(TOR_BROWSER_UPDATE)
+ cleanupActiveUpdate();
+#else
let osxCancelations = Services.prefs.getIntPref(
PREF_APP_UPDATE_CANCELATIONS_OSX,
0
@@ -1226,6 +1247,7 @@ function handleUpdateFailure(update, errorCode) {
(update.state = STATE_PENDING_ELEVATE)
);
}
+#endif
update.statusText = gUpdateBundle.GetStringFromName("elevationFailure");
} else {
writeStatusFile(getUpdatesDir(), (update.state = STATE_PENDING));
@@ -1752,7 +1774,26 @@ function Update(update) {
this._patches.push(patch);
}
- if (!this._patches.length && !update.hasAttribute("unsupported")) {
+ if (update.hasAttribute("unsupported")) {
+ this.unsupported = ("true" == update.getAttribute("unsupported"));
+ } else if (update.hasAttribute("minSupportedOSVersion")) {
+ let minOSVersion = update.getAttribute("minSupportedOSVersion");
+ try {
+ let osVersion = Services.sysinfo.getProperty("version");
+ this.unsupported = (Services.vc.compare(osVersion, minOSVersion) < 0);
+ } catch (e) {}
+ }
+ if (!this.unsupported && update.hasAttribute("minSupportedInstructionSet")) {
+ let minInstructionSet = update.getAttribute("minSupportedInstructionSet");
+ if (['MMX', 'SSE', 'SSE2', 'SSE3',
+ 'SSE4A', 'SSE4_1', 'SSE4_2'].indexOf(minInstructionSet) >= 0) {
+ try {
+ this.unsupported = !Services.sysinfo.getProperty("has" + minInstructionSet);
+ } catch (e) {}
+ }
+ }
+
+ if (!this._patches.length && !this.unsupported) {
throw Components.Exception("", Cr.NS_ERROR_ILLEGAL_VALUE);
}
@@ -1790,9 +1831,7 @@ function Update(update) {
if (!isNaN(attr.value)) {
this.promptWaitTime = parseInt(attr.value);
}
- } else if (attr.name == "unsupported") {
- this.unsupported = attr.value == "true";
- } else {
+ } else if (attr.name != "unsupported") {
switch (attr.name) {
case "appVersion":
case "buildID":
@@ -1817,7 +1856,11 @@ function Update(update) {
}
if (!this.previousAppVersion) {
+#ifdef TOR_BROWSER_UPDATE
+ this.previousAppVersion = AppConstants.TOR_BROWSER_VERSION;
+#else
this.previousAppVersion = Services.appinfo.version;
+#endif
}
if (!this.elevationFailure) {
@@ -2200,6 +2243,7 @@ UpdateService.prototype = {
Services.obs.removeObserver(this, topic);
Services.prefs.removeObserver(PREF_APP_UPDATE_LOG, this);
+#ifdef XP_WIN
if (AppConstants.platform == "win" && gUpdateMutexHandle) {
// If we hold the update mutex, let it go!
// The OS would clean this up sometime after shutdown,
@@ -2207,6 +2251,7 @@ UpdateService.prototype = {
closeHandle(gUpdateMutexHandle);
gUpdateMutexHandle = null;
}
+#endif
if (this._retryTimer) {
this._retryTimer.cancel();
}
@@ -2240,6 +2285,7 @@ UpdateService.prototype = {
}
break;
case "test-close-handle-update-mutex":
+#ifdef XP_WIN
if (Cu.isInAutomation) {
if (AppConstants.platform == "win" && gUpdateMutexHandle) {
LOG("UpdateService:observe - closing mutex handle for testing");
@@ -2247,6 +2293,7 @@ UpdateService.prototype = {
gUpdateMutexHandle = null;
}
}
+#endif
break;
}
},
@@ -2277,6 +2324,9 @@ UpdateService.prototype = {
return;
}
gUpdateFileWriteInfo = { phase: "startup", failure: false };
+#if defined(TOR_BROWSER_UPDATE) && !defined(XP_MACOSX)
+ this._removeOrphanedTorBrowserFiles();
+#endif
if (!this.canCheckForUpdates) {
LOG(
"UpdateService:_postUpdateProcessing - unable to check for " +
@@ -2513,6 +2563,42 @@ UpdateService.prototype = {
}
},
+#if defined(TOR_BROWSER_UPDATE) && !defined(XP_MACOSX)
+ /**
+ * When updating from an earlier version to Tor Browser 6.0 or later, old
+ * update info files are left behind on Linux and Windows. Remove them.
+ */
+ _removeOrphanedTorBrowserFiles: function AUS__removeOrphanedTorBrowserFiles() {
+ try {
+ let oldUpdateInfoDir = getAppBaseDir(); // aka the Browser directory.
+
+#ifdef XP_WIN
+ // On Windows, the updater files were stored under
+ // Browser/TorBrowser/Data/Browser/Caches/firefox/
+ oldUpdateInfoDir.appendRelativePath(
+ "TorBrowser\\Data\\Browser\\Caches\\firefox");
+#endif
+
+ // Remove the updates directory.
+ let updatesDir = oldUpdateInfoDir.clone();
+ updatesDir.append("updates");
+ if (updatesDir.exists() && updatesDir.isDirectory()) {
+ updatesDir.remove(true);
+ }
+
+ // Remove files: active-update.xml and updates.xml
+ let filesToRemove = [ "active-update.xml", "updates.xml" ];
+ filesToRemove.forEach(function(aFileName) {
+ let f = oldUpdateInfoDir.clone();
+ f.append(aFileName);
+ if (f.exists()) {
+ f.remove(false);
+ }
+ });
+ } catch (e) {}
+ },
+#endif
+
/**
* Register an observer when the network comes online, so we can short-circuit
* the app.update.interval when there isn't connectivity
@@ -2873,9 +2959,14 @@ UpdateService.prototype = {
updates.forEach(function(aUpdate) {
// Ignore updates for older versions of the application and updates for
// the same version of the application with the same build ID.
- if (
- vc.compare(aUpdate.appVersion, Services.appinfo.version) < 0 ||
- (vc.compare(aUpdate.appVersion, Services.appinfo.version) == 0 &&
+#ifdef TOR_BROWSER_UPDATE
+ let compatVersion = AppConstants.TOR_BROWSER_VERSION;
+#else
+ let compatVersion = Services.appinfo.version;
+#endif
+ let rc = vc.compare(aUpdate.appVersion, compatVersion);
+ if (rc < 0 ||
+ (rc == 0 &&
aUpdate.buildID == Services.appinfo.appBuildID)
) {
LOG(
@@ -3228,20 +3319,32 @@ UpdateService.prototype = {
// current application's version or the update's version is the same as the
// application's version and the build ID is the same as the application's
// build ID.
+#ifdef TOR_BROWSER_UPDATE
+ let compatVersion = AppConstants.TOR_BROWSER_VERSION;
+#else
+ let compatVersion = Services.appinfo.version;
+#endif
if (
update.appVersion &&
- (Services.vc.compare(update.appVersion, Services.appinfo.version) < 0 ||
+ (Services.vc.compare(update.appVersion, compatVersion) < 0 ||
(update.buildID &&
update.buildID == Services.appinfo.appBuildID &&
- update.appVersion == Services.appinfo.version))
+ update.appVersion == compatVersion))
) {
LOG(
"UpdateService:downloadUpdate - canceling download of update since " +
"it is for an earlier or same application version and build ID.\n" +
+#ifdef TOR_BROWSER_UPDATE
+ "current Tor Browser version: " +
+ compatVersion +
+ "\n" +
+ "update Tor Browser version : " +
+#else
"current application version: " +
- Services.appinfo.version +
+ compatVersion +
"\n" +
"update application version : " +
+#endif
update.appVersion +
"\n" +
"current build ID: " +
@@ -3819,6 +3922,7 @@ Checker.prototype = {
*/
_callback: null,
+#if !defined(TOR_BROWSER_UPDATE)
_getCanMigrate: function UC__getCanMigrate() {
if (AppConstants.platform != "win") {
return false;
@@ -3888,6 +3992,7 @@ Checker.prototype = {
LOG("Checker:_getCanMigrate - no registry entries for this installation");
return false;
},
+#endif // !defined(TOR_BROWSER_UPDATE)
/**
* The URL of the update service XML file to connect to that contains details
@@ -3916,9 +4021,11 @@ Checker.prototype = {
url += (url.includes("?") ? "&" : "?") + "force=1";
}
+#if !defined(TOR_BROWSER_UPDATE)
if (this._getCanMigrate()) {
url += (url.includes("?") ? "&" : "?") + "mig64=1";
}
+#endif
LOG("Checker:getUpdateURL - update URL: " + url);
return url;
diff --git a/toolkit/mozapps/update/UpdateServiceStub.jsm b/toolkit/mozapps/update/UpdateServiceStub.jsm
index 9524a8f61bfa..d44d0f9d7ad1 100644
--- a/toolkit/mozapps/update/UpdateServiceStub.jsm
+++ b/toolkit/mozapps/update/UpdateServiceStub.jsm
@@ -78,8 +78,12 @@ function UpdateServiceStub() {
// contains the status file's path
// We may need to migrate update data
+ // In Tor Browser we skip this because we do not use an update agent and we
+ // do not want to store any data outside of the browser installation directory.
+ // For more info, see https://bugzilla.mozilla.org/show_bug.cgi?id=1458314
if (
AppConstants.platform == "win" &&
+ !AppConstants.TOR_BROWSER_UPDATE &&
!Services.prefs.getBoolPref(prefUpdateDirMigrated, false)
) {
migrateUpdateDirectory();
diff --git a/toolkit/mozapps/update/common/updatehelper.cpp b/toolkit/mozapps/update/common/updatehelper.cpp
index b094d9eb75e9..b9d45c70c3d3 100644
--- a/toolkit/mozapps/update/common/updatehelper.cpp
+++ b/toolkit/mozapps/update/common/updatehelper.cpp
@@ -66,6 +66,13 @@ BOOL PathGetSiblingFilePath(LPWSTR destinationBuffer, LPCWSTR siblingFilePath,
* @return TRUE if successful
*/
BOOL GetSecureOutputDirectoryPath(LPWSTR outBuf) {
+# ifdef TOR_BROWSER_UPDATE
+ // This function is used to support the maintenance service and elevated
+ // updates and is therefore not called by Tor Browser's updater. We stub
+ // it out to avoid any chance that the Tor Browser updater will create
+ // files under C:\Program Files (x86)\ or a similar location.
+ return FALSE;
+# else
PWSTR progFilesX86;
if (FAILED(SHGetKnownFolderPath(FOLDERID_ProgramFilesX86, KF_FLAG_CREATE,
nullptr, &progFilesX86))) {
@@ -99,6 +106,7 @@ BOOL GetSecureOutputDirectoryPath(LPWSTR outBuf) {
}
return TRUE;
+# endif
}
/**
diff --git a/toolkit/mozapps/update/moz.build b/toolkit/mozapps/update/moz.build
index ddfda4571c31..d0c93895c1ec 100644
--- a/toolkit/mozapps/update/moz.build
+++ b/toolkit/mozapps/update/moz.build
@@ -22,11 +22,14 @@ EXTRA_COMPONENTS += [
EXTRA_JS_MODULES += [
'UpdateListener.jsm',
- 'UpdateService.jsm',
'UpdateServiceStub.jsm',
'UpdateTelemetry.jsm',
]
+EXTRA_PP_JS_MODULES += [
+ 'UpdateService.jsm',
+]
+
XPCOM_MANIFESTS += [
'components.conf',
]
diff --git a/toolkit/mozapps/update/updater/launchchild_osx.mm b/toolkit/mozapps/update/updater/launchchild_osx.mm
index f327e1f92a3a..003538377cf6 100644
--- a/toolkit/mozapps/update/updater/launchchild_osx.mm
+++ b/toolkit/mozapps/update/updater/launchchild_osx.mm
@@ -254,6 +254,7 @@ bool ObtainUpdaterArguments(int* argc, char*** argv) {
@end
+#ifndef TOR_BROWSER_UPDATE
bool ServeElevatedUpdate(int argc, const char** argv) {
MacAutoreleasePool pool;
@@ -269,6 +270,7 @@ bool ServeElevatedUpdate(int argc, const char** argv) {
[updater release];
return didSucceed;
}
+#endif
bool IsOwnedByGroupAdmin(const char* aAppBundle) {
MacAutoreleasePool pool;
diff --git a/toolkit/mozapps/update/updater/moz.build b/toolkit/mozapps/update/updater/moz.build
index a0eff9a3b7cd..ecc634c87037 100644
--- a/toolkit/mozapps/update/updater/moz.build
+++ b/toolkit/mozapps/update/updater/moz.build
@@ -49,7 +49,7 @@ xpcshell_cert.script = 'gen_cert_header.py:create_header'
dep1_cert.script = 'gen_cert_header.py:create_header'
dep2_cert.script = 'gen_cert_header.py:create_header'
-if CONFIG['MOZ_UPDATE_CHANNEL'] in ('beta', 'release', 'esr'):
+if CONFIG['MOZ_UPDATE_CHANNEL'] in ('alpha', 'beta', 'release', 'esr'):
primary_cert.inputs += ['release_primary.der']
secondary_cert.inputs += ['release_secondary.der']
elif CONFIG['MOZ_UPDATE_CHANNEL'] in ('nightly', 'aurora', 'nightly-elm',
diff --git a/toolkit/mozapps/update/updater/updater.cpp b/toolkit/mozapps/update/updater/updater.cpp
index 40b806b067e1..9a95c3b17761 100644
--- a/toolkit/mozapps/update/updater/updater.cpp
+++ b/toolkit/mozapps/update/updater/updater.cpp
@@ -16,7 +16,7 @@
* updatev3.manifest
* -----------------
* method = "add" | "add-if" | "add-if-not" | "patch" | "patch-if" |
- * "remove" | "rmdir" | "rmrfdir" | type
+ * "remove" | "rmdir" | "rmrfdir" | "addsymlink" | type
*
* 'add-if-not' adds a file if it doesn't exist.
*
@@ -78,7 +78,9 @@ bool IsRecursivelyWritable(const char* aPath);
void LaunchChild(int argc, const char** argv);
void LaunchMacPostProcess(const char* aAppBundle);
bool ObtainUpdaterArguments(int* argc, char*** argv);
+# ifndef TOR_BROWSER_UPDATE
bool ServeElevatedUpdate(int argc, const char** argv);
+# endif
void SetGroupOwnershipAndPermissions(const char* aAppBundle);
struct UpdateServerThreadArgs {
int argc;
@@ -475,9 +477,12 @@ static const NS_tchar* get_relative_path(const NS_tchar* fullpath) {
* The line from the manifest that contains the path.
* @param isdir
* Whether the path is a directory path. Defaults to false.
+ * @param islinktarget
+ * Whether the path is a symbolic link target. Defaults to false.
* @return valid filesystem path or nullptr if the path checks fail.
*/
-static NS_tchar* get_valid_path(NS_tchar** line, bool isdir = false) {
+static NS_tchar* get_valid_path(NS_tchar** line, bool isdir = false,
+ bool islinktarget = false) {
NS_tchar* path = mstrtok(kQuote, line);
if (!path) {
LOG(("get_valid_path: unable to determine path: " LOG_S, *line));
@@ -513,10 +518,12 @@ static NS_tchar* get_valid_path(NS_tchar** line, bool isdir = false) {
path[NS_tstrlen(path) - 1] = NS_T('\0');
}
- // Don't allow relative paths that resolve to a parent directory.
- if (NS_tstrstr(path, NS_T("..")) != nullptr) {
- LOG(("get_valid_path: paths must not contain '..': " LOG_S, path));
- return nullptr;
+ if (!islinktarget) {
+ // Don't allow relative paths that resolve to a parent directory.
+ if (NS_tstrstr(path, NS_T("..")) != nullptr) {
+ LOG(("get_valid_path: paths must not contain '..': " LOG_S, path));
+ return nullptr;
+ }
}
return path;
@@ -556,7 +563,7 @@ static void ensure_write_permissions(const NS_tchar* path) {
(void)_wchmod(path, _S_IREAD | _S_IWRITE);
#else
struct stat fs;
- if (!stat(path, &fs) && !(fs.st_mode & S_IWUSR)) {
+ if (!lstat(path, &fs) && !S_ISLNK(fs.st_mode) && !(fs.st_mode & S_IWUSR)) {
(void)chmod(path, fs.st_mode | S_IWUSR);
}
#endif
@@ -743,11 +750,9 @@ static int ensure_copy(const NS_tchar* path, const NS_tchar* dest) {
return READ_ERROR;
}
-# ifdef XP_UNIX
if (S_ISLNK(ss.st_mode)) {
return ensure_copy_symlink(path, dest);
}
-# endif
AutoFile infile(ensure_open(path, NS_T("rb"), ss.st_mode));
if (!infile) {
@@ -834,12 +839,19 @@ static int ensure_copy_recursive(const NS_tchar* path, const NS_tchar* dest,
return READ_ERROR;
}
-#ifdef XP_UNIX
+#ifndef XP_WIN
if (S_ISLNK(sInfo.st_mode)) {
return ensure_copy_symlink(path, dest);
}
#endif
+#ifdef XP_UNIX
+ // Ignore Unix domain sockets. See #20691.
+ if (S_ISSOCK(sInfo.st_mode)) {
+ return 0;
+ }
+#endif
+
if (!S_ISDIR(sInfo.st_mode)) {
return ensure_copy(path, dest);
}
@@ -896,7 +908,7 @@ static int rename_file(const NS_tchar* spath, const NS_tchar* dpath,
}
struct NS_tstat_t spathInfo;
- rv = NS_tstat(spath, &spathInfo);
+ rv = NS_tlstat(spath, &spathInfo); // Get info about file or symlink.
if (rv) {
LOG(("rename_file: failed to read file status info: " LOG_S ", "
"err: %d",
@@ -904,7 +916,12 @@ static int rename_file(const NS_tchar* spath, const NS_tchar* dpath,
return READ_ERROR;
}
- if (!S_ISREG(spathInfo.st_mode)) {
+#ifdef XP_WIN
+ if (!S_ISREG(spathInfo.st_mode))
+#else
+ if (!S_ISREG(spathInfo.st_mode) && !S_ISLNK(spathInfo.st_mode))
+#endif
+ {
if (allowDirs && !S_ISDIR(spathInfo.st_mode)) {
LOG(("rename_file: path present, but not a file: " LOG_S ", err: %d",
spath, errno));
@@ -913,7 +930,12 @@ static int rename_file(const NS_tchar* spath, const NS_tchar* dpath,
LOG(("rename_file: proceeding to rename the directory"));
}
- if (!NS_taccess(dpath, F_OK)) {
+#ifdef XP_WIN
+ if (!NS_taccess(dpath, F_OK))
+#else
+ if (!S_ISLNK(spathInfo.st_mode) && !NS_taccess(dpath, F_OK))
+#endif
+ {
if (ensure_remove(dpath)) {
LOG(
("rename_file: destination file exists and could not be "
@@ -933,7 +955,7 @@ static int rename_file(const NS_tchar* spath, const NS_tchar* dpath,
return OK;
}
-#ifdef XP_WIN
+#if defined(XP_WIN) && !defined(TOR_BROWSER_UPDATE)
// Remove the directory pointed to by path and all of its files and
// sub-directories. If a file is in use move it to the tobedeleted directory
// and attempt to schedule removal of the file on reboot
@@ -1032,7 +1054,19 @@ static int backup_restore(const NS_tchar* path, const NS_tchar* relPath) {
NS_tsnprintf(relBackup, sizeof(relBackup) / sizeof(relBackup[0]),
NS_T("%s") BACKUP_EXT, relPath);
- if (NS_taccess(backup, F_OK)) {
+ bool isLink = false;
+#ifndef XP_WIN
+ struct stat linkInfo;
+ int rv = lstat(backup, &linkInfo);
+ if (rv) {
+ LOG(("backup_restore: cannot get info for backup file: " LOG_S ", err: %d",
+ relBackup, errno));
+ return OK;
+ }
+ isLink = S_ISLNK(linkInfo.st_mode);
+#endif
+
+ if (!isLink && NS_taccess(backup, F_OK)) {
LOG(("backup_restore: backup file doesn't exist: " LOG_S, relBackup));
return OK;
}
@@ -1050,8 +1084,18 @@ static int backup_discard(const NS_tchar* path, const NS_tchar* relPath) {
NS_tsnprintf(relBackup, sizeof(relBackup) / sizeof(relBackup[0]),
NS_T("%s") BACKUP_EXT, relPath);
+ bool isLink = false;
+#ifndef XP_WIN
+ struct stat linkInfo;
+ int rv2 = lstat(backup, &linkInfo);
+ if (rv2) {
+ return OK; // File does not exist; nothing to do.
+ }
+ isLink = S_ISLNK(linkInfo.st_mode);
+#endif
+
// Nothing to discard
- if (NS_taccess(backup, F_OK)) {
+ if (!isLink && NS_taccess(backup, F_OK)) {
return OK;
}
@@ -1066,6 +1110,8 @@ static int backup_discard(const NS_tchar* path, const NS_tchar* relPath) {
relBackup, relPath));
return WRITE_ERROR_DELETE_BACKUP;
}
+
+# if !defined(TOR_BROWSER_UPDATE)
// The MoveFileEx call to remove the file on OS reboot will fail if the
// process doesn't have write access to the HKEY_LOCAL_MACHINE registry key
// but this is ok since the installer / uninstaller will delete the
@@ -1082,6 +1128,7 @@ static int backup_discard(const NS_tchar* path, const NS_tchar* relPath) {
"file: " LOG_S,
relPath));
}
+# endif
}
#else
if (rv) {
@@ -1136,7 +1183,7 @@ class Action {
class RemoveFile : public Action {
public:
- RemoveFile() : mSkip(0) {}
+ RemoveFile() : mSkip(0), mIsLink(0) {}
int Parse(NS_tchar* line) override;
int Prepare() override;
@@ -1147,6 +1194,7 @@ class RemoveFile : public Action {
mozilla::UniquePtr<NS_tchar[]> mFile;
mozilla::UniquePtr<NS_tchar[]> mRelPath;
int mSkip;
+ int mIsLink;
};
int RemoveFile::Parse(NS_tchar* line) {
@@ -1169,28 +1217,39 @@ int RemoveFile::Parse(NS_tchar* line) {
}
int RemoveFile::Prepare() {
- // Skip the file if it already doesn't exist.
- int rv = NS_taccess(mFile.get(), F_OK);
- if (rv) {
- mSkip = 1;
- mProgressCost = 0;
- return OK;
+ int rv;
+#ifndef XP_WIN
+ struct stat linkInfo;
+ rv = lstat(mFile.get(), &linkInfo);
+ mIsLink = ((0 == rv) && S_ISLNK(linkInfo.st_mode));
+#endif
+
+ if (!mIsLink) {
+ // Skip the file if it already doesn't exist.
+ rv = NS_taccess(mFile.get(), F_OK);
+ if (rv) {
+ mSkip = 1;
+ mProgressCost = 0;
+ return OK;
+ }
}
LOG(("PREPARE REMOVEFILE " LOG_S, mRelPath.get()));
- // Make sure that we're actually a file...
- struct NS_tstat_t fileInfo;
- rv = NS_tstat(mFile.get(), &fileInfo);
- if (rv) {
- LOG(("failed to read file status info: " LOG_S ", err: %d", mFile.get(),
- errno));
- return READ_ERROR;
- }
+ if (!mIsLink) {
+ // Make sure that we're actually a file...
+ struct NS_tstat_t fileInfo;
+ rv = NS_tstat(mFile.get(), &fileInfo);
+ if (rv) {
+ LOG(("failed to read file status info: " LOG_S ", err: %d", mFile.get(),
+ errno));
+ return READ_ERROR;
+ }
- if (!S_ISREG(fileInfo.st_mode)) {
- LOG(("path present, but not a file: " LOG_S, mFile.get()));
- return DELETE_ERROR_EXPECTED_FILE;
+ if (!S_ISREG(fileInfo.st_mode)) {
+ LOG(("path present, but not a file: " LOG_S, mFile.get()));
+ return DELETE_ERROR_EXPECTED_FILE;
+ }
}
NS_tchar* slash = (NS_tchar*)NS_tstrrchr(mFile.get(), NS_T('/'));
@@ -1219,7 +1278,13 @@ int RemoveFile::Execute() {
// The file is checked for existence here and in Prepare since it might have
// been removed by a separate instruction: bug 311099.
- int rv = NS_taccess(mFile.get(), F_OK);
+ int rv = 0;
+ if (mIsLink) {
+ struct NS_tstat_t linkInfo;
+ rv = NS_tlstat(mFile.get(), &linkInfo);
+ } else {
+ rv = NS_taccess(mFile.get(), F_OK);
+ }
if (rv) {
LOG(("file cannot be removed because it does not exist; skipping"));
mSkip = 1;
@@ -1942,6 +2007,92 @@ void PatchIfFile::Finish(int status) {
PatchFile::Finish(status);
}
+#ifndef XP_WIN
+class AddSymlink : public Action {
+ public:
+ AddSymlink() : mAdded(false) {}
+
+ virtual int Parse(NS_tchar* line);
+ virtual int Prepare();
+ virtual int Execute();
+ virtual void Finish(int status);
+
+ private:
+ mozilla::UniquePtr<NS_tchar[]> mLinkPath;
+ mozilla::UniquePtr<NS_tchar[]> mRelPath;
+ mozilla::UniquePtr<NS_tchar[]> mTarget;
+ bool mAdded;
+};
+
+int AddSymlink::Parse(NS_tchar* line) {
+ // format "<linkname>" "target"
+
+ NS_tchar* validPath = get_valid_path(&line);
+ if (!validPath) return PARSE_ERROR;
+
+ mRelPath = mozilla::MakeUnique<NS_tchar[]>(MAXPATHLEN);
+ NS_tstrcpy(mRelPath.get(), validPath);
+ mLinkPath.reset(get_full_path(validPath));
+ if (!mLinkPath) {
+ return PARSE_ERROR;
+ }
+
+ // consume whitespace between args
+ NS_tchar* q = mstrtok(kQuote, &line);
+ if (!q) return PARSE_ERROR;
+
+ validPath = get_valid_path(&line, false, true);
+ if (!validPath) return PARSE_ERROR;
+
+ mTarget = mozilla::MakeUnique<NS_tchar[]>(MAXPATHLEN);
+ NS_tstrcpy(mTarget.get(), validPath);
+
+ return OK;
+}
+
+int AddSymlink::Prepare() {
+ LOG(("PREPARE ADDSYMLINK " LOG_S " -> " LOG_S, mRelPath.get(),
+ mTarget.get()));
+
+ return OK;
+}
+
+int AddSymlink::Execute() {
+ LOG(("EXECUTE ADDSYMLINK " LOG_S " -> " LOG_S, mRelPath.get(),
+ mTarget.get()));
+
+ // First make sure that we can actually get rid of any existing file or link.
+ struct stat linkInfo;
+ int rv = lstat(mLinkPath.get(), &linkInfo);
+ if ((0 == rv) && !S_ISLNK(linkInfo.st_mode)) {
+ rv = NS_taccess(mLinkPath.get(), F_OK);
+ }
+ if (rv == 0) {
+ rv = backup_create(mLinkPath.get());
+ if (rv) return rv;
+ } else {
+ rv = ensure_parent_dir(mLinkPath.get());
+ if (rv) return rv;
+ }
+
+ // Create the link.
+ rv = symlink(mTarget.get(), mLinkPath.get());
+ if (!rv) {
+ mAdded = true;
+ }
+
+ return rv;
+}
+
+void AddSymlink::Finish(int status) {
+ LOG(("FINISH ADDSYMLINK " LOG_S " -> " LOG_S, mRelPath.get(), mTarget.get()));
+ // When there is an update failure and a link has been added it is removed
+ // here since there might not be a backup to replace it.
+ if (status && mAdded) NS_tremove(mLinkPath.get());
+ backup_finish(mLinkPath.get(), mRelPath.get(), status);
+}
+#endif
+
//-----------------------------------------------------------------------------
#ifdef XP_WIN
@@ -2279,14 +2430,29 @@ static bool IsSecureUpdateStatusSucceeded(bool& isSucceeded) {
*/
static int CopyInstallDirToDestDir() {
// These files should not be copied over to the updated app
-#ifdef XP_WIN
-# define SKIPLIST_COUNT 3
-#elif XP_MACOSX
-# define SKIPLIST_COUNT 0
+#if defined(TOR_BROWSER_UPDATE) && !defined(TOR_BROWSER_DATA_OUTSIDE_APP_DIR)
+# ifdef XP_WIN
+# define SKIPLIST_COUNT 6
+# else
+# define SKIPLIST_COUNT 5
+# endif
#else
-# define SKIPLIST_COUNT 2
+# ifdef XP_WIN
+# define SKIPLIST_COUNT 3
+# elif XP_MACOSX
+# define SKIPLIST_COUNT 0
+# else
+# define SKIPLIST_COUNT 2
+# endif
#endif
copy_recursive_skiplist<SKIPLIST_COUNT> skiplist;
+#if defined(TOR_BROWSER_UPDATE) && !defined(TOR_BROWSER_DATA_OUTSIDE_APP_DIR)
+# ifdef XP_MACOSX
+ skiplist.append(0, gInstallDirPath, NS_T("Updated.app"));
+ skiplist.append(1, gInstallDirPath, NS_T("TorBrowser/UpdateInfo/updates/0"));
+# endif
+#endif
+
#ifndef XP_MACOSX
skiplist.append(0, gInstallDirPath, NS_T("updated"));
skiplist.append(1, gInstallDirPath, NS_T("updates/0"));
@@ -2295,6 +2461,19 @@ static int CopyInstallDirToDestDir() {
# endif
#endif
+#if defined(TOR_BROWSER_UPDATE) && !defined(TOR_BROWSER_DATA_OUTSIDE_APP_DIR)
+# ifdef XP_WIN
+ skiplist.append(SKIPLIST_COUNT - 3, gInstallDirPath,
+ NS_T("TorBrowser/Data/Browser/profile.default/parent.lock"));
+# else
+ skiplist.append(SKIPLIST_COUNT - 3, gInstallDirPath,
+ NS_T("TorBrowser/Data/Browser/profile.default/.parentlock"));
+# endif
+
+ skiplist.append(SKIPLIST_COUNT - 1, gInstallDirPath,
+ NS_T("TorBrowser/Data/Tor/lock"));
+#endif
+
return ensure_copy_recursive(gInstallDirPath, gWorkingDirPath, skiplist);
}
@@ -2432,7 +2611,9 @@ static int ProcessReplaceRequest() {
if (NS_taccess(deleteDir, F_OK)) {
NS_tmkdir(deleteDir, 0755);
}
+# if !defined(TOR_BROWSER_UPDATE)
remove_recursive_on_reboot(tmpDir, deleteDir);
+# endif
#endif
}
@@ -2440,8 +2621,45 @@ static int ProcessReplaceRequest() {
// On OS X, we we need to remove the staging directory after its Contents
// directory has been moved.
NS_tchar updatedAppDir[MAXPATHLEN];
+# if defined(TOR_BROWSER_UPDATE) && !defined(TOR_BROWSER_DATA_OUTSIDE_APP_DIR)
+ NS_tsnprintf(updatedAppDir, sizeof(updatedAppDir) / sizeof(updatedAppDir[0]),
+ NS_T("%s/Updated.app"), gInstallDirPath);
+ // For Tor Browser on OS X, we also need to copy everything else that is
+ // inside Updated.app.
+ NS_tDIR* dir = NS_topendir(updatedAppDir);
+ if (dir) {
+ NS_tdirent* entry;
+ while ((entry = NS_treaddir(dir)) != 0) {
+ if (NS_tstrcmp(entry->d_name, NS_T(".")) &&
+ NS_tstrcmp(entry->d_name, NS_T(".."))) {
+ NS_tchar childSrcPath[MAXPATHLEN];
+ NS_tsnprintf(childSrcPath,
+ sizeof(childSrcPath) / sizeof(childSrcPath[0]),
+ NS_T("%s/%s"), updatedAppDir, entry->d_name);
+ NS_tchar childDstPath[MAXPATHLEN];
+ NS_tsnprintf(childDstPath,
+ sizeof(childDstPath) / sizeof(childDstPath[0]),
+ NS_T("%s/%s"), gInstallDirPath, entry->d_name);
+ ensure_remove_recursive(childDstPath);
+ rv = rename_file(childSrcPath, childDstPath, true);
+ if (rv) {
+ LOG(("Moving " LOG_S " to " LOG_S " failed, err: %d", childSrcPath,
+ childDstPath, errno));
+ }
+ }
+ }
+
+ NS_tclosedir(dir);
+ } else {
+ LOG(("Updated.app dir can't be found: " LOG_S ", err: %d", updatedAppDir,
+ errno));
+ }
+# else
NS_tsnprintf(updatedAppDir, sizeof(updatedAppDir) / sizeof(updatedAppDir[0]),
NS_T("%s/Updated.app"), gPatchDirPath);
+# endif
+
+ // Remove the Updated.app directory.
ensure_remove_recursive(updatedAppDir);
#endif
@@ -2620,11 +2838,15 @@ static void UpdateThreadFunc(void* param) {
#ifdef XP_MACOSX
static void ServeElevatedUpdateThreadFunc(void* param) {
+# ifdef TOR_BROWSER_UPDATE
+ WriteStatusFile(ELEVATION_CANCELED);
+# else
UpdateServerThreadArgs* threadArgs = (UpdateServerThreadArgs*)param;
gSucceeded = ServeElevatedUpdate(threadArgs->argc, threadArgs->argv);
if (!gSucceeded) {
WriteStatusFile(ELEVATION_CANCELED);
}
+# endif
QuitProgressUI();
}
@@ -2648,7 +2870,7 @@ int LaunchCallbackAndPostProcessApps(int argc, NS_tchar** argv,
#endif
) {
if (argc > callbackIndex) {
-#if defined(XP_WIN)
+#if defined(XP_WIN) && !defined(TOR_BROWSER_UPDATE)
if (gSucceeded) {
if (!LaunchWinPostProcess(gInstallDirPath, gPatchDirPath)) {
fprintf(stderr, "The post update process was not launched");
@@ -2703,8 +2925,12 @@ int NS_main(int argc, NS_tchar** argv) {
UmaskContext umaskContext(0);
bool isElevated =
+# ifdef TOR_BROWSER_UPDATE
+ false;
+# else
strstr(argv[0], "/Library/PrivilegedHelperTools/org.mozilla.updater") !=
0;
+# endif
if (isElevated) {
if (!ObtainUpdaterArguments(&argc, &argv)) {
// Won't actually get here because ObtainUpdaterArguments will terminate
@@ -3348,6 +3574,26 @@ int NS_main(int argc, NS_tchar** argv) {
// using the service is because we are testing.
if (!useService && !noServiceFallback &&
updateLockFileHandle == INVALID_HANDLE_VALUE) {
+# ifdef TOR_BROWSER_UPDATE
+# ifdef TOR_BROWSER_DATA_OUTSIDE_APP_DIR
+ // Because the TorBrowser-Data directory that contains the user's
+ // profile is a sibling of the Tor Browser installation directory,
+ // the user probably has permission to apply updates. Therefore, to
+ // avoid potential security issues such as CVE-2015-0833, do not
+ // attempt to elevate privileges. Instead, write a "failed" message
+ // to the update status file (this function will return immediately
+ // after the CloseHandle(elevatedFileHandle) call below).
+# else
+ // Because the user profile is contained within the Tor Browser
+ // installation directory, the user almost certainly has permission to
+ // apply updates. Therefore, to avoid potential security issues such
+ // as CVE-2015-0833, do not attempt to elevate privileges. Instead,
+ // write a "failed" message to the update status file (this function
+ // will return immediately after the CloseHandle(elevatedFileHandle)
+ // call below).
+# endif
+ WriteStatusFile(WRITE_ERROR_ACCESS_DENIED);
+# else
// Get the secure ID before trying to update so it is possible to
// determine if the updater has created a new one.
char uuidStringBefore[UUID_LEN] = {'\0'};
@@ -3393,6 +3639,7 @@ int NS_main(int argc, NS_tchar** argv) {
gCopyOutputFiles = false;
WriteStatusFile(ELEVATION_CANCELED);
}
+# endif
}
// Note: The PostUpdate process is launched by the elevated updater which
@@ -3727,6 +3974,7 @@ int NS_main(int argc, NS_tchar** argv) {
if (!sStagedUpdate && !sReplaceRequest && _wrmdir(gDeleteDirPath)) {
LOG(("NS_main: unable to remove directory: " LOG_S ", err: %d", DELETE_DIR,
errno));
+# if !defined(TOR_BROWSER_UPDATE)
// The directory probably couldn't be removed due to it containing files
// that are in use and will be removed on OS reboot. The call to remove the
// directory on OS reboot is done after the calls to remove the files so the
@@ -3745,6 +3993,7 @@ int NS_main(int argc, NS_tchar** argv) {
"directory: " LOG_S,
DELETE_DIR));
}
+# endif
}
#endif /* XP_WIN */
@@ -4386,7 +4635,13 @@ int DoUpdate() {
action = new AddIfNotFile();
} else if (NS_tstrcmp(token, NS_T("patch-if")) == 0) { // Patch if exists
action = new PatchIfFile();
- } else {
+ }
+#ifndef XP_WIN
+ else if (NS_tstrcmp(token, NS_T("addsymlink")) == 0) {
+ action = new AddSymlink();
+ }
+#endif
+ else {
LOG(("DoUpdate: unknown token: " LOG_S, token));
free(buf);
return PARSE_ERROR;
diff --git a/toolkit/xre/MacLaunchHelper.h b/toolkit/xre/MacLaunchHelper.h
index f8dc75ee4d08..ce816acd83e2 100644
--- a/toolkit/xre/MacLaunchHelper.h
+++ b/toolkit/xre/MacLaunchHelper.h
@@ -17,7 +17,9 @@ extern "C" {
* pid of the terminated process to confirm that it executed successfully.
*/
void LaunchChildMac(int aArgc, char** aArgv, pid_t* aPid = 0);
+#ifndef TOR_BROWSER_UPDATE
bool LaunchElevatedUpdate(int aArgc, char** aArgv, pid_t* aPid = 0);
+#endif
}
#endif
diff --git a/toolkit/xre/MacLaunchHelper.mm b/toolkit/xre/MacLaunchHelper.mm
index ec570ffab124..da2917c2a99e 100644
--- a/toolkit/xre/MacLaunchHelper.mm
+++ b/toolkit/xre/MacLaunchHelper.mm
@@ -40,6 +40,7 @@ void LaunchChildMac(int aArgc, char** aArgv, pid_t* aPid) {
}
}
+#ifndef TOR_BROWSER_UPDATE
BOOL InstallPrivilegedHelper() {
AuthorizationRef authRef = NULL;
OSStatus status = AuthorizationCreate(
@@ -116,3 +117,4 @@ bool LaunchElevatedUpdate(int aArgc, char** aArgv, pid_t* aPid) {
}
return didSucceed;
}
+#endif
diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
index 1fd397f4aae8..2be7500d174d 100644
--- a/toolkit/xre/nsAppRunner.cpp
+++ b/toolkit/xre/nsAppRunner.cpp
@@ -2671,6 +2671,11 @@ static bool CheckCompatibility(nsIFile* aProfileDir, const nsCString& aVersion,
gLastAppBuildID.Assign(gAppData->buildID);
nsAutoCString buf;
+
+ nsAutoCString tbVersion(TOR_BROWSER_VERSION_QUOTED);
+ rv = parser.GetString("Compatibility", "LastTorBrowserVersion", buf);
+ if (NS_FAILED(rv) || !tbVersion.Equals(buf)) return false;
+
rv = parser.GetString("Compatibility", "LastOSABI", buf);
if (NS_FAILED(rv) || !aOSABI.Equals(buf)) return false;
@@ -2756,6 +2761,12 @@ static void WriteVersion(nsIFile* aProfileDir, const nsCString& aVersion,
PR_Write(fd, kHeader, sizeof(kHeader) - 1);
PR_Write(fd, aVersion.get(), aVersion.Length());
+ nsAutoCString tbVersion(TOR_BROWSER_VERSION_QUOTED);
+ static const char kTorBrowserVersionHeader[] =
+ NS_LINEBREAK "LastTorBrowserVersion=";
+ PR_Write(fd, kTorBrowserVersionHeader, sizeof(kTorBrowserVersionHeader) - 1);
+ PR_Write(fd, tbVersion.get(), tbVersion.Length());
+
static const char kOSABIHeader[] = NS_LINEBREAK "LastOSABI=";
PR_Write(fd, kOSABIHeader, sizeof(kOSABIHeader) - 1);
PR_Write(fd, aOSABI.get(), aOSABI.Length());
@@ -4203,8 +4214,17 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
if (CheckArg("test-process-updates")) {
SaveToEnv("MOZ_TEST_PROCESS_UPDATES=1");
}
+# ifdef TOR_BROWSER_UPDATE
+ nsAutoCString compatVersion(TOR_BROWSER_VERSION_QUOTED);
+# endif
ProcessUpdates(mDirProvider.GetGREDir(), exeDir, updRoot, gRestartArgc,
- gRestartArgv, mAppData->version);
+ gRestartArgv,
+# ifdef TOR_BROWSER_UPDATE
+ compatVersion.get()
+# else
+ mAppData->version
+# endif
+ );
if (EnvHasValue("MOZ_TEST_PROCESS_UPDATES")) {
SaveToEnv("MOZ_TEST_PROCESS_UPDATES=");
*aExitFlag = true;
diff --git a/toolkit/xre/nsUpdateDriver.cpp b/toolkit/xre/nsUpdateDriver.cpp
index 6af227711642..55d1982504ed 100644
--- a/toolkit/xre/nsUpdateDriver.cpp
+++ b/toolkit/xre/nsUpdateDriver.cpp
@@ -159,6 +159,13 @@ static nsresult GetInstallDirPath(nsIFile* appDir, nsACString& installDirPath) {
return NS_OK;
}
+#ifdef DEBUG
+static void dump_argv(const char* aPrefix, char** argv, int argc) {
+ printf("%s - %d args\n", aPrefix, argc);
+ for (int i = 0; i < argc; ++i) printf(" %d: %s\n", i, argv[i]);
+}
+#endif
+
static bool GetFile(nsIFile* dir, const nsACString& name,
nsCOMPtr<nsIFile>& result) {
nsresult rv;
@@ -220,6 +227,34 @@ typedef enum {
eAppliedService,
} UpdateStatus;
+#ifdef DEBUG
+static const char* UpdateStatusToString(UpdateStatus aStatus) {
+ const char* rv = "unknown";
+ switch (aStatus) {
+ case eNoUpdateAction:
+ rv = "NoUpdateAction";
+ break;
+ case ePendingUpdate:
+ rv = "PendingUpdate";
+ break;
+ case ePendingService:
+ rv = "PendingService";
+ break;
+ case ePendingElevate:
+ rv = "PendingElevate";
+ break;
+ case eAppliedUpdate:
+ rv = "AppliedUpdate";
+ break;
+ case eAppliedService:
+ rv = "AppliedService";
+ break;
+ }
+
+ return rv;
+}
+#endif
+
/**
* Returns a value indicating what needs to be done in order to handle an
* update.
@@ -292,9 +327,39 @@ static bool IsOlderVersion(nsIFile* versionFile, const char* appVersion) {
return false;
}
+#ifdef DEBUG
+ printf("IsOlderVersion checking appVersion %s against updateVersion %s\n",
+ appVersion, buf);
+#endif
+
return mozilla::Version(appVersion) > buf;
}
+#ifndef TOR_BROWSER_DATA_OUTSIDE_APP_DIR
+# if defined(TOR_BROWSER_UPDATE) && defined(XP_MACOSX)
+static nsresult GetUpdateDirFromAppDir(nsIFile* aAppDir, nsIFile** aResult) {
+ // On Mac OSX, we stage the update to an Updated.app directory that is
+ // directly below the main Tor Browser.app directory (two levels up from
+ // the appDir).
+ NS_ENSURE_ARG_POINTER(aAppDir);
+ NS_ENSURE_ARG_POINTER(aResult);
+ nsCOMPtr<nsIFile> parentDir1, parentDir2;
+ nsresult rv = aAppDir->GetParent(getter_AddRefs(parentDir1));
+ NS_ENSURE_SUCCESS(rv, rv);
+ rv = parentDir1->GetParent(getter_AddRefs(parentDir2));
+ NS_ENSURE_SUCCESS(rv, rv);
+
+ nsCOMPtr<nsIFile> updatedDir;
+ if (!GetFile(parentDir2, NS_LITERAL_CSTRING("Updated.app"), updatedDir)) {
+ return NS_ERROR_FAILURE;
+ }
+
+ updatedDir.forget(aResult);
+ return NS_OK;
+}
+# endif
+#endif
+
/**
* Applies, switches, or stages an update.
*
@@ -442,7 +507,12 @@ static void ApplyUpdate(nsIFile* greDir, nsIFile* updateDir, nsIFile* appDir,
} else {
// Get the directory where the update is staged or will be staged.
#if defined(XP_MACOSX)
+# if defined(TOR_BROWSER_UPDATE) && !defined(TOR_BROWSER_DATA_OUTSIDE_APP_DIR)
+ rv = GetUpdateDirFromAppDir(appDir, getter_AddRefs(updatedDir));
+ if (NS_FAILED(rv)) {
+# else
if (!GetFile(updateDir, NS_LITERAL_CSTRING("Updated.app"), updatedDir)) {
+# endif
#else
if (!GetFile(appDir, NS_LITERAL_CSTRING("updated"), updatedDir)) {
#endif
@@ -537,6 +607,9 @@ static void ApplyUpdate(nsIFile* greDir, nsIFile* updateDir, nsIFile* appDir,
}
LOG(("spawning updater process [%s]\n", updaterPath.get()));
+#ifdef DEBUG
+ dump_argv("ApplyUpdate updater", argv, argc);
+#endif
#if defined(XP_UNIX) && !defined(XP_MACOSX)
// We use execv to spawn the updater process on all UNIX systems except Mac
@@ -574,6 +647,10 @@ static void ApplyUpdate(nsIFile* greDir, nsIFile* updateDir, nsIFile* appDir,
}
#elif defined(XP_MACOSX)
UpdateDriverSetupMacCommandLine(argc, argv, restart);
+# ifdef DEBUG
+dump_argv("ApplyUpdate after SetupMacCommandLine", argv, argc);
+# endif
+# ifndef TOR_BROWSER_UPDATE
// We need to detect whether elevation is required for this update. This can
// occur when an admin user installs the application, but another admin
// user attempts to update (see bug 394984).
@@ -586,6 +663,7 @@ if (restart && !IsRecursivelyWritable(installDirPath.get())) {
}
exit(0);
}
+# endif
if (isStaged) {
// Launch the updater to replace the installation with the staged updated.
@@ -656,9 +734,27 @@ static bool ProcessHasTerminated(ProcessType pt) {
nsresult ProcessUpdates(nsIFile* greDir, nsIFile* appDir, nsIFile* updRootDir,
int argc, char** argv, const char* appVersion,
bool restart, ProcessType* pid) {
+#if defined(XP_WIN) && defined(TOR_BROWSER_UPDATE)
+ // Try to remove the "tobedeleted" directory which, if present, contains
+ // files that could not be removed during a previous update (e.g., DLLs
+ // that were in use and therefore locked by Windows).
+ nsCOMPtr<nsIFile> deleteDir;
+ nsresult winrv = appDir->Clone(getter_AddRefs(deleteDir));
+ if (NS_SUCCEEDED(winrv)) {
+ winrv = deleteDir->AppendNative(NS_LITERAL_CSTRING("tobedeleted"));
+ if (NS_SUCCEEDED(winrv)) {
+ winrv = deleteDir->Remove(true);
+ }
+ }
+#endif
+
nsresult rv;
nsCOMPtr<nsIFile> updatesDir;
+#ifdef DEBUG
+ printf("ProcessUpdates updateRootDir: %s appVersion: %s\n",
+ updRootDir->HumanReadablePath().get(), appVersion);
+#endif
rv = updRootDir->Clone(getter_AddRefs(updatesDir));
NS_ENSURE_SUCCESS(rv, rv);
rv = updatesDir->AppendNative(NS_LITERAL_CSTRING("updates"));
@@ -678,6 +774,12 @@ nsresult ProcessUpdates(nsIFile* greDir, nsIFile* appDir, nsIFile* updRootDir,
nsCOMPtr<nsIFile> statusFile;
UpdateStatus status = GetUpdateStatus(updatesDir, statusFile);
+#ifdef DEBUG
+ printf("ProcessUpdates status: %s (%d)\n", UpdateStatusToString(status),
+ status);
+ printf("ProcessUpdates updatesDir: %s\n",
+ updatesDir->HumanReadablePath().get());
+#endif
switch (status) {
case ePendingUpdate:
case ePendingService: {
@@ -741,13 +843,16 @@ nsUpdateProcessor::ProcessUpdate() {
NS_ENSURE_SUCCESS(rv, rv);
}
+ nsAutoCString appVersion;
+#ifdef TOR_BROWSER_UPDATE
+ appVersion = TOR_BROWSER_VERSION_QUOTED;
+#else
nsCOMPtr<nsIXULAppInfo> appInfo =
do_GetService("@mozilla.org/xre/app-info;1", &rv);
NS_ENSURE_SUCCESS(rv, rv);
-
- nsAutoCString appVersion;
rv = appInfo->GetVersion(appVersion);
NS_ENSURE_SUCCESS(rv, rv);
+#endif
// Copy the parameters to the StagedUpdateInfo structure shared with the
// watcher thread.
diff --git a/toolkit/xre/nsXREDirProvider.cpp b/toolkit/xre/nsXREDirProvider.cpp
index 09f34911d3cb..e96b940e1172 100644
--- a/toolkit/xre/nsXREDirProvider.cpp
+++ b/toolkit/xre/nsXREDirProvider.cpp
@@ -1240,6 +1240,41 @@ nsresult nsXREDirProvider::GetUpdateRootDir(nsIFile** aResult,
}
#endif
nsCOMPtr<nsIFile> updRoot;
+#if defined(TOR_BROWSER_UPDATE)
+ // For Tor Browser, we store update history, etc. within the UpdateInfo
+ // directory under the user data directory.
+ nsresult rv = GetTorBrowserUserDataDir(getter_AddRefs(updRoot));
+ NS_ENSURE_SUCCESS(rv, rv);
+ rv = updRoot->AppendNative(NS_LITERAL_CSTRING("UpdateInfo"));
+ NS_ENSURE_SUCCESS(rv, rv);
+# if defined(XP_MACOSX) && defined(TOR_BROWSER_DATA_OUTSIDE_APP_DIR)
+ // Since the TorBrowser-Data directory may be shared among different
+ // installations of the application, embed the app path in the update dir
+ // so that the update history is partitioned. This is much less likely to
+ // be an issue on Linux or Windows because the Tor Browser packages for
+ // those platforms include a "container" folder that provides partitioning
+ // by default, and we do not support use of a shared, OS-recommended area
+ // for user data on those platforms.
+ nsCOMPtr<nsIFile> appFile;
+ bool per = false;
+ rv = GetFile(XRE_EXECUTABLE_FILE, &per, getter_AddRefs(appFile));
+ NS_ENSURE_SUCCESS(rv, rv);
+ nsCOMPtr<nsIFile> appRootDirFile;
+ nsAutoString appDirPath;
+ if (NS_FAILED(appFile->GetParent(getter_AddRefs(appRootDirFile))) ||
+ NS_FAILED(appRootDirFile->GetPath(appDirPath))) {
+ return NS_ERROR_FAILURE;
+ }
+
+ int32_t dotIndex = appDirPath.RFind(".app");
+ if (dotIndex == kNotFound) {
+ dotIndex = appDirPath.Length();
+ }
+ appDirPath = Substring(appDirPath, 1, dotIndex - 1);
+ rv = updRoot->AppendRelativePath(appDirPath);
+ NS_ENSURE_SUCCESS(rv, rv);
+# endif
+#else // ! TOR_BROWSER_UPDATE
nsCOMPtr<nsIFile> appFile;
bool per = false;
nsresult rv = GetFile(XRE_EXECUTABLE_FILE, &per, getter_AddRefs(appFile));
@@ -1247,7 +1282,7 @@ nsresult nsXREDirProvider::GetUpdateRootDir(nsIFile** aResult,
rv = appFile->GetParent(getter_AddRefs(updRoot));
NS_ENSURE_SUCCESS(rv, rv);
-#ifdef XP_MACOSX
+# ifdef XP_MACOSX
nsCOMPtr<nsIFile> appRootDirFile;
nsCOMPtr<nsIFile> localDir;
nsAutoString appDirPath;
@@ -1281,7 +1316,7 @@ nsresult nsXREDirProvider::GetUpdateRootDir(nsIFile** aResult,
localDir.forget(aResult);
return NS_OK;
-#elif XP_WIN
+# elif XP_WIN
nsAutoString installPath;
rv = updRoot->GetPath(installPath);
NS_ENSURE_SUCCESS(rv, rv);
@@ -1310,7 +1345,8 @@ nsresult nsXREDirProvider::GetUpdateRootDir(nsIFile** aResult,
nsAutoString updatePathStr;
updatePathStr.Assign(updatePath.get());
updRoot->InitWithPath(updatePathStr);
-#endif // XP_WIN
+# endif // XP_WIN
+#endif // ! TOR_BROWSER_UPDATE
updRoot.forget(aResult);
return NS_OK;
}
diff --git a/tools/update-packaging/common.sh b/tools/update-packaging/common.sh
index 69aef38c5ccc..78a8bdeb634b 100755
--- a/tools/update-packaging/common.sh
+++ b/tools/update-packaging/common.sh
@@ -8,6 +8,10 @@
# Author: Darin Fisher
#
+# TODO When TOR_BROWSER_DATA_OUTSIDE_APP_DIR is used on all platforms,
+# we should remove all lines in this file that contain:
+# TorBrowser/Data
+
# -----------------------------------------------------------------------------
QUIET=0
@@ -85,22 +89,10 @@ make_add_instruction() {
forced=
fi
- is_extension=$(echo "$f" | grep -c 'distribution/extensions/.*/')
- if [ $is_extension = "1" ]; then
- # Use the subdirectory of the extensions folder as the file to test
- # before performing this add instruction.
- testdir=$(echo "$f" | sed 's/\(.*distribution\/extensions\/[^\/]*\)\/.*/\1/')
- verbose_notice " add-if \"$testdir\" \"$f\""
- echo "add-if \"$testdir\" \"$f\"" >> "$filev2"
- if [ ! $filev3 = "" ]; then
- echo "add-if \"$testdir\" \"$f\"" >> "$filev3"
- fi
- else
- verbose_notice " add \"$f\"$forced"
- echo "add \"$f\"" >> "$filev2"
- if [ ! "$filev3" = "" ]; then
- echo "add \"$f\"" >> "$filev3"
- fi
+ verbose_notice " add \"$f\"$forced"
+ echo "add \"$f\"" >> "$filev2"
+ if [ ! "$filev3" = "" ]; then
+ echo "add \"$f\"" >> "$filev3"
fi
}
@@ -135,24 +127,25 @@ make_add_if_not_instruction() {
echo "add-if-not \"$f\" \"$f\"" >> "$filev3"
}
+make_addsymlink_instruction() {
+ link="$1"
+ target="$2"
+ filev2="$3"
+ filev3="$4"
+
+ verbose_notice " addsymlink: $link -> $target"
+ echo "addsymlink \"$link\" \"$target\"" >> "$filev2"
+ echo "addsymlink \"$link\" \"$target\"" >> "$filev3"
+}
+
make_patch_instruction() {
f="$1"
filev2="$2"
filev3="$3"
- is_extension=$(echo "$f" | grep -c 'distribution/extensions/.*/')
- if [ $is_extension = "1" ]; then
- # Use the subdirectory of the extensions folder as the file to test
- # before performing this add instruction.
- testdir=$(echo "$f" | sed 's/\(.*distribution\/extensions\/[^\/]*\)\/.*/\1/')
- verbose_notice " patch-if \"$testdir\" \"$f.patch\" \"$f\""
- echo "patch-if \"$testdir\" \"$f.patch\" \"$f\"" >> "$filev2"
- echo "patch-if \"$testdir\" \"$f.patch\" \"$f\"" >> "$filev3"
- else
- verbose_notice " patch \"$f.patch\" \"$f\""
- echo "patch \"$f.patch\" \"$f\"" >> "$filev2"
- echo "patch \"$f.patch\" \"$f\"" >> "$filev3"
- fi
+ verbose_notice " patch \"$f.patch\" \"$f\""
+ echo "patch \"$f.patch\" \"$f\"" >> "$filev2"
+ echo "patch \"$f.patch\" \"$f\"" >> "$filev3"
}
append_remove_instructions() {
@@ -201,6 +194,10 @@ append_remove_instructions() {
# List all files in the current directory, stripping leading "./"
# Pass a variable name and it will be filled as an array.
+# To support Tor Browser updates, skip the following files:
+# TorBrowser/Data/Browser/profiles.ini
+# TorBrowser/Data/Browser/profile.default/bookmarks.html
+# TorBrowser/Data/Tor/torrc
list_files() {
count=0
temp_filelist=$(mktemp)
@@ -211,6 +208,11 @@ list_files() {
| sed 's/\.\/\(.*\)/\1/' \
| sort -r > "${temp_filelist}"
while read file; do
+ if [ "$file" = "TorBrowser/Data/Browser/profiles.ini" -o \
+ "$file" = "TorBrowser/Data/Browser/profile.default/bookmarks.html" -o \
+ "$file" = "TorBrowser/Data/Tor/torrc" ]; then
+ continue;
+ fi
eval "${1}[$count]=\"$file\""
(( count++ ))
done < "${temp_filelist}"
@@ -232,3 +234,19 @@ list_dirs() {
done < "${temp_dirlist}"
rm "${temp_dirlist}"
}
+
+# List all symbolic links in the current directory, stripping leading "./"
+list_symlinks() {
+ count=0
+
+ find . -type l \
+ | sed 's/\.\/\(.*\)/\1/' \
+ | sort -r > "temp-symlinklist"
+ while read symlink; do
+ target=$(readlink "$symlink")
+ eval "${1}[$count]=\"$symlink\""
+ eval "${2}[$count]=\"$target\""
+ (( count++ ))
+ done < "temp-symlinklist"
+ rm "temp-symlinklist"
+}
diff --git a/tools/update-packaging/make_full_update.sh b/tools/update-packaging/make_full_update.sh
index a79a1839147c..fcf143339a1c 100755
--- a/tools/update-packaging/make_full_update.sh
+++ b/tools/update-packaging/make_full_update.sh
@@ -69,6 +69,7 @@ if [ ! -f "precomplete" ]; then
fi
list_files files
+list_symlinks symlinks symlink_targets
popd
@@ -81,6 +82,22 @@ notice " type complete"
echo "type \"complete\"" >> "$updatemanifestv2"
echo "type \"complete\"" >> "$updatemanifestv3"
+# TODO When TOR_BROWSER_DATA_OUTSIDE_APP_DIR is used on all platforms,
+# we should remove the following lines:
+# If removal of any old, existing directories is desired, emit the appropriate
+# rmrfdir commands.
+notice ""
+notice "Adding directory removal instructions to update manifests"
+for dir_to_remove in $directories_to_remove; do
+ # rmrfdir requires a trailing slash; if slash is missing, add one.
+ if ! [[ "$dir_to_remove" =~ /$ ]]; then
+ dir_to_remove="${dir_to_remove}/"
+ fi
+ echo "rmrfdir \"$dir_to_remove\"" >> "$updatemanifestv2"
+ echo "rmrfdir \"$dir_to_remove\"" >> "$updatemanifestv3"
+done
+# END TOR_BROWSER_DATA_OUTSIDE_APP_DIR removal
+
notice ""
notice "Adding file add instructions to update manifests"
num_files=${#files[*]}
@@ -109,6 +126,15 @@ for ((i=0; $i<$num_files; i=$i+1)); do
targetfiles="$targetfiles \"$f\""
done
+notice ""
+notice "Adding symlink add instructions to update manifests"
+num_symlinks=${#symlinks[*]}
+for ((i=0; $i<$num_symlinks; i=$i+1)); do
+ link="${symlinks[$i]}"
+ target="${symlink_targets[$i]}"
+ make_addsymlink_instruction "$link" "$target" "$updatemanifestv2" "$updatemanifestv3"
+done
+
# Append remove instructions for any dead files.
notice ""
notice "Adding file and directory remove instructions from file 'removed-files'"
diff --git a/tools/update-packaging/make_incremental_update.sh b/tools/update-packaging/make_incremental_update.sh
index 7b30cb5165fa..5ff620a667d5 100755
--- a/tools/update-packaging/make_incremental_update.sh
+++ b/tools/update-packaging/make_incremental_update.sh
@@ -78,7 +78,11 @@ if [ $# = 0 ]; then
exit 1
fi
-requested_forced_updates='Contents/MacOS/firefox'
+# Firefox uses requested_forced_updates='Contents/MacOS/firefox' due to
+# 770996 but in Tor Browser we do not need that fix.
+requested_forced_updates=""
+directories_to_remove=""
+extra_files_to_remove=""
while getopts "hqf:" flag
do
@@ -113,6 +117,28 @@ updatemanifestv2="$workdir/updatev2.manifest"
updatemanifestv3="$workdir/updatev3.manifest"
archivefiles="updatev2.manifest updatev3.manifest"
+# TODO When TOR_BROWSER_DATA_OUTSIDE_APP_DIR is used on all platforms,
+# we should remove the following lines:
+# If the NoScript extension has changed between
+# releases, add it to the "force updates" list.
+ext_path='TorBrowser/Data/Browser/profile.default/extensions'
+if [ -d "$newdir/$ext_path" ]; then
+ noscript='{73a6fe31-595d-460b-a920-fcc0f8843232}.xpi'
+
+ # NoScript is a packed extension, so we simply compare the old and the new
+ # .xpi files.
+ noscript_path="$ext_path/$noscript"
+ diff -a "$olddir/$noscript_path" "$newdir/$noscript_path" > /dev/null
+ rc=$?
+ if [ $rc -gt 1 ]; then
+ notice "Unexpected exit $rc from $noscript_path diff command"
+ exit 2
+ elif [ $rc -eq 1 ]; then
+ requested_forced_updates="$requested_forced_updates $noscript_path"
+ fi
+fi
+# END TOR_BROWSER_DATA_OUTSIDE_APP_DIR removal
+
mkdir -p "$workdir"
# Generate a list of all files in the target directory.
@@ -123,6 +149,7 @@ fi
list_files oldfiles
list_dirs olddirs
+list_symlinks oldsymlinks oldsymlink_targets
popd
@@ -140,6 +167,7 @@ fi
list_dirs newdirs
list_files newfiles
+list_symlinks newsymlinks newsymlink_targets
popd
@@ -152,6 +180,23 @@ notice " type partial"
echo "type \"partial\"" >> $updatemanifestv2
echo "type \"partial\"" >> $updatemanifestv3
+# TODO When TOR_BROWSER_DATA_OUTSIDE_APP_DIR is used on all platforms,
+# we should remove the following lines:
+# If removal of any old, existing directories is desired, emit the appropriate
+# rmrfdir commands.
+notice ""
+notice "Adding directory removal instructions to update manifests"
+for dir_to_remove in $directories_to_remove; do
+ # rmrfdir requires a trailing slash, so add one if missing.
+ if ! [[ "$dir_to_remove" =~ /$ ]]; then
+ dir_to_remove="${dir_to_remove}/"
+ fi
+ echo "rmrfdir \"$dir_to_remove\"" >> "$updatemanifestv2"
+ echo "rmrfdir \"$dir_to_remove\"" >> "$updatemanifestv3"
+done
+# END TOR_BROWSER_DATA_OUTSIDE_APP_DIR removal
+
+
notice ""
notice "Adding file patch and add instructions to update manifests"
@@ -274,6 +319,24 @@ for ((i=0; $i<$num_oldfiles; i=$i+1)); do
fi
done
+# Remove and re-add symlinks
+notice ""
+notice "Adding symlink remove/add instructions to update manifests"
+num_oldsymlinks=${#oldsymlinks[*]}
+for ((i=0; $i<$num_oldsymlinks; i=$i+1)); do
+ link="${oldsymlinks[$i]}"
+ verbose_notice " remove: $link"
+ echo "remove \"$link\"" >> "$updatemanifestv2"
+ echo "remove \"$link\"" >> "$updatemanifestv3"
+done
+
+num_newsymlinks=${#newsymlinks[*]}
+for ((i=0; $i<$num_newsymlinks; i=$i+1)); do
+ link="${newsymlinks[$i]}"
+ target="${newsymlink_targets[$i]}"
+ make_addsymlink_instruction "$link" "$target" "$updatemanifestv2" "$updatemanifestv3"
+done
+
# Newly added files
notice ""
notice "Adding file add instructions to update manifests"
@@ -323,6 +386,15 @@ notice ""
notice "Adding file and directory remove instructions from file 'removed-files'"
append_remove_instructions "$newdir" "$updatemanifestv2" "$updatemanifestv3"
+# TODO When TOR_BROWSER_DATA_OUTSIDE_APP_DIR is used on all platforms,
+# we should remove the following lines:
+for f in $extra_files_to_remove; do
+ notice " remove \"$f\""
+ echo "remove \"$f\"" >> "$updatemanifestv2"
+ echo "remove \"$f\"" >> "$updatemanifestv3"
+done
+# END TOR_BROWSER_DATA_OUTSIDE_APP_DIR removal
+
notice ""
notice "Adding directory remove instructions for directories that no longer exist"
num_olddirs=${#olddirs[*]}
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Omnibox: Add DDG, Startpage, Disconnect, Youtube, Twitter; remove Amazon, eBay, bing
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit ce59b465be7528dfbe03e4f92ae6061575170615
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Fri May 5 03:41:57 2017 -0700
Omnibox: Add DDG, Startpage, Disconnect, Youtube, Twitter; remove Amazon, eBay, bing
eBay and Amazon don't treat Tor users very well. Accounts often get locked and
payments reversed.
Also:
Bug 16322: Update DuckDuckGo search engine
We are replacing the clearnet URL with an onion service one (thanks to a
patch by a cypherpunk) and are removing the duplicated DDG search
engine. Duplicating DDG happend due to bug 1061736 where Mozilla
included DDG itself into Firefox. Interestingly, this caused breaking
the DDG search if JavaScript is disabled as the Mozilla engine, which
gets loaded earlier, does not use the html version of the search page.
Moreover, the Mozilla engine tracked where the users were searching from
by adding a respective parameter to the search query. We got rid of that
feature as well.
Also:
This fixes bug 20809: the DuckDuckGo team has changed its server-side
code in a way that lets users with JavaScript enabled use the default
landing page while those without JavaScript available get redirected
directly to the non-JS page. We adapt the search engine URLs
accordingly.
Also fixes bug 29798 by making sure we only specify the Google search
engine we actually ship an .xml file for.
Also regression tests.
---
browser/app/profile/000-tor-browser.js | 9 +-
.../search/extensions/ddg-onion/favicon.ico | Bin 0 -> 973 bytes
.../search/extensions/ddg-onion/manifest.json | 26 ++++
.../components/search/extensions/ddg/favicon.ico | Bin 5430 -> 0 bytes
.../components/search/extensions/ddg/favicon.png | Bin 0 -> 1150 bytes
.../components/search/extensions/ddg/manifest.json | 40 +-----
.../extensions/google/_locales/b-1-d/messages.json | 23 ----
.../extensions/google/_locales/b-1-e/messages.json | 23 ----
.../extensions/google/_locales/b-d/messages.json | 23 ----
.../extensions/google/_locales/b-e/messages.json | 23 ----
.../extensions/google/_locales/en/messages.json | 24 ----
.../search/extensions/google/manifest.json | 17 ++-
browser/components/search/extensions/list.json | 141 ++++++---------------
.../search/extensions/startpage/favicon.png | Bin 0 -> 1150 bytes
.../search/extensions/startpage/manifest.json | 26 ++++
.../search/extensions/twitter/favicon.ico | Bin 0 -> 1650 bytes
.../search/extensions/twitter/manifest.json | 26 ++++
.../extensions/wikipedia/_locales/NN/messages.json | 20 ---
.../extensions/wikipedia/_locales/NO/messages.json | 20 ---
.../extensions/wikipedia/_locales/af/messages.json | 20 ---
.../extensions/wikipedia/_locales/an/messages.json | 20 ---
.../extensions/wikipedia/_locales/ar/messages.json | 20 ---
.../wikipedia/_locales/ast/messages.json | 20 ---
.../extensions/wikipedia/_locales/az/messages.json | 20 ---
.../wikipedia/_locales/be-tarask/messages.json | 20 ---
.../extensions/wikipedia/_locales/be/messages.json | 20 ---
.../extensions/wikipedia/_locales/bg/messages.json | 20 ---
.../extensions/wikipedia/_locales/bn/messages.json | 20 ---
.../extensions/wikipedia/_locales/br/messages.json | 20 ---
.../extensions/wikipedia/_locales/bs/messages.json | 20 ---
.../extensions/wikipedia/_locales/ca/messages.json | 20 ---
.../extensions/wikipedia/_locales/cy/messages.json | 20 ---
.../extensions/wikipedia/_locales/cz/messages.json | 20 ---
.../extensions/wikipedia/_locales/da/messages.json | 20 ---
.../extensions/wikipedia/_locales/de/messages.json | 20 ---
.../wikipedia/_locales/dsb/messages.json | 20 ---
.../extensions/wikipedia/_locales/el/messages.json | 20 ---
.../extensions/wikipedia/_locales/en/messages.json | 20 ---
.../extensions/wikipedia/_locales/eo/messages.json | 20 ---
.../extensions/wikipedia/_locales/es/messages.json | 20 ---
.../extensions/wikipedia/_locales/et/messages.json | 20 ---
.../extensions/wikipedia/_locales/eu/messages.json | 20 ---
.../extensions/wikipedia/_locales/fa/messages.json | 20 ---
.../extensions/wikipedia/_locales/fi/messages.json | 20 ---
.../extensions/wikipedia/_locales/fr/messages.json | 20 ---
.../wikipedia/_locales/fy-NL/messages.json | 20 ---
.../wikipedia/_locales/ga-IE/messages.json | 20 ---
.../extensions/wikipedia/_locales/gd/messages.json | 20 ---
.../extensions/wikipedia/_locales/gl/messages.json | 20 ---
.../extensions/wikipedia/_locales/gn/messages.json | 20 ---
.../extensions/wikipedia/_locales/gu/messages.json | 20 ---
.../extensions/wikipedia/_locales/he/messages.json | 20 ---
.../extensions/wikipedia/_locales/hi/messages.json | 20 ---
.../extensions/wikipedia/_locales/hr/messages.json | 20 ---
.../wikipedia/_locales/hsb/messages.json | 20 ---
.../extensions/wikipedia/_locales/hu/messages.json | 20 ---
.../extensions/wikipedia/_locales/hy/messages.json | 20 ---
.../extensions/wikipedia/_locales/ia/messages.json | 20 ---
.../extensions/wikipedia/_locales/id/messages.json | 20 ---
.../extensions/wikipedia/_locales/is/messages.json | 20 ---
.../extensions/wikipedia/_locales/it/messages.json | 20 ---
.../extensions/wikipedia/_locales/ja/messages.json | 20 ---
.../extensions/wikipedia/_locales/ka/messages.json | 20 ---
.../wikipedia/_locales/kab/messages.json | 20 ---
.../extensions/wikipedia/_locales/kk/messages.json | 20 ---
.../extensions/wikipedia/_locales/km/messages.json | 20 ---
.../extensions/wikipedia/_locales/kn/messages.json | 20 ---
.../extensions/wikipedia/_locales/kr/messages.json | 20 ---
.../wikipedia/_locales/lij/messages.json | 20 ---
.../extensions/wikipedia/_locales/lo/messages.json | 20 ---
.../extensions/wikipedia/_locales/lt/messages.json | 20 ---
.../wikipedia/_locales/ltg/messages.json | 20 ---
.../extensions/wikipedia/_locales/lv/messages.json | 20 ---
.../extensions/wikipedia/_locales/mk/messages.json | 20 ---
.../extensions/wikipedia/_locales/mr/messages.json | 20 ---
.../extensions/wikipedia/_locales/ms/messages.json | 20 ---
.../extensions/wikipedia/_locales/my/messages.json | 20 ---
.../extensions/wikipedia/_locales/ne/messages.json | 20 ---
.../extensions/wikipedia/_locales/nl/messages.json | 20 ---
.../extensions/wikipedia/_locales/oc/messages.json | 20 ---
.../extensions/wikipedia/_locales/pa/messages.json | 20 ---
.../extensions/wikipedia/_locales/pl/messages.json | 20 ---
.../extensions/wikipedia/_locales/pt/messages.json | 20 ---
.../extensions/wikipedia/_locales/rm/messages.json | 20 ---
.../extensions/wikipedia/_locales/ro/messages.json | 20 ---
.../extensions/wikipedia/_locales/ru/messages.json | 20 ---
.../extensions/wikipedia/_locales/si/messages.json | 20 ---
.../extensions/wikipedia/_locales/sk/messages.json | 20 ---
.../extensions/wikipedia/_locales/sl/messages.json | 20 ---
.../extensions/wikipedia/_locales/sq/messages.json | 20 ---
.../extensions/wikipedia/_locales/sr/messages.json | 20 ---
.../wikipedia/_locales/sv-SE/messages.json | 20 ---
.../extensions/wikipedia/_locales/ta/messages.json | 20 ---
.../extensions/wikipedia/_locales/te/messages.json | 20 ---
.../extensions/wikipedia/_locales/th/messages.json | 20 ---
.../extensions/wikipedia/_locales/tl/messages.json | 20 ---
.../extensions/wikipedia/_locales/tr/messages.json | 20 ---
.../extensions/wikipedia/_locales/uk/messages.json | 20 ---
.../extensions/wikipedia/_locales/ur/messages.json | 20 ---
.../extensions/wikipedia/_locales/uz/messages.json | 20 ---
.../extensions/wikipedia/_locales/vi/messages.json | 20 ---
.../extensions/wikipedia/_locales/wo/messages.json | 20 ---
.../wikipedia/_locales/zh-CN/messages.json | 20 ---
.../wikipedia/_locales/zh-TW/messages.json | 20 ---
.../search/extensions/wikipedia/manifest.json | 17 ++-
.../components/search/extensions/yahoo/favicon.ico | Bin 0 -> 5430 bytes
.../search/extensions/yahoo/manifest.json | 28 ++++
.../search/extensions/youtube/favicon.ico | Bin 0 -> 1150 bytes
.../search/extensions/youtube/manifest.json | 26 ++++
tbb-tests/browser_tor_omnibox.js | 14 ++
110 files changed, 209 insertions(+), 2017 deletions(-)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js
index ce2009599cf2..26578bd40093 100644
--- a/browser/app/profile/000-tor-browser.js
+++ b/browser/app/profile/000-tor-browser.js
@@ -295,15 +295,20 @@ pref("browser.uiCustomization.state", "{\"placements\":{\"widget-overflow-fixed-
// Putting the search engine prefs into this file to fix #11236.
// Default search engine
-pref("browser.search.defaultenginename", "Search");
+pref("browser.search.defaultenginename", "data:text/plain,browser.search.defaultenginename=DuckDuckGo");
+// Make sure we use the same search engine regardless of locale
+pref("browser.search.geoSpecificDefaults", false);
// Search engine order (order displayed in the search bar dropdown)
// Somewhat surprisingly we get some random behavior if we specify more than
// two search engines as below. See
// https://bugzilla.mozilla.org/show_bug.cgi?id=1126722 for details.
-pref("browser.search.order.extra.1", "Search");
+pref("browser.search.order.extra.1", "DuckDuckGo");
pref("browser.search.order.extra.2", "YouTube");
+// Use old search config based on list.json
+pref("browser.search.modernConfig", false);
+
// Enforce certificate pinning, see: https://bugs.torproject.org/16206
pref("security.cert_pinning.enforcement_level", 2);
diff --git a/browser/components/search/extensions/ddg-onion/favicon.ico b/browser/components/search/extensions/ddg-onion/favicon.ico
new file mode 100644
index 000000000000..13c325f6585f
Binary files /dev/null and b/browser/components/search/extensions/ddg-onion/favicon.ico differ
diff --git a/browser/components/search/extensions/ddg-onion/manifest.json b/browser/components/search/extensions/ddg-onion/manifest.json
new file mode 100644
index 000000000000..4aa79e4abea0
--- /dev/null
+++ b/browser/components/search/extensions/ddg-onion/manifest.json
@@ -0,0 +1,26 @@
+{
+ "name": "DuckDuckGoOnion",
+ "description": "Duck Duck Go Onion",
+ "manifest_version": 2,
+ "version": "1.0",
+ "applications": {
+ "gecko": {
+ "id": "ddg-onion(a)search.mozilla.org"
+ }
+ },
+ "hidden": true,
+ "icons": {
+ "16": "favicon.ico"
+ },
+ "web_accessible_resources": [
+ "favicon.ico"
+ ],
+ "chrome_settings_overrides": {
+ "search_provider": {
+ "name": "DuckDuckGoOnion",
+ "search_url": "https://3g2upl4pq6kufc4m.onion",
+ "search_form": "https://3g2upl4pq6kufc4m.onion/?q={searchTerms}",
+ "search_url_get_params": "q={searchTerms}"
+ }
+ }
+}
\ No newline at end of file
diff --git a/browser/components/search/extensions/ddg/favicon.ico b/browser/components/search/extensions/ddg/favicon.ico
deleted file mode 100644
index dda80dfd88d5..000000000000
Binary files a/browser/components/search/extensions/ddg/favicon.ico and /dev/null differ
diff --git a/browser/components/search/extensions/ddg/favicon.png b/browser/components/search/extensions/ddg/favicon.png
new file mode 100644
index 000000000000..c853b95b89ef
Binary files /dev/null and b/browser/components/search/extensions/ddg/favicon.png differ
diff --git a/browser/components/search/extensions/ddg/manifest.json b/browser/components/search/extensions/ddg/manifest.json
index b15330b16bf5..510542faa4eb 100644
--- a/browser/components/search/extensions/ddg/manifest.json
+++ b/browser/components/search/extensions/ddg/manifest.json
@@ -10,51 +10,19 @@
},
"hidden": true,
"icons": {
- "16": "favicon.ico"
+ "16": "favicon.png"
},
"web_accessible_resources": [
- "favicon.ico"
+ "favicon.png"
],
"chrome_settings_overrides": {
"search_provider": {
"name": "DuckDuckGo",
- "search_url": "https://duckduckgo.com/",
+ "search_url": "https://duckduckgo.com",
"search_form": "https://duckduckgo.com/?q={searchTerms}",
"search_url_get_params": "q={searchTerms}",
- "params": [
- {
- "name": "t",
- "condition": "purpose",
- "purpose": "contextmenu",
- "value": "ffcm"
- },
- {
- "name": "t",
- "condition": "purpose",
- "purpose": "keyword",
- "value": "ffab"
- },
- {
- "name": "t",
- "condition": "purpose",
- "purpose": "searchbar",
- "value": "ffsb"
- },
- {
- "name": "t",
- "condition": "purpose",
- "purpose": "homepage",
- "value": "ffhp"
- },
- {
- "name": "t",
- "condition": "purpose",
- "purpose": "newtab",
- "value": "ffnt"
- }
- ],
"suggest_url": "https://ac.duckduckgo.com/ac/",
"suggest_url_get_params": "q={searchTerms}&type=list"
}
}
-}
\ No newline at end of file
+}
diff --git a/browser/components/search/extensions/google/_locales/b-1-d/messages.json b/browser/components/search/extensions/google/_locales/b-1-d/messages.json
deleted file mode 100644
index 1b9d05307d64..000000000000
--- a/browser/components/search/extensions/google/_locales/b-1-d/messages.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "extensionName": {
- "message": "Google"
- },
- "extensionDescription": {
- "message": "Google Search"
- },
- "searchUrl": {
- "message": "https://www.google.com/search"
- },
- "searchForm": {
- "message": "https://www.google.com/search?client=firefox-b-1-d&q={searchTerms}"
- },
- "suggestUrl": {
- "message": "https://www.google.com/complete/search?client=firefox&q={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "client=firefox-b-1-d&q={searchTerms}"
- },
- "channelPref": {
- "message": "google_channel_us"
- }
-}
diff --git a/browser/components/search/extensions/google/_locales/b-1-e/messages.json b/browser/components/search/extensions/google/_locales/b-1-e/messages.json
deleted file mode 100644
index b470cd844331..000000000000
--- a/browser/components/search/extensions/google/_locales/b-1-e/messages.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "extensionName": {
- "message": "Google"
- },
- "extensionDescription": {
- "message": "Google Search"
- },
- "searchUrl": {
- "message": "https://www.google.com/search"
- },
- "searchForm": {
- "message": "https://www.google.com/search?client=firefox-b-1-e&q={searchTerms}"
- },
- "suggestUrl": {
- "message": "https://www.google.com/complete/search?client=firefox&q={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "client=firefox-b-1-e&q={searchTerms}"
- },
- "channelPref": {
- "message": "google_channel_us"
- }
-}
diff --git a/browser/components/search/extensions/google/_locales/b-d/messages.json b/browser/components/search/extensions/google/_locales/b-d/messages.json
deleted file mode 100644
index a6423089d9f9..000000000000
--- a/browser/components/search/extensions/google/_locales/b-d/messages.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "extensionName": {
- "message": "Google"
- },
- "extensionDescription": {
- "message": "Google Search"
- },
- "searchUrl": {
- "message": "https://www.google.com/search"
- },
- "searchForm": {
- "message": "https://www.google.com/search?client=firefox-b-d&q={searchTerms}"
- },
- "suggestUrl": {
- "message": "https://www.google.com/complete/search?client=firefox&q={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "client=firefox-b-d&q={searchTerms}"
- },
- "channelPref": {
- "message": "google_channel_row"
- }
-}
diff --git a/browser/components/search/extensions/google/_locales/b-e/messages.json b/browser/components/search/extensions/google/_locales/b-e/messages.json
deleted file mode 100644
index 70939ee00074..000000000000
--- a/browser/components/search/extensions/google/_locales/b-e/messages.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "extensionName": {
- "message": "Google"
- },
- "extensionDescription": {
- "message": "Google Search"
- },
- "searchUrl": {
- "message": "https://www.google.com/search"
- },
- "searchForm": {
- "message": "https://www.google.com/search?client=firefox-b-e&q={searchTerms}"
- },
- "suggestUrl": {
- "message": "https://www.google.com/complete/search?client=firefox&q={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "client=firefox-b-e&q={searchTerms}"
- },
- "channelPref": {
- "message": "google_channel_row"
- }
-}
diff --git a/browser/components/search/extensions/google/_locales/en/messages.json b/browser/components/search/extensions/google/_locales/en/messages.json
deleted file mode 100644
index aeca0ef128b3..000000000000
--- a/browser/components/search/extensions/google/_locales/en/messages.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "extensionName": {
- "message": "Google"
- },
- "extensionDescription": {
- "message": "Google Search"
- },
- "searchUrl": {
- "message": "https://www.google.com/search"
- },
- "searchForm": {
- "message": "https://www.google.com/search?client=firefox-b-d&q={searchTerms}"
- },
- "suggestUrl": {
- "message": "https://www.google.com/complete/search?client=firefox&q={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "client=firefox-b-d&q={searchTerms}"
- },
- "channelPref": {
- "message": "google_channel_row"
- }
-
-}
diff --git a/browser/components/search/extensions/google/manifest.json b/browser/components/search/extensions/google/manifest.json
index d51213b52d22..b62de30cb7fa 100644
--- a/browser/components/search/extensions/google/manifest.json
+++ b/browser/components/search/extensions/google/manifest.json
@@ -1,6 +1,6 @@
{
- "name": "__MSG_extensionName__",
- "description": "__MSG_extensionDescription__",
+ "name": "Google",
+ "description": "Google Search",
"manifest_version": 2,
"version": "1.0",
"applications": {
@@ -9,7 +9,6 @@
}
},
"hidden": true,
- "default_locale": "en",
"icons": {
"16": "favicon.ico"
},
@@ -18,18 +17,18 @@
],
"chrome_settings_overrides": {
"search_provider": {
- "name": "__MSG_extensionName__",
- "search_url": "__MSG_searchUrl__",
- "search_form": "__MSG_searchForm__",
- "suggest_url": "__MSG_suggestUrl__",
+ "name": "Google",
+ "search_url": "https://www.google.com/search",
+ "search_form": "https://www.google.com/search?client=firefox-b-d&q={searchTerms}",
+ "suggest_url": "https://www.google.com/complete/search?client=firefox&q={searchTerms}",
"params": [
{
"name": "channel",
"condition": "pref",
- "pref": "__MSG_channelPref__"
+ "pref": "google_channel_row"
}
],
- "search_url_get_params": "__MSG_searchUrlGetParams__"
+ "search_url_get_params": "client=firefox-b-d&q={searchTerms}"
}
}
}
diff --git a/browser/components/search/extensions/list.json b/browser/components/search/extensions/list.json
index 52b2da3ada2d..04f198072b3d 100644
--- a/browser/components/search/extensions/list.json
+++ b/browser/components/search/extensions/list.json
@@ -1,86 +1,20 @@
{
"default": {
- "searchDefault": "Google",
- "searchOrder": ["Google", "Bing"],
+ "searchDefault": "DuckDuckGo",
+ "searchOrder": ["DuckDuckGo", "YouTube", "Google"],
"visibleDefaultEngines": [
- "google-b-d", "amazondotcom", "bing", "ddg", "ebay", "wikipedia"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
},
"regionOverrides": {
- "US": {
- "google-b-d": "google-b-1-d"
- },
- "CA": {
- "ebay": "ebay-ca",
- "ebay-fr": "ebay-ca",
- "amazondotcom": "amazon-ca",
- "amazon-france": "amazon-ca"
- },
- "AT": {
- "ebay-de": "ebay-at"
- },
- "AU": {
- "ebay": "ebay-au",
- "ebay-uk": "ebay-au",
- "amazondotcom": "amazon-au",
- "amazon-en-GB": "amazon-au"
- },
- "BE": {
- "ebay": "ebay-be",
- "ebay-nl": "ebay-be",
- "ebay-fr": "ebay-be"
- },
- "CH": {
- "ebay": "ebay-ch",
- "ebay-de": "ebay-ch",
- "ebay-fr": "ebay-ch"
- },
- "FR": {
- "amazondotcom": "amazon-france"
- },
- "IE": {
- "ebay": "ebay-ie",
- "ebay-uk": "ebay-ie"
- },
- "NL": {
- "ebay": "ebay-nl"
- },
- "GB": {
- "ebay": "ebay-uk",
- "amazondotcom": "amazon-en-GB"
- }
},
"locales": {
"en-US": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "amazondotcom", "bing", "ddg", "ebay", "wikipedia"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
},
- "KZ": {
- "visibleDefaultEngines": [
- "amazondotcom", "bing", "google-b-d", "wikipedia", "ddg", "yandex-en"
- ],
- "searchDefault": "Yandex"
- },
- "BY": {
- "visibleDefaultEngines": [
- "amazondotcom", "bing", "google-b-d", "wikipedia", "ddg", "yandex-en"
- ],
- "searchDefault": "Yandex"
- },
- "RU": {
- "visibleDefaultEngines": [
- "amazondotcom", "bing", "google-b-d", "wikipedia", "ddg", "yandex-en"
- ],
- "searchDefault": "Yandex"
- },
- "TR": {
- "visibleDefaultEngines": [
- "amazondotcom", "bing", "google-b-d", "wikipedia", "ddg", "yandex-en"
- ],
- "searchDefault": "Yandex"
- },
"experimental-hidden": {
"visibleDefaultEngines": [
"amazon-ca", "amazon-au", "yandex-en", "google", "google-b-1-e", "google-b-e"
@@ -111,7 +45,7 @@
"ar": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "bing", "amazondotcom", "ddg", "wikipedia-ar"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -207,7 +141,7 @@
"ca": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "bing", "diec2", "ddg", "ebay-es", "wikipedia-ca"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -234,9 +168,8 @@
},
"cs": {
"default": {
- "searchOrder": ["Google", "Seznam"],
"visibleDefaultEngines": [
- "google-b-d", "seznam-cz", "ddg", "heureka-cz", "mapy-cz", "wikipedia-cz"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -250,14 +183,14 @@
"da": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "bing", "amazon-en-GB", "ddg", "wikipedia-da"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
"de": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "amazon-de", "bing", "ddg", "ebay-de", "ecosia", "leo_ende_de", "wikipedia-de"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -271,7 +204,7 @@
"el": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "amazon-en-GB", "bing", "ddg", "wikipedia-el"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -357,7 +290,7 @@
"es-AR": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "amazondotcom", "drae", "ddg", "mercadolibre-ar", "wikipedia-es"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -371,7 +304,7 @@
"es-ES": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "bing", "drae", "ddg", "ebay-es", "wikipedia-es"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -404,7 +337,7 @@
"fa": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "amazondotcom", "bing", "ddg", "wikipedia-fa"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -425,7 +358,7 @@
"fr": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "bing", "amazon-france", "ddg", "ebay-fr", "qwant", "wikipedia-fr"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -444,7 +377,7 @@
"ga-IE": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "amazon-en-GB", "ddg", "ebay-ie", "tearma", "wikipedia-ga-IE"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -479,7 +412,7 @@
"he": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "ddg", "wikipedia-he", "morfix-dic"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -507,7 +440,7 @@
"hu": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "ddg", "vatera", "wikipedia-hu"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -535,44 +468,42 @@
"id": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "ddg", "wikipedia-id"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
"is": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "bing", "amazondotcom", "ddg", "wikipedia-is"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
"it": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "bing", "amazon-it", "ddg", "ebay-it", "wikipedia-it"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
"ja-JP-macos": {
"default": {
- "searchOrder": ["Google", "Yahoo! JAPAN", "Bing", "Amazon.co.jp", "楽天市場", "ヤフオク!", "教えて!goo", "Wikipedia (ja)"],
"visibleDefaultEngines": [
- "google-b-d", "yahoo-jp", "bing", "amazon-jp", "rakuten", "yahoo-jp-auctions", "oshiete-goo", "wikipedia-ja", "ddg"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
"ja": {
"default": {
- "searchOrder": ["Google", "Yahoo! JAPAN", "Bing", "Amazon.co.jp", "楽天市場", "ヤフオク!", "教えて!goo", "Wikipedia (ja)"],
"visibleDefaultEngines": [
- "google-b-d", "yahoo-jp", "bing", "amazon-jp", "rakuten", "yahoo-jp-auctions", "oshiete-goo", "wikipedia-ja", "ddg"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
"ka": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "bing", "amazondotcom", "ddg", "wikipedia-ka"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -619,7 +550,7 @@
"ko": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "ddg", "naver-kr", "daum-kr", "wikipedia-kr"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -668,7 +599,7 @@
"mk": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "bing", "amazondotcom", "ddg", "wikipedia-mk"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -696,7 +627,7 @@
"nb-NO": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "amazon-en-GB", "bing", "ddg", "gulesider-NO", "bok-NO", "qxl-NO", "wikipedia-NO"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -710,7 +641,7 @@
"nl": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "bing", "bolcom-nl", "ddg", "ebay-nl", "marktplaats-nl", "wikipedia-nl"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
},
"experimental-hidden": {
@@ -743,14 +674,14 @@
"pl": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "allegro-pl", "ddg", "pwn-pl", "wikipedia-pl", "wolnelektury-pl"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
"pt-BR": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "bing", "ddg", "mercadolivre", "wikipedia-pt"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -771,14 +702,14 @@
"ro": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "bing", "amazondotcom", "ddg", "wikipedia-ro"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
"ru": {
"default": {
"visibleDefaultEngines": [
- "yandex-ru", "google-b-d", "ddg", "ozonru", "priceru", "wikipedia-ru", "mailru"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
},
"RU": {
@@ -846,7 +777,7 @@
"sv-SE": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "bing", "allaannonser-sv-SE", "ddg", "prisjakt-sv-SE", "tyda-sv-SE", "wikipedia-sv-SE"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -881,7 +812,7 @@
"tr": {
"default": {
"visibleDefaultEngines": [
- "yandex-tr", "google-b-d", "ddg", "wikipedia-tr"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
},
"TR": {
@@ -928,7 +859,7 @@
"vi": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "coccoc", "ddg", "wikipedia-vi"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
},
@@ -949,7 +880,7 @@
"zh-CN": {
"default": {
"visibleDefaultEngines": [
- "baidu", "google-b-d", "bing", "ddg", "wikipedia-zh-CN", "amazondotcn"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
},
"CN": {
@@ -959,7 +890,7 @@
"zh-TW": {
"default": {
"visibleDefaultEngines": [
- "google-b-d", "ddg", "readmoo", "wikipedia-zh-TW"
+ "ddg", "ddg-onion", "google", "yahoo", "twitter", "wikipedia", "youtube", "startpage"
]
}
}
diff --git a/browser/components/search/extensions/startpage/favicon.png b/browser/components/search/extensions/startpage/favicon.png
new file mode 100644
index 000000000000..44b94a986fd2
Binary files /dev/null and b/browser/components/search/extensions/startpage/favicon.png differ
diff --git a/browser/components/search/extensions/startpage/manifest.json b/browser/components/search/extensions/startpage/manifest.json
new file mode 100644
index 000000000000..c9bd9e1848d0
--- /dev/null
+++ b/browser/components/search/extensions/startpage/manifest.json
@@ -0,0 +1,26 @@
+{
+ "name": "Startpage",
+ "description": "Start Page",
+ "manifest_version": 2,
+ "version": "1.0",
+ "applications": {
+ "gecko": {
+ "id": "startpage(a)search.mozilla.org"
+ }
+ },
+ "hidden": true,
+ "icons": {
+ "16": "favicon.png"
+ },
+ "web_accessible_resources": [
+ "favicon.png"
+ ],
+ "chrome_settings_overrides": {
+ "search_provider": {
+ "name": "Startpage",
+ "search_url": "https://startpage.com/rto/search",
+ "search_form": "https://startpage.com/rto/search/",
+ "search_url_post_params": "q={searchTerms}"
+ }
+ }
+}
\ No newline at end of file
diff --git a/browser/components/search/extensions/twitter/favicon.ico b/browser/components/search/extensions/twitter/favicon.ico
new file mode 100644
index 000000000000..e5aaff437912
Binary files /dev/null and b/browser/components/search/extensions/twitter/favicon.ico differ
diff --git a/browser/components/search/extensions/twitter/manifest.json b/browser/components/search/extensions/twitter/manifest.json
new file mode 100644
index 000000000000..59714e0e1045
--- /dev/null
+++ b/browser/components/search/extensions/twitter/manifest.json
@@ -0,0 +1,26 @@
+{
+ "name": "Twitter",
+ "description": "Realtime Twitter Search",
+ "manifest_version": 2,
+ "version": "1.0",
+ "applications": {
+ "gecko": {
+ "id": "twitter(a)search.mozilla.org"
+ }
+ },
+ "hidden": true,
+ "icons": {
+ "16": "favicon.ico"
+ },
+ "web_accessible_resources": [
+ "favicon.ico"
+ ],
+ "chrome_settings_overrides": {
+ "search_provider": {
+ "name": "Twitter",
+ "search_url": "https://twitter.com/search",
+ "search_form": "https://twitter.com/search?q={searchTerms}&partner=Firefox&source=desktop-s…",
+ "search_url_get_params": "q={searchTerms}&partner=Firefox&source=desktop-search"
+ }
+ }
+}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/NN/messages.json b/browser/components/search/extensions/wikipedia/_locales/NN/messages.json
deleted file mode 100644
index e4ee66bc780d..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/NN/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (nn)"
- },
- "extensionDescription": {
- "message": "Wikipedia, det frie oppslagsverket"
- },
- "searchUrl": {
- "message": "https://nn.wikipedia.org/wiki/Spesial:Søk"
- },
- "searchForm": {
- "message": "https://nn.wikipedia.org/wiki/Spesial:Søk?search={searchTerms}&sourceid=Moz…"
- },
- "suggestUrl": {
- "message": "https://nn.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/NO/messages.json b/browser/components/search/extensions/wikipedia/_locales/NO/messages.json
deleted file mode 100644
index ec016ac7337e..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/NO/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (no)"
- },
- "extensionDescription": {
- "message": "Wikipedia, den frie encyklopedi"
- },
- "searchUrl": {
- "message": "https://no.wikipedia.org/wiki/Spesial:Søk"
- },
- "searchForm": {
- "message": "https://no.wikipedia.org/wiki/Spesial:Søk?search={searchTerms}&sourceid=Moz…"
- },
- "suggestUrl": {
- "message": "https://no.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/af/messages.json b/browser/components/search/extensions/wikipedia/_locales/af/messages.json
deleted file mode 100644
index 8cf9de8ac9b3..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/af/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (af)"
- },
- "extensionDescription": {
- "message": "Wikipedia, die vrye ensiklopedie"
- },
- "searchUrl": {
- "message": "https://af.wikipedia.org/wiki/Spesiaal:Soek"
- },
- "searchForm": {
- "message": "https://af.wikipedia.org/wiki/Spesiaal:Soek?search={searchTerms}&sourceid=M…"
- },
- "suggestUrl": {
- "message": "https://af.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/an/messages.json b/browser/components/search/extensions/wikipedia/_locales/an/messages.json
deleted file mode 100644
index e8cce665c96e..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/an/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Biquipedia (an)"
- },
- "extensionDescription": {
- "message": "A enciclopedia Libre"
- },
- "searchUrl": {
- "message": "https://an.wikipedia.org/wiki/Especial:Mirar"
- },
- "searchForm": {
- "message": "https://an.wikipedia.org/wiki/Especial:Mirar?search={searchTerms}&sourceid=…"
- },
- "suggestUrl": {
- "message": "https://an.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/ar/messages.json b/browser/components/search/extensions/wikipedia/_locales/ar/messages.json
deleted file mode 100644
index de90b2a2055e..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/ar/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "ويكيبيديا (ar)"
- },
- "extensionDescription": {
- "message": "ويكيبيديا (ar)"
- },
- "searchUrl": {
- "message": "https://ar.wikipedia.org/wiki/خاص:بحث"
- },
- "searchForm": {
- "message": "https://ar.wikipedia.org/wiki/خاص:بحث?search={searchTerms}&sourceid=Mozilla…"
- },
- "suggestUrl": {
- "message": "https://ar.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/ast/messages.json b/browser/components/search/extensions/wikipedia/_locales/ast/messages.json
deleted file mode 100644
index a127ba07f29b..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/ast/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (ast)"
- },
- "extensionDescription": {
- "message": "La enciclopedia llibre"
- },
- "searchUrl": {
- "message": "https://ast.wikipedia.org/wiki/Especial:Gueta"
- },
- "searchForm": {
- "message": "https://ast.wikipedia.org/wiki/Especial:Gueta?search={searchTerms}&sourceid…"
- },
- "suggestUrl": {
- "message": "https://ast.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/az/messages.json b/browser/components/search/extensions/wikipedia/_locales/az/messages.json
deleted file mode 100644
index f551a717e6d3..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/az/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Vikipediya (az)"
- },
- "extensionDescription": {
- "message": "Vikipediya, açıq ensiklopediya"
- },
- "searchUrl": {
- "message": "https://az.wikipedia.org/wiki/Xüsusi:Axtar"
- },
- "searchForm": {
- "message": "https://az.wikipedia.org/wiki/Xüsusi:Axtar?search={searchTerms}&sourceid=Mo…"
- },
- "suggestUrl": {
- "message": "https://az.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/be-tarask/messages.json b/browser/components/search/extensions/wikipedia/_locales/be-tarask/messages.json
deleted file mode 100644
index aecfecf2fb19..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/be-tarask/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Вікіпэдыя (be-tarask)"
- },
- "extensionDescription": {
- "message": "Вікіпэдыя, вольная энцыкляпэдыя"
- },
- "searchUrl": {
- "message": "https://be-tarask.wikipedia.org/wiki/Спэцыяльныя:Пошук"
- },
- "searchForm": {
- "message": "https://be-tarask.wikipedia.org/wiki/Спэцыяльныя:Пошук?search={searchTerms}…"
- },
- "suggestUrl": {
- "message": "https://be-tarask.wikipedia.org/w/api.php?action=opensearch&search={searchT…"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/be/messages.json b/browser/components/search/extensions/wikipedia/_locales/be/messages.json
deleted file mode 100644
index 6aa763451e67..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/be/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Вікіпедыя (be)"
- },
- "extensionDescription": {
- "message": "Вікіпедыя, свабодная энцыклапедыя"
- },
- "searchUrl": {
- "message": "https://be.wikipedia.org/wiki/Адмысловае:Search"
- },
- "searchForm": {
- "message": "https://be.wikipedia.org/wiki/Адмысловае:Search?search={searchTerms}&source…"
- },
- "suggestUrl": {
- "message": "https://be.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/bg/messages.json b/browser/components/search/extensions/wikipedia/_locales/bg/messages.json
deleted file mode 100644
index 896a85d66b87..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/bg/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Уикипедия (bg)"
- },
- "extensionDescription": {
- "message": "Уикипедия, свободната енциклоподия"
- },
- "searchUrl": {
- "message": "https://bg.wikipedia.org/wiki/Специални:Търсене"
- },
- "searchForm": {
- "message": "https://bg.wikipedia.org/wiki/Специални:Търсене?search={searchTerms}&source…"
- },
- "suggestUrl": {
- "message": "https://bg.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/bn/messages.json b/browser/components/search/extensions/wikipedia/_locales/bn/messages.json
deleted file mode 100644
index fe9887ed1938..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/bn/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "উইকিপিডিয়া (bn)"
- },
- "extensionDescription": {
- "message": "উইকিপিডিয়া, মুক্ত বিশ্বকোষ"
- },
- "searchUrl": {
- "message": "https://bn.wikipedia.org/wiki/বিশেষ:Search"
- },
- "searchForm": {
- "message": "https://bn.wikipedia.org/wiki/বিশেষ:Search?search={searchTerms}&sourceid=Mo…"
- },
- "suggestUrl": {
- "message": "https://bn.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/br/messages.json b/browser/components/search/extensions/wikipedia/_locales/br/messages.json
deleted file mode 100644
index 33869ce8e752..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/br/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (br)"
- },
- "extensionDescription": {
- "message": "Wikipedia, an holloueziadur digor"
- },
- "searchUrl": {
- "message": "https://br.wikipedia.org/wiki/Dibar:Klask"
- },
- "searchForm": {
- "message": "https://br.wikipedia.org/wiki/Dibar:Klask?search={searchTerms}&sourceid=Moz…"
- },
- "suggestUrl": {
- "message": "https://br.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/bs/messages.json b/browser/components/search/extensions/wikipedia/_locales/bs/messages.json
deleted file mode 100644
index 746150e3d8e8..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/bs/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (bs)"
- },
- "extensionDescription": {
- "message": "Slobodna enciklopedija"
- },
- "searchUrl": {
- "message": "https://bs.wikipedia.org/wiki/Posebno:Pretraga"
- },
- "searchForm": {
- "message": "https://bs.wikipedia.org/wiki/Posebno:Pretraga?search={searchTerms}&sourcei…"
- },
- "suggestUrl": {
- "message": "https://bs.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/ca/messages.json b/browser/components/search/extensions/wikipedia/_locales/ca/messages.json
deleted file mode 100644
index 151ec1a71ba5..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/ca/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Viquipèdia (ca)"
- },
- "extensionDescription": {
- "message": "L'enciclopèdia lliure"
- },
- "searchUrl": {
- "message": "https://ca.wikipedia.org/wiki/Especial:Cerca"
- },
- "searchForm": {
- "message": "https://ca.wikipedia.org/wiki/Especial:Cerca?search={searchTerms}&sourceid=…"
- },
- "suggestUrl": {
- "message": "https://ca.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/cy/messages.json b/browser/components/search/extensions/wikipedia/_locales/cy/messages.json
deleted file mode 100644
index cfed7c73be34..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/cy/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wicipedia (cy)"
- },
- "extensionDescription": {
- "message": "Wicipedia, Y Gwyddioniadur Rhydd"
- },
- "searchUrl": {
- "message": "https://cy.wikipedia.org/wiki/Arbennig:Search"
- },
- "searchForm": {
- "message": "https://cy.wikipedia.org/wiki/Arbennig:Search?search={searchTerms}&sourceid…"
- },
- "suggestUrl": {
- "message": "https://cy.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/cz/messages.json b/browser/components/search/extensions/wikipedia/_locales/cz/messages.json
deleted file mode 100644
index 12f7eb22d711..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/cz/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedie (cs)"
- },
- "extensionDescription": {
- "message": "Wikipedia, svobodná encyclopedie"
- },
- "searchUrl": {
- "message": "https://cs.wikipedia.org/wiki/Speciální:Hledání"
- },
- "searchForm": {
- "message": "https://cs.wikipedia.org/wiki/Speciální:Hledání?search={searchTerms}&source…"
- },
- "suggestUrl": {
- "message": "https://cs.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/da/messages.json b/browser/components/search/extensions/wikipedia/_locales/da/messages.json
deleted file mode 100644
index 801d5a5183cc..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/da/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (da)"
- },
- "extensionDescription": {
- "message": "Wikipedia, den frie encyklopædi"
- },
- "searchUrl": {
- "message": "https://da.wikipedia.org/wiki/Speciel:Søgning"
- },
- "searchForm": {
- "message": "https://da.wikipedia.org/wiki/Speciel:Søgning?search={searchTerms}&sourceid…"
- },
- "suggestUrl": {
- "message": "https://da.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/de/messages.json b/browser/components/search/extensions/wikipedia/_locales/de/messages.json
deleted file mode 100644
index 0e6bbe8905ca..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/de/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (de)"
- },
- "extensionDescription": {
- "message": "Wikipedia, die freie Enzyklopädie"
- },
- "searchUrl": {
- "message": "https://de.wikipedia.org/wiki/Spezial:Suche"
- },
- "searchForm": {
- "message": "https://de.wikipedia.org/wiki/Spezial:Suche?search={searchTerms}&sourceid=M…"
- },
- "suggestUrl": {
- "message": "https://de.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/dsb/messages.json b/browser/components/search/extensions/wikipedia/_locales/dsb/messages.json
deleted file mode 100644
index ffca44b5f7fb..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/dsb/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedija (dsb)"
- },
- "extensionDescription": {
- "message": "Wikipedija, lichotna encyklopedija"
- },
- "searchUrl": {
- "message": "https://dsb.wikipedia.org/wiki/Specialne:Pytaś"
- },
- "searchForm": {
- "message": "https://dsb.wikipedia.org/wiki/Specialne:Pytaś?search={searchTerms}&sourcei…"
- },
- "suggestUrl": {
- "message": "https://dsb.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/el/messages.json b/browser/components/search/extensions/wikipedia/_locales/el/messages.json
deleted file mode 100644
index 95b48f3d9ca7..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/el/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (el)"
- },
- "extensionDescription": {
- "message": "Βικιπαίδεια, η ελεύθερη εγκυκλοπαίδεια"
- },
- "searchUrl": {
- "message": "https://el.wikipedia.org/wiki/Ειδικό:Αναζήτηση"
- },
- "searchForm": {
- "message": "https://el.wikipedia.org/wiki/Ειδικό:Αναζήτηση?search={searchTerms}&sourcei…"
- },
- "suggestUrl": {
- "message": "https://el.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/en/messages.json b/browser/components/search/extensions/wikipedia/_locales/en/messages.json
deleted file mode 100644
index 0de3c9a8071a..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/en/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (en)"
- },
- "extensionDescription": {
- "message": "Wikipedia, the Free Encyclopedia"
- },
- "searchUrl": {
- "message": "https://en.wikipedia.org/wiki/Special:Search"
- },
- "searchForm": {
- "message": "https://en.wikipedia.org/wiki/Special:Search?search={searchTerms}&sourceid=…"
- },
- "suggestUrl": {
- "message": "https://en.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/eo/messages.json b/browser/components/search/extensions/wikipedia/_locales/eo/messages.json
deleted file mode 100644
index 10aa88dd11ba..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/eo/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Vikipedio (eo)"
- },
- "extensionDescription": {
- "message": "Vikipedio, la libera enciklopedio"
- },
- "searchUrl": {
- "message": "https://eo.wikipedia.org/wiki/Specialaĵo:Serĉi"
- },
- "searchForm": {
- "message": "https://eo.wikipedia.org/wiki/Specialaĵo:Serĉi?search={searchTerms}&sourcei…"
- },
- "suggestUrl": {
- "message": "https://eo.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/es/messages.json b/browser/components/search/extensions/wikipedia/_locales/es/messages.json
deleted file mode 100644
index 09ec1f757657..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/es/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (es)"
- },
- "extensionDescription": {
- "message": "Wikipedia, la enciclopedia libre"
- },
- "searchUrl": {
- "message": "https://es.wikipedia.org/wiki/Especial:Buscar"
- },
- "searchForm": {
- "message": "https://es.wikipedia.org/wiki/Especial:Buscar?search={searchTerms}&sourceid…"
- },
- "suggestUrl": {
- "message": "https://es.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/et/messages.json b/browser/components/search/extensions/wikipedia/_locales/et/messages.json
deleted file mode 100644
index 91363fbb392b..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/et/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Vikipeedia (et)"
- },
- "extensionDescription": {
- "message": "Vikipeedia, vaba entsüklopeedia"
- },
- "searchUrl": {
- "message": "https://et.wikipedia.org/wiki/Eri:Otsimine"
- },
- "searchForm": {
- "message": "https://et.wikipedia.org/wiki/Eri:Otsimine?search={searchTerms}&sourceid=Mo…"
- },
- "suggestUrl": {
- "message": "https://et.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/eu/messages.json b/browser/components/search/extensions/wikipedia/_locales/eu/messages.json
deleted file mode 100644
index 1bd7027dec54..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/eu/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (eu)"
- },
- "extensionDescription": {
- "message": "Wikipedia, entziklopedia askea"
- },
- "searchUrl": {
- "message": "https://eu.wikipedia.org/wiki/Berezi:Bilatu"
- },
- "searchForm": {
- "message": "https://eu.wikipedia.org/wiki/Berezi:Bilatu?search={searchTerms}&sourceid=M…"
- },
- "suggestUrl": {
- "message": "https://eu.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/fa/messages.json b/browser/components/search/extensions/wikipedia/_locales/fa/messages.json
deleted file mode 100644
index 9fdc964a1e0b..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/fa/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "ویکیپدیا (fa)"
- },
- "extensionDescription": {
- "message": "ویکیپدیا، دانشنامهٔ آزاد"
- },
- "searchUrl": {
- "message": "https://fa.wikipedia.org/wiki/ویژه:جستجو"
- },
- "searchForm": {
- "message": "https://fa.wikipedia.org/wiki/ویژه:جستجو?search={searchTerms}&sourceid=Mozi…"
- },
- "suggestUrl": {
- "message": "https://fa.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/fi/messages.json b/browser/components/search/extensions/wikipedia/_locales/fi/messages.json
deleted file mode 100644
index 17a9cbe22c42..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/fi/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (fi)"
- },
- "extensionDescription": {
- "message": "Wikipedia (fi), vapaa tietosanakirja"
- },
- "searchUrl": {
- "message": "https://fi.wikipedia.org/wiki/Toiminnot:Haku"
- },
- "searchForm": {
- "message": "https://fi.wikipedia.org/wiki/Toiminnot:Haku?search={searchTerms}&sourceid=…"
- },
- "suggestUrl": {
- "message": "https://fi.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/fr/messages.json b/browser/components/search/extensions/wikipedia/_locales/fr/messages.json
deleted file mode 100644
index 33dcbe9dc502..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/fr/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipédia (fr)"
- },
- "extensionDescription": {
- "message": "Wikipédia, l'encyclopédie libre"
- },
- "searchUrl": {
- "message": "https://fr.wikipedia.org/wiki/Spécial:Recherche"
- },
- "searchForm": {
- "message": "https://fr.wikipedia.org/wiki/Spécial:Recherche?search={searchTerms}&source…"
- },
- "suggestUrl": {
- "message": "https://fr.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/fy-NL/messages.json b/browser/components/search/extensions/wikipedia/_locales/fy-NL/messages.json
deleted file mode 100644
index f350162fbbaf..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/fy-NL/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedy (fy)"
- },
- "extensionDescription": {
- "message": "De fergese ensyklopedy"
- },
- "searchUrl": {
- "message": "https://fy.wikipedia.org/wiki/Wiki:Sykje"
- },
- "searchForm": {
- "message": "https://fy.wikipedia.org/wiki/Wiki:Sykje?search={searchTerms}&sourceid=Mozi…"
- },
- "suggestUrl": {
- "message": "https://fy.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/ga-IE/messages.json b/browser/components/search/extensions/wikipedia/_locales/ga-IE/messages.json
deleted file mode 100644
index 994ea723c6da..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/ga-IE/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Vicipéid (ga)"
- },
- "extensionDescription": {
- "message": "Vicipéid, an Chiclipéid Shaor"
- },
- "searchUrl": {
- "message": "https://ga.wikipedia.org/wiki/Speisialta:Search"
- },
- "searchForm": {
- "message": "https://ga.wikipedia.org/wiki/Speisialta:Search?search={searchTerms}&source…"
- },
- "suggestUrl": {
- "message": "https://ga.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/gd/messages.json b/browser/components/search/extensions/wikipedia/_locales/gd/messages.json
deleted file mode 100644
index f16f16fb4a02..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/gd/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Uicipeid (gd)"
- },
- "extensionDescription": {
- "message": "Wikipedia, An leabhar mòr-eòlais"
- },
- "searchUrl": {
- "message": "https://gd.wikipedia.org/wiki/Sònraichte:Search"
- },
- "searchForm": {
- "message": "https://gd.wikipedia.org/wiki/Sònraichte:Search?search={searchTerms}&source…"
- },
- "suggestUrl": {
- "message": "https://gd.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/gl/messages.json b/browser/components/search/extensions/wikipedia/_locales/gl/messages.json
deleted file mode 100644
index 88880bffc3d9..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/gl/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (gl)"
- },
- "extensionDescription": {
- "message": "Wikipedia, a enciclopedia libre"
- },
- "searchUrl": {
- "message": "https://gl.wikipedia.org/wiki/Especial:Procurar"
- },
- "searchForm": {
- "message": "https://gl.wikipedia.org/wiki/Especial:Procurar?search={searchTerms}&source…"
- },
- "suggestUrl": {
- "message": "https://gl.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/gn/messages.json b/browser/components/search/extensions/wikipedia/_locales/gn/messages.json
deleted file mode 100644
index 5efc5ed74a95..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/gn/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Vikipetã (gn)"
- },
- "extensionDescription": {
- "message": "Vikipetã, opaite tembikuaa hekosãsóva renda"
- },
- "searchUrl": {
- "message": "https://gn.wikipedia.org/wiki/Mba'echĩchĩ:Buscar"
- },
- "searchForm": {
- "message": "https://gn.wikipedia.org/wiki/Mba'echĩchĩ:Buscar?search={searchTerms}&sourceid=Mozilla-search"
- },
- "suggestUrl": {
- "message": "https://gn.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/gu/messages.json b/browser/components/search/extensions/wikipedia/_locales/gu/messages.json
deleted file mode 100644
index 3d2f68826fc5..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/gu/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "વિકિપીડિયા (gu)"
- },
- "extensionDescription": {
- "message": "વીકીપીડિયા, મુક્ત એનસાયક્લોપીડિયા"
- },
- "searchUrl": {
- "message": "https://gu.wikipedia.org/wiki/વિશેષ:શોધ"
- },
- "searchForm": {
- "message": "https://gu.wikipedia.org/wiki/વિશેષ:શોધ?search={searchTerms}&sourceid=Mozil…"
- },
- "suggestUrl": {
- "message": "https://gu.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/he/messages.json b/browser/components/search/extensions/wikipedia/_locales/he/messages.json
deleted file mode 100644
index 1f8471e980f0..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/he/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "ויקיפדיה"
- },
- "extensionDescription": {
- "message": "ויקיפדיה"
- },
- "searchUrl": {
- "message": "https://he.wikipedia.org/wiki/מיוחד:חיפוש"
- },
- "searchForm": {
- "message": "https://he.wikipedia.org/wiki/מיוחד:חיפוש?search={searchTerms}&sourceid=Moz…"
- },
- "suggestUrl": {
- "message": "https://he.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/hi/messages.json b/browser/components/search/extensions/wikipedia/_locales/hi/messages.json
deleted file mode 100644
index f3b7d14eafa0..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/hi/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "विकिपीडिया (hi)"
- },
- "extensionDescription": {
- "message": "विकिपीडिया (हिन्दी)"
- },
- "searchUrl": {
- "message": "https://hi.wikipedia.org/wiki/विशेष:खोज"
- },
- "searchForm": {
- "message": "https://hi.wikipedia.org/wiki/विशेष:खोज?search={searchTerms}&sourceid=Mozil…"
- },
- "suggestUrl": {
- "message": "https://hi.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/hr/messages.json b/browser/components/search/extensions/wikipedia/_locales/hr/messages.json
deleted file mode 100644
index 18a6177efcca..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/hr/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedija (hr)"
- },
- "extensionDescription": {
- "message": "Wikipedija, slobodna enciklopedija"
- },
- "searchUrl": {
- "message": "https://hr.wikipedia.org/wiki/Posebno:Traži"
- },
- "searchForm": {
- "message": "https://hr.wikipedia.org/wiki/Posebno:Traži?search={searchTerms}&sourceid=M…"
- },
- "suggestUrl": {
- "message": "https://hr.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/hsb/messages.json b/browser/components/search/extensions/wikipedia/_locales/hsb/messages.json
deleted file mode 100644
index d4e62836e6e9..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/hsb/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedija (hsb)"
- },
- "extensionDescription": {
- "message": "Wikipedija, swobodna encyklopedija"
- },
- "searchUrl": {
- "message": "https://hsb.wikipedia.org/wiki/Specialnje:Pytać"
- },
- "searchForm": {
- "message": "https://hsb.wikipedia.org/wiki/Specialnje:Pytać?search={searchTerms}&source…"
- },
- "suggestUrl": {
- "message": "https://hsb.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/hu/messages.json b/browser/components/search/extensions/wikipedia/_locales/hu/messages.json
deleted file mode 100644
index 68300c48a6f3..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/hu/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipédia (hu)"
- },
- "extensionDescription": {
- "message": "Wikipedia, a szabad enciklopédia"
- },
- "searchUrl": {
- "message": "https://hu.wikipedia.org/wiki/Speciális:Keresés"
- },
- "searchForm": {
- "message": "https://hu.wikipedia.org/wiki/Speciális:Keresés?search={searchTerms}&source…"
- },
- "suggestUrl": {
- "message": "https://hu.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/hy/messages.json b/browser/components/search/extensions/wikipedia/_locales/hy/messages.json
deleted file mode 100644
index 56c2ae2c641b..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/hy/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (hy)"
- },
- "extensionDescription": {
- "message": "Վիքիփեդիա՝ ազատ հանրագիտարան"
- },
- "searchUrl": {
- "message": "https://hy.wikipedia.org/wiki/Սպասարկող:Որոնել"
- },
- "searchForm": {
- "message": "https://hy.wikipedia.org/wiki/Սպասարկող:Որոնել?search={searchTerms}&sourcei…"
- },
- "suggestUrl": {
- "message": "https://hy.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/ia/messages.json b/browser/components/search/extensions/wikipedia/_locales/ia/messages.json
deleted file mode 100644
index 6d997ae8fc81..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/ia/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (ia)"
- },
- "extensionDescription": {
- "message": "Wikipedia, le encyclopedia libere"
- },
- "searchUrl": {
- "message": "https://ia.wikipedia.org/wiki/Special:Recerca"
- },
- "searchForm": {
- "message": "https://ia.wikipedia.org/wiki/Special:Recerca?search={searchTerms}&sourceid…"
- },
- "suggestUrl": {
- "message": "https://ia.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/id/messages.json b/browser/components/search/extensions/wikipedia/_locales/id/messages.json
deleted file mode 100644
index 1d35e71b956d..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/id/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (id)"
- },
- "extensionDescription": {
- "message": "Wikipedia, ensiklopedia bebas"
- },
- "searchUrl": {
- "message": "https://id.wikipedia.org/wiki/Istimewa:Pencarian"
- },
- "searchForm": {
- "message": "https://id.wikipedia.org/wiki/Istimewa:Pencarian?search={searchTerms}&sourc…"
- },
- "suggestUrl": {
- "message": "https://id.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/is/messages.json b/browser/components/search/extensions/wikipedia/_locales/is/messages.json
deleted file mode 100644
index f722d88187de..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/is/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (is)"
- },
- "extensionDescription": {
- "message": "Wikipedia, the free encyclopedia"
- },
- "searchUrl": {
- "message": "https://is.wikipedia.org/wiki/Kerfissíða:Leit"
- },
- "searchForm": {
- "message": "https://is.wikipedia.org/wiki/Kerfissíða:Leit?search={searchTerms}&sourceid…"
- },
- "suggestUrl": {
- "message": "https://is.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/it/messages.json b/browser/components/search/extensions/wikipedia/_locales/it/messages.json
deleted file mode 100644
index 2ca645740f87..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/it/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (it)"
- },
- "extensionDescription": {
- "message": "Wikipedia, l'enciclopedia libera"
- },
- "searchUrl": {
- "message": "https://it.wikipedia.org/wiki/Speciale:Ricerca"
- },
- "searchForm": {
- "message": "https://it.wikipedia.org/wiki/Speciale:Ricerca?search={searchTerms}&sourcei…"
- },
- "suggestUrl": {
- "message": "https://it.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/ja/messages.json b/browser/components/search/extensions/wikipedia/_locales/ja/messages.json
deleted file mode 100644
index 7215e68768f0..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/ja/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (ja)"
- },
- "extensionDescription": {
- "message": "Wikipedia - フリー百科事典"
- },
- "searchUrl": {
- "message": "https://ja.wikipedia.org/wiki/特別:検索"
- },
- "searchForm": {
- "message": "https://ja.wikipedia.org/wiki/特別:検索?search={searchTerms}&sourceid=Mozilla-s…"
- },
- "suggestUrl": {
- "message": "https://ja.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/ka/messages.json b/browser/components/search/extensions/wikipedia/_locales/ka/messages.json
deleted file mode 100644
index c460a093e5e4..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/ka/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "ვიკიპედია (ka)"
- },
- "extensionDescription": {
- "message": "ვიკიპედია, თავისუფალი ენციკლოპედია"
- },
- "searchUrl": {
- "message": "https://ka.wikipedia.org/wiki/სპეციალური:ძიება"
- },
- "searchForm": {
- "message": "https://ka.wikipedia.org/wiki/სპეციალური:ძიება?search={searchTerms}&sourcei…"
- },
- "suggestUrl": {
- "message": "https://ka.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/kab/messages.json b/browser/components/search/extensions/wikipedia/_locales/kab/messages.json
deleted file mode 100644
index 3cf743b616fe..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/kab/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (kab)"
- },
- "extensionDescription": {
- "message": "Wikipedia, tasanayt tilellit"
- },
- "searchUrl": {
- "message": "https://kab.wikipedia.org/wiki/Uslig:Search"
- },
- "searchForm": {
- "message": "https://kab.wikipedia.org/wiki/Uslig:Search?search={searchTerms}&sourceid=M…"
- },
- "suggestUrl": {
- "message": "https://kab.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/kk/messages.json b/browser/components/search/extensions/wikipedia/_locales/kk/messages.json
deleted file mode 100644
index 0844cca0d7e1..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/kk/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Уикипедия (kk)"
- },
- "extensionDescription": {
- "message": "Уикипедия (kk)"
- },
- "searchUrl": {
- "message": "https://kk.wikipedia.org/wiki/Арнайы:Іздеу"
- },
- "searchForm": {
- "message": "https://kk.wikipedia.org/wiki/Арнайы:Іздеу?search={searchTerms}&sourceid=Mo…"
- },
- "suggestUrl": {
- "message": "https://kk.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/km/messages.json b/browser/components/search/extensions/wikipedia/_locales/km/messages.json
deleted file mode 100644
index 0f0a0880e188..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/km/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "វីគីភីឌា (km)"
- },
- "extensionDescription": {
- "message": "វីគីភីឌា សព្វវចនាធិប្បាយសេរី"
- },
- "searchUrl": {
- "message": "https://km.wikipedia.org/wiki/ពិសេស:ស្វែងរក"
- },
- "searchForm": {
- "message": "https://km.wikipedia.org/wiki/ពិសេស:ស្វែងរក?search={searchTerms}&sourceid=M…"
- },
- "suggestUrl": {
- "message": "https://km.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/kn/messages.json b/browser/components/search/extensions/wikipedia/_locales/kn/messages.json
deleted file mode 100644
index 379ef20085a3..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/kn/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (kn)"
- },
- "extensionDescription": {
- "message": "Wikipedia, the free encyclopedia"
- },
- "searchUrl": {
- "message": "https://kn.wikipedia.org/wiki/ವಿಶೇಷ:Search"
- },
- "searchForm": {
- "message": "https://kn.wikipedia.org/wiki/ವಿಶೇಷ:Search?search={searchTerms}&sourceid=Mo…"
- },
- "suggestUrl": {
- "message": "https://kn.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/kr/messages.json b/browser/components/search/extensions/wikipedia/_locales/kr/messages.json
deleted file mode 100644
index 54296cac62bd..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/kr/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "위키백과 (ko)"
- },
- "extensionDescription": {
- "message": "Wikipedia, the free encyclopedia"
- },
- "searchUrl": {
- "message": "https://ko.wikipedia.org/wiki/특수기능:찾기"
- },
- "searchForm": {
- "message": "https://ko.wikipedia.org/wiki/특수기능:찾기?search={searchTerms}&sourceid=Mozilla…"
- },
- "suggestUrl": {
- "message": "https://ko.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/lij/messages.json b/browser/components/search/extensions/wikipedia/_locales/lij/messages.json
deleted file mode 100644
index cb90db5e4099..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/lij/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (lij)"
- },
- "extensionDescription": {
- "message": "Wikipedia, l'enciclopedia libera"
- },
- "searchUrl": {
- "message": "https://lij.wikipedia.org/wiki/Speçiale:Riçerca"
- },
- "searchForm": {
- "message": "https://lij.wikipedia.org/wiki/Speçiale:Riçerca?search={searchTerms}&source…"
- },
- "suggestUrl": {
- "message": "https://lij.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/lo/messages.json b/browser/components/search/extensions/wikipedia/_locales/lo/messages.json
deleted file mode 100644
index 712746ec6316..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/lo/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "ວິກິພີເດຍ (lo)"
- },
- "extensionDescription": {
- "message": "ວິກິພີເດຍ, ສາລານຸກົມເສລີ"
- },
- "searchUrl": {
- "message": "https://lo.wikipedia.org/wiki/ພິເສດ:ຊອກຫາ"
- },
- "searchForm": {
- "message": "https://lo.wikipedia.org/wiki/ພິເສດ:ຊອກຫາ?search={searchTerms}&sourceid=Moz…"
- },
- "suggestUrl": {
- "message": "https://lo.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/lt/messages.json b/browser/components/search/extensions/wikipedia/_locales/lt/messages.json
deleted file mode 100644
index c061bcc5224c..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/lt/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (lt)"
- },
- "extensionDescription": {
- "message": "Vikipedija, laisvoji enciklopedija"
- },
- "searchUrl": {
- "message": "https://lt.wikipedia.org/wiki/Specialus:Paieška"
- },
- "searchForm": {
- "message": "https://lt.wikipedia.org/wiki/Specialus:Paieška?search={searchTerms}&source…"
- },
- "suggestUrl": {
- "message": "https://lt.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/ltg/messages.json b/browser/components/search/extensions/wikipedia/_locales/ltg/messages.json
deleted file mode 100644
index 0e02810ef3bf..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/ltg/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Vikipedeja (ltg)"
- },
- "extensionDescription": {
- "message": "Vikipēdija, breivuo eņciklopedeja"
- },
- "searchUrl": {
- "message": "https://ltg.wikipedia.org/wiki/Seviškuo:Search"
- },
- "searchForm": {
- "message": "https://ltg.wikipedia.org/wiki/Seviškuo:Search?search={searchTerms}&sourcei…"
- },
- "suggestUrl": {
- "message": "https://ltg.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/lv/messages.json b/browser/components/search/extensions/wikipedia/_locales/lv/messages.json
deleted file mode 100644
index f73814b8574f..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/lv/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Vikipēdija"
- },
- "extensionDescription": {
- "message": "Vikipēdija, brīvā enciklopēdija"
- },
- "searchUrl": {
- "message": "https://lv.wikipedia.org/wiki/Special:Search"
- },
- "searchForm": {
- "message": "https://lv.wikipedia.org/wiki/Special:Search?search={searchTerms}&sourceid=…"
- },
- "suggestUrl": {
- "message": "https://lv.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/mk/messages.json b/browser/components/search/extensions/wikipedia/_locales/mk/messages.json
deleted file mode 100644
index de7e06e1ac4a..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/mk/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Википедија (mk)"
- },
- "extensionDescription": {
- "message": "Википедија, слободната енциклопедија"
- },
- "searchUrl": {
- "message": "https://mk.wikipedia.org/wiki/Специјална:Барај"
- },
- "searchForm": {
- "message": "https://mk.wikipedia.org/wiki/Специјална:Барај?search={searchTerms}&sourcei…"
- },
- "suggestUrl": {
- "message": "https://mk.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/mr/messages.json b/browser/components/search/extensions/wikipedia/_locales/mr/messages.json
deleted file mode 100644
index bd46dd83700c..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/mr/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "विकिपीडिया (mr)"
- },
- "extensionDescription": {
- "message": "विकिपीडिया, मोफत माहितीकोष"
- },
- "searchUrl": {
- "message": "https://mr.wikipedia.org/wiki/विशेष:शोधा"
- },
- "searchForm": {
- "message": "https://mr.wikipedia.org/wiki/विशेष:शोधा?search={searchTerms}&sourceid=Mozi…"
- },
- "suggestUrl": {
- "message": "https://mr.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/ms/messages.json b/browser/components/search/extensions/wikipedia/_locales/ms/messages.json
deleted file mode 100644
index c817e82c7821..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/ms/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (ms)"
- },
- "extensionDescription": {
- "message": "Wikipedia, ensiklopedia bebas"
- },
- "searchUrl": {
- "message": "https://ms.wikipedia.org/wiki/Khas:Gelintar"
- },
- "searchForm": {
- "message": "https://ms.wikipedia.org/wiki/Khas:Gelintar?search={searchTerms}&sourceid=M…"
- },
- "suggestUrl": {
- "message": "https://ms.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/my/messages.json b/browser/components/search/extensions/wikipedia/_locales/my/messages.json
deleted file mode 100644
index 62342d1b90ae..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/my/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (my)"
- },
- "extensionDescription": {
- "message": "အခမဲ့လွတ်လပ်စွယ်စုံကျမ်း"
- },
- "searchUrl": {
- "message": "https://my.wikipedia.org/wiki/Special:Search"
- },
- "searchForm": {
- "message": "https://my.wikipedia.org/wiki/Special:Search?search={searchTerms}&sourceid=…"
- },
- "suggestUrl": {
- "message": "https://my.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/ne/messages.json b/browser/components/search/extensions/wikipedia/_locales/ne/messages.json
deleted file mode 100644
index eb22344341e4..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/ne/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "विकिपीडिया (ne)"
- },
- "extensionDescription": {
- "message": "विकिपिडिया एक स्वतन्त्र विश्वकोष"
- },
- "searchUrl": {
- "message": "https://ne.wikipedia.org/wiki/विशेष:Search"
- },
- "searchForm": {
- "message": "https://ne.wikipedia.org/wiki/विशेष:Search?search={searchTerms}&sourceid=Mo…"
- },
- "suggestUrl": {
- "message": "https://ne.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/nl/messages.json b/browser/components/search/extensions/wikipedia/_locales/nl/messages.json
deleted file mode 100644
index c2a810c2ae30..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/nl/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (nl)"
- },
- "extensionDescription": {
- "message": "De vrije encyclopedie"
- },
- "searchUrl": {
- "message": "https://nl.wikipedia.org/wiki/Speciaal:Zoeken"
- },
- "searchForm": {
- "message": "https://nl.wikipedia.org/wiki/Speciaal:Zoeken?search={searchTerms}&sourceid…"
- },
- "suggestUrl": {
- "message": "https://nl.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/oc/messages.json b/browser/components/search/extensions/wikipedia/_locales/oc/messages.json
deleted file mode 100644
index 3cadc3d68f07..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/oc/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipèdia (oc)"
- },
- "extensionDescription": {
- "message": "Wikipèdia, l'enciclopèdia liura"
- },
- "searchUrl": {
- "message": "https://oc.wikipedia.org/wiki/Especial:Recèrca"
- },
- "searchForm": {
- "message": "https://oc.wikipedia.org/wiki/Especial:Recèrca?search={searchTerms}&sourcei…"
- },
- "suggestUrl": {
- "message": "https://oc.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/pa/messages.json b/browser/components/search/extensions/wikipedia/_locales/pa/messages.json
deleted file mode 100644
index dff38c2146fd..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/pa/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (pa)"
- },
- "extensionDescription": {
- "message": "ਵਿਕਿਪੀਡਿਆ, ਮੁਫ਼ਤ/ਮੁਕਤ ਸ਼ਬਦਕੋਸ਼"
- },
- "searchUrl": {
- "message": "https://pa.wikipedia.org/wiki/ਖ਼ਾਸ:ਖੋਜੋ"
- },
- "searchForm": {
- "message": "https://pa.wikipedia.org/wiki/ਖ਼ਾਸ:ਖੋਜੋ?search={searchTerms}&sourceid=Mozil…"
- },
- "suggestUrl": {
- "message": "https://pa.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/pl/messages.json b/browser/components/search/extensions/wikipedia/_locales/pl/messages.json
deleted file mode 100644
index 315aa0d9cbe1..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/pl/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (pl)"
- },
- "extensionDescription": {
- "message": "Wikipedia, wolna encyklopedia"
- },
- "searchUrl": {
- "message": "https://pl.wikipedia.org/wiki/Specjalna:Szukaj"
- },
- "searchForm": {
- "message": "https://pl.wikipedia.org/wiki/Specjalna:Szukaj?search={searchTerms}&sourcei…"
- },
- "suggestUrl": {
- "message": "https://pl.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/pt/messages.json b/browser/components/search/extensions/wikipedia/_locales/pt/messages.json
deleted file mode 100644
index 4beaa97acc88..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/pt/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (pt)"
- },
- "extensionDescription": {
- "message": "Wikipédia, a enciclopédia livre"
- },
- "searchUrl": {
- "message": "https://pt.wikipedia.org/wiki/Especial:Pesquisar"
- },
- "searchForm": {
- "message": "https://pt.wikipedia.org/wiki/Especial:Pesquisar?search={searchTerms}&sourc…"
- },
- "suggestUrl": {
- "message": "https://pt.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/rm/messages.json b/browser/components/search/extensions/wikipedia/_locales/rm/messages.json
deleted file mode 100644
index 8258d5e43451..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/rm/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (rm)"
- },
- "extensionDescription": {
- "message": "Vichipedia, l'enciclopedia libra"
- },
- "searchUrl": {
- "message": "https://rm.wikipedia.org/wiki/Spezial:Search"
- },
- "searchForm": {
- "message": "https://rm.wikipedia.org/wiki/Spezial:Search?search={searchTerms}&sourceid=…"
- },
- "suggestUrl": {
- "message": "https://rm.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/ro/messages.json b/browser/components/search/extensions/wikipedia/_locales/ro/messages.json
deleted file mode 100644
index 48865fd547e4..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/ro/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (ro)"
- },
- "extensionDescription": {
- "message": "Wikipedia, enciclopedia liberă"
- },
- "searchUrl": {
- "message": "https://ro.wikipedia.org/wiki/Special:Căutare"
- },
- "searchForm": {
- "message": "https://ro.wikipedia.org/wiki/Special:Căutare?search={searchTerms}&sourceid…"
- },
- "suggestUrl": {
- "message": "https://ro.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/ru/messages.json b/browser/components/search/extensions/wikipedia/_locales/ru/messages.json
deleted file mode 100644
index 569467691d7c..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/ru/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Википедия (ru)"
- },
- "extensionDescription": {
- "message": "Википедия, свободная энциклопедия"
- },
- "searchUrl": {
- "message": "https://ru.wikipedia.org/wiki/Служебная:Поиск"
- },
- "searchForm": {
- "message": "https://ru.wikipedia.org/wiki/Служебная:Поиск?search={searchTerms}&sourceid…"
- },
- "suggestUrl": {
- "message": "https://ru.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/si/messages.json b/browser/components/search/extensions/wikipedia/_locales/si/messages.json
deleted file mode 100644
index 0406ae728d71..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/si/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (si)"
- },
- "extensionDescription": {
- "message": "Wikipedia, the free encyclopedia"
- },
- "searchUrl": {
- "message": "https://si.wikipedia.org/wiki/විශේෂ:ගවේෂණය"
- },
- "searchForm": {
- "message": "https://si.wikipedia.org/wiki/විශේෂ:ගවේෂණය?search={searchTerms}&sourceid=Mo…"
- },
- "suggestUrl": {
- "message": "https://si.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/sk/messages.json b/browser/components/search/extensions/wikipedia/_locales/sk/messages.json
deleted file mode 100644
index 5c2f75f8b031..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/sk/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipédia (sk)"
- },
- "extensionDescription": {
- "message": "Wikipédia, slobodná a otvorená encyklopédia"
- },
- "searchUrl": {
- "message": "https://sk.wikipedia.org/wiki/Špeciálne:Hľadanie"
- },
- "searchForm": {
- "message": "https://sk.wikipedia.org/wiki/Špeciálne:Hľadanie?search={searchTerms}&sourc…"
- },
- "suggestUrl": {
- "message": "https://sk.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/sl/messages.json b/browser/components/search/extensions/wikipedia/_locales/sl/messages.json
deleted file mode 100644
index 7385a2203474..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/sl/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedija (sl)"
- },
- "extensionDescription": {
- "message": "Wikipedija, prosta enciklopedija"
- },
- "searchUrl": {
- "message": "https://sl.wikipedia.org/wiki/Posebno:Iskanje"
- },
- "searchForm": {
- "message": "https://sl.wikipedia.org/wiki/Posebno:Iskanje?search={searchTerms}&sourceid…"
- },
- "suggestUrl": {
- "message": "https://sl.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/sq/messages.json b/browser/components/search/extensions/wikipedia/_locales/sq/messages.json
deleted file mode 100644
index 68361d8ab294..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/sq/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (sq)"
- },
- "extensionDescription": {
- "message": "Wikipedia, enciklopedia e lirë"
- },
- "searchUrl": {
- "message": "https://sq.wikipedia.org/wiki/Speciale:Kërkim"
- },
- "searchForm": {
- "message": "https://sq.wikipedia.org/wiki/Speciale:Kërkim?search={searchTerms}&sourceid…"
- },
- "suggestUrl": {
- "message": "https://sq.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/sr/messages.json b/browser/components/search/extensions/wikipedia/_locales/sr/messages.json
deleted file mode 100644
index 50ebc0a197a1..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/sr/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Википедија (sr)"
- },
- "extensionDescription": {
- "message": "Претрага Википедије на српском језику"
- },
- "searchUrl": {
- "message": "https://sr.wikipedia.org/wiki/Посебно:Претражи"
- },
- "searchForm": {
- "message": "https://sr.wikipedia.org/wiki/Посебно:Претражи?search={searchTerms}&sourcei…"
- },
- "suggestUrl": {
- "message": "https://sr.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/sv-SE/messages.json b/browser/components/search/extensions/wikipedia/_locales/sv-SE/messages.json
deleted file mode 100644
index 1edc3db80d98..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/sv-SE/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (sv)"
- },
- "extensionDescription": {
- "message": "Wikipedia, den fria encyklopedin"
- },
- "searchUrl": {
- "message": "https://sv.wikipedia.org/wiki/Special:Sök"
- },
- "searchForm": {
- "message": "https://sv.wikipedia.org/wiki/Special:Sök?search={searchTerms}&sourceid=Moz…"
- },
- "suggestUrl": {
- "message": "https://sv.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/ta/messages.json b/browser/components/search/extensions/wikipedia/_locales/ta/messages.json
deleted file mode 100644
index 54397603b028..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/ta/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "விக்கிப்பீடியா (ta)"
- },
- "extensionDescription": {
- "message": "விக்கிப்பீடியா (ta)"
- },
- "searchUrl": {
- "message": "https://ta.wikipedia.org/wiki/சிறப்பு:Search"
- },
- "searchForm": {
- "message": "https://ta.wikipedia.org/wiki/சிறப்பு:Search?search={searchTerms}&sourceid=…"
- },
- "suggestUrl": {
- "message": "https://ta.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/te/messages.json b/browser/components/search/extensions/wikipedia/_locales/te/messages.json
deleted file mode 100644
index c474be12a76f..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/te/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "వికీపీడియా (te)"
- },
- "extensionDescription": {
- "message": "వికీపీడియా (te)"
- },
- "searchUrl": {
- "message": "https://te.wikipedia.org/wiki/ప్రత్యేక:అన్వేషణ"
- },
- "searchForm": {
- "message": "https://te.wikipedia.org/wiki/ప్రత్యేక:అన్వేషణ?search={searchTerms}&sourcei…"
- },
- "suggestUrl": {
- "message": "https://te.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/th/messages.json b/browser/components/search/extensions/wikipedia/_locales/th/messages.json
deleted file mode 100644
index 3d6aeb07ca2c..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/th/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "วิกิพีเดีย"
- },
- "extensionDescription": {
- "message": "วิกิพีเดีย สารานุกรมเสรี"
- },
- "searchUrl": {
- "message": "https://th.wikipedia.org/wiki/พิเศษ:ค้นหา"
- },
- "searchForm": {
- "message": "https://th.wikipedia.org/wiki/พิเศษ:ค้นหา?search={searchTerms}&sourceid=Moz…"
- },
- "suggestUrl": {
- "message": "https://th.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/tl/messages.json b/browser/components/search/extensions/wikipedia/_locales/tl/messages.json
deleted file mode 100644
index d55b03131f97..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/tl/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (tl)"
- },
- "extensionDescription": {
- "message": "Wikipedia, ang malayang ensiklopedya"
- },
- "searchUrl": {
- "message": "https://tl.wikipedia.org/wiki/Natatangi:Maghanap"
- },
- "searchForm": {
- "message": "https://tl.wikipedia.org/wiki/Natatangi:Maghanap?search={searchTerms}&sourc…"
- },
- "suggestUrl": {
- "message": "https://tl.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/tr/messages.json b/browser/components/search/extensions/wikipedia/_locales/tr/messages.json
deleted file mode 100644
index 878b28ab68b2..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/tr/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (tr)"
- },
- "extensionDescription": {
- "message": "Vikipedi, özgür ansiklopedi"
- },
- "searchUrl": {
- "message": "https://tr.wikipedia.org/wiki/Özel:Ara"
- },
- "searchForm": {
- "message": "https://tr.wikipedia.org/wiki/Özel:Ara?search={searchTerms}&sourceid=Mozill…"
- },
- "suggestUrl": {
- "message": "https://tr.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/uk/messages.json b/browser/components/search/extensions/wikipedia/_locales/uk/messages.json
deleted file mode 100644
index 2749b86304bf..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/uk/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Вікіпедія (uk)"
- },
- "extensionDescription": {
- "message": "Вікіпедія, вільна енциклопедія"
- },
- "searchUrl": {
- "message": "https://uk.wikipedia.org/wiki/Спеціальна:Пошук"
- },
- "searchForm": {
- "message": "https://uk.wikipedia.org/wiki/Спеціальна:Пошук?search={searchTerms}&sourcei…"
- },
- "suggestUrl": {
- "message": "https://uk.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/ur/messages.json b/browser/components/search/extensions/wikipedia/_locales/ur/messages.json
deleted file mode 100644
index dcc87e0c853c..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/ur/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "ویکیپیڈیا (ur)"
- },
- "extensionDescription": {
- "message": "ویکیپیڈیا آزاد دائرۃ المعارف"
- },
- "searchUrl": {
- "message": "https://ur.wikipedia.org/wiki/خاص:تلاش"
- },
- "searchForm": {
- "message": "https://ur.wikipedia.org/wiki/خاص:تلاش?search={searchTerms}&sourceid=Mozill…"
- },
- "suggestUrl": {
- "message": "https://ur.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/uz/messages.json b/browser/components/search/extensions/wikipedia/_locales/uz/messages.json
deleted file mode 100644
index 89a8f2a89bca..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/uz/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Vikipediya (uz)"
- },
- "extensionDescription": {
- "message": "Vikipediya, ochiq ensiklopediya"
- },
- "searchUrl": {
- "message": "https://uz.wikipedia.org/wiki/Maxsus:Search"
- },
- "searchForm": {
- "message": "https://uz.wikipedia.org/wiki/Maxsus:Search?search={searchTerms}&sourceid=M…"
- },
- "suggestUrl": {
- "message": "https://uz.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/vi/messages.json b/browser/components/search/extensions/wikipedia/_locales/vi/messages.json
deleted file mode 100644
index c0844e4feb14..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/vi/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (vi)"
- },
- "extensionDescription": {
- "message": "Wikipedia, bách khoa toàn thư mở"
- },
- "searchUrl": {
- "message": "https://vi.wikipedia.org/wiki/Đặc_biệt:Tìm_kiếm"
- },
- "searchForm": {
- "message": "https://vi.wikipedia.org/wiki/Đặc_biệt:Tìm_kiếm?search={searchTerms}&source…"
- },
- "suggestUrl": {
- "message": "https://vi.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/wo/messages.json b/browser/components/search/extensions/wikipedia/_locales/wo/messages.json
deleted file mode 100644
index 7efde3b1d0f4..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/wo/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (wo)"
- },
- "extensionDescription": {
- "message": "Wikipedia, Jimbulang bu Ubbeeku bi"
- },
- "searchUrl": {
- "message": "https://wo.wikipedia.org/wiki/Jagleel:Ceet"
- },
- "searchForm": {
- "message": "https://wo.wikipedia.org/wiki/Jagleel:Ceet?search={searchTerms}&sourceid=Mo…"
- },
- "suggestUrl": {
- "message": "https://wo.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/zh-CN/messages.json b/browser/components/search/extensions/wikipedia/_locales/zh-CN/messages.json
deleted file mode 100644
index 29047565a243..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/zh-CN/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "维基百科"
- },
- "extensionDescription": {
- "message": "维基百科,自由的百科全书"
- },
- "searchUrl": {
- "message": "https://zh.wikipedia.org/wiki/Special:搜索"
- },
- "searchForm": {
- "message": "https://zh.wikipedia.org/wiki/Special:搜索?search={searchTerms}&sourceid=Mozi…"
- },
- "suggestUrl": {
- "message": "https://zh.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/_locales/zh-TW/messages.json b/browser/components/search/extensions/wikipedia/_locales/zh-TW/messages.json
deleted file mode 100644
index a0e8d880ea26..000000000000
--- a/browser/components/search/extensions/wikipedia/_locales/zh-TW/messages.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "extensionName": {
- "message": "Wikipedia (zh)"
- },
- "extensionDescription": {
- "message": "維基百科,自由的百科全書"
- },
- "searchUrl": {
- "message": "https://zh.wikipedia.org/wiki/Special:搜索"
- },
- "searchForm": {
- "message": "https://zh.wikipedia.org/wiki/Special:搜索?search={searchTerms}&sourceid=Mozi…"
- },
- "suggestUrl": {
- "message": "https://zh.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}"
- },
- "searchUrlGetParams": {
- "message": "search={searchTerms}&sourceid=Mozilla-search&variant=zh-tw"
- }
-}
\ No newline at end of file
diff --git a/browser/components/search/extensions/wikipedia/manifest.json b/browser/components/search/extensions/wikipedia/manifest.json
index 2f3e9aec3843..1bdf45ee3acb 100644
--- a/browser/components/search/extensions/wikipedia/manifest.json
+++ b/browser/components/search/extensions/wikipedia/manifest.json
@@ -1,6 +1,6 @@
{
- "name": "__MSG_extensionName__",
- "description": "__MSG_extensionDescription__",
+ "name": "Wikipedia (en)",
+ "description": "Wikipedia, the Free Encyclopedia",
"manifest_version": 2,
"version": "1.0",
"applications": {
@@ -9,7 +9,6 @@
}
},
"hidden": true,
- "default_locale": "en",
"icons": {
"16": "favicon.ico"
},
@@ -18,11 +17,11 @@
],
"chrome_settings_overrides": {
"search_provider": {
- "name": "__MSG_extensionName__",
- "search_url": "__MSG_searchUrl__",
- "search_form": "__MSG_searchForm__",
- "suggest_url": "__MSG_suggestUrl__",
- "search_url_get_params": "__MSG_searchUrlGetParams__"
+ "name": "Wikipedia (en)",
+ "search_url": "https://en.wikipedia.org/wiki/Special:Search",
+ "search_form": "https://en.wikipedia.org/wiki/Special:Search?search={searchTerms}&sourceid=…",
+ "suggest_url": "https://en.wikipedia.org/w/api.php?action=opensearch&search={searchTerms}",
+ "search_url_get_params": "search={searchTerms}&sourceid=Mozilla-search"
}
}
-}
\ No newline at end of file
+}
diff --git a/browser/components/search/extensions/yahoo/favicon.ico b/browser/components/search/extensions/yahoo/favicon.ico
new file mode 100644
index 000000000000..9bd1d9f7c008
Binary files /dev/null and b/browser/components/search/extensions/yahoo/favicon.ico differ
diff --git a/browser/components/search/extensions/yahoo/manifest.json b/browser/components/search/extensions/yahoo/manifest.json
new file mode 100644
index 000000000000..e1f04a373c2e
--- /dev/null
+++ b/browser/components/search/extensions/yahoo/manifest.json
@@ -0,0 +1,28 @@
+{
+ "name": "Yahoo",
+ "description": "Yahoo Search",
+ "manifest_version": 2,
+ "version": "1.0",
+ "applications": {
+ "gecko": {
+ "id": "yahoo(a)search.mozilla.org"
+ }
+ },
+ "hidden": true,
+ "icons": {
+ "16": "favicon.ico"
+ },
+ "web_accessible_resources": [
+ "favicon.ico"
+ ],
+ "chrome_settings_overrides": {
+ "search_provider": {
+ "name": "Yahoo",
+ "search_url": "https://search.yahoo.com/yhs/search",
+ "search_form": "https://search.yahoo.com/yhs/search?p={searchTerms}&ei=UTF-8&hspart=mozilla",
+ "search_url_get_params": "p={searchTerms}&ei=UTF-8&hspart=mozilla",
+ "suggest_url": "https://search.yahoo.com/sugg/ff",
+ "suggest_url_get_params": "output=fxjson&appid=ffd&command={searchTerms}"
+ }
+ }
+}
diff --git a/browser/components/search/extensions/youtube/favicon.ico b/browser/components/search/extensions/youtube/favicon.ico
new file mode 100644
index 000000000000..977887dbbb84
Binary files /dev/null and b/browser/components/search/extensions/youtube/favicon.ico differ
diff --git a/browser/components/search/extensions/youtube/manifest.json b/browser/components/search/extensions/youtube/manifest.json
new file mode 100644
index 000000000000..6fbf8745bac2
--- /dev/null
+++ b/browser/components/search/extensions/youtube/manifest.json
@@ -0,0 +1,26 @@
+{
+ "name": "YouTube",
+ "description": "YouTube - Videos",
+ "manifest_version": 2,
+ "version": "1.0",
+ "applications": {
+ "gecko": {
+ "id": "youtube(a)search.mozilla.org"
+ }
+ },
+ "hidden": true,
+ "icons": {
+ "16": "favicon.ico"
+ },
+ "web_accessible_resources": [
+ "favicon.ico"
+ ],
+ "chrome_settings_overrides": {
+ "search_provider": {
+ "name": "YouTube",
+ "search_url": "https://www.youtube.com/results?search_query={searchTerms}&search=Search",
+ "search_form": "https://www.youtube.com/index",
+ "suggest_url": "https://suggestqueries.google.com/complete/search?output=firefox&ds=yt&q={s…"
+ }
+ }
+}
\ No newline at end of file
diff --git a/tbb-tests/browser_tor_omnibox.js b/tbb-tests/browser_tor_omnibox.js
new file mode 100644
index 000000000000..f3efd0c3da5e
--- /dev/null
+++ b/tbb-tests/browser_tor_omnibox.js
@@ -0,0 +1,14 @@
+// # Test Tor Omnibox
+// Check what search engines are installed in the search box.
+
+add_task(async function() {
+ // Grab engine IDs.
+ let browserSearchService = Components.classes["@mozilla.org/browser/search-service;1"]
+ .getService(Components.interfaces.nsISearchService),
+ engineIDs = (await browserSearchService.getEngines()).map(e => e.identifier);
+
+ // Check that we have the correct engines installed, in the right order.
+ is(engineIDs[0], "ddg", "Default search engine is duckduckgo");
+ is(engineIDs[1], "youtube", "Secondary search engine is youtube");
+ is(engineIDs[2], "google", "Google is third search engine");
+});
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] TB4: Tor Browser's Firefox preference overrides.
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 0098c38f6f344f5ed1c49f0f8f3f0f55de36e633
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Tue Sep 10 18:20:43 2013 -0700
TB4: Tor Browser's Firefox preference overrides.
This hack directly includes our preference changes in omni.ja.
Bug 18292: Staged updates fail on Windows
Temporarily disable staged updates on Windows.
Bug 18297: Use separate Noto JP,KR,SC,TC fonts
Bug 23404: Add Noto Sans Buginese to the macOS whitelist
Bug 23745: Set dom.indexedDB.enabled = true
Bug 13575: Disable randomised Firefox HTTP cache decay user tests.
(Fernando Fernandez Mancera <ffmancera(a)riseup.net>)
Bug 17252: Enable session identifiers with FPI
Session tickets and session identifiers were isolated
by OriginAttributes, so we can re-enable them by
allowing the default value (true) of
"security.ssl.disable_session_identifiers".
The pref "security.enable_tls_session_tickets" is obsolete
(removed in https://bugzilla.mozilla.org/917049)
Bug 14952: Enable http/2 and AltSvc
In Firefox, SPDY/HTTP2 now uses Origin Attributes for
isolation of connections, push streams, origin frames, etc.
That means we get first-party isolation provided
"privacy.firstparty.isolate" is true. So in this patch, we
stop overriding "network.http.spdy.enabled" and
"network.http.spdy.enabled.http2".
Alternate Services also use Origin Attributes for isolation.
So we stop overriding
"network.http.altsvc.enabled" and "network.http.altsvc.oe"
as well.
(All 4 of the abovementioned "network.http.*" prefs adopt
Firefox 60ESR's default value of true.)
However, we want to disable HTTP/2 push for now, so we
set "network.http.spdy.allow-push" to false.
"network.http.spdy.enabled.http2draft" was removed in Bug 1132357.
"network.http.sped.enabled.v2" was removed in Bug 912550.
"network.http.sped.enabled.v3" was removed in Bug 1097944.
"network.http.sped.enabled.v3-1" was removed in Bug 1248197.
Bug 26114: addons.mozilla.org is not special
* Don't expose navigator.mozAddonManager on any site
* Don't block NoScript from modifying addons.mozilla.org or other sites
Enable ReaderView mode again (#27281).
Bug 29916: Make sure enterprise policies are disabled
Bug 2874: Block Components.interfaces from content
Bug 26146: Spoof HTTP User-Agent header for desktop platforms
In Tor Browser 8.0, the OS was revealed in both the HTTP User-Agent
header and to JavaScript code via navigator.userAgent. To avoid
leaking the OS inside each HTTP request (which many web servers
log), always use the Windows 7 OS value in the desktop User-Agent
header. We continue to allow access to the actual OS via JavaScript,
since doing so improves compatibility with web applications such
as GitHub and Google Docs.
Bug 12885: Windows Jump Lists fail for Tor Browser
Jumplist entries are stored in a binary file in:
%APPDATA%\\Microsoft\Windows\Recent\CustomDestinations\
and has a name in the form
[a-f0-9]+.customDestinations-ms
The hex at the front is unique per app, and is ultimately derived from
something called the 'App User Model ID' (AUMID) via some unknown
hashing method. The AUMID is provided as a key when programmatically
creating, updating, and deleting a jumplist. The default behaviour in
firefox is for the installer to define an AUMID for an app, and save it
in the registry so that the jumplist data can be removed by the
uninstaller.
However, the Tor Browser does not set this (or any other) regkey during
installation, so this codepath fails and the app's AUMID is left
undefined. As a result the app's AUMID ends up being defined by
windows, but unknowable by Tor Browser. This unknown AUMID is used to
create and modify the jumplist, but the delete API requires that we
provide the app's AUMID explicitly. Since we don't know what the AUMID
is (since the expected regkey where it is normally stored does not
exist) jumplist deletion will fail and we will leave behind a mostly
empty customDestinations-ms file. The name of the file is derived from
the binary path, so an enterprising person could reverse engineer how
that hex name is calculated, and generate the name for Tor Browser's
default Desktop installation path to determine whether a person had
used Tor Browser in the past.
The 'taskbar.grouping.useprofile' option that is enabled by this patch
works around this AUMID problem by having firefox.exe create it's own
AUMID based on the profile path (rather than looking for a regkey). This
way, if a user goes in and enables and disables jumplist entries, the
backing store is properly deleted.
Unfortunately, all windows users currently have this file lurking in
the above mentioned directory and this patch will not remove it since it
was created with an unknown AUMID. However, another patch could be
written which goes to that directory and deletes any item containing the
'Tor Browser' string. See bug 28996.
Bug 31396: Disable indexedDB WebExtension storage backend.
Bug 30845: Make sure default themes and other internal extensions are enabled
Bug 28896: Enable extensions in private browsing by default
Bug 31065: Explicitly allow proxying localhost
Bug 31598: Enable letterboxing
Disable Presentation API everywhere
Bug 21549 - Use Firefox's WASM default pref. It is disabled at safer
security levels.
Bug 32321: Disable Mozilla's MitM pings
Bug 19890: Disable installation of system addons
By setting the URL to "" we make sure that already installed system
addons get deleted as well.
Bug 22548: Firefox downgrades VP9 videos to VP8.
On systems where H.264 is not available or no HWA, VP9 is preferred. But in Tor
Browser 7.0 all youtube videos are degraded to VP8.
This behaviour can be turned off by setting media.benchmark.vp9.threshold to 0.
All clients will get better experience and lower traffic, beause TBB doesn't
use "Use hardware acceleration when available".
Bug 25741 - TBA: Add mobile-override of 000-tor-browser prefs
Bug 16441: Suppress "Reset Tor Browser" prompt.
Bug 29120: Use the in-memory media cache and increase its maximum size.
Bug 33697: use old search config based on list.json
Bug 33855: Ensure that site-specific browser mode is disabled.
Bug 30682: Disable Intermediate CA Preloading.
Bug 40061: Omit the Windows default browser agent from the build
Bug 40140: Videos stop working with Tor Browser 10.0 on Windows
---
.eslintignore | 3 +
browser/app/profile/000-tor-browser.js | 642 ++++++++++++++++++++++++++
browser/app/profile/firefox.js | 6 +-
browser/installer/package-manifest.in | 1 +
browser/moz.build | 1 +
mobile/android/app/000-tor-browser-android.js | 47 ++
mobile/android/app/geckoview-prefs.js | 2 +
mobile/android/app/mobile.js | 4 +
mobile/android/app/moz.build | 1 +
taskcluster/ci/source-test/mozlint.yml | 2 +
10 files changed, 706 insertions(+), 3 deletions(-)
diff --git a/.eslintignore b/.eslintignore
index e0be1073894c..031ff26f1808 100644
--- a/.eslintignore
+++ b/.eslintignore
@@ -143,6 +143,9 @@ js/src/jsapi-tests/binast/
js/src/tests/
js/src/Y.js
+# uses `#include`
+mobile/android/app/000-tor-browser-android.js
+
# Uses `#filter substitution`
mobile/android/app/mobile.js
mobile/android/app/geckoview-prefs.js
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js
new file mode 100644
index 000000000000..0c423069a2c8
--- /dev/null
+++ b/browser/app/profile/000-tor-browser.js
@@ -0,0 +1,642 @@
+# Default Preferences
+# Tor Browser Bundle
+# Do not edit this file.
+
+// Please maintain unit tests at ./tbb-tests/browser_tor_TB4.js
+
+// Disable initial homepage notifications
+pref("browser.search.update", false);
+pref("browser.rights.3.shown", true);
+pref("browser.startup.homepage_override.mstone", "ignore");
+pref("startup.homepage_welcome_url", "");
+pref("startup.homepage_welcome_url.additional", "");
+
+// Set a generic, default URL that will be opened in a tab after an update.
+// Typically, this will not be used; instead, the <update> element within
+// each update manifest should contain attributes similar to:
+// actions="showURL"
+// openURL="https://blog.torproject.org/tor-browser-55a2-released"
+pref("startup.homepage_override_url", "https://blog.torproject.org/category/tags/tor-browser");
+
+// Try to nag a bit more about updates: Pop up a restart dialog an hour after the initial dialog
+pref("app.update.promptWaitTime", 3600);
+
+#ifdef XP_WIN
+// For now, disable staged updates on Windows (see #18292).
+pref("app.update.staging.enabled", false);
+#endif
+
+// Disable "Slow startup" warnings and associated disk history
+// (bug #13346)
+pref("browser.slowStartup.notificationDisabled", true);
+pref("browser.slowStartup.maxSamples", 0);
+pref("browser.slowStartup.samples", 0);
+
+// Disable the "Refresh" prompt that is displayed for stale profiles.
+pref("browser.disableResetPrompt", true);
+
+// Disk activity: Disable Browsing History Storage
+pref("browser.privatebrowsing.autostart", true);
+pref("browser.cache.disk.enable", false);
+pref("browser.cache.offline.enable", false);
+pref("permissions.memory_only", true);
+pref("network.cookie.lifetimePolicy", 2);
+pref("security.nocertdb", true);
+
+// Disk activity: TBB Directory Isolation
+pref("browser.download.useDownloadDir", false);
+pref("browser.shell.checkDefaultBrowser", false);
+pref("browser.download.manager.addToRecentDocs", false);
+
+// Misc privacy: Disk
+pref("signon.rememberSignons", false);
+pref("browser.formfill.enable", false);
+pref("signon.autofillForms", false);
+pref("browser.sessionstore.privacy_level", 2);
+// Use the in-memory media cache and increase its maximum size (#29120)
+pref("browser.privatebrowsing.forceMediaMemoryCache", true);
+pref("media.memory_cache_max_size", 16384);
+// Disable site-specific browsing to avoid sharing site icons with the OS.
+pref("browser.ssb.enabled", false);
+
+// Misc privacy: Remote
+pref("browser.send_pings", false);
+pref("geo.enabled", false);
+pref("geo.provider.network.url", "");
+pref("browser.search.suggest.enabled", false);
+pref("browser.safebrowsing.malware.enabled", false);
+pref("browser.safebrowsing.phishing.enabled", false);
+pref("browser.safebrowsing.downloads.enabled", false);
+pref("browser.safebrowsing.downloads.remote.enabled", false);
+pref("browser.safebrowsing.blockedURIs.enabled", false);
+pref("browser.safebrowsing.downloads.remote.url", "");
+pref("browser.safebrowsing.provider.google.updateURL", "");
+pref("browser.safebrowsing.provider.google.gethashURL", "");
+pref("browser.safebrowsing.provider.google4.updateURL", "");
+pref("browser.safebrowsing.provider.google4.gethashURL", "");
+pref("browser.safebrowsing.provider.mozilla.updateURL", "");
+pref("browser.safebrowsing.provider.mozilla.gethashURL", "");
+pref("extensions.ui.lastCategory", "addons://list/extension");
+pref("datareporting.healthreport.uploadEnabled", false);
+pref("datareporting.policy.dataSubmissionEnabled", false);
+// Make sure Unified Telemetry is really disabled, see: #18738.
+pref("toolkit.telemetry.unified", false);
+pref("toolkit.telemetry.enabled", false);
+#ifdef XP_WIN
+// Defense-in-depth: ensure that the Windows default browser agent will
+// not ping Mozilla if it is somehow present (we omit it at build time).
+pref("default-browser-agent.enabled", false);
+#endif
+pref("identity.fxaccounts.enabled", false); // Disable sync by default
+pref("services.sync.engine.prefs", false); // Never sync prefs, addons, or tabs with other browsers
+pref("services.sync.engine.addons", false);
+pref("services.sync.engine.tabs", false);
+pref("extensions.getAddons.cache.enabled", false); // https://blog.mozilla.org/addons/how-to-opt-out-of-add-on-metadata-updates/
+pref("browser.newtabpage.enabled", false);
+pref("browser.search.region", "US"); // The next two prefs disable GeoIP search lookups (#16254)
+pref("browser.search.geoip.url", "");
+pref("browser.fixup.alternate.enabled", false); // Bug #16783: Prevent .onion fixups
+// Make sure there is no Tracking Protection active in Tor Browser, see: #17898.
+pref("privacy.trackingprotection.enabled", false);
+pref("privacy.trackingprotection.pbmode.enabled", false);
+pref("privacy.trackingprotection.annotate_channels", false);
+pref("privacy.trackingprotection.cryptomining.enabled", false);
+pref("privacy.trackingprotection.fingerprinting.enabled", false);
+pref("privacy.trackingprotection.socialtracking.enabled", false);
+pref("privacy.socialtracking.block_cookies.enabled", false);
+pref("privacy.annotate_channels.strict_list.enabled", false);
+
+// Disable the Pocket extension (Bug #18886 and #31602)
+pref("extensions.pocket.enabled", false);
+pref("network.http.referer.hideOnionSource", true);
+
+// Disable use of WiFi location information
+pref("browser.region.network.scan", false);
+pref("browser.region.network.url", "");
+
+// Don't load Mozilla domains in a separate tab process
+pref("browser.tabs.remote.separatedMozillaDomains", "");
+
+// Avoid DNS lookups on search terms
+pref("browser.urlbar.dnsResolveSingleWordsAfterSearch", 0);
+
+// Disable about:newtab and "first run" experiments
+pref("messaging-system.rsexperimentloader.enabled", false);
+pref("trailhead.firstrun.branches", "");
+
+// Clear the list of trusted recursive resolver services
+pref("network.trr.resolvers", "");
+
+// Disable crlite
+pref("security.pki.crlite_mode", 0);
+
+// Disable website password breach alerts
+pref("signon.management.page.breach-alerts.enabled", false);
+pref("extensions.fxmonitor.enabled", false);
+
+// Remove mobile app tracking URLs
+pref("signon.management.page.mobileAndroidURL", "");
+pref("signon.management.page.mobileAppleURL", "");
+
+// Disable ServiceWorkers and push notifications by default
+pref("dom.serviceWorkers.enabled", false);
+pref("dom.push.enabled", false);
+
+// Fingerprinting
+pref("webgl.disable-extensions", true);
+pref("webgl.disable-fail-if-major-performance-caveat", true);
+pref("webgl.enable-webgl2", false);
+pref("gfx.downloadable_fonts.fallback_delay", -1);
+pref("browser.startup.homepage_override.buildID", "20100101");
+pref("browser.link.open_newwindow.restriction", 0); // Bug 9881: Open popups in new tabs (to avoid fullscreen popups)
+// Set video VP9 to 0 for everyone (bug 22548)
+pref("media.benchmark.vp9.threshold", 0);
+pref("dom.enable_resource_timing", false); // Bug 13024: To hell with this API
+pref("privacy.resistFingerprinting", true);
+pref("privacy.resistFingerprinting.block_mozAddonManager", true); // Bug 26114
+pref("dom.webaudio.enabled", false); // Bug 13017: Disable Web Audio API
+pref("dom.w3c_touch_events.enabled", 0); // Bug 10286: Always disable Touch API
+pref("dom.w3c_pointer_events.enabled", false);
+pref("dom.vr.enabled", false); // Bug 21607: Disable WebVR for now
+// Disable randomised Firefox HTTP cache decay user test groups (Bug: 13575)
+pref("security.webauth.webauthn", false); // Bug 26614: Disable Web Authentication API for now
+// Disable intermediate preloading (Bug 30682)
+pref("security.remote_settings.intermediates.enabled", false);
+// Bug 2874: Block Components.interfaces from content
+pref("dom.use_components_shim", false);
+// Enable letterboxing
+pref("privacy.resistFingerprinting.letterboxing", true);
+// Disable network information API everywhere. It gets spoofed in bug 1372072
+// but, alas, the behavior is inconsistent across platforms, see:
+// https://trac.torproject.org/projects/tor/ticket/27268#comment:19. We should
+// not leak that difference if possible.
+pref("dom.netinfo.enabled", false);
+pref("network.http.referer.defaultPolicy", 2); // Bug 32948: Make referer behavior consistent regardless of private browing mode status
+pref("media.videocontrols.picture-in-picture.enabled", false); // Bug 40148: disable until audited in #40147
+
+// Third party stuff
+pref("privacy.firstparty.isolate", true); // Always enforce first party isolation
+pref("network.cookie.cookieBehavior", 1);
+pref("network.http.spdy.allow-push", false); // Disabled for now. See https://bugs.torproject.org/27127
+pref("network.predictor.enabled", false); // Temporarily disabled. See https://bugs.torproject.org/16633
+
+// Proxy and proxy security
+pref("network.proxy.socks", "127.0.0.1");
+pref("network.proxy.socks_port", 9150);
+pref("network.proxy.socks_remote_dns", true);
+pref("network.proxy.no_proxies_on", ""); // For fingerprinting and local service vulns (#10419)
+pref("network.proxy.allow_hijacking_localhost", true); // Allow proxies for localhost (#31065)
+pref("network.proxy.type", 1);
+pref("network.security.ports.banned", "9050,9051,9150,9151");
+pref("network.dns.disabled", true); // This should cover the #5741 patch for DNS leaks
+pref("network.dns.disablePrefetch", true);
+pref("network.protocol-handler.external-default", false);
+pref("network.protocol-handler.external.mailto", false);
+pref("network.protocol-handler.external.news", false);
+pref("network.protocol-handler.external.nntp", false);
+pref("network.protocol-handler.external.snews", false);
+pref("network.protocol-handler.warn-external.mailto", true);
+pref("network.protocol-handler.warn-external.news", true);
+pref("network.protocol-handler.warn-external.nntp", true);
+pref("network.protocol-handler.warn-external.snews", true);
+// Make sure we don't have any GIO supported protocols (defense in depth
+// measure)
+pref("network.gio.supported-protocols", "");
+pref("plugin.disable", true); // Disable to search plugins on first start
+pref("plugin.state.flash", 0); // Disable for defense-in-depth
+pref("media.peerconnection.enabled", false); // Disable WebRTC interfaces
+// Disables media devices but only if `media.peerconnection.enabled` is set to
+// `false` as well. (see bug 16328 for this defense-in-depth measure)
+pref("media.navigator.enabled", false);
+// GMPs: We make sure they don't show up on the Add-on panel and confuse users.
+// And the external update/donwload server must not get pinged. We apply a
+// clever solution for https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=769716.
+pref("media.gmp-provider.enabled", false);
+pref("media.gmp-manager.url.override", "data:text/plain,");
+// Since ESR52 it is not enough anymore to block pinging the GMP update/download
+// server. There is a local fallback that must be blocked now as well. See:
+// https://bugzilla.mozilla.org/show_bug.cgi?id=1267495.
+pref("media.gmp-manager.updateEnabled", false);
+// Mozilla is relying on preferences to make sure no DRM blob is downloaded and
+// run. Even though those prefs should be set correctly by specifying
+// --disable-eme (which we do), we disable all of them here as well for defense
+// in depth (see bug 16285 for more details).
+pref("browser.eme.ui.enabled", false);
+pref("media.gmp-widevinecdm.visible", false);
+pref("media.gmp-widevinecdm.enabled", false);
+pref("media.eme.enabled", false);
+pref("media.mediadrm-widevinecdm.visible", false);
+// WebIDE can bypass proxy settings for remote debugging. It also downloads
+// some additional addons that we have not reviewed. Turn all that off.
+pref("devtools.webide.autoinstallADBExtension", false);
+pref("devtools.webide.enabled", false);
+// The in-browser debugger for debugging chrome code is not coping with our
+// restrictive DNS look-up policy. We use "127.0.0.1" instead of "localhost" as
+// a workaround. See bug 16523 for more details.
+pref("devtools.debugger.chrome-debugging-host", "127.0.0.1");
+// Disable using UNC paths (bug 26424 and Mozilla's bug 1413868)
+pref("network.file.disable_unc_paths", true);
+// Enhance our treatment of file:// to avoid proxy bypasses (see Mozilla's bug
+// 1412081)
+pref("network.file.path_blacklist", "/net");
+// Make sure no enterprise policy can interfere with our proxy settings, see
+// #29916.
+pref("browser.policies.testing.disallowEnterprise", true);
+
+// Security slider
+pref("svg.in-content.enabled", true);
+pref("mathml.disabled", false);
+
+// Network and performance
+pref("security.ssl.enable_false_start", true);
+pref("network.http.connection-retry-timeout", 0);
+pref("network.http.max-persistent-connections-per-proxy", 256);
+pref("network.manage-offline-status", false);
+// No need to leak things to Mozilla, see bug 21790
+pref("network.captive-portal-service.enabled", false);
+// As a "defense in depth" measure, configure an empty push server URL (the
+// DOM Push features are disabled by default via other prefs).
+pref("dom.push.serverURL", "");
+
+// Extension support
+pref("extensions.autoDisableScopes", 0);
+pref("extensions.bootstrappedAddons", "{}");
+pref("extensions.checkCompatibility.4.*", false);
+pref("extensions.databaseSchema", 3);
+pref("extensions.enabledAddons", "https-everywhere%40eff.org:3.1.4,%7B73a6fe31-595d-460b-a920-fcc0f8843232%7D:2.6.6.1,torbutton%40torproject.org:1.5.2,ubufox%40ubuntu.com:2.6,%7B972ce4c6-7e08-4474-a285-3208198ce6fd%7D:17.0.5");
+pref("extensions.enabledItems", "langpack-en-US@firefox.mozilla.org:,{73a6fe31-595d-460b-a920-fcc0f8843232}:1.9.9.57,{e0204bd5-9d31-402b-a99d-a6aa8ffebdca}:1.2.4,{972ce4c6-7e08-4474-a285-3208198ce6fd}:3.5.8");
+pref("extensions.enabledScopes", 5); // AddonManager.SCOPE_PROFILE=1 | AddonManager.SCOPE_APPLICATION=4
+pref("extensions.pendingOperations", false);
+pref("xpinstall.whitelist.add", "");
+pref("xpinstall.whitelist.add.36", "");
+// We don't know what extensions Mozilla is advertising to our users and we
+// don't want to have some random Google Analytics script running either on the
+// about:addons page, see bug 22073, 22900 and 31601.
+pref("extensions.getAddons.showPane", false);
+pref("extensions.htmlaboutaddons.recommendations.enabled", false);
+// Show our legacy extensions directly on about:addons and get rid of the
+// warning for the default theme.
+pref("extensions.legacy.exceptions", "{972ce4c6-7e08-4474-a285-3208198ce6fd},torbutton(a)torproject.org");
+// Bug 26114: Allow NoScript to access addons.mozilla.org etc.
+pref("extensions.webextensions.restrictedDomains", "");
+// Bug 28896: Make sure our bundled WebExtensions are running in Private Browsing Mode
+pref("extensions.allowPrivateBrowsingByDefault", true);
+
+// Toolbar layout
+pref("browser.uiCustomization.state", "{\"placements\":{\"widget-overflow-fixed-list\":[],\"PersonalToolbar\":[\"personal-bookmarks\"],\"nav-bar\":[\"back-button\",\"forward-button\",\"stop-reload-button\",\"urlbar-container\",\"torbutton-button\",\"security-level-button\",\"downloads-button\"],\"TabsToolbar\":[\"tabbrowser-tabs\",\"new-tab-button\",\"alltabs-button\"],\"toolbar-menubar\":[\"menubar-items\"],\"PanelUI-contents\":[\"home-button\",\"edit-controls\",\"zoom-controls\",\"new-window-button\",\"save-page-button\",\"print-button\",\"bookmarks-menu-button\",\"history-panelmenu\",\"find-button\",\"preferences-button\",\"add-ons-button\",\"developer-button\"],\"addon-bar\":[\"addonbar-closebutton\",\"status-bar\"]},\"seen\":[\"developer-button\",\"https-everywhere-eff_eff_org-browser-action\",\"_73a6fe31-595d-460b-a920-fcc0f8843232_-browser-action\"],\"dirtyAreaCache\":[\"PersonalToolbar\",\"nav-bar\",\"TabsToolbar\",\"toolbar-menubar\"],\"currentVersion\":14,\"newElementCount
\":1}");
+
+// Putting the search engine prefs into this file to fix #11236.
+// Default search engine
+pref("browser.search.defaultenginename", "Search");
+
+// Search engine order (order displayed in the search bar dropdown)
+// Somewhat surprisingly we get some random behavior if we specify more than
+// two search engines as below. See
+// https://bugzilla.mozilla.org/show_bug.cgi?id=1126722 for details.
+pref("browser.search.order.extra.1", "Search");
+pref("browser.search.order.extra.2", "YouTube");
+
+// Enforce certificate pinning, see: https://bugs.torproject.org/16206
+pref("security.cert_pinning.enforcement_level", 2);
+
+// Don't allow MitM via Microsoft Family Safety, see bug 21686
+pref("security.family_safety.mode", 0);
+
+// Don't allow MitM via enterprise roots, see bug 30681
+pref("security.enterprise_roots.enabled", false);
+
+// Don't ping Mozilla for MitM detection, see bug 32321
+pref("security.certerrors.mitm.priming.enabled", false);
+
+// Disable the language pack signing check for now on macOS, see #31942
+#ifdef XP_MACOSX
+pref("extensions.langpacks.signatures.required", false);
+#endif
+
+// Avoid report TLS errors to Mozilla. We might want to repurpose this feature
+// one day to help detecting bad relays (which is bug 19119). For now we just
+// hide the checkbox, see bug 22072.
+pref("security.ssl.errorReporting.enabled", false);
+
+// Workaround for https://bugs.torproject.org/13579. Progress on
+// `about:downloads` is only shown if the following preference is set to `true`
+// in case the download panel got removed from the toolbar.
+pref("browser.download.panel.shown", true);
+
+// Treat .onions as secure
+pref("dom.securecontext.whitelist_onions", true);
+
+// Disable special URL bar behaviors
+pref("browser.urlbar.suggest.topsites", false);
+pref("browser.urlbar.update1.interventions", false);
+pref("browser.urlbar.update1.searchTips", false);
+
+// Skip checking omni.ja and other files for corruption since the result
+// is only reported via telemetry (which is disabled).
+pref("corroborator.enabled", false);
+
+// Having the RDD Opus option enabled on Windows breaks videos for us.
+// See: https://bugzilla.mozilla.org/show_bug.cgi?id=1667360 and
+// tor-browser#40140.
+#ifdef XP_WIN
+pref("media.rdd-opus.enabled", false);
+#endif
+
+// prefs to disable jump-list entries in the taskbar on Windows (see bug #12885)
+#ifdef XP_WIN
+// this pref changes the app's set AUMID to be dependent on the profile path, rather than
+// attempting to read it from the registry; this is necessary so that the file generated
+// by the jumplist system can be properly deleted if it is disabled
+pref("taskbar.grouping.useprofile", true);
+pref("browser.taskbar.lists.enabled", false);
+pref("browser.taskbar.lists.frequent.enabled", false);
+pref("browser.taskbar.lists.tasks.enabled", false);
+pref("browser.taskbar.lists.recent.enabled", false);
+#endif
+
+// Disable Presentation API
+pref("dom.presentation.controller.enabled", false);
+pref("dom.presentation.enabled", false);
+pref("dom.presentation.discoverable", false);
+pref("dom.presentation.discoverable.encrypted", false);
+pref("dom.presentation.discovery.enabled", false);
+pref("dom.presentation.receiver.enabled", false);
+
+pref("dom.audiochannel.audioCompeting", false);
+pref("dom.audiochannel.mediaControl", false);
+
+#expand pref("torbrowser.version", __TOR_BROWSER_VERSION_QUOTED__);
+
+// Old torbutton prefs
+
+// debug prefs
+pref("extensions.torbutton.loglevel",4);
+pref("extensions.torbutton.logmethod",1); // 0=stdout, 1=errorconsole, 2=debuglog
+
+// Display prefs
+pref("extensions.torbutton.display_circuit", true);
+pref("extensions.torbutton(a)torproject.org.description", "chrome://torbutton/locale/torbutton.properties");
+pref("extensions.torbutton.updateNeeded", false);
+
+// Tor check and proxy prefs
+pref("extensions.torbutton.test_enabled",true);
+pref("extensions.torbutton.test_url","https://check.torproject.org/?TorButton=true");
+pref("extensions.torbutton.local_tor_check",true);
+pref("extensions.torbutton.versioncheck_url","https://www.torproject.org/projects/torbrowser/RecommendedTBBVersions");
+pref("extensions.torbutton.versioncheck_enabled",true);
+pref("extensions.torbutton.use_nontor_proxy",false);
+
+// State prefs:
+pref("extensions.torbutton.startup",false);
+pref("extensions.torbutton.inserted_button",false);
+pref("extensions.torbutton.inserted_security_level",false);
+
+// This is only used when letterboxing is disabled.
+// See #7255 for details. We display the warning three times to make sure the
+// user did not click on it by accident.
+pref("extensions.torbutton.maximize_warnings_remaining", 3);
+
+// Security prefs:
+pref("extensions.torbutton.clear_http_auth",true);
+pref("extensions.torbutton.close_newnym",true);
+pref("extensions.torbutton.resize_new_windows",false);
+pref("extensions.torbutton.startup_state", 2); // 0=non-tor, 1=tor, 2=last
+pref("extensions.torbutton.tor_memory_jar",false);
+pref("extensions.torbutton.nontor_memory_jar",false);
+pref("extensions.torbutton.launch_warning",true);
+
+// Opt out of Firefox addon pings:
+// https://developer.mozilla.org/en/Addons/Working_with_AMO
+pref("extensions.torbutton(a)torproject.org.getAddons.cache.enabled", false);
+
+// Security Slider
+pref("extensions.torbutton.security_slider", 4);
+pref("extensions.torbutton.security_custom", false);
+
+pref("extensions.torbutton.confirm_plugins", true);
+pref("extensions.torbutton.confirm_newnym", true);
+
+pref("extensions.torbutton.noscript_inited", false);
+pref("extensions.torbutton.noscript_persist", false);
+
+// Browser home page:
+pref("browser.startup.homepage", "about:tor");
+
+// This pref specifies an ad-hoc "version" for various pref update hacks we need to do
+pref("extensions.torbutton.pref_fixup_version", 0);
+
+// If we are bundling fonts, whitelist those bundled fonts, and restrict system fonts to a selection.
+
+#ifdef MOZ_BUNDLED_FONTS
+
+#ifdef XP_MACOSX
+pref("font.system.whitelist", "AppleGothic, Apple Color Emoji, Arial, Courier, Geneva, Georgia, Heiti TC, Helvetica, Helvetica Neue, .Helvetica Neue DeskInterface, Hiragino Kaku Gothic ProN, Lucida Grande, Monaco, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Tibetan, Noto Sans Yi, STHeiti, STIX Math, Tahoma, Thonburi, Times, Times New Roman, Verdana");
+pref("font.name-list.cursive.x-unicode", "Apple Chancery, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Tibetan, Noto Sans Yi");
+pref("font.name-list.fantasy.x-unicode", "Papyrus, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Tibetan, Noto Sans Yi");
+pref("font.name-list.monospace.x-unicode", "Courier, Arial, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Tibetan, Noto Sans Yi");
+pref("font.name-list.sans-serif.x-unicode", "Helvetica, Tahoma, Arial, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Tibetan, Noto Sans Yi");
+pref("font.name-list.serif.x-unicode", "Times, Arial, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Tibetan, Noto Sans Yi");
+pref("font.name.cursive.ar", "Arial");
+pref("font.name.fantasy.ar", "Arial");
+pref("font.name.monospace.ar", "Arial");
+pref("font.name.sans-serif.ar", "Arial");
+#endif
+
+#ifdef XP_WIN
+pref("font.system.whitelist", "Arial, Batang, 바탕, Cambria Math, Courier New, Euphemia, Gautami, Georgia, Gulim, 굴림, GulimChe, 굴림체, Iskoola Pota, Kalinga, Kartika, Latha, Lucida Console, MS Gothic, MS ゴシック, MS Mincho, MS 明朝, MS PGothic, MS Pゴシック, MS PMincho, MS P明朝, MV Boli, Malgun Gothic, Mangal, Meiryo, Meiryo UI, Microsoft Himalaya, Microsoft JhengHei, Microsoft JhengHei UI, Microsoft YaHei, 微软雅黑, Microsoft YaHei UI, MingLiU, 細明體, Noto Sans Buginese, Noto Sans Khmer, Noto Sans Lao, Noto Sans Myanmar, Noto Sans Yi, Nyala, PMingLiU, 新細明體, Plantagenet Cherokee, Raavi, Segoe UI, Shruti, SimSun, 宋体, Sylfaen, Tahoma, Times New Roman, Tunga, Verdana, Vrinda, Yu Gothic UI");
+#endif
+
+#ifdef XP_LINUX
+pref("font.default.lo", "Noto Sans Lao");
+pref("font.default.my", "Noto Sans Myanmar");
+pref("font.default.x-western", "sans-serif");
+pref("font.name-list.cursive.ar", "Noto Naskh Arabic, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.cursive.he", "Noto Sans Hebrew, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.cursive.x-cyrillic", "Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.cursive.x-unicode", "Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.cursive.x-western", "Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.fantasy.ar", "Noto Naskh Arabic, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.fantasy.el", "Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.fantasy.he", "Noto Sans Hebrew, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.fantasy.x-cyrillic", "Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.fantasy.x-unicode", "Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.fantasy.x-western", "Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.ar", "Noto Naskh Arabic, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.el", "Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.he", "Noto Sans Hebrew, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.ja", "Noto Sans JP Regular, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.ko", "Noto Sans KR Regular, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.th", "Noto Sans Thai, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-armn", "Noto Sans Armenian, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-beng", "Noto Sans Bengali, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-cyrillic", "Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-devanagari", "Noto Sans Devanagari, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-ethi", "Noto Sans Ethiopic, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-geor", "Noto Sans Georgian, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-gujr", "Noto Sans Gujarati, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-guru", "Noto Sans Gurmukhi, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-khmr", "Noto Sans Khmer, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-knda", "Noto Sans Kannada, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-mlym", "Noto Sans Malayalam, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-orya", "Noto Sans Oriya, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-sinh", "Noto Sans Sinhala, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-tamil", "Noto Sans Tamil, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-telu", "Noto Sans Telugu, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-tibt", "Noto Sans Tibetan, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-unicode", "Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.x-western", "Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.zh-CN", "Noto Sans SC Regular, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.zh-HK", "Noto Sans TC Regular, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.monospace.zh-TW", "Noto Sans TC Regular, Cousine, Courier, Courier New, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.ar", "Noto Naskh Arabic, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.el", "Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.he", "Noto Sans Hebrew, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.ja", "Noto Sans JP Regular, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.ko", "Noto Sans KR Regular, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.th", "Noto Sans Thai, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-armn", "Noto Sans Armenian, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-beng", "Noto Sans Bengali, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-cyrillic", "Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-devanagari", "Noto Sans Devanagari, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-ethi", "Noto Sans Ethiopic, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-geor", "Noto Sans Georgian, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-gujr", "Noto Sans Gujarati, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-guru", "Noto Sans Gurmukhi, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-khmr", "Noto Sans Khmer, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-knda", "Noto Sans Kannada, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-mlym", "Noto Sans Malayalam, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-orya", "Noto Sans Oriya, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-sinh", "Noto Sans Sinhala, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-tamil", "Noto Sans Tamil, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-telu", "Noto Sans Telugu, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-tibt", "Noto Sans Tibetan, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-unicode", "Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.x-western", "Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.zh-CN", "Noto Sans SC Regular, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.zh-HK", "Noto Sans TC Regular, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.sans-serif.zh-TW", "Noto Sans TC Regular, Arimo, Arial, Verdana, Noto Naskh Arabic, Noto Sans Armenian, Noto Sans Bengali, Noto Sans Buginese, Noto Sans JP Regular, Noto Sans KR Regular, Noto Sans SC Regular, Noto Sans TC Regular, Noto Sans Canadian Aboriginal, Noto Sans Cherokee, Noto Sans Devanagari, Noto Sans Ethiopic, Noto Sans Georgian, Noto Sans Gujarati, Noto Sans Gurmukhi, Noto Sans Hebrew, Noto Sans Kannada, Noto Sans Khmer, Noto Sans Lao, Noto Sans Malayalam, Noto Sans Mongolian, Noto Sans Myanmar, Noto Sans Oriya, Noto Sans Sinhala, Noto Sans Tamil, Noto Sans Telugu, Noto Sans Thaana, Noto Sans Thai, Noto Sans Tibetan, Noto Sans Yi, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.ar", "Noto Naskh Arabic, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.el", "Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.he", "Tinos, Georgia, Noto Sans Hebrew, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.ja", "Noto Sans JP Regular, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.ko", "Noto Sans KR Regular, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.th", "Noto Serif Thai, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-armn", "Noto Serif Armenian, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-beng", "Noto Sans Bengali, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-cyrillic", "Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-devanagari", "Noto Sans Devanagari, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-ethi", "Noto Sans Ethiopic, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-geor", "Noto Sans Georgian, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-gujr", "Noto Sans Gujarati, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-guru", "Noto Sans Gurmukhi, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-khmr", "Noto Serif Khmer, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-knda", "Noto Sans Kannada, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-mlym", "Noto Sans Malayalam, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-orya", "Noto Sans Oriya, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-sinh", "Noto Sans Sinhala, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-tamil", "Noto Sans Tamil, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-telu", "Noto Sans Telugu, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-tibt", "Noto Sans Tibetan, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-unicode", "Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.x-western", "Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.zh-CN", "Noto Sans SC Regular, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.zh-HK", "Noto Sans TC Regular, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name-list.serif.zh-TW", "Noto Sans TC Regular, Tinos, Georgia, Noto Serif Armenian, Noto Serif Khmer, Noto Serif Lao, Noto Serif Thai");
+pref("font.name.cursive.ar", "Noto Naskh Arabic");
+pref("font.name.cursive.el", "Tinos, Georgia");
+pref("font.name.cursive.he", "Noto Sans Hebrew");
+pref("font.name.cursive.x-cyrillic", "Tinos, Georgia");
+pref("font.name.cursive.x-unicode", "Tinos, Georgia");
+pref("font.name.cursive.x-western", "Tinos, Georgia");
+pref("font.name.fantasy.ar", "Noto Naskh Arabic");
+pref("font.name.fantasy.el", "Tinos, Georgia");
+pref("font.name.fantasy.he", "Noto Sans Hebrew");
+pref("font.name.fantasy.x-cyrillic", "Tinos, Georgia");
+pref("font.name.fantasy.x-unicode", "Tinos, Georgia");
+pref("font.name.fantasy.x-western", "Tinos, Georgia");
+pref("font.name.monospace.ar", "Noto Naskh Arabic");
+pref("font.name.monospace.el", "Tinos, Georgia");
+pref("font.name.monospace.he", "Noto Sans Hebrew");
+pref("font.name.monospace.ja", "Noto Sans JP Regular");
+pref("font.name.monospace.ko", "Noto Sans KR Regular");
+pref("font.name.monospace.my", "Noto Sans Myanmar");
+pref("font.name.monospace.th", "Noto Sans Thai");
+pref("font.name.monospace.x-armn", "Noto Sans Armenian");
+pref("font.name.monospace.x-beng", "Noto Sans Bengali");
+pref("font.name.monospace.x-cyrillic", "Cousine, Courier, Courier New");
+pref("font.name.monospace.x-devanagari", "Noto Sans Devanagari");
+pref("font.name.monospace.x-ethi", "Noto Sans Ethiopic");
+pref("font.name.monospace.x-geor", "Noto Sans Georgian");
+pref("font.name.monospace.x-gujr", "Noto Sans Gujarati");
+pref("font.name.monospace.x-guru", "Noto Sans Gurmukhi");
+pref("font.name.monospace.x-khmr", "Noto Sans Khmer");
+pref("font.name.monospace.x-knda", "Noto Sans Kannada");
+pref("font.name.monospace.x-mlym", "Noto Sans Malayalam");
+pref("font.name.monospace.x-orya", "Noto Sans Oriya");
+pref("font.name.monospace.x-sinh", "Noto Sans Sinhala");
+pref("font.name.monospace.x-tamil", "Noto Sans Tamil");
+pref("font.name.monospace.x-telu", "Noto Sans Telugu");
+pref("font.name.monospace.x-tibt", "Noto Sans Tibetan");
+pref("font.name.monospace.x-unicode", "Cousine, Courier, Courier New");
+pref("font.name.monospace.x-western", "Cousine, Courier, Courier New");
+pref("font.name.monospace.zh-CN", "Noto Sans SC Regular");
+pref("font.name.monospace.zh-HK", "Noto Sans TC Regular");
+pref("font.name.monospace.zh-TW", "Noto Sans TC Regular");
+pref("font.name.sans-serif.ar", "Noto Naskh Arabic");
+pref("font.name.sans-serif.el", "Arimo, Arial, Verdana");
+pref("font.name.sans-serif.he", "Noto Sans Hebrew");
+pref("font.name.sans-serif.ja", "Noto Sans JP Regular");
+pref("font.name.sans-serif.ko", "Noto Sans KR Regular");
+pref("font.name.sans-serif.th", "Noto Sans Thai");
+pref("font.name.sans-serif.x-armn", "Noto Sans Armenian");
+pref("font.name.sans-serif.x-beng", "Noto Sans Bengali");
+pref("font.name.sans-serif.x-cyrillic", "Arimo, Arial, Verdana");
+pref("font.name.sans-serif.x-devanagari", "Noto Sans Devanagari");
+pref("font.name.sans-serif.x-ethi", "Noto Sans Ethiopic");
+pref("font.name.sans-serif.x-geor", "Noto Sans Georgian");
+pref("font.name.sans-serif.x-gujr", "Noto Sans Gujarati");
+pref("font.name.sans-serif.x-guru", "Noto Sans Gurmukhi");
+pref("font.name.sans-serif.x-khmr", "Noto Sans Khmer");
+pref("font.name.sans-serif.x-knda", "Noto Sans Kannada");
+pref("font.name.sans-serif.x-mlym", "Noto Sans Malayalam");
+pref("font.name.sans-serif.x-orya", "Noto Sans Oriya");
+pref("font.name.sans-serif.x-sinh", "Noto Sans Sinhala");
+pref("font.name.sans-serif.x-tamil", "Noto Sans Tamil");
+pref("font.name.sans-serif.x-telu", "Noto Sans Telugu");
+pref("font.name.sans-serif.x-tibt", "Noto Sans Tibetan");
+pref("font.name.sans-serif.x-unicode", "Arimo, Arial, Verdana");
+pref("font.name.sans-serif.x-western", "Arimo, Arial, Verdana");
+pref("font.name.sans-serif.zh-CN", "Noto Sans SC Regular");
+pref("font.name.sans-serif.zh-HK", "Noto Sans TC Regular");
+pref("font.name.sans-serif.zh-TW", "Noto Sans TC Regular");
+pref("font.name.sans.my", "Noto Sans Myanmar");
+pref("font.name.serif.ar", "Noto Naskh Arabic");
+pref("font.name.serif.el", "Tinos, Georgia");
+pref("font.name.serif.he", "Noto Sans Hebrew");
+pref("font.name.serif.ja", "Noto Sans JP Regular");
+pref("font.name.serif.ko", "Noto Sans KR Regular");
+pref("font.name.serif.my", "Noto Sans Myanmar");
+pref("font.name.serif.th", "Noto Serif Thai");
+pref("font.name.serif.x-armn", "Noto Serif Armenian");
+pref("font.name.serif.x-beng", "Noto Sans Bengali");
+pref("font.name.serif.x-cyrillic", "Tinos, Georgia");
+pref("font.name.serif.x-devanagari", "Noto Sans Devanagari");
+pref("font.name.serif.x-ethi", "Noto Sans Ethiopic");
+pref("font.name.serif.x-geor", "Noto Sans Georgian");
+pref("font.name.serif.x-gujr", "Noto Sans Gujarati");
+pref("font.name.serif.x-guru", "Noto Sans Gurmukhi");
+pref("font.name.serif.x-khmr", "Noto Serif Khmer");
+pref("font.name.serif.x-knda", "Noto Sans Kannada");
+pref("font.name.serif.x-mlym", "Noto Sans Malayalam");
+pref("font.name.serif.x-orya", "Noto Sans Oriya");
+pref("font.name.serif.x-sinh", "Noto Sans Sinhala");
+pref("font.name.serif.x-tamil", "Noto Sans Tamil");
+pref("font.name.serif.x-telu", "Noto Sans Telugu");
+pref("font.name.serif.x-tibt", "Noto Sans Tibetan");
+pref("font.name.serif.x-unicode", "Tinos, Georgia");
+pref("font.name.serif.x-western", "Tinos, Georgia");
+pref("font.name.serif.zh-CN", "Noto Sans SC Regular");
+pref("font.name.serif.zh-HK", "Noto Sans TC Regular");
+pref("font.name.serif.zh-TW", "Noto Sans TC Regular");
+#endif
+#endif
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
index 6bd3d6131589..810be1361771 100644
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -53,9 +53,9 @@ pref("extensions.recommendations.themeRecommendationUrl", "https://color.firefox
pref("extensions.update.autoUpdateDefault", true);
-// Check AUS for system add-on updates.
-pref("extensions.systemAddon.update.url", "https://aus5.mozilla.org/update/3/SystemAddons/%VERSION%/%BUILD_ID%/%BUILD_…");
-pref("extensions.systemAddon.update.enabled", true);
+// No AUS check for system add-on updates for Tor Browser users.
+pref("extensions.systemAddon.update.url", "");
+pref("extensions.systemAddon.update.enabled", false);
// Disable add-ons that are not installed by the user in all scopes by default.
// See the SCOPE constants in AddonManager.jsm for values to use here.
diff --git a/browser/installer/package-manifest.in b/browser/installer/package-manifest.in
index e011b74cc4b4..7deaf1b51f9a 100644
--- a/browser/installer/package-manifest.in
+++ b/browser/installer/package-manifest.in
@@ -292,6 +292,7 @@
@RESPATH@/browser/defaults/settings/pinning
@RESPATH@/browser/defaults/settings/main
@RESPATH@/browser/defaults/settings/security-state
+@RESPATH@/browser/@PREF_DIR@/000-tor-browser.js
; Warning: changing the path to channel-prefs.js can cause bugs (Bug 756325)
; Technically this is an app pref file, but we are keeping it in the original
diff --git a/browser/moz.build b/browser/moz.build
index cfbfea4f31f2..19977e036fba 100644
--- a/browser/moz.build
+++ b/browser/moz.build
@@ -53,6 +53,7 @@ if CONFIG['MOZ_GPSD']:
# These files are specified in this moz.build to pick up DIST_SUBDIR as set in
# this directory, which is un-set in browser/app.
JS_PREFERENCE_PP_FILES += [
+ 'app/profile/000-tor-browser.js',
'app/profile/firefox.js',
]
FINAL_TARGET_FILES.defaults += ['app/permissions']
diff --git a/mobile/android/app/000-tor-browser-android.js b/mobile/android/app/000-tor-browser-android.js
new file mode 100644
index 000000000000..61c8a0cd7fa1
--- /dev/null
+++ b/mobile/android/app/000-tor-browser-android.js
@@ -0,0 +1,47 @@
+// Import all prefs from the canonical file
+// We override mobile-specific prefs below
+// Tor Browser for Android
+// Do not edit this file.
+
+#include ../../../browser/app/profile/000-tor-browser.js
+
+// Space separated list of URLs that are allowed to send objects (instead of
+// only strings) through webchannels. This list is duplicated in browser/app/profile/firefox.js
+pref("webchannel.allowObject.urlWhitelist", "");
+
+// Disable browser auto updaters
+pref("app.update.auto", false);
+pref("browser.startup.homepage_override.mstone", "ignore");
+
+// Clear data on quit
+pref("privacy.clearOnShutdown.cache", true);
+pref("privacy.clearOnShutdown.cookies",true);
+pref("privacy.clearOnShutdown.downloads",true);
+pref("privacy.clearOnShutdown.formdata",true);
+pref("privacy.clearOnShutdown.history",true);
+pref("privacy.clearOnShutdown.offlineApps",true);
+pref("privacy.clearOnShutdown.passwords",true);
+pref("privacy.clearOnShutdown.sessions",true);
+pref("privacy.clearOnShutdown.siteSettings",true);
+
+// controls if we want camera support
+pref("media.realtime_decoder.enabled", false);
+
+// Enable touch events on Android (highlighting text, etc)
+pref("dom.w3c_touch_events.enabled", 2);
+
+// Ensure that pointer events are disabled
+pref("dom.w3c_pointer_events.multiprocess.android.enabled", false);
+
+// No HLS support for now due to browser freezing, see: #29859.
+pref("media.hls.enabled", false);
+
+// Inherit locale from the OS, used for multi-locale builds
+pref("intl.locale.requested", "");
+
+// Disable WebAuthn. It requires Google Play Services, so it isn't
+// available, but avoid any potential problems.
+pref("security.webauth.webauthn_enable_android_fido2", false);
+
+// Disable the External App Blocker on Android
+pref("extensions.torbutton.launch_warning", false);
diff --git a/mobile/android/app/geckoview-prefs.js b/mobile/android/app/geckoview-prefs.js
index 3d3871975a28..826970425362 100644
--- a/mobile/android/app/geckoview-prefs.js
+++ b/mobile/android/app/geckoview-prefs.js
@@ -91,3 +91,5 @@ pref("toolkit.autocomplete.delegate", true);
// Android doesn't support the new sync storage yet, we will have our own in
// Bug 1625257.
pref("webextensions.storage.sync.kinto", true);
+
+#include 000-tor-browser-android.js
diff --git a/mobile/android/app/mobile.js b/mobile/android/app/mobile.js
index dc1385a36b86..a33666d4cfcf 100644
--- a/mobile/android/app/mobile.js
+++ b/mobile/android/app/mobile.js
@@ -399,7 +399,11 @@ pref("app.update.timerMinimumDelay", 30); // seconds
// used by update service to decide whether or not to
// automatically download an update
pref("app.update.autodownload", "wifi");
+#ifdef TOR_BROWSER_VERSION
+pref("app.update.url.android", "");
+#else
pref("app.update.url.android", "https://aus5.mozilla.org/update/4/%PRODUCT%/%VERSION%/%BUILD_ID%/%BUILD_TAR…");
+#endif
#ifdef MOZ_UPDATER
/* prefs used specifically for updating the app */
diff --git a/mobile/android/app/moz.build b/mobile/android/app/moz.build
index 65963fe448eb..4075e8a9d2c4 100644
--- a/mobile/android/app/moz.build
+++ b/mobile/android/app/moz.build
@@ -17,6 +17,7 @@ if CONFIG['MOZ_PKG_SPECIAL']:
DEFINES['MOZ_PKG_SPECIAL'] = CONFIG['MOZ_PKG_SPECIAL']
JS_PREFERENCE_PP_FILES += [
+ '000-tor-browser-android.js',
'mobile.js',
]
diff --git a/taskcluster/ci/source-test/mozlint.yml b/taskcluster/ci/source-test/mozlint.yml
index 6e3373dee6ec..42067fcf14a0 100644
--- a/taskcluster/ci/source-test/mozlint.yml
+++ b/taskcluster/ci/source-test/mozlint.yml
@@ -135,7 +135,9 @@ lintpref:
files-changed:
- 'modules/libpref/init/all.js'
- 'modules/libpref/init/StaticPrefList.yaml'
+ - 'browser/app/profile/000-tor-browser.js'
- 'browser/app/profile/firefox.js'
+ - 'mobile/android/app/000-tor-browser-android.js'
- 'mobile/android/app/mobile.js'
- 'devtools/client/preferences/debugger.js'
- 'mobile/android/app/geckoview-prefs.js'
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 1673237 - Always allow SVGs on about: pages r=acat, tjr, emilio
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 6cd70d7c4475897b7ae3512b55daa365c9aecd86
Author: sanketh <me(a)snkth.com>
Date: Tue Nov 3 17:34:20 2020 +0000
Bug 1673237 - Always allow SVGs on about: pages r=acat,tjr,emilio
- Updated layout/svg/tests/test_disabled.html to ensure that this doesn't allow
rendering SVGs on about:blank and about:srcdoc.
Differential Revision: https://phabricator.services.mozilla.com/D95139
---
dom/base/nsNodeInfoManager.cpp | 18 ++++++++++-------
layout/svg/tests/file_disabled_iframe.html | 31 +++++++++++++++++++++++++++++-
2 files changed, 41 insertions(+), 8 deletions(-)
diff --git a/dom/base/nsNodeInfoManager.cpp b/dom/base/nsNodeInfoManager.cpp
index b0534b661a23..8bc6b0ba2bd6 100644
--- a/dom/base/nsNodeInfoManager.cpp
+++ b/dom/base/nsNodeInfoManager.cpp
@@ -352,9 +352,12 @@ void nsNodeInfoManager::RemoveNodeInfo(NodeInfo* aNodeInfo) {
MOZ_ASSERT(ret, "Can't find mozilla::dom::NodeInfo to remove!!!");
}
-static bool IsSystemOrAddonPrincipal(nsIPrincipal* aPrincipal) {
+static bool IsSystemOrAddonOrAboutPrincipal(nsIPrincipal* aPrincipal) {
return aPrincipal->IsSystemPrincipal() ||
- BasePrincipal::Cast(aPrincipal)->AddonPolicy();
+ BasePrincipal::Cast(aPrincipal)->AddonPolicy() ||
+ // NOTE: about:blank and about:srcdoc inherit the principal of their
+ // parent, so aPrincipal->SchemeIs("about") returns false for them.
+ aPrincipal->SchemeIs("about");
}
bool nsNodeInfoManager::InternalSVGEnabled() {
@@ -375,17 +378,18 @@ bool nsNodeInfoManager::InternalSVGEnabled() {
}
// We allow SVG (regardless of the pref) if this is a system or add-on
- // principal, or if this load was requested for a system or add-on principal
- // (e.g. a remote image being served as part of system or add-on UI)
+ // principal or about: page, or if this load was requested for a system or
+ // add-on principal or about: page (e.g. a remote image being served as part
+ // of system or add-on UI or about: page)
bool conclusion =
- (SVGEnabled || IsSystemOrAddonPrincipal(mPrincipal) ||
+ (SVGEnabled || IsSystemOrAddonOrAboutPrincipal(mPrincipal) ||
(loadInfo &&
(loadInfo->GetExternalContentPolicyType() ==
nsIContentPolicy::TYPE_IMAGE ||
loadInfo->GetExternalContentPolicyType() ==
nsIContentPolicy::TYPE_OTHER) &&
- (IsSystemOrAddonPrincipal(loadInfo->GetLoadingPrincipal()) ||
- IsSystemOrAddonPrincipal(loadInfo->TriggeringPrincipal()))));
+ (IsSystemOrAddonOrAboutPrincipal(loadInfo->GetLoadingPrincipal()) ||
+ IsSystemOrAddonOrAboutPrincipal(loadInfo->TriggeringPrincipal()))));
mSVGEnabled = Some(conclusion);
return conclusion;
}
diff --git a/layout/svg/tests/file_disabled_iframe.html b/layout/svg/tests/file_disabled_iframe.html
index 6feae3024730..55eda75fdefb 100644
--- a/layout/svg/tests/file_disabled_iframe.html
+++ b/layout/svg/tests/file_disabled_iframe.html
@@ -48,5 +48,34 @@
t.firstChild.firstChild.textContent = "1&2<3>4\xA0";
is(t.innerHTML, '<svg><style>1&2<3>4 \u003C/style></svg>');
- SimpleTest.finish();
+ //
+ // Tests for Bug 1673237
+ //
+
+ // This test fails if about:blank renders SVGs
+ t.innerHTML = null;
+ var iframe = document.createElement("iframe");
+ iframe.setAttribute("src", "about:blank")
+ t.appendChild(iframe);
+ iframe.appendChild(document.createElementNS("http://www.w3.org/2000/svg", "svg:svg"));
+ iframe.firstChild.textContent = "<foo>";
+ is(iframe.innerHTML, "<svg:svg><foo></svg:svg>");
+
+ // This test fails if about:blank renders SVGs
+ var win = window.open("about:blank");
+ win.document.body.appendChild(document.createElementNS("http://www.w3.org/2000/svg", "svg:svg"))
+ win.document.body.firstChild.textContent = "<foo>";
+ is(win.document.body.innerHTML, "<svg:svg><foo></svg:svg>");
+ win.close();
+
+ // This test fails if about:srcdoc renders SVGs
+ t.innerHTML = null;
+ iframe = document.createElement("iframe");
+ iframe.srcdoc = "<svg:svg></svg:svg>";
+ iframe.onload = function() {
+ iframe.contentDocument.body.firstChild.textContent = "<foo>";
+ is(iframe.contentDocument.body.innerHTML, "<svg:svg><foo></svg:svg>");
+ SimpleTest.finish();
+ }
+ t.appendChild(iframe);
</script>
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 16439: Remove screencasting code
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit f21dd37de99b780592ee08e53a6f3e1e3d3abc5f
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Wed Jun 24 11:01:11 2015 -0400
Bug 16439: Remove screencasting code
We avoid including the screencasting code on mobile (it got ripped out
for desktop in bug 1393582) by simply excluding the related JS modules
from Tor Browser.
---
toolkit/modules/moz.build | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/toolkit/modules/moz.build b/toolkit/modules/moz.build
index f000f35c126f..e1f1eb5759c5 100644
--- a/toolkit/modules/moz.build
+++ b/toolkit/modules/moz.build
@@ -260,10 +260,11 @@ if 'Android' != CONFIG['OS_TARGET']:
]
else:
DEFINES['ANDROID'] = True
- EXTRA_JS_MODULES += [
- 'secondscreen/RokuApp.jsm',
- 'secondscreen/SimpleServiceDiscovery.jsm',
- ]
+ if not CONFIG['TOR_BROWSER_VERSION']:
+ EXTRA_JS_MODULES += [
+ 'secondscreen/RokuApp.jsm',
+ 'secondscreen/SimpleServiceDiscovery.jsm',
+ ]
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 12974: Disable NTLM and Negotiate HTTP Auth
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit d85027a91b363528ee117a1a392954f634c6bc29
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Wed Aug 27 15:19:10 2014 -0700
Bug 12974: Disable NTLM and Negotiate HTTP Auth
This is technically an embargoed Mozilla bug, so I probably shouldn't provide
too many details.
Suffice to say that NTLM and Negotiate auth are bad for Tor users, and I doubt
very many (or any of them) actually need it.
The Mozilla bug is https://bugzilla.mozilla.org/show_bug.cgi?id=1046421
---
extensions/auth/nsHttpNegotiateAuth.cpp | 4 ++++
netwerk/protocol/http/nsHttpNTLMAuth.cpp | 3 +++
2 files changed, 7 insertions(+)
diff --git a/extensions/auth/nsHttpNegotiateAuth.cpp b/extensions/auth/nsHttpNegotiateAuth.cpp
index 99720475b9dd..1c08fcf3da7e 100644
--- a/extensions/auth/nsHttpNegotiateAuth.cpp
+++ b/extensions/auth/nsHttpNegotiateAuth.cpp
@@ -152,6 +152,10 @@ nsHttpNegotiateAuth::ChallengeReceived(nsIHttpAuthenticableChannel* authChannel,
nsIAuthModule* rawModule = (nsIAuthModule*)*continuationState;
*identityInvalid = false;
+
+ /* Always fail Negotiate auth for Tor Browser. We don't need it. */
+ return NS_ERROR_ABORT;
+
if (rawModule) {
return NS_OK;
}
diff --git a/netwerk/protocol/http/nsHttpNTLMAuth.cpp b/netwerk/protocol/http/nsHttpNTLMAuth.cpp
index 0a30de051014..891aaadfd758 100644
--- a/netwerk/protocol/http/nsHttpNTLMAuth.cpp
+++ b/netwerk/protocol/http/nsHttpNTLMAuth.cpp
@@ -168,6 +168,9 @@ nsHttpNTLMAuth::ChallengeReceived(nsIHttpAuthenticableChannel* channel,
*identityInvalid = false;
+ /* Always fail Negotiate auth for Tor Browser. We don't need it. */
+ return NS_ERROR_ABORT;
+
// Start a new auth sequence if the challenge is exactly "NTLM".
// If native NTLM auth apis are available and enabled through prefs,
// try to use them.
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 14631: Improve profile access error messages.
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 803035d971887cfd954d5247cf4f42595379ee7a
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Tue Feb 24 13:50:23 2015 -0500
Bug 14631: Improve profile access error messages.
Instead of always reporting that the profile is locked, display specific
messages for "access denied" and "read-only file system".
To allow for localization, get profile-related error strings from Torbutton.
Use app display name ("Tor Browser") in profile-related error alerts.
---
.../mozapps/profile/profileSelection.properties | 5 +
toolkit/profile/nsToolkitProfileService.cpp | 57 +++++++-
toolkit/profile/nsToolkitProfileService.h | 13 +-
toolkit/xre/nsAppRunner.cpp | 155 ++++++++++++++++++---
4 files changed, 207 insertions(+), 23 deletions(-)
diff --git a/toolkit/locales/en-US/chrome/mozapps/profile/profileSelection.properties b/toolkit/locales/en-US/chrome/mozapps/profile/profileSelection.properties
index 2be092bf4c4b..922b52cb1385 100644
--- a/toolkit/locales/en-US/chrome/mozapps/profile/profileSelection.properties
+++ b/toolkit/locales/en-US/chrome/mozapps/profile/profileSelection.properties
@@ -12,6 +12,11 @@ restartMessageUnlocker=%S is already running, but is not responding. The old %S
restartMessageNoUnlockerMac=A copy of %S is already open. Only one copy of %S can be open at a time.
restartMessageUnlockerMac=A copy of %S is already open. The running copy of %S will quit in order to open this one.
+# LOCALIZATION NOTE (profileProblemTitle, profileReadOnly, profileReadOnlyMac, profileAccessDenied): Messages displayed when the browser profile cannot be accessed or written to. %S is the application name.
+profileProblemTitle=%S Profile Problem
+profileReadOnly=You cannot run %S from a read-only file system. Please copy %S to another location before trying to use it.
+profileReadOnlyMac=You cannot run %S from a read-only file system. Please copy %S to your Desktop or Applications folder before trying to use it.
+profileAccessDenied=%S does not have permission to access the profile. Please adjust your file system permissions and try again.
# Profile manager
# LOCALIZATION NOTE (profileTooltip): First %S is the profile name, second %S is the path to the profile folder.
profileTooltip=Profile: ‘%S’ - Path: ‘%S’
diff --git a/toolkit/profile/nsToolkitProfileService.cpp b/toolkit/profile/nsToolkitProfileService.cpp
index a3e50f8c00d3..3f32bd95f9c9 100644
--- a/toolkit/profile/nsToolkitProfileService.cpp
+++ b/toolkit/profile/nsToolkitProfileService.cpp
@@ -1161,9 +1161,10 @@ nsToolkitProfileService::SelectStartupProfile(
}
bool wasDefault;
+ ProfileStatus profileStatus;
nsresult rv =
SelectStartupProfile(&argc, argv.get(), aIsResetting, aRootDir, aLocalDir,
- aProfile, aDidCreate, &wasDefault);
+ aProfile, aDidCreate, &wasDefault, profileStatus);
// Since we were called outside of the normal startup path complete any
// startup tasks.
@@ -1196,7 +1197,8 @@ nsToolkitProfileService::SelectStartupProfile(
nsresult nsToolkitProfileService::SelectStartupProfile(
int* aArgc, char* aArgv[], bool aIsResetting, nsIFile** aRootDir,
nsIFile** aLocalDir, nsIToolkitProfile** aProfile, bool* aDidCreate,
- bool* aWasDefaultSelection) {
+ bool* aWasDefaultSelection, ProfileStatus& aProfileStatus) {
+ aProfileStatus = PROFILE_STATUS_OK;
if (mStartupProfileSelected) {
return NS_ERROR_ALREADY_INITIALIZED;
}
@@ -1290,6 +1292,13 @@ nsresult nsToolkitProfileService::SelectStartupProfile(
rv = XRE_GetFileFromPath(arg, getter_AddRefs(lf));
NS_ENSURE_SUCCESS(rv, rv);
+ aProfileStatus = CheckProfileWriteAccess(lf);
+ if (PROFILE_STATUS_OK != aProfileStatus) {
+ NS_ADDREF(*aRootDir = lf);
+ NS_ADDREF(*aLocalDir = lf);
+ return NS_ERROR_FAILURE;
+ }
+
// Make sure that the profile path exists and it's a directory.
bool exists;
rv = lf->Exists(&exists);
@@ -2079,3 +2088,47 @@ nsresult XRE_GetFileFromPath(const char* aPath, nsIFile** aResult) {
# error Platform-specific logic needed here.
#endif
}
+
+// Check for write permission to the profile directory by trying to create a
+// new file (after ensuring that no file with the same name exists).
+ProfileStatus nsToolkitProfileService::CheckProfileWriteAccess(
+ nsIFile* aProfileDir) {
+#if defined(XP_UNIX)
+ NS_NAMED_LITERAL_STRING(writeTestFileName, ".parentwritetest");
+#else
+ NS_NAMED_LITERAL_STRING(writeTestFileName, "parent.writetest");
+#endif
+
+ nsCOMPtr<nsIFile> writeTestFile;
+ nsresult rv = aProfileDir->Clone(getter_AddRefs(writeTestFile));
+ if (NS_SUCCEEDED(rv)) rv = writeTestFile->Append(writeTestFileName);
+
+ if (NS_SUCCEEDED(rv)) {
+ bool doesExist = false;
+ rv = writeTestFile->Exists(&doesExist);
+ if (NS_SUCCEEDED(rv) && doesExist) rv = writeTestFile->Remove(true);
+ }
+
+ if (NS_SUCCEEDED(rv)) {
+ rv = writeTestFile->Create(nsIFile::NORMAL_FILE_TYPE, 0666);
+ (void)writeTestFile->Remove(true);
+ }
+
+ ProfileStatus status =
+ NS_SUCCEEDED(rv) ? PROFILE_STATUS_OK : PROFILE_STATUS_OTHER_ERROR;
+ if (NS_ERROR_FILE_ACCESS_DENIED == rv)
+ status = PROFILE_STATUS_ACCESS_DENIED;
+ else if (NS_ERROR_FILE_READ_ONLY == rv)
+ status = PROFILE_STATUS_READ_ONLY;
+
+ return status;
+}
+
+ProfileStatus nsToolkitProfileService::CheckProfileWriteAccess(
+ nsIToolkitProfile* aProfile) {
+ nsCOMPtr<nsIFile> profileDir;
+ nsresult rv = aProfile->GetRootDir(getter_AddRefs(profileDir));
+ if (NS_FAILED(rv)) return PROFILE_STATUS_OTHER_ERROR;
+
+ return CheckProfileWriteAccess(profileDir);
+}
diff --git a/toolkit/profile/nsToolkitProfileService.h b/toolkit/profile/nsToolkitProfileService.h
index f2a238312b95..cfb1964ee1d7 100644
--- a/toolkit/profile/nsToolkitProfileService.h
+++ b/toolkit/profile/nsToolkitProfileService.h
@@ -15,6 +15,14 @@
#include "nsProfileLock.h"
#include "nsINIParser.h"
+enum ProfileStatus {
+ PROFILE_STATUS_OK,
+ PROFILE_STATUS_ACCESS_DENIED,
+ PROFILE_STATUS_READ_ONLY,
+ PROFILE_STATUS_IS_LOCKED,
+ PROFILE_STATUS_OTHER_ERROR
+};
+
class nsToolkitProfile final
: public nsIToolkitProfile,
public mozilla::LinkedListElement<RefPtr<nsToolkitProfile>> {
@@ -79,10 +87,13 @@ class nsToolkitProfileService final : public nsIToolkitProfileService {
nsresult SelectStartupProfile(int* aArgc, char* aArgv[], bool aIsResetting,
nsIFile** aRootDir, nsIFile** aLocalDir,
nsIToolkitProfile** aProfile, bool* aDidCreate,
- bool* aWasDefaultSelection);
+ bool* aWasDefaultSelection,
+ ProfileStatus& aProfileStatus);
nsresult CreateResetProfile(nsIToolkitProfile** aNewProfile);
nsresult ApplyResetProfile(nsIToolkitProfile* aOldProfile);
void CompleteStartup();
+ static ProfileStatus CheckProfileWriteAccess(nsIToolkitProfile* aProfile);
+ static ProfileStatus CheckProfileWriteAccess(nsIFile* aProfileDir);
private:
friend class nsToolkitProfile;
diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
index 4afec36f57bc..3ba04d2b495c 100644
--- a/toolkit/xre/nsAppRunner.cpp
+++ b/toolkit/xre/nsAppRunner.cpp
@@ -1736,6 +1736,91 @@ nsresult LaunchChild(bool aBlankCommandLine) {
return NS_ERROR_LAUNCHED_CHILD_PROCESS;
}
+static nsresult GetOverrideStringBundleForLocale(nsIStringBundleService* aSBS,
+ const char* aTorbuttonURI,
+ const char* aLocale,
+ nsIStringBundle** aResult) {
+ NS_ENSURE_ARG(aSBS);
+ NS_ENSURE_ARG(aTorbuttonURI);
+ NS_ENSURE_ARG(aLocale);
+ NS_ENSURE_ARG(aResult);
+
+ const char* kFormatStr =
+ "jar:%s!/chrome/torbutton/locale/%s/torbutton.properties";
+ nsPrintfCString strBundleURL(kFormatStr, aTorbuttonURI, aLocale);
+ nsresult rv = aSBS->CreateBundle(strBundleURL.get(), aResult);
+ NS_ENSURE_SUCCESS(rv, rv);
+
+ // To ensure that we have a valid string bundle, try to retrieve a string
+ // that we know exists.
+ nsAutoString val;
+ rv = (*aResult)->GetStringFromName("profileProblemTitle", val);
+ if (!NS_SUCCEEDED(rv)) *aResult = nullptr; // No good. Discard it.
+
+ return rv;
+}
+
+static void GetOverrideStringBundle(nsIStringBundleService* aSBS,
+ nsIStringBundle** aResult) {
+ if (!aSBS || !aResult) return;
+
+ *aResult = nullptr;
+
+ // Build Torbutton file URI string by starting from GREDir.
+ RefPtr<nsXREDirProvider> dirProvider = nsXREDirProvider::GetSingleton();
+ if (!dirProvider) return;
+
+ nsCOMPtr<nsIFile> greDir = dirProvider->GetGREDir();
+ if (!greDir) return;
+
+ // Create file URI, extract as string, and append omni.ja relative path.
+ nsCOMPtr<nsIURI> uri;
+ nsAutoCString uriString;
+ if (NS_FAILED(NS_NewFileURI(getter_AddRefs(uri), greDir)) ||
+ NS_FAILED(uri->GetSpec(uriString))) {
+ return;
+ }
+
+ uriString.Append("omni.ja");
+
+ nsAutoCString userAgentLocale;
+ if (!NS_SUCCEEDED(
+ Preferences::GetCString("intl.locale.requested", userAgentLocale))) {
+ return;
+ }
+
+ nsresult rv = GetOverrideStringBundleForLocale(
+ aSBS, uriString.get(), userAgentLocale.get(), aResult);
+ if (NS_FAILED(rv)) {
+ // Try again using base locale, e.g., "en" vs. "en-US".
+ int16_t offset = userAgentLocale.FindChar('-', 1);
+ if (offset > 0) {
+ nsAutoCString shortLocale(Substring(userAgentLocale, 0, offset));
+ rv = GetOverrideStringBundleForLocale(aSBS, uriString.get(),
+ shortLocale.get(), aResult);
+ }
+ }
+}
+
+static nsresult GetFormattedString(nsIStringBundle* aOverrideBundle,
+ nsIStringBundle* aMainBundle,
+ const char* aName,
+ const nsTArray<nsString>& aParams,
+ nsAString& aResult) {
+ NS_ENSURE_ARG(aName);
+
+ nsresult rv = NS_ERROR_FAILURE;
+ if (aOverrideBundle) {
+ rv = aOverrideBundle->FormatStringFromName(aName, aParams, aResult);
+ }
+
+ // If string was not found in override bundle, use main (browser) bundle.
+ if (NS_FAILED(rv) && aMainBundle)
+ rv = aMainBundle->FormatStringFromName(aName, aParams, aResult);
+
+ return rv;
+}
+
static const char kProfileProperties[] =
"chrome://mozapps/locale/profile/profileSelection.properties";
@@ -1784,7 +1869,7 @@ static nsresult ProfileMissingDialog(nsINativeAppSupport* aNative) {
sbs->CreateBundle(kProfileProperties, getter_AddRefs(sb));
NS_ENSURE_TRUE_LOG(sbs, NS_ERROR_FAILURE);
- NS_ConvertUTF8toUTF16 appName(gAppData->name);
+ NS_ConvertUTF8toUTF16 appName(MOZ_APP_DISPLAYNAME);
AutoTArray<nsString, 2> params = {appName, appName};
// profileMissing
@@ -1806,11 +1891,12 @@ static nsresult ProfileMissingDialog(nsINativeAppSupport* aNative) {
}
}
-static ReturnAbortOnError ProfileLockedDialog(nsIFile* aProfileDir,
- nsIFile* aProfileLocalDir,
- nsIProfileUnlocker* aUnlocker,
- nsINativeAppSupport* aNative,
- nsIProfileLock** aResult) {
+static ReturnAbortOnError ProfileErrorDialog(nsIFile* aProfileDir,
+ nsIFile* aProfileLocalDir,
+ ProfileStatus aStatus,
+ nsIProfileUnlocker* aUnlocker,
+ nsINativeAppSupport* aNative,
+ nsIProfileLock** aResult) {
nsresult rv;
bool exists;
@@ -1838,24 +1924,39 @@ static ReturnAbortOnError ProfileLockedDialog(nsIFile* aProfileDir,
sbs->CreateBundle(kProfileProperties, getter_AddRefs(sb));
NS_ENSURE_TRUE_LOG(sbs, NS_ERROR_FAILURE);
- NS_ConvertUTF8toUTF16 appName(gAppData->name);
+ nsCOMPtr<nsIStringBundle> overrideSB;
+ GetOverrideStringBundle(sbs, getter_AddRefs(overrideSB));
+
+ NS_ConvertUTF8toUTF16 appName(MOZ_APP_DISPLAYNAME);
AutoTArray<nsString, 3> params = {appName, appName, appName};
nsAutoString killMessage;
#ifndef XP_MACOSX
- rv = sb->FormatStringFromName(
- aUnlocker ? "restartMessageUnlocker" : "restartMessageNoUnlocker2",
- params, killMessage);
+ static const char kRestartUnlocker[] = "restartMessageUnlocker";
+ static const char kRestartNoUnlocker[] = "restartMessageNoUnlocker2";
+ static const char kReadOnly[] = "profileReadOnly";
#else
- rv = sb->FormatStringFromName(
- aUnlocker ? "restartMessageUnlockerMac" : "restartMessageNoUnlockerMac",
- params, killMessage);
+ static const char kRestartUnlocker[] = "restartMessageUnlockerMac";
+ static const char kRestartNoUnlocker[] = "restartMessageNoUnlockerMac";
+ static const char kReadOnly[] = "profileReadOnlyMac";
#endif
+ static const char kAccessDenied[] = "profileAccessDenied";
+
+ const char* errorKey = aUnlocker ? kRestartUnlocker : kRestartNoUnlocker;
+ if (PROFILE_STATUS_READ_ONLY == aStatus)
+ errorKey = kReadOnly;
+ else if (PROFILE_STATUS_ACCESS_DENIED == aStatus)
+ errorKey = kAccessDenied;
+ rv = GetFormattedString(overrideSB, sb, errorKey, params, killMessage);
NS_ENSURE_SUCCESS(rv, NS_ERROR_FAILURE);
+ const char* titleKey = ((PROFILE_STATUS_READ_ONLY == aStatus) ||
+ (PROFILE_STATUS_ACCESS_DENIED == aStatus))
+ ? "profileProblemTitle"
+ : "restartTitle";
params.SetLength(1);
nsAutoString killTitle;
- rv = sb->FormatStringFromName("restartTitle", params, killTitle);
+ rv = sb->FormatStringFromName(titleKey, params, killTitle);
NS_ENSURE_SUCCESS(rv, NS_ERROR_FAILURE);
if (gfxPlatform::IsHeadless()) {
@@ -2013,6 +2114,13 @@ static nsCOMPtr<nsIToolkitProfile> gResetOldProfile;
static nsresult LockProfile(nsINativeAppSupport* aNative, nsIFile* aRootDir,
nsIFile* aLocalDir, nsIToolkitProfile* aProfile,
nsIProfileLock** aResult) {
+ ProfileStatus status =
+ (aProfile ? nsToolkitProfileService::CheckProfileWriteAccess(aProfile)
+ : nsToolkitProfileService::CheckProfileWriteAccess(aRootDir));
+ if (PROFILE_STATUS_OK != status)
+ return ProfileErrorDialog(aRootDir, aLocalDir, status, nullptr, aNative,
+ aResult);
+
// If you close Firefox and very quickly reopen it, the old Firefox may
// still be closing down. Rather than immediately showing the
// "Firefox is running but is not responding" message, we spend a few
@@ -2039,7 +2147,8 @@ static nsresult LockProfile(nsINativeAppSupport* aNative, nsIFile* aRootDir,
} while (TimeStamp::Now() - start <
TimeDuration::FromSeconds(kLockRetrySeconds));
- return ProfileLockedDialog(aRootDir, aLocalDir, unlocker, aNative, aResult);
+ return ProfileErrorDialog(aRootDir, aLocalDir, PROFILE_STATUS_IS_LOCKED,
+ unlocker, aNative, aResult);
}
// Pick a profile. We need to end up with a profile root dir, local dir and
@@ -2054,7 +2163,8 @@ static nsresult LockProfile(nsINativeAppSupport* aNative, nsIFile* aRootDir,
static nsresult SelectProfile(nsToolkitProfileService* aProfileSvc,
nsINativeAppSupport* aNative, nsIFile** aRootDir,
nsIFile** aLocalDir, nsIToolkitProfile** aProfile,
- bool* aWasDefaultSelection) {
+ bool* aWasDefaultSelection,
+ nsIProfileLock** aResult) {
StartupTimeline::Record(StartupTimeline::SELECT_PROFILE);
nsresult rv;
@@ -2100,9 +2210,14 @@ static nsresult SelectProfile(nsToolkitProfileService* aProfileSvc,
// Ask the profile manager to select the profile directories to use.
bool didCreate = false;
- rv = aProfileSvc->SelectStartupProfile(&gArgc, gArgv, gDoProfileReset,
- aRootDir, aLocalDir, aProfile,
- &didCreate, aWasDefaultSelection);
+ ProfileStatus profileStatus = PROFILE_STATUS_OK;
+ rv = aProfileSvc->SelectStartupProfile(
+ &gArgc, gArgv, gDoProfileReset, aRootDir, aLocalDir, aProfile, &didCreate,
+ aWasDefaultSelection, profileStatus);
+ if (PROFILE_STATUS_OK != profileStatus) {
+ return ProfileErrorDialog(*aRootDir, *aLocalDir, profileStatus, nullptr,
+ aNative, aResult);
+ }
if (rv == NS_ERROR_SHOW_PROFILE_MANAGER) {
return ShowProfileManager(aProfileSvc, aNative);
@@ -3932,7 +4047,7 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
nsCOMPtr<nsIToolkitProfile> profile;
rv = SelectProfile(mProfileSvc, mNativeApp, getter_AddRefs(mProfD),
getter_AddRefs(mProfLD), getter_AddRefs(profile),
- &wasDefaultSelection);
+ &wasDefaultSelection, getter_AddRefs(mProfileLock));
if (rv == NS_ERROR_LAUNCHED_CHILD_PROCESS || rv == NS_ERROR_ABORT) {
*aExitFlag = true;
return 0;
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 13028: Prevent potential proxy bypass cases.
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 6f5926b65ad20e64c50b64501bcff04c1ff37020
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Mon Sep 29 14:30:19 2014 -0700
Bug 13028: Prevent potential proxy bypass cases.
It looks like these cases should only be invoked in the NSS command line
tools, and not the browser, but I decided to patch them anyway because there
literally is a maze of network function pointers being passed around, and it's
very hard to tell if some random code might not pass in the proper proxied
versions of the networking code here by accident.
---
security/nss/lib/certhigh/ocsp.c | 8 ++++++++
.../lib/libpkix/pkix_pl_nss/module/pkix_pl_socket.c | 21 +++++++++++++++++++++
2 files changed, 29 insertions(+)
diff --git a/security/nss/lib/certhigh/ocsp.c b/security/nss/lib/certhigh/ocsp.c
index cea8456606bf..86fa971cfbef 100644
--- a/security/nss/lib/certhigh/ocsp.c
+++ b/security/nss/lib/certhigh/ocsp.c
@@ -2932,6 +2932,14 @@ ocsp_ConnectToHost(const char *host, PRUint16 port)
PRNetAddr addr;
char *netdbbuf = NULL;
+ // XXX: Do we need a unittest ifdef here? We don't want to break the tests, but
+ // we want to ensure nothing can ever hit this code in production.
+#if 1
+ printf("Tor Browser BUG: Attempted OSCP direct connect to %s, port %u\n", host,
+ port);
+ goto loser;
+#endif
+
sock = PR_NewTCPSocket();
if (sock == NULL)
goto loser;
diff --git a/security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_socket.c b/security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_socket.c
index e8698376b5be..85791d84a932 100644
--- a/security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_socket.c
+++ b/security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_socket.c
@@ -1334,6 +1334,13 @@ pkix_pl_Socket_Create(
plContext),
PKIX_COULDNOTCREATESOCKETOBJECT);
+ // XXX: Do we need a unittest ifdef here? We don't want to break the tests, but
+ // we want to ensure nothing can ever hit this code in production.
+#if 1
+ printf("Tor Browser BUG: Attempted pkix direct socket connect\n");
+ PKIX_ERROR(PKIX_PRNEWTCPSOCKETFAILED);
+#endif
+
socket->isServer = isServer;
socket->timeout = timeout;
socket->clientSock = NULL;
@@ -1433,6 +1440,13 @@ pkix_pl_Socket_CreateByName(
localCopyName = PL_strdup(serverName);
+ // XXX: Do we need a unittest ifdef here? We don't want to break the tests, but
+ // we want to ensure nothing can ever hit this code in production.
+#if 1
+ printf("Tor Browser BUG: Attempted pkix direct connect to %s\n", serverName);
+ PKIX_ERROR(PKIX_PRNEWTCPSOCKETFAILED);
+#endif
+
sepPtr = strchr(localCopyName, ':');
/* First strip off the portnum, if present, from the end of the name */
if (sepPtr) {
@@ -1582,6 +1596,13 @@ pkix_pl_Socket_CreateByHostAndPort(
PKIX_ENTER(SOCKET, "pkix_pl_Socket_CreateByHostAndPort");
PKIX_NULLCHECK_THREE(hostname, pStatus, pSocket);
+ // XXX: Do we need a unittest ifdef here? We don't want to break the tests, but
+ // we want to ensure nothing can ever hit this code in production.
+#if 1
+ printf("Tor Browser BUG: Attempted pkix direct connect to %s, port %u\n", hostname,
+ portnum);
+ PKIX_ERROR(PKIX_PRNEWTCPSOCKETFAILED);
+#endif
prstatus = PR_GetHostByName(hostname, buf, sizeof(buf), &hostent);
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 9173: Change the default Firefox profile directory to be TBB-relative.
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 748ca8d77979d7603e601f3c6d23f16b7a4cbd39
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Fri Oct 18 15:20:06 2013 -0400
Bug 9173: Change the default Firefox profile directory to be TBB-relative.
This should eliminate our need to rely on a wrapper script that
sets /Users/arthur and launches Firefox with -profile.
---
toolkit/profile/nsToolkitProfileService.cpp | 5 +-
toolkit/xre/nsAppRunner.cpp | 2 +-
toolkit/xre/nsConsoleWriter.cpp | 2 +-
toolkit/xre/nsXREDirProvider.cpp | 150 ++++++----------------------
toolkit/xre/nsXREDirProvider.h | 16 +--
xpcom/io/nsAppFileLocationProvider.cpp | 97 +++++++-----------
6 files changed, 84 insertions(+), 188 deletions(-)
diff --git a/toolkit/profile/nsToolkitProfileService.cpp b/toolkit/profile/nsToolkitProfileService.cpp
index dc4811313b5e..a3e50f8c00d3 100644
--- a/toolkit/profile/nsToolkitProfileService.cpp
+++ b/toolkit/profile/nsToolkitProfileService.cpp
@@ -723,10 +723,11 @@ nsresult nsToolkitProfileService::Init() {
NS_ASSERTION(gDirServiceProvider, "No dirserviceprovider!");
nsresult rv;
- rv = nsXREDirProvider::GetUserAppDataDirectory(getter_AddRefs(mAppData));
+ rv = gDirServiceProvider->GetUserAppDataDirectory(getter_AddRefs(mAppData));
NS_ENSURE_SUCCESS(rv, rv);
- rv = nsXREDirProvider::GetUserLocalDataDirectory(getter_AddRefs(mTempData));
+ rv =
+ gDirServiceProvider->GetUserLocalDataDirectory(getter_AddRefs(mTempData));
NS_ENSURE_SUCCESS(rv, rv);
rv = mAppData->Clone(getter_AddRefs(mProfileDBFile));
diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
index ef72d1bf4fb2..4afec36f57bc 100644
--- a/toolkit/xre/nsAppRunner.cpp
+++ b/toolkit/xre/nsAppRunner.cpp
@@ -3187,7 +3187,7 @@ int XREMain::XRE_mainInit(bool* aExitFlag) {
if ((mAppData->flags & NS_XRE_ENABLE_CRASH_REPORTER) &&
NS_SUCCEEDED(CrashReporter::SetExceptionHandler(xreBinDirectory))) {
nsCOMPtr<nsIFile> file;
- rv = nsXREDirProvider::GetUserAppDataDirectory(getter_AddRefs(file));
+ rv = mDirProvider.GetUserAppDataDirectory(getter_AddRefs(file));
if (NS_SUCCEEDED(rv)) {
CrashReporter::SetUserAppDataDirectory(file);
}
diff --git a/toolkit/xre/nsConsoleWriter.cpp b/toolkit/xre/nsConsoleWriter.cpp
index 0a2c0c342893..46735a293a00 100644
--- a/toolkit/xre/nsConsoleWriter.cpp
+++ b/toolkit/xre/nsConsoleWriter.cpp
@@ -29,7 +29,7 @@ void WriteConsoleLog() {
} else {
if (!gLogConsoleErrors) return;
- rv = nsXREDirProvider::GetUserAppDataDirectory(getter_AddRefs(lfile));
+ rv = gDirServiceProvider->GetUserAppDataDirectory(getter_AddRefs(lfile));
if (NS_FAILED(rv)) return;
lfile->AppendNative(NS_LITERAL_CSTRING("console.log"));
diff --git a/toolkit/xre/nsXREDirProvider.cpp b/toolkit/xre/nsXREDirProvider.cpp
index 62b5694e99e8..accdcfe7c0b0 100644
--- a/toolkit/xre/nsXREDirProvider.cpp
+++ b/toolkit/xre/nsXREDirProvider.cpp
@@ -32,6 +32,7 @@
#include "nsArrayEnumerator.h"
#include "nsEnumeratorUtils.h"
#include "nsReadableUtils.h"
+#include "nsXPCOMPrivate.h" // for XPCOM_FILE_PATH_SEPARATOR
#include "SpecialSystemDirectory.h"
@@ -244,9 +245,6 @@ nsresult nsXREDirProvider::GetUserProfilesRootDir(nsIFile** aResult) {
nsresult rv = GetUserDataDirectory(getter_AddRefs(file), false);
if (NS_SUCCEEDED(rv)) {
-#if !defined(XP_UNIX) || defined(XP_MACOSX)
- rv = file->AppendNative(NS_LITERAL_CSTRING("Profiles"));
-#endif
// We must create the profile directory here if it does not exist.
nsresult tmp = EnsureDirectoryExists(file);
if (NS_FAILED(tmp)) {
@@ -262,9 +260,6 @@ nsresult nsXREDirProvider::GetUserProfilesLocalDir(nsIFile** aResult) {
nsresult rv = GetUserDataDirectory(getter_AddRefs(file), true);
if (NS_SUCCEEDED(rv)) {
-#if !defined(XP_UNIX) || defined(XP_MACOSX)
- rv = file->AppendNative(NS_LITERAL_CSTRING("Profiles"));
-#endif
// We must create the profile directory here if it does not exist.
nsresult tmp = EnsureDirectoryExists(file);
if (NS_FAILED(tmp)) {
@@ -1378,7 +1373,7 @@ nsresult nsXREDirProvider::SetUserDataProfileDirectory(nsCOMPtr<nsIFile>& aFile,
nsresult nsXREDirProvider::GetUserDataDirectoryHome(nsIFile** aFile,
bool aLocal) {
// Copied from nsAppFileLocationProvider (more or less)
- nsresult rv;
+ NS_ENSURE_ARG_POINTER(aFile);
nsCOMPtr<nsIFile> localDir;
if (aLocal && gDataDirHomeLocal) {
@@ -1388,81 +1383,39 @@ nsresult nsXREDirProvider::GetUserDataDirectoryHome(nsIFile** aFile,
return gDataDirHome->Clone(aFile);
}
-#if defined(XP_MACOSX)
- FSRef fsRef;
- OSType folderType;
- if (aLocal) {
- folderType = kCachedDataFolderType;
- } else {
-# ifdef MOZ_THUNDERBIRD
- folderType = kDomainLibraryFolderType;
-# else
- folderType = kApplicationSupportFolderType;
-# endif
- }
- OSErr err = ::FSFindFolder(kUserDomain, folderType, kCreateFolder, &fsRef);
- NS_ENSURE_FALSE(err, NS_ERROR_FAILURE);
-
- rv = NS_NewNativeLocalFile(EmptyCString(), true, getter_AddRefs(localDir));
+ nsresult rv = GetAppDir()->Clone(getter_AddRefs(localDir));
NS_ENSURE_SUCCESS(rv, rv);
- nsCOMPtr<nsILocalFileMac> dirFileMac = do_QueryInterface(localDir);
- NS_ENSURE_TRUE(dirFileMac, NS_ERROR_UNEXPECTED);
-
- rv = dirFileMac->InitWithFSRef(&fsRef);
- NS_ENSURE_SUCCESS(rv, rv);
+ int levelsToRemove = 1; // In FF21+, appDir points to browser subdirectory.
+#if defined(XP_MACOSX)
+ levelsToRemove += 2;
+#endif
+ while (localDir && (levelsToRemove > 0)) {
+ // When crawling up the hierarchy, components named "." do not count.
+ nsAutoCString removedName;
+ rv = localDir->GetNativeLeafName(removedName);
+ NS_ENSURE_SUCCESS(rv, rv);
+ bool didRemove = !removedName.Equals(".");
- localDir = dirFileMac;
-#elif defined(XP_IOS)
- nsAutoCString userDir;
- if (GetUIKitDirectory(aLocal, userDir)) {
- rv = NS_NewNativeLocalFile(userDir, true, getter_AddRefs(localDir));
- } else {
- rv = NS_ERROR_FAILURE;
- }
- NS_ENSURE_SUCCESS(rv, rv);
-#elif defined(XP_WIN)
- nsString path;
- if (aLocal) {
- rv = GetShellFolderPath(FOLDERID_LocalAppData, path);
- if (NS_FAILED(rv)) rv = GetRegWindowsAppDataFolder(aLocal, path);
- }
- if (!aLocal || NS_FAILED(rv)) {
- rv = GetShellFolderPath(FOLDERID_RoamingAppData, path);
- if (NS_FAILED(rv)) {
- if (!aLocal) rv = GetRegWindowsAppDataFolder(aLocal, path);
- }
+ // Remove a directory component.
+ nsCOMPtr<nsIFile> parentDir;
+ rv = localDir->GetParent(getter_AddRefs(parentDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+ localDir = parentDir;
+ if (didRemove) --levelsToRemove;
}
- NS_ENSURE_SUCCESS(rv, rv);
- rv = NS_NewLocalFile(path, true, getter_AddRefs(localDir));
-#elif defined(XP_UNIX)
- const char* homeDir = getenv("HOME");
- if (!homeDir || !*homeDir) return NS_ERROR_FAILURE;
+ if (!localDir) return NS_ERROR_FAILURE;
-# ifdef ANDROID /* We want (ProfD == ProfLD) on Android. */
- aLocal = false;
-# endif
+ rv = localDir->AppendRelativeNativePath(
+ NS_LITERAL_CSTRING("TorBrowser" XPCOM_FILE_PATH_SEPARATOR
+ "Data" XPCOM_FILE_PATH_SEPARATOR "Browser"));
+ NS_ENSURE_SUCCESS(rv, rv);
if (aLocal) {
- // If $XDG_CACHE_HOME is defined use it, otherwise use $HOME/.cache.
- const char* cacheHome = getenv("XDG_CACHE_HOME");
- if (cacheHome && *cacheHome) {
- rv = NS_NewNativeLocalFile(nsDependentCString(cacheHome), true,
- getter_AddRefs(localDir));
- } else {
- rv = NS_NewNativeLocalFile(nsDependentCString(homeDir), true,
- getter_AddRefs(localDir));
- if (NS_SUCCEEDED(rv))
- rv = localDir->AppendNative(NS_LITERAL_CSTRING(".cache"));
- }
- } else {
- rv = NS_NewNativeLocalFile(nsDependentCString(homeDir), true,
- getter_AddRefs(localDir));
+ rv = localDir->AppendNative(NS_LITERAL_CSTRING("Caches"));
+ NS_ENSURE_SUCCESS(rv, rv);
}
-#else
-# error "Don't know how to get product dir on your platform"
-#endif
NS_IF_ADDREF(*aFile = localDir);
return rv;
@@ -1645,39 +1598,23 @@ nsresult nsXREDirProvider::AppendProfilePath(nsIFile* aFile, bool aLocal) {
}
nsAutoCString profile;
- nsAutoCString appName;
- nsAutoCString vendor;
if (gAppData->profile) {
profile = gAppData->profile;
- } else {
- appName = gAppData->name;
- vendor = gAppData->vendor;
}
- nsresult rv = NS_OK;
+ nsresult rv = NS_ERROR_FAILURE;
#if defined(XP_MACOSX)
if (!profile.IsEmpty()) {
rv = AppendProfileString(aFile, profile.get());
- } else {
- // Note that MacOS ignores the vendor when creating the profile hierarchy -
- // all application preferences directories live alongside one another in
- // ~/Library/Application Support/
- rv = aFile->AppendNative(appName);
+ NS_ENSURE_SUCCESS(rv, rv);
}
- NS_ENSURE_SUCCESS(rv, rv);
#elif defined(XP_WIN)
if (!profile.IsEmpty()) {
rv = AppendProfileString(aFile, profile.get());
- } else {
- if (!vendor.IsEmpty()) {
- rv = aFile->AppendNative(vendor);
- NS_ENSURE_SUCCESS(rv, rv);
- }
- rv = aFile->AppendNative(appName);
+ NS_ENSURE_SUCCESS(rv, rv);
}
- NS_ENSURE_SUCCESS(rv, rv);
#elif defined(ANDROID)
// The directory used for storing profiles
@@ -1687,11 +1624,6 @@ nsresult nsXREDirProvider::AppendProfilePath(nsIFile* aFile, bool aLocal) {
rv = aFile->AppendNative(nsDependentCString("mozilla"));
NS_ENSURE_SUCCESS(rv, rv);
#elif defined(XP_UNIX)
- nsAutoCString folder;
- // Make it hidden (by starting with "."), except when local (the
- // profile is already under ~/.cache or XDG_CACHE_HOME).
- if (!aLocal) folder.Assign('.');
-
if (!profile.IsEmpty()) {
// Skip any leading path characters
const char* profileStart = profile.get();
@@ -1699,32 +1631,16 @@ nsresult nsXREDirProvider::AppendProfilePath(nsIFile* aFile, bool aLocal) {
// On the off chance that someone wanted their folder to be hidden don't
// let it become ".."
- if (*profileStart == '.' && !aLocal) profileStart++;
+ if (*profileStart == '.') profileStart++;
+ // Make it hidden (by starting with ".").
+ nsAutoCString folder(".");
folder.Append(profileStart);
ToLowerCase(folder);
rv = AppendProfileString(aFile, folder.BeginReading());
- } else {
- if (!vendor.IsEmpty()) {
- folder.Append(vendor);
- ToLowerCase(folder);
-
- rv = aFile->AppendNative(folder);
- NS_ENSURE_SUCCESS(rv, rv);
-
- folder.Truncate();
- }
-
- // This can be the case in tests.
- if (!appName.IsEmpty()) {
- folder.Append(appName);
- ToLowerCase(folder);
-
- rv = aFile->AppendNative(folder);
- }
+ NS_ENSURE_SUCCESS(rv, rv);
}
- NS_ENSURE_SUCCESS(rv, rv);
#else
# error "Don't know how to get profile path on your platform"
diff --git a/toolkit/xre/nsXREDirProvider.h b/toolkit/xre/nsXREDirProvider.h
index e55b4e153c56..b9678d4ec577 100644
--- a/toolkit/xre/nsXREDirProvider.h
+++ b/toolkit/xre/nsXREDirProvider.h
@@ -63,15 +63,19 @@ class nsXREDirProvider final : public nsIDirectoryServiceProvider2,
void DoShutdown();
- static nsresult GetUserAppDataDirectory(nsIFile** aFile) {
+ nsresult GetUserAppDataDirectory(nsIFile** aFile) {
return GetUserDataDirectory(aFile, false);
}
- static nsresult GetUserLocalDataDirectory(nsIFile** aFile) {
+ nsresult GetUserLocalDataDirectory(nsIFile** aFile) {
return GetUserDataDirectory(aFile, true);
}
// GetUserDataDirectory gets the profile path from gAppData.
- static nsresult GetUserDataDirectory(nsIFile** aFile, bool aLocal);
+
+ // This function now calls GetAppDir(), so it cannot be static anymore.
+ // The same happens with all the functions (in)directly calling this one (the
+ // rest of Get*Directory functions in this file)
+ nsresult GetUserDataDirectory(nsIFile** aFile, bool aLocal);
/* make sure you clone it, if you need to do stuff to it */
nsIFile* GetGREDir() { return mGREDir; }
@@ -112,9 +116,9 @@ class nsXREDirProvider final : public nsIDirectoryServiceProvider2,
protected:
nsresult GetFilesInternal(const char* aProperty,
nsISimpleEnumerator** aResult);
- static nsresult GetUserDataDirectoryHome(nsIFile** aFile, bool aLocal);
- static nsresult GetSysUserExtensionsDirectory(nsIFile** aFile);
- static nsresult GetSysUserExtensionsDevDirectory(nsIFile** aFile);
+ nsresult GetUserDataDirectoryHome(nsIFile** aFile, bool aLocal);
+ nsresult GetSysUserExtensionsDirectory(nsIFile** aFile);
+ nsresult GetSysUserExtensionsDevDirectory(nsIFile** aFile);
#if defined(XP_UNIX) || defined(XP_MACOSX)
static nsresult GetSystemExtensionsDirectory(nsIFile** aFile);
#endif
diff --git a/xpcom/io/nsAppFileLocationProvider.cpp b/xpcom/io/nsAppFileLocationProvider.cpp
index 915e8bc7361e..81551a8e3893 100644
--- a/xpcom/io/nsAppFileLocationProvider.cpp
+++ b/xpcom/io/nsAppFileLocationProvider.cpp
@@ -15,6 +15,7 @@
#include "nsSimpleEnumerator.h"
#include "prenv.h"
#include "nsCRT.h"
+#include "nsXPCOMPrivate.h" // for XPCOM_FILE_PATH_SEPARATOR
#if defined(MOZ_WIDGET_COCOA)
# include <Carbon/Carbon.h>
# include "nsILocalFileMac.h"
@@ -233,9 +234,8 @@ nsresult nsAppFileLocationProvider::CloneMozBinDirectory(nsIFile** aLocalFile) {
// GetProductDirectory - Gets the directory which contains the application data
// folder
//
-// UNIX : ~/.mozilla/
-// WIN : <Application Data folder on user's machine>\Mozilla
-// Mac : :Documents:Mozilla:
+// UNIX and WIN : <App Folder>/TorBrowser/Data/Browser
+// Mac : <App Folder>/../../TorBrowser/Data/Browser
//----------------------------------------------------------------------------------------
nsresult nsAppFileLocationProvider::GetProductDirectory(nsIFile** aLocalFile,
bool aLocal) {
@@ -247,49 +247,45 @@ nsresult nsAppFileLocationProvider::GetProductDirectory(nsIFile** aLocalFile,
bool exists;
nsCOMPtr<nsIFile> localDir;
-#if defined(MOZ_WIDGET_COCOA)
- FSRef fsRef;
- OSType folderType =
- aLocal ? (OSType)kCachedDataFolderType : (OSType)kDomainLibraryFolderType;
- OSErr err = ::FSFindFolder(kUserDomain, folderType, kCreateFolder, &fsRef);
- if (err) {
- return NS_ERROR_FAILURE;
+ rv = CloneMozBinDirectory(getter_AddRefs(localDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+
+ int levelsToRemove = 1; // In FF21+, bin dir points to browser subdirectory.
+#if defined(XP_MACOSX)
+ levelsToRemove += 2;
+#endif
+ while (localDir && (levelsToRemove > 0)) {
+ // When crawling up the hierarchy, components named "." do not count.
+ nsAutoCString removedName;
+ rv = localDir->GetNativeLeafName(removedName);
+ NS_ENSURE_SUCCESS(rv, rv);
+ bool didRemove = !removedName.Equals(".");
+
+ // Remove a directory component.
+ nsCOMPtr<nsIFile> parentDir;
+ rv = localDir->GetParent(getter_AddRefs(parentDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+ localDir = parentDir;
+
+ if (didRemove) {
+ --levelsToRemove;
+ }
}
- NS_NewLocalFile(EmptyString(), true, getter_AddRefs(localDir));
+
if (!localDir) {
return NS_ERROR_FAILURE;
}
- nsCOMPtr<nsILocalFileMac> localDirMac(do_QueryInterface(localDir));
- rv = localDirMac->InitWithFSRef(&fsRef);
- if (NS_FAILED(rv)) {
- return rv;
- }
-#elif defined(XP_WIN)
- nsCOMPtr<nsIProperties> directoryService =
- do_GetService(NS_DIRECTORY_SERVICE_CONTRACTID, &rv);
- if (NS_FAILED(rv)) {
- return rv;
- }
- const char* prop = aLocal ? NS_WIN_LOCAL_APPDATA_DIR : NS_WIN_APPDATA_DIR;
- rv = directoryService->Get(prop, NS_GET_IID(nsIFile),
- getter_AddRefs(localDir));
- if (NS_FAILED(rv)) {
- return rv;
- }
-#elif defined(XP_UNIX)
- rv = NS_NewNativeLocalFile(nsDependentCString(PR_GetEnv("HOME")), true,
- getter_AddRefs(localDir));
- if (NS_FAILED(rv)) {
- return rv;
- }
-#else
-# error dont_know_how_to_get_product_dir_on_your_platform
-#endif
- rv = localDir->AppendRelativeNativePath(DEFAULT_PRODUCT_DIR);
- if (NS_FAILED(rv)) {
- return rv;
+ rv = localDir->AppendRelativeNativePath(
+ NS_LITERAL_CSTRING("TorBrowser" XPCOM_FILE_PATH_SEPARATOR
+ "Data" XPCOM_FILE_PATH_SEPARATOR "Browser"));
+ NS_ENSURE_SUCCESS(rv, rv);
+
+ if (aLocal) {
+ rv = localDir->AppendNative(NS_LITERAL_CSTRING("Caches"));
+ NS_ENSURE_SUCCESS(rv, rv);
}
+
rv = localDir->Exists(&exists);
if (NS_SUCCEEDED(rv) && !exists) {
@@ -308,10 +304,6 @@ nsresult nsAppFileLocationProvider::GetProductDirectory(nsIFile** aLocalFile,
//----------------------------------------------------------------------------------------
// GetDefaultUserProfileRoot - Gets the directory which contains each user
// profile dir
-//
-// UNIX : ~/.mozilla/
-// WIN : <Application Data folder on user's machine>\Mozilla\Profiles
-// Mac : :Documents:Mozilla:Profiles:
//----------------------------------------------------------------------------------------
nsresult nsAppFileLocationProvider::GetDefaultUserProfileRoot(
nsIFile** aLocalFile, bool aLocal) {
@@ -327,23 +319,6 @@ nsresult nsAppFileLocationProvider::GetDefaultUserProfileRoot(
return rv;
}
-#if defined(MOZ_WIDGET_COCOA) || defined(XP_WIN)
- // These 3 platforms share this part of the path - do them as one
- rv = localDir->AppendRelativeNativePath(NS_LITERAL_CSTRING("Profiles"));
- if (NS_FAILED(rv)) {
- return rv;
- }
-
- bool exists;
- rv = localDir->Exists(&exists);
- if (NS_SUCCEEDED(rv) && !exists) {
- rv = localDir->Create(nsIFile::DIRECTORY_TYPE, 0775);
- }
- if (NS_FAILED(rv)) {
- return rv;
- }
-#endif
-
localDir.forget(aLocalFile);
return rv;
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 11641: change TBB directory structure to be more like Firefox's
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 92d325f3a376828ccd8171ae95d7e4fea22f98e5
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Tue Apr 29 13:08:24 2014 -0400
Bug 11641: change TBB directory structure to be more like Firefox's
Unless the -osint command line flag is used, the browser now defaults
to the equivalent of -no-remote. There is a new -allow-remote flag that
may be used to restore the original (Firefox-like) default behavior.
---
toolkit/xre/nsAppRunner.cpp | 21 ++++++++++++++++-----
1 file changed, 16 insertions(+), 5 deletions(-)
diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
index 8e76213e7923..1fd397f4aae8 100644
--- a/toolkit/xre/nsAppRunner.cpp
+++ b/toolkit/xre/nsAppRunner.cpp
@@ -1434,8 +1434,10 @@ static void DumpHelp() {
" --migration Start with migration wizard.\n"
" --ProfileManager Start with ProfileManager.\n"
#ifdef MOZ_HAS_REMOTE
- " --no-remote Do not accept or send remote commands; implies\n"
+ " --no-remote (default) Do not accept or send remote commands; "
+ "implies\n"
" --new-instance.\n"
+ " --allow-remote Accept and send remote commands.\n"
" --new-instance Open new instance, not a new window in running "
"instance.\n"
#endif
@@ -3548,16 +3550,25 @@ int XREMain::XRE_mainInit(bool* aExitFlag) {
gSafeMode);
#if defined(MOZ_HAS_REMOTE)
+ // In Tor Browser, remoting is disabled by default unless -osint is used.
+ bool allowRemote = (CheckArg("allow-remote") == ARG_FOUND);
+ bool isOsint = (CheckArg("osint", nullptr, CheckArgFlag::None) == ARG_FOUND);
+ if (!allowRemote && !isOsint) {
+ SaveToEnv("MOZ_NO_REMOTE=1");
+ }
// Handle --no-remote and --new-instance command line arguments. Setup
// the environment to better accommodate other components and various
// restart scenarios.
ar = CheckArg("no-remote");
- if (ar == ARG_FOUND || EnvHasValue("MOZ_NO_REMOTE")) {
+ if ((ar == ARG_FOUND) && allowRemote) {
+ PR_fprintf(PR_STDERR,
+ "Error: argument --no-remote is invalid when argument "
+ "--allow-remote is specified\n");
+ return 1;
+ }
+ if (EnvHasValue("MOZ_NO_REMOTE")) {
mDisableRemoteClient = true;
mDisableRemoteServer = true;
- if (!EnvHasValue("MOZ_NO_REMOTE")) {
- SaveToEnv("MOZ_NO_REMOTE=1");
- }
}
ar = CheckArg("new-instance");
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 19273: Avoid JavaScript patching of the external app helper dialog.
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit a21b8be43634df7f43c2fbea9930078a59d7107e
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Tue Jun 28 15:13:05 2016 -0400
Bug 19273: Avoid JavaScript patching of the external app helper dialog.
When handling an external URI or downloading a file, invoke Torbutton's
external app blocker component (which will present a download warning
dialog unless the user has checked the "Automatically download files
from now on" box).
For e10s compatibility, avoid using a modal dialog and instead use
a callback interface (nsIHelperAppWarningLauncher) to allow Torbutton
to indicate the user's desire to cancel or continue each request.
Other bugs fixed:
Bug 21766: Crash with e10s enabled while trying to download a file
Bug 21886: Download is stalled in non-e10s mode
Bug 22471: Downloading files via the PDF viewer download button is broken
Bug 22472: Fix FTP downloads when external helper app dialog is shown
Bug 22610: Avoid crashes when canceling external helper app downloads
Bug 22618: Downloading pdf file via file:/// is stalling
---
.../exthandler/nsExternalHelperAppService.cpp | 202 +++++++++++++++++----
uriloader/exthandler/nsExternalHelperAppService.h | 3 +
.../exthandler/nsIExternalHelperAppService.idl | 47 +++++
3 files changed, 217 insertions(+), 35 deletions(-)
diff --git a/uriloader/exthandler/nsExternalHelperAppService.cpp b/uriloader/exthandler/nsExternalHelperAppService.cpp
index 4ff7ed2e27cc..0dcc1d3ed6ab 100644
--- a/uriloader/exthandler/nsExternalHelperAppService.cpp
+++ b/uriloader/exthandler/nsExternalHelperAppService.cpp
@@ -132,6 +132,9 @@ static const char NEVER_ASK_FOR_SAVE_TO_DISK_PREF[] =
static const char NEVER_ASK_FOR_OPEN_FILE_PREF[] =
"browser.helperApps.neverAsk.openFile";
+static const char WARNING_DIALOG_CONTRACT_ID[] =
+ "@torproject.org/torbutton-extAppBlocker;1";
+
// Helper functions for Content-Disposition headers
/**
@@ -388,6 +391,22 @@ static nsresult GetDownloadDirectory(nsIFile** _directory,
return NS_OK;
}
+static already_AddRefed<nsIInterfaceRequestor> GetDialogParentAux(
+ BrowsingContext* aBrowsingContext, nsIInterfaceRequestor* aWindowContext) {
+ nsCOMPtr<nsIInterfaceRequestor> dialogParent = aWindowContext;
+
+ if (!dialogParent && aBrowsingContext) {
+ dialogParent = do_QueryInterface(aBrowsingContext->GetDOMWindow());
+ }
+ if (!dialogParent && aBrowsingContext && XRE_IsParentProcess()) {
+ RefPtr<Element> element = aBrowsingContext->Top()->GetEmbedderElement();
+ if (element) {
+ dialogParent = do_QueryInterface(element->OwnerDoc()->GetWindow());
+ }
+ }
+ return dialogParent.forget();
+}
+
/**
* Structure for storing extension->type mappings.
* @see defaultMimeEntries
@@ -544,6 +563,111 @@ static const nsDefaultMimeTypeEntry nonDecodableExtensions[] = {
{APPLICATION_COMPRESS, "z"},
{APPLICATION_GZIP, "svgz"}};
+//////////////////////////////////////////////////////////////////////////////////////////////////////
+// begin nsExternalLoadURIHandler class definition and implementation
+//////////////////////////////////////////////////////////////////////////////////////////////////////
+class nsExternalLoadURIHandler final : public nsIHelperAppWarningLauncher {
+ public:
+ NS_DECL_THREADSAFE_ISUPPORTS
+ NS_DECL_NSIHELPERAPPWARNINGLAUNCHER
+
+ nsExternalLoadURIHandler(nsIHandlerInfo* aHandlerInfo, nsIURI* aURI,
+ nsIPrincipal* aTriggeringPrincipal,
+ BrowsingContext* aBrowsingContext);
+
+ protected:
+ ~nsExternalLoadURIHandler();
+
+ nsCOMPtr<nsIHandlerInfo> mHandlerInfo;
+ nsCOMPtr<nsIURI> mURI;
+ nsCOMPtr<nsIPrincipal> mTriggeringPrincipal;
+ RefPtr<BrowsingContext> mBrowsingContext;
+ nsCOMPtr<nsIHelperAppWarningDialog> mWarningDialog;
+};
+
+NS_IMPL_ADDREF(nsExternalLoadURIHandler)
+NS_IMPL_RELEASE(nsExternalLoadURIHandler)
+
+NS_INTERFACE_MAP_BEGIN(nsExternalLoadURIHandler)
+ NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIHelperAppWarningLauncher)
+ NS_INTERFACE_MAP_ENTRY(nsIHelperAppWarningLauncher)
+NS_INTERFACE_MAP_END
+
+nsExternalLoadURIHandler::nsExternalLoadURIHandler(
+ nsIHandlerInfo* aHandlerInfo, nsIURI* aURI,
+ nsIPrincipal* aTriggeringPrincipal, BrowsingContext* aBrowsingContext)
+ : mHandlerInfo(aHandlerInfo),
+ mURI(aURI),
+ mTriggeringPrincipal(aTriggeringPrincipal),
+ mBrowsingContext(aBrowsingContext)
+
+{
+ nsresult rv = NS_OK;
+ mWarningDialog = do_CreateInstance(WARNING_DIALOG_CONTRACT_ID, &rv);
+ if (NS_SUCCEEDED(rv) && mWarningDialog) {
+ // This will create a reference cycle (the dialog holds a reference to us
+ // as nsIHelperAppWarningLauncher), which will be broken in ContinueRequest
+ // or CancelRequest.
+ nsCOMPtr<nsIInterfaceRequestor> dialogParent =
+ GetDialogParentAux(aBrowsingContext, nullptr);
+ rv = mWarningDialog->MaybeShow(this, dialogParent);
+ }
+
+ if (NS_FAILED(rv)) {
+ // If for some reason we could not open the download warning prompt,
+ // continue with the request.
+ ContinueRequest();
+ }
+}
+
+nsExternalLoadURIHandler::~nsExternalLoadURIHandler() {}
+
+NS_IMETHODIMP nsExternalLoadURIHandler::ContinueRequest() {
+ MOZ_ASSERT(mURI);
+ MOZ_ASSERT(mHandlerInfo);
+
+ // Break our reference cycle with the download warning dialog (set up in
+ // LoadURI).
+ mWarningDialog = nullptr;
+
+ nsHandlerInfoAction preferredAction;
+ mHandlerInfo->GetPreferredAction(&preferredAction);
+ bool alwaysAsk = true;
+ mHandlerInfo->GetAlwaysAskBeforeHandling(&alwaysAsk);
+
+ nsresult rv = NS_OK;
+ // If we are not supposed to ask, and the preferred action is to use
+ // a helper app or the system default, we just launch the URI.
+ if (!alwaysAsk && (preferredAction == nsIHandlerInfo::useHelperApp ||
+ preferredAction == nsIHandlerInfo::useSystemDefault)) {
+ rv = mHandlerInfo->LaunchWithURI(mURI, mBrowsingContext);
+ // We are not supposed to ask, but when file not found the user most likely
+ // uninstalled the application which handles the uri so we will continue
+ // by application chooser dialog.
+ if (rv != NS_ERROR_FILE_NOT_FOUND) {
+ return rv;
+ }
+ }
+
+ nsCOMPtr<nsIContentDispatchChooser> chooser =
+ do_CreateInstance("@mozilla.org/content-dispatch-chooser;1", &rv);
+ NS_ENSURE_SUCCESS(rv, rv);
+
+ return chooser->Ask(mHandlerInfo, mURI, mTriggeringPrincipal,
+ mBrowsingContext,
+ nsIContentDispatchChooser::REASON_CANNOT_HANDLE);
+}
+
+NS_IMETHODIMP nsExternalLoadURIHandler::CancelRequest(nsresult aReason) {
+ NS_ENSURE_ARG(NS_FAILED(aReason));
+
+ // Break our reference cycle with the download warning dialog (set up in
+ // LoadURI).
+ mWarningDialog = nullptr;
+
+ return NS_OK;
+}
+
static StaticRefPtr<nsExternalHelperAppService> sExtHelperAppSvcSingleton;
/**
@@ -570,6 +694,9 @@ nsExternalHelperAppService::GetSingleton() {
return do_AddRef(sExtHelperAppSvcSingleton);
}
+//////////////////////////////////////////////////////////////////////////////////////////////////////
+// nsExternalHelperAppService definition and implementation
+//////////////////////////////////////////////////////////////////////////////////////////////////////
NS_IMPL_ISUPPORTS(nsExternalHelperAppService, nsIExternalHelperAppService,
nsPIExternalAppLauncher, nsIExternalProtocolService,
nsIMIMEService, nsIObserver, nsISupportsWeakReference)
@@ -1003,30 +1130,13 @@ nsExternalHelperAppService::LoadURI(nsIURI* aURI,
rv = GetProtocolHandlerInfo(scheme, getter_AddRefs(handler));
NS_ENSURE_SUCCESS(rv, rv);
- nsHandlerInfoAction preferredAction;
- handler->GetPreferredAction(&preferredAction);
- bool alwaysAsk = true;
- handler->GetAlwaysAskBeforeHandling(&alwaysAsk);
-
- // if we are not supposed to ask, and the preferred action is to use
- // a helper app or the system default, we just launch the URI.
- if (!alwaysAsk && (preferredAction == nsIHandlerInfo::useHelperApp ||
- preferredAction == nsIHandlerInfo::useSystemDefault)) {
- rv = handler->LaunchWithURI(uri, aBrowsingContext);
- // We are not supposed to ask, but when file not found the user most likely
- // uninstalled the application which handles the uri so we will continue
- // by application chooser dialog.
- if (rv != NS_ERROR_FILE_NOT_FOUND) {
- return rv;
- }
+ RefPtr<nsExternalLoadURIHandler> h = new nsExternalLoadURIHandler(
+ handler, uri, aTriggeringPrincipal, aBrowsingContext);
+ if (!h) {
+ return NS_ERROR_OUT_OF_MEMORY;
}
- nsCOMPtr<nsIContentDispatchChooser> chooser =
- do_CreateInstance("@mozilla.org/content-dispatch-chooser;1", &rv);
- NS_ENSURE_SUCCESS(rv, rv);
-
- return chooser->Ask(handler, uri, aTriggeringPrincipal, aBrowsingContext,
- nsIContentDispatchChooser::REASON_CANNOT_HANDLE);
+ return NS_OK;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -1171,6 +1281,7 @@ NS_INTERFACE_MAP_BEGIN(nsExternalAppHandler)
NS_INTERFACE_MAP_ENTRY(nsIStreamListener)
NS_INTERFACE_MAP_ENTRY(nsIRequestObserver)
NS_INTERFACE_MAP_ENTRY(nsIHelperAppLauncher)
+ NS_INTERFACE_MAP_ENTRY(nsIHelperAppWarningLauncher)
NS_INTERFACE_MAP_ENTRY(nsICancelable)
NS_INTERFACE_MAP_ENTRY(nsIBackgroundFileSaverObserver)
NS_INTERFACE_MAP_ENTRY(nsINamed)
@@ -1532,18 +1643,7 @@ void nsExternalAppHandler::MaybeApplyDecodingForExtension(
already_AddRefed<nsIInterfaceRequestor>
nsExternalAppHandler::GetDialogParent() {
- nsCOMPtr<nsIInterfaceRequestor> dialogParent = mWindowContext;
-
- if (!dialogParent && mBrowsingContext) {
- dialogParent = do_QueryInterface(mBrowsingContext->GetDOMWindow());
- }
- if (!dialogParent && mBrowsingContext && XRE_IsParentProcess()) {
- RefPtr<Element> element = mBrowsingContext->Top()->GetEmbedderElement();
- if (element) {
- dialogParent = do_QueryInterface(element->OwnerDoc()->GetWindow());
- }
- }
- return dialogParent.forget();
+ return GetDialogParentAux(mBrowsingContext, mWindowContext);
}
NS_IMETHODIMP nsExternalAppHandler::OnStartRequest(nsIRequest* request) {
@@ -1651,6 +1751,29 @@ NS_IMETHODIMP nsExternalAppHandler::OnStartRequest(nsIRequest* request) {
MOZ_ASSERT(NS_SUCCEEDED(rv));
}
+ mWarningDialog = do_CreateInstance(WARNING_DIALOG_CONTRACT_ID, &rv);
+ if (NS_SUCCEEDED(rv) && mWarningDialog) {
+ // This will create a reference cycle (the dialog holds a reference to us
+ // as nsIHelperAppWarningLauncher), which will be broken in ContinueRequest
+ // or CancelRequest.
+ nsCOMPtr<nsIInterfaceRequestor> dialogParent = GetDialogParent();
+ rv = mWarningDialog->MaybeShow(this, dialogParent);
+ }
+
+ if (NS_FAILED(rv)) {
+ // If for some reason we could not open the download warning prompt,
+ // continue with the request.
+ ContinueRequest();
+ }
+
+ return NS_OK;
+}
+
+NS_IMETHODIMP nsExternalAppHandler::ContinueRequest() {
+ // Break our reference cycle with the download warning dialog (set up in
+ // OnStartRequest).
+ mWarningDialog = nullptr;
+
// now that the temp file is set up, find out if we need to invoke a dialog
// asking the user what they want us to do with this content...
@@ -1736,6 +1859,7 @@ NS_IMETHODIMP nsExternalAppHandler::OnStartRequest(nsIRequest* request) {
action = nsIMIMEInfo::saveToDisk;
}
+ nsresult rv = NS_OK;
if (alwaysAsk) {
// Display the dialog
mDialog = do_CreateInstance(NS_HELPERAPPLAUNCHERDLG_CONTRACTID, &rv);
@@ -1793,6 +1917,14 @@ NS_IMETHODIMP nsExternalAppHandler::OnStartRequest(nsIRequest* request) {
return NS_OK;
}
+NS_IMETHODIMP nsExternalAppHandler::CancelRequest(nsresult aReason) {
+ // Break our reference cycle with the download warning dialog (set up in
+ // OnStartRequest).
+ mWarningDialog = nullptr;
+
+ return Cancel(aReason);
+}
+
// Convert error info into proper message text and send OnStatusChange
// notification to the dialog progress listener or nsITransfer implementation.
void nsExternalAppHandler::SendStatusChange(ErrorType type, nsresult rv,
@@ -2456,7 +2588,7 @@ NS_IMETHODIMP nsExternalAppHandler::Cancel(nsresult aReason) {
}
// Break our reference cycle with the helper app dialog (set up in
- // OnStartRequest)
+ // ContinueRequest)
mDialog = nullptr;
mRequest = nullptr;
diff --git a/uriloader/exthandler/nsExternalHelperAppService.h b/uriloader/exthandler/nsExternalHelperAppService.h
index f2bd67f64ccd..8c2d8817ac7b 100644
--- a/uriloader/exthandler/nsExternalHelperAppService.h
+++ b/uriloader/exthandler/nsExternalHelperAppService.h
@@ -203,6 +203,7 @@ class nsExternalHelperAppService : public nsIExternalHelperAppService,
*/
class nsExternalAppHandler final : public nsIStreamListener,
public nsIHelperAppLauncher,
+ public nsIHelperAppWarningLauncher,
public nsIBackgroundFileSaverObserver,
public nsINamed {
public:
@@ -210,6 +211,7 @@ class nsExternalAppHandler final : public nsIStreamListener,
NS_DECL_NSISTREAMLISTENER
NS_DECL_NSIREQUESTOBSERVER
NS_DECL_NSIHELPERAPPLAUNCHER
+ NS_DECL_NSIHELPERAPPWARNINGLAUNCHER
NS_DECL_NSICANCELABLE
NS_DECL_NSIBACKGROUNDFILESAVEROBSERVER
NS_DECL_NSINAMED
@@ -460,6 +462,7 @@ class nsExternalAppHandler final : public nsIStreamListener,
nsCOMPtr<nsITransfer> mTransfer;
nsCOMPtr<nsIHelperAppLauncherDialog> mDialog;
+ nsCOMPtr<nsIHelperAppWarningDialog> mWarningDialog;
/**
diff --git a/uriloader/exthandler/nsIExternalHelperAppService.idl b/uriloader/exthandler/nsIExternalHelperAppService.idl
index ea8b9b08f3e6..8b58671f7597 100644
--- a/uriloader/exthandler/nsIExternalHelperAppService.idl
+++ b/uriloader/exthandler/nsIExternalHelperAppService.idl
@@ -182,3 +182,50 @@ interface nsIHelperAppLauncher : nsICancelable
*/
readonly attribute uint64_t browsingContextId;
};
+
+/**
+ * nsIHelperAppWarningLauncher is implemented by two classes:
+ * nsExternalLoadURIHandler
+ * nsExternalAppHandler
+ */
+[scriptable, uuid(cffd508b-4aaf-43ad-99c6-671d35cbc558)]
+interface nsIHelperAppWarningLauncher : nsISupports
+{
+ /**
+ * Callback invoked by the external app warning dialog to continue the
+ * request.
+ * NOTE: This will release the reference to the nsIHelperAppWarningDialog.
+ */
+ void continueRequest();
+
+ /**
+ * Callback invoked by the external app warning dialog to cancel the request.
+ * NOTE: This will release the reference to the nsIHelperAppWarningDialog.
+ *
+ * @param aReason
+ * Pass a failure code to indicate the reason why this operation is
+ * being canceled. It is an error to pass a success code.
+ */
+ void cancelRequest(in nsresult aReason);
+};
+
+/**
+ * nsIHelperAppWarningDialog is implemented by Torbutton's external app
+ * blocker (src/components/external-app-blocker.js).
+ */
+[scriptable, uuid(f4899a3f-0df3-42cc-9db8-bdf599e5a208)]
+interface nsIHelperAppWarningDialog : nsISupports
+{
+ /**
+ * Possibly show a launch warning dialog (it will not be shown if the user
+ * has chosen to not see the warning again).
+ *
+ * @param aLauncher
+ * A nsIHelperAppWarningLauncher to be invoked after the user confirms
+ * or cancels the download.
+ * @param aWindowContext
+ * The window associated with the download.
+ */
+ void maybeShow(in nsIHelperAppWarningLauncher aLauncher,
+ in nsISupports aWindowContext);
+};
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 16620: Clear window.name when no referrer sent
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 8b334c91fffe16470e96b45b33c338c5b836b584
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Fri Oct 30 14:28:13 2015 -0400
Bug 16620: Clear window.name when no referrer sent
Convert JS implementation (within Torbutton) to a C++ browser patch.
---
docshell/base/nsDocShell.cpp | 60 +++++++
docshell/test/mochitest/mochitest.ini | 3 +
docshell/test/mochitest/test_tor_bug16620.html | 211 +++++++++++++++++++++++++
docshell/test/mochitest/tor_bug16620.html | 51 ++++++
docshell/test/mochitest/tor_bug16620_form.html | 51 ++++++
5 files changed, 376 insertions(+)
diff --git a/docshell/base/nsDocShell.cpp b/docshell/base/nsDocShell.cpp
index fcdbe4918064..9507374ea5bd 100644
--- a/docshell/base/nsDocShell.cpp
+++ b/docshell/base/nsDocShell.cpp
@@ -7468,11 +7468,71 @@ nsresult nsDocShell::CreateContentViewer(const nsACString& aContentType,
aOpenedChannel->GetURI(getter_AddRefs(mLoadingURI));
}
FirePageHideNotification(!mSavingOldViewer);
+
if (mIsBeingDestroyed) {
// Force to stop the newly created orphaned viewer.
viewer->Stop();
return NS_ERROR_DOCSHELL_DYING;
}
+
+ // Tor bug 16620: Clear window.name of top-level documents if
+ // there is no referrer. We make an exception for new windows,
+ // e.g., window.open(url, "MyName").
+ bool isNewWindowTarget = false;
+ nsCOMPtr<nsIPropertyBag2> props(do_QueryInterface(aRequest, &rv));
+ if (props) {
+ props->GetPropertyAsBool(NS_LITERAL_STRING("docshell.newWindowTarget"),
+ &isNewWindowTarget);
+ }
+
+ if (!isNewWindowTarget) {
+ nsCOMPtr<nsIHttpChannel> httpChannel(do_QueryInterface(aOpenedChannel));
+ nsCOMPtr<nsIURI> httpReferrer;
+ if (httpChannel) {
+ nsCOMPtr<nsIReferrerInfo> referrerInfo;
+ rv = httpChannel->GetReferrerInfo(getter_AddRefs(referrerInfo));
+ NS_ENSURE_SUCCESS(rv, rv);
+ if (referrerInfo) {
+ // We want GetComputedReferrer() instead of GetOriginalReferrer(), since
+ // the former takes into consideration referrer policy, protocol
+ // whitelisting...
+ httpReferrer = referrerInfo->GetComputedReferrer();
+ }
+ }
+
+ bool isTopFrame = mBrowsingContext->IsTop();
+
+#ifdef DEBUG_WINDOW_NAME
+ printf("DOCSHELL %p CreateContentViewer - possibly clearing window.name:\n",
+ this);
+ printf(" current window.name: \"%s\"\n",
+ NS_ConvertUTF16toUTF8(mName).get());
+
+ nsAutoCString curSpec, loadingSpec;
+ if (this->mCurrentURI) mCurrentURI->GetSpec(curSpec);
+ if (mLoadingURI) mLoadingURI->GetSpec(loadingSpec);
+ printf(" current URI: %s\n", curSpec.get());
+ printf(" loading URI: %s\n", loadingSpec.get());
+ printf(" is top document: %s\n", isTopFrame ? "Yes" : "No");
+
+ if (!httpReferrer) {
+ printf(" referrer: None\n");
+ } else {
+ nsAutoCString refSpec;
+ httpReferrer->GetSpec(refSpec);
+ printf(" referrer: %s\n", refSpec.get());
+ }
+#endif
+
+ bool clearName = isTopFrame && !httpReferrer;
+ if (clearName) SetName(NS_LITERAL_STRING(""));
+
+#ifdef DEBUG_WINDOW_NAME
+ printf(" action taken: %s window.name\n",
+ clearName ? "Cleared" : "Preserved");
+#endif
+ }
+
mLoadingURI = nullptr;
// Set mFiredUnloadEvent = false so that the unload handler for the
diff --git a/docshell/test/mochitest/mochitest.ini b/docshell/test/mochitest/mochitest.ini
index 25d3187711fe..663750b7fc8e 100644
--- a/docshell/test/mochitest/mochitest.ini
+++ b/docshell/test/mochitest/mochitest.ini
@@ -52,6 +52,8 @@ support-files =
start_historyframe.html
url1_historyframe.html
url2_historyframe.html
+ tor_bug16620.html
+ tor_bug16620_form.html
[test_anchor_scroll_after_document_open.html]
[test_bfcache_plus_hash.html]
@@ -115,6 +117,7 @@ support-files = file_bug675587.html
[test_framedhistoryframes.html]
support-files = file_framedhistoryframes.html
[test_pushState_after_document_open.html]
+[test_tor_bug16620.html]
[test_windowedhistoryframes.html]
[test_triggeringprincipal_location_seturi.html]
[test_bug1507702.html]
diff --git a/docshell/test/mochitest/test_tor_bug16620.html b/docshell/test/mochitest/test_tor_bug16620.html
new file mode 100644
index 000000000000..46fff5a04711
--- /dev/null
+++ b/docshell/test/mochitest/test_tor_bug16620.html
@@ -0,0 +1,211 @@
+<!DOCTYPE HTML>
+<html>
+<!--
+ Tor Bug 16620: Clear window.name when no referrer sent.
+ https://trac.torproject.org/projects/tor/ticket/16620
+-->
+<meta charset="utf-8">
+<head>
+ <title>Test for Tor Bug 16620 - Clear window.name when no referrer sent</title>
+ <script type="application/javascript"
+ src="/tests/SimpleTest/SimpleTest.js"></script>
+ <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
+</head>
+<body>
+<a target="_blank" href="https://trac.torproject.org/projects/tor/ticket/16620">Tor Bug 16620</a>
+<script>
+// ## Test constants
+const kTestPath = "/tests/docshell/test/mochitest/";
+const kLinkFile = "tor_bug16620.html";
+const kFormFile = "tor_bug16620_form.html";
+const kBaseURL1 = "http://example.com";
+const kBaseURL1_https = "https://example.com";
+const kBaseURL2 = "http://example.net";
+const kSendReferrerPref = "network.http.sendRefererHeader";
+const kSendReferrerNever = 0;
+const kSendReferrerForUserAction = 1;
+const kSendReferrerAlways = 2;
+
+let gTests = [
+ // Test #1: Same domain; never send referrer.
+ { startURL: kBaseURL1, destURL: kBaseURL1,
+ referrerPref: kSendReferrerNever,
+ expectIsolation: true },
+
+ // Test #2: Same domain; send referrer upon user action.
+ { startURL: kBaseURL1, destURL: kBaseURL1,
+ referrerPref: kSendReferrerForUserAction,
+ expectIsolation: false },
+
+ // Test #3: Same domain; always send referrer.
+ { startURL: kBaseURL1, destURL: kBaseURL1,
+ referrerPref: kSendReferrerAlways,
+ expectIsolation: false },
+
+ // Test #4: Different top-level domains; never send referrer.
+ { startURL: kBaseURL1, destURL: kBaseURL2,
+ referrerPref: kSendReferrerNever,
+ expectIsolation: true },
+
+ // Test #5: Different top-level domains; send referrer upon user action.
+ { startURL: kBaseURL1, destURL: kBaseURL2,
+ referrerPref: kSendReferrerForUserAction,
+ expectIsolation: false },
+
+ // Test #6: Different top-level domains; always send referrer.
+ { startURL: kBaseURL1, destURL: kBaseURL2,
+ referrerPref: kSendReferrerAlways,
+ expectIsolation: false },
+
+ // Test #7: https -> http transition.
+ { startURL: kBaseURL1_https, destURL: kBaseURL1,
+ referrerPref: kSendReferrerForUserAction,
+ expectIsolation: true },
+
+ // Test #8: Same domain, rel="noreferrer" on link.
+ { startURL: kBaseURL1, destURL: kBaseURL1, noReferrerOnLink: true,
+ referrerPref: kSendReferrerAlways,
+ expectIsolation: true },
+
+ // Test #9: Same domain, "no-referrer" meta tag in document.
+ { startURL: kBaseURL1, destURL: kBaseURL1, noReferrerInMetaTag: true,
+ referrerPref: kSendReferrerAlways,
+ expectIsolation: true },
+
+ // Test #10: Like test #9, but reset window.name during unload.
+ // (similar to http://www.thomasfrank.se/sessvarsTestPage1.html)
+ { startURL: kBaseURL1, destURL: kBaseURL1, noReferrerInMetaTag: true,
+ resetInUnload: true,
+ referrerPref: kSendReferrerAlways,
+ expectIsolation: true },
+
+ // Test #11: Data URL as destination (no referrer).
+ { startURL: kBaseURL1,
+ referrerPref: kSendReferrerAlways,
+ expectIsolation: true },
+
+ // Test #12: Ensure that window.name is preserved when a dynamically loaded
+ // iframe is used to perform a form post (regression test for Tor bug 18168).
+ { startURL: kBaseURL1,
+ isFormTest: true,
+ referrerPref: kSendReferrerAlways,
+ expectIsolation: false },
+];
+
+let gCurTest = 0;
+let gCurWinName, gChildWin, gDataURL;
+
+// ## Utility functions
+function generateRandomName()
+{
+ // Generate a random 6 character string using 0-9 and a-z.
+ return ((1 + Math.random()).toString(36) + '000000').substr(2, 6);
+}
+
+function startNextTest() {
+ ++gCurTest;
+ if (gCurTest > gTests.length) {
+ SimpleTest.finish();
+ } else {
+ let curTest = gTests[gCurTest - 1];
+ if ("referrerPref" in curTest)
+ SpecialPowers.setIntPref(kSendReferrerPref, curTest.referrerPref);
+ else
+ SpecialPowers.setIntPref(kSendReferrerPref, kSendReferrerForUserAction);
+ gCurWinName = generateRandomName();
+ let url = curTest.startURL + kTestPath;
+ if (curTest.isFormTest === true) {
+ url += kFormFile + "?" + gCurWinName;
+ gChildWin = window.open(url, undefined);
+ } else {
+ url += kLinkFile + "?firstDocLoaded";
+ gChildWin = window.open(url, gCurWinName);
+ }
+ }
+}
+
+// ## Add a message event listener.
+window.addEventListener("message", function(aEvent) {
+ if (aEvent.source !== gChildWin)
+ return;
+
+// console.log("parent received message:" + JSON.stringify(aEvent.data));
+
+ let proceedToNextTest = false;
+ let curTest = gTests[gCurTest - 1];
+ let state = aEvent.data.state;
+ let winName = aEvent.data.winName;
+ if ("firstDocLoaded" == state) {
+ // Process response from step one of the link-based tests.
+ let step1Passed = (winName === gCurWinName);
+ if (!step1Passed) {
+ ok(step1Passed, "Test #" + gCurTest +
+ " - first document's name matches window.open parameter");
+ proceedToNextTest = true;
+ }
+
+ // Send an "openURL" message to the loaded document.
+ let url2 = (curTest.destURL)
+ ? curTest.destURL + kTestPath + kLinkFile + "?secondDocLoaded"
+ : gDataURL;
+ let noReferrerOnLink = (curTest.noReferrerOnLink === true);
+ let noReferrerInMetaTag = (curTest.noReferrerInMetaTag === true);
+ let resetInUnload = (curTest.resetInUnload === true);
+ aEvent.source.postMessage({ action: "openURL", url: url2,
+ noReferrerOnLink: noReferrerOnLink,
+ noReferrerInMetaTag: noReferrerInMetaTag,
+ resetInUnload: resetInUnload },
+ "*");
+ } else if ("secondDocLoaded" == state) {
+ // Process response from step two of the link-based tests.
+ if (curTest.expectIsolation) {
+ ok(winName === "",
+ "Test #" + gCurTest + " - second document: name was cleared");
+ } else {
+ ok(winName === gCurWinName,
+ "Test #" + gCurTest + " - second document: name was preserved");
+ }
+ proceedToNextTest = true;
+ } else if ("formPostDone" == state) {
+ // Process response from the form post tests.
+ if (curTest.expectIsolation) {
+ ok(winName === "",
+ "Test #" + gCurTest + " - iframe form post: name was cleared");
+ } else {
+ ok(winName === gCurWinName,
+ "Test #" + gCurTest + " - iframe form post: name was preserved");
+ }
+ proceedToNextTest = true;
+
+ }
+
+ if (proceedToNextTest) {
+ gChildWin.close();
+ startNextTest();
+ }
+ }, false);
+
+ SimpleTest.waitForExplicitFinish();
+
+ if (SpecialPowers.getBoolPref("security.nocertdb")) {
+ // Mochitests don't simulate https correctly with "security.nocertdb"
+ // enabled. See https://bugs.torproject.org/18087
+ ok(false, "Please disable the pref `security.nocertdb` before running this test.");
+ SimpleTest.finish();
+ } else {
+
+ // Read file contents, construct a data URL (used by some tests), and
+ // then start the first test.
+ let url = kTestPath + kLinkFile;
+ let xhr = new XMLHttpRequest();
+ xhr.open("GET", url);
+ xhr.onload = function() {
+ gDataURL = "data:text/html;charset=utf-8,"
+ + encodeURIComponent(this.responseText);
+ startNextTest();
+ }
+ xhr.send();
+ }
+</script>
+</body>
+</html>
diff --git a/docshell/test/mochitest/tor_bug16620.html b/docshell/test/mochitest/tor_bug16620.html
new file mode 100644
index 000000000000..26b8e406bbff
--- /dev/null
+++ b/docshell/test/mochitest/tor_bug16620.html
@@ -0,0 +1,51 @@
+<!DOCTYPE HTML>
+<html>
+<!--
+ Tor Bug 16620: Clear window.name when no referrer sent.
+ https://trac.torproject.org/projects/tor/ticket/16620
+-->
+<head>
+ <meta charset="UTF-8">
+ <title>Supporting Doc for Tor Bug 16620 Tests</title>
+</head>
+<body>
+<a id="link" href="">secondDoc</a>
+
+<script>
+// Extract test state from our query string, defaulting to
+// "secondDocLoaded" to support use of this HTML content within
+// a data URI (where query strings are not supported).
+let state = (location.search.length > 0) ? location.search.substr(1)
+ : "secondDocLoaded";
+
+// Notify the test driver.
+opener.postMessage({ state: state, winName: window.name }, "*");
+
+// Add a message event listener to process "openURL" actions.
+window.addEventListener("message", function(aEvent) {
+ if (aEvent.data.action == "openURL") {
+ if (aEvent.data.noReferrerInMetaTag) {
+ let metaElem = document.createElement("meta");
+ metaElem.name = "referrer";
+ metaElem.content = "no-referrer";
+ document.head.appendChild(metaElem);
+ }
+
+ let linkElem = document.getElementById("link");
+ linkElem.href = aEvent.data.url;
+ if (aEvent.data.noReferrerOnLink)
+ linkElem.rel = "noreferrer";
+
+ if (aEvent.data.resetInUnload) {
+ let tmpName = window.name;
+ window.addEventListener("unload", function() {
+ window.name = tmpName;
+ }, false);
+ }
+
+ linkElem.click();
+ }
+}, false);
+</script>
+</body>
+</html>
diff --git a/docshell/test/mochitest/tor_bug16620_form.html b/docshell/test/mochitest/tor_bug16620_form.html
new file mode 100644
index 000000000000..279f62e63fab
--- /dev/null
+++ b/docshell/test/mochitest/tor_bug16620_form.html
@@ -0,0 +1,51 @@
+<!DOCTYPE HTML>
+<html>
+<!--
+ Tor Bug 16620: Clear window.name when no referrer sent.
+ https://trac.torproject.org/projects/tor/ticket/16620
+
+ Regression test for bug 18168: iframe-based AJAX call opening in new tab
+-->
+<head>
+ <meta charset="UTF-8">
+ <title>Supporting Form-based Doc for Tor Bug 16620 Tests</title>
+</head>
+<body>
+
+<script>
+document.addEventListener("DOMContentLoaded", function () {
+ addPostTarget();
+}, false);
+
+
+function addPostTarget()
+{
+ let frameName = location.search.substr(1);
+ let form = document.getElementById("postform");
+ let iframe = document.createElement("iframe");
+ iframe.style.border = "1px solid red";
+ iframe.src = "about:blank";
+ form.target = iframe.name = iframe.id = frameName;
+ document.body.appendChild(iframe);
+
+ let didSubmit = false;
+ iframe.onload = function() {
+ if (!didSubmit) {
+ didSubmit = true;
+ let submitButton = document.getElementById("submitButton");
+ submitButton.click();
+ } else {
+ // Form submission complete. Report iframe's name to test driver.
+ opener.postMessage({ state: "formPostDone", winName: iframe.name }, "*");
+ }
+ };
+}
+
+</script>
+<form name="postform" id="postform"
+ action="data:text/plain;charset=utf-8,Hello%20world"
+ method="POST" enctype="multipart/form-data">
+ <input type="hidden" name="field1" value="value1"><br>
+ <input id="submitButton" type="submit" value="Post It">
+</body>
+</html>
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 13252: Do not store data in the app bundle
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit f798e2240bda84bd3b0b0d0b5dc7761bf563c7d8
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Fri Mar 18 14:20:02 2016 -0400
Bug 13252: Do not store data in the app bundle
When --enable-tor-browser-data-outside-app-dir is enabled,
all user data is stored in a directory named
TorBrowser-Data which is located next to the application directory.
Display an informative error message if the TorBrowser-Data
directory cannot be created due to an "access denied" or a
"read only volume" error.
On Mac OS, add support for the --invisible command line option which
is used by the meek-http-helper to avoid showing an icon for the
helper browser on the dock.
---
toolkit/xre/nsAppRunner.cpp | 76 +++++++++++++++---
toolkit/xre/nsXREDirProvider.cpp | 43 +++++-----
toolkit/xre/nsXREDirProvider.h | 6 ++
xpcom/io/TorFileUtils.cpp | 142 +++++++++++++++++++++++++++++++++
xpcom/io/TorFileUtils.h | 33 ++++++++
xpcom/io/moz.build | 5 ++
xpcom/io/nsAppFileLocationProvider.cpp | 53 +++++-------
7 files changed, 290 insertions(+), 68 deletions(-)
diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
index 3ba04d2b495c..8e76213e7923 100644
--- a/toolkit/xre/nsAppRunner.cpp
+++ b/toolkit/xre/nsAppRunner.cpp
@@ -1891,6 +1891,8 @@ static nsresult ProfileMissingDialog(nsINativeAppSupport* aNative) {
}
}
+// If aUnlocker is NULL, it is also OK for the following arguments to be NULL:
+// aProfileDir, aProfileLocalDir, aResult.
static ReturnAbortOnError ProfileErrorDialog(nsIFile* aProfileDir,
nsIFile* aProfileLocalDir,
ProfileStatus aStatus,
@@ -1899,17 +1901,19 @@ static ReturnAbortOnError ProfileErrorDialog(nsIFile* aProfileDir,
nsIProfileLock** aResult) {
nsresult rv;
- bool exists;
- aProfileDir->Exists(&exists);
- if (!exists) {
- return ProfileMissingDialog(aNative);
+ if (aProfileDir) {
+ bool exists;
+ aProfileDir->Exists(&exists);
+ if (!exists) {
+ return ProfileMissingDialog(aNative);
+ }
}
ScopedXPCOMStartup xpcom;
rv = xpcom.Initialize();
NS_ENSURE_SUCCESS(rv, rv);
- mozilla::Telemetry::WriteFailedProfileLock(aProfileDir);
+ if (aProfileDir) mozilla::Telemetry::WriteFailedProfileLock(aProfileDir);
rv = xpcom.SetWindowCreator(aNative);
NS_ENSURE_SUCCESS(rv, NS_ERROR_FAILURE);
@@ -1999,7 +2003,8 @@ static ReturnAbortOnError ProfileErrorDialog(nsIFile* aProfileDir,
}
} else {
#ifdef MOZ_WIDGET_ANDROID
- if (java::GeckoAppShell::UnlockProfile()) {
+ if (aProfileDir && aProfileLocalDir && aResult &&
+ java::GeckoAppShell::UnlockProfile()) {
return NS_LockProfilePath(aProfileDir, aProfileLocalDir, nullptr,
aResult);
}
@@ -2107,6 +2112,23 @@ static ReturnAbortOnError ShowProfileManager(
return LaunchChild(false);
}
+#ifdef TOR_BROWSER_DATA_OUTSIDE_APP_DIR
+static ProfileStatus CheckTorBrowserDataWriteAccess(nsIFile* aAppDir) {
+ // Check whether we can write to the directory that will contain
+ // TorBrowser-Data.
+ nsCOMPtr<nsIFile> tbDataDir;
+ RefPtr<nsXREDirProvider> dirProvider = nsXREDirProvider::GetSingleton();
+ if (!dirProvider) return PROFILE_STATUS_OTHER_ERROR;
+ nsresult rv =
+ dirProvider->GetTorBrowserUserDataDir(getter_AddRefs(tbDataDir));
+ NS_ENSURE_SUCCESS(rv, PROFILE_STATUS_OTHER_ERROR);
+ nsCOMPtr<nsIFile> tbDataDirParent;
+ rv = tbDataDir->GetParent(getter_AddRefs(tbDataDirParent));
+ NS_ENSURE_SUCCESS(rv, PROFILE_STATUS_OTHER_ERROR);
+ return nsToolkitProfileService::CheckProfileWriteAccess(tbDataDirParent);
+}
+#endif
+
static bool gDoMigration = false;
static bool gDoProfileReset = false;
static nsCOMPtr<nsIToolkitProfile> gResetOldProfile;
@@ -3183,6 +3205,14 @@ int XREMain::XRE_mainInit(bool* aExitFlag) {
if (PR_GetEnv("XRE_MAIN_BREAK")) NS_BREAK();
#endif
+#if defined(XP_MACOSX) && defined(TOR_BROWSER_DATA_OUTSIDE_APP_DIR)
+ bool hideDockIcon = (CheckArg("invisible") == ARG_FOUND);
+ if (hideDockIcon) {
+ ProcessSerialNumber psn = {0, kCurrentProcess};
+ TransformProcessType(&psn, kProcessTransformToBackgroundApplication);
+ }
+#endif
+
IncreaseDescriptorLimits();
#ifdef USE_GLX_TEST
@@ -4031,7 +4061,34 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
return 0;
}
+#if (defined(MOZ_UPDATER) && !defined(MOZ_WIDGET_ANDROID)) || \
+ defined(TOR_BROWSER_DATA_OUTSIDE_APP_DIR)
+ nsCOMPtr<nsIFile> exeFile, exeDir;
+ bool persistent;
+ rv = mDirProvider.GetFile(XRE_EXECUTABLE_FILE, &persistent,
+ getter_AddRefs(exeFile));
+ NS_ENSURE_SUCCESS(rv, 1);
+ rv = exeFile->GetParent(getter_AddRefs(exeDir));
+ NS_ENSURE_SUCCESS(rv, 1);
+#endif
+
rv = NS_NewToolkitProfileService(getter_AddRefs(mProfileSvc));
+#ifdef TOR_BROWSER_DATA_OUTSIDE_APP_DIR
+ if (NS_FAILED(rv)) {
+ // NS_NewToolkitProfileService() returns a generic NS_ERROR_FAILURE error
+ // if creation of the TorBrowser-Data directory fails due to access denied
+ // or because of a read-only disk volume. Do an extra check here to detect
+ // these errors so we can display an informative error message.
+ ProfileStatus status = CheckTorBrowserDataWriteAccess(exeDir);
+ if ((PROFILE_STATUS_ACCESS_DENIED == status) ||
+ (PROFILE_STATUS_READ_ONLY == status)) {
+ ProfileErrorDialog(nullptr, nullptr, status, nullptr, mNativeApp,
+ nullptr);
+ return 1;
+ }
+ }
+ #endif
+
if (rv == NS_ERROR_FILE_ACCESS_DENIED) {
PR_fprintf(PR_STDERR,
"Error: Access was denied while trying to open files in "
@@ -4100,7 +4157,6 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
#if defined(MOZ_UPDATER) && !defined(MOZ_WIDGET_ANDROID)
// Check for and process any available updates
nsCOMPtr<nsIFile> updRoot;
- bool persistent;
rv = mDirProvider.GetFile(XRE_UPDATE_ROOT_DIR, &persistent,
getter_AddRefs(updRoot));
// XRE_UPDATE_ROOT_DIR may fail. Fallback to appDir if failed
@@ -4136,12 +4192,6 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
if (CheckArg("test-process-updates")) {
SaveToEnv("MOZ_TEST_PROCESS_UPDATES=1");
}
- nsCOMPtr<nsIFile> exeFile, exeDir;
- rv = mDirProvider.GetFile(XRE_EXECUTABLE_FILE, &persistent,
- getter_AddRefs(exeFile));
- NS_ENSURE_SUCCESS(rv, 1);
- rv = exeFile->GetParent(getter_AddRefs(exeDir));
- NS_ENSURE_SUCCESS(rv, 1);
ProcessUpdates(mDirProvider.GetGREDir(), exeDir, updRoot, gRestartArgc,
gRestartArgv, mAppData->version);
if (EnvHasValue("MOZ_TEST_PROCESS_UPDATES")) {
diff --git a/toolkit/xre/nsXREDirProvider.cpp b/toolkit/xre/nsXREDirProvider.cpp
index accdcfe7c0b0..09f34911d3cb 100644
--- a/toolkit/xre/nsXREDirProvider.cpp
+++ b/toolkit/xre/nsXREDirProvider.cpp
@@ -46,6 +46,8 @@
#include "mozilla/Telemetry.h"
#include "nsPrintfCString.h"
+#include "TorFileUtils.h"
+
#include <stdlib.h>
#ifdef XP_WIN
@@ -1383,34 +1385,18 @@ nsresult nsXREDirProvider::GetUserDataDirectoryHome(nsIFile** aFile,
return gDataDirHome->Clone(aFile);
}
- nsresult rv = GetAppDir()->Clone(getter_AddRefs(localDir));
+ nsresult rv = GetTorBrowserUserDataDir(getter_AddRefs(localDir));
NS_ENSURE_SUCCESS(rv, rv);
- int levelsToRemove = 1; // In FF21+, appDir points to browser subdirectory.
-#if defined(XP_MACOSX)
- levelsToRemove += 2;
-#endif
- while (localDir && (levelsToRemove > 0)) {
- // When crawling up the hierarchy, components named "." do not count.
- nsAutoCString removedName;
- rv = localDir->GetNativeLeafName(removedName);
- NS_ENSURE_SUCCESS(rv, rv);
- bool didRemove = !removedName.Equals(".");
-
- // Remove a directory component.
- nsCOMPtr<nsIFile> parentDir;
- rv = localDir->GetParent(getter_AddRefs(parentDir));
- NS_ENSURE_SUCCESS(rv, rv);
- localDir = parentDir;
- if (didRemove) --levelsToRemove;
- }
-
- if (!localDir) return NS_ERROR_FAILURE;
-
+#if !defined(ANDROID)
+#ifdef TOR_BROWSER_DATA_OUTSIDE_APP_DIR
+ rv = localDir->AppendNative(NS_LITERAL_CSTRING("Browser"));
+#else
rv = localDir->AppendRelativeNativePath(
- NS_LITERAL_CSTRING("TorBrowser" XPCOM_FILE_PATH_SEPARATOR
- "Data" XPCOM_FILE_PATH_SEPARATOR "Browser"));
+ NS_LITERAL_CSTRING("Data" XPCOM_FILE_PATH_SEPARATOR "Browser"));
+#endif
NS_ENSURE_SUCCESS(rv, rv);
+#endif
if (aLocal) {
rv = localDir->AppendNative(NS_LITERAL_CSTRING("Caches"));
@@ -1516,6 +1502,15 @@ nsresult nsXREDirProvider::GetUserDataDirectory(nsIFile** aFile, bool aLocal) {
return NS_OK;
}
+nsresult nsXREDirProvider::GetTorBrowserUserDataDir(nsIFile** aFile) {
+ NS_ENSURE_ARG_POINTER(aFile);
+ nsCOMPtr<nsIFile> exeFile;
+ bool per = false;
+ nsresult rv = GetFile(XRE_EXECUTABLE_FILE, &per, getter_AddRefs(exeFile));
+ NS_ENSURE_SUCCESS(rv, rv);
+ return TorBrowser_GetUserDataDir(exeFile, aFile);
+}
+
nsresult nsXREDirProvider::EnsureDirectoryExists(nsIFile* aDirectory) {
nsresult rv = aDirectory->Create(nsIFile::DIRECTORY_TYPE, 0700);
diff --git a/toolkit/xre/nsXREDirProvider.h b/toolkit/xre/nsXREDirProvider.h
index b9678d4ec577..2aa2face5974 100644
--- a/toolkit/xre/nsXREDirProvider.h
+++ b/toolkit/xre/nsXREDirProvider.h
@@ -113,6 +113,12 @@ class nsXREDirProvider final : public nsIDirectoryServiceProvider2,
*/
nsresult GetProfileDir(nsIFile** aResult);
+ /**
+ * Get the TorBrowser user data directory by calling the
+ * TorBrowser_GetUserDataDir() utility function.
+ */
+ nsresult GetTorBrowserUserDataDir(nsIFile** aFile);
+
protected:
nsresult GetFilesInternal(const char* aProperty,
nsISimpleEnumerator** aResult);
diff --git a/xpcom/io/TorFileUtils.cpp b/xpcom/io/TorFileUtils.cpp
new file mode 100644
index 000000000000..bddf8d7bbd95
--- /dev/null
+++ b/xpcom/io/TorFileUtils.cpp
@@ -0,0 +1,142 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set ts=8 sts=2 et sw=2 tw=80: */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#include "TorFileUtils.h"
+#include "nsString.h"
+#ifdef MOZ_WIDGET_COCOA
+#include <Carbon/Carbon.h>
+#include "nsILocalFileMac.h"
+#endif
+
+static nsresult GetAppRootDir(nsIFile *aExeFile, nsIFile** aFile);
+
+//-----------------------------------------------------------------------------
+nsresult
+TorBrowser_GetUserDataDir(nsIFile *aExeFile, nsIFile** aFile)
+{
+ NS_ENSURE_ARG_POINTER(aFile);
+ nsCOMPtr<nsIFile> tbDataDir;
+
+#ifdef TOR_BROWSER_DATA_OUTSIDE_APP_DIR
+ nsAutoCString tbDataLeafName(NS_LITERAL_CSTRING("TorBrowser-Data"));
+ nsCOMPtr<nsIFile> appRootDir;
+ nsresult rv = GetAppRootDir(aExeFile, getter_AddRefs(appRootDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+#ifndef XP_MACOSX
+ // On all platforms except Mac OS, we always operate in a "portable" mode
+ // where the TorBrowser-Data directory is located next to the application.
+ rv = appRootDir->GetParent(getter_AddRefs(tbDataDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+ rv = tbDataDir->AppendNative(tbDataLeafName);
+ NS_ENSURE_SUCCESS(rv, rv);
+#else
+ // For Mac OS, determine whether we should store user data in the OS's
+ // standard location (i.e., under ~/Library/Application Support). We use
+ // the OS location if (1) the application is installed in a directory whose
+ // path contains "/Applications" or (2) the TorBrowser-Data directory does
+ // not exist and cannot be created (which probably means we lack write
+ // permission to the directory that contains the application).
+ nsAutoString appRootPath;
+ rv = appRootDir->GetPath(appRootPath);
+ NS_ENSURE_SUCCESS(rv, rv);
+ bool useOSLocation = (appRootPath.Find("/Applications",
+ true /* ignore case */) >= 0);
+ if (!useOSLocation) {
+ // We hope to use the portable (aka side-by-side) approach, but before we
+ // commit to that, let's ensure that we can create the TorBrowser-Data
+ // directory. If it already exists, we will try to use it; if not and we
+ // fail to create it, we will switch to ~/Library/Application Support.
+ rv = appRootDir->GetParent(getter_AddRefs(tbDataDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+ rv = tbDataDir->AppendNative(tbDataLeafName);
+ NS_ENSURE_SUCCESS(rv, rv);
+ bool exists = false;
+ rv = tbDataDir->Exists(&exists);
+ if (NS_SUCCEEDED(rv) && !exists)
+ rv = tbDataDir->Create(nsIFile::DIRECTORY_TYPE, 0700);
+ useOSLocation = NS_FAILED(rv);
+ }
+
+ if (useOSLocation) {
+ // We are using ~/Library/Application Support/TorBrowser-Data. We do not
+ // need to create that directory here because the code in nsXREDirProvider
+ // will do so (and the user should always have write permission for
+ // ~/Library/Application Support; if they do not we have no more options).
+ FSRef fsRef;
+ OSErr err = ::FSFindFolder(kUserDomain, kApplicationSupportFolderType,
+ kCreateFolder, &fsRef);
+ NS_ENSURE_FALSE(err, NS_ERROR_FAILURE);
+ // To convert the FSRef returned by FSFindFolder() into an nsIFile that
+ // points to ~/Library/Application Support, we first create an empty
+ // nsIFile object (no path) and then use InitWithFSRef() to set the
+ // path.
+ rv = NS_NewNativeLocalFile(EmptyCString(), true,
+ getter_AddRefs(tbDataDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+ nsCOMPtr<nsILocalFileMac> dirFileMac = do_QueryInterface(tbDataDir);
+ if (!dirFileMac)
+ return NS_ERROR_UNEXPECTED;
+ rv = dirFileMac->InitWithFSRef(&fsRef);
+ NS_ENSURE_SUCCESS(rv, rv);
+ rv = tbDataDir->AppendNative(tbDataLeafName);
+ NS_ENSURE_SUCCESS(rv, rv);
+ }
+#endif
+
+#elif defined(ANDROID)
+ // Tor Browser Android stores data in the app home directory.
+ const char* homeDir = getenv("HOME");
+ if (!homeDir || !*homeDir)
+ return NS_ERROR_FAILURE;
+ nsresult rv = NS_NewNativeLocalFile(nsDependentCString(homeDir), true,
+ getter_AddRefs(tbDataDir));
+#else
+ // User data is embedded within the application directory (i.e.,
+ // TOR_BROWSER_DATA_OUTSIDE_APP_DIR is not defined).
+ nsresult rv = GetAppRootDir(aExeFile, getter_AddRefs(tbDataDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+ rv = tbDataDir->AppendNative(NS_LITERAL_CSTRING("TorBrowser"));
+ NS_ENSURE_SUCCESS(rv, rv);
+#endif
+
+ tbDataDir.forget(aFile);
+ return NS_OK;
+}
+
+static nsresult
+GetAppRootDir(nsIFile *aExeFile, nsIFile** aFile)
+{
+ NS_ENSURE_ARG_POINTER(aExeFile);
+ NS_ENSURE_ARG_POINTER(aFile);
+ nsCOMPtr<nsIFile> appRootDir = aExeFile;
+
+ int levelsToRemove = 1; // Remove firefox (the executable file).
+#if defined(XP_MACOSX)
+ levelsToRemove += 2; // On Mac OS, we must also remove Contents/MacOS.
+#endif
+ while (appRootDir && (levelsToRemove > 0)) {
+ // When crawling up the hierarchy, components named "." do not count.
+ nsAutoCString removedName;
+ nsresult rv = appRootDir->GetNativeLeafName(removedName);
+ NS_ENSURE_SUCCESS(rv, rv);
+ bool didRemove = !removedName.Equals(".");
+
+ // Remove a directory component.
+ nsCOMPtr<nsIFile> parentDir;
+ rv = appRootDir->GetParent(getter_AddRefs(parentDir));
+ NS_ENSURE_SUCCESS(rv, rv);
+ appRootDir = parentDir;
+
+ if (didRemove)
+ --levelsToRemove;
+ }
+
+ if (!appRootDir)
+ return NS_ERROR_FAILURE;
+
+ appRootDir.forget(aFile);
+ return NS_OK;
+}
diff --git a/xpcom/io/TorFileUtils.h b/xpcom/io/TorFileUtils.h
new file mode 100644
index 000000000000..d5e86abf9685
--- /dev/null
+++ b/xpcom/io/TorFileUtils.h
@@ -0,0 +1,33 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set ts=8 sts=2 et sw=2 tw=80: */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#ifndef TorFileUtils_h__
+#define TorFileUtils_h__
+
+#include "nsIFile.h"
+
+/**
+ * TorBrowser_GetUserDataDir
+ *
+ * Retrieve the Tor Browser user data directory.
+ * When built with --enable-tor-browser-data-outside-app-dir, the directory
+ * is next to the application directory, except on Mac OS where it may be
+ * there or it may be at ~/Library/Application Support/TorBrowser-Data (the
+ * latter location is used if the .app bundle is in a directory whose path
+ * contains /Applications or if we lack write access to the directory that
+ * contains the .app).
+ * When built without --enable-tor-browser-data-outside-app-dir, this
+ * directory is TorBrowser.app/TorBrowser.
+ *
+ * @param aExeFile The firefox executable.
+ * @param aFile Out parameter that is set to the Tor Browser user data
+ * directory.
+ * @return NS_OK on success. Error otherwise.
+ */
+extern nsresult
+TorBrowser_GetUserDataDir(nsIFile *aExeFile, nsIFile** aFile);
+
+#endif // !TorFileUtils_h__
diff --git a/xpcom/io/moz.build b/xpcom/io/moz.build
index a165b491bc56..b0eb74f4c56d 100644
--- a/xpcom/io/moz.build
+++ b/xpcom/io/moz.build
@@ -86,6 +86,7 @@ EXPORTS += [
'nsUnicharInputStream.h',
'nsWildCard.h',
'SpecialSystemDirectory.h',
+ 'TorFileUtils.h',
]
EXPORTS.mozilla += [
@@ -135,6 +136,10 @@ UNIFIED_SOURCES += [
'SpecialSystemDirectory.cpp',
]
+SOURCES += [
+ 'TorFileUtils.cpp',
+]
+
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
SOURCES += [
'CocoaFileUtils.mm',
diff --git a/xpcom/io/nsAppFileLocationProvider.cpp b/xpcom/io/nsAppFileLocationProvider.cpp
index 81551a8e3893..9f95e5cbec2d 100644
--- a/xpcom/io/nsAppFileLocationProvider.cpp
+++ b/xpcom/io/nsAppFileLocationProvider.cpp
@@ -28,6 +28,8 @@
# include <sys/param.h>
#endif
+#include "TorFileUtils.h"
+
// WARNING: These hard coded names need to go away. They need to
// come from localizable resources
@@ -234,8 +236,14 @@ nsresult nsAppFileLocationProvider::CloneMozBinDirectory(nsIFile** aLocalFile) {
// GetProductDirectory - Gets the directory which contains the application data
// folder
//
+#ifdef TOR_BROWSER_DATA_OUTSIDE_APP_DIR
+// UNIX and WIN : <App Folder>/../TorBrowser-Data/Browser
+// Mac : <App Folder>/../../../TorBrowser-Data/Browser OR
+// ~/Library/Application Support/TorBrowser-Data/Browser
+#else
// UNIX and WIN : <App Folder>/TorBrowser/Data/Browser
// Mac : <App Folder>/../../TorBrowser/Data/Browser
+#endif
//----------------------------------------------------------------------------------------
nsresult nsAppFileLocationProvider::GetProductDirectory(nsIFile** aLocalFile,
bool aLocal) {
@@ -243,42 +251,25 @@ nsresult nsAppFileLocationProvider::GetProductDirectory(nsIFile** aLocalFile,
return NS_ERROR_INVALID_ARG;
}
- nsresult rv;
+ nsresult rv = NS_ERROR_UNEXPECTED;
bool exists;
- nsCOMPtr<nsIFile> localDir;
+ nsCOMPtr<nsIFile> localDir, exeFile;
- rv = CloneMozBinDirectory(getter_AddRefs(localDir));
+ nsCOMPtr<nsIProperties> directoryService(
+ do_GetService(NS_DIRECTORY_SERVICE_CONTRACTID, &rv));
+ NS_ENSURE_SUCCESS(rv, rv);
+ rv = directoryService->Get(XRE_EXECUTABLE_FILE, NS_GET_IID(nsIFile),
+ getter_AddRefs(exeFile));
+ NS_ENSURE_SUCCESS(rv, rv);
+ rv = TorBrowser_GetUserDataDir(exeFile, getter_AddRefs(localDir));
NS_ENSURE_SUCCESS(rv, rv);
- int levelsToRemove = 1; // In FF21+, bin dir points to browser subdirectory.
-#if defined(XP_MACOSX)
- levelsToRemove += 2;
-#endif
- while (localDir && (levelsToRemove > 0)) {
- // When crawling up the hierarchy, components named "." do not count.
- nsAutoCString removedName;
- rv = localDir->GetNativeLeafName(removedName);
- NS_ENSURE_SUCCESS(rv, rv);
- bool didRemove = !removedName.Equals(".");
-
- // Remove a directory component.
- nsCOMPtr<nsIFile> parentDir;
- rv = localDir->GetParent(getter_AddRefs(parentDir));
- NS_ENSURE_SUCCESS(rv, rv);
- localDir = parentDir;
-
- if (didRemove) {
- --levelsToRemove;
- }
- }
-
- if (!localDir) {
- return NS_ERROR_FAILURE;
- }
-
+#ifdef TOR_BROWSER_DATA_OUTSIDE_APP_DIR
+ rv = localDir->AppendNative(NS_LITERAL_CSTRING("Browser"));
+#else
rv = localDir->AppendRelativeNativePath(
- NS_LITERAL_CSTRING("TorBrowser" XPCOM_FILE_PATH_SEPARATOR
- "Data" XPCOM_FILE_PATH_SEPARATOR "Browser"));
+ NS_LITERAL_CSTRING("Data" XPCOM_FILE_PATH_SEPARATOR "Browser"));
+#endif
NS_ENSURE_SUCCESS(rv, rv);
if (aLocal) {
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 18821: Disable libmdns for Android and Desktop
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit f879b33bcdf920c0480dc316b8b30f70504dc9d0
Author: Georg Koppen <gk(a)torproject.org>
Date: Wed Apr 20 14:34:50 2016 +0000
Bug 18821: Disable libmdns for Android and Desktop
There should be no need to remove the OS X support introduced in
https://bugzilla.mozilla.org/show_bug.cgi?id=1225726 as enabling this
is governed by a preference (which is actually set to `false`). However,
we remove it at build time as well (defense in depth).
This is basically a backout of the relevant passages of
https://hg.mozilla.org/mozilla-central/rev/6bfb430de85d,
https://hg.mozilla.org/mozilla-central/rev/609b337bf7ab and
https://hg.mozilla.org/mozilla-central/rev/8e092ec5fbbd.
Fixed bug 21861 (Disable additional mDNS code to avoid proxy bypasses)
as well.
---
dom/presentation/provider/components.conf | 10 ----------
dom/presentation/provider/moz.build | 1 -
netwerk/dns/mdns/libmdns/components.conf | 15 ---------------
netwerk/dns/mdns/libmdns/moz.build | 28 ----------------------------
4 files changed, 54 deletions(-)
diff --git a/dom/presentation/provider/components.conf b/dom/presentation/provider/components.conf
index 04cb28ec757e..56994ed7cd94 100644
--- a/dom/presentation/provider/components.conf
+++ b/dom/presentation/provider/components.conf
@@ -6,9 +6,6 @@
categories = {}
-if buildconfig.substs['MOZ_WIDGET_TOOLKIT'] in ('cocoa', 'android'):
- categories["presentation-device-provider"] = "MulticastDNSDeviceProvider"
-
Classes = [
{
'cid': '{f4079b8b-ede5-4b90-a112-5b415a931deb}',
@@ -16,11 +13,4 @@ Classes = [
'jsm': 'resource://gre/modules/PresentationControlService.jsm',
'constructor': 'PresentationControlService',
},
- {
- 'cid': '{814f947a-52f7-41c9-94a1-3684797284ac}',
- 'contract_ids': ['@mozilla.org/presentation-device/multicastdns-provider;1'],
- 'type': 'mozilla::dom::presentation::MulticastDNSDeviceProvider',
- 'headers': ['/dom/presentation/provider/MulticastDNSDeviceProvider.h'],
- 'categories': categories,
- },
]
diff --git a/dom/presentation/provider/moz.build b/dom/presentation/provider/moz.build
index eaea61af415a..d97b75ddbcf9 100644
--- a/dom/presentation/provider/moz.build
+++ b/dom/presentation/provider/moz.build
@@ -10,7 +10,6 @@ EXTRA_JS_MODULES += [
UNIFIED_SOURCES += [
'DeviceProviderHelpers.cpp',
- 'MulticastDNSDeviceProvider.cpp',
]
XPCOM_MANIFESTS += [
diff --git a/netwerk/dns/mdns/libmdns/components.conf b/netwerk/dns/mdns/libmdns/components.conf
index 6e64140c820e..1b50dbf673a4 100644
--- a/netwerk/dns/mdns/libmdns/components.conf
+++ b/netwerk/dns/mdns/libmdns/components.conf
@@ -5,20 +5,5 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
Classes = [
- {
- 'cid': '{14a50f2b-7ff6-48a5-88e3-615fd111f5d3}',
- 'contract_ids': ['@mozilla.org/toolkit/components/mdnsresponder/dns-info;1'],
- 'type': 'mozilla::net::nsDNSServiceInfo',
- 'headers': ['/netwerk/dns/mdns/libmdns/nsDNSServiceInfo.h'],
- },
]
-if buildconfig.substs['MOZ_WIDGET_TOOLKIT'] != 'cocoa':
- Classes += [
- {
- 'cid': '{f9346d98-f27a-4e89-b744-493843416480}',
- 'contract_ids': ['@mozilla.org/toolkit/components/mdnsresponder/dns-sd;1'],
- 'jsm': 'resource://gre/modules/DNSServiceDiscovery.jsm',
- 'constructor': 'nsDNSServiceDiscovery',
- },
- ]
diff --git a/netwerk/dns/mdns/libmdns/moz.build b/netwerk/dns/mdns/libmdns/moz.build
index 05dc75eb9eda..a6fc1a8a559a 100644
--- a/netwerk/dns/mdns/libmdns/moz.build
+++ b/netwerk/dns/mdns/libmdns/moz.build
@@ -4,34 +4,6 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
- UNIFIED_SOURCES += [
- 'MDNSResponderOperator.cpp',
- 'MDNSResponderReply.cpp',
- 'nsDNSServiceDiscovery.cpp',
- ]
-
- LOCAL_INCLUDES += [
- '/netwerk/base',
- ]
-
-else:
- EXTRA_JS_MODULES += [
- 'DNSServiceDiscovery.jsm',
- 'fallback/DataReader.jsm',
- 'fallback/DataWriter.jsm',
- 'fallback/DNSPacket.jsm',
- 'fallback/DNSRecord.jsm',
- 'fallback/DNSResourceRecord.jsm',
- 'fallback/DNSTypes.jsm',
- 'fallback/MulticastDNS.jsm',
- ]
-
- if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
- EXTRA_JS_MODULES += [
- 'MulticastDNSAndroid.jsm',
- ]
-
UNIFIED_SOURCES += [
'nsDNSServiceInfo.cpp',
]
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 18800: Remove localhost DNS lookup in nsProfileLock.cpp
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 81ffeeab44bb2c7b3b6634854894c8da20fea306
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Thu Apr 21 10:40:26 2016 -0400
Bug 18800: Remove localhost DNS lookup in nsProfileLock.cpp
Instead of using the local computer's IP address within
symlink-based profile lock signatures, always use 127.0.0.1.
---
toolkit/profile/nsProfileLock.cpp | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git a/toolkit/profile/nsProfileLock.cpp b/toolkit/profile/nsProfileLock.cpp
index 25c4f5a79e56..1942815e3446 100644
--- a/toolkit/profile/nsProfileLock.cpp
+++ b/toolkit/profile/nsProfileLock.cpp
@@ -289,18 +289,17 @@ nsresult nsProfileLock::LockWithSymlink(nsIFile* aLockFile,
if (!mReplacedLockTime)
aLockFile->GetLastModifiedTimeOfLink(&mReplacedLockTime);
+ // For Tor Browser, avoid a DNS lookup here so the Tor network is not
+ // bypassed. Instead, always use 127.0.0.1 for the IP address portion
+ // of the lock signature, which may cause the browser to refuse to
+ // start in the rare event that all of the following conditions are met:
+ // 1. The browser profile is on a network file system.
+ // 2. The file system does not support fcntl() locking.
+ // 3. Tor Browser is run from two different computers at the same time.
+
struct in_addr inaddr;
inaddr.s_addr = htonl(INADDR_LOOPBACK);
- char hostname[256];
- PRStatus status = PR_GetSystemInfo(PR_SI_HOSTNAME, hostname, sizeof hostname);
- if (status == PR_SUCCESS) {
- char netdbbuf[PR_NETDB_BUF_SIZE];
- PRHostEnt hostent;
- status = PR_GetHostByName(hostname, netdbbuf, sizeof netdbbuf, &hostent);
- if (status == PR_SUCCESS) memcpy(&inaddr, hostent.h_addr, sizeof inaddr);
- }
-
mozilla::SmprintfPointer signature =
mozilla::Smprintf("%s:%s%lu", inet_ntoa(inaddr),
aHaveFcntlLock ? "+" : "", (unsigned long)getpid());
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 19121: reinstate the update.xml hash check
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 59696f4f4de5e64d7e71bf7601ee5d68c76217c2
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Mon Apr 23 15:22:57 2018 -0400
Bug 19121: reinstate the update.xml hash check
Revert most changes from Mozilla Bug 1373267 "Remove hashFunction and
hashValue attributes from nsIUpdatePatch and code related to these
attributes." Changes to the tests were not reverted; the tests have
been changed significantly and we do not run automated updater tests
for Tor Browser at this time.
Also partial revert of commit f1241db6986e4b54473a1ed870f7584c75d51122.
Revert the nsUpdateService.js changes from Mozilla Bug 862173 "don't
verify mar file hash when using mar signing to verify the mar file
(lessens main thread I/O)."
Changes to the tests were not reverted; the tests have been changed
significantly and we do not run automated updater tests for
Tor Browser at this time.
We kept the addition to the AppConstants API in case other JS code
references it in the future.
---
toolkit/modules/AppConstants.jsm | 7 ++++
toolkit/mozapps/update/UpdateService.jsm | 63 ++++++++++++++++++++++++++++-
toolkit/mozapps/update/UpdateTelemetry.jsm | 1 +
toolkit/mozapps/update/nsIUpdateService.idl | 11 +++++
4 files changed, 81 insertions(+), 1 deletion(-)
diff --git a/toolkit/modules/AppConstants.jsm b/toolkit/modules/AppConstants.jsm
index cd8ca2659626..84516f0d4c66 100644
--- a/toolkit/modules/AppConstants.jsm
+++ b/toolkit/modules/AppConstants.jsm
@@ -212,6 +212,13 @@ this.AppConstants = Object.freeze({
false,
#endif
+ MOZ_VERIFY_MAR_SIGNATURE:
+#ifdef MOZ_VERIFY_MAR_SIGNATURE
+ true,
+#else
+ false,
+#endif
+
MOZ_MAINTENANCE_SERVICE:
#ifdef MOZ_MAINTENANCE_SERVICE
true,
diff --git a/toolkit/mozapps/update/UpdateService.jsm b/toolkit/mozapps/update/UpdateService.jsm
index 1dc86a073646..ead961ab5252 100644
--- a/toolkit/mozapps/update/UpdateService.jsm
+++ b/toolkit/mozapps/update/UpdateService.jsm
@@ -742,6 +742,20 @@ function LOG(string) {
}
}
+/**
+ * Convert a string containing binary values to hex.
+ */
+function binaryToHex(input) {
+ var result = "";
+ for (var i = 0; i < input.length; ++i) {
+ var hex = input.charCodeAt(i).toString(16);
+ if (hex.length == 1)
+ hex = "0" + hex;
+ result += hex;
+ }
+ return result;
+}
+
/**
* Gets the specified directory at the specified hierarchy under the
* update root directory and creates it if it doesn't exist.
@@ -1534,6 +1548,8 @@ function UpdatePatch(patch) {
}
break;
case "finalURL":
+ case "hashFunction":
+ case "hashValue":
case "state":
case "type":
case "URL":
@@ -1553,6 +1569,8 @@ UpdatePatch.prototype = {
// over writing nsIUpdatePatch attributes.
_attrNames: [
"errorCode",
+ "hashFunction",
+ "hashValue",
"finalURL",
"selected",
"size",
@@ -1566,6 +1584,8 @@ UpdatePatch.prototype = {
*/
serialize: function UpdatePatch_serialize(updates) {
var patch = updates.createElementNS(URI_UPDATE_NS, "patch");
+ patch.setAttribute("hashFunction", this.hashFunction);
+ patch.setAttribute("hashValue", this.hashValue);
patch.setAttribute("size", this.size);
patch.setAttribute("type", this.type);
patch.setAttribute("URL", this.URL);
@@ -4315,7 +4335,42 @@ Downloader.prototype = {
}
LOG("Downloader:_verifyDownload downloaded size == expected size.");
- return true;
+ let fileStream = Cc["@mozilla.org/network/file-input-stream;1"].
+ createInstance(Ci.nsIFileInputStream);
+ fileStream.init(destination, FileUtils.MODE_RDONLY, FileUtils.PERMS_FILE, 0);
+
+ let digest;
+ try {
+ let hash = Cc["@mozilla.org/security/hash;1"].
+ createInstance(Ci.nsICryptoHash);
+ var hashFunction = Ci.nsICryptoHash[this._patch.hashFunction.toUpperCase()];
+ if (hashFunction == undefined) {
+ throw Cr.NS_ERROR_UNEXPECTED;
+ }
+ hash.init(hashFunction);
+ hash.updateFromStream(fileStream, -1);
+ // NOTE: For now, we assume that the format of _patch.hashValue is hex
+ // encoded binary (such as what is typically output by programs like
+ // sha1sum). In the future, this may change to base64 depending on how
+ // we choose to compute these hashes.
+ digest = binaryToHex(hash.finish(false));
+ } catch (e) {
+ LOG("Downloader:_verifyDownload - failed to compute hash of the " +
+ "downloaded update archive");
+ digest = "";
+ }
+
+ fileStream.close();
+
+ if (digest == this._patch.hashValue.toLowerCase()) {
+ LOG("Downloader:_verifyDownload hashes match.");
+ return true;
+ }
+
+ LOG("Downloader:_verifyDownload hashes do not match. ");
+ AUSTLMY.pingDownloadCode(this.isCompleteUpdate,
+ AUSTLMY.DWNLD_ERR_VERIFY_NO_HASH_MATCH);
+ return false;
},
/**
@@ -4889,6 +4944,9 @@ Downloader.prototype = {
" is higher than patch size: " +
this._patch.size
);
+ // It's important that we use a different code than
+ // NS_ERROR_CORRUPTED_CONTENT so that tests can verify the difference
+ // between a hash error and a wrong download error.
AUSTLMY.pingDownloadCode(
this.isCompleteUpdate,
AUSTLMY.DWNLD_ERR_PATCH_SIZE_LARGER
@@ -4907,6 +4965,9 @@ Downloader.prototype = {
" is not equal to expected patch size: " +
this._patch.size
);
+ // It's important that we use a different code than
+ // NS_ERROR_CORRUPTED_CONTENT so that tests can verify the difference
+ // between a hash error and a wrong download error.
AUSTLMY.pingDownloadCode(
this.isCompleteUpdate,
AUSTLMY.DWNLD_ERR_PATCH_SIZE_NOT_EQUAL
diff --git a/toolkit/mozapps/update/UpdateTelemetry.jsm b/toolkit/mozapps/update/UpdateTelemetry.jsm
index 6f560b07cfe7..b6c71b2ef8d6 100644
--- a/toolkit/mozapps/update/UpdateTelemetry.jsm
+++ b/toolkit/mozapps/update/UpdateTelemetry.jsm
@@ -180,6 +180,7 @@ var AUSTLMY = {
DWNLD_ERR_VERIFY_NO_REQUEST: 13,
DWNLD_ERR_VERIFY_PATCH_SIZE_NOT_EQUAL: 14,
DWNLD_ERR_WRITE_FAILURE: 15,
+ DWNLD_ERR_VERIFY_NO_HASH_MATCH: 16,
// Temporary failure code to see if there are failures without an update phase
DWNLD_UNKNOWN_PHASE_ERR_WRITE_FAILURE: 40,
diff --git a/toolkit/mozapps/update/nsIUpdateService.idl b/toolkit/mozapps/update/nsIUpdateService.idl
index 5e4cc63c3547..47bb27b17d41 100644
--- a/toolkit/mozapps/update/nsIUpdateService.idl
+++ b/toolkit/mozapps/update/nsIUpdateService.idl
@@ -39,6 +39,17 @@ interface nsIUpdatePatch : nsISupports
*/
attribute AString finalURL;
+ /**
+ * The hash function to use when determining this file's integrity
+ */
+ attribute AString hashFunction;
+
+ /**
+ * The value of the hash function named above that should be computed if
+ * this file is not corrupt.
+ */
+ attribute AString hashValue;
+
/**
* The size of this file, in bytes.
*/
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 21724: Make Firefox and Tor Browser distinct macOS apps
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 2ddadfa3cc602d6eaa1a0f608c10b2c28d3197ba
Author: teor <teor2345(a)gmail.com>
Date: Mon Mar 13 23:06:23 2017 +1100
Bug 21724: Make Firefox and Tor Browser distinct macOS apps
When macOS opens a document or selects a default browser, it sometimes
uses the CFBundleSignature. Changing from the Firefox MOZB signature to
a different signature TORB allows macOS to distinguish between Firefox
and Tor Browser.
---
browser/app/Makefile.in | 2 +-
browser/app/macbuild/Contents/Info.plist.in | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/browser/app/Makefile.in b/browser/app/Makefile.in
index 1aec6541fc0f..6770319f1866 100644
--- a/browser/app/Makefile.in
+++ b/browser/app/Makefile.in
@@ -103,5 +103,5 @@ ifdef MOZ_UPDATER
mv -f '$(dist_dest)/Contents/MacOS/updater.app/Contents/MacOS/org.mozilla.updater' '$(dist_dest)/Contents/Library/LaunchServices'
ln -s ../../../../Library/LaunchServices/org.mozilla.updater '$(dist_dest)/Contents/MacOS/updater.app/Contents/MacOS/org.mozilla.updater'
endif
- printf APPLMOZB > '$(dist_dest)/Contents/PkgInfo'
+ printf APPLTORB > '$(dist_dest)/Contents/PkgInfo'
endif
diff --git a/browser/app/macbuild/Contents/Info.plist.in b/browser/app/macbuild/Contents/Info.plist.in
index f6791ea48125..95b3bc83905c 100644
--- a/browser/app/macbuild/Contents/Info.plist.in
+++ b/browser/app/macbuild/Contents/Info.plist.in
@@ -179,7 +179,7 @@
<key>CFBundleShortVersionString</key>
<string>%APP_VERSION%</string>
<key>CFBundleSignature</key>
- <string>MOZB</string>
+ <string>TORB</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 16940: After update, load local change notes.
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 61b1ed0f84c6383902696b37e4bbda01cdb95f6d
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Wed Nov 25 11:36:20 2015 -0500
Bug 16940: After update, load local change notes.
Add an about:tbupdate page that displays the first section from
TorBrowser/Docs/ChangeLog.txt and includes a link to the remote
post-update page (typically our blog entry for the release).
Always load about:tbupdate in a content process, but implement the
code that reads the file system (changelog) in the chrome process
for compatibility with future sandboxing efforts.
Also fix bug 29440. Now about:tbupdate is styled as a fairly simple
changelog page that is designed to be displayed via a link that is on
about:tor.
---
browser/actors/AboutTBUpdateChild.jsm | 53 ++++++++
browser/actors/moz.build | 5 +
.../base/content/abouttbupdate/aboutTBUpdate.css | 74 ++++++++++++
.../base/content/abouttbupdate/aboutTBUpdate.js | 10 ++
.../base/content/abouttbupdate/aboutTBUpdate.xhtml | 39 ++++++
browser/base/content/browser-siteIdentity.js | 2 +-
browser/base/content/browser.js | 4 +
browser/base/jar.mn | 5 +
browser/components/BrowserContentHandler.jsm | 55 ++++++---
browser/components/BrowserGlue.jsm | 25 ++++
browser/components/about/AboutRedirector.cpp | 6 +
browser/components/about/components.conf | 3 +
browser/components/moz.build | 5 +-
.../locales/en-US/chrome/browser/aboutTBUpdate.dtd | 8 ++
browser/locales/jar.mn | 3 +
browser/modules/AboutTBUpdate.jsm | 134 +++++++++++++++++++++
browser/modules/moz.build | 5 +
17 files changed, 420 insertions(+), 16 deletions(-)
diff --git a/browser/actors/AboutTBUpdateChild.jsm b/browser/actors/AboutTBUpdateChild.jsm
new file mode 100644
index 000000000000..91bb4dbba888
--- /dev/null
+++ b/browser/actors/AboutTBUpdateChild.jsm
@@ -0,0 +1,53 @@
+// Copyright (c) 2019, The Tor Project, Inc.
+// See LICENSE for licensing information.
+//
+// vim: set sw=2 sts=2 ts=8 et syntax=javascript:
+
+var EXPORTED_SYMBOLS = ["AboutTBUpdateChild"];
+
+const {ActorChild} = ChromeUtils.import("resource://gre/modules/ActorChild.jsm");
+
+class AboutTBUpdateChild extends ActorChild {
+ receiveMessage(aMessage) {
+ if (aMessage.name == "AboutTBUpdate:Update")
+ this.onUpdate(aMessage.data);
+ }
+
+ handleEvent(aEvent) {
+ switch (aEvent.type) {
+ case "AboutTBUpdateLoad":
+ this.onPageLoad();
+ break;
+ case "pagehide":
+ this.onPageHide(aEvent);
+ break;
+ }
+ }
+
+ // aData may contain the following string properties:
+ // version
+ // releaseDate
+ // moreInfoURL
+ // releaseNotes
+ onUpdate(aData) {
+ let doc = this.content.document;
+ doc.getElementById("version-content").textContent = aData.version;
+ if (aData.releaseDate) {
+ doc.body.setAttribute("havereleasedate", "true");
+ doc.getElementById("releasedate-content").textContent = aData.releaseDate;
+ }
+ if (aData.moreInfoURL)
+ doc.getElementById("infolink").setAttribute("href", aData.moreInfoURL);
+ doc.getElementById("releasenotes-content").textContent = aData.releaseNotes;
+ }
+
+ onPageLoad() {
+ this.mm.sendAsyncMessage("AboutTBUpdate:RequestUpdate");
+ }
+
+ onPageHide(aEvent) {
+ if (aEvent.target.defaultView.frameElement) {
+ return;
+ }
+ }
+}
diff --git a/browser/actors/moz.build b/browser/actors/moz.build
index 4b903146699e..e70f0f09fe3a 100644
--- a/browser/actors/moz.build
+++ b/browser/actors/moz.build
@@ -74,3 +74,8 @@ FINAL_TARGET_FILES.actors += [
'WebRTCChild.jsm',
'WebRTCParent.jsm',
]
+
+if CONFIG['TOR_BROWSER_UPDATE']:
+ FINAL_TARGET_FILES.actors += [
+ 'AboutTBUpdateChild.jsm',
+ ]
diff --git a/browser/base/content/abouttbupdate/aboutTBUpdate.css b/browser/base/content/abouttbupdate/aboutTBUpdate.css
new file mode 100644
index 000000000000..7c1a34b77f17
--- /dev/null
+++ b/browser/base/content/abouttbupdate/aboutTBUpdate.css
@@ -0,0 +1,74 @@
+/*
+ * Copyright (c) 2019, The Tor Project, Inc.
+ * See LICENSE for licensing information.
+ *
+ * vim: set sw=2 sts=2 ts=8 et syntax=css:
+ */
+
+:root {
+ --abouttor-text-color: white;
+ --abouttor-bg-toron-color: #420C5D;
+}
+
+body {
+ font-family: Helvetica, Arial, sans-serif;
+ color: var(--abouttor-text-color);
+ background-color: var(--abouttor-bg-toron-color);
+ background-attachment: fixed;
+ background-size: 100% 100%;
+}
+
+a {
+ color: var(--abouttor-text-color);
+}
+
+.two-column-grid {
+ display: inline-grid;
+ grid-template-columns: auto auto;
+ grid-column-gap: 50px;
+ margin: 10px 0px 0px 50px;
+}
+
+.two-column-grid div {
+ margin-top: 40px;
+ align-self: baseline; /* Align baseline of text across the row. */
+}
+
+.label-column {
+ font-size: 14px;
+ font-weight: 400;
+}
+
+/*
+ * Use a reduced top margin to bring the row that contains the
+ * "visit our website" link closer to the row that precedes it. This
+ * looks better because the "visit our website" row does not have a
+ * label in the left column.
+ */
+div.more-info-row {
+ margin-top: 5px;
+ font-size: 14px;
+}
+
+#version-content {
+ font-size: 50px;
+ font-weight: 300;
+}
+
+body:not([havereleasedate]) .release-date-cell {
+ display: none;
+}
+
+#releasedate-content {
+ font-size: 17px;
+}
+
+#releasenotes-label {
+ align-self: start; /* Anchor "Release Notes" label at the top. */
+}
+
+#releasenotes-content {
+ font-family: monospace;
+ font-size: 15px;
+ white-space: pre;
+}
diff --git a/browser/base/content/abouttbupdate/aboutTBUpdate.js b/browser/base/content/abouttbupdate/aboutTBUpdate.js
new file mode 100644
index 000000000000..da7553f0ae81
--- /dev/null
+++ b/browser/base/content/abouttbupdate/aboutTBUpdate.js
@@ -0,0 +1,10 @@
+// Copyright (c) 2019, The Tor Project, Inc.
+// See LICENSE for licensing information.
+//
+// vim: set sw=2 sts=2 ts=8 et syntax=javascript:
+
+
+addEventListener("load", () => {
+ let event = new CustomEvent("AboutTBUpdateLoad", { bubbles: true });
+ document.dispatchEvent(event);
+});
diff --git a/browser/base/content/abouttbupdate/aboutTBUpdate.xhtml b/browser/base/content/abouttbupdate/aboutTBUpdate.xhtml
new file mode 100644
index 000000000000..8489cfef5083
--- /dev/null
+++ b/browser/base/content/abouttbupdate/aboutTBUpdate.xhtml
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!DOCTYPE html [
+ <!ENTITY % htmlDTD
+ PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "DTD/xhtml1-strict.dtd">
+ %htmlDTD;
+ <!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd">
+ %globalDTD;
+ <!ENTITY % tbUpdateDTD SYSTEM "chrome://browser/locale/aboutTBUpdate.dtd">
+ %tbUpdateDTD;
+]>
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <meta http-equiv="Content-Security-Policy" content="default-src chrome:; object-src 'none'" />
+ <title>&aboutTBUpdate.changelogTitle;</title>
+ <link rel="stylesheet" type="text/css"
+ href="chrome://browser/content/abouttbupdate/aboutTBUpdate.css"/>
+ <script src="chrome://browser/content/abouttbupdate/aboutTBUpdate.js"
+ type="text/javascript"/>
+</head>
+<body dir="&locale.dir;">
+<div class="two-column-grid">
+ <div class="label-column">&aboutTBUpdate.version;</div>
+ <div id="version-content"/>
+
+ <div class="label-column release-date-cell">&aboutTBUpdate.releaseDate;</div>
+ <div id="releasedate-content" class="release-date-cell"/>
+
+ <div class="more-info-row"/>
+ <div class="more-info-row">&aboutTBUpdate.linkPrefix;<a id="infolink">&aboutTBUpdate.linkLabel;</a>&aboutTBUpdate.linkSuffix;</div>
+
+ <div id="releasenotes-label"
+ class="label-column">&aboutTBUpdate.releaseNotes;</div>
+ <div id="releasenotes-content"></div>
+</div>
+</body>
+</html>
diff --git a/browser/base/content/browser-siteIdentity.js b/browser/base/content/browser-siteIdentity.js
index d545ee055367..80c3f2a86538 100644
--- a/browser/base/content/browser-siteIdentity.js
+++ b/browser/base/content/browser-siteIdentity.js
@@ -57,7 +57,7 @@ var gIdentityHandler = {
* RegExp used to decide if an about url should be shown as being part of
* the browser UI.
*/
- _secureInternalUIWhitelist: /^(?:accounts|addons|cache|certificate|config|crashes|downloads|license|logins|preferences|protections|rights|sessionrestore|support|welcomeback)(?:[?#]|$)/i,
+ _secureInternalUIWhitelist: (AppConstants.TOR_BROWSER_UPDATE ? /^(?:accounts|addons|cache|certificate|config|crashes|downloads|license|logins|preferences|protections|rights|sessionrestore|support|welcomeback|tor|tbupdate)(?:[?#]|$)/i : /^(?:accounts|addons|cache|certificate|config|crashes|downloads|license|logins|preferences|protections|rights|sessionrestore|support|welcomeback|tor)(?:[?#]|$)/i),
/**
* Whether the established HTTPS connection is considered "broken".
diff --git a/browser/base/content/browser.js b/browser/base/content/browser.js
index 3c342dedd5d4..036d92e131da 100644
--- a/browser/base/content/browser.js
+++ b/browser/base/content/browser.js
@@ -631,6 +631,10 @@ var gInitialPages = [
"about:newinstall",
];
+if (AppConstants.TOR_BROWSER_UPDATE) {
+ gInitialPages.push("about:tbupdate");
+}
+
function isInitialPage(url) {
if (!(url instanceof Ci.nsIURI)) {
try {
diff --git a/browser/base/jar.mn b/browser/base/jar.mn
index a2e1f9c259d2..df65349796b5 100644
--- a/browser/base/jar.mn
+++ b/browser/base/jar.mn
@@ -29,6 +29,11 @@ browser.jar:
content/browser/aboutTabCrashed.css (content/aboutTabCrashed.css)
content/browser/aboutTabCrashed.js (content/aboutTabCrashed.js)
content/browser/aboutTabCrashed.xhtml (content/aboutTabCrashed.xhtml)
+#ifdef TOR_BROWSER_UPDATE
+ content/browser/abouttbupdate/aboutTBUpdate.xhtml (content/abouttbupdate/aboutTBUpdate.xhtml)
+ content/browser/abouttbupdate/aboutTBUpdate.js (content/abouttbupdate/aboutTBUpdate.js)
+ content/browser/abouttbupdate/aboutTBUpdate.css (content/abouttbupdate/aboutTBUpdate.css)
+#endif
* content/browser/browser.css (content/browser.css)
content/browser/browser.js (content/browser.js)
* content/browser/browser.xhtml (content/browser.xhtml)
diff --git a/browser/components/BrowserContentHandler.jsm b/browser/components/BrowserContentHandler.jsm
index 9f5b6ab0218c..1cc1015414fc 100644
--- a/browser/components/BrowserContentHandler.jsm
+++ b/browser/components/BrowserContentHandler.jsm
@@ -650,6 +650,23 @@ nsBrowserContentHandler.prototype = {
}
}
+ // Retrieve the home page early so we can compare it against about:tor
+ // to decide whether or not we need an override page (second tab) after
+ // an update was applied.
+ var startPage = "";
+ try {
+ var choice = prefb.getIntPref("browser.startup.page");
+ if (choice == 1 || choice == 3) {
+ startPage = HomePage.get();
+ }
+ } catch (e) {
+ Cu.reportError(e);
+ }
+
+ if (startPage == "about:blank") {
+ startPage = "";
+ }
+
var override;
var overridePage = "";
var additionalPage = "";
@@ -701,6 +718,16 @@ nsBrowserContentHandler.prototype = {
// into account because that requires waiting for the session file
// to be read. If a crash occurs after updating, before restarting,
// we may open the startPage in addition to restoring the session.
+ //
+ // Tor Browser: Instead of opening the post-update "override page"
+ // directly, we ensure that about:tor will be opened in a special
+ // mode that notifies the user that their browser was updated.
+ // The about:tor page will provide a link to the override page
+ // where the user can learn more about the update, as well as a
+ // link to the Tor Browser changelog page (about:tbupdate). The
+ // override page URL comes from the openURL attribute within the
+ // updates.xml file or, if no showURL action is present, from the
+ // startup.homepage_override_url pref.
willRestoreSession = SessionStartup.isAutomaticRestoreEnabled();
overridePage = Services.urlFormatter.formatURLPref(
@@ -720,6 +747,20 @@ nsBrowserContentHandler.prototype = {
overridePage = overridePage.replace("%OLD_VERSION%", old_mstone);
overridePage = overridePage.replace("%OLD_TOR_BROWSER_VERSION%",
old_tbversion);
+#ifdef TOR_BROWSER_UPDATE
+ if (overridePage)
+ {
+ prefb.setCharPref("torbrowser.post_update.url", overridePage);
+ prefb.setBoolPref("torbrowser.post_update.shouldNotify", true);
+ // If the user's homepage is about:tor, we will inform them
+ // about the update on that page; otherwise, we arrange to
+ // open about:tor in a secondary tab.
+ if (startPage === "about:tor")
+ overridePage = "";
+ else
+ overridePage = "about:tor";
+ }
+#endif
break;
case OVERRIDE_NEW_BUILD_ID:
if (UpdateManager.activeUpdate) {
@@ -792,20 +833,6 @@ nsBrowserContentHandler.prototype = {
}
}
- var startPage = "";
- try {
- var choice = prefb.getIntPref("browser.startup.page");
- if (choice == 1 || choice == 3) {
- startPage = HomePage.get();
- }
- } catch (e) {
- Cu.reportError(e);
- }
-
- if (startPage == "about:blank") {
- startPage = "";
- }
-
let skipStartPage =
(override == OVERRIDE_NEW_PROFILE ||
override == OVERRIDE_ALTERNATE_PROFILE) &&
diff --git a/browser/components/BrowserGlue.jsm b/browser/components/BrowserGlue.jsm
index 0a3555f26432..3b7d8d6e0309 100644
--- a/browser/components/BrowserGlue.jsm
+++ b/browser/components/BrowserGlue.jsm
@@ -560,6 +560,22 @@ let LEGACY_ACTORS = {
},
};
+if (AppConstants.TOR_BROWSER_UPDATE) {
+ LEGACY_ACTORS["AboutTBUpdate"] = {
+ child: {
+ module: "resource:///actors/AboutTBUpdateChild.jsm",
+ events: {
+ "AboutTBUpdateLoad": {wantUntrusted: true},
+ "pagehide": {capture: true},
+ },
+ matches: ["about:tbupdate"],
+ messages: [
+ "AboutTBUpdate:Update",
+ ],
+ }
+ };
+}
+
(function earlyBlankFirstPaint() {
if (
AppConstants.platform == "macosx" ||
@@ -747,6 +763,11 @@ if (AppConstants.MOZ_CRASHREPORTER) {
});
}
+if (AppConstants.TOR_BROWSER_UPDATE) {
+ XPCOMUtils.defineLazyModuleGetter(this, "AboutTBUpdate",
+ "resource:///modules/AboutTBUpdate.jsm");
+}
+
XPCOMUtils.defineLazyGetter(this, "gBrandBundle", function() {
return Services.strings.createBundle(
"chrome://branding/locale/brand.properties"
@@ -2200,6 +2221,10 @@ BrowserGlue.prototype = {
AsanReporter.init();
}
+ if (AppConstants.TOR_BROWSER_UPDATE) {
+ AboutTBUpdate.init();
+ }
+
Sanitizer.onStartup();
this._scheduleStartupIdleTasks();
this._lateTasksIdleObserver = (idleService, topic, data) => {
diff --git a/browser/components/about/AboutRedirector.cpp b/browser/components/about/AboutRedirector.cpp
index 1471e10bf0db..933d519bd959 100644
--- a/browser/components/about/AboutRedirector.cpp
+++ b/browser/components/about/AboutRedirector.cpp
@@ -120,6 +120,12 @@ static const RedirEntry kRedirMap[] = {
nsIAboutModule::URI_CAN_LOAD_IN_PRIVILEGEDABOUT_PROCESS},
{"pioneer", "chrome://browser/content/pioneer.html",
nsIAboutModule::ALLOW_SCRIPT | nsIAboutModule::HIDE_FROM_ABOUTABOUT},
+#ifdef TOR_BROWSER_UPDATE
+ {"tbupdate", "chrome://browser/content/abouttbupdate/aboutTBUpdate.xhtml",
+ nsIAboutModule::URI_SAFE_FOR_UNTRUSTED_CONTENT |
+ nsIAboutModule::URI_MUST_LOAD_IN_CHILD | nsIAboutModule::ALLOW_SCRIPT |
+ nsIAboutModule::HIDE_FROM_ABOUTABOUT},
+#endif
};
static nsAutoCString GetAboutModuleName(nsIURI* aURI) {
diff --git a/browser/components/about/components.conf b/browser/components/about/components.conf
index bf0c6c096847..f31159d30e15 100644
--- a/browser/components/about/components.conf
+++ b/browser/components/about/components.conf
@@ -32,6 +32,9 @@ pages = [
'welcomeback',
]
+if defined('TOR_BROWSER_UPDATE'):
+ pages.append('tbupdate')
+
Classes = [
{
'cid': '{7e4bb6ad-2fc4-4dc6-89ef-23e8e5ccf980}',
diff --git a/browser/components/moz.build b/browser/components/moz.build
index c75c10b0c92d..cf3f566eba71 100644
--- a/browser/components/moz.build
+++ b/browser/components/moz.build
@@ -90,11 +90,14 @@ EXTRA_COMPONENTS += [
]
EXTRA_JS_MODULES += [
- 'BrowserContentHandler.jsm',
'BrowserGlue.jsm',
'distribution.js',
]
+EXTRA_PP_JS_MODULES += [
+ 'BrowserContentHandler.jsm',
+]
+
BROWSER_CHROME_MANIFESTS += [
'safebrowsing/content/test/browser.ini',
'tests/browser/browser.ini',
diff --git a/browser/locales/en-US/chrome/browser/aboutTBUpdate.dtd b/browser/locales/en-US/chrome/browser/aboutTBUpdate.dtd
new file mode 100644
index 000000000000..2d1e59b40eaf
--- /dev/null
+++ b/browser/locales/en-US/chrome/browser/aboutTBUpdate.dtd
@@ -0,0 +1,8 @@
+<!ENTITY aboutTBUpdate.changelogTitle "Tor Browser Changelog">
+<!ENTITY aboutTBUpdate.updated "Tor Browser has been updated.">
+<!ENTITY aboutTBUpdate.linkPrefix "For the most up-to-date information about this release, ">
+<!ENTITY aboutTBUpdate.linkLabel "visit our website">
+<!ENTITY aboutTBUpdate.linkSuffix ".">
+<!ENTITY aboutTBUpdate.version "Version">
+<!ENTITY aboutTBUpdate.releaseDate "Release Date">
+<!ENTITY aboutTBUpdate.releaseNotes "Release Notes">
diff --git a/browser/locales/jar.mn b/browser/locales/jar.mn
index ca892a187adf..31e2d3d870e6 100644
--- a/browser/locales/jar.mn
+++ b/browser/locales/jar.mn
@@ -20,6 +20,9 @@
locale/browser/accounts.properties (%chrome/browser/accounts.properties)
locale/browser/app-extension-fields.properties (%chrome/browser/app-extension-fields.properties)
+#ifdef TOR_BROWSER_UPDATE
+ locale/browser/aboutTBUpdate.dtd (%chrome/browser/aboutTBUpdate.dtd)
+#endif
locale/browser/browser.dtd (%chrome/browser/browser.dtd)
locale/browser/baseMenuOverlay.dtd (%chrome/browser/baseMenuOverlay.dtd)
locale/browser/browser.properties (%chrome/browser/browser.properties)
diff --git a/browser/modules/AboutTBUpdate.jsm b/browser/modules/AboutTBUpdate.jsm
new file mode 100644
index 000000000000..996e2e8394aa
--- /dev/null
+++ b/browser/modules/AboutTBUpdate.jsm
@@ -0,0 +1,134 @@
+// Copyright (c) 2019, The Tor Project, Inc.
+// See LICENSE for licensing information.
+//
+// vim: set sw=2 sts=2 ts=8 et syntax=javascript:
+
+"use strict";
+
+var Cc = Components.classes;
+var Ci = Components.interfaces;
+var Cu = Components.utils;
+
+this.EXPORTED_SYMBOLS = [ "AboutTBUpdate" ];
+
+Cu.import("resource://gre/modules/Services.jsm");
+Cu.import("resource://gre/modules/NetUtil.jsm");
+
+const kRequestUpdateMessageName = "AboutTBUpdate:RequestUpdate";
+const kSendUpdateMessageName = "AboutTBUpdate:Update";
+
+#expand const TOR_BROWSER_VERSION = __TOR_BROWSER_VERSION_QUOTED__;
+
+/**
+ * This code provides services to the about:tbupdate page. Whenever
+ * about:tbupdate needs to do something chrome-privileged, it sends a
+ * message that's handled here. It is modeled after Mozilla's about:home
+ * implementation.
+ */
+var AboutTBUpdate = {
+ init: function() {
+ Services.mm.addMessageListener(kRequestUpdateMessageName, this);
+ },
+
+ receiveMessage: function(aMessage) {
+ if (aMessage.name == kRequestUpdateMessageName)
+ this.sendAboutTBUpdateData(aMessage.target);
+ },
+
+ sendAboutTBUpdateData: function(aTarget) {
+ let data = this.releaseNoteInfo;
+ data.moreInfoURL = this.moreInfoURL;
+ if (aTarget && aTarget.messageManager) {
+ aTarget.messageManager.sendAsyncMessage(kSendUpdateMessageName, data);
+ } else {
+ Services.mm.broadcastAsyncMessage(kSendUpdateMessageName, data);
+ }
+ },
+
+ get moreInfoURL() {
+ try {
+ return Services.prefs.getCharPref("torbrowser.post_update.url");
+ } catch (e) {}
+
+ // Use the default URL as a fallback.
+ return Services.urlFormatter.formatURLPref("startup.homepage_override_url");
+ },
+
+ // Read the text from the beginning of the changelog file that is located
+ // at TorBrowser/Docs/ChangeLog.txt and return an object that contains
+ // the following properties:
+ // version e.g., Tor Browser 8.5
+ // releaseDate e.g., March 31 2019
+ // releaseNotes details of changes (lines 2 - end of ChangeLog.txt)
+ // We attempt to parse the first line of ChangeLog.txt to extract the
+ // version and releaseDate. If parsing fails, we return the entire first
+ // line in version and omit releaseDate.
+ //
+ // On Mac OS, when building with --enable-tor-browser-data-outside-app-dir
+ // to support Gatekeeper signing, the ChangeLog.txt file is located in
+ // TorBrowser.app/Contents/Resources/TorBrowser/Docs/.
+ get releaseNoteInfo() {
+ let info = {};
+
+ try {
+#ifdef TOR_BROWSER_DATA_OUTSIDE_APP_DIR
+ // "XREExeF".parent is the directory that contains firefox, i.e.,
+ // Browser/ or, on Mac OS, TorBrowser.app/Contents/MacOS/.
+ let f = Services.dirsvc.get("XREExeF", Ci.nsIFile).parent;
+#ifdef XP_MACOSX
+ f = f.parent;
+ f.append("Resources");
+#endif
+ f.append("TorBrowser");
+#else
+ // "DefProfRt" is .../TorBrowser/Data/Browser
+ let f = Cc["@mozilla.org/file/directory_service;1"]
+ .getService(Ci.nsIProperties).get("DefProfRt", Ci.nsIFile);
+ f = f.parent.parent; // Remove "Data/Browser"
+#endif
+ f.append("Docs");
+ f.append("ChangeLog.txt");
+
+ let fs = Cc["@mozilla.org/network/file-input-stream;1"]
+ .createInstance(Ci.nsIFileInputStream);
+ fs.init(f, -1, 0, 0);
+ let s = NetUtil.readInputStreamToString(fs, fs.available());
+ fs.close();
+
+ // Truncate at the first empty line.
+ s = s.replace(/[\r\n][\r\n][\s\S]*$/m, "");
+
+ // Split into first line (version plus releaseDate) and
+ // remainder (releaseNotes).
+ // This first match() uses multiline mode with two capture groups:
+ // first line: (.*$)
+ // remaining lines: ([\s\S]+)
+ // [\s\S] matches all characters including end of line. This trick
+ // is needed because when using JavaScript regex in multiline mode,
+ // . does not match an end of line character.
+ let matchArray = s.match(/(.*$)\s*([\s\S]+)/m);
+ if (matchArray && (matchArray.length == 3)) {
+ info.releaseNotes = matchArray[2];
+ let line1 = matchArray[1];
+ // Extract the version and releaseDate. The first line looks like:
+ // Tor Browser 8.5 -- May 1 2019
+ // The regex uses two capture groups:
+ // text that does not include a hyphen: (^[^-]*)
+ // remaining text: (.*$)
+ // In between we match optional whitespace, one or more hyphens, and
+ // optional whitespace by using: \s*-+\s*
+ matchArray = line1.match(/(^[^-]*)\s*-+\s*(.*$)/);
+ if (matchArray && (matchArray.length == 3)) {
+ info.version = matchArray[1];
+ info.releaseDate = matchArray[2];
+ } else {
+ info.version = line1; // Match failed: return entire line in version.
+ }
+ } else {
+ info.releaseNotes = s; // Only one line: use as releaseNotes.
+ }
+ } catch (e) {}
+
+ return info;
+ },
+};
diff --git a/browser/modules/moz.build b/browser/modules/moz.build
index 88f2a55d6f49..61fe5371e48f 100644
--- a/browser/modules/moz.build
+++ b/browser/modules/moz.build
@@ -160,6 +160,11 @@ EXTRA_JS_MODULES += [
'ZoomUI.jsm',
]
+if CONFIG['TOR_BROWSER_UPDATE']:
+ EXTRA_PP_JS_MODULES += [
+ 'AboutTBUpdate.jsm',
+ ]
+
if CONFIG['MOZ_ASAN_REPORTER']:
EXTRA_JS_MODULES += [
'AsanReporter.jsm',
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 21431: Clean-up system extensions shipped in Firefox
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 5b960b3549cead427069993b7cd3503147f98924
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Tue May 23 17:05:29 2017 -0400
Bug 21431: Clean-up system extensions shipped in Firefox
Only ship the pdfjs extension.
---
browser/components/BrowserGlue.jsm | 6 ++++++
browser/extensions/moz.build | 5 -----
browser/installer/package-manifest.in | 1 -
browser/locales/Makefile.in | 8 --------
browser/locales/jar.mn | 7 -------
5 files changed, 6 insertions(+), 21 deletions(-)
diff --git a/browser/components/BrowserGlue.jsm b/browser/components/BrowserGlue.jsm
index 3b7d8d6e0309..3363e24a9b56 100644
--- a/browser/components/BrowserGlue.jsm
+++ b/browser/components/BrowserGlue.jsm
@@ -2076,6 +2076,9 @@ BrowserGlue.prototype = {
const ID = "screenshots(a)mozilla.org";
const _checkScreenshotsPref = async () => {
let addon = await AddonManager.getAddonByID(ID);
+ if (!addon) {
+ return;
+ }
let disabled = Services.prefs.getBoolPref(PREF, false);
if (disabled) {
await addon.disable({ allowSystemAddons: true });
@@ -2092,6 +2095,9 @@ BrowserGlue.prototype = {
const ID = "webcompat-reporter(a)mozilla.org";
Services.prefs.addObserver(PREF, async () => {
let addon = await AddonManager.getAddonByID(ID);
+ if (!addon) {
+ return;
+ }
let enabled = Services.prefs.getBoolPref(PREF, false);
if (enabled && !addon.isActive) {
await addon.enable({ allowSystemAddons: true });
diff --git a/browser/extensions/moz.build b/browser/extensions/moz.build
index fd2e65d01f02..499c59b8d6a5 100644
--- a/browser/extensions/moz.build
+++ b/browser/extensions/moz.build
@@ -5,12 +5,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
DIRS += [
- 'doh-rollout',
- 'formautofill',
'pdfjs',
- 'screenshots',
- 'webcompat',
- 'report-site-issue'
]
if not CONFIG['TOR_BROWSER_DISABLE_TOR_LAUNCHER']:
diff --git a/browser/installer/package-manifest.in b/browser/installer/package-manifest.in
index 53b0b7ddf731..ad7dd023a92e 100644
--- a/browser/installer/package-manifest.in
+++ b/browser/installer/package-manifest.in
@@ -268,7 +268,6 @@
@RESPATH@/browser/chrome/icons/default/default64.png
@RESPATH@/browser/chrome/icons/default/default128.png
#endif
-@RESPATH@/browser/features/*
; [DevTools Startup Files]
@RESPATH@/browser/chrome/devtools-startup@JAREXT@
diff --git a/browser/locales/Makefile.in b/browser/locales/Makefile.in
index 05f0242c5248..1fdf34d9460f 100644
--- a/browser/locales/Makefile.in
+++ b/browser/locales/Makefile.in
@@ -58,10 +58,6 @@ libs-%:
@$(MAKE) -C ../../toolkit/locales libs-$* XPI_ROOT_APPID='$(XPI_ROOT_APPID)'
@$(MAKE) -C ../../services/sync/locales AB_CD=$* XPI_NAME=locale-$*
@$(MAKE) -C ../../extensions/spellcheck/locales AB_CD=$* XPI_NAME=locale-$*
-ifneq (,$(wildcard ../extensions/formautofill/locales))
- @$(MAKE) -C ../extensions/formautofill/locales AB_CD=$* XPI_NAME=locale-$*
-endif
- @$(MAKE) -C ../extensions/report-site-issue/locales AB_CD=$* XPI_NAME=locale-$*
@$(MAKE) -C ../../devtools/client/locales AB_CD=$* XPI_NAME=locale-$* XPI_ROOT_APPID='$(XPI_ROOT_APPID)'
@$(MAKE) -C ../../devtools/startup/locales AB_CD=$* XPI_NAME=locale-$* XPI_ROOT_APPID='$(XPI_ROOT_APPID)'
@$(MAKE) libs AB_CD=$* XPI_NAME=locale-$* PREF_DIR=$(PREF_DIR)
@@ -75,14 +71,10 @@ chrome-%:
@$(MAKE) -C ../../toolkit/locales chrome-$*
@$(MAKE) -C ../../services/sync/locales chrome AB_CD=$*
@$(MAKE) -C ../../extensions/spellcheck/locales chrome AB_CD=$*
-ifneq (,$(wildcard ../extensions/formautofill/locales))
- @$(MAKE) -C ../extensions/formautofill/locales chrome AB_CD=$*
-endif
@$(MAKE) -C ../../devtools/client/locales chrome AB_CD=$*
@$(MAKE) -C ../../devtools/startup/locales chrome AB_CD=$*
@$(MAKE) chrome AB_CD=$*
@$(MAKE) -C $(DEPTH)/$(MOZ_BRANDING_DIRECTORY)/locales chrome AB_CD=$*
- @$(MAKE) -C ../extensions/report-site-issue/locales chrome AB_CD=$*
package-win32-installer: $(SUBMAKEFILES)
$(MAKE) -C ../installer/windows CONFIG_DIR=l10ngen ZIP_IN='$(ZIP_OUT)' installer
diff --git a/browser/locales/jar.mn b/browser/locales/jar.mn
index 31e2d3d870e6..ff577dfd4e7c 100644
--- a/browser/locales/jar.mn
+++ b/browser/locales/jar.mn
@@ -60,10 +60,3 @@
locale/browser/newInstall.dtd (%chrome/browser/newInstall.dtd)
locale/browser/brandings.dtd (%chrome/browser/brandings.dtd)
locale/browser/fxmonitor.properties (%chrome/browser/fxmonitor.properties)
-
-#ifdef XPI_NAME
-# Bug 1240628, restructure how l10n repacks work with feature addons
-# This is hacky, but ensures the chrome.manifest chain is complete
-[.] chrome.jar:
-% manifest features/chrome.manifest
-#endif
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 13379: Sign our MAR files.
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 1d7d30755bf10244eb23860f03b5b1a311ba3935
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Wed Dec 17 16:37:11 2014 -0500
Bug 13379: Sign our MAR files.
Configure with --enable-verify-mar (when updating, require a valid
signature on the MAR file before it is applied).
Use the Tor Browser version instead of the Firefox version inside the
MAR file info block (necessary to prevent downgrade attacks).
Use NSS on all platforms for checking MAR signatures (instead of using
OS-native APIs, which Mozilla does on Mac OS and Windows). So that the
NSS and NSPR libraries the updater depends on can be found at runtime,
we add the firefox directory to the shared library search path on macOS.
On Linux, rpath is used by Mozilla to solve that problem, but that
approach won't work on macOS because the updater executable is copied
during the update process to a location that is under TorBrowser-Data,
and the location of TorBrowser-Data varies.
Also includes the fix for bug 18900.
---
.mozconfig | 1 +
.mozconfig-asan | 1 +
.mozconfig-mac | 1 +
.mozconfig-mingw | 1 +
modules/libmar/tool/mar.c | 6 +--
modules/libmar/tool/moz.build | 12 ++++--
modules/libmar/verify/moz.build | 14 +++---
.../mozapps/update/updater/updater-common.build | 24 +++++++++--
toolkit/mozapps/update/updater/updater.cpp | 25 +++++++----
toolkit/xre/moz.build | 3 ++
toolkit/xre/nsUpdateDriver.cpp | 50 ++++++++++++++++++++++
11 files changed, 113 insertions(+), 25 deletions(-)
diff --git a/.mozconfig b/.mozconfig
index 18cd1f9b6487..c50c57d410de 100755
--- a/.mozconfig
+++ b/.mozconfig
@@ -37,3 +37,4 @@ ac_add_options MOZ_TELEMETRY_REPORTING=
ac_add_options --disable-tor-launcher
ac_add_options --with-tor-browser-version=dev-build
ac_add_options --disable-tor-browser-update
+ac_add_options --enable-verify-mar
diff --git a/.mozconfig-asan b/.mozconfig-asan
index 98ea6ac6f3fe..8bee813bfee8 100644
--- a/.mozconfig-asan
+++ b/.mozconfig-asan
@@ -30,6 +30,7 @@ ac_add_options --enable-official-branding
ac_add_options --enable-default-toolkit=cairo-gtk3
ac_add_options --enable-tor-browser-update
+ac_add_options --enable-verify-mar
ac_add_options --disable-strip
ac_add_options --disable-install-strip
diff --git a/.mozconfig-mac b/.mozconfig-mac
index 26e2b6b92fdb..5b4624ef1f67 100644
--- a/.mozconfig-mac
+++ b/.mozconfig-mac
@@ -43,6 +43,7 @@ ac_add_options --disable-debug
ac_add_options --enable-tor-browser-data-outside-app-dir
ac_add_options --enable-tor-browser-update
+ac_add_options --enable-verify-mar
ac_add_options --disable-crashreporter
ac_add_options --disable-webrtc
diff --git a/.mozconfig-mingw b/.mozconfig-mingw
index 3ec6ff18a3e9..ce6ace1dad67 100644
--- a/.mozconfig-mingw
+++ b/.mozconfig-mingw
@@ -15,6 +15,7 @@ ac_add_options --enable-strip
ac_add_options --enable-official-branding
ac_add_options --enable-tor-browser-update
+ac_add_options --enable-verify-mar
ac_add_options --disable-bits-download
# Let's make sure no preference is enabling either Adobe's or Google's CDM.
diff --git a/modules/libmar/tool/mar.c b/modules/libmar/tool/mar.c
index 0bf2cb4bd1d4..ea2b79924914 100644
--- a/modules/libmar/tool/mar.c
+++ b/modules/libmar/tool/mar.c
@@ -65,7 +65,7 @@ static void print_usage() {
"signed_input_archive.mar base_64_encoded_signature_file "
"changed_signed_output.mar\n");
printf("(i) is the index of the certificate to extract\n");
-# if defined(XP_MACOSX) || (defined(XP_WIN) && !defined(MAR_NSS))
+# if (defined(XP_MACOSX) || defined(XP_WIN)) && !defined(MAR_NSS)
printf("Verify a MAR file:\n");
printf(" mar [-C workingDir] -D DERFilePath -v signed_archive.mar\n");
printf(
@@ -149,7 +149,7 @@ int main(int argc, char** argv) {
memset((void*)certBuffers, 0, sizeof(certBuffers));
#endif
#if !defined(NO_SIGN_VERIFY) && \
- ((!defined(MAR_NSS) && defined(XP_WIN)) || defined(XP_MACOSX))
+ (!defined(MAR_NSS) && (defined(XP_WIN) || defined(XP_MACOSX)))
memset(DERFilePaths, 0, sizeof(DERFilePaths));
memset(fileSizes, 0, sizeof(fileSizes));
#endif
@@ -181,7 +181,7 @@ int main(int argc, char** argv) {
argc -= 2;
}
#if !defined(NO_SIGN_VERIFY)
-# if (!defined(MAR_NSS) && defined(XP_WIN)) || defined(XP_MACOSX)
+# if (!defined(MAR_NSS) && (defined(XP_WIN) || defined(XP_MACOSX)))
/* -D DERFilePath, also matches -D[index] DERFilePath
We allow an index for verifying to be symmetric
with the import and export command line arguments. */
diff --git a/modules/libmar/tool/moz.build b/modules/libmar/tool/moz.build
index 19653fb0b073..8953af0bb15c 100644
--- a/modules/libmar/tool/moz.build
+++ b/modules/libmar/tool/moz.build
@@ -35,15 +35,21 @@ if CONFIG['MOZ_BUILD_APP'] != 'tools/update-packaging':
'verifymar',
]
+ if CONFIG['TOR_BROWSER_UPDATE']:
+ DEFINES['MAR_NSS'] = True
+
if CONFIG['OS_ARCH'] == 'WINNT':
USE_STATIC_LIBS = True
OS_LIBS += [
'ws2_32',
- 'crypt32',
- 'advapi32',
]
- elif CONFIG['OS_ARCH'] == 'Darwin':
+ if not CONFIG['TOR_BROWSER_UPDATE']:
+ OS_LIBS += [
+ 'crypt32',
+ 'advapi32',
+ ]
+ elif CONFIG['OS_ARCH'] == 'Darwin' and not CONFIG['TOR_BROWSER_UPDATE']:
OS_LIBS += [
'-framework Security',
]
diff --git a/modules/libmar/verify/moz.build b/modules/libmar/verify/moz.build
index 9f7dc56f8f8a..e1c6ced31c37 100644
--- a/modules/libmar/verify/moz.build
+++ b/modules/libmar/verify/moz.build
@@ -16,15 +16,12 @@ FORCE_STATIC_LIB = True
if CONFIG['OS_ARCH'] == 'WINNT':
USE_STATIC_LIBS = True
elif CONFIG['OS_ARCH'] == 'Darwin':
- UNIFIED_SOURCES += [
- 'MacVerifyCrypto.cpp',
- ]
- OS_LIBS += [
- '-framework Security',
+ USE_LIBS += [
+ 'nspr',
+ 'nss',
+ 'signmar',
]
else:
- DEFINES['MAR_NSS'] = True
- LOCAL_INCLUDES += ['../sign']
USE_LIBS += [
'nspr',
'nss',
@@ -38,6 +35,9 @@ else:
'-Wl,-rpath=\\$$ORIGIN',
]
+DEFINES['MAR_NSS'] = True
+LOCAL_INCLUDES += ['../sign']
+
LOCAL_INCLUDES += [
'../src',
]
diff --git a/toolkit/mozapps/update/updater/updater-common.build b/toolkit/mozapps/update/updater/updater-common.build
index 5898e92d465d..9f8365df8ade 100644
--- a/toolkit/mozapps/update/updater/updater-common.build
+++ b/toolkit/mozapps/update/updater/updater-common.build
@@ -4,6 +4,10 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+DEFINES['MAR_NSS'] = True
+
+link_with_nss = DEFINES['MAR_NSS'] or (CONFIG['OS_ARCH'] == 'Linux' and CONFIG['MOZ_VERIFY_MAR_SIGNATURE'])
+
srcs = [
'archivereader.cpp',
'updater.cpp',
@@ -36,10 +40,14 @@ if CONFIG['OS_ARCH'] == 'WINNT':
'ws2_32',
'shell32',
'shlwapi',
- 'crypt32',
- 'advapi32',
]
+ if not link_with_nss:
+ OS_LIBS += [
+ 'crypt32',
+ 'advapi32',
+ ]
+
USE_LIBS += [
'bspatch',
'mar',
@@ -47,6 +55,13 @@ USE_LIBS += [
'xz-embedded',
]
+if link_with_nss:
+ USE_LIBS += [
+ 'nspr',
+ 'nss',
+ 'signmar',
+ ]
+
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gtk':
have_progressui = 1
srcs += [
@@ -61,9 +76,12 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
]
OS_LIBS += [
'-framework Cocoa',
- '-framework Security',
'-framework SystemConfiguration',
]
+ if not link_with_nss:
+ OS_LIBS += [
+ '-framework Security',
+ ]
UNIFIED_SOURCES += [
'/toolkit/xre/updaterfileutils_osx.mm',
]
diff --git a/toolkit/mozapps/update/updater/updater.cpp b/toolkit/mozapps/update/updater/updater.cpp
index 9a95c3b17761..aaec0b38dda0 100644
--- a/toolkit/mozapps/update/updater/updater.cpp
+++ b/toolkit/mozapps/update/updater/updater.cpp
@@ -106,9 +106,11 @@ struct UpdateServerThreadArgs {
# define USE_EXECV
#endif
-#if defined(MOZ_VERIFY_MAR_SIGNATURE) && !defined(XP_WIN) && !defined(XP_MACOSX)
-# include "nss.h"
-# include "prerror.h"
+#if defined(MOZ_VERIFY_MAR_SIGNATURE)
+# if defined(MAR_NSS) || (!defined(XP_WIN) && !defined(XP_MACOSX))
+# include "nss.h"
+# include "prerror.h"
+# endif
#endif
#include "crctable.h"
@@ -2738,8 +2740,13 @@ static void UpdateThreadFunc(void* param) {
if (ReadMARChannelIDs(updateSettingsPath, &MARStrings) != OK) {
rv = UPDATE_SETTINGS_FILE_CHANNEL;
} else {
+# ifdef TOR_BROWSER_UPDATE
+ const char* appVersion = TOR_BROWSER_VERSION_QUOTED;
+# else
+ const char* appVersion = MOZ_APP_VERSION;
+# endif
rv = gArchiveReader.VerifyProductInformation(MARStrings.MARChannelID,
- MOZ_APP_VERSION);
+ appVersion);
}
}
}
@@ -2940,11 +2947,10 @@ int NS_main(int argc, NS_tchar** argv) {
}
#endif
-#if defined(MOZ_VERIFY_MAR_SIGNATURE) && !defined(XP_WIN) && !defined(XP_MACOSX)
- // On Windows and Mac we rely on native APIs to do verifications so we don't
- // need to initialize NSS at all there.
- // Otherwise, minimize the amount of NSS we depend on by avoiding all the NSS
- // databases.
+#if defined(MOZ_VERIFY_MAR_SIGNATURE)
+# if defined(MAR_NSS) || (!defined(XP_WIN) && !defined(XP_MACOSX))
+ // If using NSS for signature verification, initialize NSS but minimize
+ // the portion we depend on by avoiding all of the NSS databases.
if (NSS_NoDB_Init(nullptr) != SECSuccess) {
PRErrorCode error = PR_GetError();
fprintf(stderr, "Could not initialize NSS: %s (%d)", PR_ErrorToName(error),
@@ -2952,6 +2958,7 @@ int NS_main(int argc, NS_tchar** argv) {
_exit(1);
}
#endif
+#endif
#ifdef XP_MACOSX
if (!isElevated) {
diff --git a/toolkit/xre/moz.build b/toolkit/xre/moz.build
index 7ba3be2fe241..6afab145c2b6 100644
--- a/toolkit/xre/moz.build
+++ b/toolkit/xre/moz.build
@@ -214,6 +214,9 @@ for var in ('APP_VERSION', 'APP_ID'):
if CONFIG['MOZ_BUILD_APP'] == 'browser':
DEFINES['MOZ_BUILD_APP_IS_BROWSER'] = True
+if CONFIG['TOR_BROWSER_UPDATE']:
+ DEFINES['MAR_NSS'] = True
+
LOCAL_INCLUDES += [
'../../other-licenses/nsis/Contrib/CityHash/cityhash',
'../components/find',
diff --git a/toolkit/xre/nsUpdateDriver.cpp b/toolkit/xre/nsUpdateDriver.cpp
index 55d1982504ed..1cbee302719f 100644
--- a/toolkit/xre/nsUpdateDriver.cpp
+++ b/toolkit/xre/nsUpdateDriver.cpp
@@ -360,6 +360,42 @@ static nsresult GetUpdateDirFromAppDir(nsIFile* aAppDir, nsIFile** aResult) {
# endif
#endif
+#if defined(TOR_BROWSER_UPDATE) && defined(MOZ_VERIFY_MAR_SIGNATURE) && \
+ defined(MAR_NSS) && defined(XP_MACOSX)
+/**
+ * Ideally we would save and restore the original library path value after
+ * the updater finishes its work (and before firefox is re-launched).
+ * Doing so would avoid potential problems like the following bug:
+ * https://bugzilla.mozilla.org/show_bug.cgi?id=1434033
+ */
+/**
+ * Appends the specified path to the library path.
+ * This is used so that the updater can find libnss3.dylib and other
+ * shared libs.
+ *
+ * @param pathToAppend A new library path to prepend to the dynamic linker's
+ * search path.
+ */
+# include "prprf.h"
+# define PATH_SEPARATOR ":"
+# define LD_LIBRARY_PATH_ENVVAR_NAME "DYLD_LIBRARY_PATH"
+static void AppendToLibPath(const char* pathToAppend) {
+ char* pathValue = getenv(LD_LIBRARY_PATH_ENVVAR_NAME);
+ if (nullptr == pathValue || '\0' == *pathValue) {
+ // Leak the string because that is required by PR_SetEnv.
+ char* s =
+ Smprintf("%s=%s", LD_LIBRARY_PATH_ENVVAR_NAME, pathToAppend).release();
+ PR_SetEnv(s);
+ } else {
+ // Leak the string because that is required by PR_SetEnv.
+ char* s = Smprintf("%s=%s" PATH_SEPARATOR "%s", LD_LIBRARY_PATH_ENVVAR_NAME,
+ pathToAppend, pathValue)
+ .release();
+ PR_SetEnv(s);
+ }
+}
+#endif
+
/**
* Applies, switches, or stages an update.
*
@@ -606,6 +642,20 @@ static void ApplyUpdate(nsIFile* greDir, nsIFile* updateDir, nsIFile* appDir,
PR_SetEnv("MOZ_SAFE_MODE_RESTART=1");
}
+#if defined(TOR_BROWSER_UPDATE) && defined(MOZ_VERIFY_MAR_SIGNATURE) && \
+ defined(MAR_NSS) && defined(XP_MACOSX)
+ // On macOS, append the app directory to the shared library search path
+ // so the system can locate the shared libraries that are needed by the
+ // updater, e.g., libnss3.dylib).
+ nsAutoCString appPath;
+ nsresult rv2 = appDir->GetNativePath(appPath);
+ if (NS_SUCCEEDED(rv2)) {
+ AppendToLibPath(appPath.get());
+ } else {
+ LOG(("ApplyUpdate -- appDir->GetNativePath() failed (0x%x)\n", rv2));
+ }
+#endif
+
LOG(("spawning updater process [%s]\n", updaterPath.get()));
#ifdef DEBUG
dump_argv("ApplyUpdate updater", argv, argc);
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 16285: Exclude ClearKey system for now
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 6806086aa504e98ebc5ba0f9572825676ee66de4
Author: Georg Koppen <gk(a)torproject.org>
Date: Mon May 22 12:44:40 2017 +0000
Bug 16285: Exclude ClearKey system for now
In the past the ClearKey system had not been compiled when specifying
--disable-eme. But that changed and it is even bundled nowadays (see:
Mozilla's bug 1300654). We don't want to ship it right now as the use
case for it is not really visible while the code had security
vulnerabilities in the past.
---
browser/installer/package-manifest.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/browser/installer/package-manifest.in b/browser/installer/package-manifest.in
index 792acb870afa..53b0b7ddf731 100644
--- a/browser/installer/package-manifest.in
+++ b/browser/installer/package-manifest.in
@@ -465,8 +465,8 @@ bin/libfreebl_64int_3.so
#endif
; media
-@RESPATH@/gmp-clearkey/0.1/@DLL_PREFIX@clearkey@DLL_SUFFIX@
-@RESPATH@/gmp-clearkey/0.1/manifest.json
+;@RESPATH@/gmp-clearkey/0.1/@DLL_PREFIX@clearkey@DLL_SUFFIX@
+;@RESPATH@/gmp-clearkey/0.1/manifest.json
#ifdef MOZ_DMD
; DMD
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 21907: Fix runtime error on CentOS 6
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 977f50ff4a5d93ee17e75536cf057849367deae2
Author: Nicolas Vigier <boklm(a)torproject.org>
Date: Mon Apr 10 16:07:23 2017 +0200
Bug 21907: Fix runtime error on CentOS 6
In Mozilla bug 1324780, support for building with glib 2.28 (the version
available in CentOS 6) was added. However we are building on Debian
Wheezy which has glib 2.32. We fix that by backing out all glib > 2.28
code paths.
---
gfx/harfbuzz/src/hb-glib.cc | 53 ---------------------------------------------
gfx/harfbuzz/src/hb-glib.h | 5 -----
2 files changed, 58 deletions(-)
diff --git a/gfx/harfbuzz/src/hb-glib.cc b/gfx/harfbuzz/src/hb-glib.cc
index 058f65ae69c3..2fd39610203d 100644
--- a/gfx/harfbuzz/src/hb-glib.cc
+++ b/gfx/harfbuzz/src/hb-glib.cc
@@ -49,7 +49,6 @@
**/
-#if !GLIB_CHECK_VERSION(2,29,14)
static const hb_script_t
glib_script_to_script[] =
{
@@ -171,7 +170,6 @@ glib_script_to_script[] =
HB_SCRIPT_SORA_SOMPENG,
HB_SCRIPT_TAKRI
};
-#endif
/**
* hb_glib_script_to_script:
@@ -187,9 +185,6 @@ glib_script_to_script[] =
hb_script_t
hb_glib_script_to_script (GUnicodeScript script)
{
-#if GLIB_CHECK_VERSION(2,29,14)
- return (hb_script_t) g_unicode_script_to_iso15924 (script);
-#else
if (likely ((unsigned int) script < ARRAY_LENGTH (glib_script_to_script)))
return glib_script_to_script[script];
@@ -197,7 +192,6 @@ hb_glib_script_to_script (GUnicodeScript script)
return HB_SCRIPT_INVALID;
return HB_SCRIPT_UNKNOWN;
-#endif
}
/**
@@ -214,9 +208,6 @@ hb_glib_script_to_script (GUnicodeScript script)
GUnicodeScript
hb_glib_script_from_script (hb_script_t script)
{
-#if GLIB_CHECK_VERSION(2,29,14)
- return g_unicode_script_from_iso15924 (script);
-#else
unsigned int count = ARRAY_LENGTH (glib_script_to_script);
for (unsigned int i = 0; i < count; i++)
if (glib_script_to_script[i] == script)
@@ -226,7 +217,6 @@ hb_glib_script_from_script (hb_script_t script)
return G_UNICODE_SCRIPT_INVALID_CODE;
return G_UNICODE_SCRIPT_UNKNOWN;
-#endif
}
@@ -273,10 +263,6 @@ hb_glib_unicode_compose (hb_unicode_funcs_t *ufuncs HB_UNUSED,
hb_codepoint_t *ab,
void *user_data HB_UNUSED)
{
-#if GLIB_CHECK_VERSION(2,29,12)
- return g_unichar_compose (a, b, ab);
-#endif
-
/* We don't ifdef-out the fallback code such that compiler always
* sees it and makes sure it's compilable. */
@@ -310,10 +296,6 @@ hb_glib_unicode_decompose (hb_unicode_funcs_t *ufuncs HB_UNUSED,
hb_codepoint_t *b,
void *user_data HB_UNUSED)
{
-#if GLIB_CHECK_VERSION(2,29,12)
- return g_unichar_decompose (ab, a, b);
-#endif
-
/* We don't ifdef-out the fallback code such that compiler always
* sees it and makes sure it's compilable. */
@@ -415,39 +397,4 @@ hb_glib_get_unicode_funcs ()
return static_glib_funcs.get_unconst ();
}
-
-
-#if GLIB_CHECK_VERSION(2,31,10)
-
-static void
-_hb_g_bytes_unref (void *data)
-{
- g_bytes_unref ((GBytes *) data);
-}
-
-/**
- * hb_glib_blob_create:
- * @gbytes: the GBytes structure to work upon
- *
- * Creates an #hb_blob_t blob from the specified
- * GBytes data structure.
- *
- * Return value: (transfer full): the new #hb_blob_t blob object
- *
- * Since: 0.9.38
- **/
-hb_blob_t *
-hb_glib_blob_create (GBytes *gbytes)
-{
- gsize size = 0;
- gconstpointer data = g_bytes_get_data (gbytes, &size);
- return hb_blob_create ((const char *) data,
- size,
- HB_MEMORY_MODE_READONLY,
- g_bytes_ref (gbytes),
- _hb_g_bytes_unref);
-}
-#endif
-
-
#endif
diff --git a/gfx/harfbuzz/src/hb-glib.h b/gfx/harfbuzz/src/hb-glib.h
index 5f04183ba19f..4adbd7c332cb 100644
--- a/gfx/harfbuzz/src/hb-glib.h
+++ b/gfx/harfbuzz/src/hb-glib.h
@@ -46,11 +46,6 @@ hb_glib_script_from_script (hb_script_t script);
HB_EXTERN hb_unicode_funcs_t *
hb_glib_get_unicode_funcs (void);
-#if GLIB_CHECK_VERSION(2,31,10)
-HB_EXTERN hb_blob_t *
-hb_glib_blob_create (GBytes *gbytes);
-#endif
-
HB_END_DECLS
#endif /* HB_GLIB_H */
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 21830: Copying large text from web console leaks to /tmp
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 2b27c66568c19de3900541b2191f96c3cfde0bf6
Author: Georg Koppen <gk(a)torproject.org>
Date: Fri Aug 4 05:55:49 2017 +0000
Bug 21830: Copying large text from web console leaks to /tmp
Patch written by Neill Miller
---
widget/nsTransferable.cpp | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/widget/nsTransferable.cpp b/widget/nsTransferable.cpp
index 9ccfc8639350..135135ab23a8 100644
--- a/widget/nsTransferable.cpp
+++ b/widget/nsTransferable.cpp
@@ -33,6 +33,7 @@ Notes to self:
#include "nsILoadContext.h"
#include "nsXULAppAPI.h"
#include "mozilla/UniquePtr.h"
+#include "mozilla/Preferences.h"
using namespace mozilla;
@@ -195,6 +196,11 @@ nsTransferable::Init(nsILoadContext* aContext) {
if (aContext) {
mPrivateData = aContext->UsePrivateBrowsing();
+ } else {
+ // without aContext here to provide PrivateBrowsing information,
+ // we defer to the active configured setting
+ mPrivateData =
+ mozilla::Preferences::GetBool("browser.privatebrowsing.autostart");
}
#ifdef DEBUG
mInitialized = true;
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 23104: Add a default line height compensation
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 3faddde75d592a62a86beb666cad8f1fe450f7eb
Author: Igor Oliveira <igor.oliveira(a)posteo.net>
Date: Sun Dec 10 18:16:59 2017 -0200
Bug 23104: Add a default line height compensation
Many fonts have issues with their vertical metrics. they
are used to influence the height of ascenders and depth
of descenders. Gecko uses it to calculate the line height
(font height + ascender + descender), however because of
that idiosyncratic behavior across multiple operating
systems, it can be used to identify the user's OS.
The solution proposed in the patch uses a default factor
to be multiplied with the font size, simulating the concept
of ascender and descender. This way all operating
systems will have the same line height only and only if the
frame is outside the chrome.
---
layout/generic/ReflowInput.cpp | 19 +++++++++---
layout/generic/test/mochitest.ini | 1 +
layout/generic/test/test_tor_bug23104.html | 50 ++++++++++++++++++++++++++++++
3 files changed, 65 insertions(+), 5 deletions(-)
diff --git a/layout/generic/ReflowInput.cpp b/layout/generic/ReflowInput.cpp
index 5b1f6d62043a..5da354f86558 100644
--- a/layout/generic/ReflowInput.cpp
+++ b/layout/generic/ReflowInput.cpp
@@ -30,6 +30,7 @@
#include <algorithm>
#include "mozilla/dom/HTMLInputElement.h"
#include "nsGridContainerFrame.h"
+#include "nsContentUtils.h"
using namespace mozilla;
using namespace mozilla::css;
@@ -2690,7 +2691,8 @@ void ReflowInput::CalculateBlockSideMargins(LayoutFrameType aFrameType) {
// For risk management, we use preference to control the behavior, and
// eNoExternalLeading is the old behavior.
-static nscoord GetNormalLineHeight(nsFontMetrics* aFontMetrics) {
+static nscoord GetNormalLineHeight(nsIContent* aContent,
+ nsFontMetrics* aFontMetrics) {
MOZ_ASSERT(nullptr != aFontMetrics, "no font metrics");
nscoord normalLineHeight;
@@ -2698,6 +2700,12 @@ static nscoord GetNormalLineHeight(nsFontMetrics* aFontMetrics) {
nscoord externalLeading = aFontMetrics->ExternalLeading();
nscoord internalLeading = aFontMetrics->InternalLeading();
nscoord emHeight = aFontMetrics->EmHeight();
+
+ if (nsContentUtils::ShouldResistFingerprinting() &&
+ !aContent->IsInChromeDocument()) {
+ return NSToCoordRound(emHeight * NORMAL_LINE_HEIGHT_FACTOR);
+ }
+
switch (GetNormalLineHeightCalcControl()) {
case eIncludeExternalLeading:
normalLineHeight = emHeight + internalLeading + externalLeading;
@@ -2715,7 +2723,8 @@ static nscoord GetNormalLineHeight(nsFontMetrics* aFontMetrics) {
return normalLineHeight;
}
-static inline nscoord ComputeLineHeight(ComputedStyle* aComputedStyle,
+static inline nscoord ComputeLineHeight(nsIContent* aContent,
+ ComputedStyle* aComputedStyle,
nsPresContext* aPresContext,
nscoord aBlockBSize,
float aFontSizeInflation) {
@@ -2743,7 +2752,7 @@ static inline nscoord ComputeLineHeight(ComputedStyle* aComputedStyle,
RefPtr<nsFontMetrics> fm = nsLayoutUtils::GetFontMetricsForComputedStyle(
aComputedStyle, aPresContext, aFontSizeInflation);
- return GetNormalLineHeight(fm);
+ return GetNormalLineHeight(aContent, fm);
}
nscoord ReflowInput::CalcLineHeight() const {
@@ -2765,7 +2774,7 @@ nscoord ReflowInput::CalcLineHeight(nsIContent* aContent,
float aFontSizeInflation) {
MOZ_ASSERT(aComputedStyle, "Must have a ComputedStyle");
- nscoord lineHeight = ComputeLineHeight(aComputedStyle, aPresContext,
+ nscoord lineHeight = ComputeLineHeight(aContent, aComputedStyle, aPresContext,
aBlockBSize, aFontSizeInflation);
NS_ASSERTION(lineHeight >= 0, "ComputeLineHeight screwed up");
@@ -2778,7 +2787,7 @@ nscoord ReflowInput::CalcLineHeight(nsIContent* aContent,
if (!lh.IsNormal()) {
RefPtr<nsFontMetrics> fm = nsLayoutUtils::GetFontMetricsForComputedStyle(
aComputedStyle, aPresContext, aFontSizeInflation);
- nscoord normal = GetNormalLineHeight(fm);
+ nscoord normal = GetNormalLineHeight(aContent, fm);
if (lineHeight < normal) {
lineHeight = normal;
}
diff --git a/layout/generic/test/mochitest.ini b/layout/generic/test/mochitest.ini
index f6678d8d8e4e..c1602bbbc6b1 100644
--- a/layout/generic/test/mochitest.ini
+++ b/layout/generic/test/mochitest.ini
@@ -161,3 +161,4 @@ skip-if = debug == true || tsan # the test is slow. tsan: bug 1612707
[test_reframe_for_lazy_load_image.html]
support-files =
file_reframe_for_lazy_load_image.html
+[test_tor_bug23104.html]
diff --git a/layout/generic/test/test_tor_bug23104.html b/layout/generic/test/test_tor_bug23104.html
new file mode 100644
index 000000000000..8ff1d2190c45
--- /dev/null
+++ b/layout/generic/test/test_tor_bug23104.html
@@ -0,0 +1,50 @@
+<!DOCTYPE HTML>
+<meta charset="UTF-8">
+<html>
+<head>
+ <title>Test for Tor Bug #23104: CSS line-height reveals the platform Tor browser is running</title>
+ <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
+ <script type="application/javascript" src="/tests/SimpleTest/SpawnTask.js"></script>
+ <style type="text/css">
+ span {
+ background-color: #000;
+ color: #fff;
+ font-size: 16.5px;
+ }
+ </style>
+</head>
+<body>
+<span id="test1">Test1</span>
+<span id="test2">كلمة</span>
+<span id="test3">ação</span>
+<script>
+
+let setPref = async function (key, value) {
+ await SpecialPowers.pushPrefEnv({"set": [[key, value]]});
+}
+
+function getStyle(el, styleprop) {
+ el = document.getElementById(el);
+ return document.defaultView.getComputedStyle(el, null).getPropertyValue(styleprop);
+}
+
+function validateElement(elementName, isFingerprintResistent) {
+ var fontSize = getStyle(elementName, 'font-size');
+ var lineHeight = getStyle(elementName, 'line-height');
+ var validationCb = isFingerprintResistent ? is : isnot;
+ validationCb(parseFloat(lineHeight), Math.round(parseFloat(fontSize)) * 1.2, 'Line Height validation');
+}
+
+add_task(async function() {
+ await setPref("layout.css.line-height.normal-as-resolved-value.enabled", false);
+ for (let resistFingerprintingValue of [true, false]) {
+ await setPref("privacy.resistFingerprinting", resistFingerprintingValue);
+ for (let elementId of ['test1', 'test2', 'test3']) {
+ validateElement(elementId, resistFingerprintingValue);
+ }
+ }
+});
+
+</script>
+</body>
+</html>
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 26353: Prevent speculative connect that violated FPI.
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 78a902b2848611778aa7a1d3d8578684ef43d0ed
Author: Arthur Edelstein <arthuredelstein(a)gmail.com>
Date: Sat Jul 14 08:50:55 2018 -0700
Bug 26353: Prevent speculative connect that violated FPI.
Connections were observed in the catch-all circuit when
the user entered an https or http URL in the URL bar, or
typed a search term.
---
toolkit/components/remotebrowserutils/RemoteWebNavigation.jsm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/toolkit/components/remotebrowserutils/RemoteWebNavigation.jsm b/toolkit/components/remotebrowserutils/RemoteWebNavigation.jsm
index ffa42297073e..82c7a3b950c2 100644
--- a/toolkit/components/remotebrowserutils/RemoteWebNavigation.jsm
+++ b/toolkit/components/remotebrowserutils/RemoteWebNavigation.jsm
@@ -74,6 +74,9 @@ class RemoteWebNavigation {
fixupFlags |= Services.uriFixup.FIXUP_FLAG_PRIVATE_CONTEXT;
}
uri = Services.uriFixup.createFixupURI(aURI, fixupFlags);
+/*******************************************************************************
+ TOR BROWSER: Disable the following speculative connect until
+ we can make it properly obey first-party isolation.
// We know the url is going to be loaded, let's start requesting network
// connection before the content process asks.
@@ -97,6 +100,7 @@ class RemoteWebNavigation {
}
Services.io.speculativeConnect(uri, principal, null);
}
+*******************************************************************************/
} catch (ex) {
// Can't setup speculative connection for this uri string for some
// reason (such as failing to parse the URI), just ignore it.
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 25658: Replace security slider with security level UI
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit b1fab128b820fadf0e37deee80fc093fee8b693d
Author: Richard Pospesel <richard(a)torproject.org>
Date: Mon Mar 4 16:09:51 2019 -0800
Bug 25658: Replace security slider with security level UI
This patch adds a new 'securitylevel' component to Tor Browser intended
to replace the torbutton 'Security Slider'.
This component adds a new Security Level toolbar button which visually
indicates the current global security level via icon (as defined by the
extensions.torbutton.security_slider pref), a drop-down hanger with a
short description of the current security level, and a new section in
the about:preferences#privacy page where users can change their current
security level. In addition, the hanger and the preferences page will
show a visual warning when the user has modified prefs associated with
the security level and provide a one-click 'Restore Defaults' button to
get the user back on recommended settings.
Strings used by this patch are pulled from the torbutton extension, but
en-US defaults are provided if there is an error loading from the
extension. With this patch applied, the usual work-flow of "./mach build
&& ./mach run" work as expected, even if the torbutton extension is
disabled.
---
browser/base/content/browser.js | 10 +
browser/base/content/browser.xhtml | 5 +
browser/components/moz.build | 1 +
browser/components/preferences/preferences.xhtml | 1 +
browser/components/preferences/privacy.inc.xhtml | 2 +
browser/components/preferences/privacy.js | 19 +
.../securitylevel/content/securityLevel.js | 501 +++++++++++++++++++++
.../securitylevel/content/securityLevelButton.css | 9 +
.../content/securityLevelButton.inc.xhtml | 7 +
.../securitylevel/content/securityLevelButton.svg | 21 +
.../securitylevel/content/securityLevelPanel.css | 82 ++++
.../content/securityLevelPanel.inc.xhtml | 38 ++
.../content/securityLevelPreferences.css | 26 ++
.../content/securityLevelPreferences.inc.xhtml | 62 +++
browser/components/securitylevel/jar.mn | 6 +
browser/components/securitylevel/moz.build | 1 +
16 files changed, 791 insertions(+)
diff --git a/browser/base/content/browser.js b/browser/base/content/browser.js
index 036d92e131da..a851be586c0c 100644
--- a/browser/base/content/browser.js
+++ b/browser/base/content/browser.js
@@ -216,6 +216,11 @@ XPCOMUtils.defineLazyScriptGetter(
["DownloadsButton", "DownloadsIndicatorView"],
"chrome://browser/content/downloads/indicator.js"
);
+XPCOMUtils.defineLazyScriptGetter(
+ this,
+ ["SecurityLevelButton"],
+ "chrome://browser/content/securitylevel/securityLevel.js"
+);
XPCOMUtils.defineLazyScriptGetter(
this,
"gEditItemOverlay",
@@ -1876,6 +1881,9 @@ var gBrowserInit = {
// doesn't flicker as the window is being shown.
DownloadsButton.init();
+ // Init the SecuritySettingsButton
+ SecurityLevelButton.init();
+
// Certain kinds of automigration rely on this notification to complete
// their tasks BEFORE the browser window is shown. SessionStore uses it to
// restore tabs into windows AFTER important parts like gMultiProcessBrowser
@@ -2558,6 +2566,8 @@ var gBrowserInit = {
DownloadsButton.uninit();
+ SecurityLevelButton.uninit();
+
gAccessibilityServiceIndicator.uninit();
AccessibilityRefreshBlocker.uninit();
diff --git a/browser/base/content/browser.xhtml b/browser/base/content/browser.xhtml
index 229fc2a26dd2..72c415b8f843 100644
--- a/browser/base/content/browser.xhtml
+++ b/browser/base/content/browser.xhtml
@@ -20,6 +20,8 @@
<?xml-stylesheet href="chrome://browser/content/browser.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/content/tabbrowser.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/content/downloads/downloads.css" type="text/css"?>
+<?xml-stylesheet href="chrome://browser/content/securitylevel/securityLevelPanel.css"?>
+<?xml-stylesheet href="chrome://browser/content/securitylevel/securityLevelButton.css"?>
<?xml-stylesheet href="chrome://browser/content/places/places.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/content/usercontext/usercontext.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
@@ -623,6 +625,7 @@
#include ../../components/controlcenter/content/protectionsPanel.inc.xhtml
#include ../../components/downloads/content/downloadsPanel.inc.xhtml
#include ../../../devtools/startup/enableDevToolsPopup.inc.xhtml
+#include ../../components/securitylevel/content/securityLevelPanel.inc.xhtml
#include browser-allTabsMenu.inc.xhtml
<hbox id="downloads-animation-container">
@@ -1136,6 +1139,8 @@
</stack>
</toolbarbutton>
+#include ../../components/securitylevel/content/securityLevelButton.inc.xhtml
+
<toolbarbutton id="library-button" class="toolbarbutton-1 chromeclass-toolbar-additional subviewbutton-nav"
removable="true"
onmousedown="PanelUI.showSubView('appMenu-libraryView', this, event);"
diff --git a/browser/components/moz.build b/browser/components/moz.build
index cf3f566eba71..8d6d2503e4a0 100644
--- a/browser/components/moz.build
+++ b/browser/components/moz.build
@@ -52,6 +52,7 @@ DIRS += [
'protocolhandler',
'resistfingerprinting',
'search',
+ 'securitylevel',
'sessionstore',
'shell',
'ssb',
diff --git a/browser/components/preferences/preferences.xhtml b/browser/components/preferences/preferences.xhtml
index c8adb60653b7..3d89ddf00808 100644
--- a/browser/components/preferences/preferences.xhtml
+++ b/browser/components/preferences/preferences.xhtml
@@ -12,6 +12,7 @@
<?xml-stylesheet href="chrome://browser/skin/preferences/search.css"?>
<?xml-stylesheet href="chrome://browser/skin/preferences/containers.css"?>
<?xml-stylesheet href="chrome://browser/skin/preferences/privacy.css"?>
+<?xml-stylesheet href="chrome://browser/content/securitylevel/securityLevelPreferences.css"?>
<!DOCTYPE html>
diff --git a/browser/components/preferences/privacy.inc.xhtml b/browser/components/preferences/privacy.inc.xhtml
index 572b0233c8c4..f36145ea80d4 100644
--- a/browser/components/preferences/privacy.inc.xhtml
+++ b/browser/components/preferences/privacy.inc.xhtml
@@ -913,6 +913,8 @@
<html:h1 data-l10n-id="security-header"/>
</hbox>
+#include ../securitylevel/content/securityLevelPreferences.inc.xhtml
+
<!-- addons, forgery (phishing) UI Security -->
<groupbox id="browsingProtectionGroup" data-category="panePrivacy" hidden="true">
<label><html:h2 data-l10n-id="security-browsing-protection"/></label>
diff --git a/browser/components/preferences/privacy.js b/browser/components/preferences/privacy.js
index 2cff75726546..949fa84c24ab 100644
--- a/browser/components/preferences/privacy.js
+++ b/browser/components/preferences/privacy.js
@@ -77,6 +77,12 @@ XPCOMUtils.defineLazyGetter(this, "AlertsServiceDND", function() {
}
});
+XPCOMUtils.defineLazyScriptGetter(
+ this,
+ ["SecurityLevelPreferences"],
+ "chrome://browser/content/securitylevel/securityLevel.js"
+);
+
XPCOMUtils.defineLazyServiceGetter(
this,
"listManager",
@@ -275,6 +281,18 @@ function addCustomBlockingLearnMore() {
var gPrivacyPane = {
_pane: null,
+ /**
+ * Show the Security Level UI
+ */
+ _initSecurityLevel() {
+ SecurityLevelPreferences.init();
+ let unload = () => {
+ window.removeEventListener("unload", unload);
+ SecurityLevelPreferences.uninit();
+ };
+ window.addEventListener("unload", unload);
+ },
+
/**
* Whether the prompt to restart Firefox should appear when changing the autostart pref.
*/
@@ -415,6 +433,7 @@ var gPrivacyPane = {
this.trackingProtectionReadPrefs();
this.networkCookieBehaviorReadPrefs();
this._initTrackingProtectionExtensionControl();
+ this._initSecurityLevel();
Services.telemetry.setEventRecordingEnabled("pwmgr", true);
diff --git a/browser/components/securitylevel/content/securityLevel.js b/browser/components/securitylevel/content/securityLevel.js
new file mode 100644
index 000000000000..b47d0cfb545e
--- /dev/null
+++ b/browser/components/securitylevel/content/securityLevel.js
@@ -0,0 +1,501 @@
+"use strict";
+
+ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm");
+ChromeUtils.import("resource://gre/modules/Services.jsm");
+
+XPCOMUtils.defineLazyModuleGetters(this, {
+ CustomizableUI: "resource:///modules/CustomizableUI.jsm",
+ PanelMultiView: "resource:///modules/PanelMultiView.jsm",
+});
+
+ChromeUtils.defineModuleGetter(
+ this,
+ "TorStrings",
+ "resource:///modules/TorStrings.jsm"
+);
+
+/*
+ Security Level Prefs
+
+ Getters and Setters for relevant torbutton prefs
+*/
+const SecurityLevelPrefs = {
+ security_slider_pref : "extensions.torbutton.security_slider",
+ security_custom_pref : "extensions.torbutton.security_custom",
+
+ get securitySlider() {
+ try {
+ return Services.prefs.getIntPref(this.security_slider_pref);
+ } catch(e) {
+ // init pref to 4 (standard)
+ const val = 4;
+ Services.prefs.setIntPref(this.security_slider_pref, val);
+ return val;
+ }
+ },
+
+ set securitySlider(val) {
+ Services.prefs.setIntPref(this.security_slider_pref, val);
+ },
+
+ get securityCustom() {
+ try {
+ return Services.prefs.getBoolPref(this.security_custom_pref);
+ } catch(e) {
+ // init custom to false
+ const val = false;
+ Services.prefs.setBoolPref(this.security_custom_pref, val);
+ return val;
+ }
+ },
+
+ set securityCustom(val) {
+ Services.prefs.setBoolPref(this.security_custom_pref, val);
+ },
+}; /* Security Level Prefs */
+
+/*
+ Security Level Button Code
+
+ Controls init and update of the security level toolbar button
+*/
+
+const SecurityLevelButton = {
+ _securityPrefsBranch : null,
+
+ _populateXUL : function(securityLevelButton) {
+ if (securityLevelButton != null) {
+ securityLevelButton.setAttribute("tooltiptext", TorStrings.securityLevel.securityLevel);
+ securityLevelButton.setAttribute("label", TorStrings.securityLevel.securityLevel);
+ }
+ },
+
+ _configUIFromPrefs : function(securityLevelButton) {
+ if (securityLevelButton != null) {
+ let securitySlider = SecurityLevelPrefs.securitySlider;
+ let classList = securityLevelButton.classList;
+ classList.remove("standard", "safer", "safest");
+ switch(securitySlider) {
+ case 4:
+ classList.add("standard");
+ securityLevelButton.setAttribute("tooltiptext", TorStrings.securityLevel.standard.tooltip);
+ break;
+ case 2:
+ classList.add("safer");
+ securityLevelButton.setAttribute("tooltiptext", TorStrings.securityLevel.safer.tooltip);
+ break;
+ case 1:
+ classList.add("safest");
+ securityLevelButton.setAttribute("tooltiptext", TorStrings.securityLevel.safest.tooltip);
+ break;
+ }
+ }
+ },
+
+ get button() {
+ let button = document.getElementById("security-level-button");
+ if (!button) {
+ return null;
+ }
+ return button;
+ },
+
+ get anchor() {
+ let anchor = this.button.icon;
+ if (!anchor) {
+ return null;
+ }
+
+ anchor.setAttribute("consumeanchor", SecurityLevelButton.button.id);
+ return anchor;
+ },
+
+ init : function() {
+ // set the initial class based off of the current pref
+ let button = this.button;
+ this._populateXUL(button);
+ this._configUIFromPrefs(button);
+
+ this._securityPrefsBranch = Services.prefs.getBranch("extensions.torbutton.");
+ this._securityPrefsBranch.addObserver("", this, false);
+
+ CustomizableUI.addListener(this);
+
+ SecurityLevelPanel.init();
+ },
+
+ uninit : function() {
+ CustomizableUI.removeListener(this);
+
+ this._securityPrefsBranch.removeObserver("", this);
+ this._securityPrefsBranch = null;
+
+ SecurityLevelPanel.uninit();
+ },
+
+ observe : function(subject, topic, data) {
+ switch(topic) {
+ case "nsPref:changed":
+ if (data == "security_slider") {
+ this._configUIFromPrefs(this.button);
+ }
+ break;
+ }
+ },
+
+ // callback for entering the 'Customize Firefox' screen to set icon
+ onCustomizeStart : function(window) {
+ let navigatorToolbox = document.getElementById("navigator-toolbox");
+ let button = navigatorToolbox.palette.querySelector("#security-level-button");
+ this._populateXUL(button);
+ this._configUIFromPrefs(button);
+ },
+
+ // callback when CustomizableUI modifies DOM
+ onWidgetAfterDOMChange : function(aNode, aNextNode, aContainer, aWasRemoval) {
+ if (aNode.id == "security-level-button" && !aWasRemoval) {
+ this._populateXUL(aNode);
+ this._configUIFromPrefs(aNode);
+ }
+ },
+
+ // for when the toolbar button needs to be activated and displays the Security Level panel
+ //
+ // In the toolbarbutton xul you'll notice we register this callback for both onkeypress and
+ // onmousedown. We do this to match the behavior of other panel spawning buttons such as Downloads,
+ // Library, and the Hamburger menus. Using oncommand alone would result in only getting fired
+ // after onclick, which is mousedown followed by mouseup.
+ onCommand : function(aEvent) {
+ // snippet stolen from /browser/components/downloads/indicator.js DownloadsIndicatorView.onCommand(evt)
+ if (
+ (aEvent.type == "mousedown" && aEvent.button != 0) ||
+ (aEvent.type == "keypress" && aEvent.key != " " && aEvent.key != "Enter")
+ ) {
+ return;
+ }
+
+ // we need to set this attribute for the button to be shaded correctly to look like it is pressed
+ // while the security level panel is open
+ this.button.setAttribute("open", "true");
+ SecurityLevelPanel.show();
+ },
+}; /* Security Level Button */
+
+/*
+ Security Level Panel Code
+
+ Controls init and update of the panel in the security level hanger
+*/
+
+const SecurityLevelPanel = {
+ _securityPrefsBranch : null,
+ _panel : null,
+ _anchor : null,
+ _populated : false,
+
+ _populateXUL : function() {
+ // get the panel elements we need to populate
+ let panelview = document.getElementById("securityLevel-panelview");
+ let labelHeader = panelview.querySelector("#securityLevel-header");
+ let labelCustomWarning = panelview.querySelector("#securityLevel-customWarning")
+ let labelLearnMore = panelview.querySelector("#securityLevel-learnMore");
+ let buttonRestoreDefaults = panelview.querySelector("#securityLevel-restoreDefaults");
+ let buttonAdvancedSecuritySettings = panelview.querySelector("#securityLevel-advancedSecuritySettings");
+
+ labelHeader.setAttribute("value", TorStrings.securityLevel.securityLevel);
+ labelCustomWarning.setAttribute("value", TorStrings.securityLevel.customWarning);
+ labelLearnMore.setAttribute("value", TorStrings.securityLevel.learnMore);
+ labelLearnMore.setAttribute("href", TorStrings.securityLevel.learnMoreURL);
+ buttonRestoreDefaults.setAttribute("label", TorStrings.securityLevel.restoreDefaults);
+ buttonAdvancedSecuritySettings.setAttribute("label", TorStrings.securityLevel.advancedSecuritySettings);
+
+ // rest of the XUL is set based on security prefs
+ this._configUIFromPrefs();
+
+ this._populated = true;
+ },
+
+ _configUIFromPrefs : function() {
+ // get security prefs
+ let securitySlider = SecurityLevelPrefs.securitySlider;
+ let securityCustom = SecurityLevelPrefs.securityCustom;
+
+ // get the panel elements we need to populate
+ let panelview = document.getElementById("securityLevel-panelview");
+ let labelLevel = panelview.querySelector("#securityLevel-level");
+ let labelCustomWarning = panelview.querySelector("#securityLevel-customWarning")
+ let summary = panelview.querySelector("#securityLevel-summary");
+ let buttonRestoreDefaults = panelview.querySelector("#securityLevel-restoreDefaults");
+ let buttonAdvancedSecuritySettings = panelview.querySelector("#securityLevel-advancedSecuritySettings");
+
+ // only visible when user is using custom settings
+ labelCustomWarning.hidden = !securityCustom;
+ buttonRestoreDefaults.hidden = !securityCustom;
+
+ // Descriptions change based on security level
+ switch(securitySlider) {
+ // standard
+ case 4:
+ labelLevel.setAttribute("value", TorStrings.securityLevel.standard.level);
+ summary.textContent = TorStrings.securityLevel.standard.summary;
+ break;
+ // safer
+ case 2:
+ labelLevel.setAttribute("value", TorStrings.securityLevel.safer.level);
+ summary.textContent = TorStrings.securityLevel.safer.summary;
+ break;
+ // safest
+ case 1:
+ labelLevel.setAttribute("value", TorStrings.securityLevel.safest.level);
+ summary.textContent = TorStrings.securityLevel.safest.summary;
+ break;
+ }
+
+ // override the summary text with custom warning
+ if (securityCustom) {
+ summary.textContent = TorStrings.securityLevel.custom.summary;
+ }
+ },
+
+ init : function() {
+ this._securityPrefsBranch = Services.prefs.getBranch("extensions.torbutton.");
+ this._securityPrefsBranch.addObserver("", this, false);
+ },
+
+ uninit : function() {
+ this._securityPrefsBranch.removeObserver("", this);
+ this._securityPrefsBranch = null;
+ },
+
+ show : function() {
+ // we have to defer this until after the browser has finished init'ing before
+ // we can populate the panel
+ if (!this._populated) {
+ this._populateXUL();
+ }
+
+ let panel = document.getElementById("securityLevel-panel");
+ panel.hidden = false;
+ PanelMultiView.openPopup(panel, SecurityLevelButton.anchor, "bottomcenter topright",
+ 0, 0, false, null).catch(Cu.reportError);
+ },
+
+ hide : function() {
+ let panel = document.getElementById("securityLevel-panel");
+ PanelMultiView.hidePopup(panel);
+ },
+
+ restoreDefaults : function() {
+ SecurityLevelPrefs.securityCustom = false;
+ // hide and reshow so that layout re-renders properly
+ this.hide();
+ this.show(this._anchor);
+ },
+
+ openAdvancedSecuritySettings : function() {
+ openPreferences("privacy-securitylevel");
+ this.hide();
+ },
+
+ // callback when prefs change
+ observe : function(subject, topic, data) {
+ switch(topic) {
+ case "nsPref:changed":
+ if (data == "security_slider" || data == "security_custom") {
+ this._configUIFromPrefs();
+ }
+ break;
+ }
+ },
+
+ // callback when the panel is displayed
+ onPopupShown : function(event) {
+ SecurityLevelButton.button.setAttribute("open", "true");
+ },
+
+ // callback when the panel is hidden
+ onPopupHidden : function(event) {
+ SecurityLevelButton.button.removeAttribute("open");
+ }
+}; /* Security Level Panel */
+
+/*
+ Security Level Preferences Code
+
+ Code to handle init and update of security level section in about:preferences#privacy
+*/
+
+const SecurityLevelPreferences =
+{
+ _securityPrefsBranch : null,
+
+ _populateXUL : function() {
+ let groupbox = document.getElementById("securityLevel-groupbox");
+
+ let labelHeader = groupbox.querySelector("#securityLevel-header");
+ labelHeader.textContent = TorStrings.securityLevel.securityLevel;
+
+ let spanOverview = groupbox.querySelector("#securityLevel-overview");
+ spanOverview.textContent = TorStrings.securityLevel.overview;
+
+ let labelLearnMore = groupbox.querySelector("#securityLevel-learnMore");
+ labelLearnMore.setAttribute("value", TorStrings.securityLevel.learnMore);
+ labelLearnMore.setAttribute("href", TorStrings.securityLevel.learnMoreURL);
+
+ let radiogroup = document.getElementById("securityLevel-radiogroup");
+ radiogroup.addEventListener("command", SecurityLevelPreferences.selectSecurityLevel);
+
+ let populateRadioElements = function(vboxQuery, stringStruct) {
+ let vbox = groupbox.querySelector(vboxQuery);
+
+ let radio = vbox.querySelector("radio");
+ radio.setAttribute("label", stringStruct.level);
+
+ let customWarning = vbox.querySelector("#securityLevel-customWarning");
+ customWarning.setAttribute("value", TorStrings.securityLevel.customWarning);
+
+ let labelSummary = vbox.querySelector("#securityLevel-summary");
+ labelSummary.textContent = stringStruct.summary;
+
+ let labelRestoreDefaults = vbox.querySelector("#securityLevel-restoreDefaults");
+ labelRestoreDefaults.setAttribute("value", TorStrings.securityLevel.restoreDefaults);
+ labelRestoreDefaults.addEventListener("click", SecurityLevelPreferences.restoreDefaults);
+
+ let description1 = vbox.querySelector("#securityLevel-description1");
+ if (description1) {
+ description1.textContent = stringStruct.description1;
+ }
+ let description2 = vbox.querySelector("#securityLevel-description2");
+ if (description2) {
+ description2.textContent = stringStruct.description2;
+ }
+ let description3 = vbox.querySelector("#securityLevel-description3");
+ if (description3) {
+ description3.textContent = stringStruct.description3;
+ }
+ };
+
+ populateRadioElements("#securityLevel-vbox-standard", TorStrings.securityLevel.standard);
+ populateRadioElements("#securityLevel-vbox-safer", TorStrings.securityLevel.safer);
+ populateRadioElements("#securityLevel-vbox-safest", TorStrings.securityLevel.safest);
+ },
+
+ _configUIFromPrefs : function() {
+ // read our prefs
+ let securitySlider = SecurityLevelPrefs.securitySlider;
+ let securityCustom = SecurityLevelPrefs.securityCustom;
+
+ // get our elements
+ let groupbox = document.getElementById("securityLevel-groupbox");
+
+ let radiogroup = groupbox.querySelector("#securityLevel-radiogroup");
+ let labelStandardCustom = groupbox.querySelector("#securityLevel-vbox-standard label#securityLevel-customWarning");
+ let labelSaferCustom = groupbox.querySelector("#securityLevel-vbox-safer label#securityLevel-customWarning");
+ let labelSafestCustom = groupbox.querySelector("#securityLevel-vbox-safest label#securityLevel-customWarning");
+ let labelStandardRestoreDefaults = groupbox.querySelector("#securityLevel-vbox-standard label#securityLevel-restoreDefaults");
+ let labelSaferRestoreDefaults = groupbox.querySelector("#securityLevel-vbox-safer label#securityLevel-restoreDefaults");
+ let labelSafestRestoreDefaults = groupbox.querySelector("#securityLevel-vbox-safest label#securityLevel-restoreDefaults");
+
+ // hide custom label by default until we know which level we're at
+ labelStandardCustom.hidden = true;
+ labelSaferCustom.hidden = true;
+ labelSafestCustom.hidden = true;
+
+ labelStandardRestoreDefaults.hidden = true;
+ labelSaferRestoreDefaults.hidden = true;
+ labelSafestRestoreDefaults.hidden = true;
+
+ switch(securitySlider) {
+ // standard
+ case 4:
+ radiogroup.value = "standard";
+ labelStandardCustom.hidden = !securityCustom;
+ labelStandardRestoreDefaults.hidden = !securityCustom;
+ break;
+ // safer
+ case 2:
+ radiogroup.value = "safer";
+ labelSaferCustom.hidden = !securityCustom;
+ labelSaferRestoreDefaults.hidden = !securityCustom;
+ break;
+ // safest
+ case 1:
+ radiogroup.value = "safest";
+ labelSafestCustom.hidden = !securityCustom;
+ labelSafestRestoreDefaults.hidden = !securityCustom;
+ break;
+ }
+ },
+
+ init : function() {
+ // populate XUL with localized strings
+ this._populateXUL();
+
+ // read prefs and populate UI
+ this._configUIFromPrefs();
+
+ // register for pref chagnes
+ this._securityPrefsBranch = Services.prefs.getBranch("extensions.torbutton.");
+ this._securityPrefsBranch.addObserver("", this, false);
+ },
+
+ uninit : function() {
+ // unregister for pref change events
+ this._securityPrefsBranch.removeObserver("", this);
+ this._securityPrefsBranch = null;
+ },
+
+ // callback for when prefs change
+ observe : function(subject, topic, data) {
+ switch(topic) {
+ case "nsPref:changed":
+ if (data == "security_slider" ||
+ data == "security_custom") {
+ this._configUIFromPrefs();
+ }
+ break;
+ }
+ },
+
+ selectSecurityLevel : function() {
+ // radio group elements
+ let radiogroup = document.getElementById("securityLevel-radiogroup");
+
+ // update pref based on selected radio option
+ switch (radiogroup.value) {
+ case "standard":
+ SecurityLevelPrefs.securitySlider = 4;
+ break;
+ case "safer":
+ SecurityLevelPrefs.securitySlider = 2;
+ break;
+ case "safest":
+ SecurityLevelPrefs.securitySlider = 1;
+ break;
+ }
+
+ SecurityLevelPreferences.restoreDefaults();
+ },
+
+ restoreDefaults : function() {
+ SecurityLevelPrefs.securityCustom = false;
+ },
+}; /* Security Level Prefereces */
+
+Object.defineProperty(this, "SecurityLevelButton", {
+ value: SecurityLevelButton,
+ enumerable: true,
+ writable: false
+});
+
+Object.defineProperty(this, "SecurityLevelPanel", {
+ value: SecurityLevelPanel,
+ enumerable: true,
+ writable: false
+});
+
+Object.defineProperty(this, "SecurityLevelPreferences", {
+ value: SecurityLevelPreferences,
+ enumerable: true,
+ writable: false
+});
diff --git a/browser/components/securitylevel/content/securityLevelButton.css b/browser/components/securitylevel/content/securityLevelButton.css
new file mode 100644
index 000000000000..81f2365bae28
--- /dev/null
+++ b/browser/components/securitylevel/content/securityLevelButton.css
@@ -0,0 +1,9 @@
+toolbarbutton#security-level-button.standard {
+ list-style-image: url("chrome://browser/content/securitylevel/securityLevelButton.svg#standard");
+}
+toolbarbutton#security-level-button.safer {
+ list-style-image: url("chrome://browser/content/securitylevel/securityLevelButton.svg#safer");
+}
+toolbarbutton#security-level-button.safest {
+ list-style-image: url("chrome://browser/content/securitylevel/securityLevelButton.svg#safest");
+}
diff --git a/browser/components/securitylevel/content/securityLevelButton.inc.xhtml b/browser/components/securitylevel/content/securityLevelButton.inc.xhtml
new file mode 100644
index 000000000000..96ee1ec0ca49
--- /dev/null
+++ b/browser/components/securitylevel/content/securityLevelButton.inc.xhtml
@@ -0,0 +1,7 @@
+<toolbarbutton id="security-level-button" class="toolbarbutton-1 chromeclass-toolbar-additional"
+ badged="true"
+ removable="true"
+ onmousedown="SecurityLevelButton.onCommand(event);"
+ onkeypress="SecurityLevelButton.onCommand(event);"
+ closemenu="none"
+ cui-areatype="toolbar"/>
diff --git a/browser/components/securitylevel/content/securityLevelButton.svg b/browser/components/securitylevel/content/securityLevelButton.svg
new file mode 100644
index 000000000000..8535cdcc531e
--- /dev/null
+++ b/browser/components/securitylevel/content/securityLevelButton.svg
@@ -0,0 +1,21 @@
+<svg width="14px" height="16px" viewBox="0 0 14 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <style>
+ use:not(:target) {
+ display: none;
+ }
+ </style>
+ <defs>
+ <g id="standard_icon" stroke="none" stroke-width="1">
+ <path d="M7.0 2.16583509C7.0 2.16583509 2.0 4.24375717 2.0 4.24375717C2.0 4.24375717 2.0 7.27272727 2.0 7.27272727C2.0 10.2413541 4.13435329 13.0576771 7.0 13.9315843C9.8656467 13.0576771 12.0 10.2413541 12.0 7.27272727C12.0 7.27272727 12.0 4.24375717 12.0 4.24375717C12.0 4.24375717 7.0 2.16583509 7.0 2.16583509C7.0 2.16583509 7.0 2.16583509 7.0 2.16583509M7.0 0.0C7.0 0.0 14.0 2.90909091 14.0 2.90909091C14.0 2.90909091 14.0 7.27272727 14.0 7.27272727C14.0 11.3090909 11.0133333 15.0836364 7.0 16.0C2.98666667 15.0836364 0.0 11.3090909 0.0 7.27272727C0.0 7.27272727 0.0 2.90909091 0.0 2.90909091C0.0 2.90909091 7.0 0.0 7.0 0.0C7.0 0.0 7.0 0.0 7.0 0.0" />
+ </g>
+ <g id="safer_icon" stroke="none" stroke-width="1">
+ <path fill-rule="nonzero" d="M7.0 2.1658351C7.0 13.931584 7.0 2.1658351 7.0 13.931584C9.8656467 13.057677 12.0 10.241354 12.0 7.2727273C12.0 7.2727273 12.0 4.2437572 12.0 4.2437572C12.0 4.2437572 7.0 2.1658351 7.0 2.1658351C7.0 2.1658351 7.0 2.1658351 7.0 2.1658351M7.0 0.0C7.0 0.0 14.0 2.9090909 14.0 2.9090909C14.0 2.9090909 14.0 7.2727273 14.0 7.2727273C14.0 11.309091 11.013333 15.083636 7.0 16.0C2.9866667 15.083636 0.0 11.309091 0.0 7.2727273C0.0 7.2727273 0.0 2.9090909 0.0 2.9090909C0.0 2.9090909 7.0 0.0 7.0 0.0"/>
+ </g>
+ <g id="safest_icon" stroke="none" stroke-width="1">
+ <path d="M7.0 0.0C7.0 0.0 14.0 2.90909091 14.0 2.90909091C14.0 2.90909091 14.0 7.27272727 14.0 7.27272727C14.0 11.3090909 11.0133333 15.0836364 7.0 16.0C2.98666667 15.0836364 0.0 11.3090909 0.0 7.27272727C0.0 7.27272727 0.0 2.90909091 0.0 2.90909091C0.0 2.90909091 7.0 0.0 7.0 0.0C7.0 0.0 7.0 0.0 7.0 0.0" />
+ </g>
+ </defs>
+ <use id="standard" fill="context-fill" fill-opacity="context-fill-opacity" href="#standard_icon" />
+ <use id="safer" fill="context-fill" fill-opacity="context-fill-opacity" href="#safer_icon" />
+ <use id="safest" fill="context-fill" fill-opacity="context-fill-opacity" href="#safest_icon" />
+</svg>
diff --git a/browser/components/securitylevel/content/securityLevelPanel.css b/browser/components/securitylevel/content/securityLevelPanel.css
new file mode 100644
index 000000000000..70022e2bd4b2
--- /dev/null
+++ b/browser/components/securitylevel/content/securityLevelPanel.css
@@ -0,0 +1,82 @@
+/* Security Level CSS */
+
+panel#securityLevel-panel > .panel-arrowcontainer > .panel-arrowcontent {
+ padding: 0;
+}
+
+panelview#securityLevel-panelview {
+ width: 20em;
+}
+
+panelview#securityLevel-panelview>vbox.panel-subview-body {
+ padding: 1em;
+}
+
+label#securityLevel-header {
+ text-transform: uppercase;
+ color: var(--panel-disabled-color);
+ font-size: 0.85em;
+ margin: 0 0 0.4em 0;
+ padding: 0;
+}
+
+hbox#securityLevel-levelHbox {
+ margin-bottom: 1em;
+}
+
+label#securityLevel-level {
+ font-size: 1.5em;
+ margin: 0 0.5em 0 0;
+ padding: 0;
+}
+
+label#securityLevel-customWarning {
+ border-radius: 2px;
+ background-color: #ffe845;
+ text-transform: uppercase;
+ font-weight: bolder;
+ font-size: 0.8em;
+ height: 1em;
+ line-height: 1em;
+ vertical-align: middle;
+ margin: auto;
+ padding: 0.4em;
+}
+
+panelview#securityLevel-panelview description {
+ margin: 0 -0.5em 0.5em 0;
+ padding: 0 !important;
+}
+
+label#securityLevel-learnMore {
+ margin: 0 0 1.0em 0;
+ padding: 0;
+}
+
+panelview#securityLevel-panelview button {
+ -moz-appearance: none;
+ background-color: var(--arrowpanel-dimmed);
+}
+
+panelview#securityLevel-panelview button:hover {
+ background-color: var(--arrowpanel-dimmed-further);
+}
+
+panelview#securityLevel-panelview button:active {
+ background-color: var(--arrowpanel-dimmed-even-further);
+}
+
+button#securityLevel-restoreDefaults {
+ margin: 0 0 1.0em 0;
+ padding: 0.45em;
+ color: inherit !important;
+}
+
+button#securityLevel-advancedSecuritySettings {
+ margin: 0 -1.0em -1.0em -1.0em;
+ border-radius: 0;
+ border-top: 1px solid var(--panel-separator-color);
+ padding: 0;
+ height: 3.0em;
+ color: inherit !important;
+}
diff --git a/browser/components/securitylevel/content/securityLevelPanel.inc.xhtml b/browser/components/securitylevel/content/securityLevelPanel.inc.xhtml
new file mode 100644
index 000000000000..4abbb12dd856
--- /dev/null
+++ b/browser/components/securitylevel/content/securityLevelPanel.inc.xhtml
@@ -0,0 +1,38 @@
+<panel id="securityLevel-panel"
+ role="group"
+ type="arrow"
+ orient="vertical"
+ level="top"
+ hidden="true"
+ class="panel-no-padding"
+ onpopupshown="SecurityLevelPanel.onPopupShown(event);"
+ onpopuphidden="SecurityLevelPanel.onPopupHidden(event);"
+ >
+ <panelmultiview mainViewId="securityLevel-panelview">
+ <panelview id="securityLevel-panelview" descriptionheightworkaround="true">
+ <vbox class="panel-subview-body">
+ <label id="securityLevel-header"/>
+ <hbox id="securityLevel-levelHbox">
+ <label id="securityLevel-level"/>
+ <vbox>
+ <spacer flex="1"/>
+ <label id="securityLevel-customWarning"/>
+ <spacer flex="1"/>
+ </vbox>
+ </hbox>
+ <description id="securityLevel-summary"/>
+ <label
+ id="securityLevel-learnMore"
+ class="learnMore text-link"
+ onclick="SecurityLevelPanel.hide();"
+ is="text-link"/>
+ <button
+ id="securityLevel-restoreDefaults"
+ oncommand="SecurityLevelPanel.restoreDefaults();"/>
+ <button
+ id="securityLevel-advancedSecuritySettings"
+ oncommand="SecurityLevelPanel.openAdvancedSecuritySettings();"/>
+ </vbox>
+ </panelview>
+ </panelmultiview>
+</panel>
diff --git a/browser/components/securitylevel/content/securityLevelPreferences.css b/browser/components/securitylevel/content/securityLevelPreferences.css
new file mode 100644
index 000000000000..0d1040d177d8
--- /dev/null
+++ b/browser/components/securitylevel/content/securityLevelPreferences.css
@@ -0,0 +1,26 @@
+label#securityLevel-customWarning {
+ border-radius: 2px;
+ background-color: #ffe845;
+ text-transform: uppercase;
+ font-weight: bolder;
+ font-size: 0.7em;
+ height: 1em;
+ line-height: 1em;
+ padding: 0.35em;
+}
+
+radiogroup#securityLevel-radiogroup radio {
+ font-weight: bold;
+}
+
+vbox#securityLevel-vbox-standard,
+vbox#securityLevel-vbox-safer,
+vbox#securityLevel-vbox-safest {
+ margin-top: 0.4em;
+}
+
+vbox#securityLevel-vbox-standard description.indent,
+vbox#securityLevel-vbox-safer description.indent,
+vbox#securityLevel-vbox-safest description.indent {
+ margin-inline-start: 0 !important;
+}
diff --git a/browser/components/securitylevel/content/securityLevelPreferences.inc.xhtml b/browser/components/securitylevel/content/securityLevelPreferences.inc.xhtml
new file mode 100644
index 000000000000..a108d44a7b51
--- /dev/null
+++ b/browser/components/securitylevel/content/securityLevelPreferences.inc.xhtml
@@ -0,0 +1,62 @@
+<groupbox id="securityLevel-groupbox" data-category="panePrivacy" hidden="true">
+ <label><html:h2 id="securityLevel-header"/></label>
+ <vbox data-subcategory="securitylevel" flex="1">
+ <description flex="1">
+ <html:span id="securityLevel-overview" class="tail-with-learn-more"/>
+ <label id="securityLevel-learnMore" class="learnMore text-link" is="text-link"/>
+ </description>
+ <radiogroup id="securityLevel-radiogroup">
+ <vbox id="securityLevel-vbox-standard">
+ <hbox>
+ <radio value="standard"/>
+ <vbox>
+ <spacer flex="1"/>
+ <label id="securityLevel-customWarning"/>
+ <spacer flex="1"/>
+ </vbox>
+ </hbox>
+ <description flex="1">
+ <html:span id="securityLevel-summary" class="tail-with-learn-more"/>
+ <label id="securityLevel-restoreDefaults"
+ class="learnMore text-link"/>
+ </description>
+ </vbox>
+ <vbox id="securityLevel-vbox-safer">
+ <hbox>
+ <radio value="safer"/>
+ <vbox>
+ <spacer flex="1"/>
+ <label id="securityLevel-customWarning"/>
+ <spacer flex="1"/>
+ </vbox>
+ </hbox>
+ <description flex="1">
+ <html:span id="securityLevel-summary" class="tail-with-learn-more"/>
+ <label id="securityLevel-restoreDefaults"
+ class="learnMore text-link"/>
+ </description>
+ <description id="securityLevel-description1" class="indent tip-caption"/>
+ <description id="securityLevel-description2" class="indent tip-caption"/>
+ <description id="securityLevel-description3" class="indent tip-caption"/>
+ </vbox>
+ <vbox id="securityLevel-vbox-safest">
+ <hbox>
+ <radio value="safest"/>
+ <vbox>
+ <spacer flex="1"/>
+ <label id="securityLevel-customWarning"/>
+ <spacer flex="1"/>
+ </vbox>
+ </hbox>
+ <description flex="1">
+ <html:span id="securityLevel-summary" class="tail-with-learn-more"/>
+ <label id="securityLevel-restoreDefaults"
+ class="learnMore text-link"/>
+ </description>
+ <description id="securityLevel-description1" class="indent tip-caption"/>
+ <description id="securityLevel-description2" class="indent tip-caption"/>
+ <description id="securityLevel-description3" class="indent tip-caption"/>
+ </vbox>
+ </radiogroup>
+ </vbox>
+</groupbox>
diff --git a/browser/components/securitylevel/jar.mn b/browser/components/securitylevel/jar.mn
new file mode 100644
index 000000000000..9ac408083fbc
--- /dev/null
+++ b/browser/components/securitylevel/jar.mn
@@ -0,0 +1,6 @@
+browser.jar:
+ content/browser/securitylevel/securityLevel.js (content/securityLevel.js)
+ content/browser/securitylevel/securityLevelPanel.css (content/securityLevelPanel.css)
+ content/browser/securitylevel/securityLevelButton.css (content/securityLevelButton.css)
+ content/browser/securitylevel/securityLevelPreferences.css (content/securityLevelPreferences.css)
+ content/browser/securitylevel/securityLevelButton.svg (content/securityLevelButton.svg)
diff --git a/browser/components/securitylevel/moz.build b/browser/components/securitylevel/moz.build
new file mode 100644
index 000000000000..7e103239c8d6
--- /dev/null
+++ b/browser/components/securitylevel/moz.build
@@ -0,0 +1 @@
+JAR_MANIFESTS += ['jar.mn']
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 28369: Stop shipping pingsender executable
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 1ed238ea6d403309c241e077c16a0e6a236da8bf
Author: Alex Catarineu <acat(a)torproject.org>
Date: Wed Apr 10 17:52:51 2019 +0200
Bug 28369: Stop shipping pingsender executable
---
browser/app/macbuild/Contents/MacOS-files.in | 1 -
browser/installer/package-manifest.in | 4 ----
browser/installer/windows/nsis/shared.nsh | 1 -
python/mozbuild/mozbuild/artifacts.py | 2 --
toolkit/components/telemetry/app/TelemetrySend.jsm | 19 +------------------
toolkit/components/telemetry/moz.build | 4 ----
6 files changed, 1 insertion(+), 30 deletions(-)
diff --git a/browser/app/macbuild/Contents/MacOS-files.in b/browser/app/macbuild/Contents/MacOS-files.in
index a0cac14ef7e3..38c3766c6375 100644
--- a/browser/app/macbuild/Contents/MacOS-files.in
+++ b/browser/app/macbuild/Contents/MacOS-files.in
@@ -13,7 +13,6 @@
#if defined(MOZ_CRASHREPORTER)
/minidump-analyzer
#endif
-/pingsender
/pk12util
/ssltunnel
/xpcshell
diff --git a/browser/installer/package-manifest.in b/browser/installer/package-manifest.in
index ad7dd023a92e..9e36326dee5b 100644
--- a/browser/installer/package-manifest.in
+++ b/browser/installer/package-manifest.in
@@ -444,10 +444,6 @@ bin/libfreebl_64int_3.so
@BINPATH@/minidump-analyzer@BIN_SUFFIX@
#endif
-; [ Ping Sender ]
-;
-@BINPATH@/pingsender@BIN_SUFFIX@
-
; Shutdown Terminator
@RESPATH@/components/terminator.manifest
diff --git a/browser/installer/windows/nsis/shared.nsh b/browser/installer/windows/nsis/shared.nsh
index 84f702fd54a1..b08a0ec5580b 100755
--- a/browser/installer/windows/nsis/shared.nsh
+++ b/browser/installer/windows/nsis/shared.nsh
@@ -1472,7 +1472,6 @@ ${EndIf}
Push "crashreporter.exe"
Push "default-browser-agent.exe"
Push "minidump-analyzer.exe"
- Push "pingsender.exe"
Push "updater.exe"
Push "updateagent.exe"
Push "${FileMainEXE}"
diff --git a/python/mozbuild/mozbuild/artifacts.py b/python/mozbuild/mozbuild/artifacts.py
index d1de6bca15d9..35107ac894fd 100644
--- a/python/mozbuild/mozbuild/artifacts.py
+++ b/python/mozbuild/mozbuild/artifacts.py
@@ -420,7 +420,6 @@ class LinuxArtifactJob(ArtifactJob):
'{product}/{product}',
'{product}/{product}-bin',
'{product}/minidump-analyzer',
- '{product}/pingsender',
'{product}/plugin-container',
'{product}/updater',
'{product}/**/*.so',
@@ -482,7 +481,6 @@ class MacArtifactJob(ArtifactJob):
'libosclientcerts.dylib',
'libsoftokn3.dylib',
'minidump-analyzer',
- 'pingsender',
'plugin-container.app/Contents/MacOS/plugin-container',
'updater.app/Contents/MacOS/org.mozilla.updater',
# 'xpcshell',
diff --git a/toolkit/components/telemetry/app/TelemetrySend.jsm b/toolkit/components/telemetry/app/TelemetrySend.jsm
index f0f61b74026b..502416431b24 100644
--- a/toolkit/components/telemetry/app/TelemetrySend.jsm
+++ b/toolkit/components/telemetry/app/TelemetrySend.jsm
@@ -1578,23 +1578,6 @@ var TelemetrySendImpl = {
},
runPingSender(pings, observer) {
- if (AppConstants.platform === "android") {
- throw Components.Exception("", Cr.NS_ERROR_NOT_IMPLEMENTED);
- }
-
- const exeName =
- AppConstants.platform === "win" ? "pingsender.exe" : "pingsender";
-
- let exe = Services.dirsvc.get("GreBinD", Ci.nsIFile);
- exe.append(exeName);
-
- let params = pings.flatMap(ping => [ping.url, ping.path]);
- let process = Cc["@mozilla.org/process/util;1"].createInstance(
- Ci.nsIProcess
- );
- process.init(exe);
- process.startHidden = true;
- process.noShell = true;
- process.runAsync(params, params.length, observer);
+ throw Components.Exception("", Cr.NS_ERROR_NOT_IMPLEMENTED);
},
};
diff --git a/toolkit/components/telemetry/moz.build b/toolkit/components/telemetry/moz.build
index 8d9104f632a6..520d2da3acf1 100644
--- a/toolkit/components/telemetry/moz.build
+++ b/toolkit/components/telemetry/moz.build
@@ -8,10 +8,6 @@ include('/ipc/chromium/chromium-config.mozbuild')
FINAL_LIBRARY = 'xul'
-DIRS = [
- 'pingsender',
-]
-
DEFINES['MOZ_APP_VERSION'] = '"%s"' % CONFIG['MOZ_APP_VERSION']
LOCAL_INCLUDES += [
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 30541: Disable WebGL readPixel() for web content
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 9aeddd0bb23f774bafc2689478f63afdeb4f98b6
Author: Georg Koppen <gk(a)torproject.org>
Date: Wed May 29 12:29:19 2019 +0000
Bug 30541: Disable WebGL readPixel() for web content
---
dom/canvas/ClientWebGLContext.cpp | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/dom/canvas/ClientWebGLContext.cpp b/dom/canvas/ClientWebGLContext.cpp
index 01f68aa795b7..8261829e2250 100644
--- a/dom/canvas/ClientWebGLContext.cpp
+++ b/dom/canvas/ClientWebGLContext.cpp
@@ -4115,6 +4115,14 @@ bool ClientWebGLContext::ReadPixels_SharedPrecheck(
return false;
}
+ // Security check passed, but don't let content readPixel calls through for
+ // now, if Resist Fingerprinting Mode is enabled.
+ if (nsContentUtils::ResistFingerprinting(aCallerType)) {
+ JsWarning("readPixels: Not allowed in Resist Fingerprinting Mode");
+ out_error.Throw(NS_ERROR_DOM_NOT_SUPPORTED_ERR);
+ return false;
+ }
+
return true;
}
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 31575: Replace Firefox Home (newtab) with about:tor
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 132042b830bb55c226c22cae0f2af57e75293c6a
Author: Alex Catarineu <acat(a)torproject.org>
Date: Mon Sep 9 13:04:34 2019 +0200
Bug 31575: Replace Firefox Home (newtab) with about:tor
Avoid loading AboutNewTab in BrowserGlue.jsm in order
to avoid several network requests that we do not need. Besides,
about:newtab will now point to about:blank or about:tor (depending
on browser.newtabpage.enabled) and about:home will point to
about:tor.
---
browser/components/BrowserGlue.jsm | 29 ++----------------------
browser/components/newtab/AboutNewTabService.jsm | 15 +-----------
browser/components/preferences/home.inc.xhtml | 4 ++--
browser/components/preferences/preferences.xhtml | 5 +++-
browser/modules/HomePage.jsm | 2 +-
5 files changed, 10 insertions(+), 45 deletions(-)
diff --git a/browser/components/BrowserGlue.jsm b/browser/components/BrowserGlue.jsm
index 3363e24a9b56..44b1426b92e0 100644
--- a/browser/components/BrowserGlue.jsm
+++ b/browser/components/BrowserGlue.jsm
@@ -29,12 +29,6 @@ ChromeUtils.defineModuleGetter(
"resource:///modules/CustomizableUI.jsm"
);
-ChromeUtils.defineModuleGetter(
- this,
- "AboutNewTab",
- "resource:///modules/AboutNewTab.jsm"
-);
-
ChromeUtils.defineModuleGetter(
this,
"E10SUtils",
@@ -123,19 +117,6 @@ let JSWINDOWACTORS = {
matches: ["about:newinstall"],
},
- AboutNewTab: {
- child: {
- moduleURI: "resource:///actors/AboutNewTabChild.jsm",
- events: {
- DOMContentLoaded: {},
- },
- },
- // The wildcard on about:newtab is for the ?endpoint query parameter
- // that is used for snippets debugging.
- matches: ["about:home", "about:welcome", "about:newtab*"],
- remoteTypes: ["privilegedabout"],
- },
-
AboutPlugins: {
parent: {
moduleURI: "resource:///actors/AboutPluginsParent.jsm",
@@ -1730,8 +1711,6 @@ BrowserGlue.prototype = {
// the first browser window has finished initializing
_onFirstWindowLoaded: function BG__onFirstWindowLoaded(aWindow) {
- AboutNewTab.init();
-
TabCrashHandler.init();
ProcessHangMonitor.init();
@@ -5199,12 +5178,8 @@ var AboutHomeStartupCache = {
return { pageInputStream: null, scriptInputStream: null };
}
- let state = AboutNewTab.activityStream.store.getState();
- return new Promise(resolve => {
- this._cacheDeferred = resolve;
- this.log.trace("Parent received cache streams.");
- this._procManager.sendAsyncMessage(this.CACHE_REQUEST_MESSAGE, { state });
- });
+ this.log.error("Activity Stream is disabled in Tor Browser.");
+ return { pageInputStream: null, scriptInputStream: null };
},
/**
diff --git a/browser/components/newtab/AboutNewTabService.jsm b/browser/components/newtab/AboutNewTabService.jsm
index 506b521f528c..3962ebf94ab5 100644
--- a/browser/components/newtab/AboutNewTabService.jsm
+++ b/browser/components/newtab/AboutNewTabService.jsm
@@ -286,20 +286,7 @@ class BaseAboutNewTabService {
* the newtab page has no effect on the result of this function.
*/
get defaultURL() {
- // Generate the desired activity stream resource depending on state, e.g.,
- // "resource://activity-stream/prerendered/activity-stream.html"
- // "resource://activity-stream/prerendered/activity-stream-debug.html"
- // "resource://activity-stream/prerendered/activity-stream-noscripts.html"
- return [
- "resource://activity-stream/prerendered/",
- "activity-stream",
- // Debug version loads dev scripts but noscripts separately loads scripts
- this.activityStreamDebug && !this.privilegedAboutProcessEnabled
- ? "-debug"
- : "",
- this.privilegedAboutProcessEnabled ? "-noscripts" : "",
- ".html",
- ].join("");
+ return "about:tor";
}
/*
diff --git a/browser/components/preferences/home.inc.xhtml b/browser/components/preferences/home.inc.xhtml
index 2e900ccd296c..2a7412944d73 100644
--- a/browser/components/preferences/home.inc.xhtml
+++ b/browser/components/preferences/home.inc.xhtml
@@ -37,7 +37,7 @@
class="check-home-page-controlled"
data-preference-related="browser.startup.homepage">
<menupopup>
- <menuitem value="0" data-l10n-id="home-mode-choice-default" />
+ <menuitem value="0" label="&aboutTor.title;" />
<menuitem value="2" data-l10n-id="home-mode-choice-custom" />
<menuitem value="1" data-l10n-id="home-mode-choice-blank" />
</menupopup>
@@ -97,7 +97,7 @@
flex="1"
preference="browser.newtabpage.enabled">
<menupopup>
- <menuitem value="0" data-l10n-id="home-mode-choice-default" />
+ <menuitem value="0" label="&aboutTor.title;" />
<menuitem value="1" data-l10n-id="home-mode-choice-blank" />
</menupopup>
</menulist>
diff --git a/browser/components/preferences/preferences.xhtml b/browser/components/preferences/preferences.xhtml
index 3d89ddf00808..c176457c68fd 100644
--- a/browser/components/preferences/preferences.xhtml
+++ b/browser/components/preferences/preferences.xhtml
@@ -14,7 +14,10 @@
<?xml-stylesheet href="chrome://browser/skin/preferences/privacy.css"?>
<?xml-stylesheet href="chrome://browser/content/securitylevel/securityLevelPreferences.css"?>
-<!DOCTYPE html>
+<!DOCTYPE html [
+<!ENTITY % aboutTorDTD SYSTEM "chrome://torbutton/locale/aboutTor.dtd">
+ %aboutTorDTD;
+]>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:html="http://www.w3.org/1999/xhtml"
diff --git a/browser/modules/HomePage.jsm b/browser/modules/HomePage.jsm
index c903787fde48..bf67b1c5d173 100644
--- a/browser/modules/HomePage.jsm
+++ b/browser/modules/HomePage.jsm
@@ -20,7 +20,7 @@ XPCOMUtils.defineLazyModuleGetters(this, {
});
const kPrefName = "browser.startup.homepage";
-const kDefaultHomePage = "about:home";
+const kDefaultHomePage = "about:tor";
const kExtensionControllerPref =
"browser.startup.homepage_override.extensionControlled";
const kHomePageIgnoreListId = "homepage-urls";
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 31563: force reloading search extensions if extensions.enabledScopes has changed
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit ac673b840fab076c41dfb8531f483cf6c4acd99c
Author: Alex Catarineu <acat(a)torproject.org>
Date: Sat Aug 31 16:23:20 2019 +0200
Bug 31563: force reloading search extensions if extensions.enabledScopes has changed
---
toolkit/components/search/SearchService.jsm | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/toolkit/components/search/SearchService.jsm b/toolkit/components/search/SearchService.jsm
index 46b992bec8ec..608f3c475458 100644
--- a/toolkit/components/search/SearchService.jsm
+++ b/toolkit/components/search/SearchService.jsm
@@ -975,6 +975,7 @@ SearchService.prototype = {
let locale = Services.locale.requestedLocale;
let buildID = Services.appinfo.platformBuildID;
let appVersion = Services.appinfo.version;
+ let enabledScopes = Services.prefs.getIntPref("extensions.enabledScopes", -1);
// Allows us to force a cache refresh should the cache format change.
cache.version = SearchUtils.CACHE_VERSION;
@@ -988,6 +989,10 @@ SearchService.prototype = {
cache.appVersion = appVersion;
cache.locale = locale;
+ // Bug 31563: we want to force reloading engines if extensions.enabledScopes
+ // pref changes
+ cache.enabledScopes = enabledScopes;
+
if (gModernConfig) {
cache.builtInEngineList = this._searchOrder;
// For built-in engines we don't want to store all their data in the cache
@@ -1049,7 +1054,8 @@ SearchService.prototype = {
!cache.engines ||
cache.version != SearchUtils.CACHE_VERSION ||
cache.locale != Services.locale.requestedLocale ||
- cache.buildID != buildID;
+ cache.buildID != buildID ||
+ cache.enabledScopes != Services.prefs.getIntPref("extensions.enabledScopes", -1);
let enginesCorrupted = false;
if (!rebuildCache) {
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 31607: App menu items stop working on macOS
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 30eb4ced25347e6cecb72b881ebe557a39e02bb3
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Thu Oct 3 10:53:43 2019 -0400
Bug 31607: App menu items stop working on macOS
Avoid re-creating the hidden window, since this causes the nsMenuBarX
object that is associated with the app menu to be freed (which in
turn causes all of the app menu items to stop working).
More detail: There should only be one hidden window.
XREMain::XRE_mainRun() contains an explicit call to create the
hidden window and that is the normal path by which it is created.
However, when Tor Launcher's wizard/progress window is opened during
startup, a hidden window is created earlier as a side effect of
calls to nsAppShellService::GetHiddenWindow(). Then, when
XREMain::XRE_mainRun() creates its hidden window, the original one
is freed which also causes the app menu's nsMenuBarX object which
is associated with that window to be destroyed. When that happens,
the menuGroupOwner property within each Cocoa menu items's MenuItemInfo
object is cleared. This breaks the link that is necessary for
NativeMenuItemTarget's menuItemHit method to dispatch a menu item
event.
---
xpfe/appshell/nsAppShellService.cpp | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/xpfe/appshell/nsAppShellService.cpp b/xpfe/appshell/nsAppShellService.cpp
index 719684ceb072..1600a3fea789 100644
--- a/xpfe/appshell/nsAppShellService.cpp
+++ b/xpfe/appshell/nsAppShellService.cpp
@@ -93,6 +93,10 @@ void nsAppShellService::EnsureHiddenWindow() {
NS_IMETHODIMP
nsAppShellService::CreateHiddenWindow() {
+ if (mHiddenWindow) {
+ return NS_OK;
+ }
+
if (!XRE_IsParentProcess()) {
return NS_ERROR_NOT_IMPLEMENTED;
}
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 13543: Spoof smooth and powerEfficient for Media Capabilities
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 13c80ca72f18d71be46e54b28d0fe8bd78aa3236
Author: Alex Catarineu <acat(a)torproject.org>
Date: Thu Oct 10 15:08:12 2019 +0200
Bug 13543: Spoof smooth and powerEfficient for Media Capabilities
---
dom/media/mediacapabilities/MediaCapabilities.cpp | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/dom/media/mediacapabilities/MediaCapabilities.cpp b/dom/media/mediacapabilities/MediaCapabilities.cpp
index fb1b1a2cb32c..3bc6b97eac63 100644
--- a/dom/media/mediacapabilities/MediaCapabilities.cpp
+++ b/dom/media/mediacapabilities/MediaCapabilities.cpp
@@ -290,6 +290,11 @@ already_AddRefed<Promise> MediaCapabilities::DecodingInfo(
if (aValue.IsReject()) {
p = CapabilitiesPromise::CreateAndReject(
std::move(aValue.RejectValue()), __func__);
+ } else if (nsContentUtils::
+ ShouldResistFingerprinting()) {
+ p = CapabilitiesPromise::CreateAndResolve(
+ MediaCapabilitiesInfo(true, true, false),
+ __func__);
} else {
MOZ_ASSERT(config->IsVideo());
if (StaticPrefs::media_mediacapabilities_from_database()) {
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 27511: Add new identity button to toolbar
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 4d961f3acaa4ecb1cd48cb20ac2a5997ca6d8249
Author: Alex Catarineu <acat(a)torproject.org>
Date: Fri Oct 4 19:08:33 2019 +0200
Bug 27511: Add new identity button to toolbar
Also added 'New circuit for this site' button to CustomizableUI, but
not visible by default.
---
browser/base/content/browser.xhtml | 10 ++++++++++
.../components/customizableui/CustomizableUI.jsm | 21 +++++++++++++++++++++
browser/themes/shared/icons/new_circuit.svg | 8 ++++++++
browser/themes/shared/icons/new_identity.svg | 9 +++++++++
browser/themes/shared/jar.inc.mn | 3 +++
browser/themes/shared/menupanel.inc.css | 8 ++++++++
browser/themes/shared/toolbarbutton-icons.inc.css | 8 ++++++++
7 files changed, 67 insertions(+)
diff --git a/browser/base/content/browser.xhtml b/browser/base/content/browser.xhtml
index 72c415b8f843..ddf5d766126b 100644
--- a/browser/base/content/browser.xhtml
+++ b/browser/base/content/browser.xhtml
@@ -1295,6 +1295,16 @@
ondragenter="newWindowButtonObserver.onDragOver(event)"
ondragexit="newWindowButtonObserver.onDragExit(event)"/>
+ <toolbarbutton id="new-identity-button" class="toolbarbutton-1 chromeclass-toolbar-additional"
+ label="&torbutton.context_menu.new_identity;"
+ oncommand="torbutton_new_identity();"
+ tooltiptext="&torbutton.context_menu.new_identity;"/>
+
+ <toolbarbutton id="new-circuit-button" class="toolbarbutton-1 chromeclass-toolbar-additional"
+ label="&torbutton.context_menu.new_circuit;"
+ oncommand="torbutton_new_circuit();"
+ tooltiptext="&torbutton.context_menu.new_circuit;"/>
+
<toolbarbutton id="fullscreen-button" class="toolbarbutton-1 chromeclass-toolbar-additional"
observes="View:FullScreen"
type="checkbox"
diff --git a/browser/components/customizableui/CustomizableUI.jsm b/browser/components/customizableui/CustomizableUI.jsm
index e2f006c73464..1c0064249158 100644
--- a/browser/components/customizableui/CustomizableUI.jsm
+++ b/browser/components/customizableui/CustomizableUI.jsm
@@ -68,6 +68,8 @@ const kSubviewEvents = ["ViewShowing", "ViewHiding"];
*/
var kVersion = 16;
+var kTorVersion = 1;
+
/**
* Buttons removed from built-ins by version they were removed. kVersion must be
* bumped any time a new id is added to this. Use the button id as key, and
@@ -566,6 +568,20 @@ var CustomizableUIInternal = {
navbarPlacements.push("fxa-toolbar-menu-button");
}
}
+
+ let currentTorVersion = gSavedState.currentTorVersion;
+ if (currentTorVersion < 1 && gSavedState.placements) {
+ let navbarPlacements = gSavedState.placements[CustomizableUI.AREA_NAVBAR];
+ if (navbarPlacements) {
+ let secLevelIndex = navbarPlacements.indexOf("security-level-button");
+ if (secLevelIndex === -1) {
+ let urlbarIndex = navbarPlacements.indexOf("urlbar-container");
+ secLevelIndex = urlbarIndex + 1;
+ navbarPlacements.splice(secLevelIndex, 0, "security-level-button");
+ }
+ navbarPlacements.splice(secLevelIndex + 1, 0, "new-identity-button");
+ }
+ }
},
/**
@@ -2369,6 +2385,10 @@ var CustomizableUIInternal = {
gSavedState.currentVersion = 0;
}
+ if (!("currentTorVersion" in gSavedState)) {
+ gSavedState.currentTorVersion = 0;
+ }
+
gSeenWidgets = new Set(gSavedState.seen || []);
gDirtyAreaCache = new Set(gSavedState.dirtyAreaCache || []);
gNewElementCount = gSavedState.newElementCount || 0;
@@ -2447,6 +2467,7 @@ var CustomizableUIInternal = {
seen: gSeenWidgets,
dirtyAreaCache: gDirtyAreaCache,
currentVersion: kVersion,
+ currentTorVersion: kTorVersion,
newElementCount: gNewElementCount,
};
diff --git a/browser/themes/shared/icons/new_circuit.svg b/browser/themes/shared/icons/new_circuit.svg
new file mode 100644
index 000000000000..e0a93cc83502
--- /dev/null
+++ b/browser/themes/shared/icons/new_circuit.svg
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <title>Icon / New Circuit(a)1.5x</title>
+ <g id="Icon-/-New-Circuit" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
+ <path d="M13.4411138,10.1446317 L9.5375349,10.1446317 C8.99786512,10.1446317 8.56164018,10.5818326 8.56164018,11.1205264 C8.56164018,11.6592203 8.99786512,12.0964212 9.5375349,12.0964212 L11.4571198,12.0964212 C10.7554515,13.0479185 9.73466563,13.692009 8.60067597,13.9359827 C8.41818366,13.9720908 8.23276366,14.0033194 8.04734366,14.0218614 C7.97219977,14.0277168 7.89803177,14.0306445 7.82288788,14.0335722 C6.07506044,14.137017 4.290149,13.4499871 3.38647049,11.857327 C2.52280367,10.3349312 2.77263271,8.15966189 3.93687511,6.87343267 C5.12453898,5.56183017 7.44814431,5.04363008 8.21226987,3.38558497 C9.01738301,4.92847451 9.60682342,5.02801577 10.853041,6.15029468 C11.2892659,6.54455615 11.9704404,7.55558307 12.1861132,8.10501179 C12.3051723,8.40949094 12.5013272,9.17947187 12.5013272,9.17947187 L14.2862386,9.17947187 C14.2091429,7.59754654 13.439162,5.96877827 12.2261248,4.93628166 C11.279507,4.13116853 10.5065984,3.84718317 9.77662911,2.8088312 C9.63219669,2.60194152 9.599
99216,2.4565332 9.56290816,2.21646311 C9.53851079,2.00762164 9.54143848,1.78511764 9.62048595,1.53919218 C9.65952174,1.41720534 9.59804037,1.28545955 9.47702943,1.23764071 L6.40296106,0.0167964277 C6.32391359,-0.0134563083 6.23413128,-0.00272146652 6.16679454,0.0480250584 L5.95502539,0.206120002 C5.85743592,0.280288 5.82815908,0.416913259 5.89159223,0.523285783 C6.70060895,1.92564648 6.36978064,2.82542141 5.8984235,3.20211676 C5.4914754,3.4900057 4.99084141,3.72226864 4.63366394,3.95453159 C3.82367132,4.47956294 3.03222071,5.02508808 2.40374451,5.76774396 C0.434388969,8.09427695 0.519291809,12.0046871 2.77165682,14.1077402 C3.65288975,14.9284676 4.70295247,15.4749686 5.81742423,15.7570022 C5.81742423,15.7570022 6.13556591,15.833122 6.21754107,15.8497122 C7.36616915,16.0829511 8.53529102,16.0146384 9.62243774,15.6672199 C9.67416016,15.6525815 9.77174963,15.620377 9.76784605,15.6154975 C10.7730176,15.2700308 11.7049971,14.7010841 12.4652191,13.90573 L12.4652191,15.0241053 C12.4652191,
15.5627992 12.901444,16 13.4411138,16 C13.9798077,16 14.4170085,15.5627992 14.4170085,15.0241053 L14.4170085,11.1205264 C14.4170085,10.5818326 13.9798077,10.1446317 13.4411138,10.1446317" id="Fill-3" fill="context-fill" fill-opacity="context-fill-opacity"></path>
+ <path d="M5.107,7.462 C4.405,8.078 4,8.946 4,9.839 C4,10.712 4.422,11.57 5.13,12.132 C5.724,12.607 6.627,12.898 7.642,12.949 L7.642,5.8 C7.39,6.029 7.103,6.227 6.791,6.387 C5.993,6.812 5.489,7.133 5.107,7.462" id="Fill-1" fill="context-fill" fill-opacity="context-fill-opacity"></path>
+ </g>
+</svg>
diff --git a/browser/themes/shared/icons/new_identity.svg b/browser/themes/shared/icons/new_identity.svg
new file mode 100644
index 000000000000..91d5b35f7e80
--- /dev/null
+++ b/browser/themes/shared/icons/new_identity.svg
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <title>New Identity Icon</title>
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
+ <g id="New-Identity-Icon" fill="#000000" fill-rule="nonzero">
+ <path d="M4.65687153,14.5532899 L5.79494313,12.0855326 C5.8689125,11.9251399 5.6620883,11.7793527 5.53742729,11.9040137 L3.77194352,13.6694975 L2.32342782,12.2228406 L4.089841,10.4564274 C4.21450201,10.3317664 4.06871482,10.1249422 3.90832206,10.1989116 L1.43773764,11.338287 L0.206601383,10.1087306 C0.0509544211,9.9532834 -0.0167994233,9.75447206 0.00351451705,9.53432844 C0.0238284574,9.31418483 0.154794797,9.13897939 0.330406365,9.0302193 L4.61213917,6.53066101 C4.98542292,6.31331572 5.42541251,6.16259067 5.8659261,6.07796117 C6.63682488,5.92985954 7.40999434,6.06817199 8.09666802,6.42610336 L12.618483,1.910278 C13.0562019,1.47313888 13.7399062,1.45652879 14.1403159,1.87828207 C14.5407256,2.30003536 14.523905,2.96081599 14.0861861,3.39795511 L9.56437119,7.91378047 C9.92258101,8.57753432 10.0391721,9.37155544 9.91292178,10.1416209 C9.85023328,10.5817332 9.67706706,10.9989392 9.45960494,11.3937636 L6.95651989,15.6478297 C6.84761416,15.82321 6.6720026,15.9319701 6.47398108
,15.9964916 C6.25354962,16.0167745 6.0544801,15.9491049 5.89883314,15.7936577 L4.65687153,14.5532899 L4.65687153,14.5532899 Z M6.35600863,9.57888316 C6.35684236,9.57982492 6.35770616,9.58074275 6.35860024,9.58163642 L7.56801202,10.7899206 C7.78820303,11.010009 8.15567242,10.9533982 8.29166823,10.678253 C8.42766403,10.4031079 8.55818512,10.1511975 8.61427424,9.83946755 C8.73630873,9.14856819 8.51477165,8.45005355 8.01189873,7.92920397 C8.01085853,7.92816425 8.00979562,7.92715687 8.00871022,7.92618158 C8.00773493,7.92509618 8.00672754,7.92403327 8.00568783,7.92299307 C7.48483824,7.42012014 6.7863236,7.19858307 6.09542425,7.32061756 C5.78369428,7.37670668 5.53178393,7.50722777 5.25663877,7.64322357 C4.98149362,7.77921937 4.92488284,8.14668876 5.14497116,8.36687978 L6.35325537,9.57629155 C6.35414904,9.57718564 6.35506687,9.57804944 6.35600863,9.57888316 L6.35600863,9.57888316 Z M3.56503003,4.86094581 C3.44279837,4.85716019 3.33693302,4.76594656 3.31450832,4.6450962 C3.29259157,4.5009814
3 3.24425431,4.36089837 3.1719467,4.23194774 C3.04272848,4.15978087 2.90235166,4.11153221 2.75793184,4.08964745 C2.63678145,4.06729735 2.5453314,3.9616241 2.54155161,3.83961366 C2.53777182,3.71760322 2.62276629,3.61489221 2.74265726,3.59658884 C2.88757581,3.57942626 3.02687427,3.53584537 3.15371096,3.46798665 C3.21938702,3.3436261 3.26061987,3.20700605 3.27529255,3.0651408 C3.29205048,2.94466859 3.39451537,2.85825378 3.5172925,2.86104768 C3.6386065,2.86399065 3.74452528,2.95324633 3.76872081,3.07292141 C3.79288781,3.21715288 3.84342323,3.35694342 3.91777207,3.4852254 C4.04615548,3.55876237 4.18583906,3.60883869 4.32991405,3.63297757 C4.45015386,3.6576218 4.53936117,3.76418021 4.54139495,3.88559216 C4.54342874,4.00700411 4.45770065,4.10814717 4.33816215,4.12536877 C4.1960481,4.14067978 4.05931708,4.18249381 3.9349938,4.24866259 C3.86697751,4.37522253 3.82328954,4.51422019 3.80607564,4.65882867 C3.78847982,4.77811508 3.68677836,4.86339193 3.56503003,4.86094581 Z M14.4103464,14.3126948
C14.2513672,14.307719 14.1137716,14.188804 14.0849193,14.0314492 C14.045996,13.7585014 13.9510862,13.4938971 13.8061961,13.2543814 C13.5663773,13.109665 13.301434,13.0148623 13.0281329,12.9759728 C12.8707684,12.946921 12.75198,12.8095493 12.7470672,12.6509372 C12.7421545,12.492325 12.8525523,12.3587997 13.0082799,12.3350024 C13.2816632,12.3044807 13.5433622,12.2185794 13.7775725,12.0824861 C13.9099238,11.8524988 13.992337,11.5955854 14.0197279,11.3275956 C14.0417134,11.1717293 14.1740126,11.0598594 14.3327736,11.0628895 C14.4905572,11.0667732 14.6282205,11.1831391 14.6593783,11.3389665 C14.703143,11.6110771 14.8017156,11.8740418 14.9490566,12.1117486 C15.1872615,12.2578242 15.450159,12.3559923 15.7221615,12.4004323 C15.8783433,12.4324665 15.9942186,12.5709889 15.9968634,12.7288231 C15.9995083,12.8866572 15.8881575,13.0181443 15.7328877,13.0405352 C15.4641157,13.0669716 15.2064728,13.14931 14.9763475,13.2823129 C14.8406047,13.5164173 14.7548186,13.7777086 14.724105,14.0506041 C14.70
09285,14.2056508 14.5685348,14.3162427 14.4103464,14.3126948 Z M8.37194288,2.75251202 C8.23729358,2.7482977 8.12075529,2.6475812 8.09631849,2.5143077 C8.06335201,2.28313133 7.98296703,2.05902158 7.86025062,1.85616098 C7.65713325,1.73359169 7.43273641,1.65329741 7.2012608,1.62035947 C7.06797908,1.59575373 6.9673698,1.47940513 6.96320889,1.34506671 C6.95904797,1.21072829 7.05255074,1.09763741 7.18444606,1.07748204 C7.41599123,1.0516313 7.6376403,0.978876138 7.83600755,0.863610339 C7.94810399,0.668819911 8.01790485,0.45122403 8.04110388,0.224246882 C8.05972477,0.0922341146 8.17177714,-0.00251545243 8.30624168,5.089704e-05 C8.43987839,0.00334026838 8.55647391,0.101897787 8.58286336,0.233877601 C8.61993042,0.464344927 8.70341768,0.687066016 8.82820981,0.888394549 C9.02996027,1.012115 9.25262444,1.09525963 9.4830002,1.13289867 C9.6152802,1.16003037 9.71342219,1.27735361 9.71566226,1.41103311 C9.71790232,1.5447126 9.62359245,1.65607713 9.49208487,1.67504141 C9.26444525,1.69743199 9.0462315
3,1.76716948 8.85132417,1.87981789 C8.73635526,2.07809534 8.66369764,2.2993991 8.63768445,2.53053117 C8.61805481,2.66184983 8.50592239,2.75551697 8.37194288,2.75251202 Z" id="Shape" fill="context-fill" fill-opacity="context-fill-opacity"></path>
+ </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/browser/themes/shared/jar.inc.mn b/browser/themes/shared/jar.inc.mn
index 71fea38eb829..e4a3c8d2d41c 100644
--- a/browser/themes/shared/jar.inc.mn
+++ b/browser/themes/shared/jar.inc.mn
@@ -302,3 +302,6 @@
skin/classic/browser/install-ssb.svg (../shared/install-ssb.svg)
skin/classic/browser/critical.svg (../shared/icons/critical.svg)
skin/classic/browser/webRTC-indicator.css (../shared/webRTC-indicator.css)
+
+ skin/classic/browser/new_circuit.svg (../shared/icons/new_circuit.svg)
+ skin/classic/browser/new_identity.svg (../shared/icons/new_identity.svg)
diff --git a/browser/themes/shared/menupanel.inc.css b/browser/themes/shared/menupanel.inc.css
index c919f32a1454..eae453ec5004 100644
--- a/browser/themes/shared/menupanel.inc.css
+++ b/browser/themes/shared/menupanel.inc.css
@@ -183,3 +183,11 @@ toolbarpaletteitem[place="palette"] > #bookmarks-menu-button,
-moz-context-properties: fill, fill-opacity;
fill-opacity: 0;
}
+
+#appMenuNewIdentity {
+ list-style-image: url("chrome://browser/skin/new_identity.svg");
+}
+
+#appMenuNewCircuit {
+ list-style-image: url("chrome://browser/skin/new_circuit.svg");
+}
diff --git a/browser/themes/shared/toolbarbutton-icons.inc.css b/browser/themes/shared/toolbarbutton-icons.inc.css
index 9514eb1d5338..cf02f871c9a4 100644
--- a/browser/themes/shared/toolbarbutton-icons.inc.css
+++ b/browser/themes/shared/toolbarbutton-icons.inc.css
@@ -233,6 +233,14 @@ toolbar[brighttext] {
list-style-image: url("chrome://browser/skin/new-tab.svg");
}
+#new-identity-button {
+ list-style-image: url("chrome://browser/skin/new_identity.svg");
+}
+
+#new-circuit-button {
+ list-style-image: url("chrome://browser/skin/new_circuit.svg");
+}
+
#privatebrowsing-button {
list-style-image: url("chrome://browser/skin/privateBrowsing.svg");
}
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 23247: Communicating security expectations for .onion
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 5163125963defef116cbd61bcd5741136d35f740
Author: Richard Pospesel <richard(a)torproject.org>
Date: Fri Jun 8 13:38:40 2018 -0700
Bug 23247: Communicating security expectations for .onion
Encrypting pages hosted on Onion Services with SSL/TLS is redundant
(in terms of hiding content) as all traffic within the Tor network is
already fully encrypted. Therefore, serving HTTP pages from an Onion
Service is more or less fine.
Prior to this patch, Tor Browser would mostly treat pages delivered
via Onion Services as well as pages delivered in the ordinary fashion
over the internet in the same way. This created some inconsistencies
in behaviour and misinformation presented to the user relating to the
security of pages delivered via Onion Services:
- HTTP Onion Service pages did not have any 'lock' icon indicating
the site was secure
- HTTP Onion Service pages would be marked as unencrypted in the Page
Info screen
- Mixed-mode content restrictions did not apply to HTTP Onion Service
pages embedding Non-Onion HTTP content
This patch fixes the above issues, and also adds several new 'Onion'
icons to the mix to indicate all of the various permutations of Onion
Services hosted HTTP or HTTPS pages with HTTP or HTTPS content.
Strings for Onion Service Page Info page are pulled from Torbutton's
localization strings.
---
browser/base/content/browser-siteIdentity.js | 39 ++++++++-----
browser/base/content/pageinfo/security.js | 64 ++++++++++++++++++----
.../shared/identity-block/identity-block.inc.css | 19 +++++++
.../themes/shared/identity-block/onion-slash.svg | 5 ++
.../themes/shared/identity-block/onion-warning.svg | 6 ++
browser/themes/shared/identity-block/onion.svg | 3 +
browser/themes/shared/jar.inc.mn | 3 +
dom/base/nsContentUtils.cpp | 19 +++++++
dom/base/nsContentUtils.h | 5 ++
dom/base/nsGlobalWindowOuter.cpp | 3 +-
dom/ipc/WindowGlobalActor.cpp | 4 +-
dom/ipc/WindowGlobalChild.cpp | 6 +-
dom/presentation/PresentationRequest.cpp | 3 +-
dom/security/nsMixedContentBlocker.cpp | 16 +++++-
security/manager/ssl/nsSecureBrowserUI.cpp | 12 ++++
15 files changed, 175 insertions(+), 32 deletions(-)
diff --git a/browser/base/content/browser-siteIdentity.js b/browser/base/content/browser-siteIdentity.js
index 80c3f2a86538..9da8fab971c6 100644
--- a/browser/base/content/browser-siteIdentity.js
+++ b/browser/base/content/browser-siteIdentity.js
@@ -131,6 +131,10 @@ var gIdentityHandler = {
);
},
+ get _uriIsOnionHost() {
+ return this._uriHasHost ? this._uri.host.toLowerCase().endsWith(".onion") : false;
+ },
+
// smart getters
get _identityPopup() {
delete this._identityPopup;
@@ -624,9 +628,9 @@ var gIdentityHandler = {
get pointerlockFsWarningClassName() {
// Note that the fullscreen warning does not handle _isSecureInternalUI.
if (this._uriHasHost && this._isSecureConnection) {
- return "verifiedDomain";
+ return this._uriIsOnionHost ? "onionVerifiedDomain" : "verifiedDomain";
}
- return "unknownIdentity";
+ return this._uriIsOnionHost ? "onionUnknownIdentity" : "unknownIdentity";
},
/**
@@ -634,6 +638,10 @@ var gIdentityHandler = {
* built-in (returns false) or imported (returns true).
*/
_hasCustomRoot() {
+ if (!this._secInfo) {
+ return false;
+ }
+
let issuerCert = null;
issuerCert = this._secInfo.succeededCertChain[
this._secInfo.succeededCertChain.length - 1
@@ -676,11 +684,13 @@ var gIdentityHandler = {
"identity.extension.label",
[extensionName]
);
- } else if (this._uriHasHost && this._isSecureConnection) {
+ } else if (this._uriHasHost && this._isSecureConnection && this._secInfo) {
// This is a secure connection.
- this._identityBox.className = "verifiedDomain";
+ // _isSecureConnection implicitly includes onion services, which may not have an SSL certificate
+ const uriIsOnionHost = this._uriIsOnionHost;
+ this._identityBox.className = uriIsOnionHost ? "onionVerifiedDomain" : "verifiedDomain";
if (this._isMixedActiveContentBlocked) {
- this._identityBox.classList.add("mixedActiveBlocked");
+ this._identityBox.classList.add(uriIsOnionHost ? "onionMixedActiveBlocked" : "mixedActiveBlocked");
}
if (!this._isCertUserOverridden) {
// It's a normal cert, verifier is the CA Org.
@@ -691,17 +701,17 @@ var gIdentityHandler = {
}
} else if (this._isBrokenConnection) {
// This is a secure connection, but something is wrong.
- this._identityBox.className = "unknownIdentity";
+ const uriIsOnionHost = this._uriIsOnionHost;
+ this._identityBox.className = uriIsOnionHost ? "onionUnknownIdentity" : "unknownIdentity";
if (this._isMixedActiveContentLoaded) {
- this._identityBox.classList.add("mixedActiveContent");
+ this._identityBox.classList.add(uriIsOnionHost ? "onionMixedActiveContent" : "mixedActiveContent");
} else if (this._isMixedActiveContentBlocked) {
- this._identityBox.classList.add(
- "mixedDisplayContentLoadedActiveBlocked"
- );
+ this._identityBox.classList.add(uriIsOnionHost ? "onionMixedDisplayContentLoadedActiveBlocked" : "mixedDisplayContentLoadedActiveBlocked");
} else if (this._isMixedPassiveContentLoaded) {
- this._identityBox.classList.add("mixedDisplayContent");
+ this._identityBox.classList.add(uriIsOnionHost ? "onionMixedDisplayContent" : "mixedDisplayContent");
} else {
+ // TODO: ignore weak https cipher for onionsites?
this._identityBox.classList.add("weakCipher");
}
} else if (this._isAboutCertErrorPage) {
@@ -713,8 +723,8 @@ var gIdentityHandler = {
(gBrowser.selectedBrowser.documentURI.scheme == "about" ||
gBrowser.selectedBrowser.documentURI.scheme == "chrome"))
) {
- // This is a local resource (and shouldn't be marked insecure).
- this._identityBox.className = "unknownIdentity";
+ // This is a local resource or an onion site (and shouldn't be marked insecure).
+ this._identityBox.className = this._uriIsOnionHost ? "onionUnknownIdentity" : "unknownIdentity";
} else {
// This is an insecure connection.
let warnOnInsecure =
@@ -738,7 +748,8 @@ var gIdentityHandler = {
}
if (this._isCertUserOverridden) {
- this._identityBox.classList.add("certUserOverridden");
+ const uriIsOnionHost = this._uriIsOnionHost;
+ this._identityBox.classList.add(uriIsOnionHost ? "onionCertUserOverridden" : "certUserOverridden");
// Cert is trusted because of a security exception, verifier is a special string.
tooltip = gNavigatorBundle.getString(
"identity.identified.verified_by_you"
diff --git a/browser/base/content/pageinfo/security.js b/browser/base/content/pageinfo/security.js
index 966d3fdb3901..4331ebc4b219 100644
--- a/browser/base/content/pageinfo/security.js
+++ b/browser/base/content/pageinfo/security.js
@@ -22,6 +22,13 @@ ChromeUtils.defineModuleGetter(
"PluralForm",
"resource://gre/modules/PluralForm.jsm"
);
+XPCOMUtils.defineLazyGetter(
+ this,
+ "gTorButtonBundle",
+ function() {
+ return Services.strings.createBundle("chrome://torbutton/locale/torbutton.properties");
+ }
+);
var security = {
async init(uri, windowInfo) {
@@ -70,6 +77,11 @@ var security = {
(Ci.nsIWebProgressListener.STATE_LOADED_MIXED_ACTIVE_CONTENT |
Ci.nsIWebProgressListener.STATE_LOADED_MIXED_DISPLAY_CONTENT);
var isEV = ui.state & Ci.nsIWebProgressListener.STATE_IDENTITY_EV_TOPLEVEL;
+ var isOnion = false;
+ const hostName = this.windowInfo.hostName;
+ if (hostName && hostName.endsWith(".onion")) {
+ isOnion = true;
+ }
let secInfo = await window.opener.gBrowser.selectedBrowser.browsingContext.currentWindowGlobal.getSecurityInfo();
if (secInfo) {
@@ -95,6 +107,7 @@ var security = {
isBroken,
isMixed,
isEV,
+ isOnion,
cert,
certChain: certChainArray,
certificateTransparency: undefined,
@@ -154,6 +167,7 @@ var security = {
isBroken,
isMixed,
isEV,
+ isOnion,
cert: null,
certificateTransparency: null,
};
@@ -350,22 +364,50 @@ async function securityOnLoad(uri, windowInfo) {
}
msg2 = pkiBundle.getString("pageInfo_Privacy_None2");
} else if (info.encryptionStrength > 0) {
- hdr = pkiBundle.getFormattedString(
- "pageInfo_EncryptionWithBitsAndProtocol",
- [info.encryptionAlgorithm, info.encryptionStrength + "", info.version]
- );
+ if (!info.isOnion) {
+ hdr = pkiBundle.getFormattedString(
+ "pageInfo_EncryptionWithBitsAndProtocol",
+ [info.encryptionAlgorithm, info.encryptionStrength + "", info.version]
+ );
+ } else {
+ try {
+ hdr = gTorButtonBundle.formatStringFromName(
+ "pageInfo_OnionEncryptionWithBitsAndProtocol",
+ [info.encryptionAlgorithm, info.encryptionStrength + "", info.version]
+ );
+ } catch(err) {
+ hdr = "Connection Encrypted (Onion Service, "
+ + info.encryptionAlgorithm
+ + ", "
+ + info.encryptionStrength
+ + " bit keys, "
+ + info.version
+ + ")";
+ }
+ }
msg1 = pkiBundle.getString("pageInfo_Privacy_Encrypted1");
msg2 = pkiBundle.getString("pageInfo_Privacy_Encrypted2");
} else {
- hdr = pkiBundle.getString("pageInfo_NoEncryption");
- if (windowInfo.hostName != null) {
- msg1 = pkiBundle.getFormattedString("pageInfo_Privacy_None1", [
- windowInfo.hostName,
- ]);
+ if (!info.isOnion) {
+ hdr = pkiBundle.getString("pageInfo_NoEncryption");
+ if (windowInfo.hostName != null) {
+ msg1 = pkiBundle.getFormattedString("pageInfo_Privacy_None1", [
+ windowInfo.hostName,
+ ]);
+ } else {
+ msg1 = pkiBundle.getString("pageInfo_Privacy_None4");
+ }
+ msg2 = pkiBundle.getString("pageInfo_Privacy_None2");
} else {
- msg1 = pkiBundle.getString("pageInfo_Privacy_None4");
+ try {
+ hdr = gTorButtonBundle.GetStringFromName("pageInfo_OnionEncryption");
+ } catch (err) {
+ hdr = "Connection Encrypted (Onion Service)";
+ }
+
+ msg1 = pkiBundle.getString("pageInfo_Privacy_Encrypted1");
+ msg2 = pkiBundle.getString("pageInfo_Privacy_Encrypted2");
}
- msg2 = pkiBundle.getString("pageInfo_Privacy_None2");
}
setText("security-technical-shortform", hdr);
setText("security-technical-longform1", msg1);
diff --git a/browser/themes/shared/identity-block/identity-block.inc.css b/browser/themes/shared/identity-block/identity-block.inc.css
index 27a990e08bc8..011fb9f3081c 100644
--- a/browser/themes/shared/identity-block/identity-block.inc.css
+++ b/browser/themes/shared/identity-block/identity-block.inc.css
@@ -172,6 +172,25 @@ toolbar[brighttext] #identity-box[pageproxystate="valid"].chromeUI > #identity-i
list-style-image: url(chrome://browser/skin/connection-mixed-active-loaded.svg);
}
+#identity-box[pageproxystate="valid"].onionUnknownIdentity > #identity-icon,
+#identity-box[pageproxystate="valid"].onionVerifiedDomain > #identity-icon,
+#identity-box[pageproxystate="valid"].onionMixedActiveBlocked > #identity-icon {
+ list-style-image: url(chrome://browser/skin/onion.svg);
+ visibility: visible;
+}
+
+#identity-box[pageproxystate="valid"].onionMixedDisplayContent > #identity-icon,
+#identity-box[pageproxystate="valid"].onionMixedDisplayContentLoadedActiveBlocked > #identity-icon,
+#identity-box[pageproxystate="valid"].onionCertUserOverridden > #identity-icon {
+ list-style-image: url(chrome://browser/skin/onion-warning.svg);
+ visibility: visible;
+}
+
+#identity-box[pageproxystate="valid"].onionMixedActiveContent > #identity-icon {
+ list-style-image: url(chrome://browser/skin/onion-slash.svg);
+ visibility: visible;
+}
+
#permissions-granted-icon {
list-style-image: url(chrome://browser/skin/permissions.svg);
}
diff --git a/browser/themes/shared/identity-block/onion-slash.svg b/browser/themes/shared/identity-block/onion-slash.svg
new file mode 100644
index 000000000000..e7c98b769482
--- /dev/null
+++ b/browser/themes/shared/identity-block/onion-slash.svg
@@ -0,0 +1,5 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
+ <path d="M3.409559 13.112147C3.409559 13.112147 8.200807 8.103115 8.200807 8.103115C8.200807 8.103115 8.200807 6.516403 8.200807 6.516403C8.620819 6.516403 9.009719 6.703075 9.274171 6.998639C9.274171 6.998639 10.160863 6.080835 10.160863 6.080835C9.663071 5.567487 8.978607 5.256367 8.200807 5.256367C8.200807 5.256367 8.200807 4.400787 8.200807 4.400787C9.196391 4.400787 10.098639 4.805243 10.736435 5.458595C10.736435 5.458595 11.623127 4.540791 11.623127 4.540791C10.751991 3.669655 9.538623 3.125195 8.200807 3.125195C8.200807 3.125195 8.200807 2.269615 8.200807 2.269615C9.756407 2.269615 11.172003 2.907411 12.214255 3.918551C12.214255 3.918551 13.100947 3.000747 13.100947 3.000747C11.825355 1.756267 10.098639 0.994023 8.185251 0.994023C4.311807 0.994023 1.185051 4.120779 1.185051 7.994223C1.185051 10.016503 2.040631 11.836555 3.409559 13.112147C3.409559 13.112147 3.409559 13.112147 3.409559 13.112147" fill-opacity="context-fill-opacity" fill="context-fill" />
+ <path d="M14.205423 4.416343C14.205423 4.416343 13.287619 5.380815 13.287619 5.380815C13.692075 6.158615 13.909859 7.045307 13.909859 7.994223C13.909859 11.152091 11.358675 13.718831 8.200807 13.718831C8.200807 13.718831 8.200807 12.863251 8.200807 12.863251C10.891995 12.863251 13.069835 10.669855 13.069835 7.978667C13.069835 7.278647 12.929831 6.625295 12.665379 6.018611C12.665379 6.018611 11.685351 7.045307 11.685351 7.045307C11.763131 7.340871 11.809799 7.651991 11.809799 7.963111C11.809799 9.954279 10.207531 11.556547 8.216363 11.572103C8.216363 11.572103 8.216363 10.716523 8.216363 10.716523C9.725295 10.700967 10.954219 9.472043 10.954219 7.963111C10.954219 7.916443 10.954219 7.854219 10.954219 7.807551C10.954219 7.807551 4.887379 14.169955 4.887379 14.169955C5.867407 14.698859 6.987439 14.994423 8.185251 14.994423C12.058695 14.994423 15.185451 11.867667 15.185451 7.994223C15.185451 6.687519 14.827663 5.474151 14.205423 4.416343C14.205423 4.416343 14.205423 4.416343 14.205423
4.416343" fill-opacity="context-fill-opacity" fill="context-fill" />
+ <path d="M1.791735 15.461103C1.402835 15.461103 1.045047 15.212207 0.889487 14.838863C0.733927 14.465519 0.827267 14.014395 1.107271 13.734387C1.107271 13.734387 13.458735 0.822907 13.458735 0.822907C13.847635 0.434007 14.454319 0.449563 14.827663 0.838467C15.201007 1.227367 15.216563 1.865163 14.843223 2.269619C14.843223 2.269619 2.491759 15.181099 2.491759 15.181099C2.289531 15.352215 2.040635 15.461107 1.791739 15.461107C1.791739 15.461107 1.791735 15.461103 1.791735 15.461103" fill="#ff0039" />
+</svg>
diff --git a/browser/themes/shared/identity-block/onion-warning.svg b/browser/themes/shared/identity-block/onion-warning.svg
new file mode 100644
index 000000000000..d42a7dab7246
--- /dev/null
+++ b/browser/themes/shared/identity-block/onion-warning.svg
@@ -0,0 +1,6 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
+ <path d="M15.8630401732 14.127C15.8630401732 14.127 12.6649598146 7.716 12.6649598146 7.716C12.4469357756 7.279935 12.0003277145 7.0043454 11.5116853046 7.0043454C11.0230428947 7.0043454 10.5764348336 7.279935 10.3584107946 7.716C10.3584107946 7.716 7.1573218938 14.127 7.1573218938 14.127C6.95646770542 14.527294 6.97733695982 15.002669 7.21250176686 15.38393C7.4476665739 15.765191 7.86372750208 15.998191 8.3126020986 16.0C8.3126020986 16.0 14.7077599684 16.0 14.7077599684 16.0C15.1566344646 15.9982 15.572695794 15.765191 15.8078605007 15.38393C16.0430252075 15.002669 16.0638944619 14.527294 15.8630371647 14.127C15.8630371647 14.127 15.8630401732 14.127 15.8630401732 14.127" fill="#ffbf00" />
+ <path d="M11.5106824572 8.0C11.6210488221 7.99691 11.7223975832 8.060469 11.7674113916 8.161C11.7674113916 8.161 14.9644889028 14.573 14.9644889028 14.573C15.0126456349 14.66534 15.0076715118 14.776305 14.9514518866 14.864C14.9011992034 14.95041 14.8079143382 15.002854 14.7077599684 15.001048C14.7077599684 15.001048 8.3126020986 15.001048 8.3126020986 15.001048C8.2124480296 15.002854 8.1191607576 14.950409 8.0689101804 14.864C8.0124814615 14.77637 8.0075053327 14.665298 8.0558731642 14.573C8.0558731642 14.573 11.2529506754 8.161 11.2529506754 8.161C11.2981038796 8.0601247 11.3999560701 7.9964997 11.5106824572 8.0M11.5106824572 6.9999751C11.0194557096 6.9969427 10.5701148893 7.2754275 10.3554022524 7.716C10.3554022524 7.716 7.1573218938 14.127 7.1573218938 14.127C6.95646770542 14.527294 6.97733695982 15.002669 7.21250176686 15.38393C7.4476665739 15.765191 7.86372750208 15.998191 8.3126020986 16.0C8.3126020986 16.0 14.7077599684 16.0 14.7077599684 16.0C15.1566344646 15.9982 15.57269
5794 15.765191 15.8078605007 15.38393C16.0430252075 15.002669 16.0638944619 14.527294 15.8630371647 14.127C15.8630371647 14.127 12.6649598146 7.716 12.6649598146 7.716C12.4504036219 7.2757546 12.0015481798 6.9973287 11.5106824572 6.9999751C11.5106824572 6.9999751 11.5106824572 6.9999751 11.5106824572 6.9999751" opacity="0.35" fill="#d76e00" />
+ <path d="M11.5327451 12.0C11.8096733867 12.0 12.0341688 11.776142 12.0341688 11.5C12.0341688 11.5 12.0341688 9.5 12.0341688 9.5C12.0341688 9.2238576 11.8096733867 9.0 11.5327451 9.0C11.2558168133 9.0 11.0313214 9.2238576 11.0313214 9.5C11.0313214 9.5 11.0313214 11.5 11.0313214 11.5C11.0313214 11.776142 11.2558168133 12.0 11.5327451 12.0C11.5327451 12.0 11.5327451 12.0 11.5327451 12.0M11.5327451 12.809C11.1500294496 12.809 10.8397775466 13.118371 10.8397775466 13.5C10.8397775466 13.881629 11.1500294496 14.191 11.5327451 14.191C11.9154607504 14.191 12.2257126534 13.881629 12.2257126534 13.5C12.2257126534 13.118371 11.9154607504 12.809 11.5327451 12.809C11.5327451 12.809 11.5327451 12.809 11.5327451 12.809" fill="#ffffff" />
+ <path d="M7.08030321348 6.552C7.90163523408 6.56 8.5645173655 7.225 8.5645173655 8.046C8.5645173655 8.866 7.90163523408 9.532 7.08030321348 9.54C7.08030321348 9.54 7.08030321348 6.552 7.08030321348 6.552M6.30610502068 13.756C6.30610502068 13.756 9.4991711423 7.353 9.4991711423 7.353C9.5453021227 7.259 9.6144985933 7.184 9.6716608951 7.098C9.2845617987 6.039 8.2756973143 5.277 7.08030321348 5.271C7.08030321348 5.271 7.08030321348 4.417 7.08030321348 4.417C8.5043465215 4.423 9.7238089599 5.251 10.3164917733 6.443C10.6795225321 6.21 11.1067355245 6.074 11.5519997701 6.074C11.5519997701 6.074 11.5620282441 6.074 11.5620282441 6.074C11.5620282441 6.074 11.5640339389 6.074 11.5640339389 6.074C11.5660396337 6.074 11.5690481759 6.075 11.5710538707 6.075C10.8108955415 4.35 9.0900094031 3.141 7.08030321348 3.135C7.08030321348 3.135 7.08030321348 2.281 7.08030321348 2.281C9.6716608951 2.288 11.8618796167 3.993 12.5889439817 6.34C13.0231769059 6.561 13.3922247491 6.9 13.6088397875 7.344C13.60
88397875 7.344 14.1162805719 8.361 14.1162805719 8.361C14.1202919615 8.256 14.1313232829 8.152 14.1313232829 8.046C14.1313232829 4.155 10.9683425833 1.0 7.06626334988 1.0C3.16318126908 1.0 0.00020056948 4.155 0.00020056948 8.046C0.00020056948 11.603 2.64571201068 14.536 6.08046435568 15.015C6.03633907008 14.595 6.10252699848 14.16 6.30610502068 13.756C6.30610502068 13.756 6.30610502068 13.756 6.30610502068 13.756" fill-opacity="context-fill-opacity" fill="context-fill" />
+</svg>
diff --git a/browser/themes/shared/identity-block/onion.svg b/browser/themes/shared/identity-block/onion.svg
new file mode 100644
index 000000000000..b123a9786acc
--- /dev/null
+++ b/browser/themes/shared/identity-block/onion.svg
@@ -0,0 +1,3 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
+ <path d="M8.01435945 13.726867125C8.01435945 13.726867125 8.01435945 12.87830525 8.01435945 12.87830525C10.70227825 12.87051775 12.87869375 10.689666 12.87869375 7.9998060125C12.87869375 5.310140275 10.70227825 3.1292621 8.01435945 3.121500325C8.01435945 3.121500325 8.01435945 2.272938975 8.01435945 2.272938975C11.170899375 2.280892725 13.727061375 4.8415202875 13.727061375 7.9998060125C13.727061375 11.158285375 11.170899375 13.719105 8.01435945 13.726867125C8.01435945 13.726867125 8.01435945 13.726867125 8.01435945 13.726867125M8.01435945 10.756805625C9.5304373 10.74884925 10.75758175 9.5180185125 10.75758175 7.9998060125C10.75758175 6.4817875 9.5304373 5.2509564125 8.01435945 5.2430005625C8.01435945 5.2430005625 8.01435945 4.3946332875 8.01435945 4.3946332875C9.999251625 4.4023945375 11.60614275 6.013167425 11.60614275 7.9998060125C11.60614275 9.986639375 9.999251625 11.597411125 8.01435945 11.605172375C8.01435945 11.605172375 8.01435945 10.756805625 8.01435945 10.756805625M8.01
435945 6.5157454625C8.8276046625 6.5235067125 9.484837025 7.184620575 9.484837025 7.9998060125C9.484837025 8.815185875 8.8276046625 9.4762985125 8.01435945 9.4840608125C8.01435945 9.4840608125 8.01435945 6.5157454625 8.01435945 6.5157454625M1.0 7.9998060125C1.0 11.8659705 4.1338360375 15.0 8.0000000875 15.0C11.8659705 15.0 15.0 11.8659705 15.0 7.9998060125C15.0 4.1338360375 11.8659705 1.0 8.0000000875 1.0C4.1338360375 1.0 1.0 4.1338360375 1.0 7.9998060125C1.0 7.9998060125 1.0 7.9998060125 1.0 7.9998060125" fill-rule="even-odd" fill-opacity="context-fill-opacity" fill="context-fill" />
+</svg>
diff --git a/browser/themes/shared/jar.inc.mn b/browser/themes/shared/jar.inc.mn
index 8cfe1b69c371..71fea38eb829 100644
--- a/browser/themes/shared/jar.inc.mn
+++ b/browser/themes/shared/jar.inc.mn
@@ -57,6 +57,9 @@
skin/classic/browser/connection-secure.svg (../shared/identity-block/connection-secure.svg)
skin/classic/browser/connection-mixed-passive-loaded.svg (../shared/identity-block/connection-mixed-passive-loaded.svg)
skin/classic/browser/connection-mixed-active-loaded.svg (../shared/identity-block/connection-mixed-active-loaded.svg)
+ skin/classic/browser/onion.svg (../shared/identity-block/onion.svg)
+ skin/classic/browser/onion-slash.svg (../shared/identity-block/onion-slash.svg)
+ skin/classic/browser/onion-warning.svg (../shared/identity-block/onion-warning.svg)
skin/classic/browser/info.svg (../shared/info.svg)
skin/classic/browser/newInstall.css (../shared/newInstall.css)
skin/classic/browser/newInstallPage.css (../shared/newInstallPage.css)
diff --git a/dom/base/nsContentUtils.cpp b/dom/base/nsContentUtils.cpp
index 2e71a9124edf..03b9563fc642 100644
--- a/dom/base/nsContentUtils.cpp
+++ b/dom/base/nsContentUtils.cpp
@@ -9057,6 +9057,25 @@ bool nsContentUtils::ComputeIsSecureContext(nsIChannel* aChannel) {
return principal->GetIsOriginPotentiallyTrustworthy();
}
+/* static */ bool nsContentUtils::DocumentHasOnionURI(Document* aDocument) {
+ if (!aDocument) {
+ return false;
+ }
+
+ nsIURI* uri = aDocument->GetDocumentURI();
+ if (!uri) {
+ return false;
+ }
+
+ nsAutoCString host;
+ if (NS_SUCCEEDED(uri->GetHost(host))) {
+ bool hasOnionURI = StringEndsWith(host, NS_LITERAL_CSTRING(".onion"));
+ return hasOnionURI;
+ }
+
+ return false;
+}
+
/* static */
void nsContentUtils::TryToUpgradeElement(Element* aElement) {
NodeInfo* nodeInfo = aElement->NodeInfo();
diff --git a/dom/base/nsContentUtils.h b/dom/base/nsContentUtils.h
index b8dc0092e32b..08a117fc2803 100644
--- a/dom/base/nsContentUtils.h
+++ b/dom/base/nsContentUtils.h
@@ -2999,6 +2999,11 @@ class nsContentUtils {
*/
static bool HttpsStateIsModern(Document* aDocument);
+ /**
+ * Returns true of the document's URI is a .onion
+ */
+ static bool DocumentHasOnionURI(Document* aDocument);
+
/**
* Returns true if the channel is for top-level window and is over secure
* context.
diff --git a/dom/base/nsGlobalWindowOuter.cpp b/dom/base/nsGlobalWindowOuter.cpp
index da9d56e843a2..abe1e56d9714 100644
--- a/dom/base/nsGlobalWindowOuter.cpp
+++ b/dom/base/nsGlobalWindowOuter.cpp
@@ -1868,7 +1868,8 @@ bool nsGlobalWindowOuter::ComputeIsSecureContext(Document* aDocument,
return false;
}
- if (nsContentUtils::HttpsStateIsModern(aDocument)) {
+ if (nsContentUtils::HttpsStateIsModern(aDocument) ||
+ nsContentUtils::DocumentHasOnionURI(aDocument)) {
return true;
}
diff --git a/dom/ipc/WindowGlobalActor.cpp b/dom/ipc/WindowGlobalActor.cpp
index 25204e1fc20e..b6dfa63fe664 100644
--- a/dom/ipc/WindowGlobalActor.cpp
+++ b/dom/ipc/WindowGlobalActor.cpp
@@ -14,6 +14,7 @@
#include "mozilla/dom/JSWindowActorParent.h"
#include "mozilla/dom/JSWindowActorChild.h"
#include "mozilla/net/CookieJarSettings.h"
+#include "mozilla/dom/nsMixedContentBlocker.h"
namespace mozilla {
namespace dom {
@@ -118,7 +119,8 @@ WindowGlobalInit WindowGlobalActor::WindowInitializer(
nsCOMPtr<nsIURI> innerDocURI = NS_GetInnermostURI(doc->GetDocumentURI());
if (innerDocURI) {
mozilla::Get<WindowContext::IDX_IsSecure>(init.context().mFields) =
- innerDocURI->SchemeIs("https");
+ innerDocURI->SchemeIs("https") ||
+ nsMixedContentBlocker::IsPotentiallyTrustworthyOnion(innerDocURI);
}
nsCOMPtr<nsIChannel> mixedChannel;
aWindow->GetDocShell()->GetMixedContentChannel(getter_AddRefs(mixedChannel));
diff --git a/dom/ipc/WindowGlobalChild.cpp b/dom/ipc/WindowGlobalChild.cpp
index d545661be835..142c35ea4e17 100644
--- a/dom/ipc/WindowGlobalChild.cpp
+++ b/dom/ipc/WindowGlobalChild.cpp
@@ -38,6 +38,8 @@
#include "nsIHttpChannelInternal.h"
#include "nsIURIMutator.h"
+#include "mozilla/dom/nsMixedContentBlocker.h"
+
using namespace mozilla::ipc;
using namespace mozilla::dom::ipc;
@@ -223,7 +225,9 @@ void WindowGlobalChild::OnNewDocument(Document* aDocument) {
nsCOMPtr<nsIURI> innerDocURI =
NS_GetInnermostURI(aDocument->GetDocumentURI());
if (innerDocURI) {
- txn.SetIsSecure(innerDocURI->SchemeIs("https"));
+ txn.SetIsSecure(
+ innerDocURI->SchemeIs("https") ||
+ nsMixedContentBlocker::IsPotentiallyTrustworthyOnion(innerDocURI));
}
nsCOMPtr<nsIChannel> mixedChannel;
mWindowGlobal->GetDocShell()->GetMixedContentChannel(
diff --git a/dom/presentation/PresentationRequest.cpp b/dom/presentation/PresentationRequest.cpp
index 020cbda1c1b1..35c0ae575568 100644
--- a/dom/presentation/PresentationRequest.cpp
+++ b/dom/presentation/PresentationRequest.cpp
@@ -468,7 +468,8 @@ bool PresentationRequest::IsProhibitMixedSecurityContexts(Document* aDocument) {
nsCOMPtr<Document> doc = aDocument;
while (doc && !nsContentUtils::IsChromeDoc(doc)) {
- if (nsContentUtils::HttpsStateIsModern(doc)) {
+ if (nsContentUtils::HttpsStateIsModern(doc) ||
+ nsContentUtils::DocumentHasOnionURI(doc)) {
return true;
}
diff --git a/dom/security/nsMixedContentBlocker.cpp b/dom/security/nsMixedContentBlocker.cpp
index 477c1543ab20..ee0fddeb3e2c 100644
--- a/dom/security/nsMixedContentBlocker.cpp
+++ b/dom/security/nsMixedContentBlocker.cpp
@@ -587,8 +587,8 @@ nsresult nsMixedContentBlocker::ShouldLoad(bool aHadInsecureImageRedirect,
return NS_OK;
}
- // Check the parent scheme. If it is not an HTTPS page then mixed content
- // restrictions do not apply.
+ // Check the parent scheme. If it is not an HTTPS or .onion page then mixed
+ // content restrictions do not apply.
nsCOMPtr<nsIURI> innerRequestingLocation =
NS_GetInnermostURI(requestingLocation);
if (!innerRequestingLocation) {
@@ -599,6 +599,17 @@ nsresult nsMixedContentBlocker::ShouldLoad(bool aHadInsecureImageRedirect,
bool parentIsHttps = innerRequestingLocation->SchemeIs("https");
if (!parentIsHttps) {
+ bool parentIsOnion = IsPotentiallyTrustworthyOnion(innerRequestingLocation);
+ if (!parentIsOnion) {
+ *aDecision = ACCEPT;
+ return NS_OK;
+ }
+ }
+
+ bool isHttpScheme = innerContentLocation->SchemeIs("http");
+ // .onion URLs are encrypted and authenticated. Don't treat them as mixed
+ // content if potentially trustworthy (i.e. whitelisted).
+ if (isHttpScheme && IsPotentiallyTrustworthyOnion(innerContentLocation)) {
*aDecision = ACCEPT;
return NS_OK;
}
@@ -618,7 +629,6 @@ nsresult nsMixedContentBlocker::ShouldLoad(bool aHadInsecureImageRedirect,
return NS_OK;
}
- bool isHttpScheme = innerContentLocation->SchemeIs("http");
if (isHttpScheme && IsPotentiallyTrustworthyOrigin(innerContentLocation)) {
*aDecision = ACCEPT;
return NS_OK;
diff --git a/security/manager/ssl/nsSecureBrowserUI.cpp b/security/manager/ssl/nsSecureBrowserUI.cpp
index fd9a26d42b79..0dd53ded3708 100644
--- a/security/manager/ssl/nsSecureBrowserUI.cpp
+++ b/security/manager/ssl/nsSecureBrowserUI.cpp
@@ -9,6 +9,7 @@
#include "mozilla/Logging.h"
#include "mozilla/Unused.h"
#include "mozilla/dom/Document.h"
+#include "mozilla/dom/nsMixedContentBlocker.h"
#include "nsContentUtils.h"
#include "nsIChannel.h"
#include "nsDocShell.h"
@@ -136,6 +137,17 @@ void nsSecureBrowserUI::UpdateForLocationOrMixedContentChange() {
}
}
}
+
+ // any protocol routed over tor is secure
+ if (!(mState & nsIWebProgressListener::STATE_IS_SECURE)) {
+ nsCOMPtr<nsIURI> innerDocURI = NS_GetInnermostURI(win->GetDocumentURI());
+ if (innerDocURI &&
+ nsMixedContentBlocker::IsPotentiallyTrustworthyOnion(innerDocURI)) {
+ MOZ_LOG(gSecureBrowserUILog, LogLevel::Debug, (" is onion"));
+ mState = (mState & ~nsIWebProgressListener::STATE_IS_INSECURE) |
+ nsIWebProgressListener::STATE_IS_SECURE;
+ }
+ }
}
// Add the mixed content flags from the window
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 26345: Hide tracking protection UI
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 501bd1f0c5aaedc25344076c6a9e476efcc541d0
Author: Alex Catarineu <acat(a)torproject.org>
Date: Tue Sep 10 16:29:31 2019 +0200
Bug 26345: Hide tracking protection UI
---
browser/base/content/browser-siteIdentity.js | 4 ++--
browser/components/about/AboutRedirector.cpp | 4 ----
browser/components/about/components.conf | 1 -
browser/components/customizableui/content/panelUI.inc.xhtml | 4 ++--
browser/components/moz.build | 1 -
browser/themes/shared/preferences/privacy.css | 4 ++++
6 files changed, 8 insertions(+), 10 deletions(-)
diff --git a/browser/base/content/browser-siteIdentity.js b/browser/base/content/browser-siteIdentity.js
index 9da8fab971c6..b8172d6a85f6 100644
--- a/browser/base/content/browser-siteIdentity.js
+++ b/browser/base/content/browser-siteIdentity.js
@@ -847,10 +847,10 @@ var gIdentityHandler = {
this._refreshPermissionIcons();
- // Hide the shield icon if it is a chrome page.
+ // Bug 26345: Hide tracking protection UI.
gProtectionsHandler._trackingProtectionIconContainer.classList.toggle(
"chromeUI",
- this._isSecureInternalUI
+ true
);
},
diff --git a/browser/components/about/AboutRedirector.cpp b/browser/components/about/AboutRedirector.cpp
index 933d519bd959..544e21782729 100644
--- a/browser/components/about/AboutRedirector.cpp
+++ b/browser/components/about/AboutRedirector.cpp
@@ -114,10 +114,6 @@ static const RedirEntry kRedirMap[] = {
nsIAboutModule::URI_MUST_LOAD_IN_CHILD |
nsIAboutModule::URI_SAFE_FOR_UNTRUSTED_CONTENT |
nsIAboutModule::ALLOW_SCRIPT | nsIAboutModule::HIDE_FROM_ABOUTABOUT},
- {"protections", "chrome://browser/content/protections.html",
- nsIAboutModule::URI_SAFE_FOR_UNTRUSTED_CONTENT |
- nsIAboutModule::URI_MUST_LOAD_IN_CHILD | nsIAboutModule::ALLOW_SCRIPT |
- nsIAboutModule::URI_CAN_LOAD_IN_PRIVILEGEDABOUT_PROCESS},
{"pioneer", "chrome://browser/content/pioneer.html",
nsIAboutModule::ALLOW_SCRIPT | nsIAboutModule::HIDE_FROM_ABOUTABOUT},
#ifdef TOR_BROWSER_UPDATE
diff --git a/browser/components/about/components.conf b/browser/components/about/components.conf
index f31159d30e15..d78de142e2e4 100644
--- a/browser/components/about/components.conf
+++ b/browser/components/about/components.conf
@@ -20,7 +20,6 @@ pages = [
'policies',
'preferences',
'privatebrowsing',
- 'protections',
'profiling',
'reader',
'restartrequired',
diff --git a/browser/components/customizableui/content/panelUI.inc.xhtml b/browser/components/customizableui/content/panelUI.inc.xhtml
index 719eee14e681..45f4a10ace7b 100644
--- a/browser/components/customizableui/content/panelUI.inc.xhtml
+++ b/browser/components/customizableui/content/panelUI.inc.xhtml
@@ -244,7 +244,7 @@
oncommand="gSync.toggleAccountPanel('PanelUI-fxa', this, event)"/>
</toolbaritem>
<toolbarseparator class="sync-ui-item"/>
- <toolbaritem>
+ <toolbaritem hidden="true">
<toolbarbutton id="appMenu-protection-report-button"
class="subviewbutton subviewbutton-iconic"
oncommand="gProtectionsHandler.openProtections(); gProtectionsHandler.recordClick('open_full_report', null, 'app_menu');">
@@ -255,7 +255,7 @@
</label>
</toolbarbutton>
</toolbaritem>
- <toolbarseparator id="appMenu-tp-separator"/>
+ <toolbarseparator hidden="true" id="appMenu-tp-separator"/>
<toolbarbutton id="appMenu-new-window-button"
class="subviewbutton subviewbutton-iconic"
label="&newNavigatorCmd.label;"
diff --git a/browser/components/moz.build b/browser/components/moz.build
index 8d6d2503e4a0..cb6eeb9164ef 100644
--- a/browser/components/moz.build
+++ b/browser/components/moz.build
@@ -48,7 +48,6 @@ DIRS += [
'preferences',
'privatebrowsing',
'prompts',
- 'protections',
'protocolhandler',
'resistfingerprinting',
'search',
diff --git a/browser/themes/shared/preferences/privacy.css b/browser/themes/shared/preferences/privacy.css
index 7ac2a5119411..87e3ecc2d4b7 100644
--- a/browser/themes/shared/preferences/privacy.css
+++ b/browser/themes/shared/preferences/privacy.css
@@ -99,6 +99,10 @@
/* Content Blocking */
+#trackingGroup {
+ display: none;
+}
+
/* Override styling that sets descriptions as grey */
#trackingGroup description.indent,
#trackingGroup .indent > description {
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 30237: Add v3 onion services client authentication prompt
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit d73b5c17cd9c2ca7916048680601bfea39d82ee7
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Tue Nov 12 16:11:05 2019 -0500
Bug 30237: Add v3 onion services client authentication prompt
When Tor informs the browser that client authentication is needed,
temporarily load about:blank instead of about:neterror and prompt
for the user's key.
If a correctly formatted key is entered, use Tor's ONION_CLIENT_AUTH_ADD
control port command to add the key (via Torbutton's control port
module) and reload the page.
If the user cancels the prompt, display the standard about:neterror
"Unable to connect" page. This requires a small change to
browser/actors/NetErrorChild.jsm to account for the fact that the
docShell no longer has the failedChannel information. The failedChannel
is used to extract TLS-related error info, which is not applicable
in the case of a canceled .onion authentication prompt.
Add a leaveOpen option to PopupNotifications.show so we can display
error messages within the popup notification doorhanger without
closing the prompt.
Add support for onion services strings to the TorStrings module.
Add support for Tor extended SOCKS errors (Tor proposal 304) to the
socket transport and SOCKS layers. Improved display of all of these
errors will be implemented as part of bug 30025.
Also fixes bug 19757:
Add a "Remember this key" checkbox to the client auth prompt.
Add an "Onion Services Authentication" section within the
about:preferences "Privacy & Security section" to allow
viewing and removal of v3 onion client auth keys that have
been stored on disk.
Also fixes bug 19251: use enhanced error pages for onion service errors.
---
browser/actors/NetErrorChild.jsm | 7 +
browser/base/content/aboutNetError.js | 10 +-
browser/base/content/aboutNetError.xhtml | 1 +
browser/base/content/browser.js | 10 +
browser/base/content/browser.xhtml | 3 +
browser/base/content/tab-content.js | 5 +
browser/components/moz.build | 1 +
.../content/authNotificationIcon.inc.xhtml | 6 +
.../onionservices/content/authPopup.inc.xhtml | 16 ++
.../onionservices/content/authPreferences.css | 20 ++
.../content/authPreferences.inc.xhtml | 19 ++
.../onionservices/content/authPreferences.js | 66 +++++
.../components/onionservices/content/authPrompt.js | 316 +++++++++++++++++++++
.../components/onionservices/content/authUtil.jsm | 47 +++
.../onionservices/content/netError/browser.svg | 3 +
.../onionservices/content/netError/network.svg | 3 +
.../content/netError/onionNetError.css | 65 +++++
.../content/netError/onionNetError.js | 244 ++++++++++++++++
.../onionservices/content/netError/onionsite.svg | 7 +
.../onionservices/content/onionservices.css | 69 +++++
.../onionservices/content/savedKeysDialog.js | 259 +++++++++++++++++
.../onionservices/content/savedKeysDialog.xhtml | 42 +++
browser/components/onionservices/jar.mn | 9 +
browser/components/onionservices/moz.build | 1 +
browser/components/preferences/preferences.xhtml | 1 +
browser/components/preferences/privacy.inc.xhtml | 2 +
browser/components/preferences/privacy.js | 7 +
browser/themes/shared/notification-icons.inc.css | 3 +
docshell/base/nsDocShell.cpp | 81 +++++-
dom/ipc/BrowserParent.cpp | 21 ++
dom/ipc/BrowserParent.h | 3 +
dom/ipc/PBrowser.ipdl | 9 +
js/xpconnect/src/xpc.msg | 10 +
netwerk/base/nsSocketTransport2.cpp | 6 +
netwerk/socket/nsSOCKSIOLayer.cpp | 49 ++++
toolkit/modules/PopupNotifications.jsm | 6 +
toolkit/modules/RemotePageAccessManager.jsm | 1 +
.../lib/environments/frame-script.js | 1 +
xpcom/base/ErrorList.py | 22 ++
39 files changed, 1449 insertions(+), 2 deletions(-)
diff --git a/browser/actors/NetErrorChild.jsm b/browser/actors/NetErrorChild.jsm
index af9d6bd46128..de66e9eeda18 100644
--- a/browser/actors/NetErrorChild.jsm
+++ b/browser/actors/NetErrorChild.jsm
@@ -13,6 +13,8 @@ const { RemotePageChild } = ChromeUtils.import(
"resource://gre/actors/RemotePageChild.jsm"
);
+const { TorStrings } = ChromeUtils.import("resource:///modules/TorStrings.jsm");
+
XPCOMUtils.defineLazyServiceGetter(
this,
"gSerializationHelper",
@@ -29,6 +31,7 @@ class NetErrorChild extends RemotePageChild {
"RPMPrefIsLocked",
"RPMAddToHistogram",
"RPMRecordTelemetryEvent",
+ "RPMGetTorStrings",
];
this.exportFunctions(exportableFunctions);
}
@@ -82,4 +85,8 @@ class NetErrorChild extends RemotePageChild {
RPMRecordTelemetryEvent(category, event, object, value, extra) {
Services.telemetry.recordEvent(category, event, object, value, extra);
}
+
+ RPMGetTorStrings() {
+ return Cu.cloneInto(TorStrings.onionServices, this.contentWindow);
+ }
}
diff --git a/browser/base/content/aboutNetError.js b/browser/base/content/aboutNetError.js
index 053d26ade512..60db17f46eb9 100644
--- a/browser/base/content/aboutNetError.js
+++ b/browser/base/content/aboutNetError.js
@@ -3,6 +3,7 @@
* You can obtain one at http://mozilla.org/MPL/2.0/. */
/* eslint-env mozilla/frame-script */
+/* import-globals-from ../../components/onionservices/content/netError/onionNetError.js */
const formatter = new Intl.DateTimeFormat("default");
@@ -241,7 +242,10 @@ function initPage() {
errDesc = document.getElementById("ed_generic");
}
- setErrorPageStrings(err);
+ const isOnionError = err.startsWith("onionServices.");
+ if (!isOnionError) {
+ setErrorPageStrings(err);
+ }
var sd = document.getElementById("errorShortDescText");
if (sd) {
@@ -387,6 +391,10 @@ function initPage() {
span.textContent = document.location.hostname;
}
}
+
+ if (isOnionError) {
+ OnionServicesAboutNetError.initPage(document);
+ }
}
function setupErrorUI() {
diff --git a/browser/base/content/aboutNetError.xhtml b/browser/base/content/aboutNetError.xhtml
index 3e9677e3c0ff..957b6f15a0be 100644
--- a/browser/base/content/aboutNetError.xhtml
+++ b/browser/base/content/aboutNetError.xhtml
@@ -208,5 +208,6 @@
</div>
</div>
</body>
+ <script src="chrome://browser/content/onionservices/netError/onionNetError.js"/>
<script src="chrome://browser/content/aboutNetError.js"/>
</html>
diff --git a/browser/base/content/browser.js b/browser/base/content/browser.js
index a851be586c0c..9f5f0c608536 100644
--- a/browser/base/content/browser.js
+++ b/browser/base/content/browser.js
@@ -221,6 +221,11 @@ XPCOMUtils.defineLazyScriptGetter(
["SecurityLevelButton"],
"chrome://browser/content/securitylevel/securityLevel.js"
);
+XPCOMUtils.defineLazyScriptGetter(
+ this,
+ ["OnionAuthPrompt"],
+ "chrome://browser/content/onionservices/authPrompt.js"
+);
XPCOMUtils.defineLazyScriptGetter(
this,
"gEditItemOverlay",
@@ -1884,6 +1889,9 @@ var gBrowserInit = {
// Init the SecuritySettingsButton
SecurityLevelButton.init();
+ // Init the OnionAuthPrompt
+ OnionAuthPrompt.init();
+
// Certain kinds of automigration rely on this notification to complete
// their tasks BEFORE the browser window is shown. SessionStore uses it to
// restore tabs into windows AFTER important parts like gMultiProcessBrowser
@@ -2568,6 +2576,8 @@ var gBrowserInit = {
SecurityLevelButton.uninit();
+ OnionAuthPrompt.uninit();
+
gAccessibilityServiceIndicator.uninit();
AccessibilityRefreshBlocker.uninit();
diff --git a/browser/base/content/browser.xhtml b/browser/base/content/browser.xhtml
index ddf5d766126b..4cab5fad6475 100644
--- a/browser/base/content/browser.xhtml
+++ b/browser/base/content/browser.xhtml
@@ -33,6 +33,7 @@
<?xml-stylesheet href="chrome://browser/skin/places/editBookmark.css" type="text/css"?>
<?xml-stylesheet href="chrome://torbutton/skin/tor-circuit-display.css" type="text/css"?>
<?xml-stylesheet href="chrome://torbutton/skin/torbutton.css" type="text/css"?>
+<?xml-stylesheet href="chrome://browser/content/onionservices/onionservices.css" type="text/css"?>
# All DTD information is stored in a separate file so that it can be shared by
# hiddenWindowMac.xhtml.
@@ -626,6 +627,7 @@
#include ../../components/downloads/content/downloadsPanel.inc.xhtml
#include ../../../devtools/startup/enableDevToolsPopup.inc.xhtml
#include ../../components/securitylevel/content/securityLevelPanel.inc.xhtml
+#include ../../components/onionservices/content/authPopup.inc.xhtml
#include browser-allTabsMenu.inc.xhtml
<hbox id="downloads-animation-container">
@@ -994,6 +996,7 @@
data-l10n-id="urlbar-indexed-db-notification-anchor"/>
<image id="password-notification-icon" class="notification-anchor-icon login-icon" role="button"
data-l10n-id="urlbar-password-notification-anchor"/>
+#include ../../components/onionservices/content/authNotificationIcon.inc.xhtml
<stack id="plugins-notification-icon" class="notification-anchor-icon" role="button" align="center" data-l10n-id="urlbar-plugins-notification-anchor">
<image class="plugin-icon" />
<image id="plugin-icon-badge" />
diff --git a/browser/base/content/tab-content.js b/browser/base/content/tab-content.js
index 30cfa891c1fb..c57244a962ee 100644
--- a/browser/base/content/tab-content.js
+++ b/browser/base/content/tab-content.js
@@ -19,6 +19,9 @@ ChromeUtils.defineModuleGetter(
"BrowserUtils",
"resource://gre/modules/BrowserUtils.jsm"
);
+var { OnionAuthUtil } = ChromeUtils.import(
+ "chrome://browser/content/onionservices/authUtil.jsm"
+);
var { ActorManagerChild } = ChromeUtils.import(
"resource://gre/modules/ActorManagerChild.jsm"
@@ -101,5 +104,7 @@ if (Services.appinfo.processType == Services.appinfo.PROCESS_TYPE_CONTENT) {
Services.obs.notifyObservers(this, "tab-content-frameloader-created");
+OnionAuthUtil.addCancelMessageListener(this, docShell);
+
// This is a temporary hack to prevent regressions (bug 1471327).
void content;
diff --git a/browser/components/moz.build b/browser/components/moz.build
index 09e209dc9c3b..b660be047b14 100644
--- a/browser/components/moz.build
+++ b/browser/components/moz.build
@@ -41,6 +41,7 @@ DIRS += [
'fxmonitor',
'migration',
'newtab',
+ 'onionservices',
'originattributes',
'pioneer',
'places',
diff --git a/browser/components/onionservices/content/authNotificationIcon.inc.xhtml b/browser/components/onionservices/content/authNotificationIcon.inc.xhtml
new file mode 100644
index 000000000000..91274d612739
--- /dev/null
+++ b/browser/components/onionservices/content/authNotificationIcon.inc.xhtml
@@ -0,0 +1,6 @@
+# Copyright (c) 2020, The Tor Project, Inc.
+
+<image id="tor-clientauth-notification-icon"
+ class="notification-anchor-icon tor-clientauth-icon"
+ role="button"
+ tooltiptext="&torbutton.onionServices.authPrompt.tooltip;"/>
diff --git a/browser/components/onionservices/content/authPopup.inc.xhtml b/browser/components/onionservices/content/authPopup.inc.xhtml
new file mode 100644
index 000000000000..bd0ec3aa0b00
--- /dev/null
+++ b/browser/components/onionservices/content/authPopup.inc.xhtml
@@ -0,0 +1,16 @@
+# Copyright (c) 2020, The Tor Project, Inc.
+
+<popupnotification id="tor-clientauth-notification" hidden="true">
+ <popupnotificationcontent orient="vertical">
+ <description id="tor-clientauth-notification-desc"/>
+ <label id="tor-clientauth-notification-learnmore"
+ class="text-link popup-notification-learnmore-link"
+ is="text-link"/>
+ <html:div>
+ <html:input id="tor-clientauth-notification-key" type="password"/>
+ <html:div id="tor-clientauth-warning"/>
+ <checkbox id="tor-clientauth-persistkey-checkbox"
+ label="&torbutton.onionServices.authPrompt.persistCheckboxLabel;"/>
+ </html:div>
+ </popupnotificationcontent>
+</popupnotification>
diff --git a/browser/components/onionservices/content/authPreferences.css b/browser/components/onionservices/content/authPreferences.css
new file mode 100644
index 000000000000..b3fb79b26ddc
--- /dev/null
+++ b/browser/components/onionservices/content/authPreferences.css
@@ -0,0 +1,20 @@
+/* Copyright (c) 2020, The Tor Project, Inc. */
+
+#torOnionServiceKeys-overview-container {
+ margin-right: 30px;
+}
+
+#onionservices-savedkeys-tree treechildren::-moz-tree-cell-text {
+ font-size: 80%;
+}
+
+#onionservices-savedkeys-errorContainer {
+ margin-top: 4px;
+ min-height: 3em;
+}
+
+#onionservices-savedkeys-errorIcon {
+ margin-right: 4px;
+ list-style-image: url("chrome://browser/skin/warning.svg");
+ visibility: hidden;
+}
diff --git a/browser/components/onionservices/content/authPreferences.inc.xhtml b/browser/components/onionservices/content/authPreferences.inc.xhtml
new file mode 100644
index 000000000000..f69c9dde66a2
--- /dev/null
+++ b/browser/components/onionservices/content/authPreferences.inc.xhtml
@@ -0,0 +1,19 @@
+# Copyright (c) 2020, The Tor Project, Inc.
+
+<groupbox id="torOnionServiceKeys" orient="vertical"
+ data-category="panePrivacy" hidden="true">
+ <label><html:h2 id="torOnionServiceKeys-header"/></label>
+ <hbox>
+ <description id="torOnionServiceKeys-overview-container" flex="1">
+ <html:span id="torOnionServiceKeys-overview"
+ class="tail-with-learn-more"/>
+ <label id="torOnionServiceKeys-learnMore" class="learnMore text-link"
+ is="text-link"/>
+ </description>
+ <vbox align="end">
+ <button id="torOnionServiceKeys-savedKeys"
+ is="highlightable-button"
+ class="accessory-button"/>
+ </vbox>
+ </hbox>
+</groupbox>
diff --git a/browser/components/onionservices/content/authPreferences.js b/browser/components/onionservices/content/authPreferences.js
new file mode 100644
index 000000000000..52f8272020cc
--- /dev/null
+++ b/browser/components/onionservices/content/authPreferences.js
@@ -0,0 +1,66 @@
+// Copyright (c) 2020, The Tor Project, Inc.
+
+"use strict";
+
+ChromeUtils.defineModuleGetter(
+ this,
+ "TorStrings",
+ "resource:///modules/TorStrings.jsm"
+);
+
+/*
+ Onion Services Client Authentication Preferences Code
+
+ Code to handle init and update of onion services authentication section
+ in about:preferences#privacy
+*/
+
+const OnionServicesAuthPreferences = {
+ selector: {
+ groupBox: "#torOnionServiceKeys",
+ header: "#torOnionServiceKeys-header",
+ overview: "#torOnionServiceKeys-overview",
+ learnMore: "#torOnionServiceKeys-learnMore",
+ savedKeysButton: "#torOnionServiceKeys-savedKeys",
+ },
+
+ init() {
+ // populate XUL with localized strings
+ this._populateXUL();
+ },
+
+ _populateXUL() {
+ const groupbox = document.querySelector(this.selector.groupBox);
+
+ let elem = groupbox.querySelector(this.selector.header);
+ elem.textContent = TorStrings.onionServices.authPreferences.header;
+
+ elem = groupbox.querySelector(this.selector.overview);
+ elem.textContent = TorStrings.onionServices.authPreferences.overview;
+
+ elem = groupbox.querySelector(this.selector.learnMore);
+ elem.setAttribute("value", TorStrings.onionServices.learnMore);
+ elem.setAttribute("href", TorStrings.onionServices.learnMoreURL);
+
+ elem = groupbox.querySelector(this.selector.savedKeysButton);
+ elem.setAttribute(
+ "label",
+ TorStrings.onionServices.authPreferences.savedKeys
+ );
+ elem.addEventListener("command", () =>
+ OnionServicesAuthPreferences.onViewSavedKeys()
+ );
+ },
+
+ onViewSavedKeys() {
+ gSubDialog.open(
+ "chrome://browser/content/onionservices/savedKeysDialog.xhtml"
+ );
+ },
+}; // OnionServicesAuthPreferences
+
+Object.defineProperty(this, "OnionServicesAuthPreferences", {
+ value: OnionServicesAuthPreferences,
+ enumerable: true,
+ writable: false,
+});
diff --git a/browser/components/onionservices/content/authPrompt.js b/browser/components/onionservices/content/authPrompt.js
new file mode 100644
index 000000000000..d4a59ac46487
--- /dev/null
+++ b/browser/components/onionservices/content/authPrompt.js
@@ -0,0 +1,316 @@
+// Copyright (c) 2020, The Tor Project, Inc.
+
+"use strict";
+
+XPCOMUtils.defineLazyModuleGetters(this, {
+ OnionAuthUtil: "chrome://browser/content/onionservices/authUtil.jsm",
+ CommonUtils: "resource://services-common/utils.js",
+ TorStrings: "resource:///modules/TorStrings.jsm",
+});
+
+const OnionAuthPrompt = (function() {
+ // OnionServicesAuthPrompt objects run within the main/chrome process.
+ // aReason is the topic passed within the observer notification that is
+ // causing this auth prompt to be displayed.
+ function OnionServicesAuthPrompt(aBrowser, aFailedURI, aReason, aOnionName) {
+ this._browser = aBrowser;
+ this._failedURI = aFailedURI;
+ this._reasonForPrompt = aReason;
+ this._onionName = aOnionName;
+ }
+
+ OnionServicesAuthPrompt.prototype = {
+ show(aWarningMessage) {
+ let mainAction = {
+ label: TorStrings.onionServices.authPrompt.done,
+ accessKey: TorStrings.onionServices.authPrompt.doneAccessKey,
+ leaveOpen: true, // Callback is responsible for closing the notification.
+ callback: this._onDone.bind(this),
+ };
+
+ let dialogBundle = Services.strings.createBundle(
+ "chrome://global/locale/dialog.properties");
+
+ let cancelAccessKey = dialogBundle.GetStringFromName("accesskey-cancel");
+ if (!cancelAccessKey)
+ cancelAccessKey = "c"; // required by PopupNotifications.show()
+
+ let cancelAction = {
+ label: dialogBundle.GetStringFromName("button-cancel"),
+ accessKey: cancelAccessKey,
+ callback: this._onCancel.bind(this),
+ };
+
+ let _this = this;
+ let options = {
+ autofocus: true,
+ hideClose: true,
+ persistent: true,
+ removeOnDismissal: false,
+ eventCallback(aTopic) {
+ if (aTopic === "showing") {
+ _this._onPromptShowing(aWarningMessage);
+ } else if (aTopic === "shown") {
+ _this._onPromptShown();
+ } else if (aTopic === "removed") {
+ _this._onPromptRemoved();
+ }
+ }
+ };
+
+ this._prompt = PopupNotifications.show(this._browser,
+ OnionAuthUtil.domid.notification, "",
+ OnionAuthUtil.domid.anchor,
+ mainAction, [cancelAction], options);
+ },
+
+ _onPromptShowing(aWarningMessage) {
+ let xulDoc = this._browser.ownerDocument;
+ let descElem = xulDoc.getElementById(OnionAuthUtil.domid.description);
+ if (descElem) {
+ // Handle replacement of the onion name within the localized
+ // string ourselves so we can show the onion name as bold text.
+ // We do this by splitting the localized string and creating
+ // several HTML <span> elements.
+ while (descElem.firstChild)
+ descElem.removeChild(descElem.firstChild);
+
+ let fmtString = TorStrings.onionServices.authPrompt.description;
+ let prefix = "";
+ let suffix = "";
+ const kToReplace = "%S";
+ let idx = fmtString.indexOf(kToReplace);
+ if (idx < 0) {
+ prefix = fmtString;
+ } else {
+ prefix = fmtString.substring(0, idx);
+ suffix = fmtString.substring(idx + kToReplace.length);
+ }
+
+ const kHTMLNS = "http://www.w3.org/1999/xhtml";
+ let span = xulDoc.createElementNS(kHTMLNS, "span");
+ span.textContent = prefix;
+ descElem.appendChild(span);
+ span = xulDoc.createElementNS(kHTMLNS, "span");
+ span.id = OnionAuthUtil.domid.onionNameSpan;
+ span.textContent = this._onionName;
+ descElem.appendChild(span);
+ span = xulDoc.createElementNS(kHTMLNS, "span");
+ span.textContent = suffix;
+ descElem.appendChild(span);
+ }
+
+ // Set "Learn More" label and href.
+ let learnMoreElem = xulDoc.getElementById(OnionAuthUtil.domid.learnMore);
+ if (learnMoreElem) {
+ learnMoreElem.setAttribute("value", TorStrings.onionServices.learnMore);
+ learnMoreElem.setAttribute("href", TorStrings.onionServices.learnMoreURL);
+ }
+
+ this._showWarning(aWarningMessage);
+ let checkboxElem = this._getCheckboxElement();
+ if (checkboxElem) {
+ checkboxElem.checked = false;
+ }
+ },
+
+ _onPromptShown() {
+ let keyElem = this._getKeyElement();
+ if (keyElem) {
+ keyElem.setAttribute("placeholder",
+ TorStrings.onionServices.authPrompt.keyPlaceholder);
+ this._boundOnKeyFieldKeyPress = this._onKeyFieldKeyPress.bind(this);
+ this._boundOnKeyFieldInput = this._onKeyFieldInput.bind(this);
+ keyElem.addEventListener("keypress", this._boundOnKeyFieldKeyPress);
+ keyElem.addEventListener("input", this._boundOnKeyFieldInput);
+ keyElem.focus();
+ }
+ },
+
+ _onPromptRemoved() {
+ if (this._boundOnKeyFieldKeyPress) {
+ let keyElem = this._getKeyElement();
+ if (keyElem) {
+ keyElem.value = "";
+ keyElem.removeEventListener("keypress",
+ this._boundOnKeyFieldKeyPress);
+ this._boundOnKeyFieldKeyPress = undefined;
+ keyElem.removeEventListener("input", this._boundOnKeyFieldInput);
+ this._boundOnKeyFieldInput = undefined;
+ }
+ }
+ },
+
+ _onKeyFieldKeyPress(aEvent) {
+ if (aEvent.keyCode == aEvent.DOM_VK_RETURN) {
+ this._onDone();
+ } else if (aEvent.keyCode == aEvent.DOM_VK_ESCAPE) {
+ this._prompt.remove();
+ this._onCancel();
+ }
+ },
+
+ _onKeyFieldInput(aEvent) {
+ this._showWarning(undefined); // Remove the warning.
+ },
+
+ _onDone() {
+ let keyElem = this._getKeyElement();
+ if (!keyElem)
+ return;
+
+ let base64key = this._keyToBase64(keyElem.value);
+ if (!base64key) {
+ this._showWarning(TorStrings.onionServices.authPrompt.invalidKey);
+ return;
+ }
+
+ this._prompt.remove();
+
+ // Use Torbutton's controller module to add the private key to Tor.
+ let controllerFailureMsg =
+ TorStrings.onionServices.authPrompt.failedToSetKey;
+ try {
+ let { controller } =
+ Cu.import("resource://torbutton/modules/tor-control-port.js", {});
+ let torController = controller(aError => {
+ this.show(controllerFailureMsg);
+ });
+ let onionAddr = this._onionName.toLowerCase().replace(/\.onion$/, "");
+ let checkboxElem = this._getCheckboxElement();
+ let isPermanent = (checkboxElem && checkboxElem.checked);
+ torController.onionAuthAdd(onionAddr, base64key, isPermanent)
+ .then(aResponse => {
+ // Success! Reload the page.
+ this._browser.sendMessageToActor(
+ "Browser:Reload",
+ {},
+ "BrowserTab"
+ );
+ })
+ .catch(aError => {
+ if (aError.torMessage)
+ this.show(aError.torMessage);
+ else
+ this.show(controllerFailureMsg);
+ });
+ } catch (e) {
+ this.show(controllerFailureMsg);
+ }
+ },
+
+ _onCancel() {
+ // Arrange for an error page to be displayed.
+ this._browser.messageManager.sendAsyncMessage(
+ OnionAuthUtil.message.authPromptCanceled,
+ {failedURI: this._failedURI.spec,
+ reasonForPrompt: this._reasonForPrompt});
+ },
+
+ _getKeyElement() {
+ let xulDoc = this._browser.ownerDocument;
+ return xulDoc.getElementById(OnionAuthUtil.domid.keyElement);
+ },
+
+ _getCheckboxElement() {
+ let xulDoc = this._browser.ownerDocument;
+ return xulDoc.getElementById(OnionAuthUtil.domid.checkboxElement);
+ },
+
+ _showWarning(aWarningMessage) {
+ let xulDoc = this._browser.ownerDocument;
+ let warningElem =
+ xulDoc.getElementById(OnionAuthUtil.domid.warningElement);
+ let keyElem = this._getKeyElement();
+ if (warningElem) {
+ if (aWarningMessage) {
+ warningElem.textContent = aWarningMessage;
+ warningElem.removeAttribute("hidden");
+ if (keyElem)
+ keyElem.className = "invalid";
+ } else {
+ warningElem.setAttribute("hidden", "true");
+ if (keyElem)
+ keyElem.className = "";
+ }
+ }
+ },
+
+ // Returns undefined if the key is the wrong length or format.
+ _keyToBase64(aKeyString) {
+ if (!aKeyString)
+ return undefined;
+
+ let base64key;
+ if (aKeyString.length == 52) {
+ // The key is probably base32-encoded. Attempt to decode.
+ // Although base32 specifies uppercase letters, we accept lowercase
+ // as well because users may type in lowercase or copy a key out of
+ // a tor onion-auth file (which uses lowercase).
+ let rawKey;
+ try {
+ rawKey = CommonUtils.decodeBase32(aKeyString.toUpperCase());
+ } catch (e) {}
+
+ if (rawKey) try {
+ base64key = btoa(rawKey);
+ } catch (e) {}
+ } else if ((aKeyString.length == 44) &&
+ /^[a-zA-Z0-9+/]*=*$/.test(aKeyString)) {
+ // The key appears to be a correctly formatted base64 value. If not,
+ // tor will return an error when we try to add the key via the
+ // control port.
+ base64key = aKeyString;
+ }
+
+ return base64key;
+ },
+ };
+
+ let retval = {
+ init() {
+ Services.obs.addObserver(this, OnionAuthUtil.topic.clientAuthMissing);
+ Services.obs.addObserver(this, OnionAuthUtil.topic.clientAuthIncorrect);
+ },
+
+ uninit() {
+ Services.obs.removeObserver(this, OnionAuthUtil.topic.clientAuthMissing);
+ Services.obs.removeObserver(this, OnionAuthUtil.topic.clientAuthIncorrect);
+ },
+
+ // aSubject is the DOM Window or browser where the prompt should be shown.
+ // aData contains the .onion name.
+ observe(aSubject, aTopic, aData) {
+ if ((aTopic != OnionAuthUtil.topic.clientAuthMissing) &&
+ (aTopic != OnionAuthUtil.topic.clientAuthIncorrect)) {
+ return;
+ }
+
+ let browser;
+ if (aSubject instanceof Ci.nsIDOMWindow) {
+ let contentWindow = aSubject.QueryInterface(Ci.nsIDOMWindow);
+ browser = contentWindow.docShell.chromeEventHandler;
+ } else {
+ browser = aSubject.QueryInterface(Ci.nsIBrowser);
+ }
+
+ if (!gBrowser.browsers.some(aBrowser => aBrowser == browser)) {
+ return; // This window does not contain the subject browser; ignore.
+ }
+
+ let failedURI = browser.currentURI;
+ let authPrompt = new OnionServicesAuthPrompt(browser, failedURI,
+ aTopic, aData);
+ authPrompt.show(undefined);
+ }
+ };
+
+ return retval;
+})(); /* OnionAuthPrompt */
+
+
+Object.defineProperty(this, "OnionAuthPrompt", {
+ value: OnionAuthPrompt,
+ enumerable: true,
+ writable: false
+});
diff --git a/browser/components/onionservices/content/authUtil.jsm b/browser/components/onionservices/content/authUtil.jsm
new file mode 100644
index 000000000000..c9d83774da1f
--- /dev/null
+++ b/browser/components/onionservices/content/authUtil.jsm
@@ -0,0 +1,47 @@
+// Copyright (c) 2020, The Tor Project, Inc.
+
+"use strict";
+
+var EXPORTED_SYMBOLS = [
+ "OnionAuthUtil",
+];
+
+var { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
+
+const OnionAuthUtil = {
+ topic: {
+ clientAuthMissing: "tor-onion-services-clientauth-missing",
+ clientAuthIncorrect: "tor-onion-services-clientauth-incorrect",
+ },
+ message: {
+ authPromptCanceled: "Tor:OnionServicesAuthPromptCanceled",
+ },
+ domid: {
+ anchor: "tor-clientauth-notification-icon",
+ notification: "tor-clientauth",
+ description: "tor-clientauth-notification-desc",
+ learnMore: "tor-clientauth-notification-learnmore",
+ onionNameSpan: "tor-clientauth-notification-onionname",
+ keyElement: "tor-clientauth-notification-key",
+ warningElement: "tor-clientauth-warning",
+ checkboxElement: "tor-clientauth-persistkey-checkbox",
+ },
+
+ addCancelMessageListener(aTabContent, aDocShell) {
+ aTabContent.addMessageListener(this.message.authPromptCanceled,
+ (aMessage) => {
+ // Upon cancellation of the client authentication prompt, display
+ // the appropriate error page. When calling the docShell
+ // displayLoadError() function, we pass undefined for the failed
+ // channel so that displayLoadError() can determine that it should
+ // not display the client authentication prompt a second time.
+ let failedURI = Services.io.newURI(aMessage.data.failedURI);
+ let reasonForPrompt = aMessage.data.reasonForPrompt;
+ let errorCode =
+ (reasonForPrompt === this.topic.clientAuthMissing) ?
+ Cr.NS_ERROR_TOR_ONION_SVC_MISSING_CLIENT_AUTH :
+ Cr.NS_ERROR_TOR_ONION_SVC_BAD_CLIENT_AUTH;
+ aDocShell.displayLoadError(errorCode, failedURI, undefined, undefined);
+ });
+ },
+};
diff --git a/browser/components/onionservices/content/netError/browser.svg b/browser/components/onionservices/content/netError/browser.svg
new file mode 100644
index 000000000000..b4c433b37bbb
--- /dev/null
+++ b/browser/components/onionservices/content/netError/browser.svg
@@ -0,0 +1,3 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="72" height="65" viewBox="0 0 72 65">
+ <path fill="context-fill" fill-opacity="context-fill-opacity" d="M0.0 0.0C0.0 0.0 0.0 65.0 0.0 65.0C0.0 65.0 72.0 65.0 72.0 65.0C72.0 65.0 72.0 0.0 72.0 0.0C72.0 0.0 52.9019692 0.0 52.9019692 0.0C52.9019692 0.0 0.0 0.0 0.0 0.0C0.0 0.0 0.0 0.0 0.0 0.0M65.0 58.0C65.0 58.0 6.0 58.0 6.0 58.0C6.0 58.0 6.0 25.0 6.0 25.0C6.0 25.0 65.0 25.0 65.0 25.0C65.0 25.0 65.0 58.0 65.0 58.0C65.0 58.0 65.0 58.0 65.0 58.0M6.0 10.0C6.0 10.0 10.0 10.0 10.0 10.0C10.0 10.0 10.0 14.0 10.0 14.0C10.0 14.0 6.0 14.0 6.0 14.0C6.0 14.0 6.0 10.0 6.0 10.0C6.0 10.0 6.0 10.0 6.0 10.0M14.0 10.0C14.0 10.0 18.0 10.0 18.0 10.0C18.0 10.0 18.0 14.0 18.0 14.0C18.0 14.0 14.0 14.0 14.0 14.0C14.0 14.0 14.0 10.0 14.0 10.0C14.0 10.0 14.0 10.0 14.0 10.0M22.0 10.0C22.0 10.0 26.0 10.0 26.0 10.0C26.0 10.0 26.0 14.0 26.0 14.0C26.0 14.0 22.0 14.0 22.0 14.0C22.0 14.0 22.0 10.0 22.0 10.0C22.0 10.0 22.0 10.0 22.0 10.0" />
+</svg>
diff --git a/browser/components/onionservices/content/netError/network.svg b/browser/components/onionservices/content/netError/network.svg
new file mode 100644
index 000000000000..808c53dedd09
--- /dev/null
+++ b/browser/components/onionservices/content/netError/network.svg
@@ -0,0 +1,3 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="72" height="54" viewBox="0 0 72 54">
+ <path fill="context-fill" fill-opacity="context-fill-opacity" d="M14.0487805 54.0C6.28990244 54.0 0.0 47.3306322 0.0 39.1034585C0.0 32.0105634 4.68716488 26.0867675 10.9481707 24.585103C10.6902 23.574652 10.5365854 22.5107596 10.5365854 21.4138156C10.5365854 14.7292347 15.6471278 9.3103384 21.9512195 9.3103384C24.8076351 9.3103384 27.4126741 10.4393194 29.4146341 12.2780088C32.1344254 5.0777841 38.77452 0.0 46.5365854 0.0C56.7201249 0.0 64.9756098 8.7536733 64.9756098 19.5517479C64.9756098 20.7691677 64.8471688 21.9453428 64.6463415 23.1013144C69.0576849 26.0679606 72.0 31.2693674 72.0 37.2413909C72.0 46.5256603 64.9510244 54.0 56.195122 54.0C56.195122 54.0 14.0487805 54.0 14.0487805 54.0C14.0487805 54.0 14.0487805 54.0 14.0487805 54.0" />
+</svg>
diff --git a/browser/components/onionservices/content/netError/onionNetError.css b/browser/components/onionservices/content/netError/onionNetError.css
new file mode 100644
index 000000000000..58117ab93223
--- /dev/null
+++ b/browser/components/onionservices/content/netError/onionNetError.css
@@ -0,0 +1,65 @@
+/* Copyright (c) 2020, The Tor Project, Inc. */
+
+:root {
+ --grey-70: #38383d;
+}
+
+#onionErrorDiagramContainer {
+ margin: 60px auto;
+ width: 460px; /* 3 columns @ 140px plus 2 column gaps @ 20px */
+ display: grid;
+ grid-row-gap: 15px;
+ grid-column-gap: 20px;
+ grid-template-columns: 1fr 1fr 1fr;
+}
+
+#onionErrorDiagramContainer > div {
+ margin: auto;
+ position: relative; /* needed to allow overlay of the ok or error icon */
+}
+
+.onionErrorImage {
+ width: 72px;
+ height: 72px;
+ background-position: center;
+ background-repeat: no-repeat;
+ -moz-context-properties: fill;
+ fill: var(--grey-70);
+}
+
+#onionErrorBrowserImage {
+ background-image: url("browser.svg");
+}
+
+#onionErrorNetworkImage {
+ background-image: url("network.svg");
+}
+
+#onionErrorOnionSiteImage {
+ background-image: url("onionsite.svg");
+}
+
+/* rules to support overlay of the ok or error icon */
+.onionErrorImage[status]::after {
+ content: " ";
+ position: absolute;
+ left: -18px;
+ top: 18px;
+ width: 36px;
+ height: 36px;
+ -moz-context-properties: fill;
+ fill: var(--in-content-page-background);
+ background-color: var(--grey-70);
+ background-repeat: no-repeat;
+ background-position: center;
+ border: 3px solid var(--in-content-page-background);
+ border-radius: 50%;
+}
+
+.onionErrorImage[status="ok"]::after {
+ background-image: url("chrome://global/skin/icons/check.svg");
+}
+
+.onionErrorImage[status="error"]::after {
+ background-image: url("chrome://browser/skin/stop.svg");
+}
diff --git a/browser/components/onionservices/content/netError/onionNetError.js b/browser/components/onionservices/content/netError/onionNetError.js
new file mode 100644
index 000000000000..8fabb3f38eb7
--- /dev/null
+++ b/browser/components/onionservices/content/netError/onionNetError.js
@@ -0,0 +1,244 @@
+// Copyright (c) 2020, The Tor Project, Inc.
+
+"use strict";
+
+/* eslint-env mozilla/frame-script */
+
+var OnionServicesAboutNetError = {
+ _selector: {
+ header: ".title-text",
+ longDesc: "#errorLongDesc",
+ learnMoreContainer: "#learnMoreContainer",
+ learnMoreLink: "#learnMoreLink",
+ contentContainer: "#errorLongContent",
+ tryAgainButtonContainer: "#netErrorButtonContainer",
+ },
+ _status: {
+ ok: "ok",
+ error: "error",
+ },
+
+ _diagramInfoMap: undefined,
+
+ // Public functions (called from outside this file).
+ //
+ // This initPage() function may need to be updated if the structure of
+ // browser/base/content/aboutNetError.xhtml changes. Specifically, it
+ // references the following elements:
+ // query string parameter e
+ // class title-text
+ // id errorLongDesc
+ // id learnMoreContainer
+ // id learnMoreLink
+ // id errorLongContent
+ initPage(aDoc) {
+ const searchParams = new URLSearchParams(aDoc.documentURI.split("?")[1]);
+ const err = searchParams.get("e");
+
+ const errPrefix = "onionServices.";
+ const errName = err.substring(errPrefix.length);
+
+ this._strings = RPMGetTorStrings();
+
+ const stringsObj = this._strings[errName];
+ if (!stringsObj) {
+ return;
+ }
+
+ this._insertStylesheet(aDoc);
+
+ const pageTitle = stringsObj.pageTitle;
+ const header = stringsObj.header;
+ const longDescription = stringsObj.longDescription; // optional
+ const learnMoreURL = stringsObj.learnMoreURL;
+
+ if (pageTitle) {
+ aDoc.title = pageTitle;
+ }
+
+ if (header) {
+ const headerElem = aDoc.querySelector(this._selector.header);
+ if (headerElem) {
+ headerElem.textContent = header;
+ }
+ }
+
+ const ld = aDoc.querySelector(this._selector.longDesc);
+ if (ld) {
+ if (longDescription) {
+ const hexErr = this._hexErrorFromName(errName);
+ ld.textContent = longDescription.replace("%S", hexErr);
+ } else {
+ // This onion service error does not have a long description. Since
+ // it is set to a generic error string by the code in
+ // browser/base/content/aboutNetError.js, hide it here.
+ ld.style.display = "none";
+ }
+ }
+
+ if (learnMoreURL) {
+ const lmContainer = aDoc.querySelector(this._selector.learnMoreContainer);
+ if (lmContainer) {
+ lmContainer.style.display = "block";
+ }
+ const lmLink = lmContainer.querySelector(this._selector.learnMoreLink);
+ if (lmLink) {
+ lmLink.setAttribute("href", learnMoreURL);
+ }
+ }
+
+ // Remove the "Try Again" button if the user made a typo in the .onion
+ // address since it is not useful in that case.
+ if (errName === "badAddress") {
+ const tryAgainButton = aDoc.querySelector(
+ this._selector.tryAgainButtonContainer
+ );
+ if (tryAgainButton) {
+ tryAgainButton.style.display = "none";
+ }
+ }
+
+ this._insertDiagram(aDoc, errName);
+ }, // initPage()
+
+ _insertStylesheet(aDoc) {
+ const url =
+ "chrome://browser/content/onionservices/netError/onionNetError.css";
+ let linkElem = aDoc.createElement("link");
+ linkElem.rel = "stylesheet";
+ linkElem.href = url;
+ linkElem.type = "text/css";
+ aDoc.head.appendChild(linkElem);
+ },
+
+ _insertDiagram(aDoc, aErrorName) {
+ // The onion error diagram consists of a grid of div elements.
+ // The first row contains three images (Browser, Network, Onionsite) and
+ // the second row contains labels for the images that are in the first row.
+ // The _diagramInfoMap describes for each type of onion service error
+ // whether a small ok or error status icon is overlaid on top of the main
+ // Browser/Network/Onionsite images.
+ if (!this._diagramInfoMap) {
+ this._diagramInfoMap = new Map();
+ this._diagramInfoMap.set("descNotFound", {
+ browser: this._status.ok,
+ network: this._status.ok,
+ onionSite: this._status.error,
+ });
+ this._diagramInfoMap.set("descInvalid", {
+ browser: this._status.ok,
+ network: this._status.error,
+ });
+ this._diagramInfoMap.set("introFailed", {
+ browser: this._status.ok,
+ network: this._status.error,
+ });
+ this._diagramInfoMap.set("rendezvousFailed", {
+ browser: this._status.ok,
+ network: this._status.error,
+ });
+ this._diagramInfoMap.set("clientAuthMissing", {
+ browser: this._status.error,
+ });
+ this._diagramInfoMap.set("clientAuthIncorrect", {
+ browser: this._status.error,
+ });
+ this._diagramInfoMap.set("badAddress", {
+ browser: this._status.error,
+ });
+ this._diagramInfoMap.set("introTimedOut", {
+ browser: this._status.ok,
+ network: this._status.error,
+ });
+ }
+
+ const diagramInfo = this._diagramInfoMap.get(aErrorName);
+
+ const container = this._createDiv(aDoc, "onionErrorDiagramContainer");
+ const imageClass = "onionErrorImage";
+
+ const browserImage = this._createDiv(
+ aDoc,
+ "onionErrorBrowserImage",
+ imageClass,
+ container
+ );
+ if (diagramInfo && diagramInfo.browser) {
+ browserImage.setAttribute("status", diagramInfo.browser);
+ }
+
+ const networkImage = this._createDiv(
+ aDoc,
+ "onionErrorNetworkImage",
+ imageClass,
+ container
+ );
+ if (diagramInfo && diagramInfo.network) {
+ networkImage.setAttribute("status", diagramInfo.network);
+ }
+
+ const onionSiteImage = this._createDiv(
+ aDoc,
+ "onionErrorOnionSiteImage",
+ imageClass,
+ container
+ );
+ if (diagramInfo && diagramInfo.onionSite) {
+ onionSiteImage.setAttribute("status", diagramInfo.onionSite);
+ }
+
+ let labelDiv = this._createDiv(aDoc, undefined, undefined, container);
+ labelDiv.textContent = this._strings.errorPage.browser;
+ labelDiv = this._createDiv(aDoc, undefined, undefined, container);
+ labelDiv.textContent = this._strings.errorPage.network;
+ labelDiv = this._createDiv(aDoc, undefined, undefined, container);
+ labelDiv.textContent = this._strings.errorPage.onionSite;
+
+ const contentContainer = aDoc.querySelector(
+ this._selector.contentContainer
+ );
+ if (contentContainer) {
+ contentContainer.insertBefore(container, contentContainer.firstChild);
+ }
+ }, // _insertDiagram()
+
+ _createDiv(aDoc, aID, aClass, aParentElem) {
+ const div = aDoc.createElement("div");
+ if (aID) {
+ div.id = aID;
+ }
+ if (aClass) {
+ div.setAttribute("class", aClass);
+ }
+ if (aParentElem) {
+ aParentElem.appendChild(div);
+ }
+
+ return div;
+ },
+
+ _hexErrorFromName(aErrorName) {
+ // We do not have access to the original Tor SOCKS error code here, so
+ // perform a reverse mapping from the error name.
+ switch (aErrorName) {
+ case "descNotFound":
+ return "0xF0";
+ case "descInvalid":
+ return "0xF1";
+ case "introFailed":
+ return "0xF2";
+ case "rendezvousFailed":
+ return "0xF3";
+ case "clientAuthMissing":
+ return "0xF4";
+ case "clientAuthIncorrect":
+ return "0xF5";
+ case "badAddress":
+ return "0xF6";
+ case "introTimedOut":
+ return "0xF7";
+ }
+
+ return "";
+ },
+};
diff --git a/browser/components/onionservices/content/netError/onionsite.svg b/browser/components/onionservices/content/netError/onionsite.svg
new file mode 100644
index 000000000000..1f2777e6acc7
--- /dev/null
+++ b/browser/components/onionservices/content/netError/onionsite.svg
@@ -0,0 +1,7 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="70" height="63" viewBox="0 0 70 63">
+ <g fill="context-fill" fill-opacity="context-fill-opacity">
+ <path d="M64.0 2.0C64.0 2.0 4.0 2.0 4.0 2.0C2.8954305 2.0 2.0 2.81148389 2.0 3.8125C2.0 3.8125 2.0 58.1875 2.0 58.1875C2.0 59.1885161 2.8954305 60.0 4.0 60.0C4.0 60.0 36.0 60.0 36.0 60.0C36.0 60.0 36.0 56.375 36.0 56.375C36.0 56.375 6.0 56.375 6.0 56.375C6.0 56.375 6.0 41.875 6.0 41.875C6.0 41.875 38.0 41.875 38.0 41.875C38.0 41.875 38.0 38.25 38.0 38.25C38.0 38.25 6.0 38.25 6.0 38.25C6.0 38.25 6.0 23.75 6.0 23.75C6.0 23.75 62.0 23.75 62.0 23.75C62.0 23.75 62.0 36.4375 62.0 36.4375C62.0 36.4375 66.0 36.4375 66.0 36.4375C66.0 36.4375 66.0 3.8125 66.0 3.8125C66.0 2.81148389 65.1045695 2.0 64.0 2.0C64.0 2.0 64.0 2.0 64.0 2.0M62.0 20.125C62.0 20.125 6.0 20.125 6.0 20.125C6.0 20.125 6.0 5.625 6.0 5.625C6.0 5.625 62.0 5.625 62.0 5.625C62.0 5.625 62.0 20.125 62.0 20.125C62.0 20.125 62.0 20.125 62.0 20.125" />
+ <path d="M24.0 47.0C24.0 47.0 24.0 51.0 24.0 51.0C24.0 51.0 20.0 51.0 20.0 51.0C20.0 51.0 20.0 47.0 20.0 47.0C20.0 47.0 24.0 47.0 24.0 47.0C24.0 47.0 24.0 47.0 24.0 47.0M16.0 47.0C16.0 47.0 16.0 51.0 16.0 51.0C16.0 51.0 12.0 51.0 12.0 51.0C12.0 51.0 12.0 47.0 12.0 47.0C12.0 47.0 16.0 47.0 16.0 47.0C16.0 47.0 16.0 47.0 16.0 47.0M56.0 29.0C56.0 29.0 56.0 33.0 56.0 33.0C56.0 33.0 52.0 33.0 52.0 33.0C52.0 33.0 52.0 29.0 52.0 29.0C52.0 29.0 56.0 29.0 56.0 29.0C56.0 29.0 56.0 29.0 56.0 29.0M48.0 29.0C48.0 29.0 48.0 33.0 48.0 33.0C48.0 33.0 12.0 33.0 12.0 33.0C12.0 33.0 12.0 29.0 12.0 29.0C12.0 29.0 48.0 29.0 48.0 29.0C48.0 29.0 48.0 29.0 48.0 29.0M22.0 11.0C22.0 11.0 22.0 15.0 22.0 15.0C22.0 15.0 10.0 15.0 10.0 15.0C10.0 15.0 10.0 11.0 10.0 11.0C10.0 11.0 22.0 11.0 22.0 11.0C22.0 11.0 22.0 11.0 22.0 11.0M70.0 0.0C70.0 0.0 70.0 36.5 70.0 36.5C70.0 36.5 65.0 36.5 65.0 36.5C65.0 36.5 65.0 4.5 65.0 4.5C65.0 4.5 5.0 4.5 5.0 4.5C5.0 4.5 5.0 58.5 5.0 58.5C5.0 58.5 36.0 58.5 36.0 58.5C36.0 58
.5 36.0 63.0 36.0 63.0C36.0 63.0 0.0 63.0 0.0 63.0C0.0 63.0 0.0 0.0 0.0 0.0C0.0 0.0 70.0 0.0 70.0 0.0C70.0 0.0 70.0 0.0 70.0 0.0M32.0 47.0C32.0 47.0 32.0 51.0 32.0 51.0C32.0 51.0 28.0 51.0 28.0 51.0C28.0 51.0 28.0 47.0 28.0 47.0C28.0 47.0 32.0 47.0 32.0 47.0C32.0 47.0 32.0 47.0 32.0 47.0M54.0 11.0C54.0 11.0 54.0 15.0 54.0 15.0C54.0 15.0 50.0 15.0 50.0 15.0C50.0 15.0 50.0 11.0 50.0 11.0C50.0 11.0 54.0 11.0 54.0 11.0C54.0 11.0 54.0 11.0 54.0 11.0M46.0 11.0C46.0 11.0 46.0 15.0 46.0 15.0C46.0 15.0 42.0 15.0 42.0 15.0C42.0 15.0 42.0 11.0 42.0 11.0C42.0 11.0 46.0 11.0 46.0 11.0C46.0 11.0 46.0 11.0 46.0 11.0M38.0 11.0C38.0 11.0 38.0 15.0 38.0 15.0C38.0 15.0 34.0 15.0 34.0 15.0C34.0 15.0 34.0 11.0 34.0 11.0C34.0 11.0 38.0 11.0 38.0 11.0C38.0 11.0 38.0 11.0 38.0 11.0M30.0 11.0C30.0 11.0 30.0 15.0 30.0 15.0C30.0 15.0 26.0 15.0 26.0 15.0C26.0 15.0 26.0 11.0 26.0 11.0C26.0 11.0 30.0 11.0 30.0 11.0C30.0 11.0 30.0 11.0 30.0 11.0" />
+ <path d="M61.0 46.0C61.0 46.0 59.0 46.0 59.0 46.0C59.0 46.0 59.0 40.0 59.0 40.0C59.0 38.8954305 58.1045695 38.0 57.0 38.0C57.0 38.0 49.0 38.0 49.0 38.0C47.8954305 38.0 47.0 38.8954305 47.0 40.0C47.0 40.0 47.0 46.0 47.0 46.0C47.0 46.0 45.0 46.0 45.0 46.0C43.8954305 46.0 43.0 46.8954305 43.0 48.0C43.0 48.0 43.0 60.0 43.0 60.0C43.0 61.1045695 43.8954305 62.0 45.0 62.0C45.0 62.0 61.0 62.0 61.0 62.0C62.1045695 62.0 63.0 61.1045695 63.0 60.0C63.0 60.0 63.0 48.0 63.0 48.0C63.0 46.8954305 62.1045695 46.0 61.0 46.0C61.0 46.0 61.0 46.0 61.0 46.0M51.0 42.0C51.0 42.0 55.0 42.0 55.0 42.0C55.0 42.0 55.0 46.0 55.0 46.0C55.0 46.0 51.0 46.0 51.0 46.0C51.0 46.0 51.0 42.0 51.0 42.0C51.0 42.0 51.0 42.0 51.0 42.0M59.0 58.0C59.0 58.0 47.0 58.0 47.0 58.0C47.0 58.0 47.0 50.0 47.0 50.0C47.0 50.0 59.0 50.0 59.0 50.0C59.0 50.0 59.0 58.0 59.0 58.0C59.0 58.0 59.0 58.0 59.0 58.0" />
+ </g>
+</svg>
diff --git a/browser/components/onionservices/content/onionservices.css b/browser/components/onionservices/content/onionservices.css
new file mode 100644
index 000000000000..e2621ec8266d
--- /dev/null
+++ b/browser/components/onionservices/content/onionservices.css
@@ -0,0 +1,69 @@
+/* Copyright (c) 2020, The Tor Project, Inc. */
+
+@namespace html url("http://www.w3.org/1999/xhtml");
+
+html|*#tor-clientauth-notification-onionname {
+ font-weight: bold;
+}
+
+html|*#tor-clientauth-notification-key {
+ box-sizing: border-box;
+ width: 100%;
+ margin-top: 15px;
+ padding: 6px;
+}
+
+/* Start of rules adapted from
+ * browser/components/newtab/css/activity-stream-mac.css (linux and windows
+ * use the same rules).
+ */
+html|*#tor-clientauth-notification-key.invalid {
+ border: 1px solid #D70022;
+ box-shadow: 0 0 0 1px #D70022, 0 0 0 4px rgba(215, 0, 34, 0.3);
+}
+
+html|*#tor-clientauth-warning {
+ display: inline-block;
+ animation: fade-up-tt 450ms;
+ background: #D70022;
+ border-radius: 2px;
+ color: #FFF;
+ inset-inline-start: 3px;
+ padding: 5px 12px;
+ position: relative;
+ top: 6px;
+ z-index: 1;
+}
+
+html|*#tor-clientauth-warning[hidden] {
+ display: none;
+}
+
+html|*#tor-clientauth-warning::before {
+ background: #D70022;
+ bottom: -8px;
+ content: '.';
+ height: 16px;
+ inset-inline-start: 12px;
+ position: absolute;
+ text-indent: -999px;
+ top: -7px;
+ transform: rotate(45deg);
+ white-space: nowrap;
+ width: 16px;
+ z-index: -1;
+}
+
+@keyframes fade-up-tt {
+ 0% {
+ opacity: 0;
+ transform: translateY(15px);
+ }
+ 100% {
+ opacity: 1;
+ transform: translateY(0);
+ }
+}
+/* End of rules adapted from
+ * browser/components/newtab/css/activity-stream-mac.css
+ */
diff --git a/browser/components/onionservices/content/savedKeysDialog.js b/browser/components/onionservices/content/savedKeysDialog.js
new file mode 100644
index 000000000000..b1376bbabe85
--- /dev/null
+++ b/browser/components/onionservices/content/savedKeysDialog.js
@@ -0,0 +1,259 @@
+// Copyright (c) 2020, The Tor Project, Inc.
+
+"use strict";
+
+ChromeUtils.defineModuleGetter(
+ this,
+ "TorStrings",
+ "resource:///modules/TorStrings.jsm"
+);
+
+ChromeUtils.defineModuleGetter(
+ this,
+ "controller",
+ "resource://torbutton/modules/tor-control-port.js"
+);
+
+var gOnionServicesSavedKeysDialog = {
+ selector: {
+ dialog: "#onionservices-savedkeys-dialog",
+ intro: "#onionservices-savedkeys-intro",
+ tree: "#onionservices-savedkeys-tree",
+ onionSiteCol: "#onionservices-savedkeys-siteCol",
+ onionKeyCol: "#onionservices-savedkeys-keyCol",
+ errorIcon: "#onionservices-savedkeys-errorIcon",
+ errorMessage: "#onionservices-savedkeys-errorMessage",
+ removeButton: "#onionservices-savedkeys-remove",
+ removeAllButton: "#onionservices-savedkeys-removeall",
+ },
+
+ _tree: undefined,
+ _isBusy: false, // true when loading data, deleting a key, etc.
+
+ // Public functions (called from outside this file).
+ async deleteSelectedKeys() {
+ this._setBusyState(true);
+
+ const indexesToDelete = [];
+ const count = this._tree.view.selection.getRangeCount();
+ for (let i = 0; i < count; ++i) {
+ const minObj = {};
+ const maxObj = {};
+ this._tree.view.selection.getRangeAt(i, minObj, maxObj);
+ for (let idx = minObj.value; idx <= maxObj.value; ++idx) {
+ indexesToDelete.push(idx);
+ }
+ }
+
+ if (indexesToDelete.length > 0) {
+ const controllerFailureMsg =
+ TorStrings.onionServices.authPreferences.failedToRemoveKey;
+ try {
+ const torController = controller(aError => {
+ this._showError(controllerFailureMsg);
+ });
+
+ // Remove in reverse index order to avoid issues caused by index changes.
+ for (let i = indexesToDelete.length - 1; i >= 0; --i) {
+ await this._deleteOneKey(torController, indexesToDelete[i]);
+ }
+ } catch (e) {
+ if (e.torMessage) {
+ this._showError(e.torMessage);
+ } else {
+ this._showError(controllerFailureMsg);
+ }
+ }
+ }
+
+ this._setBusyState(false);
+ },
+
+ async deleteAllKeys() {
+ this._tree.view.selection.selectAll();
+ await this.deleteSelectedKeys();
+ },
+
+ updateButtonsState() {
+ const haveSelection = this._tree.view.selection.getRangeCount() > 0;
+ const dialog = document.querySelector(this.selector.dialog);
+ const removeSelectedBtn = dialog.querySelector(this.selector.removeButton);
+ removeSelectedBtn.disabled = this._isBusy || !haveSelection;
+ const removeAllBtn = dialog.querySelector(this.selector.removeAllButton);
+ removeAllBtn.disabled = this._isBusy || this.rowCount === 0;
+ },
+
+ // Private functions.
+ _onLoad() {
+ document.mozSubdialogReady = this._init();
+ },
+
+ async _init() {
+ await this._populateXUL();
+
+ window.addEventListener("keypress", this._onWindowKeyPress.bind(this));
+
+ // We don't use await here because we want _loadSavedKeys() to run
+ // in the background and not block loading of this dialog.
+ this._loadSavedKeys();
+ },
+
+ async _populateXUL() {
+ const dialog = document.querySelector(this.selector.dialog);
+ const authPrefStrings = TorStrings.onionServices.authPreferences;
+ dialog.setAttribute("title", authPrefStrings.dialogTitle);
+
+ let elem = dialog.querySelector(this.selector.intro);
+ elem.textContent = authPrefStrings.dialogIntro;
+
+ elem = dialog.querySelector(this.selector.onionSiteCol);
+ elem.setAttribute("label", authPrefStrings.onionSite);
+
+ elem = dialog.querySelector(this.selector.onionKeyCol);
+ elem.setAttribute("label", authPrefStrings.onionKey);
+
+ elem = dialog.querySelector(this.selector.removeButton);
+ elem.setAttribute("label", authPrefStrings.remove);
+
+ elem = dialog.querySelector(this.selector.removeAllButton);
+ elem.setAttribute("label", authPrefStrings.removeAll);
+
+ this._tree = dialog.querySelector(this.selector.tree);
+ },
+
+ async _loadSavedKeys() {
+ const controllerFailureMsg =
+ TorStrings.onionServices.authPreferences.failedToGetKeys;
+ this._setBusyState(true);
+
+ try {
+ this._tree.view = this;
+
+ const torController = controller(aError => {
+ this._showError(controllerFailureMsg);
+ });
+
+ const keyInfoList = await torController.onionAuthViewKeys();
+ if (keyInfoList) {
+ // Filter out temporary keys.
+ this._keyInfoList = keyInfoList.filter(aKeyInfo => {
+ if (!aKeyInfo.Flags) {
+ return false;
+ }
+
+ const flags = aKeyInfo.Flags.split(",");
+ return flags.includes("Permanent");
+ });
+
+ // Sort by the .onion address.
+ this._keyInfoList.sort((aObj1, aObj2) => {
+ const hsAddr1 = aObj1.hsAddress.toLowerCase();
+ const hsAddr2 = aObj2.hsAddress.toLowerCase();
+ if (hsAddr1 < hsAddr2) {
+ return -1;
+ }
+ return hsAddr1 > hsAddr2 ? 1 : 0;
+ });
+ }
+
+ // Render the tree content.
+ this._tree.rowCountChanged(0, this.rowCount);
+ } catch (e) {
+ if (e.torMessage) {
+ this._showError(e.torMessage);
+ } else {
+ this._showError(controllerFailureMsg);
+ }
+ }
+
+ this._setBusyState(false);
+ },
+
+ // This method may throw; callers should catch errors.
+ async _deleteOneKey(aTorController, aIndex) {
+ const keyInfoObj = this._keyInfoList[aIndex];
+ await aTorController.onionAuthRemove(keyInfoObj.hsAddress);
+ this._tree.view.selection.clearRange(aIndex, aIndex);
+ this._keyInfoList.splice(aIndex, 1);
+ this._tree.rowCountChanged(aIndex + 1, -1);
+ },
+
+ _setBusyState(aIsBusy) {
+ this._isBusy = aIsBusy;
+ this.updateButtonsState();
+ },
+
+ _onWindowKeyPress(event) {
+ if (event.keyCode === KeyEvent.DOM_VK_ESCAPE) {
+ window.close();
+ } else if (event.keyCode === KeyEvent.DOM_VK_DELETE) {
+ this.deleteSelectedKeys();
+ }
+ },
+
+ _showError(aMessage) {
+ const dialog = document.querySelector(this.selector.dialog);
+ const errorIcon = dialog.querySelector(this.selector.errorIcon);
+ errorIcon.style.visibility = aMessage ? "visible" : "hidden";
+ const errorDesc = dialog.querySelector(this.selector.errorMessage);
+ errorDesc.textContent = aMessage ? aMessage : "";
+ },
+
+ // XUL tree widget view implementation.
+ get rowCount() {
+ return this._keyInfoList ? this._keyInfoList.length : 0;
+ },
+
+ getCellText(aRow, aCol) {
+ let val = "";
+ if (this._keyInfoList && aRow < this._keyInfoList.length) {
+ const keyInfo = this._keyInfoList[aRow];
+ if (aCol.id.endsWith("-siteCol")) {
+ val = keyInfo.hsAddress;
+ } else if (aCol.id.endsWith("-keyCol")) {
+ val = keyInfo.typeAndKey;
+ // Omit keyType because it is always "x25519".
+ const idx = val.indexOf(":");
+ if (idx > 0) {
+ val = val.substring(idx + 1);
+ }
+ }
+ }
+
+ return val;
+ },
+
+ isSeparator(index) {
+ return false;
+ },
+
+ isSorted() {
+ return false;
+ },
+
+ isContainer(index) {
+ return false;
+ },
+
+ setTree(tree) {},
+
+ getImageSrc(row, column) {},
+
+ getCellValue(row, column) {},
+
+ cycleHeader(column) {},
+
+ getRowProperties(row) {
+ return "";
+ },
+
+ getColumnProperties(column) {
+ return "";
+ },
+
+ getCellProperties(row, column) {
+ return "";
+ },
+};
+
+window.addEventListener("load", () => gOnionServicesSavedKeysDialog._onLoad());
diff --git a/browser/components/onionservices/content/savedKeysDialog.xhtml b/browser/components/onionservices/content/savedKeysDialog.xhtml
new file mode 100644
index 000000000000..3db9bb05ea82
--- /dev/null
+++ b/browser/components/onionservices/content/savedKeysDialog.xhtml
@@ -0,0 +1,42 @@
+<?xml version="1.0"?>
+<!-- Copyright (c) 2020, The Tor Project, Inc. -->
+
+<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
+<?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css" type="text/css"?>
+<?xml-stylesheet href="chrome://browser/content/onionservices/authPreferences.css" type="text/css"?>
+
+<window id="onionservices-savedkeys-dialog"
+ windowtype="OnionServices:SavedKeys"
+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
+ style="width: 45em;">
+
+ <script src="chrome://browser/content/onionservices/savedKeysDialog.js"/>
+
+ <vbox id="onionservices-savedkeys" class="contentPane" flex="1">
+ <label id="onionservices-savedkeys-intro"
+ control="onionservices-savedkeys-tree"/>
+ <separator class="thin"/>
+ <tree id="onionservices-savedkeys-tree" flex="1" hidecolumnpicker="true"
+ width="750"
+ style="height: 20em;"
+ onselect="gOnionServicesSavedKeysDialog.updateButtonsState();">
+ <treecols>
+ <treecol id="onionservices-savedkeys-siteCol" flex="1" persist="width"/>
+ <splitter class="tree-splitter"/>
+ <treecol id="onionservices-savedkeys-keyCol" flex="1" persist="width"/>
+ </treecols>
+ <treechildren/>
+ </tree>
+ <hbox id="onionservices-savedkeys-errorContainer" align="baseline" flex="1">
+ <image id="onionservices-savedkeys-errorIcon"/>
+ <description id="onionservices-savedkeys-errorMessage" flex="1"/>
+ </hbox>
+ <separator class="thin"/>
+ <hbox id="onionservices-savedkeys-buttons">
+ <button id="onionservices-savedkeys-remove" disabled="true"
+ oncommand="gOnionServicesSavedKeysDialog.deleteSelectedKeys();"/>
+ <button id="onionservices-savedkeys-removeall"
+ oncommand="gOnionServicesSavedKeysDialog.deleteAllKeys();"/>
+ </hbox>
+ </vbox>
+</window>
diff --git a/browser/components/onionservices/jar.mn b/browser/components/onionservices/jar.mn
new file mode 100644
index 000000000000..9d6ce88d1841
--- /dev/null
+++ b/browser/components/onionservices/jar.mn
@@ -0,0 +1,9 @@
+browser.jar:
+ content/browser/onionservices/authPreferences.css (content/authPreferences.css)
+ content/browser/onionservices/authPreferences.js (content/authPreferences.js)
+ content/browser/onionservices/authPrompt.js (content/authPrompt.js)
+ content/browser/onionservices/authUtil.jsm (content/authUtil.jsm)
+ content/browser/onionservices/netError/ (content/netError/*)
+ content/browser/onionservices/onionservices.css (content/onionservices.css)
+ content/browser/onionservices/savedKeysDialog.js (content/savedKeysDialog.js)
+ content/browser/onionservices/savedKeysDialog.xhtml (content/savedKeysDialog.xhtml)
diff --git a/browser/components/onionservices/moz.build b/browser/components/onionservices/moz.build
new file mode 100644
index 000000000000..7e103239c8d6
--- /dev/null
+++ b/browser/components/onionservices/moz.build
@@ -0,0 +1 @@
+JAR_MANIFESTS += ['jar.mn']
diff --git a/browser/components/preferences/preferences.xhtml b/browser/components/preferences/preferences.xhtml
index 2a99400bfb70..b09808e83c45 100644
--- a/browser/components/preferences/preferences.xhtml
+++ b/browser/components/preferences/preferences.xhtml
@@ -12,6 +12,7 @@
<?xml-stylesheet href="chrome://browser/skin/preferences/search.css"?>
<?xml-stylesheet href="chrome://browser/skin/preferences/containers.css"?>
<?xml-stylesheet href="chrome://browser/skin/preferences/privacy.css"?>
+<?xml-stylesheet href="chrome://browser/content/onionservices/authPreferences.css"?>
<?xml-stylesheet href="chrome://browser/content/securitylevel/securityLevelPreferences.css"?>
<?xml-stylesheet href="chrome://browser/content/torpreferences/torPreferences.css"?>
diff --git a/browser/components/preferences/privacy.inc.xhtml b/browser/components/preferences/privacy.inc.xhtml
index f36145ea80d4..eb7587afa0e1 100644
--- a/browser/components/preferences/privacy.inc.xhtml
+++ b/browser/components/preferences/privacy.inc.xhtml
@@ -477,6 +477,8 @@
<label id="fips-desc" hidden="true" data-l10n-id="forms-master-pw-fips-desc"></label>
</groupbox>
+#include ../onionservices/content/authPreferences.inc.xhtml
+
<!-- The form autofill section is inserted in to this box
after the form autofill extension has initialized. -->
<groupbox id="formAutofillGroupBox"
diff --git a/browser/components/preferences/privacy.js b/browser/components/preferences/privacy.js
index 35e1fda9f96b..41dda96a14de 100644
--- a/browser/components/preferences/privacy.js
+++ b/browser/components/preferences/privacy.js
@@ -77,6 +77,12 @@ XPCOMUtils.defineLazyGetter(this, "AlertsServiceDND", function() {
}
});
+XPCOMUtils.defineLazyScriptGetter(
+ this,
+ ["OnionServicesAuthPreferences"],
+ "chrome://browser/content/onionservices/authPreferences.js"
+);
+
// TODO: module import via ChromeUtils.defineModuleGetter
XPCOMUtils.defineLazyScriptGetter(
this,
@@ -434,6 +440,7 @@ var gPrivacyPane = {
this.trackingProtectionReadPrefs();
this.networkCookieBehaviorReadPrefs();
this._initTrackingProtectionExtensionControl();
+ OnionServicesAuthPreferences.init();
this._initSecurityLevel();
Services.telemetry.setEventRecordingEnabled("pwmgr", true);
diff --git a/browser/themes/shared/notification-icons.inc.css b/browser/themes/shared/notification-icons.inc.css
index f17ddae9dc79..979ae9482244 100644
--- a/browser/themes/shared/notification-icons.inc.css
+++ b/browser/themes/shared/notification-icons.inc.css
@@ -117,6 +117,9 @@
list-style-image: url(chrome://browser/skin/notification-icons/indexedDB.svg);
}
+/* Reuse Firefox's login (key) icon for the Tor onion services auth. prompt */
+.popup-notification-icon[popupid="tor-clientauth"],
+.tor-clientauth-icon,
.popup-notification-icon[popupid="password"],
.login-icon {
list-style-image: url(chrome://browser/skin/login.svg);
diff --git a/docshell/base/nsDocShell.cpp b/docshell/base/nsDocShell.cpp
index 9507374ea5bd..ae22142001b6 100644
--- a/docshell/base/nsDocShell.cpp
+++ b/docshell/base/nsDocShell.cpp
@@ -3536,6 +3536,7 @@ nsDocShell::DisplayLoadError(nsresult aError, nsIURI* aURI,
}
} else {
// Errors requiring simple formatting
+ bool isOnionAuthError = false;
switch (aError) {
case NS_ERROR_MALFORMED_URI:
// URI is malformed
@@ -3618,10 +3619,44 @@ nsDocShell::DisplayLoadError(nsresult aError, nsIURI* aURI,
// HTTP/2 or HTTP/3 stack detected a protocol error
error = "networkProtocolError";
break;
-
+ case NS_ERROR_TOR_ONION_SVC_NOT_FOUND:
+ error = "onionServices.descNotFound";
+ break;
+ case NS_ERROR_TOR_ONION_SVC_IS_INVALID:
+ error = "onionServices.descInvalid";
+ break;
+ case NS_ERROR_TOR_ONION_SVC_INTRO_FAILED:
+ error = "onionServices.introFailed";
+ break;
+ case NS_ERROR_TOR_ONION_SVC_REND_FAILED:
+ error = "onionServices.rendezvousFailed";
+ break;
+ case NS_ERROR_TOR_ONION_SVC_MISSING_CLIENT_AUTH:
+ error = "onionServices.clientAuthMissing";
+ isOnionAuthError = true;
+ break;
+ case NS_ERROR_TOR_ONION_SVC_BAD_CLIENT_AUTH:
+ error = "onionServices.clientAuthIncorrect";
+ isOnionAuthError = true;
+ break;
+ case NS_ERROR_TOR_ONION_SVC_BAD_ADDRESS:
+ error = "onionServices.badAddress";
+ break;
+ case NS_ERROR_TOR_ONION_SVC_INTRO_TIMEDOUT:
+ error = "onionServices.introTimedOut";
+ break;
default:
break;
}
+
+ // The presence of aFailedChannel indicates that we arrived here due to a
+ // failed connection attempt. Note that we will arrive here a second time
+ // if the user cancels the Tor client auth prompt, but in that case we
+ // will not have a failed channel and therefore we will not prompt again.
+ if (isOnionAuthError && aFailedChannel) {
+ // Display about:blank while the Tor client auth prompt is open.
+ errorPage.AssignLiteral("blank");
+ }
}
// If the HTTPS-Only Mode upgraded this request and the upgrade might have
@@ -3710,6 +3745,20 @@ nsDocShell::DisplayLoadError(nsresult aError, nsIURI* aURI,
nsAutoString str;
rv =
stringBundle->FormatStringFromName(errorDescriptionID, formatStrs, str);
+ if (NS_FAILED(rv)) {
+ // As a fallback, check torbutton.properties for the error string.
+ const char bundleURL[] = "chrome://torbutton/locale/torbutton.properties";
+ nsCOMPtr<nsIStringBundleService> stringBundleService =
+ mozilla::services::GetStringBundleService();
+ if (stringBundleService) {
+ nsCOMPtr<nsIStringBundle> tbStringBundle;
+ if (NS_SUCCEEDED(stringBundleService->CreateBundle(
+ bundleURL, getter_AddRefs(tbStringBundle)))) {
+ rv = tbStringBundle->FormatStringFromName(errorDescriptionID,
+ formatStrs, str);
+ }
+ }
+ }
NS_ENSURE_SUCCESS(rv, rv);
messageStr.Assign(str);
}
@@ -6189,6 +6238,7 @@ nsresult nsDocShell::EndPageLoad(nsIWebProgress* aProgress,
aStatus == NS_ERROR_NET_INADEQUATE_SECURITY ||
aStatus == NS_ERROR_NET_HTTP2_SENT_GOAWAY ||
aStatus == NS_ERROR_NET_HTTP3_PROTOCOL_ERROR ||
+ NS_ERROR_GET_MODULE(aStatus) == NS_ERROR_MODULE_TOR ||
NS_ERROR_GET_MODULE(aStatus) == NS_ERROR_MODULE_SECURITY) {
// Errors to be shown for any frame
DisplayLoadError(aStatus, url, nullptr, aChannel);
@@ -7753,6 +7803,35 @@ nsresult nsDocShell::CreateContentViewer(const nsACString& aContentType,
FireOnLocationChange(this, aRequest, mCurrentURI, locationFlags);
}
+ // Arrange to show a Tor onion service client authentication prompt if
+ // appropriate.
+ if ((mLoadType == LOAD_ERROR_PAGE) && failedChannel) {
+ nsresult status = NS_OK;
+ if (NS_SUCCEEDED(failedChannel->GetStatus(&status)) &&
+ ((status == NS_ERROR_TOR_ONION_SVC_MISSING_CLIENT_AUTH) ||
+ (status == NS_ERROR_TOR_ONION_SVC_BAD_CLIENT_AUTH))) {
+ nsAutoCString onionHost;
+ failedURI->GetHost(onionHost);
+ const char* topic = (status == NS_ERROR_TOR_ONION_SVC_MISSING_CLIENT_AUTH)
+ ? "tor-onion-services-clientauth-missing"
+ : "tor-onion-services-clientauth-incorrect";
+ if (XRE_IsContentProcess()) {
+ nsCOMPtr<nsIBrowserChild> browserChild = GetBrowserChild();
+ if (browserChild) {
+ static_cast<BrowserChild*>(browserChild.get())
+ ->SendShowOnionServicesAuthPrompt(onionHost, nsCString(topic));
+ }
+ } else {
+ nsCOMPtr<nsPIDOMWindowOuter> browserWin = GetWindow();
+ nsCOMPtr<nsIObserverService> obsSvc = services::GetObserverService();
+ if (browserWin && obsSvc) {
+ obsSvc->NotifyObservers(browserWin, topic,
+ NS_ConvertUTF8toUTF16(onionHost).get());
+ }
+ }
+ }
+ }
+
return NS_OK;
}
diff --git a/dom/ipc/BrowserParent.cpp b/dom/ipc/BrowserParent.cpp
index dfd15c1fd17b..7749792cafb4 100644
--- a/dom/ipc/BrowserParent.cpp
+++ b/dom/ipc/BrowserParent.cpp
@@ -3941,6 +3941,27 @@ mozilla::ipc::IPCResult BrowserParent::RecvShowCanvasPermissionPrompt(
return IPC_OK();
}
+mozilla::ipc::IPCResult BrowserParent::RecvShowOnionServicesAuthPrompt(
+ const nsCString& aOnionName, const nsCString& aTopic) {
+ nsCOMPtr<nsIBrowser> browser =
+ mFrameElement ? mFrameElement->AsBrowser() : nullptr;
+ if (!browser) {
+ // If the tab is being closed, the browser may not be available.
+ // In this case we can ignore the request.
+ return IPC_OK();
+ }
+ nsCOMPtr<nsIObserverService> os = services::GetObserverService();
+ if (!os) {
+ return IPC_FAIL_NO_REASON(this);
+ }
+ nsresult rv = os->NotifyObservers(browser, aTopic.get(),
+ NS_ConvertUTF8toUTF16(aOnionName).get());
+ if (NS_FAILED(rv)) {
+ return IPC_FAIL_NO_REASON(this);
+ }
+ return IPC_OK();
+}
+
mozilla::ipc::IPCResult BrowserParent::RecvVisitURI(nsIURI* aURI,
nsIURI* aLastVisitedURI,
const uint32_t& aFlags) {
diff --git a/dom/ipc/BrowserParent.h b/dom/ipc/BrowserParent.h
index 66509194edba..816945504b6c 100644
--- a/dom/ipc/BrowserParent.h
+++ b/dom/ipc/BrowserParent.h
@@ -763,6 +763,9 @@ class BrowserParent final : public PBrowserParent,
mozilla::ipc::IPCResult RecvShowCanvasPermissionPrompt(
const nsCString& aOrigin, const bool& aHideDoorHanger);
+ mozilla::ipc::IPCResult RecvShowOnionServicesAuthPrompt(
+ const nsCString& aOnionName, const nsCString& aTopic);
+
mozilla::ipc::IPCResult RecvSetSystemFont(const nsCString& aFontName);
mozilla::ipc::IPCResult RecvGetSystemFont(nsCString* aFontName);
diff --git a/dom/ipc/PBrowser.ipdl b/dom/ipc/PBrowser.ipdl
index ed31b32a4eb2..f36e2c6db353 100644
--- a/dom/ipc/PBrowser.ipdl
+++ b/dom/ipc/PBrowser.ipdl
@@ -592,6 +592,15 @@ parent:
bool aNeedCollectSHistory, uint32_t aFlushId,
bool aIsFinal, uint32_t aEpoch);
+ /**
+ * This function is used to notify the parent that it should display a
+ * onion services client authentication prompt.
+ *
+ * @param aOnionHost The hostname of the .onion that needs authentication.
+ * @param aTopic The reason for the prompt.
+ */
+ async ShowOnionServicesAuthPrompt(nsCString aOnionHost, nsCString aTopic);
+
child:
async NativeSynthesisResponse(uint64_t aObserverId, nsCString aResponse);
async FlushTabState(uint32_t aFlushId, bool aIsFinal);
diff --git a/js/xpconnect/src/xpc.msg b/js/xpconnect/src/xpc.msg
index d884c6a85999..31e5e75ba35c 100644
--- a/js/xpconnect/src/xpc.msg
+++ b/js/xpconnect/src/xpc.msg
@@ -253,5 +253,15 @@ XPC_MSG_DEF(NS_ERROR_FINGERPRINTING_URI , "The URI is fingerprinti
XPC_MSG_DEF(NS_ERROR_CRYPTOMINING_URI , "The URI is cryptomining")
XPC_MSG_DEF(NS_ERROR_SOCIALTRACKING_URI , "The URI is social tracking")
+/* Codes related to Tor */
+XPC_MSG_DEF(NS_ERROR_TOR_ONION_SVC_NOT_FOUND , "Tor onion service descriptor cannot be found")
+XPC_MSG_DEF(NS_ERROR_TOR_ONION_SVC_IS_INVALID , "Tor onion service descriptor is invalid")
+XPC_MSG_DEF(NS_ERROR_TOR_ONION_SVC_INTRO_FAILED , "Tor onion service introduction failed")
+XPC_MSG_DEF(NS_ERROR_TOR_ONION_SVC_REND_FAILED , "Tor onion service rendezvous failed")
+XPC_MSG_DEF(NS_ERROR_TOR_ONION_SVC_MISSING_CLIENT_AUTH, "Tor onion service missing client authorization")
+XPC_MSG_DEF(NS_ERROR_TOR_ONION_SVC_BAD_CLIENT_AUTH , "Tor onion service wrong client authorization")
+XPC_MSG_DEF(NS_ERROR_TOR_ONION_SVC_BAD_ADDRESS , "Tor onion service bad address")
+XPC_MSG_DEF(NS_ERROR_TOR_ONION_SVC_INTRO_TIMEDOUT , "Tor onion service introduction timed out")
+
/* Profile manager error codes */
XPC_MSG_DEF(NS_ERROR_DATABASE_CHANGED , "Flushing the profiles to disk would have overwritten changes made elsewhere.")
diff --git a/netwerk/base/nsSocketTransport2.cpp b/netwerk/base/nsSocketTransport2.cpp
index 7256280697c8..ce739e1f0de8 100644
--- a/netwerk/base/nsSocketTransport2.cpp
+++ b/netwerk/base/nsSocketTransport2.cpp
@@ -215,6 +215,12 @@ nsresult ErrorAccordingToNSPR(PRErrorCode errorCode) {
default:
if (psm::IsNSSErrorCode(errorCode)) {
rv = psm::GetXPCOMFromNSSError(errorCode);
+ } else {
+ // If we received a Tor extended error code via SOCKS, pass it through.
+ nsresult res = nsresult(errorCode);
+ if (NS_ERROR_GET_MODULE(res) == NS_ERROR_MODULE_TOR) {
+ rv = res;
+ }
}
break;
diff --git a/netwerk/socket/nsSOCKSIOLayer.cpp b/netwerk/socket/nsSOCKSIOLayer.cpp
index 6f2743ed5c71..57af13a7c026 100644
--- a/netwerk/socket/nsSOCKSIOLayer.cpp
+++ b/netwerk/socket/nsSOCKSIOLayer.cpp
@@ -1004,6 +1004,55 @@ PRStatus nsSOCKSSocketInfo::ReadV5ConnectResponseTop() {
"08, Address type not supported."));
c = PR_BAD_ADDRESS_ERROR;
break;
+ case 0xF0: // Tor SOCKS5_HS_NOT_FOUND
+ LOGERROR(
+ ("socks5: connect failed: F0,"
+ " Tor onion service descriptor can not be found."));
+ c = static_cast<uint32_t>(NS_ERROR_TOR_ONION_SVC_NOT_FOUND);
+ break;
+ case 0xF1: // Tor SOCKS5_HS_IS_INVALID
+ LOGERROR(
+ ("socks5: connect failed: F1,"
+ " Tor onion service descriptor is invalid."));
+ c = static_cast<uint32_t>(NS_ERROR_TOR_ONION_SVC_IS_INVALID);
+ break;
+ case 0xF2: // Tor SOCKS5_HS_INTRO_FAILED
+ LOGERROR(
+ ("socks5: connect failed: F2,"
+ " Tor onion service introduction failed."));
+ c = static_cast<uint32_t>(NS_ERROR_TOR_ONION_SVC_INTRO_FAILED);
+ break;
+ case 0xF3: // Tor SOCKS5_HS_REND_FAILED
+ LOGERROR(
+ ("socks5: connect failed: F3,"
+ " Tor onion service rendezvous failed."));
+ c = static_cast<uint32_t>(NS_ERROR_TOR_ONION_SVC_REND_FAILED);
+ break;
+ case 0xF4: // Tor SOCKS5_HS_MISSING_CLIENT_AUTH
+ LOGERROR(
+ ("socks5: connect failed: F4,"
+ " Tor onion service missing client authorization."));
+ c = static_cast<uint32_t>(NS_ERROR_TOR_ONION_SVC_MISSING_CLIENT_AUTH);
+ break;
+ case 0xF5: // Tor SOCKS5_HS_BAD_CLIENT_AUTH
+ LOGERROR(
+ ("socks5: connect failed: F5,"
+ " Tor onion service wrong client authorization."));
+ c = static_cast<uint32_t>(NS_ERROR_TOR_ONION_SVC_BAD_CLIENT_AUTH);
+ break;
+ case 0xF6: // Tor SOCKS5_HS_BAD_ADDRESS
+ LOGERROR(
+ ("socks5: connect failed: F6,"
+ " Tor onion service bad address."));
+ c = static_cast<uint32_t>(NS_ERROR_TOR_ONION_SVC_BAD_ADDRESS);
+ break;
+ case 0xF7: // Tor SOCKS5_HS_INTRO_TIMEDOUT
+ LOGERROR(
+ ("socks5: connect failed: F7,"
+ " Tor onion service introduction timed out."));
+ c = static_cast<uint32_t>(NS_ERROR_TOR_ONION_SVC_INTRO_TIMEDOUT);
+ break;
+
default:
LOGERROR(("socks5: connect failed."));
break;
diff --git a/toolkit/modules/PopupNotifications.jsm b/toolkit/modules/PopupNotifications.jsm
index d31f91ab00a5..6886c0b13c5d 100644
--- a/toolkit/modules/PopupNotifications.jsm
+++ b/toolkit/modules/PopupNotifications.jsm
@@ -406,6 +406,8 @@ PopupNotifications.prototype = {
* will be dismissed instead of removed after running the callback.
* - [optional] disabled (boolean): If this is true, the button
* will be disabled.
+ * - [optional] leaveOpen (boolean): If this is true, the notification
+ * will not be removed after running the callback.
* - [optional] disableHighlight (boolean): If this is true, the button
* will not apply the default highlight style.
* If null, the notification will have a default "OK" action button
@@ -1884,6 +1886,10 @@ PopupNotifications.prototype = {
this._dismiss();
return;
}
+
+ if (action.leaveOpen) {
+ return;
+ }
}
this._remove(notification);
diff --git a/toolkit/modules/RemotePageAccessManager.jsm b/toolkit/modules/RemotePageAccessManager.jsm
index 9734324cbd5f..eceaa7c857de 100644
--- a/toolkit/modules/RemotePageAccessManager.jsm
+++ b/toolkit/modules/RemotePageAccessManager.jsm
@@ -95,6 +95,7 @@ let RemotePageAccessManager = {
],
RPMPrefIsLocked: ["security.tls.version.min"],
RPMAddToHistogram: ["*"],
+ RPMGetTorStrings: ["*"],
},
"about:newinstall": {
RPMGetUpdateChannel: ["*"],
diff --git a/tools/lint/eslint/eslint-plugin-mozilla/lib/environments/frame-script.js b/tools/lint/eslint/eslint-plugin-mozilla/lib/environments/frame-script.js
index 28f5d864b0bd..cd0d6d4d3656 100644
--- a/tools/lint/eslint/eslint-plugin-mozilla/lib/environments/frame-script.js
+++ b/tools/lint/eslint/eslint-plugin-mozilla/lib/environments/frame-script.js
@@ -37,5 +37,6 @@ module.exports = {
RPMRecordTelemetryEvent: false,
RPMAddToHistogram: false,
RPMRemoveMessageListener: false,
+ RPMGetTorStrings: false,
},
};
diff --git a/xpcom/base/ErrorList.py b/xpcom/base/ErrorList.py
index 6b1a05a91b31..5f35cf7771f9 100755
--- a/xpcom/base/ErrorList.py
+++ b/xpcom/base/ErrorList.py
@@ -85,6 +85,7 @@ modules["URL_CLASSIFIER"] = Mod(42)
# ErrorResult gets its own module to reduce the chance of someone accidentally
# defining an error code matching one of the ErrorResult ones.
modules["ERRORRESULT"] = Mod(43)
+modules["TOR"] = Mod(44)
# NS_ERROR_MODULE_GENERAL should be used by modules that do not
# care if return code values overlap. Callers of methods that
@@ -1179,6 +1180,27 @@ with modules["ERRORRESULT"]:
errors["NS_ERROR_INTERNAL_ERRORRESULT_RANGEERROR"] = FAILURE(5)
+# =======================================================================
+# 44: Tor-specific error codes.
+# =======================================================================
+with modules["TOR"]:
+ # Tor onion service descriptor can not be found.
+ errors["NS_ERROR_TOR_ONION_SVC_NOT_FOUND"] = FAILURE(1)
+ # Tor onion service descriptor is invalid.
+ errors["NS_ERROR_TOR_ONION_SVC_IS_INVALID"] = FAILURE(2)
+ # Tor onion service introduction failed.
+ errors["NS_ERROR_TOR_ONION_SVC_INTRO_FAILED"] = FAILURE(3)
+ # Tor onion service rendezvous failed.
+ errors["NS_ERROR_TOR_ONION_SVC_REND_FAILED"] = FAILURE(4)
+ # Tor onion service missing client authorization.
+ errors["NS_ERROR_TOR_ONION_SVC_MISSING_CLIENT_AUTH"] = FAILURE(5)
+ # Tor onion service wrong client authorization.
+ errors["NS_ERROR_TOR_ONION_SVC_BAD_CLIENT_AUTH"] = FAILURE(6)
+ # Tor onion service bad address.
+ errors["NS_ERROR_TOR_ONION_SVC_BAD_ADDRESS"] = FAILURE(7)
+ # Tor onion service introduction timed out.
+ errors["NS_ERROR_TOR_ONION_SVC_INTRO_TIMEDOUT"] = FAILURE(8)
+
# =======================================================================
# 51: NS_ERROR_MODULE_GENERAL
# =======================================================================
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 24796 - Comment out excess permissions from GeckoView
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 96c6a2912ae8e2b8e1613854d79870e0f424d23f
Author: Matthew Finkel <Matthew.Finkel(a)gmail.com>
Date: Wed Apr 11 17:52:59 2018 +0000
Bug 24796 - Comment out excess permissions from GeckoView
The GeckoView AndroidManifest.xml is not preprocessed unlike Fennec's
manifest, so we can't use the ifdef preprocessor guards around the
permissions we do not want. Commenting the permissions is the
next-best-thing.
---
.../android/geckoview/src/main/AndroidManifest.xml | 20 +++++++++++++++++---
1 file changed, 17 insertions(+), 3 deletions(-)
diff --git a/mobile/android/geckoview/src/main/AndroidManifest.xml b/mobile/android/geckoview/src/main/AndroidManifest.xml
index 87ad6dc28047..4c8ab2a9d996 100644
--- a/mobile/android/geckoview/src/main/AndroidManifest.xml
+++ b/mobile/android/geckoview/src/main/AndroidManifest.xml
@@ -6,20 +6,32 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.mozilla.geckoview">
+<!--#ifdef MOZ_ANDROID_NETWORK_STATE-->
+ <!--
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
+ -->
+<!--#endif-->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
+<!--#ifdef MOZ_ANDROID_LOCATION-->
+ <!--
<uses-feature
android:name="android.hardware.location"
android:required="false"/>
<uses-feature
android:name="android.hardware.location.gps"
android:required="false"/>
+ -->
+<!--#endif-->
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false"/>
+<!--#ifdef MOZ_WEBRTC-->
+ <!-- TODO preprocess AndroidManifest.xml so that we can
+ conditionally include WebRTC permissions based on MOZ_WEBRTC. -->
+ <!--
<uses-feature
android:name="android.hardware.camera"
android:required="false"/>
@@ -28,14 +40,16 @@
android:required="false"/>
<uses-feature
- android:name="android.hardware.audio.low_latency"
+ android:name="android.hardware.camera.any"
android:required="false"/>
<uses-feature
- android:name="android.hardware.microphone"
+ android:name="android.hardware.audio.low_latency"
android:required="false"/>
<uses-feature
- android:name="android.hardware.camera.any"
+ android:name="android.hardware.microphone"
android:required="false"/>
+ -->
+<!--#endif-->
<!-- GeckoView requires OpenGL ES 2.0 -->
<uses-feature
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 31740: Remove some unnecessary RemoteSettings instances
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 81d4dc11341532cb99929aa292d7c1ff46a09926
Author: Alex Catarineu <acat(a)torproject.org>
Date: Wed Oct 16 23:01:12 2019 +0200
Bug 31740: Remove some unnecessary RemoteSettings instances
More concretely, SearchService.jsm 'hijack-blocklists' and
url-classifier-skip-urls.
Avoid creating instance for 'anti-tracking-url-decoration'.
If prefs are disabling their usage, avoid creating instances for
'cert-revocations' and 'intermediates'.
Do not ship JSON dumps for collections we do not expect to need. For
the ones in the 'main' bucket, this prevents them from being synced
unnecessarily (the code in remote-settings does so for collections
in the main bucket for which a dump or local data exists). For the
collections in the other buckets, we just save some size by not
shipping their dumps.
We also clear the collections database on the v2 -> v3 migration.
---
.../url-classifier/UrlClassifierFeatureBase.cpp | 2 +-
netwerk/url-classifier/components.conf | 6 ------
security/manager/ssl/RemoteSecuritySettings.jsm | 22 ++++++++++++++++++++++
services/settings/IDBHelpers.jsm | 4 ++++
services/settings/dumps/blocklists/moz.build | 1 -
services/settings/dumps/main/moz.build | 5 -----
services/settings/dumps/security-state/moz.build | 1 -
.../components/antitracking/antitracking.manifest | 2 +-
toolkit/components/antitracking/components.conf | 7 -------
toolkit/components/search/SearchService.jsm | 2 --
10 files changed, 28 insertions(+), 24 deletions(-)
diff --git a/netwerk/url-classifier/UrlClassifierFeatureBase.cpp b/netwerk/url-classifier/UrlClassifierFeatureBase.cpp
index 9bc7fc5d6e9a..3fb3b74a4f08 100644
--- a/netwerk/url-classifier/UrlClassifierFeatureBase.cpp
+++ b/netwerk/url-classifier/UrlClassifierFeatureBase.cpp
@@ -76,7 +76,7 @@ void UrlClassifierFeatureBase::InitializePreferences() {
nsCOMPtr<nsIUrlClassifierSkipListService> skipListService =
do_GetService("@mozilla.org/url-classifier/skip-list-service;1");
- if (NS_WARN_IF(!skipListService)) {
+ if (!skipListService) {
return;
}
diff --git a/netwerk/url-classifier/components.conf b/netwerk/url-classifier/components.conf
index 7f49d94b6488..b2e667247317 100644
--- a/netwerk/url-classifier/components.conf
+++ b/netwerk/url-classifier/components.conf
@@ -13,10 +13,4 @@ Classes = [
'constructor': 'mozilla::net::ChannelClassifierService::GetSingleton',
'headers': ['mozilla/net/ChannelClassifierService.h'],
},
- {
- 'cid': '{b9f4fd03-9d87-4bfd-9958-85a821750ddc}',
- 'contract_ids': ['@mozilla.org/url-classifier/skip-list-service;1'],
- 'jsm': 'resource://gre/modules/UrlClassifierSkipListService.jsm',
- 'constructor': 'UrlClassifierSkipListService',
- },
]
diff --git a/security/manager/ssl/RemoteSecuritySettings.jsm b/security/manager/ssl/RemoteSecuritySettings.jsm
index 199eeb5b58e1..96d6a7a2de48 100644
--- a/security/manager/ssl/RemoteSecuritySettings.jsm
+++ b/security/manager/ssl/RemoteSecuritySettings.jsm
@@ -350,6 +350,16 @@ var RemoteSecuritySettings = {
class IntermediatePreloads {
constructor() {
+ this.maybeInit();
+ }
+
+ maybeInit() {
+ if (
+ this.client ||
+ !Services.prefs.getBoolPref(INTERMEDIATES_ENABLED_PREF, true)
+ ) {
+ return;
+ }
this.client = RemoteSettings(
Services.prefs.getCharPref(INTERMEDIATES_COLLECTION_PREF),
{
@@ -379,6 +389,7 @@ class IntermediatePreloads {
);
return;
}
+ this.maybeInit();
// Download attachments that are awaiting download, up to a max.
const maxDownloadsPerRun = Services.prefs.getIntPref(
@@ -704,6 +715,16 @@ function compareFilters(filterA, filterB) {
class CRLiteFilters {
constructor() {
+ this.maybeInit();
+ }
+
+ maybeInit() {
+ if (
+ this.client ||
+ !Services.prefs.getBoolPref(CRLITE_FILTERS_ENABLED_PREF, true)
+ ) {
+ return;
+ }
this.client = RemoteSettings(
Services.prefs.getCharPref(CRLITE_FILTERS_COLLECTION_PREF),
{
@@ -729,6 +750,7 @@ class CRLiteFilters {
);
return;
}
+ this.maybeInit();
let current = await this.client.db.list();
let fullFilters = current.filter(filter => !filter.incremental);
if (fullFilters.length < 1) {
diff --git a/services/settings/IDBHelpers.jsm b/services/settings/IDBHelpers.jsm
index 5dc59c3687ef..010a5ea82987 100644
--- a/services/settings/IDBHelpers.jsm
+++ b/services/settings/IDBHelpers.jsm
@@ -188,6 +188,10 @@ async function openIDB(allowUpgrades = true) {
});
}
if (event.oldVersion < 3) {
+ // Clear existing stores for a fresh start
+ transaction.objectStore("records").clear();
+ transaction.objectStore("timestamps").clear();
+ transaction.objectStore("collections").clear();
// Attachment store
db.createObjectStore("attachments", {
keyPath: ["cid", "attachmentId"],
diff --git a/services/settings/dumps/blocklists/moz.build b/services/settings/dumps/blocklists/moz.build
index 1683ab6aafa4..dd0bad30f19a 100644
--- a/services/settings/dumps/blocklists/moz.build
+++ b/services/settings/dumps/blocklists/moz.build
@@ -9,7 +9,6 @@ with Files('**'):
# The addons blocklist is also in mobile/android/installer/package-manifest.in
FINAL_TARGET_FILES.defaults.settings.blocklists += ['addons-bloomfilters.json',
- 'addons.json',
'gfx.json',
'plugins.json']
diff --git a/services/settings/dumps/main/moz.build b/services/settings/dumps/main/moz.build
index 3628fa00b5e6..e25fc4214042 100644
--- a/services/settings/dumps/main/moz.build
+++ b/services/settings/dumps/main/moz.build
@@ -3,15 +3,10 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
FINAL_TARGET_FILES.defaults.settings.main += [
- 'anti-tracking-url-decoration.json',
'example.json',
'hijack-blocklists.json',
'language-dictionaries.json',
- 'onboarding.json',
- 'search-config.json',
'search-default-override-allowlist.json',
- 'sites-classification.json',
- 'url-classifier-skip-urls.json',
]
if CONFIG['MOZ_BUILD_APP'] == 'browser':
diff --git a/services/settings/dumps/security-state/moz.build b/services/settings/dumps/security-state/moz.build
index d8f8227a0278..37410d0fb054 100644
--- a/services/settings/dumps/security-state/moz.build
+++ b/services/settings/dumps/security-state/moz.build
@@ -3,7 +3,6 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
FINAL_TARGET_FILES.defaults.settings['security-state'] += [
- 'intermediates.json',
'onecrl.json',
]
diff --git a/toolkit/components/antitracking/antitracking.manifest b/toolkit/components/antitracking/antitracking.manifest
index 5eb37f9a3f99..872e6af07575 100644
--- a/toolkit/components/antitracking/antitracking.manifest
+++ b/toolkit/components/antitracking/antitracking.manifest
@@ -1 +1 @@
-category profile-after-change URLDecorationAnnotationsService @mozilla.org/tracking-url-decoration-service;1 process=main
+# category profile-after-change URLDecorationAnnotationsService @mozilla.org/tracking-url-decoration-service;1 process=main
diff --git a/toolkit/components/antitracking/components.conf b/toolkit/components/antitracking/components.conf
index ddd824522c16..cd46ed1046d5 100644
--- a/toolkit/components/antitracking/components.conf
+++ b/toolkit/components/antitracking/components.conf
@@ -11,13 +11,6 @@ Classes = [
'jsm': 'resource://gre/modules/TrackingDBService.jsm',
'constructor': 'TrackingDBService',
},
- {
- 'cid': '{5874af6d-5719-4e1b-b155-ef4eae7fcb32}',
- 'contract_ids': ['@mozilla.org/tracking-url-decoration-service;1'],
- 'jsm': 'resource://gre/modules/URLDecorationAnnotationsService.jsm',
- 'constructor': 'URLDecorationAnnotationsService',
- 'processes': ProcessSelector.MAIN_PROCESS_ONLY,
- },
{
'cid': '{90d1fd17-2018-4e16-b73c-a04a26fa6dd4}',
'contract_ids': ['@mozilla.org/purge-tracker-service;1'],
diff --git a/toolkit/components/search/SearchService.jsm b/toolkit/components/search/SearchService.jsm
index 608f3c475458..23cb3daa9fac 100644
--- a/toolkit/components/search/SearchService.jsm
+++ b/toolkit/components/search/SearchService.jsm
@@ -573,8 +573,6 @@ SearchService.prototype = {
)
.finally(() => (this._ensureKnownRegionPromise = null));
- this._setupRemoteSettings().catch(Cu.reportError);
-
await this._loadEngines(cache);
// If we've got this far, but the application is now shutting down,
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 32220: Improve the letterboxing experience
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit b909879efae1c687dfb2d75ba30b7466b0150f70
Author: Richard Pospesel <richard(a)torproject.org>
Date: Mon Oct 28 17:42:17 2019 -0700
Bug 32220: Improve the letterboxing experience
CSS and JS changes to alter the UX surrounding letterboxing. The
browser element containing page content is now anchored to the bottom
of the toolbar, and the remaining letterbox margin is the same color
as the firefox chrome. The letterbox margin and border are tied to
the currently selected theme.
Also adds a 'needsLetterbox' property to tabbrowser.xml to fix a race
condition present when using the 'isEmpty' property. Using 'isEmpty'
as a proxy for 'needsLetterbox' resulted in over-zealous/unnecessary
letterboxing of about:blank tabs.
---
browser/base/content/browser.css | 8 ++
browser/base/content/tabbrowser-tab.js | 9 +++
browser/themes/shared/tabs.inc.css | 6 ++
.../components/resistfingerprinting/RFPHelper.jsm | 94 +++++++++++++++++++---
4 files changed, 105 insertions(+), 12 deletions(-)
diff --git a/browser/base/content/browser.css b/browser/base/content/browser.css
index 808c03e88223..a0b1bf4a8951 100644
--- a/browser/base/content/browser.css
+++ b/browser/base/content/browser.css
@@ -85,6 +85,14 @@ body {
display: none;
}
+
+.browserStack > browser.letterboxing {
+ border-color: var(--chrome-content-separator-color);
+ border-style: solid;
+ border-width : 1px;
+ border-top: none;
+}
+
%ifdef MENUBAR_CAN_AUTOHIDE
#toolbar-menubar[autohide="true"] {
overflow: hidden;
diff --git a/browser/base/content/tabbrowser-tab.js b/browser/base/content/tabbrowser-tab.js
index 183eff1bab86..7f376ab1d122 100644
--- a/browser/base/content/tabbrowser-tab.js
+++ b/browser/base/content/tabbrowser-tab.js
@@ -225,6 +225,15 @@
return true;
}
+ get needsLetterbox() {
+ let browser = this.linkedBrowser;
+ if (isBlankPageURL(browser.currentURI.spec)) {
+ return false;
+ }
+
+ return true;
+ }
+
get lastAccessed() {
return this._lastAccessed == Infinity ? Date.now() : this._lastAccessed;
}
diff --git a/browser/themes/shared/tabs.inc.css b/browser/themes/shared/tabs.inc.css
index b47842af766c..019da6ecf76f 100644
--- a/browser/themes/shared/tabs.inc.css
+++ b/browser/themes/shared/tabs.inc.css
@@ -33,6 +33,12 @@
background-color: #f9f9fa;
}
+/* extend down the toolbar's colors when letterboxing is enabled*/
+#tabbrowser-tabpanels.letterboxing {
+ background-color: var(--toolbar-bgcolor);
+ background-image: var(--toolbar-bgimage);
+}
+
:root[privatebrowsingmode=temporary] #tabbrowser-tabpanels {
/* Value for --in-content-page-background in aboutPrivateBrowsing.css */
background-color: #25003e;
diff --git a/toolkit/components/resistfingerprinting/RFPHelper.jsm b/toolkit/components/resistfingerprinting/RFPHelper.jsm
index 49010d1c8cb1..b906a067fd63 100644
--- a/toolkit/components/resistfingerprinting/RFPHelper.jsm
+++ b/toolkit/components/resistfingerprinting/RFPHelper.jsm
@@ -40,6 +40,7 @@ class _RFPHelper {
// ============================================================================
constructor() {
this._initialized = false;
+ this._borderDimensions = null;
}
init() {
@@ -361,6 +362,24 @@ class _RFPHelper {
});
}
+ getBorderDimensions(aBrowser) {
+ if (this._borderDimensions) {
+ return this._borderDimensions;
+ }
+
+ const win = aBrowser.ownerGlobal;
+ const browserStyle = win.getComputedStyle(aBrowser);
+
+ this._borderDimensions = {
+ top : parseInt(browserStyle.borderTopWidth),
+ right: parseInt(browserStyle.borderRightWidth),
+ bottom : parseInt(browserStyle.borderBottomWidth),
+ left : parseInt(browserStyle.borderLeftWidth),
+ };
+
+ return this._borderDimensions;
+ }
+
_addOrClearContentMargin(aBrowser) {
let tab = aBrowser.getTabBrowser().getTabForBrowser(aBrowser);
@@ -369,9 +388,13 @@ class _RFPHelper {
return;
}
+ // we add the letterboxing class even if the content does not need letterboxing
+ // in which case margins are set such that the borders are hidden
+ aBrowser.classList.add("letterboxing");
+
// We should apply no margin around an empty tab or a tab with system
// principal.
- if (tab.isEmpty || aBrowser.contentPrincipal.isSystemPrincipal) {
+ if (!tab.needsLetterbox || aBrowser.contentPrincipal.isSystemPrincipal) {
this._clearContentViewMargin(aBrowser);
} else {
this._roundContentView(aBrowser);
@@ -539,10 +562,29 @@ class _RFPHelper {
// Calculating the margins around the browser element in order to round the
// content viewport. We will use a 200x100 stepping if the dimension set
// is not given.
- let margins = calcMargins(containerWidth, containerHeight);
+
+ const borderDimensions = this.getBorderDimensions(aBrowser);
+ const marginDims = calcMargins(containerWidth, containerHeight - borderDimensions.top);
+
+ let margins = {
+ top : 0,
+ right : 0,
+ bottom : 0,
+ left : 0,
+ };
+
+ // snap browser element to top
+ margins.top = 0;
+ // and leave 'double' margin at the bottom
+ margins.bottom = 2 * marginDims.height - borderDimensions.bottom;
+ // identical margins left and right
+ margins.right = marginDims.width - borderDimensions.right;
+ margins.left = marginDims.width - borderDimensions.left;
+
+ const marginStyleString = `${margins.top}px ${margins.right}px ${margins.bottom}px ${margins.left}px`;
// If the size of the content is already quantized, we do nothing.
- if (aBrowser.style.margin == `${margins.height}px ${margins.width}px`) {
+ if (aBrowser.style.margin === marginStyleString) {
log("_roundContentView[" + logId + "] is_rounded == true");
if (this._isLetterboxingTesting) {
log(
@@ -563,19 +605,35 @@ class _RFPHelper {
"_roundContentView[" +
logId +
"] setting margins to " +
- margins.width +
- " x " +
- margins.height
+ marginStyleString
);
- // One cannot (easily) control the color of a margin unfortunately.
- // An initial attempt to use a border instead of a margin resulted
- // in offset event dispatching; so for now we use a colorless margin.
- aBrowser.style.margin = `${margins.height}px ${margins.width}px`;
+
+ // The margin background color is determined by the background color of the
+ // window's tabpanels#tabbrowser-tabpanels element
+ aBrowser.style.margin = marginStyleString;
});
}
_clearContentViewMargin(aBrowser) {
+ const borderDimensions = this.getBorderDimensions(aBrowser);
+ // set the margins such that the browser elements border is visible up top, but
+ // are rendered off-screen on the remaining sides
+ let margins = {
+ top : 0,
+ right : -borderDimensions.right,
+ bottom : -borderDimensions.bottom,
+ left : -borderDimensions.left,
+ };
+ const marginStyleString = `${margins.top}px ${margins.right}px ${margins.bottom}px ${margins.left}px`;
+
+ aBrowser.ownerGlobal.requestAnimationFrame(() => {
+ aBrowser.style.margin = marginStyleString;
+ });
+ }
+
+ _removeLetterboxing(aBrowser) {
aBrowser.ownerGlobal.requestAnimationFrame(() => {
+ aBrowser.classList.remove("letterboxing");
aBrowser.style.margin = "";
});
}
@@ -593,6 +651,11 @@ class _RFPHelper {
aWindow.gBrowser.addTabsProgressListener(this);
aWindow.addEventListener("TabOpen", this);
+ const tabPanel = aWindow.document.getElementById("tabbrowser-tabpanels");
+ if (tabPanel) {
+ tabPanel.classList.add("letterboxing");
+ }
+
// Rounding the content viewport.
this._updateMarginsForTabsInWindow(aWindow);
}
@@ -616,10 +679,17 @@ class _RFPHelper {
tabBrowser.removeTabsProgressListener(this);
aWindow.removeEventListener("TabOpen", this);
- // Clear all margins and tooltip for all browsers.
+ // revert tabpanel's background colors to default
+ const tabPanel = aWindow.document.getElementById("tabbrowser-tabpanels");
+ if (tabPanel) {
+ tabPanel.classList.remove("letterboxing");
+ }
+
+ // and revert each browser element to default,
+ // restore default margins and remove letterboxing class
for (let tab of tabBrowser.tabs) {
let browser = tab.linkedBrowser;
- this._clearContentViewMargin(browser);
+ this._removeLetterboxing(browser);
}
}
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 32092: Fix Tor Browser Support link in preferences
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit afe22acb47164c659ea193abc19562ff0057c552
Author: Alex Catarineu <acat(a)torproject.org>
Date: Tue Oct 15 22:54:10 2019 +0200
Bug 32092: Fix Tor Browser Support link in preferences
---
browser/components/preferences/preferences.js | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/browser/components/preferences/preferences.js b/browser/components/preferences/preferences.js
index 089533f20ade..586e32e277cb 100644
--- a/browser/components/preferences/preferences.js
+++ b/browser/components/preferences/preferences.js
@@ -121,10 +121,7 @@ function init_all() {
gotoPref().then(() => {
let helpButton = document.getElementById("helpButton");
- let helpUrl =
- Services.urlFormatter.formatURLPref("app.support.baseURL") +
- "preferences";
- helpButton.setAttribute("href", helpUrl);
+ helpButton.setAttribute("href", "https://support.torproject.org/tbb");
document.getElementById("addonsButton").addEventListener("click", e => {
if (e.button >= 2) {
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 27604: Fix addon issues when moving TB directory
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 521891b840313ef44eaf9442472ccefaabc17b78
Author: Alex Catarineu <acat(a)torproject.org>
Date: Wed Oct 30 10:44:48 2019 +0100
Bug 27604: Fix addon issues when moving TB directory
---
toolkit/mozapps/extensions/internal/XPIProvider.jsm | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/toolkit/mozapps/extensions/internal/XPIProvider.jsm b/toolkit/mozapps/extensions/internal/XPIProvider.jsm
index bf31932b59f1..5e467fb4f14c 100644
--- a/toolkit/mozapps/extensions/internal/XPIProvider.jsm
+++ b/toolkit/mozapps/extensions/internal/XPIProvider.jsm
@@ -485,7 +485,7 @@ class XPIState {
// Builds prior to be 1512436 did not include the rootURI property.
// If we're updating from such a build, add that property now.
- if (!("rootURI" in this) && this.file) {
+ if (this.file) {
this.rootURI = getURIForResourceInFile(this.file, "").spec;
}
@@ -498,7 +498,10 @@ class XPIState {
saved.currentModifiedTime != this.lastModifiedTime
) {
this.lastModifiedTime = saved.currentModifiedTime;
- } else if (saved.currentModifiedTime === null) {
+ } else if (
+ saved.currentModifiedTime === null &&
+ (!this.file || !this.file.exists())
+ ) {
this.missing = true;
}
}
@@ -1439,6 +1442,7 @@ var XPIStates = {
if (oldState[loc.name]) {
loc.restore(oldState[loc.name]);
+ changed = changed || loc.path != oldState[loc.name].path;
}
changed = changed || loc.changed;
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 32658: Create a new MAR signing key
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 52970808706c7028ad2d0c40ae36a98bf96dffa8
Author: Georg Koppen <gk(a)torproject.org>
Date: Fri Jan 17 12:54:31 2020 +0000
Bug 32658: Create a new MAR signing key
It's time for our rotation again: Move the backup key in the front
position and add a new backup key.
squash! Bug 32658: Create a new MAR signing key
Bug 33803: Move our primary nightly MAR signing key to tor-browser
Bug 33803: Add a secondary nightly MAR signing key
---
.../update/updater/nightly_aurora_level3_primary.der | Bin 1225 -> 1245 bytes
.../updater/nightly_aurora_level3_secondary.der | Bin 1225 -> 1245 bytes
toolkit/mozapps/update/updater/release_primary.der | Bin 1225 -> 1229 bytes
toolkit/mozapps/update/updater/release_secondary.der | Bin 1225 -> 1229 bytes
4 files changed, 0 insertions(+), 0 deletions(-)
diff --git a/toolkit/mozapps/update/updater/nightly_aurora_level3_primary.der b/toolkit/mozapps/update/updater/nightly_aurora_level3_primary.der
index 44fd95dcff89..d579cf801e1a 100644
Binary files a/toolkit/mozapps/update/updater/nightly_aurora_level3_primary.der and b/toolkit/mozapps/update/updater/nightly_aurora_level3_primary.der differ
diff --git a/toolkit/mozapps/update/updater/nightly_aurora_level3_secondary.der b/toolkit/mozapps/update/updater/nightly_aurora_level3_secondary.der
index 90f8e6e82c63..7cbfa77d06e7 100644
Binary files a/toolkit/mozapps/update/updater/nightly_aurora_level3_secondary.der and b/toolkit/mozapps/update/updater/nightly_aurora_level3_secondary.der differ
diff --git a/toolkit/mozapps/update/updater/release_primary.der b/toolkit/mozapps/update/updater/release_primary.der
index 1d94f88ad73b..0103a171de88 100644
Binary files a/toolkit/mozapps/update/updater/release_primary.der and b/toolkit/mozapps/update/updater/release_primary.der differ
diff --git a/toolkit/mozapps/update/updater/release_secondary.der b/toolkit/mozapps/update/updater/release_secondary.der
index 474706c4b73c..fcee3944e9b7 100644
Binary files a/toolkit/mozapps/update/updater/release_secondary.der and b/toolkit/mozapps/update/updater/release_secondary.der differ
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Orfox: Centralized proxy applied to AbstractCommunicator and BaseResources.
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 148e5986a168229167d268822ed08b0527b1ca4b
Author: Amogh Pradeep <amoghbl1(a)gmail.com>
Date: Fri Jun 12 02:07:45 2015 -0400
Orfox: Centralized proxy applied to AbstractCommunicator and BaseResources.
See Bug 1357997 for partial uplift.
Also:
Bug 28051 - Use our Orbot for proxying our connections
Bug 31144 - ESR68 Network Code Review
---
.../main/java/org/mozilla/gecko/GeckoAppShell.java | 68 +++++++++++-----------
.../java/org/mozilla/gecko/util/BitmapUtils.java | 7 ---
.../java/org/mozilla/gecko/util/ProxySelector.java | 25 +++++++-
3 files changed, 59 insertions(+), 41 deletions(-)
diff --git a/mobile/android/geckoview/src/main/java/org/mozilla/gecko/GeckoAppShell.java b/mobile/android/geckoview/src/main/java/org/mozilla/gecko/GeckoAppShell.java
index 995b23316c32..b9ca73bee2eb 100644
--- a/mobile/android/geckoview/src/main/java/org/mozilla/gecko/GeckoAppShell.java
+++ b/mobile/android/geckoview/src/main/java/org/mozilla/gecko/GeckoAppShell.java
@@ -1764,39 +1764,41 @@ public class GeckoAppShell {
@WrapForJNI
private static URLConnection getConnection(final String url) {
- try {
- String spec;
- if (url.startsWith("android://")) {
- spec = url.substring(10);
- } else {
- spec = url.substring(8);
- }
-
- // Check if we are loading a package icon.
- try {
- if (spec.startsWith("icon/")) {
- String[] splits = spec.split("/");
- if (splits.length != 2) {
- return null;
- }
- final String pkg = splits[1];
- final PackageManager pm = getApplicationContext().getPackageManager();
- final Drawable d = pm.getApplicationIcon(pkg);
- final Bitmap bitmap = BitmapUtils.getBitmapFromDrawable(d);
- return new BitmapConnection(bitmap);
- }
- } catch (Exception ex) {
- Log.e(LOGTAG, "error", ex);
- }
-
- // if the colon got stripped, put it back
- int colon = spec.indexOf(':');
- if (colon == -1 || colon > spec.indexOf('/')) {
- spec = spec.replaceFirst("/", ":/");
- }
- } catch (Exception ex) {
- return null;
- }
+ // Bug 31144 - Prevent potential proxy-bypass
+
+ //try {
+ // String spec;
+ // if (url.startsWith("android://")) {
+ // spec = url.substring(10);
+ // } else {
+ // spec = url.substring(8);
+ // }
+
+ // // Check if we are loading a package icon.
+ // try {
+ // if (spec.startsWith("icon/")) {
+ // String[] splits = spec.split("/");
+ // if (splits.length != 2) {
+ // return null;
+ // }
+ // final String pkg = splits[1];
+ // final PackageManager pm = getApplicationContext().getPackageManager();
+ // final Drawable d = pm.getApplicationIcon(pkg);
+ // final Bitmap bitmap = BitmapUtils.getBitmapFromDrawable(d);
+ // return new BitmapConnection(bitmap);
+ // }
+ // } catch (Exception ex) {
+ // Log.e(LOGTAG, "error", ex);
+ // }
+
+ // // if the colon got stripped, put it back
+ // int colon = spec.indexOf(':');
+ // if (colon == -1 || colon > spec.indexOf('/')) {
+ // spec = spec.replaceFirst("/", ":/");
+ // }
+ //} catch (Exception ex) {
+ // return null;
+ //}
return null;
}
diff --git a/mobile/android/geckoview/src/main/java/org/mozilla/gecko/util/BitmapUtils.java b/mobile/android/geckoview/src/main/java/org/mozilla/gecko/util/BitmapUtils.java
index 73a69a3abd66..f795dacffb47 100644
--- a/mobile/android/geckoview/src/main/java/org/mozilla/gecko/util/BitmapUtils.java
+++ b/mobile/android/geckoview/src/main/java/org/mozilla/gecko/util/BitmapUtils.java
@@ -101,13 +101,6 @@ public final class BitmapUtils {
public static Bitmap decodeUrl(final URL url) {
InputStream stream = null;
- try {
- stream = url.openStream();
- } catch (IOException e) {
- Log.w(LOGTAG, "decodeUrl: IOException downloading " + url);
- return null;
- }
-
if (stream == null) {
Log.w(LOGTAG, "decodeUrl: stream not found downloading " + url);
return null;
diff --git a/mobile/android/geckoview/src/main/java/org/mozilla/gecko/util/ProxySelector.java b/mobile/android/geckoview/src/main/java/org/mozilla/gecko/util/ProxySelector.java
index 3940d3c84249..9515975f680a 100644
--- a/mobile/android/geckoview/src/main/java/org/mozilla/gecko/util/ProxySelector.java
+++ b/mobile/android/geckoview/src/main/java/org/mozilla/gecko/util/ProxySelector.java
@@ -29,6 +29,10 @@ import java.net.URLConnection;
import java.util.List;
public class ProxySelector {
+ private static final String TOR_PROXY_ADDRESS = "127.0.0.1";
+ private static final int TOR_SOCKS_PROXY_PORT = 9150;
+ private static final int TOR_HTTP_PROXY_PORT = 8218;
+
public static URLConnection openConnectionWithProxy(final URI uri) throws IOException {
java.net.ProxySelector ps = java.net.ProxySelector.getDefault();
Proxy proxy = Proxy.NO_PROXY;
@@ -39,7 +43,26 @@ public class ProxySelector {
}
}
- return uri.toURL().openConnection(proxy);
+ /* Ignore the proxy we found from the VM, only use Tor. We can probably
+ * safely use the logic in this class in the future. */
+ return uri.toURL().openConnection(getProxy());
+ }
+
+ public static Proxy getProxy() {
+ // TODO make configurable
+ return new Proxy(Proxy.Type.SOCKS, new InetSocketAddress(TOR_PROXY_ADDRESS, TOR_SOCKS_PROXY_PORT));
+ }
+
+ public static String getProxyHostAddress() {
+ return TOR_PROXY_ADDRESS;
+ }
+
+ public static int getSocksProxyPort() {
+ return TOR_SOCKS_PROXY_PORT;
+ }
+
+ public static int getHttpProxyPort() {
+ return TOR_HTTP_PROXY_PORT;
}
public ProxySelector() {
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 25741 - TBA: Disable GeckoNetworkManager
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 5ddaf16e7bbb41de95c94e5d9a3493ff44cf05ff
Author: Matthew Finkel <Matthew.Finkel(a)gmail.com>
Date: Thu Apr 26 22:22:51 2018 +0000
Bug 25741 - TBA: Disable GeckoNetworkManager
The browser should not need information related to the network
interface or network state, tor should take care of that.
---
.../src/main/java/org/mozilla/geckoview/GeckoRuntime.java | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoRuntime.java b/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoRuntime.java
index ed86dcc5c299..f5587dd7e59c 100644
--- a/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoRuntime.java
+++ b/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/GeckoRuntime.java
@@ -121,7 +121,9 @@ public final class GeckoRuntime implements Parcelable {
mPaused = false;
// Monitor network status and send change notifications to Gecko
// while active.
- GeckoNetworkManager.getInstance().start(GeckoAppShell.getApplicationContext());
+ if (BuildConfig.TOR_BROWSER_VERSION == "") {
+ GeckoNetworkManager.getInstance().start(GeckoAppShell.getApplicationContext());
+ }
}
@OnLifecycleEvent(Lifecycle.Event.ON_PAUSE)
@@ -129,7 +131,9 @@ public final class GeckoRuntime implements Parcelable {
Log.d(LOGTAG, "Lifecycle: onPause");
mPaused = true;
// Stop monitoring network status while inactive.
- GeckoNetworkManager.getInstance().stop();
+ if (BuildConfig.TOR_BROWSER_VERSION == "") {
+ GeckoNetworkManager.getInstance().stop();
+ }
GeckoThread.onPause();
}
}
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 28125 - Prevent non-Necko network connections
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit ed6ab267d2cfd01fc9827da5e212bfca3418afd1
Author: Matthew Finkel <Matthew.Finkel(a)gmail.com>
Date: Thu Oct 25 19:17:09 2018 +0000
Bug 28125 - Prevent non-Necko network connections
---
.../gecko/media/GeckoMediaDrmBridgeV21.java | 49 +---------------------
.../exoplayer2/upstream/DefaultHttpDataSource.java | 47 +--------------------
2 files changed, 3 insertions(+), 93 deletions(-)
diff --git a/mobile/android/geckoview/src/main/java/org/mozilla/gecko/media/GeckoMediaDrmBridgeV21.java b/mobile/android/geckoview/src/main/java/org/mozilla/gecko/media/GeckoMediaDrmBridgeV21.java
index 3ba59bfd6776..eb57b1013642 100644
--- a/mobile/android/geckoview/src/main/java/org/mozilla/gecko/media/GeckoMediaDrmBridgeV21.java
+++ b/mobile/android/geckoview/src/main/java/org/mozilla/gecko/media/GeckoMediaDrmBridgeV21.java
@@ -488,54 +488,7 @@ public class GeckoMediaDrmBridgeV21 implements GeckoMediaDrm {
@Override
protected Void doInBackground(final Void... params) {
- HttpURLConnection urlConnection = null;
- BufferedReader in = null;
- try {
- URI finalURI = new URI(mURL + "&signedRequest=" + URLEncoder.encode(new String(mDrmRequest), "UTF-8"));
- urlConnection = (HttpURLConnection) ProxySelector.openConnectionWithProxy(finalURI);
- urlConnection.setRequestMethod("POST");
- if (DEBUG) Log.d(LOGTAG, "Provisioning, posting url =" + finalURI.toString());
-
- // Add data
- urlConnection.setRequestProperty("Accept", "*/*");
- urlConnection.setRequestProperty("User-Agent", getCDMUserAgent());
- urlConnection.setRequestProperty("Content-Type", "application/json");
-
- // Execute HTTP Post Request
- urlConnection.connect();
-
- int responseCode = urlConnection.getResponseCode();
- if (responseCode == HttpURLConnection.HTTP_OK) {
- in = new BufferedReader(new InputStreamReader(urlConnection.getInputStream(), StringUtils.UTF_8));
- String inputLine;
- StringBuffer response = new StringBuffer();
-
- while ((inputLine = in.readLine()) != null) {
- response.append(inputLine);
- }
- in.close();
- mResponseBody = String.valueOf(response).getBytes(StringUtils.UTF_8);
- if (DEBUG) Log.d(LOGTAG, "Provisioning, response received.");
- if (mResponseBody != null) Log.d(LOGTAG, "response length=" + mResponseBody.length);
- } else {
- Log.d(LOGTAG, "Provisioning, server returned HTTP error code :" + responseCode);
- }
- } catch (IOException e) {
- Log.e(LOGTAG, "Got exception during posting provisioning request ...", e);
- } catch (URISyntaxException e) {
- Log.e(LOGTAG, "Got exception during creating uri ...", e);
- } finally {
- if (urlConnection != null) {
- urlConnection.disconnect();
- }
- try {
- if (in != null) {
- in.close();
- }
- } catch (IOException e) {
- Log.e(LOGTAG, "Exception during closing in ...", e);
- }
- }
+ Log.i(LOGTAG, "This is Tor Browser. Skipping.");
return null;
}
diff --git a/mobile/android/geckoview/src/thirdparty/java/org/mozilla/thirdparty/com/google/android/exoplayer2/upstream/DefaultHttpDataSource.java b/mobile/android/geckoview/src/thirdparty/java/org/mozilla/thirdparty/com/google/android/exoplayer2/upstream/DefaultHttpDataSource.java
index fdb44cc2ea1f..7a2044721d2d 100644
--- a/mobile/android/geckoview/src/thirdparty/java/org/mozilla/thirdparty/com/google/android/exoplayer2/upstream/DefaultHttpDataSource.java
+++ b/mobile/android/geckoview/src/thirdparty/java/org/mozilla/thirdparty/com/google/android/exoplayer2/upstream/DefaultHttpDataSource.java
@@ -395,51 +395,8 @@ public class DefaultHttpDataSource implements HttpDataSource {
*/
private HttpURLConnection makeConnection(URL url, byte[] postBody, long position,
long length, boolean allowGzip, boolean followRedirects) throws IOException, URISyntaxException {
- /**
- * Tor Project modified the way the connection object was created. For the sake of
- * simplicity, instead of duplicating the whole file we changed the connection object
- * to use the ProxySelector.
- */
- HttpURLConnection connection = (HttpURLConnection) ProxySelector.openConnectionWithProxy(url.toURI());
-
- connection.setConnectTimeout(connectTimeoutMillis);
- connection.setReadTimeout(readTimeoutMillis);
- if (defaultRequestProperties != null) {
- for (Map.Entry<String, String> property : defaultRequestProperties.getSnapshot().entrySet()) {
- connection.setRequestProperty(property.getKey(), property.getValue());
- }
- }
- for (Map.Entry<String, String> property : requestProperties.getSnapshot().entrySet()) {
- connection.setRequestProperty(property.getKey(), property.getValue());
- }
- if (!(position == 0 && length == C.LENGTH_UNSET)) {
- String rangeRequest = "bytes=" + position + "-";
- if (length != C.LENGTH_UNSET) {
- rangeRequest += (position + length - 1);
- }
- connection.setRequestProperty("Range", rangeRequest);
- }
- connection.setRequestProperty("User-Agent", userAgent);
- if (!allowGzip) {
- connection.setRequestProperty("Accept-Encoding", "identity");
- }
- connection.setInstanceFollowRedirects(followRedirects);
- connection.setDoOutput(postBody != null);
- if (postBody != null) {
- connection.setRequestMethod("POST");
- if (postBody.length == 0) {
- connection.connect();
- } else {
- connection.setFixedLengthStreamingMode(postBody.length);
- connection.connect();
- OutputStream os = connection.getOutputStream();
- os.write(postBody);
- os.close();
- }
- } else {
- connection.connect();
- }
- return connection;
+ Log.i(TAG, "This is Tor Browser. Skipping.");
+ throw new IOException();
}
/**
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 21952: Implement Onion-Location
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit fe826fc7b5b74b0f1325d922619fc09f259bf321
Author: Alex Catarineu <acat(a)torproject.org>
Date: Thu Mar 5 22:16:39 2020 +0100
Bug 21952: Implement Onion-Location
Whenever a valid Onion-Location HTTP header (or corresponding HTML
<meta> http-equiv attribute) is found in a document load, we either
redirect to it (if the user opted-in via preference) or notify the
presence of an onionsite alternative with a badge in the urlbar.
---
browser/base/content/browser.js | 12 ++
browser/base/content/browser.xhtml | 3 +
browser/components/BrowserGlue.jsm | 9 ++
.../onionservices/OnionLocationChild.jsm | 43 ++++++
.../onionservices/OnionLocationParent.jsm | 161 +++++++++++++++++++++
.../content/onionlocation-notification-icons.css | 5 +
.../onionservices/content/onionlocation-urlbar.css | 27 ++++
.../content/onionlocation-urlbar.inc.xhtml | 10 ++
.../onionservices/content/onionlocation.svg | 3 +
.../content/onionlocationPreferences.inc.xhtml | 11 ++
.../content/onionlocationPreferences.js | 31 ++++
browser/components/onionservices/jar.mn | 2 +
browser/components/onionservices/moz.build | 2 +
browser/components/preferences/privacy.inc.xhtml | 2 +
browser/components/preferences/privacy.js | 17 +++
browser/themes/shared/notification-icons.inc.css | 2 +
browser/themes/shared/urlbar-searchbar.inc.css | 2 +
dom/base/Document.cpp | 34 ++++-
dom/base/Document.h | 2 +
dom/webidl/Document.webidl | 9 ++
modules/libpref/init/StaticPrefList.yaml | 5 +
xpcom/ds/StaticAtoms.py | 1 +
22 files changed, 392 insertions(+), 1 deletion(-)
diff --git a/browser/base/content/browser.js b/browser/base/content/browser.js
index bd5f10cb6f64..04f8752b93f4 100644
--- a/browser/base/content/browser.js
+++ b/browser/base/content/browser.js
@@ -44,6 +44,7 @@ XPCOMUtils.defineLazyModuleGetters(this, {
NetUtil: "resource://gre/modules/NetUtil.jsm",
NewTabUtils: "resource://gre/modules/NewTabUtils.jsm",
OpenInTabsUtils: "resource:///modules/OpenInTabsUtils.jsm",
+ OnionLocationParent: "resource:///modules/OnionLocationParent.jsm",
PageActions: "resource:///modules/PageActions.jsm",
PageThumbs: "resource://gre/modules/PageThumbs.jsm",
PanelMultiView: "resource:///modules/PanelMultiView.jsm",
@@ -5422,6 +5423,7 @@ var XULBrowserWindow = {
Services.obs.notifyObservers(null, "touchbar-location-change", location);
UpdateBackForwardCommands(gBrowser.webNavigation);
ReaderParent.updateReaderButton(gBrowser.selectedBrowser);
+ OnionLocationParent.updateOnionLocationBadge(gBrowser.selectedBrowser);
if (!gMultiProcessBrowser) {
// Bug 1108553 - Cannot rotate images with e10s
@@ -5964,6 +5966,16 @@ const AccessibilityRefreshBlocker = {
var TabsProgressListener = {
onStateChange(aBrowser, aWebProgress, aRequest, aStateFlags, aStatus) {
+ // Clear OnionLocation UI
+ if (
+ aStateFlags & Ci.nsIWebProgressListener.STATE_START &&
+ aStateFlags & Ci.nsIWebProgressListener.STATE_IS_NETWORK &&
+ aRequest &&
+ aWebProgress.isTopLevel
+ ) {
+ OnionLocationParent.onStateChange(aBrowser);
+ }
+
// Collect telemetry data about tab load times.
if (
aWebProgress.isTopLevel &&
diff --git a/browser/base/content/browser.xhtml b/browser/base/content/browser.xhtml
index 4cab5fad6475..c2caecc1a416 100644
--- a/browser/base/content/browser.xhtml
+++ b/browser/base/content/browser.xhtml
@@ -1077,6 +1077,9 @@
onclick="FullZoom.reset();"
tooltip="dynamic-shortcut-tooltip"
hidden="true"/>
+
+#include ../../components/onionservices/content/onionlocation-urlbar.inc.xhtml
+
<box id="pageActionSeparator" class="urlbar-page-action"/>
<image id="pageActionButton"
class="urlbar-icon urlbar-page-action"
diff --git a/browser/components/BrowserGlue.jsm b/browser/components/BrowserGlue.jsm
index d30abff54562..e08e461a27ff 100644
--- a/browser/components/BrowserGlue.jsm
+++ b/browser/components/BrowserGlue.jsm
@@ -539,6 +539,13 @@ let LEGACY_ACTORS = {
observers: ["keyword-uri-fixup"],
},
},
+ OnionLocation: {
+ child: {
+ module: "resource:///modules/OnionLocationChild.jsm",
+ events: { pageshow: {} },
+ messages: ["OnionLocation:Refresh"],
+ },
+ },
};
if (AppConstants.TOR_BROWSER_UPDATE) {
@@ -713,6 +720,7 @@ XPCOMUtils.defineLazyModuleGetters(this, {
XPCOMUtils.defineLazyModuleGetters(this, {
AboutLoginsParent: "resource:///modules/AboutLoginsParent.jsm",
AsyncPrefs: "resource://gre/modules/AsyncPrefs.jsm",
+ OnionLocationParent: "resource:///modules/OnionLocationParent.jsm",
PluginManager: "resource:///actors/PluginParent.jsm",
ReaderParent: "resource:///modules/ReaderParent.jsm",
});
@@ -816,6 +824,7 @@ const listeners = {
"AboutLogins:VulnerableLogins": ["AboutLoginsParent"],
"Reader:FaviconRequest": ["ReaderParent"],
"Reader:UpdateReaderButton": ["ReaderParent"],
+ "OnionLocation:Set": ["OnionLocationParent"],
},
observe(subject, topic, data) {
diff --git a/browser/components/onionservices/OnionLocationChild.jsm b/browser/components/onionservices/OnionLocationChild.jsm
new file mode 100644
index 000000000000..1059eb7d5925
--- /dev/null
+++ b/browser/components/onionservices/OnionLocationChild.jsm
@@ -0,0 +1,43 @@
+// Copyright (c) 2020, The Tor Project, Inc.
+
+"use strict";
+
+var EXPORTED_SYMBOLS = ["OnionLocationChild"];
+
+const { ActorChild } = ChromeUtils.import(
+ "resource://gre/modules/ActorChild.jsm"
+);
+
+class OnionLocationChild extends ActorChild {
+ handleEvent(event) {
+ this.onPageShow(event);
+ }
+
+ onPageShow(event) {
+ if (event.target != this.content.document) {
+ return;
+ }
+ const onionLocationURI = this.content.document.onionLocationURI;
+ if (onionLocationURI) {
+ this.mm.sendAsyncMessage("OnionLocation:Set");
+ }
+ }
+
+ receiveMessage(aMessage) {
+ if (aMessage.name == "OnionLocation:Refresh") {
+ const doc = this.content.document;
+ const docShell = this.mm.docShell;
+ const onionLocationURI = doc.onionLocationURI;
+ const refreshURI = docShell.QueryInterface(Ci.nsIRefreshURI);
+ if (onionLocationURI && refreshURI) {
+ refreshURI.refreshURI(
+ onionLocationURI,
+ doc.nodePrincipal,
+ 0,
+ false,
+ true
+ );
+ }
+ }
+ }
+}
diff --git a/browser/components/onionservices/OnionLocationParent.jsm b/browser/components/onionservices/OnionLocationParent.jsm
new file mode 100644
index 000000000000..1c79fc07d215
--- /dev/null
+++ b/browser/components/onionservices/OnionLocationParent.jsm
@@ -0,0 +1,161 @@
+// Copyright (c) 2020, The Tor Project, Inc.
+
+"use strict";
+
+var EXPORTED_SYMBOLS = ["OnionLocationParent"];
+
+const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
+const { TorStrings } = ChromeUtils.import("resource:///modules/TorStrings.jsm");
+
+// Prefs
+const NOTIFICATION_PREF = "privacy.prioritizeonions.showNotification";
+const PRIORITIZE_ONIONS_PREF = "privacy.prioritizeonions.enabled";
+
+// Element IDs
+const ONIONLOCATION_BOX_ID = "onion-location-box";
+const ONIONLOCATION_BUTTON_ID = "onion-location-button";
+const ONIONLOCATION_LABEL_ID = "onion-label";
+
+// Notification IDs
+const NOTIFICATION_ID = "onion-location";
+const NOTIFICATION_ANCHOR_ID = "onionlocation";
+
+// Strings
+const STRING_ONION_AVAILABLE = TorStrings.onionLocation.onionAvailable;
+const NOTIFICATION_CANCEL_LABEL = TorStrings.onionLocation.notNow;
+const NOTIFICATION_CANCEL_ACCESSKEY = TorStrings.onionLocation.notNowAccessKey;
+const NOTIFICATION_OK_LABEL = TorStrings.onionLocation.alwaysPrioritize;
+const NOTIFICATION_OK_ACCESSKEY =
+ TorStrings.onionLocation.alwaysPrioritizeAccessKey;
+const NOTIFICATION_TITLE = TorStrings.onionLocation.tryThis;
+const NOTIFICATION_DESCRIPTION = TorStrings.onionLocation.description;
+const NOTIFICATION_LEARN_MORE_URL = TorStrings.onionLocation.learnMoreURL;
+
+var OnionLocationParent = {
+ // Listeners are added in BrowserGlue.jsm
+ receiveMessage(aMsg) {
+ switch (aMsg.name) {
+ case "OnionLocation:Set":
+ this.setOnionLocation(aMsg.target);
+ break;
+ }
+ },
+
+ buttonClick(event) {
+ if (event.button != 0) {
+ return;
+ }
+ const win = event.target.ownerGlobal;
+ const browser = win.gBrowser.selectedBrowser;
+ this.redirect(browser);
+ },
+
+ redirect(browser) {
+ browser.messageManager.sendAsyncMessage("OnionLocation:Refresh");
+ this.setDisabled(browser);
+ },
+
+ onStateChange(browser) {
+ delete browser._onionLocation;
+ this.hideNotification(browser);
+ },
+
+ setOnionLocation(browser) {
+ const win = browser.ownerGlobal;
+ browser._onionLocation = true;
+ if (browser === win.gBrowser.selectedBrowser) {
+ this.updateOnionLocationBadge(browser);
+ }
+ },
+
+ hideNotification(browser) {
+ const win = browser.ownerGlobal;
+ if (browser._onionLocationPrompt) {
+ win.PopupNotifications.remove(browser._onionLocationPrompt);
+ }
+ },
+
+ showNotification(browser) {
+ const mustShow = Services.prefs.getBoolPref(NOTIFICATION_PREF, true);
+ if (!mustShow) {
+ return;
+ }
+
+ const win = browser.ownerGlobal;
+ Services.prefs.setBoolPref(NOTIFICATION_PREF, false);
+
+ const mainAction = {
+ label: NOTIFICATION_OK_LABEL,
+ accessKey: NOTIFICATION_OK_ACCESSKEY,
+ callback() {
+ Services.prefs.setBoolPref(PRIORITIZE_ONIONS_PREF, true);
+ OnionLocationParent.redirect(browser);
+ win.openPreferences("privacy-onionservices");
+ },
+ };
+
+ const cancelAction = {
+ label: NOTIFICATION_CANCEL_LABEL,
+ accessKey: NOTIFICATION_CANCEL_ACCESSKEY,
+ callback: () => {},
+ };
+
+ const options = {
+ autofocus: true,
+ persistent: true,
+ removeOnDismissal: false,
+ eventCallback(aTopic) {
+ if (aTopic === "removed") {
+ delete browser._onionLocationPrompt;
+ delete browser.onionpopupnotificationanchor;
+ }
+ },
+ learnMoreURL: NOTIFICATION_LEARN_MORE_URL,
+ displayURI: {
+ hostPort: NOTIFICATION_TITLE, // This is hacky, but allows us to have a title without extra markup/css.
+ },
+ hideClose: true,
+ popupIconClass: "onionlocation-notification-icon",
+ };
+
+ // A hacky way of setting the popup anchor outside the usual url bar icon box
+ // onionlocationpopupnotificationanchor comes from `${ANCHOR_ID}popupnotificationanchor`
+ // From https://searchfox.org/mozilla-esr68/rev/080f9ed47742644d2ff84f7aa0b10aea5c4…
+ browser.onionlocationpopupnotificationanchor = win.document.getElementById(
+ ONIONLOCATION_BUTTON_ID
+ );
+
+ browser._onionLocationPrompt = win.PopupNotifications.show(
+ browser,
+ NOTIFICATION_ID,
+ NOTIFICATION_DESCRIPTION,
+ NOTIFICATION_ANCHOR_ID,
+ mainAction,
+ [cancelAction],
+ options
+ );
+ },
+
+ setEnabled(browser) {
+ const win = browser.ownerGlobal;
+ const label = win.document.getElementById(ONIONLOCATION_LABEL_ID);
+ label.textContent = STRING_ONION_AVAILABLE;
+ const elem = win.document.getElementById(ONIONLOCATION_BOX_ID);
+ elem.removeAttribute("hidden");
+ },
+
+ setDisabled(browser) {
+ const win = browser.ownerGlobal;
+ const elem = win.document.getElementById(ONIONLOCATION_BOX_ID);
+ elem.setAttribute("hidden", true);
+ },
+
+ updateOnionLocationBadge(browser) {
+ if (browser._onionLocation) {
+ this.setEnabled(browser);
+ this.showNotification(browser);
+ } else {
+ this.setDisabled(browser);
+ }
+ },
+};
diff --git a/browser/components/onionservices/content/onionlocation-notification-icons.css b/browser/components/onionservices/content/onionlocation-notification-icons.css
new file mode 100644
index 000000000000..7c8a6d892c6f
--- /dev/null
+++ b/browser/components/onionservices/content/onionlocation-notification-icons.css
@@ -0,0 +1,5 @@
+/* Copyright (c) 2020, The Tor Project, Inc. */
+
+.onionlocation-notification-icon {
+ display: none;
+}
\ No newline at end of file
diff --git a/browser/components/onionservices/content/onionlocation-urlbar.css b/browser/components/onionservices/content/onionlocation-urlbar.css
new file mode 100644
index 000000000000..91cad5f178d1
--- /dev/null
+++ b/browser/components/onionservices/content/onionlocation-urlbar.css
@@ -0,0 +1,27 @@
+/* Copyright (c) 2020, The Tor Project, Inc. */
+
+#onion-location-button {
+ list-style-image: url(chrome://browser/content/onionservices/onionlocation.svg);
+}
+
+#onion-location-box {
+ border-radius: 3px;
+ background-color: #6200A4;
+ padding-left: 5px;
+ padding-right: 5px;
+ color: white;
+ -moz-context-properties: fill;
+ fill: white;
+}
+
+#onion-location-box:hover {
+ background-color: #0060DF !important;
+}
+
+toolbar[brighttext] #onion-location-box {
+ background-color: #9400ff;
+}
+
+toolbar[brighttext] #onion-location-box:hover {
+ background-color: #0060DF !important;
+}
diff --git a/browser/components/onionservices/content/onionlocation-urlbar.inc.xhtml b/browser/components/onionservices/content/onionlocation-urlbar.inc.xhtml
new file mode 100644
index 000000000000..b612a4236f3c
--- /dev/null
+++ b/browser/components/onionservices/content/onionlocation-urlbar.inc.xhtml
@@ -0,0 +1,10 @@
+# Copyright (c) 2020, The Tor Project, Inc.
+
+<hbox id="onion-location-box"
+ class="urlbar-icon-wrapper urlbar-page-action"
+ role="button"
+ hidden="true"
+ onclick="OnionLocationParent.buttonClick(event);">
+ <image id="onion-location-button" role="presentation"/>
+ <hbox id="onion-label-container"><label id="onion-label"/></hbox>
+</hbox>
diff --git a/browser/components/onionservices/content/onionlocation.svg b/browser/components/onionservices/content/onionlocation.svg
new file mode 100644
index 000000000000..37f40ac1812f
--- /dev/null
+++ b/browser/components/onionservices/content/onionlocation.svg
@@ -0,0 +1,3 @@
+<svg width="16" height="16" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <path fill="context-fill" fill-opacity="context-fill-opacity" d="m8.016411 14.54499v-0.969784c3.071908-0.0089 5.559239-2.501304 5.559239-5.575429 0-3.073903-2.487331-5.566336-5.559239-5.575206v-0.9697843c3.607473 0.00909 6.528802 2.935521 6.528802 6.544991 0 3.609691-2.921329 6.536342-6.528802 6.545213zm0-3.394356c1.732661-0.0091 3.135111-1.415756 3.135111-3.150857 0-1.734878-1.402451-3.141542-3.135111-3.150634v-0.9695626c2.268448 0.00887 4.104895 1.849753 4.104895 4.120197 0 2.270666-1.836447 4.111549-4.104895 4.120419zm0-4.846926c0.9294227 0.00887 1.680545 0.7644289 1.680545 1.696069 0 0.9318627-0.7511226 1.687421-1.680545 1.696291zm-8.016411 1.696069c0 4.418473 3.581527 8.000222 8 8.000222 4.418251 0 8-3.581749 8-8.000222 0-4.418251-3.581749-7.999778-8-7.999778-4.418473 0-8 3.581527-8 7.999778z" />
+</svg>
\ No newline at end of file
diff --git a/browser/components/onionservices/content/onionlocationPreferences.inc.xhtml b/browser/components/onionservices/content/onionlocationPreferences.inc.xhtml
new file mode 100644
index 000000000000..c285f403f99b
--- /dev/null
+++ b/browser/components/onionservices/content/onionlocationPreferences.inc.xhtml
@@ -0,0 +1,11 @@
+# Copyright (c) 2020, The Tor Project, Inc.
+
+<groupbox id="onionServicesGroup" data-category="panePrivacy" data-subcategory="onionservices" hidden="true">
+ <label><html:h2 id="onionServicesTitle"></html:h2></label>
+ <label><label class="tail-with-learn-more" id="prioritizeOnionsDesc"></label><label
+ class="learnMore" is="text-link" id="onionServicesLearnMore"></label></label>
+ <radiogroup id="prioritizeOnionsRadioGroup" aria-labelledby="prioritizeOnionsDesc" preference="privacy.prioritizeonions.enabled">
+ <radio id="onionServicesRadioAlways" value="true"/>
+ <radio id="onionServicesRadioAsk" value="false"/>
+ </radiogroup>
+</groupbox>
diff --git a/browser/components/onionservices/content/onionlocationPreferences.js b/browser/components/onionservices/content/onionlocationPreferences.js
new file mode 100644
index 000000000000..aa569b54721c
--- /dev/null
+++ b/browser/components/onionservices/content/onionlocationPreferences.js
@@ -0,0 +1,31 @@
+// Copyright (c) 2020, The Tor Project, Inc.
+
+"use strict";
+
+ChromeUtils.defineModuleGetter(
+ this,
+ "TorStrings",
+ "resource:///modules/TorStrings.jsm"
+);
+
+const OnionLocationPreferences = {
+ init() {
+ document.getElementById("onionServicesTitle").textContent =
+ TorStrings.onionLocation.onionServicesTitle;
+ document.getElementById("prioritizeOnionsDesc").textContent =
+ TorStrings.onionLocation.prioritizeOnionsDescription;
+ const learnMore = document.getElementById("onionServicesLearnMore");
+ learnMore.textContent = TorStrings.onionLocation.learnMore;
+ learnMore.href = TorStrings.onionLocation.learnMoreURL;
+ document.getElementById("onionServicesRadioAlways").label =
+ TorStrings.onionLocation.always;
+ document.getElementById("onionServicesRadioAsk").label =
+ TorStrings.onionLocation.askEverytime;
+ },
+};
+
+Object.defineProperty(this, "OnionLocationPreferences", {
+ value: OnionLocationPreferences,
+ enumerable: true,
+ writable: false,
+});
diff --git a/browser/components/onionservices/jar.mn b/browser/components/onionservices/jar.mn
index 9d6ce88d1841..f45b16dc5d29 100644
--- a/browser/components/onionservices/jar.mn
+++ b/browser/components/onionservices/jar.mn
@@ -7,3 +7,5 @@ browser.jar:
content/browser/onionservices/onionservices.css (content/onionservices.css)
content/browser/onionservices/savedKeysDialog.js (content/savedKeysDialog.js)
content/browser/onionservices/savedKeysDialog.xhtml (content/savedKeysDialog.xhtml)
+ content/browser/onionservices/onionlocationPreferences.js (content/onionlocationPreferences.js)
+ content/browser/onionservices/onionlocation.svg (content/onionlocation.svg)
diff --git a/browser/components/onionservices/moz.build b/browser/components/onionservices/moz.build
index e4b6d73f8f40..dfd664df434e 100644
--- a/browser/components/onionservices/moz.build
+++ b/browser/components/onionservices/moz.build
@@ -4,4 +4,6 @@ EXTRA_JS_MODULES += [
'ExtensionMessaging.jsm',
'HttpsEverywhereControl.jsm',
'OnionAliasStore.jsm',
+ 'OnionLocationChild.jsm',
+ 'OnionLocationParent.jsm',
]
diff --git a/browser/components/preferences/privacy.inc.xhtml b/browser/components/preferences/privacy.inc.xhtml
index eb7587afa0e1..6e05405079bf 100644
--- a/browser/components/preferences/privacy.inc.xhtml
+++ b/browser/components/preferences/privacy.inc.xhtml
@@ -14,6 +14,8 @@
<html:h1 data-l10n-id="privacy-header"/>
</hbox>
+#include ../onionservices/content/onionlocationPreferences.inc.xhtml
+
<!-- Tracking / Content Blocking -->
<groupbox id="trackingGroup" data-category="panePrivacy" hidden="true" aria-describedby="contentBlockingDescription">
<label id="contentBlockingHeader"><html:h2 data-l10n-id="content-blocking-enhanced-tracking-protection"/></label>
diff --git a/browser/components/preferences/privacy.js b/browser/components/preferences/privacy.js
index 41dda96a14de..92f35dc78d12 100644
--- a/browser/components/preferences/privacy.js
+++ b/browser/components/preferences/privacy.js
@@ -90,6 +90,12 @@ XPCOMUtils.defineLazyScriptGetter(
"chrome://browser/content/securitylevel/securityLevel.js"
);
+XPCOMUtils.defineLazyScriptGetter(
+ this,
+ ["OnionLocationPreferences"],
+ "chrome://browser/content/onionservices/onionlocationPreferences.js"
+);
+
XPCOMUtils.defineLazyServiceGetter(
this,
"listManager",
@@ -158,6 +164,9 @@ Preferences.addAll([
// Do not track
{ id: "privacy.donottrackheader.enabled", type: "bool" },
+ // Onion Location
+ { id: "privacy.prioritizeonions.enabled", type: "bool" },
+
// Media
{ id: "media.autoplay.default", type: "int" },
@@ -300,6 +309,13 @@ var gPrivacyPane = {
window.addEventListener("unload", unload);
},
+ /**
+ * Show the OnionLocation preferences UI
+ */
+ _initOnionLocation() {
+ OnionLocationPreferences.init();
+ },
+
/**
* Whether the prompt to restart Firefox should appear when changing the autostart pref.
*/
@@ -442,6 +458,7 @@ var gPrivacyPane = {
this._initTrackingProtectionExtensionControl();
OnionServicesAuthPreferences.init();
this._initSecurityLevel();
+ this._initOnionLocation();
Services.telemetry.setEventRecordingEnabled("pwmgr", true);
diff --git a/browser/themes/shared/notification-icons.inc.css b/browser/themes/shared/notification-icons.inc.css
index 979ae9482244..7aa92d51f4d6 100644
--- a/browser/themes/shared/notification-icons.inc.css
+++ b/browser/themes/shared/notification-icons.inc.css
@@ -415,3 +415,5 @@ html|*#webRTC-previewVideo {
background: #FFE900 url(chrome://browser/skin/notification-icons/update.svg) no-repeat center;
border-radius: 50%;
}
+
+%include ../../components/onionservices/content/onionlocation-notification-icons.css
\ No newline at end of file
diff --git a/browser/themes/shared/urlbar-searchbar.inc.css b/browser/themes/shared/urlbar-searchbar.inc.css
index 0b1f69342995..d3cc6bf7f024 100644
--- a/browser/themes/shared/urlbar-searchbar.inc.css
+++ b/browser/themes/shared/urlbar-searchbar.inc.css
@@ -824,3 +824,5 @@
.searchbar-search-button:hover:not([addengines=true]) > .searchbar-search-icon-overlay:-moz-locale-dir(rtl) {
margin-inline: -26px 20px;
}
+
+%include ../../components/onionservices/content/onionlocation-urlbar.css
diff --git a/dom/base/Document.cpp b/dom/base/Document.cpp
index 132c0ecbfdac..afc872569519 100644
--- a/dom/base/Document.cpp
+++ b/dom/base/Document.cpp
@@ -2542,6 +2542,7 @@ void Document::ResetToURI(nsIURI* aURI, nsILoadGroup* aLoadGroup,
// mDocumentURI.
mDocumentBaseURI = nullptr;
mChromeXHRDocBaseURI = nullptr;
+ mOnionLocationURI = nullptr;
// Check if the current document is the top-level DevTools document.
// For inner DevTools frames, mIsDevToolsDocument will be set when
@@ -6026,6 +6027,22 @@ void Document::GetHeaderData(nsAtom* aHeaderField, nsAString& aData) const {
}
}
+static bool IsValidOnionLocation(nsIURI* aDocumentURI,
+ nsIURI* aOnionLocationURI) {
+ bool isHttpish;
+ nsAutoCString host;
+ return aDocumentURI && aOnionLocationURI &&
+ NS_SUCCEEDED(aDocumentURI->SchemeIs("https", &isHttpish)) &&
+ isHttpish && NS_SUCCEEDED(aDocumentURI->GetAsciiHost(host)) &&
+ !StringEndsWith(host, NS_LITERAL_CSTRING(".onion")) &&
+ ((NS_SUCCEEDED(aOnionLocationURI->SchemeIs("http", &isHttpish)) &&
+ isHttpish) ||
+ (NS_SUCCEEDED(aOnionLocationURI->SchemeIs("https", &isHttpish)) &&
+ isHttpish)) &&
+ NS_SUCCEEDED(aOnionLocationURI->GetAsciiHost(host)) &&
+ StringEndsWith(host, NS_LITERAL_CSTRING(".onion"));
+}
+
void Document::SetHeaderData(nsAtom* aHeaderField, const nsAString& aData) {
if (!aHeaderField) {
NS_ERROR("null headerField");
@@ -6101,6 +6118,21 @@ void Document::SetHeaderData(nsAtom* aHeaderField, const nsAString& aData) {
aHeaderField == nsGkAtoms::handheldFriendly) {
mViewportType = Unknown;
}
+
+ if (aHeaderField == nsGkAtoms::headerOnionLocation && !aData.IsEmpty()) {
+ nsCOMPtr<nsIURI> onionURI;
+ if (NS_SUCCEEDED(NS_NewURI(getter_AddRefs(onionURI), aData)) &&
+ IsValidOnionLocation(Document::GetDocumentURI(), onionURI)) {
+ if (StaticPrefs::privacy_prioritizeonions_enabled()) {
+ nsCOMPtr<nsIRefreshURI> refresher(mDocumentContainer);
+ if (refresher) {
+ refresher->RefreshURI(onionURI, NodePrincipal(), 0, false, true);
+ }
+ } else {
+ mOnionLocationURI = onionURI;
+ }
+ }
+ }
}
void Document::TryChannelCharset(nsIChannel* aChannel, int32_t& aCharsetSource,
@@ -10141,7 +10173,7 @@ void Document::RetrieveRelevantHeaders(nsIChannel* aChannel) {
static const char* const headers[] = {
"default-style", "content-style-type", "content-language",
"content-disposition", "refresh", "x-dns-prefetch-control",
- "x-frame-options",
+ "x-frame-options", "onion-location",
// add more http headers if you need
// XXXbz don't add content-location support without reading bug
// 238654 and its dependencies/dups first.
diff --git a/dom/base/Document.h b/dom/base/Document.h
index 6d06a8c2a8cd..6e80306e94b5 100644
--- a/dom/base/Document.h
+++ b/dom/base/Document.h
@@ -3322,6 +3322,7 @@ class Document : public nsINode,
void ReleaseCapture() const;
void MozSetImageElement(const nsAString& aImageElementId, Element* aElement);
nsIURI* GetDocumentURIObject() const;
+ nsIURI* GetOnionLocationURI() const { return mOnionLocationURI; }
// Not const because all the fullscreen goop is not const
const char* GetFullscreenError(CallerType);
bool FullscreenEnabled(CallerType aCallerType) {
@@ -4194,6 +4195,7 @@ class Document : public nsINode,
nsCOMPtr<nsIURI> mChromeXHRDocURI;
nsCOMPtr<nsIURI> mDocumentBaseURI;
nsCOMPtr<nsIURI> mChromeXHRDocBaseURI;
+ nsCOMPtr<nsIURI> mOnionLocationURI;
// The base domain of the document for third-party checks.
nsCString mBaseDomain;
diff --git a/dom/webidl/Document.webidl b/dom/webidl/Document.webidl
index 8130db018f47..df3a18eaf266 100644
--- a/dom/webidl/Document.webidl
+++ b/dom/webidl/Document.webidl
@@ -676,3 +676,12 @@ partial interface Document {
[ChromeOnly, Pure]
readonly attribute nsIPermissionDelegateHandler permDelegateHandler;
};
+
+
+/**
+ * Extension to allows chrome JS to know whether the document has a valid
+ * Onion-Location that we could redirect to.
+ */
+partial interface Document {
+ [ChromeOnly] readonly attribute URI? onionLocationURI;
+};
diff --git a/modules/libpref/init/StaticPrefList.yaml b/modules/libpref/init/StaticPrefList.yaml
index 3f881146ca1e..75382661ca59 100644
--- a/modules/libpref/init/StaticPrefList.yaml
+++ b/modules/libpref/init/StaticPrefList.yaml
@@ -8446,6 +8446,11 @@
value: @IS_NIGHTLY_BUILD@
mirror: always
+- name: privacy.prioritizeonions.enabled
+ type: RelaxedAtomicBool
+ value: false
+ mirror: always
+
#---------------------------------------------------------------------------
# Prefs starting with "prompts."
#---------------------------------------------------------------------------
diff --git a/xpcom/ds/StaticAtoms.py b/xpcom/ds/StaticAtoms.py
index ab5f662575e4..23a5d6f9bb95 100644
--- a/xpcom/ds/StaticAtoms.py
+++ b/xpcom/ds/StaticAtoms.py
@@ -811,6 +811,7 @@ STATIC_ATOMS = [
Atom("oninputsourceschange","oninputsourceschange"),
Atom("oninstall", "oninstall"),
Atom("oninvalid", "oninvalid"),
+ Atom("headerOnionLocation", "onion-location"),
Atom("onkeydown", "onkeydown"),
Atom("onkeypress", "onkeypress"),
Atom("onkeyup", "onkeyup"),
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 32418: Allow updates to be disabled via an enterprise policy.
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 94913d00b290b73349ae2d5e4d3eca4148eb9505
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Thu Apr 16 17:07:09 2020 -0400
Bug 32418: Allow updates to be disabled via an enterprise policy.
Restrict the Enterprise Policies mechanism to only consult a
policies.json file (avoiding the Windows Registry and macOS's
file system attributes).
Add a few disabledByPolicy() checks to the update service to
avoid extraneous (and potentially confusing) log messages when
updates are disabled by policy.
Sample content for distribution/policies.json:
{
"policies": {
"DisableAppUpdate": true
}
}
On Linux, avoid reading policies from /etc/firefox/policies/policies.json
---
.../components/enterprisepolicies/EnterprisePolicies.js | 12 ++++++++++++
toolkit/components/enterprisepolicies/moz.build | 4 +++-
toolkit/mozapps/update/UpdateService.jsm | 16 ++++++++++++++++
3 files changed, 31 insertions(+), 1 deletion(-)
diff --git a/toolkit/components/enterprisepolicies/EnterprisePolicies.js b/toolkit/components/enterprisepolicies/EnterprisePolicies.js
index aa8a2e54024e..8f9cd6f5039d 100644
--- a/toolkit/components/enterprisepolicies/EnterprisePolicies.js
+++ b/toolkit/components/enterprisepolicies/EnterprisePolicies.js
@@ -2,6 +2,10 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+// To ensure that policies intended for Firefox or another browser will not
+// be used, Tor Browser only looks for policies in ${InstallDir}/distribution
+#define AVOID_SYSTEM_POLICIES MOZ_PROXY_BYPASS_PROTECTION
+
const { XPCOMUtils } = ChromeUtils.import(
"resource://gre/modules/XPCOMUtils.jsm"
);
@@ -11,9 +15,11 @@ const { AppConstants } = ChromeUtils.import(
);
XPCOMUtils.defineLazyModuleGetters(this, {
+#ifndef AVOID_SYSTEM_POLICIES
WindowsGPOParser: "resource://gre/modules/policies/WindowsGPOParser.jsm",
macOSPoliciesParser:
"resource://gre/modules/policies/macOSPoliciesParser.jsm",
+#endif
Policies: "resource:///modules/policies/Policies.jsm",
JsonSchemaValidator:
"resource://gre/modules/components-utils/JsonSchemaValidator.jsm",
@@ -114,6 +120,7 @@ EnterprisePoliciesManager.prototype = {
_chooseProvider() {
let provider = null;
+#ifndef AVOID_SYSTEM_POLICIES
if (AppConstants.platform == "win") {
provider = new WindowsGPOPoliciesProvider();
} else if (AppConstants.platform == "macosx") {
@@ -122,6 +129,7 @@ EnterprisePoliciesManager.prototype = {
if (provider && provider.hasPolicies) {
return provider;
}
+#endif
provider = new JSONPoliciesProvider();
if (provider.hasPolicies) {
@@ -473,6 +481,7 @@ class JSONPoliciesProvider {
_getConfigurationFile() {
let configFile = null;
+#ifndef AVOID_SYSTEM_POLICIES
if (AppConstants.platform == "linux") {
let systemConfigFile = Cc["@mozilla.org/file/local;1"].createInstance(
Ci.nsIFile
@@ -485,6 +494,7 @@ class JSONPoliciesProvider {
return systemConfigFile;
}
}
+#endif
try {
let perUserPath = Services.prefs.getBoolPref(PREF_PER_USER_DIR, false);
@@ -566,6 +576,7 @@ class JSONPoliciesProvider {
}
}
+#ifndef AVOID_SYSTEM_POLICIES
class WindowsGPOPoliciesProvider {
constructor() {
this._policies = null;
@@ -631,6 +642,7 @@ class macOSPoliciesProvider {
return this._failed;
}
}
+#endif
var components = [EnterprisePoliciesManager];
this.NSGetFactory = XPCOMUtils.generateNSGetFactory(components);
diff --git a/toolkit/components/enterprisepolicies/moz.build b/toolkit/components/enterprisepolicies/moz.build
index 8f7d7d8cfed7..7528f569bb3e 100644
--- a/toolkit/components/enterprisepolicies/moz.build
+++ b/toolkit/components/enterprisepolicies/moz.build
@@ -19,10 +19,12 @@ TEST_DIRS += [
if CONFIG['MOZ_WIDGET_TOOLKIT'] != "android":
EXTRA_COMPONENTS += [
- 'EnterprisePolicies.js',
'EnterprisePolicies.manifest',
'EnterprisePoliciesContent.js',
]
+ EXTRA_PP_COMPONENTS += [
+ 'EnterprisePolicies.js',
+ ]
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
EXTRA_JS_MODULES.policies += [
diff --git a/toolkit/mozapps/update/UpdateService.jsm b/toolkit/mozapps/update/UpdateService.jsm
index 2c565cecadd7..1fb397373151 100644
--- a/toolkit/mozapps/update/UpdateService.jsm
+++ b/toolkit/mozapps/update/UpdateService.jsm
@@ -3268,6 +3268,14 @@ UpdateService.prototype = {
* See nsIUpdateService.idl
*/
get canApplyUpdates() {
+ if (this.disabledByPolicy) {
+ LOG(
+ "UpdateService.canApplyUpdates - unable to apply updates, " +
+ "the option has been disabled by the administrator."
+ );
+ return false;
+ }
+
return getCanApplyUpdates() && hasUpdateMutex();
},
@@ -3275,6 +3283,14 @@ UpdateService.prototype = {
* See nsIUpdateService.idl
*/
get canStageUpdates() {
+ if (this.disabledByPolicy) {
+ LOG(
+ "UpdateService.canStageUpdates - unable to stage updates, " +
+ "the option has been disabled by the administrator."
+ );
+ return false;
+ }
+
return getCanStageUpdates();
},
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 40166: Disable security.certerrors.mitm.auto_enable_enterprise_roots
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 88ef1ab540bdb5f1193b13bdd48947bae86c9066
Author: Alex Catarineu <acat(a)torproject.org>
Date: Fri Oct 9 12:55:35 2020 +0200
Bug 40166: Disable security.certerrors.mitm.auto_enable_enterprise_roots
---
browser/app/profile/000-tor-browser.js | 3 +++
browser/components/BrowserGlue.jsm | 14 ++++++++++++++
2 files changed, 17 insertions(+)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js
index c87bd050b8f5..1218ebfe3d49 100644
--- a/browser/app/profile/000-tor-browser.js
+++ b/browser/app/profile/000-tor-browser.js
@@ -321,6 +321,9 @@ pref("security.enterprise_roots.enabled", false);
// Don't ping Mozilla for MitM detection, see bug 32321
pref("security.certerrors.mitm.priming.enabled", false);
+// Don't automatically enable enterprise roots, see bug 40166
+pref("security.certerrors.mitm.auto_enable_enterprise_roots", false);
+
// Disable the language pack signing check for now on macOS, see #31942
#ifdef XP_MACOSX
pref("extensions.langpacks.signatures.required", false);
diff --git a/browser/components/BrowserGlue.jsm b/browser/components/BrowserGlue.jsm
index 057a2121533c..3750230a250b 100644
--- a/browser/components/BrowserGlue.jsm
+++ b/browser/components/BrowserGlue.jsm
@@ -1319,6 +1319,20 @@ BrowserGlue.prototype = {
// handle any UI migration
this._migrateUI();
+ // Clear possibly auto enabled enterprise_roots prefs (see bug 40166)
+ if (
+ !Services.prefs.getBoolPref(
+ "security.certerrors.mitm.auto_enable_enterprise_roots"
+ ) &&
+ Services.prefs.getBoolPref(
+ "security.enterprise_roots.auto-enabled",
+ false
+ )
+ ) {
+ Services.prefs.clearUserPref("security.enterprise_roots.enabled");
+ Services.prefs.clearUserPref("security.enterprise_roots.auto-enabled");
+ }
+
if (!Services.prefs.prefHasUserValue(PREF_PDFJS_ISDEFAULT_CACHE_STATE)) {
PdfJs.checkIsDefault(this._isNewProfile);
}
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 1658881 - When failing to create a channel and an image request, make sure to set the image blocking status appropriately. r=tnikkel
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 131f3d27b9f651a014d7d569d9c203bf6efe011a
Author: Emilio Cobos Álvarez <emilio(a)crisal.io>
Date: Wed Sep 9 22:58:29 2020 +0000
Bug 1658881 - When failing to create a channel and an image request, make sure to set the image blocking status appropriately. r=tnikkel
This is the same status as we do for known no-data protocols here:
https://searchfox.org/mozilla-central/rev/ac142717cc067d875e83e4b1316f004f6…
This ensures we treat these two cases the same.
Differential Revision: https://phabricator.services.mozilla.com/D89382
---
dom/base/nsImageLoadingContent.cpp | 7 ++++++-
layout/reftests/image/reftest.list | 1 +
layout/reftests/image/unknown-protocol-ref.html | 1 +
layout/reftests/image/unknown-protocol.html | 1 +
4 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/dom/base/nsImageLoadingContent.cpp b/dom/base/nsImageLoadingContent.cpp
index 23b1fd791c1f..85de63bef02d 100644
--- a/dom/base/nsImageLoadingContent.cpp
+++ b/dom/base/nsImageLoadingContent.cpp
@@ -1207,7 +1207,12 @@ nsresult nsImageLoadingContent::LoadImage(nsIURI* aNewURI, bool aForce,
MOZ_ASSERT(!req, "Shouldn't have non-null request here");
// If we don't have a current URI, we might as well store this URI so people
// know what we tried (and failed) to load.
- if (!mCurrentRequest) mCurrentURI = aNewURI;
+ if (!mCurrentRequest) {
+ mCurrentURI = aNewURI;
+ if (mImageBlockingStatus == nsIContentPolicy::ACCEPT) {
+ mImageBlockingStatus = nsIContentPolicy::REJECT_REQUEST;
+ }
+ }
FireEvent(NS_LITERAL_STRING("error"));
FireEvent(NS_LITERAL_STRING("loadend"));
diff --git a/layout/reftests/image/reftest.list b/layout/reftests/image/reftest.list
index a8a91c13ed3a..3c561fe3a7c8 100644
--- a/layout/reftests/image/reftest.list
+++ b/layout/reftests/image/reftest.list
@@ -69,3 +69,4 @@ random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == image-srcset-basic-selec
pref(dom.image-lazy-loading.enabled,true) == moz-broken-matching-lazy-load.html moz-broken-matching-1-ref.html
== img-invalidation-local-transform-1.html img-invalidation-local-transform-1-ref.html
+== unknown-protocol.html unknown-protocol-ref.html
diff --git a/layout/reftests/image/unknown-protocol-ref.html b/layout/reftests/image/unknown-protocol-ref.html
new file mode 100644
index 000000000000..b5bb326eef57
--- /dev/null
+++ b/layout/reftests/image/unknown-protocol-ref.html
@@ -0,0 +1 @@
+<img src="mailto://foo">
diff --git a/layout/reftests/image/unknown-protocol.html b/layout/reftests/image/unknown-protocol.html
new file mode 100644
index 000000000000..ef06881b7bcb
--- /dev/null
+++ b/layout/reftests/image/unknown-protocol.html
@@ -0,0 +1 @@
+<img src="foobar://baz">
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 40091: Load HTTPS Everywhere as a builtin addon in desktop
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 13615017eff199eee583eb9bf13d49472105d621
Author: Alex Catarineu <acat(a)torproject.org>
Date: Fri Sep 4 12:34:35 2020 +0200
Bug 40091: Load HTTPS Everywhere as a builtin addon in desktop
This loads HTTPS Everywhere as a builtin addon from a hardcoded
resource:// URI in desktop. It also ensures that the non-builtin
HTTPS Everywhere addon is always uninstalled on browser startup.
The reason of making this desktop-only is that there are some issues
when installing a builtin extension from geckoview side, making
the extension not available on first startup. So, at least for
now we handle the Fenix case separately. See #40118 for a followup
for investigating these.
---
browser/components/BrowserGlue.jsm | 37 ++++++++++++++++++++++
toolkit/components/extensions/Extension.jsm | 14 ++++++--
.../mozapps/extensions/internal/XPIProvider.jsm | 13 ++++++++
3 files changed, 61 insertions(+), 3 deletions(-)
diff --git a/browser/components/BrowserGlue.jsm b/browser/components/BrowserGlue.jsm
index ec38d0ca8b33..057a2121533c 100644
--- a/browser/components/BrowserGlue.jsm
+++ b/browser/components/BrowserGlue.jsm
@@ -56,6 +56,13 @@ XPCOMUtils.defineLazyServiceGetter(
"nsIPushService"
);
+XPCOMUtils.defineLazyServiceGetters(this, {
+ resProto: [
+ "@mozilla.org/network/protocol;1?name=resource",
+ "nsISubstitutingProtocolHandler",
+ ],
+});
+
const PREF_PDFJS_ISDEFAULT_CACHE_STATE = "pdfjs.enabledCache.state";
/**
@@ -675,6 +682,7 @@ XPCOMUtils.defineLazyModuleGetters(this, {
"resource://gre/modules/ContextualIdentityService.jsm",
Corroborate: "resource://gre/modules/Corroborate.jsm",
Discovery: "resource:///modules/Discovery.jsm",
+ ExtensionData: "resource://gre/modules/Extension.jsm",
ExtensionsUI: "resource:///modules/ExtensionsUI.jsm",
FirefoxMonitor: "resource:///modules/FirefoxMonitor.jsm",
FxAccounts: "resource://gre/modules/FxAccounts.jsm",
@@ -1330,6 +1338,35 @@ BrowserGlue.prototype = {
"resource:///modules/themes/dark/"
);
+ // Install https-everywhere builtin addon if needed.
+ (async () => {
+ const HTTPS_EVERYWHERE_ID = "https-everywhere-eff(a)eff.org";
+ const HTTPS_EVERYWHERE_BUILTIN_URL =
+ "resource://torbutton/content/extensions/https-everywhere/";
+ // This does something similar as GeckoViewWebExtension.jsm: it tries
+ // to load the manifest to retrieve the version of the builtin and
+ // compares it to the currently installed one to see whether we need
+ // to install or not. Here we delegate that to
+ // AddonManager.maybeInstallBuiltinAddon.
+ try {
+ const resolvedURI = Services.io.newURI(
+ resProto.resolveURI(Services.io.newURI(HTTPS_EVERYWHERE_BUILTIN_URL))
+ );
+ const extensionData = new ExtensionData(resolvedURI);
+ const manifest = await extensionData.loadManifest();
+
+ await AddonManager.maybeInstallBuiltinAddon(
+ HTTPS_EVERYWHERE_ID,
+ manifest.version,
+ HTTPS_EVERYWHERE_BUILTIN_URL
+ );
+ } catch (e) {
+ const log = Log.repository.getLogger("HttpsEverywhereBuiltinLoader");
+ log.addAppender(new Log.ConsoleAppender(new Log.BasicFormatter()));
+ log.error("Could not install https-everywhere extension", e);
+ }
+ })();
+
if (AppConstants.MOZ_NORMANDY) {
Normandy.init();
}
diff --git a/toolkit/components/extensions/Extension.jsm b/toolkit/components/extensions/Extension.jsm
index 876e636be3db..7dbd888b1710 100644
--- a/toolkit/components/extensions/Extension.jsm
+++ b/toolkit/components/extensions/Extension.jsm
@@ -211,6 +211,7 @@ const LOGGER_ID_BASE = "addons.webextension.";
const UUID_MAP_PREF = "extensions.webextensions.uuids";
const LEAVE_STORAGE_PREF = "extensions.webextensions.keepStorageOnUninstall";
const LEAVE_UUID_PREF = "extensions.webextensions.keepUuidOnUninstall";
+const PERSISTENT_EXTENSIONS = new Set(["https-everywhere-eff(a)eff.org"]);
const COMMENT_REGEXP = new RegExp(
String.raw`
@@ -331,7 +332,10 @@ var ExtensionAddonObserver = {
return;
}
- if (!Services.prefs.getBoolPref(LEAVE_STORAGE_PREF, false)) {
+ if (
+ !Services.prefs.getBoolPref(LEAVE_STORAGE_PREF, false) &&
+ !PERSISTENT_EXTENSIONS.has(addon.id)
+ ) {
// Clear browser.storage.local backends.
AsyncShutdown.profileChangeTeardown.addBlocker(
`Clear Extension Storage ${addon.id} (File Backend)`,
@@ -384,7 +388,10 @@ var ExtensionAddonObserver = {
ExtensionPermissions.removeAll(addon.id);
- if (!Services.prefs.getBoolPref(LEAVE_UUID_PREF, false)) {
+ if (
+ !Services.prefs.getBoolPref(LEAVE_UUID_PREF, false) &&
+ !PERSISTENT_EXTENSIONS.has(addon.id)
+ ) {
// Clear the entry in the UUID map
UUIDMap.remove(addon.id);
}
@@ -2474,7 +2481,8 @@ class Extension extends ExtensionData {
);
} else if (
this.startupReason === "ADDON_INSTALL" &&
- !Services.prefs.getBoolPref(LEAVE_STORAGE_PREF, false)
+ !Services.prefs.getBoolPref(LEAVE_STORAGE_PREF, false) &&
+ !PERSISTENT_EXTENSIONS.has(this.id)
) {
// If the extension has been just installed, set it as migrated,
// because there will not be any data to migrate.
diff --git a/toolkit/mozapps/extensions/internal/XPIProvider.jsm b/toolkit/mozapps/extensions/internal/XPIProvider.jsm
index 794c206fb453..dc5362bce3d8 100644
--- a/toolkit/mozapps/extensions/internal/XPIProvider.jsm
+++ b/toolkit/mozapps/extensions/internal/XPIProvider.jsm
@@ -1491,6 +1491,19 @@ var XPIStates = {
continue;
}
+ // Uninstall HTTPS Everywhere if it is installed in the user profile.
+ if (
+ id === "https-everywhere-eff(a)eff.org" &&
+ loc.name === KEY_APP_PROFILE
+ ) {
+ logger.debug(
+ "Uninstalling the HTTPS Everywhere extension from user profile."
+ );
+ loc.installer.uninstallAddon(id);
+ changed = true;
+ continue;
+ }
+
let xpiState = loc.get(id);
if (!xpiState) {
// If the location is not supported for sideloading, skip new
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 40002: Remove about:pioneer
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit cc5b0ae5c2bd4a08b83b78b73acc4aca50efe000
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Fri Aug 14 09:06:33 2020 -0400
Bug 40002: Remove about:pioneer
Firefox Pioneer is an opt-in program in which people volunteer to
participate in studies that collect detailed, sensitive data about
how they use their browser.
---
browser/components/about/AboutRedirector.cpp | 2 --
browser/components/about/components.conf | 1 -
2 files changed, 3 deletions(-)
diff --git a/browser/components/about/AboutRedirector.cpp b/browser/components/about/AboutRedirector.cpp
index 544e21782729..e7c377d655e7 100644
--- a/browser/components/about/AboutRedirector.cpp
+++ b/browser/components/about/AboutRedirector.cpp
@@ -114,8 +114,6 @@ static const RedirEntry kRedirMap[] = {
nsIAboutModule::URI_MUST_LOAD_IN_CHILD |
nsIAboutModule::URI_SAFE_FOR_UNTRUSTED_CONTENT |
nsIAboutModule::ALLOW_SCRIPT | nsIAboutModule::HIDE_FROM_ABOUTABOUT},
- {"pioneer", "chrome://browser/content/pioneer.html",
- nsIAboutModule::ALLOW_SCRIPT | nsIAboutModule::HIDE_FROM_ABOUTABOUT},
#ifdef TOR_BROWSER_UPDATE
{"tbupdate", "chrome://browser/content/abouttbupdate/aboutTBUpdate.xhtml",
nsIAboutModule::URI_SAFE_FOR_UNTRUSTED_CONTENT |
diff --git a/browser/components/about/components.conf b/browser/components/about/components.conf
index d78de142e2e4..8e04467c05da 100644
--- a/browser/components/about/components.conf
+++ b/browser/components/about/components.conf
@@ -14,7 +14,6 @@ pages = [
'logins',
'newinstall',
'newtab',
- 'pioneer',
'pocket-saved',
'pocket-signup',
'policies',
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 33852: Clean up about:logins (LockWise) to avoid mentioning sync, etc.
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 89d5347739427120512decbb3e930d0d389718a0
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Tue Jul 14 11:15:07 2020 -0400
Bug 33852: Clean up about:logins (LockWise) to avoid mentioning sync, etc.
Hide elements on about:logins that mention sync, "Firefox LockWise", and
Mozilla's LockWise mobile apps.
Disable the "Create New Login" button when security.nocertdb is true.
---
browser/components/aboutlogins/AboutLoginsParent.jsm | 2 ++
browser/components/aboutlogins/content/aboutLogins.css | 8 +++++++-
browser/components/aboutlogins/content/aboutLogins.js | 6 ++++++
.../aboutlogins/content/components/fxaccounts-button.css | 5 +++++
.../components/aboutlogins/content/components/menu-button.css | 10 ++++++++++
5 files changed, 30 insertions(+), 1 deletion(-)
diff --git a/browser/components/aboutlogins/AboutLoginsParent.jsm b/browser/components/aboutlogins/AboutLoginsParent.jsm
index 015ce5f29332..d06d6d0ec6c7 100644
--- a/browser/components/aboutlogins/AboutLoginsParent.jsm
+++ b/browser/components/aboutlogins/AboutLoginsParent.jsm
@@ -62,6 +62,7 @@ const PASSWORD_SYNC_NOTIFICATION_ID = "enable-password-sync";
const HIDE_MOBILE_FOOTER_PREF = "signon.management.page.hideMobileFooter";
const SHOW_PASSWORD_SYNC_NOTIFICATION_PREF =
"signon.management.page.showPasswordSyncNotification";
+const NOCERTDB_PREF = "security.nocertdb";
// about:logins will always use the privileged content process,
// even if it is disabled for other consumers such as about:newtab.
@@ -431,6 +432,7 @@ class AboutLoginsParent extends JSWindowActorParent {
importVisible:
Services.policies.isAllowed("profileImport") &&
AppConstants.platform != "linux",
+ canCreateLogins: !Services.prefs.getBoolPref(NOCERTDB_PREF, false),
});
await AboutLogins._sendAllLoginRelatedObjects(
diff --git a/browser/components/aboutlogins/content/aboutLogins.css b/browser/components/aboutlogins/content/aboutLogins.css
index 7ed29bda8297..dca63da2e649 100644
--- a/browser/components/aboutlogins/content/aboutLogins.css
+++ b/browser/components/aboutlogins/content/aboutLogins.css
@@ -69,6 +69,11 @@ login-item {
grid-area: login;
}
+/* Do not promote Mozilla Sync in Tor Browser. */
+login-intro {
+ display: none !important;
+}
+
#branding-logo {
flex-basis: var(--sidebar-width);
flex-shrink: 0;
@@ -83,7 +88,8 @@ login-item {
}
}
-:root:not(.official-branding) #branding-logo {
+/* Hide "Firefox LockWise" branding in Tor Browser. */
+#branding-logo {
visibility: hidden;
}
diff --git a/browser/components/aboutlogins/content/aboutLogins.js b/browser/components/aboutlogins/content/aboutLogins.js
index da7d9016a2eb..361b2b0d02bf 100644
--- a/browser/components/aboutlogins/content/aboutLogins.js
+++ b/browser/components/aboutlogins/content/aboutLogins.js
@@ -19,6 +19,9 @@ const gElements = {
get loginFooter() {
return this.loginItem.shadowRoot.querySelector("login-footer");
},
+ get createNewLoginButton() {
+ return this.loginList.shadowRoot.querySelector(".create-login-button");
+ },
};
let numberOfLogins = 0;
@@ -100,6 +103,9 @@ window.addEventListener("AboutLoginsChromeToContent", event => {
gElements.loginList.setSortDirection(event.detail.value.selectedSort);
document.documentElement.classList.add("initialized");
gElements.loginList.classList.add("initialized");
+ if (!event.detail.value.canCreateLogins) {
+ gElements.createNewLoginButton.disabled = true;
+ }
break;
}
case "ShowLoginItemError": {
diff --git a/browser/components/aboutlogins/content/components/fxaccounts-button.css b/browser/components/aboutlogins/content/components/fxaccounts-button.css
index aefda548c84d..a02707980158 100644
--- a/browser/components/aboutlogins/content/components/fxaccounts-button.css
+++ b/browser/components/aboutlogins/content/components/fxaccounts-button.css
@@ -8,6 +8,11 @@
align-items: center;
}
+/* Do not promote Mozilla Sync in Tor Browser. */
+.logged-out-view {
+ display: none !important;
+}
+
.fxaccounts-extra-text {
/* Only show at most 3 lines of text to limit the
text from overflowing the header. */
diff --git a/browser/components/aboutlogins/content/components/menu-button.css b/browser/components/aboutlogins/content/components/menu-button.css
index 3c93d409b2c7..2d7380b2ea37 100644
--- a/browser/components/aboutlogins/content/components/menu-button.css
+++ b/browser/components/aboutlogins/content/components/menu-button.css
@@ -85,3 +85,13 @@
.menuitem-mobile-android {
background-image: url("chrome://browser/skin/logo-android.svg");
}
+
+/*
+ * Do not promote LockWise mobile apps in Tor Browser: hide the menu items
+ * and the separator line that precedes them.
+ */
+.menuitem-mobile-android,
+.menuitem-mobile-ios,
+button[data-event-name="AboutLoginsGetHelp"] + hr {
+ display: none !important;
+}
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 1650281 - P2: Make sure `gCombinedSizes` won't be underflowed r=gerald
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 0d75c782deb93a7b7a734aa7478a775ab228d2d4
Author: Chun-Min Chang <chun.m.chang(a)gmail.com>
Date: Tue Jul 21 23:39:14 2020 +0000
Bug 1650281 - P2: Make sure `gCombinedSizes` won't be underflowed r=gerald
In any case, `gCombinedSizes` should be larger than or equal to the
buffer within `MemoryClockCache`.
Differential Revision: https://phabricator.services.mozilla.com/D84274
---
dom/media/MemoryBlockCache.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/dom/media/MemoryBlockCache.cpp b/dom/media/MemoryBlockCache.cpp
index bf073e6769d0..2848a3f3812c 100644
--- a/dom/media/MemoryBlockCache.cpp
+++ b/dom/media/MemoryBlockCache.cpp
@@ -52,6 +52,7 @@ MemoryBlockCache::MemoryBlockCache(int64_t aContentLength)
}
MemoryBlockCache::~MemoryBlockCache() {
+ MOZ_ASSERT(gCombinedSizes >= mBuffer.Length());
size_t sizes = static_cast<size_t>(gCombinedSizes -= mBuffer.Length());
LOG("~MemoryBlockCache() - destroying buffer of size %zu; combined sizes now "
"%zu",
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 33342: Avoid disconnect search addon error after removal.
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit 19021b06d4223f037e05f793d78acdd817bd41de
Author: Alex Catarineu <acat(a)torproject.org>
Date: Fri Mar 13 18:19:30 2020 +0100
Bug 33342: Avoid disconnect search addon error after removal.
We removed the addon in #32767, but it was still being loaded
from addonStartup.json.lz4 and throwing an error on startup
because its resource: location is not available anymore.
---
toolkit/mozapps/extensions/internal/XPIProvider.jsm | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/toolkit/mozapps/extensions/internal/XPIProvider.jsm b/toolkit/mozapps/extensions/internal/XPIProvider.jsm
index 5e467fb4f14c..794c206fb453 100644
--- a/toolkit/mozapps/extensions/internal/XPIProvider.jsm
+++ b/toolkit/mozapps/extensions/internal/XPIProvider.jsm
@@ -970,6 +970,12 @@ var BuiltInLocation = new (class _BuiltInLocation extends XPIStateLocation {
get enumerable() {
return false;
}
+
+ restore(saved) {
+ super.restore(saved);
+ // Bug 33342: avoid restoring disconnect addon from addonStartup.json.lz4.
+ this.removeAddon("disconnect(a)search.mozilla.org");
+ }
})();
/**
1
0

[tor-browser/tor-browser-78.7.1esr-10.5-1] Bug 28005: Implement .onion alias urlbar rewrites
by sysrqb@torproject.org 05 Feb '21
by sysrqb@torproject.org 05 Feb '21
05 Feb '21
commit cb132169a1ab18844c5c6b7c9dc9c6d59e318489
Author: Alex Catarineu <acat(a)torproject.org>
Date: Thu Feb 13 13:24:33 2020 +0100
Bug 28005: Implement .onion alias urlbar rewrites
A custom HTTPS Everywhere update channel is installed,
which provides rules for locally redirecting some memorable
.tor.onion URLs to non-memorable .onion URLs.
When these redirects occur, we also rewrite the URL in the urlbar
to display the human-memorable hostname instead of the actual
.onion.
Bug 34196: Update site info URL with the onion name
---
browser/actors/ClickHandlerChild.jsm | 20 ++
browser/actors/ClickHandlerParent.jsm | 1 +
browser/actors/ContextMenuChild.jsm | 4 +
browser/base/content/browser-places.js | 12 +-
browser/base/content/browser-siteIdentity.js | 12 +-
browser/base/content/browser.js | 43 ++++-
browser/base/content/nsContextMenu.js | 18 ++
browser/base/content/pageinfo/pageInfo.js | 2 +-
browser/base/content/pageinfo/pageInfo.xhtml | 10 +
browser/base/content/pageinfo/security.js | 17 +-
browser/base/content/tabbrowser.js | 7 +
browser/base/content/utilityOverlay.js | 12 ++
browser/components/BrowserGlue.jsm | 8 +
.../onionservices/ExtensionMessaging.jsm | 86 +++++++++
.../onionservices/HttpsEverywhereControl.jsm | 119 ++++++++++++
.../components/onionservices/OnionAliasStore.jsm | 201 +++++++++++++++++++++
browser/components/onionservices/moz.build | 6 +
browser/components/urlbar/UrlbarInput.jsm | 13 +-
docshell/base/nsDocShell.cpp | 52 ++++++
docshell/base/nsDocShell.h | 6 +
docshell/base/nsDocShellLoadState.cpp | 4 +
docshell/base/nsIDocShell.idl | 5 +
docshell/base/nsIWebNavigation.idl | 5 +
docshell/shistory/SessionHistoryEntry.cpp | 14 ++
docshell/shistory/SessionHistoryEntry.h | 1 +
docshell/shistory/nsISHEntry.idl | 5 +
docshell/shistory/nsSHEntry.cpp | 22 ++-
docshell/shistory/nsSHEntry.h | 1 +
dom/interfaces/base/nsIBrowser.idl | 3 +-
dom/ipc/BrowserChild.cpp | 2 +
dom/ipc/BrowserParent.cpp | 3 +-
dom/ipc/PBrowser.ipdl | 1 +
modules/libpref/init/StaticPrefList.yaml | 6 +
netwerk/dns/effective_tld_names.dat | 2 +
netwerk/ipc/DocumentLoadListener.cpp | 10 +
toolkit/content/widgets/browser-custom-element.js | 13 +-
toolkit/modules/sessionstore/SessionHistory.jsm | 5 +
37 files changed, 729 insertions(+), 22 deletions(-)
diff --git a/browser/actors/ClickHandlerChild.jsm b/browser/actors/ClickHandlerChild.jsm
index 7dd060e83061..206a8fc97a4d 100644
--- a/browser/actors/ClickHandlerChild.jsm
+++ b/browser/actors/ClickHandlerChild.jsm
@@ -138,6 +138,26 @@ class ClickHandlerChild extends JSWindowActorChild {
json.originStoragePrincipal = ownerDoc.effectiveStoragePrincipal;
json.triggeringPrincipal = ownerDoc.nodePrincipal;
+ // Check if the link needs to be opened with .tor.onion urlbar rewrites
+ // allowed. Only when the owner doc has onionUrlbarRewritesAllowed = true
+ // and the same origin we should allow this.
+ json.onionUrlbarRewritesAllowed = false;
+ if (this.docShell.onionUrlbarRewritesAllowed) {
+ const sm = Services.scriptSecurityManager;
+ try {
+ let targetURI = Services.io.newURI(href);
+ let isPrivateWin =
+ ownerDoc.nodePrincipal.originAttributes.privateBrowsingId > 0;
+ sm.checkSameOriginURI(
+ docshell.currentDocumentChannel.URI,
+ targetURI,
+ false,
+ isPrivateWin
+ );
+ json.onionUrlbarRewritesAllowed = true;
+ } catch (e) {}
+ }
+
// If a link element is clicked with middle button, user wants to open
// the link somewhere rather than pasting clipboard content. Therefore,
// when it's clicked with middle button, we should prevent multiple
diff --git a/browser/actors/ClickHandlerParent.jsm b/browser/actors/ClickHandlerParent.jsm
index 454c0fe69b27..42ab7a0f6e2a 100644
--- a/browser/actors/ClickHandlerParent.jsm
+++ b/browser/actors/ClickHandlerParent.jsm
@@ -102,6 +102,7 @@ class ClickHandlerParent extends JSWindowActorParent {
charset: browser.characterSet,
referrerInfo: E10SUtils.deserializeReferrerInfo(data.referrerInfo),
allowMixedContent: data.allowMixedContent,
+ onionUrlbarRewritesAllowed: data.onionUrlbarRewritesAllowed,
isContentWindowPrivate: data.isContentWindowPrivate,
originPrincipal: data.originPrincipal,
originStoragePrincipal: data.originStoragePrincipal,
diff --git a/browser/actors/ContextMenuChild.jsm b/browser/actors/ContextMenuChild.jsm
index 16a3f8ecbc81..1a1b38aa6375 100644
--- a/browser/actors/ContextMenuChild.jsm
+++ b/browser/actors/ContextMenuChild.jsm
@@ -575,6 +575,9 @@ class ContextMenuChild extends JSWindowActorChild {
// The same-origin check will be done in nsContextMenu.openLinkInTab.
let parentAllowsMixedContent = !!this.docShell.mixedContentChannel;
+ let parentAllowsOnionUrlbarRewrites = this.docShell
+ .onionUrlbarRewritesAllowed;
+
let disableSetDesktopBackground = null;
// Media related cache info parent needs for saving
@@ -687,6 +690,7 @@ class ContextMenuChild extends JSWindowActorChild {
frameBrowsingContextID,
disableSetDesktopBackground,
parentAllowsMixedContent,
+ parentAllowsOnionUrlbarRewrites,
};
if (context.inFrame && !context.inSrcdocFrame) {
diff --git a/browser/base/content/browser-places.js b/browser/base/content/browser-places.js
index d4b71f87da04..9a9bb3e0dad4 100644
--- a/browser/base/content/browser-places.js
+++ b/browser/base/content/browser-places.js
@@ -452,7 +452,8 @@ var PlacesCommandHook = {
*/
async bookmarkPage() {
let browser = gBrowser.selectedBrowser;
- let url = new URL(browser.currentURI.spec);
+ const uri = browser.currentOnionAliasURI || browser.currentURI;
+ let url = new URL(uri.spec);
let info = await PlacesUtils.bookmarks.fetch({ url });
let isNewBookmark = !info;
let showEditUI = !isNewBookmark || StarUI.showForNewBookmarks;
@@ -556,7 +557,7 @@ var PlacesCommandHook = {
tabs.forEach(tab => {
let browser = tab.linkedBrowser;
- let uri = browser.currentURI;
+ let uri = browser.currentOnionAliasURI || browser.currentURI;
let title = browser.contentTitle || tab.label;
let spec = uri.spec;
if (!(spec in uniquePages)) {
@@ -1655,14 +1656,17 @@ var BookmarkingUI = {
},
onLocationChange: function BUI_onLocationChange() {
- if (this._uri && gBrowser.currentURI.equals(this._uri)) {
+ const uri =
+ gBrowser.selectedBrowser.currentOnionAliasURI || gBrowser.currentURI;
+ if (this._uri && uri.equals(this._uri)) {
return;
}
this.updateStarState();
},
updateStarState: function BUI_updateStarState() {
- this._uri = gBrowser.currentURI;
+ this._uri =
+ gBrowser.selectedBrowser.currentOnionAliasURI || gBrowser.currentURI;
this._itemGuids.clear();
let guids = new Set();
diff --git a/browser/base/content/browser-siteIdentity.js b/browser/base/content/browser-siteIdentity.js
index b8172d6a85f6..b7df1ebaa187 100644
--- a/browser/base/content/browser-siteIdentity.js
+++ b/browser/base/content/browser-siteIdentity.js
@@ -474,13 +474,13 @@ var gIdentityHandler = {
* nsIURI for which the identity UI should be displayed, already
* processed by createExposableURI.
*/
- updateIdentity(state, uri) {
+ updateIdentity(state, uri, onionAliasURI) {
let shouldHidePopup = this._uri && this._uri.spec != uri.spec;
this._state = state;
// Firstly, populate the state properties required to display the UI. See
// the documentation of the individual properties for details.
- this.setURI(uri);
+ this.setURI(uri, onionAliasURI);
this._secInfo = gBrowser.securityUI.secInfo;
this._isSecureContext = gBrowser.securityUI.isSecureContext;
@@ -566,17 +566,18 @@ var gIdentityHandler = {
* Attempt to provide proper IDN treatment for host names
*/
getEffectiveHost() {
+ let uri = this._onionAliasURI || this._uri;
if (!this._IDNService) {
this._IDNService = Cc["@mozilla.org/network/idn-service;1"].getService(
Ci.nsIIDNService
);
}
try {
- return this._IDNService.convertToDisplayIDN(this._uri.host, {});
+ return this._IDNService.convertToDisplayIDN(uri.host, {});
} catch (e) {
// If something goes wrong (e.g. host is an IP address) just fail back
// to the full domain.
- return this._uri.host;
+ return uri.host;
}
},
@@ -1010,8 +1011,9 @@ var gIdentityHandler = {
this.updateSitePermissions();
},
- setURI(uri) {
+ setURI(uri, onionAliasURI) {
this._uri = uri;
+ this._onionAliasURI = onionAliasURI;
try {
// Account for file: urls and catch when "" is the value
diff --git a/browser/base/content/browser.js b/browser/base/content/browser.js
index 9f5f0c608536..bd5f10cb6f64 100644
--- a/browser/base/content/browser.js
+++ b/browser/base/content/browser.js
@@ -77,6 +77,7 @@ XPCOMUtils.defineLazyModuleGetters(this, {
TabCrashHandler: "resource:///modules/ContentCrashHandlers.jsm",
TelemetryEnvironment: "resource://gre/modules/TelemetryEnvironment.jsm",
Translation: "resource:///modules/translation/TranslationParent.jsm",
+ OnionAliasStore: "resource:///modules/OnionAliasStore.jsm",
UITour: "resource:///modules/UITour.jsm",
UpdateUtils: "resource://gre/modules/UpdateUtils.jsm",
UrlbarInput: "resource:///modules/UrlbarInput.jsm",
@@ -2325,6 +2326,7 @@ var gBrowserInit = {
// [9]: allowInheritPrincipal (bool)
// [10]: csp (nsIContentSecurityPolicy)
// [11]: nsOpenWindowInfo
+ // [12]: onionUrlbarRewritesAllowed (bool)
let userContextId =
window.arguments[5] != undefined
? window.arguments[5]
@@ -2344,7 +2346,8 @@ var gBrowserInit = {
// TODO fix allowInheritPrincipal to default to false.
// Default to true unless explicitly set to false because of bug 1475201.
window.arguments[9] !== false,
- window.arguments[10]
+ window.arguments[10],
+ window.arguments[12]
);
window.focus();
} else {
@@ -3230,7 +3233,8 @@ function loadURI(
forceAboutBlankViewerInCurrent,
triggeringPrincipal,
allowInheritPrincipal = false,
- csp = null
+ csp = null,
+ onionUrlbarRewritesAllowed = false
) {
if (!triggeringPrincipal) {
throw new Error("Must load with a triggering Principal");
@@ -3248,6 +3252,7 @@ function loadURI(
csp,
forceAboutBlankViewerInCurrent,
allowInheritPrincipal,
+ onionUrlbarRewritesAllowed,
});
} catch (e) {
Cu.reportError(e);
@@ -5359,11 +5364,24 @@ var XULBrowserWindow = {
this.reloadCommand.removeAttribute("disabled");
}
+ // The onion memorable alias needs to be used in gURLBar.setURI, but also in
+ // other parts of the code (like the bookmarks UI), so we save it.
+ if (gBrowser.selectedBrowser.onionUrlbarRewritesAllowed) {
+ gBrowser.selectedBrowser.currentOnionAliasURI = OnionAliasStore.getShortURI(
+ aLocationURI
+ );
+ } else {
+ gBrowser.selectedBrowser.currentOnionAliasURI = null;
+ }
+
// We want to update the popup visibility if we received this notification
// via simulated locationchange events such as switching between tabs, however
// if this is a document navigation then PopupNotifications will be updated
// via TabsProgressListener.onLocationChange and we do not want it called twice
- gURLBar.setURI(aLocationURI, aIsSimulated);
+ gURLBar.setURI(
+ gBrowser.selectedBrowser.currentOnionAliasURI || aLocationURI,
+ aIsSimulated
+ );
BookmarkingUI.onLocationChange();
@@ -5534,6 +5552,7 @@ var XULBrowserWindow = {
// Don't need to do anything if the data we use to update the UI hasn't
// changed
let uri = gBrowser.currentURI;
+ let onionAliasURI = gBrowser.selectedBrowser.currentOnionAliasURI;
let spec = uri.spec;
if (this._state == aState && this._lastLocation == spec) {
// Switching to a tab of the same URL doesn't change most security
@@ -5551,7 +5570,7 @@ var XULBrowserWindow = {
try {
uri = Services.io.createExposableURI(uri);
} catch (e) {}
- gIdentityHandler.updateIdentity(this._state, uri);
+ gIdentityHandler.updateIdentity(this._state, uri, onionAliasURI);
},
// simulate all change notifications after switching tabs
@@ -7011,6 +7030,21 @@ function handleLinkClick(event, href, linkNode) {
} catch (e) {}
}
+ // Check if the link needs to be opened with .tor.onion urlbar rewrites
+ // allowed. Only when the owner doc has onionUrlbarRewritesAllowed = true
+ // and the same origin we should allow this.
+ let persistOnionUrlbarRewritesAllowedInChildTab = false;
+ if (where == "tab" && gBrowser.docShell.onionUrlbarRewritesAllowed) {
+ const sm = Services.scriptSecurityManager;
+ try {
+ let tURI = makeURI(href);
+ let isPrivateWin =
+ doc.nodePrincipal.originAttributes.privateBrowsingId > 0;
+ sm.checkSameOriginURI(doc.documentURIObject, tURI, false, isPrivateWin);
+ persistOnionUrlbarRewritesAllowedInChildTab = true;
+ } catch (e) {}
+ }
+
let frameOuterWindowID = WebNavigationFrames.getFrameId(doc.defaultView);
urlSecurityCheck(href, doc.nodePrincipal);
@@ -7023,6 +7057,7 @@ function handleLinkClick(event, href, linkNode) {
triggeringPrincipal: doc.nodePrincipal,
csp: doc.csp,
frameOuterWindowID,
+ onionUrlbarRewritesAllowed: persistOnionUrlbarRewritesAllowedInChildTab,
};
// The new tab/window must use the same userContextId
diff --git a/browser/base/content/nsContextMenu.js b/browser/base/content/nsContextMenu.js
index 354b504ce0b4..ca351c71f1cb 100644
--- a/browser/base/content/nsContextMenu.js
+++ b/browser/base/content/nsContextMenu.js
@@ -57,6 +57,7 @@ function openContextMenu(aMessage, aBrowser, aActor) {
disableSetDesktopBackground: data.disableSetDesktopBackground,
loginFillInfo: data.loginFillInfo,
parentAllowsMixedContent: data.parentAllowsMixedContent,
+ parentAllowsOnionUrlbarRewrites: data.parentAllowsOnionUrlbarRewrites,
userContextId: data.userContextId,
webExtContextData: data.webExtContextData,
};
@@ -1059,6 +1060,7 @@ class nsContextMenu {
triggeringPrincipal: this.principal,
csp: this.csp,
frameOuterWindowID: this.contentData.frameOuterWindowID,
+ onionUrlbarRewritesAllowed: false,
};
for (let p in extra) {
params[p] = extra[p];
@@ -1082,6 +1084,22 @@ class nsContextMenu {
}
params.referrerInfo = referrerInfo;
+
+ // Check if the link needs to be opened with .tor.onion urlbar rewrites
+ // allowed. Only when parent has onionUrlbarRewritesAllowed = true
+ // and the same origin we should allow this.
+ if (this.contentData.parentAllowsOnionUrlbarRewrites) {
+ let referrerURI = this.contentData.documentURIObject;
+ const sm = Services.scriptSecurityManager;
+ try {
+ let targetURI = this.linkURI;
+ let isPrivateWin =
+ this.browser.contentPrincipal.originAttributes.privateBrowsingId > 0;
+ sm.checkSameOriginURI(referrerURI, targetURI, false, isPrivateWin);
+ params.onionUrlbarRewritesAllowed = true;
+ } catch (e) {}
+ }
+
return params;
}
diff --git a/browser/base/content/pageinfo/pageInfo.js b/browser/base/content/pageinfo/pageInfo.js
index 664dace84d9f..cd03cea3b6d9 100644
--- a/browser/base/content/pageinfo/pageInfo.js
+++ b/browser/base/content/pageinfo/pageInfo.js
@@ -390,7 +390,7 @@ async function onNonMediaPageInfoLoad(browser, pageInfoData, imageInfo) {
);
}
onLoadPermission(uri, principal);
- securityOnLoad(uri, windowInfo);
+ securityOnLoad(uri, windowInfo, browser.currentOnionAliasURI);
}
function resetPageInfo(args) {
diff --git a/browser/base/content/pageinfo/pageInfo.xhtml b/browser/base/content/pageinfo/pageInfo.xhtml
index f40ffd3778d8..a23f2bb5748c 100644
--- a/browser/base/content/pageinfo/pageInfo.xhtml
+++ b/browser/base/content/pageinfo/pageInfo.xhtml
@@ -312,6 +312,16 @@
<input id="security-identity-domain-value" readonly="readonly"/>
</td>
</tr>
+ <!-- Onion Alias -->
+ <tr id="security-view-identity-onionalias-row">
+ <th>
+ <xul:label id="security-view-identity-onionalias"
+ control="security-view-identity-onionalias-value"/>
+ </th>
+ <td>
+ <input id="security-view-identity-onionalias-value" readonly="true"/>
+ </td>
+ </tr>
<!-- Owner -->
<tr>
<th>
diff --git a/browser/base/content/pageinfo/security.js b/browser/base/content/pageinfo/security.js
index 4331ebc4b219..29395e96ce57 100644
--- a/browser/base/content/pageinfo/security.js
+++ b/browser/base/content/pageinfo/security.js
@@ -250,7 +250,7 @@ var security = {
},
};
-async function securityOnLoad(uri, windowInfo) {
+async function securityOnLoad(uri, windowInfo, onionAliasURI) {
await security.init(uri, windowInfo);
let info = security.securityInfo;
@@ -263,6 +263,21 @@ async function securityOnLoad(uri, windowInfo) {
}
document.getElementById("securityTab").hidden = false;
+ if (onionAliasURI) {
+ setText(
+ "security-view-identity-onionalias",
+ gTorButtonBundle.GetStringFromName("pageInfo_OnionName")
+ );
+ setText("security-view-identity-onionalias-value", onionAliasURI.host);
+ document.getElementById(
+ "security-view-identity-onionalias-row"
+ ).hidden = false;
+ } else {
+ document.getElementById(
+ "security-view-identity-onionalias-row"
+ ).hidden = true;
+ }
+
/* Set Identity section text */
setText("security-identity-domain-value", windowInfo.hostName);
diff --git a/browser/base/content/tabbrowser.js b/browser/base/content/tabbrowser.js
index 22c7fafef72b..573b114d7813 100644
--- a/browser/base/content/tabbrowser.js
+++ b/browser/base/content/tabbrowser.js
@@ -1547,6 +1547,7 @@
var aRelatedToCurrent;
var aAllowInheritPrincipal;
var aAllowMixedContent;
+ var aOnionUrlbarRewritesAllowed;
var aSkipAnimation;
var aForceNotRemote;
var aPreferredRemoteType;
@@ -1577,6 +1578,7 @@
aRelatedToCurrent = params.relatedToCurrent;
aAllowInheritPrincipal = !!params.allowInheritPrincipal;
aAllowMixedContent = params.allowMixedContent;
+ aOnionUrlbarRewritesAllowed = params.onionUrlbarRewritesAllowed;
aSkipAnimation = params.skipAnimation;
aForceNotRemote = params.forceNotRemote;
aPreferredRemoteType = params.preferredRemoteType;
@@ -1618,6 +1620,7 @@
relatedToCurrent: aRelatedToCurrent,
skipAnimation: aSkipAnimation,
allowMixedContent: aAllowMixedContent,
+ onionUrlbarRewritesAllowed: aOnionUrlbarRewritesAllowed,
forceNotRemote: aForceNotRemote,
createLazyBrowser: aCreateLazyBrowser,
preferredRemoteType: aPreferredRemoteType,
@@ -2504,6 +2507,7 @@
{
allowInheritPrincipal,
allowMixedContent,
+ onionUrlbarRewritesAllowed,
allowThirdPartyFixup,
bulkOrderedOpen,
charset,
@@ -2833,6 +2837,9 @@
if (allowMixedContent) {
flags |= Ci.nsIWebNavigation.LOAD_FLAGS_ALLOW_MIXED_CONTENT;
}
+ if (onionUrlbarRewritesAllowed) {
+ flags |= Ci.nsIWebNavigation.LOAD_FLAGS_ALLOW_ONION_URLBAR_REWRITES;
+ }
if (!allowInheritPrincipal) {
flags |= Ci.nsIWebNavigation.LOAD_FLAGS_DISALLOW_INHERIT_PRINCIPAL;
}
diff --git a/browser/base/content/utilityOverlay.js b/browser/base/content/utilityOverlay.js
index a23d6f05e6a7..eb13d5a3435c 100644
--- a/browser/base/content/utilityOverlay.js
+++ b/browser/base/content/utilityOverlay.js
@@ -367,6 +367,7 @@ function openLinkIn(url, where, params) {
var aRelatedToCurrent = params.relatedToCurrent;
var aAllowInheritPrincipal = !!params.allowInheritPrincipal;
var aAllowMixedContent = params.allowMixedContent;
+ var aOnionUrlbarRewritesAllowed = params.onionUrlbarRewritesAllowed;
var aForceAllowDataURI = params.forceAllowDataURI;
var aInBackground = params.inBackground;
var aInitiatingDoc = params.initiatingDoc;
@@ -482,6 +483,11 @@ function openLinkIn(url, where, params) {
].createInstance(Ci.nsISupportsPRBool);
allowThirdPartyFixupSupports.data = aAllowThirdPartyFixup;
+ var onionUrlbarRewritesAllowed = Cc[
+ "@mozilla.org/supports-PRBool;1"
+ ].createInstance(Ci.nsISupportsPRBool);
+ onionUrlbarRewritesAllowed.data = aOnionUrlbarRewritesAllowed;
+
var userContextIdSupports = Cc[
"@mozilla.org/supports-PRUint32;1"
].createInstance(Ci.nsISupportsPRUint32);
@@ -498,6 +504,8 @@ function openLinkIn(url, where, params) {
sa.appendElement(aTriggeringPrincipal);
sa.appendElement(null); // allowInheritPrincipal
sa.appendElement(aCsp);
+ sa.appendElement(null); // nsOpenWindowInfo
+ sa.appendElement(onionUrlbarRewritesAllowed);
const sourceWindow = w || window;
let win;
@@ -614,6 +622,9 @@ function openLinkIn(url, where, params) {
if (aForceAllowDataURI) {
flags |= Ci.nsIWebNavigation.LOAD_FLAGS_FORCE_ALLOW_DATA_URI;
}
+ if (aOnionUrlbarRewritesAllowed) {
+ flags |= Ci.nsIWebNavigation.LOAD_FLAGS_ALLOW_ONION_URLBAR_REWRITES;
+ }
let { URI_INHERITS_SECURITY_CONTEXT } = Ci.nsIProtocolHandler;
if (
@@ -661,6 +672,7 @@ function openLinkIn(url, where, params) {
relatedToCurrent: aRelatedToCurrent,
skipAnimation: aSkipTabAnimation,
allowMixedContent: aAllowMixedContent,
+ onionUrlbarRewritesAllowed: aOnionUrlbarRewritesAllowed,
userContextId: aUserContextId,
originPrincipal: aPrincipal,
originStoragePrincipal: aStoragePrincipal,
diff --git a/browser/components/BrowserGlue.jsm b/browser/components/BrowserGlue.jsm
index 7d147d01d561..d30abff54562 100644
--- a/browser/components/BrowserGlue.jsm
+++ b/browser/components/BrowserGlue.jsm
@@ -703,6 +703,7 @@ XPCOMUtils.defineLazyModuleGetters(this, {
TabCrashHandler: "resource:///modules/ContentCrashHandlers.jsm",
TabUnloader: "resource:///modules/TabUnloader.jsm",
TRRRacer: "resource:///modules/TRRPerformance.jsm",
+ OnionAliasStore: "resource:///modules/OnionAliasStore.jsm",
UIState: "resource://services-sync/UIState.jsm",
WebChannel: "resource://gre/modules/WebChannel.jsm",
WindowsRegistry: "resource://gre/modules/WindowsRegistry.jsm",
@@ -2046,6 +2047,7 @@ BrowserGlue.prototype = {
Normandy.uninit();
RFPHelper.uninit();
+ OnionAliasStore.uninit();
},
// Set up a listener to enable/disable the screenshots extension
@@ -2412,6 +2414,12 @@ BrowserGlue.prototype = {
},
},
+ {
+ task: () => {
+ OnionAliasStore.init();
+ },
+ },
+
{
task: () => {
Blocklist.loadBlocklistAsync();
diff --git a/browser/components/onionservices/ExtensionMessaging.jsm b/browser/components/onionservices/ExtensionMessaging.jsm
new file mode 100644
index 000000000000..b5d69df93807
--- /dev/null
+++ b/browser/components/onionservices/ExtensionMessaging.jsm
@@ -0,0 +1,86 @@
+// Copyright (c) 2020, The Tor Project, Inc.
+
+"use strict";
+
+const EXPORTED_SYMBOLS = ["ExtensionMessaging"];
+
+const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
+const { ExtensionUtils } = ChromeUtils.import(
+ "resource://gre/modules/ExtensionUtils.jsm"
+);
+const { MessageChannel } = ChromeUtils.import(
+ "resource://gre/modules/MessageChannel.jsm"
+);
+const { AddonManager } = ChromeUtils.import(
+ "resource://gre/modules/AddonManager.jsm"
+);
+
+class ExtensionMessaging {
+ constructor() {
+ this._callback = null;
+ this._handlers = new Map();
+ this._messageManager = Services.cpmm;
+ }
+
+ async sendMessage(msg, extensionId) {
+ this._init();
+
+ const addon = await AddonManager.getAddonByID(extensionId);
+ if (!addon) {
+ throw new Error(`extension '${extensionId} does not exist`);
+ }
+ await addon.startupPromise;
+
+ const channelId = ExtensionUtils.getUniqueId();
+ return new Promise((resolve, reject) => {
+ this._handlers.set(channelId, { resolve, reject });
+ this._messageManager.sendAsyncMessage("MessageChannel:Messages", [
+ {
+ messageName: "Extension:Message",
+ sender: {
+ id: extensionId,
+ extensionId,
+ },
+ recipient: { extensionId },
+ data: new StructuredCloneHolder(msg),
+ channelId,
+ responseType: MessageChannel.RESPONSE_FIRST,
+ },
+ ]);
+ });
+ }
+
+ unload() {
+ if (this._callback) {
+ this._handlers.clear();
+ this._messageManager.removeMessageListener(
+ "MessageChannel:Response",
+ this._callback
+ );
+ this._callback = null;
+ }
+ }
+
+ _onMessage({ data }) {
+ const channelId = data.messageName;
+ if (this._handlers.has(channelId)) {
+ const { resolve, reject } = this._handlers.get(channelId);
+ this._handlers.delete(channelId);
+ if (data.error) {
+ reject(new Error(data.error.message));
+ } else {
+ resolve(data.value);
+ }
+ }
+ }
+
+ _init() {
+ if (this._callback === null) {
+ this._callback = this._onMessage.bind(this);
+ this._messageManager.addMessageListener(
+ "MessageChannel:Response",
+ this._callback
+ );
+ }
+ }
+}
diff --git a/browser/components/onionservices/HttpsEverywhereControl.jsm b/browser/components/onionservices/HttpsEverywhereControl.jsm
new file mode 100644
index 000000000000..60c3b5fca282
--- /dev/null
+++ b/browser/components/onionservices/HttpsEverywhereControl.jsm
@@ -0,0 +1,119 @@
+// Copyright (c) 2020, The Tor Project, Inc.
+
+"use strict";
+
+const EXPORTED_SYMBOLS = ["HttpsEverywhereControl"];
+
+const { ExtensionMessaging } = ChromeUtils.import(
+ "resource:///modules/ExtensionMessaging.jsm"
+);
+const { setTimeout } = ChromeUtils.import("resource://gre/modules/Timer.jsm");
+
+const EXTENSION_ID = "https-everywhere-eff(a)eff.org";
+const SECUREDROP_TOR_ONION_CHANNEL = {
+ name: "SecureDropTorOnion",
+ jwk: {
+ kty: "RSA",
+ e: "AQAB",
+ n:
+ "p10BbUVc5Xj2S_-MH3bACNBaISo_r9e3PVPyTTjsGsdg2qSXvqUO42fBtpFAy0zUzIGS83v4JjiRdvKJaZTIvbC8AcpymzdsTqujMm8RPTSy3hO_8mXzGa4DEsIB1uNLnUWRBKXvSGCmT9kFyxhTpkYqokNBzafVihTU34tN2Md1xFHnmZGqfYtPtbJLWAa5Z1M11EyR4lIyUxIiPTV9t1XstDbWr3iS83REJrGEFmjG1-BAgx8_lDUTa41799N2yYEhgZud7bL0M3ei8s5OERjiion5uANkUV3-s2QqUZjiVA-XR_HizXjciaUWNd683KqekpNOZ_0STh_UGwpcwU-KwG07QyiCrLrRpz8S_vH8CqGrrcWY3GSzYe9dp34jJdO65oA-G8tK6fMXtvTCFDZI6oNNaXJH71F5J0YbqO2ZqwKYc2WSi0gKVl2wd9roOVjaBmkJqvocntYuNM7t38fDEWHn5KUkmrTbiG68Cy56tDUfpKl3D9Uj4LaMvxJ1tKGvzQ4k_60odT7gIxu6DqYjXUHZpwPsSGBq3njaD7boe4CUXF2K7ViOc87BsKxRNCzDD8OklRjjXzOTOBH3PqFJ93CJ-4ECE5t9STU20aZ8E-2zKB8vjKyCySE4-kcIvBBsnkwVaJTPy9Ft1qYybo-soXEWVEZATANNWklBt8k",
+ },
+ update_path_prefix: "https://securedrop.org/https-everywhere/",
+ scope:
+ "^https?:\\/\\/[a-z0-9-]+(?:\\.[a-z0-9-]+)*\\.securedrop\\.tor\\.onion\\/",
+ replaces_default_rulesets: false,
+};
+
+class HttpsEverywhereControl {
+ constructor() {
+ this._extensionMessaging = null;
+ }
+
+ async _sendMessage(type, object) {
+ return this._extensionMessaging.sendMessage(
+ {
+ type,
+ object,
+ },
+ EXTENSION_ID
+ );
+ }
+
+ static async wait(seconds = 1) {
+ return new Promise(resolve => setTimeout(resolve, seconds * 1000));
+ }
+
+ /**
+ * Installs the .tor.onion update channel in https-everywhere
+ */
+ async installTorOnionUpdateChannel(retries = 5) {
+ this._init();
+
+ // TODO: https-everywhere store is initialized asynchronously, so sending a message
+ // immediately results in a `store.get is undefined` error.
+ // For now, let's wait a bit and retry a few times if there is an error, but perhaps
+ // we could suggest https-everywhere to send a message when that happens and listen
+ // for that here.
+ await HttpsEverywhereControl.wait();
+
+ try {
+ // TODO: we may want a way to "lock" this update channel, so that it cannot be modified
+ // by the user via UI, but I think this is not possible at the time of writing via
+ // the existing messages in https-everywhere.
+ await this._sendMessage(
+ "create_update_channel",
+ SECUREDROP_TOR_ONION_CHANNEL.name
+ );
+ } catch (e) {
+ if (retries <= 0) {
+ throw new Error("Could not install SecureDropTorOnion update channel");
+ }
+ await this.installTorOnionUpdateChannel(retries - 1);
+ return;
+ }
+
+ await this._sendMessage(
+ "update_update_channel",
+ SECUREDROP_TOR_ONION_CHANNEL
+ );
+ }
+
+ /**
+ * Returns the .tor.onion rulesets available in https-everywhere
+ */
+ async getTorOnionRules() {
+ return this._sendMessage("get_simple_rules_ending_with", ".tor.onion");
+ }
+
+ /**
+ * Returns the timestamp of the last .tor.onion update channel update.
+ */
+ async getRulesetTimestamp() {
+ const rulesets = await this._sendMessage("get_ruleset_timestamps");
+ const securedrop =
+ rulesets &&
+ rulesets.find(([{ name }]) => name === SECUREDROP_TOR_ONION_CHANNEL.name);
+ if (securedrop) {
+ const [
+ updateChannel, // This has the same structure as SECUREDROP_TOR_ONION_CHANNEL
+ lastUpdatedTimestamp, // An integer, 0 if the update channel was never updated
+ ] = securedrop;
+ void updateChannel; // Ignore eslint unused warning for ruleset
+ return lastUpdatedTimestamp;
+ }
+ return null;
+ }
+
+ unload() {
+ if (this._extensionMessaging) {
+ this._extensionMessaging.unload();
+ this._extensionMessaging = null;
+ }
+ }
+
+ _init() {
+ if (!this._extensionMessaging) {
+ this._extensionMessaging = new ExtensionMessaging();
+ }
+ }
+}
diff --git a/browser/components/onionservices/OnionAliasStore.jsm b/browser/components/onionservices/OnionAliasStore.jsm
new file mode 100644
index 000000000000..66cf569227bf
--- /dev/null
+++ b/browser/components/onionservices/OnionAliasStore.jsm
@@ -0,0 +1,201 @@
+// Copyright (c) 2020, The Tor Project, Inc.
+
+"use strict";
+
+const EXPORTED_SYMBOLS = ["OnionAliasStore"];
+
+const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
+const { XPCOMUtils } = ChromeUtils.import(
+ "resource://gre/modules/XPCOMUtils.jsm"
+);
+const { setTimeout, clearTimeout } = ChromeUtils.import(
+ "resource://gre/modules/Timer.jsm"
+);
+const { HttpsEverywhereControl } = ChromeUtils.import(
+ "resource:///modules/HttpsEverywhereControl.jsm"
+);
+
+// Logger adapted from CustomizableUI.jsm
+const kPrefOnionAliasDebug = "browser.onionalias.debug";
+XPCOMUtils.defineLazyPreferenceGetter(
+ this,
+ "gDebuggingEnabled",
+ kPrefOnionAliasDebug,
+ false,
+ (pref, oldVal, newVal) => {
+ if (typeof log != "undefined") {
+ log.maxLogLevel = newVal ? "all" : "log";
+ }
+ }
+);
+XPCOMUtils.defineLazyGetter(this, "log", () => {
+ let scope = {};
+ ChromeUtils.import("resource://gre/modules/Console.jsm", scope);
+ let consoleOptions = {
+ maxLogLevel: gDebuggingEnabled ? "all" : "log",
+ prefix: "OnionAlias",
+ };
+ return new scope.ConsoleAPI(consoleOptions);
+});
+
+function observe(topic, callback) {
+ let observer = {
+ observe(aSubject, aTopic, aData) {
+ if (topic === aTopic) {
+ callback(aSubject, aData);
+ }
+ },
+ };
+ Services.obs.addObserver(observer, topic);
+ return () => Services.obs.removeObserver(observer, topic);
+}
+
+class _OnionAliasStore {
+ static get RULESET_CHECK_INTERVAL() {
+ return 1000 * 60; // 1 minute
+ }
+
+ static get RULESET_CHECK_INTERVAL_FAST() {
+ return 1000 * 5; // 5 seconds
+ }
+
+ constructor() {
+ this._onionMap = new Map();
+ this._rulesetTimeout = null;
+ this._removeObserver = () => {};
+ this._canLoadRules = false;
+ this._rulesetTimestamp = null;
+ this._updateChannelInstalled = false;
+ }
+
+ async _periodicRulesetCheck() {
+ // TODO: it would probably be preferable to listen to some message broadcasted by
+ // the https-everywhere extension when some update channel is updated, instead of
+ // polling every N seconds.
+ log.debug("Checking for new rules");
+ const ts = await this.httpsEverywhereControl.getRulesetTimestamp();
+ log.debug(
+ `Found ruleset timestamp ${ts}, current is ${this._rulesetTimestamp}`
+ );
+ if (ts !== this._rulesetTimestamp) {
+ this._rulesetTimestamp = ts;
+ log.debug("New rules found, updating");
+ // We clear the mappings even if we cannot load the rules from https-everywhere,
+ // since we cannot be sure if the stored mappings are correct anymore.
+ this._clear();
+ if (this._canLoadRules) {
+ await this._loadRules();
+ }
+ }
+ // If the timestamp is 0, that means the update channel was not yet updated, so
+ // we schedule a check soon.
+ this._rulesetTimeout = setTimeout(
+ () => this._periodicRulesetCheck(),
+ ts === 0
+ ? _OnionAliasStore.RULESET_CHECK_INTERVAL_FAST
+ : _OnionAliasStore.RULESET_CHECK_INTERVAL
+ );
+ }
+
+ async init() {
+ this.httpsEverywhereControl = new HttpsEverywhereControl();
+
+ // Setup .tor.onion rule loading.
+ // The http observer is a fallback, and is removed in _loadRules() as soon as we are able
+ // to load some rules from HTTPS Everywhere.
+ this._loadHttpObserver();
+ try {
+ await this.httpsEverywhereControl.installTorOnionUpdateChannel();
+ this._updateChannelInstalled = true;
+ await this.httpsEverywhereControl.getTorOnionRules();
+ this._canLoadRules = true;
+ } catch (e) {
+ // Loading rules did not work, probably because "get_simple_rules_ending_with" is not yet
+ // working in https-everywhere. Use an http observer as a fallback for learning the rules.
+ log.debug(`Could not load rules: ${e.message}`);
+ }
+
+ // Setup checker for https-everywhere ruleset updates
+ if (this._updateChannelInstalled) {
+ this._periodicRulesetCheck();
+ }
+ }
+
+ /**
+ * Loads the .tor.onion mappings from https-everywhere.
+ */
+ async _loadRules() {
+ const rules = await this.httpsEverywhereControl.getTorOnionRules();
+ // Remove http observer if we are able to load some rules directly.
+ if (rules.length) {
+ this._removeObserver();
+ this._removeObserver = () => {};
+ }
+ this._clear();
+ log.debug(`Loading ${rules.length} rules`, rules);
+ for (const rule of rules) {
+ // Here we are trusting that the securedrop ruleset follows some conventions so that we can
+ // assume there is a host mapping from `rule.host` to the hostname of the URL in `rule.to`.
+ try {
+ const url = new URL(rule.to);
+ const shortHost = rule.host;
+ const longHost = url.hostname;
+ this._addMapping(shortHost, longHost);
+ } catch (e) {
+ log.error("Could not process rule:", rule);
+ }
+ }
+ }
+
+ /**
+ * Loads a http observer to listen for local redirects for populating
+ * the .tor.onion -> .onion mappings. Should only be used if we cannot ask https-everywhere
+ * directly for the mappings.
+ */
+ _loadHttpObserver() {
+ this._removeObserver = observe("http-on-before-connect", channel => {
+ if (
+ channel.isMainDocumentChannel &&
+ channel.originalURI.host.endsWith(".tor.onion")
+ ) {
+ this._addMapping(channel.originalURI.host, channel.URI.host);
+ }
+ });
+ }
+
+ uninit() {
+ this._clear();
+ this._removeObserver();
+ this._removeObserver = () => {};
+ if (this.httpsEverywhereControl) {
+ this.httpsEverywhereControl.unload();
+ delete this.httpsEverywhereControl;
+ }
+ clearTimeout(this._rulesetTimeout);
+ this._rulesetTimeout = null;
+ this._rulesetTimestamp = null;
+ }
+
+ _clear() {
+ this._onionMap.clear();
+ }
+
+ _addMapping(shortOnionHost, longOnionHost) {
+ this._onionMap.set(longOnionHost, shortOnionHost);
+ }
+
+ getShortURI(onionURI) {
+ if (
+ (onionURI.schemeIs("http") || onionURI.schemeIs("https")) &&
+ this._onionMap.has(onionURI.host)
+ ) {
+ return onionURI
+ .mutate()
+ .setHost(this._onionMap.get(onionURI.host))
+ .finalize();
+ }
+ return null;
+ }
+}
+
+let OnionAliasStore = new _OnionAliasStore();
diff --git a/browser/components/onionservices/moz.build b/browser/components/onionservices/moz.build
index 7e103239c8d6..e4b6d73f8f40 100644
--- a/browser/components/onionservices/moz.build
+++ b/browser/components/onionservices/moz.build
@@ -1 +1,7 @@
JAR_MANIFESTS += ['jar.mn']
+
+EXTRA_JS_MODULES += [
+ 'ExtensionMessaging.jsm',
+ 'HttpsEverywhereControl.jsm',
+ 'OnionAliasStore.jsm',
+]
diff --git a/browser/components/urlbar/UrlbarInput.jsm b/browser/components/urlbar/UrlbarInput.jsm
index db1c497bcace..13b1279105f2 100644
--- a/browser/components/urlbar/UrlbarInput.jsm
+++ b/browser/components/urlbar/UrlbarInput.jsm
@@ -277,7 +277,10 @@ class UrlbarInput {
// bar if the user has deleted the URL and we'd just put the same URL
// back. See bug 304198.
if (value === null) {
- uri = uri || this.window.gBrowser.currentURI;
+ uri =
+ uri ||
+ this.window.gBrowser.selectedBrowser.currentOnionAliasURI ||
+ this.window.gBrowser.currentURI;
// Strip off usernames and passwords for the location bar
try {
uri = Services.io.createExposableURI(uri);
@@ -1541,7 +1544,13 @@ class UrlbarInput {
}
let uri;
- if (this.getAttribute("pageproxystate") == "valid") {
+ // When we rewrite .onion to an alias, gBrowser.currentURI will be different than
+ // the URI displayed in the urlbar. We need to use the urlbar value to copy the
+ // alias instead of the actual .onion URI that is loaded.
+ if (
+ this.getAttribute("pageproxystate") == "valid" &&
+ !this.window.gBrowser.selectedBrowser.currentOnionAliasURI
+ ) {
uri = this.window.gBrowser.currentURI;
} else {
// The value could be:
diff --git a/docshell/base/nsDocShell.cpp b/docshell/base/nsDocShell.cpp
index ae22142001b6..1b18ece8b62c 100644
--- a/docshell/base/nsDocShell.cpp
+++ b/docshell/base/nsDocShell.cpp
@@ -5649,6 +5649,10 @@ void nsDocShell::OnRedirectStateChange(nsIChannel* aOldChannel,
return;
}
+ if (!mOnionUrlbarRewritesAllowed && IsTorOnionRedirect(oldURI, newURI)) {
+ mOnionUrlbarRewritesAllowed = true;
+ }
+
// DocumentChannel adds redirect chain to global history in the parent
// process. The redirect chain can't be queried from the content process, so
// there's no need to update global history here.
@@ -8685,6 +8689,20 @@ nsresult nsDocShell::HandleSameDocumentNavigation(
return NS_OK;
}
+/* static */
+bool nsDocShell::IsTorOnionRedirect(nsIURI* aOldURI, nsIURI* aNewURI) {
+ nsAutoCString oldHost;
+ nsAutoCString newHost;
+ if (aOldURI && aNewURI && NS_SUCCEEDED(aOldURI->GetHost(oldHost)) &&
+ StringEndsWith(oldHost, NS_LITERAL_CSTRING(".tor.onion")) &&
+ NS_SUCCEEDED(aNewURI->GetHost(newHost)) &&
+ StringEndsWith(newHost, NS_LITERAL_CSTRING(".onion")) &&
+ !StringEndsWith(newHost, NS_LITERAL_CSTRING(".tor.onion"))) {
+ return true;
+ }
+ return false;
+ }
+
nsresult nsDocShell::InternalLoad(nsDocShellLoadState* aLoadState,
nsIDocShell** aDocShell,
nsIRequest** aRequest) {
@@ -8836,6 +8854,30 @@ nsresult nsDocShell::InternalLoad(nsDocShellLoadState* aLoadState,
mAllowKeywordFixup =
aLoadState->HasLoadFlags(INTERNAL_LOAD_FLAGS_ALLOW_THIRD_PARTY_FIXUP);
+
+ if (mOnionUrlbarRewritesAllowed) {
+ mOnionUrlbarRewritesAllowed = false;
+ nsCOMPtr<nsIURI> referrer;
+ nsIReferrerInfo* referrerInfo = aLoadState->GetReferrerInfo();
+ if (referrerInfo) {
+ referrerInfo->GetOriginalReferrer(getter_AddRefs(referrer));
+ bool isPrivateWin = false;
+ Document* doc = GetDocument();
+ if (doc) {
+ isPrivateWin =
+ doc->NodePrincipal()->OriginAttributesRef().mPrivateBrowsingId > 0;
+ nsCOMPtr<nsIScriptSecurityManager> secMan =
+ do_GetService(NS_SCRIPTSECURITYMANAGER_CONTRACTID);
+ mOnionUrlbarRewritesAllowed =
+ secMan && NS_SUCCEEDED(secMan->CheckSameOriginURI(
+ aLoadState->URI(), referrer, false, isPrivateWin));
+ }
+ }
+ }
+ mOnionUrlbarRewritesAllowed =
+ mOnionUrlbarRewritesAllowed ||
+ aLoadState->HasLoadFlags(INTERNAL_LOAD_FLAGS_ALLOW_ONION_URLBAR_REWRITES);
+
mURIResultedInDocument = false; // reset the clock...
// See if this is actually a load between two history entries for the same
@@ -10981,6 +11023,7 @@ nsresult nsDocShell::AddToSessionHistory(
mDynamicallyCreated, originalURI, resultPrincipalURI,
loadReplace, referrerInfo, srcdoc, srcdocEntry, baseURI,
saveLayoutState, expired);
+ entry->SetOnionUrlbarRewritesAllowed(mOnionUrlbarRewritesAllowed);
if (root == static_cast<nsIDocShellTreeItem*>(this) && GetSessionHistory()) {
bool shouldPersist = ShouldAddToSessionHistory(aURI, aChannel);
@@ -12778,3 +12821,12 @@ bool nsDocShell::GetIsAttemptingToNavigate() {
return false;
}
+
+NS_IMETHODIMP
+nsDocShell::GetOnionUrlbarRewritesAllowed(bool* aOnionUrlbarRewritesAllowed) {
+ NS_ENSURE_ARG(aOnionUrlbarRewritesAllowed);
+ *aOnionUrlbarRewritesAllowed =
+ StaticPrefs::browser_urlbar_onionRewrites_enabled() &&
+ mOnionUrlbarRewritesAllowed;
+ return NS_OK;
+}
diff --git a/docshell/base/nsDocShell.h b/docshell/base/nsDocShell.h
index dcffed8e5537..d403a06f4c9f 100644
--- a/docshell/base/nsDocShell.h
+++ b/docshell/base/nsDocShell.h
@@ -152,6 +152,9 @@ class nsDocShell final : public nsDocLoader,
// Whether the load should go through LoadURIDelegate.
INTERNAL_LOAD_FLAGS_BYPASS_LOAD_URI_DELEGATE = 0x2000,
+
+ // Whether rewriting the urlbar to a short .onion alias is allowed.
+ INTERNAL_LOAD_FLAGS_ALLOW_ONION_URLBAR_REWRITES = 0x4000,
};
// Event type dispatched by RestorePresentation
@@ -582,6 +585,8 @@ class nsDocShell final : public nsDocLoader,
virtual void DestroyChildren() override;
+ static bool IsTorOnionRedirect(nsIURI* aOldURI, nsIURI* aNewURI);
+
// Overridden from nsDocLoader, this provides more information than the
// normal OnStateChange with flags STATE_REDIRECTING
virtual void OnRedirectStateChange(nsIChannel* aOldChannel,
@@ -1264,6 +1269,7 @@ class nsDocShell final : public nsDocLoader,
bool mCSSErrorReportingEnabled : 1;
bool mAllowAuth : 1;
bool mAllowKeywordFixup : 1;
+ bool mOnionUrlbarRewritesAllowed : 1;
bool mIsOffScreenBrowser : 1;
bool mDisableMetaRefreshWhenInactive : 1;
bool mIsAppTab : 1;
diff --git a/docshell/base/nsDocShellLoadState.cpp b/docshell/base/nsDocShellLoadState.cpp
index d91bb6034f9d..fe1216bd2509 100644
--- a/docshell/base/nsDocShellLoadState.cpp
+++ b/docshell/base/nsDocShellLoadState.cpp
@@ -730,6 +730,10 @@ void nsDocShellLoadState::CalculateLoadURIFlags() {
mLoadFlags |= nsDocShell::INTERNAL_LOAD_FLAGS_ALLOW_THIRD_PARTY_FIXUP;
}
+ if (oldLoadFlags & nsIWebNavigation::LOAD_FLAGS_ALLOW_ONION_URLBAR_REWRITES) {
+ mLoadFlags |= nsDocShell::INTERNAL_LOAD_FLAGS_ALLOW_ONION_URLBAR_REWRITES;
+ }
+
if (oldLoadFlags & nsIWebNavigation::LOAD_FLAGS_FIRST_LOAD) {
mLoadFlags |= nsDocShell::INTERNAL_LOAD_FLAGS_FIRST_LOAD;
}
diff --git a/docshell/base/nsIDocShell.idl b/docshell/base/nsIDocShell.idl
index 01dc4734eb19..305acfd3a98f 100644
--- a/docshell/base/nsIDocShell.idl
+++ b/docshell/base/nsIDocShell.idl
@@ -1019,4 +1019,9 @@ interface nsIDocShell : nsIDocShellTreeItem
* until session history state is moved into the parent process.
*/
void persistLayoutHistoryState();
+
+ /**
+ * Whether rewriting the urlbar to a short .onion alias is allowed.
+ */
+ [infallible] readonly attribute boolean onionUrlbarRewritesAllowed;
};
diff --git a/docshell/base/nsIWebNavigation.idl b/docshell/base/nsIWebNavigation.idl
index bbc3eb7583a2..a4cceb52b2a0 100644
--- a/docshell/base/nsIWebNavigation.idl
+++ b/docshell/base/nsIWebNavigation.idl
@@ -237,6 +237,11 @@ interface nsIWebNavigation : nsISupports
*/
const unsigned long LOAD_FLAGS_BYPASS_LOAD_URI_DELEGATE = 0x4000000;
+ /**
+ * Allow rewriting the urlbar to a short .onion alias.
+ */
+ const unsigned long LOAD_FLAGS_ALLOW_ONION_URLBAR_REWRITES = 0x8000000;
+
/**
* Loads a given URI. This will give priority to loading the requested URI
* in the object implementing this interface. If it can't be loaded here
diff --git a/docshell/shistory/SessionHistoryEntry.cpp b/docshell/shistory/SessionHistoryEntry.cpp
index 07a28d1291c9..566b7d68fae5 100644
--- a/docshell/shistory/SessionHistoryEntry.cpp
+++ b/docshell/shistory/SessionHistoryEntry.cpp
@@ -490,6 +490,20 @@ SessionHistoryEntry::SetPersist(bool aPersist) {
return NS_OK;
}
+NS_IMETHODIMP
+SessionHistoryEntry::GetOnionUrlbarRewritesAllowed(
+ bool* aOnionUrlbarRewritesAllowed) {
+ *aOnionUrlbarRewritesAllowed = mInfo->mOnionUrlbarRewritesAllowed;
+ return NS_OK;
+}
+
+NS_IMETHODIMP
+SessionHistoryEntry::SetOnionUrlbarRewritesAllowed(
+ bool aOnionUrlbarRewritesAllowed) {
+ mInfo->mOnionUrlbarRewritesAllowed = aOnionUrlbarRewritesAllowed;
+ return NS_OK;
+}
+
NS_IMETHODIMP
SessionHistoryEntry::GetScrollPosition(int32_t* aX, int32_t* aY) {
*aX = mInfo->mScrollPositionX;
diff --git a/docshell/shistory/SessionHistoryEntry.h b/docshell/shistory/SessionHistoryEntry.h
index fa6108952688..c51682a65b0a 100644
--- a/docshell/shistory/SessionHistoryEntry.h
+++ b/docshell/shistory/SessionHistoryEntry.h
@@ -58,6 +58,7 @@ class SessionHistoryInfo {
bool mIsSrcdocEntry = false;
bool mScrollRestorationIsManual = false;
bool mPersist = false;
+ bool mOnionUrlbarRewritesAllowed = false;
};
// XXX Not sure that the id shouldn't just live in SessionHistoryInfo.
diff --git a/docshell/shistory/nsISHEntry.idl b/docshell/shistory/nsISHEntry.idl
index 8bbf2a68687c..bf410bfcc05a 100644
--- a/docshell/shistory/nsISHEntry.idl
+++ b/docshell/shistory/nsISHEntry.idl
@@ -242,6 +242,11 @@ interface nsISHEntry : nsISupports
*/
[infallible] attribute boolean persist;
+ /**
+ * Whether rewriting the urlbar to a short .onion alias is allowed.
+ */
+ [infallible] attribute boolean onionUrlbarRewritesAllowed;
+
/**
* Set/Get the visual viewport scroll position if session history is
* changed through anchor navigation or pushState.
diff --git a/docshell/shistory/nsSHEntry.cpp b/docshell/shistory/nsSHEntry.cpp
index 229b15eff25d..12d38f4c55fe 100644
--- a/docshell/shistory/nsSHEntry.cpp
+++ b/docshell/shistory/nsSHEntry.cpp
@@ -44,7 +44,8 @@ nsSHEntry::nsSHEntry(nsISHistory* aSHistory)
mIsSrcdocEntry(false),
mScrollRestorationIsManual(false),
mLoadedInThisProcess(false),
- mPersist(true) {}
+ mPersist(true),
+ mOnionUrlbarRewritesAllowed(false) {}
nsSHEntry::nsSHEntry(const nsSHEntry& aOther)
: mShared(aOther.mShared),
@@ -70,7 +71,8 @@ nsSHEntry::nsSHEntry(const nsSHEntry& aOther)
mIsSrcdocEntry(aOther.mIsSrcdocEntry),
mScrollRestorationIsManual(false),
mLoadedInThisProcess(aOther.mLoadedInThisProcess),
- mPersist(aOther.mPersist) {}
+ mPersist(aOther.mPersist),
+ mOnionUrlbarRewritesAllowed(aOther.mOnionUrlbarRewritesAllowed) {}
nsSHEntry::~nsSHEntry() {
// Null out the mParent pointers on all our kids.
@@ -824,6 +826,18 @@ nsSHEntry::SetPersist(bool aPersist) {
return NS_OK;
}
+NS_IMETHODIMP
+nsSHEntry::GetOnionUrlbarRewritesAllowed(bool* aOnionUrlbarRewritesAllowed) {
+ *aOnionUrlbarRewritesAllowed = mOnionUrlbarRewritesAllowed;
+ return NS_OK;
+}
+
+NS_IMETHODIMP
+nsSHEntry::SetOnionUrlbarRewritesAllowed(bool aOnionUrlbarRewritesAllowed) {
+ mOnionUrlbarRewritesAllowed = aOnionUrlbarRewritesAllowed;
+ return NS_OK;
+}
+
NS_IMETHODIMP
nsSHEntry::CreateLoadInfo(nsDocShellLoadState** aLoadState) {
nsCOMPtr<nsIURI> uri = GetURI();
@@ -873,6 +887,10 @@ nsSHEntry::CreateLoadInfo(nsDocShellLoadState** aLoadState) {
} else {
srcdoc = VoidString();
}
+ if (GetOnionUrlbarRewritesAllowed()) {
+ flags |= nsDocShell::InternalLoad::
+ INTERNAL_LOAD_FLAGS_ALLOW_ONION_URLBAR_REWRITES;
+ }
loadState->SetSrcdocData(srcdoc);
loadState->SetBaseURI(baseURI);
loadState->SetLoadFlags(flags);
diff --git a/docshell/shistory/nsSHEntry.h b/docshell/shistory/nsSHEntry.h
index 351f6f200a33..6bc9de521437 100644
--- a/docshell/shistory/nsSHEntry.h
+++ b/docshell/shistory/nsSHEntry.h
@@ -63,6 +63,7 @@ class nsSHEntry : public nsISHEntry {
bool mScrollRestorationIsManual;
bool mLoadedInThisProcess;
bool mPersist;
+ bool mOnionUrlbarRewritesAllowed;
};
#endif /* nsSHEntry_h */
diff --git a/dom/interfaces/base/nsIBrowser.idl b/dom/interfaces/base/nsIBrowser.idl
index 300b09e13824..a9ff00e964b7 100644
--- a/dom/interfaces/base/nsIBrowser.idl
+++ b/dom/interfaces/base/nsIBrowser.idl
@@ -158,7 +158,8 @@ interface nsIBrowser : nsISupports
in uint64_t aInnerWindowID,
in boolean aHasRequestContextID,
in uint64_t aRequestContextID,
- in AString aContentType);
+ in AString aContentType,
+ in boolean aOnionUrlbarRewritesAllowed);
/**
* Called by Gecko when it wants to change the process which is currently
diff --git a/dom/ipc/BrowserChild.cpp b/dom/ipc/BrowserChild.cpp
index 2b17323d8a93..f72aa8faa11d 100644
--- a/dom/ipc/BrowserChild.cpp
+++ b/dom/ipc/BrowserChild.cpp
@@ -3645,6 +3645,8 @@ NS_IMETHODIMP BrowserChild::OnLocationChange(nsIWebProgress* aWebProgress,
docShell->GetMayEnableCharacterEncodingMenu();
locationChangeData->charsetAutodetected() =
docShell->GetCharsetAutodetected();
+ locationChangeData->onionUrlbarRewritesAllowed() =
+ docShell->GetOnionUrlbarRewritesAllowed();
locationChangeData->contentPrincipal() = document->NodePrincipal();
locationChangeData->contentStoragePrincipal() =
diff --git a/dom/ipc/BrowserParent.cpp b/dom/ipc/BrowserParent.cpp
index 7749792cafb4..086ecd95e9e7 100644
--- a/dom/ipc/BrowserParent.cpp
+++ b/dom/ipc/BrowserParent.cpp
@@ -2698,7 +2698,8 @@ mozilla::ipc::IPCResult BrowserParent::RecvOnLocationChange(
aWebProgressData->innerDOMWindowID(),
aLocationChangeData->requestContextID().isSome(),
aLocationChangeData->requestContextID().valueOr(0),
- aLocationChangeData->contentType());
+ aLocationChangeData->contentType(),
+ aLocationChangeData->onionUrlbarRewritesAllowed());
}
Unused << managerAsListener->OnLocationChange(webProgress, request, aLocation,
diff --git a/dom/ipc/PBrowser.ipdl b/dom/ipc/PBrowser.ipdl
index f36e2c6db353..15756e7fef4f 100644
--- a/dom/ipc/PBrowser.ipdl
+++ b/dom/ipc/PBrowser.ipdl
@@ -142,6 +142,7 @@ struct WebProgressLocationChangeData
bool isSyntheticDocument;
bool mayEnableCharacterEncodingMenu;
bool charsetAutodetected;
+ bool onionUrlbarRewritesAllowed;
nsString contentType;
nsString title;
nsString charset;
diff --git a/modules/libpref/init/StaticPrefList.yaml b/modules/libpref/init/StaticPrefList.yaml
index a0e5d2fd6d4f..3f881146ca1e 100644
--- a/modules/libpref/init/StaticPrefList.yaml
+++ b/modules/libpref/init/StaticPrefList.yaml
@@ -1077,6 +1077,12 @@
value: true
mirror: always
+ # Whether rewriting the urlbar to a short .onion alias is allowed.
+- name: browser.urlbar.onionRewrites.enabled
+ type: RelaxedAtomicBool
+ value: true
+ mirror: always
+
- name: browser.viewport.desktopWidth
type: RelaxedAtomicInt32
value: 980
diff --git a/netwerk/dns/effective_tld_names.dat b/netwerk/dns/effective_tld_names.dat
index 9236a929192e..8d7955f557d0 100644
--- a/netwerk/dns/effective_tld_names.dat
+++ b/netwerk/dns/effective_tld_names.dat
@@ -5517,6 +5517,8 @@ pro.om
// onion : https://tools.ietf.org/html/rfc7686
onion
+tor.onion
+securedrop.tor.onion
// org : https://en.wikipedia.org/wiki/.org
org
diff --git a/netwerk/ipc/DocumentLoadListener.cpp b/netwerk/ipc/DocumentLoadListener.cpp
index 901ce11b57ca..988ec94a82d4 100644
--- a/netwerk/ipc/DocumentLoadListener.cpp
+++ b/netwerk/ipc/DocumentLoadListener.cpp
@@ -1856,6 +1856,16 @@ DocumentLoadListener::AsyncOnChannelRedirect(
mLoadStateLoadType, nsIWebNavigation::LOAD_FLAGS_ALLOW_MIXED_CONTENT));
}
+ // Like the code above for allowing mixed content, we need to check this here
+ // in case the redirect is not handled in the docshell.
+ nsCOMPtr<nsIURI> oldURI, newURI;
+ aOldChannel->GetURI(getter_AddRefs(oldURI));
+ aNewChannel->GetURI(getter_AddRefs(newURI));
+ if (nsDocShell::IsTorOnionRedirect(oldURI, newURI)) {
+ mLoadStateLoadFlags |=
+ nsDocShell::INTERNAL_LOAD_FLAGS_ALLOW_ONION_URLBAR_REWRITES;
+ }
+
// We need the original URI of the current channel to use to open the real
// channel in the content process. Unfortunately we overwrite the original
// uri of the new channel with the original pre-redirect URI, so grab
diff --git a/toolkit/content/widgets/browser-custom-element.js b/toolkit/content/widgets/browser-custom-element.js
index 62a1ab1d6796..67fa1e5645c0 100644
--- a/toolkit/content/widgets/browser-custom-element.js
+++ b/toolkit/content/widgets/browser-custom-element.js
@@ -261,6 +261,8 @@
this._mayEnableCharacterEncodingMenu = null;
+ this._onionUrlbarRewritesAllowed = false;
+
this._charsetAutodetected = false;
this._contentPrincipal = null;
@@ -686,6 +688,12 @@
}
}
+ get onionUrlbarRewritesAllowed() {
+ return this.isRemoteBrowser
+ ? this._onionUrlbarRewritesAllowed
+ : this.docShell.onionUrlbarRewritesAllowed;
+ }
+
get charsetAutodetected() {
return this.isRemoteBrowser
? this._charsetAutodetected
@@ -1292,7 +1300,8 @@
aInnerWindowID,
aHaveRequestContextID,
aRequestContextID,
- aContentType
+ aContentType,
+ aOnionUrlbarRewritesAllowed
) {
if (this.isRemoteBrowser && this.messageManager) {
if (aCharset != null) {
@@ -1316,6 +1325,7 @@
this._contentRequestContextID = aHaveRequestContextID
? aRequestContextID
: null;
+ this._onionUrlbarRewritesAllowed = aOnionUrlbarRewritesAllowed;
}
}
@@ -1708,6 +1718,7 @@
"_contentStoragePrincipal",
"_isSyntheticDocument",
"_innerWindowID",
+ "_onionUrlbarRewritesAllowed",
]
);
}
diff --git a/toolkit/modules/sessionstore/SessionHistory.jsm b/toolkit/modules/sessionstore/SessionHistory.jsm
index 6c16ac331659..cc47f437824f 100644
--- a/toolkit/modules/sessionstore/SessionHistory.jsm
+++ b/toolkit/modules/sessionstore/SessionHistory.jsm
@@ -318,6 +318,7 @@ var SessionHistoryInternal = {
}
entry.persist = shEntry.persist;
+ entry.onionUrlbarRewritesAllowed = shEntry.onionUrlbarRewritesAllowed;
return entry;
},
@@ -601,6 +602,10 @@ var SessionHistoryInternal = {
}
}
+ if (entry.onionUrlbarRewritesAllowed) {
+ shEntry.onionUrlbarRewritesAllowed = entry.onionUrlbarRewritesAllowed;
+ }
+
return shEntry;
},
1
0